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 */
106 ALC268_MODEL_LAST /* last tag */
123 /* ALC861-VD models */
167 ALC883_TARGA_2ch_DIG,
172 ALC883_LENOVO_101E_2ch,
173 ALC883_LENOVO_NB0763,
174 ALC888_LENOVO_MS7195_DIG,
182 #define GPIO_MASK 0x03
185 /* codec parameterization */
186 struct snd_kcontrol_new *mixers[5]; /* mixer arrays */
187 unsigned int num_mixers;
189 const struct hda_verb *init_verbs[5]; /* initialization verbs
193 unsigned int num_init_verbs;
195 char *stream_name_analog; /* analog PCM stream */
196 struct hda_pcm_stream *stream_analog_playback;
197 struct hda_pcm_stream *stream_analog_capture;
199 char *stream_name_digital; /* digital PCM stream */
200 struct hda_pcm_stream *stream_digital_playback;
201 struct hda_pcm_stream *stream_digital_capture;
204 struct hda_multi_out multiout; /* playback set-up
205 * max_channels, dacs must be set
206 * dig_out_nid and hp_nid are optional
210 unsigned int num_adc_nids;
212 hda_nid_t dig_in_nid; /* digital-in NID; optional */
215 unsigned int num_mux_defs;
216 const struct hda_input_mux *input_mux;
217 unsigned int cur_mux[3];
220 const struct hda_channel_mode *channel_mode;
221 int num_channel_mode;
224 /* PCM information */
225 struct hda_pcm pcm_rec[3]; /* used in alc_build_pcms() */
227 /* dynamic controls, init_verbs and input_mux */
228 struct auto_pin_cfg autocfg;
229 unsigned int num_kctl_alloc, num_kctl_used;
230 struct snd_kcontrol_new *kctl_alloc;
231 struct hda_input_mux private_imux;
232 hda_nid_t private_dac_nids[5];
235 void (*init_hook)(struct hda_codec *codec);
236 void (*unsol_event)(struct hda_codec *codec, unsigned int res);
238 /* for pin sensing */
239 unsigned int sense_updated: 1;
240 unsigned int jack_present: 1;
244 * configuration template - to be copied to the spec instance
246 struct alc_config_preset {
247 struct snd_kcontrol_new *mixers[5]; /* should be identical size
250 const struct hda_verb *init_verbs[5];
251 unsigned int num_dacs;
253 hda_nid_t dig_out_nid; /* optional */
254 hda_nid_t hp_nid; /* optional */
255 unsigned int num_adc_nids;
257 hda_nid_t dig_in_nid;
258 unsigned int num_channel_mode;
259 const struct hda_channel_mode *channel_mode;
261 unsigned int num_mux_defs;
262 const struct hda_input_mux *input_mux;
263 void (*unsol_event)(struct hda_codec *, unsigned int);
264 void (*init_hook)(struct hda_codec *);
271 static int alc_mux_enum_info(struct snd_kcontrol *kcontrol,
272 struct snd_ctl_elem_info *uinfo)
274 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
275 struct alc_spec *spec = codec->spec;
276 unsigned int mux_idx = snd_ctl_get_ioffidx(kcontrol, &uinfo->id);
277 if (mux_idx >= spec->num_mux_defs)
279 return snd_hda_input_mux_info(&spec->input_mux[mux_idx], uinfo);
282 static int alc_mux_enum_get(struct snd_kcontrol *kcontrol,
283 struct snd_ctl_elem_value *ucontrol)
285 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
286 struct alc_spec *spec = codec->spec;
287 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
289 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
293 static int alc_mux_enum_put(struct snd_kcontrol *kcontrol,
294 struct snd_ctl_elem_value *ucontrol)
296 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
297 struct alc_spec *spec = codec->spec;
298 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
299 unsigned int mux_idx = adc_idx >= spec->num_mux_defs ? 0 : adc_idx;
300 return snd_hda_input_mux_put(codec, &spec->input_mux[mux_idx], ucontrol,
301 spec->adc_nids[adc_idx],
302 &spec->cur_mux[adc_idx]);
307 * channel mode setting
309 static int alc_ch_mode_info(struct snd_kcontrol *kcontrol,
310 struct snd_ctl_elem_info *uinfo)
312 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
313 struct alc_spec *spec = codec->spec;
314 return snd_hda_ch_mode_info(codec, uinfo, spec->channel_mode,
315 spec->num_channel_mode);
318 static int alc_ch_mode_get(struct snd_kcontrol *kcontrol,
319 struct snd_ctl_elem_value *ucontrol)
321 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
322 struct alc_spec *spec = codec->spec;
323 return snd_hda_ch_mode_get(codec, ucontrol, spec->channel_mode,
324 spec->num_channel_mode,
325 spec->multiout.max_channels);
328 static int alc_ch_mode_put(struct snd_kcontrol *kcontrol,
329 struct snd_ctl_elem_value *ucontrol)
331 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
332 struct alc_spec *spec = codec->spec;
333 int err = snd_hda_ch_mode_put(codec, ucontrol, spec->channel_mode,
334 spec->num_channel_mode,
335 &spec->multiout.max_channels);
336 if (err >= 0 && spec->need_dac_fix)
337 spec->multiout.num_dacs = spec->multiout.max_channels / 2;
342 * Control the mode of pin widget settings via the mixer. "pc" is used
343 * instead of "%" to avoid consequences of accidently treating the % as
344 * being part of a format specifier. Maximum allowed length of a value is
345 * 63 characters plus NULL terminator.
347 * Note: some retasking pin complexes seem to ignore requests for input
348 * states other than HiZ (eg: PIN_VREFxx) and revert to HiZ if any of these
349 * are requested. Therefore order this list so that this behaviour will not
350 * cause problems when mixer clients move through the enum sequentially.
351 * NIDs 0x0f and 0x10 have been observed to have this behaviour as of
354 static char *alc_pin_mode_names[] = {
355 "Mic 50pc bias", "Mic 80pc bias",
356 "Line in", "Line out", "Headphone out",
358 static unsigned char alc_pin_mode_values[] = {
359 PIN_VREF50, PIN_VREF80, PIN_IN, PIN_OUT, PIN_HP,
361 /* The control can present all 5 options, or it can limit the options based
362 * in the pin being assumed to be exclusively an input or an output pin. In
363 * addition, "input" pins may or may not process the mic bias option
364 * depending on actual widget capability (NIDs 0x0f and 0x10 don't seem to
365 * accept requests for bias as of chip versions up to March 2006) and/or
366 * wiring in the computer.
368 #define ALC_PIN_DIR_IN 0x00
369 #define ALC_PIN_DIR_OUT 0x01
370 #define ALC_PIN_DIR_INOUT 0x02
371 #define ALC_PIN_DIR_IN_NOMICBIAS 0x03
372 #define ALC_PIN_DIR_INOUT_NOMICBIAS 0x04
374 /* Info about the pin modes supported by the different pin direction modes.
375 * For each direction the minimum and maximum values are given.
377 static signed char alc_pin_mode_dir_info[5][2] = {
378 { 0, 2 }, /* ALC_PIN_DIR_IN */
379 { 3, 4 }, /* ALC_PIN_DIR_OUT */
380 { 0, 4 }, /* ALC_PIN_DIR_INOUT */
381 { 2, 2 }, /* ALC_PIN_DIR_IN_NOMICBIAS */
382 { 2, 4 }, /* ALC_PIN_DIR_INOUT_NOMICBIAS */
384 #define alc_pin_mode_min(_dir) (alc_pin_mode_dir_info[_dir][0])
385 #define alc_pin_mode_max(_dir) (alc_pin_mode_dir_info[_dir][1])
386 #define alc_pin_mode_n_items(_dir) \
387 (alc_pin_mode_max(_dir)-alc_pin_mode_min(_dir)+1)
389 static int alc_pin_mode_info(struct snd_kcontrol *kcontrol,
390 struct snd_ctl_elem_info *uinfo)
392 unsigned int item_num = uinfo->value.enumerated.item;
393 unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
395 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
397 uinfo->value.enumerated.items = alc_pin_mode_n_items(dir);
399 if (item_num<alc_pin_mode_min(dir) || item_num>alc_pin_mode_max(dir))
400 item_num = alc_pin_mode_min(dir);
401 strcpy(uinfo->value.enumerated.name, alc_pin_mode_names[item_num]);
405 static int alc_pin_mode_get(struct snd_kcontrol *kcontrol,
406 struct snd_ctl_elem_value *ucontrol)
409 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
410 hda_nid_t nid = kcontrol->private_value & 0xffff;
411 unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
412 long *valp = ucontrol->value.integer.value;
413 unsigned int pinctl = snd_hda_codec_read(codec, nid, 0,
414 AC_VERB_GET_PIN_WIDGET_CONTROL,
417 /* Find enumerated value for current pinctl setting */
418 i = alc_pin_mode_min(dir);
419 while (alc_pin_mode_values[i] != pinctl && i <= alc_pin_mode_max(dir))
421 *valp = i <= alc_pin_mode_max(dir) ? i: alc_pin_mode_min(dir);
425 static int alc_pin_mode_put(struct snd_kcontrol *kcontrol,
426 struct snd_ctl_elem_value *ucontrol)
429 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
430 hda_nid_t nid = kcontrol->private_value & 0xffff;
431 unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
432 long val = *ucontrol->value.integer.value;
433 unsigned int pinctl = snd_hda_codec_read(codec, nid, 0,
434 AC_VERB_GET_PIN_WIDGET_CONTROL,
437 if (val < alc_pin_mode_min(dir) || val > alc_pin_mode_max(dir))
438 val = alc_pin_mode_min(dir);
440 change = pinctl != alc_pin_mode_values[val];
442 /* Set pin mode to that requested */
443 snd_hda_codec_write(codec,nid,0,AC_VERB_SET_PIN_WIDGET_CONTROL,
444 alc_pin_mode_values[val]);
446 /* Also enable the retasking pin's input/output as required
447 * for the requested pin mode. Enum values of 2 or less are
450 * Dynamically switching the input/output buffers probably
451 * reduces noise slightly (particularly on input) so we'll
452 * do it. However, having both input and output buffers
453 * enabled simultaneously doesn't seem to be problematic if
454 * this turns out to be necessary in the future.
457 snd_hda_codec_write(codec, nid, 0,
458 AC_VERB_SET_AMP_GAIN_MUTE,
460 snd_hda_codec_write(codec, nid, 0,
461 AC_VERB_SET_AMP_GAIN_MUTE,
464 snd_hda_codec_write(codec, nid, 0,
465 AC_VERB_SET_AMP_GAIN_MUTE,
467 snd_hda_codec_write(codec, nid, 0,
468 AC_VERB_SET_AMP_GAIN_MUTE,
475 #define ALC_PIN_MODE(xname, nid, dir) \
476 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
477 .info = alc_pin_mode_info, \
478 .get = alc_pin_mode_get, \
479 .put = alc_pin_mode_put, \
480 .private_value = nid | (dir<<16) }
482 /* A switch control for ALC260 GPIO pins. Multiple GPIOs can be ganged
483 * together using a mask with more than one bit set. This control is
484 * currently used only by the ALC260 test model. At this stage they are not
485 * needed for any "production" models.
487 #ifdef CONFIG_SND_DEBUG
488 static int alc_gpio_data_info(struct snd_kcontrol *kcontrol,
489 struct snd_ctl_elem_info *uinfo)
491 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
493 uinfo->value.integer.min = 0;
494 uinfo->value.integer.max = 1;
498 static int alc_gpio_data_get(struct snd_kcontrol *kcontrol,
499 struct snd_ctl_elem_value *ucontrol)
501 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
502 hda_nid_t nid = kcontrol->private_value & 0xffff;
503 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
504 long *valp = ucontrol->value.integer.value;
505 unsigned int val = snd_hda_codec_read(codec, nid, 0,
506 AC_VERB_GET_GPIO_DATA, 0x00);
508 *valp = (val & mask) != 0;
511 static int alc_gpio_data_put(struct snd_kcontrol *kcontrol,
512 struct snd_ctl_elem_value *ucontrol)
515 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
516 hda_nid_t nid = kcontrol->private_value & 0xffff;
517 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
518 long val = *ucontrol->value.integer.value;
519 unsigned int gpio_data = snd_hda_codec_read(codec, nid, 0,
520 AC_VERB_GET_GPIO_DATA,
523 /* Set/unset the masked GPIO bit(s) as needed */
524 change = (val == 0 ? 0 : mask) != (gpio_data & mask);
529 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_GPIO_DATA, gpio_data);
533 #define ALC_GPIO_DATA_SWITCH(xname, nid, mask) \
534 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
535 .info = alc_gpio_data_info, \
536 .get = alc_gpio_data_get, \
537 .put = alc_gpio_data_put, \
538 .private_value = nid | (mask<<16) }
539 #endif /* CONFIG_SND_DEBUG */
541 /* A switch control to allow the enabling of the digital IO pins on the
542 * ALC260. This is incredibly simplistic; the intention of this control is
543 * to provide something in the test model allowing digital outputs to be
544 * identified if present. If models are found which can utilise these
545 * outputs a more complete mixer control can be devised for those models if
548 #ifdef CONFIG_SND_DEBUG
549 static int alc_spdif_ctrl_info(struct snd_kcontrol *kcontrol,
550 struct snd_ctl_elem_info *uinfo)
552 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
554 uinfo->value.integer.min = 0;
555 uinfo->value.integer.max = 1;
559 static int alc_spdif_ctrl_get(struct snd_kcontrol *kcontrol,
560 struct snd_ctl_elem_value *ucontrol)
562 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
563 hda_nid_t nid = kcontrol->private_value & 0xffff;
564 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
565 long *valp = ucontrol->value.integer.value;
566 unsigned int val = snd_hda_codec_read(codec, nid, 0,
567 AC_VERB_GET_DIGI_CONVERT, 0x00);
569 *valp = (val & mask) != 0;
572 static int alc_spdif_ctrl_put(struct snd_kcontrol *kcontrol,
573 struct snd_ctl_elem_value *ucontrol)
576 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
577 hda_nid_t nid = kcontrol->private_value & 0xffff;
578 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
579 long val = *ucontrol->value.integer.value;
580 unsigned int ctrl_data = snd_hda_codec_read(codec, nid, 0,
581 AC_VERB_GET_DIGI_CONVERT,
584 /* Set/unset the masked control bit(s) as needed */
585 change = (val == 0 ? 0 : mask) != (ctrl_data & mask);
590 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_DIGI_CONVERT_1,
595 #define ALC_SPDIF_CTRL_SWITCH(xname, nid, mask) \
596 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
597 .info = alc_spdif_ctrl_info, \
598 .get = alc_spdif_ctrl_get, \
599 .put = alc_spdif_ctrl_put, \
600 .private_value = nid | (mask<<16) }
601 #endif /* CONFIG_SND_DEBUG */
604 * set up from the preset table
606 static void setup_preset(struct alc_spec *spec,
607 const struct alc_config_preset *preset)
611 for (i = 0; i < ARRAY_SIZE(preset->mixers) && preset->mixers[i]; i++)
612 spec->mixers[spec->num_mixers++] = preset->mixers[i];
613 for (i = 0; i < ARRAY_SIZE(preset->init_verbs) && preset->init_verbs[i];
615 spec->init_verbs[spec->num_init_verbs++] =
616 preset->init_verbs[i];
618 spec->channel_mode = preset->channel_mode;
619 spec->num_channel_mode = preset->num_channel_mode;
620 spec->need_dac_fix = preset->need_dac_fix;
622 spec->multiout.max_channels = spec->channel_mode[0].channels;
624 spec->multiout.num_dacs = preset->num_dacs;
625 spec->multiout.dac_nids = preset->dac_nids;
626 spec->multiout.dig_out_nid = preset->dig_out_nid;
627 spec->multiout.hp_nid = preset->hp_nid;
629 spec->num_mux_defs = preset->num_mux_defs;
630 if (!spec->num_mux_defs)
631 spec->num_mux_defs = 1;
632 spec->input_mux = preset->input_mux;
634 spec->num_adc_nids = preset->num_adc_nids;
635 spec->adc_nids = preset->adc_nids;
636 spec->dig_in_nid = preset->dig_in_nid;
638 spec->unsol_event = preset->unsol_event;
639 spec->init_hook = preset->init_hook;
642 /* Enable GPIO mask and set output */
643 static struct hda_verb alc_gpio1_init_verbs[] = {
644 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
645 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
646 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
650 static struct hda_verb alc_gpio2_init_verbs[] = {
651 {0x01, AC_VERB_SET_GPIO_MASK, 0x02},
652 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x02},
653 {0x01, AC_VERB_SET_GPIO_DATA, 0x02},
657 static struct hda_verb alc_gpio3_init_verbs[] = {
658 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
659 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
660 {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
664 /* 32-bit subsystem ID for BIOS loading in HD Audio codec.
665 * 31 ~ 16 : Manufacture ID
667 * 7 ~ 0 : Assembly ID
668 * port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
670 static void alc_subsystem_id(struct hda_codec *codec,
671 unsigned int porta, unsigned int porte,
674 unsigned int ass, tmp;
676 ass = codec->subsystem_id;
681 tmp = (ass & 0x38) >> 3; /* external Amp control */
684 snd_hda_sequence_write(codec, alc_gpio1_init_verbs);
687 snd_hda_sequence_write(codec, alc_gpio2_init_verbs);
690 snd_hda_sequence_write(codec, alc_gpio3_init_verbs);
693 switch (codec->vendor_id) {
699 snd_hda_codec_write(codec, 0x14, 0,
700 AC_VERB_SET_EAPD_BTLENABLE, 2);
701 snd_hda_codec_write(codec, 0x15, 0,
702 AC_VERB_SET_EAPD_BTLENABLE, 2);
706 if (ass & 4) { /* bit 2 : 0 = Desktop, 1 = Laptop */
708 tmp = (ass & 0x1800) >> 11;
710 case 0: port = porta; break;
711 case 1: port = porte; break;
712 case 2: port = portd; break;
715 snd_hda_codec_write(codec, port, 0,
716 AC_VERB_SET_EAPD_BTLENABLE,
719 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
720 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PROC_COEF,
721 (tmp == 5 ? 0x3040 : 0x3050));
727 * Fix-up pin default configurations
735 static void alc_fix_pincfg(struct hda_codec *codec,
736 const struct snd_pci_quirk *quirk,
737 const struct alc_pincfg **pinfix)
739 const struct alc_pincfg *cfg;
741 quirk = snd_pci_quirk_lookup(codec->bus->pci, quirk);
745 cfg = pinfix[quirk->value];
746 for (; cfg->nid; cfg++) {
749 for (i = 0; i < 4; i++) {
750 snd_hda_codec_write(codec, cfg->nid, 0,
751 AC_VERB_SET_CONFIG_DEFAULT_BYTES_0 + i,
759 * ALC880 3-stack model
761 * DAC: Front = 0x02 (0x0c), Surr = 0x05 (0x0f), CLFE = 0x04 (0x0e)
762 * Pin assignment: Front = 0x14, Line-In/Surr = 0x1a, Mic/CLFE = 0x18,
763 * F-Mic = 0x1b, HP = 0x19
766 static hda_nid_t alc880_dac_nids[4] = {
767 /* front, rear, clfe, rear_surr */
768 0x02, 0x05, 0x04, 0x03
771 static hda_nid_t alc880_adc_nids[3] = {
776 /* The datasheet says the node 0x07 is connected from inputs,
777 * but it shows zero connection in the real implementation on some devices.
778 * Note: this is a 915GAV bug, fixed on 915GLV
780 static hda_nid_t alc880_adc_nids_alt[2] = {
785 #define ALC880_DIGOUT_NID 0x06
786 #define ALC880_DIGIN_NID 0x0a
788 static struct hda_input_mux alc880_capture_source = {
792 { "Front Mic", 0x3 },
798 /* channel source setting (2/6 channel selection for 3-stack) */
800 static struct hda_verb alc880_threestack_ch2_init[] = {
801 /* set line-in to input, mute it */
802 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
803 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
804 /* set mic-in to input vref 80%, mute it */
805 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
806 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
811 static struct hda_verb alc880_threestack_ch6_init[] = {
812 /* set line-in to output, unmute it */
813 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
814 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
815 /* set mic-in to output, unmute it */
816 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
817 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
821 static struct hda_channel_mode alc880_threestack_modes[2] = {
822 { 2, alc880_threestack_ch2_init },
823 { 6, alc880_threestack_ch6_init },
826 static struct snd_kcontrol_new alc880_three_stack_mixer[] = {
827 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
828 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
829 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
830 HDA_BIND_MUTE("Surround Playback Switch", 0x0f, 2, HDA_INPUT),
831 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
832 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
833 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
834 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
835 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
836 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
837 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
838 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
839 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
840 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
841 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x3, HDA_INPUT),
842 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x3, HDA_INPUT),
843 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
844 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
845 HDA_CODEC_MUTE("Headphone Playback Switch", 0x19, 0x0, HDA_OUTPUT),
847 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
848 .name = "Channel Mode",
849 .info = alc_ch_mode_info,
850 .get = alc_ch_mode_get,
851 .put = alc_ch_mode_put,
856 /* capture mixer elements */
857 static struct snd_kcontrol_new alc880_capture_mixer[] = {
858 HDA_CODEC_VOLUME("Capture Volume", 0x07, 0x0, HDA_INPUT),
859 HDA_CODEC_MUTE("Capture Switch", 0x07, 0x0, HDA_INPUT),
860 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x08, 0x0, HDA_INPUT),
861 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x08, 0x0, HDA_INPUT),
862 HDA_CODEC_VOLUME_IDX("Capture Volume", 2, 0x09, 0x0, HDA_INPUT),
863 HDA_CODEC_MUTE_IDX("Capture Switch", 2, 0x09, 0x0, HDA_INPUT),
865 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
866 /* The multiple "Capture Source" controls confuse alsamixer
867 * So call somewhat different..
868 * FIXME: the controls appear in the "playback" view!
870 /* .name = "Capture Source", */
871 .name = "Input Source",
873 .info = alc_mux_enum_info,
874 .get = alc_mux_enum_get,
875 .put = alc_mux_enum_put,
880 /* capture mixer elements (in case NID 0x07 not available) */
881 static struct snd_kcontrol_new alc880_capture_alt_mixer[] = {
882 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
883 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
884 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
885 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
887 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
888 /* The multiple "Capture Source" controls confuse alsamixer
889 * So call somewhat different..
890 * FIXME: the controls appear in the "playback" view!
892 /* .name = "Capture Source", */
893 .name = "Input Source",
895 .info = alc_mux_enum_info,
896 .get = alc_mux_enum_get,
897 .put = alc_mux_enum_put,
905 * ALC880 5-stack model
907 * DAC: Front = 0x02 (0x0c), Surr = 0x05 (0x0f), CLFE = 0x04 (0x0d),
909 * Pin assignment: Front = 0x14, Surr = 0x17, CLFE = 0x16
910 * Line-In/Side = 0x1a, Mic = 0x18, F-Mic = 0x1b, HP = 0x19
913 /* additional mixers to alc880_three_stack_mixer */
914 static struct snd_kcontrol_new alc880_five_stack_mixer[] = {
915 HDA_CODEC_VOLUME("Side Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
916 HDA_BIND_MUTE("Side Playback Switch", 0x0d, 2, HDA_INPUT),
920 /* channel source setting (6/8 channel selection for 5-stack) */
922 static struct hda_verb alc880_fivestack_ch6_init[] = {
923 /* set line-in to input, mute it */
924 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
925 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
930 static struct hda_verb alc880_fivestack_ch8_init[] = {
931 /* set line-in to output, unmute it */
932 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
933 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
937 static struct hda_channel_mode alc880_fivestack_modes[2] = {
938 { 6, alc880_fivestack_ch6_init },
939 { 8, alc880_fivestack_ch8_init },
944 * ALC880 6-stack model
946 * DAC: Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e),
948 * Pin assignment: Front = 0x14, Surr = 0x15, CLFE = 0x16, Side = 0x17,
949 * Mic = 0x18, F-Mic = 0x19, Line = 0x1a, HP = 0x1b
952 static hda_nid_t alc880_6st_dac_nids[4] = {
953 /* front, rear, clfe, rear_surr */
954 0x02, 0x03, 0x04, 0x05
957 static struct hda_input_mux alc880_6stack_capture_source = {
961 { "Front Mic", 0x1 },
967 /* fixed 8-channels */
968 static struct hda_channel_mode alc880_sixstack_modes[1] = {
972 static struct snd_kcontrol_new alc880_six_stack_mixer[] = {
973 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
974 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
975 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
976 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
977 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
978 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
979 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
980 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
981 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
982 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
983 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
984 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
985 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
986 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
987 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
988 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
989 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
990 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
991 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
992 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
994 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
995 .name = "Channel Mode",
996 .info = alc_ch_mode_info,
997 .get = alc_ch_mode_get,
998 .put = alc_ch_mode_put,
1007 * W810 has rear IO for:
1010 * Center/LFE (DAC 04)
1013 * The system also has a pair of internal speakers, and a headphone jack.
1014 * These are both connected to Line2 on the codec, hence to DAC 02.
1016 * There is a variable resistor to control the speaker or headphone
1017 * volume. This is a hardware-only device without a software API.
1019 * Plugging headphones in will disable the internal speakers. This is
1020 * implemented in hardware, not via the driver using jack sense. In
1021 * a similar fashion, plugging into the rear socket marked "front" will
1022 * disable both the speakers and headphones.
1024 * For input, there's a microphone jack, and an "audio in" jack.
1025 * These may not do anything useful with this driver yet, because I
1026 * haven't setup any initialization verbs for these yet...
1029 static hda_nid_t alc880_w810_dac_nids[3] = {
1030 /* front, rear/surround, clfe */
1034 /* fixed 6 channels */
1035 static struct hda_channel_mode alc880_w810_modes[1] = {
1039 /* Pin assignment: Front = 0x14, Surr = 0x15, CLFE = 0x16, HP = 0x1b */
1040 static struct snd_kcontrol_new alc880_w810_base_mixer[] = {
1041 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1042 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
1043 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1044 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
1045 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
1046 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
1047 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
1048 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
1049 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
1057 * DAC: Front = 0x02 (0x0c), HP = 0x03 (0x0d)
1058 * Pin assignment: Front = 0x14, HP = 0x15, Mic = 0x18, Mic2 = 0x19(?),
1062 static hda_nid_t alc880_z71v_dac_nids[1] = {
1065 #define ALC880_Z71V_HP_DAC 0x03
1067 /* fixed 2 channels */
1068 static struct hda_channel_mode alc880_2_jack_modes[1] = {
1072 static struct snd_kcontrol_new alc880_z71v_mixer[] = {
1073 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1074 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
1075 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1076 HDA_BIND_MUTE("Headphone Playback Switch", 0x0d, 2, HDA_INPUT),
1077 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1078 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1079 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1080 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1087 * ALC880 F1734 model
1089 * DAC: HP = 0x02 (0x0c), Front = 0x03 (0x0d)
1090 * Pin assignment: HP = 0x14, Front = 0x15, Mic = 0x18
1093 static hda_nid_t alc880_f1734_dac_nids[1] = {
1096 #define ALC880_F1734_HP_DAC 0x02
1098 static struct snd_kcontrol_new alc880_f1734_mixer[] = {
1099 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1100 HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT),
1101 HDA_CODEC_VOLUME("Internal Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1102 HDA_BIND_MUTE("Internal Speaker Playback Switch", 0x0d, 2, HDA_INPUT),
1103 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1104 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1105 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1106 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1115 * DAC: HP/Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e)
1116 * Pin assignment: HP/Front = 0x14, Surr = 0x15, CLFE = 0x16,
1117 * Mic = 0x18, Line = 0x1a
1120 #define alc880_asus_dac_nids alc880_w810_dac_nids /* identical with w810 */
1121 #define alc880_asus_modes alc880_threestack_modes /* 2/6 channel mode */
1123 static struct snd_kcontrol_new alc880_asus_mixer[] = {
1124 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1125 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
1126 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1127 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
1128 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
1129 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
1130 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
1131 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
1132 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1133 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1134 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
1135 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
1136 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1137 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1139 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1140 .name = "Channel Mode",
1141 .info = alc_ch_mode_info,
1142 .get = alc_ch_mode_get,
1143 .put = alc_ch_mode_put,
1150 * ALC880 ASUS W1V model
1152 * DAC: HP/Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e)
1153 * Pin assignment: HP/Front = 0x14, Surr = 0x15, CLFE = 0x16,
1154 * Mic = 0x18, Line = 0x1a, Line2 = 0x1b
1157 /* additional mixers to alc880_asus_mixer */
1158 static struct snd_kcontrol_new alc880_asus_w1v_mixer[] = {
1159 HDA_CODEC_VOLUME("Line2 Playback Volume", 0x0b, 0x03, HDA_INPUT),
1160 HDA_CODEC_MUTE("Line2 Playback Switch", 0x0b, 0x03, HDA_INPUT),
1164 /* additional mixers to alc880_asus_mixer */
1165 static struct snd_kcontrol_new alc880_pcbeep_mixer[] = {
1166 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
1167 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
1172 static struct snd_kcontrol_new alc880_tcl_s700_mixer[] = {
1173 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1174 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
1175 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
1176 HDA_CODEC_VOLUME("CD Playback Volume", 0x0B, 0x04, HDA_INPUT),
1177 HDA_CODEC_MUTE("CD Playback Switch", 0x0B, 0x04, HDA_INPUT),
1178 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0B, 0x0, HDA_INPUT),
1179 HDA_CODEC_MUTE("Mic Playback Switch", 0x0B, 0x0, HDA_INPUT),
1180 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
1181 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
1183 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1184 /* The multiple "Capture Source" controls confuse alsamixer
1185 * So call somewhat different..
1186 * FIXME: the controls appear in the "playback" view!
1188 /* .name = "Capture Source", */
1189 .name = "Input Source",
1191 .info = alc_mux_enum_info,
1192 .get = alc_mux_enum_get,
1193 .put = alc_mux_enum_put,
1199 static struct snd_kcontrol_new alc880_uniwill_mixer[] = {
1200 HDA_CODEC_VOLUME("HPhone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1201 HDA_BIND_MUTE("HPhone Playback Switch", 0x0c, 2, HDA_INPUT),
1202 HDA_CODEC_VOLUME("iSpeaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1203 HDA_BIND_MUTE("iSpeaker Playback Switch", 0x0d, 2, HDA_INPUT),
1204 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
1205 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
1206 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
1207 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
1208 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1209 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1210 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
1211 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
1212 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1213 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1214 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
1215 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
1216 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
1217 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
1219 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1220 .name = "Channel Mode",
1221 .info = alc_ch_mode_info,
1222 .get = alc_ch_mode_get,
1223 .put = alc_ch_mode_put,
1228 static struct snd_kcontrol_new alc880_fujitsu_mixer[] = {
1229 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1230 HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT),
1231 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1232 HDA_BIND_MUTE("Speaker Playback Switch", 0x0d, 2, HDA_INPUT),
1233 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1234 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1235 HDA_CODEC_VOLUME("Ext Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1236 HDA_CODEC_MUTE("Ext Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1237 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
1238 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
1242 static struct snd_kcontrol_new alc880_uniwill_p53_mixer[] = {
1243 HDA_CODEC_VOLUME("HPhone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1244 HDA_BIND_MUTE("HPhone Playback Switch", 0x0c, 2, HDA_INPUT),
1245 HDA_CODEC_VOLUME("iSpeaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1246 HDA_BIND_MUTE("iSpeaker Playback Switch", 0x0d, 2, HDA_INPUT),
1247 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1248 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1253 * build control elements
1255 static int alc_build_controls(struct hda_codec *codec)
1257 struct alc_spec *spec = codec->spec;
1261 for (i = 0; i < spec->num_mixers; i++) {
1262 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
1267 if (spec->multiout.dig_out_nid) {
1268 err = snd_hda_create_spdif_out_ctls(codec,
1269 spec->multiout.dig_out_nid);
1273 if (spec->dig_in_nid) {
1274 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
1283 * initialize the codec volumes, etc
1287 * generic initialization of ADC, input mixers and output mixers
1289 static struct hda_verb alc880_volume_init_verbs[] = {
1291 * Unmute ADC0-2 and set the default input to mic-in
1293 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
1294 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1295 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
1296 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1297 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
1298 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1300 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
1302 * Note: PASD motherboards uses the Line In 2 as the input for front
1305 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
1306 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1307 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1308 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
1309 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
1310 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
1313 * Set up output mixers (0x0c - 0x0f)
1315 /* set vol=0 to output mixers */
1316 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1317 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1318 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1319 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1320 /* set up input amps for analog loopback */
1321 /* Amp Indices: DAC = 0, mixer = 1 */
1322 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1323 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1324 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1325 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1326 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1327 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1328 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1329 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1335 * 3-stack pin configuration:
1336 * front = 0x14, mic/clfe = 0x18, HP = 0x19, line/surr = 0x1a, f-mic = 0x1b
1338 static struct hda_verb alc880_pin_3stack_init_verbs[] = {
1340 * preset connection lists of input pins
1341 * 0 = front, 1 = rear_surr, 2 = CLFE, 3 = surround
1343 {0x10, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
1344 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1345 {0x12, AC_VERB_SET_CONNECT_SEL, 0x03}, /* line/surround */
1348 * Set pin mode and muting
1350 /* set front pin widgets 0x14 for output */
1351 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1352 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1353 /* Mic1 (rear panel) pin widget for input and vref at 80% */
1354 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1355 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1356 /* Mic2 (as headphone out) for HP output */
1357 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1358 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1359 /* Line In pin widget for input */
1360 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1361 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1362 /* Line2 (as front mic) pin widget for input and vref at 80% */
1363 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1364 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1365 /* CD pin widget for input */
1366 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1372 * 5-stack pin configuration:
1373 * front = 0x14, surround = 0x17, clfe = 0x16, mic = 0x18, HP = 0x19,
1374 * line-in/side = 0x1a, f-mic = 0x1b
1376 static struct hda_verb alc880_pin_5stack_init_verbs[] = {
1378 * preset connection lists of input pins
1379 * 0 = front, 1 = rear_surr, 2 = CLFE, 3 = surround
1381 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1382 {0x12, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/side */
1385 * Set pin mode and muting
1387 /* set pin widgets 0x14-0x17 for output */
1388 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1389 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1390 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1391 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1392 /* unmute pins for output (no gain on this amp) */
1393 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1394 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1395 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1396 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1398 /* Mic1 (rear panel) pin widget for input and vref at 80% */
1399 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1400 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1401 /* Mic2 (as headphone out) for HP output */
1402 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1403 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1404 /* Line In pin widget for input */
1405 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1406 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1407 /* Line2 (as front mic) pin widget for input and vref at 80% */
1408 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1409 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1410 /* CD pin widget for input */
1411 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1417 * W810 pin configuration:
1418 * front = 0x14, surround = 0x15, clfe = 0x16, HP = 0x1b
1420 static struct hda_verb alc880_pin_w810_init_verbs[] = {
1421 /* hphone/speaker input selector: front DAC */
1422 {0x13, AC_VERB_SET_CONNECT_SEL, 0x0},
1424 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1425 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1426 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1427 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1428 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1429 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1431 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1432 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1438 * Z71V pin configuration:
1439 * Speaker-out = 0x14, HP = 0x15, Mic = 0x18, Line-in = 0x1a, Mic2 = 0x1b (?)
1441 static struct hda_verb alc880_pin_z71v_init_verbs[] = {
1442 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1443 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1444 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1445 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1447 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1448 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1449 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1450 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1456 * 6-stack pin configuration:
1457 * front = 0x14, surr = 0x15, clfe = 0x16, side = 0x17, mic = 0x18,
1458 * f-mic = 0x19, line = 0x1a, HP = 0x1b
1460 static struct hda_verb alc880_pin_6stack_init_verbs[] = {
1461 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1463 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1464 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1465 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1466 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1467 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1468 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1469 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1470 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1472 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1473 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1474 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1475 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1476 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1477 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1478 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1479 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1480 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1486 * Uniwill pin configuration:
1487 * HP = 0x14, InternalSpeaker = 0x15, mic = 0x18, internal mic = 0x19,
1490 static struct hda_verb alc880_uniwill_init_verbs[] = {
1491 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1493 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1494 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1495 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1496 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1497 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1498 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1499 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1500 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1501 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1502 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1503 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1504 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1505 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1506 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1508 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1509 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1510 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1511 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1512 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1513 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1514 /* {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP}, */
1515 /* {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, */
1516 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1518 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
1519 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_MIC_EVENT},
1526 * HP = 0x14, InternalSpeaker = 0x15, mic = 0x19,
1528 static struct hda_verb alc880_uniwill_p53_init_verbs[] = {
1529 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1531 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1532 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1533 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1534 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1535 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1536 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1537 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1538 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1539 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1540 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1541 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1542 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1544 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1545 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1546 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1547 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1548 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1549 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1551 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
1552 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_DCVOL_EVENT},
1557 static struct hda_verb alc880_beep_init_verbs[] = {
1558 { 0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(5) },
1562 /* toggle speaker-output according to the hp-jack state */
1563 static void alc880_uniwill_hp_automute(struct hda_codec *codec)
1565 unsigned int present;
1568 present = snd_hda_codec_read(codec, 0x14, 0,
1569 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1570 bits = present ? 0x80 : 0;
1571 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
1573 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
1575 snd_hda_codec_amp_update(codec, 0x16, 0, HDA_OUTPUT, 0,
1577 snd_hda_codec_amp_update(codec, 0x16, 1, HDA_OUTPUT, 0,
1581 /* auto-toggle front mic */
1582 static void alc880_uniwill_mic_automute(struct hda_codec *codec)
1584 unsigned int present;
1587 present = snd_hda_codec_read(codec, 0x18, 0,
1588 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1589 bits = present ? 0x80 : 0;
1590 snd_hda_codec_amp_update(codec, 0x0b, 0, HDA_INPUT, 1,
1592 snd_hda_codec_amp_update(codec, 0x0b, 1, HDA_INPUT, 1,
1596 static void alc880_uniwill_automute(struct hda_codec *codec)
1598 alc880_uniwill_hp_automute(codec);
1599 alc880_uniwill_mic_automute(codec);
1602 static void alc880_uniwill_unsol_event(struct hda_codec *codec,
1605 /* Looks like the unsol event is incompatible with the standard
1606 * definition. 4bit tag is placed at 28 bit!
1608 switch (res >> 28) {
1609 case ALC880_HP_EVENT:
1610 alc880_uniwill_hp_automute(codec);
1612 case ALC880_MIC_EVENT:
1613 alc880_uniwill_mic_automute(codec);
1618 static void alc880_uniwill_p53_hp_automute(struct hda_codec *codec)
1620 unsigned int present;
1623 present = snd_hda_codec_read(codec, 0x14, 0,
1624 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1625 bits = present ? 0x80 : 0;
1626 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_INPUT, 0,
1628 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_INPUT, 0,
1632 static void alc880_uniwill_p53_dcvol_automute(struct hda_codec *codec)
1634 unsigned int present;
1636 present = snd_hda_codec_read(codec, 0x21, 0,
1637 AC_VERB_GET_VOLUME_KNOB_CONTROL, 0) & 0x7f;
1639 snd_hda_codec_amp_update(codec, 0x0c, 0, HDA_OUTPUT, 0,
1641 snd_hda_codec_amp_update(codec, 0x0c, 1, HDA_OUTPUT, 0,
1644 snd_hda_codec_amp_update(codec, 0x0d, 0, HDA_OUTPUT, 0,
1646 snd_hda_codec_amp_update(codec, 0x0d, 1, HDA_OUTPUT, 0,
1650 static void alc880_uniwill_p53_unsol_event(struct hda_codec *codec,
1653 /* Looks like the unsol event is incompatible with the standard
1654 * definition. 4bit tag is placed at 28 bit!
1656 if ((res >> 28) == ALC880_HP_EVENT)
1657 alc880_uniwill_p53_hp_automute(codec);
1658 if ((res >> 28) == ALC880_DCVOL_EVENT)
1659 alc880_uniwill_p53_dcvol_automute(codec);
1664 * F1734 pin configuration:
1665 * HP = 0x14, speaker-out = 0x15, mic = 0x18
1667 static struct hda_verb alc880_pin_f1734_init_verbs[] = {
1668 {0x10, AC_VERB_SET_CONNECT_SEL, 0x02},
1669 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00},
1670 {0x12, AC_VERB_SET_CONNECT_SEL, 0x01},
1671 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00},
1673 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1674 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1675 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1676 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1678 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1679 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1680 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1681 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1682 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1683 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1684 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1685 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1686 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1693 * ASUS pin configuration:
1694 * HP/front = 0x14, surr = 0x15, clfe = 0x16, mic = 0x18, line = 0x1a
1696 static struct hda_verb alc880_pin_asus_init_verbs[] = {
1697 {0x10, AC_VERB_SET_CONNECT_SEL, 0x02},
1698 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00},
1699 {0x12, AC_VERB_SET_CONNECT_SEL, 0x01},
1700 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00},
1702 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1703 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1704 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1705 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1706 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1707 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1708 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1709 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1711 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1712 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1713 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1714 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1715 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1716 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1717 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1718 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1719 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1724 /* Enable GPIO mask and set output */
1725 #define alc880_gpio1_init_verbs alc_gpio1_init_verbs
1726 #define alc880_gpio2_init_verbs alc_gpio2_init_verbs
1728 /* Clevo m520g init */
1729 static struct hda_verb alc880_pin_clevo_init_verbs[] = {
1730 /* headphone output */
1731 {0x11, AC_VERB_SET_CONNECT_SEL, 0x01},
1733 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1734 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1736 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1737 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1739 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1740 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1741 /* Mic1 (rear panel) */
1742 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1743 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1744 /* Mic2 (front panel) */
1745 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1746 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1748 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1749 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1750 /* change to EAPD mode */
1751 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
1752 {0x20, AC_VERB_SET_PROC_COEF, 0x3060},
1757 static struct hda_verb alc880_pin_tcl_S700_init_verbs[] = {
1758 /* change to EAPD mode */
1759 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
1760 {0x20, AC_VERB_SET_PROC_COEF, 0x3060},
1762 /* Headphone output */
1763 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1765 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1766 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
1768 /* Line In pin widget for input */
1769 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1770 /* CD pin widget for input */
1771 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1772 /* Mic1 (rear panel) pin widget for input and vref at 80% */
1773 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1775 /* change to EAPD mode */
1776 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
1777 {0x20, AC_VERB_SET_PROC_COEF, 0x3070},
1783 * LG m1 express dual
1786 * Rear Line-In/Out (blue): 0x14
1787 * Build-in Mic-In: 0x15
1789 * HP-Out (green): 0x1b
1790 * Mic-In/Out (red): 0x19
1794 /* To make 5.1 output working (green=Front, blue=Surr, red=CLFE) */
1795 static hda_nid_t alc880_lg_dac_nids[3] = {
1799 /* seems analog CD is not working */
1800 static struct hda_input_mux alc880_lg_capture_source = {
1805 { "Internal Mic", 0x6 },
1809 /* 2,4,6 channel modes */
1810 static struct hda_verb alc880_lg_ch2_init[] = {
1811 /* set line-in and mic-in to input */
1812 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
1813 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
1817 static struct hda_verb alc880_lg_ch4_init[] = {
1818 /* set line-in to out and mic-in to input */
1819 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1820 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
1824 static struct hda_verb alc880_lg_ch6_init[] = {
1825 /* set line-in and mic-in to output */
1826 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1827 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1831 static struct hda_channel_mode alc880_lg_ch_modes[3] = {
1832 { 2, alc880_lg_ch2_init },
1833 { 4, alc880_lg_ch4_init },
1834 { 6, alc880_lg_ch6_init },
1837 static struct snd_kcontrol_new alc880_lg_mixer[] = {
1838 /* FIXME: it's not really "master" but front channels */
1839 HDA_CODEC_VOLUME("Master Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
1840 HDA_BIND_MUTE("Master Playback Switch", 0x0f, 2, HDA_INPUT),
1841 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1842 HDA_BIND_MUTE("Surround Playback Switch", 0x0c, 2, HDA_INPUT),
1843 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0d, 1, 0x0, HDA_OUTPUT),
1844 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0d, 2, 0x0, HDA_OUTPUT),
1845 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0d, 1, 2, HDA_INPUT),
1846 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0d, 2, 2, HDA_INPUT),
1847 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
1848 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
1849 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x06, HDA_INPUT),
1850 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x06, HDA_INPUT),
1851 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x07, HDA_INPUT),
1852 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x07, HDA_INPUT),
1854 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1855 .name = "Channel Mode",
1856 .info = alc_ch_mode_info,
1857 .get = alc_ch_mode_get,
1858 .put = alc_ch_mode_put,
1863 static struct hda_verb alc880_lg_init_verbs[] = {
1864 /* set capture source to mic-in */
1865 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1866 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1867 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1868 /* mute all amp mixer inputs */
1869 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(5)},
1870 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(6)},
1871 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(7)},
1872 /* line-in to input */
1873 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1874 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1876 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1877 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1879 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1880 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1881 /* mic-in to input */
1882 {0x11, AC_VERB_SET_CONNECT_SEL, 0x01},
1883 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1884 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1886 {0x13, AC_VERB_SET_CONNECT_SEL, 0x03},
1887 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1888 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1890 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | 0x1},
1894 /* toggle speaker-output according to the hp-jack state */
1895 static void alc880_lg_automute(struct hda_codec *codec)
1897 unsigned int present;
1900 present = snd_hda_codec_read(codec, 0x1b, 0,
1901 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1902 bits = present ? 0x80 : 0;
1903 snd_hda_codec_amp_update(codec, 0x17, 0, HDA_OUTPUT, 0,
1905 snd_hda_codec_amp_update(codec, 0x17, 1, HDA_OUTPUT, 0,
1909 static void alc880_lg_unsol_event(struct hda_codec *codec, unsigned int res)
1911 /* Looks like the unsol event is incompatible with the standard
1912 * definition. 4bit tag is placed at 28 bit!
1914 if ((res >> 28) == 0x01)
1915 alc880_lg_automute(codec);
1924 * Built-in Mic-In: 0x19 (?)
1929 /* seems analog CD is not working */
1930 static struct hda_input_mux alc880_lg_lw_capture_source = {
1934 { "Internal Mic", 0x1 },
1938 #define alc880_lg_lw_modes alc880_threestack_modes
1940 static struct snd_kcontrol_new alc880_lg_lw_mixer[] = {
1941 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1942 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
1943 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
1944 HDA_BIND_MUTE("Surround Playback Switch", 0x0f, 2, HDA_INPUT),
1945 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
1946 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
1947 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
1948 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
1949 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
1950 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
1951 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1952 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1953 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
1954 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
1956 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1957 .name = "Channel Mode",
1958 .info = alc_ch_mode_info,
1959 .get = alc_ch_mode_get,
1960 .put = alc_ch_mode_put,
1965 static struct hda_verb alc880_lg_lw_init_verbs[] = {
1966 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1967 {0x10, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
1968 {0x12, AC_VERB_SET_CONNECT_SEL, 0x03}, /* line/surround */
1970 /* set capture source to mic-in */
1971 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1972 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1973 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1974 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(7)},
1976 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1977 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1979 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1980 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1981 /* mic-in to input */
1982 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1983 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1985 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1986 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1988 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | 0x1},
1992 /* toggle speaker-output according to the hp-jack state */
1993 static void alc880_lg_lw_automute(struct hda_codec *codec)
1995 unsigned int present;
1998 present = snd_hda_codec_read(codec, 0x1b, 0,
1999 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
2000 bits = present ? 0x80 : 0;
2001 snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
2003 snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
2007 static void alc880_lg_lw_unsol_event(struct hda_codec *codec, unsigned int res)
2009 /* Looks like the unsol event is incompatible with the standard
2010 * definition. 4bit tag is placed at 28 bit!
2012 if ((res >> 28) == 0x01)
2013 alc880_lg_lw_automute(codec);
2020 static int alc_init(struct hda_codec *codec)
2022 struct alc_spec *spec = codec->spec;
2025 for (i = 0; i < spec->num_init_verbs; i++)
2026 snd_hda_sequence_write(codec, spec->init_verbs[i]);
2028 if (spec->init_hook)
2029 spec->init_hook(codec);
2034 static void alc_unsol_event(struct hda_codec *codec, unsigned int res)
2036 struct alc_spec *spec = codec->spec;
2038 if (spec->unsol_event)
2039 spec->unsol_event(codec, res);
2046 static int alc_resume(struct hda_codec *codec)
2048 struct alc_spec *spec = codec->spec;
2052 for (i = 0; i < spec->num_mixers; i++)
2053 snd_hda_resume_ctls(codec, spec->mixers[i]);
2054 if (spec->multiout.dig_out_nid)
2055 snd_hda_resume_spdif_out(codec);
2056 if (spec->dig_in_nid)
2057 snd_hda_resume_spdif_in(codec);
2064 * Analog playback callbacks
2066 static int alc880_playback_pcm_open(struct hda_pcm_stream *hinfo,
2067 struct hda_codec *codec,
2068 struct snd_pcm_substream *substream)
2070 struct alc_spec *spec = codec->spec;
2071 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream);
2074 static int alc880_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2075 struct hda_codec *codec,
2076 unsigned int stream_tag,
2077 unsigned int format,
2078 struct snd_pcm_substream *substream)
2080 struct alc_spec *spec = codec->spec;
2081 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
2082 stream_tag, format, substream);
2085 static int alc880_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2086 struct hda_codec *codec,
2087 struct snd_pcm_substream *substream)
2089 struct alc_spec *spec = codec->spec;
2090 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
2096 static int alc880_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
2097 struct hda_codec *codec,
2098 struct snd_pcm_substream *substream)
2100 struct alc_spec *spec = codec->spec;
2101 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
2104 static int alc880_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2105 struct hda_codec *codec,
2106 unsigned int stream_tag,
2107 unsigned int format,
2108 struct snd_pcm_substream *substream)
2110 struct alc_spec *spec = codec->spec;
2111 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
2112 stream_tag, format, substream);
2115 static int alc880_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
2116 struct hda_codec *codec,
2117 struct snd_pcm_substream *substream)
2119 struct alc_spec *spec = codec->spec;
2120 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
2126 static int alc880_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
2127 struct hda_codec *codec,
2128 unsigned int stream_tag,
2129 unsigned int format,
2130 struct snd_pcm_substream *substream)
2132 struct alc_spec *spec = codec->spec;
2134 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
2135 stream_tag, 0, format);
2139 static int alc880_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
2140 struct hda_codec *codec,
2141 struct snd_pcm_substream *substream)
2143 struct alc_spec *spec = codec->spec;
2145 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
2153 static struct hda_pcm_stream alc880_pcm_analog_playback = {
2157 /* NID is set in alc_build_pcms */
2159 .open = alc880_playback_pcm_open,
2160 .prepare = alc880_playback_pcm_prepare,
2161 .cleanup = alc880_playback_pcm_cleanup
2165 static struct hda_pcm_stream alc880_pcm_analog_capture = {
2169 /* NID is set in alc_build_pcms */
2171 .prepare = alc880_capture_pcm_prepare,
2172 .cleanup = alc880_capture_pcm_cleanup
2176 static struct hda_pcm_stream alc880_pcm_digital_playback = {
2180 /* NID is set in alc_build_pcms */
2182 .open = alc880_dig_playback_pcm_open,
2183 .close = alc880_dig_playback_pcm_close,
2184 .prepare = alc880_dig_playback_pcm_prepare
2188 static struct hda_pcm_stream alc880_pcm_digital_capture = {
2192 /* NID is set in alc_build_pcms */
2195 /* Used by alc_build_pcms to flag that a PCM has no playback stream */
2196 static struct hda_pcm_stream alc_pcm_null_playback = {
2202 static int alc_build_pcms(struct hda_codec *codec)
2204 struct alc_spec *spec = codec->spec;
2205 struct hda_pcm *info = spec->pcm_rec;
2208 codec->num_pcms = 1;
2209 codec->pcm_info = info;
2211 info->name = spec->stream_name_analog;
2212 if (spec->stream_analog_playback) {
2213 snd_assert(spec->multiout.dac_nids, return -EINVAL);
2214 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *(spec->stream_analog_playback);
2215 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dac_nids[0];
2217 if (spec->stream_analog_capture) {
2218 snd_assert(spec->adc_nids, return -EINVAL);
2219 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_analog_capture);
2220 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
2223 if (spec->channel_mode) {
2224 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = 0;
2225 for (i = 0; i < spec->num_channel_mode; i++) {
2226 if (spec->channel_mode[i].channels > info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max) {
2227 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = spec->channel_mode[i].channels;
2232 /* SPDIF for stream index #1 */
2233 if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
2234 codec->num_pcms = 2;
2235 info = spec->pcm_rec + 1;
2236 info->name = spec->stream_name_digital;
2237 if (spec->multiout.dig_out_nid &&
2238 spec->stream_digital_playback) {
2239 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *(spec->stream_digital_playback);
2240 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
2242 if (spec->dig_in_nid &&
2243 spec->stream_digital_capture) {
2244 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_digital_capture);
2245 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
2249 /* If the use of more than one ADC is requested for the current
2250 * model, configure a second analog capture-only PCM.
2252 /* Additional Analaog capture for index #2 */
2253 if (spec->num_adc_nids > 1 && spec->stream_analog_capture &&
2255 codec->num_pcms = 3;
2256 info = spec->pcm_rec + 2;
2257 info->name = spec->stream_name_analog;
2258 /* No playback stream for second PCM */
2259 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = alc_pcm_null_playback;
2260 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = 0;
2261 if (spec->stream_analog_capture) {
2262 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_analog_capture);
2263 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[1];
2270 static void alc_free(struct hda_codec *codec)
2272 struct alc_spec *spec = codec->spec;
2278 if (spec->kctl_alloc) {
2279 for (i = 0; i < spec->num_kctl_used; i++)
2280 kfree(spec->kctl_alloc[i].name);
2281 kfree(spec->kctl_alloc);
2288 static struct hda_codec_ops alc_patch_ops = {
2289 .build_controls = alc_build_controls,
2290 .build_pcms = alc_build_pcms,
2293 .unsol_event = alc_unsol_event,
2295 .resume = alc_resume,
2301 * Test configuration for debugging
2303 * Almost all inputs/outputs are enabled. I/O pins can be configured via
2306 #ifdef CONFIG_SND_DEBUG
2307 static hda_nid_t alc880_test_dac_nids[4] = {
2308 0x02, 0x03, 0x04, 0x05
2311 static struct hda_input_mux alc880_test_capture_source = {
2320 { "Surround", 0x6 },
2324 static struct hda_channel_mode alc880_test_modes[4] = {
2331 static int alc_test_pin_ctl_info(struct snd_kcontrol *kcontrol,
2332 struct snd_ctl_elem_info *uinfo)
2334 static char *texts[] = {
2335 "N/A", "Line Out", "HP Out",
2336 "In Hi-Z", "In 50%", "In Grd", "In 80%", "In 100%"
2338 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2340 uinfo->value.enumerated.items = 8;
2341 if (uinfo->value.enumerated.item >= 8)
2342 uinfo->value.enumerated.item = 7;
2343 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
2347 static int alc_test_pin_ctl_get(struct snd_kcontrol *kcontrol,
2348 struct snd_ctl_elem_value *ucontrol)
2350 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2351 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2352 unsigned int pin_ctl, item = 0;
2354 pin_ctl = snd_hda_codec_read(codec, nid, 0,
2355 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
2356 if (pin_ctl & AC_PINCTL_OUT_EN) {
2357 if (pin_ctl & AC_PINCTL_HP_EN)
2361 } else if (pin_ctl & AC_PINCTL_IN_EN) {
2362 switch (pin_ctl & AC_PINCTL_VREFEN) {
2363 case AC_PINCTL_VREF_HIZ: item = 3; break;
2364 case AC_PINCTL_VREF_50: item = 4; break;
2365 case AC_PINCTL_VREF_GRD: item = 5; break;
2366 case AC_PINCTL_VREF_80: item = 6; break;
2367 case AC_PINCTL_VREF_100: item = 7; break;
2370 ucontrol->value.enumerated.item[0] = item;
2374 static int alc_test_pin_ctl_put(struct snd_kcontrol *kcontrol,
2375 struct snd_ctl_elem_value *ucontrol)
2377 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2378 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2379 static unsigned int ctls[] = {
2380 0, AC_PINCTL_OUT_EN, AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN,
2381 AC_PINCTL_IN_EN | AC_PINCTL_VREF_HIZ,
2382 AC_PINCTL_IN_EN | AC_PINCTL_VREF_50,
2383 AC_PINCTL_IN_EN | AC_PINCTL_VREF_GRD,
2384 AC_PINCTL_IN_EN | AC_PINCTL_VREF_80,
2385 AC_PINCTL_IN_EN | AC_PINCTL_VREF_100,
2387 unsigned int old_ctl, new_ctl;
2389 old_ctl = snd_hda_codec_read(codec, nid, 0,
2390 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
2391 new_ctl = ctls[ucontrol->value.enumerated.item[0]];
2392 if (old_ctl != new_ctl) {
2393 snd_hda_codec_write(codec, nid, 0,
2394 AC_VERB_SET_PIN_WIDGET_CONTROL, new_ctl);
2395 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
2396 (ucontrol->value.enumerated.item[0] >= 3 ?
2403 static int alc_test_pin_src_info(struct snd_kcontrol *kcontrol,
2404 struct snd_ctl_elem_info *uinfo)
2406 static char *texts[] = {
2407 "Front", "Surround", "CLFE", "Side"
2409 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2411 uinfo->value.enumerated.items = 4;
2412 if (uinfo->value.enumerated.item >= 4)
2413 uinfo->value.enumerated.item = 3;
2414 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
2418 static int alc_test_pin_src_get(struct snd_kcontrol *kcontrol,
2419 struct snd_ctl_elem_value *ucontrol)
2421 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2422 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2425 sel = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONNECT_SEL, 0);
2426 ucontrol->value.enumerated.item[0] = sel & 3;
2430 static int alc_test_pin_src_put(struct snd_kcontrol *kcontrol,
2431 struct snd_ctl_elem_value *ucontrol)
2433 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2434 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2437 sel = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONNECT_SEL, 0) & 3;
2438 if (ucontrol->value.enumerated.item[0] != sel) {
2439 sel = ucontrol->value.enumerated.item[0] & 3;
2440 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, sel);
2446 #define PIN_CTL_TEST(xname,nid) { \
2447 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2449 .info = alc_test_pin_ctl_info, \
2450 .get = alc_test_pin_ctl_get, \
2451 .put = alc_test_pin_ctl_put, \
2452 .private_value = nid \
2455 #define PIN_SRC_TEST(xname,nid) { \
2456 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2458 .info = alc_test_pin_src_info, \
2459 .get = alc_test_pin_src_get, \
2460 .put = alc_test_pin_src_put, \
2461 .private_value = nid \
2464 static struct snd_kcontrol_new alc880_test_mixer[] = {
2465 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
2466 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
2467 HDA_CODEC_VOLUME("CLFE Playback Volume", 0x0e, 0x0, HDA_OUTPUT),
2468 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
2469 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
2470 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
2471 HDA_BIND_MUTE("CLFE Playback Switch", 0x0e, 2, HDA_INPUT),
2472 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
2473 PIN_CTL_TEST("Front Pin Mode", 0x14),
2474 PIN_CTL_TEST("Surround Pin Mode", 0x15),
2475 PIN_CTL_TEST("CLFE Pin Mode", 0x16),
2476 PIN_CTL_TEST("Side Pin Mode", 0x17),
2477 PIN_CTL_TEST("In-1 Pin Mode", 0x18),
2478 PIN_CTL_TEST("In-2 Pin Mode", 0x19),
2479 PIN_CTL_TEST("In-3 Pin Mode", 0x1a),
2480 PIN_CTL_TEST("In-4 Pin Mode", 0x1b),
2481 PIN_SRC_TEST("In-1 Pin Source", 0x18),
2482 PIN_SRC_TEST("In-2 Pin Source", 0x19),
2483 PIN_SRC_TEST("In-3 Pin Source", 0x1a),
2484 PIN_SRC_TEST("In-4 Pin Source", 0x1b),
2485 HDA_CODEC_VOLUME("In-1 Playback Volume", 0x0b, 0x0, HDA_INPUT),
2486 HDA_CODEC_MUTE("In-1 Playback Switch", 0x0b, 0x0, HDA_INPUT),
2487 HDA_CODEC_VOLUME("In-2 Playback Volume", 0x0b, 0x1, HDA_INPUT),
2488 HDA_CODEC_MUTE("In-2 Playback Switch", 0x0b, 0x1, HDA_INPUT),
2489 HDA_CODEC_VOLUME("In-3 Playback Volume", 0x0b, 0x2, HDA_INPUT),
2490 HDA_CODEC_MUTE("In-3 Playback Switch", 0x0b, 0x2, HDA_INPUT),
2491 HDA_CODEC_VOLUME("In-4 Playback Volume", 0x0b, 0x3, HDA_INPUT),
2492 HDA_CODEC_MUTE("In-4 Playback Switch", 0x0b, 0x3, HDA_INPUT),
2493 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x4, HDA_INPUT),
2494 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x4, HDA_INPUT),
2496 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2497 .name = "Channel Mode",
2498 .info = alc_ch_mode_info,
2499 .get = alc_ch_mode_get,
2500 .put = alc_ch_mode_put,
2505 static struct hda_verb alc880_test_init_verbs[] = {
2506 /* Unmute inputs of 0x0c - 0x0f */
2507 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2508 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2509 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2510 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2511 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2512 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2513 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2514 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2515 /* Vol output for 0x0c-0x0f */
2516 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2517 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2518 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2519 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2520 /* Set output pins 0x14-0x17 */
2521 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2522 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2523 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2524 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2525 /* Unmute output pins 0x14-0x17 */
2526 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2527 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2528 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2529 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2530 /* Set input pins 0x18-0x1c */
2531 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2532 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2533 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2534 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2535 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2536 /* Mute input pins 0x18-0x1b */
2537 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2538 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2539 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2540 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2542 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2543 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
2544 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2545 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
2546 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2547 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
2548 /* Analog input/passthru */
2549 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2550 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2551 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2552 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2553 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
2561 static const char *alc880_models[ALC880_MODEL_LAST] = {
2562 [ALC880_3ST] = "3stack",
2563 [ALC880_TCL_S700] = "tcl",
2564 [ALC880_3ST_DIG] = "3stack-digout",
2565 [ALC880_CLEVO] = "clevo",
2566 [ALC880_5ST] = "5stack",
2567 [ALC880_5ST_DIG] = "5stack-digout",
2568 [ALC880_W810] = "w810",
2569 [ALC880_Z71V] = "z71v",
2570 [ALC880_6ST] = "6stack",
2571 [ALC880_6ST_DIG] = "6stack-digout",
2572 [ALC880_ASUS] = "asus",
2573 [ALC880_ASUS_W1V] = "asus-w1v",
2574 [ALC880_ASUS_DIG] = "asus-dig",
2575 [ALC880_ASUS_DIG2] = "asus-dig2",
2576 [ALC880_UNIWILL_DIG] = "uniwill",
2577 [ALC880_UNIWILL_P53] = "uniwill-p53",
2578 [ALC880_FUJITSU] = "fujitsu",
2579 [ALC880_F1734] = "F1734",
2581 [ALC880_LG_LW] = "lg-lw",
2582 #ifdef CONFIG_SND_DEBUG
2583 [ALC880_TEST] = "test",
2585 [ALC880_AUTO] = "auto",
2588 static struct snd_pci_quirk alc880_cfg_tbl[] = {
2589 /* Broken BIOS configuration */
2590 SND_PCI_QUIRK(0x2668, 0x8086, NULL, ALC880_6ST_DIG),
2591 SND_PCI_QUIRK(0x8086, 0x2668, NULL, ALC880_6ST_DIG),
2593 SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_5ST_DIG),
2594 SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_6ST),
2595 SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_W810),
2596 SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_3ST_DIG),
2597 SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_6ST_DIG),
2598 SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_6ST_DIG),
2599 SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_6ST_DIG),
2600 SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_3ST_DIG),
2601 SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_3ST),
2603 SND_PCI_QUIRK(0x1039, 0x1234, NULL, ALC880_6ST_DIG),
2604 SND_PCI_QUIRK(0x103c, 0x2a09, "HP", ALC880_5ST),
2606 SND_PCI_QUIRK(0x1043, 0x10b3, "ASUS W1V", ALC880_ASUS_W1V),
2607 SND_PCI_QUIRK(0x1043, 0x10c2, "ASUS W6A", ALC880_ASUS_DIG),
2608 SND_PCI_QUIRK(0x1043, 0x10c3, "ASUS Wxx", ALC880_ASUS_DIG),
2609 SND_PCI_QUIRK(0x1043, 0x1113, "ASUS", ALC880_ASUS_DIG),
2610 SND_PCI_QUIRK(0x1043, 0x1123, "ASUS", ALC880_ASUS_DIG),
2611 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS", ALC880_ASUS_DIG),
2612 SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_Z71V),
2613 /* SND_PCI_QUIRK(0x1043, 0x1964, "ASUS", ALC880_ASUS_DIG), */
2614 SND_PCI_QUIRK(0x1043, 0x1973, "ASUS", ALC880_ASUS_DIG),
2615 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS", ALC880_ASUS_DIG),
2616 SND_PCI_QUIRK(0x1043, 0x814e, "ASUS", ALC880_ASUS),
2617 SND_PCI_QUIRK(0x1043, 0x8181, "ASUS P4GPL", ALC880_ASUS_DIG),
2618 SND_PCI_QUIRK(0x1043, 0x8196, "ASUS P5GD1", ALC880_6ST),
2619 SND_PCI_QUIRK(0x1043, 0x81b4, "ASUS", ALC880_6ST),
2620 SND_PCI_QUIRK(0x1043, 0, "ASUS", ALC880_ASUS),
2622 SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_3ST),
2623 SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_3ST),
2624 SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_5ST),
2625 SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_5ST),
2626 SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_5ST),
2627 SND_PCI_QUIRK(0x1558, 0x0520, "Clevo m520G", ALC880_CLEVO),
2628 SND_PCI_QUIRK(0x1558, 0x0660, "Clevo m655n", ALC880_CLEVO),
2629 SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_5ST_DIG),
2630 SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_W810),
2631 SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_5ST_DIG),
2632 SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_TCL_S700),
2633 SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_5ST_DIG),
2634 SND_PCI_QUIRK(0xe803, 0x1019, NULL, ALC880_6ST_DIG),
2635 SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_6ST_DIG),
2636 SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_6ST_DIG),
2637 SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_6ST_DIG),
2638 SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_6ST_DIG),
2639 SND_PCI_QUIRK(0x1558, 0x5401, "ASUS", ALC880_ASUS_DIG2),
2641 SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_UNIWILL_DIG),
2642 SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_UNIWILL),
2643 SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_UNIWILL_P53),
2644 SND_PCI_QUIRK(0x1584, 0x9054, "Uniwlll", ALC880_F1734),
2646 SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_5ST_DIG),
2647 SND_PCI_QUIRK(0x1734, 0x10ac, "FSC", ALC880_UNIWILL),
2648 SND_PCI_QUIRK(0x1734, 0x107c, "FSC F1734", ALC880_F1734),
2649 SND_PCI_QUIRK(0x1734, 0x10b0, "Fujitsu", ALC880_FUJITSU),
2651 SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_LG),
2652 SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_LG),
2653 SND_PCI_QUIRK(0x1854, 0x0018, "LG LW20", ALC880_LG_LW),
2654 SND_PCI_QUIRK(0x1854, 0x0077, "LG LW25", ALC880_LG_LW),
2656 SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_3ST_DIG),
2657 SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_3ST_DIG),
2658 SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_3ST_DIG),
2659 SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_5ST_DIG),
2660 SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_5ST_DIG),
2661 SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_5ST_DIG),
2662 SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_5ST_DIG),
2663 SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_5ST_DIG),
2664 SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_5ST_DIG),
2665 SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_5ST_DIG),
2666 SND_PCI_QUIRK(0x8086, 0, "Intel mobo", ALC880_3ST),
2672 * ALC880 codec presets
2674 static struct alc_config_preset alc880_presets[] = {
2676 .mixers = { alc880_three_stack_mixer },
2677 .init_verbs = { alc880_volume_init_verbs,
2678 alc880_pin_3stack_init_verbs },
2679 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2680 .dac_nids = alc880_dac_nids,
2681 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2682 .channel_mode = alc880_threestack_modes,
2684 .input_mux = &alc880_capture_source,
2686 [ALC880_3ST_DIG] = {
2687 .mixers = { alc880_three_stack_mixer },
2688 .init_verbs = { alc880_volume_init_verbs,
2689 alc880_pin_3stack_init_verbs },
2690 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2691 .dac_nids = alc880_dac_nids,
2692 .dig_out_nid = ALC880_DIGOUT_NID,
2693 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2694 .channel_mode = alc880_threestack_modes,
2696 .input_mux = &alc880_capture_source,
2698 [ALC880_TCL_S700] = {
2699 .mixers = { alc880_tcl_s700_mixer },
2700 .init_verbs = { alc880_volume_init_verbs,
2701 alc880_pin_tcl_S700_init_verbs,
2702 alc880_gpio2_init_verbs },
2703 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2704 .dac_nids = alc880_dac_nids,
2706 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2707 .channel_mode = alc880_2_jack_modes,
2708 .input_mux = &alc880_capture_source,
2711 .mixers = { alc880_three_stack_mixer,
2712 alc880_five_stack_mixer},
2713 .init_verbs = { alc880_volume_init_verbs,
2714 alc880_pin_5stack_init_verbs },
2715 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2716 .dac_nids = alc880_dac_nids,
2717 .num_channel_mode = ARRAY_SIZE(alc880_fivestack_modes),
2718 .channel_mode = alc880_fivestack_modes,
2719 .input_mux = &alc880_capture_source,
2721 [ALC880_5ST_DIG] = {
2722 .mixers = { alc880_three_stack_mixer,
2723 alc880_five_stack_mixer },
2724 .init_verbs = { alc880_volume_init_verbs,
2725 alc880_pin_5stack_init_verbs },
2726 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2727 .dac_nids = alc880_dac_nids,
2728 .dig_out_nid = ALC880_DIGOUT_NID,
2729 .num_channel_mode = ARRAY_SIZE(alc880_fivestack_modes),
2730 .channel_mode = alc880_fivestack_modes,
2731 .input_mux = &alc880_capture_source,
2734 .mixers = { alc880_six_stack_mixer },
2735 .init_verbs = { alc880_volume_init_verbs,
2736 alc880_pin_6stack_init_verbs },
2737 .num_dacs = ARRAY_SIZE(alc880_6st_dac_nids),
2738 .dac_nids = alc880_6st_dac_nids,
2739 .num_channel_mode = ARRAY_SIZE(alc880_sixstack_modes),
2740 .channel_mode = alc880_sixstack_modes,
2741 .input_mux = &alc880_6stack_capture_source,
2743 [ALC880_6ST_DIG] = {
2744 .mixers = { alc880_six_stack_mixer },
2745 .init_verbs = { alc880_volume_init_verbs,
2746 alc880_pin_6stack_init_verbs },
2747 .num_dacs = ARRAY_SIZE(alc880_6st_dac_nids),
2748 .dac_nids = alc880_6st_dac_nids,
2749 .dig_out_nid = ALC880_DIGOUT_NID,
2750 .num_channel_mode = ARRAY_SIZE(alc880_sixstack_modes),
2751 .channel_mode = alc880_sixstack_modes,
2752 .input_mux = &alc880_6stack_capture_source,
2755 .mixers = { alc880_w810_base_mixer },
2756 .init_verbs = { alc880_volume_init_verbs,
2757 alc880_pin_w810_init_verbs,
2758 alc880_gpio2_init_verbs },
2759 .num_dacs = ARRAY_SIZE(alc880_w810_dac_nids),
2760 .dac_nids = alc880_w810_dac_nids,
2761 .dig_out_nid = ALC880_DIGOUT_NID,
2762 .num_channel_mode = ARRAY_SIZE(alc880_w810_modes),
2763 .channel_mode = alc880_w810_modes,
2764 .input_mux = &alc880_capture_source,
2767 .mixers = { alc880_z71v_mixer },
2768 .init_verbs = { alc880_volume_init_verbs,
2769 alc880_pin_z71v_init_verbs },
2770 .num_dacs = ARRAY_SIZE(alc880_z71v_dac_nids),
2771 .dac_nids = alc880_z71v_dac_nids,
2772 .dig_out_nid = ALC880_DIGOUT_NID,
2774 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2775 .channel_mode = alc880_2_jack_modes,
2776 .input_mux = &alc880_capture_source,
2779 .mixers = { alc880_f1734_mixer },
2780 .init_verbs = { alc880_volume_init_verbs,
2781 alc880_pin_f1734_init_verbs },
2782 .num_dacs = ARRAY_SIZE(alc880_f1734_dac_nids),
2783 .dac_nids = alc880_f1734_dac_nids,
2785 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2786 .channel_mode = alc880_2_jack_modes,
2787 .input_mux = &alc880_capture_source,
2790 .mixers = { alc880_asus_mixer },
2791 .init_verbs = { alc880_volume_init_verbs,
2792 alc880_pin_asus_init_verbs,
2793 alc880_gpio1_init_verbs },
2794 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2795 .dac_nids = alc880_asus_dac_nids,
2796 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2797 .channel_mode = alc880_asus_modes,
2799 .input_mux = &alc880_capture_source,
2801 [ALC880_ASUS_DIG] = {
2802 .mixers = { alc880_asus_mixer },
2803 .init_verbs = { alc880_volume_init_verbs,
2804 alc880_pin_asus_init_verbs,
2805 alc880_gpio1_init_verbs },
2806 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2807 .dac_nids = alc880_asus_dac_nids,
2808 .dig_out_nid = ALC880_DIGOUT_NID,
2809 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2810 .channel_mode = alc880_asus_modes,
2812 .input_mux = &alc880_capture_source,
2814 [ALC880_ASUS_DIG2] = {
2815 .mixers = { alc880_asus_mixer },
2816 .init_verbs = { alc880_volume_init_verbs,
2817 alc880_pin_asus_init_verbs,
2818 alc880_gpio2_init_verbs }, /* use GPIO2 */
2819 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2820 .dac_nids = alc880_asus_dac_nids,
2821 .dig_out_nid = ALC880_DIGOUT_NID,
2822 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2823 .channel_mode = alc880_asus_modes,
2825 .input_mux = &alc880_capture_source,
2827 [ALC880_ASUS_W1V] = {
2828 .mixers = { alc880_asus_mixer, alc880_asus_w1v_mixer },
2829 .init_verbs = { alc880_volume_init_verbs,
2830 alc880_pin_asus_init_verbs,
2831 alc880_gpio1_init_verbs },
2832 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2833 .dac_nids = alc880_asus_dac_nids,
2834 .dig_out_nid = ALC880_DIGOUT_NID,
2835 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2836 .channel_mode = alc880_asus_modes,
2838 .input_mux = &alc880_capture_source,
2840 [ALC880_UNIWILL_DIG] = {
2841 .mixers = { alc880_asus_mixer, alc880_pcbeep_mixer },
2842 .init_verbs = { alc880_volume_init_verbs,
2843 alc880_pin_asus_init_verbs },
2844 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2845 .dac_nids = alc880_asus_dac_nids,
2846 .dig_out_nid = ALC880_DIGOUT_NID,
2847 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2848 .channel_mode = alc880_asus_modes,
2850 .input_mux = &alc880_capture_source,
2852 [ALC880_UNIWILL] = {
2853 .mixers = { alc880_uniwill_mixer },
2854 .init_verbs = { alc880_volume_init_verbs,
2855 alc880_uniwill_init_verbs },
2856 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2857 .dac_nids = alc880_asus_dac_nids,
2858 .dig_out_nid = ALC880_DIGOUT_NID,
2859 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2860 .channel_mode = alc880_threestack_modes,
2862 .input_mux = &alc880_capture_source,
2863 .unsol_event = alc880_uniwill_unsol_event,
2864 .init_hook = alc880_uniwill_automute,
2866 [ALC880_UNIWILL_P53] = {
2867 .mixers = { alc880_uniwill_p53_mixer },
2868 .init_verbs = { alc880_volume_init_verbs,
2869 alc880_uniwill_p53_init_verbs },
2870 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2871 .dac_nids = alc880_asus_dac_nids,
2872 .num_channel_mode = ARRAY_SIZE(alc880_w810_modes),
2873 .channel_mode = alc880_threestack_modes,
2874 .input_mux = &alc880_capture_source,
2875 .unsol_event = alc880_uniwill_p53_unsol_event,
2876 .init_hook = alc880_uniwill_p53_hp_automute,
2878 [ALC880_FUJITSU] = {
2879 .mixers = { alc880_fujitsu_mixer,
2880 alc880_pcbeep_mixer, },
2881 .init_verbs = { alc880_volume_init_verbs,
2882 alc880_uniwill_p53_init_verbs,
2883 alc880_beep_init_verbs },
2884 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2885 .dac_nids = alc880_dac_nids,
2886 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2887 .channel_mode = alc880_2_jack_modes,
2888 .input_mux = &alc880_capture_source,
2889 .unsol_event = alc880_uniwill_p53_unsol_event,
2890 .init_hook = alc880_uniwill_p53_hp_automute,
2893 .mixers = { alc880_three_stack_mixer },
2894 .init_verbs = { alc880_volume_init_verbs,
2895 alc880_pin_clevo_init_verbs },
2896 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2897 .dac_nids = alc880_dac_nids,
2899 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2900 .channel_mode = alc880_threestack_modes,
2902 .input_mux = &alc880_capture_source,
2905 .mixers = { alc880_lg_mixer },
2906 .init_verbs = { alc880_volume_init_verbs,
2907 alc880_lg_init_verbs },
2908 .num_dacs = ARRAY_SIZE(alc880_lg_dac_nids),
2909 .dac_nids = alc880_lg_dac_nids,
2910 .dig_out_nid = ALC880_DIGOUT_NID,
2911 .num_channel_mode = ARRAY_SIZE(alc880_lg_ch_modes),
2912 .channel_mode = alc880_lg_ch_modes,
2914 .input_mux = &alc880_lg_capture_source,
2915 .unsol_event = alc880_lg_unsol_event,
2916 .init_hook = alc880_lg_automute,
2919 .mixers = { alc880_lg_lw_mixer },
2920 .init_verbs = { alc880_volume_init_verbs,
2921 alc880_lg_lw_init_verbs },
2922 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2923 .dac_nids = alc880_dac_nids,
2924 .dig_out_nid = ALC880_DIGOUT_NID,
2925 .num_channel_mode = ARRAY_SIZE(alc880_lg_lw_modes),
2926 .channel_mode = alc880_lg_lw_modes,
2927 .input_mux = &alc880_lg_lw_capture_source,
2928 .unsol_event = alc880_lg_lw_unsol_event,
2929 .init_hook = alc880_lg_lw_automute,
2931 #ifdef CONFIG_SND_DEBUG
2933 .mixers = { alc880_test_mixer },
2934 .init_verbs = { alc880_test_init_verbs },
2935 .num_dacs = ARRAY_SIZE(alc880_test_dac_nids),
2936 .dac_nids = alc880_test_dac_nids,
2937 .dig_out_nid = ALC880_DIGOUT_NID,
2938 .num_channel_mode = ARRAY_SIZE(alc880_test_modes),
2939 .channel_mode = alc880_test_modes,
2940 .input_mux = &alc880_test_capture_source,
2946 * Automatic parse of I/O pins from the BIOS configuration
2949 #define NUM_CONTROL_ALLOC 32
2950 #define NUM_VERB_ALLOC 32
2954 ALC_CTL_WIDGET_MUTE,
2957 static struct snd_kcontrol_new alc880_control_templates[] = {
2958 HDA_CODEC_VOLUME(NULL, 0, 0, 0),
2959 HDA_CODEC_MUTE(NULL, 0, 0, 0),
2960 HDA_BIND_MUTE(NULL, 0, 0, 0),
2963 /* add dynamic controls */
2964 static int add_control(struct alc_spec *spec, int type, const char *name,
2967 struct snd_kcontrol_new *knew;
2969 if (spec->num_kctl_used >= spec->num_kctl_alloc) {
2970 int num = spec->num_kctl_alloc + NUM_CONTROL_ALLOC;
2972 /* array + terminator */
2973 knew = kcalloc(num + 1, sizeof(*knew), GFP_KERNEL);
2976 if (spec->kctl_alloc) {
2977 memcpy(knew, spec->kctl_alloc,
2978 sizeof(*knew) * spec->num_kctl_alloc);
2979 kfree(spec->kctl_alloc);
2981 spec->kctl_alloc = knew;
2982 spec->num_kctl_alloc = num;
2985 knew = &spec->kctl_alloc[spec->num_kctl_used];
2986 *knew = alc880_control_templates[type];
2987 knew->name = kstrdup(name, GFP_KERNEL);
2990 knew->private_value = val;
2991 spec->num_kctl_used++;
2995 #define alc880_is_fixed_pin(nid) ((nid) >= 0x14 && (nid) <= 0x17)
2996 #define alc880_fixed_pin_idx(nid) ((nid) - 0x14)
2997 #define alc880_is_multi_pin(nid) ((nid) >= 0x18)
2998 #define alc880_multi_pin_idx(nid) ((nid) - 0x18)
2999 #define alc880_is_input_pin(nid) ((nid) >= 0x18)
3000 #define alc880_input_pin_idx(nid) ((nid) - 0x18)
3001 #define alc880_idx_to_dac(nid) ((nid) + 0x02)
3002 #define alc880_dac_to_idx(nid) ((nid) - 0x02)
3003 #define alc880_idx_to_mixer(nid) ((nid) + 0x0c)
3004 #define alc880_idx_to_selector(nid) ((nid) + 0x10)
3005 #define ALC880_PIN_CD_NID 0x1c
3007 /* fill in the dac_nids table from the parsed pin configuration */
3008 static int alc880_auto_fill_dac_nids(struct alc_spec *spec,
3009 const struct auto_pin_cfg *cfg)
3015 memset(assigned, 0, sizeof(assigned));
3016 spec->multiout.dac_nids = spec->private_dac_nids;
3018 /* check the pins hardwired to audio widget */
3019 for (i = 0; i < cfg->line_outs; i++) {
3020 nid = cfg->line_out_pins[i];
3021 if (alc880_is_fixed_pin(nid)) {
3022 int idx = alc880_fixed_pin_idx(nid);
3023 spec->multiout.dac_nids[i] = alc880_idx_to_dac(idx);
3027 /* left pins can be connect to any audio widget */
3028 for (i = 0; i < cfg->line_outs; i++) {
3029 nid = cfg->line_out_pins[i];
3030 if (alc880_is_fixed_pin(nid))
3032 /* search for an empty channel */
3033 for (j = 0; j < cfg->line_outs; j++) {
3035 spec->multiout.dac_nids[i] =
3036 alc880_idx_to_dac(j);
3042 spec->multiout.num_dacs = cfg->line_outs;
3046 /* add playback controls from the parsed DAC table */
3047 static int alc880_auto_create_multi_out_ctls(struct alc_spec *spec,
3048 const struct auto_pin_cfg *cfg)
3051 static const char *chname[4] = {
3052 "Front", "Surround", NULL /*CLFE*/, "Side"
3057 for (i = 0; i < cfg->line_outs; i++) {
3058 if (!spec->multiout.dac_nids[i])
3060 nid = alc880_idx_to_mixer(alc880_dac_to_idx(spec->multiout.dac_nids[i]));
3063 err = add_control(spec, ALC_CTL_WIDGET_VOL,
3064 "Center Playback Volume",
3065 HDA_COMPOSE_AMP_VAL(nid, 1, 0,
3069 err = add_control(spec, ALC_CTL_WIDGET_VOL,
3070 "LFE Playback Volume",
3071 HDA_COMPOSE_AMP_VAL(nid, 2, 0,
3075 err = add_control(spec, ALC_CTL_BIND_MUTE,
3076 "Center Playback Switch",
3077 HDA_COMPOSE_AMP_VAL(nid, 1, 2,
3081 err = add_control(spec, ALC_CTL_BIND_MUTE,
3082 "LFE Playback Switch",
3083 HDA_COMPOSE_AMP_VAL(nid, 2, 2,
3088 sprintf(name, "%s Playback Volume", chname[i]);
3089 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
3090 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
3094 sprintf(name, "%s Playback Switch", chname[i]);
3095 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
3096 HDA_COMPOSE_AMP_VAL(nid, 3, 2,
3105 /* add playback controls for speaker and HP outputs */
3106 static int alc880_auto_create_extra_out(struct alc_spec *spec, hda_nid_t pin,
3116 if (alc880_is_fixed_pin(pin)) {
3117 nid = alc880_idx_to_dac(alc880_fixed_pin_idx(pin));
3118 /* specify the DAC as the extra output */
3119 if (!spec->multiout.hp_nid)
3120 spec->multiout.hp_nid = nid;
3122 spec->multiout.extra_out_nid[0] = nid;
3123 /* control HP volume/switch on the output mixer amp */
3124 nid = alc880_idx_to_mixer(alc880_fixed_pin_idx(pin));
3125 sprintf(name, "%s Playback Volume", pfx);
3126 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
3127 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT));
3130 sprintf(name, "%s Playback Switch", pfx);
3131 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
3132 HDA_COMPOSE_AMP_VAL(nid, 3, 2, HDA_INPUT));
3135 } else if (alc880_is_multi_pin(pin)) {
3136 /* set manual connection */
3137 /* we have only a switch on HP-out PIN */
3138 sprintf(name, "%s Playback Switch", pfx);
3139 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
3140 HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
3147 /* create input playback/capture controls for the given pin */
3148 static int new_analog_input(struct alc_spec *spec, hda_nid_t pin,
3149 const char *ctlname,
3150 int idx, hda_nid_t mix_nid)
3155 sprintf(name, "%s Playback Volume", ctlname);
3156 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
3157 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
3160 sprintf(name, "%s Playback Switch", ctlname);
3161 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
3162 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
3168 /* create playback/capture controls for input pins */
3169 static int alc880_auto_create_analog_input_ctls(struct alc_spec *spec,
3170 const struct auto_pin_cfg *cfg)
3172 struct hda_input_mux *imux = &spec->private_imux;
3175 for (i = 0; i < AUTO_PIN_LAST; i++) {
3176 if (alc880_is_input_pin(cfg->input_pins[i])) {
3177 idx = alc880_input_pin_idx(cfg->input_pins[i]);
3178 err = new_analog_input(spec, cfg->input_pins[i],
3179 auto_pin_cfg_labels[i],
3183 imux->items[imux->num_items].label =
3184 auto_pin_cfg_labels[i];
3185 imux->items[imux->num_items].index =
3186 alc880_input_pin_idx(cfg->input_pins[i]);
3193 static void alc880_auto_set_output_and_unmute(struct hda_codec *codec,
3194 hda_nid_t nid, int pin_type,
3198 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
3200 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
3202 /* need the manual connection? */
3203 if (alc880_is_multi_pin(nid)) {
3204 struct alc_spec *spec = codec->spec;
3205 int idx = alc880_multi_pin_idx(nid);
3206 snd_hda_codec_write(codec, alc880_idx_to_selector(idx), 0,
3207 AC_VERB_SET_CONNECT_SEL,
3208 alc880_dac_to_idx(spec->multiout.dac_nids[dac_idx]));
3212 static int get_pin_type(int line_out_type)
3214 if (line_out_type == AUTO_PIN_HP_OUT)
3220 static void alc880_auto_init_multi_out(struct hda_codec *codec)
3222 struct alc_spec *spec = codec->spec;
3225 alc_subsystem_id(codec, 0x15, 0x1b, 0x14);
3226 for (i = 0; i < spec->autocfg.line_outs; i++) {
3227 hda_nid_t nid = spec->autocfg.line_out_pins[i];
3228 int pin_type = get_pin_type(spec->autocfg.line_out_type);
3229 alc880_auto_set_output_and_unmute(codec, nid, pin_type, i);
3233 static void alc880_auto_init_extra_out(struct hda_codec *codec)
3235 struct alc_spec *spec = codec->spec;
3238 pin = spec->autocfg.speaker_pins[0];
3239 if (pin) /* connect to front */
3240 alc880_auto_set_output_and_unmute(codec, pin, PIN_OUT, 0);
3241 pin = spec->autocfg.hp_pins[0];
3242 if (pin) /* connect to front */
3243 alc880_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
3246 static void alc880_auto_init_analog_input(struct hda_codec *codec)
3248 struct alc_spec *spec = codec->spec;
3251 for (i = 0; i < AUTO_PIN_LAST; i++) {
3252 hda_nid_t nid = spec->autocfg.input_pins[i];
3253 if (alc880_is_input_pin(nid)) {
3254 snd_hda_codec_write(codec, nid, 0,
3255 AC_VERB_SET_PIN_WIDGET_CONTROL,
3256 i <= AUTO_PIN_FRONT_MIC ?
3257 PIN_VREF80 : PIN_IN);
3258 if (nid != ALC880_PIN_CD_NID)
3259 snd_hda_codec_write(codec, nid, 0,
3260 AC_VERB_SET_AMP_GAIN_MUTE,
3266 /* parse the BIOS configuration and set up the alc_spec */
3267 /* return 1 if successful, 0 if the proper config is not found,
3268 * or a negative error code
3270 static int alc880_parse_auto_config(struct hda_codec *codec)
3272 struct alc_spec *spec = codec->spec;
3274 static hda_nid_t alc880_ignore[] = { 0x1d, 0 };
3276 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
3280 if (!spec->autocfg.line_outs)
3281 return 0; /* can't find valid BIOS pin config */
3283 err = alc880_auto_fill_dac_nids(spec, &spec->autocfg);
3286 err = alc880_auto_create_multi_out_ctls(spec, &spec->autocfg);
3289 err = alc880_auto_create_extra_out(spec,
3290 spec->autocfg.speaker_pins[0],
3294 err = alc880_auto_create_extra_out(spec, spec->autocfg.hp_pins[0],
3298 err = alc880_auto_create_analog_input_ctls(spec, &spec->autocfg);
3302 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
3304 if (spec->autocfg.dig_out_pin)
3305 spec->multiout.dig_out_nid = ALC880_DIGOUT_NID;
3306 if (spec->autocfg.dig_in_pin)
3307 spec->dig_in_nid = ALC880_DIGIN_NID;
3309 if (spec->kctl_alloc)
3310 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
3312 spec->init_verbs[spec->num_init_verbs++] = alc880_volume_init_verbs;
3314 spec->num_mux_defs = 1;
3315 spec->input_mux = &spec->private_imux;
3320 /* additional initialization for auto-configuration model */
3321 static void alc880_auto_init(struct hda_codec *codec)
3323 alc880_auto_init_multi_out(codec);
3324 alc880_auto_init_extra_out(codec);
3325 alc880_auto_init_analog_input(codec);
3329 * OK, here we have finally the patch for ALC880
3332 static int patch_alc880(struct hda_codec *codec)
3334 struct alc_spec *spec;
3338 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
3344 board_config = snd_hda_check_board_config(codec, ALC880_MODEL_LAST,
3347 if (board_config < 0) {
3348 printk(KERN_INFO "hda_codec: Unknown model for ALC880, "
3349 "trying auto-probe from BIOS...\n");
3350 board_config = ALC880_AUTO;
3353 if (board_config == ALC880_AUTO) {
3354 /* automatic parse from the BIOS config */
3355 err = alc880_parse_auto_config(codec);
3361 "hda_codec: Cannot set up configuration "
3362 "from BIOS. Using 3-stack mode...\n");
3363 board_config = ALC880_3ST;
3367 if (board_config != ALC880_AUTO)
3368 setup_preset(spec, &alc880_presets[board_config]);
3370 spec->stream_name_analog = "ALC880 Analog";
3371 spec->stream_analog_playback = &alc880_pcm_analog_playback;
3372 spec->stream_analog_capture = &alc880_pcm_analog_capture;
3374 spec->stream_name_digital = "ALC880 Digital";
3375 spec->stream_digital_playback = &alc880_pcm_digital_playback;
3376 spec->stream_digital_capture = &alc880_pcm_digital_capture;
3378 if (!spec->adc_nids && spec->input_mux) {
3379 /* check whether NID 0x07 is valid */
3380 unsigned int wcap = get_wcaps(codec, alc880_adc_nids[0]);
3382 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
3383 if (wcap != AC_WID_AUD_IN) {
3384 spec->adc_nids = alc880_adc_nids_alt;
3385 spec->num_adc_nids = ARRAY_SIZE(alc880_adc_nids_alt);
3386 spec->mixers[spec->num_mixers] =
3387 alc880_capture_alt_mixer;
3390 spec->adc_nids = alc880_adc_nids;
3391 spec->num_adc_nids = ARRAY_SIZE(alc880_adc_nids);
3392 spec->mixers[spec->num_mixers] = alc880_capture_mixer;
3397 codec->patch_ops = alc_patch_ops;
3398 if (board_config == ALC880_AUTO)
3399 spec->init_hook = alc880_auto_init;
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 &
3749 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
3751 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
3753 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
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 &
3799 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
3800 /* unmute Line In */
3801 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
3803 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
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 &
3849 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
3850 /* unmute Line In */
3851 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
3853 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
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(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA, 1);
4071 snd_hda_codec_write(codec, 0x0f, 0,
4072 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP);
4074 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA, 0);
4075 snd_hda_codec_write(codec, 0x0f, 0,
4076 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
4080 static void alc260_replacer_672v_unsol_event(struct hda_codec *codec,
4083 if ((res >> 26) == ALC880_HP_EVENT)
4084 alc260_replacer_672v_automute(codec);
4087 /* Test configuration for debugging, modelled after the ALC880 test
4090 #ifdef CONFIG_SND_DEBUG
4091 static hda_nid_t alc260_test_dac_nids[1] = {
4094 static hda_nid_t alc260_test_adc_nids[2] = {
4097 /* For testing the ALC260, each input MUX needs its own definition since
4098 * the signal assignments are different. This assumes that the first ADC
4101 static struct hda_input_mux alc260_test_capture_sources[2] = {
4105 { "MIC1 pin", 0x0 },
4106 { "MIC2 pin", 0x1 },
4107 { "LINE1 pin", 0x2 },
4108 { "LINE2 pin", 0x3 },
4110 { "LINE-OUT pin", 0x5 },
4111 { "HP-OUT pin", 0x6 },
4117 { "MIC1 pin", 0x0 },
4118 { "MIC2 pin", 0x1 },
4119 { "LINE1 pin", 0x2 },
4120 { "LINE2 pin", 0x3 },
4123 { "LINE-OUT pin", 0x6 },
4124 { "HP-OUT pin", 0x7 },
4128 static struct snd_kcontrol_new alc260_test_mixer[] = {
4129 /* Output driver widgets */
4130 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
4131 HDA_BIND_MUTE_MONO("Mono Playback Switch", 0x0a, 1, 2, HDA_INPUT),
4132 HDA_CODEC_VOLUME("LOUT2 Playback Volume", 0x09, 0x0, HDA_OUTPUT),
4133 HDA_BIND_MUTE("LOUT2 Playback Switch", 0x09, 2, HDA_INPUT),
4134 HDA_CODEC_VOLUME("LOUT1 Playback Volume", 0x08, 0x0, HDA_OUTPUT),
4135 HDA_BIND_MUTE("LOUT1 Playback Switch", 0x08, 2, HDA_INPUT),
4137 /* Modes for retasking pin widgets
4138 * Note: the ALC260 doesn't seem to act on requests to enable mic
4139 * bias from NIDs 0x0f and 0x10. The ALC260 datasheet doesn't
4140 * mention this restriction. At this stage it's not clear whether
4141 * this behaviour is intentional or is a hardware bug in chip
4142 * revisions available at least up until early 2006. Therefore for
4143 * now allow the "HP-OUT" and "LINE-OUT" Mode controls to span all
4144 * choices, but if it turns out that the lack of mic bias for these
4145 * NIDs is intentional we could change their modes from
4146 * ALC_PIN_DIR_INOUT to ALC_PIN_DIR_INOUT_NOMICBIAS.
4148 ALC_PIN_MODE("HP-OUT pin mode", 0x10, ALC_PIN_DIR_INOUT),
4149 ALC_PIN_MODE("LINE-OUT pin mode", 0x0f, ALC_PIN_DIR_INOUT),
4150 ALC_PIN_MODE("LINE2 pin mode", 0x15, ALC_PIN_DIR_INOUT),
4151 ALC_PIN_MODE("LINE1 pin mode", 0x14, ALC_PIN_DIR_INOUT),
4152 ALC_PIN_MODE("MIC2 pin mode", 0x13, ALC_PIN_DIR_INOUT),
4153 ALC_PIN_MODE("MIC1 pin mode", 0x12, ALC_PIN_DIR_INOUT),
4155 /* Loopback mixer controls */
4156 HDA_CODEC_VOLUME("MIC1 Playback Volume", 0x07, 0x00, HDA_INPUT),
4157 HDA_CODEC_MUTE("MIC1 Playback Switch", 0x07, 0x00, HDA_INPUT),
4158 HDA_CODEC_VOLUME("MIC2 Playback Volume", 0x07, 0x01, HDA_INPUT),
4159 HDA_CODEC_MUTE("MIC2 Playback Switch", 0x07, 0x01, HDA_INPUT),
4160 HDA_CODEC_VOLUME("LINE1 Playback Volume", 0x07, 0x02, HDA_INPUT),
4161 HDA_CODEC_MUTE("LINE1 Playback Switch", 0x07, 0x02, HDA_INPUT),
4162 HDA_CODEC_VOLUME("LINE2 Playback Volume", 0x07, 0x03, HDA_INPUT),
4163 HDA_CODEC_MUTE("LINE2 Playback Switch", 0x07, 0x03, HDA_INPUT),
4164 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
4165 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
4166 HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
4167 HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
4168 HDA_CODEC_VOLUME("LINE-OUT loopback Playback Volume", 0x07, 0x06, HDA_INPUT),
4169 HDA_CODEC_MUTE("LINE-OUT loopback Playback Switch", 0x07, 0x06, HDA_INPUT),
4170 HDA_CODEC_VOLUME("HP-OUT loopback Playback Volume", 0x07, 0x7, HDA_INPUT),
4171 HDA_CODEC_MUTE("HP-OUT loopback Playback Switch", 0x07, 0x7, HDA_INPUT),
4173 /* Controls for GPIO pins, assuming they are configured as outputs */
4174 ALC_GPIO_DATA_SWITCH("GPIO pin 0", 0x01, 0x01),
4175 ALC_GPIO_DATA_SWITCH("GPIO pin 1", 0x01, 0x02),
4176 ALC_GPIO_DATA_SWITCH("GPIO pin 2", 0x01, 0x04),
4177 ALC_GPIO_DATA_SWITCH("GPIO pin 3", 0x01, 0x08),
4179 /* Switches to allow the digital IO pins to be enabled. The datasheet
4180 * is ambigious as to which NID is which; testing on laptops which
4181 * make this output available should provide clarification.
4183 ALC_SPDIF_CTRL_SWITCH("SPDIF Playback Switch", 0x03, 0x01),
4184 ALC_SPDIF_CTRL_SWITCH("SPDIF Capture Switch", 0x06, 0x01),
4188 static struct hda_verb alc260_test_init_verbs[] = {
4189 /* Enable all GPIOs as outputs with an initial value of 0 */
4190 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x0f},
4191 {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
4192 {0x01, AC_VERB_SET_GPIO_MASK, 0x0f},
4194 /* Enable retasking pins as output, initially without power amp */
4195 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4196 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4197 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4198 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4199 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4200 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4202 /* Disable digital (SPDIF) pins initially, but users can enable
4203 * them via a mixer switch. In the case of SPDIF-out, this initverb
4204 * payload also sets the generation to 0, output to be in "consumer"
4205 * PCM format, copyright asserted, no pre-emphasis and no validity
4208 {0x03, AC_VERB_SET_DIGI_CONVERT_1, 0},
4209 {0x06, AC_VERB_SET_DIGI_CONVERT_1, 0},
4211 /* Ensure mic1, mic2, line1 and line2 pin widgets take input from the
4212 * OUT1 sum bus when acting as an output.
4214 {0x0b, AC_VERB_SET_CONNECT_SEL, 0},
4215 {0x0c, AC_VERB_SET_CONNECT_SEL, 0},
4216 {0x0d, AC_VERB_SET_CONNECT_SEL, 0},
4217 {0x0e, AC_VERB_SET_CONNECT_SEL, 0},
4219 /* Start with output sum widgets muted and their output gains at min */
4220 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4221 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4222 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4223 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4224 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4225 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4226 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4227 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4228 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4230 /* Unmute retasking pin widget output buffers since the default
4231 * state appears to be output. As the pin mode is changed by the
4232 * user the pin mode control will take care of enabling the pin's
4233 * input/output buffers as needed.
4235 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4236 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4237 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4238 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4239 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4240 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4241 /* Also unmute the mono-out pin widget */
4242 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4244 /* Mute capture amp left and right */
4245 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4246 /* Set ADC connection select to match default mixer setting (mic1
4249 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
4251 /* Do the same for the second ADC: mute capture input amp and
4252 * set ADC connection to mic1 pin
4254 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4255 {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
4257 /* Mute all inputs to mixer widget (even unconnected ones) */
4258 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
4259 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
4260 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
4261 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
4262 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
4263 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
4264 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
4265 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
4271 static struct hda_pcm_stream alc260_pcm_analog_playback = {
4277 static struct hda_pcm_stream alc260_pcm_analog_capture = {
4283 #define alc260_pcm_digital_playback alc880_pcm_digital_playback
4284 #define alc260_pcm_digital_capture alc880_pcm_digital_capture
4287 * for BIOS auto-configuration
4290 static int alc260_add_playback_controls(struct alc_spec *spec, hda_nid_t nid,
4294 unsigned long vol_val, sw_val;
4298 if (nid >= 0x0f && nid < 0x11) {
4299 nid_vol = nid - 0x7;
4300 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, HDA_OUTPUT);
4301 sw_val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
4302 } else if (nid == 0x11) {
4303 nid_vol = nid - 0x7;
4304 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 2, 0, HDA_OUTPUT);
4305 sw_val = HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_OUTPUT);
4306 } else if (nid >= 0x12 && nid <= 0x15) {
4308 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, HDA_OUTPUT);
4309 sw_val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
4313 snprintf(name, sizeof(name), "%s Playback Volume", pfx);
4314 err = add_control(spec, ALC_CTL_WIDGET_VOL, name, vol_val);
4317 snprintf(name, sizeof(name), "%s Playback Switch", pfx);
4318 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name, sw_val);
4324 /* add playback controls from the parsed DAC table */
4325 static int alc260_auto_create_multi_out_ctls(struct alc_spec *spec,
4326 const struct auto_pin_cfg *cfg)
4331 spec->multiout.num_dacs = 1;
4332 spec->multiout.dac_nids = spec->private_dac_nids;
4333 spec->multiout.dac_nids[0] = 0x02;
4335 nid = cfg->line_out_pins[0];
4337 err = alc260_add_playback_controls(spec, nid, "Front");
4342 nid = cfg->speaker_pins[0];
4344 err = alc260_add_playback_controls(spec, nid, "Speaker");
4349 nid = cfg->hp_pins[0];
4351 err = alc260_add_playback_controls(spec, nid, "Headphone");
4358 /* create playback/capture controls for input pins */
4359 static int alc260_auto_create_analog_input_ctls(struct alc_spec *spec,
4360 const struct auto_pin_cfg *cfg)
4362 struct hda_input_mux *imux = &spec->private_imux;
4365 for (i = 0; i < AUTO_PIN_LAST; i++) {
4366 if (cfg->input_pins[i] >= 0x12) {
4367 idx = cfg->input_pins[i] - 0x12;
4368 err = new_analog_input(spec, cfg->input_pins[i],
4369 auto_pin_cfg_labels[i], idx,
4373 imux->items[imux->num_items].label =
4374 auto_pin_cfg_labels[i];
4375 imux->items[imux->num_items].index = idx;
4378 if (cfg->input_pins[i] >= 0x0f && cfg->input_pins[i] <= 0x10){
4379 idx = cfg->input_pins[i] - 0x09;
4380 err = new_analog_input(spec, cfg->input_pins[i],
4381 auto_pin_cfg_labels[i], idx,
4385 imux->items[imux->num_items].label =
4386 auto_pin_cfg_labels[i];
4387 imux->items[imux->num_items].index = idx;
4394 static void alc260_auto_set_output_and_unmute(struct hda_codec *codec,
4395 hda_nid_t nid, int pin_type,
4399 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
4401 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
4403 /* need the manual connection? */
4405 int idx = nid - 0x12;
4406 snd_hda_codec_write(codec, idx + 0x0b, 0,
4407 AC_VERB_SET_CONNECT_SEL, sel_idx);
4411 static void alc260_auto_init_multi_out(struct hda_codec *codec)
4413 struct alc_spec *spec = codec->spec;
4416 alc_subsystem_id(codec, 0x10, 0x15, 0x0f);
4417 nid = spec->autocfg.line_out_pins[0];
4419 int pin_type = get_pin_type(spec->autocfg.line_out_type);
4420 alc260_auto_set_output_and_unmute(codec, nid, pin_type, 0);
4423 nid = spec->autocfg.speaker_pins[0];
4425 alc260_auto_set_output_and_unmute(codec, nid, PIN_OUT, 0);
4427 nid = spec->autocfg.hp_pins[0];
4429 alc260_auto_set_output_and_unmute(codec, nid, PIN_HP, 0);
4432 #define ALC260_PIN_CD_NID 0x16
4433 static void alc260_auto_init_analog_input(struct hda_codec *codec)
4435 struct alc_spec *spec = codec->spec;
4438 for (i = 0; i < AUTO_PIN_LAST; i++) {
4439 hda_nid_t nid = spec->autocfg.input_pins[i];
4441 snd_hda_codec_write(codec, nid, 0,
4442 AC_VERB_SET_PIN_WIDGET_CONTROL,
4443 i <= AUTO_PIN_FRONT_MIC ?
4444 PIN_VREF80 : PIN_IN);
4445 if (nid != ALC260_PIN_CD_NID)
4446 snd_hda_codec_write(codec, nid, 0,
4447 AC_VERB_SET_AMP_GAIN_MUTE,
4454 * generic initialization of ADC, input mixers and output mixers
4456 static struct hda_verb alc260_volume_init_verbs[] = {
4458 * Unmute ADC0-1 and set the default input to mic-in
4460 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
4461 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4462 {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
4463 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4465 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
4467 * Note: PASD motherboards uses the Line In 2 as the input for
4468 * front panel mic (mic 2)
4470 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
4471 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4472 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4473 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
4474 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
4475 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
4478 * Set up output mixers (0x08 - 0x0a)
4480 /* set vol=0 to output mixers */
4481 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4482 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4483 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4484 /* set up input amps for analog loopback */
4485 /* Amp Indices: DAC = 0, mixer = 1 */
4486 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4487 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4488 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4489 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4490 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4491 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4496 static int alc260_parse_auto_config(struct hda_codec *codec)
4498 struct alc_spec *spec = codec->spec;
4501 static hda_nid_t alc260_ignore[] = { 0x17, 0 };
4503 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
4507 err = alc260_auto_create_multi_out_ctls(spec, &spec->autocfg);
4510 if (!spec->kctl_alloc)
4511 return 0; /* can't find valid BIOS pin config */
4512 err = alc260_auto_create_analog_input_ctls(spec, &spec->autocfg);
4516 spec->multiout.max_channels = 2;
4518 if (spec->autocfg.dig_out_pin)
4519 spec->multiout.dig_out_nid = ALC260_DIGOUT_NID;
4520 if (spec->kctl_alloc)
4521 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
4523 spec->init_verbs[spec->num_init_verbs++] = alc260_volume_init_verbs;
4525 spec->num_mux_defs = 1;
4526 spec->input_mux = &spec->private_imux;
4528 /* check whether NID 0x04 is valid */
4529 wcap = get_wcaps(codec, 0x04);
4530 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT; /* get type */
4531 if (wcap != AC_WID_AUD_IN) {
4532 spec->adc_nids = alc260_adc_nids_alt;
4533 spec->num_adc_nids = ARRAY_SIZE(alc260_adc_nids_alt);
4534 spec->mixers[spec->num_mixers] = alc260_capture_alt_mixer;
4536 spec->adc_nids = alc260_adc_nids;
4537 spec->num_adc_nids = ARRAY_SIZE(alc260_adc_nids);
4538 spec->mixers[spec->num_mixers] = alc260_capture_mixer;
4545 /* additional initialization for auto-configuration model */
4546 static void alc260_auto_init(struct hda_codec *codec)
4548 alc260_auto_init_multi_out(codec);
4549 alc260_auto_init_analog_input(codec);
4553 * ALC260 configurations
4555 static const char *alc260_models[ALC260_MODEL_LAST] = {
4556 [ALC260_BASIC] = "basic",
4558 [ALC260_HP_3013] = "hp-3013",
4559 [ALC260_FUJITSU_S702X] = "fujitsu",
4560 [ALC260_ACER] = "acer",
4561 [ALC260_WILL] = "will",
4562 [ALC260_REPLACER_672V] = "replacer",
4563 #ifdef CONFIG_SND_DEBUG
4564 [ALC260_TEST] = "test",
4566 [ALC260_AUTO] = "auto",
4569 static struct snd_pci_quirk alc260_cfg_tbl[] = {
4570 SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_ACER),
4571 SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_ACER),
4572 SND_PCI_QUIRK(0x103c, 0x2808, "HP d5700", ALC260_HP_3013),
4573 SND_PCI_QUIRK(0x103c, 0x280a, "HP d5750", ALC260_HP_3013),
4574 SND_PCI_QUIRK(0x103c, 0x3010, "HP", ALC260_HP_3013),
4575 SND_PCI_QUIRK(0x103c, 0x3011, "HP", ALC260_HP),
4576 SND_PCI_QUIRK(0x103c, 0x3012, "HP", ALC260_HP_3013),
4577 SND_PCI_QUIRK(0x103c, 0x3013, "HP", ALC260_HP_3013),
4578 SND_PCI_QUIRK(0x103c, 0x3014, "HP", ALC260_HP),
4579 SND_PCI_QUIRK(0x103c, 0x3015, "HP", ALC260_HP),
4580 SND_PCI_QUIRK(0x103c, 0x3016, "HP", ALC260_HP),
4581 SND_PCI_QUIRK(0x104d, 0x81bb, "Sony VAIO", ALC260_BASIC),
4582 SND_PCI_QUIRK(0x104d, 0x81cc, "Sony VAIO", ALC260_BASIC),
4583 SND_PCI_QUIRK(0x104d, 0x81cd, "Sony VAIO", ALC260_BASIC),
4584 SND_PCI_QUIRK(0x10cf, 0x1326, "Fujitsu S702X", ALC260_FUJITSU_S702X),
4585 SND_PCI_QUIRK(0x152d, 0x0729, "CTL U553W", ALC260_BASIC),
4586 SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_WILL),
4587 SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_REPLACER_672V),
4591 static struct alc_config_preset alc260_presets[] = {
4593 .mixers = { alc260_base_output_mixer,
4595 alc260_pc_beep_mixer,
4596 alc260_capture_mixer },
4597 .init_verbs = { alc260_init_verbs },
4598 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4599 .dac_nids = alc260_dac_nids,
4600 .num_adc_nids = ARRAY_SIZE(alc260_adc_nids),
4601 .adc_nids = alc260_adc_nids,
4602 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4603 .channel_mode = alc260_modes,
4604 .input_mux = &alc260_capture_source,
4607 .mixers = { alc260_base_output_mixer,
4609 alc260_capture_alt_mixer },
4610 .init_verbs = { alc260_init_verbs },
4611 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4612 .dac_nids = alc260_dac_nids,
4613 .num_adc_nids = ARRAY_SIZE(alc260_hp_adc_nids),
4614 .adc_nids = alc260_hp_adc_nids,
4615 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4616 .channel_mode = alc260_modes,
4617 .input_mux = &alc260_capture_source,
4619 [ALC260_HP_3013] = {
4620 .mixers = { alc260_hp_3013_mixer,
4622 alc260_capture_alt_mixer },
4623 .init_verbs = { alc260_hp_3013_init_verbs },
4624 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4625 .dac_nids = alc260_dac_nids,
4626 .num_adc_nids = ARRAY_SIZE(alc260_hp_adc_nids),
4627 .adc_nids = alc260_hp_adc_nids,
4628 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4629 .channel_mode = alc260_modes,
4630 .input_mux = &alc260_capture_source,
4632 [ALC260_FUJITSU_S702X] = {
4633 .mixers = { alc260_fujitsu_mixer,
4634 alc260_capture_mixer },
4635 .init_verbs = { alc260_fujitsu_init_verbs },
4636 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4637 .dac_nids = alc260_dac_nids,
4638 .num_adc_nids = ARRAY_SIZE(alc260_dual_adc_nids),
4639 .adc_nids = alc260_dual_adc_nids,
4640 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4641 .channel_mode = alc260_modes,
4642 .num_mux_defs = ARRAY_SIZE(alc260_fujitsu_capture_sources),
4643 .input_mux = alc260_fujitsu_capture_sources,
4646 .mixers = { alc260_acer_mixer,
4647 alc260_capture_mixer },
4648 .init_verbs = { alc260_acer_init_verbs },
4649 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4650 .dac_nids = alc260_dac_nids,
4651 .num_adc_nids = ARRAY_SIZE(alc260_dual_adc_nids),
4652 .adc_nids = alc260_dual_adc_nids,
4653 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4654 .channel_mode = alc260_modes,
4655 .num_mux_defs = ARRAY_SIZE(alc260_acer_capture_sources),
4656 .input_mux = alc260_acer_capture_sources,
4659 .mixers = { alc260_will_mixer,
4660 alc260_capture_mixer },
4661 .init_verbs = { alc260_init_verbs, alc260_will_verbs },
4662 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4663 .dac_nids = alc260_dac_nids,
4664 .num_adc_nids = ARRAY_SIZE(alc260_adc_nids),
4665 .adc_nids = alc260_adc_nids,
4666 .dig_out_nid = ALC260_DIGOUT_NID,
4667 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4668 .channel_mode = alc260_modes,
4669 .input_mux = &alc260_capture_source,
4671 [ALC260_REPLACER_672V] = {
4672 .mixers = { alc260_replacer_672v_mixer,
4673 alc260_capture_mixer },
4674 .init_verbs = { alc260_init_verbs, alc260_replacer_672v_verbs },
4675 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4676 .dac_nids = alc260_dac_nids,
4677 .num_adc_nids = ARRAY_SIZE(alc260_adc_nids),
4678 .adc_nids = alc260_adc_nids,
4679 .dig_out_nid = ALC260_DIGOUT_NID,
4680 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4681 .channel_mode = alc260_modes,
4682 .input_mux = &alc260_capture_source,
4683 .unsol_event = alc260_replacer_672v_unsol_event,
4684 .init_hook = alc260_replacer_672v_automute,
4686 #ifdef CONFIG_SND_DEBUG
4688 .mixers = { alc260_test_mixer,
4689 alc260_capture_mixer },
4690 .init_verbs = { alc260_test_init_verbs },
4691 .num_dacs = ARRAY_SIZE(alc260_test_dac_nids),
4692 .dac_nids = alc260_test_dac_nids,
4693 .num_adc_nids = ARRAY_SIZE(alc260_test_adc_nids),
4694 .adc_nids = alc260_test_adc_nids,
4695 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4696 .channel_mode = alc260_modes,
4697 .num_mux_defs = ARRAY_SIZE(alc260_test_capture_sources),
4698 .input_mux = alc260_test_capture_sources,
4703 static int patch_alc260(struct hda_codec *codec)
4705 struct alc_spec *spec;
4706 int err, board_config;
4708 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4714 board_config = snd_hda_check_board_config(codec, ALC260_MODEL_LAST,
4717 if (board_config < 0) {
4718 snd_printd(KERN_INFO "hda_codec: Unknown model for ALC260, "
4719 "trying auto-probe from BIOS...\n");
4720 board_config = ALC260_AUTO;
4723 if (board_config == ALC260_AUTO) {
4724 /* automatic parse from the BIOS config */
4725 err = alc260_parse_auto_config(codec);
4731 "hda_codec: Cannot set up configuration "
4732 "from BIOS. Using base mode...\n");
4733 board_config = ALC260_BASIC;
4737 if (board_config != ALC260_AUTO)
4738 setup_preset(spec, &alc260_presets[board_config]);
4740 spec->stream_name_analog = "ALC260 Analog";
4741 spec->stream_analog_playback = &alc260_pcm_analog_playback;
4742 spec->stream_analog_capture = &alc260_pcm_analog_capture;
4744 spec->stream_name_digital = "ALC260 Digital";
4745 spec->stream_digital_playback = &alc260_pcm_digital_playback;
4746 spec->stream_digital_capture = &alc260_pcm_digital_capture;
4748 codec->patch_ops = alc_patch_ops;
4749 if (board_config == ALC260_AUTO)
4750 spec->init_hook = alc260_auto_init;
4759 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
4760 * configuration. Each pin widget can choose any input DACs and a mixer.
4761 * Each ADC is connected from a mixer of all inputs. This makes possible
4762 * 6-channel independent captures.
4764 * In addition, an independent DAC for the multi-playback (not used in this
4767 #define ALC882_DIGOUT_NID 0x06
4768 #define ALC882_DIGIN_NID 0x0a
4770 static struct hda_channel_mode alc882_ch_modes[1] = {
4774 static hda_nid_t alc882_dac_nids[4] = {
4775 /* front, rear, clfe, rear_surr */
4776 0x02, 0x03, 0x04, 0x05
4779 /* identical with ALC880 */
4780 #define alc882_adc_nids alc880_adc_nids
4781 #define alc882_adc_nids_alt alc880_adc_nids_alt
4784 /* FIXME: should be a matrix-type input source selection */
4786 static struct hda_input_mux alc882_capture_source = {
4790 { "Front Mic", 0x1 },
4795 #define alc882_mux_enum_info alc_mux_enum_info
4796 #define alc882_mux_enum_get alc_mux_enum_get
4798 static int alc882_mux_enum_put(struct snd_kcontrol *kcontrol,
4799 struct snd_ctl_elem_value *ucontrol)
4801 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
4802 struct alc_spec *spec = codec->spec;
4803 const struct hda_input_mux *imux = spec->input_mux;
4804 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
4805 static hda_nid_t capture_mixers[3] = { 0x24, 0x23, 0x22 };
4806 hda_nid_t nid = capture_mixers[adc_idx];
4807 unsigned int *cur_val = &spec->cur_mux[adc_idx];
4808 unsigned int i, idx;
4810 idx = ucontrol->value.enumerated.item[0];
4811 if (idx >= imux->num_items)
4812 idx = imux->num_items - 1;
4813 if (*cur_val == idx && !codec->in_resume)
4815 for (i = 0; i < imux->num_items; i++) {
4816 unsigned int v = (i == idx) ? 0x7000 : 0x7080;
4817 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
4818 v | (imux->items[i].index << 8));
4827 static struct hda_verb alc882_3ST_ch2_init[] = {
4828 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
4829 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
4830 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
4831 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
4838 static struct hda_verb alc882_3ST_ch6_init[] = {
4839 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4840 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
4841 { 0x18, AC_VERB_SET_CONNECT_SEL, 0x02 },
4842 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4843 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
4844 { 0x1a, AC_VERB_SET_CONNECT_SEL, 0x01 },
4848 static struct hda_channel_mode alc882_3ST_6ch_modes[2] = {
4849 { 2, alc882_3ST_ch2_init },
4850 { 6, alc882_3ST_ch6_init },
4856 static struct hda_verb alc882_sixstack_ch6_init[] = {
4857 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
4858 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4859 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4860 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4867 static struct hda_verb alc882_sixstack_ch8_init[] = {
4868 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4869 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4870 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4871 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4875 static struct hda_channel_mode alc882_sixstack_modes[2] = {
4876 { 6, alc882_sixstack_ch6_init },
4877 { 8, alc882_sixstack_ch8_init },
4880 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
4881 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
4883 static struct snd_kcontrol_new alc882_base_mixer[] = {
4884 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
4885 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
4886 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
4887 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
4888 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
4889 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
4890 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
4891 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
4892 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
4893 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
4894 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
4895 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
4896 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
4897 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
4898 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
4899 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
4900 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
4901 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
4902 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
4903 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
4904 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
4905 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
4906 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
4910 static struct snd_kcontrol_new alc882_w2jc_mixer[] = {
4911 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
4912 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
4913 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
4914 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
4915 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
4916 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
4917 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
4918 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
4919 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
4920 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
4921 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
4925 static struct snd_kcontrol_new alc882_targa_mixer[] = {
4926 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
4927 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
4928 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
4929 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
4930 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
4931 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
4932 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
4933 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
4934 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
4935 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
4936 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
4940 /* Pin assignment: Front=0x14, HP = 0x15, Front = 0x16, ???
4941 * Front Mic=0x18, Line In = 0x1a, Line In = 0x1b, CD = 0x1c
4943 static struct snd_kcontrol_new alc882_asus_a7j_mixer[] = {
4944 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
4945 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
4946 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
4947 HDA_CODEC_MUTE("Mobile Front Playback Switch", 0x16, 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("Mobile Line Playback Volume", 0x0b, 0x03, HDA_INPUT),
4953 HDA_CODEC_MUTE("Mobile Line Playback Switch", 0x0b, 0x03, HDA_INPUT),
4954 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
4955 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
4959 static struct snd_kcontrol_new alc882_chmode_mixer[] = {
4961 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4962 .name = "Channel Mode",
4963 .info = alc_ch_mode_info,
4964 .get = alc_ch_mode_get,
4965 .put = alc_ch_mode_put,
4970 static struct hda_verb alc882_init_verbs[] = {
4971 /* Front mixer: unmute input/output amp left and right (volume = 0) */
4972 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4973 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4974 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4976 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4977 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4978 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4980 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4981 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4982 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4984 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4985 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4986 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4988 /* Front Pin: output 0 (0x0c) */
4989 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4990 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4991 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
4992 /* Rear Pin: output 1 (0x0d) */
4993 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4994 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4995 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
4996 /* CLFE Pin: output 2 (0x0e) */
4997 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4998 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4999 {0x16, AC_VERB_SET_CONNECT_SEL, 0x02},
5000 /* Side Pin: output 3 (0x0f) */
5001 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5002 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5003 {0x17, AC_VERB_SET_CONNECT_SEL, 0x03},
5004 /* Mic (rear) pin: input vref at 80% */
5005 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5006 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5007 /* Front Mic pin: input vref at 80% */
5008 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5009 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5010 /* Line In pin: input */
5011 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
5012 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5013 /* Line-2 In: Headphone output (output 0 - 0x0c) */
5014 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5015 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5016 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
5017 /* CD pin widget for input */
5018 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
5020 /* FIXME: use matrix-type input source selection */
5021 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
5022 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
5023 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5024 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5025 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5026 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5028 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5029 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5030 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5031 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5033 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5034 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5035 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5036 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5037 /* ADC1: mute amp left and right */
5038 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5039 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
5040 /* ADC2: mute amp left and right */
5041 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5042 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
5043 /* ADC3: mute amp left and right */
5044 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5045 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
5050 static struct hda_verb alc882_eapd_verbs[] = {
5051 /* change to EAPD mode */
5052 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
5053 {0x20, AC_VERB_SET_PROC_COEF, 0x3060},
5058 static struct snd_kcontrol_new alc882_macpro_mixer[] = {
5059 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5060 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
5061 HDA_CODEC_MUTE("Headphone Playback Switch", 0x18, 0x0, HDA_OUTPUT),
5062 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x01, HDA_INPUT),
5063 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x01, HDA_INPUT),
5064 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x02, HDA_INPUT),
5065 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x02, HDA_INPUT),
5069 static struct hda_verb alc882_macpro_init_verbs[] = {
5070 /* Front mixer: unmute input/output amp left and right (volume = 0) */
5071 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5072 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5073 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5074 /* Front Pin: output 0 (0x0c) */
5075 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5076 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5077 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
5078 /* Front Mic pin: input vref at 80% */
5079 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5080 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5081 /* Speaker: output */
5082 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5083 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5084 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x04},
5085 /* Headphone output (output 0 - 0x0c) */
5086 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5087 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5088 {0x18, AC_VERB_SET_CONNECT_SEL, 0x00},
5090 /* FIXME: use matrix-type input source selection */
5091 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
5092 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
5093 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5094 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5095 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5096 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5098 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5099 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5100 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5101 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5103 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5104 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5105 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5106 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5107 /* ADC1: mute amp left and right */
5108 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5109 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
5110 /* ADC2: mute amp left and right */
5111 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5112 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
5113 /* ADC3: mute amp left and right */
5114 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5115 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
5120 static struct hda_verb alc882_targa_verbs[] = {
5121 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5122 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5124 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5125 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5127 {0x18, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
5128 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/surround */
5129 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
5131 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
5132 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
5133 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
5134 {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
5138 /* toggle speaker-output according to the hp-jack state */
5139 static void alc882_targa_automute(struct hda_codec *codec)
5141 unsigned int present;
5143 present = snd_hda_codec_read(codec, 0x14, 0,
5144 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
5145 snd_hda_codec_amp_update(codec, 0x1b, 0, HDA_OUTPUT, 0,
5146 0x80, present ? 0x80 : 0);
5147 snd_hda_codec_amp_update(codec, 0x1b, 1, HDA_OUTPUT, 0,
5148 0x80, present ? 0x80 : 0);
5149 snd_hda_codec_write(codec, 1, 0, AC_VERB_SET_GPIO_DATA, present ? 1 : 3);
5152 static void alc882_targa_unsol_event(struct hda_codec *codec, unsigned int res)
5154 /* Looks like the unsol event is incompatible with the standard
5155 * definition. 4bit tag is placed at 26 bit!
5157 if (((res >> 26) == ALC880_HP_EVENT)) {
5158 alc882_targa_automute(codec);
5162 static struct hda_verb alc882_asus_a7j_verbs[] = {
5163 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5164 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5166 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5167 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5168 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5170 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00}, /* Front */
5171 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
5172 {0x16, AC_VERB_SET_CONNECT_SEL, 0x00}, /* Front */
5174 {0x18, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
5175 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/surround */
5176 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
5180 static void alc882_gpio_mute(struct hda_codec *codec, int pin, int muted)
5182 unsigned int gpiostate, gpiomask, gpiodir;
5184 gpiostate = snd_hda_codec_read(codec, codec->afg, 0,
5185 AC_VERB_GET_GPIO_DATA, 0);
5188 gpiostate |= (1 << pin);
5190 gpiostate &= ~(1 << pin);
5192 gpiomask = snd_hda_codec_read(codec, codec->afg, 0,
5193 AC_VERB_GET_GPIO_MASK, 0);
5194 gpiomask |= (1 << pin);
5196 gpiodir = snd_hda_codec_read(codec, codec->afg, 0,
5197 AC_VERB_GET_GPIO_DIRECTION, 0);
5198 gpiodir |= (1 << pin);
5201 snd_hda_codec_write(codec, codec->afg, 0,
5202 AC_VERB_SET_GPIO_MASK, gpiomask);
5203 snd_hda_codec_write(codec, codec->afg, 0,
5204 AC_VERB_SET_GPIO_DIRECTION, gpiodir);
5208 snd_hda_codec_write(codec, codec->afg, 0,
5209 AC_VERB_SET_GPIO_DATA, gpiostate);
5213 * generic initialization of ADC, input mixers and output mixers
5215 static struct hda_verb alc882_auto_init_verbs[] = {
5217 * Unmute ADC0-2 and set the default input to mic-in
5219 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
5220 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5221 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
5222 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5223 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
5224 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5226 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
5228 * Note: PASD motherboards uses the Line In 2 as the input for
5229 * front panel mic (mic 2)
5231 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
5232 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5233 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5234 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
5235 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
5236 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
5239 * Set up output mixers (0x0c - 0x0f)
5241 /* set vol=0 to output mixers */
5242 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5243 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5244 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5245 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5246 /* set up input amps for analog loopback */
5247 /* Amp Indices: DAC = 0, mixer = 1 */
5248 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5249 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5250 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5251 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5252 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5253 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5254 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5255 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5256 {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5257 {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5259 /* FIXME: use matrix-type input source selection */
5260 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
5261 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
5262 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
5263 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
5264 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
5265 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
5267 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
5268 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
5269 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
5270 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
5272 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
5273 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
5274 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
5275 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
5280 /* capture mixer elements */
5281 static struct snd_kcontrol_new alc882_capture_alt_mixer[] = {
5282 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5283 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5284 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
5285 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
5287 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5288 /* The multiple "Capture Source" controls confuse alsamixer
5289 * So call somewhat different..
5290 * FIXME: the controls appear in the "playback" view!
5292 /* .name = "Capture Source", */
5293 .name = "Input Source",
5295 .info = alc882_mux_enum_info,
5296 .get = alc882_mux_enum_get,
5297 .put = alc882_mux_enum_put,
5302 static struct snd_kcontrol_new alc882_capture_mixer[] = {
5303 HDA_CODEC_VOLUME("Capture Volume", 0x07, 0x0, HDA_INPUT),
5304 HDA_CODEC_MUTE("Capture Switch", 0x07, 0x0, HDA_INPUT),
5305 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x08, 0x0, HDA_INPUT),
5306 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x08, 0x0, HDA_INPUT),
5307 HDA_CODEC_VOLUME_IDX("Capture Volume", 2, 0x09, 0x0, HDA_INPUT),
5308 HDA_CODEC_MUTE_IDX("Capture Switch", 2, 0x09, 0x0, HDA_INPUT),
5310 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5311 /* The multiple "Capture Source" controls confuse alsamixer
5312 * So call somewhat different..
5313 * FIXME: the controls appear in the "playback" view!
5315 /* .name = "Capture Source", */
5316 .name = "Input Source",
5318 .info = alc882_mux_enum_info,
5319 .get = alc882_mux_enum_get,
5320 .put = alc882_mux_enum_put,
5325 /* pcm configuration: identiacal with ALC880 */
5326 #define alc882_pcm_analog_playback alc880_pcm_analog_playback
5327 #define alc882_pcm_analog_capture alc880_pcm_analog_capture
5328 #define alc882_pcm_digital_playback alc880_pcm_digital_playback
5329 #define alc882_pcm_digital_capture alc880_pcm_digital_capture
5332 * configuration and preset
5334 static const char *alc882_models[ALC882_MODEL_LAST] = {
5335 [ALC882_3ST_DIG] = "3stack-dig",
5336 [ALC882_6ST_DIG] = "6stack-dig",
5337 [ALC882_ARIMA] = "arima",
5338 [ALC882_W2JC] = "w2jc",
5339 [ALC885_MACPRO] = "macpro",
5340 [ALC882_AUTO] = "auto",
5343 static struct snd_pci_quirk alc882_cfg_tbl[] = {
5344 SND_PCI_QUIRK(0x1019, 0x6668, "ECS", ALC882_6ST_DIG),
5345 SND_PCI_QUIRK(0x105b, 0x6668, "Foxconn", ALC882_6ST_DIG),
5346 SND_PCI_QUIRK(0x1462, 0x6668, "MSI", ALC882_6ST_DIG),
5347 SND_PCI_QUIRK(0x1462, 0x28fb, "Targa T8", ALC882_TARGA), /* MSI-1049 T8 */
5348 SND_PCI_QUIRK(0x161f, 0x2054, "Arima W820", ALC882_ARIMA),
5349 SND_PCI_QUIRK(0x1043, 0x060d, "Asus A7J", ALC882_ASUS_A7J),
5350 SND_PCI_QUIRK(0x1043, 0x81d8, "Asus P5WD", ALC882_6ST_DIG),
5351 SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_W2JC),
5355 static struct alc_config_preset alc882_presets[] = {
5356 [ALC882_3ST_DIG] = {
5357 .mixers = { alc882_base_mixer },
5358 .init_verbs = { alc882_init_verbs },
5359 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5360 .dac_nids = alc882_dac_nids,
5361 .dig_out_nid = ALC882_DIGOUT_NID,
5362 .dig_in_nid = ALC882_DIGIN_NID,
5363 .num_channel_mode = ARRAY_SIZE(alc882_ch_modes),
5364 .channel_mode = alc882_ch_modes,
5366 .input_mux = &alc882_capture_source,
5368 [ALC882_6ST_DIG] = {
5369 .mixers = { alc882_base_mixer, alc882_chmode_mixer },
5370 .init_verbs = { alc882_init_verbs },
5371 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5372 .dac_nids = alc882_dac_nids,
5373 .dig_out_nid = ALC882_DIGOUT_NID,
5374 .dig_in_nid = ALC882_DIGIN_NID,
5375 .num_channel_mode = ARRAY_SIZE(alc882_sixstack_modes),
5376 .channel_mode = alc882_sixstack_modes,
5377 .input_mux = &alc882_capture_source,
5380 .mixers = { alc882_base_mixer, alc882_chmode_mixer },
5381 .init_verbs = { alc882_init_verbs, alc882_eapd_verbs },
5382 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5383 .dac_nids = alc882_dac_nids,
5384 .num_channel_mode = ARRAY_SIZE(alc882_sixstack_modes),
5385 .channel_mode = alc882_sixstack_modes,
5386 .input_mux = &alc882_capture_source,
5389 .mixers = { alc882_w2jc_mixer, alc882_chmode_mixer },
5390 .init_verbs = { alc882_init_verbs, alc882_eapd_verbs,
5391 alc880_gpio1_init_verbs },
5392 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5393 .dac_nids = alc882_dac_nids,
5394 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
5395 .channel_mode = alc880_threestack_modes,
5397 .input_mux = &alc882_capture_source,
5398 .dig_out_nid = ALC882_DIGOUT_NID,
5401 .mixers = { alc882_macpro_mixer },
5402 .init_verbs = { alc882_macpro_init_verbs },
5403 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5404 .dac_nids = alc882_dac_nids,
5405 .dig_out_nid = ALC882_DIGOUT_NID,
5406 .dig_in_nid = ALC882_DIGIN_NID,
5407 .num_channel_mode = ARRAY_SIZE(alc882_ch_modes),
5408 .channel_mode = alc882_ch_modes,
5409 .input_mux = &alc882_capture_source,
5412 .mixers = { alc882_targa_mixer, alc882_chmode_mixer,
5413 alc882_capture_mixer },
5414 .init_verbs = { alc882_init_verbs, alc882_targa_verbs},
5415 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5416 .dac_nids = alc882_dac_nids,
5417 .dig_out_nid = ALC882_DIGOUT_NID,
5418 .num_adc_nids = ARRAY_SIZE(alc882_adc_nids),
5419 .adc_nids = alc882_adc_nids,
5420 .num_channel_mode = ARRAY_SIZE(alc882_3ST_6ch_modes),
5421 .channel_mode = alc882_3ST_6ch_modes,
5423 .input_mux = &alc882_capture_source,
5424 .unsol_event = alc882_targa_unsol_event,
5425 .init_hook = alc882_targa_automute,
5427 [ALC882_ASUS_A7J] = {
5428 .mixers = { alc882_asus_a7j_mixer, alc882_chmode_mixer,
5429 alc882_capture_mixer },
5430 .init_verbs = { alc882_init_verbs, alc882_asus_a7j_verbs},
5431 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5432 .dac_nids = alc882_dac_nids,
5433 .dig_out_nid = ALC882_DIGOUT_NID,
5434 .num_adc_nids = ARRAY_SIZE(alc882_adc_nids),
5435 .adc_nids = alc882_adc_nids,
5436 .num_channel_mode = ARRAY_SIZE(alc882_3ST_6ch_modes),
5437 .channel_mode = alc882_3ST_6ch_modes,
5439 .input_mux = &alc882_capture_source,
5448 PINFIX_ABIT_AW9D_MAX
5451 static struct alc_pincfg alc882_abit_aw9d_pinfix[] = {
5452 { 0x15, 0x01080104 }, /* side */
5453 { 0x16, 0x01011012 }, /* rear */
5454 { 0x17, 0x01016011 }, /* clfe */
5458 static const struct alc_pincfg *alc882_pin_fixes[] = {
5459 [PINFIX_ABIT_AW9D_MAX] = alc882_abit_aw9d_pinfix,
5462 static struct snd_pci_quirk alc882_pinfix_tbl[] = {
5463 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", PINFIX_ABIT_AW9D_MAX),
5468 * BIOS auto configuration
5470 static void alc882_auto_set_output_and_unmute(struct hda_codec *codec,
5471 hda_nid_t nid, int pin_type,
5475 struct alc_spec *spec = codec->spec;
5478 if (spec->multiout.dac_nids[dac_idx] == 0x25)
5481 idx = spec->multiout.dac_nids[dac_idx] - 2;
5483 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
5485 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
5487 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, idx);
5491 static void alc882_auto_init_multi_out(struct hda_codec *codec)
5493 struct alc_spec *spec = codec->spec;
5496 alc_subsystem_id(codec, 0x15, 0x1b, 0x14);
5497 for (i = 0; i <= HDA_SIDE; i++) {
5498 hda_nid_t nid = spec->autocfg.line_out_pins[i];
5499 int pin_type = get_pin_type(spec->autocfg.line_out_type);
5501 alc882_auto_set_output_and_unmute(codec, nid, pin_type,
5506 static void alc882_auto_init_hp_out(struct hda_codec *codec)
5508 struct alc_spec *spec = codec->spec;
5511 pin = spec->autocfg.hp_pins[0];
5512 if (pin) /* connect to front */
5514 alc882_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
5517 #define alc882_is_input_pin(nid) alc880_is_input_pin(nid)
5518 #define ALC882_PIN_CD_NID ALC880_PIN_CD_NID
5520 static void alc882_auto_init_analog_input(struct hda_codec *codec)
5522 struct alc_spec *spec = codec->spec;
5525 for (i = 0; i < AUTO_PIN_LAST; i++) {
5526 hda_nid_t nid = spec->autocfg.input_pins[i];
5527 if (alc882_is_input_pin(nid)) {
5528 snd_hda_codec_write(codec, nid, 0,
5529 AC_VERB_SET_PIN_WIDGET_CONTROL,
5530 i <= AUTO_PIN_FRONT_MIC ?
5531 PIN_VREF80 : PIN_IN);
5532 if (nid != ALC882_PIN_CD_NID)
5533 snd_hda_codec_write(codec, nid, 0,
5534 AC_VERB_SET_AMP_GAIN_MUTE,
5540 /* almost identical with ALC880 parser... */
5541 static int alc882_parse_auto_config(struct hda_codec *codec)
5543 struct alc_spec *spec = codec->spec;
5544 int err = alc880_parse_auto_config(codec);
5549 /* hack - override the init verbs */
5550 spec->init_verbs[0] = alc882_auto_init_verbs;
5554 /* additional initialization for auto-configuration model */
5555 static void alc882_auto_init(struct hda_codec *codec)
5557 alc882_auto_init_multi_out(codec);
5558 alc882_auto_init_hp_out(codec);
5559 alc882_auto_init_analog_input(codec);
5562 static int patch_alc882(struct hda_codec *codec)
5564 struct alc_spec *spec;
5565 int err, board_config;
5567 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5573 board_config = snd_hda_check_board_config(codec, ALC882_MODEL_LAST,
5577 if (board_config < 0 || board_config >= ALC882_MODEL_LAST) {
5578 /* Pick up systems that don't supply PCI SSID */
5579 switch (codec->subsystem_id) {
5580 case 0x106b0c00: /* Mac Pro */
5581 board_config = ALC885_MACPRO;
5584 printk(KERN_INFO "hda_codec: Unknown model for ALC882, "
5585 "trying auto-probe from BIOS...\n");
5586 board_config = ALC882_AUTO;
5590 alc_fix_pincfg(codec, alc882_pinfix_tbl, alc882_pin_fixes);
5592 if (board_config == ALC882_AUTO) {
5593 /* automatic parse from the BIOS config */
5594 err = alc882_parse_auto_config(codec);
5600 "hda_codec: Cannot set up configuration "
5601 "from BIOS. Using base mode...\n");
5602 board_config = ALC882_3ST_DIG;
5606 if (board_config != ALC882_AUTO)
5607 setup_preset(spec, &alc882_presets[board_config]);
5609 if (board_config == ALC885_MACPRO) {
5610 alc882_gpio_mute(codec, 0, 0);
5611 alc882_gpio_mute(codec, 1, 0);
5614 spec->stream_name_analog = "ALC882 Analog";
5615 spec->stream_analog_playback = &alc882_pcm_analog_playback;
5616 spec->stream_analog_capture = &alc882_pcm_analog_capture;
5618 spec->stream_name_digital = "ALC882 Digital";
5619 spec->stream_digital_playback = &alc882_pcm_digital_playback;
5620 spec->stream_digital_capture = &alc882_pcm_digital_capture;
5622 if (!spec->adc_nids && spec->input_mux) {
5623 /* check whether NID 0x07 is valid */
5624 unsigned int wcap = get_wcaps(codec, 0x07);
5626 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
5627 if (wcap != AC_WID_AUD_IN) {
5628 spec->adc_nids = alc882_adc_nids_alt;
5629 spec->num_adc_nids = ARRAY_SIZE(alc882_adc_nids_alt);
5630 spec->mixers[spec->num_mixers] =
5631 alc882_capture_alt_mixer;
5634 spec->adc_nids = alc882_adc_nids;
5635 spec->num_adc_nids = ARRAY_SIZE(alc882_adc_nids);
5636 spec->mixers[spec->num_mixers] = alc882_capture_mixer;
5641 codec->patch_ops = alc_patch_ops;
5642 if (board_config == ALC882_AUTO)
5643 spec->init_hook = alc882_auto_init;
5651 * ALC883 is almost identical with ALC880 but has cleaner and more flexible
5652 * configuration. Each pin widget can choose any input DACs and a mixer.
5653 * Each ADC is connected from a mixer of all inputs. This makes possible
5654 * 6-channel independent captures.
5656 * In addition, an independent DAC for the multi-playback (not used in this
5659 #define ALC883_DIGOUT_NID 0x06
5660 #define ALC883_DIGIN_NID 0x0a
5662 static hda_nid_t alc883_dac_nids[4] = {
5663 /* front, rear, clfe, rear_surr */
5664 0x02, 0x04, 0x03, 0x05
5667 static hda_nid_t alc883_adc_nids[2] = {
5673 /* FIXME: should be a matrix-type input source selection */
5675 static struct hda_input_mux alc883_capture_source = {
5679 { "Front Mic", 0x1 },
5685 static struct hda_input_mux alc883_lenovo_101e_capture_source = {
5693 static struct hda_input_mux alc883_lenovo_nb0763_capture_source = {
5703 #define alc883_mux_enum_info alc_mux_enum_info
5704 #define alc883_mux_enum_get alc_mux_enum_get
5706 static int alc883_mux_enum_put(struct snd_kcontrol *kcontrol,
5707 struct snd_ctl_elem_value *ucontrol)
5709 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
5710 struct alc_spec *spec = codec->spec;
5711 const struct hda_input_mux *imux = spec->input_mux;
5712 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
5713 static hda_nid_t capture_mixers[3] = { 0x24, 0x23, 0x22 };
5714 hda_nid_t nid = capture_mixers[adc_idx];
5715 unsigned int *cur_val = &spec->cur_mux[adc_idx];
5716 unsigned int i, idx;
5718 idx = ucontrol->value.enumerated.item[0];
5719 if (idx >= imux->num_items)
5720 idx = imux->num_items - 1;
5721 if (*cur_val == idx && !codec->in_resume)
5723 for (i = 0; i < imux->num_items; i++) {
5724 unsigned int v = (i == idx) ? 0x7000 : 0x7080;
5725 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
5726 v | (imux->items[i].index << 8));
5735 static struct hda_channel_mode alc883_3ST_2ch_modes[1] = {
5742 static struct hda_verb alc883_3ST_ch2_init[] = {
5743 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
5744 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
5745 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
5746 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
5753 static struct hda_verb alc883_3ST_ch6_init[] = {
5754 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5755 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
5756 { 0x18, AC_VERB_SET_CONNECT_SEL, 0x02 },
5757 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5758 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
5759 { 0x1a, AC_VERB_SET_CONNECT_SEL, 0x01 },
5763 static struct hda_channel_mode alc883_3ST_6ch_modes[2] = {
5764 { 2, alc883_3ST_ch2_init },
5765 { 6, alc883_3ST_ch6_init },
5771 static struct hda_verb alc883_sixstack_ch6_init[] = {
5772 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
5773 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5774 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5775 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5782 static struct hda_verb alc883_sixstack_ch8_init[] = {
5783 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5784 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5785 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5786 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5790 static struct hda_channel_mode alc883_sixstack_modes[2] = {
5791 { 6, alc883_sixstack_ch6_init },
5792 { 8, alc883_sixstack_ch8_init },
5795 static struct hda_verb alc883_medion_eapd_verbs[] = {
5796 /* eanable EAPD on medion laptop */
5797 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
5798 {0x20, AC_VERB_SET_PROC_COEF, 0x3070},
5802 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
5803 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
5806 static struct snd_kcontrol_new alc883_base_mixer[] = {
5807 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5808 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
5809 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
5810 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
5811 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
5812 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
5813 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
5814 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
5815 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
5816 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
5817 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
5818 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5819 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5820 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5821 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5822 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5823 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5824 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5825 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
5826 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
5827 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
5828 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
5829 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
5830 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5831 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5832 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
5833 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
5835 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5836 /* .name = "Capture Source", */
5837 .name = "Input Source",
5839 .info = alc883_mux_enum_info,
5840 .get = alc883_mux_enum_get,
5841 .put = alc883_mux_enum_put,
5846 static struct snd_kcontrol_new alc883_3ST_2ch_mixer[] = {
5847 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5848 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
5849 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
5850 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5851 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5852 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5853 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5854 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5855 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5856 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5857 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
5858 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
5859 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
5860 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
5861 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
5862 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5863 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5864 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
5865 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
5867 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5868 /* .name = "Capture Source", */
5869 .name = "Input Source",
5871 .info = alc883_mux_enum_info,
5872 .get = alc883_mux_enum_get,
5873 .put = alc883_mux_enum_put,
5878 static struct snd_kcontrol_new alc883_3ST_6ch_mixer[] = {
5879 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5880 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
5881 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
5882 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
5883 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
5884 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
5885 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
5886 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
5887 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
5888 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5889 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5890 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5891 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5892 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5893 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5894 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5895 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
5896 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
5897 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
5898 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
5899 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
5900 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5901 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5902 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
5903 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
5905 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5906 /* .name = "Capture Source", */
5907 .name = "Input Source",
5909 .info = alc883_mux_enum_info,
5910 .get = alc883_mux_enum_get,
5911 .put = alc883_mux_enum_put,
5916 static struct snd_kcontrol_new alc883_fivestack_mixer[] = {
5917 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5918 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
5919 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
5920 HDA_CODEC_MUTE("Surround Playback Switch", 0x15, 0x0, HDA_OUTPUT),
5921 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
5922 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
5923 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x16, 1, 0x0, HDA_OUTPUT),
5924 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT),
5925 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
5926 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5927 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5928 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5929 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5930 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5931 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5932 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5933 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
5934 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
5935 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
5936 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
5937 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
5938 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5939 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5942 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5943 /* .name = "Capture Source", */
5944 .name = "Input Source",
5946 .info = alc883_mux_enum_info,
5947 .get = alc883_mux_enum_get,
5948 .put = alc883_mux_enum_put,
5953 static struct snd_kcontrol_new alc883_tagra_mixer[] = {
5954 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5955 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
5956 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
5957 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
5958 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
5959 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
5960 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
5961 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
5962 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
5963 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5964 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5965 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5966 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5967 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5968 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5969 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5970 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5971 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5972 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
5973 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
5975 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5976 /* .name = "Capture Source", */
5977 .name = "Input Source",
5979 .info = alc883_mux_enum_info,
5980 .get = alc883_mux_enum_get,
5981 .put = alc883_mux_enum_put,
5986 static struct snd_kcontrol_new alc883_tagra_2ch_mixer[] = {
5987 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5988 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
5989 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
5990 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5991 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5992 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5993 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5994 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5995 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5996 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5997 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
5998 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
6000 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6001 /* .name = "Capture Source", */
6002 .name = "Input Source",
6004 .info = alc883_mux_enum_info,
6005 .get = alc883_mux_enum_get,
6006 .put = alc883_mux_enum_put,
6011 static struct snd_kcontrol_new alc883_lenovo_101e_2ch_mixer[] = {
6012 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6013 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
6014 HDA_CODEC_VOLUME("iSpeaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
6015 HDA_BIND_MUTE("iSpeaker Playback Switch", 0x0d, 2, HDA_INPUT),
6016 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
6017 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
6018 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6019 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
6020 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6021 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6023 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6024 /* .name = "Capture Source", */
6025 .name = "Input Source",
6027 .info = alc883_mux_enum_info,
6028 .get = alc883_mux_enum_get,
6029 .put = alc883_mux_enum_put,
6034 static struct snd_kcontrol_new alc883_lenovo_nb0763_mixer[] = {
6035 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6036 HDA_BIND_MUTE("Speaker Playback Switch", 0x0c, 2, HDA_INPUT),
6037 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
6038 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6039 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6040 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6041 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6042 HDA_CODEC_VOLUME("iMic Playback Volume", 0x0b, 0x1, HDA_INPUT),
6043 HDA_CODEC_MUTE("iMic Playback Switch", 0x0b, 0x1, HDA_INPUT),
6044 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6045 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6046 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
6047 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
6049 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6050 /* .name = "Capture Source", */
6051 .name = "Input Source",
6053 .info = alc883_mux_enum_info,
6054 .get = alc883_mux_enum_get,
6055 .put = alc883_mux_enum_put,
6060 static struct snd_kcontrol_new alc883_medion_md2_mixer[] = {
6061 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6062 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
6063 HDA_CODEC_MUTE("Front Playback Switch", 0x15, 0x0, HDA_OUTPUT),
6064 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6065 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6066 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6067 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6068 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
6069 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
6070 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6071 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6072 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
6073 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
6075 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6076 /* .name = "Capture Source", */
6077 .name = "Input Source",
6079 .info = alc883_mux_enum_info,
6080 .get = alc883_mux_enum_get,
6081 .put = alc883_mux_enum_put,
6086 static struct snd_kcontrol_new alc888_hp_nettle_mixer[] = {
6087 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6088 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
6089 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0e, 0x0, HDA_OUTPUT),
6090 HDA_BIND_MUTE("Surround Playback Switch", 0x0e, 2, HDA_INPUT),
6091 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0d, 1, 0x0, HDA_OUTPUT),
6092 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0d, 2, 0x0, HDA_OUTPUT),
6093 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0d, 1, 2, HDA_INPUT),
6094 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0d, 2, 2, HDA_INPUT),
6095 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
6096 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
6097 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
6098 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6099 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6100 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
6101 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
6102 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6103 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6104 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6105 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
6106 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
6107 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
6108 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
6109 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
6110 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6111 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6112 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
6113 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
6115 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6116 /* .name = "Capture Source", */
6117 .name = "Input Source",
6119 .info = alc883_mux_enum_info,
6120 .get = alc883_mux_enum_get,
6121 .put = alc883_mux_enum_put,
6126 static struct snd_kcontrol_new alc888_hp_lucknow_mixer[] = {
6127 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6128 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
6129 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0e, 0x0, HDA_OUTPUT),
6130 HDA_BIND_MUTE("Surround Playback Switch", 0x0e, 2, HDA_INPUT),
6131 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0d, 1, 0x0, HDA_OUTPUT),
6132 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0d, 2, 0x0, HDA_OUTPUT),
6133 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0d, 1, 2, HDA_INPUT),
6134 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0d, 2, 2, HDA_INPUT),
6135 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
6136 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6137 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6138 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
6139 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
6140 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6141 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6142 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6143 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
6144 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
6145 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
6146 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
6147 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
6148 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6149 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6150 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
6151 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
6153 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6154 /* .name = "Capture Source", */
6155 .name = "Input Source",
6157 .info = alc883_mux_enum_info,
6158 .get = alc883_mux_enum_get,
6159 .put = alc883_mux_enum_put,
6164 static struct snd_kcontrol_new alc883_chmode_mixer[] = {
6166 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6167 .name = "Channel Mode",
6168 .info = alc_ch_mode_info,
6169 .get = alc_ch_mode_get,
6170 .put = alc_ch_mode_put,
6175 static struct hda_verb alc883_init_verbs[] = {
6176 /* ADC1: mute amp left and right */
6177 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6178 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
6179 /* ADC2: mute amp left and right */
6180 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6181 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
6182 /* Front mixer: unmute input/output amp left and right (volume = 0) */
6183 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6184 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6185 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
6187 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6188 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6189 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
6191 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6192 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6193 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
6195 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6196 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6197 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
6199 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6200 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6201 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
6202 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
6203 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
6205 /* Front Pin: output 0 (0x0c) */
6206 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
6207 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
6208 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
6209 /* Rear Pin: output 1 (0x0d) */
6210 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
6211 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
6212 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
6213 /* CLFE Pin: output 2 (0x0e) */
6214 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
6215 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
6216 {0x16, AC_VERB_SET_CONNECT_SEL, 0x02},
6217 /* Side Pin: output 3 (0x0f) */
6218 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
6219 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
6220 {0x17, AC_VERB_SET_CONNECT_SEL, 0x03},
6221 /* Mic (rear) pin: input vref at 80% */
6222 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
6223 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
6224 /* Front Mic pin: input vref at 80% */
6225 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
6226 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
6227 /* Line In pin: input */
6228 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
6229 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
6230 /* Line-2 In: Headphone output (output 0 - 0x0c) */
6231 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6232 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
6233 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
6234 /* CD pin widget for input */
6235 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
6237 /* FIXME: use matrix-type input source selection */
6238 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
6240 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6241 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6242 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
6243 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
6245 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6246 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6247 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
6248 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
6252 static struct hda_verb alc883_tagra_verbs[] = {
6253 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6254 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6256 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6257 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
6259 {0x18, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
6260 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/surround */
6261 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
6263 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
6264 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
6265 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
6266 {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
6271 static struct hda_verb alc883_lenovo_101e_verbs[] = {
6272 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
6273 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_FRONT_EVENT|AC_USRSP_EN},
6274 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT|AC_USRSP_EN},
6278 static struct hda_verb alc883_lenovo_nb0763_verbs[] = {
6279 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
6280 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6281 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
6282 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6286 static struct hda_verb alc888_lenovo_ms7195_verbs[] = {
6287 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6288 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6289 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
6290 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_FRONT_EVENT | AC_USRSP_EN},
6291 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
6295 static struct hda_verb alc888_hp_nettle_verbs[] = {
6296 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00}, /* Front: output 0 (0x0c) */
6297 {0x15, AC_VERB_SET_CONNECT_SEL, 0x02}, /* Rear : output 2 (0x0e) */
6298 {0x16, AC_VERB_SET_CONNECT_SEL, 0x01}, /* CLFE : output 1 (0x0d) */
6299 {0x17, AC_VERB_SET_CONNECT_SEL, 0x03}, /* Side : output 3 (0x0f) */
6303 static struct hda_verb alc888_hp_lucknow_verbs[] = {
6304 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00}, /* Front: output 0 (0x0c) */
6305 {0x18, AC_VERB_SET_CONNECT_SEL, 0x01}, /* Rear : output 1 (0x0d) */
6306 {0x16, AC_VERB_SET_CONNECT_SEL, 0x02}, /* CLFE : output 2 (0x0e) */
6310 static struct hda_verb alc888_hp_lucknow_2ch_init[] = {
6311 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
6312 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
6313 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
6314 { 0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
6318 static struct hda_verb alc888_hp_lucknow_6ch_init[] = {
6319 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6320 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
6321 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6322 { 0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
6326 static struct hda_channel_mode alc888_hp_lucknow_modes[2] = {
6327 { 2, alc888_hp_lucknow_2ch_init },
6328 { 6, alc888_hp_lucknow_6ch_init },
6331 /* toggle front-jack and RCA according to the hp-jack state */
6332 static void alc888_lenovo_ms7195_front_automute(struct hda_codec *codec)
6334 unsigned int present;
6336 present = snd_hda_codec_read(codec, 0x1b, 0,
6337 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
6338 snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
6339 0x80, present ? 0x80 : 0);
6340 snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
6341 0x80, present ? 0x80 : 0);
6342 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
6343 0x80, present ? 0x80 : 0);
6344 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
6345 0x80, present ? 0x80 : 0);
6349 /* toggle RCA according to the front-jack state */
6350 static void alc888_lenovo_ms7195_rca_automute(struct hda_codec *codec)
6352 unsigned int present;
6354 present = snd_hda_codec_read(codec, 0x14, 0,
6355 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
6356 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
6357 0x80, present ? 0x80 : 0);
6358 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
6359 0x80, present ? 0x80 : 0);
6362 static void alc883_lenovo_ms7195_unsol_event(struct hda_codec *codec,
6365 if ((res >> 26) == ALC880_HP_EVENT)
6366 alc888_lenovo_ms7195_front_automute(codec);
6367 if ((res >> 26) == ALC880_FRONT_EVENT)
6368 alc888_lenovo_ms7195_rca_automute(codec);
6371 static struct hda_verb alc883_medion_md2_verbs[] = {
6372 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6373 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6375 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6377 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
6381 /* toggle speaker-output according to the hp-jack state */
6382 static void alc883_medion_md2_automute(struct hda_codec *codec)
6384 unsigned int present;
6386 present = snd_hda_codec_read(codec, 0x14, 0,
6387 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
6388 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
6389 0x80, present ? 0x80 : 0);
6390 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
6391 0x80, present ? 0x80 : 0);
6394 static void alc883_medion_md2_unsol_event(struct hda_codec *codec,
6397 if ((res >> 26) == ALC880_HP_EVENT)
6398 alc883_medion_md2_automute(codec);
6401 /* toggle speaker-output according to the hp-jack state */
6402 static void alc883_tagra_automute(struct hda_codec *codec)
6404 unsigned int present;
6407 present = snd_hda_codec_read(codec, 0x14, 0,
6408 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
6409 bits = present ? 0x80 : 0;
6410 snd_hda_codec_amp_update(codec, 0x1b, 0, HDA_OUTPUT, 0,
6412 snd_hda_codec_amp_update(codec, 0x1b, 1, HDA_OUTPUT, 0,
6414 snd_hda_codec_write(codec, 1, 0, AC_VERB_SET_GPIO_DATA,
6418 static void alc883_tagra_unsol_event(struct hda_codec *codec, unsigned int res)
6420 if ((res >> 26) == ALC880_HP_EVENT)
6421 alc883_tagra_automute(codec);
6424 static void alc883_lenovo_101e_ispeaker_automute(struct hda_codec *codec)
6426 unsigned int present;
6429 present = snd_hda_codec_read(codec, 0x14, 0,
6430 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
6431 bits = present ? 0x80 : 0;
6432 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
6434 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
6438 static void alc883_lenovo_101e_all_automute(struct hda_codec *codec)
6440 unsigned int present;
6443 present = snd_hda_codec_read(codec, 0x1b, 0,
6444 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
6445 bits = present ? 0x80 : 0;
6446 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
6448 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
6450 snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
6452 snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
6456 static void alc883_lenovo_101e_unsol_event(struct hda_codec *codec,
6459 if ((res >> 26) == ALC880_HP_EVENT)
6460 alc883_lenovo_101e_all_automute(codec);
6461 if ((res >> 26) == ALC880_FRONT_EVENT)
6462 alc883_lenovo_101e_ispeaker_automute(codec);
6466 * generic initialization of ADC, input mixers and output mixers
6468 static struct hda_verb alc883_auto_init_verbs[] = {
6470 * Unmute ADC0-2 and set the default input to mic-in
6472 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
6473 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6474 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
6475 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6477 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
6479 * Note: PASD motherboards uses the Line In 2 as the input for
6480 * front panel mic (mic 2)
6482 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
6483 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6484 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6485 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
6486 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
6487 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
6490 * Set up output mixers (0x0c - 0x0f)
6492 /* set vol=0 to output mixers */
6493 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6494 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6495 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6496 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6497 /* set up input amps for analog loopback */
6498 /* Amp Indices: DAC = 0, mixer = 1 */
6499 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6500 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6501 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6502 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6503 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6504 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6505 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6506 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6507 {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6508 {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6510 /* FIXME: use matrix-type input source selection */
6511 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
6513 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6514 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6515 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
6516 /* {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)}, */
6517 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
6519 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6520 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6521 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
6522 /* {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)}, */
6523 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
6528 /* capture mixer elements */
6529 static struct snd_kcontrol_new alc883_capture_mixer[] = {
6530 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6531 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6532 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
6533 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
6535 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6536 /* The multiple "Capture Source" controls confuse alsamixer
6537 * So call somewhat different..
6538 * FIXME: the controls appear in the "playback" view!
6540 /* .name = "Capture Source", */
6541 .name = "Input Source",
6543 .info = alc882_mux_enum_info,
6544 .get = alc882_mux_enum_get,
6545 .put = alc882_mux_enum_put,
6550 /* pcm configuration: identiacal with ALC880 */
6551 #define alc883_pcm_analog_playback alc880_pcm_analog_playback
6552 #define alc883_pcm_analog_capture alc880_pcm_analog_capture
6553 #define alc883_pcm_digital_playback alc880_pcm_digital_playback
6554 #define alc883_pcm_digital_capture alc880_pcm_digital_capture
6557 * configuration and preset
6559 static const char *alc883_models[ALC883_MODEL_LAST] = {
6560 [ALC883_3ST_2ch_DIG] = "3stack-dig",
6561 [ALC883_3ST_6ch_DIG] = "3stack-6ch-dig",
6562 [ALC883_3ST_6ch] = "3stack-6ch",
6563 [ALC883_6ST_DIG] = "6stack-dig",
6564 [ALC883_TARGA_DIG] = "targa-dig",
6565 [ALC883_TARGA_2ch_DIG] = "targa-2ch-dig",
6566 [ALC883_ACER] = "acer",
6567 [ALC883_MEDION] = "medion",
6568 [ALC883_MEDION_MD2] = "medion-md2",
6569 [ALC883_LAPTOP_EAPD] = "laptop-eapd",
6570 [ALC883_LENOVO_101E_2ch] = "lenovo-101e",
6571 [ALC883_LENOVO_NB0763] = "lenovo-nb0763",
6572 [ALC888_LENOVO_MS7195_DIG] = "lenovo-ms7195-dig",
6573 [ALC888_HP_NETTLE] = "hp-nettle",
6574 [ALC888_HP_LUCKNOW] = "hp-lucknow",
6575 [ALC883_AUTO] = "auto",
6578 static struct snd_pci_quirk alc883_cfg_tbl[] = {
6579 SND_PCI_QUIRK(0x1019, 0x6668, "ECS", ALC883_3ST_6ch_DIG),
6580 SND_PCI_QUIRK(0x103c, 0x2a3d, "HP Pavillion", ALC883_6ST_DIG),
6581 SND_PCI_QUIRK(0x108e, 0x534d, NULL, ALC883_3ST_6ch),
6582 SND_PCI_QUIRK(0x1558, 0, "Clevo laptop", ALC883_LAPTOP_EAPD),
6583 SND_PCI_QUIRK(0x105b, 0x6668, "Foxconn", ALC883_6ST_DIG),
6584 SND_PCI_QUIRK(0x1458, 0xa002, "MSI", ALC883_6ST_DIG),
6585 SND_PCI_QUIRK(0x1462, 0x6668, "MSI", ALC883_6ST_DIG),
6586 SND_PCI_QUIRK(0x1462, 0x7187, "MSI", ALC883_6ST_DIG),
6587 SND_PCI_QUIRK(0x1462, 0x7250, "MSI", ALC883_6ST_DIG),
6588 SND_PCI_QUIRK(0x1462, 0x7280, "MSI", ALC883_6ST_DIG),
6589 SND_PCI_QUIRK(0x1462, 0x7327, "MSI", ALC883_6ST_DIG),
6590 SND_PCI_QUIRK(0x1462, 0x0349, "MSI", ALC883_TARGA_2ch_DIG),
6591 SND_PCI_QUIRK(0x1462, 0x0579, "MSI", ALC883_TARGA_2ch_DIG),
6592 SND_PCI_QUIRK(0x1462, 0x3729, "MSI S420", ALC883_TARGA_DIG),
6593 SND_PCI_QUIRK(0x1462, 0x3ef9, "MSI", ALC883_TARGA_DIG),
6594 SND_PCI_QUIRK(0x1462, 0x3b7f, "MSI", ALC883_TARGA_2ch_DIG),
6595 SND_PCI_QUIRK(0x1462, 0x3fcc, "MSI", ALC883_TARGA_DIG),
6596 SND_PCI_QUIRK(0x1462, 0x3fc1, "MSI", ALC883_TARGA_DIG),
6597 SND_PCI_QUIRK(0x1462, 0x3fc3, "MSI", ALC883_TARGA_DIG),
6598 SND_PCI_QUIRK(0x1462, 0x4314, "MSI", ALC883_TARGA_DIG),
6599 SND_PCI_QUIRK(0x1462, 0x4319, "MSI", ALC883_TARGA_DIG),
6600 SND_PCI_QUIRK(0x1462, 0x4324, "MSI", ALC883_TARGA_DIG),
6601 SND_PCI_QUIRK(0x1462, 0xa422, "MSI", ALC883_TARGA_2ch_DIG),
6602 SND_PCI_QUIRK(0x1025, 0, "Acer laptop", ALC883_ACER),
6603 SND_PCI_QUIRK(0x15d9, 0x8780, "Supermicro PDSBA", ALC883_3ST_6ch),
6604 SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_MEDION),
6605 SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC883_LAPTOP_EAPD),
6606 SND_PCI_QUIRK(0x8086, 0xd601, "D102GGC", ALC883_3ST_6ch),
6607 SND_PCI_QUIRK(0x17aa, 0x101e, "Lenovo 101e", ALC883_LENOVO_101E_2ch),
6608 SND_PCI_QUIRK(0x17aa, 0x3bfd, "Lenovo NB0763", ALC883_LENOVO_NB0763),
6609 SND_PCI_QUIRK(0x17aa, 0x2085, "Lenovo NB0763", ALC883_LENOVO_NB0763),
6610 SND_PCI_QUIRK(0x103c, 0x2a61, "HP Nettle", ALC888_HP_NETTLE),
6611 SND_PCI_QUIRK(0x103c, 0x2a60, "HP Lucknow", ALC888_HP_LUCKNOW),
6612 SND_PCI_QUIRK(0x17c0, 0x4071, "MEDION MD2", ALC883_MEDION_MD2),
6616 static struct alc_config_preset alc883_presets[] = {
6617 [ALC883_3ST_2ch_DIG] = {
6618 .mixers = { alc883_3ST_2ch_mixer },
6619 .init_verbs = { alc883_init_verbs },
6620 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6621 .dac_nids = alc883_dac_nids,
6622 .dig_out_nid = ALC883_DIGOUT_NID,
6623 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6624 .adc_nids = alc883_adc_nids,
6625 .dig_in_nid = ALC883_DIGIN_NID,
6626 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
6627 .channel_mode = alc883_3ST_2ch_modes,
6628 .input_mux = &alc883_capture_source,
6630 [ALC883_3ST_6ch_DIG] = {
6631 .mixers = { alc883_3ST_6ch_mixer, alc883_chmode_mixer },
6632 .init_verbs = { alc883_init_verbs },
6633 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6634 .dac_nids = alc883_dac_nids,
6635 .dig_out_nid = ALC883_DIGOUT_NID,
6636 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6637 .adc_nids = alc883_adc_nids,
6638 .dig_in_nid = ALC883_DIGIN_NID,
6639 .num_channel_mode = ARRAY_SIZE(alc883_3ST_6ch_modes),
6640 .channel_mode = alc883_3ST_6ch_modes,
6642 .input_mux = &alc883_capture_source,
6644 [ALC883_3ST_6ch] = {
6645 .mixers = { alc883_3ST_6ch_mixer, alc883_chmode_mixer },
6646 .init_verbs = { alc883_init_verbs },
6647 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6648 .dac_nids = alc883_dac_nids,
6649 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6650 .adc_nids = alc883_adc_nids,
6651 .num_channel_mode = ARRAY_SIZE(alc883_3ST_6ch_modes),
6652 .channel_mode = alc883_3ST_6ch_modes,
6654 .input_mux = &alc883_capture_source,
6656 [ALC883_6ST_DIG] = {
6657 .mixers = { alc883_base_mixer, alc883_chmode_mixer },
6658 .init_verbs = { alc883_init_verbs },
6659 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6660 .dac_nids = alc883_dac_nids,
6661 .dig_out_nid = ALC883_DIGOUT_NID,
6662 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6663 .adc_nids = alc883_adc_nids,
6664 .dig_in_nid = ALC883_DIGIN_NID,
6665 .num_channel_mode = ARRAY_SIZE(alc883_sixstack_modes),
6666 .channel_mode = alc883_sixstack_modes,
6667 .input_mux = &alc883_capture_source,
6669 [ALC883_TARGA_DIG] = {
6670 .mixers = { alc883_tagra_mixer, alc883_chmode_mixer },
6671 .init_verbs = { alc883_init_verbs, alc883_tagra_verbs},
6672 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6673 .dac_nids = alc883_dac_nids,
6674 .dig_out_nid = ALC883_DIGOUT_NID,
6675 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6676 .adc_nids = alc883_adc_nids,
6677 .num_channel_mode = ARRAY_SIZE(alc883_3ST_6ch_modes),
6678 .channel_mode = alc883_3ST_6ch_modes,
6680 .input_mux = &alc883_capture_source,
6681 .unsol_event = alc883_tagra_unsol_event,
6682 .init_hook = alc883_tagra_automute,
6684 [ALC883_TARGA_2ch_DIG] = {
6685 .mixers = { alc883_tagra_2ch_mixer},
6686 .init_verbs = { alc883_init_verbs, alc883_tagra_verbs},
6687 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6688 .dac_nids = alc883_dac_nids,
6689 .dig_out_nid = ALC883_DIGOUT_NID,
6690 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6691 .adc_nids = alc883_adc_nids,
6692 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
6693 .channel_mode = alc883_3ST_2ch_modes,
6694 .input_mux = &alc883_capture_source,
6695 .unsol_event = alc883_tagra_unsol_event,
6696 .init_hook = alc883_tagra_automute,
6699 .mixers = { alc883_base_mixer,
6700 alc883_chmode_mixer },
6701 /* On TravelMate laptops, GPIO 0 enables the internal speaker
6702 * and the headphone jack. Turn this on and rely on the
6703 * standard mute methods whenever the user wants to turn
6704 * these outputs off.
6706 .init_verbs = { alc883_init_verbs, alc880_gpio1_init_verbs },
6707 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6708 .dac_nids = alc883_dac_nids,
6709 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6710 .adc_nids = alc883_adc_nids,
6711 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
6712 .channel_mode = alc883_3ST_2ch_modes,
6713 .input_mux = &alc883_capture_source,
6716 .mixers = { alc883_fivestack_mixer,
6717 alc883_chmode_mixer },
6718 .init_verbs = { alc883_init_verbs,
6719 alc883_medion_eapd_verbs },
6720 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6721 .dac_nids = alc883_dac_nids,
6722 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6723 .adc_nids = alc883_adc_nids,
6724 .num_channel_mode = ARRAY_SIZE(alc883_sixstack_modes),
6725 .channel_mode = alc883_sixstack_modes,
6726 .input_mux = &alc883_capture_source,
6728 [ALC883_MEDION_MD2] = {
6729 .mixers = { alc883_medion_md2_mixer},
6730 .init_verbs = { alc883_init_verbs, alc883_medion_md2_verbs},
6731 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6732 .dac_nids = alc883_dac_nids,
6733 .dig_out_nid = ALC883_DIGOUT_NID,
6734 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6735 .adc_nids = alc883_adc_nids,
6736 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
6737 .channel_mode = alc883_3ST_2ch_modes,
6738 .input_mux = &alc883_capture_source,
6739 .unsol_event = alc883_medion_md2_unsol_event,
6740 .init_hook = alc883_medion_md2_automute,
6742 [ALC883_LAPTOP_EAPD] = {
6743 .mixers = { alc883_base_mixer,
6744 alc883_chmode_mixer },
6745 .init_verbs = { alc883_init_verbs, alc882_eapd_verbs },
6746 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6747 .dac_nids = alc883_dac_nids,
6748 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6749 .adc_nids = alc883_adc_nids,
6750 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
6751 .channel_mode = alc883_3ST_2ch_modes,
6752 .input_mux = &alc883_capture_source,
6754 [ALC883_LENOVO_101E_2ch] = {
6755 .mixers = { alc883_lenovo_101e_2ch_mixer},
6756 .init_verbs = { alc883_init_verbs, alc883_lenovo_101e_verbs},
6757 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6758 .dac_nids = alc883_dac_nids,
6759 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6760 .adc_nids = alc883_adc_nids,
6761 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
6762 .channel_mode = alc883_3ST_2ch_modes,
6763 .input_mux = &alc883_lenovo_101e_capture_source,
6764 .unsol_event = alc883_lenovo_101e_unsol_event,
6765 .init_hook = alc883_lenovo_101e_all_automute,
6767 [ALC883_LENOVO_NB0763] = {
6768 .mixers = { alc883_lenovo_nb0763_mixer },
6769 .init_verbs = { alc883_init_verbs, alc883_lenovo_nb0763_verbs},
6770 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6771 .dac_nids = alc883_dac_nids,
6772 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6773 .adc_nids = alc883_adc_nids,
6774 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
6775 .channel_mode = alc883_3ST_2ch_modes,
6777 .input_mux = &alc883_lenovo_nb0763_capture_source,
6778 .unsol_event = alc883_medion_md2_unsol_event,
6779 .init_hook = alc883_medion_md2_automute,
6781 [ALC888_LENOVO_MS7195_DIG] = {
6782 .mixers = { alc883_3ST_6ch_mixer, alc883_chmode_mixer },
6783 .init_verbs = { alc883_init_verbs, alc888_lenovo_ms7195_verbs},
6784 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6785 .dac_nids = alc883_dac_nids,
6786 .dig_out_nid = ALC883_DIGOUT_NID,
6787 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6788 .adc_nids = alc883_adc_nids,
6789 .num_channel_mode = ARRAY_SIZE(alc883_3ST_6ch_modes),
6790 .channel_mode = alc883_3ST_6ch_modes,
6792 .input_mux = &alc883_capture_source,
6793 .unsol_event = alc883_lenovo_ms7195_unsol_event,
6794 .init_hook = alc888_lenovo_ms7195_front_automute,
6796 [ALC888_HP_NETTLE] = {
6797 .mixers = { alc888_hp_nettle_mixer, alc883_chmode_mixer },
6798 .init_verbs = { alc883_init_verbs, alc888_hp_nettle_verbs },
6799 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6800 .dac_nids = alc883_dac_nids,
6801 .dig_out_nid = ALC883_DIGOUT_NID,
6802 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6803 .adc_nids = alc883_adc_nids,
6804 .dig_in_nid = ALC883_DIGIN_NID,
6805 .num_channel_mode = ARRAY_SIZE(alc883_sixstack_modes),
6806 .channel_mode = alc883_sixstack_modes,
6807 .input_mux = &alc883_capture_source,
6809 [ALC888_HP_LUCKNOW] = {
6810 .mixers = { alc888_hp_lucknow_mixer, alc883_chmode_mixer },
6811 .init_verbs = { alc883_init_verbs, alc888_hp_lucknow_verbs },
6812 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6813 .dac_nids = alc883_dac_nids,
6814 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6815 .adc_nids = alc883_adc_nids,
6816 .num_channel_mode = ARRAY_SIZE(alc888_hp_lucknow_modes),
6817 .channel_mode = alc888_hp_lucknow_modes,
6819 .input_mux = &alc883_capture_source,
6825 * BIOS auto configuration
6827 static void alc883_auto_set_output_and_unmute(struct hda_codec *codec,
6828 hda_nid_t nid, int pin_type,
6832 struct alc_spec *spec = codec->spec;
6835 if (spec->multiout.dac_nids[dac_idx] == 0x25)
6838 idx = spec->multiout.dac_nids[dac_idx] - 2;
6840 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
6842 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
6844 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, idx);
6848 static void alc883_auto_init_multi_out(struct hda_codec *codec)
6850 struct alc_spec *spec = codec->spec;
6853 alc_subsystem_id(codec, 0x15, 0x1b, 0x14);
6854 for (i = 0; i <= HDA_SIDE; i++) {
6855 hda_nid_t nid = spec->autocfg.line_out_pins[i];
6856 int pin_type = get_pin_type(spec->autocfg.line_out_type);
6858 alc883_auto_set_output_and_unmute(codec, nid, pin_type,
6863 static void alc883_auto_init_hp_out(struct hda_codec *codec)
6865 struct alc_spec *spec = codec->spec;
6868 pin = spec->autocfg.hp_pins[0];
6869 if (pin) /* connect to front */
6871 alc883_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
6874 #define alc883_is_input_pin(nid) alc880_is_input_pin(nid)
6875 #define ALC883_PIN_CD_NID ALC880_PIN_CD_NID
6877 static void alc883_auto_init_analog_input(struct hda_codec *codec)
6879 struct alc_spec *spec = codec->spec;
6882 for (i = 0; i < AUTO_PIN_LAST; i++) {
6883 hda_nid_t nid = spec->autocfg.input_pins[i];
6884 if (alc883_is_input_pin(nid)) {
6885 snd_hda_codec_write(codec, nid, 0,
6886 AC_VERB_SET_PIN_WIDGET_CONTROL,
6887 (i <= AUTO_PIN_FRONT_MIC ?
6888 PIN_VREF80 : PIN_IN));
6889 if (nid != ALC883_PIN_CD_NID)
6890 snd_hda_codec_write(codec, nid, 0,
6891 AC_VERB_SET_AMP_GAIN_MUTE,
6897 /* almost identical with ALC880 parser... */
6898 static int alc883_parse_auto_config(struct hda_codec *codec)
6900 struct alc_spec *spec = codec->spec;
6901 int err = alc880_parse_auto_config(codec);
6906 /* hack - override the init verbs */
6907 spec->init_verbs[0] = alc883_auto_init_verbs;
6908 spec->mixers[spec->num_mixers] = alc883_capture_mixer;
6913 /* additional initialization for auto-configuration model */
6914 static void alc883_auto_init(struct hda_codec *codec)
6916 alc883_auto_init_multi_out(codec);
6917 alc883_auto_init_hp_out(codec);
6918 alc883_auto_init_analog_input(codec);
6921 static int patch_alc883(struct hda_codec *codec)
6923 struct alc_spec *spec;
6924 int err, board_config;
6926 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
6932 board_config = snd_hda_check_board_config(codec, ALC883_MODEL_LAST,
6935 if (board_config < 0) {
6936 printk(KERN_INFO "hda_codec: Unknown model for ALC883, "
6937 "trying auto-probe from BIOS...\n");
6938 board_config = ALC883_AUTO;
6941 if (board_config == ALC883_AUTO) {
6942 /* automatic parse from the BIOS config */
6943 err = alc883_parse_auto_config(codec);
6949 "hda_codec: Cannot set up configuration "
6950 "from BIOS. Using base mode...\n");
6951 board_config = ALC883_3ST_2ch_DIG;
6955 if (board_config != ALC883_AUTO)
6956 setup_preset(spec, &alc883_presets[board_config]);
6958 spec->stream_name_analog = "ALC883 Analog";
6959 spec->stream_analog_playback = &alc883_pcm_analog_playback;
6960 spec->stream_analog_capture = &alc883_pcm_analog_capture;
6962 spec->stream_name_digital = "ALC883 Digital";
6963 spec->stream_digital_playback = &alc883_pcm_digital_playback;
6964 spec->stream_digital_capture = &alc883_pcm_digital_capture;
6966 if (!spec->adc_nids && spec->input_mux) {
6967 spec->adc_nids = alc883_adc_nids;
6968 spec->num_adc_nids = ARRAY_SIZE(alc883_adc_nids);
6971 codec->patch_ops = alc_patch_ops;
6972 if (board_config == ALC883_AUTO)
6973 spec->init_hook = alc883_auto_init;
6982 #define ALC262_DIGOUT_NID ALC880_DIGOUT_NID
6983 #define ALC262_DIGIN_NID ALC880_DIGIN_NID
6985 #define alc262_dac_nids alc260_dac_nids
6986 #define alc262_adc_nids alc882_adc_nids
6987 #define alc262_adc_nids_alt alc882_adc_nids_alt
6989 #define alc262_modes alc260_modes
6990 #define alc262_capture_source alc882_capture_source
6992 static struct snd_kcontrol_new alc262_base_mixer[] = {
6993 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6994 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
6995 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6996 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6997 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
6998 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
6999 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7000 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7001 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
7002 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
7003 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
7004 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
7005 /* HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x0b, 0x05, HDA_INPUT),
7006 HDA_CODEC_MUTE("PC Beelp Playback Switch", 0x0b, 0x05, HDA_INPUT), */
7007 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0D, 0x0, HDA_OUTPUT),
7008 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
7009 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
7010 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT),
7014 static struct snd_kcontrol_new alc262_hippo1_mixer[] = {
7015 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
7016 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
7017 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
7018 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
7019 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
7020 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
7021 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7022 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7023 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
7024 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
7025 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
7026 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
7027 /* HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x0b, 0x05, HDA_INPUT),
7028 HDA_CODEC_MUTE("PC Beelp Playback Switch", 0x0b, 0x05, HDA_INPUT), */
7029 /*HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0D, 0x0, HDA_OUTPUT),*/
7030 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
7034 static struct snd_kcontrol_new alc262_HP_BPC_mixer[] = {
7035 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
7036 HDA_CODEC_MUTE("Front Playback Switch", 0x15, 0x0, HDA_OUTPUT),
7037 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
7038 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
7039 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT),
7041 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7042 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7043 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
7044 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
7045 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
7046 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
7047 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
7048 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
7049 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
7050 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
7051 HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x0b, 0x05, HDA_INPUT),
7052 HDA_CODEC_MUTE("PC Beep Playback Switch", 0x0b, 0x05, HDA_INPUT),
7053 HDA_CODEC_VOLUME("AUX IN Playback Volume", 0x0b, 0x06, HDA_INPUT),
7054 HDA_CODEC_MUTE("AUX IN Playback Switch", 0x0b, 0x06, HDA_INPUT),
7058 static struct snd_kcontrol_new alc262_HP_BPC_WildWest_mixer[] = {
7059 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
7060 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
7061 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
7062 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
7063 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
7064 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT),
7065 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x02, HDA_INPUT),
7066 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x02, HDA_INPUT),
7067 HDA_CODEC_VOLUME("Front Mic Boost", 0x1a, 0, HDA_INPUT),
7068 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x01, HDA_INPUT),
7069 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x01, HDA_INPUT),
7070 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
7071 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
7072 HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x0b, 0x05, HDA_INPUT),
7073 HDA_CODEC_MUTE("PC Beep Playback Switch", 0x0b, 0x05, HDA_INPUT),
7077 static struct snd_kcontrol_new alc262_HP_BPC_WildWest_option_mixer[] = {
7078 HDA_CODEC_VOLUME("Rear Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7079 HDA_CODEC_MUTE("Rear Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7080 HDA_CODEC_VOLUME("Rear Mic Boost", 0x18, 0, HDA_INPUT),
7084 static struct snd_kcontrol_new alc262_sony_mixer[] = {
7085 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
7086 HDA_CODEC_MUTE("Front Playback Switch", 0x15, 0x0, HDA_OUTPUT),
7087 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7088 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7089 HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
7090 HDA_CODEC_MUTE("ATAPI Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
7094 static struct snd_kcontrol_new alc262_benq_t31_mixer[] = {
7095 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
7096 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
7097 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
7098 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7099 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7100 HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
7101 HDA_CODEC_MUTE("ATAPI Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
7105 #define alc262_capture_mixer alc882_capture_mixer
7106 #define alc262_capture_alt_mixer alc882_capture_alt_mixer
7109 * generic initialization of ADC, input mixers and output mixers
7111 static struct hda_verb alc262_init_verbs[] = {
7113 * Unmute ADC0-2 and set the default input to mic-in
7115 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
7116 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7117 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
7118 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7119 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
7120 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7122 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
7124 * Note: PASD motherboards uses the Line In 2 as the input for
7125 * front panel mic (mic 2)
7127 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
7128 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7129 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7130 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
7131 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
7132 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
7135 * Set up output mixers (0x0c - 0x0e)
7137 /* set vol=0 to output mixers */
7138 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7139 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7140 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7141 /* set up input amps for analog loopback */
7142 /* Amp Indices: DAC = 0, mixer = 1 */
7143 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7144 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7145 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7146 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7147 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7148 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7150 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
7151 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
7152 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
7153 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
7154 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
7155 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
7157 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
7158 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
7159 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
7160 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
7161 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
7163 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
7164 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
7166 /* FIXME: use matrix-type input source selection */
7167 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
7168 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
7169 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7170 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
7171 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
7172 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
7174 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7175 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
7176 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
7177 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
7179 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7180 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
7181 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
7182 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
7187 static struct hda_verb alc262_hippo_unsol_verbs[] = {
7188 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
7189 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
7193 static struct hda_verb alc262_hippo1_unsol_verbs[] = {
7194 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
7195 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
7196 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
7198 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
7199 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
7203 static struct hda_verb alc262_sony_unsol_verbs[] = {
7204 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
7205 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
7206 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24}, // Front Mic
7208 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
7209 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
7212 /* mute/unmute internal speaker according to the hp jack and mute state */
7213 static void alc262_hippo_automute(struct hda_codec *codec, int force)
7215 struct alc_spec *spec = codec->spec;
7218 if (force || !spec->sense_updated) {
7219 unsigned int present;
7220 /* need to execute and sync at first */
7221 snd_hda_codec_read(codec, 0x15, 0, AC_VERB_SET_PIN_SENSE, 0);
7222 present = snd_hda_codec_read(codec, 0x15, 0,
7223 AC_VERB_GET_PIN_SENSE, 0);
7224 spec->jack_present = (present & 0x80000000) != 0;
7225 spec->sense_updated = 1;
7227 if (spec->jack_present) {
7228 /* mute internal speaker */
7229 snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
7231 snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
7234 /* unmute internal speaker if necessary */
7235 mute = snd_hda_codec_amp_read(codec, 0x15, 0, HDA_OUTPUT, 0);
7236 snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
7238 mute = snd_hda_codec_amp_read(codec, 0x15, 1, HDA_OUTPUT, 0);
7239 snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
7244 /* unsolicited event for HP jack sensing */
7245 static void alc262_hippo_unsol_event(struct hda_codec *codec,
7248 if ((res >> 26) != ALC880_HP_EVENT)
7250 alc262_hippo_automute(codec, 1);
7253 static void alc262_hippo1_automute(struct hda_codec *codec, int force)
7255 struct alc_spec *spec = codec->spec;
7258 if (force || !spec->sense_updated) {
7259 unsigned int present;
7260 /* need to execute and sync at first */
7261 snd_hda_codec_read(codec, 0x1b, 0, AC_VERB_SET_PIN_SENSE, 0);
7262 present = snd_hda_codec_read(codec, 0x1b, 0,
7263 AC_VERB_GET_PIN_SENSE, 0);
7264 spec->jack_present = (present & 0x80000000) != 0;
7265 spec->sense_updated = 1;
7267 if (spec->jack_present) {
7268 /* mute internal speaker */
7269 snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
7271 snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
7274 /* unmute internal speaker if necessary */
7275 mute = snd_hda_codec_amp_read(codec, 0x1b, 0, HDA_OUTPUT, 0);
7276 snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
7278 mute = snd_hda_codec_amp_read(codec, 0x1b, 1, HDA_OUTPUT, 0);
7279 snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
7284 /* unsolicited event for HP jack sensing */
7285 static void alc262_hippo1_unsol_event(struct hda_codec *codec,
7288 if ((res >> 26) != ALC880_HP_EVENT)
7290 alc262_hippo1_automute(codec, 1);
7295 * 0x14 = headphone/spdif-out, 0x15 = internal speaker
7298 #define ALC_HP_EVENT 0x37
7300 static struct hda_verb alc262_fujitsu_unsol_verbs[] = {
7301 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC_HP_EVENT},
7302 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
7306 static struct hda_input_mux alc262_fujitsu_capture_source = {
7314 static struct hda_input_mux alc262_HP_capture_source = {
7318 { "Front Mic", 0x3 },
7325 /* mute/unmute internal speaker according to the hp jack and mute state */
7326 static void alc262_fujitsu_automute(struct hda_codec *codec, int force)
7328 struct alc_spec *spec = codec->spec;
7331 if (force || !spec->sense_updated) {
7332 unsigned int present;
7333 /* need to execute and sync at first */
7334 snd_hda_codec_read(codec, 0x14, 0, AC_VERB_SET_PIN_SENSE, 0);
7335 present = snd_hda_codec_read(codec, 0x14, 0,
7336 AC_VERB_GET_PIN_SENSE, 0);
7337 spec->jack_present = (present & 0x80000000) != 0;
7338 spec->sense_updated = 1;
7340 if (spec->jack_present) {
7341 /* mute internal speaker */
7342 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
7344 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
7347 /* unmute internal speaker if necessary */
7348 mute = snd_hda_codec_amp_read(codec, 0x14, 0, HDA_OUTPUT, 0);
7349 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
7351 mute = snd_hda_codec_amp_read(codec, 0x14, 1, HDA_OUTPUT, 0);
7352 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
7357 /* unsolicited event for HP jack sensing */
7358 static void alc262_fujitsu_unsol_event(struct hda_codec *codec,
7361 if ((res >> 26) != ALC_HP_EVENT)
7363 alc262_fujitsu_automute(codec, 1);
7366 /* bind volumes of both NID 0x0c and 0x0d */
7367 static int alc262_fujitsu_master_vol_put(struct snd_kcontrol *kcontrol,
7368 struct snd_ctl_elem_value *ucontrol)
7370 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
7371 long *valp = ucontrol->value.integer.value;
7374 change = snd_hda_codec_amp_update(codec, 0x0c, 0, HDA_OUTPUT, 0,
7375 0x7f, valp[0] & 0x7f);
7376 change |= snd_hda_codec_amp_update(codec, 0x0c, 1, HDA_OUTPUT, 0,
7377 0x7f, valp[1] & 0x7f);
7378 snd_hda_codec_amp_update(codec, 0x0d, 0, HDA_OUTPUT, 0,
7379 0x7f, valp[0] & 0x7f);
7380 snd_hda_codec_amp_update(codec, 0x0d, 1, HDA_OUTPUT, 0,
7381 0x7f, valp[1] & 0x7f);
7385 /* bind hp and internal speaker mute (with plug check) */
7386 static int alc262_fujitsu_master_sw_put(struct snd_kcontrol *kcontrol,
7387 struct snd_ctl_elem_value *ucontrol)
7389 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
7390 long *valp = ucontrol->value.integer.value;
7393 change = snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
7394 0x80, valp[0] ? 0 : 0x80);
7395 change |= snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
7396 0x80, valp[1] ? 0 : 0x80);
7397 if (change || codec->in_resume)
7398 alc262_fujitsu_automute(codec, codec->in_resume);
7402 static struct snd_kcontrol_new alc262_fujitsu_mixer[] = {
7404 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7405 .name = "Master Playback Volume",
7406 .info = snd_hda_mixer_amp_volume_info,
7407 .get = snd_hda_mixer_amp_volume_get,
7408 .put = alc262_fujitsu_master_vol_put,
7409 .tlv = { .c = snd_hda_mixer_amp_tlv },
7410 .private_value = HDA_COMPOSE_AMP_VAL(0x0c, 3, 0, HDA_OUTPUT),
7413 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7414 .name = "Master Playback Switch",
7415 .info = snd_hda_mixer_amp_switch_info,
7416 .get = snd_hda_mixer_amp_switch_get,
7417 .put = alc262_fujitsu_master_sw_put,
7418 .private_value = HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT),
7420 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
7421 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
7422 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
7423 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7424 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7428 /* additional init verbs for Benq laptops */
7429 static struct hda_verb alc262_EAPD_verbs[] = {
7430 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
7431 {0x20, AC_VERB_SET_PROC_COEF, 0x3070},
7435 static struct hda_verb alc262_benq_t31_EAPD_verbs[] = {
7436 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
7437 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
7439 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
7440 {0x20, AC_VERB_SET_PROC_COEF, 0x3050},
7444 /* add playback controls from the parsed DAC table */
7445 static int alc262_auto_create_multi_out_ctls(struct alc_spec *spec,
7446 const struct auto_pin_cfg *cfg)
7451 spec->multiout.num_dacs = 1; /* only use one dac */
7452 spec->multiout.dac_nids = spec->private_dac_nids;
7453 spec->multiout.dac_nids[0] = 2;
7455 nid = cfg->line_out_pins[0];
7457 err = add_control(spec, ALC_CTL_WIDGET_VOL,
7458 "Front Playback Volume",
7459 HDA_COMPOSE_AMP_VAL(0x0c, 3, 0, HDA_OUTPUT));
7462 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
7463 "Front Playback Switch",
7464 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT));
7469 nid = cfg->speaker_pins[0];
7472 err = add_control(spec, ALC_CTL_WIDGET_VOL,
7473 "Speaker Playback Volume",
7474 HDA_COMPOSE_AMP_VAL(0x0e, 2, 0,
7478 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
7479 "Speaker Playback Switch",
7480 HDA_COMPOSE_AMP_VAL(nid, 2, 0,
7485 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
7486 "Speaker Playback Switch",
7487 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
7493 nid = cfg->hp_pins[0];
7495 /* spec->multiout.hp_nid = 2; */
7497 err = add_control(spec, ALC_CTL_WIDGET_VOL,
7498 "Headphone Playback Volume",
7499 HDA_COMPOSE_AMP_VAL(0x0e, 2, 0,
7503 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
7504 "Headphone Playback Switch",
7505 HDA_COMPOSE_AMP_VAL(nid, 2, 0,
7510 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
7511 "Headphone Playback Switch",
7512 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
7521 /* identical with ALC880 */
7522 #define alc262_auto_create_analog_input_ctls \
7523 alc880_auto_create_analog_input_ctls
7526 * generic initialization of ADC, input mixers and output mixers
7528 static struct hda_verb alc262_volume_init_verbs[] = {
7530 * Unmute ADC0-2 and set the default input to mic-in
7532 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
7533 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7534 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
7535 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7536 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
7537 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7539 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
7541 * Note: PASD motherboards uses the Line In 2 as the input for
7542 * front panel mic (mic 2)
7544 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
7545 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7546 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7547 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
7548 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
7549 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
7552 * Set up output mixers (0x0c - 0x0f)
7554 /* set vol=0 to output mixers */
7555 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7556 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7557 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7559 /* set up input amps for analog loopback */
7560 /* Amp Indices: DAC = 0, mixer = 1 */
7561 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7562 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7563 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7564 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7565 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7566 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7568 /* FIXME: use matrix-type input source selection */
7569 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
7570 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
7571 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7572 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
7573 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
7574 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
7576 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7577 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
7578 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
7579 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
7581 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7582 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
7583 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
7584 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
7589 static struct hda_verb alc262_HP_BPC_init_verbs[] = {
7591 * Unmute ADC0-2 and set the default input to mic-in
7593 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
7594 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7595 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
7596 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7597 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
7598 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7600 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
7602 * Note: PASD motherboards uses the Line In 2 as the input for
7603 * front panel mic (mic 2)
7605 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
7606 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7607 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7608 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
7609 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
7610 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
7611 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(5)},
7612 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(6)},
7615 * Set up output mixers (0x0c - 0x0e)
7617 /* set vol=0 to output mixers */
7618 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7619 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7620 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7622 /* set up input amps for analog loopback */
7623 /* Amp Indices: DAC = 0, mixer = 1 */
7624 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7625 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7626 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7627 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7628 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7629 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7631 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
7632 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
7633 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
7635 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
7636 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
7638 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
7639 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
7641 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
7642 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
7643 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
7644 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
7645 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
7647 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0x7023 },
7648 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
7649 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
7650 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, 0x7023 },
7651 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
7652 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
7655 /* FIXME: use matrix-type input source selection */
7656 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
7657 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
7658 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7659 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
7660 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
7661 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
7663 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7664 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
7665 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
7666 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
7668 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7669 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
7670 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
7671 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
7676 static struct hda_verb alc262_HP_BPC_WildWest_init_verbs[] = {
7678 * Unmute ADC0-2 and set the default input to mic-in
7680 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
7681 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7682 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
7683 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7684 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
7685 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7687 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
7689 * Note: PASD motherboards uses the Line In 2 as the input for front
7692 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
7693 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7694 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7695 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
7696 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
7697 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
7698 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(5)},
7699 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(6)},
7700 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(7)},
7702 * Set up output mixers (0x0c - 0x0e)
7704 /* set vol=0 to output mixers */
7705 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7706 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7707 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7709 /* set up input amps for analog loopback */
7710 /* Amp Indices: DAC = 0, mixer = 1 */
7711 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7712 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7713 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7714 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7715 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7716 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7719 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP }, /* HP */
7720 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT }, /* Mono */
7721 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 }, /* rear MIC */
7722 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN }, /* Line in */
7723 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 }, /* Front MIC */
7724 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT }, /* Line out */
7725 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN }, /* CD in */
7727 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
7728 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
7730 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
7731 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
7733 /* {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0x7023 }, */
7734 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
7735 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
7736 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, 0x7023 },
7737 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
7738 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
7740 /* FIXME: use matrix-type input source selection */
7741 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
7742 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
7743 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))}, /*rear MIC*/
7744 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))}, /*Line in*/
7745 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))}, /*F MIC*/
7746 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))}, /*Front*/
7747 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))}, /*CD*/
7748 /* {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x06 << 8))}, */
7749 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x07 << 8))}, /*HP*/
7751 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7752 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
7753 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
7754 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
7755 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
7756 /* {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x06 << 8))}, */
7757 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x07 << 8))},
7759 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7760 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
7761 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
7762 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
7763 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
7764 /* {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x06 << 8))}, */
7765 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x07 << 8))},
7770 /* pcm configuration: identiacal with ALC880 */
7771 #define alc262_pcm_analog_playback alc880_pcm_analog_playback
7772 #define alc262_pcm_analog_capture alc880_pcm_analog_capture
7773 #define alc262_pcm_digital_playback alc880_pcm_digital_playback
7774 #define alc262_pcm_digital_capture alc880_pcm_digital_capture
7777 * BIOS auto configuration
7779 static int alc262_parse_auto_config(struct hda_codec *codec)
7781 struct alc_spec *spec = codec->spec;
7783 static hda_nid_t alc262_ignore[] = { 0x1d, 0 };
7785 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
7789 if (!spec->autocfg.line_outs)
7790 return 0; /* can't find valid BIOS pin config */
7791 err = alc262_auto_create_multi_out_ctls(spec, &spec->autocfg);
7794 err = alc262_auto_create_analog_input_ctls(spec, &spec->autocfg);
7798 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
7800 if (spec->autocfg.dig_out_pin)
7801 spec->multiout.dig_out_nid = ALC262_DIGOUT_NID;
7802 if (spec->autocfg.dig_in_pin)
7803 spec->dig_in_nid = ALC262_DIGIN_NID;
7805 if (spec->kctl_alloc)
7806 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
7808 spec->init_verbs[spec->num_init_verbs++] = alc262_volume_init_verbs;
7809 spec->num_mux_defs = 1;
7810 spec->input_mux = &spec->private_imux;
7815 #define alc262_auto_init_multi_out alc882_auto_init_multi_out
7816 #define alc262_auto_init_hp_out alc882_auto_init_hp_out
7817 #define alc262_auto_init_analog_input alc882_auto_init_analog_input
7820 /* init callback for auto-configuration model -- overriding the default init */
7821 static void alc262_auto_init(struct hda_codec *codec)
7823 alc262_auto_init_multi_out(codec);
7824 alc262_auto_init_hp_out(codec);
7825 alc262_auto_init_analog_input(codec);
7829 * configuration and preset
7831 static const char *alc262_models[ALC262_MODEL_LAST] = {
7832 [ALC262_BASIC] = "basic",
7833 [ALC262_HIPPO] = "hippo",
7834 [ALC262_HIPPO_1] = "hippo_1",
7835 [ALC262_FUJITSU] = "fujitsu",
7836 [ALC262_HP_BPC] = "hp-bpc",
7837 [ALC262_HP_BPC_D7000_WL]= "hp-bpc-d7000",
7838 [ALC262_BENQ_ED8] = "benq",
7839 [ALC262_BENQ_T31] = "benq-t31",
7840 [ALC262_SONY_ASSAMD] = "sony-assamd",
7841 [ALC262_AUTO] = "auto",
7844 static struct snd_pci_quirk alc262_cfg_tbl[] = {
7845 SND_PCI_QUIRK(0x1002, 0x437b, "Hippo", ALC262_HIPPO),
7846 SND_PCI_QUIRK(0x103c, 0x12fe, "HP xw9400", ALC262_HP_BPC),
7847 SND_PCI_QUIRK(0x103c, 0x280c, "HP xw4400", ALC262_HP_BPC),
7848 SND_PCI_QUIRK(0x103c, 0x12ff, "HP xw4550", ALC262_HP_BPC),
7849 SND_PCI_QUIRK(0x103c, 0x1308, "HP xw4600", ALC262_HP_BPC),
7850 SND_PCI_QUIRK(0x103c, 0x3014, "HP xw6400", ALC262_HP_BPC),
7851 SND_PCI_QUIRK(0x103c, 0x1307, "HP xw6600", ALC262_HP_BPC),
7852 SND_PCI_QUIRK(0x103c, 0x3015, "HP xw8400", ALC262_HP_BPC),
7853 SND_PCI_QUIRK(0x103c, 0x1306, "HP xw8600", ALC262_HP_BPC),
7854 SND_PCI_QUIRK(0x103c, 0x2800, "HP D7000", ALC262_HP_BPC_D7000_WL),
7855 SND_PCI_QUIRK(0x103c, 0x2802, "HP D7000", ALC262_HP_BPC_D7000_WL),
7856 SND_PCI_QUIRK(0x103c, 0x2804, "HP D7000", ALC262_HP_BPC_D7000_WL),
7857 SND_PCI_QUIRK(0x103c, 0x2806, "HP D7000", ALC262_HP_BPC_D7000_WL),
7858 SND_PCI_QUIRK(0x103c, 0x2801, "HP D7000", ALC262_HP_BPC_D7000_WF),
7859 SND_PCI_QUIRK(0x103c, 0x2803, "HP D7000", ALC262_HP_BPC_D7000_WF),
7860 SND_PCI_QUIRK(0x103c, 0x2805, "HP D7000", ALC262_HP_BPC_D7000_WF),
7861 SND_PCI_QUIRK(0x103c, 0x2807, "HP D7000", ALC262_HP_BPC_D7000_WF),
7862 SND_PCI_QUIRK(0x104d, 0x8203, "Sony UX-90", ALC262_HIPPO),
7863 SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu", ALC262_FUJITSU),
7864 SND_PCI_QUIRK(0x17ff, 0x058f, "Benq Hippo", ALC262_HIPPO_1),
7865 SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_BENQ_ED8),
7866 SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_BENQ_T31),
7867 SND_PCI_QUIRK(0x104d, 0x9015, "Sony 0x9015", ALC262_SONY_ASSAMD),
7868 SND_PCI_QUIRK(0x104d, 0x900e, "Sony ASSAMD", ALC262_SONY_ASSAMD),
7869 SND_PCI_QUIRK(0x104d, 0x1f00, "Sony ASSAMD", ALC262_SONY_ASSAMD),
7873 static struct alc_config_preset alc262_presets[] = {
7875 .mixers = { alc262_base_mixer },
7876 .init_verbs = { alc262_init_verbs },
7877 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
7878 .dac_nids = alc262_dac_nids,
7880 .num_channel_mode = ARRAY_SIZE(alc262_modes),
7881 .channel_mode = alc262_modes,
7882 .input_mux = &alc262_capture_source,
7885 .mixers = { alc262_base_mixer },
7886 .init_verbs = { alc262_init_verbs, alc262_hippo_unsol_verbs},
7887 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
7888 .dac_nids = alc262_dac_nids,
7890 .dig_out_nid = ALC262_DIGOUT_NID,
7891 .num_channel_mode = ARRAY_SIZE(alc262_modes),
7892 .channel_mode = alc262_modes,
7893 .input_mux = &alc262_capture_source,
7894 .unsol_event = alc262_hippo_unsol_event,
7896 [ALC262_HIPPO_1] = {
7897 .mixers = { alc262_hippo1_mixer },
7898 .init_verbs = { alc262_init_verbs, alc262_hippo1_unsol_verbs},
7899 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
7900 .dac_nids = alc262_dac_nids,
7902 .dig_out_nid = ALC262_DIGOUT_NID,
7903 .num_channel_mode = ARRAY_SIZE(alc262_modes),
7904 .channel_mode = alc262_modes,
7905 .input_mux = &alc262_capture_source,
7906 .unsol_event = alc262_hippo1_unsol_event,
7908 [ALC262_FUJITSU] = {
7909 .mixers = { alc262_fujitsu_mixer },
7910 .init_verbs = { alc262_init_verbs, alc262_fujitsu_unsol_verbs },
7911 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
7912 .dac_nids = alc262_dac_nids,
7914 .dig_out_nid = ALC262_DIGOUT_NID,
7915 .num_channel_mode = ARRAY_SIZE(alc262_modes),
7916 .channel_mode = alc262_modes,
7917 .input_mux = &alc262_fujitsu_capture_source,
7918 .unsol_event = alc262_fujitsu_unsol_event,
7921 .mixers = { alc262_HP_BPC_mixer },
7922 .init_verbs = { alc262_HP_BPC_init_verbs },
7923 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
7924 .dac_nids = alc262_dac_nids,
7926 .num_channel_mode = ARRAY_SIZE(alc262_modes),
7927 .channel_mode = alc262_modes,
7928 .input_mux = &alc262_HP_capture_source,
7930 [ALC262_HP_BPC_D7000_WF] = {
7931 .mixers = { alc262_HP_BPC_WildWest_mixer },
7932 .init_verbs = { alc262_HP_BPC_WildWest_init_verbs },
7933 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
7934 .dac_nids = alc262_dac_nids,
7936 .num_channel_mode = ARRAY_SIZE(alc262_modes),
7937 .channel_mode = alc262_modes,
7938 .input_mux = &alc262_HP_capture_source,
7940 [ALC262_HP_BPC_D7000_WL] = {
7941 .mixers = { alc262_HP_BPC_WildWest_mixer,
7942 alc262_HP_BPC_WildWest_option_mixer },
7943 .init_verbs = { alc262_HP_BPC_WildWest_init_verbs },
7944 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
7945 .dac_nids = alc262_dac_nids,
7947 .num_channel_mode = ARRAY_SIZE(alc262_modes),
7948 .channel_mode = alc262_modes,
7949 .input_mux = &alc262_HP_capture_source,
7951 [ALC262_BENQ_ED8] = {
7952 .mixers = { alc262_base_mixer },
7953 .init_verbs = { alc262_init_verbs, alc262_EAPD_verbs },
7954 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
7955 .dac_nids = alc262_dac_nids,
7957 .num_channel_mode = ARRAY_SIZE(alc262_modes),
7958 .channel_mode = alc262_modes,
7959 .input_mux = &alc262_capture_source,
7961 [ALC262_SONY_ASSAMD] = {
7962 .mixers = { alc262_sony_mixer },
7963 .init_verbs = { alc262_init_verbs, alc262_sony_unsol_verbs},
7964 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
7965 .dac_nids = alc262_dac_nids,
7967 .num_channel_mode = ARRAY_SIZE(alc262_modes),
7968 .channel_mode = alc262_modes,
7969 .input_mux = &alc262_capture_source,
7970 .unsol_event = alc262_hippo_unsol_event,
7972 [ALC262_BENQ_T31] = {
7973 .mixers = { alc262_benq_t31_mixer },
7974 .init_verbs = { alc262_init_verbs, alc262_benq_t31_EAPD_verbs, alc262_hippo_unsol_verbs },
7975 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
7976 .dac_nids = alc262_dac_nids,
7978 .num_channel_mode = ARRAY_SIZE(alc262_modes),
7979 .channel_mode = alc262_modes,
7980 .input_mux = &alc262_capture_source,
7981 .unsol_event = alc262_hippo_unsol_event,
7985 static int patch_alc262(struct hda_codec *codec)
7987 struct alc_spec *spec;
7991 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
7997 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
8002 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
8003 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
8004 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
8005 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PROC_COEF, tmp | 0x80);
8009 board_config = snd_hda_check_board_config(codec, ALC262_MODEL_LAST,
8013 if (board_config < 0) {
8014 printk(KERN_INFO "hda_codec: Unknown model for ALC262, "
8015 "trying auto-probe from BIOS...\n");
8016 board_config = ALC262_AUTO;
8019 if (board_config == ALC262_AUTO) {
8020 /* automatic parse from the BIOS config */
8021 err = alc262_parse_auto_config(codec);
8027 "hda_codec: Cannot set up configuration "
8028 "from BIOS. Using base mode...\n");
8029 board_config = ALC262_BASIC;
8033 if (board_config != ALC262_AUTO)
8034 setup_preset(spec, &alc262_presets[board_config]);
8036 spec->stream_name_analog = "ALC262 Analog";
8037 spec->stream_analog_playback = &alc262_pcm_analog_playback;
8038 spec->stream_analog_capture = &alc262_pcm_analog_capture;
8040 spec->stream_name_digital = "ALC262 Digital";
8041 spec->stream_digital_playback = &alc262_pcm_digital_playback;
8042 spec->stream_digital_capture = &alc262_pcm_digital_capture;
8044 if (!spec->adc_nids && spec->input_mux) {
8045 /* check whether NID 0x07 is valid */
8046 unsigned int wcap = get_wcaps(codec, 0x07);
8049 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
8050 if (wcap != AC_WID_AUD_IN) {
8051 spec->adc_nids = alc262_adc_nids_alt;
8052 spec->num_adc_nids = ARRAY_SIZE(alc262_adc_nids_alt);
8053 spec->mixers[spec->num_mixers] =
8054 alc262_capture_alt_mixer;
8057 spec->adc_nids = alc262_adc_nids;
8058 spec->num_adc_nids = ARRAY_SIZE(alc262_adc_nids);
8059 spec->mixers[spec->num_mixers] = alc262_capture_mixer;
8064 codec->patch_ops = alc_patch_ops;
8065 if (board_config == ALC262_AUTO)
8066 spec->init_hook = alc262_auto_init;
8072 * ALC268 channel source setting (2 channel)
8074 #define ALC268_DIGOUT_NID ALC880_DIGOUT_NID
8075 #define alc268_modes alc260_modes
8077 static hda_nid_t alc268_dac_nids[2] = {
8082 static hda_nid_t alc268_adc_nids[2] = {
8087 static hda_nid_t alc268_adc_nids_alt[1] = {
8092 static struct snd_kcontrol_new alc268_base_mixer[] = {
8093 /* output mixer control */
8094 HDA_CODEC_VOLUME("Front Playback Volume", 0x2, 0x0, HDA_OUTPUT),
8095 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
8096 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x3, 0x0, HDA_OUTPUT),
8097 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
8102 * generic initialization of ADC, input mixers and output mixers
8104 static struct hda_verb alc268_base_init_verbs[] = {
8105 /* Unmute DAC0-1 and set vol = 0 */
8106 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8107 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8108 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8109 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8110 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8111 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8114 * Set up output mixers (0x0c - 0x0e)
8116 /* set vol=0 to output mixers */
8117 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8118 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8119 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8120 {0x0e, AC_VERB_SET_CONNECT_SEL, 0x00},
8122 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8123 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8125 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
8126 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
8127 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
8128 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
8129 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
8130 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
8131 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
8132 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
8134 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8135 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8136 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8137 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8138 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8139 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8140 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8141 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
8143 /* FIXME: use matrix-type input source selection */
8144 /* Mixer elements: 0x18, 19, 1a, 1c, 14, 15, 0b */
8145 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
8147 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
8148 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
8149 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
8150 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
8152 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
8153 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
8154 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
8155 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
8160 * generic initialization of ADC, input mixers and output mixers
8162 static struct hda_verb alc268_volume_init_verbs[] = {
8163 /* set output DAC */
8164 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8165 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8166 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8167 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8169 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
8170 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
8171 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
8172 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
8173 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
8175 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8176 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8177 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8178 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8179 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8181 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8182 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8183 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8184 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8186 /* set PCBEEP vol = 0 */
8187 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, (0xb000 | (0x00 << 8))},
8192 #define alc268_mux_enum_info alc_mux_enum_info
8193 #define alc268_mux_enum_get alc_mux_enum_get
8195 static int alc268_mux_enum_put(struct snd_kcontrol *kcontrol,
8196 struct snd_ctl_elem_value *ucontrol)
8198 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
8199 struct alc_spec *spec = codec->spec;
8200 const struct hda_input_mux *imux = spec->input_mux;
8201 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
8202 static hda_nid_t capture_mixers[3] = { 0x23, 0x24 };
8203 hda_nid_t nid = capture_mixers[adc_idx];
8204 unsigned int *cur_val = &spec->cur_mux[adc_idx];
8205 unsigned int i, idx;
8207 idx = ucontrol->value.enumerated.item[0];
8208 if (idx >= imux->num_items)
8209 idx = imux->num_items - 1;
8210 if (*cur_val == idx && !codec->in_resume)
8212 for (i = 0; i < imux->num_items; i++) {
8213 unsigned int v = (i == idx) ? 0x7000 : 0x7080;
8214 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
8215 v | (imux->items[i].index << 8));
8216 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL,
8223 static struct snd_kcontrol_new alc268_capture_alt_mixer[] = {
8224 HDA_CODEC_VOLUME("Capture Volume", 0x23, 0x0, HDA_OUTPUT),
8225 HDA_CODEC_MUTE("Capture Switch", 0x23, 0x0, HDA_OUTPUT),
8227 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
8228 /* The multiple "Capture Source" controls confuse alsamixer
8229 * So call somewhat different..
8230 * FIXME: the controls appear in the "playback" view!
8232 /* .name = "Capture Source", */
8233 .name = "Input Source",
8235 .info = alc268_mux_enum_info,
8236 .get = alc268_mux_enum_get,
8237 .put = alc268_mux_enum_put,
8242 static struct snd_kcontrol_new alc268_capture_mixer[] = {
8243 HDA_CODEC_VOLUME("Capture Volume", 0x23, 0x0, HDA_OUTPUT),
8244 HDA_CODEC_MUTE("Capture Switch", 0x23, 0x0, HDA_OUTPUT),
8245 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x24, 0x0, HDA_OUTPUT),
8246 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x24, 0x0, HDA_OUTPUT),
8248 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
8249 /* The multiple "Capture Source" controls confuse alsamixer
8250 * So call somewhat different..
8251 * FIXME: the controls appear in the "playback" view!
8253 /* .name = "Capture Source", */
8254 .name = "Input Source",
8256 .info = alc268_mux_enum_info,
8257 .get = alc268_mux_enum_get,
8258 .put = alc268_mux_enum_put,
8263 static struct hda_input_mux alc268_capture_source = {
8267 { "Front Mic", 0x1 },
8273 /* create input playback/capture controls for the given pin */
8274 static int alc268_new_analog_output(struct alc_spec *spec, hda_nid_t nid,
8275 const char *ctlname, int idx)
8280 sprintf(name, "%s Playback Volume", ctlname);
8282 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
8283 HDA_COMPOSE_AMP_VAL(0x02, 3, idx,
8287 } else if (nid == 0x15) {
8288 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
8289 HDA_COMPOSE_AMP_VAL(0x03, 3, idx,
8295 sprintf(name, "%s Playback Switch", ctlname);
8296 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
8297 HDA_COMPOSE_AMP_VAL(nid, 3, idx, HDA_OUTPUT));
8303 /* add playback controls from the parsed DAC table */
8304 static int alc268_auto_create_multi_out_ctls(struct alc_spec *spec,
8305 const struct auto_pin_cfg *cfg)
8310 spec->multiout.num_dacs = 2; /* only use one dac */
8311 spec->multiout.dac_nids = spec->private_dac_nids;
8312 spec->multiout.dac_nids[0] = 2;
8313 spec->multiout.dac_nids[1] = 3;
8315 nid = cfg->line_out_pins[0];
8317 alc268_new_analog_output(spec, nid, "Front", 0);
8319 nid = cfg->speaker_pins[0];
8321 err = add_control(spec, ALC_CTL_WIDGET_VOL,
8322 "Speaker Playback Volume",
8323 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_INPUT));
8327 nid = cfg->hp_pins[0];
8329 alc268_new_analog_output(spec, nid, "Headphone", 0);
8331 nid = cfg->line_out_pins[1] | cfg->line_out_pins[2];
8333 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
8334 "Mono Playback Switch",
8335 HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_INPUT));
8342 /* create playback/capture controls for input pins */
8343 static int alc268_auto_create_analog_input_ctls(struct alc_spec *spec,
8344 const struct auto_pin_cfg *cfg)
8346 struct hda_input_mux *imux = &spec->private_imux;
8349 for (i = 0; i < AUTO_PIN_LAST; i++) {
8350 switch(cfg->input_pins[i]) {
8352 idx1 = 0; /* Mic 1 */
8355 idx1 = 1; /* Mic 2 */
8358 idx1 = 2; /* Line In */
8366 imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
8367 imux->items[imux->num_items].index = idx1;
8373 static void alc268_auto_init_mono_speaker_out(struct hda_codec *codec)
8375 struct alc_spec *spec = codec->spec;
8376 hda_nid_t speaker_nid = spec->autocfg.speaker_pins[0];
8377 hda_nid_t hp_nid = spec->autocfg.hp_pins[0];
8378 hda_nid_t line_nid = spec->autocfg.line_out_pins[0];
8379 unsigned int dac_vol1, dac_vol2;
8382 snd_hda_codec_write(codec, speaker_nid, 0,
8383 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
8384 snd_hda_codec_write(codec, 0x0f, 0,
8385 AC_VERB_SET_AMP_GAIN_MUTE,
8387 snd_hda_codec_write(codec, 0x10, 0,
8388 AC_VERB_SET_AMP_GAIN_MUTE,
8391 snd_hda_codec_write(codec, 0x0f, 0,
8392 AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1));
8393 snd_hda_codec_write(codec, 0x10, 0,
8394 AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1));
8397 dac_vol1 = dac_vol2 = 0xb000 | 0x40; /* set max volume */
8398 if (line_nid == 0x14)
8399 dac_vol2 = AMP_OUT_ZERO;
8400 else if (line_nid == 0x15)
8401 dac_vol1 = AMP_OUT_ZERO;
8403 dac_vol2 = AMP_OUT_ZERO;
8404 else if (hp_nid == 0x15)
8405 dac_vol1 = AMP_OUT_ZERO;
8406 if (line_nid != 0x16 || hp_nid != 0x16 ||
8407 spec->autocfg.line_out_pins[1] != 0x16 ||
8408 spec->autocfg.line_out_pins[2] != 0x16)
8409 dac_vol1 = dac_vol2 = AMP_OUT_ZERO;
8411 snd_hda_codec_write(codec, 0x02, 0,
8412 AC_VERB_SET_AMP_GAIN_MUTE, dac_vol1);
8413 snd_hda_codec_write(codec, 0x03, 0,
8414 AC_VERB_SET_AMP_GAIN_MUTE, dac_vol2);
8417 /* pcm configuration: identiacal with ALC880 */
8418 #define alc268_pcm_analog_playback alc880_pcm_analog_playback
8419 #define alc268_pcm_analog_capture alc880_pcm_analog_capture
8420 #define alc268_pcm_digital_playback alc880_pcm_digital_playback
8423 * BIOS auto configuration
8425 static int alc268_parse_auto_config(struct hda_codec *codec)
8427 struct alc_spec *spec = codec->spec;
8429 static hda_nid_t alc268_ignore[] = { 0 };
8431 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
8435 if (!spec->autocfg.line_outs)
8436 return 0; /* can't find valid BIOS pin config */
8438 err = alc268_auto_create_multi_out_ctls(spec, &spec->autocfg);
8441 err = alc268_auto_create_analog_input_ctls(spec, &spec->autocfg);
8445 spec->multiout.max_channels = 2;
8447 /* digital only support output */
8448 if (spec->autocfg.dig_out_pin)
8449 spec->multiout.dig_out_nid = ALC268_DIGOUT_NID;
8451 if (spec->kctl_alloc)
8452 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
8454 spec->init_verbs[spec->num_init_verbs++] = alc268_volume_init_verbs;
8455 spec->num_mux_defs = 1;
8456 spec->input_mux = &spec->private_imux;
8461 #define alc268_auto_init_multi_out alc882_auto_init_multi_out
8462 #define alc268_auto_init_hp_out alc882_auto_init_hp_out
8463 #define alc268_auto_init_analog_input alc882_auto_init_analog_input
8465 /* init callback for auto-configuration model -- overriding the default init */
8466 static void alc268_auto_init(struct hda_codec *codec)
8468 alc268_auto_init_multi_out(codec);
8469 alc268_auto_init_hp_out(codec);
8470 alc268_auto_init_mono_speaker_out(codec);
8471 alc268_auto_init_analog_input(codec);
8475 * configuration and preset
8477 static const char *alc268_models[ALC268_MODEL_LAST] = {
8478 [ALC268_3ST] = "3stack",
8479 [ALC268_AUTO] = "auto",
8482 static struct snd_pci_quirk alc268_cfg_tbl[] = {
8483 SND_PCI_QUIRK(0x1043, 0x1205, "ASUS W7J", ALC268_3ST),
8487 static struct alc_config_preset alc268_presets[] = {
8489 .mixers = { alc268_base_mixer, alc268_capture_alt_mixer },
8490 .init_verbs = { alc268_base_init_verbs },
8491 .num_dacs = ARRAY_SIZE(alc268_dac_nids),
8492 .dac_nids = alc268_dac_nids,
8493 .num_adc_nids = ARRAY_SIZE(alc268_adc_nids_alt),
8494 .adc_nids = alc268_adc_nids_alt,
8496 .dig_out_nid = ALC268_DIGOUT_NID,
8497 .num_channel_mode = ARRAY_SIZE(alc268_modes),
8498 .channel_mode = alc268_modes,
8499 .input_mux = &alc268_capture_source,
8503 static int patch_alc268(struct hda_codec *codec)
8505 struct alc_spec *spec;
8509 spec = kcalloc(1, sizeof(*spec), GFP_KERNEL);
8515 board_config = snd_hda_check_board_config(codec, ALC268_MODEL_LAST,
8519 if (board_config < 0 || board_config >= ALC268_MODEL_LAST) {
8520 printk(KERN_INFO "hda_codec: Unknown model for ALC268, "
8521 "trying auto-probe from BIOS...\n");
8522 board_config = ALC268_AUTO;
8525 if (board_config == ALC268_AUTO) {
8526 /* automatic parse from the BIOS config */
8527 err = alc268_parse_auto_config(codec);
8533 "hda_codec: Cannot set up configuration "
8534 "from BIOS. Using base mode...\n");
8535 board_config = ALC268_3ST;
8539 if (board_config != ALC268_AUTO)
8540 setup_preset(spec, &alc268_presets[board_config]);
8542 spec->stream_name_analog = "ALC268 Analog";
8543 spec->stream_analog_playback = &alc268_pcm_analog_playback;
8544 spec->stream_analog_capture = &alc268_pcm_analog_capture;
8546 spec->stream_name_digital = "ALC268 Digital";
8547 spec->stream_digital_playback = &alc268_pcm_digital_playback;
8549 if (board_config == ALC268_AUTO) {
8550 if (!spec->adc_nids && spec->input_mux) {
8551 /* check whether NID 0x07 is valid */
8552 unsigned int wcap = get_wcaps(codec, 0x07);
8555 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
8556 if (wcap != AC_WID_AUD_IN) {
8557 spec->adc_nids = alc268_adc_nids_alt;
8558 spec->num_adc_nids =
8559 ARRAY_SIZE(alc268_adc_nids_alt);
8560 spec->mixers[spec->num_mixers] =
8561 alc268_capture_alt_mixer;
8564 spec->adc_nids = alc268_adc_nids;
8565 spec->num_adc_nids =
8566 ARRAY_SIZE(alc268_adc_nids);
8567 spec->mixers[spec->num_mixers] =
8568 alc268_capture_mixer;
8573 codec->patch_ops = alc_patch_ops;
8574 if (board_config == ALC268_AUTO)
8575 spec->init_hook = alc268_auto_init;
8581 * ALC861 channel source setting (2/6 channel selection for 3-stack)
8585 * set the path ways for 2 channel output
8586 * need to set the codec line out and mic 1 pin widgets to inputs
8588 static struct hda_verb alc861_threestack_ch2_init[] = {
8589 /* set pin widget 1Ah (line in) for input */
8590 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
8591 /* set pin widget 18h (mic1/2) for input, for mic also enable
8594 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
8596 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c },
8598 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8)) }, /*mic*/
8599 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8)) }, /*line-in*/
8605 * need to set the codec line out and mic 1 pin widgets to outputs
8607 static struct hda_verb alc861_threestack_ch6_init[] = {
8608 /* set pin widget 1Ah (line in) for output (Back Surround)*/
8609 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
8610 /* set pin widget 18h (mic1) for output (CLFE)*/
8611 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
8613 { 0x0c, AC_VERB_SET_CONNECT_SEL, 0x00 },
8614 { 0x0d, AC_VERB_SET_CONNECT_SEL, 0x00 },
8616 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080 },
8618 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x01 << 8)) }, /*mic*/
8619 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8)) }, /*line in*/
8624 static struct hda_channel_mode alc861_threestack_modes[2] = {
8625 { 2, alc861_threestack_ch2_init },
8626 { 6, alc861_threestack_ch6_init },
8628 /* Set mic1 as input and unmute the mixer */
8629 static struct hda_verb alc861_uniwill_m31_ch2_init[] = {
8630 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
8631 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x01 << 8)) }, /*mic*/
8634 /* Set mic1 as output and mute mixer */
8635 static struct hda_verb alc861_uniwill_m31_ch4_init[] = {
8636 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
8637 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8)) }, /*mic*/
8641 static struct hda_channel_mode alc861_uniwill_m31_modes[2] = {
8642 { 2, alc861_uniwill_m31_ch2_init },
8643 { 4, alc861_uniwill_m31_ch4_init },
8646 /* Set mic1 and line-in as input and unmute the mixer */
8647 static struct hda_verb alc861_asus_ch2_init[] = {
8648 /* set pin widget 1Ah (line in) for input */
8649 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
8650 /* set pin widget 18h (mic1/2) for input, for mic also enable
8653 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
8655 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c },
8657 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8)) }, /*mic*/
8658 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8)) }, /*line-in*/
8662 /* Set mic1 nad line-in as output and mute mixer */
8663 static struct hda_verb alc861_asus_ch6_init[] = {
8664 /* set pin widget 1Ah (line in) for output (Back Surround)*/
8665 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
8666 /* { 0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE }, */
8667 /* set pin widget 18h (mic1) for output (CLFE)*/
8668 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
8669 /* { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE }, */
8670 { 0x0c, AC_VERB_SET_CONNECT_SEL, 0x00 },
8671 { 0x0d, AC_VERB_SET_CONNECT_SEL, 0x00 },
8673 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080 },
8675 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x01 << 8)) }, /*mic*/
8676 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8)) }, /*line in*/
8681 static struct hda_channel_mode alc861_asus_modes[2] = {
8682 { 2, alc861_asus_ch2_init },
8683 { 6, alc861_asus_ch6_init },
8688 static struct snd_kcontrol_new alc861_base_mixer[] = {
8689 /* output mixer control */
8690 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
8691 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
8692 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
8693 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
8694 HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT),
8696 /*Input mixer control */
8697 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
8698 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
8699 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
8700 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
8701 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
8702 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
8703 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
8704 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
8705 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
8706 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT),
8708 /* Capture mixer control */
8709 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
8710 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
8712 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
8713 .name = "Capture Source",
8715 .info = alc_mux_enum_info,
8716 .get = alc_mux_enum_get,
8717 .put = alc_mux_enum_put,
8722 static struct snd_kcontrol_new alc861_3ST_mixer[] = {
8723 /* output mixer control */
8724 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
8725 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
8726 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
8727 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
8728 /*HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT), */
8730 /* Input mixer control */
8731 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
8732 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
8733 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
8734 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
8735 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
8736 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
8737 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
8738 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
8739 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
8740 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT),
8742 /* Capture mixer control */
8743 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
8744 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
8746 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
8747 .name = "Capture Source",
8749 .info = alc_mux_enum_info,
8750 .get = alc_mux_enum_get,
8751 .put = alc_mux_enum_put,
8754 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
8755 .name = "Channel Mode",
8756 .info = alc_ch_mode_info,
8757 .get = alc_ch_mode_get,
8758 .put = alc_ch_mode_put,
8759 .private_value = ARRAY_SIZE(alc861_threestack_modes),
8764 static struct snd_kcontrol_new alc861_toshiba_mixer[] = {
8765 /* output mixer control */
8766 HDA_CODEC_MUTE("Master Playback Switch", 0x03, 0x0, HDA_OUTPUT),
8767 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
8768 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
8770 /*Capture mixer control */
8771 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
8772 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
8774 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
8775 .name = "Capture Source",
8777 .info = alc_mux_enum_info,
8778 .get = alc_mux_enum_get,
8779 .put = alc_mux_enum_put,
8785 static struct snd_kcontrol_new alc861_uniwill_m31_mixer[] = {
8786 /* output mixer control */
8787 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
8788 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
8789 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
8790 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
8791 /*HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT), */
8793 /* Input mixer control */
8794 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
8795 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
8796 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
8797 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
8798 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
8799 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
8800 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
8801 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
8802 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
8803 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT),
8805 /* Capture mixer control */
8806 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
8807 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
8809 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
8810 .name = "Capture Source",
8812 .info = alc_mux_enum_info,
8813 .get = alc_mux_enum_get,
8814 .put = alc_mux_enum_put,
8817 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
8818 .name = "Channel Mode",
8819 .info = alc_ch_mode_info,
8820 .get = alc_ch_mode_get,
8821 .put = alc_ch_mode_put,
8822 .private_value = ARRAY_SIZE(alc861_uniwill_m31_modes),
8827 static struct snd_kcontrol_new alc861_asus_mixer[] = {
8828 /* output mixer control */
8829 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
8830 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
8831 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
8832 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
8833 HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT),
8835 /* Input mixer control */
8836 HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
8837 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT),
8838 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
8839 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
8840 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
8841 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
8842 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
8843 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
8844 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
8845 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_OUTPUT),
8847 /* Capture mixer control */
8848 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
8849 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
8851 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
8852 .name = "Capture Source",
8854 .info = alc_mux_enum_info,
8855 .get = alc_mux_enum_get,
8856 .put = alc_mux_enum_put,
8859 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
8860 .name = "Channel Mode",
8861 .info = alc_ch_mode_info,
8862 .get = alc_ch_mode_get,
8863 .put = alc_ch_mode_put,
8864 .private_value = ARRAY_SIZE(alc861_asus_modes),
8869 /* additional mixer */
8870 static struct snd_kcontrol_new alc861_asus_laptop_mixer[] = {
8871 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
8872 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
8873 HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x23, 0x0, HDA_OUTPUT),
8874 HDA_CODEC_MUTE("PC Beep Playback Switch", 0x23, 0x0, HDA_OUTPUT),
8879 * generic initialization of ADC, input mixers and output mixers
8881 static struct hda_verb alc861_base_init_verbs[] = {
8883 * Unmute ADC0 and set the default input to mic-in
8885 /* port-A for surround (rear panel) */
8886 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
8887 { 0x0e, AC_VERB_SET_CONNECT_SEL, 0x00 },
8888 /* port-B for mic-in (rear panel) with vref */
8889 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
8890 /* port-C for line-in (rear panel) */
8891 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
8892 /* port-D for Front */
8893 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
8894 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
8895 /* port-E for HP out (front panel) */
8896 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
8897 /* route front PCM to HP */
8898 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
8899 /* port-F for mic-in (front panel) with vref */
8900 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
8901 /* port-G for CLFE (rear panel) */
8902 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
8903 { 0x1f, AC_VERB_SET_CONNECT_SEL, 0x00 },
8904 /* port-H for side (rear panel) */
8905 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
8906 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x00 },
8908 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
8909 /* route front mic to ADC1*/
8910 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
8911 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8913 /* Unmute DAC0~3 & spdif out*/
8914 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8915 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8916 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8917 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8918 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8920 /* Unmute Mixer 14 (mic) 1c (Line in)*/
8921 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8922 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8923 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8924 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8926 /* Unmute Stereo Mixer 15 */
8927 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8928 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8929 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
8930 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c}, /* Output 0~12 step */
8932 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8933 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8934 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8935 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8936 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8937 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8938 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8939 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8940 /* hp used DAC 3 (Front) */
8941 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
8942 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
8947 static struct hda_verb alc861_threestack_init_verbs[] = {
8949 * Unmute ADC0 and set the default input to mic-in
8951 /* port-A for surround (rear panel) */
8952 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
8953 /* port-B for mic-in (rear panel) with vref */
8954 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
8955 /* port-C for line-in (rear panel) */
8956 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
8957 /* port-D for Front */
8958 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
8959 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
8960 /* port-E for HP out (front panel) */
8961 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
8962 /* route front PCM to HP */
8963 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
8964 /* port-F for mic-in (front panel) with vref */
8965 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
8966 /* port-G for CLFE (rear panel) */
8967 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
8968 /* port-H for side (rear panel) */
8969 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
8971 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
8972 /* route front mic to ADC1*/
8973 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
8974 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8975 /* Unmute DAC0~3 & spdif out*/
8976 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8977 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8978 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8979 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8980 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8982 /* Unmute Mixer 14 (mic) 1c (Line in)*/
8983 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8984 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8985 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8986 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8988 /* Unmute Stereo Mixer 15 */
8989 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8990 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8991 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
8992 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c}, /* Output 0~12 step */
8994 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8995 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8996 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8997 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8998 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8999 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9000 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9001 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9002 /* hp used DAC 3 (Front) */
9003 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
9004 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9008 static struct hda_verb alc861_uniwill_m31_init_verbs[] = {
9010 * Unmute ADC0 and set the default input to mic-in
9012 /* port-A for surround (rear panel) */
9013 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
9014 /* port-B for mic-in (rear panel) with vref */
9015 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9016 /* port-C for line-in (rear panel) */
9017 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
9018 /* port-D for Front */
9019 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9020 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
9021 /* port-E for HP out (front panel) */
9022 /* this has to be set to VREF80 */
9023 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9024 /* route front PCM to HP */
9025 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
9026 /* port-F for mic-in (front panel) with vref */
9027 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9028 /* port-G for CLFE (rear panel) */
9029 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
9030 /* port-H for side (rear panel) */
9031 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
9033 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
9034 /* route front mic to ADC1*/
9035 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
9036 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9037 /* Unmute DAC0~3 & spdif out*/
9038 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9039 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9040 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9041 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9042 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9044 /* Unmute Mixer 14 (mic) 1c (Line in)*/
9045 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9046 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9047 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9048 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9050 /* Unmute Stereo Mixer 15 */
9051 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9052 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9053 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9054 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c}, /* Output 0~12 step */
9056 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9057 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9058 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9059 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9060 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9061 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9062 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9063 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9064 /* hp used DAC 3 (Front) */
9065 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
9066 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9070 static struct hda_verb alc861_asus_init_verbs[] = {
9072 * Unmute ADC0 and set the default input to mic-in
9074 /* port-A for surround (rear panel)
9075 * according to codec#0 this is the HP jack
9077 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 }, /* was 0x00 */
9078 /* route front PCM to HP */
9079 { 0x0e, AC_VERB_SET_CONNECT_SEL, 0x01 },
9080 /* port-B for mic-in (rear panel) with vref */
9081 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9082 /* port-C for line-in (rear panel) */
9083 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
9084 /* port-D for Front */
9085 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9086 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
9087 /* port-E for HP out (front panel) */
9088 /* this has to be set to VREF80 */
9089 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9090 /* route front PCM to HP */
9091 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
9092 /* port-F for mic-in (front panel) with vref */
9093 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9094 /* port-G for CLFE (rear panel) */
9095 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9096 /* port-H for side (rear panel) */
9097 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9099 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
9100 /* route front mic to ADC1*/
9101 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
9102 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9103 /* Unmute DAC0~3 & spdif out*/
9104 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9105 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9106 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9107 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9108 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9109 /* Unmute Mixer 14 (mic) 1c (Line in)*/
9110 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9111 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9112 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9113 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9115 /* Unmute Stereo Mixer 15 */
9116 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9117 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9118 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9119 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c}, /* Output 0~12 step */
9121 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9122 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9123 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9124 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9125 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9126 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9127 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9128 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9129 /* hp used DAC 3 (Front) */
9130 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
9131 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9135 /* additional init verbs for ASUS laptops */
9136 static struct hda_verb alc861_asus_laptop_init_verbs[] = {
9137 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x45 }, /* HP-out */
9138 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2) }, /* mute line-in */
9143 * generic initialization of ADC, input mixers and output mixers
9145 static struct hda_verb alc861_auto_init_verbs[] = {
9147 * Unmute ADC0 and set the default input to mic-in
9149 /* {0x08, AC_VERB_SET_CONNECT_SEL, 0x00}, */
9150 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9152 /* Unmute DAC0~3 & spdif out*/
9153 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
9154 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
9155 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
9156 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
9157 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9159 /* Unmute Mixer 14 (mic) 1c (Line in)*/
9160 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9161 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9162 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9163 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9165 /* Unmute Stereo Mixer 15 */
9166 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9167 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9168 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9169 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c},
9171 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9172 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9173 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9174 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9175 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9176 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9177 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9178 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9180 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
9181 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
9182 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9183 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
9184 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
9185 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
9186 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9187 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
9189 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00}, /* set Mic 1 */
9194 static struct hda_verb alc861_toshiba_init_verbs[] = {
9195 {0x0f, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
9200 /* toggle speaker-output according to the hp-jack state */
9201 static void alc861_toshiba_automute(struct hda_codec *codec)
9203 unsigned int present;
9205 present = snd_hda_codec_read(codec, 0x0f, 0,
9206 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
9207 snd_hda_codec_amp_update(codec, 0x16, 0, HDA_INPUT, 0,
9208 0x80, present ? 0x80 : 0);
9209 snd_hda_codec_amp_update(codec, 0x16, 1, HDA_INPUT, 0,
9210 0x80, present ? 0x80 : 0);
9211 snd_hda_codec_amp_update(codec, 0x1a, 0, HDA_INPUT, 3,
9212 0x80, present ? 0 : 0x80);
9213 snd_hda_codec_amp_update(codec, 0x1a, 1, HDA_INPUT, 3,
9214 0x80, present ? 0 : 0x80);
9217 static void alc861_toshiba_unsol_event(struct hda_codec *codec,
9220 if ((res >> 26) == ALC880_HP_EVENT)
9221 alc861_toshiba_automute(codec);
9224 /* pcm configuration: identiacal with ALC880 */
9225 #define alc861_pcm_analog_playback alc880_pcm_analog_playback
9226 #define alc861_pcm_analog_capture alc880_pcm_analog_capture
9227 #define alc861_pcm_digital_playback alc880_pcm_digital_playback
9228 #define alc861_pcm_digital_capture alc880_pcm_digital_capture
9231 #define ALC861_DIGOUT_NID 0x07
9233 static struct hda_channel_mode alc861_8ch_modes[1] = {
9237 static hda_nid_t alc861_dac_nids[4] = {
9238 /* front, surround, clfe, side */
9239 0x03, 0x06, 0x05, 0x04
9242 static hda_nid_t alc660_dac_nids[3] = {
9243 /* front, clfe, surround */
9247 static hda_nid_t alc861_adc_nids[1] = {
9252 static struct hda_input_mux alc861_capture_source = {
9256 { "Front Mic", 0x3 },
9263 /* fill in the dac_nids table from the parsed pin configuration */
9264 static int alc861_auto_fill_dac_nids(struct alc_spec *spec,
9265 const struct auto_pin_cfg *cfg)
9270 spec->multiout.dac_nids = spec->private_dac_nids;
9271 for (i = 0; i < cfg->line_outs; i++) {
9272 nid = cfg->line_out_pins[i];
9274 if (i >= ARRAY_SIZE(alc861_dac_nids))
9276 spec->multiout.dac_nids[i] = alc861_dac_nids[i];
9279 spec->multiout.num_dacs = cfg->line_outs;
9283 /* add playback controls from the parsed DAC table */
9284 static int alc861_auto_create_multi_out_ctls(struct alc_spec *spec,
9285 const struct auto_pin_cfg *cfg)
9288 static const char *chname[4] = {
9289 "Front", "Surround", NULL /*CLFE*/, "Side"
9294 for (i = 0; i < cfg->line_outs; i++) {
9295 nid = spec->multiout.dac_nids[i];
9300 err = add_control(spec, ALC_CTL_BIND_MUTE,
9301 "Center Playback Switch",
9302 HDA_COMPOSE_AMP_VAL(nid, 1, 0,
9306 err = add_control(spec, ALC_CTL_BIND_MUTE,
9307 "LFE Playback Switch",
9308 HDA_COMPOSE_AMP_VAL(nid, 2, 0,
9313 for (idx = 0; idx < ARRAY_SIZE(alc861_dac_nids) - 1;
9315 if (nid == alc861_dac_nids[idx])
9317 sprintf(name, "%s Playback Switch", chname[idx]);
9318 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
9319 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
9328 static int alc861_auto_create_hp_ctls(struct alc_spec *spec, hda_nid_t pin)
9336 if ((pin >= 0x0b && pin <= 0x10) || pin == 0x1f || pin == 0x20) {
9338 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
9339 "Headphone Playback Switch",
9340 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT));
9343 spec->multiout.hp_nid = nid;
9348 /* create playback/capture controls for input pins */
9349 static int alc861_auto_create_analog_input_ctls(struct alc_spec *spec,
9350 const struct auto_pin_cfg *cfg)
9352 struct hda_input_mux *imux = &spec->private_imux;
9353 int i, err, idx, idx1;
9355 for (i = 0; i < AUTO_PIN_LAST; i++) {
9356 switch (cfg->input_pins[i]) {
9359 idx = 2; /* Line In */
9363 idx = 2; /* Line In */
9367 idx = 1; /* Mic In */
9371 idx = 1; /* Mic In */
9381 err = new_analog_input(spec, cfg->input_pins[i],
9382 auto_pin_cfg_labels[i], idx, 0x15);
9386 imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
9387 imux->items[imux->num_items].index = idx1;
9393 static struct snd_kcontrol_new alc861_capture_mixer[] = {
9394 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
9395 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
9398 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9399 /* The multiple "Capture Source" controls confuse alsamixer
9400 * So call somewhat different..
9401 *FIXME: the controls appear in the "playback" view!
9403 /* .name = "Capture Source", */
9404 .name = "Input Source",
9406 .info = alc_mux_enum_info,
9407 .get = alc_mux_enum_get,
9408 .put = alc_mux_enum_put,
9413 static void alc861_auto_set_output_and_unmute(struct hda_codec *codec,
9415 int pin_type, int dac_idx)
9419 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
9421 snd_hda_codec_write(codec, dac_idx, 0, AC_VERB_SET_AMP_GAIN_MUTE,
9426 static void alc861_auto_init_multi_out(struct hda_codec *codec)
9428 struct alc_spec *spec = codec->spec;
9431 alc_subsystem_id(codec, 0x0e, 0x0f, 0x0b);
9432 for (i = 0; i < spec->autocfg.line_outs; i++) {
9433 hda_nid_t nid = spec->autocfg.line_out_pins[i];
9434 int pin_type = get_pin_type(spec->autocfg.line_out_type);
9436 alc861_auto_set_output_and_unmute(codec, nid, pin_type,
9437 spec->multiout.dac_nids[i]);
9441 static void alc861_auto_init_hp_out(struct hda_codec *codec)
9443 struct alc_spec *spec = codec->spec;
9446 pin = spec->autocfg.hp_pins[0];
9447 if (pin) /* connect to front */
9448 alc861_auto_set_output_and_unmute(codec, pin, PIN_HP,
9449 spec->multiout.dac_nids[0]);
9452 static void alc861_auto_init_analog_input(struct hda_codec *codec)
9454 struct alc_spec *spec = codec->spec;
9457 for (i = 0; i < AUTO_PIN_LAST; i++) {
9458 hda_nid_t nid = spec->autocfg.input_pins[i];
9459 if (nid >= 0x0c && nid <= 0x11) {
9460 snd_hda_codec_write(codec, nid, 0,
9461 AC_VERB_SET_PIN_WIDGET_CONTROL,
9462 i <= AUTO_PIN_FRONT_MIC ?
9463 PIN_VREF80 : PIN_IN);
9468 /* parse the BIOS configuration and set up the alc_spec */
9469 /* return 1 if successful, 0 if the proper config is not found,
9470 * or a negative error code
9472 static int alc861_parse_auto_config(struct hda_codec *codec)
9474 struct alc_spec *spec = codec->spec;
9476 static hda_nid_t alc861_ignore[] = { 0x1d, 0 };
9478 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
9482 if (!spec->autocfg.line_outs)
9483 return 0; /* can't find valid BIOS pin config */
9485 err = alc861_auto_fill_dac_nids(spec, &spec->autocfg);
9488 err = alc861_auto_create_multi_out_ctls(spec, &spec->autocfg);
9491 err = alc861_auto_create_hp_ctls(spec, spec->autocfg.hp_pins[0]);
9494 err = alc861_auto_create_analog_input_ctls(spec, &spec->autocfg);
9498 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
9500 if (spec->autocfg.dig_out_pin)
9501 spec->multiout.dig_out_nid = ALC861_DIGOUT_NID;
9503 if (spec->kctl_alloc)
9504 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
9506 spec->init_verbs[spec->num_init_verbs++] = alc861_auto_init_verbs;
9508 spec->num_mux_defs = 1;
9509 spec->input_mux = &spec->private_imux;
9511 spec->adc_nids = alc861_adc_nids;
9512 spec->num_adc_nids = ARRAY_SIZE(alc861_adc_nids);
9513 spec->mixers[spec->num_mixers] = alc861_capture_mixer;
9519 /* additional initialization for auto-configuration model */
9520 static void alc861_auto_init(struct hda_codec *codec)
9522 alc861_auto_init_multi_out(codec);
9523 alc861_auto_init_hp_out(codec);
9524 alc861_auto_init_analog_input(codec);
9529 * configuration and preset
9531 static const char *alc861_models[ALC861_MODEL_LAST] = {
9532 [ALC861_3ST] = "3stack",
9533 [ALC660_3ST] = "3stack-660",
9534 [ALC861_3ST_DIG] = "3stack-dig",
9535 [ALC861_6ST_DIG] = "6stack-dig",
9536 [ALC861_UNIWILL_M31] = "uniwill-m31",
9537 [ALC861_TOSHIBA] = "toshiba",
9538 [ALC861_ASUS] = "asus",
9539 [ALC861_ASUS_LAPTOP] = "asus-laptop",
9540 [ALC861_AUTO] = "auto",
9543 static struct snd_pci_quirk alc861_cfg_tbl[] = {
9544 SND_PCI_QUIRK(0x1043, 0x1205, "ASUS W7J", ALC861_3ST),
9545 SND_PCI_QUIRK(0x1043, 0x1335, "ASUS F2/3", ALC861_ASUS_LAPTOP),
9546 SND_PCI_QUIRK(0x1043, 0x1338, "ASUS F2/3", ALC861_ASUS_LAPTOP),
9547 SND_PCI_QUIRK(0x1043, 0x13d7, "ASUS A9rp", ALC861_ASUS_LAPTOP),
9548 SND_PCI_QUIRK(0x1584, 0x9075, "Airis Praxis N1212", ALC861_ASUS_LAPTOP),
9549 SND_PCI_QUIRK(0x1043, 0x1393, "ASUS", ALC861_ASUS),
9550 SND_PCI_QUIRK(0x1043, 0x81cb, "ASUS P1-AH2", ALC861_3ST_DIG),
9551 SND_PCI_QUIRK(0x1179, 0xff00, "Toshiba", ALC861_TOSHIBA),
9552 /* FIXME: the entry below breaks Toshiba A100 (model=auto works!)
9553 * Any other models that need this preset?
9555 /* SND_PCI_QUIRK(0x1179, 0xff10, "Toshiba", ALC861_TOSHIBA), */
9556 SND_PCI_QUIRK(0x1584, 0x9072, "Uniwill m31", ALC861_UNIWILL_M31),
9557 SND_PCI_QUIRK(0x1584, 0x9075, "Uniwill", ALC861_UNIWILL_M31),
9558 SND_PCI_QUIRK(0x1584, 0x2b01, "Uniwill X40AIx", ALC861_UNIWILL_M31),
9559 SND_PCI_QUIRK(0x1849, 0x0660, "Asrock 939SLI32", ALC660_3ST),
9560 SND_PCI_QUIRK(0x8086, 0xd600, "Intel", ALC861_3ST),
9564 static struct alc_config_preset alc861_presets[] = {
9566 .mixers = { alc861_3ST_mixer },
9567 .init_verbs = { alc861_threestack_init_verbs },
9568 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
9569 .dac_nids = alc861_dac_nids,
9570 .num_channel_mode = ARRAY_SIZE(alc861_threestack_modes),
9571 .channel_mode = alc861_threestack_modes,
9573 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
9574 .adc_nids = alc861_adc_nids,
9575 .input_mux = &alc861_capture_source,
9577 [ALC861_3ST_DIG] = {
9578 .mixers = { alc861_base_mixer },
9579 .init_verbs = { alc861_threestack_init_verbs },
9580 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
9581 .dac_nids = alc861_dac_nids,
9582 .dig_out_nid = ALC861_DIGOUT_NID,
9583 .num_channel_mode = ARRAY_SIZE(alc861_threestack_modes),
9584 .channel_mode = alc861_threestack_modes,
9586 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
9587 .adc_nids = alc861_adc_nids,
9588 .input_mux = &alc861_capture_source,
9590 [ALC861_6ST_DIG] = {
9591 .mixers = { alc861_base_mixer },
9592 .init_verbs = { alc861_base_init_verbs },
9593 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
9594 .dac_nids = alc861_dac_nids,
9595 .dig_out_nid = ALC861_DIGOUT_NID,
9596 .num_channel_mode = ARRAY_SIZE(alc861_8ch_modes),
9597 .channel_mode = alc861_8ch_modes,
9598 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
9599 .adc_nids = alc861_adc_nids,
9600 .input_mux = &alc861_capture_source,
9603 .mixers = { alc861_3ST_mixer },
9604 .init_verbs = { alc861_threestack_init_verbs },
9605 .num_dacs = ARRAY_SIZE(alc660_dac_nids),
9606 .dac_nids = alc660_dac_nids,
9607 .num_channel_mode = ARRAY_SIZE(alc861_threestack_modes),
9608 .channel_mode = alc861_threestack_modes,
9610 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
9611 .adc_nids = alc861_adc_nids,
9612 .input_mux = &alc861_capture_source,
9614 [ALC861_UNIWILL_M31] = {
9615 .mixers = { alc861_uniwill_m31_mixer },
9616 .init_verbs = { alc861_uniwill_m31_init_verbs },
9617 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
9618 .dac_nids = alc861_dac_nids,
9619 .dig_out_nid = ALC861_DIGOUT_NID,
9620 .num_channel_mode = ARRAY_SIZE(alc861_uniwill_m31_modes),
9621 .channel_mode = alc861_uniwill_m31_modes,
9623 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
9624 .adc_nids = alc861_adc_nids,
9625 .input_mux = &alc861_capture_source,
9627 [ALC861_TOSHIBA] = {
9628 .mixers = { alc861_toshiba_mixer },
9629 .init_verbs = { alc861_base_init_verbs,
9630 alc861_toshiba_init_verbs },
9631 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
9632 .dac_nids = alc861_dac_nids,
9633 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
9634 .channel_mode = alc883_3ST_2ch_modes,
9635 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
9636 .adc_nids = alc861_adc_nids,
9637 .input_mux = &alc861_capture_source,
9638 .unsol_event = alc861_toshiba_unsol_event,
9639 .init_hook = alc861_toshiba_automute,
9642 .mixers = { alc861_asus_mixer },
9643 .init_verbs = { alc861_asus_init_verbs },
9644 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
9645 .dac_nids = alc861_dac_nids,
9646 .dig_out_nid = ALC861_DIGOUT_NID,
9647 .num_channel_mode = ARRAY_SIZE(alc861_asus_modes),
9648 .channel_mode = alc861_asus_modes,
9651 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
9652 .adc_nids = alc861_adc_nids,
9653 .input_mux = &alc861_capture_source,
9655 [ALC861_ASUS_LAPTOP] = {
9656 .mixers = { alc861_toshiba_mixer, alc861_asus_laptop_mixer },
9657 .init_verbs = { alc861_asus_init_verbs,
9658 alc861_asus_laptop_init_verbs },
9659 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
9660 .dac_nids = alc861_dac_nids,
9661 .dig_out_nid = ALC861_DIGOUT_NID,
9662 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
9663 .channel_mode = alc883_3ST_2ch_modes,
9665 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
9666 .adc_nids = alc861_adc_nids,
9667 .input_mux = &alc861_capture_source,
9672 static int patch_alc861(struct hda_codec *codec)
9674 struct alc_spec *spec;
9678 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
9684 board_config = snd_hda_check_board_config(codec, ALC861_MODEL_LAST,
9688 if (board_config < 0) {
9689 printk(KERN_INFO "hda_codec: Unknown model for ALC861, "
9690 "trying auto-probe from BIOS...\n");
9691 board_config = ALC861_AUTO;
9694 if (board_config == ALC861_AUTO) {
9695 /* automatic parse from the BIOS config */
9696 err = alc861_parse_auto_config(codec);
9702 "hda_codec: Cannot set up configuration "
9703 "from BIOS. Using base mode...\n");
9704 board_config = ALC861_3ST_DIG;
9708 if (board_config != ALC861_AUTO)
9709 setup_preset(spec, &alc861_presets[board_config]);
9711 spec->stream_name_analog = "ALC861 Analog";
9712 spec->stream_analog_playback = &alc861_pcm_analog_playback;
9713 spec->stream_analog_capture = &alc861_pcm_analog_capture;
9715 spec->stream_name_digital = "ALC861 Digital";
9716 spec->stream_digital_playback = &alc861_pcm_digital_playback;
9717 spec->stream_digital_capture = &alc861_pcm_digital_capture;
9719 codec->patch_ops = alc_patch_ops;
9720 if (board_config == ALC861_AUTO)
9721 spec->init_hook = alc861_auto_init;
9731 * In addition, an independent DAC
9733 #define ALC861VD_DIGOUT_NID 0x06
9735 static hda_nid_t alc861vd_dac_nids[4] = {
9736 /* front, surr, clfe, side surr */
9737 0x02, 0x03, 0x04, 0x05
9740 /* dac_nids for ALC660vd are in a different order - according to
9742 * This should probably tesult in a different mixer for 6stack models
9743 * of ALC660vd codecs, but for now there is only 3stack mixer
9744 * - and it is the same as in 861vd.
9745 * adc_nids in ALC660vd are (is) the same as in 861vd
9747 static hda_nid_t alc660vd_dac_nids[3] = {
9748 /* front, rear, clfe, rear_surr */
9752 static hda_nid_t alc861vd_adc_nids[1] = {
9758 /* FIXME: should be a matrix-type input source selection */
9759 static struct hda_input_mux alc861vd_capture_source = {
9763 { "Front Mic", 0x1 },
9769 static struct hda_input_mux alc861vd_dallas_capture_source = {
9772 { "Front Mic", 0x0 },
9773 { "ATAPI Mic", 0x1 },
9778 #define alc861vd_mux_enum_info alc_mux_enum_info
9779 #define alc861vd_mux_enum_get alc_mux_enum_get
9781 static int alc861vd_mux_enum_put(struct snd_kcontrol *kcontrol,
9782 struct snd_ctl_elem_value *ucontrol)
9784 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
9785 struct alc_spec *spec = codec->spec;
9786 const struct hda_input_mux *imux = spec->input_mux;
9787 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
9788 static hda_nid_t capture_mixers[1] = { 0x22 };
9789 hda_nid_t nid = capture_mixers[adc_idx];
9790 unsigned int *cur_val = &spec->cur_mux[adc_idx];
9791 unsigned int i, idx;
9793 idx = ucontrol->value.enumerated.item[0];
9794 if (idx >= imux->num_items)
9795 idx = imux->num_items - 1;
9796 if (*cur_val == idx && !codec->in_resume)
9798 for (i = 0; i < imux->num_items; i++) {
9799 unsigned int v = (i == idx) ? 0x7000 : 0x7080;
9800 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
9801 v | (imux->items[i].index << 8));
9810 static struct hda_channel_mode alc861vd_3stack_2ch_modes[1] = {
9817 static struct hda_verb alc861vd_6stack_ch6_init[] = {
9818 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
9819 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
9820 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
9821 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
9828 static struct hda_verb alc861vd_6stack_ch8_init[] = {
9829 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
9830 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
9831 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
9832 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
9836 static struct hda_channel_mode alc861vd_6stack_modes[2] = {
9837 { 6, alc861vd_6stack_ch6_init },
9838 { 8, alc861vd_6stack_ch8_init },
9841 static struct snd_kcontrol_new alc861vd_chmode_mixer[] = {
9843 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9844 .name = "Channel Mode",
9845 .info = alc_ch_mode_info,
9846 .get = alc_ch_mode_get,
9847 .put = alc_ch_mode_put,
9852 static struct snd_kcontrol_new alc861vd_capture_mixer[] = {
9853 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
9854 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
9857 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9858 /* The multiple "Capture Source" controls confuse alsamixer
9859 * So call somewhat different..
9860 *FIXME: the controls appear in the "playback" view!
9862 /* .name = "Capture Source", */
9863 .name = "Input Source",
9865 .info = alc861vd_mux_enum_info,
9866 .get = alc861vd_mux_enum_get,
9867 .put = alc861vd_mux_enum_put,
9872 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
9873 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
9875 static struct snd_kcontrol_new alc861vd_6st_mixer[] = {
9876 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
9877 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
9879 HDA_CODEC_VOLUME("Surround Playback Volume", 0x03, 0x0, HDA_OUTPUT),
9880 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
9882 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0,
9884 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0,
9886 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
9887 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
9889 HDA_CODEC_VOLUME("Side Playback Volume", 0x05, 0x0, HDA_OUTPUT),
9890 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
9892 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
9894 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
9895 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
9896 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
9898 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
9899 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
9900 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
9902 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
9903 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
9905 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
9906 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
9908 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
9909 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
9914 static struct snd_kcontrol_new alc861vd_3st_mixer[] = {
9915 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
9916 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
9918 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
9920 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
9921 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
9922 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
9924 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
9925 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
9926 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
9928 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
9929 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
9931 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
9932 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
9934 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
9935 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
9940 static struct snd_kcontrol_new alc861vd_lenovo_mixer[] = {
9941 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
9942 /*HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),*/
9943 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
9945 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
9947 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
9948 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
9949 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
9951 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
9952 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
9953 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
9955 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
9956 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
9961 /* Pin assignment: Front=0x14, HP = 0x15,
9962 * Front Mic=0x18, ATAPI Mic = 0x19, Line In = 0x1d
9964 static struct snd_kcontrol_new alc861vd_dallas_mixer[] = {
9965 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
9966 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
9967 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT),
9968 HDA_BIND_MUTE("Headphone Playback Switch", 0x0d, 2, HDA_INPUT),
9969 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
9970 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
9971 HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
9972 HDA_CODEC_MUTE("ATAPI Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
9973 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x05, HDA_INPUT),
9974 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x05, HDA_INPUT),
9975 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
9976 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
9978 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9979 /* .name = "Capture Source", */
9980 .name = "Input Source",
9982 .info = alc882_mux_enum_info,
9983 .get = alc882_mux_enum_get,
9984 .put = alc882_mux_enum_put,
9990 * generic initialization of ADC, input mixers and output mixers
9992 static struct hda_verb alc861vd_volume_init_verbs[] = {
9994 * Unmute ADC0 and set the default input to mic-in
9996 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
9997 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9999 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of
10000 * the analog-loopback mixer widget
10002 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
10003 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10004 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
10005 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
10006 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
10007 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
10009 /* Capture mixer: unmute Mic, F-Mic, Line, CD inputs */
10010 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10011 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
10012 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
10013 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
10016 * Set up output mixers (0x02 - 0x05)
10018 /* set vol=0 to output mixers */
10019 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10020 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10021 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10022 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10024 /* set up input amps for analog loopback */
10025 /* Amp Indices: DAC = 0, mixer = 1 */
10026 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
10027 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
10028 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
10029 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
10030 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
10031 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
10032 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
10033 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
10039 * 3-stack pin configuration:
10040 * front = 0x14, mic/clfe = 0x18, HP = 0x19, line/surr = 0x1a, f-mic = 0x1b
10042 static struct hda_verb alc861vd_3stack_init_verbs[] = {
10044 * Set pin mode and muting
10046 /* set front pin widgets 0x14 for output */
10047 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10048 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10049 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
10051 /* Mic (rear) pin: input vref at 80% */
10052 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
10053 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
10054 /* Front Mic pin: input vref at 80% */
10055 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
10056 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
10057 /* Line In pin: input */
10058 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
10059 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
10060 /* Line-2 In: Headphone output (output 0 - 0x0c) */
10061 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
10062 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10063 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
10064 /* CD pin widget for input */
10065 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
10071 * 6-stack pin configuration:
10073 static struct hda_verb alc861vd_6stack_init_verbs[] = {
10075 * Set pin mode and muting
10077 /* set front pin widgets 0x14 for output */
10078 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10079 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10080 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
10082 /* Rear Pin: output 1 (0x0d) */
10083 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10084 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10085 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
10086 /* CLFE Pin: output 2 (0x0e) */
10087 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10088 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10089 {0x16, AC_VERB_SET_CONNECT_SEL, 0x02},
10090 /* Side Pin: output 3 (0x0f) */
10091 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10092 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10093 {0x17, AC_VERB_SET_CONNECT_SEL, 0x03},
10095 /* Mic (rear) pin: input vref at 80% */
10096 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
10097 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
10098 /* Front Mic pin: input vref at 80% */
10099 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
10100 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
10101 /* Line In pin: input */
10102 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
10103 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
10104 /* Line-2 In: Headphone output (output 0 - 0x0c) */
10105 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
10106 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10107 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
10108 /* CD pin widget for input */
10109 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
10114 static struct hda_verb alc861vd_eapd_verbs[] = {
10115 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 2},
10119 static struct hda_verb alc861vd_lenovo_unsol_verbs[] = {
10120 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10121 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
10122 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)},
10123 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
10124 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_MIC_EVENT},
10128 /* toggle speaker-output according to the hp-jack state */
10129 static void alc861vd_lenovo_hp_automute(struct hda_codec *codec)
10131 unsigned int present;
10132 unsigned char bits;
10134 present = snd_hda_codec_read(codec, 0x1b, 0,
10135 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
10136 bits = present ? 0x80 : 0;
10137 snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
10139 snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
10143 static void alc861vd_lenovo_mic_automute(struct hda_codec *codec)
10145 unsigned int present;
10146 unsigned char bits;
10148 present = snd_hda_codec_read(codec, 0x18, 0,
10149 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
10150 bits = present ? 0x80 : 0;
10151 snd_hda_codec_amp_update(codec, 0x0b, 0, HDA_INPUT, 1,
10153 snd_hda_codec_amp_update(codec, 0x0b, 1, HDA_INPUT, 1,
10157 static void alc861vd_lenovo_automute(struct hda_codec *codec)
10159 alc861vd_lenovo_hp_automute(codec);
10160 alc861vd_lenovo_mic_automute(codec);
10163 static void alc861vd_lenovo_unsol_event(struct hda_codec *codec,
10166 switch (res >> 26) {
10167 case ALC880_HP_EVENT:
10168 alc861vd_lenovo_hp_automute(codec);
10170 case ALC880_MIC_EVENT:
10171 alc861vd_lenovo_mic_automute(codec);
10176 static struct hda_verb alc861vd_dallas_verbs[] = {
10177 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10178 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10179 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10180 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10182 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10183 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
10184 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
10185 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
10186 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
10187 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
10188 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
10189 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
10191 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10192 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10193 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10194 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10195 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10196 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10197 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10198 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10200 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50},
10201 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
10202 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50},
10203 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
10204 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
10205 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
10206 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
10207 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
10209 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10210 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
10211 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
10212 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
10214 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
10215 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
10216 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
10221 /* toggle speaker-output according to the hp-jack state */
10222 static void alc861vd_dallas_automute(struct hda_codec *codec)
10224 unsigned int present;
10226 present = snd_hda_codec_read(codec, 0x15, 0,
10227 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
10228 snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
10229 0x80, present ? 0x80 : 0);
10230 snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
10231 0x80, present ? 0x80 : 0);
10234 static void alc861vd_dallas_unsol_event(struct hda_codec *codec, unsigned int res)
10236 if ((res >> 26) == ALC880_HP_EVENT)
10237 alc861vd_dallas_automute(codec);
10240 /* pcm configuration: identiacal with ALC880 */
10241 #define alc861vd_pcm_analog_playback alc880_pcm_analog_playback
10242 #define alc861vd_pcm_analog_capture alc880_pcm_analog_capture
10243 #define alc861vd_pcm_digital_playback alc880_pcm_digital_playback
10244 #define alc861vd_pcm_digital_capture alc880_pcm_digital_capture
10247 * configuration and preset
10249 static const char *alc861vd_models[ALC861VD_MODEL_LAST] = {
10250 [ALC660VD_3ST] = "3stack-660",
10251 [ALC660VD_3ST_DIG]= "3stack-660-digout",
10252 [ALC861VD_3ST] = "3stack",
10253 [ALC861VD_3ST_DIG] = "3stack-digout",
10254 [ALC861VD_6ST_DIG] = "6stack-digout",
10255 [ALC861VD_LENOVO] = "lenovo",
10256 [ALC861VD_DALLAS] = "dallas",
10257 [ALC861VD_AUTO] = "auto",
10260 static struct snd_pci_quirk alc861vd_cfg_tbl[] = {
10261 SND_PCI_QUIRK(0x1043, 0x12e2, "Asus z35m", ALC660VD_3ST),
10262 SND_PCI_QUIRK(0x1043, 0x1339, "Asus G1", ALC660VD_3ST),
10263 SND_PCI_QUIRK(0x1043, 0x81e7, "ASUS", ALC660VD_3ST_DIG),
10264 SND_PCI_QUIRK(0x10de, 0x03f0, "Realtek ALC660 demo", ALC660VD_3ST),
10265 SND_PCI_QUIRK(0x1019, 0xa88d, "Realtek ALC660 demo", ALC660VD_3ST),
10267 SND_PCI_QUIRK(0x1179, 0xff00, "DALLAS", ALC861VD_DALLAS),
10268 SND_PCI_QUIRK(0x1179, 0xff01, "DALLAS", ALC861VD_DALLAS),
10269 SND_PCI_QUIRK(0x17aa, 0x3802, "Lenovo 3000 C200", ALC861VD_LENOVO),
10270 SND_PCI_QUIRK(0x17aa, 0x2066, "Lenovo", ALC861VD_LENOVO),
10271 SND_PCI_QUIRK(0x1179, 0xff00, "Toshiba A135", ALC861VD_LENOVO),
10275 static struct alc_config_preset alc861vd_presets[] = {
10277 .mixers = { alc861vd_3st_mixer },
10278 .init_verbs = { alc861vd_volume_init_verbs,
10279 alc861vd_3stack_init_verbs },
10280 .num_dacs = ARRAY_SIZE(alc660vd_dac_nids),
10281 .dac_nids = alc660vd_dac_nids,
10282 .num_adc_nids = ARRAY_SIZE(alc861vd_adc_nids),
10283 .adc_nids = alc861vd_adc_nids,
10284 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
10285 .channel_mode = alc861vd_3stack_2ch_modes,
10286 .input_mux = &alc861vd_capture_source,
10288 [ALC660VD_3ST_DIG] = {
10289 .mixers = { alc861vd_3st_mixer },
10290 .init_verbs = { alc861vd_volume_init_verbs,
10291 alc861vd_3stack_init_verbs },
10292 .num_dacs = ARRAY_SIZE(alc660vd_dac_nids),
10293 .dac_nids = alc660vd_dac_nids,
10294 .dig_out_nid = ALC861VD_DIGOUT_NID,
10295 .num_adc_nids = ARRAY_SIZE(alc861vd_adc_nids),
10296 .adc_nids = alc861vd_adc_nids,
10297 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
10298 .channel_mode = alc861vd_3stack_2ch_modes,
10299 .input_mux = &alc861vd_capture_source,
10302 .mixers = { alc861vd_3st_mixer },
10303 .init_verbs = { alc861vd_volume_init_verbs,
10304 alc861vd_3stack_init_verbs },
10305 .num_dacs = ARRAY_SIZE(alc861vd_dac_nids),
10306 .dac_nids = alc861vd_dac_nids,
10307 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
10308 .channel_mode = alc861vd_3stack_2ch_modes,
10309 .input_mux = &alc861vd_capture_source,
10311 [ALC861VD_3ST_DIG] = {
10312 .mixers = { alc861vd_3st_mixer },
10313 .init_verbs = { alc861vd_volume_init_verbs,
10314 alc861vd_3stack_init_verbs },
10315 .num_dacs = ARRAY_SIZE(alc861vd_dac_nids),
10316 .dac_nids = alc861vd_dac_nids,
10317 .dig_out_nid = ALC861VD_DIGOUT_NID,
10318 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
10319 .channel_mode = alc861vd_3stack_2ch_modes,
10320 .input_mux = &alc861vd_capture_source,
10322 [ALC861VD_6ST_DIG] = {
10323 .mixers = { alc861vd_6st_mixer, alc861vd_chmode_mixer },
10324 .init_verbs = { alc861vd_volume_init_verbs,
10325 alc861vd_6stack_init_verbs },
10326 .num_dacs = ARRAY_SIZE(alc861vd_dac_nids),
10327 .dac_nids = alc861vd_dac_nids,
10328 .dig_out_nid = ALC861VD_DIGOUT_NID,
10329 .num_channel_mode = ARRAY_SIZE(alc861vd_6stack_modes),
10330 .channel_mode = alc861vd_6stack_modes,
10331 .input_mux = &alc861vd_capture_source,
10333 [ALC861VD_LENOVO] = {
10334 .mixers = { alc861vd_lenovo_mixer },
10335 .init_verbs = { alc861vd_volume_init_verbs,
10336 alc861vd_3stack_init_verbs,
10337 alc861vd_eapd_verbs,
10338 alc861vd_lenovo_unsol_verbs },
10339 .num_dacs = ARRAY_SIZE(alc660vd_dac_nids),
10340 .dac_nids = alc660vd_dac_nids,
10341 .num_adc_nids = ARRAY_SIZE(alc861vd_adc_nids),
10342 .adc_nids = alc861vd_adc_nids,
10343 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
10344 .channel_mode = alc861vd_3stack_2ch_modes,
10345 .input_mux = &alc861vd_capture_source,
10346 .unsol_event = alc861vd_lenovo_unsol_event,
10347 .init_hook = alc861vd_lenovo_automute,
10349 [ALC861VD_DALLAS] = {
10350 .mixers = { alc861vd_dallas_mixer },
10351 .init_verbs = { alc861vd_dallas_verbs },
10352 .num_dacs = ARRAY_SIZE(alc861vd_dac_nids),
10353 .dac_nids = alc861vd_dac_nids,
10354 .num_adc_nids = ARRAY_SIZE(alc861vd_adc_nids),
10355 .adc_nids = alc861vd_adc_nids,
10356 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
10357 .channel_mode = alc861vd_3stack_2ch_modes,
10358 .input_mux = &alc861vd_dallas_capture_source,
10359 .unsol_event = alc861vd_dallas_unsol_event,
10360 .init_hook = alc861vd_dallas_automute,
10365 * BIOS auto configuration
10367 static void alc861vd_auto_set_output_and_unmute(struct hda_codec *codec,
10368 hda_nid_t nid, int pin_type, int dac_idx)
10370 /* set as output */
10371 snd_hda_codec_write(codec, nid, 0,
10372 AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
10373 snd_hda_codec_write(codec, nid, 0,
10374 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
10377 static void alc861vd_auto_init_multi_out(struct hda_codec *codec)
10379 struct alc_spec *spec = codec->spec;
10382 alc_subsystem_id(codec, 0x15, 0x1b, 0x14);
10383 for (i = 0; i <= HDA_SIDE; i++) {
10384 hda_nid_t nid = spec->autocfg.line_out_pins[i];
10385 int pin_type = get_pin_type(spec->autocfg.line_out_type);
10387 alc861vd_auto_set_output_and_unmute(codec, nid,
10393 static void alc861vd_auto_init_hp_out(struct hda_codec *codec)
10395 struct alc_spec *spec = codec->spec;
10398 pin = spec->autocfg.hp_pins[0];
10399 if (pin) /* connect to front and use dac 0 */
10400 alc861vd_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
10403 #define alc861vd_is_input_pin(nid) alc880_is_input_pin(nid)
10404 #define ALC861VD_PIN_CD_NID ALC880_PIN_CD_NID
10406 static void alc861vd_auto_init_analog_input(struct hda_codec *codec)
10408 struct alc_spec *spec = codec->spec;
10411 for (i = 0; i < AUTO_PIN_LAST; i++) {
10412 hda_nid_t nid = spec->autocfg.input_pins[i];
10413 if (alc861vd_is_input_pin(nid)) {
10414 snd_hda_codec_write(codec, nid, 0,
10415 AC_VERB_SET_PIN_WIDGET_CONTROL,
10416 i <= AUTO_PIN_FRONT_MIC ?
10417 PIN_VREF80 : PIN_IN);
10418 if (nid != ALC861VD_PIN_CD_NID)
10419 snd_hda_codec_write(codec, nid, 0,
10420 AC_VERB_SET_AMP_GAIN_MUTE,
10426 #define alc861vd_idx_to_mixer_vol(nid) ((nid) + 0x02)
10427 #define alc861vd_idx_to_mixer_switch(nid) ((nid) + 0x0c)
10429 /* add playback controls from the parsed DAC table */
10430 /* Based on ALC880 version. But ALC861VD has separate,
10431 * different NIDs for mute/unmute switch and volume control */
10432 static int alc861vd_auto_create_multi_out_ctls(struct alc_spec *spec,
10433 const struct auto_pin_cfg *cfg)
10436 static const char *chname[4] = {"Front", "Surround", "CLFE", "Side"};
10437 hda_nid_t nid_v, nid_s;
10440 for (i = 0; i < cfg->line_outs; i++) {
10441 if (!spec->multiout.dac_nids[i])
10443 nid_v = alc861vd_idx_to_mixer_vol(
10445 spec->multiout.dac_nids[i]));
10446 nid_s = alc861vd_idx_to_mixer_switch(
10448 spec->multiout.dac_nids[i]));
10452 err = add_control(spec, ALC_CTL_WIDGET_VOL,
10453 "Center Playback Volume",
10454 HDA_COMPOSE_AMP_VAL(nid_v, 1, 0,
10458 err = add_control(spec, ALC_CTL_WIDGET_VOL,
10459 "LFE Playback Volume",
10460 HDA_COMPOSE_AMP_VAL(nid_v, 2, 0,
10464 err = add_control(spec, ALC_CTL_BIND_MUTE,
10465 "Center Playback Switch",
10466 HDA_COMPOSE_AMP_VAL(nid_s, 1, 2,
10470 err = add_control(spec, ALC_CTL_BIND_MUTE,
10471 "LFE Playback Switch",
10472 HDA_COMPOSE_AMP_VAL(nid_s, 2, 2,
10477 sprintf(name, "%s Playback Volume", chname[i]);
10478 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
10479 HDA_COMPOSE_AMP_VAL(nid_v, 3, 0,
10483 sprintf(name, "%s Playback Switch", chname[i]);
10484 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
10485 HDA_COMPOSE_AMP_VAL(nid_s, 3, 2,
10494 /* add playback controls for speaker and HP outputs */
10495 /* Based on ALC880 version. But ALC861VD has separate,
10496 * different NIDs for mute/unmute switch and volume control */
10497 static int alc861vd_auto_create_extra_out(struct alc_spec *spec,
10498 hda_nid_t pin, const char *pfx)
10500 hda_nid_t nid_v, nid_s;
10507 if (alc880_is_fixed_pin(pin)) {
10508 nid_v = alc880_idx_to_dac(alc880_fixed_pin_idx(pin));
10509 /* specify the DAC as the extra output */
10510 if (!spec->multiout.hp_nid)
10511 spec->multiout.hp_nid = nid_v;
10513 spec->multiout.extra_out_nid[0] = nid_v;
10514 /* control HP volume/switch on the output mixer amp */
10515 nid_v = alc861vd_idx_to_mixer_vol(
10516 alc880_fixed_pin_idx(pin));
10517 nid_s = alc861vd_idx_to_mixer_switch(
10518 alc880_fixed_pin_idx(pin));
10520 sprintf(name, "%s Playback Volume", pfx);
10521 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
10522 HDA_COMPOSE_AMP_VAL(nid_v, 3, 0, HDA_OUTPUT));
10525 sprintf(name, "%s Playback Switch", pfx);
10526 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
10527 HDA_COMPOSE_AMP_VAL(nid_s, 3, 2, HDA_INPUT));
10530 } else if (alc880_is_multi_pin(pin)) {
10531 /* set manual connection */
10532 /* we have only a switch on HP-out PIN */
10533 sprintf(name, "%s Playback Switch", pfx);
10534 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
10535 HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
10542 /* parse the BIOS configuration and set up the alc_spec
10543 * return 1 if successful, 0 if the proper config is not found,
10544 * or a negative error code
10545 * Based on ALC880 version - had to change it to override
10546 * alc880_auto_create_extra_out and alc880_auto_create_multi_out_ctls */
10547 static int alc861vd_parse_auto_config(struct hda_codec *codec)
10549 struct alc_spec *spec = codec->spec;
10551 static hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
10553 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
10557 if (!spec->autocfg.line_outs)
10558 return 0; /* can't find valid BIOS pin config */
10560 err = alc880_auto_fill_dac_nids(spec, &spec->autocfg);
10563 err = alc861vd_auto_create_multi_out_ctls(spec, &spec->autocfg);
10566 err = alc861vd_auto_create_extra_out(spec,
10567 spec->autocfg.speaker_pins[0],
10571 err = alc861vd_auto_create_extra_out(spec,
10572 spec->autocfg.hp_pins[0],
10576 err = alc880_auto_create_analog_input_ctls(spec, &spec->autocfg);
10580 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
10582 if (spec->autocfg.dig_out_pin)
10583 spec->multiout.dig_out_nid = ALC861VD_DIGOUT_NID;
10585 if (spec->kctl_alloc)
10586 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
10588 spec->init_verbs[spec->num_init_verbs++]
10589 = alc861vd_volume_init_verbs;
10591 spec->num_mux_defs = 1;
10592 spec->input_mux = &spec->private_imux;
10597 /* additional initialization for auto-configuration model */
10598 static void alc861vd_auto_init(struct hda_codec *codec)
10600 alc861vd_auto_init_multi_out(codec);
10601 alc861vd_auto_init_hp_out(codec);
10602 alc861vd_auto_init_analog_input(codec);
10605 static int patch_alc861vd(struct hda_codec *codec)
10607 struct alc_spec *spec;
10608 int err, board_config;
10610 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
10614 codec->spec = spec;
10616 board_config = snd_hda_check_board_config(codec, ALC861VD_MODEL_LAST,
10620 if (board_config < 0 || board_config >= ALC861VD_MODEL_LAST) {
10621 printk(KERN_INFO "hda_codec: Unknown model for ALC660VD/"
10622 "ALC861VD, trying auto-probe from BIOS...\n");
10623 board_config = ALC861VD_AUTO;
10626 if (board_config == ALC861VD_AUTO) {
10627 /* automatic parse from the BIOS config */
10628 err = alc861vd_parse_auto_config(codec);
10634 "hda_codec: Cannot set up configuration "
10635 "from BIOS. Using base mode...\n");
10636 board_config = ALC861VD_3ST;
10640 if (board_config != ALC861VD_AUTO)
10641 setup_preset(spec, &alc861vd_presets[board_config]);
10643 spec->stream_name_analog = "ALC861VD Analog";
10644 spec->stream_analog_playback = &alc861vd_pcm_analog_playback;
10645 spec->stream_analog_capture = &alc861vd_pcm_analog_capture;
10647 spec->stream_name_digital = "ALC861VD Digital";
10648 spec->stream_digital_playback = &alc861vd_pcm_digital_playback;
10649 spec->stream_digital_capture = &alc861vd_pcm_digital_capture;
10651 spec->adc_nids = alc861vd_adc_nids;
10652 spec->num_adc_nids = ARRAY_SIZE(alc861vd_adc_nids);
10654 spec->mixers[spec->num_mixers] = alc861vd_capture_mixer;
10655 spec->num_mixers++;
10657 codec->patch_ops = alc_patch_ops;
10659 if (board_config == ALC861VD_AUTO)
10660 spec->init_hook = alc861vd_auto_init;
10668 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
10669 * configuration. Each pin widget can choose any input DACs and a mixer.
10670 * Each ADC is connected from a mixer of all inputs. This makes possible
10671 * 6-channel independent captures.
10673 * In addition, an independent DAC for the multi-playback (not used in this
10676 #define ALC662_DIGOUT_NID 0x06
10677 #define ALC662_DIGIN_NID 0x0a
10679 static hda_nid_t alc662_dac_nids[4] = {
10680 /* front, rear, clfe, rear_surr */
10684 static hda_nid_t alc662_adc_nids[1] = {
10689 /* FIXME: should be a matrix-type input source selection */
10691 static struct hda_input_mux alc662_capture_source = {
10695 { "Front Mic", 0x1 },
10701 static struct hda_input_mux alc662_lenovo_101e_capture_source = {
10708 #define alc662_mux_enum_info alc_mux_enum_info
10709 #define alc662_mux_enum_get alc_mux_enum_get
10711 static int alc662_mux_enum_put(struct snd_kcontrol *kcontrol,
10712 struct snd_ctl_elem_value *ucontrol)
10714 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
10715 struct alc_spec *spec = codec->spec;
10716 const struct hda_input_mux *imux = spec->input_mux;
10717 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
10718 static hda_nid_t capture_mixers[3] = { 0x24, 0x23, 0x22 };
10719 hda_nid_t nid = capture_mixers[adc_idx];
10720 unsigned int *cur_val = &spec->cur_mux[adc_idx];
10721 unsigned int i, idx;
10723 idx = ucontrol->value.enumerated.item[0];
10724 if (idx >= imux->num_items)
10725 idx = imux->num_items - 1;
10726 if (*cur_val == idx && !codec->in_resume)
10728 for (i = 0; i < imux->num_items; i++) {
10729 unsigned int v = (i == idx) ? 0x7000 : 0x7080;
10730 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
10731 v | (imux->items[i].index << 8));
10739 static struct hda_channel_mode alc662_3ST_2ch_modes[1] = {
10746 static struct hda_verb alc662_3ST_ch2_init[] = {
10747 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
10748 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
10749 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
10750 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
10757 static struct hda_verb alc662_3ST_ch6_init[] = {
10758 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
10759 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
10760 { 0x18, AC_VERB_SET_CONNECT_SEL, 0x02 },
10761 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
10762 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
10763 { 0x1a, AC_VERB_SET_CONNECT_SEL, 0x01 },
10767 static struct hda_channel_mode alc662_3ST_6ch_modes[2] = {
10768 { 2, alc662_3ST_ch2_init },
10769 { 6, alc662_3ST_ch6_init },
10775 static struct hda_verb alc662_sixstack_ch6_init[] = {
10776 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
10777 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
10778 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
10785 static struct hda_verb alc662_sixstack_ch8_init[] = {
10786 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
10787 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
10788 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
10792 static struct hda_channel_mode alc662_5stack_modes[2] = {
10793 { 2, alc662_sixstack_ch6_init },
10794 { 6, alc662_sixstack_ch8_init },
10797 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
10798 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
10801 static struct snd_kcontrol_new alc662_base_mixer[] = {
10802 /* output mixer control */
10803 HDA_CODEC_VOLUME("Front Playback Volume", 0x2, 0x0, HDA_OUTPUT),
10804 HDA_CODEC_MUTE("Front Playback Switch", 0x02, 0x0, HDA_OUTPUT),
10805 HDA_CODEC_VOLUME("Surround Playback Volume", 0x3, 0x0, HDA_OUTPUT),
10806 HDA_CODEC_MUTE("Surround Playback Switch", 0x03, 0x0, HDA_OUTPUT),
10807 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0, HDA_OUTPUT),
10808 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0, HDA_OUTPUT),
10809 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x04, 1, 2, HDA_INPUT),
10810 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x04, 2, 2, HDA_INPUT),
10811 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
10813 /*Input mixer control */
10814 HDA_CODEC_VOLUME("CD Playback Volume", 0xb, 0x4, HDA_INPUT),
10815 HDA_CODEC_MUTE("CD Playback Switch", 0xb, 0x4, HDA_INPUT),
10816 HDA_CODEC_VOLUME("Line Playback Volume", 0xb, 0x02, HDA_INPUT),
10817 HDA_CODEC_MUTE("Line Playback Switch", 0xb, 0x02, HDA_INPUT),
10818 HDA_CODEC_VOLUME("Mic Playback Volume", 0xb, 0x0, HDA_INPUT),
10819 HDA_CODEC_MUTE("Mic Playback Switch", 0xb, 0x0, HDA_INPUT),
10820 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0xb, 0x01, HDA_INPUT),
10821 HDA_CODEC_MUTE("Front Mic Playback Switch", 0xb, 0x01, HDA_INPUT),
10823 /* Capture mixer control */
10824 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
10825 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
10827 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
10828 .name = "Capture Source",
10830 .info = alc_mux_enum_info,
10831 .get = alc_mux_enum_get,
10832 .put = alc_mux_enum_put,
10837 static struct snd_kcontrol_new alc662_3ST_2ch_mixer[] = {
10838 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
10839 HDA_BIND_MUTE("Front Playback Switch", 0x02, 2, HDA_INPUT),
10840 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
10841 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
10842 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
10843 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
10844 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
10845 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
10846 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
10847 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
10848 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
10849 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
10850 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
10851 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
10852 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
10854 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
10855 /* .name = "Capture Source", */
10856 .name = "Input Source",
10858 .info = alc662_mux_enum_info,
10859 .get = alc662_mux_enum_get,
10860 .put = alc662_mux_enum_put,
10865 static struct snd_kcontrol_new alc662_3ST_6ch_mixer[] = {
10866 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
10867 HDA_BIND_MUTE("Front Playback Switch", 0x02, 2, HDA_INPUT),
10868 HDA_CODEC_VOLUME("Surround Playback Volume", 0x03, 0x0, HDA_OUTPUT),
10869 HDA_BIND_MUTE("Surround Playback Switch", 0x03, 2, HDA_INPUT),
10870 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0, HDA_OUTPUT),
10871 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0, HDA_OUTPUT),
10872 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x04, 1, 2, HDA_INPUT),
10873 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x04, 2, 2, HDA_INPUT),
10874 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
10875 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
10876 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
10877 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
10878 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
10879 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
10880 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
10881 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
10882 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
10883 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
10884 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
10885 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
10886 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
10888 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
10889 /* .name = "Capture Source", */
10890 .name = "Input Source",
10892 .info = alc662_mux_enum_info,
10893 .get = alc662_mux_enum_get,
10894 .put = alc662_mux_enum_put,
10899 static struct snd_kcontrol_new alc662_lenovo_101e_mixer[] = {
10900 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
10901 HDA_BIND_MUTE("Front Playback Switch", 0x02, 2, HDA_INPUT),
10902 HDA_CODEC_VOLUME("iSpeaker Playback Volume", 0x03, 0x0, HDA_OUTPUT),
10903 HDA_BIND_MUTE("iSpeaker Playback Switch", 0x03, 2, HDA_INPUT),
10904 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
10905 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
10906 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
10907 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
10908 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
10909 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
10910 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
10912 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
10913 /* .name = "Capture Source", */
10914 .name = "Input Source",
10916 .info = alc662_mux_enum_info,
10917 .get = alc662_mux_enum_get,
10918 .put = alc662_mux_enum_put,
10923 static struct snd_kcontrol_new alc662_chmode_mixer[] = {
10925 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
10926 .name = "Channel Mode",
10927 .info = alc_ch_mode_info,
10928 .get = alc_ch_mode_get,
10929 .put = alc_ch_mode_put,
10934 static struct hda_verb alc662_init_verbs[] = {
10935 /* ADC: mute amp left and right */
10936 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
10937 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
10938 /* Front mixer: unmute input/output amp left and right (volume = 0) */
10940 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10941 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
10942 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
10943 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
10944 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
10946 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10947 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
10948 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10949 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
10950 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10951 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
10953 /* Front Pin: output 0 (0x0c) */
10954 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10955 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10957 /* Rear Pin: output 1 (0x0d) */
10958 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10959 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10961 /* CLFE Pin: output 2 (0x0e) */
10962 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10963 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10965 /* Mic (rear) pin: input vref at 80% */
10966 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
10967 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
10968 /* Front Mic pin: input vref at 80% */
10969 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
10970 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
10971 /* Line In pin: input */
10972 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
10973 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
10974 /* Line-2 In: Headphone output (output 0 - 0x0c) */
10975 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
10976 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10977 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
10978 /* CD pin widget for input */
10979 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
10981 /* FIXME: use matrix-type input source selection */
10982 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
10984 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10985 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
10986 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
10987 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
10991 static struct hda_verb alc662_sue_init_verbs[] = {
10992 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|ALC880_FRONT_EVENT},
10993 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|ALC880_HP_EVENT},
10998 * generic initialization of ADC, input mixers and output mixers
11000 static struct hda_verb alc662_auto_init_verbs[] = {
11002 * Unmute ADC and set the default input to mic-in
11004 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
11005 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11007 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
11009 * Note: PASD motherboards uses the Line In 2 as the input for front
11010 * panel mic (mic 2)
11012 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
11013 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11014 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
11015 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
11016 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
11017 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
11020 * Set up output mixers (0x0c - 0x0f)
11022 /* set vol=0 to output mixers */
11023 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
11024 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
11025 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
11027 /* set up input amps for analog loopback */
11028 /* Amp Indices: DAC = 0, mixer = 1 */
11029 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11030 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
11031 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11032 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
11033 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11034 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
11037 /* FIXME: use matrix-type input source selection */
11038 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
11040 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11041 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
11042 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
11043 /*{0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},*/
11044 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
11049 /* capture mixer elements */
11050 static struct snd_kcontrol_new alc662_capture_mixer[] = {
11051 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
11052 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
11054 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
11055 /* The multiple "Capture Source" controls confuse alsamixer
11056 * So call somewhat different..
11057 * FIXME: the controls appear in the "playback" view!
11059 /* .name = "Capture Source", */
11060 .name = "Input Source",
11062 .info = alc882_mux_enum_info,
11063 .get = alc882_mux_enum_get,
11064 .put = alc882_mux_enum_put,
11069 static void alc662_lenovo_101e_ispeaker_automute(struct hda_codec *codec)
11071 unsigned int present;
11072 unsigned char bits;
11074 present = snd_hda_codec_read(codec, 0x14, 0,
11075 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
11076 bits = present ? 0x80 : 0;
11077 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
11079 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
11083 static void alc662_lenovo_101e_all_automute(struct hda_codec *codec)
11085 unsigned int present;
11086 unsigned char bits;
11088 present = snd_hda_codec_read(codec, 0x1b, 0,
11089 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
11090 bits = present ? 0x80 : 0;
11091 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
11093 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
11095 snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
11097 snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
11101 static void alc662_lenovo_101e_unsol_event(struct hda_codec *codec,
11104 if ((res >> 26) == ALC880_HP_EVENT)
11105 alc662_lenovo_101e_all_automute(codec);
11106 if ((res >> 26) == ALC880_FRONT_EVENT)
11107 alc662_lenovo_101e_ispeaker_automute(codec);
11111 /* pcm configuration: identiacal with ALC880 */
11112 #define alc662_pcm_analog_playback alc880_pcm_analog_playback
11113 #define alc662_pcm_analog_capture alc880_pcm_analog_capture
11114 #define alc662_pcm_digital_playback alc880_pcm_digital_playback
11115 #define alc662_pcm_digital_capture alc880_pcm_digital_capture
11118 * configuration and preset
11120 static const char *alc662_models[ALC662_MODEL_LAST] = {
11121 [ALC662_3ST_2ch_DIG] = "3stack-dig",
11122 [ALC662_3ST_6ch_DIG] = "3stack-6ch-dig",
11123 [ALC662_3ST_6ch] = "3stack-6ch",
11124 [ALC662_5ST_DIG] = "6stack-dig",
11125 [ALC662_LENOVO_101E] = "lenovo-101e",
11126 [ALC662_AUTO] = "auto",
11129 static struct snd_pci_quirk alc662_cfg_tbl[] = {
11130 SND_PCI_QUIRK(0x17aa, 0x101e, "Lenovo", ALC662_LENOVO_101E),
11134 static struct alc_config_preset alc662_presets[] = {
11135 [ALC662_3ST_2ch_DIG] = {
11136 .mixers = { alc662_3ST_2ch_mixer },
11137 .init_verbs = { alc662_init_verbs },
11138 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
11139 .dac_nids = alc662_dac_nids,
11140 .dig_out_nid = ALC662_DIGOUT_NID,
11141 .num_adc_nids = ARRAY_SIZE(alc662_adc_nids),
11142 .adc_nids = alc662_adc_nids,
11143 .dig_in_nid = ALC662_DIGIN_NID,
11144 .num_channel_mode = ARRAY_SIZE(alc662_3ST_2ch_modes),
11145 .channel_mode = alc662_3ST_2ch_modes,
11146 .input_mux = &alc662_capture_source,
11148 [ALC662_3ST_6ch_DIG] = {
11149 .mixers = { alc662_3ST_6ch_mixer, alc662_chmode_mixer },
11150 .init_verbs = { alc662_init_verbs },
11151 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
11152 .dac_nids = alc662_dac_nids,
11153 .dig_out_nid = ALC662_DIGOUT_NID,
11154 .num_adc_nids = ARRAY_SIZE(alc662_adc_nids),
11155 .adc_nids = alc662_adc_nids,
11156 .dig_in_nid = ALC662_DIGIN_NID,
11157 .num_channel_mode = ARRAY_SIZE(alc662_3ST_6ch_modes),
11158 .channel_mode = alc662_3ST_6ch_modes,
11160 .input_mux = &alc662_capture_source,
11162 [ALC662_3ST_6ch] = {
11163 .mixers = { alc662_3ST_6ch_mixer, alc662_chmode_mixer },
11164 .init_verbs = { alc662_init_verbs },
11165 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
11166 .dac_nids = alc662_dac_nids,
11167 .num_adc_nids = ARRAY_SIZE(alc662_adc_nids),
11168 .adc_nids = alc662_adc_nids,
11169 .num_channel_mode = ARRAY_SIZE(alc662_3ST_6ch_modes),
11170 .channel_mode = alc662_3ST_6ch_modes,
11172 .input_mux = &alc662_capture_source,
11174 [ALC662_5ST_DIG] = {
11175 .mixers = { alc662_base_mixer, alc662_chmode_mixer },
11176 .init_verbs = { alc662_init_verbs },
11177 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
11178 .dac_nids = alc662_dac_nids,
11179 .dig_out_nid = ALC662_DIGOUT_NID,
11180 .num_adc_nids = ARRAY_SIZE(alc662_adc_nids),
11181 .adc_nids = alc662_adc_nids,
11182 .dig_in_nid = ALC662_DIGIN_NID,
11183 .num_channel_mode = ARRAY_SIZE(alc662_5stack_modes),
11184 .channel_mode = alc662_5stack_modes,
11185 .input_mux = &alc662_capture_source,
11187 [ALC662_LENOVO_101E] = {
11188 .mixers = { alc662_lenovo_101e_mixer },
11189 .init_verbs = { alc662_init_verbs, alc662_sue_init_verbs },
11190 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
11191 .dac_nids = alc662_dac_nids,
11192 .num_adc_nids = ARRAY_SIZE(alc662_adc_nids),
11193 .adc_nids = alc662_adc_nids,
11194 .num_channel_mode = ARRAY_SIZE(alc662_3ST_2ch_modes),
11195 .channel_mode = alc662_3ST_2ch_modes,
11196 .input_mux = &alc662_lenovo_101e_capture_source,
11197 .unsol_event = alc662_lenovo_101e_unsol_event,
11198 .init_hook = alc662_lenovo_101e_all_automute,
11205 * BIOS auto configuration
11208 /* add playback controls from the parsed DAC table */
11209 static int alc662_auto_create_multi_out_ctls(struct alc_spec *spec,
11210 const struct auto_pin_cfg *cfg)
11213 static const char *chname[4] = {
11214 "Front", "Surround", NULL /*CLFE*/, "Side"
11219 for (i = 0; i < cfg->line_outs; i++) {
11220 if (!spec->multiout.dac_nids[i])
11222 nid = alc880_idx_to_mixer(i);
11225 err = add_control(spec, ALC_CTL_WIDGET_VOL,
11226 "Center Playback Volume",
11227 HDA_COMPOSE_AMP_VAL(nid, 1, 0,
11231 err = add_control(spec, ALC_CTL_WIDGET_VOL,
11232 "LFE Playback Volume",
11233 HDA_COMPOSE_AMP_VAL(nid, 2, 0,
11237 err = add_control(spec, ALC_CTL_BIND_MUTE,
11238 "Center Playback Switch",
11239 HDA_COMPOSE_AMP_VAL(nid, 1, 2,
11243 err = add_control(spec, ALC_CTL_BIND_MUTE,
11244 "LFE Playback Switch",
11245 HDA_COMPOSE_AMP_VAL(nid, 2, 2,
11250 sprintf(name, "%s Playback Volume", chname[i]);
11251 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
11252 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
11256 sprintf(name, "%s Playback Switch", chname[i]);
11257 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
11258 HDA_COMPOSE_AMP_VAL(nid, 3, 2,
11267 /* add playback controls for speaker and HP outputs */
11268 static int alc662_auto_create_extra_out(struct alc_spec *spec, hda_nid_t pin,
11278 if (alc880_is_fixed_pin(pin)) {
11279 nid = alc880_idx_to_dac(alc880_fixed_pin_idx(pin));
11280 /* printk("DAC nid=%x\n",nid); */
11281 /* specify the DAC as the extra output */
11282 if (!spec->multiout.hp_nid)
11283 spec->multiout.hp_nid = nid;
11285 spec->multiout.extra_out_nid[0] = nid;
11286 /* control HP volume/switch on the output mixer amp */
11287 nid = alc880_idx_to_dac(alc880_fixed_pin_idx(pin));
11288 sprintf(name, "%s Playback Volume", pfx);
11289 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
11290 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT));
11293 sprintf(name, "%s Playback Switch", pfx);
11294 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
11295 HDA_COMPOSE_AMP_VAL(nid, 3, 2, HDA_INPUT));
11298 } else if (alc880_is_multi_pin(pin)) {
11299 /* set manual connection */
11300 /* we have only a switch on HP-out PIN */
11301 sprintf(name, "%s Playback Switch", pfx);
11302 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
11303 HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
11310 /* create playback/capture controls for input pins */
11311 static int alc662_auto_create_analog_input_ctls(struct alc_spec *spec,
11312 const struct auto_pin_cfg *cfg)
11314 struct hda_input_mux *imux = &spec->private_imux;
11317 for (i = 0; i < AUTO_PIN_LAST; i++) {
11318 if (alc880_is_input_pin(cfg->input_pins[i])) {
11319 idx = alc880_input_pin_idx(cfg->input_pins[i]);
11320 err = new_analog_input(spec, cfg->input_pins[i],
11321 auto_pin_cfg_labels[i],
11325 imux->items[imux->num_items].label =
11326 auto_pin_cfg_labels[i];
11327 imux->items[imux->num_items].index =
11328 alc880_input_pin_idx(cfg->input_pins[i]);
11335 static void alc662_auto_set_output_and_unmute(struct hda_codec *codec,
11336 hda_nid_t nid, int pin_type,
11339 /* set as output */
11340 snd_hda_codec_write(codec, nid, 0,
11341 AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
11342 snd_hda_codec_write(codec, nid, 0,
11343 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
11344 /* need the manual connection? */
11345 if (alc880_is_multi_pin(nid)) {
11346 struct alc_spec *spec = codec->spec;
11347 int idx = alc880_multi_pin_idx(nid);
11348 snd_hda_codec_write(codec, alc880_idx_to_selector(idx), 0,
11349 AC_VERB_SET_CONNECT_SEL,
11350 alc880_dac_to_idx(spec->multiout.dac_nids[dac_idx]));
11354 static void alc662_auto_init_multi_out(struct hda_codec *codec)
11356 struct alc_spec *spec = codec->spec;
11359 for (i = 0; i <= HDA_SIDE; i++) {
11360 hda_nid_t nid = spec->autocfg.line_out_pins[i];
11361 int pin_type = get_pin_type(spec->autocfg.line_out_type);
11363 alc662_auto_set_output_and_unmute(codec, nid, pin_type,
11368 static void alc662_auto_init_hp_out(struct hda_codec *codec)
11370 struct alc_spec *spec = codec->spec;
11373 pin = spec->autocfg.hp_pins[0];
11374 if (pin) /* connect to front */
11376 alc662_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
11379 #define alc662_is_input_pin(nid) alc880_is_input_pin(nid)
11380 #define ALC662_PIN_CD_NID ALC880_PIN_CD_NID
11382 static void alc662_auto_init_analog_input(struct hda_codec *codec)
11384 struct alc_spec *spec = codec->spec;
11387 for (i = 0; i < AUTO_PIN_LAST; i++) {
11388 hda_nid_t nid = spec->autocfg.input_pins[i];
11389 if (alc662_is_input_pin(nid)) {
11390 snd_hda_codec_write(codec, nid, 0,
11391 AC_VERB_SET_PIN_WIDGET_CONTROL,
11392 (i <= AUTO_PIN_FRONT_MIC ?
11393 PIN_VREF80 : PIN_IN));
11394 if (nid != ALC662_PIN_CD_NID)
11395 snd_hda_codec_write(codec, nid, 0,
11396 AC_VERB_SET_AMP_GAIN_MUTE,
11402 static int alc662_parse_auto_config(struct hda_codec *codec)
11404 struct alc_spec *spec = codec->spec;
11406 static hda_nid_t alc662_ignore[] = { 0x1d, 0 };
11408 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
11412 if (!spec->autocfg.line_outs)
11413 return 0; /* can't find valid BIOS pin config */
11415 err = alc880_auto_fill_dac_nids(spec, &spec->autocfg);
11418 err = alc662_auto_create_multi_out_ctls(spec, &spec->autocfg);
11421 err = alc662_auto_create_extra_out(spec,
11422 spec->autocfg.speaker_pins[0],
11426 err = alc662_auto_create_extra_out(spec, spec->autocfg.hp_pins[0],
11430 err = alc662_auto_create_analog_input_ctls(spec, &spec->autocfg);
11434 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
11436 if (spec->autocfg.dig_out_pin)
11437 spec->multiout.dig_out_nid = ALC880_DIGOUT_NID;
11439 if (spec->kctl_alloc)
11440 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
11442 spec->num_mux_defs = 1;
11443 spec->input_mux = &spec->private_imux;
11445 spec->init_verbs[spec->num_init_verbs++] = alc662_auto_init_verbs;
11446 spec->mixers[spec->num_mixers] = alc662_capture_mixer;
11447 spec->num_mixers++;
11451 /* additional initialization for auto-configuration model */
11452 static void alc662_auto_init(struct hda_codec *codec)
11454 alc662_auto_init_multi_out(codec);
11455 alc662_auto_init_hp_out(codec);
11456 alc662_auto_init_analog_input(codec);
11459 static int patch_alc662(struct hda_codec *codec)
11461 struct alc_spec *spec;
11462 int err, board_config;
11464 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
11468 codec->spec = spec;
11470 board_config = snd_hda_check_board_config(codec, ALC662_MODEL_LAST,
11473 if (board_config < 0) {
11474 printk(KERN_INFO "hda_codec: Unknown model for ALC662, "
11475 "trying auto-probe from BIOS...\n");
11476 board_config = ALC662_AUTO;
11479 if (board_config == ALC662_AUTO) {
11480 /* automatic parse from the BIOS config */
11481 err = alc662_parse_auto_config(codec);
11487 "hda_codec: Cannot set up configuration "
11488 "from BIOS. Using base mode...\n");
11489 board_config = ALC662_3ST_2ch_DIG;
11493 if (board_config != ALC662_AUTO)
11494 setup_preset(spec, &alc662_presets[board_config]);
11496 spec->stream_name_analog = "ALC662 Analog";
11497 spec->stream_analog_playback = &alc662_pcm_analog_playback;
11498 spec->stream_analog_capture = &alc662_pcm_analog_capture;
11500 spec->stream_name_digital = "ALC662 Digital";
11501 spec->stream_digital_playback = &alc662_pcm_digital_playback;
11502 spec->stream_digital_capture = &alc662_pcm_digital_capture;
11504 if (!spec->adc_nids && spec->input_mux) {
11505 spec->adc_nids = alc662_adc_nids;
11506 spec->num_adc_nids = ARRAY_SIZE(alc662_adc_nids);
11509 codec->patch_ops = alc_patch_ops;
11510 if (board_config == ALC662_AUTO)
11511 spec->init_hook = alc662_auto_init;
11519 struct hda_codec_preset snd_hda_preset_realtek[] = {
11520 { .id = 0x10ec0260, .name = "ALC260", .patch = patch_alc260 },
11521 { .id = 0x10ec0262, .name = "ALC262", .patch = patch_alc262 },
11522 { .id = 0x10ec0268, .name = "ALC268", .patch = patch_alc268 },
11523 { .id = 0x10ec0861, .rev = 0x100340, .name = "ALC660",
11524 .patch = patch_alc861 },
11525 { .id = 0x10ec0660, .name = "ALC660-VD", .patch = patch_alc861vd },
11526 { .id = 0x10ec0861, .name = "ALC861", .patch = patch_alc861 },
11527 { .id = 0x10ec0862, .name = "ALC861-VD", .patch = patch_alc861vd },
11528 { .id = 0x10ec0662, .rev = 0x100002, .name = "ALC662 rev2",
11529 .patch = patch_alc883 },
11530 { .id = 0x10ec0662, .rev = 0x100101, .name = "ALC662 rev1",
11531 .patch = patch_alc662 },
11532 { .id = 0x10ec0880, .name = "ALC880", .patch = patch_alc880 },
11533 { .id = 0x10ec0882, .name = "ALC882", .patch = patch_alc882 },
11534 { .id = 0x10ec0883, .name = "ALC883", .patch = patch_alc883 },
11535 { .id = 0x10ec0885, .name = "ALC885", .patch = patch_alc882 },
11536 { .id = 0x10ec0888, .name = "ALC888", .patch = patch_alc883 },
11537 {} /* terminator */