ALSA: hda - allow up to 4 HDMI devices
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / sound / pci / hda / hda_codec.c
blob2c13663433355d40e102e68ee0d80c0c0cdb6bb6
1 /*
2 * Universal Interface for Intel High Definition Audio Codec
4 * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de>
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.
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.
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
22 #include <linux/init.h>
23 #include <linux/delay.h>
24 #include <linux/slab.h>
25 #include <linux/pci.h>
26 #include <linux/mutex.h>
27 #include <sound/core.h>
28 #include "hda_codec.h"
29 #include <sound/asoundef.h>
30 #include <sound/tlv.h>
31 #include <sound/initval.h>
32 #include "hda_local.h"
33 #include <sound/hda_hwdep.h>
36 * vendor / preset table
39 struct hda_vendor_id {
40 unsigned int id;
41 const char *name;
44 /* codec vendor labels */
45 static struct hda_vendor_id hda_vendor_ids[] = {
46 { 0x1002, "ATI" },
47 { 0x1013, "Cirrus Logic" },
48 { 0x1057, "Motorola" },
49 { 0x1095, "Silicon Image" },
50 { 0x10de, "Nvidia" },
51 { 0x10ec, "Realtek" },
52 { 0x1102, "Creative" },
53 { 0x1106, "VIA" },
54 { 0x111d, "IDT" },
55 { 0x11c1, "LSI" },
56 { 0x11d4, "Analog Devices" },
57 { 0x13f6, "C-Media" },
58 { 0x14f1, "Conexant" },
59 { 0x17e8, "Chrontel" },
60 { 0x1854, "LG" },
61 { 0x1aec, "Wolfson Microelectronics" },
62 { 0x434d, "C-Media" },
63 { 0x8086, "Intel" },
64 { 0x8384, "SigmaTel" },
65 {} /* terminator */
68 static DEFINE_MUTEX(preset_mutex);
69 static LIST_HEAD(hda_preset_tables);
71 int snd_hda_add_codec_preset(struct hda_codec_preset_list *preset)
73 mutex_lock(&preset_mutex);
74 list_add_tail(&preset->list, &hda_preset_tables);
75 mutex_unlock(&preset_mutex);
76 return 0;
78 EXPORT_SYMBOL_HDA(snd_hda_add_codec_preset);
80 int snd_hda_delete_codec_preset(struct hda_codec_preset_list *preset)
82 mutex_lock(&preset_mutex);
83 list_del(&preset->list);
84 mutex_unlock(&preset_mutex);
85 return 0;
87 EXPORT_SYMBOL_HDA(snd_hda_delete_codec_preset);
89 #ifdef CONFIG_SND_HDA_POWER_SAVE
90 static void hda_power_work(struct work_struct *work);
91 static void hda_keep_power_on(struct hda_codec *codec);
92 #else
93 static inline void hda_keep_power_on(struct hda_codec *codec) {}
94 #endif
96 const char *snd_hda_get_jack_location(u32 cfg)
98 static char *bases[7] = {
99 "N/A", "Rear", "Front", "Left", "Right", "Top", "Bottom",
101 static unsigned char specials_idx[] = {
102 0x07, 0x08,
103 0x17, 0x18, 0x19,
104 0x37, 0x38
106 static char *specials[] = {
107 "Rear Panel", "Drive Bar",
108 "Riser", "HDMI", "ATAPI",
109 "Mobile-In", "Mobile-Out"
111 int i;
112 cfg = (cfg & AC_DEFCFG_LOCATION) >> AC_DEFCFG_LOCATION_SHIFT;
113 if ((cfg & 0x0f) < 7)
114 return bases[cfg & 0x0f];
115 for (i = 0; i < ARRAY_SIZE(specials_idx); i++) {
116 if (cfg == specials_idx[i])
117 return specials[i];
119 return "UNKNOWN";
121 EXPORT_SYMBOL_HDA(snd_hda_get_jack_location);
123 const char *snd_hda_get_jack_connectivity(u32 cfg)
125 static char *jack_locations[4] = { "Ext", "Int", "Sep", "Oth" };
127 return jack_locations[(cfg >> (AC_DEFCFG_LOCATION_SHIFT + 4)) & 3];
129 EXPORT_SYMBOL_HDA(snd_hda_get_jack_connectivity);
131 const char *snd_hda_get_jack_type(u32 cfg)
133 static char *jack_types[16] = {
134 "Line Out", "Speaker", "HP Out", "CD",
135 "SPDIF Out", "Digital Out", "Modem Line", "Modem Hand",
136 "Line In", "Aux", "Mic", "Telephony",
137 "SPDIF In", "Digitial In", "Reserved", "Other"
140 return jack_types[(cfg & AC_DEFCFG_DEVICE)
141 >> AC_DEFCFG_DEVICE_SHIFT];
143 EXPORT_SYMBOL_HDA(snd_hda_get_jack_type);
146 * Compose a 32bit command word to be sent to the HD-audio controller
148 static inline unsigned int
149 make_codec_cmd(struct hda_codec *codec, hda_nid_t nid, int direct,
150 unsigned int verb, unsigned int parm)
152 u32 val;
154 if ((codec->addr & ~0xf) || (direct & ~1) || (nid & ~0x7f) ||
155 (verb & ~0xfff) || (parm & ~0xffff)) {
156 printk(KERN_ERR "hda-codec: out of range cmd %x:%x:%x:%x:%x\n",
157 codec->addr, direct, nid, verb, parm);
158 return ~0;
161 val = (u32)codec->addr << 28;
162 val |= (u32)direct << 27;
163 val |= (u32)nid << 20;
164 val |= verb << 8;
165 val |= parm;
166 return val;
170 * Send and receive a verb
172 static int codec_exec_verb(struct hda_codec *codec, unsigned int cmd,
173 unsigned int *res)
175 struct hda_bus *bus = codec->bus;
176 int err;
178 if (cmd == ~0)
179 return -1;
181 if (res)
182 *res = -1;
183 again:
184 snd_hda_power_up(codec);
185 mutex_lock(&bus->cmd_mutex);
186 err = bus->ops.command(bus, cmd);
187 if (!err && res)
188 *res = bus->ops.get_response(bus, codec->addr);
189 mutex_unlock(&bus->cmd_mutex);
190 snd_hda_power_down(codec);
191 if (res && *res == -1 && bus->rirb_error) {
192 if (bus->response_reset) {
193 snd_printd("hda_codec: resetting BUS due to "
194 "fatal communication error\n");
195 bus->ops.bus_reset(bus);
197 goto again;
199 /* clear reset-flag when the communication gets recovered */
200 if (!err)
201 bus->response_reset = 0;
202 return err;
206 * snd_hda_codec_read - send a command and get the response
207 * @codec: the HDA codec
208 * @nid: NID to send the command
209 * @direct: direct flag
210 * @verb: the verb to send
211 * @parm: the parameter for the verb
213 * Send a single command and read the corresponding response.
215 * Returns the obtained response value, or -1 for an error.
217 unsigned int snd_hda_codec_read(struct hda_codec *codec, hda_nid_t nid,
218 int direct,
219 unsigned int verb, unsigned int parm)
221 unsigned cmd = make_codec_cmd(codec, nid, direct, verb, parm);
222 unsigned int res;
223 codec_exec_verb(codec, cmd, &res);
224 return res;
226 EXPORT_SYMBOL_HDA(snd_hda_codec_read);
229 * snd_hda_codec_write - send a single command without waiting for response
230 * @codec: the HDA codec
231 * @nid: NID to send the command
232 * @direct: direct flag
233 * @verb: the verb to send
234 * @parm: the parameter for the verb
236 * Send a single command without waiting for response.
238 * Returns 0 if successful, or a negative error code.
240 int snd_hda_codec_write(struct hda_codec *codec, hda_nid_t nid, int direct,
241 unsigned int verb, unsigned int parm)
243 unsigned int cmd = make_codec_cmd(codec, nid, direct, verb, parm);
244 unsigned int res;
245 return codec_exec_verb(codec, cmd,
246 codec->bus->sync_write ? &res : NULL);
248 EXPORT_SYMBOL_HDA(snd_hda_codec_write);
251 * snd_hda_sequence_write - sequence writes
252 * @codec: the HDA codec
253 * @seq: VERB array to send
255 * Send the commands sequentially from the given array.
256 * The array must be terminated with NID=0.
258 void snd_hda_sequence_write(struct hda_codec *codec, const struct hda_verb *seq)
260 for (; seq->nid; seq++)
261 snd_hda_codec_write(codec, seq->nid, 0, seq->verb, seq->param);
263 EXPORT_SYMBOL_HDA(snd_hda_sequence_write);
266 * snd_hda_get_sub_nodes - get the range of sub nodes
267 * @codec: the HDA codec
268 * @nid: NID to parse
269 * @start_id: the pointer to store the start NID
271 * Parse the NID and store the start NID of its sub-nodes.
272 * Returns the number of sub-nodes.
274 int snd_hda_get_sub_nodes(struct hda_codec *codec, hda_nid_t nid,
275 hda_nid_t *start_id)
277 unsigned int parm;
279 parm = snd_hda_param_read(codec, nid, AC_PAR_NODE_COUNT);
280 if (parm == -1)
281 return 0;
282 *start_id = (parm >> 16) & 0x7fff;
283 return (int)(parm & 0x7fff);
285 EXPORT_SYMBOL_HDA(snd_hda_get_sub_nodes);
288 * snd_hda_get_connections - get connection list
289 * @codec: the HDA codec
290 * @nid: NID to parse
291 * @conn_list: connection list array
292 * @max_conns: max. number of connections to store
294 * Parses the connection list of the given widget and stores the list
295 * of NIDs.
297 * Returns the number of connections, or a negative error code.
299 int snd_hda_get_connections(struct hda_codec *codec, hda_nid_t nid,
300 hda_nid_t *conn_list, int max_conns)
302 unsigned int parm;
303 int i, conn_len, conns;
304 unsigned int shift, num_elems, mask;
305 unsigned int wcaps;
306 hda_nid_t prev_nid;
308 if (snd_BUG_ON(!conn_list || max_conns <= 0))
309 return -EINVAL;
311 wcaps = get_wcaps(codec, nid);
312 if (!(wcaps & AC_WCAP_CONN_LIST) &&
313 get_wcaps_type(wcaps) != AC_WID_VOL_KNB) {
314 snd_printk(KERN_WARNING "hda_codec: "
315 "connection list not available for 0x%x\n", nid);
316 return -EINVAL;
319 parm = snd_hda_param_read(codec, nid, AC_PAR_CONNLIST_LEN);
320 if (parm & AC_CLIST_LONG) {
321 /* long form */
322 shift = 16;
323 num_elems = 2;
324 } else {
325 /* short form */
326 shift = 8;
327 num_elems = 4;
329 conn_len = parm & AC_CLIST_LENGTH;
330 mask = (1 << (shift-1)) - 1;
332 if (!conn_len)
333 return 0; /* no connection */
335 if (conn_len == 1) {
336 /* single connection */
337 parm = snd_hda_codec_read(codec, nid, 0,
338 AC_VERB_GET_CONNECT_LIST, 0);
339 if (parm == -1 && codec->bus->rirb_error)
340 return -EIO;
341 conn_list[0] = parm & mask;
342 return 1;
345 /* multi connection */
346 conns = 0;
347 prev_nid = 0;
348 for (i = 0; i < conn_len; i++) {
349 int range_val;
350 hda_nid_t val, n;
352 if (i % num_elems == 0) {
353 parm = snd_hda_codec_read(codec, nid, 0,
354 AC_VERB_GET_CONNECT_LIST, i);
355 if (parm == -1 && codec->bus->rirb_error)
356 return -EIO;
358 range_val = !!(parm & (1 << (shift-1))); /* ranges */
359 val = parm & mask;
360 if (val == 0) {
361 snd_printk(KERN_WARNING "hda_codec: "
362 "invalid CONNECT_LIST verb %x[%i]:%x\n",
363 nid, i, parm);
364 return 0;
366 parm >>= shift;
367 if (range_val) {
368 /* ranges between the previous and this one */
369 if (!prev_nid || prev_nid >= val) {
370 snd_printk(KERN_WARNING "hda_codec: "
371 "invalid dep_range_val %x:%x\n",
372 prev_nid, val);
373 continue;
375 for (n = prev_nid + 1; n <= val; n++) {
376 if (conns >= max_conns) {
377 snd_printk(KERN_ERR
378 "Too many connections\n");
379 return -EINVAL;
381 conn_list[conns++] = n;
383 } else {
384 if (conns >= max_conns) {
385 snd_printk(KERN_ERR "Too many connections\n");
386 return -EINVAL;
388 conn_list[conns++] = val;
390 prev_nid = val;
392 return conns;
394 EXPORT_SYMBOL_HDA(snd_hda_get_connections);
398 * snd_hda_queue_unsol_event - add an unsolicited event to queue
399 * @bus: the BUS
400 * @res: unsolicited event (lower 32bit of RIRB entry)
401 * @res_ex: codec addr and flags (upper 32bit or RIRB entry)
403 * Adds the given event to the queue. The events are processed in
404 * the workqueue asynchronously. Call this function in the interrupt
405 * hanlder when RIRB receives an unsolicited event.
407 * Returns 0 if successful, or a negative error code.
409 int snd_hda_queue_unsol_event(struct hda_bus *bus, u32 res, u32 res_ex)
411 struct hda_bus_unsolicited *unsol;
412 unsigned int wp;
414 unsol = bus->unsol;
415 if (!unsol)
416 return 0;
418 wp = (unsol->wp + 1) % HDA_UNSOL_QUEUE_SIZE;
419 unsol->wp = wp;
421 wp <<= 1;
422 unsol->queue[wp] = res;
423 unsol->queue[wp + 1] = res_ex;
425 queue_work(bus->workq, &unsol->work);
427 return 0;
429 EXPORT_SYMBOL_HDA(snd_hda_queue_unsol_event);
432 * process queued unsolicited events
434 static void process_unsol_events(struct work_struct *work)
436 struct hda_bus_unsolicited *unsol =
437 container_of(work, struct hda_bus_unsolicited, work);
438 struct hda_bus *bus = unsol->bus;
439 struct hda_codec *codec;
440 unsigned int rp, caddr, res;
442 while (unsol->rp != unsol->wp) {
443 rp = (unsol->rp + 1) % HDA_UNSOL_QUEUE_SIZE;
444 unsol->rp = rp;
445 rp <<= 1;
446 res = unsol->queue[rp];
447 caddr = unsol->queue[rp + 1];
448 if (!(caddr & (1 << 4))) /* no unsolicited event? */
449 continue;
450 codec = bus->caddr_tbl[caddr & 0x0f];
451 if (codec && codec->patch_ops.unsol_event)
452 codec->patch_ops.unsol_event(codec, res);
457 * initialize unsolicited queue
459 static int init_unsol_queue(struct hda_bus *bus)
461 struct hda_bus_unsolicited *unsol;
463 if (bus->unsol) /* already initialized */
464 return 0;
466 unsol = kzalloc(sizeof(*unsol), GFP_KERNEL);
467 if (!unsol) {
468 snd_printk(KERN_ERR "hda_codec: "
469 "can't allocate unsolicited queue\n");
470 return -ENOMEM;
472 INIT_WORK(&unsol->work, process_unsol_events);
473 unsol->bus = bus;
474 bus->unsol = unsol;
475 return 0;
479 * destructor
481 static void snd_hda_codec_free(struct hda_codec *codec);
483 static int snd_hda_bus_free(struct hda_bus *bus)
485 struct hda_codec *codec, *n;
487 if (!bus)
488 return 0;
489 if (bus->workq)
490 flush_workqueue(bus->workq);
491 if (bus->unsol)
492 kfree(bus->unsol);
493 list_for_each_entry_safe(codec, n, &bus->codec_list, list) {
494 snd_hda_codec_free(codec);
496 if (bus->ops.private_free)
497 bus->ops.private_free(bus);
498 if (bus->workq)
499 destroy_workqueue(bus->workq);
500 kfree(bus);
501 return 0;
504 static int snd_hda_bus_dev_free(struct snd_device *device)
506 struct hda_bus *bus = device->device_data;
507 bus->shutdown = 1;
508 return snd_hda_bus_free(bus);
511 #ifdef CONFIG_SND_HDA_HWDEP
512 static int snd_hda_bus_dev_register(struct snd_device *device)
514 struct hda_bus *bus = device->device_data;
515 struct hda_codec *codec;
516 list_for_each_entry(codec, &bus->codec_list, list) {
517 snd_hda_hwdep_add_sysfs(codec);
519 return 0;
521 #else
522 #define snd_hda_bus_dev_register NULL
523 #endif
526 * snd_hda_bus_new - create a HDA bus
527 * @card: the card entry
528 * @temp: the template for hda_bus information
529 * @busp: the pointer to store the created bus instance
531 * Returns 0 if successful, or a negative error code.
533 int /*__devinit*/ snd_hda_bus_new(struct snd_card *card,
534 const struct hda_bus_template *temp,
535 struct hda_bus **busp)
537 struct hda_bus *bus;
538 int err;
539 static struct snd_device_ops dev_ops = {
540 .dev_register = snd_hda_bus_dev_register,
541 .dev_free = snd_hda_bus_dev_free,
544 if (snd_BUG_ON(!temp))
545 return -EINVAL;
546 if (snd_BUG_ON(!temp->ops.command || !temp->ops.get_response))
547 return -EINVAL;
549 if (busp)
550 *busp = NULL;
552 bus = kzalloc(sizeof(*bus), GFP_KERNEL);
553 if (bus == NULL) {
554 snd_printk(KERN_ERR "can't allocate struct hda_bus\n");
555 return -ENOMEM;
558 bus->card = card;
559 bus->private_data = temp->private_data;
560 bus->pci = temp->pci;
561 bus->modelname = temp->modelname;
562 bus->power_save = temp->power_save;
563 bus->ops = temp->ops;
565 mutex_init(&bus->cmd_mutex);
566 INIT_LIST_HEAD(&bus->codec_list);
568 snprintf(bus->workq_name, sizeof(bus->workq_name),
569 "hd-audio%d", card->number);
570 bus->workq = create_singlethread_workqueue(bus->workq_name);
571 if (!bus->workq) {
572 snd_printk(KERN_ERR "cannot create workqueue %s\n",
573 bus->workq_name);
574 kfree(bus);
575 return -ENOMEM;
578 err = snd_device_new(card, SNDRV_DEV_BUS, bus, &dev_ops);
579 if (err < 0) {
580 snd_hda_bus_free(bus);
581 return err;
583 if (busp)
584 *busp = bus;
585 return 0;
587 EXPORT_SYMBOL_HDA(snd_hda_bus_new);
589 #ifdef CONFIG_SND_HDA_GENERIC
590 #define is_generic_config(codec) \
591 (codec->modelname && !strcmp(codec->modelname, "generic"))
592 #else
593 #define is_generic_config(codec) 0
594 #endif
596 #ifdef MODULE
597 #define HDA_MODREQ_MAX_COUNT 2 /* two request_modules()'s */
598 #else
599 #define HDA_MODREQ_MAX_COUNT 0 /* all presets are statically linked */
600 #endif
603 * find a matching codec preset
605 static const struct hda_codec_preset *
606 find_codec_preset(struct hda_codec *codec)
608 struct hda_codec_preset_list *tbl;
609 const struct hda_codec_preset *preset;
610 int mod_requested = 0;
612 if (is_generic_config(codec))
613 return NULL; /* use the generic parser */
615 again:
616 mutex_lock(&preset_mutex);
617 list_for_each_entry(tbl, &hda_preset_tables, list) {
618 if (!try_module_get(tbl->owner)) {
619 snd_printk(KERN_ERR "hda_codec: cannot module_get\n");
620 continue;
622 for (preset = tbl->preset; preset->id; preset++) {
623 u32 mask = preset->mask;
624 if (preset->afg && preset->afg != codec->afg)
625 continue;
626 if (preset->mfg && preset->mfg != codec->mfg)
627 continue;
628 if (!mask)
629 mask = ~0;
630 if (preset->id == (codec->vendor_id & mask) &&
631 (!preset->rev ||
632 preset->rev == codec->revision_id)) {
633 mutex_unlock(&preset_mutex);
634 codec->owner = tbl->owner;
635 return preset;
638 module_put(tbl->owner);
640 mutex_unlock(&preset_mutex);
642 if (mod_requested < HDA_MODREQ_MAX_COUNT) {
643 char name[32];
644 if (!mod_requested)
645 snprintf(name, sizeof(name), "snd-hda-codec-id:%08x",
646 codec->vendor_id);
647 else
648 snprintf(name, sizeof(name), "snd-hda-codec-id:%04x*",
649 (codec->vendor_id >> 16) & 0xffff);
650 request_module(name);
651 mod_requested++;
652 goto again;
654 return NULL;
658 * get_codec_name - store the codec name
660 static int get_codec_name(struct hda_codec *codec)
662 const struct hda_vendor_id *c;
663 const char *vendor = NULL;
664 u16 vendor_id = codec->vendor_id >> 16;
665 char tmp[16];
667 if (codec->vendor_name)
668 goto get_chip_name;
670 for (c = hda_vendor_ids; c->id; c++) {
671 if (c->id == vendor_id) {
672 vendor = c->name;
673 break;
676 if (!vendor) {
677 sprintf(tmp, "Generic %04x", vendor_id);
678 vendor = tmp;
680 codec->vendor_name = kstrdup(vendor, GFP_KERNEL);
681 if (!codec->vendor_name)
682 return -ENOMEM;
684 get_chip_name:
685 if (codec->chip_name)
686 return 0;
688 if (codec->preset && codec->preset->name)
689 codec->chip_name = kstrdup(codec->preset->name, GFP_KERNEL);
690 else {
691 sprintf(tmp, "ID %x", codec->vendor_id & 0xffff);
692 codec->chip_name = kstrdup(tmp, GFP_KERNEL);
694 if (!codec->chip_name)
695 return -ENOMEM;
696 return 0;
700 * look for an AFG and MFG nodes
702 static void /*__devinit*/ setup_fg_nodes(struct hda_codec *codec)
704 int i, total_nodes, function_id;
705 hda_nid_t nid;
707 total_nodes = snd_hda_get_sub_nodes(codec, AC_NODE_ROOT, &nid);
708 for (i = 0; i < total_nodes; i++, nid++) {
709 function_id = snd_hda_param_read(codec, nid,
710 AC_PAR_FUNCTION_TYPE) & 0xff;
711 switch (function_id) {
712 case AC_GRP_AUDIO_FUNCTION:
713 codec->afg = nid;
714 codec->function_id = function_id;
715 break;
716 case AC_GRP_MODEM_FUNCTION:
717 codec->mfg = nid;
718 codec->function_id = function_id;
719 break;
720 default:
721 break;
727 * read widget caps for each widget and store in cache
729 static int read_widget_caps(struct hda_codec *codec, hda_nid_t fg_node)
731 int i;
732 hda_nid_t nid;
734 codec->num_nodes = snd_hda_get_sub_nodes(codec, fg_node,
735 &codec->start_nid);
736 codec->wcaps = kmalloc(codec->num_nodes * 4, GFP_KERNEL);
737 if (!codec->wcaps)
738 return -ENOMEM;
739 nid = codec->start_nid;
740 for (i = 0; i < codec->num_nodes; i++, nid++)
741 codec->wcaps[i] = snd_hda_param_read(codec, nid,
742 AC_PAR_AUDIO_WIDGET_CAP);
743 return 0;
746 /* read all pin default configurations and save codec->init_pins */
747 static int read_pin_defaults(struct hda_codec *codec)
749 int i;
750 hda_nid_t nid = codec->start_nid;
752 for (i = 0; i < codec->num_nodes; i++, nid++) {
753 struct hda_pincfg *pin;
754 unsigned int wcaps = get_wcaps(codec, nid);
755 unsigned int wid_type = get_wcaps_type(wcaps);
756 if (wid_type != AC_WID_PIN)
757 continue;
758 pin = snd_array_new(&codec->init_pins);
759 if (!pin)
760 return -ENOMEM;
761 pin->nid = nid;
762 pin->cfg = snd_hda_codec_read(codec, nid, 0,
763 AC_VERB_GET_CONFIG_DEFAULT, 0);
765 return 0;
768 /* look up the given pin config list and return the item matching with NID */
769 static struct hda_pincfg *look_up_pincfg(struct hda_codec *codec,
770 struct snd_array *array,
771 hda_nid_t nid)
773 int i;
774 for (i = 0; i < array->used; i++) {
775 struct hda_pincfg *pin = snd_array_elem(array, i);
776 if (pin->nid == nid)
777 return pin;
779 return NULL;
782 /* write a config value for the given NID */
783 static void set_pincfg(struct hda_codec *codec, hda_nid_t nid,
784 unsigned int cfg)
786 int i;
787 for (i = 0; i < 4; i++) {
788 snd_hda_codec_write(codec, nid, 0,
789 AC_VERB_SET_CONFIG_DEFAULT_BYTES_0 + i,
790 cfg & 0xff);
791 cfg >>= 8;
795 /* set the current pin config value for the given NID.
796 * the value is cached, and read via snd_hda_codec_get_pincfg()
798 int snd_hda_add_pincfg(struct hda_codec *codec, struct snd_array *list,
799 hda_nid_t nid, unsigned int cfg)
801 struct hda_pincfg *pin;
802 unsigned int oldcfg;
804 oldcfg = snd_hda_codec_get_pincfg(codec, nid);
805 pin = look_up_pincfg(codec, list, nid);
806 if (!pin) {
807 pin = snd_array_new(list);
808 if (!pin)
809 return -ENOMEM;
810 pin->nid = nid;
812 pin->cfg = cfg;
814 /* change only when needed; e.g. if the pincfg is already present
815 * in user_pins[], don't write it
817 cfg = snd_hda_codec_get_pincfg(codec, nid);
818 if (oldcfg != cfg)
819 set_pincfg(codec, nid, cfg);
820 return 0;
823 int snd_hda_codec_set_pincfg(struct hda_codec *codec,
824 hda_nid_t nid, unsigned int cfg)
826 return snd_hda_add_pincfg(codec, &codec->driver_pins, nid, cfg);
828 EXPORT_SYMBOL_HDA(snd_hda_codec_set_pincfg);
830 /* get the current pin config value of the given pin NID */
831 unsigned int snd_hda_codec_get_pincfg(struct hda_codec *codec, hda_nid_t nid)
833 struct hda_pincfg *pin;
835 #ifdef CONFIG_SND_HDA_HWDEP
836 pin = look_up_pincfg(codec, &codec->user_pins, nid);
837 if (pin)
838 return pin->cfg;
839 #endif
840 pin = look_up_pincfg(codec, &codec->driver_pins, nid);
841 if (pin)
842 return pin->cfg;
843 pin = look_up_pincfg(codec, &codec->init_pins, nid);
844 if (pin)
845 return pin->cfg;
846 return 0;
848 EXPORT_SYMBOL_HDA(snd_hda_codec_get_pincfg);
850 /* restore all current pin configs */
851 static void restore_pincfgs(struct hda_codec *codec)
853 int i;
854 for (i = 0; i < codec->init_pins.used; i++) {
855 struct hda_pincfg *pin = snd_array_elem(&codec->init_pins, i);
856 set_pincfg(codec, pin->nid,
857 snd_hda_codec_get_pincfg(codec, pin->nid));
861 static void init_hda_cache(struct hda_cache_rec *cache,
862 unsigned int record_size);
863 static void free_hda_cache(struct hda_cache_rec *cache);
865 /* restore the initial pin cfgs and release all pincfg lists */
866 static void restore_init_pincfgs(struct hda_codec *codec)
868 /* first free driver_pins and user_pins, then call restore_pincfg
869 * so that only the values in init_pins are restored
871 snd_array_free(&codec->driver_pins);
872 #ifdef CONFIG_SND_HDA_HWDEP
873 snd_array_free(&codec->user_pins);
874 #endif
875 restore_pincfgs(codec);
876 snd_array_free(&codec->init_pins);
880 * codec destructor
882 static void snd_hda_codec_free(struct hda_codec *codec)
884 if (!codec)
885 return;
886 restore_init_pincfgs(codec);
887 #ifdef CONFIG_SND_HDA_POWER_SAVE
888 cancel_delayed_work(&codec->power_work);
889 flush_workqueue(codec->bus->workq);
890 #endif
891 list_del(&codec->list);
892 snd_array_free(&codec->mixers);
893 codec->bus->caddr_tbl[codec->addr] = NULL;
894 if (codec->patch_ops.free)
895 codec->patch_ops.free(codec);
896 module_put(codec->owner);
897 free_hda_cache(&codec->amp_cache);
898 free_hda_cache(&codec->cmd_cache);
899 kfree(codec->vendor_name);
900 kfree(codec->chip_name);
901 kfree(codec->modelname);
902 kfree(codec->wcaps);
903 kfree(codec);
906 static void hda_set_power_state(struct hda_codec *codec, hda_nid_t fg,
907 unsigned int power_state);
910 * snd_hda_codec_new - create a HDA codec
911 * @bus: the bus to assign
912 * @codec_addr: the codec address
913 * @codecp: the pointer to store the generated codec
915 * Returns 0 if successful, or a negative error code.
917 int /*__devinit*/ snd_hda_codec_new(struct hda_bus *bus, unsigned int codec_addr,
918 struct hda_codec **codecp)
920 struct hda_codec *codec;
921 char component[31];
922 int err;
924 if (snd_BUG_ON(!bus))
925 return -EINVAL;
926 if (snd_BUG_ON(codec_addr > HDA_MAX_CODEC_ADDRESS))
927 return -EINVAL;
929 if (bus->caddr_tbl[codec_addr]) {
930 snd_printk(KERN_ERR "hda_codec: "
931 "address 0x%x is already occupied\n", codec_addr);
932 return -EBUSY;
935 codec = kzalloc(sizeof(*codec), GFP_KERNEL);
936 if (codec == NULL) {
937 snd_printk(KERN_ERR "can't allocate struct hda_codec\n");
938 return -ENOMEM;
941 codec->bus = bus;
942 codec->addr = codec_addr;
943 mutex_init(&codec->spdif_mutex);
944 mutex_init(&codec->control_mutex);
945 init_hda_cache(&codec->amp_cache, sizeof(struct hda_amp_info));
946 init_hda_cache(&codec->cmd_cache, sizeof(struct hda_cache_head));
947 snd_array_init(&codec->mixers, sizeof(struct snd_kcontrol *), 32);
948 snd_array_init(&codec->init_pins, sizeof(struct hda_pincfg), 16);
949 snd_array_init(&codec->driver_pins, sizeof(struct hda_pincfg), 16);
950 if (codec->bus->modelname) {
951 codec->modelname = kstrdup(codec->bus->modelname, GFP_KERNEL);
952 if (!codec->modelname) {
953 snd_hda_codec_free(codec);
954 return -ENODEV;
958 #ifdef CONFIG_SND_HDA_POWER_SAVE
959 INIT_DELAYED_WORK(&codec->power_work, hda_power_work);
960 /* snd_hda_codec_new() marks the codec as power-up, and leave it as is.
961 * the caller has to power down appropriatley after initialization
962 * phase.
964 hda_keep_power_on(codec);
965 #endif
967 list_add_tail(&codec->list, &bus->codec_list);
968 bus->caddr_tbl[codec_addr] = codec;
970 codec->vendor_id = snd_hda_param_read(codec, AC_NODE_ROOT,
971 AC_PAR_VENDOR_ID);
972 if (codec->vendor_id == -1)
973 /* read again, hopefully the access method was corrected
974 * in the last read...
976 codec->vendor_id = snd_hda_param_read(codec, AC_NODE_ROOT,
977 AC_PAR_VENDOR_ID);
978 codec->subsystem_id = snd_hda_param_read(codec, AC_NODE_ROOT,
979 AC_PAR_SUBSYSTEM_ID);
980 codec->revision_id = snd_hda_param_read(codec, AC_NODE_ROOT,
981 AC_PAR_REV_ID);
983 setup_fg_nodes(codec);
984 if (!codec->afg && !codec->mfg) {
985 snd_printdd("hda_codec: no AFG or MFG node found\n");
986 err = -ENODEV;
987 goto error;
990 err = read_widget_caps(codec, codec->afg ? codec->afg : codec->mfg);
991 if (err < 0) {
992 snd_printk(KERN_ERR "hda_codec: cannot malloc\n");
993 goto error;
995 err = read_pin_defaults(codec);
996 if (err < 0)
997 goto error;
999 if (!codec->subsystem_id) {
1000 hda_nid_t nid = codec->afg ? codec->afg : codec->mfg;
1001 codec->subsystem_id =
1002 snd_hda_codec_read(codec, nid, 0,
1003 AC_VERB_GET_SUBSYSTEM_ID, 0);
1006 /* power-up all before initialization */
1007 hda_set_power_state(codec,
1008 codec->afg ? codec->afg : codec->mfg,
1009 AC_PWRST_D0);
1011 snd_hda_codec_proc_new(codec);
1013 snd_hda_create_hwdep(codec);
1015 sprintf(component, "HDA:%08x,%08x,%08x", codec->vendor_id,
1016 codec->subsystem_id, codec->revision_id);
1017 snd_component_add(codec->bus->card, component);
1019 if (codecp)
1020 *codecp = codec;
1021 return 0;
1023 error:
1024 snd_hda_codec_free(codec);
1025 return err;
1027 EXPORT_SYMBOL_HDA(snd_hda_codec_new);
1029 int snd_hda_codec_configure(struct hda_codec *codec)
1031 int err;
1033 codec->preset = find_codec_preset(codec);
1034 if (!codec->vendor_name || !codec->chip_name) {
1035 err = get_codec_name(codec);
1036 if (err < 0)
1037 return err;
1039 /* audio codec should override the mixer name */
1040 if (codec->afg || !*codec->bus->card->mixername)
1041 snprintf(codec->bus->card->mixername,
1042 sizeof(codec->bus->card->mixername),
1043 "%s %s", codec->vendor_name, codec->chip_name);
1045 if (is_generic_config(codec)) {
1046 err = snd_hda_parse_generic_codec(codec);
1047 goto patched;
1049 if (codec->preset && codec->preset->patch) {
1050 err = codec->preset->patch(codec);
1051 goto patched;
1054 /* call the default parser */
1055 err = snd_hda_parse_generic_codec(codec);
1056 if (err < 0)
1057 printk(KERN_ERR "hda-codec: No codec parser is available\n");
1059 patched:
1060 if (!err && codec->patch_ops.unsol_event)
1061 err = init_unsol_queue(codec->bus);
1062 return err;
1064 EXPORT_SYMBOL_HDA(snd_hda_codec_configure);
1067 * snd_hda_codec_setup_stream - set up the codec for streaming
1068 * @codec: the CODEC to set up
1069 * @nid: the NID to set up
1070 * @stream_tag: stream tag to pass, it's between 0x1 and 0xf.
1071 * @channel_id: channel id to pass, zero based.
1072 * @format: stream format.
1074 void snd_hda_codec_setup_stream(struct hda_codec *codec, hda_nid_t nid,
1075 u32 stream_tag,
1076 int channel_id, int format)
1078 if (!nid)
1079 return;
1081 snd_printdd("hda_codec_setup_stream: "
1082 "NID=0x%x, stream=0x%x, channel=%d, format=0x%x\n",
1083 nid, stream_tag, channel_id, format);
1084 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CHANNEL_STREAMID,
1085 (stream_tag << 4) | channel_id);
1086 msleep(1);
1087 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_STREAM_FORMAT, format);
1089 EXPORT_SYMBOL_HDA(snd_hda_codec_setup_stream);
1091 void snd_hda_codec_cleanup_stream(struct hda_codec *codec, hda_nid_t nid)
1093 if (!nid)
1094 return;
1096 snd_printdd("hda_codec_cleanup_stream: NID=0x%x\n", nid);
1097 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CHANNEL_STREAMID, 0);
1098 #if 0 /* keep the format */
1099 msleep(1);
1100 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_STREAM_FORMAT, 0);
1101 #endif
1103 EXPORT_SYMBOL_HDA(snd_hda_codec_cleanup_stream);
1106 * amp access functions
1109 /* FIXME: more better hash key? */
1110 #define HDA_HASH_KEY(nid,dir,idx) (u32)((nid) + ((idx) << 16) + ((dir) << 24))
1111 #define HDA_HASH_PINCAP_KEY(nid) (u32)((nid) + (0x02 << 24))
1112 #define HDA_HASH_PARPCM_KEY(nid) (u32)((nid) + (0x03 << 24))
1113 #define HDA_HASH_PARSTR_KEY(nid) (u32)((nid) + (0x04 << 24))
1114 #define INFO_AMP_CAPS (1<<0)
1115 #define INFO_AMP_VOL(ch) (1 << (1 + (ch)))
1117 /* initialize the hash table */
1118 static void /*__devinit*/ init_hda_cache(struct hda_cache_rec *cache,
1119 unsigned int record_size)
1121 memset(cache, 0, sizeof(*cache));
1122 memset(cache->hash, 0xff, sizeof(cache->hash));
1123 snd_array_init(&cache->buf, record_size, 64);
1126 static void free_hda_cache(struct hda_cache_rec *cache)
1128 snd_array_free(&cache->buf);
1131 /* query the hash. allocate an entry if not found. */
1132 static struct hda_cache_head *get_alloc_hash(struct hda_cache_rec *cache,
1133 u32 key)
1135 u16 idx = key % (u16)ARRAY_SIZE(cache->hash);
1136 u16 cur = cache->hash[idx];
1137 struct hda_cache_head *info;
1139 while (cur != 0xffff) {
1140 info = snd_array_elem(&cache->buf, cur);
1141 if (info->key == key)
1142 return info;
1143 cur = info->next;
1146 /* add a new hash entry */
1147 info = snd_array_new(&cache->buf);
1148 if (!info)
1149 return NULL;
1150 cur = snd_array_index(&cache->buf, info);
1151 info->key = key;
1152 info->val = 0;
1153 info->next = cache->hash[idx];
1154 cache->hash[idx] = cur;
1156 return info;
1159 /* query and allocate an amp hash entry */
1160 static inline struct hda_amp_info *
1161 get_alloc_amp_hash(struct hda_codec *codec, u32 key)
1163 return (struct hda_amp_info *)get_alloc_hash(&codec->amp_cache, key);
1167 * query AMP capabilities for the given widget and direction
1169 u32 query_amp_caps(struct hda_codec *codec, hda_nid_t nid, int direction)
1171 struct hda_amp_info *info;
1173 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, direction, 0));
1174 if (!info)
1175 return 0;
1176 if (!(info->head.val & INFO_AMP_CAPS)) {
1177 if (!(get_wcaps(codec, nid) & AC_WCAP_AMP_OVRD))
1178 nid = codec->afg;
1179 info->amp_caps = snd_hda_param_read(codec, nid,
1180 direction == HDA_OUTPUT ?
1181 AC_PAR_AMP_OUT_CAP :
1182 AC_PAR_AMP_IN_CAP);
1183 if (info->amp_caps)
1184 info->head.val |= INFO_AMP_CAPS;
1186 return info->amp_caps;
1188 EXPORT_SYMBOL_HDA(query_amp_caps);
1190 int snd_hda_override_amp_caps(struct hda_codec *codec, hda_nid_t nid, int dir,
1191 unsigned int caps)
1193 struct hda_amp_info *info;
1195 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, dir, 0));
1196 if (!info)
1197 return -EINVAL;
1198 info->amp_caps = caps;
1199 info->head.val |= INFO_AMP_CAPS;
1200 return 0;
1202 EXPORT_SYMBOL_HDA(snd_hda_override_amp_caps);
1204 static unsigned int
1205 query_caps_hash(struct hda_codec *codec, hda_nid_t nid, u32 key,
1206 unsigned int (*func)(struct hda_codec *, hda_nid_t))
1208 struct hda_amp_info *info;
1210 info = get_alloc_amp_hash(codec, key);
1211 if (!info)
1212 return 0;
1213 if (!info->head.val) {
1214 info->head.val |= INFO_AMP_CAPS;
1215 info->amp_caps = func(codec, nid);
1217 return info->amp_caps;
1220 static unsigned int read_pin_cap(struct hda_codec *codec, hda_nid_t nid)
1222 return snd_hda_param_read(codec, nid, AC_PAR_PIN_CAP);
1225 u32 snd_hda_query_pin_caps(struct hda_codec *codec, hda_nid_t nid)
1227 return query_caps_hash(codec, nid, HDA_HASH_PINCAP_KEY(nid),
1228 read_pin_cap);
1230 EXPORT_SYMBOL_HDA(snd_hda_query_pin_caps);
1233 * read the current volume to info
1234 * if the cache exists, read the cache value.
1236 static unsigned int get_vol_mute(struct hda_codec *codec,
1237 struct hda_amp_info *info, hda_nid_t nid,
1238 int ch, int direction, int index)
1240 u32 val, parm;
1242 if (info->head.val & INFO_AMP_VOL(ch))
1243 return info->vol[ch];
1245 parm = ch ? AC_AMP_GET_RIGHT : AC_AMP_GET_LEFT;
1246 parm |= direction == HDA_OUTPUT ? AC_AMP_GET_OUTPUT : AC_AMP_GET_INPUT;
1247 parm |= index;
1248 val = snd_hda_codec_read(codec, nid, 0,
1249 AC_VERB_GET_AMP_GAIN_MUTE, parm);
1250 info->vol[ch] = val & 0xff;
1251 info->head.val |= INFO_AMP_VOL(ch);
1252 return info->vol[ch];
1256 * write the current volume in info to the h/w and update the cache
1258 static void put_vol_mute(struct hda_codec *codec, struct hda_amp_info *info,
1259 hda_nid_t nid, int ch, int direction, int index,
1260 int val)
1262 u32 parm;
1264 parm = ch ? AC_AMP_SET_RIGHT : AC_AMP_SET_LEFT;
1265 parm |= direction == HDA_OUTPUT ? AC_AMP_SET_OUTPUT : AC_AMP_SET_INPUT;
1266 parm |= index << AC_AMP_SET_INDEX_SHIFT;
1267 parm |= val;
1268 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE, parm);
1269 info->vol[ch] = val;
1273 * read AMP value. The volume is between 0 to 0x7f, 0x80 = mute bit.
1275 int snd_hda_codec_amp_read(struct hda_codec *codec, hda_nid_t nid, int ch,
1276 int direction, int index)
1278 struct hda_amp_info *info;
1279 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, direction, index));
1280 if (!info)
1281 return 0;
1282 return get_vol_mute(codec, info, nid, ch, direction, index);
1284 EXPORT_SYMBOL_HDA(snd_hda_codec_amp_read);
1287 * update the AMP value, mask = bit mask to set, val = the value
1289 int snd_hda_codec_amp_update(struct hda_codec *codec, hda_nid_t nid, int ch,
1290 int direction, int idx, int mask, int val)
1292 struct hda_amp_info *info;
1294 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, direction, idx));
1295 if (!info)
1296 return 0;
1297 val &= mask;
1298 val |= get_vol_mute(codec, info, nid, ch, direction, idx) & ~mask;
1299 if (info->vol[ch] == val)
1300 return 0;
1301 put_vol_mute(codec, info, nid, ch, direction, idx, val);
1302 return 1;
1304 EXPORT_SYMBOL_HDA(snd_hda_codec_amp_update);
1307 * update the AMP stereo with the same mask and value
1309 int snd_hda_codec_amp_stereo(struct hda_codec *codec, hda_nid_t nid,
1310 int direction, int idx, int mask, int val)
1312 int ch, ret = 0;
1313 for (ch = 0; ch < 2; ch++)
1314 ret |= snd_hda_codec_amp_update(codec, nid, ch, direction,
1315 idx, mask, val);
1316 return ret;
1318 EXPORT_SYMBOL_HDA(snd_hda_codec_amp_stereo);
1320 #ifdef SND_HDA_NEEDS_RESUME
1321 /* resume the all amp commands from the cache */
1322 void snd_hda_codec_resume_amp(struct hda_codec *codec)
1324 struct hda_amp_info *buffer = codec->amp_cache.buf.list;
1325 int i;
1327 for (i = 0; i < codec->amp_cache.buf.used; i++, buffer++) {
1328 u32 key = buffer->head.key;
1329 hda_nid_t nid;
1330 unsigned int idx, dir, ch;
1331 if (!key)
1332 continue;
1333 nid = key & 0xff;
1334 idx = (key >> 16) & 0xff;
1335 dir = (key >> 24) & 0xff;
1336 for (ch = 0; ch < 2; ch++) {
1337 if (!(buffer->head.val & INFO_AMP_VOL(ch)))
1338 continue;
1339 put_vol_mute(codec, buffer, nid, ch, dir, idx,
1340 buffer->vol[ch]);
1344 EXPORT_SYMBOL_HDA(snd_hda_codec_resume_amp);
1345 #endif /* SND_HDA_NEEDS_RESUME */
1347 /* volume */
1348 int snd_hda_mixer_amp_volume_info(struct snd_kcontrol *kcontrol,
1349 struct snd_ctl_elem_info *uinfo)
1351 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1352 u16 nid = get_amp_nid(kcontrol);
1353 u8 chs = get_amp_channels(kcontrol);
1354 int dir = get_amp_direction(kcontrol);
1355 unsigned int ofs = get_amp_offset(kcontrol);
1356 u32 caps;
1358 caps = query_amp_caps(codec, nid, dir);
1359 /* num steps */
1360 caps = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
1361 if (!caps) {
1362 printk(KERN_WARNING "hda_codec: "
1363 "num_steps = 0 for NID=0x%x (ctl = %s)\n", nid,
1364 kcontrol->id.name);
1365 return -EINVAL;
1367 if (ofs < caps)
1368 caps -= ofs;
1369 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1370 uinfo->count = chs == 3 ? 2 : 1;
1371 uinfo->value.integer.min = 0;
1372 uinfo->value.integer.max = caps;
1373 return 0;
1375 EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_volume_info);
1378 static inline unsigned int
1379 read_amp_value(struct hda_codec *codec, hda_nid_t nid,
1380 int ch, int dir, int idx, unsigned int ofs)
1382 unsigned int val;
1383 val = snd_hda_codec_amp_read(codec, nid, ch, dir, idx);
1384 val &= HDA_AMP_VOLMASK;
1385 if (val >= ofs)
1386 val -= ofs;
1387 else
1388 val = 0;
1389 return val;
1392 static inline int
1393 update_amp_value(struct hda_codec *codec, hda_nid_t nid,
1394 int ch, int dir, int idx, unsigned int ofs,
1395 unsigned int val)
1397 if (val > 0)
1398 val += ofs;
1399 return snd_hda_codec_amp_update(codec, nid, ch, dir, idx,
1400 HDA_AMP_VOLMASK, val);
1403 int snd_hda_mixer_amp_volume_get(struct snd_kcontrol *kcontrol,
1404 struct snd_ctl_elem_value *ucontrol)
1406 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1407 hda_nid_t nid = get_amp_nid(kcontrol);
1408 int chs = get_amp_channels(kcontrol);
1409 int dir = get_amp_direction(kcontrol);
1410 int idx = get_amp_index(kcontrol);
1411 unsigned int ofs = get_amp_offset(kcontrol);
1412 long *valp = ucontrol->value.integer.value;
1414 if (chs & 1)
1415 *valp++ = read_amp_value(codec, nid, 0, dir, idx, ofs);
1416 if (chs & 2)
1417 *valp = read_amp_value(codec, nid, 1, dir, idx, ofs);
1418 return 0;
1420 EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_volume_get);
1422 int snd_hda_mixer_amp_volume_put(struct snd_kcontrol *kcontrol,
1423 struct snd_ctl_elem_value *ucontrol)
1425 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1426 hda_nid_t nid = get_amp_nid(kcontrol);
1427 int chs = get_amp_channels(kcontrol);
1428 int dir = get_amp_direction(kcontrol);
1429 int idx = get_amp_index(kcontrol);
1430 unsigned int ofs = get_amp_offset(kcontrol);
1431 long *valp = ucontrol->value.integer.value;
1432 int change = 0;
1434 snd_hda_power_up(codec);
1435 if (chs & 1) {
1436 change = update_amp_value(codec, nid, 0, dir, idx, ofs, *valp);
1437 valp++;
1439 if (chs & 2)
1440 change |= update_amp_value(codec, nid, 1, dir, idx, ofs, *valp);
1441 snd_hda_power_down(codec);
1442 return change;
1444 EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_volume_put);
1446 int snd_hda_mixer_amp_tlv(struct snd_kcontrol *kcontrol, int op_flag,
1447 unsigned int size, unsigned int __user *_tlv)
1449 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1450 hda_nid_t nid = get_amp_nid(kcontrol);
1451 int dir = get_amp_direction(kcontrol);
1452 unsigned int ofs = get_amp_offset(kcontrol);
1453 u32 caps, val1, val2;
1455 if (size < 4 * sizeof(unsigned int))
1456 return -ENOMEM;
1457 caps = query_amp_caps(codec, nid, dir);
1458 val2 = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT;
1459 val2 = (val2 + 1) * 25;
1460 val1 = -((caps & AC_AMPCAP_OFFSET) >> AC_AMPCAP_OFFSET_SHIFT);
1461 val1 += ofs;
1462 val1 = ((int)val1) * ((int)val2);
1463 if (put_user(SNDRV_CTL_TLVT_DB_SCALE, _tlv))
1464 return -EFAULT;
1465 if (put_user(2 * sizeof(unsigned int), _tlv + 1))
1466 return -EFAULT;
1467 if (put_user(val1, _tlv + 2))
1468 return -EFAULT;
1469 if (put_user(val2, _tlv + 3))
1470 return -EFAULT;
1471 return 0;
1473 EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_tlv);
1476 * set (static) TLV for virtual master volume; recalculated as max 0dB
1478 void snd_hda_set_vmaster_tlv(struct hda_codec *codec, hda_nid_t nid, int dir,
1479 unsigned int *tlv)
1481 u32 caps;
1482 int nums, step;
1484 caps = query_amp_caps(codec, nid, dir);
1485 nums = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
1486 step = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT;
1487 step = (step + 1) * 25;
1488 tlv[0] = SNDRV_CTL_TLVT_DB_SCALE;
1489 tlv[1] = 2 * sizeof(unsigned int);
1490 tlv[2] = -nums * step;
1491 tlv[3] = step;
1493 EXPORT_SYMBOL_HDA(snd_hda_set_vmaster_tlv);
1495 /* find a mixer control element with the given name */
1496 static struct snd_kcontrol *
1497 _snd_hda_find_mixer_ctl(struct hda_codec *codec,
1498 const char *name, int idx)
1500 struct snd_ctl_elem_id id;
1501 memset(&id, 0, sizeof(id));
1502 id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
1503 id.index = idx;
1504 if (snd_BUG_ON(strlen(name) >= sizeof(id.name)))
1505 return NULL;
1506 strcpy(id.name, name);
1507 return snd_ctl_find_id(codec->bus->card, &id);
1510 struct snd_kcontrol *snd_hda_find_mixer_ctl(struct hda_codec *codec,
1511 const char *name)
1513 return _snd_hda_find_mixer_ctl(codec, name, 0);
1515 EXPORT_SYMBOL_HDA(snd_hda_find_mixer_ctl);
1517 /* Add a control element and assign to the codec */
1518 int snd_hda_ctl_add(struct hda_codec *codec, struct snd_kcontrol *kctl)
1520 int err;
1521 struct snd_kcontrol **knewp;
1523 err = snd_ctl_add(codec->bus->card, kctl);
1524 if (err < 0)
1525 return err;
1526 knewp = snd_array_new(&codec->mixers);
1527 if (!knewp)
1528 return -ENOMEM;
1529 *knewp = kctl;
1530 return 0;
1532 EXPORT_SYMBOL_HDA(snd_hda_ctl_add);
1534 /* Clear all controls assigned to the given codec */
1535 void snd_hda_ctls_clear(struct hda_codec *codec)
1537 int i;
1538 struct snd_kcontrol **kctls = codec->mixers.list;
1539 for (i = 0; i < codec->mixers.used; i++)
1540 snd_ctl_remove(codec->bus->card, kctls[i]);
1541 snd_array_free(&codec->mixers);
1544 /* pseudo device locking
1545 * toggle card->shutdown to allow/disallow the device access (as a hack)
1547 static int hda_lock_devices(struct snd_card *card)
1549 spin_lock(&card->files_lock);
1550 if (card->shutdown) {
1551 spin_unlock(&card->files_lock);
1552 return -EINVAL;
1554 card->shutdown = 1;
1555 spin_unlock(&card->files_lock);
1556 return 0;
1559 static void hda_unlock_devices(struct snd_card *card)
1561 spin_lock(&card->files_lock);
1562 card->shutdown = 0;
1563 spin_unlock(&card->files_lock);
1566 int snd_hda_codec_reset(struct hda_codec *codec)
1568 struct snd_card *card = codec->bus->card;
1569 int i, pcm;
1571 if (hda_lock_devices(card) < 0)
1572 return -EBUSY;
1573 /* check whether the codec isn't used by any mixer or PCM streams */
1574 if (!list_empty(&card->ctl_files)) {
1575 hda_unlock_devices(card);
1576 return -EBUSY;
1578 for (pcm = 0; pcm < codec->num_pcms; pcm++) {
1579 struct hda_pcm *cpcm = &codec->pcm_info[pcm];
1580 if (!cpcm->pcm)
1581 continue;
1582 if (cpcm->pcm->streams[0].substream_opened ||
1583 cpcm->pcm->streams[1].substream_opened) {
1584 hda_unlock_devices(card);
1585 return -EBUSY;
1589 /* OK, let it free */
1591 #ifdef CONFIG_SND_HDA_POWER_SAVE
1592 cancel_delayed_work(&codec->power_work);
1593 flush_workqueue(codec->bus->workq);
1594 #endif
1595 snd_hda_ctls_clear(codec);
1596 /* relase PCMs */
1597 for (i = 0; i < codec->num_pcms; i++) {
1598 if (codec->pcm_info[i].pcm) {
1599 snd_device_free(card, codec->pcm_info[i].pcm);
1600 clear_bit(codec->pcm_info[i].device,
1601 codec->bus->pcm_dev_bits);
1604 if (codec->patch_ops.free)
1605 codec->patch_ops.free(codec);
1606 codec->proc_widget_hook = NULL;
1607 codec->spec = NULL;
1608 free_hda_cache(&codec->amp_cache);
1609 free_hda_cache(&codec->cmd_cache);
1610 init_hda_cache(&codec->amp_cache, sizeof(struct hda_amp_info));
1611 init_hda_cache(&codec->cmd_cache, sizeof(struct hda_cache_head));
1612 /* free only driver_pins so that init_pins + user_pins are restored */
1613 snd_array_free(&codec->driver_pins);
1614 restore_pincfgs(codec);
1615 codec->num_pcms = 0;
1616 codec->pcm_info = NULL;
1617 codec->preset = NULL;
1618 memset(&codec->patch_ops, 0, sizeof(codec->patch_ops));
1619 codec->slave_dig_outs = NULL;
1620 codec->spdif_status_reset = 0;
1621 module_put(codec->owner);
1622 codec->owner = NULL;
1624 /* allow device access again */
1625 hda_unlock_devices(card);
1626 return 0;
1629 /* create a virtual master control and add slaves */
1630 int snd_hda_add_vmaster(struct hda_codec *codec, char *name,
1631 unsigned int *tlv, const char **slaves)
1633 struct snd_kcontrol *kctl;
1634 const char **s;
1635 int err;
1637 for (s = slaves; *s && !snd_hda_find_mixer_ctl(codec, *s); s++)
1639 if (!*s) {
1640 snd_printdd("No slave found for %s\n", name);
1641 return 0;
1643 kctl = snd_ctl_make_virtual_master(name, tlv);
1644 if (!kctl)
1645 return -ENOMEM;
1646 err = snd_hda_ctl_add(codec, kctl);
1647 if (err < 0)
1648 return err;
1650 for (s = slaves; *s; s++) {
1651 struct snd_kcontrol *sctl;
1652 int i = 0;
1653 for (;;) {
1654 sctl = _snd_hda_find_mixer_ctl(codec, *s, i);
1655 if (!sctl) {
1656 if (!i)
1657 snd_printdd("Cannot find slave %s, "
1658 "skipped\n", *s);
1659 break;
1661 err = snd_ctl_add_slave(kctl, sctl);
1662 if (err < 0)
1663 return err;
1664 i++;
1667 return 0;
1669 EXPORT_SYMBOL_HDA(snd_hda_add_vmaster);
1671 /* switch */
1672 int snd_hda_mixer_amp_switch_info(struct snd_kcontrol *kcontrol,
1673 struct snd_ctl_elem_info *uinfo)
1675 int chs = get_amp_channels(kcontrol);
1677 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1678 uinfo->count = chs == 3 ? 2 : 1;
1679 uinfo->value.integer.min = 0;
1680 uinfo->value.integer.max = 1;
1681 return 0;
1683 EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_info);
1685 int snd_hda_mixer_amp_switch_get(struct snd_kcontrol *kcontrol,
1686 struct snd_ctl_elem_value *ucontrol)
1688 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1689 hda_nid_t nid = get_amp_nid(kcontrol);
1690 int chs = get_amp_channels(kcontrol);
1691 int dir = get_amp_direction(kcontrol);
1692 int idx = get_amp_index(kcontrol);
1693 long *valp = ucontrol->value.integer.value;
1695 if (chs & 1)
1696 *valp++ = (snd_hda_codec_amp_read(codec, nid, 0, dir, idx) &
1697 HDA_AMP_MUTE) ? 0 : 1;
1698 if (chs & 2)
1699 *valp = (snd_hda_codec_amp_read(codec, nid, 1, dir, idx) &
1700 HDA_AMP_MUTE) ? 0 : 1;
1701 return 0;
1703 EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_get);
1705 int snd_hda_mixer_amp_switch_put(struct snd_kcontrol *kcontrol,
1706 struct snd_ctl_elem_value *ucontrol)
1708 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1709 hda_nid_t nid = get_amp_nid(kcontrol);
1710 int chs = get_amp_channels(kcontrol);
1711 int dir = get_amp_direction(kcontrol);
1712 int idx = get_amp_index(kcontrol);
1713 long *valp = ucontrol->value.integer.value;
1714 int change = 0;
1716 snd_hda_power_up(codec);
1717 if (chs & 1) {
1718 change = snd_hda_codec_amp_update(codec, nid, 0, dir, idx,
1719 HDA_AMP_MUTE,
1720 *valp ? 0 : HDA_AMP_MUTE);
1721 valp++;
1723 if (chs & 2)
1724 change |= snd_hda_codec_amp_update(codec, nid, 1, dir, idx,
1725 HDA_AMP_MUTE,
1726 *valp ? 0 : HDA_AMP_MUTE);
1727 #ifdef CONFIG_SND_HDA_POWER_SAVE
1728 if (codec->patch_ops.check_power_status)
1729 codec->patch_ops.check_power_status(codec, nid);
1730 #endif
1731 snd_hda_power_down(codec);
1732 return change;
1734 EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_put);
1737 * bound volume controls
1739 * bind multiple volumes (# indices, from 0)
1742 #define AMP_VAL_IDX_SHIFT 19
1743 #define AMP_VAL_IDX_MASK (0x0f<<19)
1745 int snd_hda_mixer_bind_switch_get(struct snd_kcontrol *kcontrol,
1746 struct snd_ctl_elem_value *ucontrol)
1748 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1749 unsigned long pval;
1750 int err;
1752 mutex_lock(&codec->control_mutex);
1753 pval = kcontrol->private_value;
1754 kcontrol->private_value = pval & ~AMP_VAL_IDX_MASK; /* index 0 */
1755 err = snd_hda_mixer_amp_switch_get(kcontrol, ucontrol);
1756 kcontrol->private_value = pval;
1757 mutex_unlock(&codec->control_mutex);
1758 return err;
1760 EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_switch_get);
1762 int snd_hda_mixer_bind_switch_put(struct snd_kcontrol *kcontrol,
1763 struct snd_ctl_elem_value *ucontrol)
1765 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1766 unsigned long pval;
1767 int i, indices, err = 0, change = 0;
1769 mutex_lock(&codec->control_mutex);
1770 pval = kcontrol->private_value;
1771 indices = (pval & AMP_VAL_IDX_MASK) >> AMP_VAL_IDX_SHIFT;
1772 for (i = 0; i < indices; i++) {
1773 kcontrol->private_value = (pval & ~AMP_VAL_IDX_MASK) |
1774 (i << AMP_VAL_IDX_SHIFT);
1775 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
1776 if (err < 0)
1777 break;
1778 change |= err;
1780 kcontrol->private_value = pval;
1781 mutex_unlock(&codec->control_mutex);
1782 return err < 0 ? err : change;
1784 EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_switch_put);
1787 * generic bound volume/swtich controls
1789 int snd_hda_mixer_bind_ctls_info(struct snd_kcontrol *kcontrol,
1790 struct snd_ctl_elem_info *uinfo)
1792 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1793 struct hda_bind_ctls *c;
1794 int err;
1796 mutex_lock(&codec->control_mutex);
1797 c = (struct hda_bind_ctls *)kcontrol->private_value;
1798 kcontrol->private_value = *c->values;
1799 err = c->ops->info(kcontrol, uinfo);
1800 kcontrol->private_value = (long)c;
1801 mutex_unlock(&codec->control_mutex);
1802 return err;
1804 EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_info);
1806 int snd_hda_mixer_bind_ctls_get(struct snd_kcontrol *kcontrol,
1807 struct snd_ctl_elem_value *ucontrol)
1809 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1810 struct hda_bind_ctls *c;
1811 int err;
1813 mutex_lock(&codec->control_mutex);
1814 c = (struct hda_bind_ctls *)kcontrol->private_value;
1815 kcontrol->private_value = *c->values;
1816 err = c->ops->get(kcontrol, ucontrol);
1817 kcontrol->private_value = (long)c;
1818 mutex_unlock(&codec->control_mutex);
1819 return err;
1821 EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_get);
1823 int snd_hda_mixer_bind_ctls_put(struct snd_kcontrol *kcontrol,
1824 struct snd_ctl_elem_value *ucontrol)
1826 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1827 struct hda_bind_ctls *c;
1828 unsigned long *vals;
1829 int err = 0, change = 0;
1831 mutex_lock(&codec->control_mutex);
1832 c = (struct hda_bind_ctls *)kcontrol->private_value;
1833 for (vals = c->values; *vals; vals++) {
1834 kcontrol->private_value = *vals;
1835 err = c->ops->put(kcontrol, ucontrol);
1836 if (err < 0)
1837 break;
1838 change |= err;
1840 kcontrol->private_value = (long)c;
1841 mutex_unlock(&codec->control_mutex);
1842 return err < 0 ? err : change;
1844 EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_put);
1846 int snd_hda_mixer_bind_tlv(struct snd_kcontrol *kcontrol, int op_flag,
1847 unsigned int size, unsigned int __user *tlv)
1849 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1850 struct hda_bind_ctls *c;
1851 int err;
1853 mutex_lock(&codec->control_mutex);
1854 c = (struct hda_bind_ctls *)kcontrol->private_value;
1855 kcontrol->private_value = *c->values;
1856 err = c->ops->tlv(kcontrol, op_flag, size, tlv);
1857 kcontrol->private_value = (long)c;
1858 mutex_unlock(&codec->control_mutex);
1859 return err;
1861 EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_tlv);
1863 struct hda_ctl_ops snd_hda_bind_vol = {
1864 .info = snd_hda_mixer_amp_volume_info,
1865 .get = snd_hda_mixer_amp_volume_get,
1866 .put = snd_hda_mixer_amp_volume_put,
1867 .tlv = snd_hda_mixer_amp_tlv
1869 EXPORT_SYMBOL_HDA(snd_hda_bind_vol);
1871 struct hda_ctl_ops snd_hda_bind_sw = {
1872 .info = snd_hda_mixer_amp_switch_info,
1873 .get = snd_hda_mixer_amp_switch_get,
1874 .put = snd_hda_mixer_amp_switch_put,
1875 .tlv = snd_hda_mixer_amp_tlv
1877 EXPORT_SYMBOL_HDA(snd_hda_bind_sw);
1880 * SPDIF out controls
1883 static int snd_hda_spdif_mask_info(struct snd_kcontrol *kcontrol,
1884 struct snd_ctl_elem_info *uinfo)
1886 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
1887 uinfo->count = 1;
1888 return 0;
1891 static int snd_hda_spdif_cmask_get(struct snd_kcontrol *kcontrol,
1892 struct snd_ctl_elem_value *ucontrol)
1894 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
1895 IEC958_AES0_NONAUDIO |
1896 IEC958_AES0_CON_EMPHASIS_5015 |
1897 IEC958_AES0_CON_NOT_COPYRIGHT;
1898 ucontrol->value.iec958.status[1] = IEC958_AES1_CON_CATEGORY |
1899 IEC958_AES1_CON_ORIGINAL;
1900 return 0;
1903 static int snd_hda_spdif_pmask_get(struct snd_kcontrol *kcontrol,
1904 struct snd_ctl_elem_value *ucontrol)
1906 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
1907 IEC958_AES0_NONAUDIO |
1908 IEC958_AES0_PRO_EMPHASIS_5015;
1909 return 0;
1912 static int snd_hda_spdif_default_get(struct snd_kcontrol *kcontrol,
1913 struct snd_ctl_elem_value *ucontrol)
1915 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1917 ucontrol->value.iec958.status[0] = codec->spdif_status & 0xff;
1918 ucontrol->value.iec958.status[1] = (codec->spdif_status >> 8) & 0xff;
1919 ucontrol->value.iec958.status[2] = (codec->spdif_status >> 16) & 0xff;
1920 ucontrol->value.iec958.status[3] = (codec->spdif_status >> 24) & 0xff;
1922 return 0;
1925 /* convert from SPDIF status bits to HDA SPDIF bits
1926 * bit 0 (DigEn) is always set zero (to be filled later)
1928 static unsigned short convert_from_spdif_status(unsigned int sbits)
1930 unsigned short val = 0;
1932 if (sbits & IEC958_AES0_PROFESSIONAL)
1933 val |= AC_DIG1_PROFESSIONAL;
1934 if (sbits & IEC958_AES0_NONAUDIO)
1935 val |= AC_DIG1_NONAUDIO;
1936 if (sbits & IEC958_AES0_PROFESSIONAL) {
1937 if ((sbits & IEC958_AES0_PRO_EMPHASIS) ==
1938 IEC958_AES0_PRO_EMPHASIS_5015)
1939 val |= AC_DIG1_EMPHASIS;
1940 } else {
1941 if ((sbits & IEC958_AES0_CON_EMPHASIS) ==
1942 IEC958_AES0_CON_EMPHASIS_5015)
1943 val |= AC_DIG1_EMPHASIS;
1944 if (!(sbits & IEC958_AES0_CON_NOT_COPYRIGHT))
1945 val |= AC_DIG1_COPYRIGHT;
1946 if (sbits & (IEC958_AES1_CON_ORIGINAL << 8))
1947 val |= AC_DIG1_LEVEL;
1948 val |= sbits & (IEC958_AES1_CON_CATEGORY << 8);
1950 return val;
1953 /* convert to SPDIF status bits from HDA SPDIF bits
1955 static unsigned int convert_to_spdif_status(unsigned short val)
1957 unsigned int sbits = 0;
1959 if (val & AC_DIG1_NONAUDIO)
1960 sbits |= IEC958_AES0_NONAUDIO;
1961 if (val & AC_DIG1_PROFESSIONAL)
1962 sbits |= IEC958_AES0_PROFESSIONAL;
1963 if (sbits & IEC958_AES0_PROFESSIONAL) {
1964 if (sbits & AC_DIG1_EMPHASIS)
1965 sbits |= IEC958_AES0_PRO_EMPHASIS_5015;
1966 } else {
1967 if (val & AC_DIG1_EMPHASIS)
1968 sbits |= IEC958_AES0_CON_EMPHASIS_5015;
1969 if (!(val & AC_DIG1_COPYRIGHT))
1970 sbits |= IEC958_AES0_CON_NOT_COPYRIGHT;
1971 if (val & AC_DIG1_LEVEL)
1972 sbits |= (IEC958_AES1_CON_ORIGINAL << 8);
1973 sbits |= val & (0x7f << 8);
1975 return sbits;
1978 /* set digital convert verbs both for the given NID and its slaves */
1979 static void set_dig_out(struct hda_codec *codec, hda_nid_t nid,
1980 int verb, int val)
1982 hda_nid_t *d;
1984 snd_hda_codec_write_cache(codec, nid, 0, verb, val);
1985 d = codec->slave_dig_outs;
1986 if (!d)
1987 return;
1988 for (; *d; d++)
1989 snd_hda_codec_write_cache(codec, *d, 0, verb, val);
1992 static inline void set_dig_out_convert(struct hda_codec *codec, hda_nid_t nid,
1993 int dig1, int dig2)
1995 if (dig1 != -1)
1996 set_dig_out(codec, nid, AC_VERB_SET_DIGI_CONVERT_1, dig1);
1997 if (dig2 != -1)
1998 set_dig_out(codec, nid, AC_VERB_SET_DIGI_CONVERT_2, dig2);
2001 static int snd_hda_spdif_default_put(struct snd_kcontrol *kcontrol,
2002 struct snd_ctl_elem_value *ucontrol)
2004 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2005 hda_nid_t nid = kcontrol->private_value;
2006 unsigned short val;
2007 int change;
2009 mutex_lock(&codec->spdif_mutex);
2010 codec->spdif_status = ucontrol->value.iec958.status[0] |
2011 ((unsigned int)ucontrol->value.iec958.status[1] << 8) |
2012 ((unsigned int)ucontrol->value.iec958.status[2] << 16) |
2013 ((unsigned int)ucontrol->value.iec958.status[3] << 24);
2014 val = convert_from_spdif_status(codec->spdif_status);
2015 val |= codec->spdif_ctls & 1;
2016 change = codec->spdif_ctls != val;
2017 codec->spdif_ctls = val;
2019 if (change)
2020 set_dig_out_convert(codec, nid, val & 0xff, (val >> 8) & 0xff);
2022 mutex_unlock(&codec->spdif_mutex);
2023 return change;
2026 #define snd_hda_spdif_out_switch_info snd_ctl_boolean_mono_info
2028 static int snd_hda_spdif_out_switch_get(struct snd_kcontrol *kcontrol,
2029 struct snd_ctl_elem_value *ucontrol)
2031 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2033 ucontrol->value.integer.value[0] = codec->spdif_ctls & AC_DIG1_ENABLE;
2034 return 0;
2037 static int snd_hda_spdif_out_switch_put(struct snd_kcontrol *kcontrol,
2038 struct snd_ctl_elem_value *ucontrol)
2040 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2041 hda_nid_t nid = kcontrol->private_value;
2042 unsigned short val;
2043 int change;
2045 mutex_lock(&codec->spdif_mutex);
2046 val = codec->spdif_ctls & ~AC_DIG1_ENABLE;
2047 if (ucontrol->value.integer.value[0])
2048 val |= AC_DIG1_ENABLE;
2049 change = codec->spdif_ctls != val;
2050 if (change) {
2051 codec->spdif_ctls = val;
2052 set_dig_out_convert(codec, nid, val & 0xff, -1);
2053 /* unmute amp switch (if any) */
2054 if ((get_wcaps(codec, nid) & AC_WCAP_OUT_AMP) &&
2055 (val & AC_DIG1_ENABLE))
2056 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
2057 HDA_AMP_MUTE, 0);
2059 mutex_unlock(&codec->spdif_mutex);
2060 return change;
2063 static struct snd_kcontrol_new dig_mixes[] = {
2065 .access = SNDRV_CTL_ELEM_ACCESS_READ,
2066 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2067 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,CON_MASK),
2068 .info = snd_hda_spdif_mask_info,
2069 .get = snd_hda_spdif_cmask_get,
2072 .access = SNDRV_CTL_ELEM_ACCESS_READ,
2073 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2074 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,PRO_MASK),
2075 .info = snd_hda_spdif_mask_info,
2076 .get = snd_hda_spdif_pmask_get,
2079 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2080 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,DEFAULT),
2081 .info = snd_hda_spdif_mask_info,
2082 .get = snd_hda_spdif_default_get,
2083 .put = snd_hda_spdif_default_put,
2086 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2087 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,SWITCH),
2088 .info = snd_hda_spdif_out_switch_info,
2089 .get = snd_hda_spdif_out_switch_get,
2090 .put = snd_hda_spdif_out_switch_put,
2092 { } /* end */
2095 #define SPDIF_MAX_IDX 4 /* 4 instances should be enough to probe */
2098 * snd_hda_create_spdif_out_ctls - create Output SPDIF-related controls
2099 * @codec: the HDA codec
2100 * @nid: audio out widget NID
2102 * Creates controls related with the SPDIF output.
2103 * Called from each patch supporting the SPDIF out.
2105 * Returns 0 if successful, or a negative error code.
2107 int snd_hda_create_spdif_out_ctls(struct hda_codec *codec, hda_nid_t nid)
2109 int err;
2110 struct snd_kcontrol *kctl;
2111 struct snd_kcontrol_new *dig_mix;
2112 int idx;
2114 for (idx = 0; idx < SPDIF_MAX_IDX; idx++) {
2115 if (!_snd_hda_find_mixer_ctl(codec, "IEC958 Playback Switch",
2116 idx))
2117 break;
2119 if (idx >= SPDIF_MAX_IDX) {
2120 printk(KERN_ERR "hda_codec: too many IEC958 outputs\n");
2121 return -EBUSY;
2123 for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) {
2124 kctl = snd_ctl_new1(dig_mix, codec);
2125 if (!kctl)
2126 return -ENOMEM;
2127 kctl->id.index = idx;
2128 kctl->private_value = nid;
2129 err = snd_hda_ctl_add(codec, kctl);
2130 if (err < 0)
2131 return err;
2133 codec->spdif_ctls =
2134 snd_hda_codec_read(codec, nid, 0,
2135 AC_VERB_GET_DIGI_CONVERT_1, 0);
2136 codec->spdif_status = convert_to_spdif_status(codec->spdif_ctls);
2137 return 0;
2139 EXPORT_SYMBOL_HDA(snd_hda_create_spdif_out_ctls);
2142 * SPDIF sharing with analog output
2144 static int spdif_share_sw_get(struct snd_kcontrol *kcontrol,
2145 struct snd_ctl_elem_value *ucontrol)
2147 struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol);
2148 ucontrol->value.integer.value[0] = mout->share_spdif;
2149 return 0;
2152 static int spdif_share_sw_put(struct snd_kcontrol *kcontrol,
2153 struct snd_ctl_elem_value *ucontrol)
2155 struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol);
2156 mout->share_spdif = !!ucontrol->value.integer.value[0];
2157 return 0;
2160 static struct snd_kcontrol_new spdif_share_sw = {
2161 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2162 .name = "IEC958 Default PCM Playback Switch",
2163 .info = snd_ctl_boolean_mono_info,
2164 .get = spdif_share_sw_get,
2165 .put = spdif_share_sw_put,
2168 int snd_hda_create_spdif_share_sw(struct hda_codec *codec,
2169 struct hda_multi_out *mout)
2171 if (!mout->dig_out_nid)
2172 return 0;
2173 /* ATTENTION: here mout is passed as private_data, instead of codec */
2174 return snd_hda_ctl_add(codec,
2175 snd_ctl_new1(&spdif_share_sw, mout));
2177 EXPORT_SYMBOL_HDA(snd_hda_create_spdif_share_sw);
2180 * SPDIF input
2183 #define snd_hda_spdif_in_switch_info snd_hda_spdif_out_switch_info
2185 static int snd_hda_spdif_in_switch_get(struct snd_kcontrol *kcontrol,
2186 struct snd_ctl_elem_value *ucontrol)
2188 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2190 ucontrol->value.integer.value[0] = codec->spdif_in_enable;
2191 return 0;
2194 static int snd_hda_spdif_in_switch_put(struct snd_kcontrol *kcontrol,
2195 struct snd_ctl_elem_value *ucontrol)
2197 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2198 hda_nid_t nid = kcontrol->private_value;
2199 unsigned int val = !!ucontrol->value.integer.value[0];
2200 int change;
2202 mutex_lock(&codec->spdif_mutex);
2203 change = codec->spdif_in_enable != val;
2204 if (change) {
2205 codec->spdif_in_enable = val;
2206 snd_hda_codec_write_cache(codec, nid, 0,
2207 AC_VERB_SET_DIGI_CONVERT_1, val);
2209 mutex_unlock(&codec->spdif_mutex);
2210 return change;
2213 static int snd_hda_spdif_in_status_get(struct snd_kcontrol *kcontrol,
2214 struct snd_ctl_elem_value *ucontrol)
2216 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2217 hda_nid_t nid = kcontrol->private_value;
2218 unsigned short val;
2219 unsigned int sbits;
2221 val = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_DIGI_CONVERT_1, 0);
2222 sbits = convert_to_spdif_status(val);
2223 ucontrol->value.iec958.status[0] = sbits;
2224 ucontrol->value.iec958.status[1] = sbits >> 8;
2225 ucontrol->value.iec958.status[2] = sbits >> 16;
2226 ucontrol->value.iec958.status[3] = sbits >> 24;
2227 return 0;
2230 static struct snd_kcontrol_new dig_in_ctls[] = {
2232 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2233 .name = SNDRV_CTL_NAME_IEC958("",CAPTURE,SWITCH),
2234 .info = snd_hda_spdif_in_switch_info,
2235 .get = snd_hda_spdif_in_switch_get,
2236 .put = snd_hda_spdif_in_switch_put,
2239 .access = SNDRV_CTL_ELEM_ACCESS_READ,
2240 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2241 .name = SNDRV_CTL_NAME_IEC958("",CAPTURE,DEFAULT),
2242 .info = snd_hda_spdif_mask_info,
2243 .get = snd_hda_spdif_in_status_get,
2245 { } /* end */
2249 * snd_hda_create_spdif_in_ctls - create Input SPDIF-related controls
2250 * @codec: the HDA codec
2251 * @nid: audio in widget NID
2253 * Creates controls related with the SPDIF input.
2254 * Called from each patch supporting the SPDIF in.
2256 * Returns 0 if successful, or a negative error code.
2258 int snd_hda_create_spdif_in_ctls(struct hda_codec *codec, hda_nid_t nid)
2260 int err;
2261 struct snd_kcontrol *kctl;
2262 struct snd_kcontrol_new *dig_mix;
2263 int idx;
2265 for (idx = 0; idx < SPDIF_MAX_IDX; idx++) {
2266 if (!_snd_hda_find_mixer_ctl(codec, "IEC958 Capture Switch",
2267 idx))
2268 break;
2270 if (idx >= SPDIF_MAX_IDX) {
2271 printk(KERN_ERR "hda_codec: too many IEC958 inputs\n");
2272 return -EBUSY;
2274 for (dig_mix = dig_in_ctls; dig_mix->name; dig_mix++) {
2275 kctl = snd_ctl_new1(dig_mix, codec);
2276 if (!kctl)
2277 return -ENOMEM;
2278 kctl->private_value = nid;
2279 err = snd_hda_ctl_add(codec, kctl);
2280 if (err < 0)
2281 return err;
2283 codec->spdif_in_enable =
2284 snd_hda_codec_read(codec, nid, 0,
2285 AC_VERB_GET_DIGI_CONVERT_1, 0) &
2286 AC_DIG1_ENABLE;
2287 return 0;
2289 EXPORT_SYMBOL_HDA(snd_hda_create_spdif_in_ctls);
2291 #ifdef SND_HDA_NEEDS_RESUME
2293 * command cache
2296 /* build a 32bit cache key with the widget id and the command parameter */
2297 #define build_cmd_cache_key(nid, verb) ((verb << 8) | nid)
2298 #define get_cmd_cache_nid(key) ((key) & 0xff)
2299 #define get_cmd_cache_cmd(key) (((key) >> 8) & 0xffff)
2302 * snd_hda_codec_write_cache - send a single command with caching
2303 * @codec: the HDA codec
2304 * @nid: NID to send the command
2305 * @direct: direct flag
2306 * @verb: the verb to send
2307 * @parm: the parameter for the verb
2309 * Send a single command without waiting for response.
2311 * Returns 0 if successful, or a negative error code.
2313 int snd_hda_codec_write_cache(struct hda_codec *codec, hda_nid_t nid,
2314 int direct, unsigned int verb, unsigned int parm)
2316 int err = snd_hda_codec_write(codec, nid, direct, verb, parm);
2317 struct hda_cache_head *c;
2318 u32 key;
2320 if (err < 0)
2321 return err;
2322 /* parm may contain the verb stuff for get/set amp */
2323 verb = verb | (parm >> 8);
2324 parm &= 0xff;
2325 key = build_cmd_cache_key(nid, verb);
2326 mutex_lock(&codec->bus->cmd_mutex);
2327 c = get_alloc_hash(&codec->cmd_cache, key);
2328 if (c)
2329 c->val = parm;
2330 mutex_unlock(&codec->bus->cmd_mutex);
2331 return 0;
2333 EXPORT_SYMBOL_HDA(snd_hda_codec_write_cache);
2335 /* resume the all commands from the cache */
2336 void snd_hda_codec_resume_cache(struct hda_codec *codec)
2338 struct hda_cache_head *buffer = codec->cmd_cache.buf.list;
2339 int i;
2341 for (i = 0; i < codec->cmd_cache.buf.used; i++, buffer++) {
2342 u32 key = buffer->key;
2343 if (!key)
2344 continue;
2345 snd_hda_codec_write(codec, get_cmd_cache_nid(key), 0,
2346 get_cmd_cache_cmd(key), buffer->val);
2349 EXPORT_SYMBOL_HDA(snd_hda_codec_resume_cache);
2352 * snd_hda_sequence_write_cache - sequence writes with caching
2353 * @codec: the HDA codec
2354 * @seq: VERB array to send
2356 * Send the commands sequentially from the given array.
2357 * Thte commands are recorded on cache for power-save and resume.
2358 * The array must be terminated with NID=0.
2360 void snd_hda_sequence_write_cache(struct hda_codec *codec,
2361 const struct hda_verb *seq)
2363 for (; seq->nid; seq++)
2364 snd_hda_codec_write_cache(codec, seq->nid, 0, seq->verb,
2365 seq->param);
2367 EXPORT_SYMBOL_HDA(snd_hda_sequence_write_cache);
2368 #endif /* SND_HDA_NEEDS_RESUME */
2371 * set power state of the codec
2373 static void hda_set_power_state(struct hda_codec *codec, hda_nid_t fg,
2374 unsigned int power_state)
2376 hda_nid_t nid;
2377 int i;
2379 /* this delay seems necessary to avoid click noise at power-down */
2380 if (power_state == AC_PWRST_D3)
2381 msleep(100);
2382 snd_hda_codec_read(codec, fg, 0, AC_VERB_SET_POWER_STATE,
2383 power_state);
2384 /* partial workaround for "azx_get_response timeout" */
2385 if (power_state == AC_PWRST_D0)
2386 msleep(10);
2388 nid = codec->start_nid;
2389 for (i = 0; i < codec->num_nodes; i++, nid++) {
2390 unsigned int wcaps = get_wcaps(codec, nid);
2391 if (wcaps & AC_WCAP_POWER) {
2392 unsigned int wid_type = get_wcaps_type(wcaps);
2393 if (power_state == AC_PWRST_D3 &&
2394 wid_type == AC_WID_PIN) {
2395 unsigned int pincap;
2397 * don't power down the widget if it controls
2398 * eapd and EAPD_BTLENABLE is set.
2400 pincap = snd_hda_query_pin_caps(codec, nid);
2401 if (pincap & AC_PINCAP_EAPD) {
2402 int eapd = snd_hda_codec_read(codec,
2403 nid, 0,
2404 AC_VERB_GET_EAPD_BTLENABLE, 0);
2405 eapd &= 0x02;
2406 if (eapd)
2407 continue;
2410 snd_hda_codec_write(codec, nid, 0,
2411 AC_VERB_SET_POWER_STATE,
2412 power_state);
2416 if (power_state == AC_PWRST_D0) {
2417 unsigned long end_time;
2418 int state;
2419 msleep(10);
2420 /* wait until the codec reachs to D0 */
2421 end_time = jiffies + msecs_to_jiffies(500);
2422 do {
2423 state = snd_hda_codec_read(codec, fg, 0,
2424 AC_VERB_GET_POWER_STATE, 0);
2425 if (state == power_state)
2426 break;
2427 msleep(1);
2428 } while (time_after_eq(end_time, jiffies));
2432 #ifdef CONFIG_SND_HDA_HWDEP
2433 /* execute additional init verbs */
2434 static void hda_exec_init_verbs(struct hda_codec *codec)
2436 if (codec->init_verbs.list)
2437 snd_hda_sequence_write(codec, codec->init_verbs.list);
2439 #else
2440 static inline void hda_exec_init_verbs(struct hda_codec *codec) {}
2441 #endif
2443 #ifdef SND_HDA_NEEDS_RESUME
2445 * call suspend and power-down; used both from PM and power-save
2447 static void hda_call_codec_suspend(struct hda_codec *codec)
2449 if (codec->patch_ops.suspend)
2450 codec->patch_ops.suspend(codec, PMSG_SUSPEND);
2451 hda_set_power_state(codec,
2452 codec->afg ? codec->afg : codec->mfg,
2453 AC_PWRST_D3);
2454 #ifdef CONFIG_SND_HDA_POWER_SAVE
2455 cancel_delayed_work(&codec->power_work);
2456 codec->power_on = 0;
2457 codec->power_transition = 0;
2458 #endif
2462 * kick up codec; used both from PM and power-save
2464 static void hda_call_codec_resume(struct hda_codec *codec)
2466 hda_set_power_state(codec,
2467 codec->afg ? codec->afg : codec->mfg,
2468 AC_PWRST_D0);
2469 restore_pincfgs(codec); /* restore all current pin configs */
2470 hda_exec_init_verbs(codec);
2471 if (codec->patch_ops.resume)
2472 codec->patch_ops.resume(codec);
2473 else {
2474 if (codec->patch_ops.init)
2475 codec->patch_ops.init(codec);
2476 snd_hda_codec_resume_amp(codec);
2477 snd_hda_codec_resume_cache(codec);
2480 #endif /* SND_HDA_NEEDS_RESUME */
2484 * snd_hda_build_controls - build mixer controls
2485 * @bus: the BUS
2487 * Creates mixer controls for each codec included in the bus.
2489 * Returns 0 if successful, otherwise a negative error code.
2491 int /*__devinit*/ snd_hda_build_controls(struct hda_bus *bus)
2493 struct hda_codec *codec;
2495 list_for_each_entry(codec, &bus->codec_list, list) {
2496 int err = snd_hda_codec_build_controls(codec);
2497 if (err < 0) {
2498 printk(KERN_ERR "hda_codec: cannot build controls"
2499 "for #%d (error %d)\n", codec->addr, err);
2500 err = snd_hda_codec_reset(codec);
2501 if (err < 0) {
2502 printk(KERN_ERR
2503 "hda_codec: cannot revert codec\n");
2504 return err;
2508 return 0;
2510 EXPORT_SYMBOL_HDA(snd_hda_build_controls);
2512 int snd_hda_codec_build_controls(struct hda_codec *codec)
2514 int err = 0;
2515 hda_exec_init_verbs(codec);
2516 /* continue to initialize... */
2517 if (codec->patch_ops.init)
2518 err = codec->patch_ops.init(codec);
2519 if (!err && codec->patch_ops.build_controls)
2520 err = codec->patch_ops.build_controls(codec);
2521 if (err < 0)
2522 return err;
2523 return 0;
2527 * stream formats
2529 struct hda_rate_tbl {
2530 unsigned int hz;
2531 unsigned int alsa_bits;
2532 unsigned int hda_fmt;
2535 static struct hda_rate_tbl rate_bits[] = {
2536 /* rate in Hz, ALSA rate bitmask, HDA format value */
2538 /* autodetected value used in snd_hda_query_supported_pcm */
2539 { 8000, SNDRV_PCM_RATE_8000, 0x0500 }, /* 1/6 x 48 */
2540 { 11025, SNDRV_PCM_RATE_11025, 0x4300 }, /* 1/4 x 44 */
2541 { 16000, SNDRV_PCM_RATE_16000, 0x0200 }, /* 1/3 x 48 */
2542 { 22050, SNDRV_PCM_RATE_22050, 0x4100 }, /* 1/2 x 44 */
2543 { 32000, SNDRV_PCM_RATE_32000, 0x0a00 }, /* 2/3 x 48 */
2544 { 44100, SNDRV_PCM_RATE_44100, 0x4000 }, /* 44 */
2545 { 48000, SNDRV_PCM_RATE_48000, 0x0000 }, /* 48 */
2546 { 88200, SNDRV_PCM_RATE_88200, 0x4800 }, /* 2 x 44 */
2547 { 96000, SNDRV_PCM_RATE_96000, 0x0800 }, /* 2 x 48 */
2548 { 176400, SNDRV_PCM_RATE_176400, 0x5800 },/* 4 x 44 */
2549 { 192000, SNDRV_PCM_RATE_192000, 0x1800 }, /* 4 x 48 */
2550 #define AC_PAR_PCM_RATE_BITS 11
2551 /* up to bits 10, 384kHZ isn't supported properly */
2553 /* not autodetected value */
2554 { 9600, SNDRV_PCM_RATE_KNOT, 0x0400 }, /* 1/5 x 48 */
2556 { 0 } /* terminator */
2560 * snd_hda_calc_stream_format - calculate format bitset
2561 * @rate: the sample rate
2562 * @channels: the number of channels
2563 * @format: the PCM format (SNDRV_PCM_FORMAT_XXX)
2564 * @maxbps: the max. bps
2566 * Calculate the format bitset from the given rate, channels and th PCM format.
2568 * Return zero if invalid.
2570 unsigned int snd_hda_calc_stream_format(unsigned int rate,
2571 unsigned int channels,
2572 unsigned int format,
2573 unsigned int maxbps)
2575 int i;
2576 unsigned int val = 0;
2578 for (i = 0; rate_bits[i].hz; i++)
2579 if (rate_bits[i].hz == rate) {
2580 val = rate_bits[i].hda_fmt;
2581 break;
2583 if (!rate_bits[i].hz) {
2584 snd_printdd("invalid rate %d\n", rate);
2585 return 0;
2588 if (channels == 0 || channels > 8) {
2589 snd_printdd("invalid channels %d\n", channels);
2590 return 0;
2592 val |= channels - 1;
2594 switch (snd_pcm_format_width(format)) {
2595 case 8: val |= 0x00; break;
2596 case 16: val |= 0x10; break;
2597 case 20:
2598 case 24:
2599 case 32:
2600 if (maxbps >= 32 || format == SNDRV_PCM_FORMAT_FLOAT_LE)
2601 val |= 0x40;
2602 else if (maxbps >= 24)
2603 val |= 0x30;
2604 else
2605 val |= 0x20;
2606 break;
2607 default:
2608 snd_printdd("invalid format width %d\n",
2609 snd_pcm_format_width(format));
2610 return 0;
2613 return val;
2615 EXPORT_SYMBOL_HDA(snd_hda_calc_stream_format);
2617 static unsigned int get_pcm_param(struct hda_codec *codec, hda_nid_t nid)
2619 unsigned int val = 0;
2620 if (nid != codec->afg &&
2621 (get_wcaps(codec, nid) & AC_WCAP_FORMAT_OVRD))
2622 val = snd_hda_param_read(codec, nid, AC_PAR_PCM);
2623 if (!val || val == -1)
2624 val = snd_hda_param_read(codec, codec->afg, AC_PAR_PCM);
2625 if (!val || val == -1)
2626 return 0;
2627 return val;
2630 static unsigned int query_pcm_param(struct hda_codec *codec, hda_nid_t nid)
2632 return query_caps_hash(codec, nid, HDA_HASH_PARPCM_KEY(nid),
2633 get_pcm_param);
2636 static unsigned int get_stream_param(struct hda_codec *codec, hda_nid_t nid)
2638 unsigned int streams = snd_hda_param_read(codec, nid, AC_PAR_STREAM);
2639 if (!streams || streams == -1)
2640 streams = snd_hda_param_read(codec, codec->afg, AC_PAR_STREAM);
2641 if (!streams || streams == -1)
2642 return 0;
2643 return streams;
2646 static unsigned int query_stream_param(struct hda_codec *codec, hda_nid_t nid)
2648 return query_caps_hash(codec, nid, HDA_HASH_PARSTR_KEY(nid),
2649 get_stream_param);
2653 * snd_hda_query_supported_pcm - query the supported PCM rates and formats
2654 * @codec: the HDA codec
2655 * @nid: NID to query
2656 * @ratesp: the pointer to store the detected rate bitflags
2657 * @formatsp: the pointer to store the detected formats
2658 * @bpsp: the pointer to store the detected format widths
2660 * Queries the supported PCM rates and formats. The NULL @ratesp, @formatsp
2661 * or @bsps argument is ignored.
2663 * Returns 0 if successful, otherwise a negative error code.
2665 static int snd_hda_query_supported_pcm(struct hda_codec *codec, hda_nid_t nid,
2666 u32 *ratesp, u64 *formatsp, unsigned int *bpsp)
2668 unsigned int i, val, wcaps;
2670 wcaps = get_wcaps(codec, nid);
2671 val = query_pcm_param(codec, nid);
2673 if (ratesp) {
2674 u32 rates = 0;
2675 for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++) {
2676 if (val & (1 << i))
2677 rates |= rate_bits[i].alsa_bits;
2679 if (rates == 0) {
2680 snd_printk(KERN_ERR "hda_codec: rates == 0 "
2681 "(nid=0x%x, val=0x%x, ovrd=%i)\n",
2682 nid, val,
2683 (wcaps & AC_WCAP_FORMAT_OVRD) ? 1 : 0);
2684 return -EIO;
2686 *ratesp = rates;
2689 if (formatsp || bpsp) {
2690 u64 formats = 0;
2691 unsigned int streams, bps;
2693 streams = query_stream_param(codec, nid);
2694 if (!streams)
2695 return -EIO;
2697 bps = 0;
2698 if (streams & AC_SUPFMT_PCM) {
2699 if (val & AC_SUPPCM_BITS_8) {
2700 formats |= SNDRV_PCM_FMTBIT_U8;
2701 bps = 8;
2703 if (val & AC_SUPPCM_BITS_16) {
2704 formats |= SNDRV_PCM_FMTBIT_S16_LE;
2705 bps = 16;
2707 if (wcaps & AC_WCAP_DIGITAL) {
2708 if (val & AC_SUPPCM_BITS_32)
2709 formats |= SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE;
2710 if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24))
2711 formats |= SNDRV_PCM_FMTBIT_S32_LE;
2712 if (val & AC_SUPPCM_BITS_24)
2713 bps = 24;
2714 else if (val & AC_SUPPCM_BITS_20)
2715 bps = 20;
2716 } else if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24|
2717 AC_SUPPCM_BITS_32)) {
2718 formats |= SNDRV_PCM_FMTBIT_S32_LE;
2719 if (val & AC_SUPPCM_BITS_32)
2720 bps = 32;
2721 else if (val & AC_SUPPCM_BITS_24)
2722 bps = 24;
2723 else if (val & AC_SUPPCM_BITS_20)
2724 bps = 20;
2727 if (streams & AC_SUPFMT_FLOAT32) {
2728 formats |= SNDRV_PCM_FMTBIT_FLOAT_LE;
2729 if (!bps)
2730 bps = 32;
2732 if (streams == AC_SUPFMT_AC3) {
2733 /* should be exclusive */
2734 /* temporary hack: we have still no proper support
2735 * for the direct AC3 stream...
2737 formats |= SNDRV_PCM_FMTBIT_U8;
2738 bps = 8;
2740 if (formats == 0) {
2741 snd_printk(KERN_ERR "hda_codec: formats == 0 "
2742 "(nid=0x%x, val=0x%x, ovrd=%i, "
2743 "streams=0x%x)\n",
2744 nid, val,
2745 (wcaps & AC_WCAP_FORMAT_OVRD) ? 1 : 0,
2746 streams);
2747 return -EIO;
2749 if (formatsp)
2750 *formatsp = formats;
2751 if (bpsp)
2752 *bpsp = bps;
2755 return 0;
2759 * snd_hda_is_supported_format - check whether the given node supports
2760 * the format val
2762 * Returns 1 if supported, 0 if not.
2764 int snd_hda_is_supported_format(struct hda_codec *codec, hda_nid_t nid,
2765 unsigned int format)
2767 int i;
2768 unsigned int val = 0, rate, stream;
2770 val = query_pcm_param(codec, nid);
2771 if (!val)
2772 return 0;
2774 rate = format & 0xff00;
2775 for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++)
2776 if (rate_bits[i].hda_fmt == rate) {
2777 if (val & (1 << i))
2778 break;
2779 return 0;
2781 if (i >= AC_PAR_PCM_RATE_BITS)
2782 return 0;
2784 stream = query_stream_param(codec, nid);
2785 if (!stream)
2786 return 0;
2788 if (stream & AC_SUPFMT_PCM) {
2789 switch (format & 0xf0) {
2790 case 0x00:
2791 if (!(val & AC_SUPPCM_BITS_8))
2792 return 0;
2793 break;
2794 case 0x10:
2795 if (!(val & AC_SUPPCM_BITS_16))
2796 return 0;
2797 break;
2798 case 0x20:
2799 if (!(val & AC_SUPPCM_BITS_20))
2800 return 0;
2801 break;
2802 case 0x30:
2803 if (!(val & AC_SUPPCM_BITS_24))
2804 return 0;
2805 break;
2806 case 0x40:
2807 if (!(val & AC_SUPPCM_BITS_32))
2808 return 0;
2809 break;
2810 default:
2811 return 0;
2813 } else {
2814 /* FIXME: check for float32 and AC3? */
2817 return 1;
2819 EXPORT_SYMBOL_HDA(snd_hda_is_supported_format);
2822 * PCM stuff
2824 static int hda_pcm_default_open_close(struct hda_pcm_stream *hinfo,
2825 struct hda_codec *codec,
2826 struct snd_pcm_substream *substream)
2828 return 0;
2831 static int hda_pcm_default_prepare(struct hda_pcm_stream *hinfo,
2832 struct hda_codec *codec,
2833 unsigned int stream_tag,
2834 unsigned int format,
2835 struct snd_pcm_substream *substream)
2837 snd_hda_codec_setup_stream(codec, hinfo->nid, stream_tag, 0, format);
2838 return 0;
2841 static int hda_pcm_default_cleanup(struct hda_pcm_stream *hinfo,
2842 struct hda_codec *codec,
2843 struct snd_pcm_substream *substream)
2845 snd_hda_codec_cleanup_stream(codec, hinfo->nid);
2846 return 0;
2849 static int set_pcm_default_values(struct hda_codec *codec,
2850 struct hda_pcm_stream *info)
2852 int err;
2854 /* query support PCM information from the given NID */
2855 if (info->nid && (!info->rates || !info->formats)) {
2856 err = snd_hda_query_supported_pcm(codec, info->nid,
2857 info->rates ? NULL : &info->rates,
2858 info->formats ? NULL : &info->formats,
2859 info->maxbps ? NULL : &info->maxbps);
2860 if (err < 0)
2861 return err;
2863 if (info->ops.open == NULL)
2864 info->ops.open = hda_pcm_default_open_close;
2865 if (info->ops.close == NULL)
2866 info->ops.close = hda_pcm_default_open_close;
2867 if (info->ops.prepare == NULL) {
2868 if (snd_BUG_ON(!info->nid))
2869 return -EINVAL;
2870 info->ops.prepare = hda_pcm_default_prepare;
2872 if (info->ops.cleanup == NULL) {
2873 if (snd_BUG_ON(!info->nid))
2874 return -EINVAL;
2875 info->ops.cleanup = hda_pcm_default_cleanup;
2877 return 0;
2881 * get the empty PCM device number to assign
2883 static int get_empty_pcm_device(struct hda_bus *bus, int type)
2885 static const char *dev_name[HDA_PCM_NTYPES] = {
2886 "Audio", "SPDIF", "HDMI", "Modem"
2888 /* audio device indices; not linear to keep compatibility */
2889 static int audio_idx[HDA_PCM_NTYPES][5] = {
2890 [HDA_PCM_TYPE_AUDIO] = { 0, 2, 4, 5, -1 },
2891 [HDA_PCM_TYPE_SPDIF] = { 1, -1 },
2892 [HDA_PCM_TYPE_HDMI] = { 3, 7, 8, 9, -1 },
2893 [HDA_PCM_TYPE_MODEM] = { 6, -1 },
2895 int i;
2897 if (type >= HDA_PCM_NTYPES) {
2898 snd_printk(KERN_WARNING "Invalid PCM type %d\n", type);
2899 return -EINVAL;
2902 for (i = 0; audio_idx[type][i] >= 0 ; i++)
2903 if (!test_and_set_bit(audio_idx[type][i], bus->pcm_dev_bits))
2904 return audio_idx[type][i];
2906 snd_printk(KERN_WARNING "Too many %s devices\n", dev_name[type]);
2907 return -EAGAIN;
2911 * attach a new PCM stream
2913 static int snd_hda_attach_pcm(struct hda_codec *codec, struct hda_pcm *pcm)
2915 struct hda_bus *bus = codec->bus;
2916 struct hda_pcm_stream *info;
2917 int stream, err;
2919 if (snd_BUG_ON(!pcm->name))
2920 return -EINVAL;
2921 for (stream = 0; stream < 2; stream++) {
2922 info = &pcm->stream[stream];
2923 if (info->substreams) {
2924 err = set_pcm_default_values(codec, info);
2925 if (err < 0)
2926 return err;
2929 return bus->ops.attach_pcm(bus, codec, pcm);
2932 /* assign all PCMs of the given codec */
2933 int snd_hda_codec_build_pcms(struct hda_codec *codec)
2935 unsigned int pcm;
2936 int err;
2938 if (!codec->num_pcms) {
2939 if (!codec->patch_ops.build_pcms)
2940 return 0;
2941 err = codec->patch_ops.build_pcms(codec);
2942 if (err < 0) {
2943 printk(KERN_ERR "hda_codec: cannot build PCMs"
2944 "for #%d (error %d)\n", codec->addr, err);
2945 err = snd_hda_codec_reset(codec);
2946 if (err < 0) {
2947 printk(KERN_ERR
2948 "hda_codec: cannot revert codec\n");
2949 return err;
2953 for (pcm = 0; pcm < codec->num_pcms; pcm++) {
2954 struct hda_pcm *cpcm = &codec->pcm_info[pcm];
2955 int dev;
2957 if (!cpcm->stream[0].substreams && !cpcm->stream[1].substreams)
2958 continue; /* no substreams assigned */
2960 if (!cpcm->pcm) {
2961 dev = get_empty_pcm_device(codec->bus, cpcm->pcm_type);
2962 if (dev < 0)
2963 continue; /* no fatal error */
2964 cpcm->device = dev;
2965 err = snd_hda_attach_pcm(codec, cpcm);
2966 if (err < 0) {
2967 printk(KERN_ERR "hda_codec: cannot attach "
2968 "PCM stream %d for codec #%d\n",
2969 dev, codec->addr);
2970 continue; /* no fatal error */
2974 return 0;
2978 * snd_hda_build_pcms - build PCM information
2979 * @bus: the BUS
2981 * Create PCM information for each codec included in the bus.
2983 * The build_pcms codec patch is requested to set up codec->num_pcms and
2984 * codec->pcm_info properly. The array is referred by the top-level driver
2985 * to create its PCM instances.
2986 * The allocated codec->pcm_info should be released in codec->patch_ops.free
2987 * callback.
2989 * At least, substreams, channels_min and channels_max must be filled for
2990 * each stream. substreams = 0 indicates that the stream doesn't exist.
2991 * When rates and/or formats are zero, the supported values are queried
2992 * from the given nid. The nid is used also by the default ops.prepare
2993 * and ops.cleanup callbacks.
2995 * The driver needs to call ops.open in its open callback. Similarly,
2996 * ops.close is supposed to be called in the close callback.
2997 * ops.prepare should be called in the prepare or hw_params callback
2998 * with the proper parameters for set up.
2999 * ops.cleanup should be called in hw_free for clean up of streams.
3001 * This function returns 0 if successfull, or a negative error code.
3003 int __devinit snd_hda_build_pcms(struct hda_bus *bus)
3005 struct hda_codec *codec;
3007 list_for_each_entry(codec, &bus->codec_list, list) {
3008 int err = snd_hda_codec_build_pcms(codec);
3009 if (err < 0)
3010 return err;
3012 return 0;
3014 EXPORT_SYMBOL_HDA(snd_hda_build_pcms);
3017 * snd_hda_check_board_config - compare the current codec with the config table
3018 * @codec: the HDA codec
3019 * @num_configs: number of config enums
3020 * @models: array of model name strings
3021 * @tbl: configuration table, terminated by null entries
3023 * Compares the modelname or PCI subsystem id of the current codec with the
3024 * given configuration table. If a matching entry is found, returns its
3025 * config value (supposed to be 0 or positive).
3027 * If no entries are matching, the function returns a negative value.
3029 int snd_hda_check_board_config(struct hda_codec *codec,
3030 int num_configs, const char **models,
3031 const struct snd_pci_quirk *tbl)
3033 if (codec->modelname && models) {
3034 int i;
3035 for (i = 0; i < num_configs; i++) {
3036 if (models[i] &&
3037 !strcmp(codec->modelname, models[i])) {
3038 snd_printd(KERN_INFO "hda_codec: model '%s' is "
3039 "selected\n", models[i]);
3040 return i;
3045 if (!codec->bus->pci || !tbl)
3046 return -1;
3048 tbl = snd_pci_quirk_lookup(codec->bus->pci, tbl);
3049 if (!tbl)
3050 return -1;
3051 if (tbl->value >= 0 && tbl->value < num_configs) {
3052 #ifdef CONFIG_SND_DEBUG_VERBOSE
3053 char tmp[10];
3054 const char *model = NULL;
3055 if (models)
3056 model = models[tbl->value];
3057 if (!model) {
3058 sprintf(tmp, "#%d", tbl->value);
3059 model = tmp;
3061 snd_printdd(KERN_INFO "hda_codec: model '%s' is selected "
3062 "for config %x:%x (%s)\n",
3063 model, tbl->subvendor, tbl->subdevice,
3064 (tbl->name ? tbl->name : "Unknown device"));
3065 #endif
3066 return tbl->value;
3068 return -1;
3070 EXPORT_SYMBOL_HDA(snd_hda_check_board_config);
3073 * snd_hda_check_board_codec_sid_config - compare the current codec
3074 subsystem ID with the
3075 config table
3077 This is important for Gateway notebooks with SB450 HDA Audio
3078 where the vendor ID of the PCI device is:
3079 ATI Technologies Inc SB450 HDA Audio [1002:437b]
3080 and the vendor/subvendor are found only at the codec.
3082 * @codec: the HDA codec
3083 * @num_configs: number of config enums
3084 * @models: array of model name strings
3085 * @tbl: configuration table, terminated by null entries
3087 * Compares the modelname or PCI subsystem id of the current codec with the
3088 * given configuration table. If a matching entry is found, returns its
3089 * config value (supposed to be 0 or positive).
3091 * If no entries are matching, the function returns a negative value.
3093 int snd_hda_check_board_codec_sid_config(struct hda_codec *codec,
3094 int num_configs, const char **models,
3095 const struct snd_pci_quirk *tbl)
3097 const struct snd_pci_quirk *q;
3099 /* Search for codec ID */
3100 for (q = tbl; q->subvendor; q++) {
3101 unsigned long vendorid = (q->subdevice) | (q->subvendor << 16);
3103 if (vendorid == codec->subsystem_id)
3104 break;
3107 if (!q->subvendor)
3108 return -1;
3110 tbl = q;
3112 if (tbl->value >= 0 && tbl->value < num_configs) {
3113 #ifdef CONFIG_SND_DEBUG_VERBOSE
3114 char tmp[10];
3115 const char *model = NULL;
3116 if (models)
3117 model = models[tbl->value];
3118 if (!model) {
3119 sprintf(tmp, "#%d", tbl->value);
3120 model = tmp;
3122 snd_printdd(KERN_INFO "hda_codec: model '%s' is selected "
3123 "for config %x:%x (%s)\n",
3124 model, tbl->subvendor, tbl->subdevice,
3125 (tbl->name ? tbl->name : "Unknown device"));
3126 #endif
3127 return tbl->value;
3129 return -1;
3131 EXPORT_SYMBOL_HDA(snd_hda_check_board_codec_sid_config);
3134 * snd_hda_add_new_ctls - create controls from the array
3135 * @codec: the HDA codec
3136 * @knew: the array of struct snd_kcontrol_new
3138 * This helper function creates and add new controls in the given array.
3139 * The array must be terminated with an empty entry as terminator.
3141 * Returns 0 if successful, or a negative error code.
3143 int snd_hda_add_new_ctls(struct hda_codec *codec, struct snd_kcontrol_new *knew)
3145 int err;
3147 for (; knew->name; knew++) {
3148 struct snd_kcontrol *kctl;
3149 kctl = snd_ctl_new1(knew, codec);
3150 if (!kctl)
3151 return -ENOMEM;
3152 err = snd_hda_ctl_add(codec, kctl);
3153 if (err < 0) {
3154 if (!codec->addr)
3155 return err;
3156 kctl = snd_ctl_new1(knew, codec);
3157 if (!kctl)
3158 return -ENOMEM;
3159 kctl->id.device = codec->addr;
3160 err = snd_hda_ctl_add(codec, kctl);
3161 if (err < 0)
3162 return err;
3165 return 0;
3167 EXPORT_SYMBOL_HDA(snd_hda_add_new_ctls);
3169 #ifdef CONFIG_SND_HDA_POWER_SAVE
3170 static void hda_set_power_state(struct hda_codec *codec, hda_nid_t fg,
3171 unsigned int power_state);
3173 static void hda_power_work(struct work_struct *work)
3175 struct hda_codec *codec =
3176 container_of(work, struct hda_codec, power_work.work);
3177 struct hda_bus *bus = codec->bus;
3179 if (!codec->power_on || codec->power_count) {
3180 codec->power_transition = 0;
3181 return;
3184 hda_call_codec_suspend(codec);
3185 if (bus->ops.pm_notify)
3186 bus->ops.pm_notify(bus);
3189 static void hda_keep_power_on(struct hda_codec *codec)
3191 codec->power_count++;
3192 codec->power_on = 1;
3195 void snd_hda_power_up(struct hda_codec *codec)
3197 struct hda_bus *bus = codec->bus;
3199 codec->power_count++;
3200 if (codec->power_on || codec->power_transition)
3201 return;
3203 codec->power_on = 1;
3204 if (bus->ops.pm_notify)
3205 bus->ops.pm_notify(bus);
3206 hda_call_codec_resume(codec);
3207 cancel_delayed_work(&codec->power_work);
3208 codec->power_transition = 0;
3210 EXPORT_SYMBOL_HDA(snd_hda_power_up);
3212 #define power_save(codec) \
3213 ((codec)->bus->power_save ? *(codec)->bus->power_save : 0)
3215 #define power_save(codec) \
3216 ((codec)->bus->power_save ? *(codec)->bus->power_save : 0)
3218 void snd_hda_power_down(struct hda_codec *codec)
3220 --codec->power_count;
3221 if (!codec->power_on || codec->power_count || codec->power_transition)
3222 return;
3223 if (power_save(codec)) {
3224 codec->power_transition = 1; /* avoid reentrance */
3225 queue_delayed_work(codec->bus->workq, &codec->power_work,
3226 msecs_to_jiffies(power_save(codec) * 1000));
3229 EXPORT_SYMBOL_HDA(snd_hda_power_down);
3231 int snd_hda_check_amp_list_power(struct hda_codec *codec,
3232 struct hda_loopback_check *check,
3233 hda_nid_t nid)
3235 struct hda_amp_list *p;
3236 int ch, v;
3238 if (!check->amplist)
3239 return 0;
3240 for (p = check->amplist; p->nid; p++) {
3241 if (p->nid == nid)
3242 break;
3244 if (!p->nid)
3245 return 0; /* nothing changed */
3247 for (p = check->amplist; p->nid; p++) {
3248 for (ch = 0; ch < 2; ch++) {
3249 v = snd_hda_codec_amp_read(codec, p->nid, ch, p->dir,
3250 p->idx);
3251 if (!(v & HDA_AMP_MUTE) && v > 0) {
3252 if (!check->power_on) {
3253 check->power_on = 1;
3254 snd_hda_power_up(codec);
3256 return 1;
3260 if (check->power_on) {
3261 check->power_on = 0;
3262 snd_hda_power_down(codec);
3264 return 0;
3266 EXPORT_SYMBOL_HDA(snd_hda_check_amp_list_power);
3267 #endif
3270 * Channel mode helper
3272 int snd_hda_ch_mode_info(struct hda_codec *codec,
3273 struct snd_ctl_elem_info *uinfo,
3274 const struct hda_channel_mode *chmode,
3275 int num_chmodes)
3277 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
3278 uinfo->count = 1;
3279 uinfo->value.enumerated.items = num_chmodes;
3280 if (uinfo->value.enumerated.item >= num_chmodes)
3281 uinfo->value.enumerated.item = num_chmodes - 1;
3282 sprintf(uinfo->value.enumerated.name, "%dch",
3283 chmode[uinfo->value.enumerated.item].channels);
3284 return 0;
3286 EXPORT_SYMBOL_HDA(snd_hda_ch_mode_info);
3288 int snd_hda_ch_mode_get(struct hda_codec *codec,
3289 struct snd_ctl_elem_value *ucontrol,
3290 const struct hda_channel_mode *chmode,
3291 int num_chmodes,
3292 int max_channels)
3294 int i;
3296 for (i = 0; i < num_chmodes; i++) {
3297 if (max_channels == chmode[i].channels) {
3298 ucontrol->value.enumerated.item[0] = i;
3299 break;
3302 return 0;
3304 EXPORT_SYMBOL_HDA(snd_hda_ch_mode_get);
3306 int snd_hda_ch_mode_put(struct hda_codec *codec,
3307 struct snd_ctl_elem_value *ucontrol,
3308 const struct hda_channel_mode *chmode,
3309 int num_chmodes,
3310 int *max_channelsp)
3312 unsigned int mode;
3314 mode = ucontrol->value.enumerated.item[0];
3315 if (mode >= num_chmodes)
3316 return -EINVAL;
3317 if (*max_channelsp == chmode[mode].channels)
3318 return 0;
3319 /* change the current channel setting */
3320 *max_channelsp = chmode[mode].channels;
3321 if (chmode[mode].sequence)
3322 snd_hda_sequence_write_cache(codec, chmode[mode].sequence);
3323 return 1;
3325 EXPORT_SYMBOL_HDA(snd_hda_ch_mode_put);
3328 * input MUX helper
3330 int snd_hda_input_mux_info(const struct hda_input_mux *imux,
3331 struct snd_ctl_elem_info *uinfo)
3333 unsigned int index;
3335 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
3336 uinfo->count = 1;
3337 uinfo->value.enumerated.items = imux->num_items;
3338 if (!imux->num_items)
3339 return 0;
3340 index = uinfo->value.enumerated.item;
3341 if (index >= imux->num_items)
3342 index = imux->num_items - 1;
3343 strcpy(uinfo->value.enumerated.name, imux->items[index].label);
3344 return 0;
3346 EXPORT_SYMBOL_HDA(snd_hda_input_mux_info);
3348 int snd_hda_input_mux_put(struct hda_codec *codec,
3349 const struct hda_input_mux *imux,
3350 struct snd_ctl_elem_value *ucontrol,
3351 hda_nid_t nid,
3352 unsigned int *cur_val)
3354 unsigned int idx;
3356 if (!imux->num_items)
3357 return 0;
3358 idx = ucontrol->value.enumerated.item[0];
3359 if (idx >= imux->num_items)
3360 idx = imux->num_items - 1;
3361 if (*cur_val == idx)
3362 return 0;
3363 snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_CONNECT_SEL,
3364 imux->items[idx].index);
3365 *cur_val = idx;
3366 return 1;
3368 EXPORT_SYMBOL_HDA(snd_hda_input_mux_put);
3372 * Multi-channel / digital-out PCM helper functions
3375 /* setup SPDIF output stream */
3376 static void setup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid,
3377 unsigned int stream_tag, unsigned int format)
3379 /* turn off SPDIF once; otherwise the IEC958 bits won't be updated */
3380 if (codec->spdif_status_reset && (codec->spdif_ctls & AC_DIG1_ENABLE))
3381 set_dig_out_convert(codec, nid,
3382 codec->spdif_ctls & ~AC_DIG1_ENABLE & 0xff,
3383 -1);
3384 snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format);
3385 if (codec->slave_dig_outs) {
3386 hda_nid_t *d;
3387 for (d = codec->slave_dig_outs; *d; d++)
3388 snd_hda_codec_setup_stream(codec, *d, stream_tag, 0,
3389 format);
3391 /* turn on again (if needed) */
3392 if (codec->spdif_status_reset && (codec->spdif_ctls & AC_DIG1_ENABLE))
3393 set_dig_out_convert(codec, nid,
3394 codec->spdif_ctls & 0xff, -1);
3397 static void cleanup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid)
3399 snd_hda_codec_cleanup_stream(codec, nid);
3400 if (codec->slave_dig_outs) {
3401 hda_nid_t *d;
3402 for (d = codec->slave_dig_outs; *d; d++)
3403 snd_hda_codec_cleanup_stream(codec, *d);
3408 * open the digital out in the exclusive mode
3410 int snd_hda_multi_out_dig_open(struct hda_codec *codec,
3411 struct hda_multi_out *mout)
3413 mutex_lock(&codec->spdif_mutex);
3414 if (mout->dig_out_used == HDA_DIG_ANALOG_DUP)
3415 /* already opened as analog dup; reset it once */
3416 cleanup_dig_out_stream(codec, mout->dig_out_nid);
3417 mout->dig_out_used = HDA_DIG_EXCLUSIVE;
3418 mutex_unlock(&codec->spdif_mutex);
3419 return 0;
3421 EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_open);
3423 int snd_hda_multi_out_dig_prepare(struct hda_codec *codec,
3424 struct hda_multi_out *mout,
3425 unsigned int stream_tag,
3426 unsigned int format,
3427 struct snd_pcm_substream *substream)
3429 mutex_lock(&codec->spdif_mutex);
3430 setup_dig_out_stream(codec, mout->dig_out_nid, stream_tag, format);
3431 mutex_unlock(&codec->spdif_mutex);
3432 return 0;
3434 EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_prepare);
3436 int snd_hda_multi_out_dig_cleanup(struct hda_codec *codec,
3437 struct hda_multi_out *mout)
3439 mutex_lock(&codec->spdif_mutex);
3440 cleanup_dig_out_stream(codec, mout->dig_out_nid);
3441 mutex_unlock(&codec->spdif_mutex);
3442 return 0;
3444 EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_cleanup);
3447 * release the digital out
3449 int snd_hda_multi_out_dig_close(struct hda_codec *codec,
3450 struct hda_multi_out *mout)
3452 mutex_lock(&codec->spdif_mutex);
3453 mout->dig_out_used = 0;
3454 mutex_unlock(&codec->spdif_mutex);
3455 return 0;
3457 EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_close);
3460 * set up more restrictions for analog out
3462 int snd_hda_multi_out_analog_open(struct hda_codec *codec,
3463 struct hda_multi_out *mout,
3464 struct snd_pcm_substream *substream,
3465 struct hda_pcm_stream *hinfo)
3467 struct snd_pcm_runtime *runtime = substream->runtime;
3468 runtime->hw.channels_max = mout->max_channels;
3469 if (mout->dig_out_nid) {
3470 if (!mout->analog_rates) {
3471 mout->analog_rates = hinfo->rates;
3472 mout->analog_formats = hinfo->formats;
3473 mout->analog_maxbps = hinfo->maxbps;
3474 } else {
3475 runtime->hw.rates = mout->analog_rates;
3476 runtime->hw.formats = mout->analog_formats;
3477 hinfo->maxbps = mout->analog_maxbps;
3479 if (!mout->spdif_rates) {
3480 snd_hda_query_supported_pcm(codec, mout->dig_out_nid,
3481 &mout->spdif_rates,
3482 &mout->spdif_formats,
3483 &mout->spdif_maxbps);
3485 mutex_lock(&codec->spdif_mutex);
3486 if (mout->share_spdif) {
3487 if ((runtime->hw.rates & mout->spdif_rates) &&
3488 (runtime->hw.formats & mout->spdif_formats)) {
3489 runtime->hw.rates &= mout->spdif_rates;
3490 runtime->hw.formats &= mout->spdif_formats;
3491 if (mout->spdif_maxbps < hinfo->maxbps)
3492 hinfo->maxbps = mout->spdif_maxbps;
3493 } else {
3494 mout->share_spdif = 0;
3495 /* FIXME: need notify? */
3498 mutex_unlock(&codec->spdif_mutex);
3500 return snd_pcm_hw_constraint_step(substream->runtime, 0,
3501 SNDRV_PCM_HW_PARAM_CHANNELS, 2);
3503 EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_open);
3506 * set up the i/o for analog out
3507 * when the digital out is available, copy the front out to digital out, too.
3509 int snd_hda_multi_out_analog_prepare(struct hda_codec *codec,
3510 struct hda_multi_out *mout,
3511 unsigned int stream_tag,
3512 unsigned int format,
3513 struct snd_pcm_substream *substream)
3515 hda_nid_t *nids = mout->dac_nids;
3516 int chs = substream->runtime->channels;
3517 int i;
3519 mutex_lock(&codec->spdif_mutex);
3520 if (mout->dig_out_nid && mout->share_spdif &&
3521 mout->dig_out_used != HDA_DIG_EXCLUSIVE) {
3522 if (chs == 2 &&
3523 snd_hda_is_supported_format(codec, mout->dig_out_nid,
3524 format) &&
3525 !(codec->spdif_status & IEC958_AES0_NONAUDIO)) {
3526 mout->dig_out_used = HDA_DIG_ANALOG_DUP;
3527 setup_dig_out_stream(codec, mout->dig_out_nid,
3528 stream_tag, format);
3529 } else {
3530 mout->dig_out_used = 0;
3531 cleanup_dig_out_stream(codec, mout->dig_out_nid);
3534 mutex_unlock(&codec->spdif_mutex);
3536 /* front */
3537 snd_hda_codec_setup_stream(codec, nids[HDA_FRONT], stream_tag,
3538 0, format);
3539 if (!mout->no_share_stream &&
3540 mout->hp_nid && mout->hp_nid != nids[HDA_FRONT])
3541 /* headphone out will just decode front left/right (stereo) */
3542 snd_hda_codec_setup_stream(codec, mout->hp_nid, stream_tag,
3543 0, format);
3544 /* extra outputs copied from front */
3545 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++)
3546 if (!mout->no_share_stream && mout->extra_out_nid[i])
3547 snd_hda_codec_setup_stream(codec,
3548 mout->extra_out_nid[i],
3549 stream_tag, 0, format);
3551 /* surrounds */
3552 for (i = 1; i < mout->num_dacs; i++) {
3553 if (chs >= (i + 1) * 2) /* independent out */
3554 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
3555 i * 2, format);
3556 else if (!mout->no_share_stream) /* copy front */
3557 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
3558 0, format);
3560 return 0;
3562 EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_prepare);
3565 * clean up the setting for analog out
3567 int snd_hda_multi_out_analog_cleanup(struct hda_codec *codec,
3568 struct hda_multi_out *mout)
3570 hda_nid_t *nids = mout->dac_nids;
3571 int i;
3573 for (i = 0; i < mout->num_dacs; i++)
3574 snd_hda_codec_cleanup_stream(codec, nids[i]);
3575 if (mout->hp_nid)
3576 snd_hda_codec_cleanup_stream(codec, mout->hp_nid);
3577 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++)
3578 if (mout->extra_out_nid[i])
3579 snd_hda_codec_cleanup_stream(codec,
3580 mout->extra_out_nid[i]);
3581 mutex_lock(&codec->spdif_mutex);
3582 if (mout->dig_out_nid && mout->dig_out_used == HDA_DIG_ANALOG_DUP) {
3583 cleanup_dig_out_stream(codec, mout->dig_out_nid);
3584 mout->dig_out_used = 0;
3586 mutex_unlock(&codec->spdif_mutex);
3587 return 0;
3589 EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_cleanup);
3592 * Helper for automatic pin configuration
3595 static int is_in_nid_list(hda_nid_t nid, hda_nid_t *list)
3597 for (; *list; list++)
3598 if (*list == nid)
3599 return 1;
3600 return 0;
3605 * Sort an associated group of pins according to their sequence numbers.
3607 static void sort_pins_by_sequence(hda_nid_t * pins, short * sequences,
3608 int num_pins)
3610 int i, j;
3611 short seq;
3612 hda_nid_t nid;
3614 for (i = 0; i < num_pins; i++) {
3615 for (j = i + 1; j < num_pins; j++) {
3616 if (sequences[i] > sequences[j]) {
3617 seq = sequences[i];
3618 sequences[i] = sequences[j];
3619 sequences[j] = seq;
3620 nid = pins[i];
3621 pins[i] = pins[j];
3622 pins[j] = nid;
3630 * Parse all pin widgets and store the useful pin nids to cfg
3632 * The number of line-outs or any primary output is stored in line_outs,
3633 * and the corresponding output pins are assigned to line_out_pins[],
3634 * in the order of front, rear, CLFE, side, ...
3636 * If more extra outputs (speaker and headphone) are found, the pins are
3637 * assisnged to hp_pins[] and speaker_pins[], respectively. If no line-out jack
3638 * is detected, one of speaker of HP pins is assigned as the primary
3639 * output, i.e. to line_out_pins[0]. So, line_outs is always positive
3640 * if any analog output exists.
3642 * The analog input pins are assigned to input_pins array.
3643 * The digital input/output pins are assigned to dig_in_pin and dig_out_pin,
3644 * respectively.
3646 int snd_hda_parse_pin_def_config(struct hda_codec *codec,
3647 struct auto_pin_cfg *cfg,
3648 hda_nid_t *ignore_nids)
3650 hda_nid_t nid, end_nid;
3651 short seq, assoc_line_out, assoc_speaker;
3652 short sequences_line_out[ARRAY_SIZE(cfg->line_out_pins)];
3653 short sequences_speaker[ARRAY_SIZE(cfg->speaker_pins)];
3654 short sequences_hp[ARRAY_SIZE(cfg->hp_pins)];
3656 memset(cfg, 0, sizeof(*cfg));
3658 memset(sequences_line_out, 0, sizeof(sequences_line_out));
3659 memset(sequences_speaker, 0, sizeof(sequences_speaker));
3660 memset(sequences_hp, 0, sizeof(sequences_hp));
3661 assoc_line_out = assoc_speaker = 0;
3663 end_nid = codec->start_nid + codec->num_nodes;
3664 for (nid = codec->start_nid; nid < end_nid; nid++) {
3665 unsigned int wid_caps = get_wcaps(codec, nid);
3666 unsigned int wid_type = get_wcaps_type(wid_caps);
3667 unsigned int def_conf;
3668 short assoc, loc;
3670 /* read all default configuration for pin complex */
3671 if (wid_type != AC_WID_PIN)
3672 continue;
3673 /* ignore the given nids (e.g. pc-beep returns error) */
3674 if (ignore_nids && is_in_nid_list(nid, ignore_nids))
3675 continue;
3677 def_conf = snd_hda_codec_get_pincfg(codec, nid);
3678 if (get_defcfg_connect(def_conf) == AC_JACK_PORT_NONE)
3679 continue;
3680 loc = get_defcfg_location(def_conf);
3681 switch (get_defcfg_device(def_conf)) {
3682 case AC_JACK_LINE_OUT:
3683 seq = get_defcfg_sequence(def_conf);
3684 assoc = get_defcfg_association(def_conf);
3686 if (!(wid_caps & AC_WCAP_STEREO))
3687 if (!cfg->mono_out_pin)
3688 cfg->mono_out_pin = nid;
3689 if (!assoc)
3690 continue;
3691 if (!assoc_line_out)
3692 assoc_line_out = assoc;
3693 else if (assoc_line_out != assoc)
3694 continue;
3695 if (cfg->line_outs >= ARRAY_SIZE(cfg->line_out_pins))
3696 continue;
3697 cfg->line_out_pins[cfg->line_outs] = nid;
3698 sequences_line_out[cfg->line_outs] = seq;
3699 cfg->line_outs++;
3700 break;
3701 case AC_JACK_SPEAKER:
3702 seq = get_defcfg_sequence(def_conf);
3703 assoc = get_defcfg_association(def_conf);
3704 if (! assoc)
3705 continue;
3706 if (! assoc_speaker)
3707 assoc_speaker = assoc;
3708 else if (assoc_speaker != assoc)
3709 continue;
3710 if (cfg->speaker_outs >= ARRAY_SIZE(cfg->speaker_pins))
3711 continue;
3712 cfg->speaker_pins[cfg->speaker_outs] = nid;
3713 sequences_speaker[cfg->speaker_outs] = seq;
3714 cfg->speaker_outs++;
3715 break;
3716 case AC_JACK_HP_OUT:
3717 seq = get_defcfg_sequence(def_conf);
3718 assoc = get_defcfg_association(def_conf);
3719 if (cfg->hp_outs >= ARRAY_SIZE(cfg->hp_pins))
3720 continue;
3721 cfg->hp_pins[cfg->hp_outs] = nid;
3722 sequences_hp[cfg->hp_outs] = (assoc << 4) | seq;
3723 cfg->hp_outs++;
3724 break;
3725 case AC_JACK_MIC_IN: {
3726 int preferred, alt;
3727 if (loc == AC_JACK_LOC_FRONT) {
3728 preferred = AUTO_PIN_FRONT_MIC;
3729 alt = AUTO_PIN_MIC;
3730 } else {
3731 preferred = AUTO_PIN_MIC;
3732 alt = AUTO_PIN_FRONT_MIC;
3734 if (!cfg->input_pins[preferred])
3735 cfg->input_pins[preferred] = nid;
3736 else if (!cfg->input_pins[alt])
3737 cfg->input_pins[alt] = nid;
3738 break;
3740 case AC_JACK_LINE_IN:
3741 if (loc == AC_JACK_LOC_FRONT)
3742 cfg->input_pins[AUTO_PIN_FRONT_LINE] = nid;
3743 else
3744 cfg->input_pins[AUTO_PIN_LINE] = nid;
3745 break;
3746 case AC_JACK_CD:
3747 cfg->input_pins[AUTO_PIN_CD] = nid;
3748 break;
3749 case AC_JACK_AUX:
3750 cfg->input_pins[AUTO_PIN_AUX] = nid;
3751 break;
3752 case AC_JACK_SPDIF_OUT:
3753 case AC_JACK_DIG_OTHER_OUT:
3754 if (cfg->dig_outs >= ARRAY_SIZE(cfg->dig_out_pins))
3755 continue;
3756 cfg->dig_out_pins[cfg->dig_outs] = nid;
3757 cfg->dig_out_type[cfg->dig_outs] =
3758 (loc == AC_JACK_LOC_HDMI) ?
3759 HDA_PCM_TYPE_HDMI : HDA_PCM_TYPE_SPDIF;
3760 cfg->dig_outs++;
3761 break;
3762 case AC_JACK_SPDIF_IN:
3763 case AC_JACK_DIG_OTHER_IN:
3764 cfg->dig_in_pin = nid;
3765 if (loc == AC_JACK_LOC_HDMI)
3766 cfg->dig_in_type = HDA_PCM_TYPE_HDMI;
3767 else
3768 cfg->dig_in_type = HDA_PCM_TYPE_SPDIF;
3769 break;
3773 /* FIX-UP:
3774 * If no line-out is defined but multiple HPs are found,
3775 * some of them might be the real line-outs.
3777 if (!cfg->line_outs && cfg->hp_outs > 1) {
3778 int i = 0;
3779 while (i < cfg->hp_outs) {
3780 /* The real HPs should have the sequence 0x0f */
3781 if ((sequences_hp[i] & 0x0f) == 0x0f) {
3782 i++;
3783 continue;
3785 /* Move it to the line-out table */
3786 cfg->line_out_pins[cfg->line_outs] = cfg->hp_pins[i];
3787 sequences_line_out[cfg->line_outs] = sequences_hp[i];
3788 cfg->line_outs++;
3789 cfg->hp_outs--;
3790 memmove(cfg->hp_pins + i, cfg->hp_pins + i + 1,
3791 sizeof(cfg->hp_pins[0]) * (cfg->hp_outs - i));
3792 memmove(sequences_hp + i - 1, sequences_hp + i,
3793 sizeof(sequences_hp[0]) * (cfg->hp_outs - i));
3797 /* sort by sequence */
3798 sort_pins_by_sequence(cfg->line_out_pins, sequences_line_out,
3799 cfg->line_outs);
3800 sort_pins_by_sequence(cfg->speaker_pins, sequences_speaker,
3801 cfg->speaker_outs);
3802 sort_pins_by_sequence(cfg->hp_pins, sequences_hp,
3803 cfg->hp_outs);
3805 /* if we have only one mic, make it AUTO_PIN_MIC */
3806 if (!cfg->input_pins[AUTO_PIN_MIC] &&
3807 cfg->input_pins[AUTO_PIN_FRONT_MIC]) {
3808 cfg->input_pins[AUTO_PIN_MIC] =
3809 cfg->input_pins[AUTO_PIN_FRONT_MIC];
3810 cfg->input_pins[AUTO_PIN_FRONT_MIC] = 0;
3812 /* ditto for line-in */
3813 if (!cfg->input_pins[AUTO_PIN_LINE] &&
3814 cfg->input_pins[AUTO_PIN_FRONT_LINE]) {
3815 cfg->input_pins[AUTO_PIN_LINE] =
3816 cfg->input_pins[AUTO_PIN_FRONT_LINE];
3817 cfg->input_pins[AUTO_PIN_FRONT_LINE] = 0;
3821 * FIX-UP: if no line-outs are detected, try to use speaker or HP pin
3822 * as a primary output
3824 if (!cfg->line_outs) {
3825 if (cfg->speaker_outs) {
3826 cfg->line_outs = cfg->speaker_outs;
3827 memcpy(cfg->line_out_pins, cfg->speaker_pins,
3828 sizeof(cfg->speaker_pins));
3829 cfg->speaker_outs = 0;
3830 memset(cfg->speaker_pins, 0, sizeof(cfg->speaker_pins));
3831 cfg->line_out_type = AUTO_PIN_SPEAKER_OUT;
3832 } else if (cfg->hp_outs) {
3833 cfg->line_outs = cfg->hp_outs;
3834 memcpy(cfg->line_out_pins, cfg->hp_pins,
3835 sizeof(cfg->hp_pins));
3836 cfg->hp_outs = 0;
3837 memset(cfg->hp_pins, 0, sizeof(cfg->hp_pins));
3838 cfg->line_out_type = AUTO_PIN_HP_OUT;
3842 /* Reorder the surround channels
3843 * ALSA sequence is front/surr/clfe/side
3844 * HDA sequence is:
3845 * 4-ch: front/surr => OK as it is
3846 * 6-ch: front/clfe/surr
3847 * 8-ch: front/clfe/rear/side|fc
3849 switch (cfg->line_outs) {
3850 case 3:
3851 case 4:
3852 nid = cfg->line_out_pins[1];
3853 cfg->line_out_pins[1] = cfg->line_out_pins[2];
3854 cfg->line_out_pins[2] = nid;
3855 break;
3859 * debug prints of the parsed results
3861 snd_printd("autoconfig: line_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
3862 cfg->line_outs, cfg->line_out_pins[0], cfg->line_out_pins[1],
3863 cfg->line_out_pins[2], cfg->line_out_pins[3],
3864 cfg->line_out_pins[4]);
3865 snd_printd(" speaker_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
3866 cfg->speaker_outs, cfg->speaker_pins[0],
3867 cfg->speaker_pins[1], cfg->speaker_pins[2],
3868 cfg->speaker_pins[3], cfg->speaker_pins[4]);
3869 snd_printd(" hp_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
3870 cfg->hp_outs, cfg->hp_pins[0],
3871 cfg->hp_pins[1], cfg->hp_pins[2],
3872 cfg->hp_pins[3], cfg->hp_pins[4]);
3873 snd_printd(" mono: mono_out=0x%x\n", cfg->mono_out_pin);
3874 if (cfg->dig_outs)
3875 snd_printd(" dig-out=0x%x/0x%x\n",
3876 cfg->dig_out_pins[0], cfg->dig_out_pins[1]);
3877 snd_printd(" inputs: mic=0x%x, fmic=0x%x, line=0x%x, fline=0x%x,"
3878 " cd=0x%x, aux=0x%x\n",
3879 cfg->input_pins[AUTO_PIN_MIC],
3880 cfg->input_pins[AUTO_PIN_FRONT_MIC],
3881 cfg->input_pins[AUTO_PIN_LINE],
3882 cfg->input_pins[AUTO_PIN_FRONT_LINE],
3883 cfg->input_pins[AUTO_PIN_CD],
3884 cfg->input_pins[AUTO_PIN_AUX]);
3885 if (cfg->dig_in_pin)
3886 snd_printd(" dig-in=0x%x\n", cfg->dig_in_pin);
3888 return 0;
3890 EXPORT_SYMBOL_HDA(snd_hda_parse_pin_def_config);
3892 /* labels for input pins */
3893 const char *auto_pin_cfg_labels[AUTO_PIN_LAST] = {
3894 "Mic", "Front Mic", "Line", "Front Line", "CD", "Aux"
3896 EXPORT_SYMBOL_HDA(auto_pin_cfg_labels);
3899 #ifdef CONFIG_PM
3901 * power management
3905 * snd_hda_suspend - suspend the codecs
3906 * @bus: the HDA bus
3908 * Returns 0 if successful.
3910 int snd_hda_suspend(struct hda_bus *bus)
3912 struct hda_codec *codec;
3914 list_for_each_entry(codec, &bus->codec_list, list) {
3915 #ifdef CONFIG_SND_HDA_POWER_SAVE
3916 if (!codec->power_on)
3917 continue;
3918 #endif
3919 hda_call_codec_suspend(codec);
3921 return 0;
3923 EXPORT_SYMBOL_HDA(snd_hda_suspend);
3926 * snd_hda_resume - resume the codecs
3927 * @bus: the HDA bus
3929 * Returns 0 if successful.
3931 * This fucntion is defined only when POWER_SAVE isn't set.
3932 * In the power-save mode, the codec is resumed dynamically.
3934 int snd_hda_resume(struct hda_bus *bus)
3936 struct hda_codec *codec;
3938 list_for_each_entry(codec, &bus->codec_list, list) {
3939 if (snd_hda_codec_needs_resume(codec))
3940 hda_call_codec_resume(codec);
3942 return 0;
3944 EXPORT_SYMBOL_HDA(snd_hda_resume);
3945 #endif /* CONFIG_PM */
3948 * generic arrays
3951 /* get a new element from the given array
3952 * if it exceeds the pre-allocated array size, re-allocate the array
3954 void *snd_array_new(struct snd_array *array)
3956 if (array->used >= array->alloced) {
3957 int num = array->alloced + array->alloc_align;
3958 void *nlist;
3959 if (snd_BUG_ON(num >= 4096))
3960 return NULL;
3961 nlist = kcalloc(num + 1, array->elem_size, GFP_KERNEL);
3962 if (!nlist)
3963 return NULL;
3964 if (array->list) {
3965 memcpy(nlist, array->list,
3966 array->elem_size * array->alloced);
3967 kfree(array->list);
3969 array->list = nlist;
3970 array->alloced = num;
3972 return snd_array_elem(array, array->used++);
3974 EXPORT_SYMBOL_HDA(snd_array_new);
3976 /* free the given array elements */
3977 void snd_array_free(struct snd_array *array)
3979 kfree(array->list);
3980 array->used = 0;
3981 array->alloced = 0;
3982 array->list = NULL;
3984 EXPORT_SYMBOL_HDA(snd_array_free);
3987 * used by hda_proc.c and hda_eld.c
3989 void snd_print_pcm_rates(int pcm, char *buf, int buflen)
3991 static unsigned int rates[] = {
3992 8000, 11025, 16000, 22050, 32000, 44100, 48000, 88200,
3993 96000, 176400, 192000, 384000
3995 int i, j;
3997 for (i = 0, j = 0; i < ARRAY_SIZE(rates); i++)
3998 if (pcm & (1 << i))
3999 j += snprintf(buf + j, buflen - j, " %d", rates[i]);
4001 buf[j] = '\0'; /* necessary when j == 0 */
4003 EXPORT_SYMBOL_HDA(snd_print_pcm_rates);
4005 void snd_print_pcm_bits(int pcm, char *buf, int buflen)
4007 static unsigned int bits[] = { 8, 16, 20, 24, 32 };
4008 int i, j;
4010 for (i = 0, j = 0; i < ARRAY_SIZE(bits); i++)
4011 if (pcm & (AC_SUPPCM_BITS_8 << i))
4012 j += snprintf(buf + j, buflen - j, " %d", bits[i]);
4014 buf[j] = '\0'; /* necessary when j == 0 */
4016 EXPORT_SYMBOL_HDA(snd_print_pcm_bits);
4018 MODULE_DESCRIPTION("HDA codec core");
4019 MODULE_LICENSE("GPL");