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 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <linux/init.h> |
| 23 | #include <linux/delay.h> |
| 24 | #include <linux/slab.h> |
| 25 | #include <linux/pci.h> |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 26 | #include <linux/mutex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include <sound/core.h> |
| 28 | #include "hda_codec.h" |
| 29 | #include <sound/asoundef.h> |
Jaroslav Kysela | 302e9c5 | 2006-07-05 17:39:49 +0200 | [diff] [blame] | 30 | #include <sound/tlv.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include <sound/initval.h> |
| 32 | #include "hda_local.h" |
Takashi Iwai | 2807314 | 2007-07-27 18:58:06 +0200 | [diff] [blame] | 33 | #include <sound/hda_hwdep.h> |
Harvey Harrison | 3c9a320 | 2008-02-29 11:59:26 +0100 | [diff] [blame] | 34 | #include "hda_patch.h" /* codec presets */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 36 | #ifdef CONFIG_SND_HDA_POWER_SAVE |
| 37 | /* define this option here to hide as static */ |
Takashi Iwai | 7a5a27c | 2007-09-17 19:07:46 +0200 | [diff] [blame] | 38 | static int power_save = CONFIG_SND_HDA_POWER_SAVE_DEFAULT; |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 39 | module_param(power_save, int, 0644); |
| 40 | MODULE_PARM_DESC(power_save, "Automatic power-saving timeout " |
| 41 | "(in second, 0 = disable)."); |
| 42 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | /* |
| 45 | * vendor / preset table |
| 46 | */ |
| 47 | |
| 48 | struct hda_vendor_id { |
| 49 | unsigned int id; |
| 50 | const char *name; |
| 51 | }; |
| 52 | |
| 53 | /* codec vendor labels */ |
| 54 | static struct hda_vendor_id hda_vendor_ids[] = { |
Takashi Iwai | c8cd128 | 2008-02-13 16:59:29 +0100 | [diff] [blame] | 55 | { 0x1002, "ATI" }, |
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" }, |
| 58 | { 0x10ec, "Realtek" }, |
Joseph Chan | c577b8a | 2006-11-29 15:29:40 +0100 | [diff] [blame] | 59 | { 0x1106, "VIA" }, |
Matthew Ranostay | 7f16859 | 2007-10-18 17:38:17 +0200 | [diff] [blame] | 60 | { 0x111d, "IDT" }, |
Takashi Iwai | c8cd128 | 2008-02-13 16:59:29 +0100 | [diff] [blame] | 61 | { 0x11c1, "LSI" }, |
Takashi Iwai | 54b903e | 2005-05-15 14:30:10 +0200 | [diff] [blame] | 62 | { 0x11d4, "Analog Devices" }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | { 0x13f6, "C-Media" }, |
Takashi Iwai | a922625 | 2006-09-17 22:05:54 +0200 | [diff] [blame] | 64 | { 0x14f1, "Conexant" }, |
Takashi Iwai | c8cd128 | 2008-02-13 16:59:29 +0100 | [diff] [blame] | 65 | { 0x17e8, "Chrontel" }, |
| 66 | { 0x1854, "LG" }, |
Mark Brown | 8199de3 | 2008-10-28 14:50:13 +0000 | [diff] [blame] | 67 | { 0x1aec, "Wolfson Microelectronics" }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | { 0x434d, "C-Media" }, |
Matt | 2f2f425 | 2005-04-13 14:45:30 +0200 | [diff] [blame] | 69 | { 0x8384, "SigmaTel" }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | {} /* terminator */ |
| 71 | }; |
| 72 | |
Harvey Harrison | 3c9a320 | 2008-02-29 11:59:26 +0100 | [diff] [blame] | 73 | static const struct hda_codec_preset *hda_preset_tables[] = { |
| 74 | #ifdef CONFIG_SND_HDA_CODEC_REALTEK |
| 75 | snd_hda_preset_realtek, |
| 76 | #endif |
| 77 | #ifdef CONFIG_SND_HDA_CODEC_CMEDIA |
| 78 | snd_hda_preset_cmedia, |
| 79 | #endif |
| 80 | #ifdef CONFIG_SND_HDA_CODEC_ANALOG |
| 81 | snd_hda_preset_analog, |
| 82 | #endif |
| 83 | #ifdef CONFIG_SND_HDA_CODEC_SIGMATEL |
| 84 | snd_hda_preset_sigmatel, |
| 85 | #endif |
| 86 | #ifdef CONFIG_SND_HDA_CODEC_SI3054 |
| 87 | snd_hda_preset_si3054, |
| 88 | #endif |
| 89 | #ifdef CONFIG_SND_HDA_CODEC_ATIHDMI |
| 90 | snd_hda_preset_atihdmi, |
| 91 | #endif |
| 92 | #ifdef CONFIG_SND_HDA_CODEC_CONEXANT |
| 93 | snd_hda_preset_conexant, |
| 94 | #endif |
| 95 | #ifdef CONFIG_SND_HDA_CODEC_VIA |
| 96 | snd_hda_preset_via, |
| 97 | #endif |
Wei Ni | 9a10eb2 | 2008-09-26 13:45:46 +0800 | [diff] [blame] | 98 | #ifdef CONFIG_SND_HDA_CODEC_NVHDMI |
| 99 | snd_hda_preset_nvhdmi, |
| 100 | #endif |
Wu, Fengguang | 9150487 | 2008-11-05 11:16:56 +0800 | [diff] [blame] | 101 | #ifdef CONFIG_SND_HDA_CODEC_INTELHDMI |
| 102 | snd_hda_preset_intelhdmi, |
| 103 | #endif |
Harvey Harrison | 3c9a320 | 2008-02-29 11:59:26 +0100 | [diff] [blame] | 104 | NULL |
| 105 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 107 | #ifdef CONFIG_SND_HDA_POWER_SAVE |
| 108 | static void hda_power_work(struct work_struct *work); |
| 109 | static void hda_keep_power_on(struct hda_codec *codec); |
| 110 | #else |
| 111 | static inline void hda_keep_power_on(struct hda_codec *codec) {} |
| 112 | #endif |
| 113 | |
Matthew Ranostay | 50a9f79 | 2008-10-25 01:05:45 -0400 | [diff] [blame] | 114 | const char *snd_hda_get_jack_location(u32 cfg) |
| 115 | { |
| 116 | static char *bases[7] = { |
| 117 | "N/A", "Rear", "Front", "Left", "Right", "Top", "Bottom", |
| 118 | }; |
| 119 | static unsigned char specials_idx[] = { |
| 120 | 0x07, 0x08, |
| 121 | 0x17, 0x18, 0x19, |
| 122 | 0x37, 0x38 |
| 123 | }; |
| 124 | static char *specials[] = { |
| 125 | "Rear Panel", "Drive Bar", |
| 126 | "Riser", "HDMI", "ATAPI", |
| 127 | "Mobile-In", "Mobile-Out" |
| 128 | }; |
| 129 | int i; |
| 130 | cfg = (cfg & AC_DEFCFG_LOCATION) >> AC_DEFCFG_LOCATION_SHIFT; |
| 131 | if ((cfg & 0x0f) < 7) |
| 132 | return bases[cfg & 0x0f]; |
| 133 | for (i = 0; i < ARRAY_SIZE(specials_idx); i++) { |
| 134 | if (cfg == specials_idx[i]) |
| 135 | return specials[i]; |
| 136 | } |
| 137 | return "UNKNOWN"; |
| 138 | } |
| 139 | |
| 140 | const char *snd_hda_get_jack_connectivity(u32 cfg) |
| 141 | { |
| 142 | static char *jack_locations[4] = { "Ext", "Int", "Sep", "Oth" }; |
| 143 | |
| 144 | return jack_locations[(cfg >> (AC_DEFCFG_LOCATION_SHIFT + 4)) & 3]; |
| 145 | } |
| 146 | |
| 147 | const char *snd_hda_get_jack_type(u32 cfg) |
| 148 | { |
| 149 | static char *jack_types[16] = { |
| 150 | "Line Out", "Speaker", "HP Out", "CD", |
| 151 | "SPDIF Out", "Digital Out", "Modem Line", "Modem Hand", |
| 152 | "Line In", "Aux", "Mic", "Telephony", |
| 153 | "SPDIF In", "Digitial In", "Reserved", "Other" |
| 154 | }; |
| 155 | |
| 156 | return jack_types[(cfg & AC_DEFCFG_DEVICE) |
| 157 | >> AC_DEFCFG_DEVICE_SHIFT]; |
| 158 | } |
| 159 | |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 160 | /* |
| 161 | * Compose a 32bit command word to be sent to the HD-audio controller |
| 162 | */ |
| 163 | static inline unsigned int |
| 164 | make_codec_cmd(struct hda_codec *codec, hda_nid_t nid, int direct, |
| 165 | unsigned int verb, unsigned int parm) |
| 166 | { |
| 167 | u32 val; |
| 168 | |
| 169 | val = (u32)(codec->addr & 0x0f) << 28; |
| 170 | val |= (u32)direct << 27; |
| 171 | val |= (u32)nid << 20; |
| 172 | val |= verb << 8; |
| 173 | val |= parm; |
| 174 | return val; |
| 175 | } |
| 176 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | /** |
| 178 | * snd_hda_codec_read - send a command and get the response |
| 179 | * @codec: the HDA codec |
| 180 | * @nid: NID to send the command |
| 181 | * @direct: direct flag |
| 182 | * @verb: the verb to send |
| 183 | * @parm: the parameter for the verb |
| 184 | * |
| 185 | * Send a single command and read the corresponding response. |
| 186 | * |
| 187 | * Returns the obtained response value, or -1 for an error. |
| 188 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 189 | unsigned int snd_hda_codec_read(struct hda_codec *codec, hda_nid_t nid, |
| 190 | int direct, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | unsigned int verb, unsigned int parm) |
| 192 | { |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 193 | struct hda_bus *bus = codec->bus; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | unsigned int res; |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 195 | |
| 196 | res = make_codec_cmd(codec, nid, direct, verb, parm); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 197 | snd_hda_power_up(codec); |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 198 | mutex_lock(&bus->cmd_mutex); |
| 199 | if (!bus->ops.command(bus, res)) |
| 200 | res = bus->ops.get_response(bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | else |
| 202 | res = (unsigned int)-1; |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 203 | mutex_unlock(&bus->cmd_mutex); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 204 | snd_hda_power_down(codec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | return res; |
| 206 | } |
| 207 | |
| 208 | /** |
| 209 | * snd_hda_codec_write - send a single command without waiting for response |
| 210 | * @codec: the HDA codec |
| 211 | * @nid: NID to send the command |
| 212 | * @direct: direct flag |
| 213 | * @verb: the verb to send |
| 214 | * @parm: the parameter for the verb |
| 215 | * |
| 216 | * Send a single command without waiting for response. |
| 217 | * |
| 218 | * Returns 0 if successful, or a negative error code. |
| 219 | */ |
| 220 | int snd_hda_codec_write(struct hda_codec *codec, hda_nid_t nid, int direct, |
| 221 | unsigned int verb, unsigned int parm) |
| 222 | { |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 223 | struct hda_bus *bus = codec->bus; |
| 224 | unsigned int res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | int err; |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 226 | |
| 227 | res = make_codec_cmd(codec, nid, direct, verb, parm); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 228 | snd_hda_power_up(codec); |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 229 | mutex_lock(&bus->cmd_mutex); |
| 230 | err = bus->ops.command(bus, res); |
| 231 | mutex_unlock(&bus->cmd_mutex); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 232 | snd_hda_power_down(codec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | return err; |
| 234 | } |
| 235 | |
| 236 | /** |
| 237 | * snd_hda_sequence_write - sequence writes |
| 238 | * @codec: the HDA codec |
| 239 | * @seq: VERB array to send |
| 240 | * |
| 241 | * Send the commands sequentially from the given array. |
| 242 | * The array must be terminated with NID=0. |
| 243 | */ |
| 244 | void snd_hda_sequence_write(struct hda_codec *codec, const struct hda_verb *seq) |
| 245 | { |
| 246 | for (; seq->nid; seq++) |
| 247 | snd_hda_codec_write(codec, seq->nid, 0, seq->verb, seq->param); |
| 248 | } |
| 249 | |
| 250 | /** |
| 251 | * snd_hda_get_sub_nodes - get the range of sub nodes |
| 252 | * @codec: the HDA codec |
| 253 | * @nid: NID to parse |
| 254 | * @start_id: the pointer to store the start NID |
| 255 | * |
| 256 | * Parse the NID and store the start NID of its sub-nodes. |
| 257 | * Returns the number of sub-nodes. |
| 258 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 259 | int snd_hda_get_sub_nodes(struct hda_codec *codec, hda_nid_t nid, |
| 260 | hda_nid_t *start_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | { |
| 262 | unsigned int parm; |
| 263 | |
| 264 | parm = snd_hda_param_read(codec, nid, AC_PAR_NODE_COUNT); |
Danny Tholen | e8a7f13 | 2007-09-11 21:41:56 +0200 | [diff] [blame] | 265 | if (parm == -1) |
| 266 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | *start_id = (parm >> 16) & 0x7fff; |
| 268 | return (int)(parm & 0x7fff); |
| 269 | } |
| 270 | |
| 271 | /** |
| 272 | * snd_hda_get_connections - get connection list |
| 273 | * @codec: the HDA codec |
| 274 | * @nid: NID to parse |
| 275 | * @conn_list: connection list array |
| 276 | * @max_conns: max. number of connections to store |
| 277 | * |
| 278 | * Parses the connection list of the given widget and stores the list |
| 279 | * of NIDs. |
| 280 | * |
| 281 | * Returns the number of connections, or a negative error code. |
| 282 | */ |
| 283 | int snd_hda_get_connections(struct hda_codec *codec, hda_nid_t nid, |
| 284 | hda_nid_t *conn_list, int max_conns) |
| 285 | { |
| 286 | unsigned int parm; |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 287 | int i, conn_len, conns; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | unsigned int shift, num_elems, mask; |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 289 | hda_nid_t prev_nid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | |
Takashi Iwai | da3cec3 | 2008-08-08 17:12:14 +0200 | [diff] [blame] | 291 | if (snd_BUG_ON(!conn_list || max_conns <= 0)) |
| 292 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | |
| 294 | parm = snd_hda_param_read(codec, nid, AC_PAR_CONNLIST_LEN); |
| 295 | if (parm & AC_CLIST_LONG) { |
| 296 | /* long form */ |
| 297 | shift = 16; |
| 298 | num_elems = 2; |
| 299 | } else { |
| 300 | /* short form */ |
| 301 | shift = 8; |
| 302 | num_elems = 4; |
| 303 | } |
| 304 | conn_len = parm & AC_CLIST_LENGTH; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | mask = (1 << (shift-1)) - 1; |
| 306 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 307 | if (!conn_len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | return 0; /* no connection */ |
| 309 | |
| 310 | if (conn_len == 1) { |
| 311 | /* single connection */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 312 | parm = snd_hda_codec_read(codec, nid, 0, |
| 313 | AC_VERB_GET_CONNECT_LIST, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | conn_list[0] = parm & mask; |
| 315 | return 1; |
| 316 | } |
| 317 | |
| 318 | /* multi connection */ |
| 319 | conns = 0; |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 320 | prev_nid = 0; |
| 321 | for (i = 0; i < conn_len; i++) { |
| 322 | int range_val; |
| 323 | hda_nid_t val, n; |
| 324 | |
| 325 | if (i % num_elems == 0) |
| 326 | parm = snd_hda_codec_read(codec, nid, 0, |
| 327 | AC_VERB_GET_CONNECT_LIST, i); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 328 | range_val = !!(parm & (1 << (shift-1))); /* ranges */ |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 329 | val = parm & mask; |
| 330 | parm >>= shift; |
| 331 | if (range_val) { |
| 332 | /* ranges between the previous and this one */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 333 | if (!prev_nid || prev_nid >= val) { |
| 334 | snd_printk(KERN_WARNING "hda_codec: " |
| 335 | "invalid dep_range_val %x:%x\n", |
| 336 | prev_nid, val); |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 337 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | } |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 339 | for (n = prev_nid + 1; n <= val; n++) { |
| 340 | if (conns >= max_conns) { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 341 | snd_printk(KERN_ERR |
| 342 | "Too many connections\n"); |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 343 | return -EINVAL; |
| 344 | } |
| 345 | conn_list[conns++] = n; |
| 346 | } |
| 347 | } else { |
| 348 | if (conns >= max_conns) { |
| 349 | snd_printk(KERN_ERR "Too many connections\n"); |
| 350 | return -EINVAL; |
| 351 | } |
| 352 | conn_list[conns++] = val; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | } |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 354 | prev_nid = val; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | } |
| 356 | return conns; |
| 357 | } |
| 358 | |
| 359 | |
| 360 | /** |
| 361 | * snd_hda_queue_unsol_event - add an unsolicited event to queue |
| 362 | * @bus: the BUS |
| 363 | * @res: unsolicited event (lower 32bit of RIRB entry) |
| 364 | * @res_ex: codec addr and flags (upper 32bit or RIRB entry) |
| 365 | * |
| 366 | * Adds the given event to the queue. The events are processed in |
| 367 | * the workqueue asynchronously. Call this function in the interrupt |
| 368 | * hanlder when RIRB receives an unsolicited event. |
| 369 | * |
| 370 | * Returns 0 if successful, or a negative error code. |
| 371 | */ |
| 372 | int snd_hda_queue_unsol_event(struct hda_bus *bus, u32 res, u32 res_ex) |
| 373 | { |
| 374 | struct hda_bus_unsolicited *unsol; |
| 375 | unsigned int wp; |
| 376 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 377 | unsol = bus->unsol; |
| 378 | if (!unsol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | return 0; |
| 380 | |
| 381 | wp = (unsol->wp + 1) % HDA_UNSOL_QUEUE_SIZE; |
| 382 | unsol->wp = wp; |
| 383 | |
| 384 | wp <<= 1; |
| 385 | unsol->queue[wp] = res; |
| 386 | unsol->queue[wp + 1] = res_ex; |
| 387 | |
Takashi Iwai | e250af2 | 2006-12-19 17:08:52 +0100 | [diff] [blame] | 388 | schedule_work(&unsol->work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | |
| 390 | return 0; |
| 391 | } |
| 392 | |
| 393 | /* |
Wu Fengguang | 5c1d1a9 | 2008-10-07 14:17:53 +0800 | [diff] [blame] | 394 | * process queued unsolicited events |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | */ |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 396 | static void process_unsol_events(struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | { |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 398 | struct hda_bus_unsolicited *unsol = |
| 399 | container_of(work, struct hda_bus_unsolicited, work); |
| 400 | struct hda_bus *bus = unsol->bus; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | struct hda_codec *codec; |
| 402 | unsigned int rp, caddr, res; |
| 403 | |
| 404 | while (unsol->rp != unsol->wp) { |
| 405 | rp = (unsol->rp + 1) % HDA_UNSOL_QUEUE_SIZE; |
| 406 | unsol->rp = rp; |
| 407 | rp <<= 1; |
| 408 | res = unsol->queue[rp]; |
| 409 | caddr = unsol->queue[rp + 1]; |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 410 | if (!(caddr & (1 << 4))) /* no unsolicited event? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | continue; |
| 412 | codec = bus->caddr_tbl[caddr & 0x0f]; |
| 413 | if (codec && codec->patch_ops.unsol_event) |
| 414 | codec->patch_ops.unsol_event(codec, res); |
| 415 | } |
| 416 | } |
| 417 | |
| 418 | /* |
| 419 | * initialize unsolicited queue |
| 420 | */ |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 421 | static int init_unsol_queue(struct hda_bus *bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | { |
| 423 | struct hda_bus_unsolicited *unsol; |
| 424 | |
Takashi Iwai | 9f146bb | 2005-11-17 11:07:49 +0100 | [diff] [blame] | 425 | if (bus->unsol) /* already initialized */ |
| 426 | return 0; |
| 427 | |
Takashi Iwai | e560d8d | 2005-09-09 14:21:46 +0200 | [diff] [blame] | 428 | unsol = kzalloc(sizeof(*unsol), GFP_KERNEL); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 429 | if (!unsol) { |
| 430 | snd_printk(KERN_ERR "hda_codec: " |
| 431 | "can't allocate unsolicited queue\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | return -ENOMEM; |
| 433 | } |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 434 | INIT_WORK(&unsol->work, process_unsol_events); |
| 435 | unsol->bus = bus; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | bus->unsol = unsol; |
| 437 | return 0; |
| 438 | } |
| 439 | |
| 440 | /* |
| 441 | * destructor |
| 442 | */ |
| 443 | static void snd_hda_codec_free(struct hda_codec *codec); |
| 444 | |
| 445 | static int snd_hda_bus_free(struct hda_bus *bus) |
| 446 | { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 447 | struct hda_codec *codec, *n; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 449 | if (!bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | return 0; |
| 451 | if (bus->unsol) { |
Takashi Iwai | e250af2 | 2006-12-19 17:08:52 +0100 | [diff] [blame] | 452 | flush_scheduled_work(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | kfree(bus->unsol); |
| 454 | } |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 455 | list_for_each_entry_safe(codec, n, &bus->codec_list, list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | snd_hda_codec_free(codec); |
| 457 | } |
| 458 | if (bus->ops.private_free) |
| 459 | bus->ops.private_free(bus); |
| 460 | kfree(bus); |
| 461 | return 0; |
| 462 | } |
| 463 | |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 464 | static int snd_hda_bus_dev_free(struct snd_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | { |
| 466 | struct hda_bus *bus = device->device_data; |
| 467 | return snd_hda_bus_free(bus); |
| 468 | } |
| 469 | |
Takashi Iwai | d7ffba1 | 2008-07-30 15:01:46 +0200 | [diff] [blame] | 470 | #ifdef CONFIG_SND_HDA_HWDEP |
| 471 | static int snd_hda_bus_dev_register(struct snd_device *device) |
| 472 | { |
| 473 | struct hda_bus *bus = device->device_data; |
| 474 | struct hda_codec *codec; |
| 475 | list_for_each_entry(codec, &bus->codec_list, list) { |
| 476 | snd_hda_hwdep_add_sysfs(codec); |
| 477 | } |
| 478 | return 0; |
| 479 | } |
| 480 | #else |
| 481 | #define snd_hda_bus_dev_register NULL |
| 482 | #endif |
| 483 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | /** |
| 485 | * snd_hda_bus_new - create a HDA bus |
| 486 | * @card: the card entry |
| 487 | * @temp: the template for hda_bus information |
| 488 | * @busp: the pointer to store the created bus instance |
| 489 | * |
| 490 | * Returns 0 if successful, or a negative error code. |
| 491 | */ |
Takashi Iwai | 756e2b0 | 2007-04-16 11:27:07 +0200 | [diff] [blame] | 492 | int __devinit snd_hda_bus_new(struct snd_card *card, |
| 493 | const struct hda_bus_template *temp, |
| 494 | struct hda_bus **busp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | { |
| 496 | struct hda_bus *bus; |
| 497 | int err; |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 498 | static struct snd_device_ops dev_ops = { |
Takashi Iwai | d7ffba1 | 2008-07-30 15:01:46 +0200 | [diff] [blame] | 499 | .dev_register = snd_hda_bus_dev_register, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | .dev_free = snd_hda_bus_dev_free, |
| 501 | }; |
| 502 | |
Takashi Iwai | da3cec3 | 2008-08-08 17:12:14 +0200 | [diff] [blame] | 503 | if (snd_BUG_ON(!temp)) |
| 504 | return -EINVAL; |
| 505 | if (snd_BUG_ON(!temp->ops.command || !temp->ops.get_response)) |
| 506 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | |
| 508 | if (busp) |
| 509 | *busp = NULL; |
| 510 | |
Takashi Iwai | e560d8d | 2005-09-09 14:21:46 +0200 | [diff] [blame] | 511 | bus = kzalloc(sizeof(*bus), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | if (bus == NULL) { |
| 513 | snd_printk(KERN_ERR "can't allocate struct hda_bus\n"); |
| 514 | return -ENOMEM; |
| 515 | } |
| 516 | |
| 517 | bus->card = card; |
| 518 | bus->private_data = temp->private_data; |
| 519 | bus->pci = temp->pci; |
| 520 | bus->modelname = temp->modelname; |
| 521 | bus->ops = temp->ops; |
| 522 | |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 523 | mutex_init(&bus->cmd_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | INIT_LIST_HEAD(&bus->codec_list); |
| 525 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 526 | err = snd_device_new(card, SNDRV_DEV_BUS, bus, &dev_ops); |
| 527 | if (err < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | snd_hda_bus_free(bus); |
| 529 | return err; |
| 530 | } |
| 531 | if (busp) |
| 532 | *busp = bus; |
| 533 | return 0; |
| 534 | } |
| 535 | |
Takashi Iwai | 8246761 | 2007-07-27 19:15:54 +0200 | [diff] [blame] | 536 | #ifdef CONFIG_SND_HDA_GENERIC |
| 537 | #define is_generic_config(codec) \ |
Takashi Iwai | f44ac83 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 538 | (codec->modelname && !strcmp(codec->modelname, "generic")) |
Takashi Iwai | 8246761 | 2007-07-27 19:15:54 +0200 | [diff] [blame] | 539 | #else |
| 540 | #define is_generic_config(codec) 0 |
| 541 | #endif |
| 542 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | /* |
| 544 | * find a matching codec preset |
| 545 | */ |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 546 | static const struct hda_codec_preset * |
Takashi Iwai | 756e2b0 | 2007-04-16 11:27:07 +0200 | [diff] [blame] | 547 | find_codec_preset(struct hda_codec *codec) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | { |
| 549 | const struct hda_codec_preset **tbl, *preset; |
| 550 | |
Takashi Iwai | 8246761 | 2007-07-27 19:15:54 +0200 | [diff] [blame] | 551 | if (is_generic_config(codec)) |
Takashi Iwai | d5ad630 | 2007-03-07 15:55:59 +0100 | [diff] [blame] | 552 | return NULL; /* use the generic parser */ |
| 553 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | for (tbl = hda_preset_tables; *tbl; tbl++) { |
| 555 | for (preset = *tbl; preset->id; preset++) { |
| 556 | u32 mask = preset->mask; |
Marc Boucher | ca7cfae | 2008-01-22 15:32:25 +0100 | [diff] [blame] | 557 | if (preset->afg && preset->afg != codec->afg) |
| 558 | continue; |
| 559 | if (preset->mfg && preset->mfg != codec->mfg) |
| 560 | continue; |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 561 | if (!mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | mask = ~0; |
Takashi Iwai | 9c7f852 | 2006-06-28 15:08:22 +0200 | [diff] [blame] | 563 | if (preset->id == (codec->vendor_id & mask) && |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 564 | (!preset->rev || |
Takashi Iwai | 9c7f852 | 2006-06-28 15:08:22 +0200 | [diff] [blame] | 565 | preset->rev == codec->revision_id)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | return preset; |
| 567 | } |
| 568 | } |
| 569 | return NULL; |
| 570 | } |
| 571 | |
| 572 | /* |
Takashi Iwai | f44ac83 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 573 | * get_codec_name - store the codec name |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | */ |
Takashi Iwai | f44ac83 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 575 | static int get_codec_name(struct hda_codec *codec) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | { |
| 577 | const struct hda_vendor_id *c; |
| 578 | const char *vendor = NULL; |
| 579 | u16 vendor_id = codec->vendor_id >> 16; |
Takashi Iwai | f44ac83 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 580 | char tmp[16], name[32]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | |
| 582 | for (c = hda_vendor_ids; c->id; c++) { |
| 583 | if (c->id == vendor_id) { |
| 584 | vendor = c->name; |
| 585 | break; |
| 586 | } |
| 587 | } |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 588 | if (!vendor) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | sprintf(tmp, "Generic %04x", vendor_id); |
| 590 | vendor = tmp; |
| 591 | } |
| 592 | if (codec->preset && codec->preset->name) |
Takashi Iwai | f44ac83 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 593 | snprintf(name, sizeof(name), "%s %s", vendor, |
| 594 | codec->preset->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | else |
Takashi Iwai | f44ac83 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 596 | snprintf(name, sizeof(name), "%s ID %x", vendor, |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 597 | codec->vendor_id & 0xffff); |
Takashi Iwai | f44ac83 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 598 | codec->name = kstrdup(name, GFP_KERNEL); |
| 599 | if (!codec->name) |
| 600 | return -ENOMEM; |
| 601 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | } |
| 603 | |
| 604 | /* |
Sasha Khapyorsky | 673b683 | 2005-08-11 11:00:16 +0200 | [diff] [blame] | 605 | * look for an AFG and MFG nodes |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | */ |
Takashi Iwai | 756e2b0 | 2007-04-16 11:27:07 +0200 | [diff] [blame] | 607 | static void __devinit setup_fg_nodes(struct hda_codec *codec) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | { |
| 609 | int i, total_nodes; |
| 610 | hda_nid_t nid; |
| 611 | |
| 612 | total_nodes = snd_hda_get_sub_nodes(codec, AC_NODE_ROOT, &nid); |
| 613 | for (i = 0; i < total_nodes; i++, nid++) { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 614 | unsigned int func; |
| 615 | func = snd_hda_param_read(codec, nid, AC_PAR_FUNCTION_TYPE); |
| 616 | switch (func & 0xff) { |
Sasha Khapyorsky | 673b683 | 2005-08-11 11:00:16 +0200 | [diff] [blame] | 617 | case AC_GRP_AUDIO_FUNCTION: |
| 618 | codec->afg = nid; |
| 619 | break; |
| 620 | case AC_GRP_MODEM_FUNCTION: |
| 621 | codec->mfg = nid; |
| 622 | break; |
| 623 | default: |
| 624 | break; |
| 625 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 627 | } |
| 628 | |
| 629 | /* |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 630 | * read widget caps for each widget and store in cache |
| 631 | */ |
| 632 | static int read_widget_caps(struct hda_codec *codec, hda_nid_t fg_node) |
| 633 | { |
| 634 | int i; |
| 635 | hda_nid_t nid; |
| 636 | |
| 637 | codec->num_nodes = snd_hda_get_sub_nodes(codec, fg_node, |
| 638 | &codec->start_nid); |
| 639 | codec->wcaps = kmalloc(codec->num_nodes * 4, GFP_KERNEL); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 640 | if (!codec->wcaps) |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 641 | return -ENOMEM; |
| 642 | nid = codec->start_nid; |
| 643 | for (i = 0; i < codec->num_nodes; i++, nid++) |
| 644 | codec->wcaps[i] = snd_hda_param_read(codec, nid, |
| 645 | AC_PAR_AUDIO_WIDGET_CAP); |
| 646 | return 0; |
| 647 | } |
| 648 | |
| 649 | |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 650 | static void init_hda_cache(struct hda_cache_rec *cache, |
| 651 | unsigned int record_size); |
Takashi Iwai | 1fcaee6 | 2007-08-23 00:01:09 +0200 | [diff] [blame] | 652 | static void free_hda_cache(struct hda_cache_rec *cache); |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 653 | |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 654 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 655 | * codec destructor |
| 656 | */ |
| 657 | static void snd_hda_codec_free(struct hda_codec *codec) |
| 658 | { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 659 | if (!codec) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | return; |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 661 | #ifdef CONFIG_SND_HDA_POWER_SAVE |
| 662 | cancel_delayed_work(&codec->power_work); |
Takashi Iwai | 2525fdc4 | 2007-08-15 22:18:22 +0200 | [diff] [blame] | 663 | flush_scheduled_work(); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 664 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | list_del(&codec->list); |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 666 | snd_array_free(&codec->mixers); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | codec->bus->caddr_tbl[codec->addr] = NULL; |
| 668 | if (codec->patch_ops.free) |
| 669 | codec->patch_ops.free(codec); |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 670 | free_hda_cache(&codec->amp_cache); |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 671 | free_hda_cache(&codec->cmd_cache); |
Takashi Iwai | f44ac83 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 672 | kfree(codec->name); |
| 673 | kfree(codec->modelname); |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 674 | kfree(codec->wcaps); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | kfree(codec); |
| 676 | } |
| 677 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | /** |
| 679 | * snd_hda_codec_new - create a HDA codec |
| 680 | * @bus: the bus to assign |
| 681 | * @codec_addr: the codec address |
| 682 | * @codecp: the pointer to store the generated codec |
| 683 | * |
| 684 | * Returns 0 if successful, or a negative error code. |
| 685 | */ |
Takashi Iwai | 756e2b0 | 2007-04-16 11:27:07 +0200 | [diff] [blame] | 686 | int __devinit snd_hda_codec_new(struct hda_bus *bus, unsigned int codec_addr, |
| 687 | struct hda_codec **codecp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 688 | { |
| 689 | struct hda_codec *codec; |
Jaroslav Kysela | ba44368 | 2008-08-13 20:55:32 +0200 | [diff] [blame] | 690 | char component[31]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | int err; |
| 692 | |
Takashi Iwai | da3cec3 | 2008-08-08 17:12:14 +0200 | [diff] [blame] | 693 | if (snd_BUG_ON(!bus)) |
| 694 | return -EINVAL; |
| 695 | if (snd_BUG_ON(codec_addr > HDA_MAX_CODEC_ADDRESS)) |
| 696 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | |
| 698 | if (bus->caddr_tbl[codec_addr]) { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 699 | snd_printk(KERN_ERR "hda_codec: " |
| 700 | "address 0x%x is already occupied\n", codec_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | return -EBUSY; |
| 702 | } |
| 703 | |
Takashi Iwai | e560d8d | 2005-09-09 14:21:46 +0200 | [diff] [blame] | 704 | codec = kzalloc(sizeof(*codec), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | if (codec == NULL) { |
| 706 | snd_printk(KERN_ERR "can't allocate struct hda_codec\n"); |
| 707 | return -ENOMEM; |
| 708 | } |
| 709 | |
| 710 | codec->bus = bus; |
| 711 | codec->addr = codec_addr; |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 712 | mutex_init(&codec->spdif_mutex); |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 713 | init_hda_cache(&codec->amp_cache, sizeof(struct hda_amp_info)); |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 714 | init_hda_cache(&codec->cmd_cache, sizeof(struct hda_cache_head)); |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 715 | snd_array_init(&codec->mixers, sizeof(struct snd_kcontrol *), 32); |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 716 | if (codec->bus->modelname) { |
| 717 | codec->modelname = kstrdup(codec->bus->modelname, GFP_KERNEL); |
| 718 | if (!codec->modelname) { |
| 719 | snd_hda_codec_free(codec); |
| 720 | return -ENODEV; |
| 721 | } |
| 722 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 724 | #ifdef CONFIG_SND_HDA_POWER_SAVE |
| 725 | INIT_DELAYED_WORK(&codec->power_work, hda_power_work); |
| 726 | /* snd_hda_codec_new() marks the codec as power-up, and leave it as is. |
| 727 | * the caller has to power down appropriatley after initialization |
| 728 | * phase. |
| 729 | */ |
| 730 | hda_keep_power_on(codec); |
| 731 | #endif |
| 732 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | list_add_tail(&codec->list, &bus->codec_list); |
| 734 | bus->caddr_tbl[codec_addr] = codec; |
| 735 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 736 | codec->vendor_id = snd_hda_param_read(codec, AC_NODE_ROOT, |
| 737 | AC_PAR_VENDOR_ID); |
Takashi Iwai | 111d3af | 2006-02-16 18:17:58 +0100 | [diff] [blame] | 738 | if (codec->vendor_id == -1) |
| 739 | /* read again, hopefully the access method was corrected |
| 740 | * in the last read... |
| 741 | */ |
| 742 | codec->vendor_id = snd_hda_param_read(codec, AC_NODE_ROOT, |
| 743 | AC_PAR_VENDOR_ID); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 744 | codec->subsystem_id = snd_hda_param_read(codec, AC_NODE_ROOT, |
| 745 | AC_PAR_SUBSYSTEM_ID); |
| 746 | codec->revision_id = snd_hda_param_read(codec, AC_NODE_ROOT, |
| 747 | AC_PAR_REV_ID); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 748 | |
Sasha Khapyorsky | 673b683 | 2005-08-11 11:00:16 +0200 | [diff] [blame] | 749 | setup_fg_nodes(codec); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 750 | if (!codec->afg && !codec->mfg) { |
Sasha Khapyorsky | 673b683 | 2005-08-11 11:00:16 +0200 | [diff] [blame] | 751 | snd_printdd("hda_codec: no AFG or MFG node found\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | snd_hda_codec_free(codec); |
| 753 | return -ENODEV; |
| 754 | } |
| 755 | |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 756 | if (read_widget_caps(codec, codec->afg ? codec->afg : codec->mfg) < 0) { |
| 757 | snd_printk(KERN_ERR "hda_codec: cannot malloc\n"); |
| 758 | snd_hda_codec_free(codec); |
| 759 | return -ENOMEM; |
| 760 | } |
| 761 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 762 | if (!codec->subsystem_id) { |
Takashi Iwai | 86284e4 | 2005-10-11 15:05:54 +0200 | [diff] [blame] | 763 | hda_nid_t nid = codec->afg ? codec->afg : codec->mfg; |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 764 | codec->subsystem_id = |
| 765 | snd_hda_codec_read(codec, nid, 0, |
| 766 | AC_VERB_GET_SUBSYSTEM_ID, 0); |
Takashi Iwai | 86284e4 | 2005-10-11 15:05:54 +0200 | [diff] [blame] | 767 | } |
Takashi Iwai | f44ac83 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 768 | if (bus->modelname) |
| 769 | codec->modelname = kstrdup(bus->modelname, GFP_KERNEL); |
Takashi Iwai | 86284e4 | 2005-10-11 15:05:54 +0200 | [diff] [blame] | 770 | |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 771 | err = snd_hda_codec_configure(codec); |
| 772 | if (err < 0) { |
| 773 | snd_hda_codec_free(codec); |
| 774 | return err; |
| 775 | } |
| 776 | snd_hda_codec_proc_new(codec); |
| 777 | |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 778 | snd_hda_create_hwdep(codec); |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 779 | |
| 780 | sprintf(component, "HDA:%08x,%08x,%08x", codec->vendor_id, |
| 781 | codec->subsystem_id, codec->revision_id); |
| 782 | snd_component_add(codec->bus->card, component); |
| 783 | |
| 784 | if (codecp) |
| 785 | *codecp = codec; |
| 786 | return 0; |
| 787 | } |
| 788 | |
| 789 | int snd_hda_codec_configure(struct hda_codec *codec) |
| 790 | { |
| 791 | int err; |
| 792 | |
Takashi Iwai | d5ad630 | 2007-03-07 15:55:59 +0100 | [diff] [blame] | 793 | codec->preset = find_codec_preset(codec); |
Takashi Iwai | f44ac83 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 794 | if (!codec->name) { |
| 795 | err = get_codec_name(codec); |
| 796 | if (err < 0) |
| 797 | return err; |
| 798 | } |
Takashi Iwai | 43ea1d4 | 2007-04-26 19:12:08 +0200 | [diff] [blame] | 799 | /* audio codec should override the mixer name */ |
Takashi Iwai | f44ac83 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 800 | if (codec->afg || !*codec->bus->card->mixername) |
| 801 | strlcpy(codec->bus->card->mixername, codec->name, |
| 802 | sizeof(codec->bus->card->mixername)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | |
Takashi Iwai | 8246761 | 2007-07-27 19:15:54 +0200 | [diff] [blame] | 804 | if (is_generic_config(codec)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 805 | err = snd_hda_parse_generic_codec(codec); |
Takashi Iwai | 8246761 | 2007-07-27 19:15:54 +0200 | [diff] [blame] | 806 | goto patched; |
| 807 | } |
Takashi Iwai | 8246761 | 2007-07-27 19:15:54 +0200 | [diff] [blame] | 808 | if (codec->preset && codec->preset->patch) { |
| 809 | err = codec->preset->patch(codec); |
| 810 | goto patched; |
| 811 | } |
| 812 | |
| 813 | /* call the default parser */ |
Takashi Iwai | 8246761 | 2007-07-27 19:15:54 +0200 | [diff] [blame] | 814 | err = snd_hda_parse_generic_codec(codec); |
Takashi Iwai | 35a1e0c | 2007-10-19 08:13:40 +0200 | [diff] [blame] | 815 | if (err < 0) |
| 816 | printk(KERN_ERR "hda-codec: No codec parser is available\n"); |
Takashi Iwai | 8246761 | 2007-07-27 19:15:54 +0200 | [diff] [blame] | 817 | |
| 818 | patched: |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 819 | if (!err && codec->patch_ops.unsol_event) |
| 820 | err = init_unsol_queue(codec->bus); |
| 821 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 822 | } |
| 823 | |
| 824 | /** |
| 825 | * snd_hda_codec_setup_stream - set up the codec for streaming |
| 826 | * @codec: the CODEC to set up |
| 827 | * @nid: the NID to set up |
| 828 | * @stream_tag: stream tag to pass, it's between 0x1 and 0xf. |
| 829 | * @channel_id: channel id to pass, zero based. |
| 830 | * @format: stream format. |
| 831 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 832 | void snd_hda_codec_setup_stream(struct hda_codec *codec, hda_nid_t nid, |
| 833 | u32 stream_tag, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | int channel_id, int format) |
| 835 | { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 836 | if (!nid) |
Takashi Iwai | d21b37e | 2005-04-20 13:45:55 +0200 | [diff] [blame] | 837 | return; |
| 838 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 839 | snd_printdd("hda_codec_setup_stream: " |
| 840 | "NID=0x%x, stream=0x%x, channel=%d, format=0x%x\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 841 | nid, stream_tag, channel_id, format); |
| 842 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CHANNEL_STREAMID, |
| 843 | (stream_tag << 4) | channel_id); |
| 844 | msleep(1); |
| 845 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_STREAM_FORMAT, format); |
| 846 | } |
| 847 | |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 848 | void snd_hda_codec_cleanup_stream(struct hda_codec *codec, hda_nid_t nid) |
| 849 | { |
| 850 | if (!nid) |
| 851 | return; |
| 852 | |
| 853 | snd_printdd("hda_codec_cleanup_stream: NID=0x%x\n", nid); |
| 854 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CHANNEL_STREAMID, 0); |
| 855 | #if 0 /* keep the format */ |
| 856 | msleep(1); |
| 857 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_STREAM_FORMAT, 0); |
| 858 | #endif |
| 859 | } |
| 860 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 861 | /* |
| 862 | * amp access functions |
| 863 | */ |
| 864 | |
Takashi Iwai | 4a19fae | 2005-06-08 14:43:58 +0200 | [diff] [blame] | 865 | /* FIXME: more better hash key? */ |
| 866 | #define HDA_HASH_KEY(nid,dir,idx) (u32)((nid) + ((idx) << 16) + ((dir) << 24)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 867 | #define INFO_AMP_CAPS (1<<0) |
Takashi Iwai | 4a19fae | 2005-06-08 14:43:58 +0200 | [diff] [blame] | 868 | #define INFO_AMP_VOL(ch) (1 << (1 + (ch))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | |
| 870 | /* initialize the hash table */ |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 871 | static void __devinit init_hda_cache(struct hda_cache_rec *cache, |
| 872 | unsigned int record_size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 873 | { |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 874 | memset(cache, 0, sizeof(*cache)); |
| 875 | memset(cache->hash, 0xff, sizeof(cache->hash)); |
Takashi Iwai | 603c401 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 876 | snd_array_init(&cache->buf, record_size, 64); |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 877 | } |
| 878 | |
Takashi Iwai | 1fcaee6 | 2007-08-23 00:01:09 +0200 | [diff] [blame] | 879 | static void free_hda_cache(struct hda_cache_rec *cache) |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 880 | { |
Takashi Iwai | 603c401 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 881 | snd_array_free(&cache->buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 882 | } |
| 883 | |
| 884 | /* query the hash. allocate an entry if not found. */ |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 885 | static struct hda_cache_head *get_alloc_hash(struct hda_cache_rec *cache, |
| 886 | u32 key) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 887 | { |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 888 | u16 idx = key % (u16)ARRAY_SIZE(cache->hash); |
| 889 | u16 cur = cache->hash[idx]; |
Takashi Iwai | 603c401 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 890 | struct hda_cache_head *info_head = cache->buf.list; |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 891 | struct hda_cache_head *info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 892 | |
| 893 | while (cur != 0xffff) { |
Takashi Iwai | 603c401 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 894 | info = &info_head[cur]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 895 | if (info->key == key) |
| 896 | return info; |
| 897 | cur = info->next; |
| 898 | } |
| 899 | |
| 900 | /* add a new hash entry */ |
Takashi Iwai | 603c401 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 901 | info = snd_array_new(&cache->buf); |
Takashi Iwai | c217429 | 2008-11-07 00:23:30 +0100 | [diff] [blame] | 902 | if (!info) |
| 903 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 904 | info->key = key; |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 905 | info->val = 0; |
| 906 | info->next = cache->hash[idx]; |
| 907 | cache->hash[idx] = cur; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | |
| 909 | return info; |
| 910 | } |
| 911 | |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 912 | /* query and allocate an amp hash entry */ |
| 913 | static inline struct hda_amp_info * |
| 914 | get_alloc_amp_hash(struct hda_codec *codec, u32 key) |
| 915 | { |
| 916 | return (struct hda_amp_info *)get_alloc_hash(&codec->amp_cache, key); |
| 917 | } |
| 918 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 919 | /* |
| 920 | * query AMP capabilities for the given widget and direction |
| 921 | */ |
Matthew Ranostay | 09a9995 | 2008-01-24 11:49:21 +0100 | [diff] [blame] | 922 | 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] | 923 | { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 924 | struct hda_amp_info *info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 925 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 926 | info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, direction, 0)); |
| 927 | if (!info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | return 0; |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 929 | if (!(info->head.val & INFO_AMP_CAPS)) { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 930 | if (!(get_wcaps(codec, nid) & AC_WCAP_AMP_OVRD)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 931 | nid = codec->afg; |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 932 | info->amp_caps = snd_hda_param_read(codec, nid, |
| 933 | direction == HDA_OUTPUT ? |
| 934 | AC_PAR_AMP_OUT_CAP : |
| 935 | AC_PAR_AMP_IN_CAP); |
Takashi Iwai | b75e53f | 2007-05-10 16:56:09 +0200 | [diff] [blame] | 936 | if (info->amp_caps) |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 937 | info->head.val |= INFO_AMP_CAPS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 938 | } |
| 939 | return info->amp_caps; |
| 940 | } |
| 941 | |
Takashi Iwai | 897cc18 | 2007-05-29 19:01:37 +0200 | [diff] [blame] | 942 | int snd_hda_override_amp_caps(struct hda_codec *codec, hda_nid_t nid, int dir, |
| 943 | unsigned int caps) |
| 944 | { |
| 945 | struct hda_amp_info *info; |
| 946 | |
| 947 | info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, dir, 0)); |
| 948 | if (!info) |
| 949 | return -EINVAL; |
| 950 | info->amp_caps = caps; |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 951 | info->head.val |= INFO_AMP_CAPS; |
Takashi Iwai | 897cc18 | 2007-05-29 19:01:37 +0200 | [diff] [blame] | 952 | return 0; |
| 953 | } |
| 954 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 955 | /* |
| 956 | * read the current volume to info |
Takashi Iwai | 4a19fae | 2005-06-08 14:43:58 +0200 | [diff] [blame] | 957 | * if the cache exists, read the cache value. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 958 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 959 | static unsigned int get_vol_mute(struct hda_codec *codec, |
| 960 | struct hda_amp_info *info, hda_nid_t nid, |
| 961 | int ch, int direction, int index) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 962 | { |
| 963 | u32 val, parm; |
| 964 | |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 965 | if (info->head.val & INFO_AMP_VOL(ch)) |
Takashi Iwai | 4a19fae | 2005-06-08 14:43:58 +0200 | [diff] [blame] | 966 | return info->vol[ch]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 967 | |
| 968 | parm = ch ? AC_AMP_GET_RIGHT : AC_AMP_GET_LEFT; |
| 969 | parm |= direction == HDA_OUTPUT ? AC_AMP_GET_OUTPUT : AC_AMP_GET_INPUT; |
| 970 | parm |= index; |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 971 | val = snd_hda_codec_read(codec, nid, 0, |
| 972 | AC_VERB_GET_AMP_GAIN_MUTE, parm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 973 | info->vol[ch] = val & 0xff; |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 974 | info->head.val |= INFO_AMP_VOL(ch); |
Takashi Iwai | 4a19fae | 2005-06-08 14:43:58 +0200 | [diff] [blame] | 975 | return info->vol[ch]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 976 | } |
| 977 | |
| 978 | /* |
Takashi Iwai | 4a19fae | 2005-06-08 14:43:58 +0200 | [diff] [blame] | 979 | * write the current volume in info to the h/w and update the cache |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 980 | */ |
Takashi Iwai | 4a19fae | 2005-06-08 14:43:58 +0200 | [diff] [blame] | 981 | 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] | 982 | hda_nid_t nid, int ch, int direction, int index, |
| 983 | int val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | { |
| 985 | u32 parm; |
| 986 | |
| 987 | parm = ch ? AC_AMP_SET_RIGHT : AC_AMP_SET_LEFT; |
| 988 | parm |= direction == HDA_OUTPUT ? AC_AMP_SET_OUTPUT : AC_AMP_SET_INPUT; |
| 989 | parm |= index << AC_AMP_SET_INDEX_SHIFT; |
| 990 | parm |= val; |
| 991 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE, parm); |
Takashi Iwai | 4a19fae | 2005-06-08 14:43:58 +0200 | [diff] [blame] | 992 | info->vol[ch] = val; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 993 | } |
| 994 | |
| 995 | /* |
Takashi Iwai | 4a19fae | 2005-06-08 14:43:58 +0200 | [diff] [blame] | 996 | * 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] | 997 | */ |
Takashi Iwai | 834be88 | 2006-03-01 14:16:17 +0100 | [diff] [blame] | 998 | int snd_hda_codec_amp_read(struct hda_codec *codec, hda_nid_t nid, int ch, |
| 999 | int direction, int index) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1000 | { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1001 | struct hda_amp_info *info; |
| 1002 | info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, direction, index)); |
| 1003 | if (!info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1004 | return 0; |
Takashi Iwai | 4a19fae | 2005-06-08 14:43:58 +0200 | [diff] [blame] | 1005 | return get_vol_mute(codec, info, nid, ch, direction, index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1006 | } |
| 1007 | |
Takashi Iwai | 4a19fae | 2005-06-08 14:43:58 +0200 | [diff] [blame] | 1008 | /* |
| 1009 | * update the AMP value, mask = bit mask to set, val = the value |
| 1010 | */ |
Takashi Iwai | 834be88 | 2006-03-01 14:16:17 +0100 | [diff] [blame] | 1011 | int snd_hda_codec_amp_update(struct hda_codec *codec, hda_nid_t nid, int ch, |
| 1012 | int direction, int idx, int mask, int val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1013 | { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1014 | struct hda_amp_info *info; |
Takashi Iwai | 4a19fae | 2005-06-08 14:43:58 +0200 | [diff] [blame] | 1015 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1016 | info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, direction, idx)); |
| 1017 | if (!info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1018 | return 0; |
Takashi Iwai | 4a19fae | 2005-06-08 14:43:58 +0200 | [diff] [blame] | 1019 | val &= mask; |
| 1020 | val |= get_vol_mute(codec, info, nid, ch, direction, idx) & ~mask; |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 1021 | if (info->vol[ch] == val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1022 | return 0; |
Takashi Iwai | 4a19fae | 2005-06-08 14:43:58 +0200 | [diff] [blame] | 1023 | put_vol_mute(codec, info, nid, ch, direction, idx, val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1024 | return 1; |
| 1025 | } |
| 1026 | |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 1027 | /* |
| 1028 | * update the AMP stereo with the same mask and value |
| 1029 | */ |
| 1030 | int snd_hda_codec_amp_stereo(struct hda_codec *codec, hda_nid_t nid, |
| 1031 | int direction, int idx, int mask, int val) |
| 1032 | { |
| 1033 | int ch, ret = 0; |
| 1034 | for (ch = 0; ch < 2; ch++) |
| 1035 | ret |= snd_hda_codec_amp_update(codec, nid, ch, direction, |
| 1036 | idx, mask, val); |
| 1037 | return ret; |
| 1038 | } |
| 1039 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 1040 | #ifdef SND_HDA_NEEDS_RESUME |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 1041 | /* resume the all amp commands from the cache */ |
| 1042 | void snd_hda_codec_resume_amp(struct hda_codec *codec) |
| 1043 | { |
Takashi Iwai | 603c401 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 1044 | struct hda_amp_info *buffer = codec->amp_cache.buf.list; |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 1045 | int i; |
| 1046 | |
Takashi Iwai | 603c401 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 1047 | for (i = 0; i < codec->amp_cache.buf.used; i++, buffer++) { |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 1048 | u32 key = buffer->head.key; |
| 1049 | hda_nid_t nid; |
| 1050 | unsigned int idx, dir, ch; |
| 1051 | if (!key) |
| 1052 | continue; |
| 1053 | nid = key & 0xff; |
| 1054 | idx = (key >> 16) & 0xff; |
| 1055 | dir = (key >> 24) & 0xff; |
| 1056 | for (ch = 0; ch < 2; ch++) { |
| 1057 | if (!(buffer->head.val & INFO_AMP_VOL(ch))) |
| 1058 | continue; |
| 1059 | put_vol_mute(codec, buffer, nid, ch, dir, idx, |
| 1060 | buffer->vol[ch]); |
| 1061 | } |
| 1062 | } |
| 1063 | } |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 1064 | #endif /* SND_HDA_NEEDS_RESUME */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1065 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1066 | /* volume */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1067 | int snd_hda_mixer_amp_volume_info(struct snd_kcontrol *kcontrol, |
| 1068 | struct snd_ctl_elem_info *uinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1069 | { |
| 1070 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 1071 | u16 nid = get_amp_nid(kcontrol); |
| 1072 | u8 chs = get_amp_channels(kcontrol); |
| 1073 | int dir = get_amp_direction(kcontrol); |
| 1074 | u32 caps; |
| 1075 | |
| 1076 | caps = query_amp_caps(codec, nid, dir); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1077 | /* num steps */ |
| 1078 | caps = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT; |
| 1079 | if (!caps) { |
| 1080 | printk(KERN_WARNING "hda_codec: " |
Takashi Iwai | 9c8f2ab | 2008-01-11 16:12:23 +0100 | [diff] [blame] | 1081 | "num_steps = 0 for NID=0x%x (ctl = %s)\n", nid, |
| 1082 | kcontrol->id.name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1083 | return -EINVAL; |
| 1084 | } |
| 1085 | uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER; |
| 1086 | uinfo->count = chs == 3 ? 2 : 1; |
| 1087 | uinfo->value.integer.min = 0; |
| 1088 | uinfo->value.integer.max = caps; |
| 1089 | return 0; |
| 1090 | } |
| 1091 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1092 | int snd_hda_mixer_amp_volume_get(struct snd_kcontrol *kcontrol, |
| 1093 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1094 | { |
| 1095 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 1096 | hda_nid_t nid = get_amp_nid(kcontrol); |
| 1097 | int chs = get_amp_channels(kcontrol); |
| 1098 | int dir = get_amp_direction(kcontrol); |
| 1099 | int idx = get_amp_index(kcontrol); |
| 1100 | long *valp = ucontrol->value.integer.value; |
| 1101 | |
| 1102 | if (chs & 1) |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 1103 | *valp++ = snd_hda_codec_amp_read(codec, nid, 0, dir, idx) |
| 1104 | & HDA_AMP_VOLMASK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1105 | if (chs & 2) |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 1106 | *valp = snd_hda_codec_amp_read(codec, nid, 1, dir, idx) |
| 1107 | & HDA_AMP_VOLMASK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1108 | return 0; |
| 1109 | } |
| 1110 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1111 | int snd_hda_mixer_amp_volume_put(struct snd_kcontrol *kcontrol, |
| 1112 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1113 | { |
| 1114 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 1115 | hda_nid_t nid = get_amp_nid(kcontrol); |
| 1116 | int chs = get_amp_channels(kcontrol); |
| 1117 | int dir = get_amp_direction(kcontrol); |
| 1118 | int idx = get_amp_index(kcontrol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1119 | long *valp = ucontrol->value.integer.value; |
| 1120 | int change = 0; |
| 1121 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 1122 | snd_hda_power_up(codec); |
Nicolas Graziano | b9f5a89 | 2005-07-29 12:17:20 +0200 | [diff] [blame] | 1123 | if (chs & 1) { |
Takashi Iwai | 4a19fae | 2005-06-08 14:43:58 +0200 | [diff] [blame] | 1124 | change = snd_hda_codec_amp_update(codec, nid, 0, dir, idx, |
| 1125 | 0x7f, *valp); |
Nicolas Graziano | b9f5a89 | 2005-07-29 12:17:20 +0200 | [diff] [blame] | 1126 | valp++; |
| 1127 | } |
Takashi Iwai | 4a19fae | 2005-06-08 14:43:58 +0200 | [diff] [blame] | 1128 | if (chs & 2) |
| 1129 | change |= snd_hda_codec_amp_update(codec, nid, 1, dir, idx, |
Nicolas Graziano | b9f5a89 | 2005-07-29 12:17:20 +0200 | [diff] [blame] | 1130 | 0x7f, *valp); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 1131 | snd_hda_power_down(codec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1132 | return change; |
| 1133 | } |
| 1134 | |
Jaroslav Kysela | 302e9c5 | 2006-07-05 17:39:49 +0200 | [diff] [blame] | 1135 | int snd_hda_mixer_amp_tlv(struct snd_kcontrol *kcontrol, int op_flag, |
| 1136 | unsigned int size, unsigned int __user *_tlv) |
| 1137 | { |
| 1138 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 1139 | hda_nid_t nid = get_amp_nid(kcontrol); |
| 1140 | int dir = get_amp_direction(kcontrol); |
| 1141 | u32 caps, val1, val2; |
| 1142 | |
| 1143 | if (size < 4 * sizeof(unsigned int)) |
| 1144 | return -ENOMEM; |
| 1145 | caps = query_amp_caps(codec, nid, dir); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1146 | val2 = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT; |
| 1147 | val2 = (val2 + 1) * 25; |
Jaroslav Kysela | 302e9c5 | 2006-07-05 17:39:49 +0200 | [diff] [blame] | 1148 | val1 = -((caps & AC_AMPCAP_OFFSET) >> AC_AMPCAP_OFFSET_SHIFT); |
| 1149 | val1 = ((int)val1) * ((int)val2); |
Jaroslav Kysela | 302e9c5 | 2006-07-05 17:39:49 +0200 | [diff] [blame] | 1150 | if (put_user(SNDRV_CTL_TLVT_DB_SCALE, _tlv)) |
| 1151 | return -EFAULT; |
| 1152 | if (put_user(2 * sizeof(unsigned int), _tlv + 1)) |
| 1153 | return -EFAULT; |
| 1154 | if (put_user(val1, _tlv + 2)) |
| 1155 | return -EFAULT; |
| 1156 | if (put_user(val2, _tlv + 3)) |
| 1157 | return -EFAULT; |
| 1158 | return 0; |
| 1159 | } |
| 1160 | |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1161 | /* |
| 1162 | * set (static) TLV for virtual master volume; recalculated as max 0dB |
| 1163 | */ |
| 1164 | void snd_hda_set_vmaster_tlv(struct hda_codec *codec, hda_nid_t nid, int dir, |
| 1165 | unsigned int *tlv) |
| 1166 | { |
| 1167 | u32 caps; |
| 1168 | int nums, step; |
| 1169 | |
| 1170 | caps = query_amp_caps(codec, nid, dir); |
| 1171 | nums = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT; |
| 1172 | step = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT; |
| 1173 | step = (step + 1) * 25; |
| 1174 | tlv[0] = SNDRV_CTL_TLVT_DB_SCALE; |
| 1175 | tlv[1] = 2 * sizeof(unsigned int); |
| 1176 | tlv[2] = -nums * step; |
| 1177 | tlv[3] = step; |
| 1178 | } |
| 1179 | |
| 1180 | /* find a mixer control element with the given name */ |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 1181 | static struct snd_kcontrol * |
| 1182 | _snd_hda_find_mixer_ctl(struct hda_codec *codec, |
| 1183 | const char *name, int idx) |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1184 | { |
| 1185 | struct snd_ctl_elem_id id; |
| 1186 | memset(&id, 0, sizeof(id)); |
| 1187 | id.iface = SNDRV_CTL_ELEM_IFACE_MIXER; |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 1188 | id.index = idx; |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1189 | strcpy(id.name, name); |
| 1190 | return snd_ctl_find_id(codec->bus->card, &id); |
| 1191 | } |
| 1192 | |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 1193 | struct snd_kcontrol *snd_hda_find_mixer_ctl(struct hda_codec *codec, |
| 1194 | const char *name) |
| 1195 | { |
| 1196 | return _snd_hda_find_mixer_ctl(codec, name, 0); |
| 1197 | } |
| 1198 | |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1199 | /* Add a control element and assign to the codec */ |
| 1200 | int snd_hda_ctl_add(struct hda_codec *codec, struct snd_kcontrol *kctl) |
| 1201 | { |
| 1202 | int err; |
| 1203 | struct snd_kcontrol **knewp; |
| 1204 | |
| 1205 | err = snd_ctl_add(codec->bus->card, kctl); |
| 1206 | if (err < 0) |
| 1207 | return err; |
| 1208 | knewp = snd_array_new(&codec->mixers); |
| 1209 | if (!knewp) |
| 1210 | return -ENOMEM; |
| 1211 | *knewp = kctl; |
| 1212 | return 0; |
| 1213 | } |
| 1214 | |
| 1215 | /* Clear all controls assigned to the given codec */ |
| 1216 | void snd_hda_ctls_clear(struct hda_codec *codec) |
| 1217 | { |
| 1218 | int i; |
| 1219 | struct snd_kcontrol **kctls = codec->mixers.list; |
| 1220 | for (i = 0; i < codec->mixers.used; i++) |
| 1221 | snd_ctl_remove(codec->bus->card, kctls[i]); |
| 1222 | snd_array_free(&codec->mixers); |
| 1223 | } |
| 1224 | |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1225 | void snd_hda_codec_reset(struct hda_codec *codec) |
| 1226 | { |
| 1227 | int i; |
| 1228 | |
| 1229 | #ifdef CONFIG_SND_HDA_POWER_SAVE |
| 1230 | cancel_delayed_work(&codec->power_work); |
| 1231 | flush_scheduled_work(); |
| 1232 | #endif |
| 1233 | snd_hda_ctls_clear(codec); |
| 1234 | /* relase PCMs */ |
| 1235 | for (i = 0; i < codec->num_pcms; i++) { |
| 1236 | if (codec->pcm_info[i].pcm) |
| 1237 | snd_device_free(codec->bus->card, |
| 1238 | codec->pcm_info[i].pcm); |
| 1239 | } |
| 1240 | if (codec->patch_ops.free) |
| 1241 | codec->patch_ops.free(codec); |
| 1242 | codec->spec = NULL; |
| 1243 | free_hda_cache(&codec->amp_cache); |
| 1244 | free_hda_cache(&codec->cmd_cache); |
| 1245 | codec->num_pcms = 0; |
| 1246 | codec->pcm_info = NULL; |
| 1247 | codec->preset = NULL; |
| 1248 | } |
| 1249 | |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1250 | /* create a virtual master control and add slaves */ |
| 1251 | int snd_hda_add_vmaster(struct hda_codec *codec, char *name, |
| 1252 | unsigned int *tlv, const char **slaves) |
| 1253 | { |
| 1254 | struct snd_kcontrol *kctl; |
| 1255 | const char **s; |
| 1256 | int err; |
| 1257 | |
Takashi Iwai | 2f08554 | 2008-02-22 18:43:50 +0100 | [diff] [blame] | 1258 | for (s = slaves; *s && !snd_hda_find_mixer_ctl(codec, *s); s++) |
| 1259 | ; |
| 1260 | if (!*s) { |
| 1261 | snd_printdd("No slave found for %s\n", name); |
| 1262 | return 0; |
| 1263 | } |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1264 | kctl = snd_ctl_make_virtual_master(name, tlv); |
| 1265 | if (!kctl) |
| 1266 | return -ENOMEM; |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1267 | err = snd_hda_ctl_add(codec, kctl); |
Takashi Iwai | 2134ea4 | 2008-01-10 16:53:55 +0100 | [diff] [blame] | 1268 | if (err < 0) |
| 1269 | return err; |
| 1270 | |
| 1271 | for (s = slaves; *s; s++) { |
| 1272 | struct snd_kcontrol *sctl; |
| 1273 | |
| 1274 | sctl = snd_hda_find_mixer_ctl(codec, *s); |
| 1275 | if (!sctl) { |
| 1276 | snd_printdd("Cannot find slave %s, skipped\n", *s); |
| 1277 | continue; |
| 1278 | } |
| 1279 | err = snd_ctl_add_slave(kctl, sctl); |
| 1280 | if (err < 0) |
| 1281 | return err; |
| 1282 | } |
| 1283 | return 0; |
| 1284 | } |
| 1285 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1286 | /* switch */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1287 | int snd_hda_mixer_amp_switch_info(struct snd_kcontrol *kcontrol, |
| 1288 | struct snd_ctl_elem_info *uinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1289 | { |
| 1290 | int chs = get_amp_channels(kcontrol); |
| 1291 | |
| 1292 | uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN; |
| 1293 | uinfo->count = chs == 3 ? 2 : 1; |
| 1294 | uinfo->value.integer.min = 0; |
| 1295 | uinfo->value.integer.max = 1; |
| 1296 | return 0; |
| 1297 | } |
| 1298 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1299 | int snd_hda_mixer_amp_switch_get(struct snd_kcontrol *kcontrol, |
| 1300 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1301 | { |
| 1302 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 1303 | hda_nid_t nid = get_amp_nid(kcontrol); |
| 1304 | int chs = get_amp_channels(kcontrol); |
| 1305 | int dir = get_amp_direction(kcontrol); |
| 1306 | int idx = get_amp_index(kcontrol); |
| 1307 | long *valp = ucontrol->value.integer.value; |
| 1308 | |
| 1309 | if (chs & 1) |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1310 | *valp++ = (snd_hda_codec_amp_read(codec, nid, 0, dir, idx) & |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 1311 | HDA_AMP_MUTE) ? 0 : 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1312 | if (chs & 2) |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1313 | *valp = (snd_hda_codec_amp_read(codec, nid, 1, dir, idx) & |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 1314 | HDA_AMP_MUTE) ? 0 : 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1315 | return 0; |
| 1316 | } |
| 1317 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1318 | int snd_hda_mixer_amp_switch_put(struct snd_kcontrol *kcontrol, |
| 1319 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1320 | { |
| 1321 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 1322 | hda_nid_t nid = get_amp_nid(kcontrol); |
| 1323 | int chs = get_amp_channels(kcontrol); |
| 1324 | int dir = get_amp_direction(kcontrol); |
| 1325 | int idx = get_amp_index(kcontrol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1326 | long *valp = ucontrol->value.integer.value; |
| 1327 | int change = 0; |
| 1328 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 1329 | snd_hda_power_up(codec); |
Nicolas Graziano | b9f5a89 | 2005-07-29 12:17:20 +0200 | [diff] [blame] | 1330 | if (chs & 1) { |
Takashi Iwai | 4a19fae | 2005-06-08 14:43:58 +0200 | [diff] [blame] | 1331 | change = snd_hda_codec_amp_update(codec, nid, 0, dir, idx, |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 1332 | HDA_AMP_MUTE, |
| 1333 | *valp ? 0 : HDA_AMP_MUTE); |
Nicolas Graziano | b9f5a89 | 2005-07-29 12:17:20 +0200 | [diff] [blame] | 1334 | valp++; |
| 1335 | } |
Takashi Iwai | 4a19fae | 2005-06-08 14:43:58 +0200 | [diff] [blame] | 1336 | if (chs & 2) |
| 1337 | change |= snd_hda_codec_amp_update(codec, nid, 1, dir, idx, |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 1338 | HDA_AMP_MUTE, |
| 1339 | *valp ? 0 : HDA_AMP_MUTE); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 1340 | #ifdef CONFIG_SND_HDA_POWER_SAVE |
| 1341 | if (codec->patch_ops.check_power_status) |
| 1342 | codec->patch_ops.check_power_status(codec, nid); |
| 1343 | #endif |
| 1344 | snd_hda_power_down(codec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1345 | return change; |
| 1346 | } |
| 1347 | |
| 1348 | /* |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 1349 | * bound volume controls |
| 1350 | * |
| 1351 | * bind multiple volumes (# indices, from 0) |
| 1352 | */ |
| 1353 | |
| 1354 | #define AMP_VAL_IDX_SHIFT 19 |
| 1355 | #define AMP_VAL_IDX_MASK (0x0f<<19) |
| 1356 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1357 | int snd_hda_mixer_bind_switch_get(struct snd_kcontrol *kcontrol, |
| 1358 | struct snd_ctl_elem_value *ucontrol) |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 1359 | { |
| 1360 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 1361 | unsigned long pval; |
| 1362 | int err; |
| 1363 | |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 1364 | mutex_lock(&codec->spdif_mutex); /* reuse spdif_mutex */ |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 1365 | pval = kcontrol->private_value; |
| 1366 | kcontrol->private_value = pval & ~AMP_VAL_IDX_MASK; /* index 0 */ |
| 1367 | err = snd_hda_mixer_amp_switch_get(kcontrol, ucontrol); |
| 1368 | kcontrol->private_value = pval; |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 1369 | mutex_unlock(&codec->spdif_mutex); |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 1370 | return err; |
| 1371 | } |
| 1372 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1373 | int snd_hda_mixer_bind_switch_put(struct snd_kcontrol *kcontrol, |
| 1374 | struct snd_ctl_elem_value *ucontrol) |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 1375 | { |
| 1376 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 1377 | unsigned long pval; |
| 1378 | int i, indices, err = 0, change = 0; |
| 1379 | |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 1380 | mutex_lock(&codec->spdif_mutex); /* reuse spdif_mutex */ |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 1381 | pval = kcontrol->private_value; |
| 1382 | indices = (pval & AMP_VAL_IDX_MASK) >> AMP_VAL_IDX_SHIFT; |
| 1383 | for (i = 0; i < indices; i++) { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1384 | kcontrol->private_value = (pval & ~AMP_VAL_IDX_MASK) | |
| 1385 | (i << AMP_VAL_IDX_SHIFT); |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 1386 | err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol); |
| 1387 | if (err < 0) |
| 1388 | break; |
| 1389 | change |= err; |
| 1390 | } |
| 1391 | kcontrol->private_value = pval; |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 1392 | mutex_unlock(&codec->spdif_mutex); |
Takashi Iwai | 985be54 | 2005-11-02 18:26:49 +0100 | [diff] [blame] | 1393 | return err < 0 ? err : change; |
| 1394 | } |
| 1395 | |
| 1396 | /* |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 1397 | * generic bound volume/swtich controls |
| 1398 | */ |
| 1399 | int snd_hda_mixer_bind_ctls_info(struct snd_kcontrol *kcontrol, |
| 1400 | struct snd_ctl_elem_info *uinfo) |
| 1401 | { |
| 1402 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 1403 | struct hda_bind_ctls *c; |
| 1404 | int err; |
| 1405 | |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 1406 | mutex_lock(&codec->spdif_mutex); /* reuse spdif_mutex */ |
Serge A. Suchkov | 14c65f9 | 2008-02-22 18:43:16 +0100 | [diff] [blame] | 1407 | c = (struct hda_bind_ctls *)kcontrol->private_value; |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 1408 | kcontrol->private_value = *c->values; |
| 1409 | err = c->ops->info(kcontrol, uinfo); |
| 1410 | kcontrol->private_value = (long)c; |
| 1411 | mutex_unlock(&codec->spdif_mutex); |
| 1412 | return err; |
| 1413 | } |
| 1414 | |
| 1415 | int snd_hda_mixer_bind_ctls_get(struct snd_kcontrol *kcontrol, |
| 1416 | struct snd_ctl_elem_value *ucontrol) |
| 1417 | { |
| 1418 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 1419 | struct hda_bind_ctls *c; |
| 1420 | int err; |
| 1421 | |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 1422 | mutex_lock(&codec->spdif_mutex); /* reuse spdif_mutex */ |
Serge A. Suchkov | 14c65f9 | 2008-02-22 18:43:16 +0100 | [diff] [blame] | 1423 | c = (struct hda_bind_ctls *)kcontrol->private_value; |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 1424 | kcontrol->private_value = *c->values; |
| 1425 | err = c->ops->get(kcontrol, ucontrol); |
| 1426 | kcontrol->private_value = (long)c; |
| 1427 | mutex_unlock(&codec->spdif_mutex); |
| 1428 | return err; |
| 1429 | } |
| 1430 | |
| 1431 | int snd_hda_mixer_bind_ctls_put(struct snd_kcontrol *kcontrol, |
| 1432 | struct snd_ctl_elem_value *ucontrol) |
| 1433 | { |
| 1434 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 1435 | struct hda_bind_ctls *c; |
| 1436 | unsigned long *vals; |
| 1437 | int err = 0, change = 0; |
| 1438 | |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 1439 | mutex_lock(&codec->spdif_mutex); /* reuse spdif_mutex */ |
Serge A. Suchkov | 14c65f9 | 2008-02-22 18:43:16 +0100 | [diff] [blame] | 1440 | c = (struct hda_bind_ctls *)kcontrol->private_value; |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 1441 | for (vals = c->values; *vals; vals++) { |
| 1442 | kcontrol->private_value = *vals; |
| 1443 | err = c->ops->put(kcontrol, ucontrol); |
| 1444 | if (err < 0) |
| 1445 | break; |
| 1446 | change |= err; |
| 1447 | } |
| 1448 | kcontrol->private_value = (long)c; |
| 1449 | mutex_unlock(&codec->spdif_mutex); |
| 1450 | return err < 0 ? err : change; |
| 1451 | } |
| 1452 | |
| 1453 | int snd_hda_mixer_bind_tlv(struct snd_kcontrol *kcontrol, int op_flag, |
| 1454 | unsigned int size, unsigned int __user *tlv) |
| 1455 | { |
| 1456 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 1457 | struct hda_bind_ctls *c; |
| 1458 | int err; |
| 1459 | |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 1460 | mutex_lock(&codec->spdif_mutex); /* reuse spdif_mutex */ |
Serge A. Suchkov | 14c65f9 | 2008-02-22 18:43:16 +0100 | [diff] [blame] | 1461 | c = (struct hda_bind_ctls *)kcontrol->private_value; |
Takashi Iwai | 532d538 | 2007-07-27 19:02:40 +0200 | [diff] [blame] | 1462 | kcontrol->private_value = *c->values; |
| 1463 | err = c->ops->tlv(kcontrol, op_flag, size, tlv); |
| 1464 | kcontrol->private_value = (long)c; |
| 1465 | mutex_unlock(&codec->spdif_mutex); |
| 1466 | return err; |
| 1467 | } |
| 1468 | |
| 1469 | struct hda_ctl_ops snd_hda_bind_vol = { |
| 1470 | .info = snd_hda_mixer_amp_volume_info, |
| 1471 | .get = snd_hda_mixer_amp_volume_get, |
| 1472 | .put = snd_hda_mixer_amp_volume_put, |
| 1473 | .tlv = snd_hda_mixer_amp_tlv |
| 1474 | }; |
| 1475 | |
| 1476 | struct hda_ctl_ops snd_hda_bind_sw = { |
| 1477 | .info = snd_hda_mixer_amp_switch_info, |
| 1478 | .get = snd_hda_mixer_amp_switch_get, |
| 1479 | .put = snd_hda_mixer_amp_switch_put, |
| 1480 | .tlv = snd_hda_mixer_amp_tlv |
| 1481 | }; |
| 1482 | |
| 1483 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1484 | * SPDIF out controls |
| 1485 | */ |
| 1486 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1487 | static int snd_hda_spdif_mask_info(struct snd_kcontrol *kcontrol, |
| 1488 | struct snd_ctl_elem_info *uinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1489 | { |
| 1490 | uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958; |
| 1491 | uinfo->count = 1; |
| 1492 | return 0; |
| 1493 | } |
| 1494 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1495 | static int snd_hda_spdif_cmask_get(struct snd_kcontrol *kcontrol, |
| 1496 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1497 | { |
| 1498 | ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL | |
| 1499 | IEC958_AES0_NONAUDIO | |
| 1500 | IEC958_AES0_CON_EMPHASIS_5015 | |
| 1501 | IEC958_AES0_CON_NOT_COPYRIGHT; |
| 1502 | ucontrol->value.iec958.status[1] = IEC958_AES1_CON_CATEGORY | |
| 1503 | IEC958_AES1_CON_ORIGINAL; |
| 1504 | return 0; |
| 1505 | } |
| 1506 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1507 | static int snd_hda_spdif_pmask_get(struct snd_kcontrol *kcontrol, |
| 1508 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1509 | { |
| 1510 | ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL | |
| 1511 | IEC958_AES0_NONAUDIO | |
| 1512 | IEC958_AES0_PRO_EMPHASIS_5015; |
| 1513 | return 0; |
| 1514 | } |
| 1515 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1516 | static int snd_hda_spdif_default_get(struct snd_kcontrol *kcontrol, |
| 1517 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1518 | { |
| 1519 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 1520 | |
| 1521 | ucontrol->value.iec958.status[0] = codec->spdif_status & 0xff; |
| 1522 | ucontrol->value.iec958.status[1] = (codec->spdif_status >> 8) & 0xff; |
| 1523 | ucontrol->value.iec958.status[2] = (codec->spdif_status >> 16) & 0xff; |
| 1524 | ucontrol->value.iec958.status[3] = (codec->spdif_status >> 24) & 0xff; |
| 1525 | |
| 1526 | return 0; |
| 1527 | } |
| 1528 | |
| 1529 | /* convert from SPDIF status bits to HDA SPDIF bits |
| 1530 | * bit 0 (DigEn) is always set zero (to be filled later) |
| 1531 | */ |
| 1532 | static unsigned short convert_from_spdif_status(unsigned int sbits) |
| 1533 | { |
| 1534 | unsigned short val = 0; |
| 1535 | |
| 1536 | if (sbits & IEC958_AES0_PROFESSIONAL) |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1537 | val |= AC_DIG1_PROFESSIONAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1538 | if (sbits & IEC958_AES0_NONAUDIO) |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1539 | val |= AC_DIG1_NONAUDIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1540 | if (sbits & IEC958_AES0_PROFESSIONAL) { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1541 | if ((sbits & IEC958_AES0_PRO_EMPHASIS) == |
| 1542 | IEC958_AES0_PRO_EMPHASIS_5015) |
| 1543 | val |= AC_DIG1_EMPHASIS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1544 | } else { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1545 | if ((sbits & IEC958_AES0_CON_EMPHASIS) == |
| 1546 | IEC958_AES0_CON_EMPHASIS_5015) |
| 1547 | val |= AC_DIG1_EMPHASIS; |
| 1548 | if (!(sbits & IEC958_AES0_CON_NOT_COPYRIGHT)) |
| 1549 | val |= AC_DIG1_COPYRIGHT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1550 | if (sbits & (IEC958_AES1_CON_ORIGINAL << 8)) |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1551 | val |= AC_DIG1_LEVEL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1552 | val |= sbits & (IEC958_AES1_CON_CATEGORY << 8); |
| 1553 | } |
| 1554 | return val; |
| 1555 | } |
| 1556 | |
| 1557 | /* convert to SPDIF status bits from HDA SPDIF bits |
| 1558 | */ |
| 1559 | static unsigned int convert_to_spdif_status(unsigned short val) |
| 1560 | { |
| 1561 | unsigned int sbits = 0; |
| 1562 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1563 | if (val & AC_DIG1_NONAUDIO) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1564 | sbits |= IEC958_AES0_NONAUDIO; |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1565 | if (val & AC_DIG1_PROFESSIONAL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1566 | sbits |= IEC958_AES0_PROFESSIONAL; |
| 1567 | if (sbits & IEC958_AES0_PROFESSIONAL) { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1568 | if (sbits & AC_DIG1_EMPHASIS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1569 | sbits |= IEC958_AES0_PRO_EMPHASIS_5015; |
| 1570 | } else { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1571 | if (val & AC_DIG1_EMPHASIS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1572 | sbits |= IEC958_AES0_CON_EMPHASIS_5015; |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1573 | if (!(val & AC_DIG1_COPYRIGHT)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1574 | sbits |= IEC958_AES0_CON_NOT_COPYRIGHT; |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1575 | if (val & AC_DIG1_LEVEL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1576 | sbits |= (IEC958_AES1_CON_ORIGINAL << 8); |
| 1577 | sbits |= val & (0x7f << 8); |
| 1578 | } |
| 1579 | return sbits; |
| 1580 | } |
| 1581 | |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 1582 | /* set digital convert verbs both for the given NID and its slaves */ |
| 1583 | static void set_dig_out(struct hda_codec *codec, hda_nid_t nid, |
| 1584 | int verb, int val) |
| 1585 | { |
| 1586 | hda_nid_t *d; |
| 1587 | |
| 1588 | snd_hda_codec_write(codec, nid, 0, verb, val); |
| 1589 | d = codec->slave_dig_outs; |
| 1590 | if (!d) |
| 1591 | return; |
| 1592 | for (; *d; d++) |
| 1593 | snd_hda_codec_write(codec, *d, 0, verb, val); |
| 1594 | } |
| 1595 | |
| 1596 | static inline void set_dig_out_convert(struct hda_codec *codec, hda_nid_t nid, |
| 1597 | int dig1, int dig2) |
| 1598 | { |
| 1599 | if (dig1 != -1) |
| 1600 | set_dig_out(codec, nid, AC_VERB_SET_DIGI_CONVERT_1, dig1); |
| 1601 | if (dig2 != -1) |
| 1602 | set_dig_out(codec, nid, AC_VERB_SET_DIGI_CONVERT_2, dig2); |
| 1603 | } |
| 1604 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1605 | static int snd_hda_spdif_default_put(struct snd_kcontrol *kcontrol, |
| 1606 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1607 | { |
| 1608 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 1609 | hda_nid_t nid = kcontrol->private_value; |
| 1610 | unsigned short val; |
| 1611 | int change; |
| 1612 | |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 1613 | mutex_lock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1614 | codec->spdif_status = ucontrol->value.iec958.status[0] | |
| 1615 | ((unsigned int)ucontrol->value.iec958.status[1] << 8) | |
| 1616 | ((unsigned int)ucontrol->value.iec958.status[2] << 16) | |
| 1617 | ((unsigned int)ucontrol->value.iec958.status[3] << 24); |
| 1618 | val = convert_from_spdif_status(codec->spdif_status); |
| 1619 | val |= codec->spdif_ctls & 1; |
| 1620 | change = codec->spdif_ctls != val; |
| 1621 | codec->spdif_ctls = val; |
| 1622 | |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 1623 | if (change) |
| 1624 | set_dig_out_convert(codec, nid, val & 0xff, (val >> 8) & 0xff); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1625 | |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 1626 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1627 | return change; |
| 1628 | } |
| 1629 | |
Takashi Iwai | a5ce889 | 2007-07-23 15:42:26 +0200 | [diff] [blame] | 1630 | #define snd_hda_spdif_out_switch_info snd_ctl_boolean_mono_info |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1631 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1632 | static int snd_hda_spdif_out_switch_get(struct snd_kcontrol *kcontrol, |
| 1633 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1634 | { |
| 1635 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 1636 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1637 | ucontrol->value.integer.value[0] = codec->spdif_ctls & AC_DIG1_ENABLE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1638 | return 0; |
| 1639 | } |
| 1640 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1641 | static int snd_hda_spdif_out_switch_put(struct snd_kcontrol *kcontrol, |
| 1642 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1643 | { |
| 1644 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 1645 | hda_nid_t nid = kcontrol->private_value; |
| 1646 | unsigned short val; |
| 1647 | int change; |
| 1648 | |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 1649 | mutex_lock(&codec->spdif_mutex); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1650 | val = codec->spdif_ctls & ~AC_DIG1_ENABLE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1651 | if (ucontrol->value.integer.value[0]) |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1652 | val |= AC_DIG1_ENABLE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1653 | change = codec->spdif_ctls != val; |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 1654 | if (change) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1655 | codec->spdif_ctls = val; |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 1656 | set_dig_out_convert(codec, nid, val & 0xff, -1); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1657 | /* unmute amp switch (if any) */ |
| 1658 | if ((get_wcaps(codec, nid) & AC_WCAP_OUT_AMP) && |
Takashi Iwai | 47fd830 | 2007-08-10 17:11:07 +0200 | [diff] [blame] | 1659 | (val & AC_DIG1_ENABLE)) |
| 1660 | snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0, |
| 1661 | HDA_AMP_MUTE, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1662 | } |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 1663 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1664 | return change; |
| 1665 | } |
| 1666 | |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 1667 | static struct snd_kcontrol_new dig_mixes[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1668 | { |
| 1669 | .access = SNDRV_CTL_ELEM_ACCESS_READ, |
| 1670 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 1671 | .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,CON_MASK), |
| 1672 | .info = snd_hda_spdif_mask_info, |
| 1673 | .get = snd_hda_spdif_cmask_get, |
| 1674 | }, |
| 1675 | { |
| 1676 | .access = SNDRV_CTL_ELEM_ACCESS_READ, |
| 1677 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 1678 | .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,PRO_MASK), |
| 1679 | .info = snd_hda_spdif_mask_info, |
| 1680 | .get = snd_hda_spdif_pmask_get, |
| 1681 | }, |
| 1682 | { |
| 1683 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 1684 | .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,DEFAULT), |
| 1685 | .info = snd_hda_spdif_mask_info, |
| 1686 | .get = snd_hda_spdif_default_get, |
| 1687 | .put = snd_hda_spdif_default_put, |
| 1688 | }, |
| 1689 | { |
| 1690 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 1691 | .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,SWITCH), |
| 1692 | .info = snd_hda_spdif_out_switch_info, |
| 1693 | .get = snd_hda_spdif_out_switch_get, |
| 1694 | .put = snd_hda_spdif_out_switch_put, |
| 1695 | }, |
| 1696 | { } /* end */ |
| 1697 | }; |
| 1698 | |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 1699 | #define SPDIF_MAX_IDX 4 /* 4 instances should be enough to probe */ |
| 1700 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1701 | /** |
| 1702 | * snd_hda_create_spdif_out_ctls - create Output SPDIF-related controls |
| 1703 | * @codec: the HDA codec |
| 1704 | * @nid: audio out widget NID |
| 1705 | * |
| 1706 | * Creates controls related with the SPDIF output. |
| 1707 | * Called from each patch supporting the SPDIF out. |
| 1708 | * |
| 1709 | * Returns 0 if successful, or a negative error code. |
| 1710 | */ |
Takashi Iwai | 12f288b | 2007-08-02 15:51:59 +0200 | [diff] [blame] | 1711 | int snd_hda_create_spdif_out_ctls(struct hda_codec *codec, hda_nid_t nid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1712 | { |
| 1713 | int err; |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 1714 | struct snd_kcontrol *kctl; |
| 1715 | struct snd_kcontrol_new *dig_mix; |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 1716 | int idx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1717 | |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 1718 | for (idx = 0; idx < SPDIF_MAX_IDX; idx++) { |
| 1719 | if (!_snd_hda_find_mixer_ctl(codec, "IEC958 Playback Switch", |
| 1720 | idx)) |
| 1721 | break; |
| 1722 | } |
| 1723 | if (idx >= SPDIF_MAX_IDX) { |
| 1724 | printk(KERN_ERR "hda_codec: too many IEC958 outputs\n"); |
| 1725 | return -EBUSY; |
| 1726 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1727 | for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) { |
| 1728 | kctl = snd_ctl_new1(dig_mix, codec); |
Takashi Iwai | b91f080 | 2008-11-04 08:43:08 +0100 | [diff] [blame] | 1729 | if (!kctl) |
| 1730 | return -ENOMEM; |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 1731 | kctl->id.index = idx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1732 | kctl->private_value = nid; |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1733 | err = snd_hda_ctl_add(codec, kctl); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1734 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1735 | return err; |
| 1736 | } |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1737 | codec->spdif_ctls = |
Andrew Paprocki | 3982d17 | 2007-12-19 12:13:44 +0100 | [diff] [blame] | 1738 | snd_hda_codec_read(codec, nid, 0, |
| 1739 | AC_VERB_GET_DIGI_CONVERT_1, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1740 | codec->spdif_status = convert_to_spdif_status(codec->spdif_ctls); |
| 1741 | return 0; |
| 1742 | } |
| 1743 | |
| 1744 | /* |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 1745 | * SPDIF sharing with analog output |
| 1746 | */ |
| 1747 | static int spdif_share_sw_get(struct snd_kcontrol *kcontrol, |
| 1748 | struct snd_ctl_elem_value *ucontrol) |
| 1749 | { |
| 1750 | struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol); |
| 1751 | ucontrol->value.integer.value[0] = mout->share_spdif; |
| 1752 | return 0; |
| 1753 | } |
| 1754 | |
| 1755 | static int spdif_share_sw_put(struct snd_kcontrol *kcontrol, |
| 1756 | struct snd_ctl_elem_value *ucontrol) |
| 1757 | { |
| 1758 | struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol); |
| 1759 | mout->share_spdif = !!ucontrol->value.integer.value[0]; |
| 1760 | return 0; |
| 1761 | } |
| 1762 | |
| 1763 | static struct snd_kcontrol_new spdif_share_sw = { |
| 1764 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 1765 | .name = "IEC958 Default PCM Playback Switch", |
| 1766 | .info = snd_ctl_boolean_mono_info, |
| 1767 | .get = spdif_share_sw_get, |
| 1768 | .put = spdif_share_sw_put, |
| 1769 | }; |
| 1770 | |
| 1771 | int snd_hda_create_spdif_share_sw(struct hda_codec *codec, |
| 1772 | struct hda_multi_out *mout) |
| 1773 | { |
| 1774 | if (!mout->dig_out_nid) |
| 1775 | return 0; |
| 1776 | /* ATTENTION: here mout is passed as private_data, instead of codec */ |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1777 | return snd_hda_ctl_add(codec, |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 1778 | snd_ctl_new1(&spdif_share_sw, mout)); |
| 1779 | } |
| 1780 | |
| 1781 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1782 | * SPDIF input |
| 1783 | */ |
| 1784 | |
| 1785 | #define snd_hda_spdif_in_switch_info snd_hda_spdif_out_switch_info |
| 1786 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1787 | static int snd_hda_spdif_in_switch_get(struct snd_kcontrol *kcontrol, |
| 1788 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1789 | { |
| 1790 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 1791 | |
| 1792 | ucontrol->value.integer.value[0] = codec->spdif_in_enable; |
| 1793 | return 0; |
| 1794 | } |
| 1795 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1796 | static int snd_hda_spdif_in_switch_put(struct snd_kcontrol *kcontrol, |
| 1797 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1798 | { |
| 1799 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 1800 | hda_nid_t nid = kcontrol->private_value; |
| 1801 | unsigned int val = !!ucontrol->value.integer.value[0]; |
| 1802 | int change; |
| 1803 | |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 1804 | mutex_lock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1805 | change = codec->spdif_in_enable != val; |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 1806 | if (change) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1807 | codec->spdif_in_enable = val; |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 1808 | snd_hda_codec_write_cache(codec, nid, 0, |
| 1809 | AC_VERB_SET_DIGI_CONVERT_1, val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1810 | } |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 1811 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1812 | return change; |
| 1813 | } |
| 1814 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1815 | static int snd_hda_spdif_in_status_get(struct snd_kcontrol *kcontrol, |
| 1816 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1817 | { |
| 1818 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
| 1819 | hda_nid_t nid = kcontrol->private_value; |
| 1820 | unsigned short val; |
| 1821 | unsigned int sbits; |
| 1822 | |
Andrew Paprocki | 3982d17 | 2007-12-19 12:13:44 +0100 | [diff] [blame] | 1823 | 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] | 1824 | sbits = convert_to_spdif_status(val); |
| 1825 | ucontrol->value.iec958.status[0] = sbits; |
| 1826 | ucontrol->value.iec958.status[1] = sbits >> 8; |
| 1827 | ucontrol->value.iec958.status[2] = sbits >> 16; |
| 1828 | ucontrol->value.iec958.status[3] = sbits >> 24; |
| 1829 | return 0; |
| 1830 | } |
| 1831 | |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 1832 | static struct snd_kcontrol_new dig_in_ctls[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1833 | { |
| 1834 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 1835 | .name = SNDRV_CTL_NAME_IEC958("",CAPTURE,SWITCH), |
| 1836 | .info = snd_hda_spdif_in_switch_info, |
| 1837 | .get = snd_hda_spdif_in_switch_get, |
| 1838 | .put = snd_hda_spdif_in_switch_put, |
| 1839 | }, |
| 1840 | { |
| 1841 | .access = SNDRV_CTL_ELEM_ACCESS_READ, |
| 1842 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 1843 | .name = SNDRV_CTL_NAME_IEC958("",CAPTURE,DEFAULT), |
| 1844 | .info = snd_hda_spdif_mask_info, |
| 1845 | .get = snd_hda_spdif_in_status_get, |
| 1846 | }, |
| 1847 | { } /* end */ |
| 1848 | }; |
| 1849 | |
| 1850 | /** |
| 1851 | * snd_hda_create_spdif_in_ctls - create Input SPDIF-related controls |
| 1852 | * @codec: the HDA codec |
| 1853 | * @nid: audio in widget NID |
| 1854 | * |
| 1855 | * Creates controls related with the SPDIF input. |
| 1856 | * Called from each patch supporting the SPDIF in. |
| 1857 | * |
| 1858 | * Returns 0 if successful, or a negative error code. |
| 1859 | */ |
Takashi Iwai | 12f288b | 2007-08-02 15:51:59 +0200 | [diff] [blame] | 1860 | 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] | 1861 | { |
| 1862 | int err; |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 1863 | struct snd_kcontrol *kctl; |
| 1864 | struct snd_kcontrol_new *dig_mix; |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 1865 | int idx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1866 | |
Takashi Iwai | 09f9970 | 2008-02-04 12:31:13 +0100 | [diff] [blame] | 1867 | for (idx = 0; idx < SPDIF_MAX_IDX; idx++) { |
| 1868 | if (!_snd_hda_find_mixer_ctl(codec, "IEC958 Capture Switch", |
| 1869 | idx)) |
| 1870 | break; |
| 1871 | } |
| 1872 | if (idx >= SPDIF_MAX_IDX) { |
| 1873 | printk(KERN_ERR "hda_codec: too many IEC958 inputs\n"); |
| 1874 | return -EBUSY; |
| 1875 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1876 | for (dig_mix = dig_in_ctls; dig_mix->name; dig_mix++) { |
| 1877 | kctl = snd_ctl_new1(dig_mix, codec); |
| 1878 | kctl->private_value = nid; |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 1879 | err = snd_hda_ctl_add(codec, kctl); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1880 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1881 | return err; |
| 1882 | } |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1883 | codec->spdif_in_enable = |
Andrew Paprocki | 3982d17 | 2007-12-19 12:13:44 +0100 | [diff] [blame] | 1884 | snd_hda_codec_read(codec, nid, 0, |
| 1885 | AC_VERB_GET_DIGI_CONVERT_1, 0) & |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 1886 | AC_DIG1_ENABLE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1887 | return 0; |
| 1888 | } |
| 1889 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 1890 | #ifdef SND_HDA_NEEDS_RESUME |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 1891 | /* |
| 1892 | * command cache |
| 1893 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1894 | |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 1895 | /* build a 32bit cache key with the widget id and the command parameter */ |
| 1896 | #define build_cmd_cache_key(nid, verb) ((verb << 8) | nid) |
| 1897 | #define get_cmd_cache_nid(key) ((key) & 0xff) |
| 1898 | #define get_cmd_cache_cmd(key) (((key) >> 8) & 0xffff) |
| 1899 | |
| 1900 | /** |
| 1901 | * snd_hda_codec_write_cache - send a single command with caching |
| 1902 | * @codec: the HDA codec |
| 1903 | * @nid: NID to send the command |
| 1904 | * @direct: direct flag |
| 1905 | * @verb: the verb to send |
| 1906 | * @parm: the parameter for the verb |
| 1907 | * |
| 1908 | * Send a single command without waiting for response. |
| 1909 | * |
| 1910 | * Returns 0 if successful, or a negative error code. |
| 1911 | */ |
| 1912 | int snd_hda_codec_write_cache(struct hda_codec *codec, hda_nid_t nid, |
| 1913 | int direct, unsigned int verb, unsigned int parm) |
| 1914 | { |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 1915 | struct hda_bus *bus = codec->bus; |
| 1916 | unsigned int res; |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 1917 | int err; |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 1918 | |
| 1919 | res = make_codec_cmd(codec, nid, direct, verb, parm); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 1920 | snd_hda_power_up(codec); |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 1921 | mutex_lock(&bus->cmd_mutex); |
| 1922 | err = bus->ops.command(bus, res); |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 1923 | if (!err) { |
| 1924 | struct hda_cache_head *c; |
| 1925 | u32 key = build_cmd_cache_key(nid, verb); |
| 1926 | c = get_alloc_hash(&codec->cmd_cache, key); |
| 1927 | if (c) |
| 1928 | c->val = parm; |
| 1929 | } |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 1930 | mutex_unlock(&bus->cmd_mutex); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 1931 | snd_hda_power_down(codec); |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 1932 | return err; |
| 1933 | } |
| 1934 | |
| 1935 | /* resume the all commands from the cache */ |
| 1936 | void snd_hda_codec_resume_cache(struct hda_codec *codec) |
| 1937 | { |
Takashi Iwai | 603c401 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 1938 | struct hda_cache_head *buffer = codec->cmd_cache.buf.list; |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 1939 | int i; |
| 1940 | |
Takashi Iwai | 603c401 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 1941 | for (i = 0; i < codec->cmd_cache.buf.used; i++, buffer++) { |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 1942 | u32 key = buffer->key; |
| 1943 | if (!key) |
| 1944 | continue; |
| 1945 | snd_hda_codec_write(codec, get_cmd_cache_nid(key), 0, |
| 1946 | get_cmd_cache_cmd(key), buffer->val); |
| 1947 | } |
| 1948 | } |
| 1949 | |
| 1950 | /** |
| 1951 | * snd_hda_sequence_write_cache - sequence writes with caching |
| 1952 | * @codec: the HDA codec |
| 1953 | * @seq: VERB array to send |
| 1954 | * |
| 1955 | * Send the commands sequentially from the given array. |
| 1956 | * Thte commands are recorded on cache for power-save and resume. |
| 1957 | * The array must be terminated with NID=0. |
| 1958 | */ |
| 1959 | void snd_hda_sequence_write_cache(struct hda_codec *codec, |
| 1960 | const struct hda_verb *seq) |
| 1961 | { |
| 1962 | for (; seq->nid; seq++) |
| 1963 | snd_hda_codec_write_cache(codec, seq->nid, 0, seq->verb, |
| 1964 | seq->param); |
| 1965 | } |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 1966 | #endif /* SND_HDA_NEEDS_RESUME */ |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 1967 | |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 1968 | /* |
| 1969 | * set power state of the codec |
| 1970 | */ |
| 1971 | static void hda_set_power_state(struct hda_codec *codec, hda_nid_t fg, |
| 1972 | unsigned int power_state) |
| 1973 | { |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 1974 | hda_nid_t nid; |
| 1975 | int i; |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 1976 | |
| 1977 | snd_hda_codec_write(codec, fg, 0, AC_VERB_SET_POWER_STATE, |
| 1978 | power_state); |
Marc Boucher | d2595d8 | 2008-01-22 15:23:30 +0100 | [diff] [blame] | 1979 | msleep(10); /* partial workaround for "azx_get_response timeout" */ |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 1980 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 1981 | nid = codec->start_nid; |
| 1982 | for (i = 0; i < codec->num_nodes; i++, nid++) { |
Takashi Iwai | 7eba5c9 | 2007-11-14 14:53:42 +0100 | [diff] [blame] | 1983 | unsigned int wcaps = get_wcaps(codec, nid); |
| 1984 | if (wcaps & AC_WCAP_POWER) { |
| 1985 | unsigned int wid_type = (wcaps & AC_WCAP_TYPE) >> |
| 1986 | AC_WCAP_TYPE_SHIFT; |
| 1987 | if (wid_type == AC_WID_PIN) { |
| 1988 | unsigned int pincap; |
| 1989 | /* |
| 1990 | * don't power down the widget if it controls |
| 1991 | * eapd and EAPD_BTLENABLE is set. |
| 1992 | */ |
| 1993 | pincap = snd_hda_param_read(codec, nid, |
| 1994 | AC_PAR_PIN_CAP); |
| 1995 | if (pincap & AC_PINCAP_EAPD) { |
| 1996 | int eapd = snd_hda_codec_read(codec, |
| 1997 | nid, 0, |
| 1998 | AC_VERB_GET_EAPD_BTLENABLE, 0); |
| 1999 | eapd &= 0x02; |
| 2000 | if (power_state == AC_PWRST_D3 && eapd) |
| 2001 | continue; |
| 2002 | } |
Takashi Iwai | 1194b5b | 2007-10-10 10:04:26 +0200 | [diff] [blame] | 2003 | } |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 2004 | snd_hda_codec_write(codec, nid, 0, |
| 2005 | AC_VERB_SET_POWER_STATE, |
| 2006 | power_state); |
Takashi Iwai | 1194b5b | 2007-10-10 10:04:26 +0200 | [diff] [blame] | 2007 | } |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 2008 | } |
| 2009 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2010 | if (power_state == AC_PWRST_D0) { |
| 2011 | unsigned long end_time; |
| 2012 | int state; |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 2013 | msleep(10); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2014 | /* wait until the codec reachs to D0 */ |
| 2015 | end_time = jiffies + msecs_to_jiffies(500); |
| 2016 | do { |
| 2017 | state = snd_hda_codec_read(codec, fg, 0, |
| 2018 | AC_VERB_GET_POWER_STATE, 0); |
| 2019 | if (state == power_state) |
| 2020 | break; |
| 2021 | msleep(1); |
| 2022 | } while (time_after_eq(end_time, jiffies)); |
| 2023 | } |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 2024 | } |
| 2025 | |
Takashi Iwai | 11aeff0 | 2008-07-30 15:01:46 +0200 | [diff] [blame] | 2026 | #ifdef CONFIG_SND_HDA_HWDEP |
| 2027 | /* execute additional init verbs */ |
| 2028 | static void hda_exec_init_verbs(struct hda_codec *codec) |
| 2029 | { |
| 2030 | if (codec->init_verbs.list) |
| 2031 | snd_hda_sequence_write(codec, codec->init_verbs.list); |
| 2032 | } |
| 2033 | #else |
| 2034 | static inline void hda_exec_init_verbs(struct hda_codec *codec) {} |
| 2035 | #endif |
| 2036 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2037 | #ifdef SND_HDA_NEEDS_RESUME |
| 2038 | /* |
| 2039 | * call suspend and power-down; used both from PM and power-save |
| 2040 | */ |
| 2041 | static void hda_call_codec_suspend(struct hda_codec *codec) |
| 2042 | { |
| 2043 | if (codec->patch_ops.suspend) |
| 2044 | codec->patch_ops.suspend(codec, PMSG_SUSPEND); |
| 2045 | hda_set_power_state(codec, |
| 2046 | codec->afg ? codec->afg : codec->mfg, |
| 2047 | AC_PWRST_D3); |
| 2048 | #ifdef CONFIG_SND_HDA_POWER_SAVE |
| 2049 | cancel_delayed_work(&codec->power_work); |
Takashi Iwai | 95e99fd | 2007-08-13 15:29:04 +0200 | [diff] [blame] | 2050 | codec->power_on = 0; |
Takashi Iwai | a221e28 | 2007-08-16 16:35:33 +0200 | [diff] [blame] | 2051 | codec->power_transition = 0; |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2052 | #endif |
| 2053 | } |
| 2054 | |
| 2055 | /* |
| 2056 | * kick up codec; used both from PM and power-save |
| 2057 | */ |
| 2058 | static void hda_call_codec_resume(struct hda_codec *codec) |
| 2059 | { |
| 2060 | hda_set_power_state(codec, |
| 2061 | codec->afg ? codec->afg : codec->mfg, |
| 2062 | AC_PWRST_D0); |
Takashi Iwai | 11aeff0 | 2008-07-30 15:01:46 +0200 | [diff] [blame] | 2063 | hda_exec_init_verbs(codec); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2064 | if (codec->patch_ops.resume) |
| 2065 | codec->patch_ops.resume(codec); |
| 2066 | else { |
Takashi Iwai | 9d99f31 | 2007-08-14 15:15:52 +0200 | [diff] [blame] | 2067 | if (codec->patch_ops.init) |
| 2068 | codec->patch_ops.init(codec); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2069 | snd_hda_codec_resume_amp(codec); |
| 2070 | snd_hda_codec_resume_cache(codec); |
| 2071 | } |
| 2072 | } |
| 2073 | #endif /* SND_HDA_NEEDS_RESUME */ |
| 2074 | |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 2075 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2076 | /** |
| 2077 | * snd_hda_build_controls - build mixer controls |
| 2078 | * @bus: the BUS |
| 2079 | * |
| 2080 | * Creates mixer controls for each codec included in the bus. |
| 2081 | * |
| 2082 | * Returns 0 if successful, otherwise a negative error code. |
| 2083 | */ |
Takashi Iwai | 756e2b0 | 2007-04-16 11:27:07 +0200 | [diff] [blame] | 2084 | int __devinit snd_hda_build_controls(struct hda_bus *bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2085 | { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2086 | struct hda_codec *codec; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2087 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2088 | list_for_each_entry(codec, &bus->codec_list, list) { |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2089 | int err = snd_hda_codec_build_controls(codec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2090 | if (err < 0) |
| 2091 | return err; |
| 2092 | } |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2093 | return 0; |
| 2094 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2095 | |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2096 | int snd_hda_codec_build_controls(struct hda_codec *codec) |
| 2097 | { |
| 2098 | int err = 0; |
| 2099 | /* fake as if already powered-on */ |
| 2100 | hda_keep_power_on(codec); |
| 2101 | /* then fire up */ |
| 2102 | hda_set_power_state(codec, |
| 2103 | codec->afg ? codec->afg : codec->mfg, |
| 2104 | AC_PWRST_D0); |
Takashi Iwai | 11aeff0 | 2008-07-30 15:01:46 +0200 | [diff] [blame] | 2105 | hda_exec_init_verbs(codec); |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2106 | /* continue to initialize... */ |
| 2107 | if (codec->patch_ops.init) |
| 2108 | err = codec->patch_ops.init(codec); |
| 2109 | if (!err && codec->patch_ops.build_controls) |
| 2110 | err = codec->patch_ops.build_controls(codec); |
| 2111 | snd_hda_power_down(codec); |
| 2112 | if (err < 0) |
| 2113 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2114 | return 0; |
| 2115 | } |
| 2116 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2117 | /* |
| 2118 | * stream formats |
| 2119 | */ |
Takashi Iwai | befdf31 | 2005-08-22 13:57:55 +0200 | [diff] [blame] | 2120 | struct hda_rate_tbl { |
| 2121 | unsigned int hz; |
| 2122 | unsigned int alsa_bits; |
| 2123 | unsigned int hda_fmt; |
| 2124 | }; |
| 2125 | |
| 2126 | static struct hda_rate_tbl rate_bits[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2127 | /* rate in Hz, ALSA rate bitmask, HDA format value */ |
Nicolas Graziano | 9d8f53f | 2005-08-22 13:47:16 +0200 | [diff] [blame] | 2128 | |
| 2129 | /* autodetected value used in snd_hda_query_supported_pcm */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2130 | { 8000, SNDRV_PCM_RATE_8000, 0x0500 }, /* 1/6 x 48 */ |
| 2131 | { 11025, SNDRV_PCM_RATE_11025, 0x4300 }, /* 1/4 x 44 */ |
| 2132 | { 16000, SNDRV_PCM_RATE_16000, 0x0200 }, /* 1/3 x 48 */ |
| 2133 | { 22050, SNDRV_PCM_RATE_22050, 0x4100 }, /* 1/2 x 44 */ |
| 2134 | { 32000, SNDRV_PCM_RATE_32000, 0x0a00 }, /* 2/3 x 48 */ |
| 2135 | { 44100, SNDRV_PCM_RATE_44100, 0x4000 }, /* 44 */ |
| 2136 | { 48000, SNDRV_PCM_RATE_48000, 0x0000 }, /* 48 */ |
| 2137 | { 88200, SNDRV_PCM_RATE_88200, 0x4800 }, /* 2 x 44 */ |
| 2138 | { 96000, SNDRV_PCM_RATE_96000, 0x0800 }, /* 2 x 48 */ |
| 2139 | { 176400, SNDRV_PCM_RATE_176400, 0x5800 },/* 4 x 44 */ |
| 2140 | { 192000, SNDRV_PCM_RATE_192000, 0x1800 }, /* 4 x 48 */ |
Takashi Iwai | a961f9f | 2007-04-12 13:08:09 +0200 | [diff] [blame] | 2141 | #define AC_PAR_PCM_RATE_BITS 11 |
| 2142 | /* up to bits 10, 384kHZ isn't supported properly */ |
| 2143 | |
| 2144 | /* not autodetected value */ |
| 2145 | { 9600, SNDRV_PCM_RATE_KNOT, 0x0400 }, /* 1/5 x 48 */ |
Nicolas Graziano | 9d8f53f | 2005-08-22 13:47:16 +0200 | [diff] [blame] | 2146 | |
Takashi Iwai | befdf31 | 2005-08-22 13:57:55 +0200 | [diff] [blame] | 2147 | { 0 } /* terminator */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2148 | }; |
| 2149 | |
| 2150 | /** |
| 2151 | * snd_hda_calc_stream_format - calculate format bitset |
| 2152 | * @rate: the sample rate |
| 2153 | * @channels: the number of channels |
| 2154 | * @format: the PCM format (SNDRV_PCM_FORMAT_XXX) |
| 2155 | * @maxbps: the max. bps |
| 2156 | * |
| 2157 | * Calculate the format bitset from the given rate, channels and th PCM format. |
| 2158 | * |
| 2159 | * Return zero if invalid. |
| 2160 | */ |
| 2161 | unsigned int snd_hda_calc_stream_format(unsigned int rate, |
| 2162 | unsigned int channels, |
| 2163 | unsigned int format, |
| 2164 | unsigned int maxbps) |
| 2165 | { |
| 2166 | int i; |
| 2167 | unsigned int val = 0; |
| 2168 | |
Takashi Iwai | befdf31 | 2005-08-22 13:57:55 +0200 | [diff] [blame] | 2169 | for (i = 0; rate_bits[i].hz; i++) |
| 2170 | if (rate_bits[i].hz == rate) { |
| 2171 | val = rate_bits[i].hda_fmt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2172 | break; |
| 2173 | } |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2174 | if (!rate_bits[i].hz) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2175 | snd_printdd("invalid rate %d\n", rate); |
| 2176 | return 0; |
| 2177 | } |
| 2178 | |
| 2179 | if (channels == 0 || channels > 8) { |
| 2180 | snd_printdd("invalid channels %d\n", channels); |
| 2181 | return 0; |
| 2182 | } |
| 2183 | val |= channels - 1; |
| 2184 | |
| 2185 | switch (snd_pcm_format_width(format)) { |
| 2186 | case 8: val |= 0x00; break; |
| 2187 | case 16: val |= 0x10; break; |
| 2188 | case 20: |
| 2189 | case 24: |
| 2190 | case 32: |
| 2191 | if (maxbps >= 32) |
| 2192 | val |= 0x40; |
| 2193 | else if (maxbps >= 24) |
| 2194 | val |= 0x30; |
| 2195 | else |
| 2196 | val |= 0x20; |
| 2197 | break; |
| 2198 | default: |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2199 | snd_printdd("invalid format width %d\n", |
| 2200 | snd_pcm_format_width(format)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2201 | return 0; |
| 2202 | } |
| 2203 | |
| 2204 | return val; |
| 2205 | } |
| 2206 | |
| 2207 | /** |
| 2208 | * snd_hda_query_supported_pcm - query the supported PCM rates and formats |
| 2209 | * @codec: the HDA codec |
| 2210 | * @nid: NID to query |
| 2211 | * @ratesp: the pointer to store the detected rate bitflags |
| 2212 | * @formatsp: the pointer to store the detected formats |
| 2213 | * @bpsp: the pointer to store the detected format widths |
| 2214 | * |
| 2215 | * Queries the supported PCM rates and formats. The NULL @ratesp, @formatsp |
| 2216 | * or @bsps argument is ignored. |
| 2217 | * |
| 2218 | * Returns 0 if successful, otherwise a negative error code. |
| 2219 | */ |
| 2220 | int snd_hda_query_supported_pcm(struct hda_codec *codec, hda_nid_t nid, |
| 2221 | u32 *ratesp, u64 *formatsp, unsigned int *bpsp) |
| 2222 | { |
| 2223 | int i; |
| 2224 | unsigned int val, streams; |
| 2225 | |
| 2226 | val = 0; |
| 2227 | if (nid != codec->afg && |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 2228 | (get_wcaps(codec, nid) & AC_WCAP_FORMAT_OVRD)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2229 | val = snd_hda_param_read(codec, nid, AC_PAR_PCM); |
| 2230 | if (val == -1) |
| 2231 | return -EIO; |
| 2232 | } |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2233 | if (!val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2234 | val = snd_hda_param_read(codec, codec->afg, AC_PAR_PCM); |
| 2235 | |
| 2236 | if (ratesp) { |
| 2237 | u32 rates = 0; |
Takashi Iwai | a961f9f | 2007-04-12 13:08:09 +0200 | [diff] [blame] | 2238 | for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2239 | if (val & (1 << i)) |
Takashi Iwai | befdf31 | 2005-08-22 13:57:55 +0200 | [diff] [blame] | 2240 | rates |= rate_bits[i].alsa_bits; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2241 | } |
| 2242 | *ratesp = rates; |
| 2243 | } |
| 2244 | |
| 2245 | if (formatsp || bpsp) { |
| 2246 | u64 formats = 0; |
| 2247 | unsigned int bps; |
| 2248 | unsigned int wcaps; |
| 2249 | |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 2250 | wcaps = get_wcaps(codec, nid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2251 | streams = snd_hda_param_read(codec, nid, AC_PAR_STREAM); |
| 2252 | if (streams == -1) |
| 2253 | return -EIO; |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2254 | if (!streams) { |
| 2255 | streams = snd_hda_param_read(codec, codec->afg, |
| 2256 | AC_PAR_STREAM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2257 | if (streams == -1) |
| 2258 | return -EIO; |
| 2259 | } |
| 2260 | |
| 2261 | bps = 0; |
| 2262 | if (streams & AC_SUPFMT_PCM) { |
| 2263 | if (val & AC_SUPPCM_BITS_8) { |
| 2264 | formats |= SNDRV_PCM_FMTBIT_U8; |
| 2265 | bps = 8; |
| 2266 | } |
| 2267 | if (val & AC_SUPPCM_BITS_16) { |
| 2268 | formats |= SNDRV_PCM_FMTBIT_S16_LE; |
| 2269 | bps = 16; |
| 2270 | } |
| 2271 | if (wcaps & AC_WCAP_DIGITAL) { |
| 2272 | if (val & AC_SUPPCM_BITS_32) |
| 2273 | formats |= SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE; |
| 2274 | if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24)) |
| 2275 | formats |= SNDRV_PCM_FMTBIT_S32_LE; |
| 2276 | if (val & AC_SUPPCM_BITS_24) |
| 2277 | bps = 24; |
| 2278 | else if (val & AC_SUPPCM_BITS_20) |
| 2279 | bps = 20; |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2280 | } else if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24| |
| 2281 | AC_SUPPCM_BITS_32)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2282 | formats |= SNDRV_PCM_FMTBIT_S32_LE; |
| 2283 | if (val & AC_SUPPCM_BITS_32) |
| 2284 | bps = 32; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2285 | else if (val & AC_SUPPCM_BITS_24) |
| 2286 | bps = 24; |
Nicolas Graziano | 33ef7651 | 2006-09-19 14:23:14 +0200 | [diff] [blame] | 2287 | else if (val & AC_SUPPCM_BITS_20) |
| 2288 | bps = 20; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2289 | } |
| 2290 | } |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2291 | else if (streams == AC_SUPFMT_FLOAT32) { |
| 2292 | /* should be exclusive */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2293 | formats |= SNDRV_PCM_FMTBIT_FLOAT_LE; |
| 2294 | bps = 32; |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2295 | } else if (streams == AC_SUPFMT_AC3) { |
| 2296 | /* should be exclusive */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2297 | /* temporary hack: we have still no proper support |
| 2298 | * for the direct AC3 stream... |
| 2299 | */ |
| 2300 | formats |= SNDRV_PCM_FMTBIT_U8; |
| 2301 | bps = 8; |
| 2302 | } |
| 2303 | if (formatsp) |
| 2304 | *formatsp = formats; |
| 2305 | if (bpsp) |
| 2306 | *bpsp = bps; |
| 2307 | } |
| 2308 | |
| 2309 | return 0; |
| 2310 | } |
| 2311 | |
| 2312 | /** |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2313 | * snd_hda_is_supported_format - check whether the given node supports |
| 2314 | * the format val |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2315 | * |
| 2316 | * Returns 1 if supported, 0 if not. |
| 2317 | */ |
| 2318 | int snd_hda_is_supported_format(struct hda_codec *codec, hda_nid_t nid, |
| 2319 | unsigned int format) |
| 2320 | { |
| 2321 | int i; |
| 2322 | unsigned int val = 0, rate, stream; |
| 2323 | |
| 2324 | if (nid != codec->afg && |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 2325 | (get_wcaps(codec, nid) & AC_WCAP_FORMAT_OVRD)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2326 | val = snd_hda_param_read(codec, nid, AC_PAR_PCM); |
| 2327 | if (val == -1) |
| 2328 | return 0; |
| 2329 | } |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2330 | if (!val) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2331 | val = snd_hda_param_read(codec, codec->afg, AC_PAR_PCM); |
| 2332 | if (val == -1) |
| 2333 | return 0; |
| 2334 | } |
| 2335 | |
| 2336 | rate = format & 0xff00; |
Takashi Iwai | a961f9f | 2007-04-12 13:08:09 +0200 | [diff] [blame] | 2337 | for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++) |
Takashi Iwai | befdf31 | 2005-08-22 13:57:55 +0200 | [diff] [blame] | 2338 | if (rate_bits[i].hda_fmt == rate) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2339 | if (val & (1 << i)) |
| 2340 | break; |
| 2341 | return 0; |
| 2342 | } |
Takashi Iwai | a961f9f | 2007-04-12 13:08:09 +0200 | [diff] [blame] | 2343 | if (i >= AC_PAR_PCM_RATE_BITS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2344 | return 0; |
| 2345 | |
| 2346 | stream = snd_hda_param_read(codec, nid, AC_PAR_STREAM); |
| 2347 | if (stream == -1) |
| 2348 | return 0; |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2349 | if (!stream && nid != codec->afg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2350 | stream = snd_hda_param_read(codec, codec->afg, AC_PAR_STREAM); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2351 | if (!stream || stream == -1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2352 | return 0; |
| 2353 | |
| 2354 | if (stream & AC_SUPFMT_PCM) { |
| 2355 | switch (format & 0xf0) { |
| 2356 | case 0x00: |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2357 | if (!(val & AC_SUPPCM_BITS_8)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2358 | return 0; |
| 2359 | break; |
| 2360 | case 0x10: |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2361 | if (!(val & AC_SUPPCM_BITS_16)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2362 | return 0; |
| 2363 | break; |
| 2364 | case 0x20: |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2365 | if (!(val & AC_SUPPCM_BITS_20)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2366 | return 0; |
| 2367 | break; |
| 2368 | case 0x30: |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2369 | if (!(val & AC_SUPPCM_BITS_24)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2370 | return 0; |
| 2371 | break; |
| 2372 | case 0x40: |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2373 | if (!(val & AC_SUPPCM_BITS_32)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2374 | return 0; |
| 2375 | break; |
| 2376 | default: |
| 2377 | return 0; |
| 2378 | } |
| 2379 | } else { |
| 2380 | /* FIXME: check for float32 and AC3? */ |
| 2381 | } |
| 2382 | |
| 2383 | return 1; |
| 2384 | } |
| 2385 | |
| 2386 | /* |
| 2387 | * PCM stuff |
| 2388 | */ |
| 2389 | static int hda_pcm_default_open_close(struct hda_pcm_stream *hinfo, |
| 2390 | struct hda_codec *codec, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 2391 | struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2392 | { |
| 2393 | return 0; |
| 2394 | } |
| 2395 | |
| 2396 | static int hda_pcm_default_prepare(struct hda_pcm_stream *hinfo, |
| 2397 | struct hda_codec *codec, |
| 2398 | unsigned int stream_tag, |
| 2399 | unsigned int format, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 2400 | struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2401 | { |
| 2402 | snd_hda_codec_setup_stream(codec, hinfo->nid, stream_tag, 0, format); |
| 2403 | return 0; |
| 2404 | } |
| 2405 | |
| 2406 | static int hda_pcm_default_cleanup(struct hda_pcm_stream *hinfo, |
| 2407 | struct hda_codec *codec, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 2408 | struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2409 | { |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 2410 | snd_hda_codec_cleanup_stream(codec, hinfo->nid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2411 | return 0; |
| 2412 | } |
| 2413 | |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2414 | static int set_pcm_default_values(struct hda_codec *codec, |
| 2415 | struct hda_pcm_stream *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2416 | { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2417 | /* query support PCM information from the given NID */ |
| 2418 | if (info->nid && (!info->rates || !info->formats)) { |
| 2419 | snd_hda_query_supported_pcm(codec, info->nid, |
| 2420 | info->rates ? NULL : &info->rates, |
| 2421 | info->formats ? NULL : &info->formats, |
| 2422 | info->maxbps ? NULL : &info->maxbps); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2423 | } |
| 2424 | if (info->ops.open == NULL) |
| 2425 | info->ops.open = hda_pcm_default_open_close; |
| 2426 | if (info->ops.close == NULL) |
| 2427 | info->ops.close = hda_pcm_default_open_close; |
| 2428 | if (info->ops.prepare == NULL) { |
Takashi Iwai | da3cec3 | 2008-08-08 17:12:14 +0200 | [diff] [blame] | 2429 | if (snd_BUG_ON(!info->nid)) |
| 2430 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2431 | info->ops.prepare = hda_pcm_default_prepare; |
| 2432 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2433 | if (info->ops.cleanup == NULL) { |
Takashi Iwai | da3cec3 | 2008-08-08 17:12:14 +0200 | [diff] [blame] | 2434 | if (snd_BUG_ON(!info->nid)) |
| 2435 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2436 | info->ops.cleanup = hda_pcm_default_cleanup; |
| 2437 | } |
| 2438 | return 0; |
| 2439 | } |
| 2440 | |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 2441 | /* |
| 2442 | * attach a new PCM stream |
| 2443 | */ |
| 2444 | static int __devinit |
| 2445 | snd_hda_attach_pcm(struct hda_codec *codec, struct hda_pcm *pcm) |
| 2446 | { |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 2447 | struct hda_bus *bus = codec->bus; |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 2448 | struct hda_pcm_stream *info; |
| 2449 | int stream, err; |
| 2450 | |
Takashi Iwai | b91f080 | 2008-11-04 08:43:08 +0100 | [diff] [blame] | 2451 | if (snd_BUG_ON(!pcm->name)) |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 2452 | return -EINVAL; |
| 2453 | for (stream = 0; stream < 2; stream++) { |
| 2454 | info = &pcm->stream[stream]; |
| 2455 | if (info->substreams) { |
| 2456 | err = set_pcm_default_values(codec, info); |
| 2457 | if (err < 0) |
| 2458 | return err; |
| 2459 | } |
| 2460 | } |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 2461 | return bus->ops.attach_pcm(bus, codec, pcm); |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 2462 | } |
| 2463 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2464 | /** |
| 2465 | * snd_hda_build_pcms - build PCM information |
| 2466 | * @bus: the BUS |
| 2467 | * |
| 2468 | * Create PCM information for each codec included in the bus. |
| 2469 | * |
| 2470 | * The build_pcms codec patch is requested to set up codec->num_pcms and |
| 2471 | * codec->pcm_info properly. The array is referred by the top-level driver |
| 2472 | * to create its PCM instances. |
| 2473 | * The allocated codec->pcm_info should be released in codec->patch_ops.free |
| 2474 | * callback. |
| 2475 | * |
| 2476 | * At least, substreams, channels_min and channels_max must be filled for |
| 2477 | * each stream. substreams = 0 indicates that the stream doesn't exist. |
| 2478 | * When rates and/or formats are zero, the supported values are queried |
| 2479 | * from the given nid. The nid is used also by the default ops.prepare |
| 2480 | * and ops.cleanup callbacks. |
| 2481 | * |
| 2482 | * The driver needs to call ops.open in its open callback. Similarly, |
| 2483 | * ops.close is supposed to be called in the close callback. |
| 2484 | * ops.prepare should be called in the prepare or hw_params callback |
| 2485 | * with the proper parameters for set up. |
| 2486 | * ops.cleanup should be called in hw_free for clean up of streams. |
| 2487 | * |
| 2488 | * This function returns 0 if successfull, or a negative error code. |
| 2489 | */ |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2490 | int snd_hda_build_pcms(struct hda_bus *bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2491 | { |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 2492 | static const char *dev_name[HDA_PCM_NTYPES] = { |
| 2493 | "Audio", "SPDIF", "HDMI", "Modem" |
| 2494 | }; |
| 2495 | /* starting device index for each PCM type */ |
| 2496 | static int dev_idx[HDA_PCM_NTYPES] = { |
| 2497 | [HDA_PCM_TYPE_AUDIO] = 0, |
| 2498 | [HDA_PCM_TYPE_SPDIF] = 1, |
| 2499 | [HDA_PCM_TYPE_HDMI] = 3, |
| 2500 | [HDA_PCM_TYPE_MODEM] = 6 |
| 2501 | }; |
| 2502 | /* normal audio device indices; not linear to keep compatibility */ |
| 2503 | static int audio_idx[4] = { 0, 2, 4, 5 }; |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2504 | struct hda_codec *codec; |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 2505 | int num_devs[HDA_PCM_NTYPES]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2506 | |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 2507 | memset(num_devs, 0, sizeof(num_devs)); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2508 | list_for_each_entry(codec, &bus->codec_list, list) { |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 2509 | unsigned int pcm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2510 | int err; |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2511 | if (!codec->num_pcms) { |
| 2512 | if (!codec->patch_ops.build_pcms) |
| 2513 | continue; |
| 2514 | err = codec->patch_ops.build_pcms(codec); |
| 2515 | if (err < 0) |
| 2516 | return err; |
| 2517 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2518 | for (pcm = 0; pcm < codec->num_pcms; pcm++) { |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 2519 | struct hda_pcm *cpcm = &codec->pcm_info[pcm]; |
| 2520 | int type = cpcm->pcm_type; |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2521 | int dev; |
Takashi Iwai | bfc5c26 | 2008-11-04 17:48:39 +0100 | [diff] [blame] | 2522 | |
| 2523 | if (!cpcm->stream[0].substreams && |
| 2524 | !cpcm->stream[1].substreams) |
| 2525 | continue; /* no substreams assigned */ |
| 2526 | |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 2527 | switch (type) { |
| 2528 | case HDA_PCM_TYPE_AUDIO: |
| 2529 | if (num_devs[type] >= ARRAY_SIZE(audio_idx)) { |
| 2530 | snd_printk(KERN_WARNING |
| 2531 | "Too many audio devices\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2532 | continue; |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 2533 | } |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2534 | dev = audio_idx[num_devs[type]]; |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 2535 | break; |
| 2536 | case HDA_PCM_TYPE_SPDIF: |
| 2537 | case HDA_PCM_TYPE_HDMI: |
| 2538 | case HDA_PCM_TYPE_MODEM: |
| 2539 | if (num_devs[type]) { |
| 2540 | snd_printk(KERN_WARNING |
| 2541 | "%s already defined\n", |
| 2542 | dev_name[type]); |
| 2543 | continue; |
| 2544 | } |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2545 | dev = dev_idx[type]; |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 2546 | break; |
| 2547 | default: |
| 2548 | snd_printk(KERN_WARNING |
| 2549 | "Invalid PCM type %d\n", type); |
| 2550 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2551 | } |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 2552 | num_devs[type]++; |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2553 | if (!cpcm->pcm) { |
| 2554 | cpcm->device = dev; |
| 2555 | err = snd_hda_attach_pcm(codec, cpcm); |
| 2556 | if (err < 0) |
| 2557 | return err; |
| 2558 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2559 | } |
| 2560 | } |
| 2561 | return 0; |
| 2562 | } |
| 2563 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2564 | /** |
| 2565 | * snd_hda_check_board_config - compare the current codec with the config table |
| 2566 | * @codec: the HDA codec |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 2567 | * @num_configs: number of config enums |
| 2568 | * @models: array of model name strings |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2569 | * @tbl: configuration table, terminated by null entries |
| 2570 | * |
| 2571 | * Compares the modelname or PCI subsystem id of the current codec with the |
| 2572 | * given configuration table. If a matching entry is found, returns its |
| 2573 | * config value (supposed to be 0 or positive). |
| 2574 | * |
| 2575 | * If no entries are matching, the function returns a negative value. |
| 2576 | */ |
Takashi Iwai | 12f288b | 2007-08-02 15:51:59 +0200 | [diff] [blame] | 2577 | int snd_hda_check_board_config(struct hda_codec *codec, |
| 2578 | int num_configs, const char **models, |
| 2579 | const struct snd_pci_quirk *tbl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2580 | { |
Takashi Iwai | f44ac83 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2581 | if (codec->modelname && models) { |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 2582 | int i; |
| 2583 | for (i = 0; i < num_configs; i++) { |
| 2584 | if (models[i] && |
Takashi Iwai | f44ac83 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2585 | !strcmp(codec->modelname, models[i])) { |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 2586 | snd_printd(KERN_INFO "hda_codec: model '%s' is " |
| 2587 | "selected\n", models[i]); |
| 2588 | return i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2589 | } |
| 2590 | } |
| 2591 | } |
| 2592 | |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 2593 | if (!codec->bus->pci || !tbl) |
| 2594 | return -1; |
| 2595 | |
| 2596 | tbl = snd_pci_quirk_lookup(codec->bus->pci, tbl); |
| 2597 | if (!tbl) |
| 2598 | return -1; |
| 2599 | if (tbl->value >= 0 && tbl->value < num_configs) { |
Takashi Iwai | 62cf872 | 2008-05-20 12:15:15 +0200 | [diff] [blame] | 2600 | #ifdef CONFIG_SND_DEBUG_VERBOSE |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 2601 | char tmp[10]; |
| 2602 | const char *model = NULL; |
| 2603 | if (models) |
| 2604 | model = models[tbl->value]; |
| 2605 | if (!model) { |
| 2606 | sprintf(tmp, "#%d", tbl->value); |
| 2607 | model = tmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2608 | } |
Takashi Iwai | f5fcc13 | 2006-11-24 17:07:44 +0100 | [diff] [blame] | 2609 | snd_printdd(KERN_INFO "hda_codec: model '%s' is selected " |
| 2610 | "for config %x:%x (%s)\n", |
| 2611 | model, tbl->subvendor, tbl->subdevice, |
| 2612 | (tbl->name ? tbl->name : "Unknown device")); |
| 2613 | #endif |
| 2614 | return tbl->value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2615 | } |
| 2616 | return -1; |
| 2617 | } |
| 2618 | |
| 2619 | /** |
| 2620 | * snd_hda_add_new_ctls - create controls from the array |
| 2621 | * @codec: the HDA codec |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 2622 | * @knew: the array of struct snd_kcontrol_new |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2623 | * |
| 2624 | * This helper function creates and add new controls in the given array. |
| 2625 | * The array must be terminated with an empty entry as terminator. |
| 2626 | * |
| 2627 | * Returns 0 if successful, or a negative error code. |
| 2628 | */ |
Takashi Iwai | 12f288b | 2007-08-02 15:51:59 +0200 | [diff] [blame] | 2629 | int snd_hda_add_new_ctls(struct hda_codec *codec, struct snd_kcontrol_new *knew) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2630 | { |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2631 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2632 | |
| 2633 | for (; knew->name; knew++) { |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 2634 | struct snd_kcontrol *kctl; |
| 2635 | kctl = snd_ctl_new1(knew, codec); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2636 | if (!kctl) |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 2637 | return -ENOMEM; |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2638 | err = snd_hda_ctl_add(codec, kctl); |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 2639 | if (err < 0) { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2640 | if (!codec->addr) |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 2641 | return err; |
| 2642 | kctl = snd_ctl_new1(knew, codec); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2643 | if (!kctl) |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 2644 | return -ENOMEM; |
| 2645 | kctl->id.device = codec->addr; |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 2646 | err = snd_hda_ctl_add(codec, kctl); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2647 | if (err < 0) |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 2648 | return err; |
| 2649 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2650 | } |
| 2651 | return 0; |
| 2652 | } |
| 2653 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2654 | #ifdef CONFIG_SND_HDA_POWER_SAVE |
| 2655 | static void hda_set_power_state(struct hda_codec *codec, hda_nid_t fg, |
| 2656 | unsigned int power_state); |
| 2657 | |
| 2658 | static void hda_power_work(struct work_struct *work) |
| 2659 | { |
| 2660 | struct hda_codec *codec = |
| 2661 | container_of(work, struct hda_codec, power_work.work); |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 2662 | struct hda_bus *bus = codec->bus; |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2663 | |
Maxim Levitsky | 2e49246 | 2007-09-03 15:26:57 +0200 | [diff] [blame] | 2664 | if (!codec->power_on || codec->power_count) { |
| 2665 | codec->power_transition = 0; |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2666 | return; |
Maxim Levitsky | 2e49246 | 2007-09-03 15:26:57 +0200 | [diff] [blame] | 2667 | } |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2668 | |
| 2669 | hda_call_codec_suspend(codec); |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 2670 | if (bus->ops.pm_notify) |
| 2671 | bus->ops.pm_notify(bus); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2672 | } |
| 2673 | |
| 2674 | static void hda_keep_power_on(struct hda_codec *codec) |
| 2675 | { |
| 2676 | codec->power_count++; |
| 2677 | codec->power_on = 1; |
| 2678 | } |
| 2679 | |
| 2680 | void snd_hda_power_up(struct hda_codec *codec) |
| 2681 | { |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 2682 | struct hda_bus *bus = codec->bus; |
| 2683 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2684 | codec->power_count++; |
Takashi Iwai | a221e28 | 2007-08-16 16:35:33 +0200 | [diff] [blame] | 2685 | if (codec->power_on || codec->power_transition) |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2686 | return; |
| 2687 | |
| 2688 | codec->power_on = 1; |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 2689 | if (bus->ops.pm_notify) |
| 2690 | bus->ops.pm_notify(bus); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2691 | hda_call_codec_resume(codec); |
| 2692 | cancel_delayed_work(&codec->power_work); |
Takashi Iwai | a221e28 | 2007-08-16 16:35:33 +0200 | [diff] [blame] | 2693 | codec->power_transition = 0; |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2694 | } |
| 2695 | |
| 2696 | void snd_hda_power_down(struct hda_codec *codec) |
| 2697 | { |
| 2698 | --codec->power_count; |
Takashi Iwai | a221e28 | 2007-08-16 16:35:33 +0200 | [diff] [blame] | 2699 | if (!codec->power_on || codec->power_count || codec->power_transition) |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2700 | return; |
Takashi Iwai | a221e28 | 2007-08-16 16:35:33 +0200 | [diff] [blame] | 2701 | if (power_save) { |
| 2702 | codec->power_transition = 1; /* avoid reentrance */ |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2703 | schedule_delayed_work(&codec->power_work, |
| 2704 | msecs_to_jiffies(power_save * 1000)); |
Takashi Iwai | a221e28 | 2007-08-16 16:35:33 +0200 | [diff] [blame] | 2705 | } |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 2706 | } |
| 2707 | |
| 2708 | int snd_hda_check_amp_list_power(struct hda_codec *codec, |
| 2709 | struct hda_loopback_check *check, |
| 2710 | hda_nid_t nid) |
| 2711 | { |
| 2712 | struct hda_amp_list *p; |
| 2713 | int ch, v; |
| 2714 | |
| 2715 | if (!check->amplist) |
| 2716 | return 0; |
| 2717 | for (p = check->amplist; p->nid; p++) { |
| 2718 | if (p->nid == nid) |
| 2719 | break; |
| 2720 | } |
| 2721 | if (!p->nid) |
| 2722 | return 0; /* nothing changed */ |
| 2723 | |
| 2724 | for (p = check->amplist; p->nid; p++) { |
| 2725 | for (ch = 0; ch < 2; ch++) { |
| 2726 | v = snd_hda_codec_amp_read(codec, p->nid, ch, p->dir, |
| 2727 | p->idx); |
| 2728 | if (!(v & HDA_AMP_MUTE) && v > 0) { |
| 2729 | if (!check->power_on) { |
| 2730 | check->power_on = 1; |
| 2731 | snd_hda_power_up(codec); |
| 2732 | } |
| 2733 | return 1; |
| 2734 | } |
| 2735 | } |
| 2736 | } |
| 2737 | if (check->power_on) { |
| 2738 | check->power_on = 0; |
| 2739 | snd_hda_power_down(codec); |
| 2740 | } |
| 2741 | return 0; |
| 2742 | } |
| 2743 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2744 | |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 2745 | /* |
Takashi Iwai | d2a6d7d | 2005-11-17 11:06:29 +0100 | [diff] [blame] | 2746 | * Channel mode helper |
| 2747 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2748 | int snd_hda_ch_mode_info(struct hda_codec *codec, |
| 2749 | struct snd_ctl_elem_info *uinfo, |
| 2750 | const struct hda_channel_mode *chmode, |
| 2751 | int num_chmodes) |
Takashi Iwai | d2a6d7d | 2005-11-17 11:06:29 +0100 | [diff] [blame] | 2752 | { |
| 2753 | uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; |
| 2754 | uinfo->count = 1; |
| 2755 | uinfo->value.enumerated.items = num_chmodes; |
| 2756 | if (uinfo->value.enumerated.item >= num_chmodes) |
| 2757 | uinfo->value.enumerated.item = num_chmodes - 1; |
| 2758 | sprintf(uinfo->value.enumerated.name, "%dch", |
| 2759 | chmode[uinfo->value.enumerated.item].channels); |
| 2760 | return 0; |
| 2761 | } |
| 2762 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2763 | int snd_hda_ch_mode_get(struct hda_codec *codec, |
| 2764 | struct snd_ctl_elem_value *ucontrol, |
| 2765 | const struct hda_channel_mode *chmode, |
| 2766 | int num_chmodes, |
Takashi Iwai | d2a6d7d | 2005-11-17 11:06:29 +0100 | [diff] [blame] | 2767 | int max_channels) |
| 2768 | { |
| 2769 | int i; |
| 2770 | |
| 2771 | for (i = 0; i < num_chmodes; i++) { |
| 2772 | if (max_channels == chmode[i].channels) { |
| 2773 | ucontrol->value.enumerated.item[0] = i; |
| 2774 | break; |
| 2775 | } |
| 2776 | } |
| 2777 | return 0; |
| 2778 | } |
| 2779 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2780 | int snd_hda_ch_mode_put(struct hda_codec *codec, |
| 2781 | struct snd_ctl_elem_value *ucontrol, |
| 2782 | const struct hda_channel_mode *chmode, |
| 2783 | int num_chmodes, |
Takashi Iwai | d2a6d7d | 2005-11-17 11:06:29 +0100 | [diff] [blame] | 2784 | int *max_channelsp) |
| 2785 | { |
| 2786 | unsigned int mode; |
| 2787 | |
| 2788 | mode = ucontrol->value.enumerated.item[0]; |
Takashi Iwai | 68ea7b2 | 2007-11-15 15:54:38 +0100 | [diff] [blame] | 2789 | if (mode >= num_chmodes) |
| 2790 | return -EINVAL; |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 2791 | if (*max_channelsp == chmode[mode].channels) |
Takashi Iwai | d2a6d7d | 2005-11-17 11:06:29 +0100 | [diff] [blame] | 2792 | return 0; |
| 2793 | /* change the current channel setting */ |
| 2794 | *max_channelsp = chmode[mode].channels; |
| 2795 | if (chmode[mode].sequence) |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 2796 | snd_hda_sequence_write_cache(codec, chmode[mode].sequence); |
Takashi Iwai | d2a6d7d | 2005-11-17 11:06:29 +0100 | [diff] [blame] | 2797 | return 1; |
| 2798 | } |
| 2799 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2800 | /* |
| 2801 | * input MUX helper |
| 2802 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2803 | int snd_hda_input_mux_info(const struct hda_input_mux *imux, |
| 2804 | struct snd_ctl_elem_info *uinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2805 | { |
| 2806 | unsigned int index; |
| 2807 | |
| 2808 | uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; |
| 2809 | uinfo->count = 1; |
| 2810 | uinfo->value.enumerated.items = imux->num_items; |
Takashi Iwai | 5513b0c | 2007-10-09 11:58:41 +0200 | [diff] [blame] | 2811 | if (!imux->num_items) |
| 2812 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2813 | index = uinfo->value.enumerated.item; |
| 2814 | if (index >= imux->num_items) |
| 2815 | index = imux->num_items - 1; |
| 2816 | strcpy(uinfo->value.enumerated.name, imux->items[index].label); |
| 2817 | return 0; |
| 2818 | } |
| 2819 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2820 | int snd_hda_input_mux_put(struct hda_codec *codec, |
| 2821 | const struct hda_input_mux *imux, |
| 2822 | struct snd_ctl_elem_value *ucontrol, |
| 2823 | hda_nid_t nid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2824 | unsigned int *cur_val) |
| 2825 | { |
| 2826 | unsigned int idx; |
| 2827 | |
Takashi Iwai | 5513b0c | 2007-10-09 11:58:41 +0200 | [diff] [blame] | 2828 | if (!imux->num_items) |
| 2829 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2830 | idx = ucontrol->value.enumerated.item[0]; |
| 2831 | if (idx >= imux->num_items) |
| 2832 | idx = imux->num_items - 1; |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 2833 | if (*cur_val == idx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2834 | return 0; |
Takashi Iwai | 82beb8f | 2007-08-10 17:09:26 +0200 | [diff] [blame] | 2835 | snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, |
| 2836 | imux->items[idx].index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2837 | *cur_val = idx; |
| 2838 | return 1; |
| 2839 | } |
| 2840 | |
| 2841 | |
| 2842 | /* |
| 2843 | * Multi-channel / digital-out PCM helper functions |
| 2844 | */ |
| 2845 | |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 2846 | /* setup SPDIF output stream */ |
| 2847 | static void setup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid, |
| 2848 | unsigned int stream_tag, unsigned int format) |
| 2849 | { |
| 2850 | /* turn off SPDIF once; otherwise the IEC958 bits won't be updated */ |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 2851 | if (codec->spdif_status_reset && (codec->spdif_ctls & AC_DIG1_ENABLE)) |
| 2852 | set_dig_out_convert(codec, nid, |
| 2853 | codec->spdif_ctls & ~AC_DIG1_ENABLE & 0xff, |
| 2854 | -1); |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 2855 | snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format); |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 2856 | if (codec->slave_dig_outs) { |
| 2857 | hda_nid_t *d; |
| 2858 | for (d = codec->slave_dig_outs; *d; d++) |
| 2859 | snd_hda_codec_setup_stream(codec, *d, stream_tag, 0, |
| 2860 | format); |
Matthew Ranostay | de51ca1 | 2008-09-07 14:31:40 -0400 | [diff] [blame] | 2861 | } |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 2862 | /* turn on again (if needed) */ |
| 2863 | if (codec->spdif_status_reset && (codec->spdif_ctls & AC_DIG1_ENABLE)) |
| 2864 | set_dig_out_convert(codec, nid, |
| 2865 | codec->spdif_ctls & 0xff, -1); |
| 2866 | } |
Matthew Ranostay | de51ca1 | 2008-09-07 14:31:40 -0400 | [diff] [blame] | 2867 | |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 2868 | static void cleanup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid) |
| 2869 | { |
| 2870 | snd_hda_codec_cleanup_stream(codec, nid); |
| 2871 | if (codec->slave_dig_outs) { |
| 2872 | hda_nid_t *d; |
| 2873 | for (d = codec->slave_dig_outs; *d; d++) |
| 2874 | snd_hda_codec_cleanup_stream(codec, *d); |
| 2875 | } |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 2876 | } |
| 2877 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2878 | /* |
| 2879 | * open the digital out in the exclusive mode |
| 2880 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2881 | int snd_hda_multi_out_dig_open(struct hda_codec *codec, |
| 2882 | struct hda_multi_out *mout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2883 | { |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 2884 | mutex_lock(&codec->spdif_mutex); |
Takashi Iwai | 5930ca4 | 2007-04-16 11:23:56 +0200 | [diff] [blame] | 2885 | if (mout->dig_out_used == HDA_DIG_ANALOG_DUP) |
| 2886 | /* already opened as analog dup; reset it once */ |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 2887 | cleanup_dig_out_stream(codec, mout->dig_out_nid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2888 | mout->dig_out_used = HDA_DIG_EXCLUSIVE; |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 2889 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2890 | return 0; |
| 2891 | } |
| 2892 | |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 2893 | int snd_hda_multi_out_dig_prepare(struct hda_codec *codec, |
| 2894 | struct hda_multi_out *mout, |
| 2895 | unsigned int stream_tag, |
| 2896 | unsigned int format, |
| 2897 | struct snd_pcm_substream *substream) |
| 2898 | { |
| 2899 | mutex_lock(&codec->spdif_mutex); |
| 2900 | setup_dig_out_stream(codec, mout->dig_out_nid, stream_tag, format); |
| 2901 | mutex_unlock(&codec->spdif_mutex); |
| 2902 | return 0; |
| 2903 | } |
| 2904 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2905 | /* |
| 2906 | * release the digital out |
| 2907 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2908 | int snd_hda_multi_out_dig_close(struct hda_codec *codec, |
| 2909 | struct hda_multi_out *mout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2910 | { |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 2911 | mutex_lock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2912 | mout->dig_out_used = 0; |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 2913 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2914 | return 0; |
| 2915 | } |
| 2916 | |
| 2917 | /* |
| 2918 | * set up more restrictions for analog out |
| 2919 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2920 | int snd_hda_multi_out_analog_open(struct hda_codec *codec, |
| 2921 | struct hda_multi_out *mout, |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 2922 | struct snd_pcm_substream *substream, |
| 2923 | struct hda_pcm_stream *hinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2924 | { |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 2925 | struct snd_pcm_runtime *runtime = substream->runtime; |
| 2926 | runtime->hw.channels_max = mout->max_channels; |
| 2927 | if (mout->dig_out_nid) { |
| 2928 | if (!mout->analog_rates) { |
| 2929 | mout->analog_rates = hinfo->rates; |
| 2930 | mout->analog_formats = hinfo->formats; |
| 2931 | mout->analog_maxbps = hinfo->maxbps; |
| 2932 | } else { |
| 2933 | runtime->hw.rates = mout->analog_rates; |
| 2934 | runtime->hw.formats = mout->analog_formats; |
| 2935 | hinfo->maxbps = mout->analog_maxbps; |
| 2936 | } |
| 2937 | if (!mout->spdif_rates) { |
| 2938 | snd_hda_query_supported_pcm(codec, mout->dig_out_nid, |
| 2939 | &mout->spdif_rates, |
| 2940 | &mout->spdif_formats, |
| 2941 | &mout->spdif_maxbps); |
| 2942 | } |
| 2943 | mutex_lock(&codec->spdif_mutex); |
| 2944 | if (mout->share_spdif) { |
| 2945 | runtime->hw.rates &= mout->spdif_rates; |
| 2946 | runtime->hw.formats &= mout->spdif_formats; |
| 2947 | if (mout->spdif_maxbps < hinfo->maxbps) |
| 2948 | hinfo->maxbps = mout->spdif_maxbps; |
| 2949 | } |
Frederik Deweerdt | eaa9985 | 2008-04-14 13:11:44 +0200 | [diff] [blame] | 2950 | mutex_unlock(&codec->spdif_mutex); |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 2951 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2952 | return snd_pcm_hw_constraint_step(substream->runtime, 0, |
| 2953 | SNDRV_PCM_HW_PARAM_CHANNELS, 2); |
| 2954 | } |
| 2955 | |
| 2956 | /* |
| 2957 | * set up the i/o for analog out |
| 2958 | * when the digital out is available, copy the front out to digital out, too. |
| 2959 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2960 | int snd_hda_multi_out_analog_prepare(struct hda_codec *codec, |
| 2961 | struct hda_multi_out *mout, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2962 | unsigned int stream_tag, |
| 2963 | unsigned int format, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 2964 | struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2965 | { |
| 2966 | hda_nid_t *nids = mout->dac_nids; |
| 2967 | int chs = substream->runtime->channels; |
| 2968 | int i; |
| 2969 | |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 2970 | mutex_lock(&codec->spdif_mutex); |
Takashi Iwai | 9a08160 | 2008-02-12 18:37:26 +0100 | [diff] [blame] | 2971 | if (mout->dig_out_nid && mout->share_spdif && |
| 2972 | mout->dig_out_used != HDA_DIG_EXCLUSIVE) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2973 | if (chs == 2 && |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2974 | snd_hda_is_supported_format(codec, mout->dig_out_nid, |
| 2975 | format) && |
| 2976 | !(codec->spdif_status & IEC958_AES0_NONAUDIO)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2977 | mout->dig_out_used = HDA_DIG_ANALOG_DUP; |
Takashi Iwai | 6b97eb4 | 2007-04-05 14:51:48 +0200 | [diff] [blame] | 2978 | setup_dig_out_stream(codec, mout->dig_out_nid, |
| 2979 | stream_tag, format); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2980 | } else { |
| 2981 | mout->dig_out_used = 0; |
Takashi Iwai | 2f72853 | 2008-09-25 16:32:41 +0200 | [diff] [blame] | 2982 | cleanup_dig_out_stream(codec, mout->dig_out_nid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2983 | } |
| 2984 | } |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 2985 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2986 | |
| 2987 | /* front */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2988 | snd_hda_codec_setup_stream(codec, nids[HDA_FRONT], stream_tag, |
| 2989 | 0, format); |
Takashi Iwai | d29240c | 2007-10-26 12:35:56 +0200 | [diff] [blame] | 2990 | if (!mout->no_share_stream && |
| 2991 | mout->hp_nid && mout->hp_nid != nids[HDA_FRONT]) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2992 | /* headphone out will just decode front left/right (stereo) */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 2993 | snd_hda_codec_setup_stream(codec, mout->hp_nid, stream_tag, |
| 2994 | 0, format); |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 2995 | /* extra outputs copied from front */ |
| 2996 | for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++) |
Takashi Iwai | d29240c | 2007-10-26 12:35:56 +0200 | [diff] [blame] | 2997 | if (!mout->no_share_stream && mout->extra_out_nid[i]) |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 2998 | snd_hda_codec_setup_stream(codec, |
| 2999 | mout->extra_out_nid[i], |
| 3000 | stream_tag, 0, format); |
| 3001 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3002 | /* surrounds */ |
| 3003 | for (i = 1; i < mout->num_dacs; i++) { |
Takashi Iwai | 4b3acaf | 2005-06-10 19:48:10 +0200 | [diff] [blame] | 3004 | if (chs >= (i + 1) * 2) /* independent out */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3005 | snd_hda_codec_setup_stream(codec, nids[i], stream_tag, |
| 3006 | i * 2, format); |
Takashi Iwai | d29240c | 2007-10-26 12:35:56 +0200 | [diff] [blame] | 3007 | else if (!mout->no_share_stream) /* copy front */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3008 | snd_hda_codec_setup_stream(codec, nids[i], stream_tag, |
| 3009 | 0, format); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3010 | } |
| 3011 | return 0; |
| 3012 | } |
| 3013 | |
| 3014 | /* |
| 3015 | * clean up the setting for analog out |
| 3016 | */ |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3017 | int snd_hda_multi_out_analog_cleanup(struct hda_codec *codec, |
| 3018 | struct hda_multi_out *mout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3019 | { |
| 3020 | hda_nid_t *nids = mout->dac_nids; |
| 3021 | int i; |
| 3022 | |
| 3023 | for (i = 0; i < mout->num_dacs; i++) |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 3024 | snd_hda_codec_cleanup_stream(codec, nids[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3025 | if (mout->hp_nid) |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 3026 | snd_hda_codec_cleanup_stream(codec, mout->hp_nid); |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 3027 | for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++) |
| 3028 | if (mout->extra_out_nid[i]) |
Takashi Iwai | 888afa1 | 2008-03-18 09:57:50 +0100 | [diff] [blame] | 3029 | snd_hda_codec_cleanup_stream(codec, |
| 3030 | mout->extra_out_nid[i]); |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 3031 | mutex_lock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3032 | 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] | 3033 | cleanup_dig_out_stream(codec, mout->dig_out_nid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3034 | mout->dig_out_used = 0; |
| 3035 | } |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 3036 | mutex_unlock(&codec->spdif_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3037 | return 0; |
| 3038 | } |
| 3039 | |
Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 3040 | /* |
Wu Fengguang | 6b34500 | 2008-10-07 14:21:41 +0800 | [diff] [blame] | 3041 | * Helper for automatic pin configuration |
Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 3042 | */ |
Kailang Yang | df694da | 2005-12-05 19:42:22 +0100 | [diff] [blame] | 3043 | |
Takashi Iwai | 12f288b | 2007-08-02 15:51:59 +0200 | [diff] [blame] | 3044 | static int is_in_nid_list(hda_nid_t nid, hda_nid_t *list) |
Kailang Yang | df694da | 2005-12-05 19:42:22 +0100 | [diff] [blame] | 3045 | { |
| 3046 | for (; *list; list++) |
| 3047 | if (*list == nid) |
| 3048 | return 1; |
| 3049 | return 0; |
| 3050 | } |
| 3051 | |
Steve Longerbeam | 81937d3 | 2007-05-08 15:33:03 +0200 | [diff] [blame] | 3052 | |
| 3053 | /* |
| 3054 | * Sort an associated group of pins according to their sequence numbers. |
| 3055 | */ |
| 3056 | static void sort_pins_by_sequence(hda_nid_t * pins, short * sequences, |
| 3057 | int num_pins) |
| 3058 | { |
| 3059 | int i, j; |
| 3060 | short seq; |
| 3061 | hda_nid_t nid; |
| 3062 | |
| 3063 | for (i = 0; i < num_pins; i++) { |
| 3064 | for (j = i + 1; j < num_pins; j++) { |
| 3065 | if (sequences[i] > sequences[j]) { |
| 3066 | seq = sequences[i]; |
| 3067 | sequences[i] = sequences[j]; |
| 3068 | sequences[j] = seq; |
| 3069 | nid = pins[i]; |
| 3070 | pins[i] = pins[j]; |
| 3071 | pins[j] = nid; |
| 3072 | } |
| 3073 | } |
| 3074 | } |
| 3075 | } |
| 3076 | |
| 3077 | |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 3078 | /* |
| 3079 | * Parse all pin widgets and store the useful pin nids to cfg |
| 3080 | * |
| 3081 | * The number of line-outs or any primary output is stored in line_outs, |
| 3082 | * and the corresponding output pins are assigned to line_out_pins[], |
| 3083 | * in the order of front, rear, CLFE, side, ... |
| 3084 | * |
| 3085 | * If more extra outputs (speaker and headphone) are found, the pins are |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 3086 | * assisnged to hp_pins[] and speaker_pins[], respectively. If no line-out jack |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 3087 | * is detected, one of speaker of HP pins is assigned as the primary |
| 3088 | * output, i.e. to line_out_pins[0]. So, line_outs is always positive |
| 3089 | * if any analog output exists. |
| 3090 | * |
| 3091 | * The analog input pins are assigned to input_pins array. |
| 3092 | * The digital input/output pins are assigned to dig_in_pin and dig_out_pin, |
| 3093 | * respectively. |
| 3094 | */ |
Takashi Iwai | 12f288b | 2007-08-02 15:51:59 +0200 | [diff] [blame] | 3095 | int snd_hda_parse_pin_def_config(struct hda_codec *codec, |
| 3096 | struct auto_pin_cfg *cfg, |
| 3097 | hda_nid_t *ignore_nids) |
Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 3098 | { |
Takashi Iwai | 0ef6ce7 | 2008-01-22 15:35:37 +0100 | [diff] [blame] | 3099 | hda_nid_t nid, end_nid; |
Steve Longerbeam | 81937d3 | 2007-05-08 15:33:03 +0200 | [diff] [blame] | 3100 | short seq, assoc_line_out, assoc_speaker; |
| 3101 | short sequences_line_out[ARRAY_SIZE(cfg->line_out_pins)]; |
| 3102 | short sequences_speaker[ARRAY_SIZE(cfg->speaker_pins)]; |
Takashi Iwai | f889fa9 | 2007-10-31 15:49:32 +0100 | [diff] [blame] | 3103 | short sequences_hp[ARRAY_SIZE(cfg->hp_pins)]; |
Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 3104 | |
| 3105 | memset(cfg, 0, sizeof(*cfg)); |
| 3106 | |
Steve Longerbeam | 81937d3 | 2007-05-08 15:33:03 +0200 | [diff] [blame] | 3107 | memset(sequences_line_out, 0, sizeof(sequences_line_out)); |
| 3108 | memset(sequences_speaker, 0, sizeof(sequences_speaker)); |
Takashi Iwai | f889fa9 | 2007-10-31 15:49:32 +0100 | [diff] [blame] | 3109 | memset(sequences_hp, 0, sizeof(sequences_hp)); |
Steve Longerbeam | 81937d3 | 2007-05-08 15:33:03 +0200 | [diff] [blame] | 3110 | assoc_line_out = assoc_speaker = 0; |
Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 3111 | |
Takashi Iwai | 0ef6ce7 | 2008-01-22 15:35:37 +0100 | [diff] [blame] | 3112 | end_nid = codec->start_nid + codec->num_nodes; |
| 3113 | for (nid = codec->start_nid; nid < end_nid; nid++) { |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 3114 | unsigned int wid_caps = get_wcaps(codec, nid); |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3115 | unsigned int wid_type = |
| 3116 | (wid_caps & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT; |
Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 3117 | unsigned int def_conf; |
| 3118 | short assoc, loc; |
| 3119 | |
| 3120 | /* read all default configuration for pin complex */ |
| 3121 | if (wid_type != AC_WID_PIN) |
| 3122 | continue; |
Kailang Yang | df694da | 2005-12-05 19:42:22 +0100 | [diff] [blame] | 3123 | /* ignore the given nids (e.g. pc-beep returns error) */ |
| 3124 | if (ignore_nids && is_in_nid_list(nid, ignore_nids)) |
| 3125 | continue; |
| 3126 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3127 | def_conf = snd_hda_codec_read(codec, nid, 0, |
| 3128 | AC_VERB_GET_CONFIG_DEFAULT, 0); |
Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 3129 | if (get_defcfg_connect(def_conf) == AC_JACK_PORT_NONE) |
| 3130 | continue; |
| 3131 | loc = get_defcfg_location(def_conf); |
| 3132 | switch (get_defcfg_device(def_conf)) { |
| 3133 | case AC_JACK_LINE_OUT: |
Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 3134 | seq = get_defcfg_sequence(def_conf); |
| 3135 | assoc = get_defcfg_association(def_conf); |
Matthew Ranostay | 90da78b | 2008-01-24 11:48:01 +0100 | [diff] [blame] | 3136 | |
| 3137 | if (!(wid_caps & AC_WCAP_STEREO)) |
| 3138 | if (!cfg->mono_out_pin) |
| 3139 | cfg->mono_out_pin = nid; |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3140 | if (!assoc) |
Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 3141 | continue; |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3142 | if (!assoc_line_out) |
Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 3143 | assoc_line_out = assoc; |
| 3144 | else if (assoc_line_out != assoc) |
| 3145 | continue; |
| 3146 | if (cfg->line_outs >= ARRAY_SIZE(cfg->line_out_pins)) |
| 3147 | continue; |
| 3148 | cfg->line_out_pins[cfg->line_outs] = nid; |
Steve Longerbeam | 81937d3 | 2007-05-08 15:33:03 +0200 | [diff] [blame] | 3149 | sequences_line_out[cfg->line_outs] = seq; |
Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 3150 | cfg->line_outs++; |
| 3151 | break; |
Takashi Iwai | 8d88bc3 | 2005-11-17 11:09:23 +0100 | [diff] [blame] | 3152 | case AC_JACK_SPEAKER: |
Steve Longerbeam | 81937d3 | 2007-05-08 15:33:03 +0200 | [diff] [blame] | 3153 | seq = get_defcfg_sequence(def_conf); |
| 3154 | assoc = get_defcfg_association(def_conf); |
| 3155 | if (! assoc) |
| 3156 | continue; |
| 3157 | if (! assoc_speaker) |
| 3158 | assoc_speaker = assoc; |
| 3159 | else if (assoc_speaker != assoc) |
| 3160 | continue; |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 3161 | if (cfg->speaker_outs >= ARRAY_SIZE(cfg->speaker_pins)) |
| 3162 | continue; |
| 3163 | cfg->speaker_pins[cfg->speaker_outs] = nid; |
Steve Longerbeam | 81937d3 | 2007-05-08 15:33:03 +0200 | [diff] [blame] | 3164 | sequences_speaker[cfg->speaker_outs] = seq; |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 3165 | cfg->speaker_outs++; |
Takashi Iwai | 8d88bc3 | 2005-11-17 11:09:23 +0100 | [diff] [blame] | 3166 | break; |
Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 3167 | case AC_JACK_HP_OUT: |
Takashi Iwai | f889fa9 | 2007-10-31 15:49:32 +0100 | [diff] [blame] | 3168 | seq = get_defcfg_sequence(def_conf); |
| 3169 | assoc = get_defcfg_association(def_conf); |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 3170 | if (cfg->hp_outs >= ARRAY_SIZE(cfg->hp_pins)) |
| 3171 | continue; |
| 3172 | cfg->hp_pins[cfg->hp_outs] = nid; |
Takashi Iwai | f889fa9 | 2007-10-31 15:49:32 +0100 | [diff] [blame] | 3173 | sequences_hp[cfg->hp_outs] = (assoc << 4) | seq; |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 3174 | cfg->hp_outs++; |
Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 3175 | break; |
Takashi Iwai | 314634b | 2006-09-21 11:56:18 +0200 | [diff] [blame] | 3176 | case AC_JACK_MIC_IN: { |
| 3177 | int preferred, alt; |
| 3178 | if (loc == AC_JACK_LOC_FRONT) { |
| 3179 | preferred = AUTO_PIN_FRONT_MIC; |
| 3180 | alt = AUTO_PIN_MIC; |
| 3181 | } else { |
| 3182 | preferred = AUTO_PIN_MIC; |
| 3183 | alt = AUTO_PIN_FRONT_MIC; |
| 3184 | } |
| 3185 | if (!cfg->input_pins[preferred]) |
| 3186 | cfg->input_pins[preferred] = nid; |
| 3187 | else if (!cfg->input_pins[alt]) |
| 3188 | cfg->input_pins[alt] = nid; |
Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 3189 | break; |
Takashi Iwai | 314634b | 2006-09-21 11:56:18 +0200 | [diff] [blame] | 3190 | } |
Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 3191 | case AC_JACK_LINE_IN: |
| 3192 | if (loc == AC_JACK_LOC_FRONT) |
| 3193 | cfg->input_pins[AUTO_PIN_FRONT_LINE] = nid; |
| 3194 | else |
| 3195 | cfg->input_pins[AUTO_PIN_LINE] = nid; |
| 3196 | break; |
| 3197 | case AC_JACK_CD: |
| 3198 | cfg->input_pins[AUTO_PIN_CD] = nid; |
| 3199 | break; |
| 3200 | case AC_JACK_AUX: |
| 3201 | cfg->input_pins[AUTO_PIN_AUX] = nid; |
| 3202 | break; |
| 3203 | case AC_JACK_SPDIF_OUT: |
| 3204 | cfg->dig_out_pin = nid; |
| 3205 | break; |
| 3206 | case AC_JACK_SPDIF_IN: |
| 3207 | cfg->dig_in_pin = nid; |
| 3208 | break; |
| 3209 | } |
| 3210 | } |
| 3211 | |
Takashi Iwai | 5832fcf8 | 2008-02-12 18:30:12 +0100 | [diff] [blame] | 3212 | /* FIX-UP: |
| 3213 | * If no line-out is defined but multiple HPs are found, |
| 3214 | * some of them might be the real line-outs. |
| 3215 | */ |
| 3216 | if (!cfg->line_outs && cfg->hp_outs > 1) { |
| 3217 | int i = 0; |
| 3218 | while (i < cfg->hp_outs) { |
| 3219 | /* The real HPs should have the sequence 0x0f */ |
| 3220 | if ((sequences_hp[i] & 0x0f) == 0x0f) { |
| 3221 | i++; |
| 3222 | continue; |
| 3223 | } |
| 3224 | /* Move it to the line-out table */ |
| 3225 | cfg->line_out_pins[cfg->line_outs] = cfg->hp_pins[i]; |
| 3226 | sequences_line_out[cfg->line_outs] = sequences_hp[i]; |
| 3227 | cfg->line_outs++; |
| 3228 | cfg->hp_outs--; |
| 3229 | memmove(cfg->hp_pins + i, cfg->hp_pins + i + 1, |
| 3230 | sizeof(cfg->hp_pins[0]) * (cfg->hp_outs - i)); |
| 3231 | memmove(sequences_hp + i - 1, sequences_hp + i, |
| 3232 | sizeof(sequences_hp[0]) * (cfg->hp_outs - i)); |
| 3233 | } |
| 3234 | } |
| 3235 | |
Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 3236 | /* sort by sequence */ |
Steve Longerbeam | 81937d3 | 2007-05-08 15:33:03 +0200 | [diff] [blame] | 3237 | sort_pins_by_sequence(cfg->line_out_pins, sequences_line_out, |
| 3238 | cfg->line_outs); |
| 3239 | sort_pins_by_sequence(cfg->speaker_pins, sequences_speaker, |
| 3240 | cfg->speaker_outs); |
Takashi Iwai | f889fa9 | 2007-10-31 15:49:32 +0100 | [diff] [blame] | 3241 | sort_pins_by_sequence(cfg->hp_pins, sequences_hp, |
| 3242 | cfg->hp_outs); |
Steve Longerbeam | 81937d3 | 2007-05-08 15:33:03 +0200 | [diff] [blame] | 3243 | |
Takashi Iwai | f889fa9 | 2007-10-31 15:49:32 +0100 | [diff] [blame] | 3244 | /* if we have only one mic, make it AUTO_PIN_MIC */ |
| 3245 | if (!cfg->input_pins[AUTO_PIN_MIC] && |
| 3246 | cfg->input_pins[AUTO_PIN_FRONT_MIC]) { |
| 3247 | cfg->input_pins[AUTO_PIN_MIC] = |
| 3248 | cfg->input_pins[AUTO_PIN_FRONT_MIC]; |
| 3249 | cfg->input_pins[AUTO_PIN_FRONT_MIC] = 0; |
| 3250 | } |
| 3251 | /* ditto for line-in */ |
| 3252 | if (!cfg->input_pins[AUTO_PIN_LINE] && |
| 3253 | cfg->input_pins[AUTO_PIN_FRONT_LINE]) { |
| 3254 | cfg->input_pins[AUTO_PIN_LINE] = |
| 3255 | cfg->input_pins[AUTO_PIN_FRONT_LINE]; |
| 3256 | cfg->input_pins[AUTO_PIN_FRONT_LINE] = 0; |
| 3257 | } |
| 3258 | |
Steve Longerbeam | 81937d3 | 2007-05-08 15:33:03 +0200 | [diff] [blame] | 3259 | /* |
| 3260 | * FIX-UP: if no line-outs are detected, try to use speaker or HP pin |
| 3261 | * as a primary output |
| 3262 | */ |
| 3263 | if (!cfg->line_outs) { |
| 3264 | if (cfg->speaker_outs) { |
| 3265 | cfg->line_outs = cfg->speaker_outs; |
| 3266 | memcpy(cfg->line_out_pins, cfg->speaker_pins, |
| 3267 | sizeof(cfg->speaker_pins)); |
| 3268 | cfg->speaker_outs = 0; |
| 3269 | memset(cfg->speaker_pins, 0, sizeof(cfg->speaker_pins)); |
| 3270 | cfg->line_out_type = AUTO_PIN_SPEAKER_OUT; |
| 3271 | } else if (cfg->hp_outs) { |
| 3272 | cfg->line_outs = cfg->hp_outs; |
| 3273 | memcpy(cfg->line_out_pins, cfg->hp_pins, |
| 3274 | sizeof(cfg->hp_pins)); |
| 3275 | cfg->hp_outs = 0; |
| 3276 | memset(cfg->hp_pins, 0, sizeof(cfg->hp_pins)); |
| 3277 | cfg->line_out_type = AUTO_PIN_HP_OUT; |
| 3278 | } |
| 3279 | } |
Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 3280 | |
Takashi Iwai | cb8e2f8 | 2005-07-29 11:54:32 +0200 | [diff] [blame] | 3281 | /* Reorder the surround channels |
| 3282 | * ALSA sequence is front/surr/clfe/side |
| 3283 | * HDA sequence is: |
| 3284 | * 4-ch: front/surr => OK as it is |
| 3285 | * 6-ch: front/clfe/surr |
Takashi Iwai | 9422db4 | 2007-04-20 16:11:43 +0200 | [diff] [blame] | 3286 | * 8-ch: front/clfe/rear/side|fc |
Takashi Iwai | cb8e2f8 | 2005-07-29 11:54:32 +0200 | [diff] [blame] | 3287 | */ |
| 3288 | switch (cfg->line_outs) { |
| 3289 | case 3: |
Takashi Iwai | cb8e2f8 | 2005-07-29 11:54:32 +0200 | [diff] [blame] | 3290 | case 4: |
| 3291 | nid = cfg->line_out_pins[1]; |
Takashi Iwai | 9422db4 | 2007-04-20 16:11:43 +0200 | [diff] [blame] | 3292 | cfg->line_out_pins[1] = cfg->line_out_pins[2]; |
Takashi Iwai | cb8e2f8 | 2005-07-29 11:54:32 +0200 | [diff] [blame] | 3293 | cfg->line_out_pins[2] = nid; |
| 3294 | break; |
Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 3295 | } |
| 3296 | |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 3297 | /* |
| 3298 | * debug prints of the parsed results |
| 3299 | */ |
| 3300 | snd_printd("autoconfig: line_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n", |
| 3301 | cfg->line_outs, cfg->line_out_pins[0], cfg->line_out_pins[1], |
| 3302 | cfg->line_out_pins[2], cfg->line_out_pins[3], |
| 3303 | cfg->line_out_pins[4]); |
| 3304 | snd_printd(" speaker_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n", |
| 3305 | cfg->speaker_outs, cfg->speaker_pins[0], |
| 3306 | cfg->speaker_pins[1], cfg->speaker_pins[2], |
| 3307 | cfg->speaker_pins[3], cfg->speaker_pins[4]); |
Takashi Iwai | eb06ed8 | 2006-09-20 17:10:27 +0200 | [diff] [blame] | 3308 | snd_printd(" hp_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n", |
| 3309 | cfg->hp_outs, cfg->hp_pins[0], |
| 3310 | cfg->hp_pins[1], cfg->hp_pins[2], |
| 3311 | cfg->hp_pins[3], cfg->hp_pins[4]); |
Matthew Ranostay | 90da78b | 2008-01-24 11:48:01 +0100 | [diff] [blame] | 3312 | snd_printd(" mono: mono_out=0x%x\n", cfg->mono_out_pin); |
Takashi Iwai | 82bc955 | 2006-03-21 11:24:42 +0100 | [diff] [blame] | 3313 | snd_printd(" inputs: mic=0x%x, fmic=0x%x, line=0x%x, fline=0x%x," |
| 3314 | " cd=0x%x, aux=0x%x\n", |
| 3315 | cfg->input_pins[AUTO_PIN_MIC], |
| 3316 | cfg->input_pins[AUTO_PIN_FRONT_MIC], |
| 3317 | cfg->input_pins[AUTO_PIN_LINE], |
| 3318 | cfg->input_pins[AUTO_PIN_FRONT_LINE], |
| 3319 | cfg->input_pins[AUTO_PIN_CD], |
| 3320 | cfg->input_pins[AUTO_PIN_AUX]); |
| 3321 | |
Takashi Iwai | e9edcee | 2005-06-13 14:16:38 +0200 | [diff] [blame] | 3322 | return 0; |
| 3323 | } |
| 3324 | |
Takashi Iwai | 4a471b7 | 2005-12-07 13:56:29 +0100 | [diff] [blame] | 3325 | /* labels for input pins */ |
| 3326 | const char *auto_pin_cfg_labels[AUTO_PIN_LAST] = { |
| 3327 | "Mic", "Front Mic", "Line", "Front Line", "CD", "Aux" |
| 3328 | }; |
| 3329 | |
| 3330 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3331 | #ifdef CONFIG_PM |
| 3332 | /* |
| 3333 | * power management |
| 3334 | */ |
| 3335 | |
| 3336 | /** |
| 3337 | * snd_hda_suspend - suspend the codecs |
| 3338 | * @bus: the HDA bus |
| 3339 | * @state: suspsend state |
| 3340 | * |
| 3341 | * Returns 0 if successful. |
| 3342 | */ |
| 3343 | int snd_hda_suspend(struct hda_bus *bus, pm_message_t state) |
| 3344 | { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3345 | struct hda_codec *codec; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3346 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3347 | list_for_each_entry(codec, &bus->codec_list, list) { |
Takashi Iwai | 0b7a2e9 | 2007-08-14 15:18:26 +0200 | [diff] [blame] | 3348 | #ifdef CONFIG_SND_HDA_POWER_SAVE |
| 3349 | if (!codec->power_on) |
| 3350 | continue; |
| 3351 | #endif |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3352 | hda_call_codec_suspend(codec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3353 | } |
| 3354 | return 0; |
| 3355 | } |
| 3356 | |
| 3357 | /** |
| 3358 | * snd_hda_resume - resume the codecs |
| 3359 | * @bus: the HDA bus |
| 3360 | * @state: resume state |
| 3361 | * |
| 3362 | * Returns 0 if successful. |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 3363 | * |
| 3364 | * This fucntion is defined only when POWER_SAVE isn't set. |
| 3365 | * In the power-save mode, the codec is resumed dynamically. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3366 | */ |
| 3367 | int snd_hda_resume(struct hda_bus *bus) |
| 3368 | { |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3369 | struct hda_codec *codec; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3370 | |
Takashi Iwai | 0ba2176 | 2007-04-16 11:29:14 +0200 | [diff] [blame] | 3371 | list_for_each_entry(codec, &bus->codec_list, list) { |
Maxim Levitsky | d804ad9 | 2007-09-03 15:28:04 +0200 | [diff] [blame] | 3372 | if (snd_hda_codec_needs_resume(codec)) |
| 3373 | hda_call_codec_resume(codec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3374 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3375 | return 0; |
| 3376 | } |
Maxim Levitsky | d804ad9 | 2007-09-03 15:28:04 +0200 | [diff] [blame] | 3377 | #ifdef CONFIG_SND_HDA_POWER_SAVE |
| 3378 | int snd_hda_codecs_inuse(struct hda_bus *bus) |
| 3379 | { |
| 3380 | struct hda_codec *codec; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3381 | |
Maxim Levitsky | d804ad9 | 2007-09-03 15:28:04 +0200 | [diff] [blame] | 3382 | list_for_each_entry(codec, &bus->codec_list, list) { |
| 3383 | if (snd_hda_codec_needs_resume(codec)) |
| 3384 | return 1; |
| 3385 | } |
| 3386 | return 0; |
| 3387 | } |
| 3388 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3389 | #endif |
Takashi Iwai | b2e1859 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 3390 | |
| 3391 | /* |
| 3392 | * generic arrays |
| 3393 | */ |
| 3394 | |
| 3395 | /* get a new element from the given array |
| 3396 | * if it exceeds the pre-allocated array size, re-allocate the array |
| 3397 | */ |
| 3398 | void *snd_array_new(struct snd_array *array) |
| 3399 | { |
| 3400 | if (array->used >= array->alloced) { |
| 3401 | int num = array->alloced + array->alloc_align; |
Takashi Iwai | b910d9a | 2008-11-07 00:26:52 +0100 | [diff] [blame^] | 3402 | void *nlist; |
| 3403 | if (snd_BUG_ON(num >= 4096)) |
| 3404 | return NULL; |
| 3405 | nlist = kcalloc(num + 1, array->elem_size, GFP_KERNEL); |
Takashi Iwai | b2e1859 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 3406 | if (!nlist) |
| 3407 | return NULL; |
| 3408 | if (array->list) { |
| 3409 | memcpy(nlist, array->list, |
| 3410 | array->elem_size * array->alloced); |
| 3411 | kfree(array->list); |
| 3412 | } |
| 3413 | array->list = nlist; |
| 3414 | array->alloced = num; |
| 3415 | } |
| 3416 | return array->list + (array->used++ * array->elem_size); |
| 3417 | } |
| 3418 | |
| 3419 | /* free the given array elements */ |
| 3420 | void snd_array_free(struct snd_array *array) |
| 3421 | { |
| 3422 | kfree(array->list); |
| 3423 | array->used = 0; |
| 3424 | array->alloced = 0; |
| 3425 | array->list = NULL; |
| 3426 | } |