2 * Universal Interface for Intel High Definition Audio Codec
4 * HD audio interface patch for ALC 260/880/882 codecs
6 * Copyright (c) 2004 Kailang Yang <kailang@realtek.com.tw>
7 * PeiSen Hou <pshou@realtek.com.tw>
8 * Takashi Iwai <tiwai@suse.de>
9 * Jonathan Woithe <jwoithe@physics.adelaide.edu.au>
11 * This driver is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This driver is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 #include <sound/driver.h>
27 #include <linux/init.h>
28 #include <linux/delay.h>
29 #include <linux/slab.h>
30 #include <linux/pci.h>
31 #include <sound/core.h>
32 #include "hda_codec.h"
33 #include "hda_local.h"
35 #define ALC880_FRONT_EVENT 0x01
36 #define ALC880_DCVOL_EVENT 0x02
37 #define ALC880_HP_EVENT 0x04
38 #define ALC880_MIC_EVENT 0x08
40 /* ALC880 board config type */
63 #ifdef CONFIG_SND_DEBUG
67 ALC880_MODEL_LAST /* last tag */
79 #ifdef CONFIG_SND_DEBUG
83 ALC260_MODEL_LAST /* last tag */
93 ALC262_HP_BPC_D7000_WL,
94 ALC262_HP_BPC_D7000_WF,
99 ALC262_MODEL_LAST /* last tag */
108 ALC268_MODEL_LAST /* last tag */
125 /* ALC861-VD models */
172 ALC883_TARGA_2ch_DIG,
178 ALC883_LENOVO_101E_2ch,
179 ALC883_LENOVO_NB0763,
180 ALC888_LENOVO_MS7195_DIG,
189 #define GPIO_MASK 0x03
192 /* codec parameterization */
193 struct snd_kcontrol_new *mixers[5]; /* mixer arrays */
194 unsigned int num_mixers;
196 const struct hda_verb *init_verbs[5]; /* initialization verbs
200 unsigned int num_init_verbs;
202 char *stream_name_analog; /* analog PCM stream */
203 struct hda_pcm_stream *stream_analog_playback;
204 struct hda_pcm_stream *stream_analog_capture;
206 char *stream_name_digital; /* digital PCM stream */
207 struct hda_pcm_stream *stream_digital_playback;
208 struct hda_pcm_stream *stream_digital_capture;
211 struct hda_multi_out multiout; /* playback set-up
212 * max_channels, dacs must be set
213 * dig_out_nid and hp_nid are optional
217 unsigned int num_adc_nids;
219 hda_nid_t dig_in_nid; /* digital-in NID; optional */
222 unsigned int num_mux_defs;
223 const struct hda_input_mux *input_mux;
224 unsigned int cur_mux[3];
227 const struct hda_channel_mode *channel_mode;
228 int num_channel_mode;
231 /* PCM information */
232 struct hda_pcm pcm_rec[3]; /* used in alc_build_pcms() */
234 /* dynamic controls, init_verbs and input_mux */
235 struct auto_pin_cfg autocfg;
236 unsigned int num_kctl_alloc, num_kctl_used;
237 struct snd_kcontrol_new *kctl_alloc;
238 struct hda_input_mux private_imux;
239 hda_nid_t private_dac_nids[5];
242 void (*init_hook)(struct hda_codec *codec);
243 void (*unsol_event)(struct hda_codec *codec, unsigned int res);
245 /* for pin sensing */
246 unsigned int sense_updated: 1;
247 unsigned int jack_present: 1;
249 #ifdef CONFIG_SND_HDA_POWER_SAVE
250 struct hda_loopback_check loopback;
255 * configuration template - to be copied to the spec instance
257 struct alc_config_preset {
258 struct snd_kcontrol_new *mixers[5]; /* should be identical size
261 const struct hda_verb *init_verbs[5];
262 unsigned int num_dacs;
264 hda_nid_t dig_out_nid; /* optional */
265 hda_nid_t hp_nid; /* optional */
266 unsigned int num_adc_nids;
268 hda_nid_t dig_in_nid;
269 unsigned int num_channel_mode;
270 const struct hda_channel_mode *channel_mode;
272 unsigned int num_mux_defs;
273 const struct hda_input_mux *input_mux;
274 void (*unsol_event)(struct hda_codec *, unsigned int);
275 void (*init_hook)(struct hda_codec *);
276 #ifdef CONFIG_SND_HDA_POWER_SAVE
277 struct hda_amp_list *loopbacks;
285 static int alc_mux_enum_info(struct snd_kcontrol *kcontrol,
286 struct snd_ctl_elem_info *uinfo)
288 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
289 struct alc_spec *spec = codec->spec;
290 unsigned int mux_idx = snd_ctl_get_ioffidx(kcontrol, &uinfo->id);
291 if (mux_idx >= spec->num_mux_defs)
293 return snd_hda_input_mux_info(&spec->input_mux[mux_idx], uinfo);
296 static int alc_mux_enum_get(struct snd_kcontrol *kcontrol,
297 struct snd_ctl_elem_value *ucontrol)
299 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
300 struct alc_spec *spec = codec->spec;
301 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
303 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
307 static int alc_mux_enum_put(struct snd_kcontrol *kcontrol,
308 struct snd_ctl_elem_value *ucontrol)
310 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
311 struct alc_spec *spec = codec->spec;
312 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
313 unsigned int mux_idx = adc_idx >= spec->num_mux_defs ? 0 : adc_idx;
314 return snd_hda_input_mux_put(codec, &spec->input_mux[mux_idx], ucontrol,
315 spec->adc_nids[adc_idx],
316 &spec->cur_mux[adc_idx]);
321 * channel mode setting
323 static int alc_ch_mode_info(struct snd_kcontrol *kcontrol,
324 struct snd_ctl_elem_info *uinfo)
326 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
327 struct alc_spec *spec = codec->spec;
328 return snd_hda_ch_mode_info(codec, uinfo, spec->channel_mode,
329 spec->num_channel_mode);
332 static int alc_ch_mode_get(struct snd_kcontrol *kcontrol,
333 struct snd_ctl_elem_value *ucontrol)
335 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
336 struct alc_spec *spec = codec->spec;
337 return snd_hda_ch_mode_get(codec, ucontrol, spec->channel_mode,
338 spec->num_channel_mode,
339 spec->multiout.max_channels);
342 static int alc_ch_mode_put(struct snd_kcontrol *kcontrol,
343 struct snd_ctl_elem_value *ucontrol)
345 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
346 struct alc_spec *spec = codec->spec;
347 int err = snd_hda_ch_mode_put(codec, ucontrol, spec->channel_mode,
348 spec->num_channel_mode,
349 &spec->multiout.max_channels);
350 if (err >= 0 && spec->need_dac_fix)
351 spec->multiout.num_dacs = spec->multiout.max_channels / 2;
356 * Control the mode of pin widget settings via the mixer. "pc" is used
357 * instead of "%" to avoid consequences of accidently treating the % as
358 * being part of a format specifier. Maximum allowed length of a value is
359 * 63 characters plus NULL terminator.
361 * Note: some retasking pin complexes seem to ignore requests for input
362 * states other than HiZ (eg: PIN_VREFxx) and revert to HiZ if any of these
363 * are requested. Therefore order this list so that this behaviour will not
364 * cause problems when mixer clients move through the enum sequentially.
365 * NIDs 0x0f and 0x10 have been observed to have this behaviour as of
368 static char *alc_pin_mode_names[] = {
369 "Mic 50pc bias", "Mic 80pc bias",
370 "Line in", "Line out", "Headphone out",
372 static unsigned char alc_pin_mode_values[] = {
373 PIN_VREF50, PIN_VREF80, PIN_IN, PIN_OUT, PIN_HP,
375 /* The control can present all 5 options, or it can limit the options based
376 * in the pin being assumed to be exclusively an input or an output pin. In
377 * addition, "input" pins may or may not process the mic bias option
378 * depending on actual widget capability (NIDs 0x0f and 0x10 don't seem to
379 * accept requests for bias as of chip versions up to March 2006) and/or
380 * wiring in the computer.
382 #define ALC_PIN_DIR_IN 0x00
383 #define ALC_PIN_DIR_OUT 0x01
384 #define ALC_PIN_DIR_INOUT 0x02
385 #define ALC_PIN_DIR_IN_NOMICBIAS 0x03
386 #define ALC_PIN_DIR_INOUT_NOMICBIAS 0x04
388 /* Info about the pin modes supported by the different pin direction modes.
389 * For each direction the minimum and maximum values are given.
391 static signed char alc_pin_mode_dir_info[5][2] = {
392 { 0, 2 }, /* ALC_PIN_DIR_IN */
393 { 3, 4 }, /* ALC_PIN_DIR_OUT */
394 { 0, 4 }, /* ALC_PIN_DIR_INOUT */
395 { 2, 2 }, /* ALC_PIN_DIR_IN_NOMICBIAS */
396 { 2, 4 }, /* ALC_PIN_DIR_INOUT_NOMICBIAS */
398 #define alc_pin_mode_min(_dir) (alc_pin_mode_dir_info[_dir][0])
399 #define alc_pin_mode_max(_dir) (alc_pin_mode_dir_info[_dir][1])
400 #define alc_pin_mode_n_items(_dir) \
401 (alc_pin_mode_max(_dir)-alc_pin_mode_min(_dir)+1)
403 static int alc_pin_mode_info(struct snd_kcontrol *kcontrol,
404 struct snd_ctl_elem_info *uinfo)
406 unsigned int item_num = uinfo->value.enumerated.item;
407 unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
409 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
411 uinfo->value.enumerated.items = alc_pin_mode_n_items(dir);
413 if (item_num<alc_pin_mode_min(dir) || item_num>alc_pin_mode_max(dir))
414 item_num = alc_pin_mode_min(dir);
415 strcpy(uinfo->value.enumerated.name, alc_pin_mode_names[item_num]);
419 static int alc_pin_mode_get(struct snd_kcontrol *kcontrol,
420 struct snd_ctl_elem_value *ucontrol)
423 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
424 hda_nid_t nid = kcontrol->private_value & 0xffff;
425 unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
426 long *valp = ucontrol->value.integer.value;
427 unsigned int pinctl = snd_hda_codec_read(codec, nid, 0,
428 AC_VERB_GET_PIN_WIDGET_CONTROL,
431 /* Find enumerated value for current pinctl setting */
432 i = alc_pin_mode_min(dir);
433 while (alc_pin_mode_values[i] != pinctl && i <= alc_pin_mode_max(dir))
435 *valp = i <= alc_pin_mode_max(dir) ? i: alc_pin_mode_min(dir);
439 static int alc_pin_mode_put(struct snd_kcontrol *kcontrol,
440 struct snd_ctl_elem_value *ucontrol)
443 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
444 hda_nid_t nid = kcontrol->private_value & 0xffff;
445 unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
446 long val = *ucontrol->value.integer.value;
447 unsigned int pinctl = snd_hda_codec_read(codec, nid, 0,
448 AC_VERB_GET_PIN_WIDGET_CONTROL,
451 if (val < alc_pin_mode_min(dir) || val > alc_pin_mode_max(dir))
452 val = alc_pin_mode_min(dir);
454 change = pinctl != alc_pin_mode_values[val];
456 /* Set pin mode to that requested */
457 snd_hda_codec_write_cache(codec, nid, 0,
458 AC_VERB_SET_PIN_WIDGET_CONTROL,
459 alc_pin_mode_values[val]);
461 /* Also enable the retasking pin's input/output as required
462 * for the requested pin mode. Enum values of 2 or less are
465 * Dynamically switching the input/output buffers probably
466 * reduces noise slightly (particularly on input) so we'll
467 * do it. However, having both input and output buffers
468 * enabled simultaneously doesn't seem to be problematic if
469 * this turns out to be necessary in the future.
472 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
473 HDA_AMP_MUTE, HDA_AMP_MUTE);
474 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT, 0,
477 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT, 0,
478 HDA_AMP_MUTE, HDA_AMP_MUTE);
479 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
486 #define ALC_PIN_MODE(xname, nid, dir) \
487 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
488 .info = alc_pin_mode_info, \
489 .get = alc_pin_mode_get, \
490 .put = alc_pin_mode_put, \
491 .private_value = nid | (dir<<16) }
493 /* A switch control for ALC260 GPIO pins. Multiple GPIOs can be ganged
494 * together using a mask with more than one bit set. This control is
495 * currently used only by the ALC260 test model. At this stage they are not
496 * needed for any "production" models.
498 #ifdef CONFIG_SND_DEBUG
499 #define alc_gpio_data_info snd_ctl_boolean_mono_info
501 static int alc_gpio_data_get(struct snd_kcontrol *kcontrol,
502 struct snd_ctl_elem_value *ucontrol)
504 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
505 hda_nid_t nid = kcontrol->private_value & 0xffff;
506 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
507 long *valp = ucontrol->value.integer.value;
508 unsigned int val = snd_hda_codec_read(codec, nid, 0,
509 AC_VERB_GET_GPIO_DATA, 0x00);
511 *valp = (val & mask) != 0;
514 static int alc_gpio_data_put(struct snd_kcontrol *kcontrol,
515 struct snd_ctl_elem_value *ucontrol)
518 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
519 hda_nid_t nid = kcontrol->private_value & 0xffff;
520 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
521 long val = *ucontrol->value.integer.value;
522 unsigned int gpio_data = snd_hda_codec_read(codec, nid, 0,
523 AC_VERB_GET_GPIO_DATA,
526 /* Set/unset the masked GPIO bit(s) as needed */
527 change = (val == 0 ? 0 : mask) != (gpio_data & mask);
532 snd_hda_codec_write_cache(codec, nid, 0,
533 AC_VERB_SET_GPIO_DATA, gpio_data);
537 #define ALC_GPIO_DATA_SWITCH(xname, nid, mask) \
538 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
539 .info = alc_gpio_data_info, \
540 .get = alc_gpio_data_get, \
541 .put = alc_gpio_data_put, \
542 .private_value = nid | (mask<<16) }
543 #endif /* CONFIG_SND_DEBUG */
545 /* A switch control to allow the enabling of the digital IO pins on the
546 * ALC260. This is incredibly simplistic; the intention of this control is
547 * to provide something in the test model allowing digital outputs to be
548 * identified if present. If models are found which can utilise these
549 * outputs a more complete mixer control can be devised for those models if
552 #ifdef CONFIG_SND_DEBUG
553 #define alc_spdif_ctrl_info snd_ctl_boolean_mono_info
555 static int alc_spdif_ctrl_get(struct snd_kcontrol *kcontrol,
556 struct snd_ctl_elem_value *ucontrol)
558 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
559 hda_nid_t nid = kcontrol->private_value & 0xffff;
560 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
561 long *valp = ucontrol->value.integer.value;
562 unsigned int val = snd_hda_codec_read(codec, nid, 0,
563 AC_VERB_GET_DIGI_CONVERT, 0x00);
565 *valp = (val & mask) != 0;
568 static int alc_spdif_ctrl_put(struct snd_kcontrol *kcontrol,
569 struct snd_ctl_elem_value *ucontrol)
572 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
573 hda_nid_t nid = kcontrol->private_value & 0xffff;
574 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
575 long val = *ucontrol->value.integer.value;
576 unsigned int ctrl_data = snd_hda_codec_read(codec, nid, 0,
577 AC_VERB_GET_DIGI_CONVERT,
580 /* Set/unset the masked control bit(s) as needed */
581 change = (val == 0 ? 0 : mask) != (ctrl_data & mask);
586 snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_DIGI_CONVERT_1,
591 #define ALC_SPDIF_CTRL_SWITCH(xname, nid, mask) \
592 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
593 .info = alc_spdif_ctrl_info, \
594 .get = alc_spdif_ctrl_get, \
595 .put = alc_spdif_ctrl_put, \
596 .private_value = nid | (mask<<16) }
597 #endif /* CONFIG_SND_DEBUG */
600 * set up from the preset table
602 static void setup_preset(struct alc_spec *spec,
603 const struct alc_config_preset *preset)
607 for (i = 0; i < ARRAY_SIZE(preset->mixers) && preset->mixers[i]; i++)
608 spec->mixers[spec->num_mixers++] = preset->mixers[i];
609 for (i = 0; i < ARRAY_SIZE(preset->init_verbs) && preset->init_verbs[i];
611 spec->init_verbs[spec->num_init_verbs++] =
612 preset->init_verbs[i];
614 spec->channel_mode = preset->channel_mode;
615 spec->num_channel_mode = preset->num_channel_mode;
616 spec->need_dac_fix = preset->need_dac_fix;
618 spec->multiout.max_channels = spec->channel_mode[0].channels;
620 spec->multiout.num_dacs = preset->num_dacs;
621 spec->multiout.dac_nids = preset->dac_nids;
622 spec->multiout.dig_out_nid = preset->dig_out_nid;
623 spec->multiout.hp_nid = preset->hp_nid;
625 spec->num_mux_defs = preset->num_mux_defs;
626 if (!spec->num_mux_defs)
627 spec->num_mux_defs = 1;
628 spec->input_mux = preset->input_mux;
630 spec->num_adc_nids = preset->num_adc_nids;
631 spec->adc_nids = preset->adc_nids;
632 spec->dig_in_nid = preset->dig_in_nid;
634 spec->unsol_event = preset->unsol_event;
635 spec->init_hook = preset->init_hook;
636 #ifdef CONFIG_SND_HDA_POWER_SAVE
637 spec->loopback.amplist = preset->loopbacks;
641 /* Enable GPIO mask and set output */
642 static struct hda_verb alc_gpio1_init_verbs[] = {
643 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
644 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
645 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
649 static struct hda_verb alc_gpio2_init_verbs[] = {
650 {0x01, AC_VERB_SET_GPIO_MASK, 0x02},
651 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x02},
652 {0x01, AC_VERB_SET_GPIO_DATA, 0x02},
656 static struct hda_verb alc_gpio3_init_verbs[] = {
657 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
658 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
659 {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
663 /* 32-bit subsystem ID for BIOS loading in HD Audio codec.
664 * 31 ~ 16 : Manufacture ID
666 * 7 ~ 0 : Assembly ID
667 * port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
669 static void alc_subsystem_id(struct hda_codec *codec,
670 unsigned int porta, unsigned int porte,
673 unsigned int ass, tmp;
675 ass = codec->subsystem_id;
680 tmp = (ass & 0x38) >> 3; /* external Amp control */
683 snd_hda_sequence_write(codec, alc_gpio1_init_verbs);
686 snd_hda_sequence_write(codec, alc_gpio2_init_verbs);
689 snd_hda_sequence_write(codec, alc_gpio3_init_verbs);
692 switch (codec->vendor_id) {
698 snd_hda_codec_write(codec, 0x14, 0,
699 AC_VERB_SET_EAPD_BTLENABLE, 2);
700 snd_hda_codec_write(codec, 0x15, 0,
701 AC_VERB_SET_EAPD_BTLENABLE, 2);
705 if (ass & 4) { /* bit 2 : 0 = Desktop, 1 = Laptop */
707 tmp = (ass & 0x1800) >> 11;
709 case 0: port = porta; break;
710 case 1: port = porte; break;
711 case 2: port = portd; break;
714 snd_hda_codec_write(codec, port, 0,
715 AC_VERB_SET_EAPD_BTLENABLE,
718 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
719 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PROC_COEF,
720 (tmp == 5 ? 0x3040 : 0x3050));
726 * Fix-up pin default configurations
734 static void alc_fix_pincfg(struct hda_codec *codec,
735 const struct snd_pci_quirk *quirk,
736 const struct alc_pincfg **pinfix)
738 const struct alc_pincfg *cfg;
740 quirk = snd_pci_quirk_lookup(codec->bus->pci, quirk);
744 cfg = pinfix[quirk->value];
745 for (; cfg->nid; cfg++) {
748 for (i = 0; i < 4; i++) {
749 snd_hda_codec_write(codec, cfg->nid, 0,
750 AC_VERB_SET_CONFIG_DEFAULT_BYTES_0 + i,
758 * ALC880 3-stack model
760 * DAC: Front = 0x02 (0x0c), Surr = 0x05 (0x0f), CLFE = 0x04 (0x0e)
761 * Pin assignment: Front = 0x14, Line-In/Surr = 0x1a, Mic/CLFE = 0x18,
762 * F-Mic = 0x1b, HP = 0x19
765 static hda_nid_t alc880_dac_nids[4] = {
766 /* front, rear, clfe, rear_surr */
767 0x02, 0x05, 0x04, 0x03
770 static hda_nid_t alc880_adc_nids[3] = {
775 /* The datasheet says the node 0x07 is connected from inputs,
776 * but it shows zero connection in the real implementation on some devices.
777 * Note: this is a 915GAV bug, fixed on 915GLV
779 static hda_nid_t alc880_adc_nids_alt[2] = {
784 #define ALC880_DIGOUT_NID 0x06
785 #define ALC880_DIGIN_NID 0x0a
787 static struct hda_input_mux alc880_capture_source = {
791 { "Front Mic", 0x3 },
797 /* channel source setting (2/6 channel selection for 3-stack) */
799 static struct hda_verb alc880_threestack_ch2_init[] = {
800 /* set line-in to input, mute it */
801 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
802 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
803 /* set mic-in to input vref 80%, mute it */
804 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
805 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
810 static struct hda_verb alc880_threestack_ch6_init[] = {
811 /* set line-in to output, unmute it */
812 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
813 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
814 /* set mic-in to output, unmute it */
815 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
816 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
820 static struct hda_channel_mode alc880_threestack_modes[2] = {
821 { 2, alc880_threestack_ch2_init },
822 { 6, alc880_threestack_ch6_init },
825 static struct snd_kcontrol_new alc880_three_stack_mixer[] = {
826 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
827 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
828 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
829 HDA_BIND_MUTE("Surround Playback Switch", 0x0f, 2, HDA_INPUT),
830 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
831 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
832 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
833 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
834 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
835 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
836 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
837 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
838 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
839 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
840 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x3, HDA_INPUT),
841 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x3, HDA_INPUT),
842 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
843 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
844 HDA_CODEC_MUTE("Headphone Playback Switch", 0x19, 0x0, HDA_OUTPUT),
846 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
847 .name = "Channel Mode",
848 .info = alc_ch_mode_info,
849 .get = alc_ch_mode_get,
850 .put = alc_ch_mode_put,
855 /* capture mixer elements */
856 static struct snd_kcontrol_new alc880_capture_mixer[] = {
857 HDA_CODEC_VOLUME("Capture Volume", 0x07, 0x0, HDA_INPUT),
858 HDA_CODEC_MUTE("Capture Switch", 0x07, 0x0, HDA_INPUT),
859 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x08, 0x0, HDA_INPUT),
860 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x08, 0x0, HDA_INPUT),
861 HDA_CODEC_VOLUME_IDX("Capture Volume", 2, 0x09, 0x0, HDA_INPUT),
862 HDA_CODEC_MUTE_IDX("Capture Switch", 2, 0x09, 0x0, HDA_INPUT),
864 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
865 /* The multiple "Capture Source" controls confuse alsamixer
866 * So call somewhat different..
867 * FIXME: the controls appear in the "playback" view!
869 /* .name = "Capture Source", */
870 .name = "Input Source",
872 .info = alc_mux_enum_info,
873 .get = alc_mux_enum_get,
874 .put = alc_mux_enum_put,
879 /* capture mixer elements (in case NID 0x07 not available) */
880 static struct snd_kcontrol_new alc880_capture_alt_mixer[] = {
881 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
882 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
883 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
884 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
886 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
887 /* The multiple "Capture Source" controls confuse alsamixer
888 * So call somewhat different..
889 * FIXME: the controls appear in the "playback" view!
891 /* .name = "Capture Source", */
892 .name = "Input Source",
894 .info = alc_mux_enum_info,
895 .get = alc_mux_enum_get,
896 .put = alc_mux_enum_put,
904 * ALC880 5-stack model
906 * DAC: Front = 0x02 (0x0c), Surr = 0x05 (0x0f), CLFE = 0x04 (0x0d),
908 * Pin assignment: Front = 0x14, Surr = 0x17, CLFE = 0x16
909 * Line-In/Side = 0x1a, Mic = 0x18, F-Mic = 0x1b, HP = 0x19
912 /* additional mixers to alc880_three_stack_mixer */
913 static struct snd_kcontrol_new alc880_five_stack_mixer[] = {
914 HDA_CODEC_VOLUME("Side Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
915 HDA_BIND_MUTE("Side Playback Switch", 0x0d, 2, HDA_INPUT),
919 /* channel source setting (6/8 channel selection for 5-stack) */
921 static struct hda_verb alc880_fivestack_ch6_init[] = {
922 /* set line-in to input, mute it */
923 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
924 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
929 static struct hda_verb alc880_fivestack_ch8_init[] = {
930 /* set line-in to output, unmute it */
931 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
932 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
936 static struct hda_channel_mode alc880_fivestack_modes[2] = {
937 { 6, alc880_fivestack_ch6_init },
938 { 8, alc880_fivestack_ch8_init },
943 * ALC880 6-stack model
945 * DAC: Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e),
947 * Pin assignment: Front = 0x14, Surr = 0x15, CLFE = 0x16, Side = 0x17,
948 * Mic = 0x18, F-Mic = 0x19, Line = 0x1a, HP = 0x1b
951 static hda_nid_t alc880_6st_dac_nids[4] = {
952 /* front, rear, clfe, rear_surr */
953 0x02, 0x03, 0x04, 0x05
956 static struct hda_input_mux alc880_6stack_capture_source = {
960 { "Front Mic", 0x1 },
966 /* fixed 8-channels */
967 static struct hda_channel_mode alc880_sixstack_modes[1] = {
971 static struct snd_kcontrol_new alc880_six_stack_mixer[] = {
972 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
973 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
974 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
975 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
976 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
977 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
978 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
979 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
980 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
981 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
982 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
983 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
984 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
985 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
986 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
987 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
988 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
989 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
990 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
991 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
993 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
994 .name = "Channel Mode",
995 .info = alc_ch_mode_info,
996 .get = alc_ch_mode_get,
997 .put = alc_ch_mode_put,
1006 * W810 has rear IO for:
1009 * Center/LFE (DAC 04)
1012 * The system also has a pair of internal speakers, and a headphone jack.
1013 * These are both connected to Line2 on the codec, hence to DAC 02.
1015 * There is a variable resistor to control the speaker or headphone
1016 * volume. This is a hardware-only device without a software API.
1018 * Plugging headphones in will disable the internal speakers. This is
1019 * implemented in hardware, not via the driver using jack sense. In
1020 * a similar fashion, plugging into the rear socket marked "front" will
1021 * disable both the speakers and headphones.
1023 * For input, there's a microphone jack, and an "audio in" jack.
1024 * These may not do anything useful with this driver yet, because I
1025 * haven't setup any initialization verbs for these yet...
1028 static hda_nid_t alc880_w810_dac_nids[3] = {
1029 /* front, rear/surround, clfe */
1033 /* fixed 6 channels */
1034 static struct hda_channel_mode alc880_w810_modes[1] = {
1038 /* Pin assignment: Front = 0x14, Surr = 0x15, CLFE = 0x16, HP = 0x1b */
1039 static struct snd_kcontrol_new alc880_w810_base_mixer[] = {
1040 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1041 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
1042 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1043 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
1044 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
1045 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
1046 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
1047 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
1048 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
1056 * DAC: Front = 0x02 (0x0c), HP = 0x03 (0x0d)
1057 * Pin assignment: Front = 0x14, HP = 0x15, Mic = 0x18, Mic2 = 0x19(?),
1061 static hda_nid_t alc880_z71v_dac_nids[1] = {
1064 #define ALC880_Z71V_HP_DAC 0x03
1066 /* fixed 2 channels */
1067 static struct hda_channel_mode alc880_2_jack_modes[1] = {
1071 static struct snd_kcontrol_new alc880_z71v_mixer[] = {
1072 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1073 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
1074 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1075 HDA_BIND_MUTE("Headphone Playback Switch", 0x0d, 2, HDA_INPUT),
1076 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1077 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1078 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1079 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1086 * ALC880 F1734 model
1088 * DAC: HP = 0x02 (0x0c), Front = 0x03 (0x0d)
1089 * Pin assignment: HP = 0x14, Front = 0x15, Mic = 0x18
1092 static hda_nid_t alc880_f1734_dac_nids[1] = {
1095 #define ALC880_F1734_HP_DAC 0x02
1097 static struct snd_kcontrol_new alc880_f1734_mixer[] = {
1098 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1099 HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT),
1100 HDA_CODEC_VOLUME("Internal Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1101 HDA_BIND_MUTE("Internal Speaker Playback Switch", 0x0d, 2, HDA_INPUT),
1102 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1103 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1104 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1105 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1114 * DAC: HP/Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e)
1115 * Pin assignment: HP/Front = 0x14, Surr = 0x15, CLFE = 0x16,
1116 * Mic = 0x18, Line = 0x1a
1119 #define alc880_asus_dac_nids alc880_w810_dac_nids /* identical with w810 */
1120 #define alc880_asus_modes alc880_threestack_modes /* 2/6 channel mode */
1122 static struct snd_kcontrol_new alc880_asus_mixer[] = {
1123 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1124 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
1125 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1126 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
1127 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
1128 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
1129 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
1130 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
1131 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1132 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1133 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
1134 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
1135 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1136 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1138 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1139 .name = "Channel Mode",
1140 .info = alc_ch_mode_info,
1141 .get = alc_ch_mode_get,
1142 .put = alc_ch_mode_put,
1149 * ALC880 ASUS W1V model
1151 * DAC: HP/Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e)
1152 * Pin assignment: HP/Front = 0x14, Surr = 0x15, CLFE = 0x16,
1153 * Mic = 0x18, Line = 0x1a, Line2 = 0x1b
1156 /* additional mixers to alc880_asus_mixer */
1157 static struct snd_kcontrol_new alc880_asus_w1v_mixer[] = {
1158 HDA_CODEC_VOLUME("Line2 Playback Volume", 0x0b, 0x03, HDA_INPUT),
1159 HDA_CODEC_MUTE("Line2 Playback Switch", 0x0b, 0x03, HDA_INPUT),
1163 /* additional mixers to alc880_asus_mixer */
1164 static struct snd_kcontrol_new alc880_pcbeep_mixer[] = {
1165 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
1166 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
1171 static struct snd_kcontrol_new alc880_tcl_s700_mixer[] = {
1172 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1173 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
1174 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
1175 HDA_CODEC_VOLUME("CD Playback Volume", 0x0B, 0x04, HDA_INPUT),
1176 HDA_CODEC_MUTE("CD Playback Switch", 0x0B, 0x04, HDA_INPUT),
1177 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0B, 0x0, HDA_INPUT),
1178 HDA_CODEC_MUTE("Mic Playback Switch", 0x0B, 0x0, HDA_INPUT),
1179 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
1180 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
1182 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1183 /* The multiple "Capture Source" controls confuse alsamixer
1184 * So call somewhat different..
1185 * FIXME: the controls appear in the "playback" view!
1187 /* .name = "Capture Source", */
1188 .name = "Input Source",
1190 .info = alc_mux_enum_info,
1191 .get = alc_mux_enum_get,
1192 .put = alc_mux_enum_put,
1198 static struct snd_kcontrol_new alc880_uniwill_mixer[] = {
1199 HDA_CODEC_VOLUME("HPhone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1200 HDA_BIND_MUTE("HPhone Playback Switch", 0x0c, 2, HDA_INPUT),
1201 HDA_CODEC_VOLUME("iSpeaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1202 HDA_BIND_MUTE("iSpeaker Playback Switch", 0x0d, 2, HDA_INPUT),
1203 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
1204 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
1205 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
1206 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
1207 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1208 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1209 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
1210 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
1211 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1212 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1213 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
1214 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
1215 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
1216 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
1218 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1219 .name = "Channel Mode",
1220 .info = alc_ch_mode_info,
1221 .get = alc_ch_mode_get,
1222 .put = alc_ch_mode_put,
1227 static struct snd_kcontrol_new alc880_fujitsu_mixer[] = {
1228 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1229 HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT),
1230 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1231 HDA_BIND_MUTE("Speaker Playback Switch", 0x0d, 2, HDA_INPUT),
1232 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1233 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1234 HDA_CODEC_VOLUME("Ext Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1235 HDA_CODEC_MUTE("Ext Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1236 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
1237 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
1241 static struct snd_kcontrol_new alc880_uniwill_p53_mixer[] = {
1242 HDA_CODEC_VOLUME("HPhone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1243 HDA_BIND_MUTE("HPhone Playback Switch", 0x0c, 2, HDA_INPUT),
1244 HDA_CODEC_VOLUME("iSpeaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1245 HDA_BIND_MUTE("iSpeaker Playback Switch", 0x0d, 2, HDA_INPUT),
1246 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1247 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1252 * build control elements
1254 static int alc_build_controls(struct hda_codec *codec)
1256 struct alc_spec *spec = codec->spec;
1260 for (i = 0; i < spec->num_mixers; i++) {
1261 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
1266 if (spec->multiout.dig_out_nid) {
1267 err = snd_hda_create_spdif_out_ctls(codec,
1268 spec->multiout.dig_out_nid);
1272 if (spec->dig_in_nid) {
1273 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
1282 * initialize the codec volumes, etc
1286 * generic initialization of ADC, input mixers and output mixers
1288 static struct hda_verb alc880_volume_init_verbs[] = {
1290 * Unmute ADC0-2 and set the default input to mic-in
1292 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
1293 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1294 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
1295 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1296 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
1297 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1299 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
1301 * Note: PASD motherboards uses the Line In 2 as the input for front
1304 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
1305 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1306 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1307 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
1308 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
1309 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
1310 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)},
1311 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)},
1314 * Set up output mixers (0x0c - 0x0f)
1316 /* set vol=0 to output mixers */
1317 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1318 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1319 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1320 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1321 /* set up input amps for analog loopback */
1322 /* Amp Indices: DAC = 0, mixer = 1 */
1323 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1324 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1325 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1326 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1327 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1328 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1329 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1330 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1336 * 3-stack pin configuration:
1337 * front = 0x14, mic/clfe = 0x18, HP = 0x19, line/surr = 0x1a, f-mic = 0x1b
1339 static struct hda_verb alc880_pin_3stack_init_verbs[] = {
1341 * preset connection lists of input pins
1342 * 0 = front, 1 = rear_surr, 2 = CLFE, 3 = surround
1344 {0x10, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
1345 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1346 {0x12, AC_VERB_SET_CONNECT_SEL, 0x03}, /* line/surround */
1349 * Set pin mode and muting
1351 /* set front pin widgets 0x14 for output */
1352 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1353 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1354 /* Mic1 (rear panel) pin widget for input and vref at 80% */
1355 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1356 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1357 /* Mic2 (as headphone out) for HP output */
1358 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1359 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1360 /* Line In pin widget for input */
1361 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1362 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1363 /* Line2 (as front mic) pin widget for input and vref at 80% */
1364 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1365 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1366 /* CD pin widget for input */
1367 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1373 * 5-stack pin configuration:
1374 * front = 0x14, surround = 0x17, clfe = 0x16, mic = 0x18, HP = 0x19,
1375 * line-in/side = 0x1a, f-mic = 0x1b
1377 static struct hda_verb alc880_pin_5stack_init_verbs[] = {
1379 * preset connection lists of input pins
1380 * 0 = front, 1 = rear_surr, 2 = CLFE, 3 = surround
1382 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1383 {0x12, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/side */
1386 * Set pin mode and muting
1388 /* set pin widgets 0x14-0x17 for output */
1389 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1390 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1391 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1392 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1393 /* unmute pins for output (no gain on this amp) */
1394 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1395 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1396 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1397 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1399 /* Mic1 (rear panel) pin widget for input and vref at 80% */
1400 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1401 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1402 /* Mic2 (as headphone out) for HP output */
1403 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1404 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1405 /* Line In pin widget for input */
1406 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1407 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1408 /* Line2 (as front mic) pin widget for input and vref at 80% */
1409 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1410 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1411 /* CD pin widget for input */
1412 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1418 * W810 pin configuration:
1419 * front = 0x14, surround = 0x15, clfe = 0x16, HP = 0x1b
1421 static struct hda_verb alc880_pin_w810_init_verbs[] = {
1422 /* hphone/speaker input selector: front DAC */
1423 {0x13, AC_VERB_SET_CONNECT_SEL, 0x0},
1425 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1426 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1427 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1428 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1429 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1430 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1432 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1433 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1439 * Z71V pin configuration:
1440 * Speaker-out = 0x14, HP = 0x15, Mic = 0x18, Line-in = 0x1a, Mic2 = 0x1b (?)
1442 static struct hda_verb alc880_pin_z71v_init_verbs[] = {
1443 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1444 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1445 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1446 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1448 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1449 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1450 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1451 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1457 * 6-stack pin configuration:
1458 * front = 0x14, surr = 0x15, clfe = 0x16, side = 0x17, mic = 0x18,
1459 * f-mic = 0x19, line = 0x1a, HP = 0x1b
1461 static struct hda_verb alc880_pin_6stack_init_verbs[] = {
1462 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1464 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1465 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1466 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1467 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1468 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1469 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1470 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1471 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1473 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1474 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1475 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1476 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1477 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1478 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1479 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1480 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1481 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1487 * Uniwill pin configuration:
1488 * HP = 0x14, InternalSpeaker = 0x15, mic = 0x18, internal mic = 0x19,
1491 static struct hda_verb alc880_uniwill_init_verbs[] = {
1492 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1494 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1495 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1496 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1497 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1498 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1499 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1500 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1501 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1502 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1503 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1504 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1505 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1506 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1507 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1509 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1510 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1511 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1512 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1513 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1514 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1515 /* {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP}, */
1516 /* {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, */
1517 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1519 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
1520 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_MIC_EVENT},
1527 * HP = 0x14, InternalSpeaker = 0x15, mic = 0x19,
1529 static struct hda_verb alc880_uniwill_p53_init_verbs[] = {
1530 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1532 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1533 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1534 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1535 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1536 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1537 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1538 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1539 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1540 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1541 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1542 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1543 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1545 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1546 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1547 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1548 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1549 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1550 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1552 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
1553 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_DCVOL_EVENT},
1558 static struct hda_verb alc880_beep_init_verbs[] = {
1559 { 0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(5) },
1563 /* toggle speaker-output according to the hp-jack state */
1564 static void alc880_uniwill_hp_automute(struct hda_codec *codec)
1566 unsigned int present;
1569 present = snd_hda_codec_read(codec, 0x14, 0,
1570 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1571 bits = present ? HDA_AMP_MUTE : 0;
1572 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
1573 HDA_AMP_MUTE, bits);
1574 snd_hda_codec_amp_stereo(codec, 0x16, HDA_OUTPUT, 0,
1575 HDA_AMP_MUTE, bits);
1578 /* auto-toggle front mic */
1579 static void alc880_uniwill_mic_automute(struct hda_codec *codec)
1581 unsigned int present;
1584 present = snd_hda_codec_read(codec, 0x18, 0,
1585 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1586 bits = present ? HDA_AMP_MUTE : 0;
1587 snd_hda_codec_amp_stereo(codec, 0x0b, HDA_INPUT, 1, HDA_AMP_MUTE, bits);
1590 static void alc880_uniwill_automute(struct hda_codec *codec)
1592 alc880_uniwill_hp_automute(codec);
1593 alc880_uniwill_mic_automute(codec);
1596 static void alc880_uniwill_unsol_event(struct hda_codec *codec,
1599 /* Looks like the unsol event is incompatible with the standard
1600 * definition. 4bit tag is placed at 28 bit!
1602 switch (res >> 28) {
1603 case ALC880_HP_EVENT:
1604 alc880_uniwill_hp_automute(codec);
1606 case ALC880_MIC_EVENT:
1607 alc880_uniwill_mic_automute(codec);
1612 static void alc880_uniwill_p53_hp_automute(struct hda_codec *codec)
1614 unsigned int present;
1617 present = snd_hda_codec_read(codec, 0x14, 0,
1618 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1619 bits = present ? HDA_AMP_MUTE : 0;
1620 snd_hda_codec_amp_stereo(codec, 0x15, HDA_INPUT, 0, HDA_AMP_MUTE, bits);
1623 static void alc880_uniwill_p53_dcvol_automute(struct hda_codec *codec)
1625 unsigned int present;
1627 present = snd_hda_codec_read(codec, 0x21, 0,
1628 AC_VERB_GET_VOLUME_KNOB_CONTROL, 0);
1629 present &= HDA_AMP_VOLMASK;
1630 snd_hda_codec_amp_stereo(codec, 0x0c, HDA_OUTPUT, 0,
1631 HDA_AMP_VOLMASK, present);
1632 snd_hda_codec_amp_stereo(codec, 0x0d, HDA_OUTPUT, 0,
1633 HDA_AMP_VOLMASK, present);
1636 static void alc880_uniwill_p53_unsol_event(struct hda_codec *codec,
1639 /* Looks like the unsol event is incompatible with the standard
1640 * definition. 4bit tag is placed at 28 bit!
1642 if ((res >> 28) == ALC880_HP_EVENT)
1643 alc880_uniwill_p53_hp_automute(codec);
1644 if ((res >> 28) == ALC880_DCVOL_EVENT)
1645 alc880_uniwill_p53_dcvol_automute(codec);
1650 * F1734 pin configuration:
1651 * HP = 0x14, speaker-out = 0x15, mic = 0x18
1653 static struct hda_verb alc880_pin_f1734_init_verbs[] = {
1654 {0x10, AC_VERB_SET_CONNECT_SEL, 0x02},
1655 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00},
1656 {0x12, AC_VERB_SET_CONNECT_SEL, 0x01},
1657 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00},
1659 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1660 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1661 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1662 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1664 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1665 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1666 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1667 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1668 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1669 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1670 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1671 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1672 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1679 * ASUS pin configuration:
1680 * HP/front = 0x14, surr = 0x15, clfe = 0x16, mic = 0x18, line = 0x1a
1682 static struct hda_verb alc880_pin_asus_init_verbs[] = {
1683 {0x10, AC_VERB_SET_CONNECT_SEL, 0x02},
1684 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00},
1685 {0x12, AC_VERB_SET_CONNECT_SEL, 0x01},
1686 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00},
1688 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1689 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1690 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1691 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1692 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1693 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1694 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1695 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1697 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1698 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1699 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1700 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1701 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1702 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1703 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1704 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1705 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1710 /* Enable GPIO mask and set output */
1711 #define alc880_gpio1_init_verbs alc_gpio1_init_verbs
1712 #define alc880_gpio2_init_verbs alc_gpio2_init_verbs
1714 /* Clevo m520g init */
1715 static struct hda_verb alc880_pin_clevo_init_verbs[] = {
1716 /* headphone output */
1717 {0x11, AC_VERB_SET_CONNECT_SEL, 0x01},
1719 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1720 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1722 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1723 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1725 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1726 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1727 /* Mic1 (rear panel) */
1728 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1729 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1730 /* Mic2 (front panel) */
1731 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1732 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1734 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1735 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1736 /* change to EAPD mode */
1737 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
1738 {0x20, AC_VERB_SET_PROC_COEF, 0x3060},
1743 static struct hda_verb alc880_pin_tcl_S700_init_verbs[] = {
1744 /* change to EAPD mode */
1745 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
1746 {0x20, AC_VERB_SET_PROC_COEF, 0x3060},
1748 /* Headphone output */
1749 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1751 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1752 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
1754 /* Line In pin widget for input */
1755 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1756 /* CD pin widget for input */
1757 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1758 /* Mic1 (rear panel) pin widget for input and vref at 80% */
1759 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1761 /* change to EAPD mode */
1762 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
1763 {0x20, AC_VERB_SET_PROC_COEF, 0x3070},
1769 * LG m1 express dual
1772 * Rear Line-In/Out (blue): 0x14
1773 * Build-in Mic-In: 0x15
1775 * HP-Out (green): 0x1b
1776 * Mic-In/Out (red): 0x19
1780 /* To make 5.1 output working (green=Front, blue=Surr, red=CLFE) */
1781 static hda_nid_t alc880_lg_dac_nids[3] = {
1785 /* seems analog CD is not working */
1786 static struct hda_input_mux alc880_lg_capture_source = {
1791 { "Internal Mic", 0x6 },
1795 /* 2,4,6 channel modes */
1796 static struct hda_verb alc880_lg_ch2_init[] = {
1797 /* set line-in and mic-in to input */
1798 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
1799 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
1803 static struct hda_verb alc880_lg_ch4_init[] = {
1804 /* set line-in to out and mic-in to input */
1805 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1806 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
1810 static struct hda_verb alc880_lg_ch6_init[] = {
1811 /* set line-in and mic-in to output */
1812 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1813 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1817 static struct hda_channel_mode alc880_lg_ch_modes[3] = {
1818 { 2, alc880_lg_ch2_init },
1819 { 4, alc880_lg_ch4_init },
1820 { 6, alc880_lg_ch6_init },
1823 static struct snd_kcontrol_new alc880_lg_mixer[] = {
1824 /* FIXME: it's not really "master" but front channels */
1825 HDA_CODEC_VOLUME("Master Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
1826 HDA_BIND_MUTE("Master Playback Switch", 0x0f, 2, HDA_INPUT),
1827 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1828 HDA_BIND_MUTE("Surround Playback Switch", 0x0c, 2, HDA_INPUT),
1829 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0d, 1, 0x0, HDA_OUTPUT),
1830 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0d, 2, 0x0, HDA_OUTPUT),
1831 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0d, 1, 2, HDA_INPUT),
1832 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0d, 2, 2, HDA_INPUT),
1833 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
1834 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
1835 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x06, HDA_INPUT),
1836 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x06, HDA_INPUT),
1837 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x07, HDA_INPUT),
1838 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x07, HDA_INPUT),
1840 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1841 .name = "Channel Mode",
1842 .info = alc_ch_mode_info,
1843 .get = alc_ch_mode_get,
1844 .put = alc_ch_mode_put,
1849 static struct hda_verb alc880_lg_init_verbs[] = {
1850 /* set capture source to mic-in */
1851 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1852 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1853 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1854 /* mute all amp mixer inputs */
1855 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(5)},
1856 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)},
1857 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)},
1858 /* line-in to input */
1859 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1860 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1862 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1863 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1865 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1866 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1867 /* mic-in to input */
1868 {0x11, AC_VERB_SET_CONNECT_SEL, 0x01},
1869 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1870 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1872 {0x13, AC_VERB_SET_CONNECT_SEL, 0x03},
1873 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1874 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1876 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | 0x1},
1880 /* toggle speaker-output according to the hp-jack state */
1881 static void alc880_lg_automute(struct hda_codec *codec)
1883 unsigned int present;
1886 present = snd_hda_codec_read(codec, 0x1b, 0,
1887 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1888 bits = present ? HDA_AMP_MUTE : 0;
1889 snd_hda_codec_amp_stereo(codec, 0x17, HDA_OUTPUT, 0,
1890 HDA_AMP_MUTE, bits);
1893 static void alc880_lg_unsol_event(struct hda_codec *codec, unsigned int res)
1895 /* Looks like the unsol event is incompatible with the standard
1896 * definition. 4bit tag is placed at 28 bit!
1898 if ((res >> 28) == 0x01)
1899 alc880_lg_automute(codec);
1908 * Built-in Mic-In: 0x19
1914 static struct hda_input_mux alc880_lg_lw_capture_source = {
1918 { "Internal Mic", 0x1 },
1923 #define alc880_lg_lw_modes alc880_threestack_modes
1925 static struct snd_kcontrol_new alc880_lg_lw_mixer[] = {
1926 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1927 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
1928 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
1929 HDA_BIND_MUTE("Surround Playback Switch", 0x0f, 2, HDA_INPUT),
1930 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
1931 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
1932 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
1933 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
1934 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
1935 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
1936 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1937 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1938 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
1939 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
1941 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1942 .name = "Channel Mode",
1943 .info = alc_ch_mode_info,
1944 .get = alc_ch_mode_get,
1945 .put = alc_ch_mode_put,
1950 static struct hda_verb alc880_lg_lw_init_verbs[] = {
1951 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1952 {0x10, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
1953 {0x12, AC_VERB_SET_CONNECT_SEL, 0x03}, /* line/surround */
1955 /* set capture source to mic-in */
1956 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1957 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1958 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1959 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)},
1961 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1962 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1964 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1965 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1966 /* mic-in to input */
1967 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1968 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1970 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1971 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1973 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | 0x1},
1977 /* toggle speaker-output according to the hp-jack state */
1978 static void alc880_lg_lw_automute(struct hda_codec *codec)
1980 unsigned int present;
1983 present = snd_hda_codec_read(codec, 0x1b, 0,
1984 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1985 bits = present ? HDA_AMP_MUTE : 0;
1986 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
1987 HDA_AMP_MUTE, bits);
1990 static void alc880_lg_lw_unsol_event(struct hda_codec *codec, unsigned int res)
1992 /* Looks like the unsol event is incompatible with the standard
1993 * definition. 4bit tag is placed at 28 bit!
1995 if ((res >> 28) == 0x01)
1996 alc880_lg_lw_automute(codec);
1999 #ifdef CONFIG_SND_HDA_POWER_SAVE
2000 static struct hda_amp_list alc880_loopbacks[] = {
2001 { 0x0b, HDA_INPUT, 0 },
2002 { 0x0b, HDA_INPUT, 1 },
2003 { 0x0b, HDA_INPUT, 2 },
2004 { 0x0b, HDA_INPUT, 3 },
2005 { 0x0b, HDA_INPUT, 4 },
2009 static struct hda_amp_list alc880_lg_loopbacks[] = {
2010 { 0x0b, HDA_INPUT, 1 },
2011 { 0x0b, HDA_INPUT, 6 },
2012 { 0x0b, HDA_INPUT, 7 },
2021 static int alc_init(struct hda_codec *codec)
2023 struct alc_spec *spec = codec->spec;
2026 for (i = 0; i < spec->num_init_verbs; i++)
2027 snd_hda_sequence_write(codec, spec->init_verbs[i]);
2029 if (spec->init_hook)
2030 spec->init_hook(codec);
2035 static void alc_unsol_event(struct hda_codec *codec, unsigned int res)
2037 struct alc_spec *spec = codec->spec;
2039 if (spec->unsol_event)
2040 spec->unsol_event(codec, res);
2043 #ifdef CONFIG_SND_HDA_POWER_SAVE
2044 static int alc_check_power_status(struct hda_codec *codec, hda_nid_t nid)
2046 struct alc_spec *spec = codec->spec;
2047 return snd_hda_check_amp_list_power(codec, &spec->loopback, nid);
2052 * Analog playback callbacks
2054 static int alc880_playback_pcm_open(struct hda_pcm_stream *hinfo,
2055 struct hda_codec *codec,
2056 struct snd_pcm_substream *substream)
2058 struct alc_spec *spec = codec->spec;
2059 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream);
2062 static int alc880_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2063 struct hda_codec *codec,
2064 unsigned int stream_tag,
2065 unsigned int format,
2066 struct snd_pcm_substream *substream)
2068 struct alc_spec *spec = codec->spec;
2069 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
2070 stream_tag, format, substream);
2073 static int alc880_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2074 struct hda_codec *codec,
2075 struct snd_pcm_substream *substream)
2077 struct alc_spec *spec = codec->spec;
2078 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
2084 static int alc880_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
2085 struct hda_codec *codec,
2086 struct snd_pcm_substream *substream)
2088 struct alc_spec *spec = codec->spec;
2089 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
2092 static int alc880_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2093 struct hda_codec *codec,
2094 unsigned int stream_tag,
2095 unsigned int format,
2096 struct snd_pcm_substream *substream)
2098 struct alc_spec *spec = codec->spec;
2099 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
2100 stream_tag, format, substream);
2103 static int alc880_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
2104 struct hda_codec *codec,
2105 struct snd_pcm_substream *substream)
2107 struct alc_spec *spec = codec->spec;
2108 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
2114 static int alc880_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
2115 struct hda_codec *codec,
2116 unsigned int stream_tag,
2117 unsigned int format,
2118 struct snd_pcm_substream *substream)
2120 struct alc_spec *spec = codec->spec;
2122 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
2123 stream_tag, 0, format);
2127 static int alc880_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
2128 struct hda_codec *codec,
2129 struct snd_pcm_substream *substream)
2131 struct alc_spec *spec = codec->spec;
2133 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
2141 static struct hda_pcm_stream alc880_pcm_analog_playback = {
2145 /* NID is set in alc_build_pcms */
2147 .open = alc880_playback_pcm_open,
2148 .prepare = alc880_playback_pcm_prepare,
2149 .cleanup = alc880_playback_pcm_cleanup
2153 static struct hda_pcm_stream alc880_pcm_analog_capture = {
2157 /* NID is set in alc_build_pcms */
2159 .prepare = alc880_capture_pcm_prepare,
2160 .cleanup = alc880_capture_pcm_cleanup
2164 static struct hda_pcm_stream alc880_pcm_digital_playback = {
2168 /* NID is set in alc_build_pcms */
2170 .open = alc880_dig_playback_pcm_open,
2171 .close = alc880_dig_playback_pcm_close,
2172 .prepare = alc880_dig_playback_pcm_prepare
2176 static struct hda_pcm_stream alc880_pcm_digital_capture = {
2180 /* NID is set in alc_build_pcms */
2183 /* Used by alc_build_pcms to flag that a PCM has no playback stream */
2184 static struct hda_pcm_stream alc_pcm_null_playback = {
2190 static int alc_build_pcms(struct hda_codec *codec)
2192 struct alc_spec *spec = codec->spec;
2193 struct hda_pcm *info = spec->pcm_rec;
2196 codec->num_pcms = 1;
2197 codec->pcm_info = info;
2199 info->name = spec->stream_name_analog;
2200 if (spec->stream_analog_playback) {
2201 snd_assert(spec->multiout.dac_nids, return -EINVAL);
2202 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *(spec->stream_analog_playback);
2203 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dac_nids[0];
2205 if (spec->stream_analog_capture) {
2206 snd_assert(spec->adc_nids, return -EINVAL);
2207 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_analog_capture);
2208 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
2211 if (spec->channel_mode) {
2212 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = 0;
2213 for (i = 0; i < spec->num_channel_mode; i++) {
2214 if (spec->channel_mode[i].channels > info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max) {
2215 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = spec->channel_mode[i].channels;
2220 /* SPDIF for stream index #1 */
2221 if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
2222 codec->num_pcms = 2;
2223 info = spec->pcm_rec + 1;
2224 info->name = spec->stream_name_digital;
2225 if (spec->multiout.dig_out_nid &&
2226 spec->stream_digital_playback) {
2227 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *(spec->stream_digital_playback);
2228 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
2230 if (spec->dig_in_nid &&
2231 spec->stream_digital_capture) {
2232 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_digital_capture);
2233 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
2237 /* If the use of more than one ADC is requested for the current
2238 * model, configure a second analog capture-only PCM.
2240 /* Additional Analaog capture for index #2 */
2241 if (spec->num_adc_nids > 1 && spec->stream_analog_capture &&
2243 codec->num_pcms = 3;
2244 info = spec->pcm_rec + 2;
2245 info->name = spec->stream_name_analog;
2246 /* No playback stream for second PCM */
2247 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = alc_pcm_null_playback;
2248 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = 0;
2249 if (spec->stream_analog_capture) {
2250 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_analog_capture);
2251 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[1];
2258 static void alc_free(struct hda_codec *codec)
2260 struct alc_spec *spec = codec->spec;
2266 if (spec->kctl_alloc) {
2267 for (i = 0; i < spec->num_kctl_used; i++)
2268 kfree(spec->kctl_alloc[i].name);
2269 kfree(spec->kctl_alloc);
2276 static struct hda_codec_ops alc_patch_ops = {
2277 .build_controls = alc_build_controls,
2278 .build_pcms = alc_build_pcms,
2281 .unsol_event = alc_unsol_event,
2282 #ifdef CONFIG_SND_HDA_POWER_SAVE
2283 .check_power_status = alc_check_power_status,
2289 * Test configuration for debugging
2291 * Almost all inputs/outputs are enabled. I/O pins can be configured via
2294 #ifdef CONFIG_SND_DEBUG
2295 static hda_nid_t alc880_test_dac_nids[4] = {
2296 0x02, 0x03, 0x04, 0x05
2299 static struct hda_input_mux alc880_test_capture_source = {
2308 { "Surround", 0x6 },
2312 static struct hda_channel_mode alc880_test_modes[4] = {
2319 static int alc_test_pin_ctl_info(struct snd_kcontrol *kcontrol,
2320 struct snd_ctl_elem_info *uinfo)
2322 static char *texts[] = {
2323 "N/A", "Line Out", "HP Out",
2324 "In Hi-Z", "In 50%", "In Grd", "In 80%", "In 100%"
2326 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2328 uinfo->value.enumerated.items = 8;
2329 if (uinfo->value.enumerated.item >= 8)
2330 uinfo->value.enumerated.item = 7;
2331 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
2335 static int alc_test_pin_ctl_get(struct snd_kcontrol *kcontrol,
2336 struct snd_ctl_elem_value *ucontrol)
2338 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2339 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2340 unsigned int pin_ctl, item = 0;
2342 pin_ctl = snd_hda_codec_read(codec, nid, 0,
2343 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
2344 if (pin_ctl & AC_PINCTL_OUT_EN) {
2345 if (pin_ctl & AC_PINCTL_HP_EN)
2349 } else if (pin_ctl & AC_PINCTL_IN_EN) {
2350 switch (pin_ctl & AC_PINCTL_VREFEN) {
2351 case AC_PINCTL_VREF_HIZ: item = 3; break;
2352 case AC_PINCTL_VREF_50: item = 4; break;
2353 case AC_PINCTL_VREF_GRD: item = 5; break;
2354 case AC_PINCTL_VREF_80: item = 6; break;
2355 case AC_PINCTL_VREF_100: item = 7; break;
2358 ucontrol->value.enumerated.item[0] = item;
2362 static int alc_test_pin_ctl_put(struct snd_kcontrol *kcontrol,
2363 struct snd_ctl_elem_value *ucontrol)
2365 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2366 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2367 static unsigned int ctls[] = {
2368 0, AC_PINCTL_OUT_EN, AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN,
2369 AC_PINCTL_IN_EN | AC_PINCTL_VREF_HIZ,
2370 AC_PINCTL_IN_EN | AC_PINCTL_VREF_50,
2371 AC_PINCTL_IN_EN | AC_PINCTL_VREF_GRD,
2372 AC_PINCTL_IN_EN | AC_PINCTL_VREF_80,
2373 AC_PINCTL_IN_EN | AC_PINCTL_VREF_100,
2375 unsigned int old_ctl, new_ctl;
2377 old_ctl = snd_hda_codec_read(codec, nid, 0,
2378 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
2379 new_ctl = ctls[ucontrol->value.enumerated.item[0]];
2380 if (old_ctl != new_ctl) {
2382 snd_hda_codec_write_cache(codec, nid, 0,
2383 AC_VERB_SET_PIN_WIDGET_CONTROL,
2385 val = ucontrol->value.enumerated.item[0] >= 3 ?
2387 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
2394 static int alc_test_pin_src_info(struct snd_kcontrol *kcontrol,
2395 struct snd_ctl_elem_info *uinfo)
2397 static char *texts[] = {
2398 "Front", "Surround", "CLFE", "Side"
2400 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2402 uinfo->value.enumerated.items = 4;
2403 if (uinfo->value.enumerated.item >= 4)
2404 uinfo->value.enumerated.item = 3;
2405 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
2409 static int alc_test_pin_src_get(struct snd_kcontrol *kcontrol,
2410 struct snd_ctl_elem_value *ucontrol)
2412 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2413 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2416 sel = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONNECT_SEL, 0);
2417 ucontrol->value.enumerated.item[0] = sel & 3;
2421 static int alc_test_pin_src_put(struct snd_kcontrol *kcontrol,
2422 struct snd_ctl_elem_value *ucontrol)
2424 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2425 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2428 sel = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONNECT_SEL, 0) & 3;
2429 if (ucontrol->value.enumerated.item[0] != sel) {
2430 sel = ucontrol->value.enumerated.item[0] & 3;
2431 snd_hda_codec_write_cache(codec, nid, 0,
2432 AC_VERB_SET_CONNECT_SEL, sel);
2438 #define PIN_CTL_TEST(xname,nid) { \
2439 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2441 .info = alc_test_pin_ctl_info, \
2442 .get = alc_test_pin_ctl_get, \
2443 .put = alc_test_pin_ctl_put, \
2444 .private_value = nid \
2447 #define PIN_SRC_TEST(xname,nid) { \
2448 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2450 .info = alc_test_pin_src_info, \
2451 .get = alc_test_pin_src_get, \
2452 .put = alc_test_pin_src_put, \
2453 .private_value = nid \
2456 static struct snd_kcontrol_new alc880_test_mixer[] = {
2457 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
2458 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
2459 HDA_CODEC_VOLUME("CLFE Playback Volume", 0x0e, 0x0, HDA_OUTPUT),
2460 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
2461 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
2462 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
2463 HDA_BIND_MUTE("CLFE Playback Switch", 0x0e, 2, HDA_INPUT),
2464 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
2465 PIN_CTL_TEST("Front Pin Mode", 0x14),
2466 PIN_CTL_TEST("Surround Pin Mode", 0x15),
2467 PIN_CTL_TEST("CLFE Pin Mode", 0x16),
2468 PIN_CTL_TEST("Side Pin Mode", 0x17),
2469 PIN_CTL_TEST("In-1 Pin Mode", 0x18),
2470 PIN_CTL_TEST("In-2 Pin Mode", 0x19),
2471 PIN_CTL_TEST("In-3 Pin Mode", 0x1a),
2472 PIN_CTL_TEST("In-4 Pin Mode", 0x1b),
2473 PIN_SRC_TEST("In-1 Pin Source", 0x18),
2474 PIN_SRC_TEST("In-2 Pin Source", 0x19),
2475 PIN_SRC_TEST("In-3 Pin Source", 0x1a),
2476 PIN_SRC_TEST("In-4 Pin Source", 0x1b),
2477 HDA_CODEC_VOLUME("In-1 Playback Volume", 0x0b, 0x0, HDA_INPUT),
2478 HDA_CODEC_MUTE("In-1 Playback Switch", 0x0b, 0x0, HDA_INPUT),
2479 HDA_CODEC_VOLUME("In-2 Playback Volume", 0x0b, 0x1, HDA_INPUT),
2480 HDA_CODEC_MUTE("In-2 Playback Switch", 0x0b, 0x1, HDA_INPUT),
2481 HDA_CODEC_VOLUME("In-3 Playback Volume", 0x0b, 0x2, HDA_INPUT),
2482 HDA_CODEC_MUTE("In-3 Playback Switch", 0x0b, 0x2, HDA_INPUT),
2483 HDA_CODEC_VOLUME("In-4 Playback Volume", 0x0b, 0x3, HDA_INPUT),
2484 HDA_CODEC_MUTE("In-4 Playback Switch", 0x0b, 0x3, HDA_INPUT),
2485 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x4, HDA_INPUT),
2486 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x4, HDA_INPUT),
2488 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2489 .name = "Channel Mode",
2490 .info = alc_ch_mode_info,
2491 .get = alc_ch_mode_get,
2492 .put = alc_ch_mode_put,
2497 static struct hda_verb alc880_test_init_verbs[] = {
2498 /* Unmute inputs of 0x0c - 0x0f */
2499 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2500 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2501 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2502 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2503 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2504 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2505 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2506 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2507 /* Vol output for 0x0c-0x0f */
2508 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2509 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2510 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2511 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2512 /* Set output pins 0x14-0x17 */
2513 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2514 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2515 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2516 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2517 /* Unmute output pins 0x14-0x17 */
2518 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2519 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2520 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2521 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2522 /* Set input pins 0x18-0x1c */
2523 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2524 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2525 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2526 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2527 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2528 /* Mute input pins 0x18-0x1b */
2529 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2530 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2531 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2532 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2534 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2535 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
2536 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2537 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
2538 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2539 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
2540 /* Analog input/passthru */
2541 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2542 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2543 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2544 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2545 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
2553 static const char *alc880_models[ALC880_MODEL_LAST] = {
2554 [ALC880_3ST] = "3stack",
2555 [ALC880_TCL_S700] = "tcl",
2556 [ALC880_3ST_DIG] = "3stack-digout",
2557 [ALC880_CLEVO] = "clevo",
2558 [ALC880_5ST] = "5stack",
2559 [ALC880_5ST_DIG] = "5stack-digout",
2560 [ALC880_W810] = "w810",
2561 [ALC880_Z71V] = "z71v",
2562 [ALC880_6ST] = "6stack",
2563 [ALC880_6ST_DIG] = "6stack-digout",
2564 [ALC880_ASUS] = "asus",
2565 [ALC880_ASUS_W1V] = "asus-w1v",
2566 [ALC880_ASUS_DIG] = "asus-dig",
2567 [ALC880_ASUS_DIG2] = "asus-dig2",
2568 [ALC880_UNIWILL_DIG] = "uniwill",
2569 [ALC880_UNIWILL_P53] = "uniwill-p53",
2570 [ALC880_FUJITSU] = "fujitsu",
2571 [ALC880_F1734] = "F1734",
2573 [ALC880_LG_LW] = "lg-lw",
2574 #ifdef CONFIG_SND_DEBUG
2575 [ALC880_TEST] = "test",
2577 [ALC880_AUTO] = "auto",
2580 static struct snd_pci_quirk alc880_cfg_tbl[] = {
2581 /* Broken BIOS configuration */
2582 SND_PCI_QUIRK(0x2668, 0x8086, NULL, ALC880_6ST_DIG),
2583 SND_PCI_QUIRK(0x8086, 0x2668, NULL, ALC880_6ST_DIG),
2585 SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_5ST_DIG),
2586 SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_6ST),
2587 SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_W810),
2588 SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_3ST_DIG),
2589 SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_6ST_DIG),
2590 SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_6ST_DIG),
2591 SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_6ST_DIG),
2592 SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_3ST_DIG),
2593 SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_3ST),
2595 SND_PCI_QUIRK(0x1039, 0x1234, NULL, ALC880_6ST_DIG),
2596 SND_PCI_QUIRK(0x103c, 0x2a09, "HP", ALC880_5ST),
2598 SND_PCI_QUIRK(0x1043, 0x10b3, "ASUS W1V", ALC880_ASUS_W1V),
2599 SND_PCI_QUIRK(0x1043, 0x10c2, "ASUS W6A", ALC880_ASUS_DIG),
2600 SND_PCI_QUIRK(0x1043, 0x10c3, "ASUS Wxx", ALC880_ASUS_DIG),
2601 SND_PCI_QUIRK(0x1043, 0x1113, "ASUS", ALC880_ASUS_DIG),
2602 SND_PCI_QUIRK(0x1043, 0x1123, "ASUS", ALC880_ASUS_DIG),
2603 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS", ALC880_ASUS_DIG),
2604 SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_Z71V),
2605 /* SND_PCI_QUIRK(0x1043, 0x1964, "ASUS", ALC880_ASUS_DIG), */
2606 SND_PCI_QUIRK(0x1043, 0x1973, "ASUS", ALC880_ASUS_DIG),
2607 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS", ALC880_ASUS_DIG),
2608 SND_PCI_QUIRK(0x1043, 0x814e, "ASUS", ALC880_ASUS),
2609 SND_PCI_QUIRK(0x1043, 0x8181, "ASUS P4GPL", ALC880_ASUS_DIG),
2610 SND_PCI_QUIRK(0x1043, 0x8196, "ASUS P5GD1", ALC880_6ST),
2611 SND_PCI_QUIRK(0x1043, 0x81b4, "ASUS", ALC880_6ST),
2612 SND_PCI_QUIRK(0x1043, 0, "ASUS", ALC880_ASUS),
2614 SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_3ST),
2615 SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_3ST),
2616 SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_5ST),
2617 SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_5ST),
2618 SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_5ST),
2619 SND_PCI_QUIRK(0x1558, 0x0520, "Clevo m520G", ALC880_CLEVO),
2620 SND_PCI_QUIRK(0x1558, 0x0660, "Clevo m655n", ALC880_CLEVO),
2621 SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_5ST_DIG),
2622 SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_W810),
2623 SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_5ST_DIG),
2624 SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_TCL_S700),
2625 SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_5ST_DIG),
2626 SND_PCI_QUIRK(0xe803, 0x1019, NULL, ALC880_6ST_DIG),
2627 SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_6ST_DIG),
2628 SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_6ST_DIG),
2629 SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_6ST_DIG),
2630 SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_6ST_DIG),
2631 SND_PCI_QUIRK(0x1558, 0x5401, "ASUS", ALC880_ASUS_DIG2),
2633 SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_UNIWILL_DIG),
2634 SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_UNIWILL),
2635 SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_UNIWILL_P53),
2636 SND_PCI_QUIRK(0x1584, 0x9054, "Uniwlll", ALC880_F1734),
2638 SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_5ST_DIG),
2639 SND_PCI_QUIRK(0x1734, 0x10ac, "FSC", ALC880_UNIWILL),
2640 SND_PCI_QUIRK(0x1734, 0x107c, "FSC F1734", ALC880_F1734),
2641 SND_PCI_QUIRK(0x1734, 0x10b0, "Fujitsu", ALC880_FUJITSU),
2643 SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_LG),
2644 SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_LG),
2645 SND_PCI_QUIRK(0x1854, 0x0018, "LG LW20", ALC880_LG_LW),
2646 SND_PCI_QUIRK(0x1854, 0x0077, "LG LW25", ALC880_LG_LW),
2648 SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_3ST_DIG),
2649 SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_3ST_DIG),
2650 SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_3ST_DIG),
2651 SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_5ST_DIG),
2652 SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_5ST_DIG),
2653 SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_5ST_DIG),
2654 SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_5ST_DIG),
2655 SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_5ST_DIG),
2656 SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_5ST_DIG),
2657 SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_5ST_DIG),
2658 SND_PCI_QUIRK(0x8086, 0, "Intel mobo", ALC880_3ST),
2664 * ALC880 codec presets
2666 static struct alc_config_preset alc880_presets[] = {
2668 .mixers = { alc880_three_stack_mixer },
2669 .init_verbs = { alc880_volume_init_verbs,
2670 alc880_pin_3stack_init_verbs },
2671 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2672 .dac_nids = alc880_dac_nids,
2673 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2674 .channel_mode = alc880_threestack_modes,
2676 .input_mux = &alc880_capture_source,
2678 [ALC880_3ST_DIG] = {
2679 .mixers = { alc880_three_stack_mixer },
2680 .init_verbs = { alc880_volume_init_verbs,
2681 alc880_pin_3stack_init_verbs },
2682 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2683 .dac_nids = alc880_dac_nids,
2684 .dig_out_nid = ALC880_DIGOUT_NID,
2685 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2686 .channel_mode = alc880_threestack_modes,
2688 .input_mux = &alc880_capture_source,
2690 [ALC880_TCL_S700] = {
2691 .mixers = { alc880_tcl_s700_mixer },
2692 .init_verbs = { alc880_volume_init_verbs,
2693 alc880_pin_tcl_S700_init_verbs,
2694 alc880_gpio2_init_verbs },
2695 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2696 .dac_nids = alc880_dac_nids,
2698 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2699 .channel_mode = alc880_2_jack_modes,
2700 .input_mux = &alc880_capture_source,
2703 .mixers = { alc880_three_stack_mixer,
2704 alc880_five_stack_mixer},
2705 .init_verbs = { alc880_volume_init_verbs,
2706 alc880_pin_5stack_init_verbs },
2707 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2708 .dac_nids = alc880_dac_nids,
2709 .num_channel_mode = ARRAY_SIZE(alc880_fivestack_modes),
2710 .channel_mode = alc880_fivestack_modes,
2711 .input_mux = &alc880_capture_source,
2713 [ALC880_5ST_DIG] = {
2714 .mixers = { alc880_three_stack_mixer,
2715 alc880_five_stack_mixer },
2716 .init_verbs = { alc880_volume_init_verbs,
2717 alc880_pin_5stack_init_verbs },
2718 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2719 .dac_nids = alc880_dac_nids,
2720 .dig_out_nid = ALC880_DIGOUT_NID,
2721 .num_channel_mode = ARRAY_SIZE(alc880_fivestack_modes),
2722 .channel_mode = alc880_fivestack_modes,
2723 .input_mux = &alc880_capture_source,
2726 .mixers = { alc880_six_stack_mixer },
2727 .init_verbs = { alc880_volume_init_verbs,
2728 alc880_pin_6stack_init_verbs },
2729 .num_dacs = ARRAY_SIZE(alc880_6st_dac_nids),
2730 .dac_nids = alc880_6st_dac_nids,
2731 .num_channel_mode = ARRAY_SIZE(alc880_sixstack_modes),
2732 .channel_mode = alc880_sixstack_modes,
2733 .input_mux = &alc880_6stack_capture_source,
2735 [ALC880_6ST_DIG] = {
2736 .mixers = { alc880_six_stack_mixer },
2737 .init_verbs = { alc880_volume_init_verbs,
2738 alc880_pin_6stack_init_verbs },
2739 .num_dacs = ARRAY_SIZE(alc880_6st_dac_nids),
2740 .dac_nids = alc880_6st_dac_nids,
2741 .dig_out_nid = ALC880_DIGOUT_NID,
2742 .num_channel_mode = ARRAY_SIZE(alc880_sixstack_modes),
2743 .channel_mode = alc880_sixstack_modes,
2744 .input_mux = &alc880_6stack_capture_source,
2747 .mixers = { alc880_w810_base_mixer },
2748 .init_verbs = { alc880_volume_init_verbs,
2749 alc880_pin_w810_init_verbs,
2750 alc880_gpio2_init_verbs },
2751 .num_dacs = ARRAY_SIZE(alc880_w810_dac_nids),
2752 .dac_nids = alc880_w810_dac_nids,
2753 .dig_out_nid = ALC880_DIGOUT_NID,
2754 .num_channel_mode = ARRAY_SIZE(alc880_w810_modes),
2755 .channel_mode = alc880_w810_modes,
2756 .input_mux = &alc880_capture_source,
2759 .mixers = { alc880_z71v_mixer },
2760 .init_verbs = { alc880_volume_init_verbs,
2761 alc880_pin_z71v_init_verbs },
2762 .num_dacs = ARRAY_SIZE(alc880_z71v_dac_nids),
2763 .dac_nids = alc880_z71v_dac_nids,
2764 .dig_out_nid = ALC880_DIGOUT_NID,
2766 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2767 .channel_mode = alc880_2_jack_modes,
2768 .input_mux = &alc880_capture_source,
2771 .mixers = { alc880_f1734_mixer },
2772 .init_verbs = { alc880_volume_init_verbs,
2773 alc880_pin_f1734_init_verbs },
2774 .num_dacs = ARRAY_SIZE(alc880_f1734_dac_nids),
2775 .dac_nids = alc880_f1734_dac_nids,
2777 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2778 .channel_mode = alc880_2_jack_modes,
2779 .input_mux = &alc880_capture_source,
2782 .mixers = { alc880_asus_mixer },
2783 .init_verbs = { alc880_volume_init_verbs,
2784 alc880_pin_asus_init_verbs,
2785 alc880_gpio1_init_verbs },
2786 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2787 .dac_nids = alc880_asus_dac_nids,
2788 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2789 .channel_mode = alc880_asus_modes,
2791 .input_mux = &alc880_capture_source,
2793 [ALC880_ASUS_DIG] = {
2794 .mixers = { alc880_asus_mixer },
2795 .init_verbs = { alc880_volume_init_verbs,
2796 alc880_pin_asus_init_verbs,
2797 alc880_gpio1_init_verbs },
2798 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2799 .dac_nids = alc880_asus_dac_nids,
2800 .dig_out_nid = ALC880_DIGOUT_NID,
2801 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2802 .channel_mode = alc880_asus_modes,
2804 .input_mux = &alc880_capture_source,
2806 [ALC880_ASUS_DIG2] = {
2807 .mixers = { alc880_asus_mixer },
2808 .init_verbs = { alc880_volume_init_verbs,
2809 alc880_pin_asus_init_verbs,
2810 alc880_gpio2_init_verbs }, /* use GPIO2 */
2811 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2812 .dac_nids = alc880_asus_dac_nids,
2813 .dig_out_nid = ALC880_DIGOUT_NID,
2814 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2815 .channel_mode = alc880_asus_modes,
2817 .input_mux = &alc880_capture_source,
2819 [ALC880_ASUS_W1V] = {
2820 .mixers = { alc880_asus_mixer, alc880_asus_w1v_mixer },
2821 .init_verbs = { alc880_volume_init_verbs,
2822 alc880_pin_asus_init_verbs,
2823 alc880_gpio1_init_verbs },
2824 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2825 .dac_nids = alc880_asus_dac_nids,
2826 .dig_out_nid = ALC880_DIGOUT_NID,
2827 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2828 .channel_mode = alc880_asus_modes,
2830 .input_mux = &alc880_capture_source,
2832 [ALC880_UNIWILL_DIG] = {
2833 .mixers = { alc880_asus_mixer, alc880_pcbeep_mixer },
2834 .init_verbs = { alc880_volume_init_verbs,
2835 alc880_pin_asus_init_verbs },
2836 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2837 .dac_nids = alc880_asus_dac_nids,
2838 .dig_out_nid = ALC880_DIGOUT_NID,
2839 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2840 .channel_mode = alc880_asus_modes,
2842 .input_mux = &alc880_capture_source,
2844 [ALC880_UNIWILL] = {
2845 .mixers = { alc880_uniwill_mixer },
2846 .init_verbs = { alc880_volume_init_verbs,
2847 alc880_uniwill_init_verbs },
2848 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2849 .dac_nids = alc880_asus_dac_nids,
2850 .dig_out_nid = ALC880_DIGOUT_NID,
2851 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2852 .channel_mode = alc880_threestack_modes,
2854 .input_mux = &alc880_capture_source,
2855 .unsol_event = alc880_uniwill_unsol_event,
2856 .init_hook = alc880_uniwill_automute,
2858 [ALC880_UNIWILL_P53] = {
2859 .mixers = { alc880_uniwill_p53_mixer },
2860 .init_verbs = { alc880_volume_init_verbs,
2861 alc880_uniwill_p53_init_verbs },
2862 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2863 .dac_nids = alc880_asus_dac_nids,
2864 .num_channel_mode = ARRAY_SIZE(alc880_w810_modes),
2865 .channel_mode = alc880_threestack_modes,
2866 .input_mux = &alc880_capture_source,
2867 .unsol_event = alc880_uniwill_p53_unsol_event,
2868 .init_hook = alc880_uniwill_p53_hp_automute,
2870 [ALC880_FUJITSU] = {
2871 .mixers = { alc880_fujitsu_mixer,
2872 alc880_pcbeep_mixer, },
2873 .init_verbs = { alc880_volume_init_verbs,
2874 alc880_uniwill_p53_init_verbs,
2875 alc880_beep_init_verbs },
2876 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2877 .dac_nids = alc880_dac_nids,
2878 .dig_out_nid = ALC880_DIGOUT_NID,
2879 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2880 .channel_mode = alc880_2_jack_modes,
2881 .input_mux = &alc880_capture_source,
2882 .unsol_event = alc880_uniwill_p53_unsol_event,
2883 .init_hook = alc880_uniwill_p53_hp_automute,
2886 .mixers = { alc880_three_stack_mixer },
2887 .init_verbs = { alc880_volume_init_verbs,
2888 alc880_pin_clevo_init_verbs },
2889 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2890 .dac_nids = alc880_dac_nids,
2892 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2893 .channel_mode = alc880_threestack_modes,
2895 .input_mux = &alc880_capture_source,
2898 .mixers = { alc880_lg_mixer },
2899 .init_verbs = { alc880_volume_init_verbs,
2900 alc880_lg_init_verbs },
2901 .num_dacs = ARRAY_SIZE(alc880_lg_dac_nids),
2902 .dac_nids = alc880_lg_dac_nids,
2903 .dig_out_nid = ALC880_DIGOUT_NID,
2904 .num_channel_mode = ARRAY_SIZE(alc880_lg_ch_modes),
2905 .channel_mode = alc880_lg_ch_modes,
2907 .input_mux = &alc880_lg_capture_source,
2908 .unsol_event = alc880_lg_unsol_event,
2909 .init_hook = alc880_lg_automute,
2910 #ifdef CONFIG_SND_HDA_POWER_SAVE
2911 .loopbacks = alc880_lg_loopbacks,
2915 .mixers = { alc880_lg_lw_mixer },
2916 .init_verbs = { alc880_volume_init_verbs,
2917 alc880_lg_lw_init_verbs },
2918 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2919 .dac_nids = alc880_dac_nids,
2920 .dig_out_nid = ALC880_DIGOUT_NID,
2921 .num_channel_mode = ARRAY_SIZE(alc880_lg_lw_modes),
2922 .channel_mode = alc880_lg_lw_modes,
2923 .input_mux = &alc880_lg_lw_capture_source,
2924 .unsol_event = alc880_lg_lw_unsol_event,
2925 .init_hook = alc880_lg_lw_automute,
2927 #ifdef CONFIG_SND_DEBUG
2929 .mixers = { alc880_test_mixer },
2930 .init_verbs = { alc880_test_init_verbs },
2931 .num_dacs = ARRAY_SIZE(alc880_test_dac_nids),
2932 .dac_nids = alc880_test_dac_nids,
2933 .dig_out_nid = ALC880_DIGOUT_NID,
2934 .num_channel_mode = ARRAY_SIZE(alc880_test_modes),
2935 .channel_mode = alc880_test_modes,
2936 .input_mux = &alc880_test_capture_source,
2942 * Automatic parse of I/O pins from the BIOS configuration
2945 #define NUM_CONTROL_ALLOC 32
2946 #define NUM_VERB_ALLOC 32
2950 ALC_CTL_WIDGET_MUTE,
2953 static struct snd_kcontrol_new alc880_control_templates[] = {
2954 HDA_CODEC_VOLUME(NULL, 0, 0, 0),
2955 HDA_CODEC_MUTE(NULL, 0, 0, 0),
2956 HDA_BIND_MUTE(NULL, 0, 0, 0),
2959 /* add dynamic controls */
2960 static int add_control(struct alc_spec *spec, int type, const char *name,
2963 struct snd_kcontrol_new *knew;
2965 if (spec->num_kctl_used >= spec->num_kctl_alloc) {
2966 int num = spec->num_kctl_alloc + NUM_CONTROL_ALLOC;
2968 /* array + terminator */
2969 knew = kcalloc(num + 1, sizeof(*knew), GFP_KERNEL);
2972 if (spec->kctl_alloc) {
2973 memcpy(knew, spec->kctl_alloc,
2974 sizeof(*knew) * spec->num_kctl_alloc);
2975 kfree(spec->kctl_alloc);
2977 spec->kctl_alloc = knew;
2978 spec->num_kctl_alloc = num;
2981 knew = &spec->kctl_alloc[spec->num_kctl_used];
2982 *knew = alc880_control_templates[type];
2983 knew->name = kstrdup(name, GFP_KERNEL);
2986 knew->private_value = val;
2987 spec->num_kctl_used++;
2991 #define alc880_is_fixed_pin(nid) ((nid) >= 0x14 && (nid) <= 0x17)
2992 #define alc880_fixed_pin_idx(nid) ((nid) - 0x14)
2993 #define alc880_is_multi_pin(nid) ((nid) >= 0x18)
2994 #define alc880_multi_pin_idx(nid) ((nid) - 0x18)
2995 #define alc880_is_input_pin(nid) ((nid) >= 0x18)
2996 #define alc880_input_pin_idx(nid) ((nid) - 0x18)
2997 #define alc880_idx_to_dac(nid) ((nid) + 0x02)
2998 #define alc880_dac_to_idx(nid) ((nid) - 0x02)
2999 #define alc880_idx_to_mixer(nid) ((nid) + 0x0c)
3000 #define alc880_idx_to_selector(nid) ((nid) + 0x10)
3001 #define ALC880_PIN_CD_NID 0x1c
3003 /* fill in the dac_nids table from the parsed pin configuration */
3004 static int alc880_auto_fill_dac_nids(struct alc_spec *spec,
3005 const struct auto_pin_cfg *cfg)
3011 memset(assigned, 0, sizeof(assigned));
3012 spec->multiout.dac_nids = spec->private_dac_nids;
3014 /* check the pins hardwired to audio widget */
3015 for (i = 0; i < cfg->line_outs; i++) {
3016 nid = cfg->line_out_pins[i];
3017 if (alc880_is_fixed_pin(nid)) {
3018 int idx = alc880_fixed_pin_idx(nid);
3019 spec->multiout.dac_nids[i] = alc880_idx_to_dac(idx);
3023 /* left pins can be connect to any audio widget */
3024 for (i = 0; i < cfg->line_outs; i++) {
3025 nid = cfg->line_out_pins[i];
3026 if (alc880_is_fixed_pin(nid))
3028 /* search for an empty channel */
3029 for (j = 0; j < cfg->line_outs; j++) {
3031 spec->multiout.dac_nids[i] =
3032 alc880_idx_to_dac(j);
3038 spec->multiout.num_dacs = cfg->line_outs;
3042 /* add playback controls from the parsed DAC table */
3043 static int alc880_auto_create_multi_out_ctls(struct alc_spec *spec,
3044 const struct auto_pin_cfg *cfg)
3047 static const char *chname[4] = {
3048 "Front", "Surround", NULL /*CLFE*/, "Side"
3053 for (i = 0; i < cfg->line_outs; i++) {
3054 if (!spec->multiout.dac_nids[i])
3056 nid = alc880_idx_to_mixer(alc880_dac_to_idx(spec->multiout.dac_nids[i]));
3059 err = add_control(spec, ALC_CTL_WIDGET_VOL,
3060 "Center Playback Volume",
3061 HDA_COMPOSE_AMP_VAL(nid, 1, 0,
3065 err = add_control(spec, ALC_CTL_WIDGET_VOL,
3066 "LFE Playback Volume",
3067 HDA_COMPOSE_AMP_VAL(nid, 2, 0,
3071 err = add_control(spec, ALC_CTL_BIND_MUTE,
3072 "Center Playback Switch",
3073 HDA_COMPOSE_AMP_VAL(nid, 1, 2,
3077 err = add_control(spec, ALC_CTL_BIND_MUTE,
3078 "LFE Playback Switch",
3079 HDA_COMPOSE_AMP_VAL(nid, 2, 2,
3084 sprintf(name, "%s Playback Volume", chname[i]);
3085 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
3086 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
3090 sprintf(name, "%s Playback Switch", chname[i]);
3091 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
3092 HDA_COMPOSE_AMP_VAL(nid, 3, 2,
3101 /* add playback controls for speaker and HP outputs */
3102 static int alc880_auto_create_extra_out(struct alc_spec *spec, hda_nid_t pin,
3112 if (alc880_is_fixed_pin(pin)) {
3113 nid = alc880_idx_to_dac(alc880_fixed_pin_idx(pin));
3114 /* specify the DAC as the extra output */
3115 if (!spec->multiout.hp_nid)
3116 spec->multiout.hp_nid = nid;
3118 spec->multiout.extra_out_nid[0] = nid;
3119 /* control HP volume/switch on the output mixer amp */
3120 nid = alc880_idx_to_mixer(alc880_fixed_pin_idx(pin));
3121 sprintf(name, "%s Playback Volume", pfx);
3122 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
3123 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT));
3126 sprintf(name, "%s Playback Switch", pfx);
3127 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
3128 HDA_COMPOSE_AMP_VAL(nid, 3, 2, HDA_INPUT));
3131 } else if (alc880_is_multi_pin(pin)) {
3132 /* set manual connection */
3133 /* we have only a switch on HP-out PIN */
3134 sprintf(name, "%s Playback Switch", pfx);
3135 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
3136 HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
3143 /* create input playback/capture controls for the given pin */
3144 static int new_analog_input(struct alc_spec *spec, hda_nid_t pin,
3145 const char *ctlname,
3146 int idx, hda_nid_t mix_nid)
3151 sprintf(name, "%s Playback Volume", ctlname);
3152 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
3153 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
3156 sprintf(name, "%s Playback Switch", ctlname);
3157 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
3158 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
3164 /* create playback/capture controls for input pins */
3165 static int alc880_auto_create_analog_input_ctls(struct alc_spec *spec,
3166 const struct auto_pin_cfg *cfg)
3168 struct hda_input_mux *imux = &spec->private_imux;
3171 for (i = 0; i < AUTO_PIN_LAST; i++) {
3172 if (alc880_is_input_pin(cfg->input_pins[i])) {
3173 idx = alc880_input_pin_idx(cfg->input_pins[i]);
3174 err = new_analog_input(spec, cfg->input_pins[i],
3175 auto_pin_cfg_labels[i],
3179 imux->items[imux->num_items].label =
3180 auto_pin_cfg_labels[i];
3181 imux->items[imux->num_items].index =
3182 alc880_input_pin_idx(cfg->input_pins[i]);
3189 static void alc880_auto_set_output_and_unmute(struct hda_codec *codec,
3190 hda_nid_t nid, int pin_type,
3194 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
3196 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
3198 /* need the manual connection? */
3199 if (alc880_is_multi_pin(nid)) {
3200 struct alc_spec *spec = codec->spec;
3201 int idx = alc880_multi_pin_idx(nid);
3202 snd_hda_codec_write(codec, alc880_idx_to_selector(idx), 0,
3203 AC_VERB_SET_CONNECT_SEL,
3204 alc880_dac_to_idx(spec->multiout.dac_nids[dac_idx]));
3208 static int get_pin_type(int line_out_type)
3210 if (line_out_type == AUTO_PIN_HP_OUT)
3216 static void alc880_auto_init_multi_out(struct hda_codec *codec)
3218 struct alc_spec *spec = codec->spec;
3221 alc_subsystem_id(codec, 0x15, 0x1b, 0x14);
3222 for (i = 0; i < spec->autocfg.line_outs; i++) {
3223 hda_nid_t nid = spec->autocfg.line_out_pins[i];
3224 int pin_type = get_pin_type(spec->autocfg.line_out_type);
3225 alc880_auto_set_output_and_unmute(codec, nid, pin_type, i);
3229 static void alc880_auto_init_extra_out(struct hda_codec *codec)
3231 struct alc_spec *spec = codec->spec;
3234 pin = spec->autocfg.speaker_pins[0];
3235 if (pin) /* connect to front */
3236 alc880_auto_set_output_and_unmute(codec, pin, PIN_OUT, 0);
3237 pin = spec->autocfg.hp_pins[0];
3238 if (pin) /* connect to front */
3239 alc880_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
3242 static void alc880_auto_init_analog_input(struct hda_codec *codec)
3244 struct alc_spec *spec = codec->spec;
3247 for (i = 0; i < AUTO_PIN_LAST; i++) {
3248 hda_nid_t nid = spec->autocfg.input_pins[i];
3249 if (alc880_is_input_pin(nid)) {
3250 snd_hda_codec_write(codec, nid, 0,
3251 AC_VERB_SET_PIN_WIDGET_CONTROL,
3252 i <= AUTO_PIN_FRONT_MIC ?
3253 PIN_VREF80 : PIN_IN);
3254 if (nid != ALC880_PIN_CD_NID)
3255 snd_hda_codec_write(codec, nid, 0,
3256 AC_VERB_SET_AMP_GAIN_MUTE,
3262 /* parse the BIOS configuration and set up the alc_spec */
3263 /* return 1 if successful, 0 if the proper config is not found,
3264 * or a negative error code
3266 static int alc880_parse_auto_config(struct hda_codec *codec)
3268 struct alc_spec *spec = codec->spec;
3270 static hda_nid_t alc880_ignore[] = { 0x1d, 0 };
3272 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
3276 if (!spec->autocfg.line_outs)
3277 return 0; /* can't find valid BIOS pin config */
3279 err = alc880_auto_fill_dac_nids(spec, &spec->autocfg);
3282 err = alc880_auto_create_multi_out_ctls(spec, &spec->autocfg);
3285 err = alc880_auto_create_extra_out(spec,
3286 spec->autocfg.speaker_pins[0],
3290 err = alc880_auto_create_extra_out(spec, spec->autocfg.hp_pins[0],
3294 err = alc880_auto_create_analog_input_ctls(spec, &spec->autocfg);
3298 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
3300 if (spec->autocfg.dig_out_pin)
3301 spec->multiout.dig_out_nid = ALC880_DIGOUT_NID;
3302 if (spec->autocfg.dig_in_pin)
3303 spec->dig_in_nid = ALC880_DIGIN_NID;
3305 if (spec->kctl_alloc)
3306 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
3308 spec->init_verbs[spec->num_init_verbs++] = alc880_volume_init_verbs;
3310 spec->num_mux_defs = 1;
3311 spec->input_mux = &spec->private_imux;
3316 /* additional initialization for auto-configuration model */
3317 static void alc880_auto_init(struct hda_codec *codec)
3319 alc880_auto_init_multi_out(codec);
3320 alc880_auto_init_extra_out(codec);
3321 alc880_auto_init_analog_input(codec);
3325 * OK, here we have finally the patch for ALC880
3328 static int patch_alc880(struct hda_codec *codec)
3330 struct alc_spec *spec;
3334 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
3340 board_config = snd_hda_check_board_config(codec, ALC880_MODEL_LAST,
3343 if (board_config < 0) {
3344 printk(KERN_INFO "hda_codec: Unknown model for ALC880, "
3345 "trying auto-probe from BIOS...\n");
3346 board_config = ALC880_AUTO;
3349 if (board_config == ALC880_AUTO) {
3350 /* automatic parse from the BIOS config */
3351 err = alc880_parse_auto_config(codec);
3357 "hda_codec: Cannot set up configuration "
3358 "from BIOS. Using 3-stack mode...\n");
3359 board_config = ALC880_3ST;
3363 if (board_config != ALC880_AUTO)
3364 setup_preset(spec, &alc880_presets[board_config]);
3366 spec->stream_name_analog = "ALC880 Analog";
3367 spec->stream_analog_playback = &alc880_pcm_analog_playback;
3368 spec->stream_analog_capture = &alc880_pcm_analog_capture;
3370 spec->stream_name_digital = "ALC880 Digital";
3371 spec->stream_digital_playback = &alc880_pcm_digital_playback;
3372 spec->stream_digital_capture = &alc880_pcm_digital_capture;
3374 if (!spec->adc_nids && spec->input_mux) {
3375 /* check whether NID 0x07 is valid */
3376 unsigned int wcap = get_wcaps(codec, alc880_adc_nids[0]);
3378 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
3379 if (wcap != AC_WID_AUD_IN) {
3380 spec->adc_nids = alc880_adc_nids_alt;
3381 spec->num_adc_nids = ARRAY_SIZE(alc880_adc_nids_alt);
3382 spec->mixers[spec->num_mixers] =
3383 alc880_capture_alt_mixer;
3386 spec->adc_nids = alc880_adc_nids;
3387 spec->num_adc_nids = ARRAY_SIZE(alc880_adc_nids);
3388 spec->mixers[spec->num_mixers] = alc880_capture_mixer;
3393 codec->patch_ops = alc_patch_ops;
3394 if (board_config == ALC880_AUTO)
3395 spec->init_hook = alc880_auto_init;
3396 #ifdef CONFIG_SND_HDA_POWER_SAVE
3397 if (!spec->loopback.amplist)
3398 spec->loopback.amplist = alc880_loopbacks;
3409 static hda_nid_t alc260_dac_nids[1] = {
3414 static hda_nid_t alc260_adc_nids[1] = {
3419 static hda_nid_t alc260_adc_nids_alt[1] = {
3424 static hda_nid_t alc260_hp_adc_nids[2] = {
3429 /* NIDs used when simultaneous access to both ADCs makes sense. Note that
3430 * alc260_capture_mixer assumes ADC0 (nid 0x04) is the first ADC.
3432 static hda_nid_t alc260_dual_adc_nids[2] = {
3437 #define ALC260_DIGOUT_NID 0x03
3438 #define ALC260_DIGIN_NID 0x06
3440 static struct hda_input_mux alc260_capture_source = {
3444 { "Front Mic", 0x1 },
3450 /* On Fujitsu S702x laptops capture only makes sense from Mic/LineIn jack,
3451 * headphone jack and the internal CD lines since these are the only pins at
3452 * which audio can appear. For flexibility, also allow the option of
3453 * recording the mixer output on the second ADC (ADC0 doesn't have a
3454 * connection to the mixer output).
3456 static struct hda_input_mux alc260_fujitsu_capture_sources[2] = {
3460 { "Mic/Line", 0x0 },
3462 { "Headphone", 0x2 },
3468 { "Mic/Line", 0x0 },
3470 { "Headphone", 0x2 },
3477 /* Acer TravelMate(/Extensa/Aspire) notebooks have similar configuration to
3478 * the Fujitsu S702x, but jacks are marked differently.
3480 static struct hda_input_mux alc260_acer_capture_sources[2] = {
3487 { "Headphone", 0x5 },
3496 { "Headphone", 0x6 },
3502 * This is just place-holder, so there's something for alc_build_pcms to look
3503 * at when it calculates the maximum number of channels. ALC260 has no mixer
3504 * element which allows changing the channel mode, so the verb list is
3507 static struct hda_channel_mode alc260_modes[1] = {
3512 /* Mixer combinations
3514 * basic: base_output + input + pc_beep + capture
3515 * HP: base_output + input + capture_alt
3516 * HP_3013: hp_3013 + input + capture
3517 * fujitsu: fujitsu + capture
3518 * acer: acer + capture
3521 static struct snd_kcontrol_new alc260_base_output_mixer[] = {
3522 HDA_CODEC_VOLUME("Front Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3523 HDA_BIND_MUTE("Front Playback Switch", 0x08, 2, HDA_INPUT),
3524 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x09, 0x0, HDA_OUTPUT),
3525 HDA_BIND_MUTE("Headphone Playback Switch", 0x09, 2, HDA_INPUT),
3526 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
3527 HDA_BIND_MUTE_MONO("Mono Playback Switch", 0x0a, 1, 2, HDA_INPUT),
3531 static struct snd_kcontrol_new alc260_input_mixer[] = {
3532 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
3533 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
3534 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
3535 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
3536 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
3537 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
3538 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x07, 0x01, HDA_INPUT),
3539 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x07, 0x01, HDA_INPUT),
3543 static struct snd_kcontrol_new alc260_pc_beep_mixer[] = {
3544 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x07, 0x05, HDA_INPUT),
3545 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x07, 0x05, HDA_INPUT),
3549 static struct snd_kcontrol_new alc260_hp_3013_mixer[] = {
3550 HDA_CODEC_VOLUME("Front Playback Volume", 0x09, 0x0, HDA_OUTPUT),
3551 HDA_CODEC_MUTE("Front Playback Switch", 0x10, 0x0, HDA_OUTPUT),
3552 HDA_CODEC_VOLUME("Aux-In Playback Volume", 0x07, 0x06, HDA_INPUT),
3553 HDA_CODEC_MUTE("Aux-In Playback Switch", 0x07, 0x06, HDA_INPUT),
3554 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3555 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
3556 HDA_CODEC_VOLUME_MONO("iSpeaker Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
3557 HDA_CODEC_MUTE_MONO("iSpeaker Playback Switch", 0x11, 1, 0x0, HDA_OUTPUT),
3561 /* Fujitsu S702x series laptops. ALC260 pin usage: Mic/Line jack = 0x12,
3562 * HP jack = 0x14, CD audio = 0x16, internal speaker = 0x10.
3564 static struct snd_kcontrol_new alc260_fujitsu_mixer[] = {
3565 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3566 HDA_BIND_MUTE("Headphone Playback Switch", 0x08, 2, HDA_INPUT),
3567 ALC_PIN_MODE("Headphone Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
3568 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
3569 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
3570 HDA_CODEC_VOLUME("Mic/Line Playback Volume", 0x07, 0x0, HDA_INPUT),
3571 HDA_CODEC_MUTE("Mic/Line Playback Switch", 0x07, 0x0, HDA_INPUT),
3572 ALC_PIN_MODE("Mic/Line Jack Mode", 0x12, ALC_PIN_DIR_IN),
3573 HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
3574 HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
3575 HDA_CODEC_VOLUME("Internal Speaker Playback Volume", 0x09, 0x0, HDA_OUTPUT),
3576 HDA_BIND_MUTE("Internal Speaker Playback Switch", 0x09, 2, HDA_INPUT),
3580 /* Mixer for Acer TravelMate(/Extensa/Aspire) notebooks. Note that current
3581 * versions of the ALC260 don't act on requests to enable mic bias from NID
3582 * 0x0f (used to drive the headphone jack in these laptops). The ALC260
3583 * datasheet doesn't mention this restriction. At this stage it's not clear
3584 * whether this behaviour is intentional or is a hardware bug in chip
3585 * revisions available in early 2006. Therefore for now allow the
3586 * "Headphone Jack Mode" control to span all choices, but if it turns out
3587 * that the lack of mic bias for this NID is intentional we could change the
3588 * mode from ALC_PIN_DIR_INOUT to ALC_PIN_DIR_INOUT_NOMICBIAS.
3590 * In addition, Acer TravelMate(/Extensa/Aspire) notebooks in early 2006
3591 * don't appear to make the mic bias available from the "line" jack, even
3592 * though the NID used for this jack (0x14) can supply it. The theory is
3593 * that perhaps Acer have included blocking capacitors between the ALC260
3594 * and the output jack. If this turns out to be the case for all such
3595 * models the "Line Jack Mode" mode could be changed from ALC_PIN_DIR_INOUT
3596 * to ALC_PIN_DIR_INOUT_NOMICBIAS.
3598 * The C20x Tablet series have a mono internal speaker which is controlled
3599 * via the chip's Mono sum widget and pin complex, so include the necessary
3600 * controls for such models. On models without a "mono speaker" the control
3601 * won't do anything.
3603 static struct snd_kcontrol_new alc260_acer_mixer[] = {
3604 HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3605 HDA_BIND_MUTE("Master Playback Switch", 0x08, 2, HDA_INPUT),
3606 ALC_PIN_MODE("Headphone Jack Mode", 0x0f, ALC_PIN_DIR_INOUT),
3607 HDA_CODEC_VOLUME_MONO("Mono Speaker Playback Volume", 0x0a, 1, 0x0,
3609 HDA_BIND_MUTE_MONO("Mono Speaker Playback Switch", 0x0a, 1, 2,
3611 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
3612 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
3613 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
3614 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
3615 ALC_PIN_MODE("Mic Jack Mode", 0x12, ALC_PIN_DIR_IN),
3616 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
3617 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
3618 ALC_PIN_MODE("Line Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
3619 HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
3620 HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
3624 /* Packard bell V7900 ALC260 pin usage: HP = 0x0f, Mic jack = 0x12,
3625 * Line In jack = 0x14, CD audio = 0x16, pc beep = 0x17.
3627 static struct snd_kcontrol_new alc260_will_mixer[] = {
3628 HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3629 HDA_BIND_MUTE("Master Playback Switch", 0x08, 0x2, HDA_INPUT),
3630 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
3631 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
3632 ALC_PIN_MODE("Mic Jack Mode", 0x12, ALC_PIN_DIR_IN),
3633 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
3634 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
3635 ALC_PIN_MODE("Line Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
3636 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
3637 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
3638 HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
3639 HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
3643 /* Replacer 672V ALC260 pin usage: Mic jack = 0x12,
3644 * Line In jack = 0x14, ATAPI Mic = 0x13, speaker = 0x0f.
3646 static struct snd_kcontrol_new alc260_replacer_672v_mixer[] = {
3647 HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3648 HDA_BIND_MUTE("Master Playback Switch", 0x08, 0x2, HDA_INPUT),
3649 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
3650 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
3651 ALC_PIN_MODE("Mic Jack Mode", 0x12, ALC_PIN_DIR_IN),
3652 HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x07, 0x1, HDA_INPUT),
3653 HDA_CODEC_MUTE("ATATI Mic Playback Switch", 0x07, 0x1, HDA_INPUT),
3654 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
3655 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
3656 ALC_PIN_MODE("Line Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
3660 /* capture mixer elements */
3661 static struct snd_kcontrol_new alc260_capture_mixer[] = {
3662 HDA_CODEC_VOLUME("Capture Volume", 0x04, 0x0, HDA_INPUT),
3663 HDA_CODEC_MUTE("Capture Switch", 0x04, 0x0, HDA_INPUT),
3664 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x05, 0x0, HDA_INPUT),
3665 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x05, 0x0, HDA_INPUT),
3667 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3668 /* The multiple "Capture Source" controls confuse alsamixer
3669 * So call somewhat different..
3670 * FIXME: the controls appear in the "playback" view!
3672 /* .name = "Capture Source", */
3673 .name = "Input Source",
3675 .info = alc_mux_enum_info,
3676 .get = alc_mux_enum_get,
3677 .put = alc_mux_enum_put,
3682 static struct snd_kcontrol_new alc260_capture_alt_mixer[] = {
3683 HDA_CODEC_VOLUME("Capture Volume", 0x05, 0x0, HDA_INPUT),
3684 HDA_CODEC_MUTE("Capture Switch", 0x05, 0x0, HDA_INPUT),
3686 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3687 /* The multiple "Capture Source" controls confuse alsamixer
3688 * So call somewhat different..
3689 * FIXME: the controls appear in the "playback" view!
3691 /* .name = "Capture Source", */
3692 .name = "Input Source",
3694 .info = alc_mux_enum_info,
3695 .get = alc_mux_enum_get,
3696 .put = alc_mux_enum_put,
3702 * initialization verbs
3704 static struct hda_verb alc260_init_verbs[] = {
3705 /* Line In pin widget for input */
3706 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3707 /* CD pin widget for input */
3708 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3709 /* Mic1 (rear panel) pin widget for input and vref at 80% */
3710 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
3711 /* Mic2 (front panel) pin widget for input and vref at 80% */
3712 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
3713 /* LINE-2 is used for line-out in rear */
3714 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3715 /* select line-out */
3716 {0x0e, AC_VERB_SET_CONNECT_SEL, 0x00},
3718 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3720 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
3722 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3723 /* mute capture amp left and right */
3724 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3725 /* set connection select to line in (default select for this ADC) */
3726 {0x04, AC_VERB_SET_CONNECT_SEL, 0x02},
3727 /* mute capture amp left and right */
3728 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3729 /* set connection select to line in (default select for this ADC) */
3730 {0x05, AC_VERB_SET_CONNECT_SEL, 0x02},
3731 /* set vol=0 Line-Out mixer amp left and right */
3732 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3733 /* unmute pin widget amp left and right (no gain on this amp) */
3734 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3735 /* set vol=0 HP mixer amp left and right */
3736 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3737 /* unmute pin widget amp left and right (no gain on this amp) */
3738 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3739 /* set vol=0 Mono mixer amp left and right */
3740 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3741 /* unmute pin widget amp left and right (no gain on this amp) */
3742 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3743 /* unmute LINE-2 out pin */
3744 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3745 /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 &
3748 /* mute analog inputs */
3749 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3750 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3751 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
3752 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
3753 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
3754 /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
3755 /* mute Front out path */
3756 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3757 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3758 /* mute Headphone out path */
3759 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3760 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3761 /* mute Mono out path */
3762 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3763 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3767 #if 0 /* should be identical with alc260_init_verbs? */
3768 static struct hda_verb alc260_hp_init_verbs[] = {
3769 /* Headphone and output */
3770 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
3772 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3773 /* Mic1 (rear panel) pin widget for input and vref at 80% */
3774 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
3775 /* Mic2 (front panel) pin widget for input and vref at 80% */
3776 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
3777 /* Line In pin widget for input */
3778 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3779 /* Line-2 pin widget for output */
3780 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3781 /* CD pin widget for input */
3782 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3783 /* unmute amp left and right */
3784 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000},
3785 /* set connection select to line in (default select for this ADC) */
3786 {0x04, AC_VERB_SET_CONNECT_SEL, 0x02},
3787 /* unmute Line-Out mixer amp left and right (volume = 0) */
3788 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
3789 /* mute pin widget amp left and right (no gain on this amp) */
3790 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
3791 /* unmute HP mixer amp left and right (volume = 0) */
3792 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
3793 /* mute pin widget amp left and right (no gain on this amp) */
3794 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
3795 /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 &
3798 /* mute analog inputs */
3799 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3800 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3801 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
3802 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
3803 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
3804 /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
3805 /* Unmute Front out path */
3806 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3807 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3808 /* Unmute Headphone out path */
3809 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3810 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3811 /* Unmute Mono out path */
3812 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3813 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3818 static struct hda_verb alc260_hp_3013_init_verbs[] = {
3819 /* Line out and output */
3820 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3822 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3823 /* Mic1 (rear panel) pin widget for input and vref at 80% */
3824 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
3825 /* Mic2 (front panel) pin widget for input and vref at 80% */
3826 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
3827 /* Line In pin widget for input */
3828 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3829 /* Headphone pin widget for output */
3830 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
3831 /* CD pin widget for input */
3832 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3833 /* unmute amp left and right */
3834 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000},
3835 /* set connection select to line in (default select for this ADC) */
3836 {0x04, AC_VERB_SET_CONNECT_SEL, 0x02},
3837 /* unmute Line-Out mixer amp left and right (volume = 0) */
3838 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
3839 /* mute pin widget amp left and right (no gain on this amp) */
3840 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
3841 /* unmute HP mixer amp left and right (volume = 0) */
3842 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
3843 /* mute pin widget amp left and right (no gain on this amp) */
3844 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
3845 /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 &
3848 /* mute analog inputs */
3849 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3850 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3851 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
3852 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
3853 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
3854 /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
3855 /* Unmute Front out path */
3856 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3857 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3858 /* Unmute Headphone out path */
3859 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3860 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3861 /* Unmute Mono out path */
3862 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3863 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3867 /* Initialisation sequence for ALC260 as configured in Fujitsu S702x
3868 * laptops. ALC260 pin usage: Mic/Line jack = 0x12, HP jack = 0x14, CD
3869 * audio = 0x16, internal speaker = 0x10.
3871 static struct hda_verb alc260_fujitsu_init_verbs[] = {
3872 /* Disable all GPIOs */
3873 {0x01, AC_VERB_SET_GPIO_MASK, 0},
3874 /* Internal speaker is connected to headphone pin */
3875 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
3876 /* Headphone/Line-out jack connects to Line1 pin; make it an output */
3877 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3878 /* Mic/Line-in jack is connected to mic1 pin, so make it an input */
3879 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3880 /* Ensure all other unused pins are disabled and muted. */
3881 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3882 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3883 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3884 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3885 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3886 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3887 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3888 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3890 /* Disable digital (SPDIF) pins */
3891 {0x03, AC_VERB_SET_DIGI_CONVERT_1, 0},
3892 {0x06, AC_VERB_SET_DIGI_CONVERT_1, 0},
3894 /* Ensure Line1 pin widget takes its input from the OUT1 sum bus
3895 * when acting as an output.
3897 {0x0d, AC_VERB_SET_CONNECT_SEL, 0},
3899 /* Start with output sum widgets muted and their output gains at min */
3900 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3901 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3902 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3903 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3904 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3905 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3906 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3907 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3908 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3910 /* Unmute HP pin widget amp left and right (no equiv mixer ctrl) */
3911 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3912 /* Unmute Line1 pin widget output buffer since it starts as an output.
3913 * If the pin mode is changed by the user the pin mode control will
3914 * take care of enabling the pin's input/output buffers as needed.
3915 * Therefore there's no need to enable the input buffer at this
3918 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3919 /* Unmute input buffer of pin widget used for Line-in (no equiv
3922 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3924 /* Mute capture amp left and right */
3925 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3926 /* Set ADC connection select to match default mixer setting - line
3929 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
3931 /* Do the same for the second ADC: mute capture input amp and
3932 * set ADC connection to line in (on mic1 pin)
3934 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3935 {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
3937 /* Mute all inputs to mixer widget (even unconnected ones) */
3938 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
3939 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
3940 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
3941 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
3942 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
3943 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
3944 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
3945 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
3950 /* Initialisation sequence for ALC260 as configured in Acer TravelMate and
3951 * similar laptops (adapted from Fujitsu init verbs).
3953 static struct hda_verb alc260_acer_init_verbs[] = {
3954 /* On TravelMate laptops, GPIO 0 enables the internal speaker and
3955 * the headphone jack. Turn this on and rely on the standard mute
3956 * methods whenever the user wants to turn these outputs off.
3958 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
3959 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
3960 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
3961 /* Internal speaker/Headphone jack is connected to Line-out pin */
3962 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
3963 /* Internal microphone/Mic jack is connected to Mic1 pin */
3964 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50},
3965 /* Line In jack is connected to Line1 pin */
3966 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3967 /* Some Acers (eg: C20x Tablets) use Mono pin for internal speaker */
3968 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
3969 /* Ensure all other unused pins are disabled and muted. */
3970 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3971 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3972 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3973 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3974 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3975 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3976 /* Disable digital (SPDIF) pins */
3977 {0x03, AC_VERB_SET_DIGI_CONVERT_1, 0},
3978 {0x06, AC_VERB_SET_DIGI_CONVERT_1, 0},
3980 /* Ensure Mic1 and Line1 pin widgets take input from the OUT1 sum
3981 * bus when acting as outputs.
3983 {0x0b, AC_VERB_SET_CONNECT_SEL, 0},
3984 {0x0d, AC_VERB_SET_CONNECT_SEL, 0},
3986 /* Start with output sum widgets muted and their output gains at min */
3987 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3988 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3989 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3990 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3991 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3992 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3993 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3994 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3995 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3997 /* Unmute Line-out pin widget amp left and right
3998 * (no equiv mixer ctrl)
4000 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4001 /* Unmute mono pin widget amp output (no equiv mixer ctrl) */
4002 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4003 /* Unmute Mic1 and Line1 pin widget input buffers since they start as
4004 * inputs. If the pin mode is changed by the user the pin mode control
4005 * will take care of enabling the pin's input/output buffers as needed.
4006 * Therefore there's no need to enable the input buffer at this
4009 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4010 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4012 /* Mute capture amp left and right */
4013 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4014 /* Set ADC connection select to match default mixer setting - mic
4017 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
4019 /* Do similar with the second ADC: mute capture input amp and
4020 * set ADC connection to mic to match ALSA's default state.
4022 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4023 {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
4025 /* Mute all inputs to mixer widget (even unconnected ones) */
4026 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
4027 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
4028 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
4029 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
4030 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
4031 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
4032 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
4033 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
4038 static struct hda_verb alc260_will_verbs[] = {
4039 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
4040 {0x0b, AC_VERB_SET_CONNECT_SEL, 0x00},
4041 {0x0d, AC_VERB_SET_CONNECT_SEL, 0x00},
4042 {0x0f, AC_VERB_SET_EAPD_BTLENABLE, 0x02},
4043 {0x1a, AC_VERB_SET_COEF_INDEX, 0x07},
4044 {0x1a, AC_VERB_SET_PROC_COEF, 0x3040},
4048 static struct hda_verb alc260_replacer_672v_verbs[] = {
4049 {0x0f, AC_VERB_SET_EAPD_BTLENABLE, 0x02},
4050 {0x1a, AC_VERB_SET_COEF_INDEX, 0x07},
4051 {0x1a, AC_VERB_SET_PROC_COEF, 0x3050},
4053 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
4054 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
4055 {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
4057 {0x0f, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
4061 /* toggle speaker-output according to the hp-jack state */
4062 static void alc260_replacer_672v_automute(struct hda_codec *codec)
4064 unsigned int present;
4066 /* speaker --> GPIO Data 0, hp or spdif --> GPIO data 1 */
4067 present = snd_hda_codec_read(codec, 0x0f, 0,
4068 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
4070 snd_hda_codec_write_cache(codec, 0x01, 0,
4071 AC_VERB_SET_GPIO_DATA, 1);
4072 snd_hda_codec_write_cache(codec, 0x0f, 0,
4073 AC_VERB_SET_PIN_WIDGET_CONTROL,
4076 snd_hda_codec_write_cache(codec, 0x01, 0,
4077 AC_VERB_SET_GPIO_DATA, 0);
4078 snd_hda_codec_write_cache(codec, 0x0f, 0,
4079 AC_VERB_SET_PIN_WIDGET_CONTROL,
4084 static void alc260_replacer_672v_unsol_event(struct hda_codec *codec,
4087 if ((res >> 26) == ALC880_HP_EVENT)
4088 alc260_replacer_672v_automute(codec);
4091 /* Test configuration for debugging, modelled after the ALC880 test
4094 #ifdef CONFIG_SND_DEBUG
4095 static hda_nid_t alc260_test_dac_nids[1] = {
4098 static hda_nid_t alc260_test_adc_nids[2] = {
4101 /* For testing the ALC260, each input MUX needs its own definition since
4102 * the signal assignments are different. This assumes that the first ADC
4105 static struct hda_input_mux alc260_test_capture_sources[2] = {
4109 { "MIC1 pin", 0x0 },
4110 { "MIC2 pin", 0x1 },
4111 { "LINE1 pin", 0x2 },
4112 { "LINE2 pin", 0x3 },
4114 { "LINE-OUT pin", 0x5 },
4115 { "HP-OUT pin", 0x6 },
4121 { "MIC1 pin", 0x0 },
4122 { "MIC2 pin", 0x1 },
4123 { "LINE1 pin", 0x2 },
4124 { "LINE2 pin", 0x3 },
4127 { "LINE-OUT pin", 0x6 },
4128 { "HP-OUT pin", 0x7 },
4132 static struct snd_kcontrol_new alc260_test_mixer[] = {
4133 /* Output driver widgets */
4134 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
4135 HDA_BIND_MUTE_MONO("Mono Playback Switch", 0x0a, 1, 2, HDA_INPUT),
4136 HDA_CODEC_VOLUME("LOUT2 Playback Volume", 0x09, 0x0, HDA_OUTPUT),
4137 HDA_BIND_MUTE("LOUT2 Playback Switch", 0x09, 2, HDA_INPUT),
4138 HDA_CODEC_VOLUME("LOUT1 Playback Volume", 0x08, 0x0, HDA_OUTPUT),
4139 HDA_BIND_MUTE("LOUT1 Playback Switch", 0x08, 2, HDA_INPUT),
4141 /* Modes for retasking pin widgets
4142 * Note: the ALC260 doesn't seem to act on requests to enable mic
4143 * bias from NIDs 0x0f and 0x10. The ALC260 datasheet doesn't
4144 * mention this restriction. At this stage it's not clear whether
4145 * this behaviour is intentional or is a hardware bug in chip
4146 * revisions available at least up until early 2006. Therefore for
4147 * now allow the "HP-OUT" and "LINE-OUT" Mode controls to span all
4148 * choices, but if it turns out that the lack of mic bias for these
4149 * NIDs is intentional we could change their modes from
4150 * ALC_PIN_DIR_INOUT to ALC_PIN_DIR_INOUT_NOMICBIAS.
4152 ALC_PIN_MODE("HP-OUT pin mode", 0x10, ALC_PIN_DIR_INOUT),
4153 ALC_PIN_MODE("LINE-OUT pin mode", 0x0f, ALC_PIN_DIR_INOUT),
4154 ALC_PIN_MODE("LINE2 pin mode", 0x15, ALC_PIN_DIR_INOUT),
4155 ALC_PIN_MODE("LINE1 pin mode", 0x14, ALC_PIN_DIR_INOUT),
4156 ALC_PIN_MODE("MIC2 pin mode", 0x13, ALC_PIN_DIR_INOUT),
4157 ALC_PIN_MODE("MIC1 pin mode", 0x12, ALC_PIN_DIR_INOUT),
4159 /* Loopback mixer controls */
4160 HDA_CODEC_VOLUME("MIC1 Playback Volume", 0x07, 0x00, HDA_INPUT),
4161 HDA_CODEC_MUTE("MIC1 Playback Switch", 0x07, 0x00, HDA_INPUT),
4162 HDA_CODEC_VOLUME("MIC2 Playback Volume", 0x07, 0x01, HDA_INPUT),
4163 HDA_CODEC_MUTE("MIC2 Playback Switch", 0x07, 0x01, HDA_INPUT),
4164 HDA_CODEC_VOLUME("LINE1 Playback Volume", 0x07, 0x02, HDA_INPUT),
4165 HDA_CODEC_MUTE("LINE1 Playback Switch", 0x07, 0x02, HDA_INPUT),
4166 HDA_CODEC_VOLUME("LINE2 Playback Volume", 0x07, 0x03, HDA_INPUT),
4167 HDA_CODEC_MUTE("LINE2 Playback Switch", 0x07, 0x03, HDA_INPUT),
4168 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
4169 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
4170 HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
4171 HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
4172 HDA_CODEC_VOLUME("LINE-OUT loopback Playback Volume", 0x07, 0x06, HDA_INPUT),
4173 HDA_CODEC_MUTE("LINE-OUT loopback Playback Switch", 0x07, 0x06, HDA_INPUT),
4174 HDA_CODEC_VOLUME("HP-OUT loopback Playback Volume", 0x07, 0x7, HDA_INPUT),
4175 HDA_CODEC_MUTE("HP-OUT loopback Playback Switch", 0x07, 0x7, HDA_INPUT),
4177 /* Controls for GPIO pins, assuming they are configured as outputs */
4178 ALC_GPIO_DATA_SWITCH("GPIO pin 0", 0x01, 0x01),
4179 ALC_GPIO_DATA_SWITCH("GPIO pin 1", 0x01, 0x02),
4180 ALC_GPIO_DATA_SWITCH("GPIO pin 2", 0x01, 0x04),
4181 ALC_GPIO_DATA_SWITCH("GPIO pin 3", 0x01, 0x08),
4183 /* Switches to allow the digital IO pins to be enabled. The datasheet
4184 * is ambigious as to which NID is which; testing on laptops which
4185 * make this output available should provide clarification.
4187 ALC_SPDIF_CTRL_SWITCH("SPDIF Playback Switch", 0x03, 0x01),
4188 ALC_SPDIF_CTRL_SWITCH("SPDIF Capture Switch", 0x06, 0x01),
4192 static struct hda_verb alc260_test_init_verbs[] = {
4193 /* Enable all GPIOs as outputs with an initial value of 0 */
4194 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x0f},
4195 {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
4196 {0x01, AC_VERB_SET_GPIO_MASK, 0x0f},
4198 /* Enable retasking pins as output, initially without power amp */
4199 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4200 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4201 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4202 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4203 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4204 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4206 /* Disable digital (SPDIF) pins initially, but users can enable
4207 * them via a mixer switch. In the case of SPDIF-out, this initverb
4208 * payload also sets the generation to 0, output to be in "consumer"
4209 * PCM format, copyright asserted, no pre-emphasis and no validity
4212 {0x03, AC_VERB_SET_DIGI_CONVERT_1, 0},
4213 {0x06, AC_VERB_SET_DIGI_CONVERT_1, 0},
4215 /* Ensure mic1, mic2, line1 and line2 pin widgets take input from the
4216 * OUT1 sum bus when acting as an output.
4218 {0x0b, AC_VERB_SET_CONNECT_SEL, 0},
4219 {0x0c, AC_VERB_SET_CONNECT_SEL, 0},
4220 {0x0d, AC_VERB_SET_CONNECT_SEL, 0},
4221 {0x0e, AC_VERB_SET_CONNECT_SEL, 0},
4223 /* Start with output sum widgets muted and their output gains at min */
4224 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4225 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4226 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4227 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4228 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4229 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4230 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4231 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4232 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4234 /* Unmute retasking pin widget output buffers since the default
4235 * state appears to be output. As the pin mode is changed by the
4236 * user the pin mode control will take care of enabling the pin's
4237 * input/output buffers as needed.
4239 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4240 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4241 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4242 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4243 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4244 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4245 /* Also unmute the mono-out pin widget */
4246 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4248 /* Mute capture amp left and right */
4249 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4250 /* Set ADC connection select to match default mixer setting (mic1
4253 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
4255 /* Do the same for the second ADC: mute capture input amp and
4256 * set ADC connection to mic1 pin
4258 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4259 {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
4261 /* Mute all inputs to mixer widget (even unconnected ones) */
4262 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
4263 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
4264 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
4265 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
4266 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
4267 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
4268 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
4269 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
4275 static struct hda_pcm_stream alc260_pcm_analog_playback = {
4281 static struct hda_pcm_stream alc260_pcm_analog_capture = {
4287 #define alc260_pcm_digital_playback alc880_pcm_digital_playback
4288 #define alc260_pcm_digital_capture alc880_pcm_digital_capture
4291 * for BIOS auto-configuration
4294 static int alc260_add_playback_controls(struct alc_spec *spec, hda_nid_t nid,
4298 unsigned long vol_val, sw_val;
4302 if (nid >= 0x0f && nid < 0x11) {
4303 nid_vol = nid - 0x7;
4304 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, HDA_OUTPUT);
4305 sw_val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
4306 } else if (nid == 0x11) {
4307 nid_vol = nid - 0x7;
4308 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 2, 0, HDA_OUTPUT);
4309 sw_val = HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_OUTPUT);
4310 } else if (nid >= 0x12 && nid <= 0x15) {
4312 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, HDA_OUTPUT);
4313 sw_val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
4317 snprintf(name, sizeof(name), "%s Playback Volume", pfx);
4318 err = add_control(spec, ALC_CTL_WIDGET_VOL, name, vol_val);
4321 snprintf(name, sizeof(name), "%s Playback Switch", pfx);
4322 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name, sw_val);
4328 /* add playback controls from the parsed DAC table */
4329 static int alc260_auto_create_multi_out_ctls(struct alc_spec *spec,
4330 const struct auto_pin_cfg *cfg)
4335 spec->multiout.num_dacs = 1;
4336 spec->multiout.dac_nids = spec->private_dac_nids;
4337 spec->multiout.dac_nids[0] = 0x02;
4339 nid = cfg->line_out_pins[0];
4341 err = alc260_add_playback_controls(spec, nid, "Front");
4346 nid = cfg->speaker_pins[0];
4348 err = alc260_add_playback_controls(spec, nid, "Speaker");
4353 nid = cfg->hp_pins[0];
4355 err = alc260_add_playback_controls(spec, nid, "Headphone");
4362 /* create playback/capture controls for input pins */
4363 static int alc260_auto_create_analog_input_ctls(struct alc_spec *spec,
4364 const struct auto_pin_cfg *cfg)
4366 struct hda_input_mux *imux = &spec->private_imux;
4369 for (i = 0; i < AUTO_PIN_LAST; i++) {
4370 if (cfg->input_pins[i] >= 0x12) {
4371 idx = cfg->input_pins[i] - 0x12;
4372 err = new_analog_input(spec, cfg->input_pins[i],
4373 auto_pin_cfg_labels[i], idx,
4377 imux->items[imux->num_items].label =
4378 auto_pin_cfg_labels[i];
4379 imux->items[imux->num_items].index = idx;
4382 if (cfg->input_pins[i] >= 0x0f && cfg->input_pins[i] <= 0x10){
4383 idx = cfg->input_pins[i] - 0x09;
4384 err = new_analog_input(spec, cfg->input_pins[i],
4385 auto_pin_cfg_labels[i], idx,
4389 imux->items[imux->num_items].label =
4390 auto_pin_cfg_labels[i];
4391 imux->items[imux->num_items].index = idx;
4398 static void alc260_auto_set_output_and_unmute(struct hda_codec *codec,
4399 hda_nid_t nid, int pin_type,
4403 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
4405 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
4407 /* need the manual connection? */
4409 int idx = nid - 0x12;
4410 snd_hda_codec_write(codec, idx + 0x0b, 0,
4411 AC_VERB_SET_CONNECT_SEL, sel_idx);
4415 static void alc260_auto_init_multi_out(struct hda_codec *codec)
4417 struct alc_spec *spec = codec->spec;
4420 alc_subsystem_id(codec, 0x10, 0x15, 0x0f);
4421 nid = spec->autocfg.line_out_pins[0];
4423 int pin_type = get_pin_type(spec->autocfg.line_out_type);
4424 alc260_auto_set_output_and_unmute(codec, nid, pin_type, 0);
4427 nid = spec->autocfg.speaker_pins[0];
4429 alc260_auto_set_output_and_unmute(codec, nid, PIN_OUT, 0);
4431 nid = spec->autocfg.hp_pins[0];
4433 alc260_auto_set_output_and_unmute(codec, nid, PIN_HP, 0);
4436 #define ALC260_PIN_CD_NID 0x16
4437 static void alc260_auto_init_analog_input(struct hda_codec *codec)
4439 struct alc_spec *spec = codec->spec;
4442 for (i = 0; i < AUTO_PIN_LAST; i++) {
4443 hda_nid_t nid = spec->autocfg.input_pins[i];
4445 snd_hda_codec_write(codec, nid, 0,
4446 AC_VERB_SET_PIN_WIDGET_CONTROL,
4447 i <= AUTO_PIN_FRONT_MIC ?
4448 PIN_VREF80 : PIN_IN);
4449 if (nid != ALC260_PIN_CD_NID)
4450 snd_hda_codec_write(codec, nid, 0,
4451 AC_VERB_SET_AMP_GAIN_MUTE,
4458 * generic initialization of ADC, input mixers and output mixers
4460 static struct hda_verb alc260_volume_init_verbs[] = {
4462 * Unmute ADC0-1 and set the default input to mic-in
4464 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
4465 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4466 {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
4467 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4469 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
4471 * Note: PASD motherboards uses the Line In 2 as the input for
4472 * front panel mic (mic 2)
4474 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
4475 /* mute analog inputs */
4476 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4477 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4478 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4479 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4480 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
4483 * Set up output mixers (0x08 - 0x0a)
4485 /* set vol=0 to output mixers */
4486 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4487 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4488 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4489 /* set up input amps for analog loopback */
4490 /* Amp Indices: DAC = 0, mixer = 1 */
4491 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4492 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4493 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4494 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4495 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4496 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4501 static int alc260_parse_auto_config(struct hda_codec *codec)
4503 struct alc_spec *spec = codec->spec;
4506 static hda_nid_t alc260_ignore[] = { 0x17, 0 };
4508 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
4512 err = alc260_auto_create_multi_out_ctls(spec, &spec->autocfg);
4515 if (!spec->kctl_alloc)
4516 return 0; /* can't find valid BIOS pin config */
4517 err = alc260_auto_create_analog_input_ctls(spec, &spec->autocfg);
4521 spec->multiout.max_channels = 2;
4523 if (spec->autocfg.dig_out_pin)
4524 spec->multiout.dig_out_nid = ALC260_DIGOUT_NID;
4525 if (spec->kctl_alloc)
4526 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
4528 spec->init_verbs[spec->num_init_verbs++] = alc260_volume_init_verbs;
4530 spec->num_mux_defs = 1;
4531 spec->input_mux = &spec->private_imux;
4533 /* check whether NID 0x04 is valid */
4534 wcap = get_wcaps(codec, 0x04);
4535 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT; /* get type */
4536 if (wcap != AC_WID_AUD_IN) {
4537 spec->adc_nids = alc260_adc_nids_alt;
4538 spec->num_adc_nids = ARRAY_SIZE(alc260_adc_nids_alt);
4539 spec->mixers[spec->num_mixers] = alc260_capture_alt_mixer;
4541 spec->adc_nids = alc260_adc_nids;
4542 spec->num_adc_nids = ARRAY_SIZE(alc260_adc_nids);
4543 spec->mixers[spec->num_mixers] = alc260_capture_mixer;
4550 /* additional initialization for auto-configuration model */
4551 static void alc260_auto_init(struct hda_codec *codec)
4553 alc260_auto_init_multi_out(codec);
4554 alc260_auto_init_analog_input(codec);
4557 #ifdef CONFIG_SND_HDA_POWER_SAVE
4558 static struct hda_amp_list alc260_loopbacks[] = {
4559 { 0x07, HDA_INPUT, 0 },
4560 { 0x07, HDA_INPUT, 1 },
4561 { 0x07, HDA_INPUT, 2 },
4562 { 0x07, HDA_INPUT, 3 },
4563 { 0x07, HDA_INPUT, 4 },
4569 * ALC260 configurations
4571 static const char *alc260_models[ALC260_MODEL_LAST] = {
4572 [ALC260_BASIC] = "basic",
4574 [ALC260_HP_3013] = "hp-3013",
4575 [ALC260_FUJITSU_S702X] = "fujitsu",
4576 [ALC260_ACER] = "acer",
4577 [ALC260_WILL] = "will",
4578 [ALC260_REPLACER_672V] = "replacer",
4579 #ifdef CONFIG_SND_DEBUG
4580 [ALC260_TEST] = "test",
4582 [ALC260_AUTO] = "auto",
4585 static struct snd_pci_quirk alc260_cfg_tbl[] = {
4586 SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_ACER),
4587 SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_ACER),
4588 SND_PCI_QUIRK(0x103c, 0x2808, "HP d5700", ALC260_HP_3013),
4589 SND_PCI_QUIRK(0x103c, 0x280a, "HP d5750", ALC260_HP_3013),
4590 SND_PCI_QUIRK(0x103c, 0x3010, "HP", ALC260_HP_3013),
4591 SND_PCI_QUIRK(0x103c, 0x3011, "HP", ALC260_HP),
4592 SND_PCI_QUIRK(0x103c, 0x3012, "HP", ALC260_HP_3013),
4593 SND_PCI_QUIRK(0x103c, 0x3013, "HP", ALC260_HP_3013),
4594 SND_PCI_QUIRK(0x103c, 0x3014, "HP", ALC260_HP),
4595 SND_PCI_QUIRK(0x103c, 0x3015, "HP", ALC260_HP),
4596 SND_PCI_QUIRK(0x103c, 0x3016, "HP", ALC260_HP),
4597 SND_PCI_QUIRK(0x104d, 0x81bb, "Sony VAIO", ALC260_BASIC),
4598 SND_PCI_QUIRK(0x104d, 0x81cc, "Sony VAIO", ALC260_BASIC),
4599 SND_PCI_QUIRK(0x104d, 0x81cd, "Sony VAIO", ALC260_BASIC),
4600 SND_PCI_QUIRK(0x10cf, 0x1326, "Fujitsu S702X", ALC260_FUJITSU_S702X),
4601 SND_PCI_QUIRK(0x152d, 0x0729, "CTL U553W", ALC260_BASIC),
4602 SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_WILL),
4603 SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_REPLACER_672V),
4607 static struct alc_config_preset alc260_presets[] = {
4609 .mixers = { alc260_base_output_mixer,
4611 alc260_pc_beep_mixer,
4612 alc260_capture_mixer },
4613 .init_verbs = { alc260_init_verbs },
4614 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4615 .dac_nids = alc260_dac_nids,
4616 .num_adc_nids = ARRAY_SIZE(alc260_adc_nids),
4617 .adc_nids = alc260_adc_nids,
4618 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4619 .channel_mode = alc260_modes,
4620 .input_mux = &alc260_capture_source,
4623 .mixers = { alc260_base_output_mixer,
4625 alc260_capture_alt_mixer },
4626 .init_verbs = { alc260_init_verbs },
4627 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4628 .dac_nids = alc260_dac_nids,
4629 .num_adc_nids = ARRAY_SIZE(alc260_hp_adc_nids),
4630 .adc_nids = alc260_hp_adc_nids,
4631 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4632 .channel_mode = alc260_modes,
4633 .input_mux = &alc260_capture_source,
4635 [ALC260_HP_3013] = {
4636 .mixers = { alc260_hp_3013_mixer,
4638 alc260_capture_alt_mixer },
4639 .init_verbs = { alc260_hp_3013_init_verbs },
4640 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4641 .dac_nids = alc260_dac_nids,
4642 .num_adc_nids = ARRAY_SIZE(alc260_hp_adc_nids),
4643 .adc_nids = alc260_hp_adc_nids,
4644 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4645 .channel_mode = alc260_modes,
4646 .input_mux = &alc260_capture_source,
4648 [ALC260_FUJITSU_S702X] = {
4649 .mixers = { alc260_fujitsu_mixer,
4650 alc260_capture_mixer },
4651 .init_verbs = { alc260_fujitsu_init_verbs },
4652 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4653 .dac_nids = alc260_dac_nids,
4654 .num_adc_nids = ARRAY_SIZE(alc260_dual_adc_nids),
4655 .adc_nids = alc260_dual_adc_nids,
4656 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4657 .channel_mode = alc260_modes,
4658 .num_mux_defs = ARRAY_SIZE(alc260_fujitsu_capture_sources),
4659 .input_mux = alc260_fujitsu_capture_sources,
4662 .mixers = { alc260_acer_mixer,
4663 alc260_capture_mixer },
4664 .init_verbs = { alc260_acer_init_verbs },
4665 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4666 .dac_nids = alc260_dac_nids,
4667 .num_adc_nids = ARRAY_SIZE(alc260_dual_adc_nids),
4668 .adc_nids = alc260_dual_adc_nids,
4669 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4670 .channel_mode = alc260_modes,
4671 .num_mux_defs = ARRAY_SIZE(alc260_acer_capture_sources),
4672 .input_mux = alc260_acer_capture_sources,
4675 .mixers = { alc260_will_mixer,
4676 alc260_capture_mixer },
4677 .init_verbs = { alc260_init_verbs, alc260_will_verbs },
4678 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4679 .dac_nids = alc260_dac_nids,
4680 .num_adc_nids = ARRAY_SIZE(alc260_adc_nids),
4681 .adc_nids = alc260_adc_nids,
4682 .dig_out_nid = ALC260_DIGOUT_NID,
4683 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4684 .channel_mode = alc260_modes,
4685 .input_mux = &alc260_capture_source,
4687 [ALC260_REPLACER_672V] = {
4688 .mixers = { alc260_replacer_672v_mixer,
4689 alc260_capture_mixer },
4690 .init_verbs = { alc260_init_verbs, alc260_replacer_672v_verbs },
4691 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4692 .dac_nids = alc260_dac_nids,
4693 .num_adc_nids = ARRAY_SIZE(alc260_adc_nids),
4694 .adc_nids = alc260_adc_nids,
4695 .dig_out_nid = ALC260_DIGOUT_NID,
4696 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4697 .channel_mode = alc260_modes,
4698 .input_mux = &alc260_capture_source,
4699 .unsol_event = alc260_replacer_672v_unsol_event,
4700 .init_hook = alc260_replacer_672v_automute,
4702 #ifdef CONFIG_SND_DEBUG
4704 .mixers = { alc260_test_mixer,
4705 alc260_capture_mixer },
4706 .init_verbs = { alc260_test_init_verbs },
4707 .num_dacs = ARRAY_SIZE(alc260_test_dac_nids),
4708 .dac_nids = alc260_test_dac_nids,
4709 .num_adc_nids = ARRAY_SIZE(alc260_test_adc_nids),
4710 .adc_nids = alc260_test_adc_nids,
4711 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4712 .channel_mode = alc260_modes,
4713 .num_mux_defs = ARRAY_SIZE(alc260_test_capture_sources),
4714 .input_mux = alc260_test_capture_sources,
4719 static int patch_alc260(struct hda_codec *codec)
4721 struct alc_spec *spec;
4722 int err, board_config;
4724 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4730 board_config = snd_hda_check_board_config(codec, ALC260_MODEL_LAST,
4733 if (board_config < 0) {
4734 snd_printd(KERN_INFO "hda_codec: Unknown model for ALC260, "
4735 "trying auto-probe from BIOS...\n");
4736 board_config = ALC260_AUTO;
4739 if (board_config == ALC260_AUTO) {
4740 /* automatic parse from the BIOS config */
4741 err = alc260_parse_auto_config(codec);
4747 "hda_codec: Cannot set up configuration "
4748 "from BIOS. Using base mode...\n");
4749 board_config = ALC260_BASIC;
4753 if (board_config != ALC260_AUTO)
4754 setup_preset(spec, &alc260_presets[board_config]);
4756 spec->stream_name_analog = "ALC260 Analog";
4757 spec->stream_analog_playback = &alc260_pcm_analog_playback;
4758 spec->stream_analog_capture = &alc260_pcm_analog_capture;
4760 spec->stream_name_digital = "ALC260 Digital";
4761 spec->stream_digital_playback = &alc260_pcm_digital_playback;
4762 spec->stream_digital_capture = &alc260_pcm_digital_capture;
4764 codec->patch_ops = alc_patch_ops;
4765 if (board_config == ALC260_AUTO)
4766 spec->init_hook = alc260_auto_init;
4767 #ifdef CONFIG_SND_HDA_POWER_SAVE
4768 if (!spec->loopback.amplist)
4769 spec->loopback.amplist = alc260_loopbacks;
4779 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
4780 * configuration. Each pin widget can choose any input DACs and a mixer.
4781 * Each ADC is connected from a mixer of all inputs. This makes possible
4782 * 6-channel independent captures.
4784 * In addition, an independent DAC for the multi-playback (not used in this
4787 #define ALC882_DIGOUT_NID 0x06
4788 #define ALC882_DIGIN_NID 0x0a
4790 static struct hda_channel_mode alc882_ch_modes[1] = {
4794 static hda_nid_t alc882_dac_nids[4] = {
4795 /* front, rear, clfe, rear_surr */
4796 0x02, 0x03, 0x04, 0x05
4799 /* identical with ALC880 */
4800 #define alc882_adc_nids alc880_adc_nids
4801 #define alc882_adc_nids_alt alc880_adc_nids_alt
4804 /* FIXME: should be a matrix-type input source selection */
4806 static struct hda_input_mux alc882_capture_source = {
4810 { "Front Mic", 0x1 },
4815 #define alc882_mux_enum_info alc_mux_enum_info
4816 #define alc882_mux_enum_get alc_mux_enum_get
4818 static int alc882_mux_enum_put(struct snd_kcontrol *kcontrol,
4819 struct snd_ctl_elem_value *ucontrol)
4821 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
4822 struct alc_spec *spec = codec->spec;
4823 const struct hda_input_mux *imux = spec->input_mux;
4824 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
4825 static hda_nid_t capture_mixers[3] = { 0x24, 0x23, 0x22 };
4826 hda_nid_t nid = capture_mixers[adc_idx];
4827 unsigned int *cur_val = &spec->cur_mux[adc_idx];
4828 unsigned int i, idx;
4830 idx = ucontrol->value.enumerated.item[0];
4831 if (idx >= imux->num_items)
4832 idx = imux->num_items - 1;
4833 if (*cur_val == idx)
4835 for (i = 0; i < imux->num_items; i++) {
4836 unsigned int v = (i == idx) ? 0 : HDA_AMP_MUTE;
4837 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT,
4838 imux->items[i].index,
4848 static struct hda_verb alc882_3ST_ch2_init[] = {
4849 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
4850 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
4851 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
4852 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
4859 static struct hda_verb alc882_3ST_ch6_init[] = {
4860 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4861 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
4862 { 0x18, AC_VERB_SET_CONNECT_SEL, 0x02 },
4863 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4864 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
4865 { 0x1a, AC_VERB_SET_CONNECT_SEL, 0x01 },
4869 static struct hda_channel_mode alc882_3ST_6ch_modes[2] = {
4870 { 2, alc882_3ST_ch2_init },
4871 { 6, alc882_3ST_ch6_init },
4877 static struct hda_verb alc882_sixstack_ch6_init[] = {
4878 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
4879 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4880 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4881 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4888 static struct hda_verb alc882_sixstack_ch8_init[] = {
4889 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4890 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4891 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4892 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4896 static struct hda_channel_mode alc882_sixstack_modes[2] = {
4897 { 6, alc882_sixstack_ch6_init },
4898 { 8, alc882_sixstack_ch8_init },
4902 * macbook pro ALC885 can switch LineIn to LineOut without loosing Mic
4908 static struct hda_verb alc885_mbp_ch2_init[] = {
4909 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
4910 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4911 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4918 static struct hda_verb alc885_mbp_ch6_init[] = {
4919 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4920 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4921 { 0x1a, AC_VERB_SET_CONNECT_SEL, 0x01 },
4922 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4923 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4927 static struct hda_channel_mode alc885_mbp_6ch_modes[2] = {
4928 { 2, alc885_mbp_ch2_init },
4929 { 6, alc885_mbp_ch6_init },
4933 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
4934 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
4936 static struct snd_kcontrol_new alc882_base_mixer[] = {
4937 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
4938 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
4939 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
4940 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
4941 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
4942 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
4943 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
4944 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
4945 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
4946 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
4947 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
4948 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
4949 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
4950 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
4951 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
4952 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
4953 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
4954 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
4955 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
4956 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
4957 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
4958 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
4959 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
4963 static struct snd_kcontrol_new alc885_mbp3_mixer[] = {
4964 HDA_CODEC_VOLUME("Master Volume", 0x0c, 0x00, HDA_OUTPUT),
4965 HDA_BIND_MUTE ("Master Switch", 0x0c, 0x02, HDA_INPUT),
4966 HDA_CODEC_MUTE ("Speaker Switch", 0x14, 0x00, HDA_OUTPUT),
4967 HDA_CODEC_VOLUME("Line Out Volume", 0x0d,0x00, HDA_OUTPUT),
4968 HDA_CODEC_VOLUME("Line In Playback Volume", 0x0b, 0x02, HDA_INPUT),
4969 HDA_CODEC_MUTE ("Line In Playback Switch", 0x0b, 0x02, HDA_INPUT),
4970 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x00, HDA_INPUT),
4971 HDA_CODEC_MUTE ("Mic Playback Switch", 0x0b, 0x00, HDA_INPUT),
4972 HDA_CODEC_VOLUME("Line In Boost", 0x1a, 0x00, HDA_INPUT),
4973 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0x00, HDA_INPUT),
4976 static struct snd_kcontrol_new alc882_w2jc_mixer[] = {
4977 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
4978 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
4979 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
4980 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
4981 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
4982 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
4983 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
4984 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
4985 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
4986 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
4987 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
4991 static struct snd_kcontrol_new alc882_targa_mixer[] = {
4992 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
4993 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
4994 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
4995 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
4996 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
4997 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
4998 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
4999 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5000 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5001 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
5002 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
5006 /* Pin assignment: Front=0x14, HP = 0x15, Front = 0x16, ???
5007 * Front Mic=0x18, Line In = 0x1a, Line In = 0x1b, CD = 0x1c
5009 static struct snd_kcontrol_new alc882_asus_a7j_mixer[] = {
5010 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5011 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
5012 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
5013 HDA_CODEC_MUTE("Mobile Front Playback Switch", 0x16, 0x0, HDA_OUTPUT),
5014 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5015 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5016 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5017 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5018 HDA_CODEC_VOLUME("Mobile Line Playback Volume", 0x0b, 0x03, HDA_INPUT),
5019 HDA_CODEC_MUTE("Mobile Line Playback Switch", 0x0b, 0x03, HDA_INPUT),
5020 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5021 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5025 static struct snd_kcontrol_new alc882_chmode_mixer[] = {
5027 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5028 .name = "Channel Mode",
5029 .info = alc_ch_mode_info,
5030 .get = alc_ch_mode_get,
5031 .put = alc_ch_mode_put,
5036 static struct hda_verb alc882_init_verbs[] = {
5037 /* Front mixer: unmute input/output amp left and right (volume = 0) */
5038 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5039 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5040 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5042 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5043 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5044 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5046 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5047 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5048 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5050 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5051 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5052 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5054 /* Front Pin: output 0 (0x0c) */
5055 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5056 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5057 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
5058 /* Rear Pin: output 1 (0x0d) */
5059 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5060 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5061 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
5062 /* CLFE Pin: output 2 (0x0e) */
5063 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5064 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5065 {0x16, AC_VERB_SET_CONNECT_SEL, 0x02},
5066 /* Side Pin: output 3 (0x0f) */
5067 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5068 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5069 {0x17, AC_VERB_SET_CONNECT_SEL, 0x03},
5070 /* Mic (rear) pin: input vref at 80% */
5071 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5072 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5073 /* Front Mic pin: input vref at 80% */
5074 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5075 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5076 /* Line In pin: input */
5077 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
5078 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5079 /* Line-2 In: Headphone output (output 0 - 0x0c) */
5080 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5081 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5082 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
5083 /* CD pin widget for input */
5084 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
5086 /* FIXME: use matrix-type input source selection */
5087 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
5088 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
5089 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5090 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5091 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5092 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5094 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5095 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5096 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5097 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5099 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5100 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5101 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5102 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5103 /* ADC1: mute amp left and right */
5104 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5105 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
5106 /* ADC2: mute amp left and right */
5107 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5108 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
5109 /* ADC3: mute amp left and right */
5110 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5111 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
5116 static struct hda_verb alc882_eapd_verbs[] = {
5117 /* change to EAPD mode */
5118 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
5119 {0x20, AC_VERB_SET_PROC_COEF, 0x3060},
5124 static struct snd_kcontrol_new alc882_macpro_mixer[] = {
5125 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5126 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
5127 HDA_CODEC_MUTE("Headphone Playback Switch", 0x18, 0x0, HDA_OUTPUT),
5128 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x01, HDA_INPUT),
5129 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x01, HDA_INPUT),
5130 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x02, HDA_INPUT),
5131 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x02, HDA_INPUT),
5135 static struct hda_verb alc882_macpro_init_verbs[] = {
5136 /* Front mixer: unmute input/output amp left and right (volume = 0) */
5137 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5138 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5139 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5140 /* Front Pin: output 0 (0x0c) */
5141 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5142 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5143 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
5144 /* Front Mic pin: input vref at 80% */
5145 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5146 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5147 /* Speaker: output */
5148 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5149 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5150 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x04},
5151 /* Headphone output (output 0 - 0x0c) */
5152 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5153 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5154 {0x18, AC_VERB_SET_CONNECT_SEL, 0x00},
5156 /* FIXME: use matrix-type input source selection */
5157 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
5158 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
5159 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5160 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5161 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5162 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5164 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5165 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5166 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5167 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5169 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5170 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5171 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5172 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5173 /* ADC1: mute amp left and right */
5174 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5175 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
5176 /* ADC2: mute amp left and right */
5177 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5178 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
5179 /* ADC3: mute amp left and right */
5180 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5181 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
5186 /* Macbook Pro rev3 */
5187 static struct hda_verb alc885_mbp3_init_verbs[] = {
5188 /* Front mixer: unmute input/output amp left and right (volume = 0) */
5189 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5190 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5191 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5193 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5194 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5195 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5196 /* Front Pin: output 0 (0x0c) */
5197 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5198 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5199 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
5200 /* HP Pin: output 0 (0x0d) */
5201 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc4},
5202 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5203 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
5204 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
5205 /* Mic (rear) pin: input vref at 80% */
5206 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5207 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5208 /* Front Mic pin: input vref at 80% */
5209 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5210 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5211 /* Line In pin: use output 1 when in LineOut mode */
5212 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
5213 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5214 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x01},
5216 /* FIXME: use matrix-type input source selection */
5217 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
5218 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
5219 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5220 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5221 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5222 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5224 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5225 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5226 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5227 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5229 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5230 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5231 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5232 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5233 /* ADC1: mute amp left and right */
5234 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5235 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
5236 /* ADC2: mute amp left and right */
5237 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5238 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
5239 /* ADC3: mute amp left and right */
5240 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5241 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
5246 /* iMac 24 mixer. */
5247 static struct snd_kcontrol_new alc885_imac24_mixer[] = {
5248 HDA_CODEC_VOLUME("Master Playback Volume", 0x0c, 0x00, HDA_OUTPUT),
5249 HDA_CODEC_MUTE("Master Playback Switch", 0x0c, 0x00, HDA_INPUT),
5253 /* iMac 24 init verbs. */
5254 static struct hda_verb alc885_imac24_init_verbs[] = {
5255 /* Internal speakers: output 0 (0x0c) */
5256 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5257 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5258 {0x18, AC_VERB_SET_CONNECT_SEL, 0x00},
5259 /* Internal speakers: output 0 (0x0c) */
5260 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5261 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5262 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
5263 /* Headphone: output 0 (0x0c) */
5264 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5265 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5266 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
5267 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
5268 /* Front Mic: input vref at 80% */
5269 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5270 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5274 /* Toggle speaker-output according to the hp-jack state */
5275 static void alc885_imac24_automute(struct hda_codec *codec)
5277 unsigned int present;
5279 present = snd_hda_codec_read(codec, 0x14, 0,
5280 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
5281 snd_hda_codec_amp_stereo(codec, 0x18, HDA_OUTPUT, 0,
5282 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
5283 snd_hda_codec_amp_stereo(codec, 0x1a, HDA_OUTPUT, 0,
5284 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
5287 /* Processes unsolicited events. */
5288 static void alc885_imac24_unsol_event(struct hda_codec *codec,
5291 /* Headphone insertion or removal. */
5292 if ((res >> 26) == ALC880_HP_EVENT)
5293 alc885_imac24_automute(codec);
5296 static void alc885_mbp3_automute(struct hda_codec *codec)
5298 unsigned int present;
5300 present = snd_hda_codec_read(codec, 0x15, 0,
5301 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
5302 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
5303 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
5304 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
5305 HDA_AMP_MUTE, present ? 0 : HDA_AMP_MUTE);
5308 static void alc885_mbp3_unsol_event(struct hda_codec *codec,
5311 /* Headphone insertion or removal. */
5312 if ((res >> 26) == ALC880_HP_EVENT)
5313 alc885_mbp3_automute(codec);
5317 static struct hda_verb alc882_targa_verbs[] = {
5318 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5319 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5321 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5322 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5324 {0x18, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
5325 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/surround */
5326 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
5328 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
5329 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
5330 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
5331 {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
5335 /* toggle speaker-output according to the hp-jack state */
5336 static void alc882_targa_automute(struct hda_codec *codec)
5338 unsigned int present;
5340 present = snd_hda_codec_read(codec, 0x14, 0,
5341 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
5342 snd_hda_codec_amp_stereo(codec, 0x1b, HDA_OUTPUT, 0,
5343 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
5344 snd_hda_codec_write_cache(codec, 1, 0, AC_VERB_SET_GPIO_DATA,
5348 static void alc882_targa_unsol_event(struct hda_codec *codec, unsigned int res)
5350 /* Looks like the unsol event is incompatible with the standard
5351 * definition. 4bit tag is placed at 26 bit!
5353 if (((res >> 26) == ALC880_HP_EVENT)) {
5354 alc882_targa_automute(codec);
5358 static struct hda_verb alc882_asus_a7j_verbs[] = {
5359 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5360 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5362 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5363 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5364 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5366 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00}, /* Front */
5367 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
5368 {0x16, AC_VERB_SET_CONNECT_SEL, 0x00}, /* Front */
5370 {0x18, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
5371 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/surround */
5372 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
5376 static void alc882_gpio_mute(struct hda_codec *codec, int pin, int muted)
5378 unsigned int gpiostate, gpiomask, gpiodir;
5380 gpiostate = snd_hda_codec_read(codec, codec->afg, 0,
5381 AC_VERB_GET_GPIO_DATA, 0);
5384 gpiostate |= (1 << pin);
5386 gpiostate &= ~(1 << pin);
5388 gpiomask = snd_hda_codec_read(codec, codec->afg, 0,
5389 AC_VERB_GET_GPIO_MASK, 0);
5390 gpiomask |= (1 << pin);
5392 gpiodir = snd_hda_codec_read(codec, codec->afg, 0,
5393 AC_VERB_GET_GPIO_DIRECTION, 0);
5394 gpiodir |= (1 << pin);
5397 snd_hda_codec_write(codec, codec->afg, 0,
5398 AC_VERB_SET_GPIO_MASK, gpiomask);
5399 snd_hda_codec_write(codec, codec->afg, 0,
5400 AC_VERB_SET_GPIO_DIRECTION, gpiodir);
5404 snd_hda_codec_write(codec, codec->afg, 0,
5405 AC_VERB_SET_GPIO_DATA, gpiostate);
5408 /* set up GPIO at initialization */
5409 static void alc885_macpro_init_hook(struct hda_codec *codec)
5411 alc882_gpio_mute(codec, 0, 0);
5412 alc882_gpio_mute(codec, 1, 0);
5415 /* set up GPIO and update auto-muting at initialization */
5416 static void alc885_imac24_init_hook(struct hda_codec *codec)
5418 alc885_macpro_init_hook(codec);
5419 alc885_imac24_automute(codec);
5423 * generic initialization of ADC, input mixers and output mixers
5425 static struct hda_verb alc882_auto_init_verbs[] = {
5427 * Unmute ADC0-2 and set the default input to mic-in
5429 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
5430 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5431 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
5432 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5433 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
5434 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5436 /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
5438 * Note: PASD motherboards uses the Line In 2 as the input for
5439 * front panel mic (mic 2)
5441 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
5442 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5443 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5444 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5445 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5446 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5449 * Set up output mixers (0x0c - 0x0f)
5451 /* set vol=0 to output mixers */
5452 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5453 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5454 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5455 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5456 /* set up input amps for analog loopback */
5457 /* Amp Indices: DAC = 0, mixer = 1 */
5458 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5459 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5460 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5461 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5462 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5463 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5464 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5465 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5466 {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5467 {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5469 /* FIXME: use matrix-type input source selection */
5470 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
5471 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
5472 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
5473 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
5474 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
5475 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
5477 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
5478 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
5479 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
5480 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
5482 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
5483 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
5484 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
5485 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
5490 /* capture mixer elements */
5491 static struct snd_kcontrol_new alc882_capture_alt_mixer[] = {
5492 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5493 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5494 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
5495 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
5497 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5498 /* The multiple "Capture Source" controls confuse alsamixer
5499 * So call somewhat different..
5500 * FIXME: the controls appear in the "playback" view!
5502 /* .name = "Capture Source", */
5503 .name = "Input Source",
5505 .info = alc882_mux_enum_info,
5506 .get = alc882_mux_enum_get,
5507 .put = alc882_mux_enum_put,
5512 static struct snd_kcontrol_new alc882_capture_mixer[] = {
5513 HDA_CODEC_VOLUME("Capture Volume", 0x07, 0x0, HDA_INPUT),
5514 HDA_CODEC_MUTE("Capture Switch", 0x07, 0x0, HDA_INPUT),
5515 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x08, 0x0, HDA_INPUT),
5516 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x08, 0x0, HDA_INPUT),
5517 HDA_CODEC_VOLUME_IDX("Capture Volume", 2, 0x09, 0x0, HDA_INPUT),
5518 HDA_CODEC_MUTE_IDX("Capture Switch", 2, 0x09, 0x0, HDA_INPUT),
5520 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5521 /* The multiple "Capture Source" controls confuse alsamixer
5522 * So call somewhat different..
5523 * FIXME: the controls appear in the "playback" view!
5525 /* .name = "Capture Source", */
5526 .name = "Input Source",
5528 .info = alc882_mux_enum_info,
5529 .get = alc882_mux_enum_get,
5530 .put = alc882_mux_enum_put,
5535 #ifdef CONFIG_SND_HDA_POWER_SAVE
5536 #define alc882_loopbacks alc880_loopbacks
5539 /* pcm configuration: identiacal with ALC880 */
5540 #define alc882_pcm_analog_playback alc880_pcm_analog_playback
5541 #define alc882_pcm_analog_capture alc880_pcm_analog_capture
5542 #define alc882_pcm_digital_playback alc880_pcm_digital_playback
5543 #define alc882_pcm_digital_capture alc880_pcm_digital_capture
5546 * configuration and preset
5548 static const char *alc882_models[ALC882_MODEL_LAST] = {
5549 [ALC882_3ST_DIG] = "3stack-dig",
5550 [ALC882_6ST_DIG] = "6stack-dig",
5551 [ALC882_ARIMA] = "arima",
5552 [ALC882_W2JC] = "w2jc",
5553 [ALC885_MACPRO] = "macpro",
5554 [ALC885_MBP3] = "mbp3",
5555 [ALC885_IMAC24] = "imac24",
5556 [ALC882_AUTO] = "auto",
5559 static struct snd_pci_quirk alc882_cfg_tbl[] = {
5560 SND_PCI_QUIRK(0x1019, 0x6668, "ECS", ALC882_6ST_DIG),
5561 SND_PCI_QUIRK(0x105b, 0x6668, "Foxconn", ALC882_6ST_DIG),
5562 SND_PCI_QUIRK(0x1462, 0x6668, "MSI", ALC882_6ST_DIG),
5563 SND_PCI_QUIRK(0x1462, 0x28fb, "Targa T8", ALC882_TARGA), /* MSI-1049 T8 */
5564 SND_PCI_QUIRK(0x161f, 0x2054, "Arima W820", ALC882_ARIMA),
5565 SND_PCI_QUIRK(0x1043, 0x060d, "Asus A7J", ALC882_ASUS_A7J),
5566 SND_PCI_QUIRK(0x1043, 0x817f, "Asus P5LD2", ALC882_6ST_DIG),
5567 SND_PCI_QUIRK(0x1043, 0x81d8, "Asus P5WD", ALC882_6ST_DIG),
5568 SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_W2JC),
5572 static struct alc_config_preset alc882_presets[] = {
5573 [ALC882_3ST_DIG] = {
5574 .mixers = { alc882_base_mixer },
5575 .init_verbs = { alc882_init_verbs },
5576 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5577 .dac_nids = alc882_dac_nids,
5578 .dig_out_nid = ALC882_DIGOUT_NID,
5579 .dig_in_nid = ALC882_DIGIN_NID,
5580 .num_channel_mode = ARRAY_SIZE(alc882_ch_modes),
5581 .channel_mode = alc882_ch_modes,
5583 .input_mux = &alc882_capture_source,
5585 [ALC882_6ST_DIG] = {
5586 .mixers = { alc882_base_mixer, alc882_chmode_mixer },
5587 .init_verbs = { alc882_init_verbs },
5588 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5589 .dac_nids = alc882_dac_nids,
5590 .dig_out_nid = ALC882_DIGOUT_NID,
5591 .dig_in_nid = ALC882_DIGIN_NID,
5592 .num_channel_mode = ARRAY_SIZE(alc882_sixstack_modes),
5593 .channel_mode = alc882_sixstack_modes,
5594 .input_mux = &alc882_capture_source,
5597 .mixers = { alc882_base_mixer, alc882_chmode_mixer },
5598 .init_verbs = { alc882_init_verbs, alc882_eapd_verbs },
5599 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5600 .dac_nids = alc882_dac_nids,
5601 .num_channel_mode = ARRAY_SIZE(alc882_sixstack_modes),
5602 .channel_mode = alc882_sixstack_modes,
5603 .input_mux = &alc882_capture_source,
5606 .mixers = { alc882_w2jc_mixer, alc882_chmode_mixer },
5607 .init_verbs = { alc882_init_verbs, alc882_eapd_verbs,
5608 alc880_gpio1_init_verbs },
5609 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5610 .dac_nids = alc882_dac_nids,
5611 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
5612 .channel_mode = alc880_threestack_modes,
5614 .input_mux = &alc882_capture_source,
5615 .dig_out_nid = ALC882_DIGOUT_NID,
5618 .mixers = { alc885_mbp3_mixer, alc882_chmode_mixer },
5619 .init_verbs = { alc885_mbp3_init_verbs,
5620 alc880_gpio1_init_verbs },
5621 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5622 .dac_nids = alc882_dac_nids,
5623 .channel_mode = alc885_mbp_6ch_modes,
5624 .num_channel_mode = ARRAY_SIZE(alc885_mbp_6ch_modes),
5625 .input_mux = &alc882_capture_source,
5626 .dig_out_nid = ALC882_DIGOUT_NID,
5627 .dig_in_nid = ALC882_DIGIN_NID,
5628 .unsol_event = alc885_mbp3_unsol_event,
5629 .init_hook = alc885_mbp3_automute,
5632 .mixers = { alc882_macpro_mixer },
5633 .init_verbs = { alc882_macpro_init_verbs },
5634 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5635 .dac_nids = alc882_dac_nids,
5636 .dig_out_nid = ALC882_DIGOUT_NID,
5637 .dig_in_nid = ALC882_DIGIN_NID,
5638 .num_channel_mode = ARRAY_SIZE(alc882_ch_modes),
5639 .channel_mode = alc882_ch_modes,
5640 .input_mux = &alc882_capture_source,
5641 .init_hook = alc885_macpro_init_hook,
5644 .mixers = { alc885_imac24_mixer },
5645 .init_verbs = { alc885_imac24_init_verbs },
5646 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5647 .dac_nids = alc882_dac_nids,
5648 .dig_out_nid = ALC882_DIGOUT_NID,
5649 .dig_in_nid = ALC882_DIGIN_NID,
5650 .num_channel_mode = ARRAY_SIZE(alc882_ch_modes),
5651 .channel_mode = alc882_ch_modes,
5652 .input_mux = &alc882_capture_source,
5653 .unsol_event = alc885_imac24_unsol_event,
5654 .init_hook = alc885_imac24_init_hook,
5657 .mixers = { alc882_targa_mixer, alc882_chmode_mixer,
5658 alc882_capture_mixer },
5659 .init_verbs = { alc882_init_verbs, alc882_targa_verbs},
5660 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5661 .dac_nids = alc882_dac_nids,
5662 .dig_out_nid = ALC882_DIGOUT_NID,
5663 .num_adc_nids = ARRAY_SIZE(alc882_adc_nids),
5664 .adc_nids = alc882_adc_nids,
5665 .num_channel_mode = ARRAY_SIZE(alc882_3ST_6ch_modes),
5666 .channel_mode = alc882_3ST_6ch_modes,
5668 .input_mux = &alc882_capture_source,
5669 .unsol_event = alc882_targa_unsol_event,
5670 .init_hook = alc882_targa_automute,
5672 [ALC882_ASUS_A7J] = {
5673 .mixers = { alc882_asus_a7j_mixer, alc882_chmode_mixer,
5674 alc882_capture_mixer },
5675 .init_verbs = { alc882_init_verbs, alc882_asus_a7j_verbs},
5676 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5677 .dac_nids = alc882_dac_nids,
5678 .dig_out_nid = ALC882_DIGOUT_NID,
5679 .num_adc_nids = ARRAY_SIZE(alc882_adc_nids),
5680 .adc_nids = alc882_adc_nids,
5681 .num_channel_mode = ARRAY_SIZE(alc882_3ST_6ch_modes),
5682 .channel_mode = alc882_3ST_6ch_modes,
5684 .input_mux = &alc882_capture_source,
5693 PINFIX_ABIT_AW9D_MAX
5696 static struct alc_pincfg alc882_abit_aw9d_pinfix[] = {
5697 { 0x15, 0x01080104 }, /* side */
5698 { 0x16, 0x01011012 }, /* rear */
5699 { 0x17, 0x01016011 }, /* clfe */
5703 static const struct alc_pincfg *alc882_pin_fixes[] = {
5704 [PINFIX_ABIT_AW9D_MAX] = alc882_abit_aw9d_pinfix,
5707 static struct snd_pci_quirk alc882_pinfix_tbl[] = {
5708 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", PINFIX_ABIT_AW9D_MAX),
5713 * BIOS auto configuration
5715 static void alc882_auto_set_output_and_unmute(struct hda_codec *codec,
5716 hda_nid_t nid, int pin_type,
5720 struct alc_spec *spec = codec->spec;
5723 if (spec->multiout.dac_nids[dac_idx] == 0x25)
5726 idx = spec->multiout.dac_nids[dac_idx] - 2;
5728 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
5730 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
5732 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, idx);
5736 static void alc882_auto_init_multi_out(struct hda_codec *codec)
5738 struct alc_spec *spec = codec->spec;
5741 alc_subsystem_id(codec, 0x15, 0x1b, 0x14);
5742 for (i = 0; i <= HDA_SIDE; i++) {
5743 hda_nid_t nid = spec->autocfg.line_out_pins[i];
5744 int pin_type = get_pin_type(spec->autocfg.line_out_type);
5746 alc882_auto_set_output_and_unmute(codec, nid, pin_type,
5751 static void alc882_auto_init_hp_out(struct hda_codec *codec)
5753 struct alc_spec *spec = codec->spec;
5756 pin = spec->autocfg.hp_pins[0];
5757 if (pin) /* connect to front */
5759 alc882_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
5762 #define alc882_is_input_pin(nid) alc880_is_input_pin(nid)
5763 #define ALC882_PIN_CD_NID ALC880_PIN_CD_NID
5765 static void alc882_auto_init_analog_input(struct hda_codec *codec)
5767 struct alc_spec *spec = codec->spec;
5770 for (i = 0; i < AUTO_PIN_LAST; i++) {
5771 hda_nid_t nid = spec->autocfg.input_pins[i];
5772 if (alc882_is_input_pin(nid)) {
5773 snd_hda_codec_write(codec, nid, 0,
5774 AC_VERB_SET_PIN_WIDGET_CONTROL,
5775 i <= AUTO_PIN_FRONT_MIC ?
5776 PIN_VREF80 : PIN_IN);
5777 if (nid != ALC882_PIN_CD_NID)
5778 snd_hda_codec_write(codec, nid, 0,
5779 AC_VERB_SET_AMP_GAIN_MUTE,
5785 /* almost identical with ALC880 parser... */
5786 static int alc882_parse_auto_config(struct hda_codec *codec)
5788 struct alc_spec *spec = codec->spec;
5789 int err = alc880_parse_auto_config(codec);
5794 /* hack - override the init verbs */
5795 spec->init_verbs[0] = alc882_auto_init_verbs;
5799 /* additional initialization for auto-configuration model */
5800 static void alc882_auto_init(struct hda_codec *codec)
5802 alc882_auto_init_multi_out(codec);
5803 alc882_auto_init_hp_out(codec);
5804 alc882_auto_init_analog_input(codec);
5807 static int patch_alc882(struct hda_codec *codec)
5809 struct alc_spec *spec;
5810 int err, board_config;
5812 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5818 board_config = snd_hda_check_board_config(codec, ALC882_MODEL_LAST,
5822 if (board_config < 0 || board_config >= ALC882_MODEL_LAST) {
5823 /* Pick up systems that don't supply PCI SSID */
5824 switch (codec->subsystem_id) {
5825 case 0x106b0c00: /* Mac Pro */
5826 board_config = ALC885_MACPRO;
5828 case 0x106b1000: /* iMac 24 */
5829 board_config = ALC885_IMAC24;
5831 case 0x106b2c00: /* Macbook Pro rev3 */
5832 board_config = ALC885_MBP3;
5835 printk(KERN_INFO "hda_codec: Unknown model for ALC882, "
5836 "trying auto-probe from BIOS...\n");
5837 board_config = ALC882_AUTO;
5841 alc_fix_pincfg(codec, alc882_pinfix_tbl, alc882_pin_fixes);
5843 if (board_config == ALC882_AUTO) {
5844 /* automatic parse from the BIOS config */
5845 err = alc882_parse_auto_config(codec);
5851 "hda_codec: Cannot set up configuration "
5852 "from BIOS. Using base mode...\n");
5853 board_config = ALC882_3ST_DIG;
5857 if (board_config != ALC882_AUTO)
5858 setup_preset(spec, &alc882_presets[board_config]);
5860 spec->stream_name_analog = "ALC882 Analog";
5861 spec->stream_analog_playback = &alc882_pcm_analog_playback;
5862 spec->stream_analog_capture = &alc882_pcm_analog_capture;
5864 spec->stream_name_digital = "ALC882 Digital";
5865 spec->stream_digital_playback = &alc882_pcm_digital_playback;
5866 spec->stream_digital_capture = &alc882_pcm_digital_capture;
5868 if (!spec->adc_nids && spec->input_mux) {
5869 /* check whether NID 0x07 is valid */
5870 unsigned int wcap = get_wcaps(codec, 0x07);
5872 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
5873 if (wcap != AC_WID_AUD_IN) {
5874 spec->adc_nids = alc882_adc_nids_alt;
5875 spec->num_adc_nids = ARRAY_SIZE(alc882_adc_nids_alt);
5876 spec->mixers[spec->num_mixers] =
5877 alc882_capture_alt_mixer;
5880 spec->adc_nids = alc882_adc_nids;
5881 spec->num_adc_nids = ARRAY_SIZE(alc882_adc_nids);
5882 spec->mixers[spec->num_mixers] = alc882_capture_mixer;
5887 codec->patch_ops = alc_patch_ops;
5888 if (board_config == ALC882_AUTO)
5889 spec->init_hook = alc882_auto_init;
5890 #ifdef CONFIG_SND_HDA_POWER_SAVE
5891 if (!spec->loopback.amplist)
5892 spec->loopback.amplist = alc882_loopbacks;
5901 * ALC883 is almost identical with ALC880 but has cleaner and more flexible
5902 * configuration. Each pin widget can choose any input DACs and a mixer.
5903 * Each ADC is connected from a mixer of all inputs. This makes possible
5904 * 6-channel independent captures.
5906 * In addition, an independent DAC for the multi-playback (not used in this
5909 #define ALC883_DIGOUT_NID 0x06
5910 #define ALC883_DIGIN_NID 0x0a
5912 static hda_nid_t alc883_dac_nids[4] = {
5913 /* front, rear, clfe, rear_surr */
5914 0x02, 0x04, 0x03, 0x05
5917 static hda_nid_t alc883_adc_nids[2] = {
5923 /* FIXME: should be a matrix-type input source selection */
5925 static struct hda_input_mux alc883_capture_source = {
5929 { "Front Mic", 0x1 },