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