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