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