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> |
| 26 | #include <linux/pci.h> |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 27 | #include <linux/mutex.h> |
Paul Gortmaker | da155d5 | 2011-07-15 12:38:28 -0400 | [diff] [blame] | 28 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <sound/core.h> |
| 30 | #include "hda_codec.h" |
| 31 | #include <sound/asoundef.h> |
Jaroslav Kysela | 302e9c5 | 2006-07-05 17:39:49 +0200 | [diff] [blame] | 32 | #include <sound/tlv.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include <sound/initval.h> |
Takashi Iwai | cd372fb | 2011-03-03 14:40:14 +0100 | [diff] [blame] | 34 | #include <sound/jack.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include "hda_local.h" |
Jaroslav Kysela | 123c07a | 2009-10-21 14:48:23 +0200 | [diff] [blame] | 36 | #include "hda_beep.h" |
Takashi Iwai | 1835a0f | 2011-10-27 22:12:46 +0200 | [diff] [blame] | 37 | #include "hda_jack.h" |
Takashi Iwai | 2807314 | 2007-07-27 18:58:06 +0200 | [diff] [blame] | 38 | #include <sound/hda_hwdep.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
Takashi Iwai | d66fee5 | 2011-08-02 15:39:31 +0200 | [diff] [blame] | 40 | #define CREATE_TRACE_POINTS |
| 41 | #include "hda_trace.h" |
| 42 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | /* |
| 44 | * vendor / preset table |
| 45 | */ |
| 46 | |
| 47 | struct hda_vendor_id { |
| 48 | unsigned int id; |
| 49 | const char *name; |
| 50 | }; |
| 51 | |
| 52 | /* codec vendor labels */ |
| 53 | static struct hda_vendor_id hda_vendor_ids[] = { |
Takashi Iwai | c8cd128 | 2008-02-13 16:59:29 +0100 | [diff] [blame] | 54 | { 0x1002, "ATI" }, |
Takashi Iwai | e5f1424 | 2009-07-01 18:11:44 +0200 | [diff] [blame] | 55 | { 0x1013, "Cirrus Logic" }, |
Takashi Iwai | a922625 | 2006-09-17 22:05:54 +0200 | [diff] [blame] | 56 | { 0x1057, "Motorola" }, |
Takashi Iwai | c8cd128 | 2008-02-13 16:59:29 +0100 | [diff] [blame] | 57 | { 0x1095, "Silicon Image" }, |
Takashi Iwai | 31117b7 | 2008-12-16 14:43:21 +0100 | [diff] [blame] | 58 | { 0x10de, "Nvidia" }, |
Takashi Iwai | c8cd128 | 2008-02-13 16:59:29 +0100 | [diff] [blame] | 59 | { 0x10ec, "Realtek" }, |
Takashi Iwai | 4e01f54 | 2009-04-16 08:53:34 +0200 | [diff] [blame] | 60 | { 0x1102, "Creative" }, |
Joseph Chan | c577b8a | 2006-11-29 15:29:40 +0100 | [diff] [blame] | 61 | { 0x1106, "VIA" }, |
Matthew Ranostay | 7f16859 | 2007-10-18 17:38:17 +0200 | [diff] [blame] | 62 | { 0x111d, "IDT" }, |
Takashi Iwai | c8cd128 | 2008-02-13 16:59:29 +0100 | [diff] [blame] | 63 | { 0x11c1, "LSI" }, |
Takashi Iwai | 54b903e | 2005-05-15 14:30:10 +0200 | [diff] [blame] | 64 | { 0x11d4, "Analog Devices" }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | { 0x13f6, "C-Media" }, |
Takashi Iwai | a922625 | 2006-09-17 22:05:54 +0200 | [diff] [blame] | 66 | { 0x14f1, "Conexant" }, |
Takashi Iwai | c8cd128 | 2008-02-13 16:59:29 +0100 | [diff] [blame] | 67 | { 0x17e8, "Chrontel" }, |
| 68 | { 0x1854, "LG" }, |
Mark Brown | 8199de3 | 2008-10-28 14:50:13 +0000 | [diff] [blame] | 69 | { 0x1aec, "Wolfson Microelectronics" }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | { 0x434d, "C-Media" }, |
Takashi Iwai | 74c6113 | 2008-12-18 09:11:33 +0100 | [diff] [blame] | 71 | { 0x8086, "Intel" }, |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 72 | { 0x8384, "SigmaTel" }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | {} /* terminator */ |
| 74 | }; |
| 75 | |
Takashi Iwai | 1289e9e | 2008-11-27 15:47:11 +0100 | [diff] [blame] | 76 | static DEFINE_MUTEX(preset_mutex); |
| 77 | static LIST_HEAD(hda_preset_tables); |
| 78 | |
| 79 | int snd_hda_add_codec_preset(struct hda_codec_preset_list *preset) |
| 80 | { |
| 81 | mutex_lock(&preset_mutex); |
| 82 | list_add_tail(&preset->list, &hda_preset_tables); |
| 83 | mutex_unlock(&preset_mutex); |
| 84 | return 0; |
| 85 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 86 | EXPORT_SYMBOL_HDA(snd_hda_add_codec_preset); |
Takashi Iwai | 1289e9e | 2008-11-27 15:47:11 +0100 | [diff] [blame] | 87 | |
| 88 | int snd_hda_delete_codec_preset(struct hda_codec_preset_list *preset) |
| 89 | { |
| 90 | mutex_lock(&preset_mutex); |
| 91 | list_del(&preset->list); |
| 92 | mutex_unlock(&preset_mutex); |
| 93 | return 0; |
| 94 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 95 | EXPORT_SYMBOL_HDA(snd_hda_delete_codec_preset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 97 | #ifdef CONFIG_SND_HDA_POWER_SAVE |
| 98 | static void hda_power_work(struct work_struct *work); |
| 99 | static void hda_keep_power_on(struct hda_codec *codec); |
Takashi Iwai | e581f3d | 2011-07-26 10:19:20 +0200 | [diff] [blame] | 100 | #define hda_codec_is_power_on(codec) ((codec)->power_on) |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 101 | #else |
| 102 | static inline void hda_keep_power_on(struct hda_codec *codec) {} |
Takashi Iwai | e581f3d | 2011-07-26 10:19:20 +0200 | [diff] [blame] | 103 | #define hda_codec_is_power_on(codec) 1 |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 104 | #endif |
| 105 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 106 | /** |
| 107 | * snd_hda_get_jack_location - Give a location string of the jack |
| 108 | * @cfg: pin default config value |
| 109 | * |
| 110 | * Parse the pin default config value and returns the string of the |
| 111 | * jack location, e.g. "Rear", "Front", etc. |
| 112 | */ |
Matthew Ranostay | 50a9f79 | 2008-10-25 01:05:45 -0400 | [diff] [blame] | 113 | const char *snd_hda_get_jack_location(u32 cfg) |
| 114 | { |
| 115 | static char *bases[7] = { |
| 116 | "N/A", "Rear", "Front", "Left", "Right", "Top", "Bottom", |
| 117 | }; |
| 118 | static unsigned char specials_idx[] = { |
| 119 | 0x07, 0x08, |
| 120 | 0x17, 0x18, 0x19, |
| 121 | 0x37, 0x38 |
| 122 | }; |
| 123 | static char *specials[] = { |
| 124 | "Rear Panel", "Drive Bar", |
| 125 | "Riser", "HDMI", "ATAPI", |
| 126 | "Mobile-In", "Mobile-Out" |
| 127 | }; |
| 128 | int i; |
| 129 | cfg = (cfg & AC_DEFCFG_LOCATION) >> AC_DEFCFG_LOCATION_SHIFT; |
| 130 | if ((cfg & 0x0f) < 7) |
| 131 | return bases[cfg & 0x0f]; |
| 132 | for (i = 0; i < ARRAY_SIZE(specials_idx); i++) { |
| 133 | if (cfg == specials_idx[i]) |
| 134 | return specials[i]; |
| 135 | } |
| 136 | return "UNKNOWN"; |
| 137 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 138 | EXPORT_SYMBOL_HDA(snd_hda_get_jack_location); |
Matthew Ranostay | 50a9f79 | 2008-10-25 01:05:45 -0400 | [diff] [blame] | 139 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 140 | /** |
| 141 | * snd_hda_get_jack_connectivity - Give a connectivity string of the jack |
| 142 | * @cfg: pin default config value |
| 143 | * |
| 144 | * Parse the pin default config value and returns the string of the |
| 145 | * jack connectivity, i.e. external or internal connection. |
| 146 | */ |
Matthew Ranostay | 50a9f79 | 2008-10-25 01:05:45 -0400 | [diff] [blame] | 147 | const char *snd_hda_get_jack_connectivity(u32 cfg) |
| 148 | { |
| 149 | static char *jack_locations[4] = { "Ext", "Int", "Sep", "Oth" }; |
| 150 | |
| 151 | return jack_locations[(cfg >> (AC_DEFCFG_LOCATION_SHIFT + 4)) & 3]; |
| 152 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 153 | EXPORT_SYMBOL_HDA(snd_hda_get_jack_connectivity); |
Matthew Ranostay | 50a9f79 | 2008-10-25 01:05:45 -0400 | [diff] [blame] | 154 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 155 | /** |
| 156 | * snd_hda_get_jack_type - Give a type string of the jack |
| 157 | * @cfg: pin default config value |
| 158 | * |
| 159 | * Parse the pin default config value and returns the string of the |
| 160 | * jack type, i.e. the purpose of the jack, such as Line-Out or CD. |
| 161 | */ |
Matthew Ranostay | 50a9f79 | 2008-10-25 01:05:45 -0400 | [diff] [blame] | 162 | const char *snd_hda_get_jack_type(u32 cfg) |
| 163 | { |
| 164 | static char *jack_types[16] = { |
| 165 | "Line Out", "Speaker", "HP Out", "CD", |
| 166 | "SPDIF Out", "Digital Out", "Modem Line", "Modem Hand", |
| 167 | "Line In", "Aux", "Mic", "Telephony", |
| 168 | "SPDIF In", "Digitial In", "Reserved", "Other" |
| 169 | }; |
| 170 | |
| 171 | return jack_types[(cfg & AC_DEFCFG_DEVICE) |
| 172 | >> AC_DEFCFG_DEVICE_SHIFT]; |
| 173 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 174 | EXPORT_SYMBOL_HDA(snd_hda_get_jack_type); |
Matthew Ranostay | 50a9f79 | 2008-10-25 01:05:45 -0400 | [diff] [blame] | 175 | |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 176 | /* |
| 177 | * Compose a 32bit command word to be sent to the HD-audio controller |
| 178 | */ |
| 179 | static inline unsigned int |
| 180 | make_codec_cmd(struct hda_codec *codec, hda_nid_t nid, int direct, |
| 181 | unsigned int verb, unsigned int parm) |
| 182 | { |
| 183 | u32 val; |
| 184 | |
Takashi Iwai | 82e1b80 | 2009-07-17 12:47:34 +0200 | [diff] [blame] | 185 | if ((codec->addr & ~0xf) || (direct & ~1) || (nid & ~0x7f) || |
| 186 | (verb & ~0xfff) || (parm & ~0xffff)) { |
Wu Fengguang | 6430aee | 2009-07-17 16:49:19 +0800 | [diff] [blame] | 187 | printk(KERN_ERR "hda-codec: out of range cmd %x:%x:%x:%x:%x\n", |
| 188 | codec->addr, direct, nid, verb, parm); |
| 189 | return ~0; |
| 190 | } |
| 191 | |
| 192 | val = (u32)codec->addr << 28; |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 193 | val |= (u32)direct << 27; |
| 194 | val |= (u32)nid << 20; |
| 195 | val |= verb << 8; |
| 196 | val |= parm; |
| 197 | return val; |
| 198 | } |
| 199 | |
Takashi Iwai | aa2936f | 2009-05-26 16:07:57 +0200 | [diff] [blame] | 200 | /* |
| 201 | * Send and receive a verb |
| 202 | */ |
| 203 | static int codec_exec_verb(struct hda_codec *codec, unsigned int cmd, |
| 204 | unsigned int *res) |
| 205 | { |
| 206 | struct hda_bus *bus = codec->bus; |
Takashi Iwai | 8dd7833 | 2009-06-02 01:16:07 +0200 | [diff] [blame] | 207 | int err; |
Takashi Iwai | aa2936f | 2009-05-26 16:07:57 +0200 | [diff] [blame] | 208 | |
Wu Fengguang | 6430aee | 2009-07-17 16:49:19 +0800 | [diff] [blame] | 209 | if (cmd == ~0) |
| 210 | return -1; |
| 211 | |
Takashi Iwai | aa2936f | 2009-05-26 16:07:57 +0200 | [diff] [blame] | 212 | if (res) |
| 213 | *res = -1; |
Takashi Iwai | 8dd7833 | 2009-06-02 01:16:07 +0200 | [diff] [blame] | 214 | again: |
Takashi Iwai | aa2936f | 2009-05-26 16:07:57 +0200 | [diff] [blame] | 215 | snd_hda_power_up(codec); |
| 216 | mutex_lock(&bus->cmd_mutex); |
Takashi Iwai | d66fee5 | 2011-08-02 15:39:31 +0200 | [diff] [blame] | 217 | trace_hda_send_cmd(codec, cmd); |
Takashi Iwai | aa2936f | 2009-05-26 16:07:57 +0200 | [diff] [blame] | 218 | err = bus->ops.command(bus, cmd); |
Takashi Iwai | d66fee5 | 2011-08-02 15:39:31 +0200 | [diff] [blame] | 219 | if (!err && res) { |
Wu Fengguang | deadff1 | 2009-08-01 18:45:16 +0800 | [diff] [blame] | 220 | *res = bus->ops.get_response(bus, codec->addr); |
Takashi Iwai | d66fee5 | 2011-08-02 15:39:31 +0200 | [diff] [blame] | 221 | trace_hda_get_response(codec, *res); |
| 222 | } |
Takashi Iwai | aa2936f | 2009-05-26 16:07:57 +0200 | [diff] [blame] | 223 | mutex_unlock(&bus->cmd_mutex); |
| 224 | snd_hda_power_down(codec); |
Takashi Iwai | 8dd7833 | 2009-06-02 01:16:07 +0200 | [diff] [blame] | 225 | if (res && *res == -1 && bus->rirb_error) { |
| 226 | if (bus->response_reset) { |
| 227 | snd_printd("hda_codec: resetting BUS due to " |
| 228 | "fatal communication error\n"); |
Takashi Iwai | d66fee5 | 2011-08-02 15:39:31 +0200 | [diff] [blame] | 229 | trace_hda_bus_reset(bus); |
Takashi Iwai | 8dd7833 | 2009-06-02 01:16:07 +0200 | [diff] [blame] | 230 | bus->ops.bus_reset(bus); |
| 231 | } |
| 232 | goto again; |
| 233 | } |
| 234 | /* clear reset-flag when the communication gets recovered */ |
| 235 | if (!err) |
| 236 | bus->response_reset = 0; |
Takashi Iwai | aa2936f | 2009-05-26 16:07:57 +0200 | [diff] [blame] | 237 | return err; |
| 238 | } |
| 239 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | /** |
| 241 | * snd_hda_codec_read - send a command and get the response |
| 242 | * @codec: the HDA codec |
| 243 | * @nid: NID to send the command |
| 244 | * @direct: direct flag |
| 245 | * @verb: the verb to send |
| 246 | * @parm: the parameter for the verb |
| 247 | * |
| 248 | * Send a single command and read the corresponding response. |
| 249 | * |
| 250 | * Returns the obtained response value, or -1 for an error. |
| 251 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 252 | unsigned int snd_hda_codec_read(struct hda_codec *codec, hda_nid_t nid, |
| 253 | int direct, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | unsigned int verb, unsigned int parm) |
| 255 | { |
Takashi Iwai | aa2936f | 2009-05-26 16:07:57 +0200 | [diff] [blame] | 256 | unsigned cmd = make_codec_cmd(codec, nid, direct, verb, parm); |
| 257 | unsigned int res; |
Greg Thelen | 9857edf | 2011-06-13 07:45:45 -0700 | [diff] [blame] | 258 | if (codec_exec_verb(codec, cmd, &res)) |
| 259 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | return res; |
| 261 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 262 | EXPORT_SYMBOL_HDA(snd_hda_codec_read); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | |
| 264 | /** |
| 265 | * snd_hda_codec_write - send a single command without waiting for response |
| 266 | * @codec: the HDA codec |
| 267 | * @nid: NID to send the command |
| 268 | * @direct: direct flag |
| 269 | * @verb: the verb to send |
| 270 | * @parm: the parameter for the verb |
| 271 | * |
| 272 | * Send a single command without waiting for response. |
| 273 | * |
| 274 | * Returns 0 if successful, or a negative error code. |
| 275 | */ |
| 276 | int snd_hda_codec_write(struct hda_codec *codec, hda_nid_t nid, int direct, |
| 277 | unsigned int verb, unsigned int parm) |
| 278 | { |
Takashi Iwai | aa2936f | 2009-05-26 16:07:57 +0200 | [diff] [blame] | 279 | unsigned int cmd = make_codec_cmd(codec, nid, direct, verb, parm); |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 280 | unsigned int res; |
Takashi Iwai | b20f3b8 | 2009-06-02 01:20:22 +0200 | [diff] [blame] | 281 | return codec_exec_verb(codec, cmd, |
| 282 | codec->bus->sync_write ? &res : NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 284 | EXPORT_SYMBOL_HDA(snd_hda_codec_write); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | |
| 286 | /** |
| 287 | * snd_hda_sequence_write - sequence writes |
| 288 | * @codec: the HDA codec |
| 289 | * @seq: VERB array to send |
| 290 | * |
| 291 | * Send the commands sequentially from the given array. |
| 292 | * The array must be terminated with NID=0. |
| 293 | */ |
| 294 | void snd_hda_sequence_write(struct hda_codec *codec, const struct hda_verb *seq) |
| 295 | { |
| 296 | for (; seq->nid; seq++) |
| 297 | snd_hda_codec_write(codec, seq->nid, 0, seq->verb, seq->param); |
| 298 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 299 | EXPORT_SYMBOL_HDA(snd_hda_sequence_write); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | |
| 301 | /** |
| 302 | * snd_hda_get_sub_nodes - get the range of sub nodes |
| 303 | * @codec: the HDA codec |
| 304 | * @nid: NID to parse |
| 305 | * @start_id: the pointer to store the start NID |
| 306 | * |
| 307 | * Parse the NID and store the start NID of its sub-nodes. |
| 308 | * Returns the number of sub-nodes. |
| 309 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 310 | int snd_hda_get_sub_nodes(struct hda_codec *codec, hda_nid_t nid, |
| 311 | hda_nid_t *start_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | { |
| 313 | unsigned int parm; |
| 314 | |
| 315 | parm = snd_hda_param_read(codec, nid, AC_PAR_NODE_COUNT); |
Danny Tholen | e8a7f13 | 2007-09-11 21:41:56 +0200 | [diff] [blame] | 316 | if (parm == -1) |
| 317 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | *start_id = (parm >> 16) & 0x7fff; |
| 319 | return (int)(parm & 0x7fff); |
| 320 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 321 | EXPORT_SYMBOL_HDA(snd_hda_get_sub_nodes); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | |
Takashi Iwai | b2f934a | 2011-07-04 16:23:26 +0200 | [diff] [blame] | 323 | /* look up the cached results */ |
| 324 | static hda_nid_t *lookup_conn_list(struct snd_array *array, hda_nid_t nid) |
| 325 | { |
| 326 | int i, len; |
| 327 | for (i = 0; i < array->used; ) { |
| 328 | hda_nid_t *p = snd_array_elem(array, i); |
| 329 | if (nid == *p) |
| 330 | return p; |
| 331 | len = p[1]; |
| 332 | i += len + 2; |
| 333 | } |
| 334 | return NULL; |
| 335 | } |
Takashi Iwai | a12d3e1 | 2011-04-07 15:55:15 +0200 | [diff] [blame] | 336 | |
Takashi Iwai | 09cf03b | 2012-05-19 17:21:25 +0200 | [diff] [blame] | 337 | /* read the connection and add to the cache */ |
| 338 | 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] | 339 | { |
Takashi Iwai | a12d3e1 | 2011-04-07 15:55:15 +0200 | [diff] [blame] | 340 | hda_nid_t list[HDA_MAX_CONNECTIONS]; |
Takashi Iwai | 09cf03b | 2012-05-19 17:21:25 +0200 | [diff] [blame] | 341 | int len; |
Takashi Iwai | a12d3e1 | 2011-04-07 15:55:15 +0200 | [diff] [blame] | 342 | |
Takashi Iwai | 09cf03b | 2012-05-19 17:21:25 +0200 | [diff] [blame] | 343 | len = snd_hda_get_raw_connections(codec, nid, list, ARRAY_SIZE(list)); |
Takashi Iwai | a12d3e1 | 2011-04-07 15:55:15 +0200 | [diff] [blame] | 344 | if (len < 0) |
| 345 | return len; |
Takashi Iwai | 09cf03b | 2012-05-19 17:21:25 +0200 | [diff] [blame] | 346 | return snd_hda_override_conn_list(codec, nid, len, list); |
Takashi Iwai | a12d3e1 | 2011-04-07 15:55:15 +0200 | [diff] [blame] | 347 | } |
Takashi Iwai | dce2079 | 2011-06-24 14:10:28 +0200 | [diff] [blame] | 348 | |
| 349 | /** |
| 350 | * snd_hda_get_connections - copy connection list |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | * @codec: the HDA codec |
| 352 | * @nid: NID to parse |
Takashi Iwai | 09cf03b | 2012-05-19 17:21:25 +0200 | [diff] [blame] | 353 | * @conn_list: connection list array; when NULL, checks only the size |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | * @max_conns: max. number of connections to store |
| 355 | * |
| 356 | * Parses the connection list of the given widget and stores the list |
| 357 | * of NIDs. |
| 358 | * |
| 359 | * Returns the number of connections, or a negative error code. |
| 360 | */ |
| 361 | 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] | 362 | hda_nid_t *conn_list, int max_conns) |
Takashi Iwai | a12d3e1 | 2011-04-07 15:55:15 +0200 | [diff] [blame] | 363 | { |
Takashi Iwai | 09cf03b | 2012-05-19 17:21:25 +0200 | [diff] [blame] | 364 | struct snd_array *array = &codec->conn_lists; |
| 365 | int len; |
| 366 | hda_nid_t *p; |
| 367 | bool added = false; |
Takashi Iwai | a12d3e1 | 2011-04-07 15:55:15 +0200 | [diff] [blame] | 368 | |
Takashi Iwai | 09cf03b | 2012-05-19 17:21:25 +0200 | [diff] [blame] | 369 | again: |
| 370 | mutex_lock(&codec->hash_mutex); |
| 371 | len = -1; |
| 372 | /* if the connection-list is already cached, read it */ |
| 373 | p = lookup_conn_list(array, nid); |
| 374 | if (p) { |
| 375 | len = p[1]; |
| 376 | if (conn_list && len > max_conns) { |
| 377 | snd_printk(KERN_ERR "hda_codec: " |
| 378 | "Too many connections %d for NID 0x%x\n", |
| 379 | len, nid); |
| 380 | mutex_unlock(&codec->hash_mutex); |
| 381 | return -EINVAL; |
| 382 | } |
| 383 | if (conn_list && len) |
| 384 | memcpy(conn_list, p + 2, len * sizeof(hda_nid_t)); |
Takashi Iwai | dce2079 | 2011-06-24 14:10:28 +0200 | [diff] [blame] | 385 | } |
Takashi Iwai | 09cf03b | 2012-05-19 17:21:25 +0200 | [diff] [blame] | 386 | mutex_unlock(&codec->hash_mutex); |
| 387 | if (len >= 0) |
| 388 | return len; |
| 389 | if (snd_BUG_ON(added)) |
| 390 | return -EINVAL; |
| 391 | |
| 392 | len = read_and_add_raw_conns(codec, nid); |
| 393 | if (len < 0) |
| 394 | return len; |
| 395 | added = true; |
| 396 | goto again; |
Takashi Iwai | a12d3e1 | 2011-04-07 15:55:15 +0200 | [diff] [blame] | 397 | } |
| 398 | EXPORT_SYMBOL_HDA(snd_hda_get_connections); |
| 399 | |
Takashi Iwai | 9e7717c | 2011-07-11 15:42:52 +0200 | [diff] [blame] | 400 | /** |
| 401 | * snd_hda_get_raw_connections - copy connection list without cache |
| 402 | * @codec: the HDA codec |
| 403 | * @nid: NID to parse |
| 404 | * @conn_list: connection list array |
| 405 | * @max_conns: max. number of connections to store |
| 406 | * |
| 407 | * Like snd_hda_get_connections(), copy the connection list but without |
| 408 | * checking through the connection-list cache. |
| 409 | * Currently called only from hda_proc.c, so not exported. |
| 410 | */ |
| 411 | int snd_hda_get_raw_connections(struct hda_codec *codec, hda_nid_t nid, |
| 412 | hda_nid_t *conn_list, int max_conns) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | { |
| 414 | unsigned int parm; |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 415 | int i, conn_len, conns; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | unsigned int shift, num_elems, mask; |
Takashi Iwai | 1ba7a7c | 2009-07-27 12:56:26 +0200 | [diff] [blame] | 417 | unsigned int wcaps; |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 418 | hda_nid_t prev_nid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | |
Takashi Iwai | da3cec3 | 2008-08-08 17:12:14 +0200 | [diff] [blame] | 420 | if (snd_BUG_ON(!conn_list || max_conns <= 0)) |
| 421 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | |
Takashi Iwai | 1ba7a7c | 2009-07-27 12:56:26 +0200 | [diff] [blame] | 423 | wcaps = get_wcaps(codec, nid); |
| 424 | if (!(wcaps & AC_WCAP_CONN_LIST) && |
Takashi Iwai | 8d087c7 | 2011-06-28 12:45:47 +0200 | [diff] [blame] | 425 | get_wcaps_type(wcaps) != AC_WID_VOL_KNB) |
| 426 | return 0; |
Jaroslav Kysela | 16a433d | 2009-07-22 16:20:40 +0200 | [diff] [blame] | 427 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | parm = snd_hda_param_read(codec, nid, AC_PAR_CONNLIST_LEN); |
| 429 | if (parm & AC_CLIST_LONG) { |
| 430 | /* long form */ |
| 431 | shift = 16; |
| 432 | num_elems = 2; |
| 433 | } else { |
| 434 | /* short form */ |
| 435 | shift = 8; |
| 436 | num_elems = 4; |
| 437 | } |
| 438 | conn_len = parm & AC_CLIST_LENGTH; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | mask = (1 << (shift-1)) - 1; |
| 440 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 441 | if (!conn_len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | return 0; /* no connection */ |
| 443 | |
| 444 | if (conn_len == 1) { |
| 445 | /* single connection */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 446 | parm = snd_hda_codec_read(codec, nid, 0, |
| 447 | AC_VERB_GET_CONNECT_LIST, 0); |
Takashi Iwai | 3c6aae4 | 2009-07-10 12:52:27 +0200 | [diff] [blame] | 448 | if (parm == -1 && codec->bus->rirb_error) |
| 449 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | conn_list[0] = parm & mask; |
| 451 | return 1; |
| 452 | } |
| 453 | |
| 454 | /* multi connection */ |
| 455 | conns = 0; |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 456 | prev_nid = 0; |
| 457 | for (i = 0; i < conn_len; i++) { |
| 458 | int range_val; |
| 459 | hda_nid_t val, n; |
| 460 | |
Takashi Iwai | 3c6aae4 | 2009-07-10 12:52:27 +0200 | [diff] [blame] | 461 | if (i % num_elems == 0) { |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 462 | parm = snd_hda_codec_read(codec, nid, 0, |
| 463 | AC_VERB_GET_CONNECT_LIST, i); |
Takashi Iwai | 3c6aae4 | 2009-07-10 12:52:27 +0200 | [diff] [blame] | 464 | if (parm == -1 && codec->bus->rirb_error) |
| 465 | return -EIO; |
| 466 | } |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 467 | range_val = !!(parm & (1 << (shift-1))); /* ranges */ |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 468 | val = parm & mask; |
Jaroslav Kysela | 2e9bf24 | 2009-07-18 11:48:19 +0200 | [diff] [blame] | 469 | if (val == 0) { |
| 470 | snd_printk(KERN_WARNING "hda_codec: " |
| 471 | "invalid CONNECT_LIST verb %x[%i]:%x\n", |
| 472 | nid, i, parm); |
| 473 | return 0; |
| 474 | } |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 475 | parm >>= shift; |
| 476 | if (range_val) { |
| 477 | /* ranges between the previous and this one */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 478 | if (!prev_nid || prev_nid >= val) { |
| 479 | snd_printk(KERN_WARNING "hda_codec: " |
| 480 | "invalid dep_range_val %x:%x\n", |
| 481 | prev_nid, val); |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 482 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | } |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 484 | for (n = prev_nid + 1; n <= val; n++) { |
| 485 | if (conns >= max_conns) { |
Takashi Iwai | 5aacc21 | 2010-07-30 10:36:29 +0200 | [diff] [blame] | 486 | snd_printk(KERN_ERR "hda_codec: " |
| 487 | "Too many connections %d for NID 0x%x\n", |
| 488 | conns, nid); |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 489 | return -EINVAL; |
| 490 | } |
| 491 | conn_list[conns++] = n; |
| 492 | } |
| 493 | } else { |
| 494 | if (conns >= max_conns) { |
Takashi Iwai | 5aacc21 | 2010-07-30 10:36:29 +0200 | [diff] [blame] | 495 | snd_printk(KERN_ERR "hda_codec: " |
| 496 | "Too many connections %d for NID 0x%x\n", |
| 497 | conns, nid); |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 498 | return -EINVAL; |
| 499 | } |
| 500 | conn_list[conns++] = val; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | } |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 502 | prev_nid = val; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | } |
| 504 | return conns; |
| 505 | } |
| 506 | |
Takashi Iwai | a12d3e1 | 2011-04-07 15:55:15 +0200 | [diff] [blame] | 507 | static bool add_conn_list(struct snd_array *array, hda_nid_t nid) |
| 508 | { |
| 509 | hda_nid_t *p = snd_array_new(array); |
| 510 | if (!p) |
| 511 | return false; |
| 512 | *p = nid; |
| 513 | return true; |
| 514 | } |
| 515 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | /** |
Takashi Iwai | b2f934a | 2011-07-04 16:23:26 +0200 | [diff] [blame] | 517 | * snd_hda_override_conn_list - add/modify the connection-list to cache |
| 518 | * @codec: the HDA codec |
| 519 | * @nid: NID to parse |
| 520 | * @len: number of connection list entries |
| 521 | * @list: the list of connection entries |
| 522 | * |
| 523 | * Add or modify the given connection-list to the cache. If the corresponding |
| 524 | * cache already exists, invalidate it and append a new one. |
| 525 | * |
| 526 | * Returns zero or a negative error code. |
| 527 | */ |
| 528 | int snd_hda_override_conn_list(struct hda_codec *codec, hda_nid_t nid, int len, |
| 529 | const hda_nid_t *list) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | { |
Takashi Iwai | b2f934a | 2011-07-04 16:23:26 +0200 | [diff] [blame] | 531 | struct snd_array *array = &codec->conn_lists; |
| 532 | hda_nid_t *p; |
| 533 | int i, old_used; |
| 534 | |
Takashi Iwai | 09cf03b | 2012-05-19 17:21:25 +0200 | [diff] [blame] | 535 | mutex_lock(&codec->hash_mutex); |
Takashi Iwai | b2f934a | 2011-07-04 16:23:26 +0200 | [diff] [blame] | 536 | p = lookup_conn_list(array, nid); |
| 537 | if (p) |
| 538 | *p = -1; /* invalidate the old entry */ |
| 539 | |
| 540 | old_used = array->used; |
| 541 | if (!add_conn_list(array, nid) || !add_conn_list(array, len)) |
| 542 | goto error_add; |
| 543 | for (i = 0; i < len; i++) |
| 544 | if (!add_conn_list(array, list[i])) |
| 545 | goto error_add; |
Takashi Iwai | 09cf03b | 2012-05-19 17:21:25 +0200 | [diff] [blame] | 546 | mutex_unlock(&codec->hash_mutex); |
Takashi Iwai | b2f934a | 2011-07-04 16:23:26 +0200 | [diff] [blame] | 547 | return 0; |
| 548 | |
| 549 | error_add: |
| 550 | array->used = old_used; |
Takashi Iwai | 09cf03b | 2012-05-19 17:21:25 +0200 | [diff] [blame] | 551 | mutex_unlock(&codec->hash_mutex); |
Takashi Iwai | b2f934a | 2011-07-04 16:23:26 +0200 | [diff] [blame] | 552 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | } |
Takashi Iwai | b2f934a | 2011-07-04 16:23:26 +0200 | [diff] [blame] | 554 | EXPORT_SYMBOL_HDA(snd_hda_override_conn_list); |
| 555 | |
| 556 | /** |
Takashi Iwai | 8d087c7 | 2011-06-28 12:45:47 +0200 | [diff] [blame] | 557 | * snd_hda_get_conn_index - get the connection index of the given NID |
| 558 | * @codec: the HDA codec |
| 559 | * @mux: NID containing the list |
| 560 | * @nid: NID to select |
| 561 | * @recursive: 1 when searching NID recursively, otherwise 0 |
| 562 | * |
| 563 | * Parses the connection list of the widget @mux and checks whether the |
| 564 | * widget @nid is present. If it is, return the connection index. |
| 565 | * Otherwise it returns -1. |
| 566 | */ |
| 567 | int snd_hda_get_conn_index(struct hda_codec *codec, hda_nid_t mux, |
| 568 | hda_nid_t nid, int recursive) |
| 569 | { |
| 570 | hda_nid_t conn[HDA_MAX_NUM_INPUTS]; |
| 571 | int i, nums; |
| 572 | |
| 573 | nums = snd_hda_get_connections(codec, mux, conn, ARRAY_SIZE(conn)); |
| 574 | for (i = 0; i < nums; i++) |
| 575 | if (conn[i] == nid) |
| 576 | return i; |
| 577 | if (!recursive) |
| 578 | return -1; |
| 579 | if (recursive > 5) { |
| 580 | snd_printd("hda_codec: too deep connection for 0x%x\n", nid); |
| 581 | return -1; |
| 582 | } |
| 583 | recursive++; |
Takashi Iwai | 99e14c9 | 2011-09-13 10:33:16 +0200 | [diff] [blame] | 584 | for (i = 0; i < nums; i++) { |
| 585 | unsigned int type = get_wcaps_type(get_wcaps(codec, conn[i])); |
| 586 | if (type == AC_WID_PIN || type == AC_WID_AUD_OUT) |
| 587 | continue; |
Takashi Iwai | 8d087c7 | 2011-06-28 12:45:47 +0200 | [diff] [blame] | 588 | if (snd_hda_get_conn_index(codec, conn[i], nid, recursive) >= 0) |
| 589 | return i; |
Takashi Iwai | 99e14c9 | 2011-09-13 10:33:16 +0200 | [diff] [blame] | 590 | } |
Takashi Iwai | 8d087c7 | 2011-06-28 12:45:47 +0200 | [diff] [blame] | 591 | return -1; |
| 592 | } |
| 593 | EXPORT_SYMBOL_HDA(snd_hda_get_conn_index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | |
| 595 | /** |
| 596 | * snd_hda_queue_unsol_event - add an unsolicited event to queue |
| 597 | * @bus: the BUS |
| 598 | * @res: unsolicited event (lower 32bit of RIRB entry) |
| 599 | * @res_ex: codec addr and flags (upper 32bit or RIRB entry) |
| 600 | * |
| 601 | * Adds the given event to the queue. The events are processed in |
| 602 | * the workqueue asynchronously. Call this function in the interrupt |
| 603 | * hanlder when RIRB receives an unsolicited event. |
| 604 | * |
| 605 | * Returns 0 if successful, or a negative error code. |
| 606 | */ |
| 607 | int snd_hda_queue_unsol_event(struct hda_bus *bus, u32 res, u32 res_ex) |
| 608 | { |
| 609 | struct hda_bus_unsolicited *unsol; |
| 610 | unsigned int wp; |
| 611 | |
Takashi Iwai | ecf726f | 2011-08-09 14:22:44 +0200 | [diff] [blame] | 612 | trace_hda_unsol_event(bus, res, res_ex); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 613 | unsol = bus->unsol; |
| 614 | if (!unsol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | return 0; |
| 616 | |
| 617 | wp = (unsol->wp + 1) % HDA_UNSOL_QUEUE_SIZE; |
| 618 | unsol->wp = wp; |
| 619 | |
| 620 | wp <<= 1; |
| 621 | unsol->queue[wp] = res; |
| 622 | unsol->queue[wp + 1] = res_ex; |
| 623 | |
Takashi Iwai | 6acaed3 | 2009-01-12 10:09:24 +0100 | [diff] [blame] | 624 | queue_work(bus->workq, &unsol->work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | |
| 626 | return 0; |
| 627 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 628 | EXPORT_SYMBOL_HDA(snd_hda_queue_unsol_event); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | |
| 630 | /* |
Wu Fengguang | 5c1d1a9 | 2008-10-07 14:17:53 +0800 | [diff] [blame] | 631 | * process queued unsolicited events |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 | */ |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 633 | static void process_unsol_events(struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | { |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 635 | struct hda_bus_unsolicited *unsol = |
| 636 | container_of(work, struct hda_bus_unsolicited, work); |
| 637 | struct hda_bus *bus = unsol->bus; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | struct hda_codec *codec; |
| 639 | unsigned int rp, caddr, res; |
| 640 | |
| 641 | while (unsol->rp != unsol->wp) { |
| 642 | rp = (unsol->rp + 1) % HDA_UNSOL_QUEUE_SIZE; |
| 643 | unsol->rp = rp; |
| 644 | rp <<= 1; |
| 645 | res = unsol->queue[rp]; |
| 646 | caddr = unsol->queue[rp + 1]; |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 647 | if (!(caddr & (1 << 4))) /* no unsolicited event? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | continue; |
| 649 | codec = bus->caddr_tbl[caddr & 0x0f]; |
| 650 | if (codec && codec->patch_ops.unsol_event) |
| 651 | codec->patch_ops.unsol_event(codec, res); |
| 652 | } |
| 653 | } |
| 654 | |
| 655 | /* |
| 656 | * initialize unsolicited queue |
| 657 | */ |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 658 | static int init_unsol_queue(struct hda_bus *bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | { |
| 660 | struct hda_bus_unsolicited *unsol; |
| 661 | |
Takashi Iwai | 9f146bb | 2005-11-17 11:07:49 +0100 | [diff] [blame] | 662 | if (bus->unsol) /* already initialized */ |
| 663 | return 0; |
| 664 | |
Takashi Iwai | e560d8d | 2005-09-09 14:21:46 +0200 | [diff] [blame] | 665 | unsol = kzalloc(sizeof(*unsol), GFP_KERNEL); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 666 | if (!unsol) { |
| 667 | snd_printk(KERN_ERR "hda_codec: " |
| 668 | "can't allocate unsolicited queue\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | return -ENOMEM; |
| 670 | } |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 671 | INIT_WORK(&unsol->work, process_unsol_events); |
| 672 | unsol->bus = bus; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | bus->unsol = unsol; |
| 674 | return 0; |
| 675 | } |
| 676 | |
| 677 | /* |
| 678 | * destructor |
| 679 | */ |
| 680 | static void snd_hda_codec_free(struct hda_codec *codec); |
| 681 | |
| 682 | static int snd_hda_bus_free(struct hda_bus *bus) |
| 683 | { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 684 | struct hda_codec *codec, *n; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 686 | if (!bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | return 0; |
Takashi Iwai | 6acaed3 | 2009-01-12 10:09:24 +0100 | [diff] [blame] | 688 | if (bus->workq) |
| 689 | flush_workqueue(bus->workq); |
| 690 | if (bus->unsol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | kfree(bus->unsol); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 692 | list_for_each_entry_safe(codec, n, &bus->codec_list, list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | snd_hda_codec_free(codec); |
| 694 | } |
| 695 | if (bus->ops.private_free) |
| 696 | bus->ops.private_free(bus); |
Takashi Iwai | 6acaed3 | 2009-01-12 10:09:24 +0100 | [diff] [blame] | 697 | if (bus->workq) |
| 698 | destroy_workqueue(bus->workq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | kfree(bus); |
| 700 | return 0; |
| 701 | } |
| 702 | |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 703 | static int snd_hda_bus_dev_free(struct snd_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 704 | { |
| 705 | struct hda_bus *bus = device->device_data; |
Takashi Iwai | b94d3539 | 2008-11-21 09:08:06 +0100 | [diff] [blame] | 706 | bus->shutdown = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | return snd_hda_bus_free(bus); |
| 708 | } |
| 709 | |
Takashi Iwai | d7ffba1 | 2008-07-30 15:01:46 +0200 | [diff] [blame] | 710 | #ifdef CONFIG_SND_HDA_HWDEP |
| 711 | static int snd_hda_bus_dev_register(struct snd_device *device) |
| 712 | { |
| 713 | struct hda_bus *bus = device->device_data; |
| 714 | struct hda_codec *codec; |
| 715 | list_for_each_entry(codec, &bus->codec_list, list) { |
| 716 | snd_hda_hwdep_add_sysfs(codec); |
Takashi Iwai | a2f6309 | 2009-11-11 09:34:25 +0100 | [diff] [blame] | 717 | snd_hda_hwdep_add_power_sysfs(codec); |
Takashi Iwai | d7ffba1 | 2008-07-30 15:01:46 +0200 | [diff] [blame] | 718 | } |
| 719 | return 0; |
| 720 | } |
| 721 | #else |
| 722 | #define snd_hda_bus_dev_register NULL |
| 723 | #endif |
| 724 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | /** |
| 726 | * snd_hda_bus_new - create a HDA bus |
| 727 | * @card: the card entry |
| 728 | * @temp: the template for hda_bus information |
| 729 | * @busp: the pointer to store the created bus instance |
| 730 | * |
| 731 | * Returns 0 if successful, or a negative error code. |
| 732 | */ |
Takashi Iwai | 1289e9e | 2008-11-27 15:47:11 +0100 | [diff] [blame] | 733 | int /*__devinit*/ snd_hda_bus_new(struct snd_card *card, |
Takashi Iwai | 756e2b0 | 2007-04-16 11:27:07 +0200 | [diff] [blame] | 734 | const struct hda_bus_template *temp, |
| 735 | struct hda_bus **busp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | { |
| 737 | struct hda_bus *bus; |
| 738 | int err; |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 739 | static struct snd_device_ops dev_ops = { |
Takashi Iwai | d7ffba1 | 2008-07-30 15:01:46 +0200 | [diff] [blame] | 740 | .dev_register = snd_hda_bus_dev_register, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | .dev_free = snd_hda_bus_dev_free, |
| 742 | }; |
| 743 | |
Takashi Iwai | da3cec3 | 2008-08-08 17:12:14 +0200 | [diff] [blame] | 744 | if (snd_BUG_ON(!temp)) |
| 745 | return -EINVAL; |
| 746 | if (snd_BUG_ON(!temp->ops.command || !temp->ops.get_response)) |
| 747 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 748 | |
| 749 | if (busp) |
| 750 | *busp = NULL; |
| 751 | |
Takashi Iwai | e560d8d | 2005-09-09 14:21:46 +0200 | [diff] [blame] | 752 | bus = kzalloc(sizeof(*bus), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 753 | if (bus == NULL) { |
| 754 | snd_printk(KERN_ERR "can't allocate struct hda_bus\n"); |
| 755 | return -ENOMEM; |
| 756 | } |
| 757 | |
| 758 | bus->card = card; |
| 759 | bus->private_data = temp->private_data; |
| 760 | bus->pci = temp->pci; |
| 761 | bus->modelname = temp->modelname; |
Takashi Iwai | fee2fba | 2008-11-27 12:43:28 +0100 | [diff] [blame] | 762 | bus->power_save = temp->power_save; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 763 | bus->ops = temp->ops; |
| 764 | |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 765 | mutex_init(&bus->cmd_mutex); |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 766 | mutex_init(&bus->prepare_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | INIT_LIST_HEAD(&bus->codec_list); |
| 768 | |
Takashi Iwai | e8c0ee5 | 2009-02-05 07:34:28 +0100 | [diff] [blame] | 769 | snprintf(bus->workq_name, sizeof(bus->workq_name), |
| 770 | "hd-audio%d", card->number); |
| 771 | bus->workq = create_singlethread_workqueue(bus->workq_name); |
Takashi Iwai | 6acaed3 | 2009-01-12 10:09:24 +0100 | [diff] [blame] | 772 | if (!bus->workq) { |
Takashi Iwai | e8c0ee5 | 2009-02-05 07:34:28 +0100 | [diff] [blame] | 773 | snd_printk(KERN_ERR "cannot create workqueue %s\n", |
| 774 | bus->workq_name); |
Takashi Iwai | 6acaed3 | 2009-01-12 10:09:24 +0100 | [diff] [blame] | 775 | kfree(bus); |
| 776 | return -ENOMEM; |
| 777 | } |
| 778 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 779 | err = snd_device_new(card, SNDRV_DEV_BUS, bus, &dev_ops); |
| 780 | if (err < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 781 | snd_hda_bus_free(bus); |
| 782 | return err; |
| 783 | } |
| 784 | if (busp) |
| 785 | *busp = bus; |
| 786 | return 0; |
| 787 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 788 | EXPORT_SYMBOL_HDA(snd_hda_bus_new); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 | |
Takashi Iwai | 8246761 | 2007-07-27 19:15:54 +0200 | [diff] [blame] | 790 | #ifdef CONFIG_SND_HDA_GENERIC |
| 791 | #define is_generic_config(codec) \ |
Takashi Iwai | f44ac83 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 792 | (codec->modelname && !strcmp(codec->modelname, "generic")) |
Takashi Iwai | 8246761 | 2007-07-27 19:15:54 +0200 | [diff] [blame] | 793 | #else |
| 794 | #define is_generic_config(codec) 0 |
| 795 | #endif |
| 796 | |
Takashi Iwai | 645f10c | 2008-11-28 15:07:37 +0100 | [diff] [blame] | 797 | #ifdef MODULE |
Takashi Iwai | 1289e9e | 2008-11-27 15:47:11 +0100 | [diff] [blame] | 798 | #define HDA_MODREQ_MAX_COUNT 2 /* two request_modules()'s */ |
| 799 | #else |
Takashi Iwai | 645f10c | 2008-11-28 15:07:37 +0100 | [diff] [blame] | 800 | #define HDA_MODREQ_MAX_COUNT 0 /* all presets are statically linked */ |
Takashi Iwai | 1289e9e | 2008-11-27 15:47:11 +0100 | [diff] [blame] | 801 | #endif |
| 802 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | /* |
| 804 | * find a matching codec preset |
| 805 | */ |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 806 | static const struct hda_codec_preset * |
Takashi Iwai | 756e2b0 | 2007-04-16 11:27:07 +0200 | [diff] [blame] | 807 | find_codec_preset(struct hda_codec *codec) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | { |
Takashi Iwai | 1289e9e | 2008-11-27 15:47:11 +0100 | [diff] [blame] | 809 | struct hda_codec_preset_list *tbl; |
| 810 | const struct hda_codec_preset *preset; |
Takashi Iwai | 5d908ab | 2012-08-24 18:40:10 +0200 | [diff] [blame] | 811 | unsigned int mod_requested = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | |
Takashi Iwai | 8246761 | 2007-07-27 19:15:54 +0200 | [diff] [blame] | 813 | if (is_generic_config(codec)) |
Takashi Iwai | d5ad630 | 2007-03-07 15:55:59 +0100 | [diff] [blame] | 814 | return NULL; /* use the generic parser */ |
| 815 | |
Takashi Iwai | 1289e9e | 2008-11-27 15:47:11 +0100 | [diff] [blame] | 816 | again: |
| 817 | mutex_lock(&preset_mutex); |
| 818 | list_for_each_entry(tbl, &hda_preset_tables, list) { |
| 819 | if (!try_module_get(tbl->owner)) { |
| 820 | snd_printk(KERN_ERR "hda_codec: cannot module_get\n"); |
| 821 | continue; |
| 822 | } |
| 823 | for (preset = tbl->preset; preset->id; preset++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | u32 mask = preset->mask; |
Marc Boucher | ca7cfae | 2008-01-22 15:32:25 +0100 | [diff] [blame] | 825 | if (preset->afg && preset->afg != codec->afg) |
| 826 | continue; |
| 827 | if (preset->mfg && preset->mfg != codec->mfg) |
| 828 | continue; |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 829 | if (!mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 | mask = ~0; |
Takashi Iwai | 9c7f852 | 2006-06-28 15:08:22 +0200 | [diff] [blame] | 831 | if (preset->id == (codec->vendor_id & mask) && |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 832 | (!preset->rev || |
Takashi Iwai | 1289e9e | 2008-11-27 15:47:11 +0100 | [diff] [blame] | 833 | preset->rev == codec->revision_id)) { |
| 834 | mutex_unlock(&preset_mutex); |
| 835 | codec->owner = tbl->owner; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 836 | return preset; |
Takashi Iwai | 1289e9e | 2008-11-27 15:47:11 +0100 | [diff] [blame] | 837 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | } |
Takashi Iwai | 1289e9e | 2008-11-27 15:47:11 +0100 | [diff] [blame] | 839 | module_put(tbl->owner); |
| 840 | } |
| 841 | mutex_unlock(&preset_mutex); |
| 842 | |
| 843 | if (mod_requested < HDA_MODREQ_MAX_COUNT) { |
| 844 | char name[32]; |
| 845 | if (!mod_requested) |
| 846 | snprintf(name, sizeof(name), "snd-hda-codec-id:%08x", |
| 847 | codec->vendor_id); |
| 848 | else |
| 849 | snprintf(name, sizeof(name), "snd-hda-codec-id:%04x*", |
| 850 | (codec->vendor_id >> 16) & 0xffff); |
| 851 | request_module(name); |
| 852 | mod_requested++; |
| 853 | goto again; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 854 | } |
| 855 | return NULL; |
| 856 | } |
| 857 | |
| 858 | /* |
Takashi Iwai | f44ac83 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 859 | * get_codec_name - store the codec name |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | */ |
Takashi Iwai | f44ac83 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 861 | static int get_codec_name(struct hda_codec *codec) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 862 | { |
| 863 | const struct hda_vendor_id *c; |
| 864 | const char *vendor = NULL; |
| 865 | u16 vendor_id = codec->vendor_id >> 16; |
Takashi Iwai | 812a2cc | 2009-05-16 10:00:49 +0200 | [diff] [blame] | 866 | char tmp[16]; |
| 867 | |
| 868 | if (codec->vendor_name) |
| 869 | goto get_chip_name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | |
| 871 | for (c = hda_vendor_ids; c->id; c++) { |
| 872 | if (c->id == vendor_id) { |
| 873 | vendor = c->name; |
| 874 | break; |
| 875 | } |
| 876 | } |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 877 | if (!vendor) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 878 | sprintf(tmp, "Generic %04x", vendor_id); |
| 879 | vendor = tmp; |
| 880 | } |
Takashi Iwai | 812a2cc | 2009-05-16 10:00:49 +0200 | [diff] [blame] | 881 | codec->vendor_name = kstrdup(vendor, GFP_KERNEL); |
| 882 | if (!codec->vendor_name) |
| 883 | return -ENOMEM; |
| 884 | |
| 885 | get_chip_name: |
| 886 | if (codec->chip_name) |
| 887 | return 0; |
| 888 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 889 | if (codec->preset && codec->preset->name) |
Takashi Iwai | 812a2cc | 2009-05-16 10:00:49 +0200 | [diff] [blame] | 890 | codec->chip_name = kstrdup(codec->preset->name, GFP_KERNEL); |
| 891 | else { |
| 892 | sprintf(tmp, "ID %x", codec->vendor_id & 0xffff); |
| 893 | codec->chip_name = kstrdup(tmp, GFP_KERNEL); |
| 894 | } |
| 895 | if (!codec->chip_name) |
Takashi Iwai | f44ac83 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 896 | return -ENOMEM; |
| 897 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 898 | } |
| 899 | |
| 900 | /* |
Sasha Khapyorsky | 673b683 | 2005-08-11 11:00:16 +0200 | [diff] [blame] | 901 | * look for an AFG and MFG nodes |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 902 | */ |
Takashi Iwai | 1289e9e | 2008-11-27 15:47:11 +0100 | [diff] [blame] | 903 | static void /*__devinit*/ setup_fg_nodes(struct hda_codec *codec) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 904 | { |
Takashi Iwai | 93e82ae | 2009-04-17 18:04:41 +0200 | [diff] [blame] | 905 | int i, total_nodes, function_id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 906 | hda_nid_t nid; |
| 907 | |
| 908 | total_nodes = snd_hda_get_sub_nodes(codec, AC_NODE_ROOT, &nid); |
| 909 | for (i = 0; i < total_nodes; i++, nid++) { |
Takashi Iwai | 93e82ae | 2009-04-17 18:04:41 +0200 | [diff] [blame] | 910 | function_id = snd_hda_param_read(codec, nid, |
Jaroslav Kysela | 79c944a | 2010-07-19 15:52:39 +0200 | [diff] [blame] | 911 | AC_PAR_FUNCTION_TYPE); |
Jaroslav Kysela | cd7643b | 2010-07-20 12:11:25 +0200 | [diff] [blame] | 912 | switch (function_id & 0xff) { |
Sasha Khapyorsky | 673b683 | 2005-08-11 11:00:16 +0200 | [diff] [blame] | 913 | case AC_GRP_AUDIO_FUNCTION: |
| 914 | codec->afg = nid; |
Jaroslav Kysela | 79c944a | 2010-07-19 15:52:39 +0200 | [diff] [blame] | 915 | codec->afg_function_id = function_id & 0xff; |
| 916 | codec->afg_unsol = (function_id >> 8) & 1; |
Sasha Khapyorsky | 673b683 | 2005-08-11 11:00:16 +0200 | [diff] [blame] | 917 | break; |
| 918 | case AC_GRP_MODEM_FUNCTION: |
| 919 | codec->mfg = nid; |
Jaroslav Kysela | 79c944a | 2010-07-19 15:52:39 +0200 | [diff] [blame] | 920 | codec->mfg_function_id = function_id & 0xff; |
| 921 | codec->mfg_unsol = (function_id >> 8) & 1; |
Sasha Khapyorsky | 673b683 | 2005-08-11 11:00:16 +0200 | [diff] [blame] | 922 | break; |
| 923 | default: |
| 924 | break; |
| 925 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 926 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 927 | } |
| 928 | |
| 929 | /* |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 930 | * read widget caps for each widget and store in cache |
| 931 | */ |
| 932 | static int read_widget_caps(struct hda_codec *codec, hda_nid_t fg_node) |
| 933 | { |
| 934 | int i; |
| 935 | hda_nid_t nid; |
| 936 | |
| 937 | codec->num_nodes = snd_hda_get_sub_nodes(codec, fg_node, |
| 938 | &codec->start_nid); |
| 939 | codec->wcaps = kmalloc(codec->num_nodes * 4, GFP_KERNEL); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 940 | if (!codec->wcaps) |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 941 | return -ENOMEM; |
| 942 | nid = codec->start_nid; |
| 943 | for (i = 0; i < codec->num_nodes; i++, nid++) |
| 944 | codec->wcaps[i] = snd_hda_param_read(codec, nid, |
| 945 | AC_PAR_AUDIO_WIDGET_CAP); |
| 946 | return 0; |
| 947 | } |
| 948 | |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 949 | /* read all pin default configurations and save codec->init_pins */ |
| 950 | static int read_pin_defaults(struct hda_codec *codec) |
| 951 | { |
| 952 | int i; |
| 953 | hda_nid_t nid = codec->start_nid; |
| 954 | |
| 955 | for (i = 0; i < codec->num_nodes; i++, nid++) { |
| 956 | struct hda_pincfg *pin; |
| 957 | unsigned int wcaps = get_wcaps(codec, nid); |
Takashi Iwai | a22d543 | 2009-07-27 12:54:26 +0200 | [diff] [blame] | 958 | unsigned int wid_type = get_wcaps_type(wcaps); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 959 | if (wid_type != AC_WID_PIN) |
| 960 | continue; |
| 961 | pin = snd_array_new(&codec->init_pins); |
| 962 | if (!pin) |
| 963 | return -ENOMEM; |
| 964 | pin->nid = nid; |
| 965 | pin->cfg = snd_hda_codec_read(codec, nid, 0, |
| 966 | AC_VERB_GET_CONFIG_DEFAULT, 0); |
Takashi Iwai | ac0547d | 2010-07-05 16:50:13 +0200 | [diff] [blame] | 967 | pin->ctrl = snd_hda_codec_read(codec, nid, 0, |
| 968 | AC_VERB_GET_PIN_WIDGET_CONTROL, |
| 969 | 0); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 970 | } |
| 971 | return 0; |
| 972 | } |
| 973 | |
| 974 | /* look up the given pin config list and return the item matching with NID */ |
| 975 | static struct hda_pincfg *look_up_pincfg(struct hda_codec *codec, |
| 976 | struct snd_array *array, |
| 977 | hda_nid_t nid) |
| 978 | { |
| 979 | int i; |
| 980 | for (i = 0; i < array->used; i++) { |
| 981 | struct hda_pincfg *pin = snd_array_elem(array, i); |
| 982 | if (pin->nid == nid) |
| 983 | return pin; |
| 984 | } |
| 985 | return NULL; |
| 986 | } |
| 987 | |
| 988 | /* write a config value for the given NID */ |
| 989 | static void set_pincfg(struct hda_codec *codec, hda_nid_t nid, |
| 990 | unsigned int cfg) |
| 991 | { |
| 992 | int i; |
| 993 | for (i = 0; i < 4; i++) { |
| 994 | snd_hda_codec_write(codec, nid, 0, |
| 995 | AC_VERB_SET_CONFIG_DEFAULT_BYTES_0 + i, |
| 996 | cfg & 0xff); |
| 997 | cfg >>= 8; |
| 998 | } |
| 999 | } |
| 1000 | |
| 1001 | /* set the current pin config value for the given NID. |
| 1002 | * the value is cached, and read via snd_hda_codec_get_pincfg() |
| 1003 | */ |
| 1004 | int snd_hda_add_pincfg(struct hda_codec *codec, struct snd_array *list, |
| 1005 | hda_nid_t nid, unsigned int cfg) |
| 1006 | { |
| 1007 | struct hda_pincfg *pin; |
Takashi Iwai | 5e7b8e0 | 2009-02-23 09:45:59 +0100 | [diff] [blame] | 1008 | unsigned int oldcfg; |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 1009 | |
Takashi Iwai | b82855a | 2009-12-27 11:24:56 +0100 | [diff] [blame] | 1010 | if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN) |
| 1011 | return -EINVAL; |
| 1012 | |
Takashi Iwai | 5e7b8e0 | 2009-02-23 09:45:59 +0100 | [diff] [blame] | 1013 | oldcfg = snd_hda_codec_get_pincfg(codec, nid); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 1014 | pin = look_up_pincfg(codec, list, nid); |
| 1015 | if (!pin) { |
| 1016 | pin = snd_array_new(list); |
| 1017 | if (!pin) |
| 1018 | return -ENOMEM; |
| 1019 | pin->nid = nid; |
| 1020 | } |
| 1021 | pin->cfg = cfg; |
Takashi Iwai | 5e7b8e0 | 2009-02-23 09:45:59 +0100 | [diff] [blame] | 1022 | |
| 1023 | /* change only when needed; e.g. if the pincfg is already present |
| 1024 | * in user_pins[], don't write it |
| 1025 | */ |
| 1026 | cfg = snd_hda_codec_get_pincfg(codec, nid); |
| 1027 | if (oldcfg != cfg) |
| 1028 | set_pincfg(codec, nid, cfg); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 1029 | return 0; |
| 1030 | } |
| 1031 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1032 | /** |
| 1033 | * snd_hda_codec_set_pincfg - Override a pin default configuration |
| 1034 | * @codec: the HDA codec |
| 1035 | * @nid: NID to set the pin config |
| 1036 | * @cfg: the pin default config value |
| 1037 | * |
| 1038 | * Override a pin default configuration value in the cache. |
| 1039 | * This value can be read by snd_hda_codec_get_pincfg() in a higher |
| 1040 | * priority than the real hardware value. |
| 1041 | */ |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 1042 | int snd_hda_codec_set_pincfg(struct hda_codec *codec, |
| 1043 | hda_nid_t nid, unsigned int cfg) |
| 1044 | { |
Takashi Iwai | 346ff70 | 2009-02-23 09:42:57 +0100 | [diff] [blame] | 1045 | return snd_hda_add_pincfg(codec, &codec->driver_pins, nid, cfg); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 1046 | } |
| 1047 | EXPORT_SYMBOL_HDA(snd_hda_codec_set_pincfg); |
| 1048 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1049 | /** |
| 1050 | * snd_hda_codec_get_pincfg - Obtain a pin-default configuration |
| 1051 | * @codec: the HDA codec |
| 1052 | * @nid: NID to get the pin config |
| 1053 | * |
| 1054 | * Get the current pin config value of the given pin NID. |
| 1055 | * If the pincfg value is cached or overridden via sysfs or driver, |
| 1056 | * returns the cached value. |
| 1057 | */ |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 1058 | unsigned int snd_hda_codec_get_pincfg(struct hda_codec *codec, hda_nid_t nid) |
| 1059 | { |
| 1060 | struct hda_pincfg *pin; |
| 1061 | |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 1062 | #ifdef CONFIG_SND_HDA_HWDEP |
Takashi Iwai | 346ff70 | 2009-02-23 09:42:57 +0100 | [diff] [blame] | 1063 | pin = look_up_pincfg(codec, &codec->user_pins, nid); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 1064 | if (pin) |
| 1065 | return pin->cfg; |
| 1066 | #endif |
Takashi Iwai | 5e7b8e0 | 2009-02-23 09:45:59 +0100 | [diff] [blame] | 1067 | pin = look_up_pincfg(codec, &codec->driver_pins, nid); |
| 1068 | if (pin) |
| 1069 | return pin->cfg; |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 1070 | pin = look_up_pincfg(codec, &codec->init_pins, nid); |
| 1071 | if (pin) |
| 1072 | return pin->cfg; |
| 1073 | return 0; |
| 1074 | } |
| 1075 | EXPORT_SYMBOL_HDA(snd_hda_codec_get_pincfg); |
| 1076 | |
| 1077 | /* restore all current pin configs */ |
| 1078 | static void restore_pincfgs(struct hda_codec *codec) |
| 1079 | { |
| 1080 | int i; |
| 1081 | for (i = 0; i < codec->init_pins.used; i++) { |
| 1082 | struct hda_pincfg *pin = snd_array_elem(&codec->init_pins, i); |
| 1083 | set_pincfg(codec, pin->nid, |
| 1084 | snd_hda_codec_get_pincfg(codec, pin->nid)); |
| 1085 | } |
| 1086 | } |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 1087 | |
Takashi Iwai | 92ee616 | 2009-12-27 11:18:59 +0100 | [diff] [blame] | 1088 | /** |
| 1089 | * snd_hda_shutup_pins - Shut up all pins |
| 1090 | * @codec: the HDA codec |
| 1091 | * |
| 1092 | * Clear all pin controls to shup up before suspend for avoiding click noise. |
| 1093 | * The controls aren't cached so that they can be resumed properly. |
| 1094 | */ |
| 1095 | void snd_hda_shutup_pins(struct hda_codec *codec) |
| 1096 | { |
| 1097 | int i; |
Takashi Iwai | ac0547d | 2010-07-05 16:50:13 +0200 | [diff] [blame] | 1098 | /* don't shut up pins when unloading the driver; otherwise it breaks |
| 1099 | * the default pin setup at the next load of the driver |
| 1100 | */ |
| 1101 | if (codec->bus->shutdown) |
| 1102 | return; |
Takashi Iwai | 92ee616 | 2009-12-27 11:18:59 +0100 | [diff] [blame] | 1103 | for (i = 0; i < codec->init_pins.used; i++) { |
| 1104 | struct hda_pincfg *pin = snd_array_elem(&codec->init_pins, i); |
| 1105 | /* use read here for syncing after issuing each verb */ |
| 1106 | snd_hda_codec_read(codec, pin->nid, 0, |
| 1107 | AC_VERB_SET_PIN_WIDGET_CONTROL, 0); |
| 1108 | } |
Takashi Iwai | ac0547d | 2010-07-05 16:50:13 +0200 | [diff] [blame] | 1109 | codec->pins_shutup = 1; |
Takashi Iwai | 92ee616 | 2009-12-27 11:18:59 +0100 | [diff] [blame] | 1110 | } |
| 1111 | EXPORT_SYMBOL_HDA(snd_hda_shutup_pins); |
| 1112 | |
Takashi Iwai | 2a43952 | 2011-07-26 09:52:50 +0200 | [diff] [blame] | 1113 | #ifdef CONFIG_PM |
Takashi Iwai | ac0547d | 2010-07-05 16:50:13 +0200 | [diff] [blame] | 1114 | /* Restore the pin controls cleared previously via snd_hda_shutup_pins() */ |
| 1115 | static void restore_shutup_pins(struct hda_codec *codec) |
| 1116 | { |
| 1117 | int i; |
| 1118 | if (!codec->pins_shutup) |
| 1119 | return; |
| 1120 | if (codec->bus->shutdown) |
| 1121 | return; |
| 1122 | for (i = 0; i < codec->init_pins.used; i++) { |
| 1123 | struct hda_pincfg *pin = snd_array_elem(&codec->init_pins, i); |
| 1124 | snd_hda_codec_write(codec, pin->nid, 0, |
| 1125 | AC_VERB_SET_PIN_WIDGET_CONTROL, |
| 1126 | pin->ctrl); |
| 1127 | } |
| 1128 | codec->pins_shutup = 0; |
| 1129 | } |
Mike Waychison | 1c7276c | 2011-04-20 12:04:36 -0700 | [diff] [blame] | 1130 | #endif |
Takashi Iwai | ac0547d | 2010-07-05 16:50:13 +0200 | [diff] [blame] | 1131 | |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 1132 | static void init_hda_cache(struct hda_cache_rec *cache, |
| 1133 | unsigned int record_size); |
Takashi Iwai | 1fcaee6 | 2007-08-23 00:01:09 +0200 | [diff] [blame] | 1134 | static void free_hda_cache(struct hda_cache_rec *cache); |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 1135 | |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 1136 | /* restore the initial pin cfgs and release all pincfg lists */ |
| 1137 | static void restore_init_pincfgs(struct hda_codec *codec) |
| 1138 | { |
Takashi Iwai | 346ff70 | 2009-02-23 09:42:57 +0100 | [diff] [blame] | 1139 | /* first free driver_pins and user_pins, then call restore_pincfg |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 1140 | * so that only the values in init_pins are restored |
| 1141 | */ |
Takashi Iwai | 346ff70 | 2009-02-23 09:42:57 +0100 | [diff] [blame] | 1142 | snd_array_free(&codec->driver_pins); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 1143 | #ifdef CONFIG_SND_HDA_HWDEP |
Takashi Iwai | 346ff70 | 2009-02-23 09:42:57 +0100 | [diff] [blame] | 1144 | snd_array_free(&codec->user_pins); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 1145 | #endif |
| 1146 | restore_pincfgs(codec); |
| 1147 | snd_array_free(&codec->init_pins); |
| 1148 | } |
| 1149 | |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 1150 | /* |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1151 | * audio-converter setup caches |
| 1152 | */ |
| 1153 | struct hda_cvt_setup { |
| 1154 | hda_nid_t nid; |
| 1155 | u8 stream_tag; |
| 1156 | u8 channel_id; |
| 1157 | u16 format_id; |
| 1158 | unsigned char active; /* cvt is currently used */ |
| 1159 | unsigned char dirty; /* setups should be cleared */ |
| 1160 | }; |
| 1161 | |
| 1162 | /* get or create a cache entry for the given audio converter NID */ |
| 1163 | static struct hda_cvt_setup * |
| 1164 | get_hda_cvt_setup(struct hda_codec *codec, hda_nid_t nid) |
| 1165 | { |
| 1166 | struct hda_cvt_setup *p; |
| 1167 | int i; |
| 1168 | |
| 1169 | for (i = 0; i < codec->cvt_setups.used; i++) { |
| 1170 | p = snd_array_elem(&codec->cvt_setups, i); |
| 1171 | if (p->nid == nid) |
| 1172 | return p; |
| 1173 | } |
| 1174 | p = snd_array_new(&codec->cvt_setups); |
| 1175 | if (p) |
| 1176 | p->nid = nid; |
| 1177 | return p; |
| 1178 | } |
| 1179 | |
| 1180 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1181 | * codec destructor |
| 1182 | */ |
| 1183 | static void snd_hda_codec_free(struct hda_codec *codec) |
| 1184 | { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1185 | if (!codec) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1186 | return; |
Takashi Iwai | 59cad16 | 2012-06-26 15:00:20 +0200 | [diff] [blame] | 1187 | snd_hda_jack_tbl_clear(codec); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 1188 | restore_init_pincfgs(codec); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 1189 | #ifdef CONFIG_SND_HDA_POWER_SAVE |
| 1190 | cancel_delayed_work(&codec->power_work); |
Takashi Iwai | 6acaed3 | 2009-01-12 10:09:24 +0100 | [diff] [blame] | 1191 | flush_workqueue(codec->bus->workq); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 1192 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1193 | list_del(&codec->list); |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1194 | snd_array_free(&codec->mixers); |
Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 1195 | snd_array_free(&codec->nids); |
Takashi Iwai | 59cad16 | 2012-06-26 15:00:20 +0200 | [diff] [blame] | 1196 | snd_array_free(&codec->cvt_setups); |
Takashi Iwai | a12d3e1 | 2011-04-07 15:55:15 +0200 | [diff] [blame] | 1197 | snd_array_free(&codec->conn_lists); |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 1198 | snd_array_free(&codec->spdif_out); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1199 | codec->bus->caddr_tbl[codec->addr] = NULL; |
| 1200 | if (codec->patch_ops.free) |
| 1201 | codec->patch_ops.free(codec); |
Takashi Iwai | 1289e9e | 2008-11-27 15:47:11 +0100 | [diff] [blame] | 1202 | module_put(codec->owner); |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 1203 | free_hda_cache(&codec->amp_cache); |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 1204 | free_hda_cache(&codec->cmd_cache); |
Takashi Iwai | 812a2cc | 2009-05-16 10:00:49 +0200 | [diff] [blame] | 1205 | kfree(codec->vendor_name); |
| 1206 | kfree(codec->chip_name); |
Takashi Iwai | f44ac83 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1207 | kfree(codec->modelname); |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 1208 | kfree(codec->wcaps); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1209 | kfree(codec); |
| 1210 | } |
| 1211 | |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 1212 | static bool snd_hda_codec_get_supported_ps(struct hda_codec *codec, |
| 1213 | hda_nid_t fg, unsigned int power_state); |
| 1214 | |
Takashi Iwai | bb6ac72 | 2009-03-13 09:02:42 +0100 | [diff] [blame] | 1215 | static void hda_set_power_state(struct hda_codec *codec, hda_nid_t fg, |
| 1216 | unsigned int power_state); |
| 1217 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1218 | /** |
| 1219 | * snd_hda_codec_new - create a HDA codec |
| 1220 | * @bus: the bus to assign |
| 1221 | * @codec_addr: the codec address |
| 1222 | * @codecp: the pointer to store the generated codec |
| 1223 | * |
| 1224 | * Returns 0 if successful, or a negative error code. |
| 1225 | */ |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 1226 | int /*__devinit*/ snd_hda_codec_new(struct hda_bus *bus, |
| 1227 | unsigned int codec_addr, |
| 1228 | struct hda_codec **codecp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1229 | { |
| 1230 | struct hda_codec *codec; |
Jaroslav Kysela | ba44368 | 2008-08-13 20:55:32 +0200 | [diff] [blame] | 1231 | char component[31]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1232 | int err; |
| 1233 | |
Takashi Iwai | da3cec3 | 2008-08-08 17:12:14 +0200 | [diff] [blame] | 1234 | if (snd_BUG_ON(!bus)) |
| 1235 | return -EINVAL; |
| 1236 | if (snd_BUG_ON(codec_addr > HDA_MAX_CODEC_ADDRESS)) |
| 1237 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1238 | |
| 1239 | if (bus->caddr_tbl[codec_addr]) { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1240 | snd_printk(KERN_ERR "hda_codec: " |
| 1241 | "address 0x%x is already occupied\n", codec_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1242 | return -EBUSY; |
| 1243 | } |
| 1244 | |
Takashi Iwai | e560d8d | 2005-09-09 14:21:46 +0200 | [diff] [blame] | 1245 | codec = kzalloc(sizeof(*codec), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1246 | if (codec == NULL) { |
| 1247 | snd_printk(KERN_ERR "can't allocate struct hda_codec\n"); |
| 1248 | return -ENOMEM; |
| 1249 | } |
| 1250 | |
| 1251 | codec->bus = bus; |
| 1252 | codec->addr = codec_addr; |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 1253 | mutex_init(&codec->spdif_mutex); |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 1254 | mutex_init(&codec->control_mutex); |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 1255 | mutex_init(&codec->hash_mutex); |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 1256 | init_hda_cache(&codec->amp_cache, sizeof(struct hda_amp_info)); |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 1257 | init_hda_cache(&codec->cmd_cache, sizeof(struct hda_cache_head)); |
Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 1258 | snd_array_init(&codec->mixers, sizeof(struct hda_nid_item), 32); |
| 1259 | snd_array_init(&codec->nids, sizeof(struct hda_nid_item), 32); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 1260 | snd_array_init(&codec->init_pins, sizeof(struct hda_pincfg), 16); |
Takashi Iwai | 346ff70 | 2009-02-23 09:42:57 +0100 | [diff] [blame] | 1261 | snd_array_init(&codec->driver_pins, sizeof(struct hda_pincfg), 16); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1262 | snd_array_init(&codec->cvt_setups, sizeof(struct hda_cvt_setup), 8); |
Takashi Iwai | a12d3e1 | 2011-04-07 15:55:15 +0200 | [diff] [blame] | 1263 | snd_array_init(&codec->conn_lists, sizeof(hda_nid_t), 64); |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 1264 | snd_array_init(&codec->spdif_out, sizeof(struct hda_spdif_out), 16); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1265 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 1266 | #ifdef CONFIG_SND_HDA_POWER_SAVE |
Takashi Iwai | 5536c6d | 2012-05-08 17:08:10 +0200 | [diff] [blame] | 1267 | spin_lock_init(&codec->power_lock); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 1268 | INIT_DELAYED_WORK(&codec->power_work, hda_power_work); |
| 1269 | /* snd_hda_codec_new() marks the codec as power-up, and leave it as is. |
| 1270 | * the caller has to power down appropriatley after initialization |
| 1271 | * phase. |
| 1272 | */ |
| 1273 | hda_keep_power_on(codec); |
| 1274 | #endif |
| 1275 | |
Takashi Iwai | c382a9f | 2012-05-07 15:01:02 +0200 | [diff] [blame] | 1276 | if (codec->bus->modelname) { |
| 1277 | codec->modelname = kstrdup(codec->bus->modelname, GFP_KERNEL); |
| 1278 | if (!codec->modelname) { |
| 1279 | snd_hda_codec_free(codec); |
| 1280 | return -ENODEV; |
| 1281 | } |
| 1282 | } |
| 1283 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1284 | list_add_tail(&codec->list, &bus->codec_list); |
| 1285 | bus->caddr_tbl[codec_addr] = codec; |
| 1286 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1287 | codec->vendor_id = snd_hda_param_read(codec, AC_NODE_ROOT, |
| 1288 | AC_PAR_VENDOR_ID); |
Takashi Iwai | 111d3af | 2006-02-16 18:17:58 +0100 | [diff] [blame] | 1289 | if (codec->vendor_id == -1) |
| 1290 | /* read again, hopefully the access method was corrected |
| 1291 | * in the last read... |
| 1292 | */ |
| 1293 | codec->vendor_id = snd_hda_param_read(codec, AC_NODE_ROOT, |
| 1294 | AC_PAR_VENDOR_ID); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1295 | codec->subsystem_id = snd_hda_param_read(codec, AC_NODE_ROOT, |
| 1296 | AC_PAR_SUBSYSTEM_ID); |
| 1297 | codec->revision_id = snd_hda_param_read(codec, AC_NODE_ROOT, |
| 1298 | AC_PAR_REV_ID); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1299 | |
Sasha Khapyorsky | 673b683 | 2005-08-11 11:00:16 +0200 | [diff] [blame] | 1300 | setup_fg_nodes(codec); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1301 | if (!codec->afg && !codec->mfg) { |
Sasha Khapyorsky | 673b683 | 2005-08-11 11:00:16 +0200 | [diff] [blame] | 1302 | snd_printdd("hda_codec: no AFG or MFG node found\n"); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 1303 | err = -ENODEV; |
| 1304 | goto error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1305 | } |
| 1306 | |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 1307 | err = read_widget_caps(codec, codec->afg ? codec->afg : codec->mfg); |
| 1308 | if (err < 0) { |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 1309 | snd_printk(KERN_ERR "hda_codec: cannot malloc\n"); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 1310 | goto error; |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 1311 | } |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 1312 | err = read_pin_defaults(codec); |
| 1313 | if (err < 0) |
| 1314 | goto error; |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 1315 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1316 | if (!codec->subsystem_id) { |
Takashi Iwai | 86284e4 | 2005-10-11 15:05:54 +0200 | [diff] [blame] | 1317 | hda_nid_t nid = codec->afg ? codec->afg : codec->mfg; |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1318 | codec->subsystem_id = |
| 1319 | snd_hda_codec_read(codec, nid, 0, |
| 1320 | AC_VERB_GET_SUBSYSTEM_ID, 0); |
Takashi Iwai | 86284e4 | 2005-10-11 15:05:54 +0200 | [diff] [blame] | 1321 | } |
| 1322 | |
Mengdong Lin | 5d6147f | 2012-08-24 12:06:30 +0800 | [diff] [blame] | 1323 | #ifdef CONFIG_SND_HDA_POWER_SAVE |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 1324 | codec->d3_stop_clk = snd_hda_codec_get_supported_ps(codec, |
| 1325 | codec->afg ? codec->afg : codec->mfg, |
| 1326 | AC_PWRST_CLKSTOP); |
| 1327 | if (!codec->d3_stop_clk) |
| 1328 | bus->power_keep_link_on = 1; |
Mengdong Lin | 5d6147f | 2012-08-24 12:06:30 +0800 | [diff] [blame] | 1329 | #endif |
Takashi Iwai | 983f6b9 | 2012-08-28 09:18:01 -0700 | [diff] [blame] | 1330 | codec->epss = snd_hda_codec_get_supported_ps(codec, |
| 1331 | codec->afg ? codec->afg : codec->mfg, |
| 1332 | AC_PWRST_EPSS); |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 1333 | |
Takashi Iwai | bb6ac72 | 2009-03-13 09:02:42 +0100 | [diff] [blame] | 1334 | /* power-up all before initialization */ |
| 1335 | hda_set_power_state(codec, |
| 1336 | codec->afg ? codec->afg : codec->mfg, |
| 1337 | AC_PWRST_D0); |
| 1338 | |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1339 | snd_hda_codec_proc_new(codec); |
| 1340 | |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1341 | snd_hda_create_hwdep(codec); |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1342 | |
| 1343 | sprintf(component, "HDA:%08x,%08x,%08x", codec->vendor_id, |
| 1344 | codec->subsystem_id, codec->revision_id); |
| 1345 | snd_component_add(codec->bus->card, component); |
| 1346 | |
| 1347 | if (codecp) |
| 1348 | *codecp = codec; |
| 1349 | return 0; |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 1350 | |
| 1351 | error: |
| 1352 | snd_hda_codec_free(codec); |
| 1353 | return err; |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1354 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 1355 | EXPORT_SYMBOL_HDA(snd_hda_codec_new); |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1356 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1357 | /** |
| 1358 | * snd_hda_codec_configure - (Re-)configure the HD-audio codec |
| 1359 | * @codec: the HDA codec |
| 1360 | * |
| 1361 | * Start parsing of the given codec tree and (re-)initialize the whole |
| 1362 | * patch instance. |
| 1363 | * |
| 1364 | * Returns 0 if successful or a negative error code. |
| 1365 | */ |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1366 | int snd_hda_codec_configure(struct hda_codec *codec) |
| 1367 | { |
| 1368 | int err; |
| 1369 | |
Takashi Iwai | d5ad630 | 2007-03-07 15:55:59 +0100 | [diff] [blame] | 1370 | codec->preset = find_codec_preset(codec); |
Takashi Iwai | 812a2cc | 2009-05-16 10:00:49 +0200 | [diff] [blame] | 1371 | if (!codec->vendor_name || !codec->chip_name) { |
Takashi Iwai | f44ac83 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1372 | err = get_codec_name(codec); |
| 1373 | if (err < 0) |
| 1374 | return err; |
| 1375 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1376 | |
Takashi Iwai | 8246761 | 2007-07-27 19:15:54 +0200 | [diff] [blame] | 1377 | if (is_generic_config(codec)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1378 | err = snd_hda_parse_generic_codec(codec); |
Takashi Iwai | 8246761 | 2007-07-27 19:15:54 +0200 | [diff] [blame] | 1379 | goto patched; |
| 1380 | } |
Takashi Iwai | 8246761 | 2007-07-27 19:15:54 +0200 | [diff] [blame] | 1381 | if (codec->preset && codec->preset->patch) { |
| 1382 | err = codec->preset->patch(codec); |
| 1383 | goto patched; |
| 1384 | } |
| 1385 | |
| 1386 | /* call the default parser */ |
Takashi Iwai | 8246761 | 2007-07-27 19:15:54 +0200 | [diff] [blame] | 1387 | err = snd_hda_parse_generic_codec(codec); |
Takashi Iwai | 35a1e0c | 2007-10-19 08:13:40 +0200 | [diff] [blame] | 1388 | if (err < 0) |
| 1389 | printk(KERN_ERR "hda-codec: No codec parser is available\n"); |
Takashi Iwai | 8246761 | 2007-07-27 19:15:54 +0200 | [diff] [blame] | 1390 | |
| 1391 | patched: |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1392 | if (!err && codec->patch_ops.unsol_event) |
| 1393 | err = init_unsol_queue(codec->bus); |
Takashi Iwai | f62faed | 2009-12-23 09:27:51 +0100 | [diff] [blame] | 1394 | /* audio codec should override the mixer name */ |
| 1395 | if (!err && (codec->afg || !*codec->bus->card->mixername)) |
| 1396 | snprintf(codec->bus->card->mixername, |
| 1397 | sizeof(codec->bus->card->mixername), |
| 1398 | "%s %s", codec->vendor_name, codec->chip_name); |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1399 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1400 | } |
Takashi Iwai | a1e21c9 | 2009-06-17 09:33:52 +0200 | [diff] [blame] | 1401 | EXPORT_SYMBOL_HDA(snd_hda_codec_configure); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1402 | |
Takashi Iwai | ed36081 | 2012-08-08 17:12:52 +0200 | [diff] [blame] | 1403 | /* update the stream-id if changed */ |
| 1404 | static void update_pcm_stream_id(struct hda_codec *codec, |
| 1405 | struct hda_cvt_setup *p, hda_nid_t nid, |
| 1406 | u32 stream_tag, int channel_id) |
| 1407 | { |
| 1408 | unsigned int oldval, newval; |
| 1409 | |
| 1410 | if (p->stream_tag != stream_tag || p->channel_id != channel_id) { |
| 1411 | oldval = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONV, 0); |
| 1412 | newval = (stream_tag << 4) | channel_id; |
| 1413 | if (oldval != newval) |
| 1414 | snd_hda_codec_write(codec, nid, 0, |
| 1415 | AC_VERB_SET_CHANNEL_STREAMID, |
| 1416 | newval); |
| 1417 | p->stream_tag = stream_tag; |
| 1418 | p->channel_id = channel_id; |
| 1419 | } |
| 1420 | } |
| 1421 | |
| 1422 | /* update the format-id if changed */ |
| 1423 | static void update_pcm_format(struct hda_codec *codec, struct hda_cvt_setup *p, |
| 1424 | hda_nid_t nid, int format) |
| 1425 | { |
| 1426 | unsigned int oldval; |
| 1427 | |
| 1428 | if (p->format_id != format) { |
| 1429 | oldval = snd_hda_codec_read(codec, nid, 0, |
| 1430 | AC_VERB_GET_STREAM_FORMAT, 0); |
| 1431 | if (oldval != format) { |
| 1432 | msleep(1); |
| 1433 | snd_hda_codec_write(codec, nid, 0, |
| 1434 | AC_VERB_SET_STREAM_FORMAT, |
| 1435 | format); |
| 1436 | } |
| 1437 | p->format_id = format; |
| 1438 | } |
| 1439 | } |
| 1440 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1441 | /** |
| 1442 | * snd_hda_codec_setup_stream - set up the codec for streaming |
| 1443 | * @codec: the CODEC to set up |
| 1444 | * @nid: the NID to set up |
| 1445 | * @stream_tag: stream tag to pass, it's between 0x1 and 0xf. |
| 1446 | * @channel_id: channel id to pass, zero based. |
| 1447 | * @format: stream format. |
| 1448 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1449 | void snd_hda_codec_setup_stream(struct hda_codec *codec, hda_nid_t nid, |
| 1450 | u32 stream_tag, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1451 | int channel_id, int format) |
| 1452 | { |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 1453 | struct hda_codec *c; |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1454 | struct hda_cvt_setup *p; |
Takashi Iwai | 62b7e5e | 2010-10-22 17:15:47 +0200 | [diff] [blame] | 1455 | int type; |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1456 | int i; |
| 1457 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1458 | if (!nid) |
Takashi Iwai | d21b37e | 2005-04-20 13:45:55 +0200 | [diff] [blame] | 1459 | return; |
| 1460 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1461 | snd_printdd("hda_codec_setup_stream: " |
| 1462 | "NID=0x%x, stream=0x%x, channel=%d, format=0x%x\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1463 | nid, stream_tag, channel_id, format); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1464 | p = get_hda_cvt_setup(codec, nid); |
| 1465 | if (!p) |
| 1466 | return; |
Takashi Iwai | ed36081 | 2012-08-08 17:12:52 +0200 | [diff] [blame] | 1467 | |
| 1468 | if (codec->pcm_format_first) |
| 1469 | update_pcm_format(codec, p, nid, format); |
| 1470 | update_pcm_stream_id(codec, p, nid, stream_tag, channel_id); |
| 1471 | if (!codec->pcm_format_first) |
| 1472 | update_pcm_format(codec, p, nid, format); |
| 1473 | |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1474 | p->active = 1; |
| 1475 | p->dirty = 0; |
| 1476 | |
| 1477 | /* make other inactive cvts with the same stream-tag dirty */ |
Takashi Iwai | 62b7e5e | 2010-10-22 17:15:47 +0200 | [diff] [blame] | 1478 | type = get_wcaps_type(get_wcaps(codec, nid)); |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 1479 | list_for_each_entry(c, &codec->bus->codec_list, list) { |
| 1480 | for (i = 0; i < c->cvt_setups.used; i++) { |
| 1481 | p = snd_array_elem(&c->cvt_setups, i); |
Takashi Iwai | 62b7e5e | 2010-10-22 17:15:47 +0200 | [diff] [blame] | 1482 | if (!p->active && p->stream_tag == stream_tag && |
David Henningsson | 54c2a89 | 2012-02-01 12:05:41 +0100 | [diff] [blame] | 1483 | get_wcaps_type(get_wcaps(c, p->nid)) == type) |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 1484 | p->dirty = 1; |
| 1485 | } |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1486 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1487 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 1488 | EXPORT_SYMBOL_HDA(snd_hda_codec_setup_stream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1489 | |
Takashi Iwai | f0cea79 | 2010-08-13 11:56:53 +0200 | [diff] [blame] | 1490 | static void really_cleanup_stream(struct hda_codec *codec, |
| 1491 | struct hda_cvt_setup *q); |
| 1492 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1493 | /** |
Takashi Iwai | f0cea79 | 2010-08-13 11:56:53 +0200 | [diff] [blame] | 1494 | * __snd_hda_codec_cleanup_stream - clean up the codec for closing |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1495 | * @codec: the CODEC to clean up |
| 1496 | * @nid: the NID to clean up |
Takashi Iwai | f0cea79 | 2010-08-13 11:56:53 +0200 | [diff] [blame] | 1497 | * @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] | 1498 | */ |
Takashi Iwai | f0cea79 | 2010-08-13 11:56:53 +0200 | [diff] [blame] | 1499 | void __snd_hda_codec_cleanup_stream(struct hda_codec *codec, hda_nid_t nid, |
| 1500 | int do_now) |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 1501 | { |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1502 | struct hda_cvt_setup *p; |
| 1503 | |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 1504 | if (!nid) |
| 1505 | return; |
| 1506 | |
Takashi Iwai | 0e7adbe | 2010-10-25 10:37:11 +0200 | [diff] [blame] | 1507 | if (codec->no_sticky_stream) |
| 1508 | do_now = 1; |
| 1509 | |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 1510 | snd_printdd("hda_codec_cleanup_stream: NID=0x%x\n", nid); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1511 | p = get_hda_cvt_setup(codec, nid); |
Takashi Iwai | f0cea79 | 2010-08-13 11:56:53 +0200 | [diff] [blame] | 1512 | if (p) { |
| 1513 | /* here we just clear the active flag when do_now isn't set; |
| 1514 | * actual clean-ups will be done later in |
| 1515 | * purify_inactive_streams() called from snd_hda_codec_prpapre() |
| 1516 | */ |
| 1517 | if (do_now) |
| 1518 | really_cleanup_stream(codec, p); |
| 1519 | else |
| 1520 | p->active = 0; |
| 1521 | } |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 1522 | } |
Takashi Iwai | f0cea79 | 2010-08-13 11:56:53 +0200 | [diff] [blame] | 1523 | EXPORT_SYMBOL_HDA(__snd_hda_codec_cleanup_stream); |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 1524 | |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1525 | static void really_cleanup_stream(struct hda_codec *codec, |
| 1526 | struct hda_cvt_setup *q) |
| 1527 | { |
| 1528 | hda_nid_t nid = q->nid; |
Takashi Iwai | 218264a | 2011-09-27 17:33:45 +0200 | [diff] [blame] | 1529 | if (q->stream_tag || q->channel_id) |
| 1530 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CHANNEL_STREAMID, 0); |
| 1531 | if (q->format_id) |
| 1532 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_STREAM_FORMAT, 0 |
| 1533 | ); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1534 | memset(q, 0, sizeof(*q)); |
| 1535 | q->nid = nid; |
| 1536 | } |
| 1537 | |
| 1538 | /* clean up the all conflicting obsolete streams */ |
| 1539 | static void purify_inactive_streams(struct hda_codec *codec) |
| 1540 | { |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 1541 | struct hda_codec *c; |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1542 | int i; |
| 1543 | |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 1544 | list_for_each_entry(c, &codec->bus->codec_list, list) { |
| 1545 | for (i = 0; i < c->cvt_setups.used; i++) { |
| 1546 | struct hda_cvt_setup *p; |
| 1547 | p = snd_array_elem(&c->cvt_setups, i); |
| 1548 | if (p->dirty) |
| 1549 | really_cleanup_stream(c, p); |
| 1550 | } |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1551 | } |
| 1552 | } |
| 1553 | |
Takashi Iwai | 2a43952 | 2011-07-26 09:52:50 +0200 | [diff] [blame] | 1554 | #ifdef CONFIG_PM |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1555 | /* clean up all streams; called from suspend */ |
| 1556 | static void hda_cleanup_all_streams(struct hda_codec *codec) |
| 1557 | { |
| 1558 | int i; |
| 1559 | |
| 1560 | for (i = 0; i < codec->cvt_setups.used; i++) { |
| 1561 | struct hda_cvt_setup *p = snd_array_elem(&codec->cvt_setups, i); |
| 1562 | if (p->stream_tag) |
| 1563 | really_cleanup_stream(codec, p); |
| 1564 | } |
| 1565 | } |
Mike Waychison | 1c7276c | 2011-04-20 12:04:36 -0700 | [diff] [blame] | 1566 | #endif |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 1567 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1568 | /* |
| 1569 | * amp access functions |
| 1570 | */ |
| 1571 | |
Takashi Iwai | 4a19fae | 2005-06-08 14:43:58 +0200 | [diff] [blame] | 1572 | /* FIXME: more better hash key? */ |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 1573 | #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] | 1574 | #define HDA_HASH_PINCAP_KEY(nid) (u32)((nid) + (0x02 << 24)) |
Takashi Iwai | 92c7c8a | 2009-03-24 07:32:14 +0100 | [diff] [blame] | 1575 | #define HDA_HASH_PARPCM_KEY(nid) (u32)((nid) + (0x03 << 24)) |
| 1576 | #define HDA_HASH_PARSTR_KEY(nid) (u32)((nid) + (0x04 << 24)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1577 | #define INFO_AMP_CAPS (1<<0) |
Takashi Iwai | 4a19fae | 2005-06-08 14:43:58 +0200 | [diff] [blame] | 1578 | #define INFO_AMP_VOL(ch) (1 << (1 + (ch))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1579 | |
| 1580 | /* initialize the hash table */ |
Takashi Iwai | 1289e9e | 2008-11-27 15:47:11 +0100 | [diff] [blame] | 1581 | static void /*__devinit*/ init_hda_cache(struct hda_cache_rec *cache, |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 1582 | unsigned int record_size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1583 | { |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 1584 | memset(cache, 0, sizeof(*cache)); |
| 1585 | memset(cache->hash, 0xff, sizeof(cache->hash)); |
Takashi Iwai | 603c401 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 1586 | snd_array_init(&cache->buf, record_size, 64); |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 1587 | } |
| 1588 | |
Takashi Iwai | 1fcaee6 | 2007-08-23 00:01:09 +0200 | [diff] [blame] | 1589 | static void free_hda_cache(struct hda_cache_rec *cache) |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 1590 | { |
Takashi Iwai | 603c401 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 1591 | snd_array_free(&cache->buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1592 | } |
| 1593 | |
| 1594 | /* query the hash. allocate an entry if not found. */ |
Takashi Iwai | a68d5a5 | 2010-03-30 18:03:44 +0200 | [diff] [blame] | 1595 | 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] | 1596 | { |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 1597 | u16 idx = key % (u16)ARRAY_SIZE(cache->hash); |
| 1598 | u16 cur = cache->hash[idx]; |
| 1599 | struct hda_cache_head *info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1600 | |
| 1601 | while (cur != 0xffff) { |
Takashi Iwai | f43aa02 | 2008-11-10 16:24:26 +0100 | [diff] [blame] | 1602 | info = snd_array_elem(&cache->buf, cur); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1603 | if (info->key == key) |
| 1604 | return info; |
| 1605 | cur = info->next; |
| 1606 | } |
Takashi Iwai | a68d5a5 | 2010-03-30 18:03:44 +0200 | [diff] [blame] | 1607 | return NULL; |
| 1608 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1609 | |
Takashi Iwai | a68d5a5 | 2010-03-30 18:03:44 +0200 | [diff] [blame] | 1610 | /* query the hash. allocate an entry if not found. */ |
| 1611 | static struct hda_cache_head *get_alloc_hash(struct hda_cache_rec *cache, |
| 1612 | u32 key) |
| 1613 | { |
| 1614 | struct hda_cache_head *info = get_hash(cache, key); |
| 1615 | if (!info) { |
| 1616 | u16 idx, cur; |
| 1617 | /* add a new hash entry */ |
| 1618 | info = snd_array_new(&cache->buf); |
| 1619 | if (!info) |
| 1620 | return NULL; |
| 1621 | cur = snd_array_index(&cache->buf, info); |
| 1622 | info->key = key; |
| 1623 | info->val = 0; |
| 1624 | idx = key % (u16)ARRAY_SIZE(cache->hash); |
| 1625 | info->next = cache->hash[idx]; |
| 1626 | cache->hash[idx] = cur; |
| 1627 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1628 | return info; |
| 1629 | } |
| 1630 | |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 1631 | /* query and allocate an amp hash entry */ |
| 1632 | static inline struct hda_amp_info * |
| 1633 | get_alloc_amp_hash(struct hda_codec *codec, u32 key) |
| 1634 | { |
| 1635 | return (struct hda_amp_info *)get_alloc_hash(&codec->amp_cache, key); |
| 1636 | } |
| 1637 | |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 1638 | /* overwrite the value with the key in the caps hash */ |
| 1639 | static int write_caps_hash(struct hda_codec *codec, u32 key, unsigned int val) |
| 1640 | { |
| 1641 | struct hda_amp_info *info; |
| 1642 | |
| 1643 | mutex_lock(&codec->hash_mutex); |
| 1644 | info = get_alloc_amp_hash(codec, key); |
| 1645 | if (!info) { |
| 1646 | mutex_unlock(&codec->hash_mutex); |
| 1647 | return -EINVAL; |
| 1648 | } |
| 1649 | info->amp_caps = val; |
| 1650 | info->head.val |= INFO_AMP_CAPS; |
| 1651 | mutex_unlock(&codec->hash_mutex); |
| 1652 | return 0; |
| 1653 | } |
| 1654 | |
| 1655 | /* query the value from the caps hash; if not found, fetch the current |
| 1656 | * value from the given function and store in the hash |
| 1657 | */ |
| 1658 | static unsigned int |
| 1659 | query_caps_hash(struct hda_codec *codec, hda_nid_t nid, int dir, u32 key, |
| 1660 | unsigned int (*func)(struct hda_codec *, hda_nid_t, int)) |
| 1661 | { |
| 1662 | struct hda_amp_info *info; |
| 1663 | unsigned int val; |
| 1664 | |
| 1665 | mutex_lock(&codec->hash_mutex); |
| 1666 | info = get_alloc_amp_hash(codec, key); |
| 1667 | if (!info) { |
| 1668 | mutex_unlock(&codec->hash_mutex); |
| 1669 | return 0; |
| 1670 | } |
| 1671 | if (!(info->head.val & INFO_AMP_CAPS)) { |
| 1672 | mutex_unlock(&codec->hash_mutex); /* for reentrance */ |
| 1673 | val = func(codec, nid, dir); |
| 1674 | write_caps_hash(codec, key, val); |
| 1675 | } else { |
| 1676 | val = info->amp_caps; |
| 1677 | mutex_unlock(&codec->hash_mutex); |
| 1678 | } |
| 1679 | return val; |
| 1680 | } |
| 1681 | |
| 1682 | static unsigned int read_amp_cap(struct hda_codec *codec, hda_nid_t nid, |
| 1683 | int direction) |
| 1684 | { |
| 1685 | if (!(get_wcaps(codec, nid) & AC_WCAP_AMP_OVRD)) |
| 1686 | nid = codec->afg; |
| 1687 | return snd_hda_param_read(codec, nid, |
| 1688 | direction == HDA_OUTPUT ? |
| 1689 | AC_PAR_AMP_OUT_CAP : AC_PAR_AMP_IN_CAP); |
| 1690 | } |
| 1691 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1692 | /** |
| 1693 | * query_amp_caps - query AMP capabilities |
| 1694 | * @codec: the HD-auio codec |
| 1695 | * @nid: the NID to query |
| 1696 | * @direction: either #HDA_INPUT or #HDA_OUTPUT |
| 1697 | * |
| 1698 | * Query AMP capabilities for the given widget and direction. |
| 1699 | * Returns the obtained capability bits. |
| 1700 | * |
| 1701 | * When cap bits have been already read, this doesn't read again but |
| 1702 | * returns the cached value. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1703 | */ |
Matthew Ranostay | 09a9995 | 2008-01-24 11:49:21 +0100 | [diff] [blame] | 1704 | 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] | 1705 | { |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 1706 | return query_caps_hash(codec, nid, direction, |
| 1707 | HDA_HASH_KEY(nid, direction, 0), |
| 1708 | read_amp_cap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1709 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 1710 | EXPORT_SYMBOL_HDA(query_amp_caps); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1711 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1712 | /** |
| 1713 | * snd_hda_override_amp_caps - Override the AMP capabilities |
| 1714 | * @codec: the CODEC to clean up |
| 1715 | * @nid: the NID to clean up |
| 1716 | * @direction: either #HDA_INPUT or #HDA_OUTPUT |
| 1717 | * @caps: the capability bits to set |
| 1718 | * |
| 1719 | * Override the cached AMP caps bits value by the given one. |
| 1720 | * This function is useful if the driver needs to adjust the AMP ranges, |
| 1721 | * e.g. limit to 0dB, etc. |
| 1722 | * |
| 1723 | * Returns zero if successful or a negative error code. |
| 1724 | */ |
Takashi Iwai | 897cc18 | 2007-05-29 19:01:37 +0200 | [diff] [blame] | 1725 | int snd_hda_override_amp_caps(struct hda_codec *codec, hda_nid_t nid, int dir, |
| 1726 | unsigned int caps) |
| 1727 | { |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 1728 | return write_caps_hash(codec, HDA_HASH_KEY(nid, dir, 0), caps); |
Takashi Iwai | 897cc18 | 2007-05-29 19:01:37 +0200 | [diff] [blame] | 1729 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 1730 | EXPORT_SYMBOL_HDA(snd_hda_override_amp_caps); |
Takashi Iwai | 897cc18 | 2007-05-29 19:01:37 +0200 | [diff] [blame] | 1731 | |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 1732 | static unsigned int read_pin_cap(struct hda_codec *codec, hda_nid_t nid, |
| 1733 | int dir) |
Takashi Iwai | 92c7c8a | 2009-03-24 07:32:14 +0100 | [diff] [blame] | 1734 | { |
| 1735 | return snd_hda_param_read(codec, nid, AC_PAR_PIN_CAP); |
| 1736 | } |
| 1737 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1738 | /** |
| 1739 | * snd_hda_query_pin_caps - Query PIN capabilities |
| 1740 | * @codec: the HD-auio codec |
| 1741 | * @nid: the NID to query |
| 1742 | * |
| 1743 | * Query PIN capabilities for the given widget. |
| 1744 | * Returns the obtained capability bits. |
| 1745 | * |
| 1746 | * When cap bits have been already read, this doesn't read again but |
| 1747 | * returns the cached value. |
| 1748 | */ |
Takashi Iwai | 92c7c8a | 2009-03-24 07:32:14 +0100 | [diff] [blame] | 1749 | u32 snd_hda_query_pin_caps(struct hda_codec *codec, hda_nid_t nid) |
| 1750 | { |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 1751 | return query_caps_hash(codec, nid, 0, HDA_HASH_PINCAP_KEY(nid), |
Takashi Iwai | 92c7c8a | 2009-03-24 07:32:14 +0100 | [diff] [blame] | 1752 | read_pin_cap); |
| 1753 | } |
Takashi Iwai | 1327a32 | 2009-03-23 13:07:47 +0100 | [diff] [blame] | 1754 | EXPORT_SYMBOL_HDA(snd_hda_query_pin_caps); |
| 1755 | |
Wu Fengguang | 864f92b | 2009-11-18 12:38:02 +0800 | [diff] [blame] | 1756 | /** |
Takashi Iwai | f57c256 | 2011-08-15 12:49:07 +0200 | [diff] [blame] | 1757 | * snd_hda_override_pin_caps - Override the pin capabilities |
| 1758 | * @codec: the CODEC |
| 1759 | * @nid: the NID to override |
| 1760 | * @caps: the capability bits to set |
| 1761 | * |
| 1762 | * Override the cached PIN capabilitiy bits value by the given one. |
| 1763 | * |
| 1764 | * Returns zero if successful or a negative error code. |
| 1765 | */ |
| 1766 | int snd_hda_override_pin_caps(struct hda_codec *codec, hda_nid_t nid, |
| 1767 | unsigned int caps) |
| 1768 | { |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 1769 | return write_caps_hash(codec, HDA_HASH_PINCAP_KEY(nid), caps); |
Takashi Iwai | f57c256 | 2011-08-15 12:49:07 +0200 | [diff] [blame] | 1770 | } |
| 1771 | EXPORT_SYMBOL_HDA(snd_hda_override_pin_caps); |
| 1772 | |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 1773 | /* read or sync the hash value with the current value; |
| 1774 | * call within hash_mutex |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1775 | */ |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 1776 | static struct hda_amp_info * |
| 1777 | update_amp_hash(struct hda_codec *codec, hda_nid_t nid, int ch, |
| 1778 | int direction, int index) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1779 | { |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 1780 | struct hda_amp_info *info; |
| 1781 | unsigned int parm, val = 0; |
| 1782 | bool val_read = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1783 | |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 1784 | retry: |
| 1785 | info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, direction, index)); |
| 1786 | if (!info) |
| 1787 | return NULL; |
| 1788 | if (!(info->head.val & INFO_AMP_VOL(ch))) { |
| 1789 | if (!val_read) { |
| 1790 | mutex_unlock(&codec->hash_mutex); |
| 1791 | parm = ch ? AC_AMP_GET_RIGHT : AC_AMP_GET_LEFT; |
| 1792 | parm |= direction == HDA_OUTPUT ? |
| 1793 | AC_AMP_GET_OUTPUT : AC_AMP_GET_INPUT; |
| 1794 | parm |= index; |
| 1795 | val = snd_hda_codec_read(codec, nid, 0, |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1796 | AC_VERB_GET_AMP_GAIN_MUTE, parm); |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 1797 | val &= 0xff; |
| 1798 | val_read = true; |
| 1799 | mutex_lock(&codec->hash_mutex); |
| 1800 | goto retry; |
| 1801 | } |
| 1802 | info->vol[ch] = val; |
| 1803 | info->head.val |= INFO_AMP_VOL(ch); |
| 1804 | } |
| 1805 | return info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1806 | } |
| 1807 | |
| 1808 | /* |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 1809 | * write the current volume in info to the h/w |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1810 | */ |
Takashi Iwai | 4a19fae | 2005-06-08 14:43:58 +0200 | [diff] [blame] | 1811 | static void put_vol_mute(struct hda_codec *codec, struct hda_amp_info *info, |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1812 | hda_nid_t nid, int ch, int direction, int index, |
| 1813 | int val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1814 | { |
| 1815 | u32 parm; |
| 1816 | |
| 1817 | parm = ch ? AC_AMP_SET_RIGHT : AC_AMP_SET_LEFT; |
| 1818 | parm |= direction == HDA_OUTPUT ? AC_AMP_SET_OUTPUT : AC_AMP_SET_INPUT; |
| 1819 | parm |= index << AC_AMP_SET_INDEX_SHIFT; |
Takashi Iwai | 3868137 | 2012-02-27 15:00:58 +0100 | [diff] [blame] | 1820 | if ((val & HDA_AMP_MUTE) && !(info->amp_caps & AC_AMPCAP_MUTE) && |
| 1821 | (info->amp_caps & AC_AMPCAP_MIN_MUTE)) |
| 1822 | ; /* set the zero value as a fake mute */ |
| 1823 | else |
| 1824 | parm |= val; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1825 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE, parm); |
| 1826 | } |
| 1827 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1828 | /** |
| 1829 | * snd_hda_codec_amp_read - Read AMP value |
| 1830 | * @codec: HD-audio codec |
| 1831 | * @nid: NID to read the AMP value |
| 1832 | * @ch: channel (left=0 or right=1) |
| 1833 | * @direction: #HDA_INPUT or #HDA_OUTPUT |
| 1834 | * @index: the index value (only for input direction) |
| 1835 | * |
| 1836 | * Read AMP value. The volume is between 0 to 0x7f, 0x80 = mute bit. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1837 | */ |
Takashi Iwai | 834be88 | 2006-03-01 14:16:17 +0100 | [diff] [blame] | 1838 | int snd_hda_codec_amp_read(struct hda_codec *codec, hda_nid_t nid, int ch, |
| 1839 | int direction, int index) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1840 | { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1841 | struct hda_amp_info *info; |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 1842 | unsigned int val = 0; |
| 1843 | |
| 1844 | mutex_lock(&codec->hash_mutex); |
| 1845 | info = update_amp_hash(codec, nid, ch, direction, index); |
| 1846 | if (info) |
| 1847 | val = info->vol[ch]; |
| 1848 | mutex_unlock(&codec->hash_mutex); |
| 1849 | return val; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1850 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 1851 | EXPORT_SYMBOL_HDA(snd_hda_codec_amp_read); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1852 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1853 | /** |
| 1854 | * snd_hda_codec_amp_update - update the AMP value |
| 1855 | * @codec: HD-audio codec |
| 1856 | * @nid: NID to read the AMP value |
| 1857 | * @ch: channel (left=0 or right=1) |
| 1858 | * @direction: #HDA_INPUT or #HDA_OUTPUT |
| 1859 | * @idx: the index value (only for input direction) |
| 1860 | * @mask: bit mask to set |
| 1861 | * @val: the bits value to set |
| 1862 | * |
| 1863 | * Update the AMP value with a bit mask. |
| 1864 | * Returns 0 if the value is unchanged, 1 if changed. |
Takashi Iwai | 4a19fae | 2005-06-08 14:43:58 +0200 | [diff] [blame] | 1865 | */ |
Takashi Iwai | 834be88 | 2006-03-01 14:16:17 +0100 | [diff] [blame] | 1866 | int snd_hda_codec_amp_update(struct hda_codec *codec, hda_nid_t nid, int ch, |
| 1867 | int direction, int idx, int mask, int val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1868 | { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1869 | struct hda_amp_info *info; |
Takashi Iwai | 4a19fae | 2005-06-08 14:43:58 +0200 | [diff] [blame] | 1870 | |
Takashi Iwai | 46712646 | 2010-03-29 09:19:38 +0200 | [diff] [blame] | 1871 | if (snd_BUG_ON(mask & ~0xff)) |
| 1872 | mask &= 0xff; |
Takashi Iwai | 4a19fae | 2005-06-08 14:43:58 +0200 | [diff] [blame] | 1873 | val &= mask; |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 1874 | |
| 1875 | mutex_lock(&codec->hash_mutex); |
| 1876 | info = update_amp_hash(codec, nid, ch, direction, idx); |
| 1877 | if (!info) { |
| 1878 | mutex_unlock(&codec->hash_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1879 | return 0; |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 1880 | } |
| 1881 | val |= info->vol[ch] & ~mask; |
| 1882 | if (info->vol[ch] == val) { |
| 1883 | mutex_unlock(&codec->hash_mutex); |
| 1884 | return 0; |
| 1885 | } |
| 1886 | info->vol[ch] = val; |
| 1887 | mutex_unlock(&codec->hash_mutex); |
Takashi Iwai | 4a19fae | 2005-06-08 14:43:58 +0200 | [diff] [blame] | 1888 | put_vol_mute(codec, info, nid, ch, direction, idx, val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1889 | return 1; |
| 1890 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 1891 | EXPORT_SYMBOL_HDA(snd_hda_codec_amp_update); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1892 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1893 | /** |
| 1894 | * snd_hda_codec_amp_stereo - update the AMP stereo values |
| 1895 | * @codec: HD-audio codec |
| 1896 | * @nid: NID to read the AMP value |
| 1897 | * @direction: #HDA_INPUT or #HDA_OUTPUT |
| 1898 | * @idx: the index value (only for input direction) |
| 1899 | * @mask: bit mask to set |
| 1900 | * @val: the bits value to set |
| 1901 | * |
| 1902 | * Update the AMP values like snd_hda_codec_amp_update(), but for a |
| 1903 | * stereo widget with the same mask and value. |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 1904 | */ |
| 1905 | int snd_hda_codec_amp_stereo(struct hda_codec *codec, hda_nid_t nid, |
| 1906 | int direction, int idx, int mask, int val) |
| 1907 | { |
| 1908 | int ch, ret = 0; |
Takashi Iwai | 46712646 | 2010-03-29 09:19:38 +0200 | [diff] [blame] | 1909 | |
| 1910 | if (snd_BUG_ON(mask & ~0xff)) |
| 1911 | mask &= 0xff; |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 1912 | for (ch = 0; ch < 2; ch++) |
| 1913 | ret |= snd_hda_codec_amp_update(codec, nid, ch, direction, |
| 1914 | idx, mask, val); |
| 1915 | return ret; |
| 1916 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 1917 | EXPORT_SYMBOL_HDA(snd_hda_codec_amp_stereo); |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 1918 | |
Takashi Iwai | 2a43952 | 2011-07-26 09:52:50 +0200 | [diff] [blame] | 1919 | #ifdef CONFIG_PM |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1920 | /** |
| 1921 | * snd_hda_codec_resume_amp - Resume all AMP commands from the cache |
| 1922 | * @codec: HD-audio codec |
| 1923 | * |
| 1924 | * Resume the all amp commands from the cache. |
| 1925 | */ |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 1926 | void snd_hda_codec_resume_amp(struct hda_codec *codec) |
| 1927 | { |
Takashi Iwai | 603c401 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 1928 | struct hda_amp_info *buffer = codec->amp_cache.buf.list; |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 1929 | int i; |
| 1930 | |
Takashi Iwai | 603c401 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 1931 | for (i = 0; i < codec->amp_cache.buf.used; i++, buffer++) { |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 1932 | u32 key = buffer->head.key; |
| 1933 | hda_nid_t nid; |
| 1934 | unsigned int idx, dir, ch; |
| 1935 | if (!key) |
| 1936 | continue; |
| 1937 | nid = key & 0xff; |
| 1938 | idx = (key >> 16) & 0xff; |
| 1939 | dir = (key >> 24) & 0xff; |
| 1940 | for (ch = 0; ch < 2; ch++) { |
| 1941 | if (!(buffer->head.val & INFO_AMP_VOL(ch))) |
| 1942 | continue; |
| 1943 | put_vol_mute(codec, buffer, nid, ch, dir, idx, |
| 1944 | buffer->vol[ch]); |
| 1945 | } |
| 1946 | } |
| 1947 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 1948 | EXPORT_SYMBOL_HDA(snd_hda_codec_resume_amp); |
Takashi Iwai | 2a43952 | 2011-07-26 09:52:50 +0200 | [diff] [blame] | 1949 | #endif /* CONFIG_PM */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1950 | |
Takashi Iwai | afbd9b8 | 2010-07-08 18:40:37 +0200 | [diff] [blame] | 1951 | static u32 get_amp_max_value(struct hda_codec *codec, hda_nid_t nid, int dir, |
| 1952 | unsigned int ofs) |
| 1953 | { |
| 1954 | u32 caps = query_amp_caps(codec, nid, dir); |
| 1955 | /* get num steps */ |
| 1956 | caps = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT; |
| 1957 | if (ofs < caps) |
| 1958 | caps -= ofs; |
| 1959 | return caps; |
| 1960 | } |
| 1961 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 1962 | /** |
| 1963 | * snd_hda_mixer_amp_volume_info - Info callback for a standard AMP mixer |
| 1964 | * |
| 1965 | * The control element is supposed to have the private_value field |
| 1966 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. |
| 1967 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1968 | int snd_hda_mixer_amp_volume_info(struct snd_kcontrol *kcontrol, |
| 1969 | struct snd_ctl_elem_info *uinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1970 | { |
| 1971 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 1972 | u16 nid = get_amp_nid(kcontrol); |
| 1973 | u8 chs = get_amp_channels(kcontrol); |
| 1974 | int dir = get_amp_direction(kcontrol); |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 1975 | unsigned int ofs = get_amp_offset(kcontrol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1976 | |
Takashi Iwai | afbd9b8 | 2010-07-08 18:40:37 +0200 | [diff] [blame] | 1977 | uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER; |
| 1978 | uinfo->count = chs == 3 ? 2 : 1; |
| 1979 | uinfo->value.integer.min = 0; |
| 1980 | uinfo->value.integer.max = get_amp_max_value(codec, nid, dir, ofs); |
| 1981 | if (!uinfo->value.integer.max) { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1982 | printk(KERN_WARNING "hda_codec: " |
Takashi Iwai | 9c8f2ab | 2008-01-11 16:12:23 +0100 | [diff] [blame] | 1983 | "num_steps = 0 for NID=0x%x (ctl = %s)\n", nid, |
| 1984 | kcontrol->id.name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1985 | return -EINVAL; |
| 1986 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1987 | return 0; |
| 1988 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 1989 | EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_volume_info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1990 | |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 1991 | |
| 1992 | static inline unsigned int |
| 1993 | read_amp_value(struct hda_codec *codec, hda_nid_t nid, |
| 1994 | int ch, int dir, int idx, unsigned int ofs) |
| 1995 | { |
| 1996 | unsigned int val; |
| 1997 | val = snd_hda_codec_amp_read(codec, nid, ch, dir, idx); |
| 1998 | val &= HDA_AMP_VOLMASK; |
| 1999 | if (val >= ofs) |
| 2000 | val -= ofs; |
| 2001 | else |
| 2002 | val = 0; |
| 2003 | return val; |
| 2004 | } |
| 2005 | |
| 2006 | static inline int |
| 2007 | update_amp_value(struct hda_codec *codec, hda_nid_t nid, |
| 2008 | int ch, int dir, int idx, unsigned int ofs, |
| 2009 | unsigned int val) |
| 2010 | { |
Takashi Iwai | afbd9b8 | 2010-07-08 18:40:37 +0200 | [diff] [blame] | 2011 | unsigned int maxval; |
| 2012 | |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 2013 | if (val > 0) |
| 2014 | val += ofs; |
Takashi Iwai | 7ccc3ef | 2010-07-26 17:00:15 +0200 | [diff] [blame] | 2015 | /* ofs = 0: raw max value */ |
| 2016 | maxval = get_amp_max_value(codec, nid, dir, 0); |
Takashi Iwai | afbd9b8 | 2010-07-08 18:40:37 +0200 | [diff] [blame] | 2017 | if (val > maxval) |
| 2018 | val = maxval; |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 2019 | return snd_hda_codec_amp_update(codec, nid, ch, dir, idx, |
| 2020 | HDA_AMP_VOLMASK, val); |
| 2021 | } |
| 2022 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2023 | /** |
| 2024 | * snd_hda_mixer_amp_volume_get - Get callback for a standard AMP mixer volume |
| 2025 | * |
| 2026 | * The control element is supposed to have the private_value field |
| 2027 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. |
| 2028 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2029 | int snd_hda_mixer_amp_volume_get(struct snd_kcontrol *kcontrol, |
| 2030 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2031 | { |
| 2032 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2033 | hda_nid_t nid = get_amp_nid(kcontrol); |
| 2034 | int chs = get_amp_channels(kcontrol); |
| 2035 | int dir = get_amp_direction(kcontrol); |
| 2036 | int idx = get_amp_index(kcontrol); |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 2037 | unsigned int ofs = get_amp_offset(kcontrol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2038 | long *valp = ucontrol->value.integer.value; |
| 2039 | |
| 2040 | if (chs & 1) |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 2041 | *valp++ = read_amp_value(codec, nid, 0, dir, idx, ofs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2042 | if (chs & 2) |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 2043 | *valp = read_amp_value(codec, nid, 1, dir, idx, ofs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2044 | return 0; |
| 2045 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 2046 | EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_volume_get); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2047 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2048 | /** |
| 2049 | * snd_hda_mixer_amp_volume_put - Put callback for a standard AMP mixer volume |
| 2050 | * |
| 2051 | * The control element is supposed to have the private_value field |
| 2052 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. |
| 2053 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2054 | int snd_hda_mixer_amp_volume_put(struct snd_kcontrol *kcontrol, |
| 2055 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2056 | { |
| 2057 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2058 | hda_nid_t nid = get_amp_nid(kcontrol); |
| 2059 | int chs = get_amp_channels(kcontrol); |
| 2060 | int dir = get_amp_direction(kcontrol); |
| 2061 | int idx = get_amp_index(kcontrol); |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 2062 | unsigned int ofs = get_amp_offset(kcontrol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2063 | long *valp = ucontrol->value.integer.value; |
| 2064 | int change = 0; |
| 2065 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2066 | snd_hda_power_up(codec); |
Nicolas Graziano | b9f5a89 | 2005-07-29 12:17:20 +0200 | [diff] [blame] | 2067 | if (chs & 1) { |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 2068 | change = update_amp_value(codec, nid, 0, dir, idx, ofs, *valp); |
Nicolas Graziano | b9f5a89 | 2005-07-29 12:17:20 +0200 | [diff] [blame] | 2069 | valp++; |
| 2070 | } |
Takashi Iwai | 4a19fae | 2005-06-08 14:43:58 +0200 | [diff] [blame] | 2071 | if (chs & 2) |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 2072 | change |= update_amp_value(codec, nid, 1, dir, idx, ofs, *valp); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2073 | snd_hda_power_down(codec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2074 | return change; |
| 2075 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 2076 | EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_volume_put); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2077 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2078 | /** |
| 2079 | * snd_hda_mixer_amp_volume_put - TLV callback for a standard AMP mixer volume |
| 2080 | * |
| 2081 | * The control element is supposed to have the private_value field |
| 2082 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. |
| 2083 | */ |
Jaroslav Kysela | 302e9c5 | 2006-07-05 17:39:49 +0200 | [diff] [blame] | 2084 | int snd_hda_mixer_amp_tlv(struct snd_kcontrol *kcontrol, int op_flag, |
| 2085 | unsigned int size, unsigned int __user *_tlv) |
| 2086 | { |
| 2087 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2088 | hda_nid_t nid = get_amp_nid(kcontrol); |
| 2089 | int dir = get_amp_direction(kcontrol); |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 2090 | unsigned int ofs = get_amp_offset(kcontrol); |
Clemens Ladisch | de8c85f | 2010-10-15 10:32:50 +0200 | [diff] [blame] | 2091 | bool min_mute = get_amp_min_mute(kcontrol); |
Jaroslav Kysela | 302e9c5 | 2006-07-05 17:39:49 +0200 | [diff] [blame] | 2092 | u32 caps, val1, val2; |
| 2093 | |
| 2094 | if (size < 4 * sizeof(unsigned int)) |
| 2095 | return -ENOMEM; |
| 2096 | caps = query_amp_caps(codec, nid, dir); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2097 | val2 = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT; |
| 2098 | val2 = (val2 + 1) * 25; |
Jaroslav Kysela | 302e9c5 | 2006-07-05 17:39:49 +0200 | [diff] [blame] | 2099 | val1 = -((caps & AC_AMPCAP_OFFSET) >> AC_AMPCAP_OFFSET_SHIFT); |
Takashi Iwai | 29fdbec | 2009-01-20 13:07:55 +0100 | [diff] [blame] | 2100 | val1 += ofs; |
Jaroslav Kysela | 302e9c5 | 2006-07-05 17:39:49 +0200 | [diff] [blame] | 2101 | val1 = ((int)val1) * ((int)val2); |
Takashi Iwai | 3868137 | 2012-02-27 15:00:58 +0100 | [diff] [blame] | 2102 | if (min_mute || (caps & AC_AMPCAP_MIN_MUTE)) |
Takashi Iwai | c08d916 | 2010-10-17 10:40:53 +0200 | [diff] [blame] | 2103 | val2 |= TLV_DB_SCALE_MUTE; |
Jaroslav Kysela | 302e9c5 | 2006-07-05 17:39:49 +0200 | [diff] [blame] | 2104 | if (put_user(SNDRV_CTL_TLVT_DB_SCALE, _tlv)) |
| 2105 | return -EFAULT; |
| 2106 | if (put_user(2 * sizeof(unsigned int), _tlv + 1)) |
| 2107 | return -EFAULT; |
| 2108 | if (put_user(val1, _tlv + 2)) |
| 2109 | return -EFAULT; |
| 2110 | if (put_user(val2, _tlv + 3)) |
| 2111 | return -EFAULT; |
| 2112 | return 0; |
| 2113 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 2114 | EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_tlv); |
Jaroslav Kysela | 302e9c5 | 2006-07-05 17:39:49 +0200 | [diff] [blame] | 2115 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2116 | /** |
| 2117 | * snd_hda_set_vmaster_tlv - Set TLV for a virtual master control |
| 2118 | * @codec: HD-audio codec |
| 2119 | * @nid: NID of a reference widget |
| 2120 | * @dir: #HDA_INPUT or #HDA_OUTPUT |
| 2121 | * @tlv: TLV data to be stored, at least 4 elements |
| 2122 | * |
| 2123 | * Set (static) TLV data for a virtual master volume using the AMP caps |
| 2124 | * obtained from the reference NID. |
| 2125 | * The volume range is recalculated as if the max volume is 0dB. |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 2126 | */ |
| 2127 | void snd_hda_set_vmaster_tlv(struct hda_codec *codec, hda_nid_t nid, int dir, |
| 2128 | unsigned int *tlv) |
| 2129 | { |
| 2130 | u32 caps; |
| 2131 | int nums, step; |
| 2132 | |
| 2133 | caps = query_amp_caps(codec, nid, dir); |
| 2134 | nums = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT; |
| 2135 | step = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT; |
| 2136 | step = (step + 1) * 25; |
| 2137 | tlv[0] = SNDRV_CTL_TLVT_DB_SCALE; |
| 2138 | tlv[1] = 2 * sizeof(unsigned int); |
| 2139 | tlv[2] = -nums * step; |
| 2140 | tlv[3] = step; |
| 2141 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 2142 | EXPORT_SYMBOL_HDA(snd_hda_set_vmaster_tlv); |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 2143 | |
| 2144 | /* find a mixer control element with the given name */ |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 2145 | static struct snd_kcontrol * |
| 2146 | _snd_hda_find_mixer_ctl(struct hda_codec *codec, |
| 2147 | const char *name, int idx) |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 2148 | { |
| 2149 | struct snd_ctl_elem_id id; |
| 2150 | memset(&id, 0, sizeof(id)); |
| 2151 | id.iface = SNDRV_CTL_ELEM_IFACE_MIXER; |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 2152 | id.index = idx; |
Takashi Iwai | 18cb710 | 2009-04-16 10:22:24 +0200 | [diff] [blame] | 2153 | if (snd_BUG_ON(strlen(name) >= sizeof(id.name))) |
| 2154 | return NULL; |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 2155 | strcpy(id.name, name); |
| 2156 | return snd_ctl_find_id(codec->bus->card, &id); |
| 2157 | } |
| 2158 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2159 | /** |
| 2160 | * snd_hda_find_mixer_ctl - Find a mixer control element with the given name |
| 2161 | * @codec: HD-audio codec |
| 2162 | * @name: ctl id name string |
| 2163 | * |
| 2164 | * Get the control element with the given id string and IFACE_MIXER. |
| 2165 | */ |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 2166 | struct snd_kcontrol *snd_hda_find_mixer_ctl(struct hda_codec *codec, |
| 2167 | const char *name) |
| 2168 | { |
| 2169 | return _snd_hda_find_mixer_ctl(codec, name, 0); |
| 2170 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 2171 | EXPORT_SYMBOL_HDA(snd_hda_find_mixer_ctl); |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 2172 | |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 2173 | static int find_empty_mixer_ctl_idx(struct hda_codec *codec, const char *name) |
| 2174 | { |
| 2175 | int idx; |
| 2176 | for (idx = 0; idx < 16; idx++) { /* 16 ctlrs should be large enough */ |
| 2177 | if (!_snd_hda_find_mixer_ctl(codec, name, idx)) |
| 2178 | return idx; |
| 2179 | } |
| 2180 | return -EBUSY; |
| 2181 | } |
| 2182 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2183 | /** |
Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 2184 | * 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] | 2185 | * @codec: HD-audio codec |
| 2186 | * @nid: corresponding NID (optional) |
| 2187 | * @kctl: the control element to assign |
| 2188 | * |
| 2189 | * Add the given control element to an array inside the codec instance. |
| 2190 | * All control elements belonging to a codec are supposed to be added |
| 2191 | * by this function so that a proper clean-up works at the free or |
| 2192 | * reconfiguration time. |
| 2193 | * |
| 2194 | * If non-zero @nid is passed, the NID is assigned to the control element. |
| 2195 | * The assignment is shown in the codec proc file. |
| 2196 | * |
| 2197 | * snd_hda_ctl_add() checks the control subdev id field whether |
| 2198 | * #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] | 2199 | * bits value is taken as the NID to assign. The #HDA_NID_ITEM_AMP bit |
| 2200 | * specifies if kctl->private_value is a HDA amplifier value. |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2201 | */ |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 2202 | int snd_hda_ctl_add(struct hda_codec *codec, hda_nid_t nid, |
| 2203 | struct snd_kcontrol *kctl) |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2204 | { |
| 2205 | int err; |
Jaroslav Kysela | 9e3fd87 | 2009-12-08 17:45:25 +0100 | [diff] [blame] | 2206 | unsigned short flags = 0; |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 2207 | struct hda_nid_item *item; |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2208 | |
Jaroslav Kysela | 5e26dfd | 2009-12-10 13:57:01 +0100 | [diff] [blame] | 2209 | if (kctl->id.subdevice & HDA_SUBDEV_AMP_FLAG) { |
Jaroslav Kysela | 9e3fd87 | 2009-12-08 17:45:25 +0100 | [diff] [blame] | 2210 | flags |= HDA_NID_ITEM_AMP; |
Jaroslav Kysela | 5e26dfd | 2009-12-10 13:57:01 +0100 | [diff] [blame] | 2211 | if (nid == 0) |
| 2212 | nid = get_amp_nid_(kctl->private_value); |
| 2213 | } |
Jaroslav Kysela | 9e3fd87 | 2009-12-08 17:45:25 +0100 | [diff] [blame] | 2214 | if ((kctl->id.subdevice & HDA_SUBDEV_NID_FLAG) != 0 && nid == 0) |
| 2215 | nid = kctl->id.subdevice & 0xffff; |
Jaroslav Kysela | 5e26dfd | 2009-12-10 13:57:01 +0100 | [diff] [blame] | 2216 | if (kctl->id.subdevice & (HDA_SUBDEV_NID_FLAG|HDA_SUBDEV_AMP_FLAG)) |
Jaroslav Kysela | 4d02d1b | 2009-11-12 10:15:48 +0100 | [diff] [blame] | 2217 | kctl->id.subdevice = 0; |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2218 | err = snd_ctl_add(codec->bus->card, kctl); |
| 2219 | if (err < 0) |
| 2220 | return err; |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 2221 | item = snd_array_new(&codec->mixers); |
| 2222 | if (!item) |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2223 | return -ENOMEM; |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 2224 | item->kctl = kctl; |
| 2225 | item->nid = nid; |
Jaroslav Kysela | 9e3fd87 | 2009-12-08 17:45:25 +0100 | [diff] [blame] | 2226 | item->flags = flags; |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2227 | return 0; |
| 2228 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 2229 | EXPORT_SYMBOL_HDA(snd_hda_ctl_add); |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2230 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2231 | /** |
Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 2232 | * snd_hda_add_nid - Assign a NID to a control element |
| 2233 | * @codec: HD-audio codec |
| 2234 | * @nid: corresponding NID (optional) |
| 2235 | * @kctl: the control element to assign |
| 2236 | * @index: index to kctl |
| 2237 | * |
| 2238 | * Add the given control element to an array inside the codec instance. |
| 2239 | * This function is used when #snd_hda_ctl_add cannot be used for 1:1 |
| 2240 | * NID:KCTL mapping - for example "Capture Source" selector. |
| 2241 | */ |
| 2242 | int snd_hda_add_nid(struct hda_codec *codec, struct snd_kcontrol *kctl, |
| 2243 | unsigned int index, hda_nid_t nid) |
| 2244 | { |
| 2245 | struct hda_nid_item *item; |
| 2246 | |
| 2247 | if (nid > 0) { |
| 2248 | item = snd_array_new(&codec->nids); |
| 2249 | if (!item) |
| 2250 | return -ENOMEM; |
| 2251 | item->kctl = kctl; |
| 2252 | item->index = index; |
| 2253 | item->nid = nid; |
| 2254 | return 0; |
| 2255 | } |
Takashi Iwai | 28d1a85 | 2010-03-15 09:05:46 +0100 | [diff] [blame] | 2256 | printk(KERN_ERR "hda-codec: no NID for mapping control %s:%d:%d\n", |
| 2257 | kctl->id.name, kctl->id.index, index); |
Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 2258 | return -EINVAL; |
| 2259 | } |
| 2260 | EXPORT_SYMBOL_HDA(snd_hda_add_nid); |
| 2261 | |
| 2262 | /** |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2263 | * snd_hda_ctls_clear - Clear all controls assigned to the given codec |
| 2264 | * @codec: HD-audio codec |
| 2265 | */ |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2266 | void snd_hda_ctls_clear(struct hda_codec *codec) |
| 2267 | { |
| 2268 | int i; |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 2269 | struct hda_nid_item *items = codec->mixers.list; |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2270 | for (i = 0; i < codec->mixers.used; i++) |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 2271 | snd_ctl_remove(codec->bus->card, items[i].kctl); |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2272 | snd_array_free(&codec->mixers); |
Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 2273 | snd_array_free(&codec->nids); |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2274 | } |
| 2275 | |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 2276 | /* pseudo device locking |
| 2277 | * toggle card->shutdown to allow/disallow the device access (as a hack) |
| 2278 | */ |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 2279 | int snd_hda_lock_devices(struct hda_bus *bus) |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2280 | { |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 2281 | struct snd_card *card = bus->card; |
| 2282 | struct hda_codec *codec; |
| 2283 | |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 2284 | spin_lock(&card->files_lock); |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 2285 | if (card->shutdown) |
| 2286 | goto err_unlock; |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 2287 | card->shutdown = 1; |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 2288 | if (!list_empty(&card->ctl_files)) |
| 2289 | goto err_clear; |
| 2290 | |
| 2291 | list_for_each_entry(codec, &bus->codec_list, list) { |
| 2292 | int pcm; |
| 2293 | for (pcm = 0; pcm < codec->num_pcms; pcm++) { |
| 2294 | struct hda_pcm *cpcm = &codec->pcm_info[pcm]; |
| 2295 | if (!cpcm->pcm) |
| 2296 | continue; |
| 2297 | if (cpcm->pcm->streams[0].substream_opened || |
| 2298 | cpcm->pcm->streams[1].substream_opened) |
| 2299 | goto err_clear; |
| 2300 | } |
| 2301 | } |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 2302 | spin_unlock(&card->files_lock); |
| 2303 | return 0; |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 2304 | |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 2305 | err_clear: |
| 2306 | card->shutdown = 0; |
| 2307 | err_unlock: |
| 2308 | spin_unlock(&card->files_lock); |
| 2309 | return -EINVAL; |
| 2310 | } |
| 2311 | EXPORT_SYMBOL_HDA(snd_hda_lock_devices); |
| 2312 | |
| 2313 | void snd_hda_unlock_devices(struct hda_bus *bus) |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 2314 | { |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 2315 | struct snd_card *card = bus->card; |
| 2316 | |
| 2317 | card = bus->card; |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 2318 | spin_lock(&card->files_lock); |
| 2319 | card->shutdown = 0; |
| 2320 | spin_unlock(&card->files_lock); |
| 2321 | } |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 2322 | EXPORT_SYMBOL_HDA(snd_hda_unlock_devices); |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 2323 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2324 | /** |
| 2325 | * snd_hda_codec_reset - Clear all objects assigned to the codec |
| 2326 | * @codec: HD-audio codec |
| 2327 | * |
| 2328 | * This frees the all PCM and control elements assigned to the codec, and |
| 2329 | * clears the caches and restores the pin default configurations. |
| 2330 | * |
| 2331 | * When a device is being used, it returns -EBSY. If successfully freed, |
| 2332 | * returns zero. |
| 2333 | */ |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 2334 | int snd_hda_codec_reset(struct hda_codec *codec) |
| 2335 | { |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 2336 | struct hda_bus *bus = codec->bus; |
| 2337 | struct snd_card *card = bus->card; |
| 2338 | int i; |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 2339 | |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 2340 | if (snd_hda_lock_devices(bus) < 0) |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 2341 | return -EBUSY; |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 2342 | |
| 2343 | /* OK, let it free */ |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2344 | |
| 2345 | #ifdef CONFIG_SND_HDA_POWER_SAVE |
Takashi Iwai | a2d96e7 | 2012-05-09 12:36:22 +0200 | [diff] [blame] | 2346 | cancel_delayed_work_sync(&codec->power_work); |
Takashi Iwai | 339876d | 2012-05-08 16:57:12 +0200 | [diff] [blame] | 2347 | codec->power_on = 0; |
| 2348 | codec->power_transition = 0; |
| 2349 | codec->power_jiffies = jiffies; |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 2350 | flush_workqueue(bus->workq); |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2351 | #endif |
| 2352 | snd_hda_ctls_clear(codec); |
| 2353 | /* relase PCMs */ |
| 2354 | for (i = 0; i < codec->num_pcms; i++) { |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 2355 | if (codec->pcm_info[i].pcm) { |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 2356 | snd_device_free(card, codec->pcm_info[i].pcm); |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 2357 | clear_bit(codec->pcm_info[i].device, |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 2358 | bus->pcm_dev_bits); |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 2359 | } |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2360 | } |
| 2361 | if (codec->patch_ops.free) |
| 2362 | codec->patch_ops.free(codec); |
Takashi Iwai | 1835a0f | 2011-10-27 22:12:46 +0200 | [diff] [blame] | 2363 | snd_hda_jack_tbl_clear(codec); |
Takashi Iwai | 56d1771 | 2008-11-28 14:36:23 +0100 | [diff] [blame] | 2364 | codec->proc_widget_hook = NULL; |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2365 | codec->spec = NULL; |
| 2366 | free_hda_cache(&codec->amp_cache); |
| 2367 | free_hda_cache(&codec->cmd_cache); |
Takashi Iwai | 827057f | 2008-12-19 10:12:02 +0100 | [diff] [blame] | 2368 | init_hda_cache(&codec->amp_cache, sizeof(struct hda_amp_info)); |
| 2369 | init_hda_cache(&codec->cmd_cache, sizeof(struct hda_cache_head)); |
Takashi Iwai | 346ff70 | 2009-02-23 09:42:57 +0100 | [diff] [blame] | 2370 | /* free only driver_pins so that init_pins + user_pins are restored */ |
| 2371 | snd_array_free(&codec->driver_pins); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 2372 | restore_pincfgs(codec); |
Takashi Iwai | 09a6071 | 2012-06-26 15:01:33 +0200 | [diff] [blame] | 2373 | snd_array_free(&codec->cvt_setups); |
| 2374 | snd_array_free(&codec->spdif_out); |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2375 | codec->num_pcms = 0; |
| 2376 | codec->pcm_info = NULL; |
| 2377 | codec->preset = NULL; |
Takashi Iwai | d1f1af2 | 2009-03-02 10:35:29 +0100 | [diff] [blame] | 2378 | memset(&codec->patch_ops, 0, sizeof(codec->patch_ops)); |
| 2379 | codec->slave_dig_outs = NULL; |
| 2380 | codec->spdif_status_reset = 0; |
Takashi Iwai | 1289e9e | 2008-11-27 15:47:11 +0100 | [diff] [blame] | 2381 | module_put(codec->owner); |
| 2382 | codec->owner = NULL; |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 2383 | |
| 2384 | /* allow device access again */ |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 2385 | snd_hda_unlock_devices(bus); |
Takashi Iwai | a65d629 | 2009-02-23 16:57:04 +0100 | [diff] [blame] | 2386 | return 0; |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2387 | } |
| 2388 | |
Takashi Iwai | aeb4b88 | 2011-11-10 12:28:38 +0100 | [diff] [blame] | 2389 | typedef int (*map_slave_func_t)(void *, struct snd_kcontrol *); |
| 2390 | |
| 2391 | /* apply the function to all matching slave ctls in the mixer list */ |
| 2392 | static int map_slaves(struct hda_codec *codec, const char * const *slaves, |
Takashi Iwai | 9322ca5 | 2012-02-03 14:28:01 +0100 | [diff] [blame] | 2393 | const char *suffix, map_slave_func_t func, void *data) |
Takashi Iwai | aeb4b88 | 2011-11-10 12:28:38 +0100 | [diff] [blame] | 2394 | { |
| 2395 | struct hda_nid_item *items; |
| 2396 | const char * const *s; |
| 2397 | int i, err; |
| 2398 | |
| 2399 | items = codec->mixers.list; |
| 2400 | for (i = 0; i < codec->mixers.used; i++) { |
| 2401 | struct snd_kcontrol *sctl = items[i].kctl; |
| 2402 | if (!sctl || !sctl->id.name || |
| 2403 | sctl->id.iface != SNDRV_CTL_ELEM_IFACE_MIXER) |
| 2404 | continue; |
| 2405 | for (s = slaves; *s; s++) { |
Takashi Iwai | 9322ca5 | 2012-02-03 14:28:01 +0100 | [diff] [blame] | 2406 | char tmpname[sizeof(sctl->id.name)]; |
| 2407 | const char *name = *s; |
| 2408 | if (suffix) { |
| 2409 | snprintf(tmpname, sizeof(tmpname), "%s %s", |
| 2410 | name, suffix); |
| 2411 | name = tmpname; |
| 2412 | } |
Takashi Iwai | 9322ca5 | 2012-02-03 14:28:01 +0100 | [diff] [blame] | 2413 | if (!strcmp(sctl->id.name, name)) { |
Takashi Iwai | aeb4b88 | 2011-11-10 12:28:38 +0100 | [diff] [blame] | 2414 | err = func(data, sctl); |
| 2415 | if (err) |
| 2416 | return err; |
| 2417 | break; |
| 2418 | } |
| 2419 | } |
| 2420 | } |
| 2421 | return 0; |
| 2422 | } |
| 2423 | |
| 2424 | static int check_slave_present(void *data, struct snd_kcontrol *sctl) |
| 2425 | { |
| 2426 | return 1; |
| 2427 | } |
| 2428 | |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 2429 | /* guess the value corresponding to 0dB */ |
| 2430 | static int get_kctl_0dB_offset(struct snd_kcontrol *kctl) |
| 2431 | { |
| 2432 | int _tlv[4]; |
| 2433 | const int *tlv = NULL; |
| 2434 | int val = -1; |
| 2435 | |
| 2436 | if (kctl->vd[0].access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK) { |
| 2437 | /* FIXME: set_fs() hack for obtaining user-space TLV data */ |
| 2438 | mm_segment_t fs = get_fs(); |
| 2439 | set_fs(get_ds()); |
| 2440 | if (!kctl->tlv.c(kctl, 0, sizeof(_tlv), _tlv)) |
| 2441 | tlv = _tlv; |
| 2442 | set_fs(fs); |
| 2443 | } else if (kctl->vd[0].access & SNDRV_CTL_ELEM_ACCESS_TLV_READ) |
| 2444 | tlv = kctl->tlv.p; |
| 2445 | if (tlv && tlv[0] == SNDRV_CTL_TLVT_DB_SCALE) |
| 2446 | val = -tlv[2] / tlv[3]; |
| 2447 | return val; |
| 2448 | } |
| 2449 | |
| 2450 | /* call kctl->put with the given value(s) */ |
| 2451 | static int put_kctl_with_value(struct snd_kcontrol *kctl, int val) |
| 2452 | { |
| 2453 | struct snd_ctl_elem_value *ucontrol; |
| 2454 | ucontrol = kzalloc(sizeof(*ucontrol), GFP_KERNEL); |
| 2455 | if (!ucontrol) |
| 2456 | return -ENOMEM; |
| 2457 | ucontrol->value.integer.value[0] = val; |
| 2458 | ucontrol->value.integer.value[1] = val; |
| 2459 | kctl->put(kctl, ucontrol); |
| 2460 | kfree(ucontrol); |
| 2461 | return 0; |
| 2462 | } |
| 2463 | |
| 2464 | /* initialize the slave volume with 0dB */ |
| 2465 | static int init_slave_0dB(void *data, struct snd_kcontrol *slave) |
| 2466 | { |
| 2467 | int offset = get_kctl_0dB_offset(slave); |
| 2468 | if (offset > 0) |
| 2469 | put_kctl_with_value(slave, offset); |
| 2470 | return 0; |
| 2471 | } |
| 2472 | |
| 2473 | /* unmute the slave */ |
| 2474 | static int init_slave_unmute(void *data, struct snd_kcontrol *slave) |
| 2475 | { |
| 2476 | return put_kctl_with_value(slave, 1); |
| 2477 | } |
| 2478 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2479 | /** |
| 2480 | * snd_hda_add_vmaster - create a virtual master control and add slaves |
| 2481 | * @codec: HD-audio codec |
| 2482 | * @name: vmaster control name |
| 2483 | * @tlv: TLV data (optional) |
| 2484 | * @slaves: slave control names (optional) |
Takashi Iwai | 9322ca5 | 2012-02-03 14:28:01 +0100 | [diff] [blame] | 2485 | * @suffix: suffix string to each slave name (optional) |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 2486 | * @init_slave_vol: initialize slaves to unmute/0dB |
Takashi Iwai | 29e5853 | 2012-03-12 12:25:03 +0100 | [diff] [blame] | 2487 | * @ctl_ret: store the vmaster kcontrol in return |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2488 | * |
| 2489 | * Create a virtual master control with the given name. The TLV data |
| 2490 | * must be either NULL or a valid data. |
| 2491 | * |
| 2492 | * @slaves is a NULL-terminated array of strings, each of which is a |
| 2493 | * slave control name. All controls with these names are assigned to |
| 2494 | * the new virtual master control. |
| 2495 | * |
| 2496 | * This function returns zero if successful or a negative error code. |
| 2497 | */ |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 2498 | int __snd_hda_add_vmaster(struct hda_codec *codec, char *name, |
Takashi Iwai | 9322ca5 | 2012-02-03 14:28:01 +0100 | [diff] [blame] | 2499 | unsigned int *tlv, const char * const *slaves, |
Takashi Iwai | 29e5853 | 2012-03-12 12:25:03 +0100 | [diff] [blame] | 2500 | const char *suffix, bool init_slave_vol, |
| 2501 | struct snd_kcontrol **ctl_ret) |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 2502 | { |
| 2503 | struct snd_kcontrol *kctl; |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 2504 | int err; |
| 2505 | |
Takashi Iwai | 29e5853 | 2012-03-12 12:25:03 +0100 | [diff] [blame] | 2506 | if (ctl_ret) |
| 2507 | *ctl_ret = NULL; |
| 2508 | |
Takashi Iwai | 9322ca5 | 2012-02-03 14:28:01 +0100 | [diff] [blame] | 2509 | err = map_slaves(codec, slaves, suffix, check_slave_present, NULL); |
Takashi Iwai | aeb4b88 | 2011-11-10 12:28:38 +0100 | [diff] [blame] | 2510 | if (err != 1) { |
Takashi Iwai | 2f08554 | 2008-02-22 18:43:50 +0100 | [diff] [blame] | 2511 | snd_printdd("No slave found for %s\n", name); |
| 2512 | return 0; |
| 2513 | } |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 2514 | kctl = snd_ctl_make_virtual_master(name, tlv); |
| 2515 | if (!kctl) |
| 2516 | return -ENOMEM; |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 2517 | err = snd_hda_ctl_add(codec, 0, kctl); |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 2518 | if (err < 0) |
| 2519 | return err; |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 2520 | |
Takashi Iwai | 9322ca5 | 2012-02-03 14:28:01 +0100 | [diff] [blame] | 2521 | err = map_slaves(codec, slaves, suffix, |
| 2522 | (map_slave_func_t)snd_ctl_add_slave, kctl); |
Takashi Iwai | aeb4b88 | 2011-11-10 12:28:38 +0100 | [diff] [blame] | 2523 | if (err < 0) |
| 2524 | return err; |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 2525 | |
| 2526 | /* init with master mute & zero volume */ |
| 2527 | put_kctl_with_value(kctl, 0); |
| 2528 | if (init_slave_vol) |
| 2529 | map_slaves(codec, slaves, suffix, |
| 2530 | tlv ? init_slave_0dB : init_slave_unmute, kctl); |
| 2531 | |
Takashi Iwai | 29e5853 | 2012-03-12 12:25:03 +0100 | [diff] [blame] | 2532 | if (ctl_ret) |
| 2533 | *ctl_ret = kctl; |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 2534 | return 0; |
| 2535 | } |
Takashi Iwai | 18478e8 | 2012-03-09 17:51:10 +0100 | [diff] [blame] | 2536 | EXPORT_SYMBOL_HDA(__snd_hda_add_vmaster); |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 2537 | |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 2538 | /* |
| 2539 | * mute-LED control using vmaster |
| 2540 | */ |
| 2541 | static int vmaster_mute_mode_info(struct snd_kcontrol *kcontrol, |
| 2542 | struct snd_ctl_elem_info *uinfo) |
| 2543 | { |
| 2544 | static const char * const texts[] = { |
| 2545 | "Off", "On", "Follow Master" |
| 2546 | }; |
| 2547 | unsigned int index; |
| 2548 | |
| 2549 | uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; |
| 2550 | uinfo->count = 1; |
| 2551 | uinfo->value.enumerated.items = 3; |
| 2552 | index = uinfo->value.enumerated.item; |
| 2553 | if (index >= 3) |
| 2554 | index = 2; |
| 2555 | strcpy(uinfo->value.enumerated.name, texts[index]); |
| 2556 | return 0; |
| 2557 | } |
| 2558 | |
| 2559 | static int vmaster_mute_mode_get(struct snd_kcontrol *kcontrol, |
| 2560 | struct snd_ctl_elem_value *ucontrol) |
| 2561 | { |
| 2562 | struct hda_vmaster_mute_hook *hook = snd_kcontrol_chip(kcontrol); |
| 2563 | ucontrol->value.enumerated.item[0] = hook->mute_mode; |
| 2564 | return 0; |
| 2565 | } |
| 2566 | |
| 2567 | static int vmaster_mute_mode_put(struct snd_kcontrol *kcontrol, |
| 2568 | struct snd_ctl_elem_value *ucontrol) |
| 2569 | { |
| 2570 | struct hda_vmaster_mute_hook *hook = snd_kcontrol_chip(kcontrol); |
| 2571 | unsigned int old_mode = hook->mute_mode; |
| 2572 | |
| 2573 | hook->mute_mode = ucontrol->value.enumerated.item[0]; |
| 2574 | if (hook->mute_mode > HDA_VMUTE_FOLLOW_MASTER) |
| 2575 | hook->mute_mode = HDA_VMUTE_FOLLOW_MASTER; |
| 2576 | if (old_mode == hook->mute_mode) |
| 2577 | return 0; |
| 2578 | snd_hda_sync_vmaster_hook(hook); |
| 2579 | return 1; |
| 2580 | } |
| 2581 | |
| 2582 | static struct snd_kcontrol_new vmaster_mute_mode = { |
| 2583 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 2584 | .name = "Mute-LED Mode", |
| 2585 | .info = vmaster_mute_mode_info, |
| 2586 | .get = vmaster_mute_mode_get, |
| 2587 | .put = vmaster_mute_mode_put, |
| 2588 | }; |
| 2589 | |
| 2590 | /* |
| 2591 | * Add a mute-LED hook with the given vmaster switch kctl |
| 2592 | * "Mute-LED Mode" control is automatically created and associated with |
| 2593 | * the given hook. |
| 2594 | */ |
| 2595 | int snd_hda_add_vmaster_hook(struct hda_codec *codec, |
Takashi Iwai | f29735c | 2012-03-13 07:55:10 +0100 | [diff] [blame] | 2596 | struct hda_vmaster_mute_hook *hook, |
| 2597 | bool expose_enum_ctl) |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 2598 | { |
| 2599 | struct snd_kcontrol *kctl; |
| 2600 | |
| 2601 | if (!hook->hook || !hook->sw_kctl) |
| 2602 | return 0; |
| 2603 | snd_ctl_add_vmaster_hook(hook->sw_kctl, hook->hook, codec); |
| 2604 | hook->codec = codec; |
| 2605 | hook->mute_mode = HDA_VMUTE_FOLLOW_MASTER; |
Takashi Iwai | f29735c | 2012-03-13 07:55:10 +0100 | [diff] [blame] | 2606 | if (!expose_enum_ctl) |
| 2607 | return 0; |
Takashi Iwai | d2f344b | 2012-03-12 16:59:58 +0100 | [diff] [blame] | 2608 | kctl = snd_ctl_new1(&vmaster_mute_mode, hook); |
| 2609 | if (!kctl) |
| 2610 | return -ENOMEM; |
| 2611 | return snd_hda_ctl_add(codec, 0, kctl); |
| 2612 | } |
| 2613 | EXPORT_SYMBOL_HDA(snd_hda_add_vmaster_hook); |
| 2614 | |
| 2615 | /* |
| 2616 | * Call the hook with the current value for synchronization |
| 2617 | * Should be called in init callback |
| 2618 | */ |
| 2619 | void snd_hda_sync_vmaster_hook(struct hda_vmaster_mute_hook *hook) |
| 2620 | { |
| 2621 | if (!hook->hook || !hook->codec) |
| 2622 | return; |
| 2623 | switch (hook->mute_mode) { |
| 2624 | case HDA_VMUTE_FOLLOW_MASTER: |
| 2625 | snd_ctl_sync_vmaster_hook(hook->sw_kctl); |
| 2626 | break; |
| 2627 | default: |
| 2628 | hook->hook(hook->codec, hook->mute_mode); |
| 2629 | break; |
| 2630 | } |
| 2631 | } |
| 2632 | EXPORT_SYMBOL_HDA(snd_hda_sync_vmaster_hook); |
| 2633 | |
| 2634 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2635 | /** |
| 2636 | * snd_hda_mixer_amp_switch_info - Info callback for a standard AMP mixer switch |
| 2637 | * |
| 2638 | * The control element is supposed to have the private_value field |
| 2639 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. |
| 2640 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2641 | int snd_hda_mixer_amp_switch_info(struct snd_kcontrol *kcontrol, |
| 2642 | struct snd_ctl_elem_info *uinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2643 | { |
| 2644 | int chs = get_amp_channels(kcontrol); |
| 2645 | |
| 2646 | uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN; |
| 2647 | uinfo->count = chs == 3 ? 2 : 1; |
| 2648 | uinfo->value.integer.min = 0; |
| 2649 | uinfo->value.integer.max = 1; |
| 2650 | return 0; |
| 2651 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 2652 | EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2653 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2654 | /** |
| 2655 | * snd_hda_mixer_amp_switch_get - Get callback for a standard AMP mixer switch |
| 2656 | * |
| 2657 | * The control element is supposed to have the private_value field |
| 2658 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. |
| 2659 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2660 | int snd_hda_mixer_amp_switch_get(struct snd_kcontrol *kcontrol, |
| 2661 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2662 | { |
| 2663 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2664 | hda_nid_t nid = get_amp_nid(kcontrol); |
| 2665 | int chs = get_amp_channels(kcontrol); |
| 2666 | int dir = get_amp_direction(kcontrol); |
| 2667 | int idx = get_amp_index(kcontrol); |
| 2668 | long *valp = ucontrol->value.integer.value; |
| 2669 | |
| 2670 | if (chs & 1) |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2671 | *valp++ = (snd_hda_codec_amp_read(codec, nid, 0, dir, idx) & |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 2672 | HDA_AMP_MUTE) ? 0 : 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2673 | if (chs & 2) |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2674 | *valp = (snd_hda_codec_amp_read(codec, nid, 1, dir, idx) & |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 2675 | HDA_AMP_MUTE) ? 0 : 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2676 | return 0; |
| 2677 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 2678 | EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_get); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2679 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2680 | /** |
| 2681 | * snd_hda_mixer_amp_switch_put - Put callback for a standard AMP mixer switch |
| 2682 | * |
| 2683 | * The control element is supposed to have the private_value field |
| 2684 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. |
| 2685 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2686 | int snd_hda_mixer_amp_switch_put(struct snd_kcontrol *kcontrol, |
| 2687 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2688 | { |
| 2689 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2690 | hda_nid_t nid = get_amp_nid(kcontrol); |
| 2691 | int chs = get_amp_channels(kcontrol); |
| 2692 | int dir = get_amp_direction(kcontrol); |
| 2693 | int idx = get_amp_index(kcontrol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2694 | long *valp = ucontrol->value.integer.value; |
| 2695 | int change = 0; |
| 2696 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2697 | snd_hda_power_up(codec); |
Nicolas Graziano | b9f5a89 | 2005-07-29 12:17:20 +0200 | [diff] [blame] | 2698 | if (chs & 1) { |
Takashi Iwai | 4a19fae | 2005-06-08 14:43:58 +0200 | [diff] [blame] | 2699 | change = snd_hda_codec_amp_update(codec, nid, 0, dir, idx, |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 2700 | HDA_AMP_MUTE, |
| 2701 | *valp ? 0 : HDA_AMP_MUTE); |
Nicolas Graziano | b9f5a89 | 2005-07-29 12:17:20 +0200 | [diff] [blame] | 2702 | valp++; |
| 2703 | } |
Takashi Iwai | 4a19fae | 2005-06-08 14:43:58 +0200 | [diff] [blame] | 2704 | if (chs & 2) |
| 2705 | change |= snd_hda_codec_amp_update(codec, nid, 1, dir, idx, |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 2706 | HDA_AMP_MUTE, |
| 2707 | *valp ? 0 : HDA_AMP_MUTE); |
Takashi Iwai | 9e5341b | 2010-09-21 09:57:06 +0200 | [diff] [blame] | 2708 | hda_call_check_power_status(codec, nid); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2709 | snd_hda_power_down(codec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2710 | return change; |
| 2711 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 2712 | EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_put); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2713 | |
| 2714 | /* |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 2715 | * bound volume controls |
| 2716 | * |
| 2717 | * bind multiple volumes (# indices, from 0) |
| 2718 | */ |
| 2719 | |
| 2720 | #define AMP_VAL_IDX_SHIFT 19 |
| 2721 | #define AMP_VAL_IDX_MASK (0x0f<<19) |
| 2722 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2723 | /** |
| 2724 | * snd_hda_mixer_bind_switch_get - Get callback for a bound volume control |
| 2725 | * |
| 2726 | * The control element is supposed to have the private_value field |
| 2727 | * set up via HDA_BIND_MUTE*() macros. |
| 2728 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2729 | int snd_hda_mixer_bind_switch_get(struct snd_kcontrol *kcontrol, |
| 2730 | struct snd_ctl_elem_value *ucontrol) |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 2731 | { |
| 2732 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2733 | unsigned long pval; |
| 2734 | int err; |
| 2735 | |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2736 | mutex_lock(&codec->control_mutex); |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 2737 | pval = kcontrol->private_value; |
| 2738 | kcontrol->private_value = pval & ~AMP_VAL_IDX_MASK; /* index 0 */ |
| 2739 | err = snd_hda_mixer_amp_switch_get(kcontrol, ucontrol); |
| 2740 | kcontrol->private_value = pval; |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2741 | mutex_unlock(&codec->control_mutex); |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 2742 | return err; |
| 2743 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 2744 | EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_switch_get); |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 2745 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2746 | /** |
| 2747 | * snd_hda_mixer_bind_switch_put - Put callback for a bound volume control |
| 2748 | * |
| 2749 | * The control element is supposed to have the private_value field |
| 2750 | * set up via HDA_BIND_MUTE*() macros. |
| 2751 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2752 | int snd_hda_mixer_bind_switch_put(struct snd_kcontrol *kcontrol, |
| 2753 | struct snd_ctl_elem_value *ucontrol) |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 2754 | { |
| 2755 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2756 | unsigned long pval; |
| 2757 | int i, indices, err = 0, change = 0; |
| 2758 | |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2759 | mutex_lock(&codec->control_mutex); |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 2760 | pval = kcontrol->private_value; |
| 2761 | indices = (pval & AMP_VAL_IDX_MASK) >> AMP_VAL_IDX_SHIFT; |
| 2762 | for (i = 0; i < indices; i++) { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2763 | kcontrol->private_value = (pval & ~AMP_VAL_IDX_MASK) | |
| 2764 | (i << AMP_VAL_IDX_SHIFT); |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 2765 | err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol); |
| 2766 | if (err < 0) |
| 2767 | break; |
| 2768 | change |= err; |
| 2769 | } |
| 2770 | kcontrol->private_value = pval; |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2771 | mutex_unlock(&codec->control_mutex); |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 2772 | return err < 0 ? err : change; |
| 2773 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 2774 | EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_switch_put); |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 2775 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2776 | /** |
| 2777 | * snd_hda_mixer_bind_ctls_info - Info callback for a generic bound control |
| 2778 | * |
| 2779 | * The control element is supposed to have the private_value field |
| 2780 | * set up via HDA_BIND_VOL() or HDA_BIND_SW() macros. |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2781 | */ |
| 2782 | int snd_hda_mixer_bind_ctls_info(struct snd_kcontrol *kcontrol, |
| 2783 | struct snd_ctl_elem_info *uinfo) |
| 2784 | { |
| 2785 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2786 | struct hda_bind_ctls *c; |
| 2787 | int err; |
| 2788 | |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2789 | mutex_lock(&codec->control_mutex); |
Serge A. Suchkov | 14c65f9 | 2008-02-22 18:43:16 +0100 | [diff] [blame] | 2790 | c = (struct hda_bind_ctls *)kcontrol->private_value; |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2791 | kcontrol->private_value = *c->values; |
| 2792 | err = c->ops->info(kcontrol, uinfo); |
| 2793 | kcontrol->private_value = (long)c; |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2794 | mutex_unlock(&codec->control_mutex); |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2795 | return err; |
| 2796 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 2797 | EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_info); |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2798 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2799 | /** |
| 2800 | * snd_hda_mixer_bind_ctls_get - Get callback for a generic bound control |
| 2801 | * |
| 2802 | * The control element is supposed to have the private_value field |
| 2803 | * set up via HDA_BIND_VOL() or HDA_BIND_SW() macros. |
| 2804 | */ |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2805 | int snd_hda_mixer_bind_ctls_get(struct snd_kcontrol *kcontrol, |
| 2806 | struct snd_ctl_elem_value *ucontrol) |
| 2807 | { |
| 2808 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2809 | struct hda_bind_ctls *c; |
| 2810 | int err; |
| 2811 | |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2812 | mutex_lock(&codec->control_mutex); |
Serge A. Suchkov | 14c65f9 | 2008-02-22 18:43:16 +0100 | [diff] [blame] | 2813 | c = (struct hda_bind_ctls *)kcontrol->private_value; |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2814 | kcontrol->private_value = *c->values; |
| 2815 | err = c->ops->get(kcontrol, ucontrol); |
| 2816 | kcontrol->private_value = (long)c; |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2817 | mutex_unlock(&codec->control_mutex); |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2818 | return err; |
| 2819 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 2820 | EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_get); |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2821 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2822 | /** |
| 2823 | * snd_hda_mixer_bind_ctls_put - Put callback for a generic bound control |
| 2824 | * |
| 2825 | * The control element is supposed to have the private_value field |
| 2826 | * set up via HDA_BIND_VOL() or HDA_BIND_SW() macros. |
| 2827 | */ |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2828 | int snd_hda_mixer_bind_ctls_put(struct snd_kcontrol *kcontrol, |
| 2829 | struct snd_ctl_elem_value *ucontrol) |
| 2830 | { |
| 2831 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2832 | struct hda_bind_ctls *c; |
| 2833 | unsigned long *vals; |
| 2834 | int err = 0, change = 0; |
| 2835 | |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2836 | mutex_lock(&codec->control_mutex); |
Serge A. Suchkov | 14c65f9 | 2008-02-22 18:43:16 +0100 | [diff] [blame] | 2837 | c = (struct hda_bind_ctls *)kcontrol->private_value; |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2838 | for (vals = c->values; *vals; vals++) { |
| 2839 | kcontrol->private_value = *vals; |
| 2840 | err = c->ops->put(kcontrol, ucontrol); |
| 2841 | if (err < 0) |
| 2842 | break; |
| 2843 | change |= err; |
| 2844 | } |
| 2845 | kcontrol->private_value = (long)c; |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2846 | mutex_unlock(&codec->control_mutex); |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2847 | return err < 0 ? err : change; |
| 2848 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 2849 | EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_put); |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2850 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 2851 | /** |
| 2852 | * snd_hda_mixer_bind_tlv - TLV callback for a generic bound control |
| 2853 | * |
| 2854 | * The control element is supposed to have the private_value field |
| 2855 | * set up via HDA_BIND_VOL() macro. |
| 2856 | */ |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2857 | int snd_hda_mixer_bind_tlv(struct snd_kcontrol *kcontrol, int op_flag, |
| 2858 | unsigned int size, unsigned int __user *tlv) |
| 2859 | { |
| 2860 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 2861 | struct hda_bind_ctls *c; |
| 2862 | int err; |
| 2863 | |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2864 | mutex_lock(&codec->control_mutex); |
Serge A. Suchkov | 14c65f9 | 2008-02-22 18:43:16 +0100 | [diff] [blame] | 2865 | c = (struct hda_bind_ctls *)kcontrol->private_value; |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2866 | kcontrol->private_value = *c->values; |
| 2867 | err = c->ops->tlv(kcontrol, op_flag, size, tlv); |
| 2868 | kcontrol->private_value = (long)c; |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 2869 | mutex_unlock(&codec->control_mutex); |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2870 | return err; |
| 2871 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 2872 | EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_tlv); |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2873 | |
| 2874 | struct hda_ctl_ops snd_hda_bind_vol = { |
| 2875 | .info = snd_hda_mixer_amp_volume_info, |
| 2876 | .get = snd_hda_mixer_amp_volume_get, |
| 2877 | .put = snd_hda_mixer_amp_volume_put, |
| 2878 | .tlv = snd_hda_mixer_amp_tlv |
| 2879 | }; |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 2880 | EXPORT_SYMBOL_HDA(snd_hda_bind_vol); |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2881 | |
| 2882 | struct hda_ctl_ops snd_hda_bind_sw = { |
| 2883 | .info = snd_hda_mixer_amp_switch_info, |
| 2884 | .get = snd_hda_mixer_amp_switch_get, |
| 2885 | .put = snd_hda_mixer_amp_switch_put, |
| 2886 | .tlv = snd_hda_mixer_amp_tlv |
| 2887 | }; |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 2888 | EXPORT_SYMBOL_HDA(snd_hda_bind_sw); |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 2889 | |
| 2890 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2891 | * SPDIF out controls |
| 2892 | */ |
| 2893 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2894 | static int snd_hda_spdif_mask_info(struct snd_kcontrol *kcontrol, |
| 2895 | struct snd_ctl_elem_info *uinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2896 | { |
| 2897 | uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958; |
| 2898 | uinfo->count = 1; |
| 2899 | return 0; |
| 2900 | } |
| 2901 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2902 | static int snd_hda_spdif_cmask_get(struct snd_kcontrol *kcontrol, |
| 2903 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2904 | { |
| 2905 | ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL | |
| 2906 | IEC958_AES0_NONAUDIO | |
| 2907 | IEC958_AES0_CON_EMPHASIS_5015 | |
| 2908 | IEC958_AES0_CON_NOT_COPYRIGHT; |
| 2909 | ucontrol->value.iec958.status[1] = IEC958_AES1_CON_CATEGORY | |
| 2910 | IEC958_AES1_CON_ORIGINAL; |
| 2911 | return 0; |
| 2912 | } |
| 2913 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2914 | static int snd_hda_spdif_pmask_get(struct snd_kcontrol *kcontrol, |
| 2915 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2916 | { |
| 2917 | ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL | |
| 2918 | IEC958_AES0_NONAUDIO | |
| 2919 | IEC958_AES0_PRO_EMPHASIS_5015; |
| 2920 | return 0; |
| 2921 | } |
| 2922 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2923 | static int snd_hda_spdif_default_get(struct snd_kcontrol *kcontrol, |
| 2924 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2925 | { |
| 2926 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2927 | int idx = kcontrol->private_value; |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2928 | struct hda_spdif_out *spdif; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2929 | |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2930 | mutex_lock(&codec->spdif_mutex); |
| 2931 | spdif = snd_array_elem(&codec->spdif_out, idx); |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 2932 | ucontrol->value.iec958.status[0] = spdif->status & 0xff; |
| 2933 | ucontrol->value.iec958.status[1] = (spdif->status >> 8) & 0xff; |
| 2934 | ucontrol->value.iec958.status[2] = (spdif->status >> 16) & 0xff; |
| 2935 | ucontrol->value.iec958.status[3] = (spdif->status >> 24) & 0xff; |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 2936 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2937 | |
| 2938 | return 0; |
| 2939 | } |
| 2940 | |
| 2941 | /* convert from SPDIF status bits to HDA SPDIF bits |
| 2942 | * bit 0 (DigEn) is always set zero (to be filled later) |
| 2943 | */ |
| 2944 | static unsigned short convert_from_spdif_status(unsigned int sbits) |
| 2945 | { |
| 2946 | unsigned short val = 0; |
| 2947 | |
| 2948 | if (sbits & IEC958_AES0_PROFESSIONAL) |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2949 | val |= AC_DIG1_PROFESSIONAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2950 | if (sbits & IEC958_AES0_NONAUDIO) |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2951 | val |= AC_DIG1_NONAUDIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2952 | if (sbits & IEC958_AES0_PROFESSIONAL) { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2953 | if ((sbits & IEC958_AES0_PRO_EMPHASIS) == |
| 2954 | IEC958_AES0_PRO_EMPHASIS_5015) |
| 2955 | val |= AC_DIG1_EMPHASIS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2956 | } else { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2957 | if ((sbits & IEC958_AES0_CON_EMPHASIS) == |
| 2958 | IEC958_AES0_CON_EMPHASIS_5015) |
| 2959 | val |= AC_DIG1_EMPHASIS; |
| 2960 | if (!(sbits & IEC958_AES0_CON_NOT_COPYRIGHT)) |
| 2961 | val |= AC_DIG1_COPYRIGHT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2962 | if (sbits & (IEC958_AES1_CON_ORIGINAL << 8)) |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2963 | val |= AC_DIG1_LEVEL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2964 | val |= sbits & (IEC958_AES1_CON_CATEGORY << 8); |
| 2965 | } |
| 2966 | return val; |
| 2967 | } |
| 2968 | |
| 2969 | /* convert to SPDIF status bits from HDA SPDIF bits |
| 2970 | */ |
| 2971 | static unsigned int convert_to_spdif_status(unsigned short val) |
| 2972 | { |
| 2973 | unsigned int sbits = 0; |
| 2974 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2975 | if (val & AC_DIG1_NONAUDIO) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2976 | sbits |= IEC958_AES0_NONAUDIO; |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2977 | if (val & AC_DIG1_PROFESSIONAL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2978 | sbits |= IEC958_AES0_PROFESSIONAL; |
| 2979 | if (sbits & IEC958_AES0_PROFESSIONAL) { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2980 | if (sbits & AC_DIG1_EMPHASIS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2981 | sbits |= IEC958_AES0_PRO_EMPHASIS_5015; |
| 2982 | } else { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2983 | if (val & AC_DIG1_EMPHASIS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2984 | sbits |= IEC958_AES0_CON_EMPHASIS_5015; |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2985 | if (!(val & AC_DIG1_COPYRIGHT)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2986 | sbits |= IEC958_AES0_CON_NOT_COPYRIGHT; |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2987 | if (val & AC_DIG1_LEVEL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2988 | sbits |= (IEC958_AES1_CON_ORIGINAL << 8); |
| 2989 | sbits |= val & (0x7f << 8); |
| 2990 | } |
| 2991 | return sbits; |
| 2992 | } |
| 2993 | |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 2994 | /* set digital convert verbs both for the given NID and its slaves */ |
| 2995 | static void set_dig_out(struct hda_codec *codec, hda_nid_t nid, |
| 2996 | int verb, int val) |
| 2997 | { |
Takashi Iwai | dda1441 | 2011-05-02 11:29:30 +0200 | [diff] [blame] | 2998 | const hda_nid_t *d; |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 2999 | |
Takashi Iwai | 9e97697 | 2008-11-25 08:17:20 +0100 | [diff] [blame] | 3000 | snd_hda_codec_write_cache(codec, nid, 0, verb, val); |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 3001 | d = codec->slave_dig_outs; |
| 3002 | if (!d) |
| 3003 | return; |
| 3004 | for (; *d; d++) |
Takashi Iwai | 9e97697 | 2008-11-25 08:17:20 +0100 | [diff] [blame] | 3005 | snd_hda_codec_write_cache(codec, *d, 0, verb, val); |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 3006 | } |
| 3007 | |
| 3008 | static inline void set_dig_out_convert(struct hda_codec *codec, hda_nid_t nid, |
| 3009 | int dig1, int dig2) |
| 3010 | { |
| 3011 | if (dig1 != -1) |
| 3012 | set_dig_out(codec, nid, AC_VERB_SET_DIGI_CONVERT_1, dig1); |
| 3013 | if (dig2 != -1) |
| 3014 | set_dig_out(codec, nid, AC_VERB_SET_DIGI_CONVERT_2, dig2); |
| 3015 | } |
| 3016 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3017 | static int snd_hda_spdif_default_put(struct snd_kcontrol *kcontrol, |
| 3018 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3019 | { |
| 3020 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 3021 | int idx = kcontrol->private_value; |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 3022 | struct hda_spdif_out *spdif; |
| 3023 | hda_nid_t nid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3024 | unsigned short val; |
| 3025 | int change; |
| 3026 | |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 3027 | mutex_lock(&codec->spdif_mutex); |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 3028 | spdif = snd_array_elem(&codec->spdif_out, idx); |
| 3029 | nid = spdif->nid; |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 3030 | spdif->status = ucontrol->value.iec958.status[0] | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3031 | ((unsigned int)ucontrol->value.iec958.status[1] << 8) | |
| 3032 | ((unsigned int)ucontrol->value.iec958.status[2] << 16) | |
| 3033 | ((unsigned int)ucontrol->value.iec958.status[3] << 24); |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 3034 | val = convert_from_spdif_status(spdif->status); |
| 3035 | val |= spdif->ctls & 1; |
| 3036 | change = spdif->ctls != val; |
| 3037 | spdif->ctls = val; |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 3038 | if (change && nid != (u16)-1) |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 3039 | set_dig_out_convert(codec, nid, val & 0xff, (val >> 8) & 0xff); |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 3040 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3041 | return change; |
| 3042 | } |
| 3043 | |
Takashi Iwai | a5ce889 | 2007-07-23 15:42:26 +0200 | [diff] [blame] | 3044 | #define snd_hda_spdif_out_switch_info snd_ctl_boolean_mono_info |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3045 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3046 | static int snd_hda_spdif_out_switch_get(struct snd_kcontrol *kcontrol, |
| 3047 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3048 | { |
| 3049 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 3050 | int idx = kcontrol->private_value; |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 3051 | struct hda_spdif_out *spdif; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3052 | |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 3053 | mutex_lock(&codec->spdif_mutex); |
| 3054 | spdif = snd_array_elem(&codec->spdif_out, idx); |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 3055 | ucontrol->value.integer.value[0] = spdif->ctls & AC_DIG1_ENABLE; |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 3056 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3057 | return 0; |
| 3058 | } |
| 3059 | |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 3060 | static inline void set_spdif_ctls(struct hda_codec *codec, hda_nid_t nid, |
| 3061 | int dig1, int dig2) |
| 3062 | { |
| 3063 | set_dig_out_convert(codec, nid, dig1, dig2); |
| 3064 | /* unmute amp switch (if any) */ |
| 3065 | if ((get_wcaps(codec, nid) & AC_WCAP_OUT_AMP) && |
| 3066 | (dig1 & AC_DIG1_ENABLE)) |
| 3067 | snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0, |
| 3068 | HDA_AMP_MUTE, 0); |
| 3069 | } |
| 3070 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3071 | static int snd_hda_spdif_out_switch_put(struct snd_kcontrol *kcontrol, |
| 3072 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3073 | { |
| 3074 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 3075 | int idx = kcontrol->private_value; |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 3076 | struct hda_spdif_out *spdif; |
| 3077 | hda_nid_t nid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3078 | unsigned short val; |
| 3079 | int change; |
| 3080 | |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 3081 | mutex_lock(&codec->spdif_mutex); |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 3082 | spdif = snd_array_elem(&codec->spdif_out, idx); |
| 3083 | nid = spdif->nid; |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 3084 | val = spdif->ctls & ~AC_DIG1_ENABLE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3085 | if (ucontrol->value.integer.value[0]) |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3086 | val |= AC_DIG1_ENABLE; |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 3087 | change = spdif->ctls != val; |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 3088 | spdif->ctls = val; |
| 3089 | if (change && nid != (u16)-1) |
| 3090 | set_spdif_ctls(codec, nid, val & 0xff, -1); |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 3091 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3092 | return change; |
| 3093 | } |
| 3094 | |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 3095 | static struct snd_kcontrol_new dig_mixes[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3096 | { |
| 3097 | .access = SNDRV_CTL_ELEM_ACCESS_READ, |
| 3098 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 3099 | .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, CON_MASK), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3100 | .info = snd_hda_spdif_mask_info, |
| 3101 | .get = snd_hda_spdif_cmask_get, |
| 3102 | }, |
| 3103 | { |
| 3104 | .access = SNDRV_CTL_ELEM_ACCESS_READ, |
| 3105 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 3106 | .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, PRO_MASK), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3107 | .info = snd_hda_spdif_mask_info, |
| 3108 | .get = snd_hda_spdif_pmask_get, |
| 3109 | }, |
| 3110 | { |
| 3111 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 3112 | .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, DEFAULT), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3113 | .info = snd_hda_spdif_mask_info, |
| 3114 | .get = snd_hda_spdif_default_get, |
| 3115 | .put = snd_hda_spdif_default_put, |
| 3116 | }, |
| 3117 | { |
| 3118 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 3119 | .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, SWITCH), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3120 | .info = snd_hda_spdif_out_switch_info, |
| 3121 | .get = snd_hda_spdif_out_switch_get, |
| 3122 | .put = snd_hda_spdif_out_switch_put, |
| 3123 | }, |
| 3124 | { } /* end */ |
| 3125 | }; |
| 3126 | |
| 3127 | /** |
| 3128 | * snd_hda_create_spdif_out_ctls - create Output SPDIF-related controls |
| 3129 | * @codec: the HDA codec |
| 3130 | * @nid: audio out widget NID |
| 3131 | * |
| 3132 | * Creates controls related with the SPDIF output. |
| 3133 | * Called from each patch supporting the SPDIF out. |
| 3134 | * |
| 3135 | * Returns 0 if successful, or a negative error code. |
| 3136 | */ |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 3137 | int snd_hda_create_spdif_out_ctls(struct hda_codec *codec, |
| 3138 | hda_nid_t associated_nid, |
| 3139 | hda_nid_t cvt_nid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3140 | { |
| 3141 | int err; |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 3142 | struct snd_kcontrol *kctl; |
| 3143 | struct snd_kcontrol_new *dig_mix; |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 3144 | int idx; |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 3145 | struct hda_spdif_out *spdif; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3146 | |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 3147 | idx = find_empty_mixer_ctl_idx(codec, "IEC958 Playback Switch"); |
| 3148 | if (idx < 0) { |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 3149 | printk(KERN_ERR "hda_codec: too many IEC958 outputs\n"); |
| 3150 | return -EBUSY; |
| 3151 | } |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 3152 | spdif = snd_array_new(&codec->spdif_out); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3153 | for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) { |
| 3154 | kctl = snd_ctl_new1(dig_mix, codec); |
Takashi Iwai | b91f080 | 2008-11-04 08:43:08 +0100 | [diff] [blame] | 3155 | if (!kctl) |
| 3156 | return -ENOMEM; |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 3157 | kctl->id.index = idx; |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 3158 | kctl->private_value = codec->spdif_out.used - 1; |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 3159 | err = snd_hda_ctl_add(codec, associated_nid, kctl); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3160 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3161 | return err; |
| 3162 | } |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 3163 | spdif->nid = cvt_nid; |
| 3164 | spdif->ctls = snd_hda_codec_read(codec, cvt_nid, 0, |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 3165 | AC_VERB_GET_DIGI_CONVERT_1, 0); |
| 3166 | spdif->status = convert_to_spdif_status(spdif->ctls); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3167 | return 0; |
| 3168 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 3169 | EXPORT_SYMBOL_HDA(snd_hda_create_spdif_out_ctls); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3170 | |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 3171 | /* get the hda_spdif_out entry from the given NID |
| 3172 | * call within spdif_mutex lock |
| 3173 | */ |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 3174 | struct hda_spdif_out *snd_hda_spdif_out_of_nid(struct hda_codec *codec, |
| 3175 | hda_nid_t nid) |
| 3176 | { |
| 3177 | int i; |
| 3178 | for (i = 0; i < codec->spdif_out.used; i++) { |
| 3179 | struct hda_spdif_out *spdif = |
| 3180 | snd_array_elem(&codec->spdif_out, i); |
| 3181 | if (spdif->nid == nid) |
| 3182 | return spdif; |
| 3183 | } |
| 3184 | return NULL; |
| 3185 | } |
| 3186 | EXPORT_SYMBOL_HDA(snd_hda_spdif_out_of_nid); |
| 3187 | |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 3188 | void snd_hda_spdif_ctls_unassign(struct hda_codec *codec, int idx) |
| 3189 | { |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 3190 | struct hda_spdif_out *spdif; |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 3191 | |
| 3192 | mutex_lock(&codec->spdif_mutex); |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 3193 | spdif = snd_array_elem(&codec->spdif_out, idx); |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 3194 | spdif->nid = (u16)-1; |
| 3195 | mutex_unlock(&codec->spdif_mutex); |
| 3196 | } |
| 3197 | EXPORT_SYMBOL_HDA(snd_hda_spdif_ctls_unassign); |
| 3198 | |
| 3199 | void snd_hda_spdif_ctls_assign(struct hda_codec *codec, int idx, hda_nid_t nid) |
| 3200 | { |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 3201 | struct hda_spdif_out *spdif; |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 3202 | unsigned short val; |
| 3203 | |
| 3204 | mutex_lock(&codec->spdif_mutex); |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 3205 | spdif = snd_array_elem(&codec->spdif_out, idx); |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 3206 | if (spdif->nid != nid) { |
| 3207 | spdif->nid = nid; |
| 3208 | val = spdif->ctls; |
| 3209 | set_spdif_ctls(codec, nid, val & 0xff, (val >> 8) & 0xff); |
| 3210 | } |
| 3211 | mutex_unlock(&codec->spdif_mutex); |
| 3212 | } |
| 3213 | EXPORT_SYMBOL_HDA(snd_hda_spdif_ctls_assign); |
| 3214 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3215 | /* |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 3216 | * SPDIF sharing with analog output |
| 3217 | */ |
| 3218 | static int spdif_share_sw_get(struct snd_kcontrol *kcontrol, |
| 3219 | struct snd_ctl_elem_value *ucontrol) |
| 3220 | { |
| 3221 | struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol); |
| 3222 | ucontrol->value.integer.value[0] = mout->share_spdif; |
| 3223 | return 0; |
| 3224 | } |
| 3225 | |
| 3226 | static int spdif_share_sw_put(struct snd_kcontrol *kcontrol, |
| 3227 | struct snd_ctl_elem_value *ucontrol) |
| 3228 | { |
| 3229 | struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol); |
| 3230 | mout->share_spdif = !!ucontrol->value.integer.value[0]; |
| 3231 | return 0; |
| 3232 | } |
| 3233 | |
| 3234 | static struct snd_kcontrol_new spdif_share_sw = { |
| 3235 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 3236 | .name = "IEC958 Default PCM Playback Switch", |
| 3237 | .info = snd_ctl_boolean_mono_info, |
| 3238 | .get = spdif_share_sw_get, |
| 3239 | .put = spdif_share_sw_put, |
| 3240 | }; |
| 3241 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3242 | /** |
| 3243 | * snd_hda_create_spdif_share_sw - create Default PCM switch |
| 3244 | * @codec: the HDA codec |
| 3245 | * @mout: multi-out instance |
| 3246 | */ |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 3247 | int snd_hda_create_spdif_share_sw(struct hda_codec *codec, |
| 3248 | struct hda_multi_out *mout) |
| 3249 | { |
| 3250 | if (!mout->dig_out_nid) |
| 3251 | return 0; |
| 3252 | /* ATTENTION: here mout is passed as private_data, instead of codec */ |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 3253 | return snd_hda_ctl_add(codec, mout->dig_out_nid, |
| 3254 | snd_ctl_new1(&spdif_share_sw, mout)); |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 3255 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 3256 | EXPORT_SYMBOL_HDA(snd_hda_create_spdif_share_sw); |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 3257 | |
| 3258 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3259 | * SPDIF input |
| 3260 | */ |
| 3261 | |
| 3262 | #define snd_hda_spdif_in_switch_info snd_hda_spdif_out_switch_info |
| 3263 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3264 | static int snd_hda_spdif_in_switch_get(struct snd_kcontrol *kcontrol, |
| 3265 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3266 | { |
| 3267 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 3268 | |
| 3269 | ucontrol->value.integer.value[0] = codec->spdif_in_enable; |
| 3270 | return 0; |
| 3271 | } |
| 3272 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3273 | static int snd_hda_spdif_in_switch_put(struct snd_kcontrol *kcontrol, |
| 3274 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3275 | { |
| 3276 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 3277 | hda_nid_t nid = kcontrol->private_value; |
| 3278 | unsigned int val = !!ucontrol->value.integer.value[0]; |
| 3279 | int change; |
| 3280 | |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 3281 | mutex_lock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3282 | change = codec->spdif_in_enable != val; |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 3283 | if (change) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3284 | codec->spdif_in_enable = val; |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 3285 | snd_hda_codec_write_cache(codec, nid, 0, |
| 3286 | AC_VERB_SET_DIGI_CONVERT_1, val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3287 | } |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 3288 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3289 | return change; |
| 3290 | } |
| 3291 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3292 | static int snd_hda_spdif_in_status_get(struct snd_kcontrol *kcontrol, |
| 3293 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3294 | { |
| 3295 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 3296 | hda_nid_t nid = kcontrol->private_value; |
| 3297 | unsigned short val; |
| 3298 | unsigned int sbits; |
| 3299 | |
Andrew Paprocki | 3982d17 | 2007-12-19 12:13:44 +0100 | [diff] [blame] | 3300 | 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] | 3301 | sbits = convert_to_spdif_status(val); |
| 3302 | ucontrol->value.iec958.status[0] = sbits; |
| 3303 | ucontrol->value.iec958.status[1] = sbits >> 8; |
| 3304 | ucontrol->value.iec958.status[2] = sbits >> 16; |
| 3305 | ucontrol->value.iec958.status[3] = sbits >> 24; |
| 3306 | return 0; |
| 3307 | } |
| 3308 | |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 3309 | static struct snd_kcontrol_new dig_in_ctls[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3310 | { |
| 3311 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 3312 | .name = SNDRV_CTL_NAME_IEC958("", CAPTURE, SWITCH), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3313 | .info = snd_hda_spdif_in_switch_info, |
| 3314 | .get = snd_hda_spdif_in_switch_get, |
| 3315 | .put = snd_hda_spdif_in_switch_put, |
| 3316 | }, |
| 3317 | { |
| 3318 | .access = SNDRV_CTL_ELEM_ACCESS_READ, |
| 3319 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 3320 | .name = SNDRV_CTL_NAME_IEC958("", CAPTURE, DEFAULT), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3321 | .info = snd_hda_spdif_mask_info, |
| 3322 | .get = snd_hda_spdif_in_status_get, |
| 3323 | }, |
| 3324 | { } /* end */ |
| 3325 | }; |
| 3326 | |
| 3327 | /** |
| 3328 | * snd_hda_create_spdif_in_ctls - create Input SPDIF-related controls |
| 3329 | * @codec: the HDA codec |
| 3330 | * @nid: audio in widget NID |
| 3331 | * |
| 3332 | * Creates controls related with the SPDIF input. |
| 3333 | * Called from each patch supporting the SPDIF in. |
| 3334 | * |
| 3335 | * Returns 0 if successful, or a negative error code. |
| 3336 | */ |
Takashi Iwai | 12f288b | 2007-08-02 15:51:59 +0200 | [diff] [blame] | 3337 | 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] | 3338 | { |
| 3339 | int err; |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 3340 | struct snd_kcontrol *kctl; |
| 3341 | struct snd_kcontrol_new *dig_mix; |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 3342 | int idx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3343 | |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 3344 | idx = find_empty_mixer_ctl_idx(codec, "IEC958 Capture Switch"); |
| 3345 | if (idx < 0) { |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 3346 | printk(KERN_ERR "hda_codec: too many IEC958 inputs\n"); |
| 3347 | return -EBUSY; |
| 3348 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3349 | for (dig_mix = dig_in_ctls; dig_mix->name; dig_mix++) { |
| 3350 | kctl = snd_ctl_new1(dig_mix, codec); |
Takashi Iwai | c8dcdf8 | 2009-02-06 16:21:20 +0100 | [diff] [blame] | 3351 | if (!kctl) |
| 3352 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3353 | kctl->private_value = nid; |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 3354 | err = snd_hda_ctl_add(codec, nid, kctl); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3355 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3356 | return err; |
| 3357 | } |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3358 | codec->spdif_in_enable = |
Andrew Paprocki | 3982d17 | 2007-12-19 12:13:44 +0100 | [diff] [blame] | 3359 | snd_hda_codec_read(codec, nid, 0, |
| 3360 | AC_VERB_GET_DIGI_CONVERT_1, 0) & |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3361 | AC_DIG1_ENABLE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3362 | return 0; |
| 3363 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 3364 | EXPORT_SYMBOL_HDA(snd_hda_create_spdif_in_ctls); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3365 | |
Takashi Iwai | 2a43952 | 2011-07-26 09:52:50 +0200 | [diff] [blame] | 3366 | #ifdef CONFIG_PM |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 3367 | /* |
| 3368 | * command cache |
| 3369 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3370 | |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 3371 | /* build a 32bit cache key with the widget id and the command parameter */ |
| 3372 | #define build_cmd_cache_key(nid, verb) ((verb << 8) | nid) |
| 3373 | #define get_cmd_cache_nid(key) ((key) & 0xff) |
| 3374 | #define get_cmd_cache_cmd(key) (((key) >> 8) & 0xffff) |
| 3375 | |
| 3376 | /** |
| 3377 | * snd_hda_codec_write_cache - send a single command with caching |
| 3378 | * @codec: the HDA codec |
| 3379 | * @nid: NID to send the command |
| 3380 | * @direct: direct flag |
| 3381 | * @verb: the verb to send |
| 3382 | * @parm: the parameter for the verb |
| 3383 | * |
| 3384 | * Send a single command without waiting for response. |
| 3385 | * |
| 3386 | * Returns 0 if successful, or a negative error code. |
| 3387 | */ |
| 3388 | int snd_hda_codec_write_cache(struct hda_codec *codec, hda_nid_t nid, |
| 3389 | int direct, unsigned int verb, unsigned int parm) |
| 3390 | { |
Takashi Iwai | aa2936f | 2009-05-26 16:07:57 +0200 | [diff] [blame] | 3391 | int err = snd_hda_codec_write(codec, nid, direct, verb, parm); |
| 3392 | struct hda_cache_head *c; |
| 3393 | u32 key; |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 3394 | |
Takashi Iwai | aa2936f | 2009-05-26 16:07:57 +0200 | [diff] [blame] | 3395 | if (err < 0) |
| 3396 | return err; |
| 3397 | /* parm may contain the verb stuff for get/set amp */ |
| 3398 | verb = verb | (parm >> 8); |
| 3399 | parm &= 0xff; |
| 3400 | key = build_cmd_cache_key(nid, verb); |
| 3401 | mutex_lock(&codec->bus->cmd_mutex); |
| 3402 | c = get_alloc_hash(&codec->cmd_cache, key); |
| 3403 | if (c) |
| 3404 | c->val = parm; |
| 3405 | mutex_unlock(&codec->bus->cmd_mutex); |
| 3406 | return 0; |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 3407 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 3408 | EXPORT_SYMBOL_HDA(snd_hda_codec_write_cache); |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 3409 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3410 | /** |
Takashi Iwai | a68d5a5 | 2010-03-30 18:03:44 +0200 | [diff] [blame] | 3411 | * snd_hda_codec_update_cache - check cache and write the cmd only when needed |
| 3412 | * @codec: the HDA codec |
| 3413 | * @nid: NID to send the command |
| 3414 | * @direct: direct flag |
| 3415 | * @verb: the verb to send |
| 3416 | * @parm: the parameter for the verb |
| 3417 | * |
| 3418 | * This function works like snd_hda_codec_write_cache(), but it doesn't send |
| 3419 | * command if the parameter is already identical with the cached value. |
| 3420 | * If not, it sends the command and refreshes the cache. |
| 3421 | * |
| 3422 | * Returns 0 if successful, or a negative error code. |
| 3423 | */ |
| 3424 | int snd_hda_codec_update_cache(struct hda_codec *codec, hda_nid_t nid, |
| 3425 | int direct, unsigned int verb, unsigned int parm) |
| 3426 | { |
| 3427 | struct hda_cache_head *c; |
| 3428 | u32 key; |
| 3429 | |
| 3430 | /* parm may contain the verb stuff for get/set amp */ |
| 3431 | verb = verb | (parm >> 8); |
| 3432 | parm &= 0xff; |
| 3433 | key = build_cmd_cache_key(nid, verb); |
| 3434 | mutex_lock(&codec->bus->cmd_mutex); |
| 3435 | c = get_hash(&codec->cmd_cache, key); |
| 3436 | if (c && c->val == parm) { |
| 3437 | mutex_unlock(&codec->bus->cmd_mutex); |
| 3438 | return 0; |
| 3439 | } |
| 3440 | mutex_unlock(&codec->bus->cmd_mutex); |
| 3441 | return snd_hda_codec_write_cache(codec, nid, direct, verb, parm); |
| 3442 | } |
| 3443 | EXPORT_SYMBOL_HDA(snd_hda_codec_update_cache); |
| 3444 | |
| 3445 | /** |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3446 | * snd_hda_codec_resume_cache - Resume the all commands from the cache |
| 3447 | * @codec: HD-audio codec |
| 3448 | * |
| 3449 | * Execute all verbs recorded in the command caches to resume. |
| 3450 | */ |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 3451 | void snd_hda_codec_resume_cache(struct hda_codec *codec) |
| 3452 | { |
Takashi Iwai | 603c401 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 3453 | struct hda_cache_head *buffer = codec->cmd_cache.buf.list; |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 3454 | int i; |
| 3455 | |
Takashi Iwai | 603c401 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 3456 | for (i = 0; i < codec->cmd_cache.buf.used; i++, buffer++) { |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 3457 | u32 key = buffer->key; |
| 3458 | if (!key) |
| 3459 | continue; |
| 3460 | snd_hda_codec_write(codec, get_cmd_cache_nid(key), 0, |
| 3461 | get_cmd_cache_cmd(key), buffer->val); |
| 3462 | } |
| 3463 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 3464 | EXPORT_SYMBOL_HDA(snd_hda_codec_resume_cache); |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 3465 | |
| 3466 | /** |
| 3467 | * snd_hda_sequence_write_cache - sequence writes with caching |
| 3468 | * @codec: the HDA codec |
| 3469 | * @seq: VERB array to send |
| 3470 | * |
| 3471 | * Send the commands sequentially from the given array. |
| 3472 | * Thte commands are recorded on cache for power-save and resume. |
| 3473 | * The array must be terminated with NID=0. |
| 3474 | */ |
| 3475 | void snd_hda_sequence_write_cache(struct hda_codec *codec, |
| 3476 | const struct hda_verb *seq) |
| 3477 | { |
| 3478 | for (; seq->nid; seq++) |
| 3479 | snd_hda_codec_write_cache(codec, seq->nid, 0, seq->verb, |
| 3480 | seq->param); |
| 3481 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 3482 | EXPORT_SYMBOL_HDA(snd_hda_sequence_write_cache); |
Takashi Iwai | 2a43952 | 2011-07-26 09:52:50 +0200 | [diff] [blame] | 3483 | #endif /* CONFIG_PM */ |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 3484 | |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 3485 | void snd_hda_codec_set_power_to_all(struct hda_codec *codec, hda_nid_t fg, |
| 3486 | unsigned int power_state, |
| 3487 | bool eapd_workaround) |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 3488 | { |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 3489 | hda_nid_t nid = codec->start_nid; |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3490 | int i; |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 3491 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3492 | for (i = 0; i < codec->num_nodes; i++, nid++) { |
Takashi Iwai | 7eba5c9 | 2007-11-14 14:53:42 +0100 | [diff] [blame] | 3493 | unsigned int wcaps = get_wcaps(codec, nid); |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 3494 | if (!(wcaps & AC_WCAP_POWER)) |
| 3495 | continue; |
| 3496 | /* don't power down the widget if it controls eapd and |
| 3497 | * EAPD_BTLENABLE is set. |
| 3498 | */ |
| 3499 | if (eapd_workaround && power_state == AC_PWRST_D3 && |
| 3500 | get_wcaps_type(wcaps) == AC_WID_PIN && |
| 3501 | (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)) { |
| 3502 | int eapd = snd_hda_codec_read(codec, nid, 0, |
Takashi Iwai | 7eba5c9 | 2007-11-14 14:53:42 +0100 | [diff] [blame] | 3503 | AC_VERB_GET_EAPD_BTLENABLE, 0); |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 3504 | if (eapd & 0x02) |
| 3505 | continue; |
Takashi Iwai | 1194b5b | 2007-10-10 10:04:26 +0200 | [diff] [blame] | 3506 | } |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 3507 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_POWER_STATE, |
| 3508 | power_state); |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 3509 | } |
| 3510 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3511 | if (power_state == AC_PWRST_D0) { |
| 3512 | unsigned long end_time; |
| 3513 | int state; |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3514 | /* wait until the codec reachs to D0 */ |
| 3515 | end_time = jiffies + msecs_to_jiffies(500); |
| 3516 | do { |
| 3517 | state = snd_hda_codec_read(codec, fg, 0, |
| 3518 | AC_VERB_GET_POWER_STATE, 0); |
| 3519 | if (state == power_state) |
| 3520 | break; |
| 3521 | msleep(1); |
| 3522 | } while (time_after_eq(end_time, jiffies)); |
| 3523 | } |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 3524 | } |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 3525 | EXPORT_SYMBOL_HDA(snd_hda_codec_set_power_to_all); |
| 3526 | |
| 3527 | /* |
Wang Xingchao | 0c7f46a | 2012-06-06 22:02:48 +0800 | [diff] [blame] | 3528 | * supported power states check |
| 3529 | */ |
| 3530 | static bool snd_hda_codec_get_supported_ps(struct hda_codec *codec, hda_nid_t fg, |
| 3531 | unsigned int power_state) |
| 3532 | { |
| 3533 | int sup = snd_hda_param_read(codec, fg, AC_PAR_POWER_STATE); |
| 3534 | |
Mengdong Lin | e037cb4 | 2012-08-10 14:11:58 +0200 | [diff] [blame] | 3535 | if (sup == -1) |
Wang Xingchao | 0c7f46a | 2012-06-06 22:02:48 +0800 | [diff] [blame] | 3536 | return false; |
| 3537 | if (sup & power_state) |
| 3538 | return true; |
| 3539 | else |
| 3540 | return false; |
| 3541 | } |
| 3542 | |
| 3543 | /* |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 3544 | * set power state of the codec |
| 3545 | */ |
| 3546 | static void hda_set_power_state(struct hda_codec *codec, hda_nid_t fg, |
| 3547 | unsigned int power_state) |
| 3548 | { |
Wang Xingchao | 09617ce | 2012-06-08 10:26:08 +0800 | [diff] [blame] | 3549 | int count; |
| 3550 | unsigned int state; |
| 3551 | |
Mengdong Lin | 5d6147f | 2012-08-24 12:06:30 +0800 | [diff] [blame] | 3552 | #ifdef CONFIG_SND_HDA_POWER_SAVE |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 3553 | codec->d3_stop_clk_ok = 0; |
Mengdong Lin | 5d6147f | 2012-08-24 12:06:30 +0800 | [diff] [blame] | 3554 | #endif |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 3555 | |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 3556 | if (codec->patch_ops.set_power_state) { |
| 3557 | codec->patch_ops.set_power_state(codec, fg, power_state); |
| 3558 | return; |
| 3559 | } |
| 3560 | |
| 3561 | /* this delay seems necessary to avoid click noise at power-down */ |
Wang Xingchao | 0f4ccbb | 2012-06-07 16:51:33 +0800 | [diff] [blame] | 3562 | if (power_state == AC_PWRST_D3) { |
| 3563 | /* transition time less than 10ms for power down */ |
Takashi Iwai | 983f6b9 | 2012-08-28 09:18:01 -0700 | [diff] [blame] | 3564 | msleep(codec->epss ? 10 : 100); |
Wang Xingchao | 0f4ccbb | 2012-06-07 16:51:33 +0800 | [diff] [blame] | 3565 | } |
Wang Xingchao | 09617ce | 2012-06-08 10:26:08 +0800 | [diff] [blame] | 3566 | |
| 3567 | /* repeat power states setting at most 10 times*/ |
| 3568 | for (count = 0; count < 10; count++) { |
| 3569 | snd_hda_codec_read(codec, fg, 0, AC_VERB_SET_POWER_STATE, |
| 3570 | power_state); |
| 3571 | snd_hda_codec_set_power_to_all(codec, fg, power_state, true); |
| 3572 | state = snd_hda_codec_read(codec, fg, 0, |
| 3573 | AC_VERB_GET_POWER_STATE, 0); |
| 3574 | if (!(state & AC_PWRST_ERROR)) |
| 3575 | break; |
| 3576 | } |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 3577 | |
Mengdong Lin | 5d6147f | 2012-08-24 12:06:30 +0800 | [diff] [blame] | 3578 | #ifdef CONFIG_SND_HDA_POWER_SAVE |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 3579 | if ((power_state == AC_PWRST_D3) |
| 3580 | && codec->d3_stop_clk && (state & AC_PWRST_CLK_STOP_OK)) |
| 3581 | codec->d3_stop_clk_ok = 1; |
Mengdong Lin | 5d6147f | 2012-08-24 12:06:30 +0800 | [diff] [blame] | 3582 | #endif |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 3583 | } |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 3584 | |
Takashi Iwai | 11aeff0 | 2008-07-30 15:01:46 +0200 | [diff] [blame] | 3585 | #ifdef CONFIG_SND_HDA_HWDEP |
| 3586 | /* execute additional init verbs */ |
| 3587 | static void hda_exec_init_verbs(struct hda_codec *codec) |
| 3588 | { |
| 3589 | if (codec->init_verbs.list) |
| 3590 | snd_hda_sequence_write(codec, codec->init_verbs.list); |
| 3591 | } |
| 3592 | #else |
| 3593 | static inline void hda_exec_init_verbs(struct hda_codec *codec) {} |
| 3594 | #endif |
| 3595 | |
Takashi Iwai | 2a43952 | 2011-07-26 09:52:50 +0200 | [diff] [blame] | 3596 | #ifdef CONFIG_PM |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3597 | /* |
| 3598 | * call suspend and power-down; used both from PM and power-save |
| 3599 | */ |
| 3600 | static void hda_call_codec_suspend(struct hda_codec *codec) |
| 3601 | { |
| 3602 | if (codec->patch_ops.suspend) |
Takashi Iwai | 68cb2b5 | 2012-07-02 15:20:37 +0200 | [diff] [blame] | 3603 | codec->patch_ops.suspend(codec); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 3604 | hda_cleanup_all_streams(codec); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3605 | hda_set_power_state(codec, |
| 3606 | codec->afg ? codec->afg : codec->mfg, |
| 3607 | AC_PWRST_D3); |
| 3608 | #ifdef CONFIG_SND_HDA_POWER_SAVE |
| 3609 | cancel_delayed_work(&codec->power_work); |
Takashi Iwai | a2d96e7 | 2012-05-09 12:36:22 +0200 | [diff] [blame] | 3610 | spin_lock(&codec->power_lock); |
| 3611 | snd_hda_update_power_acct(codec); |
| 3612 | trace_hda_power_down(codec); |
Takashi Iwai | 95e99fd | 2007-08-13 15:29:04 +0200 | [diff] [blame] | 3613 | codec->power_on = 0; |
Takashi Iwai | a221e28 | 2007-08-16 16:35:33 +0200 | [diff] [blame] | 3614 | codec->power_transition = 0; |
Takashi Iwai | a2f6309 | 2009-11-11 09:34:25 +0100 | [diff] [blame] | 3615 | codec->power_jiffies = jiffies; |
Takashi Iwai | a2d96e7 | 2012-05-09 12:36:22 +0200 | [diff] [blame] | 3616 | spin_unlock(&codec->power_lock); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3617 | #endif |
| 3618 | } |
| 3619 | |
| 3620 | /* |
| 3621 | * kick up codec; used both from PM and power-save |
| 3622 | */ |
| 3623 | static void hda_call_codec_resume(struct hda_codec *codec) |
| 3624 | { |
Takashi Iwai | 7f30830 | 2012-05-08 16:52:23 +0200 | [diff] [blame] | 3625 | /* set as if powered on for avoiding re-entering the resume |
| 3626 | * in the resume / power-save sequence |
| 3627 | */ |
| 3628 | hda_keep_power_on(codec); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3629 | hda_set_power_state(codec, |
| 3630 | codec->afg ? codec->afg : codec->mfg, |
| 3631 | AC_PWRST_D0); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 3632 | restore_pincfgs(codec); /* restore all current pin configs */ |
Takashi Iwai | ac0547d | 2010-07-05 16:50:13 +0200 | [diff] [blame] | 3633 | restore_shutup_pins(codec); |
Takashi Iwai | 11aeff0 | 2008-07-30 15:01:46 +0200 | [diff] [blame] | 3634 | hda_exec_init_verbs(codec); |
Takashi Iwai | 1835a0f | 2011-10-27 22:12:46 +0200 | [diff] [blame] | 3635 | snd_hda_jack_set_dirty_all(codec); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3636 | if (codec->patch_ops.resume) |
| 3637 | codec->patch_ops.resume(codec); |
| 3638 | else { |
Takashi Iwai | 9d99f31 | 2007-08-14 15:15:52 +0200 | [diff] [blame] | 3639 | if (codec->patch_ops.init) |
| 3640 | codec->patch_ops.init(codec); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3641 | snd_hda_codec_resume_amp(codec); |
| 3642 | snd_hda_codec_resume_cache(codec); |
| 3643 | } |
Takashi Iwai | 8a53541 | 2012-08-22 16:40:24 +0200 | [diff] [blame] | 3644 | snd_hda_jack_report_sync(codec); |
Takashi Iwai | 7f30830 | 2012-05-08 16:52:23 +0200 | [diff] [blame] | 3645 | snd_hda_power_down(codec); /* flag down before returning */ |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3646 | } |
Takashi Iwai | 2a43952 | 2011-07-26 09:52:50 +0200 | [diff] [blame] | 3647 | #endif /* CONFIG_PM */ |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3648 | |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 3649 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3650 | /** |
| 3651 | * snd_hda_build_controls - build mixer controls |
| 3652 | * @bus: the BUS |
| 3653 | * |
| 3654 | * Creates mixer controls for each codec included in the bus. |
| 3655 | * |
| 3656 | * Returns 0 if successful, otherwise a negative error code. |
| 3657 | */ |
Takashi Iwai | 1289e9e | 2008-11-27 15:47:11 +0100 | [diff] [blame] | 3658 | int /*__devinit*/ snd_hda_build_controls(struct hda_bus *bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3659 | { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3660 | struct hda_codec *codec; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3661 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3662 | list_for_each_entry(codec, &bus->codec_list, list) { |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 3663 | int err = snd_hda_codec_build_controls(codec); |
Takashi Iwai | f93d461 | 2009-03-02 10:44:15 +0100 | [diff] [blame] | 3664 | if (err < 0) { |
Takashi Iwai | 28d1a85 | 2010-03-15 09:05:46 +0100 | [diff] [blame] | 3665 | printk(KERN_ERR "hda_codec: cannot build controls " |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 3666 | "for #%d (error %d)\n", codec->addr, err); |
Takashi Iwai | f93d461 | 2009-03-02 10:44:15 +0100 | [diff] [blame] | 3667 | err = snd_hda_codec_reset(codec); |
| 3668 | if (err < 0) { |
| 3669 | printk(KERN_ERR |
| 3670 | "hda_codec: cannot revert codec\n"); |
| 3671 | return err; |
| 3672 | } |
| 3673 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3674 | } |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 3675 | return 0; |
| 3676 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 3677 | EXPORT_SYMBOL_HDA(snd_hda_build_controls); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3678 | |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 3679 | int snd_hda_codec_build_controls(struct hda_codec *codec) |
| 3680 | { |
| 3681 | int err = 0; |
Takashi Iwai | 11aeff0 | 2008-07-30 15:01:46 +0200 | [diff] [blame] | 3682 | hda_exec_init_verbs(codec); |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 3683 | /* continue to initialize... */ |
| 3684 | if (codec->patch_ops.init) |
| 3685 | err = codec->patch_ops.init(codec); |
| 3686 | if (!err && codec->patch_ops.build_controls) |
| 3687 | err = codec->patch_ops.build_controls(codec); |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 3688 | if (err < 0) |
| 3689 | return err; |
Takashi Iwai | 8a53541 | 2012-08-22 16:40:24 +0200 | [diff] [blame] | 3690 | snd_hda_jack_report_sync(codec); /* call at the last init point */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3691 | return 0; |
| 3692 | } |
| 3693 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3694 | /* |
| 3695 | * stream formats |
| 3696 | */ |
Takashi Iwai | befdf31 | 2005-08-22 13:57:55 +0200 | [diff] [blame] | 3697 | struct hda_rate_tbl { |
| 3698 | unsigned int hz; |
| 3699 | unsigned int alsa_bits; |
| 3700 | unsigned int hda_fmt; |
| 3701 | }; |
| 3702 | |
Takashi Iwai | 92f10b3 | 2010-08-03 14:21:00 +0200 | [diff] [blame] | 3703 | /* rate = base * mult / div */ |
| 3704 | #define HDA_RATE(base, mult, div) \ |
| 3705 | (AC_FMT_BASE_##base##K | (((mult) - 1) << AC_FMT_MULT_SHIFT) | \ |
| 3706 | (((div) - 1) << AC_FMT_DIV_SHIFT)) |
| 3707 | |
Takashi Iwai | befdf31 | 2005-08-22 13:57:55 +0200 | [diff] [blame] | 3708 | static struct hda_rate_tbl rate_bits[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3709 | /* rate in Hz, ALSA rate bitmask, HDA format value */ |
Nicolas Graziano | 9d8f53f | 2005-08-22 13:47:16 +0200 | [diff] [blame] | 3710 | |
| 3711 | /* autodetected value used in snd_hda_query_supported_pcm */ |
Takashi Iwai | 92f10b3 | 2010-08-03 14:21:00 +0200 | [diff] [blame] | 3712 | { 8000, SNDRV_PCM_RATE_8000, HDA_RATE(48, 1, 6) }, |
| 3713 | { 11025, SNDRV_PCM_RATE_11025, HDA_RATE(44, 1, 4) }, |
| 3714 | { 16000, SNDRV_PCM_RATE_16000, HDA_RATE(48, 1, 3) }, |
| 3715 | { 22050, SNDRV_PCM_RATE_22050, HDA_RATE(44, 1, 2) }, |
| 3716 | { 32000, SNDRV_PCM_RATE_32000, HDA_RATE(48, 2, 3) }, |
| 3717 | { 44100, SNDRV_PCM_RATE_44100, HDA_RATE(44, 1, 1) }, |
| 3718 | { 48000, SNDRV_PCM_RATE_48000, HDA_RATE(48, 1, 1) }, |
| 3719 | { 88200, SNDRV_PCM_RATE_88200, HDA_RATE(44, 2, 1) }, |
| 3720 | { 96000, SNDRV_PCM_RATE_96000, HDA_RATE(48, 2, 1) }, |
| 3721 | { 176400, SNDRV_PCM_RATE_176400, HDA_RATE(44, 4, 1) }, |
| 3722 | { 192000, SNDRV_PCM_RATE_192000, HDA_RATE(48, 4, 1) }, |
Takashi Iwai | a961f9f | 2007-04-12 13:08:09 +0200 | [diff] [blame] | 3723 | #define AC_PAR_PCM_RATE_BITS 11 |
| 3724 | /* up to bits 10, 384kHZ isn't supported properly */ |
| 3725 | |
| 3726 | /* not autodetected value */ |
Takashi Iwai | 92f10b3 | 2010-08-03 14:21:00 +0200 | [diff] [blame] | 3727 | { 9600, SNDRV_PCM_RATE_KNOT, HDA_RATE(48, 1, 5) }, |
Nicolas Graziano | 9d8f53f | 2005-08-22 13:47:16 +0200 | [diff] [blame] | 3728 | |
Takashi Iwai | befdf31 | 2005-08-22 13:57:55 +0200 | [diff] [blame] | 3729 | { 0 } /* terminator */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3730 | }; |
| 3731 | |
| 3732 | /** |
| 3733 | * snd_hda_calc_stream_format - calculate format bitset |
| 3734 | * @rate: the sample rate |
| 3735 | * @channels: the number of channels |
| 3736 | * @format: the PCM format (SNDRV_PCM_FORMAT_XXX) |
| 3737 | * @maxbps: the max. bps |
| 3738 | * |
| 3739 | * Calculate the format bitset from the given rate, channels and th PCM format. |
| 3740 | * |
| 3741 | * Return zero if invalid. |
| 3742 | */ |
| 3743 | unsigned int snd_hda_calc_stream_format(unsigned int rate, |
| 3744 | unsigned int channels, |
| 3745 | unsigned int format, |
Anssi Hannula | 32c168c | 2010-08-03 13:28:57 +0300 | [diff] [blame] | 3746 | unsigned int maxbps, |
| 3747 | unsigned short spdif_ctls) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3748 | { |
| 3749 | int i; |
| 3750 | unsigned int val = 0; |
| 3751 | |
Takashi Iwai | befdf31 | 2005-08-22 13:57:55 +0200 | [diff] [blame] | 3752 | for (i = 0; rate_bits[i].hz; i++) |
| 3753 | if (rate_bits[i].hz == rate) { |
| 3754 | val = rate_bits[i].hda_fmt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3755 | break; |
| 3756 | } |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3757 | if (!rate_bits[i].hz) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3758 | snd_printdd("invalid rate %d\n", rate); |
| 3759 | return 0; |
| 3760 | } |
| 3761 | |
| 3762 | if (channels == 0 || channels > 8) { |
| 3763 | snd_printdd("invalid channels %d\n", channels); |
| 3764 | return 0; |
| 3765 | } |
| 3766 | val |= channels - 1; |
| 3767 | |
| 3768 | switch (snd_pcm_format_width(format)) { |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 3769 | case 8: |
Takashi Iwai | 92f10b3 | 2010-08-03 14:21:00 +0200 | [diff] [blame] | 3770 | val |= AC_FMT_BITS_8; |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 3771 | break; |
| 3772 | case 16: |
Takashi Iwai | 92f10b3 | 2010-08-03 14:21:00 +0200 | [diff] [blame] | 3773 | val |= AC_FMT_BITS_16; |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 3774 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3775 | case 20: |
| 3776 | case 24: |
| 3777 | case 32: |
Takashi Iwai | b0bb3aa | 2009-07-03 23:25:37 +0200 | [diff] [blame] | 3778 | if (maxbps >= 32 || format == SNDRV_PCM_FORMAT_FLOAT_LE) |
Takashi Iwai | 92f10b3 | 2010-08-03 14:21:00 +0200 | [diff] [blame] | 3779 | val |= AC_FMT_BITS_32; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3780 | else if (maxbps >= 24) |
Takashi Iwai | 92f10b3 | 2010-08-03 14:21:00 +0200 | [diff] [blame] | 3781 | val |= AC_FMT_BITS_24; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3782 | else |
Takashi Iwai | 92f10b3 | 2010-08-03 14:21:00 +0200 | [diff] [blame] | 3783 | val |= AC_FMT_BITS_20; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3784 | break; |
| 3785 | default: |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3786 | snd_printdd("invalid format width %d\n", |
| 3787 | snd_pcm_format_width(format)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3788 | return 0; |
| 3789 | } |
| 3790 | |
Anssi Hannula | 32c168c | 2010-08-03 13:28:57 +0300 | [diff] [blame] | 3791 | if (spdif_ctls & AC_DIG1_NONAUDIO) |
Takashi Iwai | 92f10b3 | 2010-08-03 14:21:00 +0200 | [diff] [blame] | 3792 | val |= AC_FMT_TYPE_NON_PCM; |
Anssi Hannula | 32c168c | 2010-08-03 13:28:57 +0300 | [diff] [blame] | 3793 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3794 | return val; |
| 3795 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 3796 | EXPORT_SYMBOL_HDA(snd_hda_calc_stream_format); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3797 | |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 3798 | static unsigned int get_pcm_param(struct hda_codec *codec, hda_nid_t nid, |
| 3799 | int dir) |
Takashi Iwai | 92c7c8a | 2009-03-24 07:32:14 +0100 | [diff] [blame] | 3800 | { |
| 3801 | unsigned int val = 0; |
| 3802 | if (nid != codec->afg && |
| 3803 | (get_wcaps(codec, nid) & AC_WCAP_FORMAT_OVRD)) |
| 3804 | val = snd_hda_param_read(codec, nid, AC_PAR_PCM); |
| 3805 | if (!val || val == -1) |
| 3806 | val = snd_hda_param_read(codec, codec->afg, AC_PAR_PCM); |
| 3807 | if (!val || val == -1) |
| 3808 | return 0; |
| 3809 | return val; |
| 3810 | } |
| 3811 | |
| 3812 | static unsigned int query_pcm_param(struct hda_codec *codec, hda_nid_t nid) |
| 3813 | { |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 3814 | return query_caps_hash(codec, nid, 0, HDA_HASH_PARPCM_KEY(nid), |
Takashi Iwai | 92c7c8a | 2009-03-24 07:32:14 +0100 | [diff] [blame] | 3815 | get_pcm_param); |
| 3816 | } |
| 3817 | |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 3818 | static unsigned int get_stream_param(struct hda_codec *codec, hda_nid_t nid, |
| 3819 | int dir) |
Takashi Iwai | 92c7c8a | 2009-03-24 07:32:14 +0100 | [diff] [blame] | 3820 | { |
| 3821 | unsigned int streams = snd_hda_param_read(codec, nid, AC_PAR_STREAM); |
| 3822 | if (!streams || streams == -1) |
| 3823 | streams = snd_hda_param_read(codec, codec->afg, AC_PAR_STREAM); |
| 3824 | if (!streams || streams == -1) |
| 3825 | return 0; |
| 3826 | return streams; |
| 3827 | } |
| 3828 | |
| 3829 | static unsigned int query_stream_param(struct hda_codec *codec, hda_nid_t nid) |
| 3830 | { |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 3831 | return query_caps_hash(codec, nid, 0, HDA_HASH_PARSTR_KEY(nid), |
Takashi Iwai | 92c7c8a | 2009-03-24 07:32:14 +0100 | [diff] [blame] | 3832 | get_stream_param); |
| 3833 | } |
| 3834 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3835 | /** |
| 3836 | * snd_hda_query_supported_pcm - query the supported PCM rates and formats |
| 3837 | * @codec: the HDA codec |
| 3838 | * @nid: NID to query |
| 3839 | * @ratesp: the pointer to store the detected rate bitflags |
| 3840 | * @formatsp: the pointer to store the detected formats |
| 3841 | * @bpsp: the pointer to store the detected format widths |
| 3842 | * |
| 3843 | * Queries the supported PCM rates and formats. The NULL @ratesp, @formatsp |
| 3844 | * or @bsps argument is ignored. |
| 3845 | * |
| 3846 | * Returns 0 if successful, otherwise a negative error code. |
| 3847 | */ |
Stephen Warren | 384a48d | 2011-06-01 11:14:21 -0600 | [diff] [blame] | 3848 | 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] | 3849 | u32 *ratesp, u64 *formatsp, unsigned int *bpsp) |
| 3850 | { |
Jaroslav Kysela | ee50471 | 2009-03-17 14:30:31 +0100 | [diff] [blame] | 3851 | unsigned int i, val, wcaps; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3852 | |
Jaroslav Kysela | ee50471 | 2009-03-17 14:30:31 +0100 | [diff] [blame] | 3853 | wcaps = get_wcaps(codec, nid); |
Takashi Iwai | 92c7c8a | 2009-03-24 07:32:14 +0100 | [diff] [blame] | 3854 | val = query_pcm_param(codec, nid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3855 | |
| 3856 | if (ratesp) { |
| 3857 | u32 rates = 0; |
Takashi Iwai | a961f9f | 2007-04-12 13:08:09 +0200 | [diff] [blame] | 3858 | for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3859 | if (val & (1 << i)) |
Takashi Iwai | befdf31 | 2005-08-22 13:57:55 +0200 | [diff] [blame] | 3860 | rates |= rate_bits[i].alsa_bits; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3861 | } |
Jaroslav Kysela | ee50471 | 2009-03-17 14:30:31 +0100 | [diff] [blame] | 3862 | if (rates == 0) { |
| 3863 | snd_printk(KERN_ERR "hda_codec: rates == 0 " |
| 3864 | "(nid=0x%x, val=0x%x, ovrd=%i)\n", |
| 3865 | nid, val, |
| 3866 | (wcaps & AC_WCAP_FORMAT_OVRD) ? 1 : 0); |
| 3867 | return -EIO; |
| 3868 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3869 | *ratesp = rates; |
| 3870 | } |
| 3871 | |
| 3872 | if (formatsp || bpsp) { |
| 3873 | u64 formats = 0; |
Jaroslav Kysela | ee50471 | 2009-03-17 14:30:31 +0100 | [diff] [blame] | 3874 | unsigned int streams, bps; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3875 | |
Takashi Iwai | 92c7c8a | 2009-03-24 07:32:14 +0100 | [diff] [blame] | 3876 | streams = query_stream_param(codec, nid); |
| 3877 | if (!streams) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3878 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3879 | |
| 3880 | bps = 0; |
| 3881 | if (streams & AC_SUPFMT_PCM) { |
| 3882 | if (val & AC_SUPPCM_BITS_8) { |
| 3883 | formats |= SNDRV_PCM_FMTBIT_U8; |
| 3884 | bps = 8; |
| 3885 | } |
| 3886 | if (val & AC_SUPPCM_BITS_16) { |
| 3887 | formats |= SNDRV_PCM_FMTBIT_S16_LE; |
| 3888 | bps = 16; |
| 3889 | } |
| 3890 | if (wcaps & AC_WCAP_DIGITAL) { |
| 3891 | if (val & AC_SUPPCM_BITS_32) |
| 3892 | formats |= SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE; |
| 3893 | if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24)) |
| 3894 | formats |= SNDRV_PCM_FMTBIT_S32_LE; |
| 3895 | if (val & AC_SUPPCM_BITS_24) |
| 3896 | bps = 24; |
| 3897 | else if (val & AC_SUPPCM_BITS_20) |
| 3898 | bps = 20; |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3899 | } else if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24| |
| 3900 | AC_SUPPCM_BITS_32)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3901 | formats |= SNDRV_PCM_FMTBIT_S32_LE; |
| 3902 | if (val & AC_SUPPCM_BITS_32) |
| 3903 | bps = 32; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3904 | else if (val & AC_SUPPCM_BITS_24) |
| 3905 | bps = 24; |
Nicolas Graziano | 33ef7651 | 2006-09-19 14:23:14 +0200 | [diff] [blame] | 3906 | else if (val & AC_SUPPCM_BITS_20) |
| 3907 | bps = 20; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3908 | } |
| 3909 | } |
Takashi Iwai | 8c7dd89 | 2012-05-12 09:38:05 +0200 | [diff] [blame] | 3910 | #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] | 3911 | if (streams & AC_SUPFMT_FLOAT32) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3912 | formats |= SNDRV_PCM_FMTBIT_FLOAT_LE; |
Takashi Iwai | b0bb3aa | 2009-07-03 23:25:37 +0200 | [diff] [blame] | 3913 | if (!bps) |
| 3914 | bps = 32; |
Takashi Iwai | b5025c5 | 2009-07-01 18:05:27 +0200 | [diff] [blame] | 3915 | } |
Takashi Iwai | 8c7dd89 | 2012-05-12 09:38:05 +0200 | [diff] [blame] | 3916 | #endif |
Takashi Iwai | b5025c5 | 2009-07-01 18:05:27 +0200 | [diff] [blame] | 3917 | if (streams == AC_SUPFMT_AC3) { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3918 | /* should be exclusive */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3919 | /* temporary hack: we have still no proper support |
| 3920 | * for the direct AC3 stream... |
| 3921 | */ |
| 3922 | formats |= SNDRV_PCM_FMTBIT_U8; |
| 3923 | bps = 8; |
| 3924 | } |
Jaroslav Kysela | ee50471 | 2009-03-17 14:30:31 +0100 | [diff] [blame] | 3925 | if (formats == 0) { |
| 3926 | snd_printk(KERN_ERR "hda_codec: formats == 0 " |
| 3927 | "(nid=0x%x, val=0x%x, ovrd=%i, " |
| 3928 | "streams=0x%x)\n", |
| 3929 | nid, val, |
| 3930 | (wcaps & AC_WCAP_FORMAT_OVRD) ? 1 : 0, |
| 3931 | streams); |
| 3932 | return -EIO; |
| 3933 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3934 | if (formatsp) |
| 3935 | *formatsp = formats; |
| 3936 | if (bpsp) |
| 3937 | *bpsp = bps; |
| 3938 | } |
| 3939 | |
| 3940 | return 0; |
| 3941 | } |
Stephen Warren | 384a48d | 2011-06-01 11:14:21 -0600 | [diff] [blame] | 3942 | EXPORT_SYMBOL_HDA(snd_hda_query_supported_pcm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3943 | |
| 3944 | /** |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 3945 | * snd_hda_is_supported_format - Check the validity of the format |
| 3946 | * @codec: HD-audio codec |
| 3947 | * @nid: NID to check |
| 3948 | * @format: the HD-audio format value to check |
| 3949 | * |
| 3950 | * Check whether the given node supports the format value. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3951 | * |
| 3952 | * Returns 1 if supported, 0 if not. |
| 3953 | */ |
| 3954 | int snd_hda_is_supported_format(struct hda_codec *codec, hda_nid_t nid, |
| 3955 | unsigned int format) |
| 3956 | { |
| 3957 | int i; |
| 3958 | unsigned int val = 0, rate, stream; |
| 3959 | |
Takashi Iwai | 92c7c8a | 2009-03-24 07:32:14 +0100 | [diff] [blame] | 3960 | val = query_pcm_param(codec, nid); |
| 3961 | if (!val) |
| 3962 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3963 | |
| 3964 | rate = format & 0xff00; |
Takashi Iwai | a961f9f | 2007-04-12 13:08:09 +0200 | [diff] [blame] | 3965 | for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++) |
Takashi Iwai | befdf31 | 2005-08-22 13:57:55 +0200 | [diff] [blame] | 3966 | if (rate_bits[i].hda_fmt == rate) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3967 | if (val & (1 << i)) |
| 3968 | break; |
| 3969 | return 0; |
| 3970 | } |
Takashi Iwai | a961f9f | 2007-04-12 13:08:09 +0200 | [diff] [blame] | 3971 | if (i >= AC_PAR_PCM_RATE_BITS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3972 | return 0; |
| 3973 | |
Takashi Iwai | 92c7c8a | 2009-03-24 07:32:14 +0100 | [diff] [blame] | 3974 | stream = query_stream_param(codec, nid); |
| 3975 | if (!stream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3976 | return 0; |
| 3977 | |
| 3978 | if (stream & AC_SUPFMT_PCM) { |
| 3979 | switch (format & 0xf0) { |
| 3980 | case 0x00: |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3981 | if (!(val & AC_SUPPCM_BITS_8)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3982 | return 0; |
| 3983 | break; |
| 3984 | case 0x10: |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3985 | if (!(val & AC_SUPPCM_BITS_16)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3986 | return 0; |
| 3987 | break; |
| 3988 | case 0x20: |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3989 | if (!(val & AC_SUPPCM_BITS_20)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3990 | return 0; |
| 3991 | break; |
| 3992 | case 0x30: |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3993 | if (!(val & AC_SUPPCM_BITS_24)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3994 | return 0; |
| 3995 | break; |
| 3996 | case 0x40: |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3997 | if (!(val & AC_SUPPCM_BITS_32)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3998 | return 0; |
| 3999 | break; |
| 4000 | default: |
| 4001 | return 0; |
| 4002 | } |
| 4003 | } else { |
| 4004 | /* FIXME: check for float32 and AC3? */ |
| 4005 | } |
| 4006 | |
| 4007 | return 1; |
| 4008 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 4009 | EXPORT_SYMBOL_HDA(snd_hda_is_supported_format); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4010 | |
| 4011 | /* |
| 4012 | * PCM stuff |
| 4013 | */ |
| 4014 | static int hda_pcm_default_open_close(struct hda_pcm_stream *hinfo, |
| 4015 | struct hda_codec *codec, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 4016 | struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4017 | { |
| 4018 | return 0; |
| 4019 | } |
| 4020 | |
| 4021 | static int hda_pcm_default_prepare(struct hda_pcm_stream *hinfo, |
| 4022 | struct hda_codec *codec, |
| 4023 | unsigned int stream_tag, |
| 4024 | unsigned int format, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 4025 | struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4026 | { |
| 4027 | snd_hda_codec_setup_stream(codec, hinfo->nid, stream_tag, 0, format); |
| 4028 | return 0; |
| 4029 | } |
| 4030 | |
| 4031 | static int hda_pcm_default_cleanup(struct hda_pcm_stream *hinfo, |
| 4032 | struct hda_codec *codec, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 4033 | struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4034 | { |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 4035 | snd_hda_codec_cleanup_stream(codec, hinfo->nid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4036 | return 0; |
| 4037 | } |
| 4038 | |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 4039 | static int set_pcm_default_values(struct hda_codec *codec, |
| 4040 | struct hda_pcm_stream *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4041 | { |
Jaroslav Kysela | ee50471 | 2009-03-17 14:30:31 +0100 | [diff] [blame] | 4042 | int err; |
| 4043 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4044 | /* query support PCM information from the given NID */ |
| 4045 | if (info->nid && (!info->rates || !info->formats)) { |
Jaroslav Kysela | ee50471 | 2009-03-17 14:30:31 +0100 | [diff] [blame] | 4046 | err = snd_hda_query_supported_pcm(codec, info->nid, |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4047 | info->rates ? NULL : &info->rates, |
| 4048 | info->formats ? NULL : &info->formats, |
| 4049 | info->maxbps ? NULL : &info->maxbps); |
Jaroslav Kysela | ee50471 | 2009-03-17 14:30:31 +0100 | [diff] [blame] | 4050 | if (err < 0) |
| 4051 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4052 | } |
| 4053 | if (info->ops.open == NULL) |
| 4054 | info->ops.open = hda_pcm_default_open_close; |
| 4055 | if (info->ops.close == NULL) |
| 4056 | info->ops.close = hda_pcm_default_open_close; |
| 4057 | if (info->ops.prepare == NULL) { |
Takashi Iwai | da3cec3 | 2008-08-08 17:12:14 +0200 | [diff] [blame] | 4058 | if (snd_BUG_ON(!info->nid)) |
| 4059 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4060 | info->ops.prepare = hda_pcm_default_prepare; |
| 4061 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4062 | if (info->ops.cleanup == NULL) { |
Takashi Iwai | da3cec3 | 2008-08-08 17:12:14 +0200 | [diff] [blame] | 4063 | if (snd_BUG_ON(!info->nid)) |
| 4064 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4065 | info->ops.cleanup = hda_pcm_default_cleanup; |
| 4066 | } |
| 4067 | return 0; |
| 4068 | } |
| 4069 | |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 4070 | /* |
| 4071 | * codec prepare/cleanup entries |
| 4072 | */ |
| 4073 | int snd_hda_codec_prepare(struct hda_codec *codec, |
| 4074 | struct hda_pcm_stream *hinfo, |
| 4075 | unsigned int stream, |
| 4076 | unsigned int format, |
| 4077 | struct snd_pcm_substream *substream) |
| 4078 | { |
| 4079 | int ret; |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 4080 | mutex_lock(&codec->bus->prepare_mutex); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 4081 | ret = hinfo->ops.prepare(hinfo, codec, stream, format, substream); |
| 4082 | if (ret >= 0) |
| 4083 | purify_inactive_streams(codec); |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 4084 | mutex_unlock(&codec->bus->prepare_mutex); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 4085 | return ret; |
| 4086 | } |
| 4087 | EXPORT_SYMBOL_HDA(snd_hda_codec_prepare); |
| 4088 | |
| 4089 | void snd_hda_codec_cleanup(struct hda_codec *codec, |
| 4090 | struct hda_pcm_stream *hinfo, |
| 4091 | struct snd_pcm_substream *substream) |
| 4092 | { |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 4093 | mutex_lock(&codec->bus->prepare_mutex); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 4094 | hinfo->ops.cleanup(hinfo, codec, substream); |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 4095 | mutex_unlock(&codec->bus->prepare_mutex); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 4096 | } |
| 4097 | EXPORT_SYMBOL_HDA(snd_hda_codec_cleanup); |
| 4098 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4099 | /* global */ |
Jaroslav Kysela | e330323 | 2009-11-10 14:53:02 +0100 | [diff] [blame] | 4100 | const char *snd_hda_pcm_type_name[HDA_PCM_NTYPES] = { |
| 4101 | "Audio", "SPDIF", "HDMI", "Modem" |
| 4102 | }; |
| 4103 | |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 4104 | /* |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 4105 | * get the empty PCM device number to assign |
Takashi Iwai | c893622 | 2010-01-28 17:08:53 +0100 | [diff] [blame] | 4106 | * |
| 4107 | * note the max device number is limited by HDA_MAX_PCMS, currently 10 |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 4108 | */ |
| 4109 | static int get_empty_pcm_device(struct hda_bus *bus, int type) |
| 4110 | { |
Wu Fengguang | f5d6def5 | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 4111 | /* audio device indices; not linear to keep compatibility */ |
| 4112 | static int audio_idx[HDA_PCM_NTYPES][5] = { |
| 4113 | [HDA_PCM_TYPE_AUDIO] = { 0, 2, 4, 5, -1 }, |
| 4114 | [HDA_PCM_TYPE_SPDIF] = { 1, -1 }, |
Wu Fengguang | 92608ba | 2009-10-30 11:40:03 +0100 | [diff] [blame] | 4115 | [HDA_PCM_TYPE_HDMI] = { 3, 7, 8, 9, -1 }, |
Wu Fengguang | f5d6def5 | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 4116 | [HDA_PCM_TYPE_MODEM] = { 6, -1 }, |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 4117 | }; |
Wu Fengguang | f5d6def5 | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 4118 | int i; |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 4119 | |
Wu Fengguang | f5d6def5 | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 4120 | if (type >= HDA_PCM_NTYPES) { |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 4121 | snd_printk(KERN_WARNING "Invalid PCM type %d\n", type); |
| 4122 | return -EINVAL; |
| 4123 | } |
Wu Fengguang | f5d6def5 | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 4124 | |
| 4125 | for (i = 0; audio_idx[type][i] >= 0 ; i++) |
| 4126 | if (!test_and_set_bit(audio_idx[type][i], bus->pcm_dev_bits)) |
| 4127 | return audio_idx[type][i]; |
| 4128 | |
Takashi Iwai | 01b65bf | 2011-11-24 14:31:46 +0100 | [diff] [blame] | 4129 | /* non-fixed slots starting from 10 */ |
| 4130 | for (i = 10; i < 32; i++) { |
| 4131 | if (!test_and_set_bit(i, bus->pcm_dev_bits)) |
| 4132 | return i; |
| 4133 | } |
| 4134 | |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 4135 | snd_printk(KERN_WARNING "Too many %s devices\n", |
| 4136 | snd_hda_pcm_type_name[type]); |
Wu Fengguang | f5d6def5 | 2009-10-30 11:38:26 +0100 | [diff] [blame] | 4137 | return -EAGAIN; |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 4138 | } |
| 4139 | |
| 4140 | /* |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 4141 | * attach a new PCM stream |
| 4142 | */ |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 4143 | static int snd_hda_attach_pcm(struct hda_codec *codec, struct hda_pcm *pcm) |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 4144 | { |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 4145 | struct hda_bus *bus = codec->bus; |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 4146 | struct hda_pcm_stream *info; |
| 4147 | int stream, err; |
| 4148 | |
Takashi Iwai | b91f080 | 2008-11-04 08:43:08 +0100 | [diff] [blame] | 4149 | if (snd_BUG_ON(!pcm->name)) |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 4150 | return -EINVAL; |
| 4151 | for (stream = 0; stream < 2; stream++) { |
| 4152 | info = &pcm->stream[stream]; |
| 4153 | if (info->substreams) { |
| 4154 | err = set_pcm_default_values(codec, info); |
| 4155 | if (err < 0) |
| 4156 | return err; |
| 4157 | } |
| 4158 | } |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 4159 | return bus->ops.attach_pcm(bus, codec, pcm); |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 4160 | } |
| 4161 | |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 4162 | /* assign all PCMs of the given codec */ |
| 4163 | int snd_hda_codec_build_pcms(struct hda_codec *codec) |
| 4164 | { |
| 4165 | unsigned int pcm; |
| 4166 | int err; |
| 4167 | |
| 4168 | if (!codec->num_pcms) { |
| 4169 | if (!codec->patch_ops.build_pcms) |
| 4170 | return 0; |
| 4171 | err = codec->patch_ops.build_pcms(codec); |
Takashi Iwai | 6e655bf | 2009-03-02 10:46:03 +0100 | [diff] [blame] | 4172 | if (err < 0) { |
| 4173 | printk(KERN_ERR "hda_codec: cannot build PCMs" |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 4174 | "for #%d (error %d)\n", codec->addr, err); |
Takashi Iwai | 6e655bf | 2009-03-02 10:46:03 +0100 | [diff] [blame] | 4175 | err = snd_hda_codec_reset(codec); |
| 4176 | if (err < 0) { |
| 4177 | printk(KERN_ERR |
| 4178 | "hda_codec: cannot revert codec\n"); |
| 4179 | return err; |
| 4180 | } |
| 4181 | } |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 4182 | } |
| 4183 | for (pcm = 0; pcm < codec->num_pcms; pcm++) { |
| 4184 | struct hda_pcm *cpcm = &codec->pcm_info[pcm]; |
| 4185 | int dev; |
| 4186 | |
| 4187 | if (!cpcm->stream[0].substreams && !cpcm->stream[1].substreams) |
Takashi Iwai | 41b5b01 | 2009-01-20 18:21:23 +0100 | [diff] [blame] | 4188 | continue; /* no substreams assigned */ |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 4189 | |
| 4190 | if (!cpcm->pcm) { |
| 4191 | dev = get_empty_pcm_device(codec->bus, cpcm->pcm_type); |
| 4192 | if (dev < 0) |
Takashi Iwai | 6e655bf | 2009-03-02 10:46:03 +0100 | [diff] [blame] | 4193 | continue; /* no fatal error */ |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 4194 | cpcm->device = dev; |
| 4195 | err = snd_hda_attach_pcm(codec, cpcm); |
Takashi Iwai | 6e655bf | 2009-03-02 10:46:03 +0100 | [diff] [blame] | 4196 | if (err < 0) { |
| 4197 | printk(KERN_ERR "hda_codec: cannot attach " |
| 4198 | "PCM stream %d for codec #%d\n", |
| 4199 | dev, codec->addr); |
| 4200 | continue; /* no fatal error */ |
| 4201 | } |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 4202 | } |
| 4203 | } |
| 4204 | return 0; |
| 4205 | } |
| 4206 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4207 | /** |
| 4208 | * snd_hda_build_pcms - build PCM information |
| 4209 | * @bus: the BUS |
| 4210 | * |
| 4211 | * Create PCM information for each codec included in the bus. |
| 4212 | * |
| 4213 | * The build_pcms codec patch is requested to set up codec->num_pcms and |
| 4214 | * codec->pcm_info properly. The array is referred by the top-level driver |
| 4215 | * to create its PCM instances. |
| 4216 | * The allocated codec->pcm_info should be released in codec->patch_ops.free |
| 4217 | * callback. |
| 4218 | * |
| 4219 | * At least, substreams, channels_min and channels_max must be filled for |
| 4220 | * each stream. substreams = 0 indicates that the stream doesn't exist. |
| 4221 | * When rates and/or formats are zero, the supported values are queried |
| 4222 | * from the given nid. The nid is used also by the default ops.prepare |
| 4223 | * and ops.cleanup callbacks. |
| 4224 | * |
| 4225 | * The driver needs to call ops.open in its open callback. Similarly, |
| 4226 | * ops.close is supposed to be called in the close callback. |
| 4227 | * ops.prepare should be called in the prepare or hw_params callback |
| 4228 | * with the proper parameters for set up. |
| 4229 | * ops.cleanup should be called in hw_free for clean up of streams. |
| 4230 | * |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 4231 | * This function returns 0 if successful, or a negative error code. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4232 | */ |
Takashi Iwai | 5cb543d | 2012-08-09 13:49:23 +0200 | [diff] [blame] | 4233 | int snd_hda_build_pcms(struct hda_bus *bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4234 | { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4235 | struct hda_codec *codec; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4236 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4237 | list_for_each_entry(codec, &bus->codec_list, list) { |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 4238 | int err = snd_hda_codec_build_pcms(codec); |
| 4239 | if (err < 0) |
| 4240 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4241 | } |
| 4242 | return 0; |
| 4243 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 4244 | EXPORT_SYMBOL_HDA(snd_hda_build_pcms); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4245 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4246 | /** |
| 4247 | * snd_hda_check_board_config - compare the current codec with the config table |
| 4248 | * @codec: the HDA codec |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 4249 | * @num_configs: number of config enums |
| 4250 | * @models: array of model name strings |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4251 | * @tbl: configuration table, terminated by null entries |
| 4252 | * |
| 4253 | * Compares the modelname or PCI subsystem id of the current codec with the |
| 4254 | * given configuration table. If a matching entry is found, returns its |
| 4255 | * config value (supposed to be 0 or positive). |
| 4256 | * |
| 4257 | * If no entries are matching, the function returns a negative value. |
| 4258 | */ |
Takashi Iwai | 12f288b | 2007-08-02 15:51:59 +0200 | [diff] [blame] | 4259 | int snd_hda_check_board_config(struct hda_codec *codec, |
Takashi Iwai | ea73496 | 2011-01-17 11:29:34 +0100 | [diff] [blame] | 4260 | int num_configs, const char * const *models, |
Takashi Iwai | 12f288b | 2007-08-02 15:51:59 +0200 | [diff] [blame] | 4261 | const struct snd_pci_quirk *tbl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4262 | { |
Takashi Iwai | f44ac83 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 4263 | if (codec->modelname && models) { |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 4264 | int i; |
| 4265 | for (i = 0; i < num_configs; i++) { |
| 4266 | if (models[i] && |
Takashi Iwai | f44ac83 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 4267 | !strcmp(codec->modelname, models[i])) { |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 4268 | snd_printd(KERN_INFO "hda_codec: model '%s' is " |
| 4269 | "selected\n", models[i]); |
| 4270 | return i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4271 | } |
| 4272 | } |
| 4273 | } |
| 4274 | |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 4275 | if (!codec->bus->pci || !tbl) |
| 4276 | return -1; |
| 4277 | |
| 4278 | tbl = snd_pci_quirk_lookup(codec->bus->pci, tbl); |
| 4279 | if (!tbl) |
| 4280 | return -1; |
| 4281 | if (tbl->value >= 0 && tbl->value < num_configs) { |
Takashi Iwai | 62cf872 | 2008-05-20 12:15:15 +0200 | [diff] [blame] | 4282 | #ifdef CONFIG_SND_DEBUG_VERBOSE |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 4283 | char tmp[10]; |
| 4284 | const char *model = NULL; |
| 4285 | if (models) |
| 4286 | model = models[tbl->value]; |
| 4287 | if (!model) { |
| 4288 | sprintf(tmp, "#%d", tbl->value); |
| 4289 | model = tmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4290 | } |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 4291 | snd_printdd(KERN_INFO "hda_codec: model '%s' is selected " |
| 4292 | "for config %x:%x (%s)\n", |
| 4293 | model, tbl->subvendor, tbl->subdevice, |
| 4294 | (tbl->name ? tbl->name : "Unknown device")); |
| 4295 | #endif |
| 4296 | return tbl->value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4297 | } |
| 4298 | return -1; |
| 4299 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 4300 | EXPORT_SYMBOL_HDA(snd_hda_check_board_config); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4301 | |
| 4302 | /** |
Mauro Carvalho Chehab | 2eda344 | 2008-08-11 10:18:39 +0200 | [diff] [blame] | 4303 | * snd_hda_check_board_codec_sid_config - compare the current codec |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 4304 | subsystem ID with the |
| 4305 | config table |
Mauro Carvalho Chehab | 2eda344 | 2008-08-11 10:18:39 +0200 | [diff] [blame] | 4306 | |
| 4307 | This is important for Gateway notebooks with SB450 HDA Audio |
| 4308 | where the vendor ID of the PCI device is: |
| 4309 | ATI Technologies Inc SB450 HDA Audio [1002:437b] |
| 4310 | and the vendor/subvendor are found only at the codec. |
| 4311 | |
| 4312 | * @codec: the HDA codec |
| 4313 | * @num_configs: number of config enums |
| 4314 | * @models: array of model name strings |
| 4315 | * @tbl: configuration table, terminated by null entries |
| 4316 | * |
| 4317 | * Compares the modelname or PCI subsystem id of the current codec with the |
| 4318 | * given configuration table. If a matching entry is found, returns its |
| 4319 | * config value (supposed to be 0 or positive). |
| 4320 | * |
| 4321 | * If no entries are matching, the function returns a negative value. |
| 4322 | */ |
| 4323 | int snd_hda_check_board_codec_sid_config(struct hda_codec *codec, |
Takashi Iwai | ea73496 | 2011-01-17 11:29:34 +0100 | [diff] [blame] | 4324 | int num_configs, const char * const *models, |
Mauro Carvalho Chehab | 2eda344 | 2008-08-11 10:18:39 +0200 | [diff] [blame] | 4325 | const struct snd_pci_quirk *tbl) |
| 4326 | { |
| 4327 | const struct snd_pci_quirk *q; |
| 4328 | |
| 4329 | /* Search for codec ID */ |
| 4330 | for (q = tbl; q->subvendor; q++) { |
Takashi Iwai | e2301a4 | 2011-11-22 19:58:56 +0100 | [diff] [blame] | 4331 | unsigned int mask = 0xffff0000 | q->subdevice_mask; |
| 4332 | unsigned int id = (q->subdevice | (q->subvendor << 16)) & mask; |
| 4333 | if ((codec->subsystem_id & mask) == id) |
Mauro Carvalho Chehab | 2eda344 | 2008-08-11 10:18:39 +0200 | [diff] [blame] | 4334 | break; |
| 4335 | } |
| 4336 | |
| 4337 | if (!q->subvendor) |
| 4338 | return -1; |
| 4339 | |
| 4340 | tbl = q; |
| 4341 | |
| 4342 | if (tbl->value >= 0 && tbl->value < num_configs) { |
Takashi Iwai | d94ff6b | 2009-09-02 00:20:21 +0200 | [diff] [blame] | 4343 | #ifdef CONFIG_SND_DEBUG_VERBOSE |
Mauro Carvalho Chehab | 2eda344 | 2008-08-11 10:18:39 +0200 | [diff] [blame] | 4344 | char tmp[10]; |
| 4345 | const char *model = NULL; |
| 4346 | if (models) |
| 4347 | model = models[tbl->value]; |
| 4348 | if (!model) { |
| 4349 | sprintf(tmp, "#%d", tbl->value); |
| 4350 | model = tmp; |
| 4351 | } |
| 4352 | snd_printdd(KERN_INFO "hda_codec: model '%s' is selected " |
| 4353 | "for config %x:%x (%s)\n", |
| 4354 | model, tbl->subvendor, tbl->subdevice, |
| 4355 | (tbl->name ? tbl->name : "Unknown device")); |
| 4356 | #endif |
| 4357 | return tbl->value; |
| 4358 | } |
| 4359 | return -1; |
| 4360 | } |
| 4361 | EXPORT_SYMBOL_HDA(snd_hda_check_board_codec_sid_config); |
| 4362 | |
| 4363 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4364 | * snd_hda_add_new_ctls - create controls from the array |
| 4365 | * @codec: the HDA codec |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 4366 | * @knew: the array of struct snd_kcontrol_new |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4367 | * |
| 4368 | * This helper function creates and add new controls in the given array. |
| 4369 | * The array must be terminated with an empty entry as terminator. |
| 4370 | * |
| 4371 | * Returns 0 if successful, or a negative error code. |
| 4372 | */ |
Takashi Iwai | 031024e | 2011-05-02 11:29:30 +0200 | [diff] [blame] | 4373 | int snd_hda_add_new_ctls(struct hda_codec *codec, |
| 4374 | const struct snd_kcontrol_new *knew) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4375 | { |
Jaroslav Kysela | 4d02d1b | 2009-11-12 10:15:48 +0100 | [diff] [blame] | 4376 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4377 | |
| 4378 | for (; knew->name; knew++) { |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 4379 | struct snd_kcontrol *kctl; |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 4380 | int addr = 0, idx = 0; |
Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 4381 | if (knew->iface == -1) /* skip this codec private value */ |
| 4382 | continue; |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 4383 | for (;;) { |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 4384 | kctl = snd_ctl_new1(knew, codec); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4385 | if (!kctl) |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 4386 | return -ENOMEM; |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 4387 | if (addr > 0) |
| 4388 | kctl->id.device = addr; |
| 4389 | if (idx > 0) |
| 4390 | kctl->id.index = idx; |
Jaroslav Kysela | 3911a4c | 2009-11-11 13:43:01 +0100 | [diff] [blame] | 4391 | err = snd_hda_ctl_add(codec, 0, kctl); |
Takashi Iwai | 1afe206 | 2010-12-23 10:17:52 +0100 | [diff] [blame] | 4392 | if (!err) |
| 4393 | break; |
| 4394 | /* try first with another device index corresponding to |
| 4395 | * the codec addr; if it still fails (or it's the |
| 4396 | * primary codec), then try another control index |
| 4397 | */ |
| 4398 | if (!addr && codec->addr) |
| 4399 | addr = codec->addr; |
| 4400 | else if (!idx && !knew->index) { |
| 4401 | idx = find_empty_mixer_ctl_idx(codec, |
| 4402 | knew->name); |
| 4403 | if (idx <= 0) |
| 4404 | return err; |
| 4405 | } else |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 4406 | return err; |
| 4407 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4408 | } |
| 4409 | return 0; |
| 4410 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 4411 | EXPORT_SYMBOL_HDA(snd_hda_add_new_ctls); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4412 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4413 | #ifdef CONFIG_SND_HDA_POWER_SAVE |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4414 | static void hda_power_work(struct work_struct *work) |
| 4415 | { |
| 4416 | struct hda_codec *codec = |
| 4417 | container_of(work, struct hda_codec, power_work.work); |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 4418 | struct hda_bus *bus = codec->bus; |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4419 | |
Takashi Iwai | 5536c6d | 2012-05-08 17:08:10 +0200 | [diff] [blame] | 4420 | spin_lock(&codec->power_lock); |
Takashi Iwai | a2d96e7 | 2012-05-09 12:36:22 +0200 | [diff] [blame] | 4421 | if (codec->power_transition > 0) { /* during power-up sequence? */ |
| 4422 | spin_unlock(&codec->power_lock); |
| 4423 | return; |
| 4424 | } |
Maxim Levitsky | 2e49246 | 2007-09-03 15:26:57 +0200 | [diff] [blame] | 4425 | if (!codec->power_on || codec->power_count) { |
| 4426 | codec->power_transition = 0; |
Takashi Iwai | 5536c6d | 2012-05-08 17:08:10 +0200 | [diff] [blame] | 4427 | spin_unlock(&codec->power_lock); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4428 | return; |
Maxim Levitsky | 2e49246 | 2007-09-03 15:26:57 +0200 | [diff] [blame] | 4429 | } |
Takashi Iwai | 5536c6d | 2012-05-08 17:08:10 +0200 | [diff] [blame] | 4430 | spin_unlock(&codec->power_lock); |
| 4431 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4432 | hda_call_codec_suspend(codec); |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 4433 | if (bus->ops.pm_notify) |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 4434 | bus->ops.pm_notify(bus, codec); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4435 | } |
| 4436 | |
| 4437 | static void hda_keep_power_on(struct hda_codec *codec) |
| 4438 | { |
Takashi Iwai | 5536c6d | 2012-05-08 17:08:10 +0200 | [diff] [blame] | 4439 | spin_lock(&codec->power_lock); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4440 | codec->power_count++; |
| 4441 | codec->power_on = 1; |
Takashi Iwai | a2f6309 | 2009-11-11 09:34:25 +0100 | [diff] [blame] | 4442 | codec->power_jiffies = jiffies; |
Takashi Iwai | 5536c6d | 2012-05-08 17:08:10 +0200 | [diff] [blame] | 4443 | spin_unlock(&codec->power_lock); |
Takashi Iwai | a2f6309 | 2009-11-11 09:34:25 +0100 | [diff] [blame] | 4444 | } |
| 4445 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4446 | /* update the power on/off account with the current jiffies */ |
Takashi Iwai | a2f6309 | 2009-11-11 09:34:25 +0100 | [diff] [blame] | 4447 | void snd_hda_update_power_acct(struct hda_codec *codec) |
| 4448 | { |
| 4449 | unsigned long delta = jiffies - codec->power_jiffies; |
| 4450 | if (codec->power_on) |
| 4451 | codec->power_on_acct += delta; |
| 4452 | else |
| 4453 | codec->power_off_acct += delta; |
| 4454 | codec->power_jiffies += delta; |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4455 | } |
| 4456 | |
Dylan Reid | b4a91cf | 2012-06-15 19:36:23 -0700 | [diff] [blame] | 4457 | /* Transition to powered up, if wait_power_down then wait for a pending |
| 4458 | * transition to D3 to complete. A pending D3 transition is indicated |
| 4459 | * with power_transition == -1. */ |
Takashi Iwai | c376e2c | 2012-08-14 17:12:47 +0200 | [diff] [blame] | 4460 | /* call this with codec->power_lock held! */ |
Dylan Reid | b4a91cf | 2012-06-15 19:36:23 -0700 | [diff] [blame] | 4461 | static void __snd_hda_power_up(struct hda_codec *codec, bool wait_power_down) |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4462 | { |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 4463 | struct hda_bus *bus = codec->bus; |
| 4464 | |
Dylan Reid | b4a91cf | 2012-06-15 19:36:23 -0700 | [diff] [blame] | 4465 | /* Return if power_on or transitioning to power_on, unless currently |
| 4466 | * powering down. */ |
| 4467 | if ((codec->power_on || codec->power_transition > 0) && |
Takashi Iwai | c376e2c | 2012-08-14 17:12:47 +0200 | [diff] [blame] | 4468 | !(wait_power_down && codec->power_transition < 0)) |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4469 | return; |
Takashi Iwai | a2d96e7 | 2012-05-09 12:36:22 +0200 | [diff] [blame] | 4470 | spin_unlock(&codec->power_lock); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4471 | |
Takashi Iwai | a2d96e7 | 2012-05-09 12:36:22 +0200 | [diff] [blame] | 4472 | cancel_delayed_work_sync(&codec->power_work); |
| 4473 | |
| 4474 | spin_lock(&codec->power_lock); |
Dylan Reid | b43d224 | 2012-06-21 21:51:22 -0700 | [diff] [blame] | 4475 | /* If the power down delayed work was cancelled above before starting, |
| 4476 | * then there is no need to go through power up here. |
| 4477 | */ |
| 4478 | if (codec->power_on) { |
Takashi Iwai | 535b6c5 | 2012-08-20 21:25:22 +0200 | [diff] [blame] | 4479 | if (codec->power_transition < 0) |
| 4480 | codec->power_transition = 0; |
Dylan Reid | b43d224 | 2012-06-21 21:51:22 -0700 | [diff] [blame] | 4481 | return; |
| 4482 | } |
Takashi Iwai | c376e2c | 2012-08-14 17:12:47 +0200 | [diff] [blame] | 4483 | |
Takashi Iwai | d66fee5 | 2011-08-02 15:39:31 +0200 | [diff] [blame] | 4484 | trace_hda_power_up(codec); |
Takashi Iwai | a2f6309 | 2009-11-11 09:34:25 +0100 | [diff] [blame] | 4485 | snd_hda_update_power_acct(codec); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4486 | codec->power_on = 1; |
Takashi Iwai | a2f6309 | 2009-11-11 09:34:25 +0100 | [diff] [blame] | 4487 | codec->power_jiffies = jiffies; |
Takashi Iwai | 7f30830 | 2012-05-08 16:52:23 +0200 | [diff] [blame] | 4488 | codec->power_transition = 1; /* avoid reentrance */ |
Takashi Iwai | 5536c6d | 2012-05-08 17:08:10 +0200 | [diff] [blame] | 4489 | spin_unlock(&codec->power_lock); |
| 4490 | |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 4491 | if (bus->ops.pm_notify) |
Mengdong Lin | b8dfc462 | 2012-08-23 17:32:30 +0800 | [diff] [blame] | 4492 | bus->ops.pm_notify(bus, codec); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4493 | hda_call_codec_resume(codec); |
Takashi Iwai | 5536c6d | 2012-05-08 17:08:10 +0200 | [diff] [blame] | 4494 | |
| 4495 | spin_lock(&codec->power_lock); |
Takashi Iwai | a221e28 | 2007-08-16 16:35:33 +0200 | [diff] [blame] | 4496 | codec->power_transition = 0; |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4497 | } |
Dylan Reid | b4a91cf | 2012-06-15 19:36:23 -0700 | [diff] [blame] | 4498 | |
Takashi Iwai | 1289e9e | 2008-11-27 15:47:11 +0100 | [diff] [blame] | 4499 | #define power_save(codec) \ |
| 4500 | ((codec)->bus->power_save ? *(codec)->bus->power_save : 0) |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4501 | |
Takashi Iwai | c376e2c | 2012-08-14 17:12:47 +0200 | [diff] [blame] | 4502 | /* Transition to powered down */ |
| 4503 | static void __snd_hda_power_down(struct hda_codec *codec) |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4504 | { |
Takashi Iwai | c376e2c | 2012-08-14 17:12:47 +0200 | [diff] [blame] | 4505 | if (!codec->power_on || codec->power_count || codec->power_transition) |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4506 | return; |
Takashi Iwai | c376e2c | 2012-08-14 17:12:47 +0200 | [diff] [blame] | 4507 | |
Takashi Iwai | fee2fba | 2008-11-27 12:43:28 +0100 | [diff] [blame] | 4508 | if (power_save(codec)) { |
Takashi Iwai | a2d96e7 | 2012-05-09 12:36:22 +0200 | [diff] [blame] | 4509 | codec->power_transition = -1; /* avoid reentrance */ |
Takashi Iwai | c107b41 | 2009-01-13 17:46:37 +0100 | [diff] [blame] | 4510 | queue_delayed_work(codec->bus->workq, &codec->power_work, |
Takashi Iwai | fee2fba | 2008-11-27 12:43:28 +0100 | [diff] [blame] | 4511 | msecs_to_jiffies(power_save(codec) * 1000)); |
Takashi Iwai | a221e28 | 2007-08-16 16:35:33 +0200 | [diff] [blame] | 4512 | } |
Takashi Iwai | c376e2c | 2012-08-14 17:12:47 +0200 | [diff] [blame] | 4513 | } |
| 4514 | |
| 4515 | /** |
| 4516 | * snd_hda_power_save - Power-up/down/sync the codec |
| 4517 | * @codec: HD-audio codec |
| 4518 | * @delta: the counter delta to change |
| 4519 | * |
| 4520 | * Change the power-up counter via @delta, and power up or down the hardware |
| 4521 | * appropriately. For the power-down, queue to the delayed action. |
| 4522 | * Passing zero to @delta means to synchronize the power state. |
| 4523 | */ |
| 4524 | void snd_hda_power_save(struct hda_codec *codec, int delta, bool d3wait) |
| 4525 | { |
| 4526 | spin_lock(&codec->power_lock); |
| 4527 | codec->power_count += delta; |
| 4528 | trace_hda_power_count(codec); |
| 4529 | if (delta > 0) |
| 4530 | __snd_hda_power_up(codec, d3wait); |
| 4531 | else |
| 4532 | __snd_hda_power_down(codec); |
Takashi Iwai | 5536c6d | 2012-05-08 17:08:10 +0200 | [diff] [blame] | 4533 | spin_unlock(&codec->power_lock); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4534 | } |
Takashi Iwai | c376e2c | 2012-08-14 17:12:47 +0200 | [diff] [blame] | 4535 | EXPORT_SYMBOL_HDA(snd_hda_power_save); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4536 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4537 | /** |
| 4538 | * snd_hda_check_amp_list_power - Check the amp list and update the power |
| 4539 | * @codec: HD-audio codec |
| 4540 | * @check: the object containing an AMP list and the status |
| 4541 | * @nid: NID to check / update |
| 4542 | * |
| 4543 | * Check whether the given NID is in the amp list. If it's in the list, |
| 4544 | * check the current AMP status, and update the the power-status according |
| 4545 | * to the mute status. |
| 4546 | * |
| 4547 | * This function is supposed to be set or called from the check_power_status |
| 4548 | * patch ops. |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 4549 | */ |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4550 | int snd_hda_check_amp_list_power(struct hda_codec *codec, |
| 4551 | struct hda_loopback_check *check, |
| 4552 | hda_nid_t nid) |
| 4553 | { |
Takashi Iwai | 031024e | 2011-05-02 11:29:30 +0200 | [diff] [blame] | 4554 | const struct hda_amp_list *p; |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4555 | int ch, v; |
| 4556 | |
| 4557 | if (!check->amplist) |
| 4558 | return 0; |
| 4559 | for (p = check->amplist; p->nid; p++) { |
| 4560 | if (p->nid == nid) |
| 4561 | break; |
| 4562 | } |
| 4563 | if (!p->nid) |
| 4564 | return 0; /* nothing changed */ |
| 4565 | |
| 4566 | for (p = check->amplist; p->nid; p++) { |
| 4567 | for (ch = 0; ch < 2; ch++) { |
| 4568 | v = snd_hda_codec_amp_read(codec, p->nid, ch, p->dir, |
| 4569 | p->idx); |
| 4570 | if (!(v & HDA_AMP_MUTE) && v > 0) { |
| 4571 | if (!check->power_on) { |
| 4572 | check->power_on = 1; |
| 4573 | snd_hda_power_up(codec); |
| 4574 | } |
| 4575 | return 1; |
| 4576 | } |
| 4577 | } |
| 4578 | } |
| 4579 | if (check->power_on) { |
| 4580 | check->power_on = 0; |
| 4581 | snd_hda_power_down(codec); |
| 4582 | } |
| 4583 | return 0; |
| 4584 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 4585 | EXPORT_SYMBOL_HDA(snd_hda_check_amp_list_power); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 4586 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4587 | |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 4588 | /* |
Takashi Iwai | d2a6d7d | 2005-11-17 11:06:29 +0100 | [diff] [blame] | 4589 | * Channel mode helper |
| 4590 | */ |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4591 | |
| 4592 | /** |
| 4593 | * snd_hda_ch_mode_info - Info callback helper for the channel mode enum |
| 4594 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4595 | int snd_hda_ch_mode_info(struct hda_codec *codec, |
| 4596 | struct snd_ctl_elem_info *uinfo, |
| 4597 | const struct hda_channel_mode *chmode, |
| 4598 | int num_chmodes) |
Takashi Iwai | d2a6d7d | 2005-11-17 11:06:29 +0100 | [diff] [blame] | 4599 | { |
| 4600 | uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; |
| 4601 | uinfo->count = 1; |
| 4602 | uinfo->value.enumerated.items = num_chmodes; |
| 4603 | if (uinfo->value.enumerated.item >= num_chmodes) |
| 4604 | uinfo->value.enumerated.item = num_chmodes - 1; |
| 4605 | sprintf(uinfo->value.enumerated.name, "%dch", |
| 4606 | chmode[uinfo->value.enumerated.item].channels); |
| 4607 | return 0; |
| 4608 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 4609 | EXPORT_SYMBOL_HDA(snd_hda_ch_mode_info); |
Takashi Iwai | d2a6d7d | 2005-11-17 11:06:29 +0100 | [diff] [blame] | 4610 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4611 | /** |
| 4612 | * snd_hda_ch_mode_get - Get callback helper for the channel mode enum |
| 4613 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4614 | int snd_hda_ch_mode_get(struct hda_codec *codec, |
| 4615 | struct snd_ctl_elem_value *ucontrol, |
| 4616 | const struct hda_channel_mode *chmode, |
| 4617 | int num_chmodes, |
Takashi Iwai | d2a6d7d | 2005-11-17 11:06:29 +0100 | [diff] [blame] | 4618 | int max_channels) |
| 4619 | { |
| 4620 | int i; |
| 4621 | |
| 4622 | for (i = 0; i < num_chmodes; i++) { |
| 4623 | if (max_channels == chmode[i].channels) { |
| 4624 | ucontrol->value.enumerated.item[0] = i; |
| 4625 | break; |
| 4626 | } |
| 4627 | } |
| 4628 | return 0; |
| 4629 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 4630 | EXPORT_SYMBOL_HDA(snd_hda_ch_mode_get); |
Takashi Iwai | d2a6d7d | 2005-11-17 11:06:29 +0100 | [diff] [blame] | 4631 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4632 | /** |
| 4633 | * snd_hda_ch_mode_put - Put callback helper for the channel mode enum |
| 4634 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4635 | int snd_hda_ch_mode_put(struct hda_codec *codec, |
| 4636 | struct snd_ctl_elem_value *ucontrol, |
| 4637 | const struct hda_channel_mode *chmode, |
| 4638 | int num_chmodes, |
Takashi Iwai | d2a6d7d | 2005-11-17 11:06:29 +0100 | [diff] [blame] | 4639 | int *max_channelsp) |
| 4640 | { |
| 4641 | unsigned int mode; |
| 4642 | |
| 4643 | mode = ucontrol->value.enumerated.item[0]; |
Takashi Iwai | 68ea7b2 | 2007-11-15 15:54:38 +0100 | [diff] [blame] | 4644 | if (mode >= num_chmodes) |
| 4645 | return -EINVAL; |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 4646 | if (*max_channelsp == chmode[mode].channels) |
Takashi Iwai | d2a6d7d | 2005-11-17 11:06:29 +0100 | [diff] [blame] | 4647 | return 0; |
| 4648 | /* change the current channel setting */ |
| 4649 | *max_channelsp = chmode[mode].channels; |
| 4650 | if (chmode[mode].sequence) |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 4651 | snd_hda_sequence_write_cache(codec, chmode[mode].sequence); |
Takashi Iwai | d2a6d7d | 2005-11-17 11:06:29 +0100 | [diff] [blame] | 4652 | return 1; |
| 4653 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 4654 | EXPORT_SYMBOL_HDA(snd_hda_ch_mode_put); |
Takashi Iwai | d2a6d7d | 2005-11-17 11:06:29 +0100 | [diff] [blame] | 4655 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4656 | /* |
| 4657 | * input MUX helper |
| 4658 | */ |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4659 | |
| 4660 | /** |
| 4661 | * snd_hda_input_mux_info_info - Info callback helper for the input-mux enum |
| 4662 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4663 | int snd_hda_input_mux_info(const struct hda_input_mux *imux, |
| 4664 | struct snd_ctl_elem_info *uinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4665 | { |
| 4666 | unsigned int index; |
| 4667 | |
| 4668 | uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; |
| 4669 | uinfo->count = 1; |
| 4670 | uinfo->value.enumerated.items = imux->num_items; |
Takashi Iwai | 5513b0c | 2007-10-09 11:58:41 +0200 | [diff] [blame] | 4671 | if (!imux->num_items) |
| 4672 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4673 | index = uinfo->value.enumerated.item; |
| 4674 | if (index >= imux->num_items) |
| 4675 | index = imux->num_items - 1; |
| 4676 | strcpy(uinfo->value.enumerated.name, imux->items[index].label); |
| 4677 | return 0; |
| 4678 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 4679 | EXPORT_SYMBOL_HDA(snd_hda_input_mux_info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4680 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4681 | /** |
| 4682 | * snd_hda_input_mux_info_put - Put callback helper for the input-mux enum |
| 4683 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4684 | int snd_hda_input_mux_put(struct hda_codec *codec, |
| 4685 | const struct hda_input_mux *imux, |
| 4686 | struct snd_ctl_elem_value *ucontrol, |
| 4687 | hda_nid_t nid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4688 | unsigned int *cur_val) |
| 4689 | { |
| 4690 | unsigned int idx; |
| 4691 | |
Takashi Iwai | 5513b0c | 2007-10-09 11:58:41 +0200 | [diff] [blame] | 4692 | if (!imux->num_items) |
| 4693 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4694 | idx = ucontrol->value.enumerated.item[0]; |
| 4695 | if (idx >= imux->num_items) |
| 4696 | idx = imux->num_items - 1; |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 4697 | if (*cur_val == idx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4698 | return 0; |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 4699 | snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, |
| 4700 | imux->items[idx].index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4701 | *cur_val = idx; |
| 4702 | return 1; |
| 4703 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 4704 | EXPORT_SYMBOL_HDA(snd_hda_input_mux_put); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4705 | |
| 4706 | |
| 4707 | /* |
| 4708 | * Multi-channel / digital-out PCM helper functions |
| 4709 | */ |
| 4710 | |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 4711 | /* setup SPDIF output stream */ |
| 4712 | static void setup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid, |
| 4713 | unsigned int stream_tag, unsigned int format) |
| 4714 | { |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 4715 | struct hda_spdif_out *spdif = snd_hda_spdif_out_of_nid(codec, nid); |
| 4716 | |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 4717 | /* turn off SPDIF once; otherwise the IEC958 bits won't be updated */ |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 4718 | if (codec->spdif_status_reset && (spdif->ctls & AC_DIG1_ENABLE)) |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 4719 | set_dig_out_convert(codec, nid, |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 4720 | spdif->ctls & ~AC_DIG1_ENABLE & 0xff, |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 4721 | -1); |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 4722 | snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format); |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 4723 | if (codec->slave_dig_outs) { |
Takashi Iwai | dda1441 | 2011-05-02 11:29:30 +0200 | [diff] [blame] | 4724 | const hda_nid_t *d; |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 4725 | for (d = codec->slave_dig_outs; *d; d++) |
| 4726 | snd_hda_codec_setup_stream(codec, *d, stream_tag, 0, |
| 4727 | format); |
Matthew Ranostay | de51ca1 | 2008-09-07 14:31:40 -0400 | [diff] [blame] | 4728 | } |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 4729 | /* turn on again (if needed) */ |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 4730 | if (codec->spdif_status_reset && (spdif->ctls & AC_DIG1_ENABLE)) |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 4731 | set_dig_out_convert(codec, nid, |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 4732 | spdif->ctls & 0xff, -1); |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 4733 | } |
Matthew Ranostay | de51ca1 | 2008-09-07 14:31:40 -0400 | [diff] [blame] | 4734 | |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 4735 | static void cleanup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid) |
| 4736 | { |
| 4737 | snd_hda_codec_cleanup_stream(codec, nid); |
| 4738 | if (codec->slave_dig_outs) { |
Takashi Iwai | dda1441 | 2011-05-02 11:29:30 +0200 | [diff] [blame] | 4739 | const hda_nid_t *d; |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 4740 | for (d = codec->slave_dig_outs; *d; d++) |
| 4741 | snd_hda_codec_cleanup_stream(codec, *d); |
| 4742 | } |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 4743 | } |
| 4744 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4745 | /** |
| 4746 | * snd_hda_bus_reboot_notify - call the reboot notifier of each codec |
| 4747 | * @bus: HD-audio bus |
| 4748 | */ |
Takashi Iwai | fb8d1a3 | 2009-11-10 16:02:29 +0100 | [diff] [blame] | 4749 | void snd_hda_bus_reboot_notify(struct hda_bus *bus) |
| 4750 | { |
| 4751 | struct hda_codec *codec; |
| 4752 | |
| 4753 | if (!bus) |
| 4754 | return; |
| 4755 | list_for_each_entry(codec, &bus->codec_list, list) { |
Takashi Iwai | e581f3d | 2011-07-26 10:19:20 +0200 | [diff] [blame] | 4756 | if (hda_codec_is_power_on(codec) && |
| 4757 | codec->patch_ops.reboot_notify) |
Takashi Iwai | fb8d1a3 | 2009-11-10 16:02:29 +0100 | [diff] [blame] | 4758 | codec->patch_ops.reboot_notify(codec); |
| 4759 | } |
| 4760 | } |
Takashi Iwai | 8f217a2 | 2009-11-10 18:26:12 +0100 | [diff] [blame] | 4761 | EXPORT_SYMBOL_HDA(snd_hda_bus_reboot_notify); |
Takashi Iwai | fb8d1a3 | 2009-11-10 16:02:29 +0100 | [diff] [blame] | 4762 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4763 | /** |
| 4764 | * snd_hda_multi_out_dig_open - open the digital out in the exclusive mode |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4765 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4766 | int snd_hda_multi_out_dig_open(struct hda_codec *codec, |
| 4767 | struct hda_multi_out *mout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4768 | { |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 4769 | mutex_lock(&codec->spdif_mutex); |
Takashi Iwai | 5930ca4 | 2007-04-16 11:23:56 +0200 | [diff] [blame] | 4770 | if (mout->dig_out_used == HDA_DIG_ANALOG_DUP) |
| 4771 | /* already opened as analog dup; reset it once */ |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 4772 | cleanup_dig_out_stream(codec, mout->dig_out_nid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4773 | mout->dig_out_used = HDA_DIG_EXCLUSIVE; |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 4774 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4775 | return 0; |
| 4776 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 4777 | EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_open); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4778 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4779 | /** |
| 4780 | * snd_hda_multi_out_dig_prepare - prepare the digital out stream |
| 4781 | */ |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 4782 | int snd_hda_multi_out_dig_prepare(struct hda_codec *codec, |
| 4783 | struct hda_multi_out *mout, |
| 4784 | unsigned int stream_tag, |
| 4785 | unsigned int format, |
| 4786 | struct snd_pcm_substream *substream) |
| 4787 | { |
| 4788 | mutex_lock(&codec->spdif_mutex); |
| 4789 | setup_dig_out_stream(codec, mout->dig_out_nid, stream_tag, format); |
| 4790 | mutex_unlock(&codec->spdif_mutex); |
| 4791 | return 0; |
| 4792 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 4793 | EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_prepare); |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 4794 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4795 | /** |
| 4796 | * snd_hda_multi_out_dig_cleanup - clean-up the digital out stream |
| 4797 | */ |
Takashi Iwai | 9411e21 | 2009-02-13 11:32:28 +0100 | [diff] [blame] | 4798 | int snd_hda_multi_out_dig_cleanup(struct hda_codec *codec, |
| 4799 | struct hda_multi_out *mout) |
| 4800 | { |
| 4801 | mutex_lock(&codec->spdif_mutex); |
| 4802 | cleanup_dig_out_stream(codec, mout->dig_out_nid); |
| 4803 | mutex_unlock(&codec->spdif_mutex); |
| 4804 | return 0; |
| 4805 | } |
| 4806 | EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_cleanup); |
| 4807 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4808 | /** |
| 4809 | * snd_hda_multi_out_dig_close - release the digital out stream |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4810 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4811 | int snd_hda_multi_out_dig_close(struct hda_codec *codec, |
| 4812 | struct hda_multi_out *mout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4813 | { |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 4814 | mutex_lock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4815 | mout->dig_out_used = 0; |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 4816 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4817 | return 0; |
| 4818 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 4819 | EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_close); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4820 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4821 | /** |
| 4822 | * snd_hda_multi_out_analog_open - open analog outputs |
| 4823 | * |
| 4824 | * Open analog outputs and set up the hw-constraints. |
| 4825 | * If the digital outputs can be opened as slave, open the digital |
| 4826 | * outputs, too. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4827 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4828 | int snd_hda_multi_out_analog_open(struct hda_codec *codec, |
| 4829 | struct hda_multi_out *mout, |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 4830 | struct snd_pcm_substream *substream, |
| 4831 | struct hda_pcm_stream *hinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4832 | { |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 4833 | struct snd_pcm_runtime *runtime = substream->runtime; |
| 4834 | runtime->hw.channels_max = mout->max_channels; |
| 4835 | if (mout->dig_out_nid) { |
| 4836 | if (!mout->analog_rates) { |
| 4837 | mout->analog_rates = hinfo->rates; |
| 4838 | mout->analog_formats = hinfo->formats; |
| 4839 | mout->analog_maxbps = hinfo->maxbps; |
| 4840 | } else { |
| 4841 | runtime->hw.rates = mout->analog_rates; |
| 4842 | runtime->hw.formats = mout->analog_formats; |
| 4843 | hinfo->maxbps = mout->analog_maxbps; |
| 4844 | } |
| 4845 | if (!mout->spdif_rates) { |
| 4846 | snd_hda_query_supported_pcm(codec, mout->dig_out_nid, |
| 4847 | &mout->spdif_rates, |
| 4848 | &mout->spdif_formats, |
| 4849 | &mout->spdif_maxbps); |
| 4850 | } |
| 4851 | mutex_lock(&codec->spdif_mutex); |
| 4852 | if (mout->share_spdif) { |
Takashi Iwai | 022b466 | 2009-07-03 23:03:30 +0200 | [diff] [blame] | 4853 | if ((runtime->hw.rates & mout->spdif_rates) && |
| 4854 | (runtime->hw.formats & mout->spdif_formats)) { |
| 4855 | runtime->hw.rates &= mout->spdif_rates; |
| 4856 | runtime->hw.formats &= mout->spdif_formats; |
| 4857 | if (mout->spdif_maxbps < hinfo->maxbps) |
| 4858 | hinfo->maxbps = mout->spdif_maxbps; |
| 4859 | } else { |
| 4860 | mout->share_spdif = 0; |
| 4861 | /* FIXME: need notify? */ |
| 4862 | } |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 4863 | } |
Frederik Deweerdt | eaa9985 | 2008-04-14 13:11:44 +0200 | [diff] [blame] | 4864 | mutex_unlock(&codec->spdif_mutex); |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 4865 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4866 | return snd_pcm_hw_constraint_step(substream->runtime, 0, |
| 4867 | SNDRV_PCM_HW_PARAM_CHANNELS, 2); |
| 4868 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 4869 | EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_open); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4870 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4871 | /** |
| 4872 | * snd_hda_multi_out_analog_prepare - Preapre the analog outputs. |
| 4873 | * |
| 4874 | * Set up the i/o for analog out. |
| 4875 | * 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] | 4876 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4877 | int snd_hda_multi_out_analog_prepare(struct hda_codec *codec, |
| 4878 | struct hda_multi_out *mout, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4879 | unsigned int stream_tag, |
| 4880 | unsigned int format, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 4881 | struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4882 | { |
Takashi Iwai | dda1441 | 2011-05-02 11:29:30 +0200 | [diff] [blame] | 4883 | const hda_nid_t *nids = mout->dac_nids; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4884 | int chs = substream->runtime->channels; |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 4885 | struct hda_spdif_out *spdif; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4886 | int i; |
| 4887 | |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 4888 | mutex_lock(&codec->spdif_mutex); |
Takashi Iwai | e3245cd | 2012-05-10 10:21:29 +0200 | [diff] [blame] | 4889 | spdif = snd_hda_spdif_out_of_nid(codec, mout->dig_out_nid); |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 4890 | if (mout->dig_out_nid && mout->share_spdif && |
| 4891 | mout->dig_out_used != HDA_DIG_EXCLUSIVE) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4892 | if (chs == 2 && |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4893 | snd_hda_is_supported_format(codec, mout->dig_out_nid, |
| 4894 | format) && |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 4895 | !(spdif->status & IEC958_AES0_NONAUDIO)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4896 | mout->dig_out_used = HDA_DIG_ANALOG_DUP; |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 4897 | setup_dig_out_stream(codec, mout->dig_out_nid, |
| 4898 | stream_tag, format); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4899 | } else { |
| 4900 | mout->dig_out_used = 0; |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 4901 | cleanup_dig_out_stream(codec, mout->dig_out_nid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4902 | } |
| 4903 | } |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 4904 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4905 | |
| 4906 | /* front */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4907 | snd_hda_codec_setup_stream(codec, nids[HDA_FRONT], stream_tag, |
| 4908 | 0, format); |
Takashi Iwai | d29240c | 2007-10-26 12:35:56 +0200 | [diff] [blame] | 4909 | if (!mout->no_share_stream && |
| 4910 | mout->hp_nid && mout->hp_nid != nids[HDA_FRONT]) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4911 | /* headphone out will just decode front left/right (stereo) */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4912 | snd_hda_codec_setup_stream(codec, mout->hp_nid, stream_tag, |
| 4913 | 0, format); |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 4914 | /* extra outputs copied from front */ |
Takashi Iwai | a06dbfc | 2011-08-23 18:16:13 +0200 | [diff] [blame] | 4915 | for (i = 0; i < ARRAY_SIZE(mout->hp_out_nid); i++) |
| 4916 | if (!mout->no_share_stream && mout->hp_out_nid[i]) |
| 4917 | snd_hda_codec_setup_stream(codec, |
| 4918 | mout->hp_out_nid[i], |
| 4919 | stream_tag, 0, format); |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 4920 | for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++) |
Takashi Iwai | d29240c | 2007-10-26 12:35:56 +0200 | [diff] [blame] | 4921 | if (!mout->no_share_stream && mout->extra_out_nid[i]) |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 4922 | snd_hda_codec_setup_stream(codec, |
| 4923 | mout->extra_out_nid[i], |
| 4924 | stream_tag, 0, format); |
| 4925 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4926 | /* surrounds */ |
| 4927 | for (i = 1; i < mout->num_dacs; i++) { |
Takashi Iwai | 4b3acaf | 2005-06-10 19:48:10 +0200 | [diff] [blame] | 4928 | if (chs >= (i + 1) * 2) /* independent out */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4929 | snd_hda_codec_setup_stream(codec, nids[i], stream_tag, |
| 4930 | i * 2, format); |
Takashi Iwai | d29240c | 2007-10-26 12:35:56 +0200 | [diff] [blame] | 4931 | else if (!mout->no_share_stream) /* copy front */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4932 | snd_hda_codec_setup_stream(codec, nids[i], stream_tag, |
| 4933 | 0, format); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4934 | } |
| 4935 | return 0; |
| 4936 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 4937 | EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_prepare); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4938 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 4939 | /** |
| 4940 | * snd_hda_multi_out_analog_cleanup - clean up the setting for analog out |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4941 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 4942 | int snd_hda_multi_out_analog_cleanup(struct hda_codec *codec, |
| 4943 | struct hda_multi_out *mout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4944 | { |
Takashi Iwai | dda1441 | 2011-05-02 11:29:30 +0200 | [diff] [blame] | 4945 | const hda_nid_t *nids = mout->dac_nids; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4946 | int i; |
| 4947 | |
| 4948 | for (i = 0; i < mout->num_dacs; i++) |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 4949 | snd_hda_codec_cleanup_stream(codec, nids[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4950 | if (mout->hp_nid) |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 4951 | snd_hda_codec_cleanup_stream(codec, mout->hp_nid); |
Takashi Iwai | a06dbfc | 2011-08-23 18:16:13 +0200 | [diff] [blame] | 4952 | for (i = 0; i < ARRAY_SIZE(mout->hp_out_nid); i++) |
| 4953 | if (mout->hp_out_nid[i]) |
| 4954 | snd_hda_codec_cleanup_stream(codec, |
| 4955 | mout->hp_out_nid[i]); |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 4956 | for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++) |
| 4957 | if (mout->extra_out_nid[i]) |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 4958 | snd_hda_codec_cleanup_stream(codec, |
| 4959 | mout->extra_out_nid[i]); |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 4960 | mutex_lock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4961 | 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] | 4962 | cleanup_dig_out_stream(codec, mout->dig_out_nid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4963 | mout->dig_out_used = 0; |
| 4964 | } |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 4965 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4966 | return 0; |
| 4967 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 4968 | EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_cleanup); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4969 | |
Takashi Iwai | 4740860 | 2012-04-20 13:06:53 +0200 | [diff] [blame] | 4970 | /** |
| 4971 | * snd_hda_get_default_vref - Get the default (mic) VREF pin bits |
| 4972 | * |
| 4973 | * Guess the suitable VREF pin bits to be set as the pin-control value. |
| 4974 | * Note: the function doesn't set the AC_PINCTL_IN_EN bit. |
| 4975 | */ |
| 4976 | unsigned int snd_hda_get_default_vref(struct hda_codec *codec, hda_nid_t pin) |
| 4977 | { |
| 4978 | unsigned int pincap; |
| 4979 | unsigned int oldval; |
| 4980 | oldval = snd_hda_codec_read(codec, pin, 0, |
| 4981 | AC_VERB_GET_PIN_WIDGET_CONTROL, 0); |
| 4982 | pincap = snd_hda_query_pin_caps(codec, pin); |
| 4983 | pincap = (pincap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT; |
| 4984 | /* Exception: if the default pin setup is vref50, we give it priority */ |
| 4985 | if ((pincap & AC_PINCAP_VREF_80) && oldval != PIN_VREF50) |
| 4986 | return AC_PINCTL_VREF_80; |
| 4987 | else if (pincap & AC_PINCAP_VREF_50) |
| 4988 | return AC_PINCTL_VREF_50; |
| 4989 | else if (pincap & AC_PINCAP_VREF_100) |
| 4990 | return AC_PINCTL_VREF_100; |
| 4991 | else if (pincap & AC_PINCAP_VREF_GRD) |
| 4992 | return AC_PINCTL_VREF_GRD; |
| 4993 | return AC_PINCTL_VREF_HIZ; |
| 4994 | } |
| 4995 | EXPORT_SYMBOL_HDA(snd_hda_get_default_vref); |
| 4996 | |
Takashi Iwai | cdd03ce | 2012-04-20 12:34:50 +0200 | [diff] [blame] | 4997 | int _snd_hda_set_pin_ctl(struct hda_codec *codec, hda_nid_t pin, |
| 4998 | unsigned int val, bool cached) |
| 4999 | { |
| 5000 | if (val) { |
| 5001 | unsigned int cap = snd_hda_query_pin_caps(codec, pin); |
Takashi Iwai | 6942c10 | 2012-04-20 13:08:40 +0200 | [diff] [blame] | 5002 | if (cap && (val & AC_PINCTL_OUT_EN)) { |
Takashi Iwai | cdd03ce | 2012-04-20 12:34:50 +0200 | [diff] [blame] | 5003 | if (!(cap & AC_PINCAP_OUT)) |
| 5004 | val &= ~(AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN); |
| 5005 | else if ((val & AC_PINCTL_HP_EN) && |
| 5006 | !(cap & AC_PINCAP_HP_DRV)) |
| 5007 | val &= ~AC_PINCTL_HP_EN; |
| 5008 | } |
Takashi Iwai | 6942c10 | 2012-04-20 13:08:40 +0200 | [diff] [blame] | 5009 | if (cap && (val & AC_PINCTL_IN_EN)) { |
Takashi Iwai | cdd03ce | 2012-04-20 12:34:50 +0200 | [diff] [blame] | 5010 | if (!(cap & AC_PINCAP_IN)) |
| 5011 | val &= ~(AC_PINCTL_IN_EN | AC_PINCTL_VREFEN); |
| 5012 | } |
| 5013 | } |
| 5014 | if (cached) |
| 5015 | return snd_hda_codec_update_cache(codec, pin, 0, |
| 5016 | AC_VERB_SET_PIN_WIDGET_CONTROL, val); |
| 5017 | else |
| 5018 | return snd_hda_codec_write(codec, pin, 0, |
| 5019 | AC_VERB_SET_PIN_WIDGET_CONTROL, val); |
| 5020 | } |
| 5021 | EXPORT_SYMBOL_HDA(_snd_hda_set_pin_ctl); |
| 5022 | |
Takashi Iwai | 990061c | 2010-09-09 22:08:44 +0200 | [diff] [blame] | 5023 | /** |
| 5024 | * snd_hda_add_imux_item - Add an item to input_mux |
| 5025 | * |
| 5026 | * When the same label is used already in the existing items, the number |
| 5027 | * suffix is appended to the label. This label index number is stored |
| 5028 | * to type_idx when non-NULL pointer is given. |
| 5029 | */ |
Takashi Iwai | 10a20af | 2010-09-09 16:28:02 +0200 | [diff] [blame] | 5030 | int snd_hda_add_imux_item(struct hda_input_mux *imux, const char *label, |
| 5031 | int index, int *type_idx) |
| 5032 | { |
| 5033 | int i, label_idx = 0; |
| 5034 | if (imux->num_items >= HDA_MAX_NUM_INPUTS) { |
| 5035 | snd_printd(KERN_ERR "hda_codec: Too many imux items!\n"); |
| 5036 | return -EINVAL; |
| 5037 | } |
| 5038 | for (i = 0; i < imux->num_items; i++) { |
| 5039 | if (!strncmp(label, imux->items[i].label, strlen(label))) |
| 5040 | label_idx++; |
| 5041 | } |
| 5042 | if (type_idx) |
| 5043 | *type_idx = label_idx; |
| 5044 | if (label_idx > 0) |
| 5045 | snprintf(imux->items[imux->num_items].label, |
| 5046 | sizeof(imux->items[imux->num_items].label), |
| 5047 | "%s %d", label, label_idx); |
| 5048 | else |
| 5049 | strlcpy(imux->items[imux->num_items].label, label, |
| 5050 | sizeof(imux->items[imux->num_items].label)); |
| 5051 | imux->items[imux->num_items].index = index; |
| 5052 | imux->num_items++; |
| 5053 | return 0; |
| 5054 | } |
| 5055 | EXPORT_SYMBOL_HDA(snd_hda_add_imux_item); |
Takashi Iwai | d7b1ae9 | 2010-08-30 13:00:16 +0200 | [diff] [blame] | 5056 | |
Takashi Iwai | 4a471b7 | 2005-12-07 13:56:29 +0100 | [diff] [blame] | 5057 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5058 | #ifdef CONFIG_PM |
| 5059 | /* |
| 5060 | * power management |
| 5061 | */ |
| 5062 | |
| 5063 | /** |
| 5064 | * snd_hda_suspend - suspend the codecs |
| 5065 | * @bus: the HDA bus |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5066 | * |
| 5067 | * Returns 0 if successful. |
| 5068 | */ |
Takashi Iwai | 8dd7833 | 2009-06-02 01:16:07 +0200 | [diff] [blame] | 5069 | int snd_hda_suspend(struct hda_bus *bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5070 | { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 5071 | struct hda_codec *codec; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5072 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 5073 | list_for_each_entry(codec, &bus->codec_list, list) { |
Takashi Iwai | e581f3d | 2011-07-26 10:19:20 +0200 | [diff] [blame] | 5074 | if (hda_codec_is_power_on(codec)) |
| 5075 | hda_call_codec_suspend(codec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5076 | } |
| 5077 | return 0; |
| 5078 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 5079 | EXPORT_SYMBOL_HDA(snd_hda_suspend); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5080 | |
| 5081 | /** |
| 5082 | * snd_hda_resume - resume the codecs |
| 5083 | * @bus: the HDA bus |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5084 | * |
| 5085 | * Returns 0 if successful. |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 5086 | * |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 5087 | * This function is defined only when POWER_SAVE isn't set. |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 5088 | * In the power-save mode, the codec is resumed dynamically. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5089 | */ |
| 5090 | int snd_hda_resume(struct hda_bus *bus) |
| 5091 | { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 5092 | struct hda_codec *codec; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5093 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 5094 | list_for_each_entry(codec, &bus->codec_list, list) { |
Takashi Iwai | 7f30830 | 2012-05-08 16:52:23 +0200 | [diff] [blame] | 5095 | hda_call_codec_resume(codec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5096 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5097 | return 0; |
| 5098 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 5099 | EXPORT_SYMBOL_HDA(snd_hda_resume); |
Takashi Iwai | 1289e9e | 2008-11-27 15:47:11 +0100 | [diff] [blame] | 5100 | #endif /* CONFIG_PM */ |
Takashi Iwai | b2e1859 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 5101 | |
| 5102 | /* |
| 5103 | * generic arrays |
| 5104 | */ |
| 5105 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 5106 | /** |
| 5107 | * snd_array_new - get a new element from the given array |
| 5108 | * @array: the array object |
Norberto Lopes | 28aedaf | 2010-02-28 20:16:53 +0100 | [diff] [blame] | 5109 | * |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 5110 | * Get a new element from the given array. If it exceeds the |
| 5111 | * pre-allocated array size, re-allocate the array. |
| 5112 | * |
| 5113 | * Returns NULL if allocation failed. |
Takashi Iwai | b2e1859 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 5114 | */ |
| 5115 | void *snd_array_new(struct snd_array *array) |
| 5116 | { |
| 5117 | if (array->used >= array->alloced) { |
| 5118 | int num = array->alloced + array->alloc_align; |
Takashi Iwai | 3101ba0 | 2011-07-12 08:05:16 +0200 | [diff] [blame] | 5119 | int size = (num + 1) * array->elem_size; |
Takashi Iwai | 00ef961 | 2011-07-14 15:57:27 +0200 | [diff] [blame] | 5120 | int oldsize = array->alloced * array->elem_size; |
Takashi Iwai | b910d9a | 2008-11-07 00:26:52 +0100 | [diff] [blame] | 5121 | void *nlist; |
| 5122 | if (snd_BUG_ON(num >= 4096)) |
| 5123 | return NULL; |
Takashi Iwai | 3101ba0 | 2011-07-12 08:05:16 +0200 | [diff] [blame] | 5124 | nlist = krealloc(array->list, size, GFP_KERNEL); |
Takashi Iwai | b2e1859 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 5125 | if (!nlist) |
| 5126 | return NULL; |
Takashi Iwai | 00ef961 | 2011-07-14 15:57:27 +0200 | [diff] [blame] | 5127 | memset(nlist + oldsize, 0, size - oldsize); |
Takashi Iwai | b2e1859 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 5128 | array->list = nlist; |
| 5129 | array->alloced = num; |
| 5130 | } |
Takashi Iwai | f43aa02 | 2008-11-10 16:24:26 +0100 | [diff] [blame] | 5131 | return snd_array_elem(array, array->used++); |
Takashi Iwai | b2e1859 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 5132 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 5133 | EXPORT_SYMBOL_HDA(snd_array_new); |
Takashi Iwai | b2e1859 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 5134 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 5135 | /** |
| 5136 | * snd_array_free - free the given array elements |
| 5137 | * @array: the array object |
| 5138 | */ |
Takashi Iwai | b2e1859 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 5139 | void snd_array_free(struct snd_array *array) |
| 5140 | { |
| 5141 | kfree(array->list); |
| 5142 | array->used = 0; |
| 5143 | array->alloced = 0; |
| 5144 | array->list = NULL; |
| 5145 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 5146 | EXPORT_SYMBOL_HDA(snd_array_free); |
Takashi Iwai | b202226 | 2008-11-21 21:24:03 +0100 | [diff] [blame] | 5147 | |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 5148 | /** |
Takashi Iwai | d5191e5 | 2009-11-16 14:58:17 +0100 | [diff] [blame] | 5149 | * snd_print_pcm_bits - Print the supported PCM fmt bits to the string buffer |
| 5150 | * @pcm: PCM caps bits |
| 5151 | * @buf: the string buffer to write |
| 5152 | * @buflen: the max buffer length |
| 5153 | * |
| 5154 | * used by hda_proc.c and hda_eld.c |
| 5155 | */ |
Takashi Iwai | b202226 | 2008-11-21 21:24:03 +0100 | [diff] [blame] | 5156 | void snd_print_pcm_bits(int pcm, char *buf, int buflen) |
| 5157 | { |
| 5158 | static unsigned int bits[] = { 8, 16, 20, 24, 32 }; |
| 5159 | int i, j; |
| 5160 | |
| 5161 | for (i = 0, j = 0; i < ARRAY_SIZE(bits); i++) |
| 5162 | if (pcm & (AC_SUPPCM_BITS_8 << i)) |
| 5163 | j += snprintf(buf + j, buflen - j, " %d", bits[i]); |
| 5164 | |
| 5165 | buf[j] = '\0'; /* necessary when j == 0 */ |
| 5166 | } |
Takashi Iwai | ff7a326 | 2008-11-28 15:17:06 +0100 | [diff] [blame] | 5167 | EXPORT_SYMBOL_HDA(snd_print_pcm_bits); |
Takashi Iwai | 1289e9e | 2008-11-27 15:47:11 +0100 | [diff] [blame] | 5168 | |
| 5169 | MODULE_DESCRIPTION("HDA codec core"); |
| 5170 | MODULE_LICENSE("GPL"); |