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