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