[ALSA] hda-codec - clean up patch_realtek.c
[linux-2.6/kvm.git] / sound / pci / hda / patch_realtek.c
blobf5944e05431f87e0605d3ee714acb731a599b63f
1 /*
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 */
41 enum {
42 ALC880_3ST,
43 ALC880_3ST_DIG,
44 ALC880_5ST,
45 ALC880_5ST_DIG,
46 ALC880_W810,
47 ALC880_Z71V,
48 ALC880_6ST,
49 ALC880_6ST_DIG,
50 ALC880_F1734,
51 ALC880_ASUS,
52 ALC880_ASUS_DIG,
53 ALC880_ASUS_W1V,
54 ALC880_ASUS_DIG2,
55 ALC880_FUJITSU,
56 ALC880_UNIWILL_DIG,
57 ALC880_UNIWILL,
58 ALC880_UNIWILL_P53,
59 ALC880_CLEVO,
60 ALC880_TCL_S700,
61 ALC880_LG,
62 ALC880_LG_LW,
63 #ifdef CONFIG_SND_DEBUG
64 ALC880_TEST,
65 #endif
66 ALC880_AUTO,
67 ALC880_MODEL_LAST /* last tag */
70 /* ALC260 models */
71 enum {
72 ALC260_BASIC,
73 ALC260_HP,
74 ALC260_HP_3013,
75 ALC260_FUJITSU_S702X,
76 ALC260_ACER,
77 ALC260_WILL,
78 ALC260_REPLACER_672V,
79 #ifdef CONFIG_SND_DEBUG
80 ALC260_TEST,
81 #endif
82 ALC260_AUTO,
83 ALC260_MODEL_LAST /* last tag */
86 /* ALC262 models */
87 enum {
88 ALC262_BASIC,
89 ALC262_HIPPO,
90 ALC262_HIPPO_1,
91 ALC262_FUJITSU,
92 ALC262_HP_BPC,
93 ALC262_HP_BPC_D7000_WL,
94 ALC262_HP_BPC_D7000_WF,
95 ALC262_BENQ_ED8,
96 ALC262_AUTO,
97 ALC262_MODEL_LAST /* last tag */
100 /* ALC861 models */
101 enum {
102 ALC861_3ST,
103 ALC660_3ST,
104 ALC861_3ST_DIG,
105 ALC861_6ST_DIG,
106 ALC861_UNIWILL_M31,
107 ALC861_TOSHIBA,
108 ALC861_ASUS,
109 ALC861_ASUS_LAPTOP,
110 ALC861_AUTO,
111 ALC861_MODEL_LAST,
114 /* ALC861-VD models */
115 enum {
116 ALC660VD_3ST,
117 ALC861VD_3ST,
118 ALC861VD_3ST_DIG,
119 ALC861VD_6ST_DIG,
120 ALC861VD_AUTO,
121 ALC861VD_MODEL_LAST,
124 /* ALC662 models */
125 enum {
126 ALC662_3ST_2ch_DIG,
127 ALC662_3ST_6ch_DIG,
128 ALC662_3ST_6ch,
129 ALC662_5ST_DIG,
130 ALC662_LENOVO_101E,
131 ALC662_AUTO,
132 ALC662_MODEL_LAST,
135 /* ALC882 models */
136 enum {
137 ALC882_3ST_DIG,
138 ALC882_6ST_DIG,
139 ALC882_ARIMA,
140 ALC882_AUTO,
141 ALC885_MACPRO,
142 ALC882_MODEL_LAST,
145 /* ALC883 models */
146 enum {
147 ALC883_3ST_2ch_DIG,
148 ALC883_3ST_6ch_DIG,
149 ALC883_3ST_6ch,
150 ALC883_6ST_DIG,
151 ALC883_TARGA_DIG,
152 ALC883_TARGA_2ch_DIG,
153 ALC888_DEMO_BOARD,
154 ALC883_ACER,
155 ALC883_MEDION,
156 ALC883_LAPTOP_EAPD,
157 ALC883_LENOVO_101E_2ch,
158 ALC883_AUTO,
159 ALC883_MODEL_LAST,
162 /* for GPIO Poll */
163 #define GPIO_MASK 0x03
165 struct alc_spec {
166 /* codec parameterization */
167 struct snd_kcontrol_new *mixers[5]; /* mixer arrays */
168 unsigned int num_mixers;
170 const struct hda_verb *init_verbs[5]; /* initialization verbs
171 * don't forget NULL
172 * termination!
174 unsigned int num_init_verbs;
176 char *stream_name_analog; /* analog PCM stream */
177 struct hda_pcm_stream *stream_analog_playback;
178 struct hda_pcm_stream *stream_analog_capture;
180 char *stream_name_digital; /* digital PCM stream */
181 struct hda_pcm_stream *stream_digital_playback;
182 struct hda_pcm_stream *stream_digital_capture;
184 /* playback */
185 struct hda_multi_out multiout; /* playback set-up
186 * max_channels, dacs must be set
187 * dig_out_nid and hp_nid are optional
190 /* capture */
191 unsigned int num_adc_nids;
192 hda_nid_t *adc_nids;
193 hda_nid_t dig_in_nid; /* digital-in NID; optional */
195 /* capture source */
196 unsigned int num_mux_defs;
197 const struct hda_input_mux *input_mux;
198 unsigned int cur_mux[3];
200 /* channel model */
201 const struct hda_channel_mode *channel_mode;
202 int num_channel_mode;
203 int need_dac_fix;
205 /* PCM information */
206 struct hda_pcm pcm_rec[3]; /* used in alc_build_pcms() */
208 /* dynamic controls, init_verbs and input_mux */
209 struct auto_pin_cfg autocfg;
210 unsigned int num_kctl_alloc, num_kctl_used;
211 struct snd_kcontrol_new *kctl_alloc;
212 struct hda_input_mux private_imux;
213 hda_nid_t private_dac_nids[5];
215 /* hooks */
216 void (*init_hook)(struct hda_codec *codec);
217 void (*unsol_event)(struct hda_codec *codec, unsigned int res);
219 /* for pin sensing */
220 unsigned int sense_updated: 1;
221 unsigned int jack_present: 1;
225 * configuration template - to be copied to the spec instance
227 struct alc_config_preset {
228 struct snd_kcontrol_new *mixers[5]; /* should be identical size
229 * with spec
231 const struct hda_verb *init_verbs[5];
232 unsigned int num_dacs;
233 hda_nid_t *dac_nids;
234 hda_nid_t dig_out_nid; /* optional */
235 hda_nid_t hp_nid; /* optional */
236 unsigned int num_adc_nids;
237 hda_nid_t *adc_nids;
238 hda_nid_t dig_in_nid;
239 unsigned int num_channel_mode;
240 const struct hda_channel_mode *channel_mode;
241 int need_dac_fix;
242 unsigned int num_mux_defs;
243 const struct hda_input_mux *input_mux;
244 void (*unsol_event)(struct hda_codec *, unsigned int);
245 void (*init_hook)(struct hda_codec *);
250 * input MUX handling
252 static int alc_mux_enum_info(struct snd_kcontrol *kcontrol,
253 struct snd_ctl_elem_info *uinfo)
255 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
256 struct alc_spec *spec = codec->spec;
257 unsigned int mux_idx = snd_ctl_get_ioffidx(kcontrol, &uinfo->id);
258 if (mux_idx >= spec->num_mux_defs)
259 mux_idx = 0;
260 return snd_hda_input_mux_info(&spec->input_mux[mux_idx], uinfo);
263 static int alc_mux_enum_get(struct snd_kcontrol *kcontrol,
264 struct snd_ctl_elem_value *ucontrol)
266 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
267 struct alc_spec *spec = codec->spec;
268 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
270 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
271 return 0;
274 static int alc_mux_enum_put(struct snd_kcontrol *kcontrol,
275 struct snd_ctl_elem_value *ucontrol)
277 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
278 struct alc_spec *spec = codec->spec;
279 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
280 unsigned int mux_idx = adc_idx >= spec->num_mux_defs ? 0 : adc_idx;
281 return snd_hda_input_mux_put(codec, &spec->input_mux[mux_idx], ucontrol,
282 spec->adc_nids[adc_idx],
283 &spec->cur_mux[adc_idx]);
288 * channel mode setting
290 static int alc_ch_mode_info(struct snd_kcontrol *kcontrol,
291 struct snd_ctl_elem_info *uinfo)
293 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
294 struct alc_spec *spec = codec->spec;
295 return snd_hda_ch_mode_info(codec, uinfo, spec->channel_mode,
296 spec->num_channel_mode);
299 static int alc_ch_mode_get(struct snd_kcontrol *kcontrol,
300 struct snd_ctl_elem_value *ucontrol)
302 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
303 struct alc_spec *spec = codec->spec;
304 return snd_hda_ch_mode_get(codec, ucontrol, spec->channel_mode,
305 spec->num_channel_mode,
306 spec->multiout.max_channels);
309 static int alc_ch_mode_put(struct snd_kcontrol *kcontrol,
310 struct snd_ctl_elem_value *ucontrol)
312 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
313 struct alc_spec *spec = codec->spec;
314 int err = snd_hda_ch_mode_put(codec, ucontrol, spec->channel_mode,
315 spec->num_channel_mode,
316 &spec->multiout.max_channels);
317 if (err >= 0 && spec->need_dac_fix)
318 spec->multiout.num_dacs = spec->multiout.max_channels / 2;
319 return err;
323 * Control the mode of pin widget settings via the mixer. "pc" is used
324 * instead of "%" to avoid consequences of accidently treating the % as
325 * being part of a format specifier. Maximum allowed length of a value is
326 * 63 characters plus NULL terminator.
328 * Note: some retasking pin complexes seem to ignore requests for input
329 * states other than HiZ (eg: PIN_VREFxx) and revert to HiZ if any of these
330 * are requested. Therefore order this list so that this behaviour will not
331 * cause problems when mixer clients move through the enum sequentially.
332 * NIDs 0x0f and 0x10 have been observed to have this behaviour as of
333 * March 2006.
335 static char *alc_pin_mode_names[] = {
336 "Mic 50pc bias", "Mic 80pc bias",
337 "Line in", "Line out", "Headphone out",
339 static unsigned char alc_pin_mode_values[] = {
340 PIN_VREF50, PIN_VREF80, PIN_IN, PIN_OUT, PIN_HP,
342 /* The control can present all 5 options, or it can limit the options based
343 * in the pin being assumed to be exclusively an input or an output pin. In
344 * addition, "input" pins may or may not process the mic bias option
345 * depending on actual widget capability (NIDs 0x0f and 0x10 don't seem to
346 * accept requests for bias as of chip versions up to March 2006) and/or
347 * wiring in the computer.
349 #define ALC_PIN_DIR_IN 0x00
350 #define ALC_PIN_DIR_OUT 0x01
351 #define ALC_PIN_DIR_INOUT 0x02
352 #define ALC_PIN_DIR_IN_NOMICBIAS 0x03
353 #define ALC_PIN_DIR_INOUT_NOMICBIAS 0x04
355 /* Info about the pin modes supported by the different pin direction modes.
356 * For each direction the minimum and maximum values are given.
358 static signed char alc_pin_mode_dir_info[5][2] = {
359 { 0, 2 }, /* ALC_PIN_DIR_IN */
360 { 3, 4 }, /* ALC_PIN_DIR_OUT */
361 { 0, 4 }, /* ALC_PIN_DIR_INOUT */
362 { 2, 2 }, /* ALC_PIN_DIR_IN_NOMICBIAS */
363 { 2, 4 }, /* ALC_PIN_DIR_INOUT_NOMICBIAS */
365 #define alc_pin_mode_min(_dir) (alc_pin_mode_dir_info[_dir][0])
366 #define alc_pin_mode_max(_dir) (alc_pin_mode_dir_info[_dir][1])
367 #define alc_pin_mode_n_items(_dir) \
368 (alc_pin_mode_max(_dir)-alc_pin_mode_min(_dir)+1)
370 static int alc_pin_mode_info(struct snd_kcontrol *kcontrol,
371 struct snd_ctl_elem_info *uinfo)
373 unsigned int item_num = uinfo->value.enumerated.item;
374 unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
376 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
377 uinfo->count = 1;
378 uinfo->value.enumerated.items = alc_pin_mode_n_items(dir);
380 if (item_num<alc_pin_mode_min(dir) || item_num>alc_pin_mode_max(dir))
381 item_num = alc_pin_mode_min(dir);
382 strcpy(uinfo->value.enumerated.name, alc_pin_mode_names[item_num]);
383 return 0;
386 static int alc_pin_mode_get(struct snd_kcontrol *kcontrol,
387 struct snd_ctl_elem_value *ucontrol)
389 unsigned int i;
390 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
391 hda_nid_t nid = kcontrol->private_value & 0xffff;
392 unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
393 long *valp = ucontrol->value.integer.value;
394 unsigned int pinctl = snd_hda_codec_read(codec, nid, 0,
395 AC_VERB_GET_PIN_WIDGET_CONTROL,
396 0x00);
398 /* Find enumerated value for current pinctl setting */
399 i = alc_pin_mode_min(dir);
400 while (alc_pin_mode_values[i] != pinctl && i <= alc_pin_mode_max(dir))
401 i++;
402 *valp = i <= alc_pin_mode_max(dir) ? i: alc_pin_mode_min(dir);
403 return 0;
406 static int alc_pin_mode_put(struct snd_kcontrol *kcontrol,
407 struct snd_ctl_elem_value *ucontrol)
409 signed int change;
410 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
411 hda_nid_t nid = kcontrol->private_value & 0xffff;
412 unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
413 long val = *ucontrol->value.integer.value;
414 unsigned int pinctl = snd_hda_codec_read(codec, nid, 0,
415 AC_VERB_GET_PIN_WIDGET_CONTROL,
416 0x00);
418 if (val < alc_pin_mode_min(dir) || val > alc_pin_mode_max(dir))
419 val = alc_pin_mode_min(dir);
421 change = pinctl != alc_pin_mode_values[val];
422 if (change) {
423 /* Set pin mode to that requested */
424 snd_hda_codec_write(codec,nid,0,AC_VERB_SET_PIN_WIDGET_CONTROL,
425 alc_pin_mode_values[val]);
427 /* Also enable the retasking pin's input/output as required
428 * for the requested pin mode. Enum values of 2 or less are
429 * input modes.
431 * Dynamically switching the input/output buffers probably
432 * reduces noise slightly (particularly on input) so we'll
433 * do it. However, having both input and output buffers
434 * enabled simultaneously doesn't seem to be problematic if
435 * this turns out to be necessary in the future.
437 if (val <= 2) {
438 snd_hda_codec_write(codec, nid, 0,
439 AC_VERB_SET_AMP_GAIN_MUTE,
440 AMP_OUT_MUTE);
441 snd_hda_codec_write(codec, nid, 0,
442 AC_VERB_SET_AMP_GAIN_MUTE,
443 AMP_IN_UNMUTE(0));
444 } else {
445 snd_hda_codec_write(codec, nid, 0,
446 AC_VERB_SET_AMP_GAIN_MUTE,
447 AMP_IN_MUTE(0));
448 snd_hda_codec_write(codec, nid, 0,
449 AC_VERB_SET_AMP_GAIN_MUTE,
450 AMP_OUT_UNMUTE);
453 return change;
456 #define ALC_PIN_MODE(xname, nid, dir) \
457 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
458 .info = alc_pin_mode_info, \
459 .get = alc_pin_mode_get, \
460 .put = alc_pin_mode_put, \
461 .private_value = nid | (dir<<16) }
463 /* A switch control for ALC260 GPIO pins. Multiple GPIOs can be ganged
464 * together using a mask with more than one bit set. This control is
465 * currently used only by the ALC260 test model. At this stage they are not
466 * needed for any "production" models.
468 #ifdef CONFIG_SND_DEBUG
469 static int alc_gpio_data_info(struct snd_kcontrol *kcontrol,
470 struct snd_ctl_elem_info *uinfo)
472 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
473 uinfo->count = 1;
474 uinfo->value.integer.min = 0;
475 uinfo->value.integer.max = 1;
476 return 0;
479 static int alc_gpio_data_get(struct snd_kcontrol *kcontrol,
480 struct snd_ctl_elem_value *ucontrol)
482 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
483 hda_nid_t nid = kcontrol->private_value & 0xffff;
484 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
485 long *valp = ucontrol->value.integer.value;
486 unsigned int val = snd_hda_codec_read(codec, nid, 0,
487 AC_VERB_GET_GPIO_DATA, 0x00);
489 *valp = (val & mask) != 0;
490 return 0;
492 static int alc_gpio_data_put(struct snd_kcontrol *kcontrol,
493 struct snd_ctl_elem_value *ucontrol)
495 signed int change;
496 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
497 hda_nid_t nid = kcontrol->private_value & 0xffff;
498 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
499 long val = *ucontrol->value.integer.value;
500 unsigned int gpio_data = snd_hda_codec_read(codec, nid, 0,
501 AC_VERB_GET_GPIO_DATA,
502 0x00);
504 /* Set/unset the masked GPIO bit(s) as needed */
505 change = (val == 0 ? 0 : mask) != (gpio_data & mask);
506 if (val == 0)
507 gpio_data &= ~mask;
508 else
509 gpio_data |= mask;
510 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_GPIO_DATA, gpio_data);
512 return change;
514 #define ALC_GPIO_DATA_SWITCH(xname, nid, mask) \
515 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
516 .info = alc_gpio_data_info, \
517 .get = alc_gpio_data_get, \
518 .put = alc_gpio_data_put, \
519 .private_value = nid | (mask<<16) }
520 #endif /* CONFIG_SND_DEBUG */
522 /* A switch control to allow the enabling of the digital IO pins on the
523 * ALC260. This is incredibly simplistic; the intention of this control is
524 * to provide something in the test model allowing digital outputs to be
525 * identified if present. If models are found which can utilise these
526 * outputs a more complete mixer control can be devised for those models if
527 * necessary.
529 #ifdef CONFIG_SND_DEBUG
530 static int alc_spdif_ctrl_info(struct snd_kcontrol *kcontrol,
531 struct snd_ctl_elem_info *uinfo)
533 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
534 uinfo->count = 1;
535 uinfo->value.integer.min = 0;
536 uinfo->value.integer.max = 1;
537 return 0;
540 static int alc_spdif_ctrl_get(struct snd_kcontrol *kcontrol,
541 struct snd_ctl_elem_value *ucontrol)
543 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
544 hda_nid_t nid = kcontrol->private_value & 0xffff;
545 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
546 long *valp = ucontrol->value.integer.value;
547 unsigned int val = snd_hda_codec_read(codec, nid, 0,
548 AC_VERB_GET_DIGI_CONVERT, 0x00);
550 *valp = (val & mask) != 0;
551 return 0;
553 static int alc_spdif_ctrl_put(struct snd_kcontrol *kcontrol,
554 struct snd_ctl_elem_value *ucontrol)
556 signed int change;
557 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
558 hda_nid_t nid = kcontrol->private_value & 0xffff;
559 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
560 long val = *ucontrol->value.integer.value;
561 unsigned int ctrl_data = snd_hda_codec_read(codec, nid, 0,
562 AC_VERB_GET_DIGI_CONVERT,
563 0x00);
565 /* Set/unset the masked control bit(s) as needed */
566 change = (val == 0 ? 0 : mask) != (ctrl_data & mask);
567 if (val==0)
568 ctrl_data &= ~mask;
569 else
570 ctrl_data |= mask;
571 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_DIGI_CONVERT_1,
572 ctrl_data);
574 return change;
576 #define ALC_SPDIF_CTRL_SWITCH(xname, nid, mask) \
577 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
578 .info = alc_spdif_ctrl_info, \
579 .get = alc_spdif_ctrl_get, \
580 .put = alc_spdif_ctrl_put, \
581 .private_value = nid | (mask<<16) }
582 #endif /* CONFIG_SND_DEBUG */
585 * set up from the preset table
587 static void setup_preset(struct alc_spec *spec,
588 const struct alc_config_preset *preset)
590 int i;
592 for (i = 0; i < ARRAY_SIZE(preset->mixers) && preset->mixers[i]; i++)
593 spec->mixers[spec->num_mixers++] = preset->mixers[i];
594 for (i = 0; i < ARRAY_SIZE(preset->init_verbs) && preset->init_verbs[i];
595 i++)
596 spec->init_verbs[spec->num_init_verbs++] =
597 preset->init_verbs[i];
599 spec->channel_mode = preset->channel_mode;
600 spec->num_channel_mode = preset->num_channel_mode;
601 spec->need_dac_fix = preset->need_dac_fix;
603 spec->multiout.max_channels = spec->channel_mode[0].channels;
605 spec->multiout.num_dacs = preset->num_dacs;
606 spec->multiout.dac_nids = preset->dac_nids;
607 spec->multiout.dig_out_nid = preset->dig_out_nid;
608 spec->multiout.hp_nid = preset->hp_nid;
610 spec->num_mux_defs = preset->num_mux_defs;
611 if (!spec->num_mux_defs)
612 spec->num_mux_defs = 1;
613 spec->input_mux = preset->input_mux;
615 spec->num_adc_nids = preset->num_adc_nids;
616 spec->adc_nids = preset->adc_nids;
617 spec->dig_in_nid = preset->dig_in_nid;
619 spec->unsol_event = preset->unsol_event;
620 spec->init_hook = preset->init_hook;
623 /* Enable GPIO mask and set output */
624 static struct hda_verb alc_gpio1_init_verbs[] = {
625 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
626 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
627 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
631 static struct hda_verb alc_gpio2_init_verbs[] = {
632 {0x01, AC_VERB_SET_GPIO_MASK, 0x02},
633 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x02},
634 {0x01, AC_VERB_SET_GPIO_DATA, 0x02},
638 /* 32-bit subsystem ID for BIOS loading in HD Audio codec.
639 * 31 ~ 16 : Manufacture ID
640 * 15 ~ 8 : SKU ID
641 * 7 ~ 0 : Assembly ID
642 * port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
644 static void alc_subsystem_id(struct hda_codec *codec,
645 unsigned int porta, unsigned int porte,
646 unsigned int portd)
648 unsigned int ass, tmp;
650 ass = codec->subsystem_id;
651 if (!(ass & 1))
652 return;
654 /* Override */
655 tmp = (ass & 0x38) >> 3; /* external Amp control */
656 switch (tmp) {
657 case 1:
658 snd_hda_sequence_write(codec, alc_gpio1_init_verbs);
659 break;
660 case 3:
661 snd_hda_sequence_write(codec, alc_gpio2_init_verbs);
662 break;
663 case 5:
664 case 6:
665 if (ass & 4) { /* bit 2 : 0 = Desktop, 1 = Laptop */
666 hda_nid_t port = 0;
667 tmp = (ass & 0x1800) >> 11;
668 switch (tmp) {
669 case 0: port = porta; break;
670 case 1: port = porte; break;
671 case 2: port = portd; break;
673 if (port)
674 snd_hda_codec_write(codec, port, 0,
675 AC_VERB_SET_EAPD_BTLENABLE,
678 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
679 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PROC_COEF,
680 (tmp == 5 ? 0x3040 : 0x3050));
681 break;
686 * ALC880 3-stack model
688 * DAC: Front = 0x02 (0x0c), Surr = 0x05 (0x0f), CLFE = 0x04 (0x0e)
689 * Pin assignment: Front = 0x14, Line-In/Surr = 0x1a, Mic/CLFE = 0x18,
690 * F-Mic = 0x1b, HP = 0x19
693 static hda_nid_t alc880_dac_nids[4] = {
694 /* front, rear, clfe, rear_surr */
695 0x02, 0x05, 0x04, 0x03
698 static hda_nid_t alc880_adc_nids[3] = {
699 /* ADC0-2 */
700 0x07, 0x08, 0x09,
703 /* The datasheet says the node 0x07 is connected from inputs,
704 * but it shows zero connection in the real implementation on some devices.
705 * Note: this is a 915GAV bug, fixed on 915GLV
707 static hda_nid_t alc880_adc_nids_alt[2] = {
708 /* ADC1-2 */
709 0x08, 0x09,
712 #define ALC880_DIGOUT_NID 0x06
713 #define ALC880_DIGIN_NID 0x0a
715 static struct hda_input_mux alc880_capture_source = {
716 .num_items = 4,
717 .items = {
718 { "Mic", 0x0 },
719 { "Front Mic", 0x3 },
720 { "Line", 0x2 },
721 { "CD", 0x4 },
725 /* channel source setting (2/6 channel selection for 3-stack) */
726 /* 2ch mode */
727 static struct hda_verb alc880_threestack_ch2_init[] = {
728 /* set line-in to input, mute it */
729 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
730 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
731 /* set mic-in to input vref 80%, mute it */
732 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
733 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
734 { } /* end */
737 /* 6ch mode */
738 static struct hda_verb alc880_threestack_ch6_init[] = {
739 /* set line-in to output, unmute it */
740 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
741 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
742 /* set mic-in to output, unmute it */
743 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
744 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
745 { } /* end */
748 static struct hda_channel_mode alc880_threestack_modes[2] = {
749 { 2, alc880_threestack_ch2_init },
750 { 6, alc880_threestack_ch6_init },
753 static struct snd_kcontrol_new alc880_three_stack_mixer[] = {
754 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
755 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
756 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
757 HDA_BIND_MUTE("Surround Playback Switch", 0x0f, 2, HDA_INPUT),
758 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
759 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
760 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
761 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
762 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
763 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
764 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
765 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
766 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
767 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
768 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x3, HDA_INPUT),
769 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x3, HDA_INPUT),
770 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
771 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
772 HDA_CODEC_MUTE("Headphone Playback Switch", 0x19, 0x0, HDA_OUTPUT),
774 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
775 .name = "Channel Mode",
776 .info = alc_ch_mode_info,
777 .get = alc_ch_mode_get,
778 .put = alc_ch_mode_put,
780 { } /* end */
783 /* capture mixer elements */
784 static struct snd_kcontrol_new alc880_capture_mixer[] = {
785 HDA_CODEC_VOLUME("Capture Volume", 0x07, 0x0, HDA_INPUT),
786 HDA_CODEC_MUTE("Capture Switch", 0x07, 0x0, HDA_INPUT),
787 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x08, 0x0, HDA_INPUT),
788 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x08, 0x0, HDA_INPUT),
789 HDA_CODEC_VOLUME_IDX("Capture Volume", 2, 0x09, 0x0, HDA_INPUT),
790 HDA_CODEC_MUTE_IDX("Capture Switch", 2, 0x09, 0x0, HDA_INPUT),
792 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
793 /* The multiple "Capture Source" controls confuse alsamixer
794 * So call somewhat different..
795 * FIXME: the controls appear in the "playback" view!
797 /* .name = "Capture Source", */
798 .name = "Input Source",
799 .count = 3,
800 .info = alc_mux_enum_info,
801 .get = alc_mux_enum_get,
802 .put = alc_mux_enum_put,
804 { } /* end */
807 /* capture mixer elements (in case NID 0x07 not available) */
808 static struct snd_kcontrol_new alc880_capture_alt_mixer[] = {
809 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
810 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
811 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
812 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
814 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
815 /* The multiple "Capture Source" controls confuse alsamixer
816 * So call somewhat different..
817 * FIXME: the controls appear in the "playback" view!
819 /* .name = "Capture Source", */
820 .name = "Input Source",
821 .count = 2,
822 .info = alc_mux_enum_info,
823 .get = alc_mux_enum_get,
824 .put = alc_mux_enum_put,
826 { } /* end */
832 * ALC880 5-stack model
834 * DAC: Front = 0x02 (0x0c), Surr = 0x05 (0x0f), CLFE = 0x04 (0x0d),
835 * Side = 0x02 (0xd)
836 * Pin assignment: Front = 0x14, Surr = 0x17, CLFE = 0x16
837 * Line-In/Side = 0x1a, Mic = 0x18, F-Mic = 0x1b, HP = 0x19
840 /* additional mixers to alc880_three_stack_mixer */
841 static struct snd_kcontrol_new alc880_five_stack_mixer[] = {
842 HDA_CODEC_VOLUME("Side Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
843 HDA_BIND_MUTE("Side Playback Switch", 0x0d, 2, HDA_INPUT),
844 { } /* end */
847 /* channel source setting (6/8 channel selection for 5-stack) */
848 /* 6ch mode */
849 static struct hda_verb alc880_fivestack_ch6_init[] = {
850 /* set line-in to input, mute it */
851 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
852 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
853 { } /* end */
856 /* 8ch mode */
857 static struct hda_verb alc880_fivestack_ch8_init[] = {
858 /* set line-in to output, unmute it */
859 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
860 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
861 { } /* end */
864 static struct hda_channel_mode alc880_fivestack_modes[2] = {
865 { 6, alc880_fivestack_ch6_init },
866 { 8, alc880_fivestack_ch8_init },
871 * ALC880 6-stack model
873 * DAC: Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e),
874 * Side = 0x05 (0x0f)
875 * Pin assignment: Front = 0x14, Surr = 0x15, CLFE = 0x16, Side = 0x17,
876 * Mic = 0x18, F-Mic = 0x19, Line = 0x1a, HP = 0x1b
879 static hda_nid_t alc880_6st_dac_nids[4] = {
880 /* front, rear, clfe, rear_surr */
881 0x02, 0x03, 0x04, 0x05
884 static struct hda_input_mux alc880_6stack_capture_source = {
885 .num_items = 4,
886 .items = {
887 { "Mic", 0x0 },
888 { "Front Mic", 0x1 },
889 { "Line", 0x2 },
890 { "CD", 0x4 },
894 /* fixed 8-channels */
895 static struct hda_channel_mode alc880_sixstack_modes[1] = {
896 { 8, NULL },
899 static struct snd_kcontrol_new alc880_six_stack_mixer[] = {
900 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
901 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
902 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
903 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
904 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
905 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
906 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
907 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
908 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
909 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
910 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
911 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
912 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
913 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
914 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
915 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
916 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
917 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
918 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
919 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
921 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
922 .name = "Channel Mode",
923 .info = alc_ch_mode_info,
924 .get = alc_ch_mode_get,
925 .put = alc_ch_mode_put,
927 { } /* end */
932 * ALC880 W810 model
934 * W810 has rear IO for:
935 * Front (DAC 02)
936 * Surround (DAC 03)
937 * Center/LFE (DAC 04)
938 * Digital out (06)
940 * The system also has a pair of internal speakers, and a headphone jack.
941 * These are both connected to Line2 on the codec, hence to DAC 02.
943 * There is a variable resistor to control the speaker or headphone
944 * volume. This is a hardware-only device without a software API.
946 * Plugging headphones in will disable the internal speakers. This is
947 * implemented in hardware, not via the driver using jack sense. In
948 * a similar fashion, plugging into the rear socket marked "front" will
949 * disable both the speakers and headphones.
951 * For input, there's a microphone jack, and an "audio in" jack.
952 * These may not do anything useful with this driver yet, because I
953 * haven't setup any initialization verbs for these yet...
956 static hda_nid_t alc880_w810_dac_nids[3] = {
957 /* front, rear/surround, clfe */
958 0x02, 0x03, 0x04
961 /* fixed 6 channels */
962 static struct hda_channel_mode alc880_w810_modes[1] = {
963 { 6, NULL }
966 /* Pin assignment: Front = 0x14, Surr = 0x15, CLFE = 0x16, HP = 0x1b */
967 static struct snd_kcontrol_new alc880_w810_base_mixer[] = {
968 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
969 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
970 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
971 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
972 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
973 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
974 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
975 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
976 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
977 { } /* end */
982 * Z710V model
984 * DAC: Front = 0x02 (0x0c), HP = 0x03 (0x0d)
985 * Pin assignment: Front = 0x14, HP = 0x15, Mic = 0x18, Mic2 = 0x19(?),
986 * Line = 0x1a
989 static hda_nid_t alc880_z71v_dac_nids[1] = {
990 0x02
992 #define ALC880_Z71V_HP_DAC 0x03
994 /* fixed 2 channels */
995 static struct hda_channel_mode alc880_2_jack_modes[1] = {
996 { 2, NULL }
999 static struct snd_kcontrol_new alc880_z71v_mixer[] = {
1000 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1001 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
1002 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1003 HDA_BIND_MUTE("Headphone Playback Switch", 0x0d, 2, HDA_INPUT),
1004 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1005 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1006 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1007 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1008 { } /* end */
1012 /* FIXME! */
1014 * ALC880 F1734 model
1016 * DAC: HP = 0x02 (0x0c), Front = 0x03 (0x0d)
1017 * Pin assignment: HP = 0x14, Front = 0x15, Mic = 0x18
1020 static hda_nid_t alc880_f1734_dac_nids[1] = {
1021 0x03
1023 #define ALC880_F1734_HP_DAC 0x02
1025 static struct snd_kcontrol_new alc880_f1734_mixer[] = {
1026 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1027 HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT),
1028 HDA_CODEC_VOLUME("Internal Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1029 HDA_BIND_MUTE("Internal Speaker Playback Switch", 0x0d, 2, HDA_INPUT),
1030 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1031 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1032 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1033 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1034 { } /* end */
1038 /* FIXME! */
1040 * ALC880 ASUS model
1042 * DAC: HP/Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e)
1043 * Pin assignment: HP/Front = 0x14, Surr = 0x15, CLFE = 0x16,
1044 * Mic = 0x18, Line = 0x1a
1047 #define alc880_asus_dac_nids alc880_w810_dac_nids /* identical with w810 */
1048 #define alc880_asus_modes alc880_threestack_modes /* 2/6 channel mode */
1050 static struct snd_kcontrol_new alc880_asus_mixer[] = {
1051 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1052 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
1053 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1054 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
1055 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
1056 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
1057 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
1058 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
1059 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1060 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1061 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
1062 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
1063 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1064 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1066 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1067 .name = "Channel Mode",
1068 .info = alc_ch_mode_info,
1069 .get = alc_ch_mode_get,
1070 .put = alc_ch_mode_put,
1072 { } /* end */
1075 /* FIXME! */
1077 * ALC880 ASUS W1V model
1079 * DAC: HP/Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e)
1080 * Pin assignment: HP/Front = 0x14, Surr = 0x15, CLFE = 0x16,
1081 * Mic = 0x18, Line = 0x1a, Line2 = 0x1b
1084 /* additional mixers to alc880_asus_mixer */
1085 static struct snd_kcontrol_new alc880_asus_w1v_mixer[] = {
1086 HDA_CODEC_VOLUME("Line2 Playback Volume", 0x0b, 0x03, HDA_INPUT),
1087 HDA_CODEC_MUTE("Line2 Playback Switch", 0x0b, 0x03, HDA_INPUT),
1088 { } /* end */
1091 /* additional mixers to alc880_asus_mixer */
1092 static struct snd_kcontrol_new alc880_pcbeep_mixer[] = {
1093 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
1094 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
1095 { } /* end */
1098 /* TCL S700 */
1099 static struct snd_kcontrol_new alc880_tcl_s700_mixer[] = {
1100 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1101 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
1102 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
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),
1107 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
1108 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
1110 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1111 /* The multiple "Capture Source" controls confuse alsamixer
1112 * So call somewhat different..
1113 * FIXME: the controls appear in the "playback" view!
1115 /* .name = "Capture Source", */
1116 .name = "Input Source",
1117 .count = 1,
1118 .info = alc_mux_enum_info,
1119 .get = alc_mux_enum_get,
1120 .put = alc_mux_enum_put,
1122 { } /* end */
1125 /* Uniwill */
1126 static struct snd_kcontrol_new alc880_uniwill_mixer[] = {
1127 HDA_CODEC_VOLUME("HPhone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1128 HDA_BIND_MUTE("HPhone Playback Switch", 0x0c, 2, HDA_INPUT),
1129 HDA_CODEC_VOLUME("iSpeaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1130 HDA_BIND_MUTE("iSpeaker Playback Switch", 0x0d, 2, HDA_INPUT),
1131 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
1132 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
1133 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
1134 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
1135 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1136 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1137 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
1138 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
1139 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1140 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1141 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
1142 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
1143 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
1144 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
1146 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1147 .name = "Channel Mode",
1148 .info = alc_ch_mode_info,
1149 .get = alc_ch_mode_get,
1150 .put = alc_ch_mode_put,
1152 { } /* end */
1155 static struct snd_kcontrol_new alc880_fujitsu_mixer[] = {
1156 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1157 HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT),
1158 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1159 HDA_BIND_MUTE("Speaker Playback Switch", 0x0d, 2, HDA_INPUT),
1160 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1161 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1162 HDA_CODEC_VOLUME("Ext Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1163 HDA_CODEC_MUTE("Ext Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1164 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
1165 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
1166 { } /* end */
1169 static struct snd_kcontrol_new alc880_uniwill_p53_mixer[] = {
1170 HDA_CODEC_VOLUME("HPhone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1171 HDA_BIND_MUTE("HPhone Playback Switch", 0x0c, 2, HDA_INPUT),
1172 HDA_CODEC_VOLUME("iSpeaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1173 HDA_BIND_MUTE("iSpeaker Playback Switch", 0x0d, 2, HDA_INPUT),
1174 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1175 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1176 { } /* end */
1180 * build control elements
1182 static int alc_build_controls(struct hda_codec *codec)
1184 struct alc_spec *spec = codec->spec;
1185 int err;
1186 int i;
1188 for (i = 0; i < spec->num_mixers; i++) {
1189 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
1190 if (err < 0)
1191 return err;
1194 if (spec->multiout.dig_out_nid) {
1195 err = snd_hda_create_spdif_out_ctls(codec,
1196 spec->multiout.dig_out_nid);
1197 if (err < 0)
1198 return err;
1200 if (spec->dig_in_nid) {
1201 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
1202 if (err < 0)
1203 return err;
1205 return 0;
1210 * initialize the codec volumes, etc
1214 * generic initialization of ADC, input mixers and output mixers
1216 static struct hda_verb alc880_volume_init_verbs[] = {
1218 * Unmute ADC0-2 and set the default input to mic-in
1220 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
1221 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1222 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
1223 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1224 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
1225 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1227 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
1228 * mixer widget
1229 * Note: PASD motherboards uses the Line In 2 as the input for front
1230 * panel mic (mic 2)
1232 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
1233 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1234 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1235 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
1236 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
1237 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
1240 * Set up output mixers (0x0c - 0x0f)
1242 /* set vol=0 to output mixers */
1243 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1244 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1245 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1246 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1247 /* set up input amps for analog loopback */
1248 /* Amp Indices: DAC = 0, mixer = 1 */
1249 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1250 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1251 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1252 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1253 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1254 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1255 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1256 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1262 * 3-stack pin configuration:
1263 * front = 0x14, mic/clfe = 0x18, HP = 0x19, line/surr = 0x1a, f-mic = 0x1b
1265 static struct hda_verb alc880_pin_3stack_init_verbs[] = {
1267 * preset connection lists of input pins
1268 * 0 = front, 1 = rear_surr, 2 = CLFE, 3 = surround
1270 {0x10, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
1271 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1272 {0x12, AC_VERB_SET_CONNECT_SEL, 0x03}, /* line/surround */
1275 * Set pin mode and muting
1277 /* set front pin widgets 0x14 for output */
1278 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1279 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1280 /* Mic1 (rear panel) pin widget for input and vref at 80% */
1281 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1282 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1283 /* Mic2 (as headphone out) for HP output */
1284 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1285 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1286 /* Line In pin widget for input */
1287 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1288 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1289 /* Line2 (as front mic) pin widget for input and vref at 80% */
1290 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1291 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1292 /* CD pin widget for input */
1293 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1299 * 5-stack pin configuration:
1300 * front = 0x14, surround = 0x17, clfe = 0x16, mic = 0x18, HP = 0x19,
1301 * line-in/side = 0x1a, f-mic = 0x1b
1303 static struct hda_verb alc880_pin_5stack_init_verbs[] = {
1305 * preset connection lists of input pins
1306 * 0 = front, 1 = rear_surr, 2 = CLFE, 3 = surround
1308 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1309 {0x12, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/side */
1312 * Set pin mode and muting
1314 /* set pin widgets 0x14-0x17 for output */
1315 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1316 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1317 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1318 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1319 /* unmute pins for output (no gain on this amp) */
1320 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1321 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1322 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1323 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1325 /* Mic1 (rear panel) pin widget for input and vref at 80% */
1326 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1327 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1328 /* Mic2 (as headphone out) for HP output */
1329 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1330 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1331 /* Line In pin widget for input */
1332 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1333 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1334 /* Line2 (as front mic) pin widget for input and vref at 80% */
1335 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1336 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1337 /* CD pin widget for input */
1338 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1344 * W810 pin configuration:
1345 * front = 0x14, surround = 0x15, clfe = 0x16, HP = 0x1b
1347 static struct hda_verb alc880_pin_w810_init_verbs[] = {
1348 /* hphone/speaker input selector: front DAC */
1349 {0x13, AC_VERB_SET_CONNECT_SEL, 0x0},
1351 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1352 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1353 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1354 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1355 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1356 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1358 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1359 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1365 * Z71V pin configuration:
1366 * Speaker-out = 0x14, HP = 0x15, Mic = 0x18, Line-in = 0x1a, Mic2 = 0x1b (?)
1368 static struct hda_verb alc880_pin_z71v_init_verbs[] = {
1369 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1370 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1371 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1372 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1374 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1375 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1376 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1377 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1383 * 6-stack pin configuration:
1384 * front = 0x14, surr = 0x15, clfe = 0x16, side = 0x17, mic = 0x18,
1385 * f-mic = 0x19, line = 0x1a, HP = 0x1b
1387 static struct hda_verb alc880_pin_6stack_init_verbs[] = {
1388 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1390 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1391 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1392 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1393 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1394 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1395 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1396 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1397 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1399 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1400 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1401 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1402 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1403 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1404 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1405 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1406 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1407 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1413 * Uniwill pin configuration:
1414 * HP = 0x14, InternalSpeaker = 0x15, mic = 0x18, internal mic = 0x19,
1415 * line = 0x1a
1417 static struct hda_verb alc880_uniwill_init_verbs[] = {
1418 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1420 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1421 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1422 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1423 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1424 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1425 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1426 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1427 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1428 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1429 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1430 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1431 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1432 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1433 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1435 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1436 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1437 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1438 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1439 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1440 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1441 /* {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP}, */
1442 /* {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, */
1443 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1445 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
1446 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_MIC_EVENT},
1452 * Uniwill P53
1453 * HP = 0x14, InternalSpeaker = 0x15, mic = 0x19,
1455 static struct hda_verb alc880_uniwill_p53_init_verbs[] = {
1456 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1458 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1459 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1460 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1461 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1462 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1463 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1464 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1465 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1466 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1467 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1468 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1469 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1471 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1472 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1473 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1474 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1475 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1476 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1478 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
1479 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_DCVOL_EVENT},
1484 static struct hda_verb alc880_beep_init_verbs[] = {
1485 { 0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(5) },
1489 /* toggle speaker-output according to the hp-jack state */
1490 static void alc880_uniwill_automute(struct hda_codec *codec)
1492 unsigned int present;
1493 unsigned char bits;
1495 present = snd_hda_codec_read(codec, 0x14, 0,
1496 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1497 bits = present ? 0x80 : 0;
1498 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
1499 0x80, bits);
1500 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
1501 0x80, bits);
1502 snd_hda_codec_amp_update(codec, 0x16, 0, HDA_OUTPUT, 0,
1503 0x80, bits);
1504 snd_hda_codec_amp_update(codec, 0x16, 1, HDA_OUTPUT, 0,
1505 0x80, bits);
1507 present = snd_hda_codec_read(codec, 0x18, 0,
1508 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1509 snd_hda_codec_write(codec, 0x0b, 0, AC_VERB_SET_AMP_GAIN_MUTE,
1510 0x7000 | (0x01 << 8) | bits);
1513 static void alc880_uniwill_unsol_event(struct hda_codec *codec,
1514 unsigned int res)
1516 /* Looks like the unsol event is incompatible with the standard
1517 * definition. 4bit tag is placed at 28 bit!
1519 if ((res >> 28) == ALC880_HP_EVENT ||
1520 (res >> 28) == ALC880_MIC_EVENT)
1521 alc880_uniwill_automute(codec);
1524 static void alc880_uniwill_p53_hp_automute(struct hda_codec *codec)
1526 unsigned int present;
1527 unsigned char bits;
1529 present = snd_hda_codec_read(codec, 0x14, 0,
1530 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1531 bits = present ? 0x80 : 0;
1532 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_INPUT, 0,
1533 0x80, bits);
1534 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_INPUT, 0,
1535 0x80, bits);
1538 static void alc880_uniwill_p53_dcvol_automute(struct hda_codec *codec)
1540 unsigned int present;
1542 present = snd_hda_codec_read(codec, 0x21, 0,
1543 AC_VERB_GET_VOLUME_KNOB_CONTROL, 0) & 0x7f;
1545 snd_hda_codec_amp_update(codec, 0x0c, 0, HDA_OUTPUT, 0,
1546 0x7f, present);
1547 snd_hda_codec_amp_update(codec, 0x0c, 1, HDA_OUTPUT, 0,
1548 0x7f, present);
1550 snd_hda_codec_amp_update(codec, 0x0d, 0, HDA_OUTPUT, 0,
1551 0x7f, present);
1552 snd_hda_codec_amp_update(codec, 0x0d, 1, HDA_OUTPUT, 0,
1553 0x7f, present);
1556 static void alc880_uniwill_p53_unsol_event(struct hda_codec *codec,
1557 unsigned int res)
1559 /* Looks like the unsol event is incompatible with the standard
1560 * definition. 4bit tag is placed at 28 bit!
1562 if ((res >> 28) == ALC880_HP_EVENT)
1563 alc880_uniwill_p53_hp_automute(codec);
1564 if ((res >> 28) == ALC880_DCVOL_EVENT)
1565 alc880_uniwill_p53_dcvol_automute(codec);
1568 /* FIXME! */
1570 * F1734 pin configuration:
1571 * HP = 0x14, speaker-out = 0x15, mic = 0x18
1573 static struct hda_verb alc880_pin_f1734_init_verbs[] = {
1574 {0x10, AC_VERB_SET_CONNECT_SEL, 0x02},
1575 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00},
1576 {0x12, AC_VERB_SET_CONNECT_SEL, 0x01},
1577 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00},
1579 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1580 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1581 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1582 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1584 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1585 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1586 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1587 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1588 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1589 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1590 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1591 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1592 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1597 /* FIXME! */
1599 * ASUS pin configuration:
1600 * HP/front = 0x14, surr = 0x15, clfe = 0x16, mic = 0x18, line = 0x1a
1602 static struct hda_verb alc880_pin_asus_init_verbs[] = {
1603 {0x10, AC_VERB_SET_CONNECT_SEL, 0x02},
1604 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00},
1605 {0x12, AC_VERB_SET_CONNECT_SEL, 0x01},
1606 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00},
1608 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1609 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1610 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1611 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1612 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1613 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1614 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1615 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1617 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1618 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1619 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1620 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1621 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1622 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1623 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1624 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1625 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1630 /* Enable GPIO mask and set output */
1631 #define alc880_gpio1_init_verbs alc_gpio1_init_verbs
1632 #define alc880_gpio2_init_verbs alc_gpio2_init_verbs
1634 /* Clevo m520g init */
1635 static struct hda_verb alc880_pin_clevo_init_verbs[] = {
1636 /* headphone output */
1637 {0x11, AC_VERB_SET_CONNECT_SEL, 0x01},
1638 /* line-out */
1639 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1640 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1641 /* Line-in */
1642 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1643 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1644 /* CD */
1645 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1646 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1647 /* Mic1 (rear panel) */
1648 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1649 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1650 /* Mic2 (front panel) */
1651 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1652 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1653 /* headphone */
1654 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1655 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1656 /* change to EAPD mode */
1657 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
1658 {0x20, AC_VERB_SET_PROC_COEF, 0x3060},
1663 static struct hda_verb alc880_pin_tcl_S700_init_verbs[] = {
1664 /* change to EAPD mode */
1665 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
1666 {0x20, AC_VERB_SET_PROC_COEF, 0x3060},
1668 /* Headphone output */
1669 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1670 /* Front output*/
1671 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1672 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
1674 /* Line In pin widget for input */
1675 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1676 /* CD pin widget for input */
1677 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1678 /* Mic1 (rear panel) pin widget for input and vref at 80% */
1679 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1681 /* change to EAPD mode */
1682 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
1683 {0x20, AC_VERB_SET_PROC_COEF, 0x3070},
1689 * LG m1 express dual
1691 * Pin assignment:
1692 * Rear Line-In/Out (blue): 0x14
1693 * Build-in Mic-In: 0x15
1694 * Speaker-out: 0x17
1695 * HP-Out (green): 0x1b
1696 * Mic-In/Out (red): 0x19
1697 * SPDIF-Out: 0x1e
1700 /* To make 5.1 output working (green=Front, blue=Surr, red=CLFE) */
1701 static hda_nid_t alc880_lg_dac_nids[3] = {
1702 0x05, 0x02, 0x03
1705 /* seems analog CD is not working */
1706 static struct hda_input_mux alc880_lg_capture_source = {
1707 .num_items = 3,
1708 .items = {
1709 { "Mic", 0x1 },
1710 { "Line", 0x5 },
1711 { "Internal Mic", 0x6 },
1715 /* 2,4,6 channel modes */
1716 static struct hda_verb alc880_lg_ch2_init[] = {
1717 /* set line-in and mic-in to input */
1718 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
1719 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
1723 static struct hda_verb alc880_lg_ch4_init[] = {
1724 /* set line-in to out and mic-in to input */
1725 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1726 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
1730 static struct hda_verb alc880_lg_ch6_init[] = {
1731 /* set line-in and mic-in to output */
1732 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1733 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1737 static struct hda_channel_mode alc880_lg_ch_modes[3] = {
1738 { 2, alc880_lg_ch2_init },
1739 { 4, alc880_lg_ch4_init },
1740 { 6, alc880_lg_ch6_init },
1743 static struct snd_kcontrol_new alc880_lg_mixer[] = {
1744 /* FIXME: it's not really "master" but front channels */
1745 HDA_CODEC_VOLUME("Master Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
1746 HDA_BIND_MUTE("Master Playback Switch", 0x0f, 2, HDA_INPUT),
1747 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1748 HDA_BIND_MUTE("Surround Playback Switch", 0x0c, 2, HDA_INPUT),
1749 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0d, 1, 0x0, HDA_OUTPUT),
1750 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0d, 2, 0x0, HDA_OUTPUT),
1751 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0d, 1, 2, HDA_INPUT),
1752 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0d, 2, 2, HDA_INPUT),
1753 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
1754 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
1755 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x06, HDA_INPUT),
1756 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x06, HDA_INPUT),
1757 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x07, HDA_INPUT),
1758 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x07, HDA_INPUT),
1760 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1761 .name = "Channel Mode",
1762 .info = alc_ch_mode_info,
1763 .get = alc_ch_mode_get,
1764 .put = alc_ch_mode_put,
1766 { } /* end */
1769 static struct hda_verb alc880_lg_init_verbs[] = {
1770 /* set capture source to mic-in */
1771 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1772 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1773 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1774 /* mute all amp mixer inputs */
1775 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(5)},
1776 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(6)},
1777 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(7)},
1778 /* line-in to input */
1779 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1780 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1781 /* built-in mic */
1782 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1783 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1784 /* speaker-out */
1785 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1786 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1787 /* mic-in to input */
1788 {0x11, AC_VERB_SET_CONNECT_SEL, 0x01},
1789 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1790 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1791 /* HP-out */
1792 {0x13, AC_VERB_SET_CONNECT_SEL, 0x03},
1793 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1794 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1795 /* jack sense */
1796 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | 0x1},
1800 /* toggle speaker-output according to the hp-jack state */
1801 static void alc880_lg_automute(struct hda_codec *codec)
1803 unsigned int present;
1804 unsigned char bits;
1806 present = snd_hda_codec_read(codec, 0x1b, 0,
1807 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1808 bits = present ? 0x80 : 0;
1809 snd_hda_codec_amp_update(codec, 0x17, 0, HDA_OUTPUT, 0,
1810 0x80, bits);
1811 snd_hda_codec_amp_update(codec, 0x17, 1, HDA_OUTPUT, 0,
1812 0x80, bits);
1815 static void alc880_lg_unsol_event(struct hda_codec *codec, unsigned int res)
1817 /* Looks like the unsol event is incompatible with the standard
1818 * definition. 4bit tag is placed at 28 bit!
1820 if ((res >> 28) == 0x01)
1821 alc880_lg_automute(codec);
1825 * LG LW20
1827 * Pin assignment:
1828 * Speaker-out: 0x14
1829 * Mic-In: 0x18
1830 * Built-in Mic-In: 0x19 (?)
1831 * HP-Out: 0x1b
1832 * SPDIF-Out: 0x1e
1835 /* seems analog CD is not working */
1836 static struct hda_input_mux alc880_lg_lw_capture_source = {
1837 .num_items = 2,
1838 .items = {
1839 { "Mic", 0x0 },
1840 { "Internal Mic", 0x1 },
1844 static struct snd_kcontrol_new alc880_lg_lw_mixer[] = {
1845 HDA_CODEC_VOLUME("Master Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1846 HDA_BIND_MUTE("Master Playback Switch", 0x0c, 2, HDA_INPUT),
1847 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1848 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1849 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
1850 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
1851 { } /* end */
1854 static struct hda_verb alc880_lg_lw_init_verbs[] = {
1855 /* set capture source to mic-in */
1856 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1857 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1858 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1859 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(7)},
1860 /* speaker-out */
1861 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1862 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1863 /* HP-out */
1864 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00},
1865 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1866 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1867 /* mic-in to input */
1868 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1869 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1870 /* built-in mic */
1871 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1872 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1873 /* jack sense */
1874 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | 0x1},
1878 /* toggle speaker-output according to the hp-jack state */
1879 static void alc880_lg_lw_automute(struct hda_codec *codec)
1881 unsigned int present;
1882 unsigned char bits;
1884 present = snd_hda_codec_read(codec, 0x1b, 0,
1885 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1886 bits = present ? 0x80 : 0;
1887 snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
1888 0x80, bits);
1889 snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
1890 0x80, bits);
1893 static void alc880_lg_lw_unsol_event(struct hda_codec *codec, unsigned int res)
1895 /* Looks like the unsol event is incompatible with the standard
1896 * definition. 4bit tag is placed at 28 bit!
1898 if ((res >> 28) == 0x01)
1899 alc880_lg_lw_automute(codec);
1903 * Common callbacks
1906 static int alc_init(struct hda_codec *codec)
1908 struct alc_spec *spec = codec->spec;
1909 unsigned int i;
1911 for (i = 0; i < spec->num_init_verbs; i++)
1912 snd_hda_sequence_write(codec, spec->init_verbs[i]);
1914 if (spec->init_hook)
1915 spec->init_hook(codec);
1917 return 0;
1920 static void alc_unsol_event(struct hda_codec *codec, unsigned int res)
1922 struct alc_spec *spec = codec->spec;
1924 if (spec->unsol_event)
1925 spec->unsol_event(codec, res);
1928 #ifdef CONFIG_PM
1930 * resume
1932 static int alc_resume(struct hda_codec *codec)
1934 struct alc_spec *spec = codec->spec;
1935 int i;
1937 alc_init(codec);
1938 for (i = 0; i < spec->num_mixers; i++)
1939 snd_hda_resume_ctls(codec, spec->mixers[i]);
1940 if (spec->multiout.dig_out_nid)
1941 snd_hda_resume_spdif_out(codec);
1942 if (spec->dig_in_nid)
1943 snd_hda_resume_spdif_in(codec);
1945 return 0;
1947 #endif
1950 * Analog playback callbacks
1952 static int alc880_playback_pcm_open(struct hda_pcm_stream *hinfo,
1953 struct hda_codec *codec,
1954 struct snd_pcm_substream *substream)
1956 struct alc_spec *spec = codec->spec;
1957 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream);
1960 static int alc880_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
1961 struct hda_codec *codec,
1962 unsigned int stream_tag,
1963 unsigned int format,
1964 struct snd_pcm_substream *substream)
1966 struct alc_spec *spec = codec->spec;
1967 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
1968 stream_tag, format, substream);
1971 static int alc880_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
1972 struct hda_codec *codec,
1973 struct snd_pcm_substream *substream)
1975 struct alc_spec *spec = codec->spec;
1976 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
1980 * Digital out
1982 static int alc880_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
1983 struct hda_codec *codec,
1984 struct snd_pcm_substream *substream)
1986 struct alc_spec *spec = codec->spec;
1987 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
1990 static int alc880_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
1991 struct hda_codec *codec,
1992 unsigned int stream_tag,
1993 unsigned int format,
1994 struct snd_pcm_substream *substream)
1996 struct alc_spec *spec = codec->spec;
1997 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
1998 stream_tag, format, substream);
2001 static int alc880_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
2002 struct hda_codec *codec,
2003 struct snd_pcm_substream *substream)
2005 struct alc_spec *spec = codec->spec;
2006 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
2010 * Analog capture
2012 static int alc880_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
2013 struct hda_codec *codec,
2014 unsigned int stream_tag,
2015 unsigned int format,
2016 struct snd_pcm_substream *substream)
2018 struct alc_spec *spec = codec->spec;
2020 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
2021 stream_tag, 0, format);
2022 return 0;
2025 static int alc880_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
2026 struct hda_codec *codec,
2027 struct snd_pcm_substream *substream)
2029 struct alc_spec *spec = codec->spec;
2031 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
2032 0, 0, 0);
2033 return 0;
2039 static struct hda_pcm_stream alc880_pcm_analog_playback = {
2040 .substreams = 1,
2041 .channels_min = 2,
2042 .channels_max = 8,
2043 /* NID is set in alc_build_pcms */
2044 .ops = {
2045 .open = alc880_playback_pcm_open,
2046 .prepare = alc880_playback_pcm_prepare,
2047 .cleanup = alc880_playback_pcm_cleanup
2051 static struct hda_pcm_stream alc880_pcm_analog_capture = {
2052 .substreams = 2,
2053 .channels_min = 2,
2054 .channels_max = 2,
2055 /* NID is set in alc_build_pcms */
2056 .ops = {
2057 .prepare = alc880_capture_pcm_prepare,
2058 .cleanup = alc880_capture_pcm_cleanup
2062 static struct hda_pcm_stream alc880_pcm_digital_playback = {
2063 .substreams = 1,
2064 .channels_min = 2,
2065 .channels_max = 2,
2066 /* NID is set in alc_build_pcms */
2067 .ops = {
2068 .open = alc880_dig_playback_pcm_open,
2069 .close = alc880_dig_playback_pcm_close,
2070 .prepare = alc880_dig_playback_pcm_prepare
2074 static struct hda_pcm_stream alc880_pcm_digital_capture = {
2075 .substreams = 1,
2076 .channels_min = 2,
2077 .channels_max = 2,
2078 /* NID is set in alc_build_pcms */
2081 /* Used by alc_build_pcms to flag that a PCM has no playback stream */
2082 static struct hda_pcm_stream alc_pcm_null_playback = {
2083 .substreams = 0,
2084 .channels_min = 0,
2085 .channels_max = 0,
2088 static int alc_build_pcms(struct hda_codec *codec)
2090 struct alc_spec *spec = codec->spec;
2091 struct hda_pcm *info = spec->pcm_rec;
2092 int i;
2094 codec->num_pcms = 1;
2095 codec->pcm_info = info;
2097 info->name = spec->stream_name_analog;
2098 if (spec->stream_analog_playback) {
2099 snd_assert(spec->multiout.dac_nids, return -EINVAL);
2100 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *(spec->stream_analog_playback);
2101 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dac_nids[0];
2103 if (spec->stream_analog_capture) {
2104 snd_assert(spec->adc_nids, return -EINVAL);
2105 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_analog_capture);
2106 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
2109 if (spec->channel_mode) {
2110 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = 0;
2111 for (i = 0; i < spec->num_channel_mode; i++) {
2112 if (spec->channel_mode[i].channels > info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max) {
2113 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = spec->channel_mode[i].channels;
2118 /* SPDIF for stream index #1 */
2119 if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
2120 codec->num_pcms = 2;
2121 info = spec->pcm_rec + 1;
2122 info->name = spec->stream_name_digital;
2123 if (spec->multiout.dig_out_nid &&
2124 spec->stream_digital_playback) {
2125 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *(spec->stream_digital_playback);
2126 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
2128 if (spec->dig_in_nid &&
2129 spec->stream_digital_capture) {
2130 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_digital_capture);
2131 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
2135 /* If the use of more than one ADC is requested for the current
2136 * model, configure a second analog capture-only PCM.
2138 /* Additional Analaog capture for index #2 */
2139 if (spec->num_adc_nids > 1 && spec->stream_analog_capture &&
2140 spec->adc_nids) {
2141 codec->num_pcms = 3;
2142 info = spec->pcm_rec + 2;
2143 info->name = spec->stream_name_analog;
2144 /* No playback stream for second PCM */
2145 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = alc_pcm_null_playback;
2146 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = 0;
2147 if (spec->stream_analog_capture) {
2148 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_analog_capture);
2149 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[1];
2153 return 0;
2156 static void alc_free(struct hda_codec *codec)
2158 struct alc_spec *spec = codec->spec;
2159 unsigned int i;
2161 if (!spec)
2162 return;
2164 if (spec->kctl_alloc) {
2165 for (i = 0; i < spec->num_kctl_used; i++)
2166 kfree(spec->kctl_alloc[i].name);
2167 kfree(spec->kctl_alloc);
2169 kfree(spec);
2174 static struct hda_codec_ops alc_patch_ops = {
2175 .build_controls = alc_build_controls,
2176 .build_pcms = alc_build_pcms,
2177 .init = alc_init,
2178 .free = alc_free,
2179 .unsol_event = alc_unsol_event,
2180 #ifdef CONFIG_PM
2181 .resume = alc_resume,
2182 #endif
2187 * Test configuration for debugging
2189 * Almost all inputs/outputs are enabled. I/O pins can be configured via
2190 * enum controls.
2192 #ifdef CONFIG_SND_DEBUG
2193 static hda_nid_t alc880_test_dac_nids[4] = {
2194 0x02, 0x03, 0x04, 0x05
2197 static struct hda_input_mux alc880_test_capture_source = {
2198 .num_items = 7,
2199 .items = {
2200 { "In-1", 0x0 },
2201 { "In-2", 0x1 },
2202 { "In-3", 0x2 },
2203 { "In-4", 0x3 },
2204 { "CD", 0x4 },
2205 { "Front", 0x5 },
2206 { "Surround", 0x6 },
2210 static struct hda_channel_mode alc880_test_modes[4] = {
2211 { 2, NULL },
2212 { 4, NULL },
2213 { 6, NULL },
2214 { 8, NULL },
2217 static int alc_test_pin_ctl_info(struct snd_kcontrol *kcontrol,
2218 struct snd_ctl_elem_info *uinfo)
2220 static char *texts[] = {
2221 "N/A", "Line Out", "HP Out",
2222 "In Hi-Z", "In 50%", "In Grd", "In 80%", "In 100%"
2224 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2225 uinfo->count = 1;
2226 uinfo->value.enumerated.items = 8;
2227 if (uinfo->value.enumerated.item >= 8)
2228 uinfo->value.enumerated.item = 7;
2229 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
2230 return 0;
2233 static int alc_test_pin_ctl_get(struct snd_kcontrol *kcontrol,
2234 struct snd_ctl_elem_value *ucontrol)
2236 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2237 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2238 unsigned int pin_ctl, item = 0;
2240 pin_ctl = snd_hda_codec_read(codec, nid, 0,
2241 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
2242 if (pin_ctl & AC_PINCTL_OUT_EN) {
2243 if (pin_ctl & AC_PINCTL_HP_EN)
2244 item = 2;
2245 else
2246 item = 1;
2247 } else if (pin_ctl & AC_PINCTL_IN_EN) {
2248 switch (pin_ctl & AC_PINCTL_VREFEN) {
2249 case AC_PINCTL_VREF_HIZ: item = 3; break;
2250 case AC_PINCTL_VREF_50: item = 4; break;
2251 case AC_PINCTL_VREF_GRD: item = 5; break;
2252 case AC_PINCTL_VREF_80: item = 6; break;
2253 case AC_PINCTL_VREF_100: item = 7; break;
2256 ucontrol->value.enumerated.item[0] = item;
2257 return 0;
2260 static int alc_test_pin_ctl_put(struct snd_kcontrol *kcontrol,
2261 struct snd_ctl_elem_value *ucontrol)
2263 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2264 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2265 static unsigned int ctls[] = {
2266 0, AC_PINCTL_OUT_EN, AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN,
2267 AC_PINCTL_IN_EN | AC_PINCTL_VREF_HIZ,
2268 AC_PINCTL_IN_EN | AC_PINCTL_VREF_50,
2269 AC_PINCTL_IN_EN | AC_PINCTL_VREF_GRD,
2270 AC_PINCTL_IN_EN | AC_PINCTL_VREF_80,
2271 AC_PINCTL_IN_EN | AC_PINCTL_VREF_100,
2273 unsigned int old_ctl, new_ctl;
2275 old_ctl = snd_hda_codec_read(codec, nid, 0,
2276 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
2277 new_ctl = ctls[ucontrol->value.enumerated.item[0]];
2278 if (old_ctl != new_ctl) {
2279 snd_hda_codec_write(codec, nid, 0,
2280 AC_VERB_SET_PIN_WIDGET_CONTROL, new_ctl);
2281 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
2282 (ucontrol->value.enumerated.item[0] >= 3 ?
2283 0xb080 : 0xb000));
2284 return 1;
2286 return 0;
2289 static int alc_test_pin_src_info(struct snd_kcontrol *kcontrol,
2290 struct snd_ctl_elem_info *uinfo)
2292 static char *texts[] = {
2293 "Front", "Surround", "CLFE", "Side"
2295 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2296 uinfo->count = 1;
2297 uinfo->value.enumerated.items = 4;
2298 if (uinfo->value.enumerated.item >= 4)
2299 uinfo->value.enumerated.item = 3;
2300 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
2301 return 0;
2304 static int alc_test_pin_src_get(struct snd_kcontrol *kcontrol,
2305 struct snd_ctl_elem_value *ucontrol)
2307 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2308 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2309 unsigned int sel;
2311 sel = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONNECT_SEL, 0);
2312 ucontrol->value.enumerated.item[0] = sel & 3;
2313 return 0;
2316 static int alc_test_pin_src_put(struct snd_kcontrol *kcontrol,
2317 struct snd_ctl_elem_value *ucontrol)
2319 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2320 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2321 unsigned int sel;
2323 sel = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONNECT_SEL, 0) & 3;
2324 if (ucontrol->value.enumerated.item[0] != sel) {
2325 sel = ucontrol->value.enumerated.item[0] & 3;
2326 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, sel);
2327 return 1;
2329 return 0;
2332 #define PIN_CTL_TEST(xname,nid) { \
2333 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2334 .name = xname, \
2335 .info = alc_test_pin_ctl_info, \
2336 .get = alc_test_pin_ctl_get, \
2337 .put = alc_test_pin_ctl_put, \
2338 .private_value = nid \
2341 #define PIN_SRC_TEST(xname,nid) { \
2342 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2343 .name = xname, \
2344 .info = alc_test_pin_src_info, \
2345 .get = alc_test_pin_src_get, \
2346 .put = alc_test_pin_src_put, \
2347 .private_value = nid \
2350 static struct snd_kcontrol_new alc880_test_mixer[] = {
2351 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
2352 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
2353 HDA_CODEC_VOLUME("CLFE Playback Volume", 0x0e, 0x0, HDA_OUTPUT),
2354 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
2355 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
2356 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
2357 HDA_BIND_MUTE("CLFE Playback Switch", 0x0e, 2, HDA_INPUT),
2358 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
2359 PIN_CTL_TEST("Front Pin Mode", 0x14),
2360 PIN_CTL_TEST("Surround Pin Mode", 0x15),
2361 PIN_CTL_TEST("CLFE Pin Mode", 0x16),
2362 PIN_CTL_TEST("Side Pin Mode", 0x17),
2363 PIN_CTL_TEST("In-1 Pin Mode", 0x18),
2364 PIN_CTL_TEST("In-2 Pin Mode", 0x19),
2365 PIN_CTL_TEST("In-3 Pin Mode", 0x1a),
2366 PIN_CTL_TEST("In-4 Pin Mode", 0x1b),
2367 PIN_SRC_TEST("In-1 Pin Source", 0x18),
2368 PIN_SRC_TEST("In-2 Pin Source", 0x19),
2369 PIN_SRC_TEST("In-3 Pin Source", 0x1a),
2370 PIN_SRC_TEST("In-4 Pin Source", 0x1b),
2371 HDA_CODEC_VOLUME("In-1 Playback Volume", 0x0b, 0x0, HDA_INPUT),
2372 HDA_CODEC_MUTE("In-1 Playback Switch", 0x0b, 0x0, HDA_INPUT),
2373 HDA_CODEC_VOLUME("In-2 Playback Volume", 0x0b, 0x1, HDA_INPUT),
2374 HDA_CODEC_MUTE("In-2 Playback Switch", 0x0b, 0x1, HDA_INPUT),
2375 HDA_CODEC_VOLUME("In-3 Playback Volume", 0x0b, 0x2, HDA_INPUT),
2376 HDA_CODEC_MUTE("In-3 Playback Switch", 0x0b, 0x2, HDA_INPUT),
2377 HDA_CODEC_VOLUME("In-4 Playback Volume", 0x0b, 0x3, HDA_INPUT),
2378 HDA_CODEC_MUTE("In-4 Playback Switch", 0x0b, 0x3, HDA_INPUT),
2379 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x4, HDA_INPUT),
2380 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x4, HDA_INPUT),
2382 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2383 .name = "Channel Mode",
2384 .info = alc_ch_mode_info,
2385 .get = alc_ch_mode_get,
2386 .put = alc_ch_mode_put,
2388 { } /* end */
2391 static struct hda_verb alc880_test_init_verbs[] = {
2392 /* Unmute inputs of 0x0c - 0x0f */
2393 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2394 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2395 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2396 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2397 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2398 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2399 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2400 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2401 /* Vol output for 0x0c-0x0f */
2402 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2403 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2404 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2405 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2406 /* Set output pins 0x14-0x17 */
2407 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2408 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2409 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2410 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2411 /* Unmute output pins 0x14-0x17 */
2412 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2413 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2414 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2415 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2416 /* Set input pins 0x18-0x1c */
2417 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2418 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2419 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2420 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2421 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2422 /* Mute input pins 0x18-0x1b */
2423 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2424 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2425 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2426 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2427 /* ADC set up */
2428 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2429 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
2430 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2431 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
2432 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2433 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
2434 /* Analog input/passthru */
2435 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2436 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2437 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2438 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2439 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
2442 #endif
2447 static const char *alc880_models[ALC880_MODEL_LAST] = {
2448 [ALC880_3ST] = "3stack",
2449 [ALC880_TCL_S700] = "tcl",
2450 [ALC880_3ST_DIG] = "3stack-digout",
2451 [ALC880_CLEVO] = "clevo",
2452 [ALC880_5ST] = "5stack",
2453 [ALC880_5ST_DIG] = "5stack-digout",
2454 [ALC880_W810] = "w810",
2455 [ALC880_Z71V] = "z71v",
2456 [ALC880_6ST] = "6stack",
2457 [ALC880_6ST_DIG] = "6stack-digout",
2458 [ALC880_ASUS] = "asus",
2459 [ALC880_ASUS_W1V] = "asus-w1v",
2460 [ALC880_ASUS_DIG] = "asus-dig",
2461 [ALC880_ASUS_DIG2] = "asus-dig2",
2462 [ALC880_UNIWILL_DIG] = "uniwill",
2463 [ALC880_UNIWILL_P53] = "uniwill-p53",
2464 [ALC880_FUJITSU] = "fujitsu",
2465 [ALC880_F1734] = "F1734",
2466 [ALC880_LG] = "lg",
2467 [ALC880_LG_LW] = "lg-lw",
2468 #ifdef CONFIG_SND_DEBUG
2469 [ALC880_TEST] = "test",
2470 #endif
2471 [ALC880_AUTO] = "auto",
2474 static struct snd_pci_quirk alc880_cfg_tbl[] = {
2475 /* Broken BIOS configuration */
2476 SND_PCI_QUIRK(0x2668, 0x8086, NULL, ALC880_6ST_DIG),
2477 SND_PCI_QUIRK(0x8086, 0x2668, NULL, ALC880_6ST_DIG),
2479 SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_5ST_DIG),
2480 SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_6ST),
2481 SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_W810),
2482 SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_3ST_DIG),
2483 SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_6ST_DIG),
2484 SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_6ST_DIG),
2485 SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_6ST_DIG),
2486 SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_3ST_DIG),
2487 SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_3ST),
2489 SND_PCI_QUIRK(0x1039, 0x1234, NULL, ALC880_6ST_DIG),
2490 SND_PCI_QUIRK(0x103c, 0x2a09, "HP", ALC880_5ST),
2492 SND_PCI_QUIRK(0x1043, 0x10b3, "ASUS W1V", ALC880_ASUS_W1V),
2493 SND_PCI_QUIRK(0x1043, 0x10c2, "ASUS W6A", ALC880_ASUS_DIG),
2494 SND_PCI_QUIRK(0x1043, 0x10c3, "ASUS Wxx", ALC880_ASUS_DIG),
2495 SND_PCI_QUIRK(0x1043, 0x1113, "ASUS", ALC880_ASUS_DIG),
2496 SND_PCI_QUIRK(0x1043, 0x1123, "ASUS", ALC880_ASUS_DIG),
2497 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS", ALC880_ASUS_DIG),
2498 SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_Z71V),
2499 /* SND_PCI_QUIRK(0x1043, 0x1964, "ASUS", ALC880_ASUS_DIG), */
2500 SND_PCI_QUIRK(0x1043, 0x1973, "ASUS", ALC880_ASUS_DIG),
2501 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS", ALC880_ASUS_DIG),
2502 SND_PCI_QUIRK(0x1043, 0x814e, "ASUS", ALC880_ASUS),
2503 SND_PCI_QUIRK(0x1043, 0x8181, "ASUS P4GPL", ALC880_ASUS_DIG),
2504 SND_PCI_QUIRK(0x1043, 0x8196, "ASUS P5GD1", ALC880_6ST),
2505 SND_PCI_QUIRK(0x1043, 0x81b4, "ASUS", ALC880_6ST),
2506 SND_PCI_QUIRK(0x1043, 0, "ASUS", ALC880_ASUS),
2508 SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_3ST),
2509 SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_3ST),
2510 SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_5ST),
2511 SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_5ST),
2512 SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_5ST),
2513 SND_PCI_QUIRK(0x1558, 0x0520, "Clevo m520G", ALC880_CLEVO),
2514 SND_PCI_QUIRK(0x1558, 0x0660, "Clevo m655n", ALC880_CLEVO),
2515 SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_5ST_DIG),
2516 SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_W810),
2517 SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_5ST_DIG),
2518 SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_TCL_S700),
2519 SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_5ST_DIG),
2520 SND_PCI_QUIRK(0xe803, 0x1019, NULL, ALC880_6ST_DIG),
2521 SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_6ST_DIG),
2522 SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_6ST_DIG),
2523 SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_6ST_DIG),
2524 SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_6ST_DIG),
2525 SND_PCI_QUIRK(0x1558, 0x5401, "ASUS", ALC880_ASUS_DIG2),
2527 SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_UNIWILL_DIG),
2528 SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_UNIWILL),
2529 SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_UNIWILL_P53),
2530 SND_PCI_QUIRK(0x1584, 0x9054, "Uniwlll", ALC880_F1734),
2532 SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_5ST_DIG),
2533 SND_PCI_QUIRK(0x1734, 0x10ac, "FSC", ALC880_UNIWILL),
2534 SND_PCI_QUIRK(0x1734, 0x107c, "FSC F1734", ALC880_F1734),
2535 SND_PCI_QUIRK(0x1734, 0x10b0, "Fujitsu", ALC880_FUJITSU),
2537 SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_LG),
2538 SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_LG),
2539 SND_PCI_QUIRK(0x1854, 0x0018, "LG LW20", ALC880_LG_LW),
2540 SND_PCI_QUIRK(0x1854, 0x0077, "LG LW25", ALC880_LG_LW),
2542 SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_3ST_DIG),
2543 SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_3ST_DIG),
2544 SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_3ST_DIG),
2545 SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_5ST_DIG),
2546 SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_5ST_DIG),
2547 SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_5ST_DIG),
2548 SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_5ST_DIG),
2549 SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_5ST_DIG),
2550 SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_5ST_DIG),
2551 SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_5ST_DIG),
2552 SND_PCI_QUIRK(0x8086, 0, "Intel mobo", ALC880_3ST),
2558 * ALC880 codec presets
2560 static struct alc_config_preset alc880_presets[] = {
2561 [ALC880_3ST] = {
2562 .mixers = { alc880_three_stack_mixer },
2563 .init_verbs = { alc880_volume_init_verbs,
2564 alc880_pin_3stack_init_verbs },
2565 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2566 .dac_nids = alc880_dac_nids,
2567 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2568 .channel_mode = alc880_threestack_modes,
2569 .need_dac_fix = 1,
2570 .input_mux = &alc880_capture_source,
2572 [ALC880_3ST_DIG] = {
2573 .mixers = { alc880_three_stack_mixer },
2574 .init_verbs = { alc880_volume_init_verbs,
2575 alc880_pin_3stack_init_verbs },
2576 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2577 .dac_nids = alc880_dac_nids,
2578 .dig_out_nid = ALC880_DIGOUT_NID,
2579 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2580 .channel_mode = alc880_threestack_modes,
2581 .need_dac_fix = 1,
2582 .input_mux = &alc880_capture_source,
2584 [ALC880_TCL_S700] = {
2585 .mixers = { alc880_tcl_s700_mixer },
2586 .init_verbs = { alc880_volume_init_verbs,
2587 alc880_pin_tcl_S700_init_verbs,
2588 alc880_gpio2_init_verbs },
2589 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2590 .dac_nids = alc880_dac_nids,
2591 .hp_nid = 0x03,
2592 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2593 .channel_mode = alc880_2_jack_modes,
2594 .input_mux = &alc880_capture_source,
2596 [ALC880_5ST] = {
2597 .mixers = { alc880_three_stack_mixer,
2598 alc880_five_stack_mixer},
2599 .init_verbs = { alc880_volume_init_verbs,
2600 alc880_pin_5stack_init_verbs },
2601 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2602 .dac_nids = alc880_dac_nids,
2603 .num_channel_mode = ARRAY_SIZE(alc880_fivestack_modes),
2604 .channel_mode = alc880_fivestack_modes,
2605 .input_mux = &alc880_capture_source,
2607 [ALC880_5ST_DIG] = {
2608 .mixers = { alc880_three_stack_mixer,
2609 alc880_five_stack_mixer },
2610 .init_verbs = { alc880_volume_init_verbs,
2611 alc880_pin_5stack_init_verbs },
2612 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2613 .dac_nids = alc880_dac_nids,
2614 .dig_out_nid = ALC880_DIGOUT_NID,
2615 .num_channel_mode = ARRAY_SIZE(alc880_fivestack_modes),
2616 .channel_mode = alc880_fivestack_modes,
2617 .input_mux = &alc880_capture_source,
2619 [ALC880_6ST] = {
2620 .mixers = { alc880_six_stack_mixer },
2621 .init_verbs = { alc880_volume_init_verbs,
2622 alc880_pin_6stack_init_verbs },
2623 .num_dacs = ARRAY_SIZE(alc880_6st_dac_nids),
2624 .dac_nids = alc880_6st_dac_nids,
2625 .num_channel_mode = ARRAY_SIZE(alc880_sixstack_modes),
2626 .channel_mode = alc880_sixstack_modes,
2627 .input_mux = &alc880_6stack_capture_source,
2629 [ALC880_6ST_DIG] = {
2630 .mixers = { alc880_six_stack_mixer },
2631 .init_verbs = { alc880_volume_init_verbs,
2632 alc880_pin_6stack_init_verbs },
2633 .num_dacs = ARRAY_SIZE(alc880_6st_dac_nids),
2634 .dac_nids = alc880_6st_dac_nids,
2635 .dig_out_nid = ALC880_DIGOUT_NID,
2636 .num_channel_mode = ARRAY_SIZE(alc880_sixstack_modes),
2637 .channel_mode = alc880_sixstack_modes,
2638 .input_mux = &alc880_6stack_capture_source,
2640 [ALC880_W810] = {
2641 .mixers = { alc880_w810_base_mixer },
2642 .init_verbs = { alc880_volume_init_verbs,
2643 alc880_pin_w810_init_verbs,
2644 alc880_gpio2_init_verbs },
2645 .num_dacs = ARRAY_SIZE(alc880_w810_dac_nids),
2646 .dac_nids = alc880_w810_dac_nids,
2647 .dig_out_nid = ALC880_DIGOUT_NID,
2648 .num_channel_mode = ARRAY_SIZE(alc880_w810_modes),
2649 .channel_mode = alc880_w810_modes,
2650 .input_mux = &alc880_capture_source,
2652 [ALC880_Z71V] = {
2653 .mixers = { alc880_z71v_mixer },
2654 .init_verbs = { alc880_volume_init_verbs,
2655 alc880_pin_z71v_init_verbs },
2656 .num_dacs = ARRAY_SIZE(alc880_z71v_dac_nids),
2657 .dac_nids = alc880_z71v_dac_nids,
2658 .dig_out_nid = ALC880_DIGOUT_NID,
2659 .hp_nid = 0x03,
2660 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2661 .channel_mode = alc880_2_jack_modes,
2662 .input_mux = &alc880_capture_source,
2664 [ALC880_F1734] = {
2665 .mixers = { alc880_f1734_mixer },
2666 .init_verbs = { alc880_volume_init_verbs,
2667 alc880_pin_f1734_init_verbs },
2668 .num_dacs = ARRAY_SIZE(alc880_f1734_dac_nids),
2669 .dac_nids = alc880_f1734_dac_nids,
2670 .hp_nid = 0x02,
2671 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2672 .channel_mode = alc880_2_jack_modes,
2673 .input_mux = &alc880_capture_source,
2675 [ALC880_ASUS] = {
2676 .mixers = { alc880_asus_mixer },
2677 .init_verbs = { alc880_volume_init_verbs,
2678 alc880_pin_asus_init_verbs,
2679 alc880_gpio1_init_verbs },
2680 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2681 .dac_nids = alc880_asus_dac_nids,
2682 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2683 .channel_mode = alc880_asus_modes,
2684 .need_dac_fix = 1,
2685 .input_mux = &alc880_capture_source,
2687 [ALC880_ASUS_DIG] = {
2688 .mixers = { alc880_asus_mixer },
2689 .init_verbs = { alc880_volume_init_verbs,
2690 alc880_pin_asus_init_verbs,
2691 alc880_gpio1_init_verbs },
2692 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2693 .dac_nids = alc880_asus_dac_nids,
2694 .dig_out_nid = ALC880_DIGOUT_NID,
2695 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2696 .channel_mode = alc880_asus_modes,
2697 .need_dac_fix = 1,
2698 .input_mux = &alc880_capture_source,
2700 [ALC880_ASUS_DIG2] = {
2701 .mixers = { alc880_asus_mixer },
2702 .init_verbs = { alc880_volume_init_verbs,
2703 alc880_pin_asus_init_verbs,
2704 alc880_gpio2_init_verbs }, /* use GPIO2 */
2705 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2706 .dac_nids = alc880_asus_dac_nids,
2707 .dig_out_nid = ALC880_DIGOUT_NID,
2708 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2709 .channel_mode = alc880_asus_modes,
2710 .need_dac_fix = 1,
2711 .input_mux = &alc880_capture_source,
2713 [ALC880_ASUS_W1V] = {
2714 .mixers = { alc880_asus_mixer, alc880_asus_w1v_mixer },
2715 .init_verbs = { alc880_volume_init_verbs,
2716 alc880_pin_asus_init_verbs,
2717 alc880_gpio1_init_verbs },
2718 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2719 .dac_nids = alc880_asus_dac_nids,
2720 .dig_out_nid = ALC880_DIGOUT_NID,
2721 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2722 .channel_mode = alc880_asus_modes,
2723 .need_dac_fix = 1,
2724 .input_mux = &alc880_capture_source,
2726 [ALC880_UNIWILL_DIG] = {
2727 .mixers = { alc880_asus_mixer, alc880_pcbeep_mixer },
2728 .init_verbs = { alc880_volume_init_verbs,
2729 alc880_pin_asus_init_verbs },
2730 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2731 .dac_nids = alc880_asus_dac_nids,
2732 .dig_out_nid = ALC880_DIGOUT_NID,
2733 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2734 .channel_mode = alc880_asus_modes,
2735 .need_dac_fix = 1,
2736 .input_mux = &alc880_capture_source,
2738 [ALC880_UNIWILL] = {
2739 .mixers = { alc880_uniwill_mixer },
2740 .init_verbs = { alc880_volume_init_verbs,
2741 alc880_uniwill_init_verbs },
2742 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2743 .dac_nids = alc880_asus_dac_nids,
2744 .dig_out_nid = ALC880_DIGOUT_NID,
2745 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2746 .channel_mode = alc880_threestack_modes,
2747 .need_dac_fix = 1,
2748 .input_mux = &alc880_capture_source,
2749 .unsol_event = alc880_uniwill_unsol_event,
2750 .init_hook = alc880_uniwill_automute,
2752 [ALC880_UNIWILL_P53] = {
2753 .mixers = { alc880_uniwill_p53_mixer },
2754 .init_verbs = { alc880_volume_init_verbs,
2755 alc880_uniwill_p53_init_verbs },
2756 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2757 .dac_nids = alc880_asus_dac_nids,
2758 .num_channel_mode = ARRAY_SIZE(alc880_w810_modes),
2759 .channel_mode = alc880_threestack_modes,
2760 .input_mux = &alc880_capture_source,
2761 .unsol_event = alc880_uniwill_p53_unsol_event,
2762 .init_hook = alc880_uniwill_p53_hp_automute,
2764 [ALC880_FUJITSU] = {
2765 .mixers = { alc880_fujitsu_mixer,
2766 alc880_pcbeep_mixer, },
2767 .init_verbs = { alc880_volume_init_verbs,
2768 alc880_uniwill_p53_init_verbs,
2769 alc880_beep_init_verbs },
2770 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2771 .dac_nids = alc880_dac_nids,
2772 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2773 .channel_mode = alc880_2_jack_modes,
2774 .input_mux = &alc880_capture_source,
2775 .unsol_event = alc880_uniwill_p53_unsol_event,
2776 .init_hook = alc880_uniwill_p53_hp_automute,
2778 [ALC880_CLEVO] = {
2779 .mixers = { alc880_three_stack_mixer },
2780 .init_verbs = { alc880_volume_init_verbs,
2781 alc880_pin_clevo_init_verbs },
2782 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2783 .dac_nids = alc880_dac_nids,
2784 .hp_nid = 0x03,
2785 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2786 .channel_mode = alc880_threestack_modes,
2787 .need_dac_fix = 1,
2788 .input_mux = &alc880_capture_source,
2790 [ALC880_LG] = {
2791 .mixers = { alc880_lg_mixer },
2792 .init_verbs = { alc880_volume_init_verbs,
2793 alc880_lg_init_verbs },
2794 .num_dacs = ARRAY_SIZE(alc880_lg_dac_nids),
2795 .dac_nids = alc880_lg_dac_nids,
2796 .dig_out_nid = ALC880_DIGOUT_NID,
2797 .num_channel_mode = ARRAY_SIZE(alc880_lg_ch_modes),
2798 .channel_mode = alc880_lg_ch_modes,
2799 .need_dac_fix = 1,
2800 .input_mux = &alc880_lg_capture_source,
2801 .unsol_event = alc880_lg_unsol_event,
2802 .init_hook = alc880_lg_automute,
2804 [ALC880_LG_LW] = {
2805 .mixers = { alc880_lg_lw_mixer },
2806 .init_verbs = { alc880_volume_init_verbs,
2807 alc880_lg_lw_init_verbs },
2808 .num_dacs = 1,
2809 .dac_nids = alc880_dac_nids,
2810 .dig_out_nid = ALC880_DIGOUT_NID,
2811 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2812 .channel_mode = alc880_2_jack_modes,
2813 .input_mux = &alc880_lg_lw_capture_source,
2814 .unsol_event = alc880_lg_lw_unsol_event,
2815 .init_hook = alc880_lg_lw_automute,
2817 #ifdef CONFIG_SND_DEBUG
2818 [ALC880_TEST] = {
2819 .mixers = { alc880_test_mixer },
2820 .init_verbs = { alc880_test_init_verbs },
2821 .num_dacs = ARRAY_SIZE(alc880_test_dac_nids),
2822 .dac_nids = alc880_test_dac_nids,
2823 .dig_out_nid = ALC880_DIGOUT_NID,
2824 .num_channel_mode = ARRAY_SIZE(alc880_test_modes),
2825 .channel_mode = alc880_test_modes,
2826 .input_mux = &alc880_test_capture_source,
2828 #endif
2832 * Automatic parse of I/O pins from the BIOS configuration
2835 #define NUM_CONTROL_ALLOC 32
2836 #define NUM_VERB_ALLOC 32
2838 enum {
2839 ALC_CTL_WIDGET_VOL,
2840 ALC_CTL_WIDGET_MUTE,
2841 ALC_CTL_BIND_MUTE,
2843 static struct snd_kcontrol_new alc880_control_templates[] = {
2844 HDA_CODEC_VOLUME(NULL, 0, 0, 0),
2845 HDA_CODEC_MUTE(NULL, 0, 0, 0),
2846 HDA_BIND_MUTE(NULL, 0, 0, 0),
2849 /* add dynamic controls */
2850 static int add_control(struct alc_spec *spec, int type, const char *name,
2851 unsigned long val)
2853 struct snd_kcontrol_new *knew;
2855 if (spec->num_kctl_used >= spec->num_kctl_alloc) {
2856 int num = spec->num_kctl_alloc + NUM_CONTROL_ALLOC;
2858 /* array + terminator */
2859 knew = kcalloc(num + 1, sizeof(*knew), GFP_KERNEL);
2860 if (!knew)
2861 return -ENOMEM;
2862 if (spec->kctl_alloc) {
2863 memcpy(knew, spec->kctl_alloc,
2864 sizeof(*knew) * spec->num_kctl_alloc);
2865 kfree(spec->kctl_alloc);
2867 spec->kctl_alloc = knew;
2868 spec->num_kctl_alloc = num;
2871 knew = &spec->kctl_alloc[spec->num_kctl_used];
2872 *knew = alc880_control_templates[type];
2873 knew->name = kstrdup(name, GFP_KERNEL);
2874 if (!knew->name)
2875 return -ENOMEM;
2876 knew->private_value = val;
2877 spec->num_kctl_used++;
2878 return 0;
2881 #define alc880_is_fixed_pin(nid) ((nid) >= 0x14 && (nid) <= 0x17)
2882 #define alc880_fixed_pin_idx(nid) ((nid) - 0x14)
2883 #define alc880_is_multi_pin(nid) ((nid) >= 0x18)
2884 #define alc880_multi_pin_idx(nid) ((nid) - 0x18)
2885 #define alc880_is_input_pin(nid) ((nid) >= 0x18)
2886 #define alc880_input_pin_idx(nid) ((nid) - 0x18)
2887 #define alc880_idx_to_dac(nid) ((nid) + 0x02)
2888 #define alc880_dac_to_idx(nid) ((nid) - 0x02)
2889 #define alc880_idx_to_mixer(nid) ((nid) + 0x0c)
2890 #define alc880_idx_to_selector(nid) ((nid) + 0x10)
2891 #define ALC880_PIN_CD_NID 0x1c
2893 /* fill in the dac_nids table from the parsed pin configuration */
2894 static int alc880_auto_fill_dac_nids(struct alc_spec *spec,
2895 const struct auto_pin_cfg *cfg)
2897 hda_nid_t nid;
2898 int assigned[4];
2899 int i, j;
2901 memset(assigned, 0, sizeof(assigned));
2902 spec->multiout.dac_nids = spec->private_dac_nids;
2904 /* check the pins hardwired to audio widget */
2905 for (i = 0; i < cfg->line_outs; i++) {
2906 nid = cfg->line_out_pins[i];
2907 if (alc880_is_fixed_pin(nid)) {
2908 int idx = alc880_fixed_pin_idx(nid);
2909 spec->multiout.dac_nids[i] = alc880_idx_to_dac(idx);
2910 assigned[idx] = 1;
2913 /* left pins can be connect to any audio widget */
2914 for (i = 0; i < cfg->line_outs; i++) {
2915 nid = cfg->line_out_pins[i];
2916 if (alc880_is_fixed_pin(nid))
2917 continue;
2918 /* search for an empty channel */
2919 for (j = 0; j < cfg->line_outs; j++) {
2920 if (!assigned[j]) {
2921 spec->multiout.dac_nids[i] =
2922 alc880_idx_to_dac(j);
2923 assigned[j] = 1;
2924 break;
2928 spec->multiout.num_dacs = cfg->line_outs;
2929 return 0;
2932 /* add playback controls from the parsed DAC table */
2933 static int alc880_auto_create_multi_out_ctls(struct alc_spec *spec,
2934 const struct auto_pin_cfg *cfg)
2936 char name[32];
2937 static const char *chname[4] = {
2938 "Front", "Surround", NULL /*CLFE*/, "Side"
2940 hda_nid_t nid;
2941 int i, err;
2943 for (i = 0; i < cfg->line_outs; i++) {
2944 if (!spec->multiout.dac_nids[i])
2945 continue;
2946 nid = alc880_idx_to_mixer(alc880_dac_to_idx(spec->multiout.dac_nids[i]));
2947 if (i == 2) {
2948 /* Center/LFE */
2949 err = add_control(spec, ALC_CTL_WIDGET_VOL,
2950 "Center Playback Volume",
2951 HDA_COMPOSE_AMP_VAL(nid, 1, 0,
2952 HDA_OUTPUT));
2953 if (err < 0)
2954 return err;
2955 err = add_control(spec, ALC_CTL_WIDGET_VOL,
2956 "LFE Playback Volume",
2957 HDA_COMPOSE_AMP_VAL(nid, 2, 0,
2958 HDA_OUTPUT));
2959 if (err < 0)
2960 return err;
2961 err = add_control(spec, ALC_CTL_BIND_MUTE,
2962 "Center Playback Switch",
2963 HDA_COMPOSE_AMP_VAL(nid, 1, 2,
2964 HDA_INPUT));
2965 if (err < 0)
2966 return err;
2967 err = add_control(spec, ALC_CTL_BIND_MUTE,
2968 "LFE Playback Switch",
2969 HDA_COMPOSE_AMP_VAL(nid, 2, 2,
2970 HDA_INPUT));
2971 if (err < 0)
2972 return err;
2973 } else {
2974 sprintf(name, "%s Playback Volume", chname[i]);
2975 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
2976 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
2977 HDA_OUTPUT));
2978 if (err < 0)
2979 return err;
2980 sprintf(name, "%s Playback Switch", chname[i]);
2981 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
2982 HDA_COMPOSE_AMP_VAL(nid, 3, 2,
2983 HDA_INPUT));
2984 if (err < 0)
2985 return err;
2988 return 0;
2991 /* add playback controls for speaker and HP outputs */
2992 static int alc880_auto_create_extra_out(struct alc_spec *spec, hda_nid_t pin,
2993 const char *pfx)
2995 hda_nid_t nid;
2996 int err;
2997 char name[32];
2999 if (!pin)
3000 return 0;
3002 if (alc880_is_fixed_pin(pin)) {
3003 nid = alc880_idx_to_dac(alc880_fixed_pin_idx(pin));
3004 /* specify the DAC as the extra output */
3005 if (!spec->multiout.hp_nid)
3006 spec->multiout.hp_nid = nid;
3007 else
3008 spec->multiout.extra_out_nid[0] = nid;
3009 /* control HP volume/switch on the output mixer amp */
3010 nid = alc880_idx_to_mixer(alc880_fixed_pin_idx(pin));
3011 sprintf(name, "%s Playback Volume", pfx);
3012 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
3013 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT));
3014 if (err < 0)
3015 return err;
3016 sprintf(name, "%s Playback Switch", pfx);
3017 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
3018 HDA_COMPOSE_AMP_VAL(nid, 3, 2, HDA_INPUT));
3019 if (err < 0)
3020 return err;
3021 } else if (alc880_is_multi_pin(pin)) {
3022 /* set manual connection */
3023 /* we have only a switch on HP-out PIN */
3024 sprintf(name, "%s Playback Switch", pfx);
3025 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
3026 HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
3027 if (err < 0)
3028 return err;
3030 return 0;
3033 /* create input playback/capture controls for the given pin */
3034 static int new_analog_input(struct alc_spec *spec, hda_nid_t pin,
3035 const char *ctlname,
3036 int idx, hda_nid_t mix_nid)
3038 char name[32];
3039 int err;
3041 sprintf(name, "%s Playback Volume", ctlname);
3042 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
3043 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
3044 if (err < 0)
3045 return err;
3046 sprintf(name, "%s Playback Switch", ctlname);
3047 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
3048 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
3049 if (err < 0)
3050 return err;
3051 return 0;
3054 /* create playback/capture controls for input pins */
3055 static int alc880_auto_create_analog_input_ctls(struct alc_spec *spec,
3056 const struct auto_pin_cfg *cfg)
3058 struct hda_input_mux *imux = &spec->private_imux;
3059 int i, err, idx;
3061 for (i = 0; i < AUTO_PIN_LAST; i++) {
3062 if (alc880_is_input_pin(cfg->input_pins[i])) {
3063 idx = alc880_input_pin_idx(cfg->input_pins[i]);
3064 err = new_analog_input(spec, cfg->input_pins[i],
3065 auto_pin_cfg_labels[i],
3066 idx, 0x0b);
3067 if (err < 0)
3068 return err;
3069 imux->items[imux->num_items].label =
3070 auto_pin_cfg_labels[i];
3071 imux->items[imux->num_items].index =
3072 alc880_input_pin_idx(cfg->input_pins[i]);
3073 imux->num_items++;
3076 return 0;
3079 static void alc880_auto_set_output_and_unmute(struct hda_codec *codec,
3080 hda_nid_t nid, int pin_type,
3081 int dac_idx)
3083 /* set as output */
3084 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
3085 pin_type);
3086 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
3087 AMP_OUT_UNMUTE);
3088 /* need the manual connection? */
3089 if (alc880_is_multi_pin(nid)) {
3090 struct alc_spec *spec = codec->spec;
3091 int idx = alc880_multi_pin_idx(nid);
3092 snd_hda_codec_write(codec, alc880_idx_to_selector(idx), 0,
3093 AC_VERB_SET_CONNECT_SEL,
3094 alc880_dac_to_idx(spec->multiout.dac_nids[dac_idx]));
3098 static void alc880_auto_init_multi_out(struct hda_codec *codec)
3100 struct alc_spec *spec = codec->spec;
3101 int i;
3103 alc_subsystem_id(codec, 0x15, 0x1b, 0x14);
3104 for (i = 0; i < spec->autocfg.line_outs; i++) {
3105 hda_nid_t nid = spec->autocfg.line_out_pins[i];
3106 alc880_auto_set_output_and_unmute(codec, nid, PIN_OUT, i);
3110 static void alc880_auto_init_extra_out(struct hda_codec *codec)
3112 struct alc_spec *spec = codec->spec;
3113 hda_nid_t pin;
3115 pin = spec->autocfg.speaker_pins[0];
3116 if (pin) /* connect to front */
3117 alc880_auto_set_output_and_unmute(codec, pin, PIN_OUT, 0);
3118 pin = spec->autocfg.hp_pins[0];
3119 if (pin) /* connect to front */
3120 alc880_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
3123 static void alc880_auto_init_analog_input(struct hda_codec *codec)
3125 struct alc_spec *spec = codec->spec;
3126 int i;
3128 for (i = 0; i < AUTO_PIN_LAST; i++) {
3129 hda_nid_t nid = spec->autocfg.input_pins[i];
3130 if (alc880_is_input_pin(nid)) {
3131 snd_hda_codec_write(codec, nid, 0,
3132 AC_VERB_SET_PIN_WIDGET_CONTROL,
3133 i <= AUTO_PIN_FRONT_MIC ?
3134 PIN_VREF80 : PIN_IN);
3135 if (nid != ALC880_PIN_CD_NID)
3136 snd_hda_codec_write(codec, nid, 0,
3137 AC_VERB_SET_AMP_GAIN_MUTE,
3138 AMP_OUT_MUTE);
3143 /* parse the BIOS configuration and set up the alc_spec */
3144 /* return 1 if successful, 0 if the proper config is not found,
3145 * or a negative error code
3147 static int alc880_parse_auto_config(struct hda_codec *codec)
3149 struct alc_spec *spec = codec->spec;
3150 int err;
3151 static hda_nid_t alc880_ignore[] = { 0x1d, 0 };
3153 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
3154 alc880_ignore);
3155 if (err < 0)
3156 return err;
3157 if (!spec->autocfg.line_outs)
3158 return 0; /* can't find valid BIOS pin config */
3160 err = alc880_auto_fill_dac_nids(spec, &spec->autocfg);
3161 if (err < 0)
3162 return err;
3163 err = alc880_auto_create_multi_out_ctls(spec, &spec->autocfg);
3164 if (err < 0)
3165 return err;
3166 err = alc880_auto_create_extra_out(spec,
3167 spec->autocfg.speaker_pins[0],
3168 "Speaker");
3169 if (err < 0)
3170 return err;
3171 err = alc880_auto_create_extra_out(spec, spec->autocfg.hp_pins[0],
3172 "Headphone");
3173 if (err < 0)
3174 return err;
3175 err = alc880_auto_create_analog_input_ctls(spec, &spec->autocfg);
3176 if (err < 0)
3177 return err;
3179 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
3181 if (spec->autocfg.dig_out_pin)
3182 spec->multiout.dig_out_nid = ALC880_DIGOUT_NID;
3183 if (spec->autocfg.dig_in_pin)
3184 spec->dig_in_nid = ALC880_DIGIN_NID;
3186 if (spec->kctl_alloc)
3187 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
3189 spec->init_verbs[spec->num_init_verbs++] = alc880_volume_init_verbs;
3191 spec->num_mux_defs = 1;
3192 spec->input_mux = &spec->private_imux;
3194 return 1;
3197 /* additional initialization for auto-configuration model */
3198 static void alc880_auto_init(struct hda_codec *codec)
3200 alc880_auto_init_multi_out(codec);
3201 alc880_auto_init_extra_out(codec);
3202 alc880_auto_init_analog_input(codec);
3206 * OK, here we have finally the patch for ALC880
3209 static int patch_alc880(struct hda_codec *codec)
3211 struct alc_spec *spec;
3212 int board_config;
3213 int err;
3215 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
3216 if (spec == NULL)
3217 return -ENOMEM;
3219 codec->spec = spec;
3221 board_config = snd_hda_check_board_config(codec, ALC880_MODEL_LAST,
3222 alc880_models,
3223 alc880_cfg_tbl);
3224 if (board_config < 0) {
3225 printk(KERN_INFO "hda_codec: Unknown model for ALC880, "
3226 "trying auto-probe from BIOS...\n");
3227 board_config = ALC880_AUTO;
3230 if (board_config == ALC880_AUTO) {
3231 /* automatic parse from the BIOS config */
3232 err = alc880_parse_auto_config(codec);
3233 if (err < 0) {
3234 alc_free(codec);
3235 return err;
3236 } else if (!err) {
3237 printk(KERN_INFO
3238 "hda_codec: Cannot set up configuration "
3239 "from BIOS. Using 3-stack mode...\n");
3240 board_config = ALC880_3ST;
3244 if (board_config != ALC880_AUTO)
3245 setup_preset(spec, &alc880_presets[board_config]);
3247 spec->stream_name_analog = "ALC880 Analog";
3248 spec->stream_analog_playback = &alc880_pcm_analog_playback;
3249 spec->stream_analog_capture = &alc880_pcm_analog_capture;
3251 spec->stream_name_digital = "ALC880 Digital";
3252 spec->stream_digital_playback = &alc880_pcm_digital_playback;
3253 spec->stream_digital_capture = &alc880_pcm_digital_capture;
3255 if (!spec->adc_nids && spec->input_mux) {
3256 /* check whether NID 0x07 is valid */
3257 unsigned int wcap = get_wcaps(codec, alc880_adc_nids[0]);
3258 /* get type */
3259 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
3260 if (wcap != AC_WID_AUD_IN) {
3261 spec->adc_nids = alc880_adc_nids_alt;
3262 spec->num_adc_nids = ARRAY_SIZE(alc880_adc_nids_alt);
3263 spec->mixers[spec->num_mixers] =
3264 alc880_capture_alt_mixer;
3265 spec->num_mixers++;
3266 } else {
3267 spec->adc_nids = alc880_adc_nids;
3268 spec->num_adc_nids = ARRAY_SIZE(alc880_adc_nids);
3269 spec->mixers[spec->num_mixers] = alc880_capture_mixer;
3270 spec->num_mixers++;
3274 codec->patch_ops = alc_patch_ops;
3275 if (board_config == ALC880_AUTO)
3276 spec->init_hook = alc880_auto_init;
3278 return 0;
3283 * ALC260 support
3286 static hda_nid_t alc260_dac_nids[1] = {
3287 /* front */
3288 0x02,
3291 static hda_nid_t alc260_adc_nids[1] = {
3292 /* ADC0 */
3293 0x04,
3296 static hda_nid_t alc260_adc_nids_alt[1] = {
3297 /* ADC1 */
3298 0x05,
3301 static hda_nid_t alc260_hp_adc_nids[2] = {
3302 /* ADC1, 0 */
3303 0x05, 0x04
3306 /* NIDs used when simultaneous access to both ADCs makes sense. Note that
3307 * alc260_capture_mixer assumes ADC0 (nid 0x04) is the first ADC.
3309 static hda_nid_t alc260_dual_adc_nids[2] = {
3310 /* ADC0, ADC1 */
3311 0x04, 0x05
3314 #define ALC260_DIGOUT_NID 0x03
3315 #define ALC260_DIGIN_NID 0x06
3317 static struct hda_input_mux alc260_capture_source = {
3318 .num_items = 4,
3319 .items = {
3320 { "Mic", 0x0 },
3321 { "Front Mic", 0x1 },
3322 { "Line", 0x2 },
3323 { "CD", 0x4 },
3327 /* On Fujitsu S702x laptops capture only makes sense from Mic/LineIn jack,
3328 * headphone jack and the internal CD lines since these are the only pins at
3329 * which audio can appear. For flexibility, also allow the option of
3330 * recording the mixer output on the second ADC (ADC0 doesn't have a
3331 * connection to the mixer output).
3333 static struct hda_input_mux alc260_fujitsu_capture_sources[2] = {
3335 .num_items = 3,
3336 .items = {
3337 { "Mic/Line", 0x0 },
3338 { "CD", 0x4 },
3339 { "Headphone", 0x2 },
3343 .num_items = 4,
3344 .items = {
3345 { "Mic/Line", 0x0 },
3346 { "CD", 0x4 },
3347 { "Headphone", 0x2 },
3348 { "Mixer", 0x5 },
3354 /* Acer TravelMate(/Extensa/Aspire) notebooks have similar configuration to
3355 * the Fujitsu S702x, but jacks are marked differently.
3357 static struct hda_input_mux alc260_acer_capture_sources[2] = {
3359 .num_items = 4,
3360 .items = {
3361 { "Mic", 0x0 },
3362 { "Line", 0x2 },
3363 { "CD", 0x4 },
3364 { "Headphone", 0x5 },
3368 .num_items = 5,
3369 .items = {
3370 { "Mic", 0x0 },
3371 { "Line", 0x2 },
3372 { "CD", 0x4 },
3373 { "Headphone", 0x6 },
3374 { "Mixer", 0x5 },
3379 * This is just place-holder, so there's something for alc_build_pcms to look
3380 * at when it calculates the maximum number of channels. ALC260 has no mixer
3381 * element which allows changing the channel mode, so the verb list is
3382 * never used.
3384 static struct hda_channel_mode alc260_modes[1] = {
3385 { 2, NULL },
3389 /* Mixer combinations
3391 * basic: base_output + input + pc_beep + capture
3392 * HP: base_output + input + capture_alt
3393 * HP_3013: hp_3013 + input + capture
3394 * fujitsu: fujitsu + capture
3395 * acer: acer + capture
3398 static struct snd_kcontrol_new alc260_base_output_mixer[] = {
3399 HDA_CODEC_VOLUME("Front Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3400 HDA_BIND_MUTE("Front Playback Switch", 0x08, 2, HDA_INPUT),
3401 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x09, 0x0, HDA_OUTPUT),
3402 HDA_BIND_MUTE("Headphone Playback Switch", 0x09, 2, HDA_INPUT),
3403 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
3404 HDA_BIND_MUTE_MONO("Mono Playback Switch", 0x0a, 1, 2, HDA_INPUT),
3405 { } /* end */
3408 static struct snd_kcontrol_new alc260_input_mixer[] = {
3409 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
3410 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
3411 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
3412 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
3413 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
3414 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
3415 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x07, 0x01, HDA_INPUT),
3416 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x07, 0x01, HDA_INPUT),
3417 { } /* end */
3420 static struct snd_kcontrol_new alc260_pc_beep_mixer[] = {
3421 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x07, 0x05, HDA_INPUT),
3422 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x07, 0x05, HDA_INPUT),
3423 { } /* end */
3426 static struct snd_kcontrol_new alc260_hp_3013_mixer[] = {
3427 HDA_CODEC_VOLUME("Front Playback Volume", 0x09, 0x0, HDA_OUTPUT),
3428 HDA_CODEC_MUTE("Front Playback Switch", 0x10, 0x0, HDA_OUTPUT),
3429 HDA_CODEC_VOLUME("Aux-In Playback Volume", 0x07, 0x06, HDA_INPUT),
3430 HDA_CODEC_MUTE("Aux-In Playback Switch", 0x07, 0x06, HDA_INPUT),
3431 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3432 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
3433 HDA_CODEC_VOLUME_MONO("iSpeaker Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
3434 HDA_CODEC_MUTE_MONO("iSpeaker Playback Switch", 0x11, 1, 0x0, HDA_OUTPUT),
3435 { } /* end */
3438 /* Fujitsu S702x series laptops. ALC260 pin usage: Mic/Line jack = 0x12,
3439 * HP jack = 0x14, CD audio = 0x16, internal speaker = 0x10.
3441 static struct snd_kcontrol_new alc260_fujitsu_mixer[] = {
3442 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3443 HDA_BIND_MUTE("Headphone Playback Switch", 0x08, 2, HDA_INPUT),
3444 ALC_PIN_MODE("Headphone Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
3445 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
3446 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
3447 HDA_CODEC_VOLUME("Mic/Line Playback Volume", 0x07, 0x0, HDA_INPUT),
3448 HDA_CODEC_MUTE("Mic/Line Playback Switch", 0x07, 0x0, HDA_INPUT),
3449 ALC_PIN_MODE("Mic/Line Jack Mode", 0x12, ALC_PIN_DIR_IN),
3450 HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
3451 HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
3452 HDA_CODEC_VOLUME("Internal Speaker Playback Volume", 0x09, 0x0, HDA_OUTPUT),
3453 HDA_BIND_MUTE("Internal Speaker Playback Switch", 0x09, 2, HDA_INPUT),
3454 { } /* end */
3457 /* Mixer for Acer TravelMate(/Extensa/Aspire) notebooks. Note that current
3458 * versions of the ALC260 don't act on requests to enable mic bias from NID
3459 * 0x0f (used to drive the headphone jack in these laptops). The ALC260
3460 * datasheet doesn't mention this restriction. At this stage it's not clear
3461 * whether this behaviour is intentional or is a hardware bug in chip
3462 * revisions available in early 2006. Therefore for now allow the
3463 * "Headphone Jack Mode" control to span all choices, but if it turns out
3464 * that the lack of mic bias for this NID is intentional we could change the
3465 * mode from ALC_PIN_DIR_INOUT to ALC_PIN_DIR_INOUT_NOMICBIAS.
3467 * In addition, Acer TravelMate(/Extensa/Aspire) notebooks in early 2006
3468 * don't appear to make the mic bias available from the "line" jack, even
3469 * though the NID used for this jack (0x14) can supply it. The theory is
3470 * that perhaps Acer have included blocking capacitors between the ALC260
3471 * and the output jack. If this turns out to be the case for all such
3472 * models the "Line Jack Mode" mode could be changed from ALC_PIN_DIR_INOUT
3473 * to ALC_PIN_DIR_INOUT_NOMICBIAS.
3475 * The C20x Tablet series have a mono internal speaker which is controlled
3476 * via the chip's Mono sum widget and pin complex, so include the necessary
3477 * controls for such models. On models without a "mono speaker" the control
3478 * won't do anything.
3480 static struct snd_kcontrol_new alc260_acer_mixer[] = {
3481 HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3482 HDA_BIND_MUTE("Master Playback Switch", 0x08, 2, HDA_INPUT),
3483 ALC_PIN_MODE("Headphone Jack Mode", 0x0f, ALC_PIN_DIR_INOUT),
3484 HDA_CODEC_VOLUME_MONO("Mono Speaker Playback Volume", 0x0a, 1, 0x0,
3485 HDA_OUTPUT),
3486 HDA_BIND_MUTE_MONO("Mono Speaker Playback Switch", 0x0a, 1, 2,
3487 HDA_INPUT),
3488 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
3489 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
3490 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
3491 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
3492 ALC_PIN_MODE("Mic Jack Mode", 0x12, ALC_PIN_DIR_IN),
3493 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
3494 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
3495 ALC_PIN_MODE("Line Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
3496 HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
3497 HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
3498 { } /* end */
3501 /* Packard bell V7900 ALC260 pin usage: HP = 0x0f, Mic jack = 0x12,
3502 * Line In jack = 0x14, CD audio = 0x16, pc beep = 0x17.
3504 static struct snd_kcontrol_new alc260_will_mixer[] = {
3505 HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3506 HDA_BIND_MUTE("Master Playback Switch", 0x08, 0x2, HDA_INPUT),
3507 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
3508 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
3509 ALC_PIN_MODE("Mic Jack Mode", 0x12, ALC_PIN_DIR_IN),
3510 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
3511 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
3512 ALC_PIN_MODE("Line Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
3513 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
3514 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
3515 HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
3516 HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
3517 { } /* end */
3520 /* Replacer 672V ALC260 pin usage: Mic jack = 0x12,
3521 * Line In jack = 0x14, ATAPI Mic = 0x13, speaker = 0x0f.
3523 static struct snd_kcontrol_new alc260_replacer_672v_mixer[] = {
3524 HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3525 HDA_BIND_MUTE("Master Playback Switch", 0x08, 0x2, HDA_INPUT),
3526 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
3527 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
3528 ALC_PIN_MODE("Mic Jack Mode", 0x12, ALC_PIN_DIR_IN),
3529 HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x07, 0x1, HDA_INPUT),
3530 HDA_CODEC_MUTE("ATATI Mic Playback Switch", 0x07, 0x1, HDA_INPUT),
3531 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
3532 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
3533 ALC_PIN_MODE("Line Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
3534 { } /* end */
3537 /* capture mixer elements */
3538 static struct snd_kcontrol_new alc260_capture_mixer[] = {
3539 HDA_CODEC_VOLUME("Capture Volume", 0x04, 0x0, HDA_INPUT),
3540 HDA_CODEC_MUTE("Capture Switch", 0x04, 0x0, HDA_INPUT),
3541 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x05, 0x0, HDA_INPUT),
3542 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x05, 0x0, HDA_INPUT),
3544 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3545 /* The multiple "Capture Source" controls confuse alsamixer
3546 * So call somewhat different..
3547 * FIXME: the controls appear in the "playback" view!
3549 /* .name = "Capture Source", */
3550 .name = "Input Source",
3551 .count = 2,
3552 .info = alc_mux_enum_info,
3553 .get = alc_mux_enum_get,
3554 .put = alc_mux_enum_put,
3556 { } /* end */
3559 static struct snd_kcontrol_new alc260_capture_alt_mixer[] = {
3560 HDA_CODEC_VOLUME("Capture Volume", 0x05, 0x0, HDA_INPUT),
3561 HDA_CODEC_MUTE("Capture Switch", 0x05, 0x0, HDA_INPUT),
3563 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3564 /* The multiple "Capture Source" controls confuse alsamixer
3565 * So call somewhat different..
3566 * FIXME: the controls appear in the "playback" view!
3568 /* .name = "Capture Source", */
3569 .name = "Input Source",
3570 .count = 1,
3571 .info = alc_mux_enum_info,
3572 .get = alc_mux_enum_get,
3573 .put = alc_mux_enum_put,
3575 { } /* end */
3579 * initialization verbs
3581 static struct hda_verb alc260_init_verbs[] = {
3582 /* Line In pin widget for input */
3583 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3584 /* CD pin widget for input */
3585 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3586 /* Mic1 (rear panel) pin widget for input and vref at 80% */
3587 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
3588 /* Mic2 (front panel) pin widget for input and vref at 80% */
3589 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
3590 /* LINE-2 is used for line-out in rear */
3591 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3592 /* select line-out */
3593 {0x0e, AC_VERB_SET_CONNECT_SEL, 0x00},
3594 /* LINE-OUT pin */
3595 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3596 /* enable HP */
3597 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
3598 /* enable Mono */
3599 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3600 /* mute capture amp left and right */
3601 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3602 /* set connection select to line in (default select for this ADC) */
3603 {0x04, AC_VERB_SET_CONNECT_SEL, 0x02},
3604 /* mute capture amp left and right */
3605 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3606 /* set connection select to line in (default select for this ADC) */
3607 {0x05, AC_VERB_SET_CONNECT_SEL, 0x02},
3608 /* set vol=0 Line-Out mixer amp left and right */
3609 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3610 /* unmute pin widget amp left and right (no gain on this amp) */
3611 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3612 /* set vol=0 HP mixer amp left and right */
3613 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3614 /* unmute pin widget amp left and right (no gain on this amp) */
3615 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3616 /* set vol=0 Mono mixer amp left and right */
3617 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3618 /* unmute pin widget amp left and right (no gain on this amp) */
3619 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3620 /* unmute LINE-2 out pin */
3621 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3622 /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 &
3623 * Line In 2 = 0x03
3625 /* mute CD */
3626 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
3627 /* mute Line In */
3628 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
3629 /* mute Mic */
3630 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3631 /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
3632 /* mute Front out path */
3633 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3634 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3635 /* mute Headphone out path */
3636 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3637 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3638 /* mute Mono out path */
3639 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3640 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3644 #if 0 /* should be identical with alc260_init_verbs? */
3645 static struct hda_verb alc260_hp_init_verbs[] = {
3646 /* Headphone and output */
3647 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
3648 /* mono output */
3649 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3650 /* Mic1 (rear panel) pin widget for input and vref at 80% */
3651 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
3652 /* Mic2 (front panel) pin widget for input and vref at 80% */
3653 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
3654 /* Line In pin widget for input */
3655 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3656 /* Line-2 pin widget for output */
3657 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3658 /* CD pin widget for input */
3659 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3660 /* unmute amp left and right */
3661 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000},
3662 /* set connection select to line in (default select for this ADC) */
3663 {0x04, AC_VERB_SET_CONNECT_SEL, 0x02},
3664 /* unmute Line-Out mixer amp left and right (volume = 0) */
3665 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
3666 /* mute pin widget amp left and right (no gain on this amp) */
3667 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
3668 /* unmute HP mixer amp left and right (volume = 0) */
3669 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
3670 /* mute pin widget amp left and right (no gain on this amp) */
3671 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
3672 /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 &
3673 * Line In 2 = 0x03
3675 /* unmute CD */
3676 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
3677 /* unmute Line In */
3678 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
3679 /* unmute Mic */
3680 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3681 /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
3682 /* Unmute Front out path */
3683 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3684 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3685 /* Unmute Headphone out path */
3686 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3687 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3688 /* Unmute Mono out path */
3689 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3690 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3693 #endif
3695 static struct hda_verb alc260_hp_3013_init_verbs[] = {
3696 /* Line out and output */
3697 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3698 /* mono output */
3699 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3700 /* Mic1 (rear panel) pin widget for input and vref at 80% */
3701 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
3702 /* Mic2 (front panel) pin widget for input and vref at 80% */
3703 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
3704 /* Line In pin widget for input */
3705 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3706 /* Headphone pin widget for output */
3707 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
3708 /* CD pin widget for input */
3709 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3710 /* unmute amp left and right */
3711 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000},
3712 /* set connection select to line in (default select for this ADC) */
3713 {0x04, AC_VERB_SET_CONNECT_SEL, 0x02},
3714 /* unmute Line-Out mixer amp left and right (volume = 0) */
3715 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
3716 /* mute pin widget amp left and right (no gain on this amp) */
3717 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
3718 /* unmute HP mixer amp left and right (volume = 0) */
3719 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
3720 /* mute pin widget amp left and right (no gain on this amp) */
3721 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
3722 /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 &
3723 * Line In 2 = 0x03
3725 /* unmute CD */
3726 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
3727 /* unmute Line In */
3728 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
3729 /* unmute Mic */
3730 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3731 /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
3732 /* Unmute Front out path */
3733 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3734 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3735 /* Unmute Headphone out path */
3736 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3737 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3738 /* Unmute Mono out path */
3739 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3740 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3744 /* Initialisation sequence for ALC260 as configured in Fujitsu S702x
3745 * laptops. ALC260 pin usage: Mic/Line jack = 0x12, HP jack = 0x14, CD
3746 * audio = 0x16, internal speaker = 0x10.
3748 static struct hda_verb alc260_fujitsu_init_verbs[] = {
3749 /* Disable all GPIOs */
3750 {0x01, AC_VERB_SET_GPIO_MASK, 0},
3751 /* Internal speaker is connected to headphone pin */
3752 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
3753 /* Headphone/Line-out jack connects to Line1 pin; make it an output */
3754 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3755 /* Mic/Line-in jack is connected to mic1 pin, so make it an input */
3756 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3757 /* Ensure all other unused pins are disabled and muted. */
3758 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3759 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3760 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3761 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3762 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3763 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3764 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3765 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3767 /* Disable digital (SPDIF) pins */
3768 {0x03, AC_VERB_SET_DIGI_CONVERT_1, 0},
3769 {0x06, AC_VERB_SET_DIGI_CONVERT_1, 0},
3771 /* Ensure Line1 pin widget takes its input from the OUT1 sum bus
3772 * when acting as an output.
3774 {0x0d, AC_VERB_SET_CONNECT_SEL, 0},
3776 /* Start with output sum widgets muted and their output gains at min */
3777 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3778 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3779 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3780 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3781 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3782 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3783 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3784 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3785 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3787 /* Unmute HP pin widget amp left and right (no equiv mixer ctrl) */
3788 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3789 /* Unmute Line1 pin widget output buffer since it starts as an output.
3790 * If the pin mode is changed by the user the pin mode control will
3791 * take care of enabling the pin's input/output buffers as needed.
3792 * Therefore there's no need to enable the input buffer at this
3793 * stage.
3795 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3796 /* Unmute input buffer of pin widget used for Line-in (no equiv
3797 * mixer ctrl)
3799 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3801 /* Mute capture amp left and right */
3802 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3803 /* Set ADC connection select to match default mixer setting - line
3804 * in (on mic1 pin)
3806 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
3808 /* Do the same for the second ADC: mute capture input amp and
3809 * set ADC connection to line in (on mic1 pin)
3811 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3812 {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
3814 /* Mute all inputs to mixer widget (even unconnected ones) */
3815 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
3816 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
3817 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
3818 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
3819 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
3820 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
3821 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
3822 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
3827 /* Initialisation sequence for ALC260 as configured in Acer TravelMate and
3828 * similar laptops (adapted from Fujitsu init verbs).
3830 static struct hda_verb alc260_acer_init_verbs[] = {
3831 /* On TravelMate laptops, GPIO 0 enables the internal speaker and
3832 * the headphone jack. Turn this on and rely on the standard mute
3833 * methods whenever the user wants to turn these outputs off.
3835 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
3836 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
3837 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
3838 /* Internal speaker/Headphone jack is connected to Line-out pin */
3839 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
3840 /* Internal microphone/Mic jack is connected to Mic1 pin */
3841 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50},
3842 /* Line In jack is connected to Line1 pin */
3843 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3844 /* Some Acers (eg: C20x Tablets) use Mono pin for internal speaker */
3845 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
3846 /* Ensure all other unused pins are disabled and muted. */
3847 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3848 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3849 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3850 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3851 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3852 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3853 /* Disable digital (SPDIF) pins */
3854 {0x03, AC_VERB_SET_DIGI_CONVERT_1, 0},
3855 {0x06, AC_VERB_SET_DIGI_CONVERT_1, 0},
3857 /* Ensure Mic1 and Line1 pin widgets take input from the OUT1 sum
3858 * bus when acting as outputs.
3860 {0x0b, AC_VERB_SET_CONNECT_SEL, 0},
3861 {0x0d, AC_VERB_SET_CONNECT_SEL, 0},
3863 /* Start with output sum widgets muted and their output gains at min */
3864 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3865 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3866 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3867 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3868 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3869 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3870 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3871 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3872 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3874 /* Unmute Line-out pin widget amp left and right
3875 * (no equiv mixer ctrl)
3877 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3878 /* Unmute mono pin widget amp output (no equiv mixer ctrl) */
3879 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3880 /* Unmute Mic1 and Line1 pin widget input buffers since they start as
3881 * inputs. If the pin mode is changed by the user the pin mode control
3882 * will take care of enabling the pin's input/output buffers as needed.
3883 * Therefore there's no need to enable the input buffer at this
3884 * stage.
3886 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3887 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3889 /* Mute capture amp left and right */
3890 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3891 /* Set ADC connection select to match default mixer setting - mic
3892 * (on mic1 pin)
3894 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
3896 /* Do similar with the second ADC: mute capture input amp and
3897 * set ADC connection to mic to match ALSA's default state.
3899 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3900 {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
3902 /* Mute all inputs to mixer widget (even unconnected ones) */
3903 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
3904 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
3905 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
3906 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
3907 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
3908 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
3909 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
3910 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
3915 static struct hda_verb alc260_will_verbs[] = {
3916 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
3917 {0x0b, AC_VERB_SET_CONNECT_SEL, 0x00},
3918 {0x0d, AC_VERB_SET_CONNECT_SEL, 0x00},
3919 {0x0f, AC_VERB_SET_EAPD_BTLENABLE, 0x02},
3920 {0x1a, AC_VERB_SET_COEF_INDEX, 0x07},
3921 {0x1a, AC_VERB_SET_PROC_COEF, 0x3040},
3925 static struct hda_verb alc260_replacer_672v_verbs[] = {
3926 {0x0f, AC_VERB_SET_EAPD_BTLENABLE, 0x02},
3927 {0x1a, AC_VERB_SET_COEF_INDEX, 0x07},
3928 {0x1a, AC_VERB_SET_PROC_COEF, 0x3050},
3930 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
3931 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
3932 {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
3934 {0x0f, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
3938 /* toggle speaker-output according to the hp-jack state */
3939 static void alc260_replacer_672v_automute(struct hda_codec *codec)
3941 unsigned int present;
3943 /* speaker --> GPIO Data 0, hp or spdif --> GPIO data 1 */
3944 present = snd_hda_codec_read(codec, 0x0f, 0,
3945 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
3946 if (present) {
3947 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA, 1);
3948 snd_hda_codec_write(codec, 0x0f, 0,
3949 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP);
3950 } else {
3951 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA, 0);
3952 snd_hda_codec_write(codec, 0x0f, 0,
3953 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3957 static void alc260_replacer_672v_unsol_event(struct hda_codec *codec,
3958 unsigned int res)
3960 if ((res >> 26) == ALC880_HP_EVENT)
3961 alc260_replacer_672v_automute(codec);
3964 /* Test configuration for debugging, modelled after the ALC880 test
3965 * configuration.
3967 #ifdef CONFIG_SND_DEBUG
3968 static hda_nid_t alc260_test_dac_nids[1] = {
3969 0x02,
3971 static hda_nid_t alc260_test_adc_nids[2] = {
3972 0x04, 0x05,
3974 /* For testing the ALC260, each input MUX needs its own definition since
3975 * the signal assignments are different. This assumes that the first ADC
3976 * is NID 0x04.
3978 static struct hda_input_mux alc260_test_capture_sources[2] = {
3980 .num_items = 7,
3981 .items = {
3982 { "MIC1 pin", 0x0 },
3983 { "MIC2 pin", 0x1 },
3984 { "LINE1 pin", 0x2 },
3985 { "LINE2 pin", 0x3 },
3986 { "CD pin", 0x4 },
3987 { "LINE-OUT pin", 0x5 },
3988 { "HP-OUT pin", 0x6 },
3992 .num_items = 8,
3993 .items = {
3994 { "MIC1 pin", 0x0 },
3995 { "MIC2 pin", 0x1 },
3996 { "LINE1 pin", 0x2 },
3997 { "LINE2 pin", 0x3 },
3998 { "CD pin", 0x4 },
3999 { "Mixer", 0x5 },
4000 { "LINE-OUT pin", 0x6 },
4001 { "HP-OUT pin", 0x7 },
4005 static struct snd_kcontrol_new alc260_test_mixer[] = {
4006 /* Output driver widgets */
4007 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
4008 HDA_BIND_MUTE_MONO("Mono Playback Switch", 0x0a, 1, 2, HDA_INPUT),
4009 HDA_CODEC_VOLUME("LOUT2 Playback Volume", 0x09, 0x0, HDA_OUTPUT),
4010 HDA_BIND_MUTE("LOUT2 Playback Switch", 0x09, 2, HDA_INPUT),
4011 HDA_CODEC_VOLUME("LOUT1 Playback Volume", 0x08, 0x0, HDA_OUTPUT),
4012 HDA_BIND_MUTE("LOUT1 Playback Switch", 0x08, 2, HDA_INPUT),
4014 /* Modes for retasking pin widgets
4015 * Note: the ALC260 doesn't seem to act on requests to enable mic
4016 * bias from NIDs 0x0f and 0x10. The ALC260 datasheet doesn't
4017 * mention this restriction. At this stage it's not clear whether
4018 * this behaviour is intentional or is a hardware bug in chip
4019 * revisions available at least up until early 2006. Therefore for
4020 * now allow the "HP-OUT" and "LINE-OUT" Mode controls to span all
4021 * choices, but if it turns out that the lack of mic bias for these
4022 * NIDs is intentional we could change their modes from
4023 * ALC_PIN_DIR_INOUT to ALC_PIN_DIR_INOUT_NOMICBIAS.
4025 ALC_PIN_MODE("HP-OUT pin mode", 0x10, ALC_PIN_DIR_INOUT),
4026 ALC_PIN_MODE("LINE-OUT pin mode", 0x0f, ALC_PIN_DIR_INOUT),
4027 ALC_PIN_MODE("LINE2 pin mode", 0x15, ALC_PIN_DIR_INOUT),
4028 ALC_PIN_MODE("LINE1 pin mode", 0x14, ALC_PIN_DIR_INOUT),
4029 ALC_PIN_MODE("MIC2 pin mode", 0x13, ALC_PIN_DIR_INOUT),
4030 ALC_PIN_MODE("MIC1 pin mode", 0x12, ALC_PIN_DIR_INOUT),
4032 /* Loopback mixer controls */
4033 HDA_CODEC_VOLUME("MIC1 Playback Volume", 0x07, 0x00, HDA_INPUT),
4034 HDA_CODEC_MUTE("MIC1 Playback Switch", 0x07, 0x00, HDA_INPUT),
4035 HDA_CODEC_VOLUME("MIC2 Playback Volume", 0x07, 0x01, HDA_INPUT),
4036 HDA_CODEC_MUTE("MIC2 Playback Switch", 0x07, 0x01, HDA_INPUT),
4037 HDA_CODEC_VOLUME("LINE1 Playback Volume", 0x07, 0x02, HDA_INPUT),
4038 HDA_CODEC_MUTE("LINE1 Playback Switch", 0x07, 0x02, HDA_INPUT),
4039 HDA_CODEC_VOLUME("LINE2 Playback Volume", 0x07, 0x03, HDA_INPUT),
4040 HDA_CODEC_MUTE("LINE2 Playback Switch", 0x07, 0x03, HDA_INPUT),
4041 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
4042 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
4043 HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
4044 HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
4045 HDA_CODEC_VOLUME("LINE-OUT loopback Playback Volume", 0x07, 0x06, HDA_INPUT),
4046 HDA_CODEC_MUTE("LINE-OUT loopback Playback Switch", 0x07, 0x06, HDA_INPUT),
4047 HDA_CODEC_VOLUME("HP-OUT loopback Playback Volume", 0x07, 0x7, HDA_INPUT),
4048 HDA_CODEC_MUTE("HP-OUT loopback Playback Switch", 0x07, 0x7, HDA_INPUT),
4050 /* Controls for GPIO pins, assuming they are configured as outputs */
4051 ALC_GPIO_DATA_SWITCH("GPIO pin 0", 0x01, 0x01),
4052 ALC_GPIO_DATA_SWITCH("GPIO pin 1", 0x01, 0x02),
4053 ALC_GPIO_DATA_SWITCH("GPIO pin 2", 0x01, 0x04),
4054 ALC_GPIO_DATA_SWITCH("GPIO pin 3", 0x01, 0x08),
4056 /* Switches to allow the digital IO pins to be enabled. The datasheet
4057 * is ambigious as to which NID is which; testing on laptops which
4058 * make this output available should provide clarification.
4060 ALC_SPDIF_CTRL_SWITCH("SPDIF Playback Switch", 0x03, 0x01),
4061 ALC_SPDIF_CTRL_SWITCH("SPDIF Capture Switch", 0x06, 0x01),
4063 { } /* end */
4065 static struct hda_verb alc260_test_init_verbs[] = {
4066 /* Enable all GPIOs as outputs with an initial value of 0 */
4067 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x0f},
4068 {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
4069 {0x01, AC_VERB_SET_GPIO_MASK, 0x0f},
4071 /* Enable retasking pins as output, initially without power amp */
4072 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4073 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4074 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4075 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4076 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4077 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4079 /* Disable digital (SPDIF) pins initially, but users can enable
4080 * them via a mixer switch. In the case of SPDIF-out, this initverb
4081 * payload also sets the generation to 0, output to be in "consumer"
4082 * PCM format, copyright asserted, no pre-emphasis and no validity
4083 * control.
4085 {0x03, AC_VERB_SET_DIGI_CONVERT_1, 0},
4086 {0x06, AC_VERB_SET_DIGI_CONVERT_1, 0},
4088 /* Ensure mic1, mic2, line1 and line2 pin widgets take input from the
4089 * OUT1 sum bus when acting as an output.
4091 {0x0b, AC_VERB_SET_CONNECT_SEL, 0},
4092 {0x0c, AC_VERB_SET_CONNECT_SEL, 0},
4093 {0x0d, AC_VERB_SET_CONNECT_SEL, 0},
4094 {0x0e, AC_VERB_SET_CONNECT_SEL, 0},
4096 /* Start with output sum widgets muted and their output gains at min */
4097 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4098 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4099 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4100 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4101 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4102 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4103 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4104 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4105 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4107 /* Unmute retasking pin widget output buffers since the default
4108 * state appears to be output. As the pin mode is changed by the
4109 * user the pin mode control will take care of enabling the pin's
4110 * input/output buffers as needed.
4112 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4113 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4114 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4115 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4116 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4117 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4118 /* Also unmute the mono-out pin widget */
4119 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4121 /* Mute capture amp left and right */
4122 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4123 /* Set ADC connection select to match default mixer setting (mic1
4124 * pin)
4126 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
4128 /* Do the same for the second ADC: mute capture input amp and
4129 * set ADC connection to mic1 pin
4131 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4132 {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
4134 /* Mute all inputs to mixer widget (even unconnected ones) */
4135 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
4136 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
4137 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
4138 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
4139 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
4140 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
4141 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
4142 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
4146 #endif
4148 static struct hda_pcm_stream alc260_pcm_analog_playback = {
4149 .substreams = 1,
4150 .channels_min = 2,
4151 .channels_max = 2,
4154 static struct hda_pcm_stream alc260_pcm_analog_capture = {
4155 .substreams = 1,
4156 .channels_min = 2,
4157 .channels_max = 2,
4160 #define alc260_pcm_digital_playback alc880_pcm_digital_playback
4161 #define alc260_pcm_digital_capture alc880_pcm_digital_capture
4164 * for BIOS auto-configuration
4167 static int alc260_add_playback_controls(struct alc_spec *spec, hda_nid_t nid,
4168 const char *pfx)
4170 hda_nid_t nid_vol;
4171 unsigned long vol_val, sw_val;
4172 char name[32];
4173 int err;
4175 if (nid >= 0x0f && nid < 0x11) {
4176 nid_vol = nid - 0x7;
4177 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, HDA_OUTPUT);
4178 sw_val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
4179 } else if (nid == 0x11) {
4180 nid_vol = nid - 0x7;
4181 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 2, 0, HDA_OUTPUT);
4182 sw_val = HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_OUTPUT);
4183 } else if (nid >= 0x12 && nid <= 0x15) {
4184 nid_vol = 0x08;
4185 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, HDA_OUTPUT);
4186 sw_val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
4187 } else
4188 return 0; /* N/A */
4190 snprintf(name, sizeof(name), "%s Playback Volume", pfx);
4191 err = add_control(spec, ALC_CTL_WIDGET_VOL, name, vol_val);
4192 if (err < 0)
4193 return err;
4194 snprintf(name, sizeof(name), "%s Playback Switch", pfx);
4195 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name, sw_val);
4196 if (err < 0)
4197 return err;
4198 return 1;
4201 /* add playback controls from the parsed DAC table */
4202 static int alc260_auto_create_multi_out_ctls(struct alc_spec *spec,
4203 const struct auto_pin_cfg *cfg)
4205 hda_nid_t nid;
4206 int err;
4208 spec->multiout.num_dacs = 1;
4209 spec->multiout.dac_nids = spec->private_dac_nids;
4210 spec->multiout.dac_nids[0] = 0x02;
4212 nid = cfg->line_out_pins[0];
4213 if (nid) {
4214 err = alc260_add_playback_controls(spec, nid, "Front");
4215 if (err < 0)
4216 return err;
4219 nid = cfg->speaker_pins[0];
4220 if (nid) {
4221 err = alc260_add_playback_controls(spec, nid, "Speaker");
4222 if (err < 0)
4223 return err;
4226 nid = cfg->hp_pins[0];
4227 if (nid) {
4228 err = alc260_add_playback_controls(spec, nid, "Headphone");
4229 if (err < 0)
4230 return err;
4232 return 0;
4235 /* create playback/capture controls for input pins */
4236 static int alc260_auto_create_analog_input_ctls(struct alc_spec *spec,
4237 const struct auto_pin_cfg *cfg)
4239 struct hda_input_mux *imux = &spec->private_imux;
4240 int i, err, idx;
4242 for (i = 0; i < AUTO_PIN_LAST; i++) {
4243 if (cfg->input_pins[i] >= 0x12) {
4244 idx = cfg->input_pins[i] - 0x12;
4245 err = new_analog_input(spec, cfg->input_pins[i],
4246 auto_pin_cfg_labels[i], idx,
4247 0x07);
4248 if (err < 0)
4249 return err;
4250 imux->items[imux->num_items].label =
4251 auto_pin_cfg_labels[i];
4252 imux->items[imux->num_items].index = idx;
4253 imux->num_items++;
4255 if (cfg->input_pins[i] >= 0x0f && cfg->input_pins[i] <= 0x10){
4256 idx = cfg->input_pins[i] - 0x09;
4257 err = new_analog_input(spec, cfg->input_pins[i],
4258 auto_pin_cfg_labels[i], idx,
4259 0x07);
4260 if (err < 0)
4261 return err;
4262 imux->items[imux->num_items].label =
4263 auto_pin_cfg_labels[i];
4264 imux->items[imux->num_items].index = idx;
4265 imux->num_items++;
4268 return 0;
4271 static void alc260_auto_set_output_and_unmute(struct hda_codec *codec,
4272 hda_nid_t nid, int pin_type,
4273 int sel_idx)
4275 /* set as output */
4276 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
4277 pin_type);
4278 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
4279 AMP_OUT_UNMUTE);
4280 /* need the manual connection? */
4281 if (nid >= 0x12) {
4282 int idx = nid - 0x12;
4283 snd_hda_codec_write(codec, idx + 0x0b, 0,
4284 AC_VERB_SET_CONNECT_SEL, sel_idx);
4288 static void alc260_auto_init_multi_out(struct hda_codec *codec)
4290 struct alc_spec *spec = codec->spec;
4291 hda_nid_t nid;
4293 alc_subsystem_id(codec, 0x10, 0x15, 0x0f);
4294 nid = spec->autocfg.line_out_pins[0];
4295 if (nid)
4296 alc260_auto_set_output_and_unmute(codec, nid, PIN_OUT, 0);
4298 nid = spec->autocfg.speaker_pins[0];
4299 if (nid)
4300 alc260_auto_set_output_and_unmute(codec, nid, PIN_OUT, 0);
4302 nid = spec->autocfg.hp_pins[0];
4303 if (nid)
4304 alc260_auto_set_output_and_unmute(codec, nid, PIN_OUT, 0);
4307 #define ALC260_PIN_CD_NID 0x16
4308 static void alc260_auto_init_analog_input(struct hda_codec *codec)
4310 struct alc_spec *spec = codec->spec;
4311 int i;
4313 for (i = 0; i < AUTO_PIN_LAST; i++) {
4314 hda_nid_t nid = spec->autocfg.input_pins[i];
4315 if (nid >= 0x12) {
4316 snd_hda_codec_write(codec, nid, 0,
4317 AC_VERB_SET_PIN_WIDGET_CONTROL,
4318 i <= AUTO_PIN_FRONT_MIC ?
4319 PIN_VREF80 : PIN_IN);
4320 if (nid != ALC260_PIN_CD_NID)
4321 snd_hda_codec_write(codec, nid, 0,
4322 AC_VERB_SET_AMP_GAIN_MUTE,
4323 AMP_OUT_MUTE);
4329 * generic initialization of ADC, input mixers and output mixers
4331 static struct hda_verb alc260_volume_init_verbs[] = {
4333 * Unmute ADC0-1 and set the default input to mic-in
4335 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
4336 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4337 {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
4338 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4340 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
4341 * mixer widget
4342 * Note: PASD motherboards uses the Line In 2 as the input for
4343 * front panel mic (mic 2)
4345 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
4346 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4347 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4348 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
4349 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
4350 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
4353 * Set up output mixers (0x08 - 0x0a)
4355 /* set vol=0 to output mixers */
4356 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4357 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4358 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4359 /* set up input amps for analog loopback */
4360 /* Amp Indices: DAC = 0, mixer = 1 */
4361 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4362 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4363 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4364 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4365 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4366 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4371 static int alc260_parse_auto_config(struct hda_codec *codec)
4373 struct alc_spec *spec = codec->spec;
4374 unsigned int wcap;
4375 int err;
4376 static hda_nid_t alc260_ignore[] = { 0x17, 0 };
4378 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
4379 alc260_ignore);
4380 if (err < 0)
4381 return err;
4382 err = alc260_auto_create_multi_out_ctls(spec, &spec->autocfg);
4383 if (err < 0)
4384 return err;
4385 if (!spec->kctl_alloc)
4386 return 0; /* can't find valid BIOS pin config */
4387 err = alc260_auto_create_analog_input_ctls(spec, &spec->autocfg);
4388 if (err < 0)
4389 return err;
4391 spec->multiout.max_channels = 2;
4393 if (spec->autocfg.dig_out_pin)
4394 spec->multiout.dig_out_nid = ALC260_DIGOUT_NID;
4395 if (spec->kctl_alloc)
4396 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
4398 spec->init_verbs[spec->num_init_verbs++] = alc260_volume_init_verbs;
4400 spec->num_mux_defs = 1;
4401 spec->input_mux = &spec->private_imux;
4403 /* check whether NID 0x04 is valid */
4404 wcap = get_wcaps(codec, 0x04);
4405 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT; /* get type */
4406 if (wcap != AC_WID_AUD_IN) {
4407 spec->adc_nids = alc260_adc_nids_alt;
4408 spec->num_adc_nids = ARRAY_SIZE(alc260_adc_nids_alt);
4409 spec->mixers[spec->num_mixers] = alc260_capture_alt_mixer;
4410 } else {
4411 spec->adc_nids = alc260_adc_nids;
4412 spec->num_adc_nids = ARRAY_SIZE(alc260_adc_nids);
4413 spec->mixers[spec->num_mixers] = alc260_capture_mixer;
4415 spec->num_mixers++;
4417 return 1;
4420 /* additional initialization for auto-configuration model */
4421 static void alc260_auto_init(struct hda_codec *codec)
4423 alc260_auto_init_multi_out(codec);
4424 alc260_auto_init_analog_input(codec);
4428 * ALC260 configurations
4430 static const char *alc260_models[ALC260_MODEL_LAST] = {
4431 [ALC260_BASIC] = "basic",
4432 [ALC260_HP] = "hp",
4433 [ALC260_HP_3013] = "hp-3013",
4434 [ALC260_FUJITSU_S702X] = "fujitsu",
4435 [ALC260_ACER] = "acer",
4436 [ALC260_WILL] = "will",
4437 [ALC260_REPLACER_672V] = "replacer",
4438 #ifdef CONFIG_SND_DEBUG
4439 [ALC260_TEST] = "test",
4440 #endif
4441 [ALC260_AUTO] = "auto",
4444 static struct snd_pci_quirk alc260_cfg_tbl[] = {
4445 SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_ACER),
4446 SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_ACER),
4447 SND_PCI_QUIRK(0x103c, 0x2808, "HP d5700", ALC260_HP_3013),
4448 SND_PCI_QUIRK(0x103c, 0x280a, "HP d5750", ALC260_HP_3013),
4449 SND_PCI_QUIRK(0x103c, 0x3010, "HP", ALC260_HP_3013),
4450 SND_PCI_QUIRK(0x103c, 0x3011, "HP", ALC260_HP),
4451 SND_PCI_QUIRK(0x103c, 0x3012, "HP", ALC260_HP_3013),
4452 SND_PCI_QUIRK(0x103c, 0x3013, "HP", ALC260_HP_3013),
4453 SND_PCI_QUIRK(0x103c, 0x3014, "HP", ALC260_HP),
4454 SND_PCI_QUIRK(0x103c, 0x3015, "HP", ALC260_HP),
4455 SND_PCI_QUIRK(0x103c, 0x3016, "HP", ALC260_HP),
4456 SND_PCI_QUIRK(0x104d, 0x81bb, "Sony VAIO", ALC260_BASIC),
4457 SND_PCI_QUIRK(0x104d, 0x81cc, "Sony VAIO", ALC260_BASIC),
4458 SND_PCI_QUIRK(0x104d, 0x81cd, "Sony VAIO", ALC260_BASIC),
4459 SND_PCI_QUIRK(0x10cf, 0x1326, "Fujitsu S702X", ALC260_FUJITSU_S702X),
4460 SND_PCI_QUIRK(0x152d, 0x0729, "CTL U553W", ALC260_BASIC),
4461 SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_WILL),
4462 SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_REPLACER_672V),
4466 static struct alc_config_preset alc260_presets[] = {
4467 [ALC260_BASIC] = {
4468 .mixers = { alc260_base_output_mixer,
4469 alc260_input_mixer,
4470 alc260_pc_beep_mixer,
4471 alc260_capture_mixer },
4472 .init_verbs = { alc260_init_verbs },
4473 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4474 .dac_nids = alc260_dac_nids,
4475 .num_adc_nids = ARRAY_SIZE(alc260_adc_nids),
4476 .adc_nids = alc260_adc_nids,
4477 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4478 .channel_mode = alc260_modes,
4479 .input_mux = &alc260_capture_source,
4481 [ALC260_HP] = {
4482 .mixers = { alc260_base_output_mixer,
4483 alc260_input_mixer,
4484 alc260_capture_alt_mixer },
4485 .init_verbs = { alc260_init_verbs },
4486 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4487 .dac_nids = alc260_dac_nids,
4488 .num_adc_nids = ARRAY_SIZE(alc260_hp_adc_nids),
4489 .adc_nids = alc260_hp_adc_nids,
4490 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4491 .channel_mode = alc260_modes,
4492 .input_mux = &alc260_capture_source,
4494 [ALC260_HP_3013] = {
4495 .mixers = { alc260_hp_3013_mixer,
4496 alc260_input_mixer,
4497 alc260_capture_alt_mixer },
4498 .init_verbs = { alc260_hp_3013_init_verbs },
4499 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4500 .dac_nids = alc260_dac_nids,
4501 .num_adc_nids = ARRAY_SIZE(alc260_hp_adc_nids),
4502 .adc_nids = alc260_hp_adc_nids,
4503 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4504 .channel_mode = alc260_modes,
4505 .input_mux = &alc260_capture_source,
4507 [ALC260_FUJITSU_S702X] = {
4508 .mixers = { alc260_fujitsu_mixer,
4509 alc260_capture_mixer },
4510 .init_verbs = { alc260_fujitsu_init_verbs },
4511 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4512 .dac_nids = alc260_dac_nids,
4513 .num_adc_nids = ARRAY_SIZE(alc260_dual_adc_nids),
4514 .adc_nids = alc260_dual_adc_nids,
4515 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4516 .channel_mode = alc260_modes,
4517 .num_mux_defs = ARRAY_SIZE(alc260_fujitsu_capture_sources),
4518 .input_mux = alc260_fujitsu_capture_sources,
4520 [ALC260_ACER] = {
4521 .mixers = { alc260_acer_mixer,
4522 alc260_capture_mixer },
4523 .init_verbs = { alc260_acer_init_verbs },
4524 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4525 .dac_nids = alc260_dac_nids,
4526 .num_adc_nids = ARRAY_SIZE(alc260_dual_adc_nids),
4527 .adc_nids = alc260_dual_adc_nids,
4528 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4529 .channel_mode = alc260_modes,
4530 .num_mux_defs = ARRAY_SIZE(alc260_acer_capture_sources),
4531 .input_mux = alc260_acer_capture_sources,
4533 [ALC260_WILL] = {
4534 .mixers = { alc260_will_mixer,
4535 alc260_capture_mixer },
4536 .init_verbs = { alc260_init_verbs, alc260_will_verbs },
4537 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4538 .dac_nids = alc260_dac_nids,
4539 .num_adc_nids = ARRAY_SIZE(alc260_adc_nids),
4540 .adc_nids = alc260_adc_nids,
4541 .dig_out_nid = ALC260_DIGOUT_NID,
4542 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4543 .channel_mode = alc260_modes,
4544 .input_mux = &alc260_capture_source,
4546 [ALC260_REPLACER_672V] = {
4547 .mixers = { alc260_replacer_672v_mixer,
4548 alc260_capture_mixer },
4549 .init_verbs = { alc260_init_verbs, alc260_replacer_672v_verbs },
4550 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4551 .dac_nids = alc260_dac_nids,
4552 .num_adc_nids = ARRAY_SIZE(alc260_adc_nids),
4553 .adc_nids = alc260_adc_nids,
4554 .dig_out_nid = ALC260_DIGOUT_NID,
4555 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4556 .channel_mode = alc260_modes,
4557 .input_mux = &alc260_capture_source,
4558 .unsol_event = alc260_replacer_672v_unsol_event,
4559 .init_hook = alc260_replacer_672v_automute,
4561 #ifdef CONFIG_SND_DEBUG
4562 [ALC260_TEST] = {
4563 .mixers = { alc260_test_mixer,
4564 alc260_capture_mixer },
4565 .init_verbs = { alc260_test_init_verbs },
4566 .num_dacs = ARRAY_SIZE(alc260_test_dac_nids),
4567 .dac_nids = alc260_test_dac_nids,
4568 .num_adc_nids = ARRAY_SIZE(alc260_test_adc_nids),
4569 .adc_nids = alc260_test_adc_nids,
4570 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4571 .channel_mode = alc260_modes,
4572 .num_mux_defs = ARRAY_SIZE(alc260_test_capture_sources),
4573 .input_mux = alc260_test_capture_sources,
4575 #endif
4578 static int patch_alc260(struct hda_codec *codec)
4580 struct alc_spec *spec;
4581 int err, board_config;
4583 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4584 if (spec == NULL)
4585 return -ENOMEM;
4587 codec->spec = spec;
4589 board_config = snd_hda_check_board_config(codec, ALC260_MODEL_LAST,
4590 alc260_models,
4591 alc260_cfg_tbl);
4592 if (board_config < 0) {
4593 snd_printd(KERN_INFO "hda_codec: Unknown model for ALC260, "
4594 "trying auto-probe from BIOS...\n");
4595 board_config = ALC260_AUTO;
4598 if (board_config == ALC260_AUTO) {
4599 /* automatic parse from the BIOS config */
4600 err = alc260_parse_auto_config(codec);
4601 if (err < 0) {
4602 alc_free(codec);
4603 return err;
4604 } else if (!err) {
4605 printk(KERN_INFO
4606 "hda_codec: Cannot set up configuration "
4607 "from BIOS. Using base mode...\n");
4608 board_config = ALC260_BASIC;
4612 if (board_config != ALC260_AUTO)
4613 setup_preset(spec, &alc260_presets[board_config]);
4615 spec->stream_name_analog = "ALC260 Analog";
4616 spec->stream_analog_playback = &alc260_pcm_analog_playback;
4617 spec->stream_analog_capture = &alc260_pcm_analog_capture;
4619 spec->stream_name_digital = "ALC260 Digital";
4620 spec->stream_digital_playback = &alc260_pcm_digital_playback;
4621 spec->stream_digital_capture = &alc260_pcm_digital_capture;
4623 codec->patch_ops = alc_patch_ops;
4624 if (board_config == ALC260_AUTO)
4625 spec->init_hook = alc260_auto_init;
4627 return 0;
4632 * ALC882 support
4634 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
4635 * configuration. Each pin widget can choose any input DACs and a mixer.
4636 * Each ADC is connected from a mixer of all inputs. This makes possible
4637 * 6-channel independent captures.
4639 * In addition, an independent DAC for the multi-playback (not used in this
4640 * driver yet).
4642 #define ALC882_DIGOUT_NID 0x06
4643 #define ALC882_DIGIN_NID 0x0a
4645 static struct hda_channel_mode alc882_ch_modes[1] = {
4646 { 8, NULL }
4649 static hda_nid_t alc882_dac_nids[4] = {
4650 /* front, rear, clfe, rear_surr */
4651 0x02, 0x03, 0x04, 0x05
4654 /* identical with ALC880 */
4655 #define alc882_adc_nids alc880_adc_nids
4656 #define alc882_adc_nids_alt alc880_adc_nids_alt
4658 /* input MUX */
4659 /* FIXME: should be a matrix-type input source selection */
4661 static struct hda_input_mux alc882_capture_source = {
4662 .num_items = 4,
4663 .items = {
4664 { "Mic", 0x0 },
4665 { "Front Mic", 0x1 },
4666 { "Line", 0x2 },
4667 { "CD", 0x4 },
4670 #define alc882_mux_enum_info alc_mux_enum_info
4671 #define alc882_mux_enum_get alc_mux_enum_get
4673 static int alc882_mux_enum_put(struct snd_kcontrol *kcontrol,
4674 struct snd_ctl_elem_value *ucontrol)
4676 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
4677 struct alc_spec *spec = codec->spec;
4678 const struct hda_input_mux *imux = spec->input_mux;
4679 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
4680 static hda_nid_t capture_mixers[3] = { 0x24, 0x23, 0x22 };
4681 hda_nid_t nid = capture_mixers[adc_idx];
4682 unsigned int *cur_val = &spec->cur_mux[adc_idx];
4683 unsigned int i, idx;
4685 idx = ucontrol->value.enumerated.item[0];
4686 if (idx >= imux->num_items)
4687 idx = imux->num_items - 1;
4688 if (*cur_val == idx && !codec->in_resume)
4689 return 0;
4690 for (i = 0; i < imux->num_items; i++) {
4691 unsigned int v = (i == idx) ? 0x7000 : 0x7080;
4692 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
4693 v | (imux->items[i].index << 8));
4695 *cur_val = idx;
4696 return 1;
4700 * 6ch mode
4702 static struct hda_verb alc882_sixstack_ch6_init[] = {
4703 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
4704 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4705 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4706 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4707 { } /* end */
4711 * 8ch mode
4713 static struct hda_verb alc882_sixstack_ch8_init[] = {
4714 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4715 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4716 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4717 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4718 { } /* end */
4721 static struct hda_channel_mode alc882_sixstack_modes[2] = {
4722 { 6, alc882_sixstack_ch6_init },
4723 { 8, alc882_sixstack_ch8_init },
4726 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
4727 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
4729 static struct snd_kcontrol_new alc882_base_mixer[] = {
4730 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
4731 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
4732 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
4733 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
4734 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
4735 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
4736 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
4737 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
4738 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
4739 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
4740 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
4741 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
4742 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
4743 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
4744 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
4745 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
4746 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
4747 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
4748 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
4749 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
4750 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
4751 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
4752 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
4753 { } /* end */
4756 static struct snd_kcontrol_new alc882_chmode_mixer[] = {
4758 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4759 .name = "Channel Mode",
4760 .info = alc_ch_mode_info,
4761 .get = alc_ch_mode_get,
4762 .put = alc_ch_mode_put,
4764 { } /* end */
4767 static struct hda_verb alc882_init_verbs[] = {
4768 /* Front mixer: unmute input/output amp left and right (volume = 0) */
4769 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4770 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4771 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4772 /* Rear mixer */
4773 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4774 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4775 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4776 /* CLFE mixer */
4777 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4778 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4779 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4780 /* Side mixer */
4781 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4782 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4783 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4785 /* Front Pin: output 0 (0x0c) */
4786 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4787 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4788 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
4789 /* Rear Pin: output 1 (0x0d) */
4790 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4791 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4792 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
4793 /* CLFE Pin: output 2 (0x0e) */
4794 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4795 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4796 {0x16, AC_VERB_SET_CONNECT_SEL, 0x02},
4797 /* Side Pin: output 3 (0x0f) */
4798 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4799 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4800 {0x17, AC_VERB_SET_CONNECT_SEL, 0x03},
4801 /* Mic (rear) pin: input vref at 80% */
4802 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
4803 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
4804 /* Front Mic pin: input vref at 80% */
4805 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
4806 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
4807 /* Line In pin: input */
4808 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
4809 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
4810 /* Line-2 In: Headphone output (output 0 - 0x0c) */
4811 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
4812 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4813 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
4814 /* CD pin widget for input */
4815 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
4817 /* FIXME: use matrix-type input source selection */
4818 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
4819 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
4820 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4821 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4822 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4823 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
4824 /* Input mixer2 */
4825 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4826 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4827 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4828 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
4829 /* Input mixer3 */
4830 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4831 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4832 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4833 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
4834 /* ADC1: mute amp left and right */
4835 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4836 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
4837 /* ADC2: mute amp left and right */
4838 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4839 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
4840 /* ADC3: mute amp left and right */
4841 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4842 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
4847 static struct hda_verb alc882_eapd_verbs[] = {
4848 /* change to EAPD mode */
4849 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
4850 {0x20, AC_VERB_SET_PROC_COEF, 0x3060},
4854 /* Mac Pro test */
4855 static struct snd_kcontrol_new alc882_macpro_mixer[] = {
4856 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
4857 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
4858 HDA_CODEC_MUTE("Headphone Playback Switch", 0x18, 0x0, HDA_OUTPUT),
4859 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x01, HDA_INPUT),
4860 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x01, HDA_INPUT),
4861 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x02, HDA_INPUT),
4862 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x02, HDA_INPUT),
4863 { } /* end */
4866 static struct hda_verb alc882_macpro_init_verbs[] = {
4867 /* Front mixer: unmute input/output amp left and right (volume = 0) */
4868 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4869 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4870 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4871 /* Front Pin: output 0 (0x0c) */
4872 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4873 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4874 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
4875 /* Front Mic pin: input vref at 80% */
4876 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
4877 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
4878 /* Speaker: output */
4879 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4880 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4881 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x04},
4882 /* Headphone output (output 0 - 0x0c) */
4883 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
4884 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4885 {0x18, AC_VERB_SET_CONNECT_SEL, 0x00},
4887 /* FIXME: use matrix-type input source selection */
4888 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
4889 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
4890 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4891 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4892 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4893 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
4894 /* Input mixer2 */
4895 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4896 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4897 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4898 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
4899 /* Input mixer3 */
4900 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4901 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4902 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4903 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
4904 /* ADC1: mute amp left and right */
4905 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4906 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
4907 /* ADC2: mute amp left and right */
4908 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4909 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
4910 /* ADC3: mute amp left and right */
4911 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4912 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
4917 static void alc882_gpio_mute(struct hda_codec *codec, int pin, int muted)
4919 unsigned int gpiostate, gpiomask, gpiodir;
4921 gpiostate = snd_hda_codec_read(codec, codec->afg, 0,
4922 AC_VERB_GET_GPIO_DATA, 0);
4924 if (!muted)
4925 gpiostate |= (1 << pin);
4926 else
4927 gpiostate &= ~(1 << pin);
4929 gpiomask = snd_hda_codec_read(codec, codec->afg, 0,
4930 AC_VERB_GET_GPIO_MASK, 0);
4931 gpiomask |= (1 << pin);
4933 gpiodir = snd_hda_codec_read(codec, codec->afg, 0,
4934 AC_VERB_GET_GPIO_DIRECTION, 0);
4935 gpiodir |= (1 << pin);
4938 snd_hda_codec_write(codec, codec->afg, 0,
4939 AC_VERB_SET_GPIO_MASK, gpiomask);
4940 snd_hda_codec_write(codec, codec->afg, 0,
4941 AC_VERB_SET_GPIO_DIRECTION, gpiodir);
4943 msleep(1);
4945 snd_hda_codec_write(codec, codec->afg, 0,
4946 AC_VERB_SET_GPIO_DATA, gpiostate);
4950 * generic initialization of ADC, input mixers and output mixers
4952 static struct hda_verb alc882_auto_init_verbs[] = {
4954 * Unmute ADC0-2 and set the default input to mic-in
4956 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
4957 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4958 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
4959 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4960 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
4961 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4963 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
4964 * mixer widget
4965 * Note: PASD motherboards uses the Line In 2 as the input for
4966 * front panel mic (mic 2)
4968 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
4969 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4970 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4971 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
4972 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
4973 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
4976 * Set up output mixers (0x0c - 0x0f)
4978 /* set vol=0 to output mixers */
4979 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4980 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4981 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4982 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4983 /* set up input amps for analog loopback */
4984 /* Amp Indices: DAC = 0, mixer = 1 */
4985 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4986 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4987 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4988 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4989 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4990 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4991 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4992 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4993 {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4994 {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4996 /* FIXME: use matrix-type input source selection */
4997 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
4998 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
4999 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
5000 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
5001 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
5002 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
5003 /* Input mixer2 */
5004 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
5005 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
5006 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
5007 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
5008 /* Input mixer3 */
5009 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
5010 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
5011 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
5012 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
5017 /* capture mixer elements */
5018 static struct snd_kcontrol_new alc882_capture_alt_mixer[] = {
5019 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5020 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5021 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
5022 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
5024 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5025 /* The multiple "Capture Source" controls confuse alsamixer
5026 * So call somewhat different..
5027 * FIXME: the controls appear in the "playback" view!
5029 /* .name = "Capture Source", */
5030 .name = "Input Source",
5031 .count = 2,
5032 .info = alc882_mux_enum_info,
5033 .get = alc882_mux_enum_get,
5034 .put = alc882_mux_enum_put,
5036 { } /* end */
5039 static struct snd_kcontrol_new alc882_capture_mixer[] = {
5040 HDA_CODEC_VOLUME("Capture Volume", 0x07, 0x0, HDA_INPUT),
5041 HDA_CODEC_MUTE("Capture Switch", 0x07, 0x0, HDA_INPUT),
5042 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x08, 0x0, HDA_INPUT),
5043 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x08, 0x0, HDA_INPUT),
5044 HDA_CODEC_VOLUME_IDX("Capture Volume", 2, 0x09, 0x0, HDA_INPUT),
5045 HDA_CODEC_MUTE_IDX("Capture Switch", 2, 0x09, 0x0, HDA_INPUT),
5047 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5048 /* The multiple "Capture Source" controls confuse alsamixer
5049 * So call somewhat different..
5050 * FIXME: the controls appear in the "playback" view!
5052 /* .name = "Capture Source", */
5053 .name = "Input Source",
5054 .count = 3,
5055 .info = alc882_mux_enum_info,
5056 .get = alc882_mux_enum_get,
5057 .put = alc882_mux_enum_put,
5059 { } /* end */
5062 /* pcm configuration: identiacal with ALC880 */
5063 #define alc882_pcm_analog_playback alc880_pcm_analog_playback
5064 #define alc882_pcm_analog_capture alc880_pcm_analog_capture
5065 #define alc882_pcm_digital_playback alc880_pcm_digital_playback
5066 #define alc882_pcm_digital_capture alc880_pcm_digital_capture
5069 * configuration and preset
5071 static const char *alc882_models[ALC882_MODEL_LAST] = {
5072 [ALC882_3ST_DIG] = "3stack-dig",
5073 [ALC882_6ST_DIG] = "6stack-dig",
5074 [ALC882_ARIMA] = "arima",
5075 [ALC885_MACPRO] = "macpro",
5076 [ALC882_AUTO] = "auto",
5079 static struct snd_pci_quirk alc882_cfg_tbl[] = {
5080 SND_PCI_QUIRK(0x1019, 0x6668, "ECS", ALC882_6ST_DIG),
5081 SND_PCI_QUIRK(0x105b, 0x6668, "Foxconn", ALC882_6ST_DIG),
5082 SND_PCI_QUIRK(0x1462, 0x6668, "MSI", ALC882_6ST_DIG),
5083 SND_PCI_QUIRK(0x161f, 0x2054, "Arima W820", ALC882_ARIMA),
5084 SND_PCI_QUIRK(0x1043, 0x81d8, "Asus P5WD", ALC882_6ST_DIG),
5088 static struct alc_config_preset alc882_presets[] = {
5089 [ALC882_3ST_DIG] = {
5090 .mixers = { alc882_base_mixer },
5091 .init_verbs = { alc882_init_verbs },
5092 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5093 .dac_nids = alc882_dac_nids,
5094 .dig_out_nid = ALC882_DIGOUT_NID,
5095 .dig_in_nid = ALC882_DIGIN_NID,
5096 .num_channel_mode = ARRAY_SIZE(alc882_ch_modes),
5097 .channel_mode = alc882_ch_modes,
5098 .need_dac_fix = 1,
5099 .input_mux = &alc882_capture_source,
5101 [ALC882_6ST_DIG] = {
5102 .mixers = { alc882_base_mixer, alc882_chmode_mixer },
5103 .init_verbs = { alc882_init_verbs },
5104 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5105 .dac_nids = alc882_dac_nids,
5106 .dig_out_nid = ALC882_DIGOUT_NID,
5107 .dig_in_nid = ALC882_DIGIN_NID,
5108 .num_channel_mode = ARRAY_SIZE(alc882_sixstack_modes),
5109 .channel_mode = alc882_sixstack_modes,
5110 .input_mux = &alc882_capture_source,
5112 [ALC882_ARIMA] = {
5113 .mixers = { alc882_base_mixer, alc882_chmode_mixer },
5114 .init_verbs = { alc882_init_verbs, alc882_eapd_verbs },
5115 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5116 .dac_nids = alc882_dac_nids,
5117 .num_channel_mode = ARRAY_SIZE(alc882_sixstack_modes),
5118 .channel_mode = alc882_sixstack_modes,
5119 .input_mux = &alc882_capture_source,
5121 [ALC885_MACPRO] = {
5122 .mixers = { alc882_macpro_mixer },
5123 .init_verbs = { alc882_macpro_init_verbs },
5124 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5125 .dac_nids = alc882_dac_nids,
5126 .dig_out_nid = ALC882_DIGOUT_NID,
5127 .dig_in_nid = ALC882_DIGIN_NID,
5128 .num_channel_mode = ARRAY_SIZE(alc882_ch_modes),
5129 .channel_mode = alc882_ch_modes,
5130 .input_mux = &alc882_capture_source,
5136 * BIOS auto configuration
5138 static void alc882_auto_set_output_and_unmute(struct hda_codec *codec,
5139 hda_nid_t nid, int pin_type,
5140 int dac_idx)
5142 /* set as output */
5143 struct alc_spec *spec = codec->spec;
5144 int idx;
5146 if (spec->multiout.dac_nids[dac_idx] == 0x25)
5147 idx = 4;
5148 else
5149 idx = spec->multiout.dac_nids[dac_idx] - 2;
5151 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
5152 pin_type);
5153 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
5154 AMP_OUT_UNMUTE);
5155 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, idx);
5159 static void alc882_auto_init_multi_out(struct hda_codec *codec)
5161 struct alc_spec *spec = codec->spec;
5162 int i;
5164 alc_subsystem_id(codec, 0x15, 0x1b, 0x14);
5165 for (i = 0; i <= HDA_SIDE; i++) {
5166 hda_nid_t nid = spec->autocfg.line_out_pins[i];
5167 if (nid)
5168 alc882_auto_set_output_and_unmute(codec, nid, PIN_OUT,
5173 static void alc882_auto_init_hp_out(struct hda_codec *codec)
5175 struct alc_spec *spec = codec->spec;
5176 hda_nid_t pin;
5178 pin = spec->autocfg.hp_pins[0];
5179 if (pin) /* connect to front */
5180 /* use dac 0 */
5181 alc882_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
5184 #define alc882_is_input_pin(nid) alc880_is_input_pin(nid)
5185 #define ALC882_PIN_CD_NID ALC880_PIN_CD_NID
5187 static void alc882_auto_init_analog_input(struct hda_codec *codec)
5189 struct alc_spec *spec = codec->spec;
5190 int i;
5192 for (i = 0; i < AUTO_PIN_LAST; i++) {
5193 hda_nid_t nid = spec->autocfg.input_pins[i];
5194 if (alc882_is_input_pin(nid)) {
5195 snd_hda_codec_write(codec, nid, 0,
5196 AC_VERB_SET_PIN_WIDGET_CONTROL,
5197 i <= AUTO_PIN_FRONT_MIC ?
5198 PIN_VREF80 : PIN_IN);
5199 if (nid != ALC882_PIN_CD_NID)
5200 snd_hda_codec_write(codec, nid, 0,
5201 AC_VERB_SET_AMP_GAIN_MUTE,
5202 AMP_OUT_MUTE);
5207 /* almost identical with ALC880 parser... */
5208 static int alc882_parse_auto_config(struct hda_codec *codec)
5210 struct alc_spec *spec = codec->spec;
5211 int err = alc880_parse_auto_config(codec);
5213 if (err < 0)
5214 return err;
5215 else if (err > 0)
5216 /* hack - override the init verbs */
5217 spec->init_verbs[0] = alc882_auto_init_verbs;
5218 return err;
5221 /* additional initialization for auto-configuration model */
5222 static void alc882_auto_init(struct hda_codec *codec)
5224 alc882_auto_init_multi_out(codec);
5225 alc882_auto_init_hp_out(codec);
5226 alc882_auto_init_analog_input(codec);
5229 static int patch_alc882(struct hda_codec *codec)
5231 struct alc_spec *spec;
5232 int err, board_config;
5234 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5235 if (spec == NULL)
5236 return -ENOMEM;
5238 codec->spec = spec;
5240 board_config = snd_hda_check_board_config(codec, ALC882_MODEL_LAST,
5241 alc882_models,
5242 alc882_cfg_tbl);
5244 if (board_config < 0 || board_config >= ALC882_MODEL_LAST) {
5245 /* Pick up systems that don't supply PCI SSID */
5246 switch (codec->subsystem_id) {
5247 case 0x106b0c00: /* Mac Pro */
5248 board_config = ALC885_MACPRO;
5249 break;
5250 default:
5251 printk(KERN_INFO "hda_codec: Unknown model for ALC882, "
5252 "trying auto-probe from BIOS...\n");
5253 board_config = ALC882_AUTO;
5257 if (board_config == ALC882_AUTO) {
5258 /* automatic parse from the BIOS config */
5259 err = alc882_parse_auto_config(codec);
5260 if (err < 0) {
5261 alc_free(codec);
5262 return err;
5263 } else if (!err) {
5264 printk(KERN_INFO
5265 "hda_codec: Cannot set up configuration "
5266 "from BIOS. Using base mode...\n");
5267 board_config = ALC882_3ST_DIG;
5271 if (board_config != ALC882_AUTO)
5272 setup_preset(spec, &alc882_presets[board_config]);
5274 if (board_config == ALC885_MACPRO) {
5275 alc882_gpio_mute(codec, 0, 0);
5276 alc882_gpio_mute(codec, 1, 0);
5279 spec->stream_name_analog = "ALC882 Analog";
5280 spec->stream_analog_playback = &alc882_pcm_analog_playback;
5281 spec->stream_analog_capture = &alc882_pcm_analog_capture;
5283 spec->stream_name_digital = "ALC882 Digital";
5284 spec->stream_digital_playback = &alc882_pcm_digital_playback;
5285 spec->stream_digital_capture = &alc882_pcm_digital_capture;
5287 if (!spec->adc_nids && spec->input_mux) {
5288 /* check whether NID 0x07 is valid */
5289 unsigned int wcap = get_wcaps(codec, 0x07);
5290 /* get type */
5291 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
5292 if (wcap != AC_WID_AUD_IN) {
5293 spec->adc_nids = alc882_adc_nids_alt;
5294 spec->num_adc_nids = ARRAY_SIZE(alc882_adc_nids_alt);
5295 spec->mixers[spec->num_mixers] =
5296 alc882_capture_alt_mixer;
5297 spec->num_mixers++;
5298 } else {
5299 spec->adc_nids = alc882_adc_nids;
5300 spec->num_adc_nids = ARRAY_SIZE(alc882_adc_nids);
5301 spec->mixers[spec->num_mixers] = alc882_capture_mixer;
5302 spec->num_mixers++;
5306 codec->patch_ops = alc_patch_ops;
5307 if (board_config == ALC882_AUTO)
5308 spec->init_hook = alc882_auto_init;
5310 return 0;
5314 * ALC883 support
5316 * ALC883 is almost identical with ALC880 but has cleaner and more flexible
5317 * configuration. Each pin widget can choose any input DACs and a mixer.
5318 * Each ADC is connected from a mixer of all inputs. This makes possible
5319 * 6-channel independent captures.
5321 * In addition, an independent DAC for the multi-playback (not used in this
5322 * driver yet).
5324 #define ALC883_DIGOUT_NID 0x06
5325 #define ALC883_DIGIN_NID 0x0a
5327 static hda_nid_t alc883_dac_nids[4] = {
5328 /* front, rear, clfe, rear_surr */
5329 0x02, 0x04, 0x03, 0x05
5332 static hda_nid_t alc883_adc_nids[2] = {
5333 /* ADC1-2 */
5334 0x08, 0x09,
5337 /* input MUX */
5338 /* FIXME: should be a matrix-type input source selection */
5340 static struct hda_input_mux alc883_capture_source = {
5341 .num_items = 4,
5342 .items = {
5343 { "Mic", 0x0 },
5344 { "Front Mic", 0x1 },
5345 { "Line", 0x2 },
5346 { "CD", 0x4 },
5350 static struct hda_input_mux alc883_lenovo_101e_capture_source = {
5351 .num_items = 2,
5352 .items = {
5353 { "Mic", 0x1 },
5354 { "Line", 0x2 },
5358 #define alc883_mux_enum_info alc_mux_enum_info
5359 #define alc883_mux_enum_get alc_mux_enum_get
5361 static int alc883_mux_enum_put(struct snd_kcontrol *kcontrol,
5362 struct snd_ctl_elem_value *ucontrol)
5364 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
5365 struct alc_spec *spec = codec->spec;
5366 const struct hda_input_mux *imux = spec->input_mux;
5367 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
5368 static hda_nid_t capture_mixers[3] = { 0x24, 0x23, 0x22 };
5369 hda_nid_t nid = capture_mixers[adc_idx];
5370 unsigned int *cur_val = &spec->cur_mux[adc_idx];
5371 unsigned int i, idx;
5373 idx = ucontrol->value.enumerated.item[0];
5374 if (idx >= imux->num_items)
5375 idx = imux->num_items - 1;
5376 if (*cur_val == idx && !codec->in_resume)
5377 return 0;
5378 for (i = 0; i < imux->num_items; i++) {
5379 unsigned int v = (i == idx) ? 0x7000 : 0x7080;
5380 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
5381 v | (imux->items[i].index << 8));
5383 *cur_val = idx;
5384 return 1;
5388 * 2ch mode
5390 static struct hda_channel_mode alc883_3ST_2ch_modes[1] = {
5391 { 2, NULL }
5395 * 2ch mode
5397 static struct hda_verb alc883_3ST_ch2_init[] = {
5398 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
5399 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
5400 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
5401 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
5402 { } /* end */
5406 * 6ch mode
5408 static struct hda_verb alc883_3ST_ch6_init[] = {
5409 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5410 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
5411 { 0x18, AC_VERB_SET_CONNECT_SEL, 0x02 },
5412 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5413 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
5414 { 0x1a, AC_VERB_SET_CONNECT_SEL, 0x01 },
5415 { } /* end */
5418 static struct hda_channel_mode alc883_3ST_6ch_modes[2] = {
5419 { 2, alc883_3ST_ch2_init },
5420 { 6, alc883_3ST_ch6_init },
5424 * 6ch mode
5426 static struct hda_verb alc883_sixstack_ch6_init[] = {
5427 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
5428 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5429 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5430 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5431 { } /* end */
5435 * 8ch mode
5437 static struct hda_verb alc883_sixstack_ch8_init[] = {
5438 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5439 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5440 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5441 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5442 { } /* end */
5445 static struct hda_channel_mode alc883_sixstack_modes[2] = {
5446 { 6, alc883_sixstack_ch6_init },
5447 { 8, alc883_sixstack_ch8_init },
5450 static struct hda_verb alc883_medion_eapd_verbs[] = {
5451 /* eanable EAPD on medion laptop */
5452 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
5453 {0x20, AC_VERB_SET_PROC_COEF, 0x3070},
5457 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
5458 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
5461 static struct snd_kcontrol_new alc883_base_mixer[] = {
5462 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5463 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
5464 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
5465 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
5466 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
5467 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
5468 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
5469 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
5470 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
5471 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
5472 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
5473 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5474 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5475 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5476 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5477 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5478 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5479 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5480 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
5481 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
5482 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
5483 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
5484 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
5485 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5486 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5487 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
5488 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
5490 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5491 /* .name = "Capture Source", */
5492 .name = "Input Source",
5493 .count = 2,
5494 .info = alc883_mux_enum_info,
5495 .get = alc883_mux_enum_get,
5496 .put = alc883_mux_enum_put,
5498 { } /* end */
5501 static struct snd_kcontrol_new alc883_3ST_2ch_mixer[] = {
5502 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5503 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
5504 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
5505 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5506 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5507 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5508 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5509 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5510 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5511 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5512 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
5513 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
5514 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
5515 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
5516 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
5517 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5518 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5519 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
5520 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
5522 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5523 /* .name = "Capture Source", */
5524 .name = "Input Source",
5525 .count = 2,
5526 .info = alc883_mux_enum_info,
5527 .get = alc883_mux_enum_get,
5528 .put = alc883_mux_enum_put,
5530 { } /* end */
5533 static struct snd_kcontrol_new alc883_3ST_6ch_mixer[] = {
5534 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5535 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
5536 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
5537 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
5538 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
5539 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
5540 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
5541 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
5542 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
5543 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5544 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5545 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5546 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5547 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5548 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5549 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5550 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
5551 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
5552 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
5553 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
5554 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
5555 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5556 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5557 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
5558 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
5560 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5561 /* .name = "Capture Source", */
5562 .name = "Input Source",
5563 .count = 2,
5564 .info = alc883_mux_enum_info,
5565 .get = alc883_mux_enum_get,
5566 .put = alc883_mux_enum_put,
5568 { } /* end */
5571 static struct snd_kcontrol_new alc883_fivestack_mixer[] = {
5572 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5573 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
5574 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
5575 HDA_CODEC_MUTE("Surround Playback Switch", 0x15, 0x0, HDA_OUTPUT),
5576 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
5577 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
5578 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x16, 1, 0x0, HDA_OUTPUT),
5579 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT),
5580 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
5581 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5582 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5583 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5584 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5585 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5586 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5587 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5588 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
5589 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
5590 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
5591 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
5592 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
5593 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5594 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5597 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5598 /* .name = "Capture Source", */
5599 .name = "Input Source",
5600 .count = 1,
5601 .info = alc883_mux_enum_info,
5602 .get = alc883_mux_enum_get,
5603 .put = alc883_mux_enum_put,
5605 { } /* end */
5608 static struct snd_kcontrol_new alc883_tagra_mixer[] = {
5609 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5610 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
5611 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
5612 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
5613 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
5614 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
5615 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
5616 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
5617 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
5618 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5619 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5620 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5621 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5622 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5623 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5624 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5625 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5626 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5627 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
5628 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
5630 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5631 /* .name = "Capture Source", */
5632 .name = "Input Source",
5633 .count = 2,
5634 .info = alc883_mux_enum_info,
5635 .get = alc883_mux_enum_get,
5636 .put = alc883_mux_enum_put,
5638 { } /* end */
5641 static struct snd_kcontrol_new alc883_tagra_2ch_mixer[] = {
5642 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5643 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
5644 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
5645 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5646 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5647 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5648 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5649 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5650 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5651 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5652 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
5653 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
5655 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5656 /* .name = "Capture Source", */
5657 .name = "Input Source",
5658 .count = 2,
5659 .info = alc883_mux_enum_info,
5660 .get = alc883_mux_enum_get,
5661 .put = alc883_mux_enum_put,
5663 { } /* end */
5666 static struct snd_kcontrol_new alc883_lenovo_101e_2ch_mixer[] = {
5667 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5668 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
5669 HDA_CODEC_VOLUME("iSpeaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
5670 HDA_BIND_MUTE("iSpeaker Playback Switch", 0x0d, 2, HDA_INPUT),
5671 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
5672 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
5673 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5674 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
5675 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5676 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5678 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5679 /* .name = "Capture Source", */
5680 .name = "Input Source",
5681 .count = 1,
5682 .info = alc883_mux_enum_info,
5683 .get = alc883_mux_enum_get,
5684 .put = alc883_mux_enum_put,
5686 { } /* end */
5689 static struct snd_kcontrol_new alc883_chmode_mixer[] = {
5691 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5692 .name = "Channel Mode",
5693 .info = alc_ch_mode_info,
5694 .get = alc_ch_mode_get,
5695 .put = alc_ch_mode_put,
5697 { } /* end */
5700 static struct hda_verb alc883_init_verbs[] = {
5701 /* ADC1: mute amp left and right */
5702 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5703 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
5704 /* ADC2: mute amp left and right */
5705 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5706 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
5707 /* Front mixer: unmute input/output amp left and right (volume = 0) */
5708 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5709 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5710 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5711 /* Rear mixer */
5712 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5713 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5714 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5715 /* CLFE mixer */
5716 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5717 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5718 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5719 /* Side mixer */
5720 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5721 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5722 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5724 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5725 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5726 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
5727 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
5728 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
5730 /* Front Pin: output 0 (0x0c) */
5731 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5732 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5733 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
5734 /* Rear Pin: output 1 (0x0d) */
5735 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5736 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5737 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
5738 /* CLFE Pin: output 2 (0x0e) */
5739 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5740 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5741 {0x16, AC_VERB_SET_CONNECT_SEL, 0x02},
5742 /* Side Pin: output 3 (0x0f) */
5743 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5744 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5745 {0x17, AC_VERB_SET_CONNECT_SEL, 0x03},
5746 /* Mic (rear) pin: input vref at 80% */
5747 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5748 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5749 /* Front Mic pin: input vref at 80% */
5750 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5751 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5752 /* Line In pin: input */
5753 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
5754 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5755 /* Line-2 In: Headphone output (output 0 - 0x0c) */
5756 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5757 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5758 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
5759 /* CD pin widget for input */
5760 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
5762 /* FIXME: use matrix-type input source selection */
5763 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
5764 /* Input mixer2 */
5765 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5766 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5767 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
5768 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
5769 /* Input mixer3 */
5770 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5771 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5772 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
5773 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
5777 static struct hda_verb alc883_tagra_verbs[] = {
5778 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5779 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5781 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5782 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5784 {0x18, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
5785 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/surround */
5786 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
5788 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
5789 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
5790 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
5791 {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
5793 { } /* end */
5796 static struct hda_verb alc883_lenovo_101e_verbs[] = {
5797 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
5798 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_FRONT_EVENT|AC_USRSP_EN},
5799 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT|AC_USRSP_EN},
5800 { } /* end */
5803 /* toggle speaker-output according to the hp-jack state */
5804 static void alc883_tagra_automute(struct hda_codec *codec)
5806 unsigned int present;
5807 unsigned char bits;
5809 present = snd_hda_codec_read(codec, 0x14, 0,
5810 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
5811 bits = present ? 0x80 : 0;
5812 snd_hda_codec_amp_update(codec, 0x1b, 0, HDA_OUTPUT, 0,
5813 0x80, bits);
5814 snd_hda_codec_amp_update(codec, 0x1b, 1, HDA_OUTPUT, 0,
5815 0x80, bits);
5816 snd_hda_codec_write(codec, 1, 0, AC_VERB_SET_GPIO_DATA,
5817 present ? 1 : 3);
5820 static void alc883_tagra_unsol_event(struct hda_codec *codec, unsigned int res)
5822 if ((res >> 26) == ALC880_HP_EVENT)
5823 alc883_tagra_automute(codec);
5826 static void alc883_lenovo_101e_ispeaker_automute(struct hda_codec *codec)
5828 unsigned int present;
5829 unsigned char bits;
5831 present = snd_hda_codec_read(codec, 0x14, 0,
5832 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
5833 bits = present ? 0x80 : 0;
5834 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
5835 0x80, bits);
5836 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
5837 0x80, bits);
5840 static void alc883_lenovo_101e_all_automute(struct hda_codec *codec)
5842 unsigned int present;
5843 unsigned char bits;
5845 present = snd_hda_codec_read(codec, 0x1b, 0,
5846 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
5847 bits = present ? 0x80 : 0;
5848 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
5849 0x80, bits);
5850 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
5851 0x80, bits);
5852 snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
5853 0x80, bits);
5854 snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
5855 0x80, bits);
5858 static void alc883_lenovo_101e_unsol_event(struct hda_codec *codec,
5859 unsigned int res)
5861 if ((res >> 26) == ALC880_HP_EVENT)
5862 alc883_lenovo_101e_all_automute(codec);
5863 if ((res >> 26) == ALC880_FRONT_EVENT)
5864 alc883_lenovo_101e_ispeaker_automute(codec);
5868 * generic initialization of ADC, input mixers and output mixers
5870 static struct hda_verb alc883_auto_init_verbs[] = {
5872 * Unmute ADC0-2 and set the default input to mic-in
5874 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
5875 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5876 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
5877 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5879 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
5880 * mixer widget
5881 * Note: PASD motherboards uses the Line In 2 as the input for
5882 * front panel mic (mic 2)
5884 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
5885 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5886 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5887 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
5888 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
5889 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
5892 * Set up output mixers (0x0c - 0x0f)
5894 /* set vol=0 to output mixers */
5895 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5896 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5897 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5898 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5899 /* set up input amps for analog loopback */
5900 /* Amp Indices: DAC = 0, mixer = 1 */
5901 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5902 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5903 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5904 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5905 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5906 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5907 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5908 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5909 {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5910 {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5912 /* FIXME: use matrix-type input source selection */
5913 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
5914 /* Input mixer1 */
5915 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5916 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5917 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
5918 /* {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)}, */
5919 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
5920 /* Input mixer2 */
5921 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5922 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5923 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
5924 /* {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)}, */
5925 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
5930 /* capture mixer elements */
5931 static struct snd_kcontrol_new alc883_capture_mixer[] = {
5932 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5933 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5934 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
5935 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
5937 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5938 /* The multiple "Capture Source" controls confuse alsamixer
5939 * So call somewhat different..
5940 * FIXME: the controls appear in the "playback" view!
5942 /* .name = "Capture Source", */
5943 .name = "Input Source",
5944 .count = 2,
5945 .info = alc882_mux_enum_info,
5946 .get = alc882_mux_enum_get,
5947 .put = alc882_mux_enum_put,
5949 { } /* end */
5952 /* pcm configuration: identiacal with ALC880 */
5953 #define alc883_pcm_analog_playback alc880_pcm_analog_playback
5954 #define alc883_pcm_analog_capture alc880_pcm_analog_capture
5955 #define alc883_pcm_digital_playback alc880_pcm_digital_playback
5956 #define alc883_pcm_digital_capture alc880_pcm_digital_capture
5959 * configuration and preset
5961 static const char *alc883_models[ALC883_MODEL_LAST] = {
5962 [ALC883_3ST_2ch_DIG] = "3stack-dig",
5963 [ALC883_3ST_6ch_DIG] = "3stack-6ch-dig",
5964 [ALC883_3ST_6ch] = "3stack-6ch",
5965 [ALC883_6ST_DIG] = "6stack-dig",
5966 [ALC883_TARGA_DIG] = "targa-dig",
5967 [ALC883_TARGA_2ch_DIG] = "targa-2ch-dig",
5968 [ALC888_DEMO_BOARD] = "6stack-dig-demo",
5969 [ALC883_ACER] = "acer",
5970 [ALC883_MEDION] = "medion",
5971 [ALC883_LAPTOP_EAPD] = "laptop-eapd",
5972 [ALC883_LENOVO_101E_2ch] = "lenovo-101e",
5973 [ALC883_AUTO] = "auto",
5976 static struct snd_pci_quirk alc883_cfg_tbl[] = {
5977 SND_PCI_QUIRK(0x1019, 0x6668, "ECS", ALC883_3ST_6ch_DIG),
5978 SND_PCI_QUIRK(0x108e, 0x534d, NULL, ALC883_3ST_6ch),
5979 SND_PCI_QUIRK(0x1558, 0, "Clevo laptop", ALC883_LAPTOP_EAPD),
5980 SND_PCI_QUIRK(0x105b, 0x6668, "Foxconn", ALC883_6ST_DIG),
5981 SND_PCI_QUIRK(0x1462, 0x6668, "MSI", ALC883_6ST_DIG),
5982 SND_PCI_QUIRK(0x1462, 0x7187, "MSI", ALC883_6ST_DIG),
5983 SND_PCI_QUIRK(0x1462, 0x7280, "MSI", ALC883_6ST_DIG),
5984 SND_PCI_QUIRK(0x1462, 0x0579, "MSI", ALC883_TARGA_2ch_DIG),
5985 SND_PCI_QUIRK(0x1462, 0x3ef9, "MSI", ALC883_TARGA_DIG),
5986 SND_PCI_QUIRK(0x1462, 0x3b7f, "MSI", ALC883_TARGA_2ch_DIG),
5987 SND_PCI_QUIRK(0x1462, 0x3fcc, "MSI", ALC883_TARGA_DIG),
5988 SND_PCI_QUIRK(0x1462, 0x3fc1, "MSI", ALC883_TARGA_DIG),
5989 SND_PCI_QUIRK(0x1462, 0x3fc3, "MSI", ALC883_TARGA_DIG),
5990 SND_PCI_QUIRK(0x1462, 0x4314, "MSI", ALC883_TARGA_DIG),
5991 SND_PCI_QUIRK(0x1462, 0x4319, "MSI", ALC883_TARGA_DIG),
5992 SND_PCI_QUIRK(0x1462, 0x4324, "MSI", ALC883_TARGA_DIG),
5993 SND_PCI_QUIRK(0x1462, 0xa422, "MSI", ALC883_TARGA_2ch_DIG),
5994 SND_PCI_QUIRK(0x1025, 0, "Acer laptop", ALC883_ACER),
5995 SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_MEDION),
5996 SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC883_LAPTOP_EAPD),
5997 SND_PCI_QUIRK(0x8086, 0xd601, "D102GGC", ALC883_3ST_6ch),
5998 SND_PCI_QUIRK(0x17aa, 0x101e, "lenovo 101e", ALC883_LENOVO_101E_2ch),
6002 static struct alc_config_preset alc883_presets[] = {
6003 [ALC883_3ST_2ch_DIG] = {
6004 .mixers = { alc883_3ST_2ch_mixer },
6005 .init_verbs = { alc883_init_verbs },
6006 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6007 .dac_nids = alc883_dac_nids,
6008 .dig_out_nid = ALC883_DIGOUT_NID,
6009 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6010 .adc_nids = alc883_adc_nids,
6011 .dig_in_nid = ALC883_DIGIN_NID,
6012 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
6013 .channel_mode = alc883_3ST_2ch_modes,
6014 .input_mux = &alc883_capture_source,
6016 [ALC883_3ST_6ch_DIG] = {
6017 .mixers = { alc883_3ST_6ch_mixer, alc883_chmode_mixer },
6018 .init_verbs = { alc883_init_verbs },
6019 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6020 .dac_nids = alc883_dac_nids,
6021 .dig_out_nid = ALC883_DIGOUT_NID,
6022 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6023 .adc_nids = alc883_adc_nids,
6024 .dig_in_nid = ALC883_DIGIN_NID,
6025 .num_channel_mode = ARRAY_SIZE(alc883_3ST_6ch_modes),
6026 .channel_mode = alc883_3ST_6ch_modes,
6027 .need_dac_fix = 1,
6028 .input_mux = &alc883_capture_source,
6030 [ALC883_3ST_6ch] = {
6031 .mixers = { alc883_3ST_6ch_mixer, alc883_chmode_mixer },
6032 .init_verbs = { alc883_init_verbs },
6033 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6034 .dac_nids = alc883_dac_nids,
6035 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6036 .adc_nids = alc883_adc_nids,
6037 .num_channel_mode = ARRAY_SIZE(alc883_3ST_6ch_modes),
6038 .channel_mode = alc883_3ST_6ch_modes,
6039 .need_dac_fix = 1,
6040 .input_mux = &alc883_capture_source,
6042 [ALC883_6ST_DIG] = {
6043 .mixers = { alc883_base_mixer, alc883_chmode_mixer },
6044 .init_verbs = { alc883_init_verbs },
6045 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6046 .dac_nids = alc883_dac_nids,
6047 .dig_out_nid = ALC883_DIGOUT_NID,
6048 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6049 .adc_nids = alc883_adc_nids,
6050 .dig_in_nid = ALC883_DIGIN_NID,
6051 .num_channel_mode = ARRAY_SIZE(alc883_sixstack_modes),
6052 .channel_mode = alc883_sixstack_modes,
6053 .input_mux = &alc883_capture_source,
6055 [ALC883_TARGA_DIG] = {
6056 .mixers = { alc883_tagra_mixer, alc883_chmode_mixer },
6057 .init_verbs = { alc883_init_verbs, alc883_tagra_verbs},
6058 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6059 .dac_nids = alc883_dac_nids,
6060 .dig_out_nid = ALC883_DIGOUT_NID,
6061 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6062 .adc_nids = alc883_adc_nids,
6063 .num_channel_mode = ARRAY_SIZE(alc883_3ST_6ch_modes),
6064 .channel_mode = alc883_3ST_6ch_modes,
6065 .need_dac_fix = 1,
6066 .input_mux = &alc883_capture_source,
6067 .unsol_event = alc883_tagra_unsol_event,
6068 .init_hook = alc883_tagra_automute,
6070 [ALC883_TARGA_2ch_DIG] = {
6071 .mixers = { alc883_tagra_2ch_mixer},
6072 .init_verbs = { alc883_init_verbs, alc883_tagra_verbs},
6073 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6074 .dac_nids = alc883_dac_nids,
6075 .dig_out_nid = ALC883_DIGOUT_NID,
6076 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6077 .adc_nids = alc883_adc_nids,
6078 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
6079 .channel_mode = alc883_3ST_2ch_modes,
6080 .input_mux = &alc883_capture_source,
6081 .unsol_event = alc883_tagra_unsol_event,
6082 .init_hook = alc883_tagra_automute,
6084 [ALC888_DEMO_BOARD] = {
6085 .mixers = { alc883_base_mixer, alc883_chmode_mixer },
6086 .init_verbs = { alc883_init_verbs },
6087 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6088 .dac_nids = alc883_dac_nids,
6089 .dig_out_nid = ALC883_DIGOUT_NID,
6090 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6091 .adc_nids = alc883_adc_nids,
6092 .dig_in_nid = ALC883_DIGIN_NID,
6093 .num_channel_mode = ARRAY_SIZE(alc883_sixstack_modes),
6094 .channel_mode = alc883_sixstack_modes,
6095 .input_mux = &alc883_capture_source,
6097 [ALC883_ACER] = {
6098 .mixers = { alc883_base_mixer,
6099 alc883_chmode_mixer },
6100 /* On TravelMate laptops, GPIO 0 enables the internal speaker
6101 * and the headphone jack. Turn this on and rely on the
6102 * standard mute methods whenever the user wants to turn
6103 * these outputs off.
6105 .init_verbs = { alc883_init_verbs, alc880_gpio1_init_verbs },
6106 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6107 .dac_nids = alc883_dac_nids,
6108 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6109 .adc_nids = alc883_adc_nids,
6110 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
6111 .channel_mode = alc883_3ST_2ch_modes,
6112 .input_mux = &alc883_capture_source,
6114 [ALC883_MEDION] = {
6115 .mixers = { alc883_fivestack_mixer,
6116 alc883_chmode_mixer },
6117 .init_verbs = { alc883_init_verbs,
6118 alc883_medion_eapd_verbs },
6119 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6120 .dac_nids = alc883_dac_nids,
6121 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6122 .adc_nids = alc883_adc_nids,
6123 .num_channel_mode = ARRAY_SIZE(alc883_sixstack_modes),
6124 .channel_mode = alc883_sixstack_modes,
6125 .input_mux = &alc883_capture_source,
6127 [ALC883_LAPTOP_EAPD] = {
6128 .mixers = { alc883_base_mixer,
6129 alc883_chmode_mixer },
6130 .init_verbs = { alc883_init_verbs, alc882_eapd_verbs },
6131 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6132 .dac_nids = alc883_dac_nids,
6133 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6134 .adc_nids = alc883_adc_nids,
6135 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
6136 .channel_mode = alc883_3ST_2ch_modes,
6137 .input_mux = &alc883_capture_source,
6139 [ALC883_LENOVO_101E_2ch] = {
6140 .mixers = { alc883_lenovo_101e_2ch_mixer},
6141 .init_verbs = { alc883_init_verbs, alc883_lenovo_101e_verbs},
6142 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6143 .dac_nids = alc883_dac_nids,
6144 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6145 .adc_nids = alc883_adc_nids,
6146 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
6147 .channel_mode = alc883_3ST_2ch_modes,
6148 .input_mux = &alc883_lenovo_101e_capture_source,
6149 .unsol_event = alc883_lenovo_101e_unsol_event,
6150 .init_hook = alc883_lenovo_101e_all_automute,
6156 * BIOS auto configuration
6158 static void alc883_auto_set_output_and_unmute(struct hda_codec *codec,
6159 hda_nid_t nid, int pin_type,
6160 int dac_idx)
6162 /* set as output */
6163 struct alc_spec *spec = codec->spec;
6164 int idx;
6166 if (spec->multiout.dac_nids[dac_idx] == 0x25)
6167 idx = 4;
6168 else
6169 idx = spec->multiout.dac_nids[dac_idx] - 2;
6171 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
6172 pin_type);
6173 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
6174 AMP_OUT_UNMUTE);
6175 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, idx);
6179 static void alc883_auto_init_multi_out(struct hda_codec *codec)
6181 struct alc_spec *spec = codec->spec;
6182 int i;
6184 alc_subsystem_id(codec, 0x15, 0x1b, 0x14);
6185 for (i = 0; i <= HDA_SIDE; i++) {
6186 hda_nid_t nid = spec->autocfg.line_out_pins[i];
6187 if (nid)
6188 alc883_auto_set_output_and_unmute(codec, nid, PIN_OUT,
6193 static void alc883_auto_init_hp_out(struct hda_codec *codec)
6195 struct alc_spec *spec = codec->spec;
6196 hda_nid_t pin;
6198 pin = spec->autocfg.hp_pins[0];
6199 if (pin) /* connect to front */
6200 /* use dac 0 */
6201 alc883_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
6204 #define alc883_is_input_pin(nid) alc880_is_input_pin(nid)
6205 #define ALC883_PIN_CD_NID ALC880_PIN_CD_NID
6207 static void alc883_auto_init_analog_input(struct hda_codec *codec)
6209 struct alc_spec *spec = codec->spec;
6210 int i;
6212 for (i = 0; i < AUTO_PIN_LAST; i++) {
6213 hda_nid_t nid = spec->autocfg.input_pins[i];
6214 if (alc883_is_input_pin(nid)) {
6215 snd_hda_codec_write(codec, nid, 0,
6216 AC_VERB_SET_PIN_WIDGET_CONTROL,
6217 (i <= AUTO_PIN_FRONT_MIC ?
6218 PIN_VREF80 : PIN_IN));
6219 if (nid != ALC883_PIN_CD_NID)
6220 snd_hda_codec_write(codec, nid, 0,
6221 AC_VERB_SET_AMP_GAIN_MUTE,
6222 AMP_OUT_MUTE);
6227 /* almost identical with ALC880 parser... */
6228 static int alc883_parse_auto_config(struct hda_codec *codec)
6230 struct alc_spec *spec = codec->spec;
6231 int err = alc880_parse_auto_config(codec);
6233 if (err < 0)
6234 return err;
6235 else if (err > 0)
6236 /* hack - override the init verbs */
6237 spec->init_verbs[0] = alc883_auto_init_verbs;
6238 spec->mixers[spec->num_mixers] = alc883_capture_mixer;
6239 spec->num_mixers++;
6240 return err;
6243 /* additional initialization for auto-configuration model */
6244 static void alc883_auto_init(struct hda_codec *codec)
6246 alc883_auto_init_multi_out(codec);
6247 alc883_auto_init_hp_out(codec);
6248 alc883_auto_init_analog_input(codec);
6251 static int patch_alc883(struct hda_codec *codec)
6253 struct alc_spec *spec;
6254 int err, board_config;
6256 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
6257 if (spec == NULL)
6258 return -ENOMEM;
6260 codec->spec = spec;
6262 board_config = snd_hda_check_board_config(codec, ALC883_MODEL_LAST,
6263 alc883_models,
6264 alc883_cfg_tbl);
6265 if (board_config < 0) {
6266 printk(KERN_INFO "hda_codec: Unknown model for ALC883, "
6267 "trying auto-probe from BIOS...\n");
6268 board_config = ALC883_AUTO;
6271 if (board_config == ALC883_AUTO) {
6272 /* automatic parse from the BIOS config */
6273 err = alc883_parse_auto_config(codec);
6274 if (err < 0) {
6275 alc_free(codec);
6276 return err;
6277 } else if (!err) {
6278 printk(KERN_INFO
6279 "hda_codec: Cannot set up configuration "
6280 "from BIOS. Using base mode...\n");
6281 board_config = ALC883_3ST_2ch_DIG;
6285 if (board_config != ALC883_AUTO)
6286 setup_preset(spec, &alc883_presets[board_config]);
6288 spec->stream_name_analog = "ALC883 Analog";
6289 spec->stream_analog_playback = &alc883_pcm_analog_playback;
6290 spec->stream_analog_capture = &alc883_pcm_analog_capture;
6292 spec->stream_name_digital = "ALC883 Digital";
6293 spec->stream_digital_playback = &alc883_pcm_digital_playback;
6294 spec->stream_digital_capture = &alc883_pcm_digital_capture;
6296 if (!spec->adc_nids && spec->input_mux) {
6297 spec->adc_nids = alc883_adc_nids;
6298 spec->num_adc_nids = ARRAY_SIZE(alc883_adc_nids);
6301 codec->patch_ops = alc_patch_ops;
6302 if (board_config == ALC883_AUTO)
6303 spec->init_hook = alc883_auto_init;
6305 return 0;
6309 * ALC262 support
6312 #define ALC262_DIGOUT_NID ALC880_DIGOUT_NID
6313 #define ALC262_DIGIN_NID ALC880_DIGIN_NID
6315 #define alc262_dac_nids alc260_dac_nids
6316 #define alc262_adc_nids alc882_adc_nids
6317 #define alc262_adc_nids_alt alc882_adc_nids_alt
6319 #define alc262_modes alc260_modes
6320 #define alc262_capture_source alc882_capture_source
6322 static struct snd_kcontrol_new alc262_base_mixer[] = {
6323 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6324 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
6325 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6326 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6327 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
6328 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
6329 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6330 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6331 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6332 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
6333 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
6334 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
6335 /* HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x0b, 0x05, HDA_INPUT),
6336 HDA_CODEC_MUTE("PC Beelp Playback Switch", 0x0b, 0x05, HDA_INPUT), */
6337 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0D, 0x0, HDA_OUTPUT),
6338 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
6339 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
6340 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT),
6341 { } /* end */
6344 static struct snd_kcontrol_new alc262_hippo1_mixer[] = {
6345 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6346 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
6347 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6348 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6349 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
6350 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
6351 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6352 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6353 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6354 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
6355 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
6356 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
6357 /* HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x0b, 0x05, HDA_INPUT),
6358 HDA_CODEC_MUTE("PC Beelp Playback Switch", 0x0b, 0x05, HDA_INPUT), */
6359 /*HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0D, 0x0, HDA_OUTPUT),*/
6360 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
6361 { } /* end */
6364 static struct snd_kcontrol_new alc262_HP_BPC_mixer[] = {
6365 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6366 HDA_CODEC_MUTE("Front Playback Switch", 0x15, 0x0, HDA_OUTPUT),
6367 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
6368 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
6369 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT),
6371 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6372 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6373 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6374 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
6375 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
6376 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
6377 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
6378 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
6379 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6380 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6381 HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x0b, 0x05, HDA_INPUT),
6382 HDA_CODEC_MUTE("PC Beep Playback Switch", 0x0b, 0x05, HDA_INPUT),
6383 HDA_CODEC_VOLUME("AUX IN Playback Volume", 0x0b, 0x06, HDA_INPUT),
6384 HDA_CODEC_MUTE("AUX IN Playback Switch", 0x0b, 0x06, HDA_INPUT),
6385 { } /* end */
6388 static struct snd_kcontrol_new alc262_HP_BPC_WildWest_mixer[] = {
6389 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6390 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
6391 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
6392 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
6393 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
6394 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT),
6395 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x02, HDA_INPUT),
6396 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x02, HDA_INPUT),
6397 HDA_CODEC_VOLUME("Front Mic Boost", 0x1a, 0, HDA_INPUT),
6398 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x01, HDA_INPUT),
6399 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x01, HDA_INPUT),
6400 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6401 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6402 HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x0b, 0x05, HDA_INPUT),
6403 HDA_CODEC_MUTE("PC Beep Playback Switch", 0x0b, 0x05, HDA_INPUT),
6404 { } /* end */
6407 static struct snd_kcontrol_new alc262_HP_BPC_WildWest_option_mixer[] = {
6408 HDA_CODEC_VOLUME("Rear Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6409 HDA_CODEC_MUTE("Rear Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6410 HDA_CODEC_VOLUME("Rear Mic Boost", 0x18, 0, HDA_INPUT),
6411 { } /* end */
6414 #define alc262_capture_mixer alc882_capture_mixer
6415 #define alc262_capture_alt_mixer alc882_capture_alt_mixer
6418 * generic initialization of ADC, input mixers and output mixers
6420 static struct hda_verb alc262_init_verbs[] = {
6422 * Unmute ADC0-2 and set the default input to mic-in
6424 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
6425 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6426 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
6427 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6428 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
6429 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6431 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
6432 * mixer widget
6433 * Note: PASD motherboards uses the Line In 2 as the input for
6434 * front panel mic (mic 2)
6436 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
6437 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6438 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6439 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
6440 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
6441 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
6444 * Set up output mixers (0x0c - 0x0e)
6446 /* set vol=0 to output mixers */
6447 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6448 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6449 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6450 /* set up input amps for analog loopback */
6451 /* Amp Indices: DAC = 0, mixer = 1 */
6452 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6453 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6454 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6455 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6456 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6457 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6459 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
6460 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
6461 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
6462 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
6463 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
6464 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
6466 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
6467 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
6468 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
6469 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
6470 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
6472 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
6473 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
6475 /* FIXME: use matrix-type input source selection */
6476 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
6477 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
6478 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
6479 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
6480 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
6481 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
6482 /* Input mixer2 */
6483 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
6484 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
6485 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
6486 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
6487 /* Input mixer3 */
6488 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
6489 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
6490 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
6491 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
6496 static struct hda_verb alc262_hippo_unsol_verbs[] = {
6497 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
6498 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6502 static struct hda_verb alc262_hippo1_unsol_verbs[] = {
6503 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
6504 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
6505 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
6507 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
6508 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6512 /* mute/unmute internal speaker according to the hp jack and mute state */
6513 static void alc262_hippo_automute(struct hda_codec *codec, int force)
6515 struct alc_spec *spec = codec->spec;
6516 unsigned int mute;
6518 if (force || !spec->sense_updated) {
6519 unsigned int present;
6520 /* need to execute and sync at first */
6521 snd_hda_codec_read(codec, 0x15, 0, AC_VERB_SET_PIN_SENSE, 0);
6522 present = snd_hda_codec_read(codec, 0x15, 0,
6523 AC_VERB_GET_PIN_SENSE, 0);
6524 spec->jack_present = (present & 0x80000000) != 0;
6525 spec->sense_updated = 1;
6527 if (spec->jack_present) {
6528 /* mute internal speaker */
6529 snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
6530 0x80, 0x80);
6531 snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
6532 0x80, 0x80);
6533 } else {
6534 /* unmute internal speaker if necessary */
6535 mute = snd_hda_codec_amp_read(codec, 0x15, 0, HDA_OUTPUT, 0);
6536 snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
6537 0x80, mute & 0x80);
6538 mute = snd_hda_codec_amp_read(codec, 0x15, 1, HDA_OUTPUT, 0);
6539 snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
6540 0x80, mute & 0x80);
6544 /* unsolicited event for HP jack sensing */
6545 static void alc262_hippo_unsol_event(struct hda_codec *codec,
6546 unsigned int res)
6548 if ((res >> 26) != ALC880_HP_EVENT)
6549 return;
6550 alc262_hippo_automute(codec, 1);
6553 static void alc262_hippo1_automute(struct hda_codec *codec, int force)
6555 struct alc_spec *spec = codec->spec;
6556 unsigned int mute;
6558 if (force || !spec->sense_updated) {
6559 unsigned int present;
6560 /* need to execute and sync at first */
6561 snd_hda_codec_read(codec, 0x1b, 0, AC_VERB_SET_PIN_SENSE, 0);
6562 present = snd_hda_codec_read(codec, 0x1b, 0,
6563 AC_VERB_GET_PIN_SENSE, 0);
6564 spec->jack_present = (present & 0x80000000) != 0;
6565 spec->sense_updated = 1;
6567 if (spec->jack_present) {
6568 /* mute internal speaker */
6569 snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
6570 0x80, 0x80);
6571 snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
6572 0x80, 0x80);
6573 } else {
6574 /* unmute internal speaker if necessary */
6575 mute = snd_hda_codec_amp_read(codec, 0x1b, 0, HDA_OUTPUT, 0);
6576 snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
6577 0x80, mute & 0x80);
6578 mute = snd_hda_codec_amp_read(codec, 0x1b, 1, HDA_OUTPUT, 0);
6579 snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
6580 0x80, mute & 0x80);
6584 /* unsolicited event for HP jack sensing */
6585 static void alc262_hippo1_unsol_event(struct hda_codec *codec,
6586 unsigned int res)
6588 if ((res >> 26) != ALC880_HP_EVENT)
6589 return;
6590 alc262_hippo1_automute(codec, 1);
6594 * fujitsu model
6595 * 0x14 = headphone/spdif-out, 0x15 = internal speaker
6598 #define ALC_HP_EVENT 0x37
6600 static struct hda_verb alc262_fujitsu_unsol_verbs[] = {
6601 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC_HP_EVENT},
6602 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6606 static struct hda_input_mux alc262_fujitsu_capture_source = {
6607 .num_items = 2,
6608 .items = {
6609 { "Mic", 0x0 },
6610 { "CD", 0x4 },
6614 static struct hda_input_mux alc262_HP_capture_source = {
6615 .num_items = 5,
6616 .items = {
6617 { "Mic", 0x0 },
6618 { "Front Mic", 0x3 },
6619 { "Line", 0x2 },
6620 { "CD", 0x4 },
6621 { "AUX IN", 0x6 },
6625 /* mute/unmute internal speaker according to the hp jack and mute state */
6626 static void alc262_fujitsu_automute(struct hda_codec *codec, int force)
6628 struct alc_spec *spec = codec->spec;
6629 unsigned int mute;
6631 if (force || !spec->sense_updated) {
6632 unsigned int present;
6633 /* need to execute and sync at first */
6634 snd_hda_codec_read(codec, 0x14, 0, AC_VERB_SET_PIN_SENSE, 0);
6635 present = snd_hda_codec_read(codec, 0x14, 0,
6636 AC_VERB_GET_PIN_SENSE, 0);
6637 spec->jack_present = (present & 0x80000000) != 0;
6638 spec->sense_updated = 1;
6640 if (spec->jack_present) {
6641 /* mute internal speaker */
6642 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
6643 0x80, 0x80);
6644 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
6645 0x80, 0x80);
6646 } else {
6647 /* unmute internal speaker if necessary */
6648 mute = snd_hda_codec_amp_read(codec, 0x14, 0, HDA_OUTPUT, 0);
6649 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
6650 0x80, mute & 0x80);
6651 mute = snd_hda_codec_amp_read(codec, 0x14, 1, HDA_OUTPUT, 0);
6652 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
6653 0x80, mute & 0x80);
6657 /* unsolicited event for HP jack sensing */
6658 static void alc262_fujitsu_unsol_event(struct hda_codec *codec,
6659 unsigned int res)
6661 if ((res >> 26) != ALC_HP_EVENT)
6662 return;
6663 alc262_fujitsu_automute(codec, 1);
6666 /* bind volumes of both NID 0x0c and 0x0d */
6667 static int alc262_fujitsu_master_vol_put(struct snd_kcontrol *kcontrol,
6668 struct snd_ctl_elem_value *ucontrol)
6670 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
6671 long *valp = ucontrol->value.integer.value;
6672 int change;
6674 change = snd_hda_codec_amp_update(codec, 0x0c, 0, HDA_OUTPUT, 0,
6675 0x7f, valp[0] & 0x7f);
6676 change |= snd_hda_codec_amp_update(codec, 0x0c, 1, HDA_OUTPUT, 0,
6677 0x7f, valp[1] & 0x7f);
6678 snd_hda_codec_amp_update(codec, 0x0d, 0, HDA_OUTPUT, 0,
6679 0x7f, valp[0] & 0x7f);
6680 snd_hda_codec_amp_update(codec, 0x0d, 1, HDA_OUTPUT, 0,
6681 0x7f, valp[1] & 0x7f);
6682 return change;
6685 /* bind hp and internal speaker mute (with plug check) */
6686 static int alc262_fujitsu_master_sw_put(struct snd_kcontrol *kcontrol,
6687 struct snd_ctl_elem_value *ucontrol)
6689 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
6690 long *valp = ucontrol->value.integer.value;
6691 int change;
6693 change = snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
6694 0x80, valp[0] ? 0 : 0x80);
6695 change |= snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
6696 0x80, valp[1] ? 0 : 0x80);
6697 if (change || codec->in_resume)
6698 alc262_fujitsu_automute(codec, codec->in_resume);
6699 return change;
6702 static struct snd_kcontrol_new alc262_fujitsu_mixer[] = {
6704 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6705 .name = "Master Playback Volume",
6706 .info = snd_hda_mixer_amp_volume_info,
6707 .get = snd_hda_mixer_amp_volume_get,
6708 .put = alc262_fujitsu_master_vol_put,
6709 .tlv = { .c = snd_hda_mixer_amp_tlv },
6710 .private_value = HDA_COMPOSE_AMP_VAL(0x0c, 3, 0, HDA_OUTPUT),
6713 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6714 .name = "Master Playback Switch",
6715 .info = snd_hda_mixer_amp_switch_info,
6716 .get = snd_hda_mixer_amp_switch_get,
6717 .put = alc262_fujitsu_master_sw_put,
6718 .private_value = HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT),
6720 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6721 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6722 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6723 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6724 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6725 { } /* end */
6728 /* additional init verbs for Benq laptops */
6729 static struct hda_verb alc262_EAPD_verbs[] = {
6730 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
6731 {0x20, AC_VERB_SET_PROC_COEF, 0x3070},
6735 /* add playback controls from the parsed DAC table */
6736 static int alc262_auto_create_multi_out_ctls(struct alc_spec *spec,
6737 const struct auto_pin_cfg *cfg)
6739 hda_nid_t nid;
6740 int err;
6742 spec->multiout.num_dacs = 1; /* only use one dac */
6743 spec->multiout.dac_nids = spec->private_dac_nids;
6744 spec->multiout.dac_nids[0] = 2;
6746 nid = cfg->line_out_pins[0];
6747 if (nid) {
6748 err = add_control(spec, ALC_CTL_WIDGET_VOL,
6749 "Front Playback Volume",
6750 HDA_COMPOSE_AMP_VAL(0x0c, 3, 0, HDA_OUTPUT));
6751 if (err < 0)
6752 return err;
6753 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
6754 "Front Playback Switch",
6755 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT));
6756 if (err < 0)
6757 return err;
6760 nid = cfg->speaker_pins[0];
6761 if (nid) {
6762 if (nid == 0x16) {
6763 err = add_control(spec, ALC_CTL_WIDGET_VOL,
6764 "Speaker Playback Volume",
6765 HDA_COMPOSE_AMP_VAL(0x0e, 2, 0,
6766 HDA_OUTPUT));
6767 if (err < 0)
6768 return err;
6769 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
6770 "Speaker Playback Switch",
6771 HDA_COMPOSE_AMP_VAL(nid, 2, 0,
6772 HDA_OUTPUT));
6773 if (err < 0)
6774 return err;
6775 } else {
6776 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
6777 "Speaker Playback Switch",
6778 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
6779 HDA_OUTPUT));
6780 if (err < 0)
6781 return err;
6784 nid = cfg->hp_pins[0];
6785 if (nid) {
6786 /* spec->multiout.hp_nid = 2; */
6787 if (nid == 0x16) {
6788 err = add_control(spec, ALC_CTL_WIDGET_VOL,
6789 "Headphone Playback Volume",
6790 HDA_COMPOSE_AMP_VAL(0x0e, 2, 0,
6791 HDA_OUTPUT));
6792 if (err < 0)
6793 return err;
6794 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
6795 "Headphone Playback Switch",
6796 HDA_COMPOSE_AMP_VAL(nid, 2, 0,
6797 HDA_OUTPUT));
6798 if (err < 0)
6799 return err;
6800 } else {
6801 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
6802 "Headphone Playback Switch",
6803 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
6804 HDA_OUTPUT));
6805 if (err < 0)
6806 return err;
6809 return 0;
6812 /* identical with ALC880 */
6813 #define alc262_auto_create_analog_input_ctls \
6814 alc880_auto_create_analog_input_ctls
6817 * generic initialization of ADC, input mixers and output mixers
6819 static struct hda_verb alc262_volume_init_verbs[] = {
6821 * Unmute ADC0-2 and set the default input to mic-in
6823 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
6824 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6825 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
6826 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6827 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
6828 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6830 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
6831 * mixer widget
6832 * Note: PASD motherboards uses the Line In 2 as the input for
6833 * front panel mic (mic 2)
6835 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
6836 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6837 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6838 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
6839 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
6840 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
6843 * Set up output mixers (0x0c - 0x0f)
6845 /* set vol=0 to output mixers */
6846 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6847 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6848 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6850 /* set up input amps for analog loopback */
6851 /* Amp Indices: DAC = 0, mixer = 1 */
6852 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6853 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6854 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6855 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6856 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6857 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6859 /* FIXME: use matrix-type input source selection */
6860 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
6861 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
6862 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
6863 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
6864 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
6865 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
6866 /* Input mixer2 */
6867 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
6868 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
6869 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
6870 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
6871 /* Input mixer3 */
6872 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
6873 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
6874 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
6875 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
6880 static struct hda_verb alc262_HP_BPC_init_verbs[] = {
6882 * Unmute ADC0-2 and set the default input to mic-in
6884 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
6885 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6886 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
6887 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6888 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
6889 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6891 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
6892 * mixer widget
6893 * Note: PASD motherboards uses the Line In 2 as the input for
6894 * front panel mic (mic 2)
6896 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
6897 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6898 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6899 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
6900 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
6901 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
6902 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(5)},
6903 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(6)},
6906 * Set up output mixers (0x0c - 0x0e)
6908 /* set vol=0 to output mixers */
6909 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6910 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6911 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6913 /* set up input amps for analog loopback */
6914 /* Amp Indices: DAC = 0, mixer = 1 */
6915 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6916 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6917 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6918 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6919 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6920 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6922 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
6923 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6924 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6926 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
6927 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
6929 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
6930 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
6932 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
6933 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
6934 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
6935 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
6936 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
6938 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0x7023 },
6939 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
6940 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
6941 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, 0x7023 },
6942 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
6943 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
6946 /* FIXME: use matrix-type input source selection */
6947 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
6948 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
6949 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
6950 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
6951 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
6952 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
6953 /* Input mixer2 */
6954 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
6955 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
6956 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
6957 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
6958 /* Input mixer3 */
6959 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
6960 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
6961 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
6962 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
6967 static struct hda_verb alc262_HP_BPC_WildWest_init_verbs[] = {
6969 * Unmute ADC0-2 and set the default input to mic-in
6971 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
6972 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6973 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
6974 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6975 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
6976 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6978 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
6979 * mixer widget
6980 * Note: PASD motherboards uses the Line In 2 as the input for front
6981 * panel mic (mic 2)
6983 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
6984 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6985 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6986 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
6987 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
6988 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
6989 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(5)},
6990 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(6)},
6991 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(7)},
6993 * Set up output mixers (0x0c - 0x0e)
6995 /* set vol=0 to output mixers */
6996 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6997 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6998 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7000 /* set up input amps for analog loopback */
7001 /* Amp Indices: DAC = 0, mixer = 1 */
7002 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7003 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7004 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7005 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7006 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7007 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7010 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP }, /* HP */
7011 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT }, /* Mono */
7012 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 }, /* rear MIC */
7013 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN }, /* Line in */
7014 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 }, /* Front MIC */
7015 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT }, /* Line out */
7016 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN }, /* CD in */
7018 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
7019 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
7021 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
7022 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
7024 /* {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0x7023 }, */
7025 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
7026 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
7027 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, 0x7023 },
7028 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
7029 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
7031 /* FIXME: use matrix-type input source selection */
7032 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
7033 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
7034 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))}, /*rear MIC*/
7035 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))}, /*Line in*/
7036 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))}, /*F MIC*/
7037 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))}, /*Front*/
7038 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))}, /*CD*/
7039 /* {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x06 << 8))}, */
7040 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x07 << 8))}, /*HP*/
7041 /* Input mixer2 */
7042 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7043 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
7044 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
7045 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
7046 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
7047 /* {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x06 << 8))}, */
7048 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x07 << 8))},
7049 /* Input mixer3 */
7050 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7051 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
7052 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
7053 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
7054 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
7055 /* {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x06 << 8))}, */
7056 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x07 << 8))},
7061 /* pcm configuration: identiacal with ALC880 */
7062 #define alc262_pcm_analog_playback alc880_pcm_analog_playback
7063 #define alc262_pcm_analog_capture alc880_pcm_analog_capture
7064 #define alc262_pcm_digital_playback alc880_pcm_digital_playback
7065 #define alc262_pcm_digital_capture alc880_pcm_digital_capture
7068 * BIOS auto configuration
7070 static int alc262_parse_auto_config(struct hda_codec *codec)
7072 struct alc_spec *spec = codec->spec;
7073 int err;
7074 static hda_nid_t alc262_ignore[] = { 0x1d, 0 };
7076 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
7077 alc262_ignore);
7078 if (err < 0)
7079 return err;
7080 if (!spec->autocfg.line_outs)
7081 return 0; /* can't find valid BIOS pin config */
7082 err = alc262_auto_create_multi_out_ctls(spec, &spec->autocfg);
7083 if (err < 0)
7084 return err;
7085 err = alc262_auto_create_analog_input_ctls(spec, &spec->autocfg);
7086 if (err < 0)
7087 return err;
7089 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
7091 if (spec->autocfg.dig_out_pin)
7092 spec->multiout.dig_out_nid = ALC262_DIGOUT_NID;
7093 if (spec->autocfg.dig_in_pin)
7094 spec->dig_in_nid = ALC262_DIGIN_NID;
7096 if (spec->kctl_alloc)
7097 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
7099 spec->init_verbs[spec->num_init_verbs++] = alc262_volume_init_verbs;
7100 spec->num_mux_defs = 1;
7101 spec->input_mux = &spec->private_imux;
7103 return 1;
7106 #define alc262_auto_init_multi_out alc882_auto_init_multi_out
7107 #define alc262_auto_init_hp_out alc882_auto_init_hp_out
7108 #define alc262_auto_init_analog_input alc882_auto_init_analog_input
7111 /* init callback for auto-configuration model -- overriding the default init */
7112 static void alc262_auto_init(struct hda_codec *codec)
7114 alc262_auto_init_multi_out(codec);
7115 alc262_auto_init_hp_out(codec);
7116 alc262_auto_init_analog_input(codec);
7120 * configuration and preset
7122 static const char *alc262_models[ALC262_MODEL_LAST] = {
7123 [ALC262_BASIC] = "basic",
7124 [ALC262_HIPPO] = "hippo",
7125 [ALC262_HIPPO_1] = "hippo_1",
7126 [ALC262_FUJITSU] = "fujitsu",
7127 [ALC262_HP_BPC] = "hp-bpc",
7128 [ALC262_HP_BPC_D7000_WL]= "hp-bpc-d7000",
7129 [ALC262_BENQ_ED8] = "benq",
7130 [ALC262_AUTO] = "auto",
7133 static struct snd_pci_quirk alc262_cfg_tbl[] = {
7134 SND_PCI_QUIRK(0x1002, 0x437b, "Hippo", ALC262_HIPPO),
7135 SND_PCI_QUIRK(0x103c, 0x12fe, "HP xw9400", ALC262_HP_BPC),
7136 SND_PCI_QUIRK(0x103c, 0x280c, "HP xw4400", ALC262_HP_BPC),
7137 SND_PCI_QUIRK(0x103c, 0x3014, "HP xw6400", ALC262_HP_BPC),
7138 SND_PCI_QUIRK(0x103c, 0x3015, "HP xw8400", ALC262_HP_BPC),
7139 SND_PCI_QUIRK(0x103c, 0x2800, "HP D7000", ALC262_HP_BPC_D7000_WL),
7140 SND_PCI_QUIRK(0x103c, 0x2802, "HP D7000", ALC262_HP_BPC_D7000_WL),
7141 SND_PCI_QUIRK(0x103c, 0x2804, "HP D7000", ALC262_HP_BPC_D7000_WL),
7142 SND_PCI_QUIRK(0x103c, 0x2806, "HP D7000", ALC262_HP_BPC_D7000_WL),
7143 SND_PCI_QUIRK(0x103c, 0x2801, "HP D7000", ALC262_HP_BPC_D7000_WF),
7144 SND_PCI_QUIRK(0x103c, 0x2803, "HP D7000", ALC262_HP_BPC_D7000_WF),
7145 SND_PCI_QUIRK(0x103c, 0x2805, "HP D7000", ALC262_HP_BPC_D7000_WF),
7146 SND_PCI_QUIRK(0x103c, 0x2807, "HP D7000", ALC262_HP_BPC_D7000_WF),
7147 SND_PCI_QUIRK(0x104d, 0x8203, "Sony UX-90", ALC262_HIPPO),
7148 SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu", ALC262_FUJITSU),
7149 SND_PCI_QUIRK(0x17ff, 0x058f, "Benq Hippo", ALC262_HIPPO_1),
7150 SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_BENQ_ED8),
7154 static struct alc_config_preset alc262_presets[] = {
7155 [ALC262_BASIC] = {
7156 .mixers = { alc262_base_mixer },
7157 .init_verbs = { alc262_init_verbs },
7158 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
7159 .dac_nids = alc262_dac_nids,
7160 .hp_nid = 0x03,
7161 .num_channel_mode = ARRAY_SIZE(alc262_modes),
7162 .channel_mode = alc262_modes,
7163 .input_mux = &alc262_capture_source,
7165 [ALC262_HIPPO] = {
7166 .mixers = { alc262_base_mixer },
7167 .init_verbs = { alc262_init_verbs, alc262_hippo_unsol_verbs},
7168 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
7169 .dac_nids = alc262_dac_nids,
7170 .hp_nid = 0x03,
7171 .dig_out_nid = ALC262_DIGOUT_NID,
7172 .num_channel_mode = ARRAY_SIZE(alc262_modes),
7173 .channel_mode = alc262_modes,
7174 .input_mux = &alc262_capture_source,
7175 .unsol_event = alc262_hippo_unsol_event,
7177 [ALC262_HIPPO_1] = {
7178 .mixers = { alc262_hippo1_mixer },
7179 .init_verbs = { alc262_init_verbs, alc262_hippo1_unsol_verbs},
7180 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
7181 .dac_nids = alc262_dac_nids,
7182 .hp_nid = 0x02,
7183 .dig_out_nid = ALC262_DIGOUT_NID,
7184 .num_channel_mode = ARRAY_SIZE(alc262_modes),
7185 .channel_mode = alc262_modes,
7186 .input_mux = &alc262_capture_source,
7187 .unsol_event = alc262_hippo1_unsol_event,
7189 [ALC262_FUJITSU] = {
7190 .mixers = { alc262_fujitsu_mixer },
7191 .init_verbs = { alc262_init_verbs, alc262_fujitsu_unsol_verbs },
7192 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
7193 .dac_nids = alc262_dac_nids,
7194 .hp_nid = 0x03,
7195 .dig_out_nid = ALC262_DIGOUT_NID,
7196 .num_channel_mode = ARRAY_SIZE(alc262_modes),
7197 .channel_mode = alc262_modes,
7198 .input_mux = &alc262_fujitsu_capture_source,
7199 .unsol_event = alc262_fujitsu_unsol_event,
7201 [ALC262_HP_BPC] = {
7202 .mixers = { alc262_HP_BPC_mixer },
7203 .init_verbs = { alc262_HP_BPC_init_verbs },
7204 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
7205 .dac_nids = alc262_dac_nids,
7206 .hp_nid = 0x03,
7207 .num_channel_mode = ARRAY_SIZE(alc262_modes),
7208 .channel_mode = alc262_modes,
7209 .input_mux = &alc262_HP_capture_source,
7211 [ALC262_HP_BPC_D7000_WF] = {
7212 .mixers = { alc262_HP_BPC_WildWest_mixer },
7213 .init_verbs = { alc262_HP_BPC_WildWest_init_verbs },
7214 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
7215 .dac_nids = alc262_dac_nids,
7216 .hp_nid = 0x03,
7217 .num_channel_mode = ARRAY_SIZE(alc262_modes),
7218 .channel_mode = alc262_modes,
7219 .input_mux = &alc262_HP_capture_source,
7221 [ALC262_HP_BPC_D7000_WL] = {
7222 .mixers = { alc262_HP_BPC_WildWest_mixer,
7223 alc262_HP_BPC_WildWest_option_mixer },
7224 .init_verbs = { alc262_HP_BPC_WildWest_init_verbs },
7225 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
7226 .dac_nids = alc262_dac_nids,
7227 .hp_nid = 0x03,
7228 .num_channel_mode = ARRAY_SIZE(alc262_modes),
7229 .channel_mode = alc262_modes,
7230 .input_mux = &alc262_HP_capture_source,
7232 [ALC262_BENQ_ED8] = {
7233 .mixers = { alc262_base_mixer },
7234 .init_verbs = { alc262_init_verbs, alc262_EAPD_verbs },
7235 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
7236 .dac_nids = alc262_dac_nids,
7237 .hp_nid = 0x03,
7238 .num_channel_mode = ARRAY_SIZE(alc262_modes),
7239 .channel_mode = alc262_modes,
7240 .input_mux = &alc262_capture_source,
7244 static int patch_alc262(struct hda_codec *codec)
7246 struct alc_spec *spec;
7247 int board_config;
7248 int err;
7250 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
7251 if (spec == NULL)
7252 return -ENOMEM;
7254 codec->spec = spec;
7255 #if 0
7256 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
7257 * under-run
7260 int tmp;
7261 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
7262 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
7263 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
7264 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PROC_COEF, tmp | 0x80);
7266 #endif
7268 board_config = snd_hda_check_board_config(codec, ALC262_MODEL_LAST,
7269 alc262_models,
7270 alc262_cfg_tbl);
7272 if (board_config < 0) {
7273 printk(KERN_INFO "hda_codec: Unknown model for ALC262, "
7274 "trying auto-probe from BIOS...\n");
7275 board_config = ALC262_AUTO;
7278 if (board_config == ALC262_AUTO) {
7279 /* automatic parse from the BIOS config */
7280 err = alc262_parse_auto_config(codec);
7281 if (err < 0) {
7282 alc_free(codec);
7283 return err;
7284 } else if (!err) {
7285 printk(KERN_INFO
7286 "hda_codec: Cannot set up configuration "
7287 "from BIOS. Using base mode...\n");
7288 board_config = ALC262_BASIC;
7292 if (board_config != ALC262_AUTO)
7293 setup_preset(spec, &alc262_presets[board_config]);
7295 spec->stream_name_analog = "ALC262 Analog";
7296 spec->stream_analog_playback = &alc262_pcm_analog_playback;
7297 spec->stream_analog_capture = &alc262_pcm_analog_capture;
7299 spec->stream_name_digital = "ALC262 Digital";
7300 spec->stream_digital_playback = &alc262_pcm_digital_playback;
7301 spec->stream_digital_capture = &alc262_pcm_digital_capture;
7303 if (!spec->adc_nids && spec->input_mux) {
7304 /* check whether NID 0x07 is valid */
7305 unsigned int wcap = get_wcaps(codec, 0x07);
7307 /* get type */
7308 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
7309 if (wcap != AC_WID_AUD_IN) {
7310 spec->adc_nids = alc262_adc_nids_alt;
7311 spec->num_adc_nids = ARRAY_SIZE(alc262_adc_nids_alt);
7312 spec->mixers[spec->num_mixers] =
7313 alc262_capture_alt_mixer;
7314 spec->num_mixers++;
7315 } else {
7316 spec->adc_nids = alc262_adc_nids;
7317 spec->num_adc_nids = ARRAY_SIZE(alc262_adc_nids);
7318 spec->mixers[spec->num_mixers] = alc262_capture_mixer;
7319 spec->num_mixers++;
7323 codec->patch_ops = alc_patch_ops;
7324 if (board_config == ALC262_AUTO)
7325 spec->init_hook = alc262_auto_init;
7327 return 0;
7331 * ALC861 channel source setting (2/6 channel selection for 3-stack)
7335 * set the path ways for 2 channel output
7336 * need to set the codec line out and mic 1 pin widgets to inputs
7338 static struct hda_verb alc861_threestack_ch2_init[] = {
7339 /* set pin widget 1Ah (line in) for input */
7340 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
7341 /* set pin widget 18h (mic1/2) for input, for mic also enable
7342 * the vref
7344 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
7346 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c },
7347 #if 0
7348 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8)) }, /*mic*/
7349 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8)) }, /*line-in*/
7350 #endif
7351 { } /* end */
7354 * 6ch mode
7355 * need to set the codec line out and mic 1 pin widgets to outputs
7357 static struct hda_verb alc861_threestack_ch6_init[] = {
7358 /* set pin widget 1Ah (line in) for output (Back Surround)*/
7359 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
7360 /* set pin widget 18h (mic1) for output (CLFE)*/
7361 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
7363 { 0x0c, AC_VERB_SET_CONNECT_SEL, 0x00 },
7364 { 0x0d, AC_VERB_SET_CONNECT_SEL, 0x00 },
7366 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080 },
7367 #if 0
7368 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x01 << 8)) }, /*mic*/
7369 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8)) }, /*line in*/
7370 #endif
7371 { } /* end */
7374 static struct hda_channel_mode alc861_threestack_modes[2] = {
7375 { 2, alc861_threestack_ch2_init },
7376 { 6, alc861_threestack_ch6_init },
7378 /* Set mic1 as input and unmute the mixer */
7379 static struct hda_verb alc861_uniwill_m31_ch2_init[] = {
7380 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
7381 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x01 << 8)) }, /*mic*/
7382 { } /* end */
7384 /* Set mic1 as output and mute mixer */
7385 static struct hda_verb alc861_uniwill_m31_ch4_init[] = {
7386 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
7387 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8)) }, /*mic*/
7388 { } /* end */
7391 static struct hda_channel_mode alc861_uniwill_m31_modes[2] = {
7392 { 2, alc861_uniwill_m31_ch2_init },
7393 { 4, alc861_uniwill_m31_ch4_init },
7396 /* Set mic1 and line-in as input and unmute the mixer */
7397 static struct hda_verb alc861_asus_ch2_init[] = {
7398 /* set pin widget 1Ah (line in) for input */
7399 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
7400 /* set pin widget 18h (mic1/2) for input, for mic also enable
7401 * the vref
7403 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
7405 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c },
7406 #if 0
7407 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8)) }, /*mic*/
7408 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8)) }, /*line-in*/
7409 #endif
7410 { } /* end */
7412 /* Set mic1 nad line-in as output and mute mixer */
7413 static struct hda_verb alc861_asus_ch6_init[] = {
7414 /* set pin widget 1Ah (line in) for output (Back Surround)*/
7415 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
7416 /* { 0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE }, */
7417 /* set pin widget 18h (mic1) for output (CLFE)*/
7418 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
7419 /* { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE }, */
7420 { 0x0c, AC_VERB_SET_CONNECT_SEL, 0x00 },
7421 { 0x0d, AC_VERB_SET_CONNECT_SEL, 0x00 },
7423 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080 },
7424 #if 0
7425 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x01 << 8)) }, /*mic*/
7426 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8)) }, /*line in*/
7427 #endif
7428 { } /* end */
7431 static struct hda_channel_mode alc861_asus_modes[2] = {
7432 { 2, alc861_asus_ch2_init },
7433 { 6, alc861_asus_ch6_init },
7436 /* patch-ALC861 */
7438 static struct snd_kcontrol_new alc861_base_mixer[] = {
7439 /* output mixer control */
7440 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
7441 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
7442 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
7443 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
7444 HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT),
7446 /*Input mixer control */
7447 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
7448 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
7449 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
7450 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
7451 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
7452 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
7453 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
7454 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
7455 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
7456 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT),
7458 /* Capture mixer control */
7459 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
7460 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
7462 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7463 .name = "Capture Source",
7464 .count = 1,
7465 .info = alc_mux_enum_info,
7466 .get = alc_mux_enum_get,
7467 .put = alc_mux_enum_put,
7469 { } /* end */
7472 static struct snd_kcontrol_new alc861_3ST_mixer[] = {
7473 /* output mixer control */
7474 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
7475 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
7476 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
7477 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
7478 /*HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT), */
7480 /* Input mixer control */
7481 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
7482 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
7483 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
7484 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
7485 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
7486 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
7487 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
7488 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
7489 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
7490 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT),
7492 /* Capture mixer control */
7493 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
7494 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
7496 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7497 .name = "Capture Source",
7498 .count = 1,
7499 .info = alc_mux_enum_info,
7500 .get = alc_mux_enum_get,
7501 .put = alc_mux_enum_put,
7504 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7505 .name = "Channel Mode",
7506 .info = alc_ch_mode_info,
7507 .get = alc_ch_mode_get,
7508 .put = alc_ch_mode_put,
7509 .private_value = ARRAY_SIZE(alc861_threestack_modes),
7511 { } /* end */
7514 static struct snd_kcontrol_new alc861_toshiba_mixer[] = {
7515 /* output mixer control */
7516 HDA_CODEC_MUTE("Master Playback Switch", 0x03, 0x0, HDA_OUTPUT),
7517 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
7518 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
7520 /*Capture mixer control */
7521 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
7522 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
7524 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7525 .name = "Capture Source",
7526 .count = 1,
7527 .info = alc_mux_enum_info,
7528 .get = alc_mux_enum_get,
7529 .put = alc_mux_enum_put,
7532 { } /* end */
7535 static struct snd_kcontrol_new alc861_uniwill_m31_mixer[] = {
7536 /* output mixer control */
7537 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
7538 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
7539 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
7540 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
7541 /*HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT), */
7543 /* Input mixer control */
7544 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
7545 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
7546 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
7547 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
7548 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
7549 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
7550 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
7551 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
7552 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
7553 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT),
7555 /* Capture mixer control */
7556 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
7557 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
7559 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7560 .name = "Capture Source",
7561 .count = 1,
7562 .info = alc_mux_enum_info,
7563 .get = alc_mux_enum_get,
7564 .put = alc_mux_enum_put,
7567 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7568 .name = "Channel Mode",
7569 .info = alc_ch_mode_info,
7570 .get = alc_ch_mode_get,
7571 .put = alc_ch_mode_put,
7572 .private_value = ARRAY_SIZE(alc861_uniwill_m31_modes),
7574 { } /* end */
7577 static struct snd_kcontrol_new alc861_asus_mixer[] = {
7578 /* output mixer control */
7579 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
7580 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
7581 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
7582 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
7583 HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT),
7585 /* Input mixer control */
7586 HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
7587 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT),
7588 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
7589 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
7590 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
7591 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
7592 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
7593 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
7594 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
7595 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_OUTPUT),
7597 /* Capture mixer control */
7598 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
7599 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
7601 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7602 .name = "Capture Source",
7603 .count = 1,
7604 .info = alc_mux_enum_info,
7605 .get = alc_mux_enum_get,
7606 .put = alc_mux_enum_put,
7609 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7610 .name = "Channel Mode",
7611 .info = alc_ch_mode_info,
7612 .get = alc_ch_mode_get,
7613 .put = alc_ch_mode_put,
7614 .private_value = ARRAY_SIZE(alc861_asus_modes),
7619 /* additional mixer */
7620 static struct snd_kcontrol_new alc861_asus_laptop_mixer[] = {
7621 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
7622 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
7623 HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x23, 0x0, HDA_OUTPUT),
7624 HDA_CODEC_MUTE("PC Beep Playback Switch", 0x23, 0x0, HDA_OUTPUT),
7629 * generic initialization of ADC, input mixers and output mixers
7631 static struct hda_verb alc861_base_init_verbs[] = {
7633 * Unmute ADC0 and set the default input to mic-in
7635 /* port-A for surround (rear panel) */
7636 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
7637 { 0x0e, AC_VERB_SET_CONNECT_SEL, 0x00 },
7638 /* port-B for mic-in (rear panel) with vref */
7639 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
7640 /* port-C for line-in (rear panel) */
7641 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
7642 /* port-D for Front */
7643 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
7644 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
7645 /* port-E for HP out (front panel) */
7646 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
7647 /* route front PCM to HP */
7648 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
7649 /* port-F for mic-in (front panel) with vref */
7650 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
7651 /* port-G for CLFE (rear panel) */
7652 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
7653 { 0x1f, AC_VERB_SET_CONNECT_SEL, 0x00 },
7654 /* port-H for side (rear panel) */
7655 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
7656 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x00 },
7657 /* CD-in */
7658 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
7659 /* route front mic to ADC1*/
7660 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
7661 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7663 /* Unmute DAC0~3 & spdif out*/
7664 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7665 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7666 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7667 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7668 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7670 /* Unmute Mixer 14 (mic) 1c (Line in)*/
7671 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7672 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7673 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7674 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7676 /* Unmute Stereo Mixer 15 */
7677 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7678 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7679 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
7680 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c}, /* Output 0~12 step */
7682 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7683 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7684 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7685 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7686 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7687 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7688 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7689 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7690 /* hp used DAC 3 (Front) */
7691 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
7692 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
7697 static struct hda_verb alc861_threestack_init_verbs[] = {
7699 * Unmute ADC0 and set the default input to mic-in
7701 /* port-A for surround (rear panel) */
7702 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
7703 /* port-B for mic-in (rear panel) with vref */
7704 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
7705 /* port-C for line-in (rear panel) */
7706 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
7707 /* port-D for Front */
7708 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
7709 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
7710 /* port-E for HP out (front panel) */
7711 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
7712 /* route front PCM to HP */
7713 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
7714 /* port-F for mic-in (front panel) with vref */
7715 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
7716 /* port-G for CLFE (rear panel) */
7717 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
7718 /* port-H for side (rear panel) */
7719 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
7720 /* CD-in */
7721 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
7722 /* route front mic to ADC1*/
7723 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
7724 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7725 /* Unmute DAC0~3 & spdif out*/
7726 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7727 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7728 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7729 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7730 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7732 /* Unmute Mixer 14 (mic) 1c (Line in)*/
7733 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7734 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7735 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7736 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7738 /* Unmute Stereo Mixer 15 */
7739 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7740 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7741 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
7742 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c}, /* Output 0~12 step */
7744 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7745 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7746 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7747 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7748 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7749 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7750 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7751 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7752 /* hp used DAC 3 (Front) */
7753 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
7754 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
7758 static struct hda_verb alc861_uniwill_m31_init_verbs[] = {
7760 * Unmute ADC0 and set the default input to mic-in
7762 /* port-A for surround (rear panel) */
7763 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
7764 /* port-B for mic-in (rear panel) with vref */
7765 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
7766 /* port-C for line-in (rear panel) */
7767 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
7768 /* port-D for Front */
7769 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
7770 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
7771 /* port-E for HP out (front panel) */
7772 /* this has to be set to VREF80 */
7773 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
7774 /* route front PCM to HP */
7775 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
7776 /* port-F for mic-in (front panel) with vref */
7777 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
7778 /* port-G for CLFE (rear panel) */
7779 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
7780 /* port-H for side (rear panel) */
7781 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
7782 /* CD-in */
7783 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
7784 /* route front mic to ADC1*/
7785 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
7786 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7787 /* Unmute DAC0~3 & spdif out*/
7788 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7789 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7790 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7791 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7792 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7794 /* Unmute Mixer 14 (mic) 1c (Line in)*/
7795 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7796 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7797 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7798 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7800 /* Unmute Stereo Mixer 15 */
7801 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7802 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7803 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
7804 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c}, /* Output 0~12 step */
7806 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7807 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7808 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7809 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7810 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7811 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7812 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7813 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7814 /* hp used DAC 3 (Front) */
7815 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
7816 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
7820 static struct hda_verb alc861_asus_init_verbs[] = {
7822 * Unmute ADC0 and set the default input to mic-in
7824 /* port-A for surround (rear panel)
7825 * according to codec#0 this is the HP jack
7827 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 }, /* was 0x00 */
7828 /* route front PCM to HP */
7829 { 0x0e, AC_VERB_SET_CONNECT_SEL, 0x01 },
7830 /* port-B for mic-in (rear panel) with vref */
7831 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
7832 /* port-C for line-in (rear panel) */
7833 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
7834 /* port-D for Front */
7835 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
7836 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
7837 /* port-E for HP out (front panel) */
7838 /* this has to be set to VREF80 */
7839 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
7840 /* route front PCM to HP */
7841 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
7842 /* port-F for mic-in (front panel) with vref */
7843 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
7844 /* port-G for CLFE (rear panel) */
7845 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
7846 /* port-H for side (rear panel) */
7847 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
7848 /* CD-in */
7849 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
7850 /* route front mic to ADC1*/
7851 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
7852 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7853 /* Unmute DAC0~3 & spdif out*/
7854 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7855 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7856 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7857 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7858 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7859 /* Unmute Mixer 14 (mic) 1c (Line in)*/
7860 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7861 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7862 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7863 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7865 /* Unmute Stereo Mixer 15 */
7866 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7867 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7868 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
7869 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c}, /* Output 0~12 step */
7871 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7872 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7873 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7874 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7875 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7876 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7877 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7878 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7879 /* hp used DAC 3 (Front) */
7880 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
7881 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
7885 /* additional init verbs for ASUS laptops */
7886 static struct hda_verb alc861_asus_laptop_init_verbs[] = {
7887 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x45 }, /* HP-out */
7888 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2) }, /* mute line-in */
7893 * generic initialization of ADC, input mixers and output mixers
7895 static struct hda_verb alc861_auto_init_verbs[] = {
7897 * Unmute ADC0 and set the default input to mic-in
7899 /* {0x08, AC_VERB_SET_CONNECT_SEL, 0x00}, */
7900 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7902 /* Unmute DAC0~3 & spdif out*/
7903 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
7904 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
7905 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
7906 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
7907 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7909 /* Unmute Mixer 14 (mic) 1c (Line in)*/
7910 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7911 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7912 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7913 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7915 /* Unmute Stereo Mixer 15 */
7916 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7917 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7918 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
7919 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c},
7921 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7922 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7923 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7924 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7925 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7926 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7927 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7928 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7930 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
7931 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
7932 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
7933 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
7934 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
7935 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
7936 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
7937 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
7939 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00}, /* set Mic 1 */
7944 static struct hda_verb alc861_toshiba_init_verbs[] = {
7945 {0x0f, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
7950 /* toggle speaker-output according to the hp-jack state */
7951 static void alc861_toshiba_automute(struct hda_codec *codec)
7953 unsigned int present;
7955 present = snd_hda_codec_read(codec, 0x0f, 0,
7956 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
7957 snd_hda_codec_amp_update(codec, 0x16, 0, HDA_INPUT, 0,
7958 0x80, present ? 0x80 : 0);
7959 snd_hda_codec_amp_update(codec, 0x16, 1, HDA_INPUT, 0,
7960 0x80, present ? 0x80 : 0);
7961 snd_hda_codec_amp_update(codec, 0x1a, 0, HDA_INPUT, 3,
7962 0x80, present ? 0 : 0x80);
7963 snd_hda_codec_amp_update(codec, 0x1a, 1, HDA_INPUT, 3,
7964 0x80, present ? 0 : 0x80);
7967 static void alc861_toshiba_unsol_event(struct hda_codec *codec,
7968 unsigned int res)
7970 if ((res >> 26) == ALC880_HP_EVENT)
7971 alc861_toshiba_automute(codec);
7974 /* pcm configuration: identiacal with ALC880 */
7975 #define alc861_pcm_analog_playback alc880_pcm_analog_playback
7976 #define alc861_pcm_analog_capture alc880_pcm_analog_capture
7977 #define alc861_pcm_digital_playback alc880_pcm_digital_playback
7978 #define alc861_pcm_digital_capture alc880_pcm_digital_capture
7981 #define ALC861_DIGOUT_NID 0x07
7983 static struct hda_channel_mode alc861_8ch_modes[1] = {
7984 { 8, NULL }
7987 static hda_nid_t alc861_dac_nids[4] = {
7988 /* front, surround, clfe, side */
7989 0x03, 0x06, 0x05, 0x04
7992 static hda_nid_t alc660_dac_nids[3] = {
7993 /* front, clfe, surround */
7994 0x03, 0x05, 0x06
7997 static hda_nid_t alc861_adc_nids[1] = {
7998 /* ADC0-2 */
7999 0x08,
8002 static struct hda_input_mux alc861_capture_source = {
8003 .num_items = 5,
8004 .items = {
8005 { "Mic", 0x0 },
8006 { "Front Mic", 0x3 },
8007 { "Line", 0x1 },
8008 { "CD", 0x4 },
8009 { "Mixer", 0x5 },
8013 /* fill in the dac_nids table from the parsed pin configuration */
8014 static int alc861_auto_fill_dac_nids(struct alc_spec *spec,
8015 const struct auto_pin_cfg *cfg)
8017 int i;
8018 hda_nid_t nid;
8020 spec->multiout.dac_nids = spec->private_dac_nids;
8021 for (i = 0; i < cfg->line_outs; i++) {
8022 nid = cfg->line_out_pins[i];
8023 if (nid) {
8024 if (i >= ARRAY_SIZE(alc861_dac_nids))
8025 continue;
8026 spec->multiout.dac_nids[i] = alc861_dac_nids[i];
8029 spec->multiout.num_dacs = cfg->line_outs;
8030 return 0;
8033 /* add playback controls from the parsed DAC table */
8034 static int alc861_auto_create_multi_out_ctls(struct alc_spec *spec,
8035 const struct auto_pin_cfg *cfg)
8037 char name[32];
8038 static const char *chname[4] = {
8039 "Front", "Surround", NULL /*CLFE*/, "Side"
8041 hda_nid_t nid;
8042 int i, idx, err;
8044 for (i = 0; i < cfg->line_outs; i++) {
8045 nid = spec->multiout.dac_nids[i];
8046 if (!nid)
8047 continue;
8048 if (nid == 0x05) {
8049 /* Center/LFE */
8050 err = add_control(spec, ALC_CTL_BIND_MUTE,
8051 "Center Playback Switch",
8052 HDA_COMPOSE_AMP_VAL(nid, 1, 0,
8053 HDA_OUTPUT));
8054 if (err < 0)
8055 return err;
8056 err = add_control(spec, ALC_CTL_BIND_MUTE,
8057 "LFE Playback Switch",
8058 HDA_COMPOSE_AMP_VAL(nid, 2, 0,
8059 HDA_OUTPUT));
8060 if (err < 0)
8061 return err;
8062 } else {
8063 for (idx = 0; idx < ARRAY_SIZE(alc861_dac_nids) - 1;
8064 idx++)
8065 if (nid == alc861_dac_nids[idx])
8066 break;
8067 sprintf(name, "%s Playback Switch", chname[idx]);
8068 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
8069 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
8070 HDA_OUTPUT));
8071 if (err < 0)
8072 return err;
8075 return 0;
8078 static int alc861_auto_create_hp_ctls(struct alc_spec *spec, hda_nid_t pin)
8080 int err;
8081 hda_nid_t nid;
8083 if (!pin)
8084 return 0;
8086 if ((pin >= 0x0b && pin <= 0x10) || pin == 0x1f || pin == 0x20) {
8087 nid = 0x03;
8088 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
8089 "Headphone Playback Switch",
8090 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT));
8091 if (err < 0)
8092 return err;
8093 spec->multiout.hp_nid = nid;
8095 return 0;
8098 /* create playback/capture controls for input pins */
8099 static int alc861_auto_create_analog_input_ctls(struct alc_spec *spec,
8100 const struct auto_pin_cfg *cfg)
8102 struct hda_input_mux *imux = &spec->private_imux;
8103 int i, err, idx, idx1;
8105 for (i = 0; i < AUTO_PIN_LAST; i++) {
8106 switch (cfg->input_pins[i]) {
8107 case 0x0c:
8108 idx1 = 1;
8109 idx = 2; /* Line In */
8110 break;
8111 case 0x0f:
8112 idx1 = 2;
8113 idx = 2; /* Line In */
8114 break;
8115 case 0x0d:
8116 idx1 = 0;
8117 idx = 1; /* Mic In */
8118 break;
8119 case 0x10:
8120 idx1 = 3;
8121 idx = 1; /* Mic In */
8122 break;
8123 case 0x11:
8124 idx1 = 4;
8125 idx = 0; /* CD */
8126 break;
8127 default:
8128 continue;
8131 err = new_analog_input(spec, cfg->input_pins[i],
8132 auto_pin_cfg_labels[i], idx, 0x15);
8133 if (err < 0)
8134 return err;
8136 imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
8137 imux->items[imux->num_items].index = idx1;
8138 imux->num_items++;
8140 return 0;
8143 static struct snd_kcontrol_new alc861_capture_mixer[] = {
8144 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
8145 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
8148 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
8149 /* The multiple "Capture Source" controls confuse alsamixer
8150 * So call somewhat different..
8151 *FIXME: the controls appear in the "playback" view!
8153 /* .name = "Capture Source", */
8154 .name = "Input Source",
8155 .count = 1,
8156 .info = alc_mux_enum_info,
8157 .get = alc_mux_enum_get,
8158 .put = alc_mux_enum_put,
8160 { } /* end */
8163 static void alc861_auto_set_output_and_unmute(struct hda_codec *codec,
8164 hda_nid_t nid,
8165 int pin_type, int dac_idx)
8167 /* set as output */
8169 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
8170 pin_type);
8171 snd_hda_codec_write(codec, dac_idx, 0, AC_VERB_SET_AMP_GAIN_MUTE,
8172 AMP_OUT_UNMUTE);
8176 static void alc861_auto_init_multi_out(struct hda_codec *codec)
8178 struct alc_spec *spec = codec->spec;
8179 int i;
8181 alc_subsystem_id(codec, 0x0e, 0x0f, 0x0b);
8182 for (i = 0; i < spec->autocfg.line_outs; i++) {
8183 hda_nid_t nid = spec->autocfg.line_out_pins[i];
8184 if (nid)
8185 alc861_auto_set_output_and_unmute(codec, nid, PIN_OUT,
8186 spec->multiout.dac_nids[i]);
8190 static void alc861_auto_init_hp_out(struct hda_codec *codec)
8192 struct alc_spec *spec = codec->spec;
8193 hda_nid_t pin;
8195 pin = spec->autocfg.hp_pins[0];
8196 if (pin) /* connect to front */
8197 alc861_auto_set_output_and_unmute(codec, pin, PIN_HP,
8198 spec->multiout.dac_nids[0]);
8201 static void alc861_auto_init_analog_input(struct hda_codec *codec)
8203 struct alc_spec *spec = codec->spec;
8204 int i;
8206 for (i = 0; i < AUTO_PIN_LAST; i++) {
8207 hda_nid_t nid = spec->autocfg.input_pins[i];
8208 if (nid >= 0x0c && nid <= 0x11) {
8209 snd_hda_codec_write(codec, nid, 0,
8210 AC_VERB_SET_PIN_WIDGET_CONTROL,
8211 i <= AUTO_PIN_FRONT_MIC ?
8212 PIN_VREF80 : PIN_IN);
8217 /* parse the BIOS configuration and set up the alc_spec */
8218 /* return 1 if successful, 0 if the proper config is not found,
8219 * or a negative error code
8221 static int alc861_parse_auto_config(struct hda_codec *codec)
8223 struct alc_spec *spec = codec->spec;
8224 int err;
8225 static hda_nid_t alc861_ignore[] = { 0x1d, 0 };
8227 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
8228 alc861_ignore);
8229 if (err < 0)
8230 return err;
8231 if (!spec->autocfg.line_outs)
8232 return 0; /* can't find valid BIOS pin config */
8234 err = alc861_auto_fill_dac_nids(spec, &spec->autocfg);
8235 if (err < 0)
8236 return err;
8237 err = alc861_auto_create_multi_out_ctls(spec, &spec->autocfg);
8238 if (err < 0)
8239 return err;
8240 err = alc861_auto_create_hp_ctls(spec, spec->autocfg.hp_pins[0]);
8241 if (err < 0)
8242 return err;
8243 err = alc861_auto_create_analog_input_ctls(spec, &spec->autocfg);
8244 if (err < 0)
8245 return err;
8247 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
8249 if (spec->autocfg.dig_out_pin)
8250 spec->multiout.dig_out_nid = ALC861_DIGOUT_NID;
8252 if (spec->kctl_alloc)
8253 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
8255 spec->init_verbs[spec->num_init_verbs++] = alc861_auto_init_verbs;
8257 spec->num_mux_defs = 1;
8258 spec->input_mux = &spec->private_imux;
8260 spec->adc_nids = alc861_adc_nids;
8261 spec->num_adc_nids = ARRAY_SIZE(alc861_adc_nids);
8262 spec->mixers[spec->num_mixers] = alc861_capture_mixer;
8263 spec->num_mixers++;
8265 return 1;
8268 /* additional initialization for auto-configuration model */
8269 static void alc861_auto_init(struct hda_codec *codec)
8271 alc861_auto_init_multi_out(codec);
8272 alc861_auto_init_hp_out(codec);
8273 alc861_auto_init_analog_input(codec);
8278 * configuration and preset
8280 static const char *alc861_models[ALC861_MODEL_LAST] = {
8281 [ALC861_3ST] = "3stack",
8282 [ALC660_3ST] = "3stack-660",
8283 [ALC861_3ST_DIG] = "3stack-dig",
8284 [ALC861_6ST_DIG] = "6stack-dig",
8285 [ALC861_UNIWILL_M31] = "uniwill-m31",
8286 [ALC861_TOSHIBA] = "toshiba",
8287 [ALC861_ASUS] = "asus",
8288 [ALC861_ASUS_LAPTOP] = "asus-laptop",
8289 [ALC861_AUTO] = "auto",
8292 static struct snd_pci_quirk alc861_cfg_tbl[] = {
8293 SND_PCI_QUIRK(0x1043, 0x1205, "ASUS W7J", ALC861_3ST),
8294 SND_PCI_QUIRK(0x1043, 0x1335, "ASUS F2/3", ALC861_ASUS_LAPTOP),
8295 SND_PCI_QUIRK(0x1043, 0x1338, "ASUS F2/3", ALC861_ASUS_LAPTOP),
8296 SND_PCI_QUIRK(0x1043, 0x1393, "ASUS", ALC861_ASUS),
8297 SND_PCI_QUIRK(0x1043, 0x81e7, "ASUS", ALC660_3ST),
8298 SND_PCI_QUIRK(0x1179, 0xff00, "Toshiba", ALC861_TOSHIBA),
8299 SND_PCI_QUIRK(0x1179, 0xff10, "Toshiba", ALC861_TOSHIBA),
8300 SND_PCI_QUIRK(0x1584, 0x9072, "Uniwill m31", ALC861_UNIWILL_M31),
8301 SND_PCI_QUIRK(0x1584, 0x2b01, "Uniwill X40AIx", ALC861_UNIWILL_M31),
8302 SND_PCI_QUIRK(0x1849, 0x0660, "Asrock 939SLI32", ALC660_3ST),
8303 SND_PCI_QUIRK(0x8086, 0xd600, "Intel", ALC861_3ST),
8307 static struct alc_config_preset alc861_presets[] = {
8308 [ALC861_3ST] = {
8309 .mixers = { alc861_3ST_mixer },
8310 .init_verbs = { alc861_threestack_init_verbs },
8311 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
8312 .dac_nids = alc861_dac_nids,
8313 .num_channel_mode = ARRAY_SIZE(alc861_threestack_modes),
8314 .channel_mode = alc861_threestack_modes,
8315 .need_dac_fix = 1,
8316 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
8317 .adc_nids = alc861_adc_nids,
8318 .input_mux = &alc861_capture_source,
8320 [ALC861_3ST_DIG] = {
8321 .mixers = { alc861_base_mixer },
8322 .init_verbs = { alc861_threestack_init_verbs },
8323 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
8324 .dac_nids = alc861_dac_nids,
8325 .dig_out_nid = ALC861_DIGOUT_NID,
8326 .num_channel_mode = ARRAY_SIZE(alc861_threestack_modes),
8327 .channel_mode = alc861_threestack_modes,
8328 .need_dac_fix = 1,
8329 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
8330 .adc_nids = alc861_adc_nids,
8331 .input_mux = &alc861_capture_source,
8333 [ALC861_6ST_DIG] = {
8334 .mixers = { alc861_base_mixer },
8335 .init_verbs = { alc861_base_init_verbs },
8336 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
8337 .dac_nids = alc861_dac_nids,
8338 .dig_out_nid = ALC861_DIGOUT_NID,
8339 .num_channel_mode = ARRAY_SIZE(alc861_8ch_modes),
8340 .channel_mode = alc861_8ch_modes,
8341 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
8342 .adc_nids = alc861_adc_nids,
8343 .input_mux = &alc861_capture_source,
8345 [ALC660_3ST] = {
8346 .mixers = { alc861_3ST_mixer },
8347 .init_verbs = { alc861_threestack_init_verbs },
8348 .num_dacs = ARRAY_SIZE(alc660_dac_nids),
8349 .dac_nids = alc660_dac_nids,
8350 .num_channel_mode = ARRAY_SIZE(alc861_threestack_modes),
8351 .channel_mode = alc861_threestack_modes,
8352 .need_dac_fix = 1,
8353 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
8354 .adc_nids = alc861_adc_nids,
8355 .input_mux = &alc861_capture_source,
8357 [ALC861_UNIWILL_M31] = {
8358 .mixers = { alc861_uniwill_m31_mixer },
8359 .init_verbs = { alc861_uniwill_m31_init_verbs },
8360 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
8361 .dac_nids = alc861_dac_nids,
8362 .dig_out_nid = ALC861_DIGOUT_NID,
8363 .num_channel_mode = ARRAY_SIZE(alc861_uniwill_m31_modes),
8364 .channel_mode = alc861_uniwill_m31_modes,
8365 .need_dac_fix = 1,
8366 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
8367 .adc_nids = alc861_adc_nids,
8368 .input_mux = &alc861_capture_source,
8370 [ALC861_TOSHIBA] = {
8371 .mixers = { alc861_toshiba_mixer },
8372 .init_verbs = { alc861_base_init_verbs,
8373 alc861_toshiba_init_verbs },
8374 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
8375 .dac_nids = alc861_dac_nids,
8376 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
8377 .channel_mode = alc883_3ST_2ch_modes,
8378 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
8379 .adc_nids = alc861_adc_nids,
8380 .input_mux = &alc861_capture_source,
8381 .unsol_event = alc861_toshiba_unsol_event,
8382 .init_hook = alc861_toshiba_automute,
8384 [ALC861_ASUS] = {
8385 .mixers = { alc861_asus_mixer },
8386 .init_verbs = { alc861_asus_init_verbs },
8387 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
8388 .dac_nids = alc861_dac_nids,
8389 .dig_out_nid = ALC861_DIGOUT_NID,
8390 .num_channel_mode = ARRAY_SIZE(alc861_asus_modes),
8391 .channel_mode = alc861_asus_modes,
8392 .need_dac_fix = 1,
8393 .hp_nid = 0x06,
8394 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
8395 .adc_nids = alc861_adc_nids,
8396 .input_mux = &alc861_capture_source,
8398 [ALC861_ASUS_LAPTOP] = {
8399 .mixers = { alc861_toshiba_mixer, alc861_asus_laptop_mixer },
8400 .init_verbs = { alc861_asus_init_verbs,
8401 alc861_asus_laptop_init_verbs },
8402 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
8403 .dac_nids = alc861_dac_nids,
8404 .dig_out_nid = ALC861_DIGOUT_NID,
8405 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
8406 .channel_mode = alc883_3ST_2ch_modes,
8407 .need_dac_fix = 1,
8408 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
8409 .adc_nids = alc861_adc_nids,
8410 .input_mux = &alc861_capture_source,
8415 static int patch_alc861(struct hda_codec *codec)
8417 struct alc_spec *spec;
8418 int board_config;
8419 int err;
8421 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
8422 if (spec == NULL)
8423 return -ENOMEM;
8425 codec->spec = spec;
8427 board_config = snd_hda_check_board_config(codec, ALC861_MODEL_LAST,
8428 alc861_models,
8429 alc861_cfg_tbl);
8431 if (board_config < 0) {
8432 printk(KERN_INFO "hda_codec: Unknown model for ALC861, "
8433 "trying auto-probe from BIOS...\n");
8434 board_config = ALC861_AUTO;
8437 if (board_config == ALC861_AUTO) {
8438 /* automatic parse from the BIOS config */
8439 err = alc861_parse_auto_config(codec);
8440 if (err < 0) {
8441 alc_free(codec);
8442 return err;
8443 } else if (!err) {
8444 printk(KERN_INFO
8445 "hda_codec: Cannot set up configuration "
8446 "from BIOS. Using base mode...\n");
8447 board_config = ALC861_3ST_DIG;
8451 if (board_config != ALC861_AUTO)
8452 setup_preset(spec, &alc861_presets[board_config]);
8454 spec->stream_name_analog = "ALC861 Analog";
8455 spec->stream_analog_playback = &alc861_pcm_analog_playback;
8456 spec->stream_analog_capture = &alc861_pcm_analog_capture;
8458 spec->stream_name_digital = "ALC861 Digital";
8459 spec->stream_digital_playback = &alc861_pcm_digital_playback;
8460 spec->stream_digital_capture = &alc861_pcm_digital_capture;
8462 codec->patch_ops = alc_patch_ops;
8463 if (board_config == ALC861_AUTO)
8464 spec->init_hook = alc861_auto_init;
8466 return 0;
8470 * ALC861-VD support
8472 * Based on ALC882
8474 * In addition, an independent DAC
8476 #define ALC861VD_DIGOUT_NID 0x06
8478 static hda_nid_t alc861vd_dac_nids[4] = {
8479 /* front, surr, clfe, side surr */
8480 0x02, 0x03, 0x04, 0x05
8483 /* dac_nids for ALC660vd are in a different order - according to
8484 * Realtek's driver.
8485 * This should probably tesult in a different mixer for 6stack models
8486 * of ALC660vd codecs, but for now there is only 3stack mixer
8487 * - and it is the same as in 861vd.
8488 * adc_nids in ALC660vd are (is) the same as in 861vd
8490 static hda_nid_t alc660vd_dac_nids[3] = {
8491 /* front, rear, clfe, rear_surr */
8492 0x02, 0x04, 0x03
8495 static hda_nid_t alc861vd_adc_nids[1] = {
8496 /* ADC0 */
8497 0x09,
8500 /* input MUX */
8501 /* FIXME: should be a matrix-type input source selection */
8502 static struct hda_input_mux alc861vd_capture_source = {
8503 .num_items = 4,
8504 .items = {
8505 { "Mic", 0x0 },
8506 { "Front Mic", 0x1 },
8507 { "Line", 0x2 },
8508 { "CD", 0x4 },
8512 #define alc861vd_mux_enum_info alc_mux_enum_info
8513 #define alc861vd_mux_enum_get alc_mux_enum_get
8515 static int alc861vd_mux_enum_put(struct snd_kcontrol *kcontrol,
8516 struct snd_ctl_elem_value *ucontrol)
8518 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
8519 struct alc_spec *spec = codec->spec;
8520 const struct hda_input_mux *imux = spec->input_mux;
8521 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
8522 static hda_nid_t capture_mixers[1] = { 0x22 };
8523 hda_nid_t nid = capture_mixers[adc_idx];
8524 unsigned int *cur_val = &spec->cur_mux[adc_idx];
8525 unsigned int i, idx;
8527 idx = ucontrol->value.enumerated.item[0];
8528 if (idx >= imux->num_items)
8529 idx = imux->num_items - 1;
8530 if (*cur_val == idx && !codec->in_resume)
8531 return 0;
8532 for (i = 0; i < imux->num_items; i++) {
8533 unsigned int v = (i == idx) ? 0x7000 : 0x7080;
8534 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
8535 v | (imux->items[i].index << 8));
8537 *cur_val = idx;
8538 return 1;
8542 * 2ch mode
8544 static struct hda_channel_mode alc861vd_3stack_2ch_modes[1] = {
8545 { 2, NULL }
8549 * 6ch mode
8551 static struct hda_verb alc861vd_6stack_ch6_init[] = {
8552 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
8553 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
8554 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
8555 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
8556 { } /* end */
8560 * 8ch mode
8562 static struct hda_verb alc861vd_6stack_ch8_init[] = {
8563 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
8564 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
8565 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
8566 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
8567 { } /* end */
8570 static struct hda_channel_mode alc861vd_6stack_modes[2] = {
8571 { 6, alc861vd_6stack_ch6_init },
8572 { 8, alc861vd_6stack_ch8_init },
8575 static struct snd_kcontrol_new alc861vd_chmode_mixer[] = {
8577 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
8578 .name = "Channel Mode",
8579 .info = alc_ch_mode_info,
8580 .get = alc_ch_mode_get,
8581 .put = alc_ch_mode_put,
8583 { } /* end */
8586 static struct snd_kcontrol_new alc861vd_capture_mixer[] = {
8587 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
8588 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
8591 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
8592 /* The multiple "Capture Source" controls confuse alsamixer
8593 * So call somewhat different..
8594 *FIXME: the controls appear in the "playback" view!
8596 /* .name = "Capture Source", */
8597 .name = "Input Source",
8598 .count = 1,
8599 .info = alc861vd_mux_enum_info,
8600 .get = alc861vd_mux_enum_get,
8601 .put = alc861vd_mux_enum_put,
8603 { } /* end */
8606 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
8607 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
8609 static struct snd_kcontrol_new alc861vd_6st_mixer[] = {
8610 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
8611 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
8613 HDA_CODEC_VOLUME("Surround Playback Volume", 0x03, 0x0, HDA_OUTPUT),
8614 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
8616 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0,
8617 HDA_OUTPUT),
8618 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0,
8619 HDA_OUTPUT),
8620 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
8621 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
8623 HDA_CODEC_VOLUME("Side Playback Volume", 0x05, 0x0, HDA_OUTPUT),
8624 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
8626 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
8628 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
8629 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
8630 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
8632 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
8633 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
8634 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
8636 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
8637 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
8639 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
8640 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
8642 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
8643 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
8645 { } /* end */
8648 static struct snd_kcontrol_new alc861vd_3st_mixer[] = {
8649 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
8650 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
8652 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
8654 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
8655 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
8656 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
8658 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
8659 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
8660 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
8662 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
8663 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
8665 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
8666 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
8668 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
8669 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
8671 { } /* end */
8675 * generic initialization of ADC, input mixers and output mixers
8677 static struct hda_verb alc861vd_volume_init_verbs[] = {
8679 * Unmute ADC0 and set the default input to mic-in
8681 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
8682 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8684 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of
8685 * the analog-loopback mixer widget
8687 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
8688 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8689 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8690 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
8691 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
8692 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
8694 /* Capture mixer: unmute Mic, F-Mic, Line, CD inputs */
8695 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
8696 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(5)},
8697 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(6)},
8698 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(8)},
8701 * Set up output mixers (0x02 - 0x05)
8703 /* set vol=0 to output mixers */
8704 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8705 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8706 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8707 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8709 /* set up input amps for analog loopback */
8710 /* Amp Indices: DAC = 0, mixer = 1 */
8711 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
8712 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
8713 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
8714 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
8715 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
8716 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
8717 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
8718 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
8724 * 3-stack pin configuration:
8725 * front = 0x14, mic/clfe = 0x18, HP = 0x19, line/surr = 0x1a, f-mic = 0x1b
8727 static struct hda_verb alc861vd_3stack_init_verbs[] = {
8729 * Set pin mode and muting
8731 /* set front pin widgets 0x14 for output */
8732 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
8733 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8734 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
8736 /* Mic (rear) pin: input vref at 80% */
8737 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
8738 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8739 /* Front Mic pin: input vref at 80% */
8740 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
8741 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8742 /* Line In pin: input */
8743 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
8744 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8745 /* Line-2 In: Headphone output (output 0 - 0x0c) */
8746 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
8747 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8748 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
8749 /* CD pin widget for input */
8750 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
8756 * 6-stack pin configuration:
8758 static struct hda_verb alc861vd_6stack_init_verbs[] = {
8760 * Set pin mode and muting
8762 /* set front pin widgets 0x14 for output */
8763 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
8764 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8765 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
8767 /* Rear Pin: output 1 (0x0d) */
8768 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
8769 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8770 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
8771 /* CLFE Pin: output 2 (0x0e) */
8772 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
8773 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8774 {0x16, AC_VERB_SET_CONNECT_SEL, 0x02},
8775 /* Side Pin: output 3 (0x0f) */
8776 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
8777 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8778 {0x17, AC_VERB_SET_CONNECT_SEL, 0x03},
8780 /* Mic (rear) pin: input vref at 80% */
8781 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
8782 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8783 /* Front Mic pin: input vref at 80% */
8784 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
8785 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8786 /* Line In pin: input */
8787 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
8788 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8789 /* Line-2 In: Headphone output (output 0 - 0x0c) */
8790 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
8791 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8792 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
8793 /* CD pin widget for input */
8794 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
8799 /* pcm configuration: identiacal with ALC880 */
8800 #define alc861vd_pcm_analog_playback alc880_pcm_analog_playback
8801 #define alc861vd_pcm_analog_capture alc880_pcm_analog_capture
8802 #define alc861vd_pcm_digital_playback alc880_pcm_digital_playback
8803 #define alc861vd_pcm_digital_capture alc880_pcm_digital_capture
8806 * configuration and preset
8808 static const char *alc861vd_models[ALC861VD_MODEL_LAST] = {
8809 [ALC660VD_3ST] = "3stack-660",
8810 [ALC861VD_3ST] = "3stack",
8811 [ALC861VD_3ST_DIG] = "3stack-digout",
8812 [ALC861VD_6ST_DIG] = "6stack-digout",
8813 [ALC861VD_AUTO] = "auto",
8816 static struct snd_pci_quirk alc861vd_cfg_tbl[] = {
8817 SND_PCI_QUIRK(0x1043, 0x12e2, "Asus z35m", ALC660VD_3ST),
8818 SND_PCI_QUIRK(0x1043, 0x1339, "Asus G1", ALC660VD_3ST),
8819 SND_PCI_QUIRK(0x10de, 0x03f0, "Realtek ALC660 demo", ALC660VD_3ST),
8820 SND_PCI_QUIRK(0x1019, 0xa88d, "Realtek ALC660 demo", ALC660VD_3ST),
8822 SND_PCI_QUIRK(0x17aa, 0x3802, "Lenovo 3000 C200", ALC861VD_3ST),
8826 static struct alc_config_preset alc861vd_presets[] = {
8827 [ALC660VD_3ST] = {
8828 .mixers = { alc861vd_3st_mixer },
8829 .init_verbs = { alc861vd_volume_init_verbs,
8830 alc861vd_3stack_init_verbs },
8831 .num_dacs = ARRAY_SIZE(alc660vd_dac_nids),
8832 .dac_nids = alc660vd_dac_nids,
8833 .num_adc_nids = ARRAY_SIZE(alc861vd_adc_nids),
8834 .adc_nids = alc861vd_adc_nids,
8835 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
8836 .channel_mode = alc861vd_3stack_2ch_modes,
8837 .input_mux = &alc861vd_capture_source,
8839 [ALC861VD_3ST] = {
8840 .mixers = { alc861vd_3st_mixer },
8841 .init_verbs = { alc861vd_volume_init_verbs,
8842 alc861vd_3stack_init_verbs },
8843 .num_dacs = ARRAY_SIZE(alc861vd_dac_nids),
8844 .dac_nids = alc861vd_dac_nids,
8845 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
8846 .channel_mode = alc861vd_3stack_2ch_modes,
8847 .input_mux = &alc861vd_capture_source,
8849 [ALC861VD_3ST_DIG] = {
8850 .mixers = { alc861vd_3st_mixer },
8851 .init_verbs = { alc861vd_volume_init_verbs,
8852 alc861vd_3stack_init_verbs },
8853 .num_dacs = ARRAY_SIZE(alc861vd_dac_nids),
8854 .dac_nids = alc861vd_dac_nids,
8855 .dig_out_nid = ALC861VD_DIGOUT_NID,
8856 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
8857 .channel_mode = alc861vd_3stack_2ch_modes,
8858 .input_mux = &alc861vd_capture_source,
8860 [ALC861VD_6ST_DIG] = {
8861 .mixers = { alc861vd_6st_mixer, alc861vd_chmode_mixer },
8862 .init_verbs = { alc861vd_volume_init_verbs,
8863 alc861vd_6stack_init_verbs },
8864 .num_dacs = ARRAY_SIZE(alc861vd_dac_nids),
8865 .dac_nids = alc861vd_dac_nids,
8866 .dig_out_nid = ALC861VD_DIGOUT_NID,
8867 .num_channel_mode = ARRAY_SIZE(alc861vd_6stack_modes),
8868 .channel_mode = alc861vd_6stack_modes,
8869 .input_mux = &alc861vd_capture_source,
8874 * BIOS auto configuration
8876 static void alc861vd_auto_set_output_and_unmute(struct hda_codec *codec,
8877 hda_nid_t nid, int pin_type, int dac_idx)
8879 /* set as output */
8880 snd_hda_codec_write(codec, nid, 0,
8881 AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
8882 snd_hda_codec_write(codec, nid, 0,
8883 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
8886 static void alc861vd_auto_init_multi_out(struct hda_codec *codec)
8888 struct alc_spec *spec = codec->spec;
8889 int i;
8891 alc_subsystem_id(codec, 0x15, 0x1b, 0x14);
8892 for (i = 0; i <= HDA_SIDE; i++) {
8893 hda_nid_t nid = spec->autocfg.line_out_pins[i];
8894 if (nid)
8895 alc861vd_auto_set_output_and_unmute(codec, nid,
8896 PIN_OUT, i);
8901 static void alc861vd_auto_init_hp_out(struct hda_codec *codec)
8903 struct alc_spec *spec = codec->spec;
8904 hda_nid_t pin;
8906 pin = spec->autocfg.hp_pins[0];
8907 if (pin) /* connect to front and use dac 0 */
8908 alc861vd_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
8911 #define alc861vd_is_input_pin(nid) alc880_is_input_pin(nid)
8912 #define ALC861VD_PIN_CD_NID ALC880_PIN_CD_NID
8914 static void alc861vd_auto_init_analog_input(struct hda_codec *codec)
8916 struct alc_spec *spec = codec->spec;
8917 int i;
8919 for (i = 0; i < AUTO_PIN_LAST; i++) {
8920 hda_nid_t nid = spec->autocfg.input_pins[i];
8921 if (alc861vd_is_input_pin(nid)) {
8922 snd_hda_codec_write(codec, nid, 0,
8923 AC_VERB_SET_PIN_WIDGET_CONTROL,
8924 i <= AUTO_PIN_FRONT_MIC ?
8925 PIN_VREF80 : PIN_IN);
8926 if (nid != ALC861VD_PIN_CD_NID)
8927 snd_hda_codec_write(codec, nid, 0,
8928 AC_VERB_SET_AMP_GAIN_MUTE,
8929 AMP_OUT_MUTE);
8934 #define alc861vd_idx_to_mixer_vol(nid) ((nid) + 0x02)
8935 #define alc861vd_idx_to_mixer_switch(nid) ((nid) + 0x0c)
8937 /* add playback controls from the parsed DAC table */
8938 /* Based on ALC880 version. But ALC861VD has separate,
8939 * different NIDs for mute/unmute switch and volume control */
8940 static int alc861vd_auto_create_multi_out_ctls(struct alc_spec *spec,
8941 const struct auto_pin_cfg *cfg)
8943 char name[32];
8944 static const char *chname[4] = {"Front", "Surround", "CLFE", "Side"};
8945 hda_nid_t nid_v, nid_s;
8946 int i, err;
8948 for (i = 0; i < cfg->line_outs; i++) {
8949 if (!spec->multiout.dac_nids[i])
8950 continue;
8951 nid_v = alc861vd_idx_to_mixer_vol(
8952 alc880_dac_to_idx(
8953 spec->multiout.dac_nids[i]));
8954 nid_s = alc861vd_idx_to_mixer_switch(
8955 alc880_dac_to_idx(
8956 spec->multiout.dac_nids[i]));
8958 if (i == 2) {
8959 /* Center/LFE */
8960 err = add_control(spec, ALC_CTL_WIDGET_VOL,
8961 "Center Playback Volume",
8962 HDA_COMPOSE_AMP_VAL(nid_v, 1, 0,
8963 HDA_OUTPUT));
8964 if (err < 0)
8965 return err;
8966 err = add_control(spec, ALC_CTL_WIDGET_VOL,
8967 "LFE Playback Volume",
8968 HDA_COMPOSE_AMP_VAL(nid_v, 2, 0,
8969 HDA_OUTPUT));
8970 if (err < 0)
8971 return err;
8972 err = add_control(spec, ALC_CTL_BIND_MUTE,
8973 "Center Playback Switch",
8974 HDA_COMPOSE_AMP_VAL(nid_s, 1, 2,
8975 HDA_INPUT));
8976 if (err < 0)
8977 return err;
8978 err = add_control(spec, ALC_CTL_BIND_MUTE,
8979 "LFE Playback Switch",
8980 HDA_COMPOSE_AMP_VAL(nid_s, 2, 2,
8981 HDA_INPUT));
8982 if (err < 0)
8983 return err;
8984 } else {
8985 sprintf(name, "%s Playback Volume", chname[i]);
8986 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
8987 HDA_COMPOSE_AMP_VAL(nid_v, 3, 0,
8988 HDA_OUTPUT));
8989 if (err < 0)
8990 return err;
8991 sprintf(name, "%s Playback Switch", chname[i]);
8992 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
8993 HDA_COMPOSE_AMP_VAL(nid_v, 3, 2,
8994 HDA_INPUT));
8995 if (err < 0)
8996 return err;
8999 return 0;
9002 /* add playback controls for speaker and HP outputs */
9003 /* Based on ALC880 version. But ALC861VD has separate,
9004 * different NIDs for mute/unmute switch and volume control */
9005 static int alc861vd_auto_create_extra_out(struct alc_spec *spec,
9006 hda_nid_t pin, const char *pfx)
9008 hda_nid_t nid_v, nid_s;
9009 int err;
9010 char name[32];
9012 if (!pin)
9013 return 0;
9015 if (alc880_is_fixed_pin(pin)) {
9016 nid_v = alc880_idx_to_dac(alc880_fixed_pin_idx(pin));
9017 /* specify the DAC as the extra output */
9018 if (!spec->multiout.hp_nid)
9019 spec->multiout.hp_nid = nid_v;
9020 else
9021 spec->multiout.extra_out_nid[0] = nid_v;
9022 /* control HP volume/switch on the output mixer amp */
9023 nid_v = alc861vd_idx_to_mixer_vol(
9024 alc880_fixed_pin_idx(pin));
9025 nid_s = alc861vd_idx_to_mixer_switch(
9026 alc880_fixed_pin_idx(pin));
9028 sprintf(name, "%s Playback Volume", pfx);
9029 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
9030 HDA_COMPOSE_AMP_VAL(nid_v, 3, 0, HDA_OUTPUT));
9031 if (err < 0)
9032 return err;
9033 sprintf(name, "%s Playback Switch", pfx);
9034 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
9035 HDA_COMPOSE_AMP_VAL(nid_s, 3, 2, HDA_INPUT));
9036 if (err < 0)
9037 return err;
9038 } else if (alc880_is_multi_pin(pin)) {
9039 /* set manual connection */
9040 /* we have only a switch on HP-out PIN */
9041 sprintf(name, "%s Playback Switch", pfx);
9042 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
9043 HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
9044 if (err < 0)
9045 return err;
9047 return 0;
9050 /* parse the BIOS configuration and set up the alc_spec
9051 * return 1 if successful, 0 if the proper config is not found,
9052 * or a negative error code
9053 * Based on ALC880 version - had to change it to override
9054 * alc880_auto_create_extra_out and alc880_auto_create_multi_out_ctls */
9055 static int alc861vd_parse_auto_config(struct hda_codec *codec)
9057 struct alc_spec *spec = codec->spec;
9058 int err;
9059 static hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
9061 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
9062 alc861vd_ignore);
9063 if (err < 0)
9064 return err;
9065 if (!spec->autocfg.line_outs)
9066 return 0; /* can't find valid BIOS pin config */
9068 err = alc880_auto_fill_dac_nids(spec, &spec->autocfg);
9069 if (err < 0)
9070 return err;
9071 err = alc861vd_auto_create_multi_out_ctls(spec, &spec->autocfg);
9072 if (err < 0)
9073 return err;
9074 err = alc861vd_auto_create_extra_out(spec,
9075 spec->autocfg.speaker_pins[0],
9076 "Speaker");
9077 if (err < 0)
9078 return err;
9079 err = alc861vd_auto_create_extra_out(spec,
9080 spec->autocfg.hp_pins[0],
9081 "Headphone");
9082 if (err < 0)
9083 return err;
9084 err = alc880_auto_create_analog_input_ctls(spec, &spec->autocfg);
9085 if (err < 0)
9086 return err;
9088 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
9090 if (spec->autocfg.dig_out_pin)
9091 spec->multiout.dig_out_nid = ALC861VD_DIGOUT_NID;
9093 if (spec->kctl_alloc)
9094 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
9096 spec->init_verbs[spec->num_init_verbs++]
9097 = alc861vd_volume_init_verbs;
9099 spec->num_mux_defs = 1;
9100 spec->input_mux = &spec->private_imux;
9102 return 1;
9105 /* additional initialization for auto-configuration model */
9106 static void alc861vd_auto_init(struct hda_codec *codec)
9108 alc861vd_auto_init_multi_out(codec);
9109 alc861vd_auto_init_hp_out(codec);
9110 alc861vd_auto_init_analog_input(codec);
9113 static int patch_alc861vd(struct hda_codec *codec)
9115 struct alc_spec *spec;
9116 int err, board_config;
9118 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
9119 if (spec == NULL)
9120 return -ENOMEM;
9122 codec->spec = spec;
9124 board_config = snd_hda_check_board_config(codec, ALC861VD_MODEL_LAST,
9125 alc861vd_models,
9126 alc861vd_cfg_tbl);
9128 if (board_config < 0 || board_config >= ALC861VD_MODEL_LAST) {
9129 printk(KERN_INFO "hda_codec: Unknown model for ALC660VD/"
9130 "ALC861VD, trying auto-probe from BIOS...\n");
9131 board_config = ALC861VD_AUTO;
9134 if (board_config == ALC861VD_AUTO) {
9135 /* automatic parse from the BIOS config */
9136 err = alc861vd_parse_auto_config(codec);
9137 if (err < 0) {
9138 alc_free(codec);
9139 return err;
9140 } else if (!err) {
9141 printk(KERN_INFO
9142 "hda_codec: Cannot set up configuration "
9143 "from BIOS. Using base mode...\n");
9144 board_config = ALC861VD_3ST;
9148 if (board_config != ALC861VD_AUTO)
9149 setup_preset(spec, &alc861vd_presets[board_config]);
9151 spec->stream_name_analog = "ALC861VD Analog";
9152 spec->stream_analog_playback = &alc861vd_pcm_analog_playback;
9153 spec->stream_analog_capture = &alc861vd_pcm_analog_capture;
9155 spec->stream_name_digital = "ALC861VD Digital";
9156 spec->stream_digital_playback = &alc861vd_pcm_digital_playback;
9157 spec->stream_digital_capture = &alc861vd_pcm_digital_capture;
9159 spec->adc_nids = alc861vd_adc_nids;
9160 spec->num_adc_nids = ARRAY_SIZE(alc861vd_adc_nids);
9162 spec->mixers[spec->num_mixers] = alc861vd_capture_mixer;
9163 spec->num_mixers++;
9165 codec->patch_ops = alc_patch_ops;
9167 if (board_config == ALC861VD_AUTO)
9168 spec->init_hook = alc861vd_auto_init;
9170 return 0;
9174 * ALC662 support
9176 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
9177 * configuration. Each pin widget can choose any input DACs and a mixer.
9178 * Each ADC is connected from a mixer of all inputs. This makes possible
9179 * 6-channel independent captures.
9181 * In addition, an independent DAC for the multi-playback (not used in this
9182 * driver yet).
9184 #define ALC662_DIGOUT_NID 0x06
9185 #define ALC662_DIGIN_NID 0x0a
9187 static hda_nid_t alc662_dac_nids[4] = {
9188 /* front, rear, clfe, rear_surr */
9189 0x02, 0x03, 0x04
9192 static hda_nid_t alc662_adc_nids[1] = {
9193 /* ADC1-2 */
9194 0x09,
9196 /* input MUX */
9197 /* FIXME: should be a matrix-type input source selection */
9199 static struct hda_input_mux alc662_capture_source = {
9200 .num_items = 4,
9201 .items = {
9202 { "Mic", 0x0 },
9203 { "Front Mic", 0x1 },
9204 { "Line", 0x2 },
9205 { "CD", 0x4 },
9209 static struct hda_input_mux alc662_lenovo_101e_capture_source = {
9210 .num_items = 2,
9211 .items = {
9212 { "Mic", 0x1 },
9213 { "Line", 0x2 },
9216 #define alc662_mux_enum_info alc_mux_enum_info
9217 #define alc662_mux_enum_get alc_mux_enum_get
9219 static int alc662_mux_enum_put(struct snd_kcontrol *kcontrol,
9220 struct snd_ctl_elem_value *ucontrol)
9222 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
9223 struct alc_spec *spec = codec->spec;
9224 const struct hda_input_mux *imux = spec->input_mux;
9225 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
9226 static hda_nid_t capture_mixers[3] = { 0x24, 0x23, 0x22 };
9227 hda_nid_t nid = capture_mixers[adc_idx];
9228 unsigned int *cur_val = &spec->cur_mux[adc_idx];
9229 unsigned int i, idx;
9231 idx = ucontrol->value.enumerated.item[0];
9232 if (idx >= imux->num_items)
9233 idx = imux->num_items - 1;
9234 if (*cur_val == idx && !codec->in_resume)
9235 return 0;
9236 for (i = 0; i < imux->num_items; i++) {
9237 unsigned int v = (i == idx) ? 0x7000 : 0x7080;
9238 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
9239 v | (imux->items[i].index << 8));
9241 *cur_val = idx;
9242 return 1;
9245 * 2ch mode
9247 static struct hda_channel_mode alc662_3ST_2ch_modes[1] = {
9248 { 2, NULL }
9252 * 2ch mode
9254 static struct hda_verb alc662_3ST_ch2_init[] = {
9255 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
9256 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
9257 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
9258 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
9259 { } /* end */
9263 * 6ch mode
9265 static struct hda_verb alc662_3ST_ch6_init[] = {
9266 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
9267 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
9268 { 0x18, AC_VERB_SET_CONNECT_SEL, 0x02 },
9269 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
9270 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
9271 { 0x1a, AC_VERB_SET_CONNECT_SEL, 0x01 },
9272 { } /* end */
9275 static struct hda_channel_mode alc662_3ST_6ch_modes[2] = {
9276 { 2, alc662_3ST_ch2_init },
9277 { 6, alc662_3ST_ch6_init },
9281 * 2ch mode
9283 static struct hda_verb alc662_sixstack_ch6_init[] = {
9284 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
9285 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
9286 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
9287 { } /* end */
9291 * 6ch mode
9293 static struct hda_verb alc662_sixstack_ch8_init[] = {
9294 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
9295 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
9296 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
9297 { } /* end */
9300 static struct hda_channel_mode alc662_5stack_modes[2] = {
9301 { 2, alc662_sixstack_ch6_init },
9302 { 6, alc662_sixstack_ch8_init },
9305 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
9306 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
9309 static struct snd_kcontrol_new alc662_base_mixer[] = {
9310 /* output mixer control */
9311 HDA_CODEC_VOLUME("Front Playback Volume", 0x2, 0x0, HDA_OUTPUT),
9312 HDA_CODEC_MUTE("Front Playback Switch", 0x02, 0x0, HDA_OUTPUT),
9313 HDA_CODEC_VOLUME("Surround Playback Volume", 0x3, 0x0, HDA_OUTPUT),
9314 HDA_CODEC_MUTE("Surround Playback Switch", 0x03, 0x0, HDA_OUTPUT),
9315 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0, HDA_OUTPUT),
9316 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0, HDA_OUTPUT),
9317 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x04, 1, 2, HDA_INPUT),
9318 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x04, 2, 2, HDA_INPUT),
9319 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
9321 /*Input mixer control */
9322 HDA_CODEC_VOLUME("CD Playback Volume", 0xb, 0x4, HDA_INPUT),
9323 HDA_CODEC_MUTE("CD Playback Switch", 0xb, 0x4, HDA_INPUT),
9324 HDA_CODEC_VOLUME("Line Playback Volume", 0xb, 0x02, HDA_INPUT),
9325 HDA_CODEC_MUTE("Line Playback Switch", 0xb, 0x02, HDA_INPUT),
9326 HDA_CODEC_VOLUME("Mic Playback Volume", 0xb, 0x0, HDA_INPUT),
9327 HDA_CODEC_MUTE("Mic Playback Switch", 0xb, 0x0, HDA_INPUT),
9328 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0xb, 0x01, HDA_INPUT),
9329 HDA_CODEC_MUTE("Front Mic Playback Switch", 0xb, 0x01, HDA_INPUT),
9331 /* Capture mixer control */
9332 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
9333 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
9335 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9336 .name = "Capture Source",
9337 .count = 1,
9338 .info = alc_mux_enum_info,
9339 .get = alc_mux_enum_get,
9340 .put = alc_mux_enum_put,
9342 { } /* end */
9345 static struct snd_kcontrol_new alc662_3ST_2ch_mixer[] = {
9346 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
9347 HDA_BIND_MUTE("Front Playback Switch", 0x02, 2, HDA_INPUT),
9348 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
9349 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
9350 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
9351 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
9352 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
9353 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
9354 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
9355 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
9356 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
9357 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
9358 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
9359 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
9360 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
9362 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9363 /* .name = "Capture Source", */
9364 .name = "Input Source",
9365 .count = 1,
9366 .info = alc662_mux_enum_info,
9367 .get = alc662_mux_enum_get,
9368 .put = alc662_mux_enum_put,
9370 { } /* end */
9373 static struct snd_kcontrol_new alc662_3ST_6ch_mixer[] = {
9374 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
9375 HDA_BIND_MUTE("Front Playback Switch", 0x02, 2, HDA_INPUT),
9376 HDA_CODEC_VOLUME("Surround Playback Volume", 0x03, 0x0, HDA_OUTPUT),
9377 HDA_BIND_MUTE("Surround Playback Switch", 0x03, 2, HDA_INPUT),
9378 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0, HDA_OUTPUT),
9379 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0, HDA_OUTPUT),
9380 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x04, 1, 2, HDA_INPUT),
9381 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x04, 2, 2, HDA_INPUT),
9382 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
9383 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
9384 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
9385 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
9386 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
9387 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
9388 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
9389 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
9390 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
9391 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
9392 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
9393 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
9394 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
9396 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9397 /* .name = "Capture Source", */
9398 .name = "Input Source",
9399 .count = 1,
9400 .info = alc662_mux_enum_info,
9401 .get = alc662_mux_enum_get,
9402 .put = alc662_mux_enum_put,
9404 { } /* end */
9407 static struct snd_kcontrol_new alc662_lenovo_101e_mixer[] = {
9408 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
9409 HDA_BIND_MUTE("Front Playback Switch", 0x02, 2, HDA_INPUT),
9410 HDA_CODEC_VOLUME("iSpeaker Playback Volume", 0x03, 0x0, HDA_OUTPUT),
9411 HDA_BIND_MUTE("iSpeaker Playback Switch", 0x03, 2, HDA_INPUT),
9412 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
9413 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
9414 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
9415 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
9416 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
9417 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
9418 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
9420 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9421 /* .name = "Capture Source", */
9422 .name = "Input Source",
9423 .count = 1,
9424 .info = alc662_mux_enum_info,
9425 .get = alc662_mux_enum_get,
9426 .put = alc662_mux_enum_put,
9428 { } /* end */
9431 static struct snd_kcontrol_new alc662_chmode_mixer[] = {
9433 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9434 .name = "Channel Mode",
9435 .info = alc_ch_mode_info,
9436 .get = alc_ch_mode_get,
9437 .put = alc_ch_mode_put,
9439 { } /* end */
9442 static struct hda_verb alc662_init_verbs[] = {
9443 /* ADC: mute amp left and right */
9444 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
9445 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
9446 /* Front mixer: unmute input/output amp left and right (volume = 0) */
9448 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9449 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9450 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9451 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
9452 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
9454 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9455 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9456 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9457 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9458 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9459 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9461 /* Front Pin: output 0 (0x0c) */
9462 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
9463 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9465 /* Rear Pin: output 1 (0x0d) */
9466 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
9467 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9469 /* CLFE Pin: output 2 (0x0e) */
9470 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
9471 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9473 /* Mic (rear) pin: input vref at 80% */
9474 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
9475 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
9476 /* Front Mic pin: input vref at 80% */
9477 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
9478 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
9479 /* Line In pin: input */
9480 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
9481 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
9482 /* Line-2 In: Headphone output (output 0 - 0x0c) */
9483 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
9484 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9485 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
9486 /* CD pin widget for input */
9487 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
9489 /* FIXME: use matrix-type input source selection */
9490 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
9491 /* Input mixer */
9492 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9493 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9494 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9495 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
9499 static struct hda_verb alc662_sue_init_verbs[] = {
9500 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|ALC880_FRONT_EVENT},
9501 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|ALC880_HP_EVENT},
9506 * generic initialization of ADC, input mixers and output mixers
9508 static struct hda_verb alc662_auto_init_verbs[] = {
9510 * Unmute ADC and set the default input to mic-in
9512 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
9513 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9515 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
9516 * mixer widget
9517 * Note: PASD motherboards uses the Line In 2 as the input for front
9518 * panel mic (mic 2)
9520 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
9521 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9522 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9523 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9524 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
9525 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
9528 * Set up output mixers (0x0c - 0x0f)
9530 /* set vol=0 to output mixers */
9531 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
9532 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
9533 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
9535 /* set up input amps for analog loopback */
9536 /* Amp Indices: DAC = 0, mixer = 1 */
9537 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9538 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9539 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9540 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9541 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9542 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9545 /* FIXME: use matrix-type input source selection */
9546 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
9547 /* Input mixer */
9548 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9549 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9550 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9551 /*{0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},*/
9552 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
9557 /* capture mixer elements */
9558 static struct snd_kcontrol_new alc662_capture_mixer[] = {
9559 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
9560 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
9562 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9563 /* The multiple "Capture Source" controls confuse alsamixer
9564 * So call somewhat different..
9565 * FIXME: the controls appear in the "playback" view!
9567 /* .name = "Capture Source", */
9568 .name = "Input Source",
9569 .count = 1,
9570 .info = alc882_mux_enum_info,
9571 .get = alc882_mux_enum_get,
9572 .put = alc882_mux_enum_put,
9574 { } /* end */
9577 static void alc662_lenovo_101e_ispeaker_automute(struct hda_codec *codec)
9579 unsigned int present;
9580 unsigned char bits;
9582 present = snd_hda_codec_read(codec, 0x14, 0,
9583 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
9584 bits = present ? 0x80 : 0;
9585 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
9586 0x80, bits);
9587 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
9588 0x80, bits);
9591 static void alc662_lenovo_101e_all_automute(struct hda_codec *codec)
9593 unsigned int present;
9594 unsigned char bits;
9596 present = snd_hda_codec_read(codec, 0x1b, 0,
9597 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
9598 bits = present ? 0x80 : 0;
9599 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
9600 0x80, bits);
9601 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
9602 0x80, bits);
9603 snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
9604 0x80, bits);
9605 snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
9606 0x80, bits);
9609 static void alc662_lenovo_101e_unsol_event(struct hda_codec *codec,
9610 unsigned int res)
9612 if ((res >> 26) == ALC880_HP_EVENT)
9613 alc662_lenovo_101e_all_automute(codec);
9614 if ((res >> 26) == ALC880_FRONT_EVENT)
9615 alc662_lenovo_101e_ispeaker_automute(codec);
9619 /* pcm configuration: identiacal with ALC880 */
9620 #define alc662_pcm_analog_playback alc880_pcm_analog_playback
9621 #define alc662_pcm_analog_capture alc880_pcm_analog_capture
9622 #define alc662_pcm_digital_playback alc880_pcm_digital_playback
9623 #define alc662_pcm_digital_capture alc880_pcm_digital_capture
9626 * configuration and preset
9628 static const char *alc662_models[ALC662_MODEL_LAST] = {
9629 [ALC662_3ST_2ch_DIG] = "3stack-dig",
9630 [ALC662_3ST_6ch_DIG] = "3stack-6ch-dig",
9631 [ALC662_3ST_6ch] = "3stack-6ch",
9632 [ALC662_5ST_DIG] = "6stack-dig",
9633 [ALC662_LENOVO_101E] = "lenovo-101e",
9634 [ALC662_AUTO] = "auto",
9637 static struct snd_pci_quirk alc662_cfg_tbl[] = {
9638 SND_PCI_QUIRK(0x17aa, 0x101e, "Lenovo", ALC662_LENOVO_101E),
9642 static struct alc_config_preset alc662_presets[] = {
9643 [ALC662_3ST_2ch_DIG] = {
9644 .mixers = { alc662_3ST_2ch_mixer },
9645 .init_verbs = { alc662_init_verbs },
9646 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
9647 .dac_nids = alc662_dac_nids,
9648 .dig_out_nid = ALC662_DIGOUT_NID,
9649 .num_adc_nids = ARRAY_SIZE(alc662_adc_nids),
9650 .adc_nids = alc662_adc_nids,
9651 .dig_in_nid = ALC662_DIGIN_NID,
9652 .num_channel_mode = ARRAY_SIZE(alc662_3ST_2ch_modes),
9653 .channel_mode = alc662_3ST_2ch_modes,
9654 .input_mux = &alc662_capture_source,
9656 [ALC662_3ST_6ch_DIG] = {
9657 .mixers = { alc662_3ST_6ch_mixer, alc662_chmode_mixer },
9658 .init_verbs = { alc662_init_verbs },
9659 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
9660 .dac_nids = alc662_dac_nids,
9661 .dig_out_nid = ALC662_DIGOUT_NID,
9662 .num_adc_nids = ARRAY_SIZE(alc662_adc_nids),
9663 .adc_nids = alc662_adc_nids,
9664 .dig_in_nid = ALC662_DIGIN_NID,
9665 .num_channel_mode = ARRAY_SIZE(alc662_3ST_6ch_modes),
9666 .channel_mode = alc662_3ST_6ch_modes,
9667 .need_dac_fix = 1,
9668 .input_mux = &alc662_capture_source,
9670 [ALC662_3ST_6ch] = {
9671 .mixers = { alc662_3ST_6ch_mixer, alc662_chmode_mixer },
9672 .init_verbs = { alc662_init_verbs },
9673 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
9674 .dac_nids = alc662_dac_nids,
9675 .num_adc_nids = ARRAY_SIZE(alc662_adc_nids),
9676 .adc_nids = alc662_adc_nids,
9677 .num_channel_mode = ARRAY_SIZE(alc662_3ST_6ch_modes),
9678 .channel_mode = alc662_3ST_6ch_modes,
9679 .need_dac_fix = 1,
9680 .input_mux = &alc662_capture_source,
9682 [ALC662_5ST_DIG] = {
9683 .mixers = { alc662_base_mixer, alc662_chmode_mixer },
9684 .init_verbs = { alc662_init_verbs },
9685 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
9686 .dac_nids = alc662_dac_nids,
9687 .dig_out_nid = ALC662_DIGOUT_NID,
9688 .num_adc_nids = ARRAY_SIZE(alc662_adc_nids),
9689 .adc_nids = alc662_adc_nids,
9690 .dig_in_nid = ALC662_DIGIN_NID,
9691 .num_channel_mode = ARRAY_SIZE(alc662_5stack_modes),
9692 .channel_mode = alc662_5stack_modes,
9693 .input_mux = &alc662_capture_source,
9695 [ALC662_LENOVO_101E] = {
9696 .mixers = { alc662_lenovo_101e_mixer },
9697 .init_verbs = { alc662_init_verbs, alc662_sue_init_verbs },
9698 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
9699 .dac_nids = alc662_dac_nids,
9700 .num_adc_nids = ARRAY_SIZE(alc662_adc_nids),
9701 .adc_nids = alc662_adc_nids,
9702 .num_channel_mode = ARRAY_SIZE(alc662_3ST_2ch_modes),
9703 .channel_mode = alc662_3ST_2ch_modes,
9704 .input_mux = &alc662_lenovo_101e_capture_source,
9705 .unsol_event = alc662_lenovo_101e_unsol_event,
9706 .init_hook = alc662_lenovo_101e_all_automute,
9713 * BIOS auto configuration
9716 /* add playback controls from the parsed DAC table */
9717 static int alc662_auto_create_multi_out_ctls(struct alc_spec *spec,
9718 const struct auto_pin_cfg *cfg)
9720 char name[32];
9721 static const char *chname[4] = {
9722 "Front", "Surround", NULL /*CLFE*/, "Side"
9724 hda_nid_t nid;
9725 int i, err;
9727 for (i = 0; i < cfg->line_outs; i++) {
9728 if (!spec->multiout.dac_nids[i])
9729 continue;
9730 nid = alc880_idx_to_dac(i);
9731 if (i == 2) {
9732 /* Center/LFE */
9733 err = add_control(spec, ALC_CTL_WIDGET_VOL,
9734 "Center Playback Volume",
9735 HDA_COMPOSE_AMP_VAL(nid, 1, 0,
9736 HDA_OUTPUT));
9737 if (err < 0)
9738 return err;
9739 err = add_control(spec, ALC_CTL_WIDGET_VOL,
9740 "LFE Playback Volume",
9741 HDA_COMPOSE_AMP_VAL(nid, 2, 0,
9742 HDA_OUTPUT));
9743 if (err < 0)
9744 return err;
9745 err = add_control(spec, ALC_CTL_BIND_MUTE,
9746 "Center Playback Switch",
9747 HDA_COMPOSE_AMP_VAL(nid, 1, 2,
9748 HDA_INPUT));
9749 if (err < 0)
9750 return err;
9751 err = add_control(spec, ALC_CTL_BIND_MUTE,
9752 "LFE Playback Switch",
9753 HDA_COMPOSE_AMP_VAL(nid, 2, 2,
9754 HDA_INPUT));
9755 if (err < 0)
9756 return err;
9757 } else {
9758 sprintf(name, "%s Playback Volume", chname[i]);
9759 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
9760 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
9761 HDA_OUTPUT));
9762 if (err < 0)
9763 return err;
9764 sprintf(name, "%s Playback Switch", chname[i]);
9765 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
9766 HDA_COMPOSE_AMP_VAL(nid, 3, 2,
9767 HDA_INPUT));
9768 if (err < 0)
9769 return err;
9772 return 0;
9775 /* add playback controls for speaker and HP outputs */
9776 static int alc662_auto_create_extra_out(struct alc_spec *spec, hda_nid_t pin,
9777 const char *pfx)
9779 hda_nid_t nid;
9780 int err;
9781 char name[32];
9783 if (!pin)
9784 return 0;
9786 if (alc880_is_fixed_pin(pin)) {
9787 nid = alc880_idx_to_dac(alc880_fixed_pin_idx(pin));
9788 /* printk("DAC nid=%x\n",nid); */
9789 /* specify the DAC as the extra output */
9790 if (!spec->multiout.hp_nid)
9791 spec->multiout.hp_nid = nid;
9792 else
9793 spec->multiout.extra_out_nid[0] = nid;
9794 /* control HP volume/switch on the output mixer amp */
9795 nid = alc880_idx_to_dac(alc880_fixed_pin_idx(pin));
9796 sprintf(name, "%s Playback Volume", pfx);
9797 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
9798 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT));
9799 if (err < 0)
9800 return err;
9801 sprintf(name, "%s Playback Switch", pfx);
9802 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
9803 HDA_COMPOSE_AMP_VAL(nid, 3, 2, HDA_INPUT));
9804 if (err < 0)
9805 return err;
9806 } else if (alc880_is_multi_pin(pin)) {
9807 /* set manual connection */
9808 /* we have only a switch on HP-out PIN */
9809 sprintf(name, "%s Playback Switch", pfx);
9810 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
9811 HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
9812 if (err < 0)
9813 return err;
9815 return 0;
9818 /* create playback/capture controls for input pins */
9819 static int alc662_auto_create_analog_input_ctls(struct alc_spec *spec,
9820 const struct auto_pin_cfg *cfg)
9822 struct hda_input_mux *imux = &spec->private_imux;
9823 int i, err, idx;
9825 for (i = 0; i < AUTO_PIN_LAST; i++) {
9826 if (alc880_is_input_pin(cfg->input_pins[i])) {
9827 idx = alc880_input_pin_idx(cfg->input_pins[i]);
9828 err = new_analog_input(spec, cfg->input_pins[i],
9829 auto_pin_cfg_labels[i],
9830 idx, 0x0b);
9831 if (err < 0)
9832 return err;
9833 imux->items[imux->num_items].label =
9834 auto_pin_cfg_labels[i];
9835 imux->items[imux->num_items].index =
9836 alc880_input_pin_idx(cfg->input_pins[i]);
9837 imux->num_items++;
9840 return 0;
9843 static void alc662_auto_set_output_and_unmute(struct hda_codec *codec,
9844 hda_nid_t nid, int pin_type,
9845 int dac_idx)
9847 /* set as output */
9848 snd_hda_codec_write(codec, nid, 0,
9849 AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
9850 snd_hda_codec_write(codec, nid, 0,
9851 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
9852 /* need the manual connection? */
9853 if (alc880_is_multi_pin(nid)) {
9854 struct alc_spec *spec = codec->spec;
9855 int idx = alc880_multi_pin_idx(nid);
9856 snd_hda_codec_write(codec, alc880_idx_to_selector(idx), 0,
9857 AC_VERB_SET_CONNECT_SEL,
9858 alc880_dac_to_idx(spec->multiout.dac_nids[dac_idx]));
9862 static void alc662_auto_init_multi_out(struct hda_codec *codec)
9864 struct alc_spec *spec = codec->spec;
9865 int i;
9867 for (i = 0; i <= HDA_SIDE; i++) {
9868 hda_nid_t nid = spec->autocfg.line_out_pins[i];
9869 if (nid)
9870 alc662_auto_set_output_and_unmute(codec, nid, PIN_OUT,
9875 static void alc662_auto_init_hp_out(struct hda_codec *codec)
9877 struct alc_spec *spec = codec->spec;
9878 hda_nid_t pin;
9880 pin = spec->autocfg.hp_pins[0];
9881 if (pin) /* connect to front */
9882 /* use dac 0 */
9883 alc662_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
9886 #define alc662_is_input_pin(nid) alc880_is_input_pin(nid)
9887 #define ALC662_PIN_CD_NID ALC880_PIN_CD_NID
9889 static void alc662_auto_init_analog_input(struct hda_codec *codec)
9891 struct alc_spec *spec = codec->spec;
9892 int i;
9894 for (i = 0; i < AUTO_PIN_LAST; i++) {
9895 hda_nid_t nid = spec->autocfg.input_pins[i];
9896 if (alc662_is_input_pin(nid)) {
9897 snd_hda_codec_write(codec, nid, 0,
9898 AC_VERB_SET_PIN_WIDGET_CONTROL,
9899 (i <= AUTO_PIN_FRONT_MIC ?
9900 PIN_VREF80 : PIN_IN));
9901 if (nid != ALC662_PIN_CD_NID)
9902 snd_hda_codec_write(codec, nid, 0,
9903 AC_VERB_SET_AMP_GAIN_MUTE,
9904 AMP_OUT_MUTE);
9909 static int alc662_parse_auto_config(struct hda_codec *codec)
9911 struct alc_spec *spec = codec->spec;
9912 int err;
9913 static hda_nid_t alc662_ignore[] = { 0x1d, 0 };
9915 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
9916 alc662_ignore);
9917 if (err < 0)
9918 return err;
9919 if (!spec->autocfg.line_outs)
9920 return 0; /* can't find valid BIOS pin config */
9922 err = alc880_auto_fill_dac_nids(spec, &spec->autocfg);
9923 if (err < 0)
9924 return err;
9925 err = alc662_auto_create_multi_out_ctls(spec, &spec->autocfg);
9926 if (err < 0)
9927 return err;
9928 err = alc662_auto_create_extra_out(spec,
9929 spec->autocfg.speaker_pins[0],
9930 "Speaker");
9931 if (err < 0)
9932 return err;
9933 err = alc662_auto_create_extra_out(spec, spec->autocfg.hp_pins[0],
9934 "Headphone");
9935 if (err < 0)
9936 return err;
9937 err = alc662_auto_create_analog_input_ctls(spec, &spec->autocfg);
9938 if (err < 0)
9939 return err;
9941 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
9943 if (spec->autocfg.dig_out_pin)
9944 spec->multiout.dig_out_nid = ALC880_DIGOUT_NID;
9946 if (spec->kctl_alloc)
9947 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
9949 spec->num_mux_defs = 1;
9950 spec->input_mux = &spec->private_imux;
9952 if (err < 0)
9953 return err;
9954 else if (err > 0)
9955 /* hack - override the init verbs */
9956 spec->init_verbs[0] = alc662_auto_init_verbs;
9957 spec->mixers[spec->num_mixers] = alc662_capture_mixer;
9958 spec->num_mixers++;
9959 return err;
9962 /* additional initialization for auto-configuration model */
9963 static void alc662_auto_init(struct hda_codec *codec)
9965 alc662_auto_init_multi_out(codec);
9966 alc662_auto_init_hp_out(codec);
9967 alc662_auto_init_analog_input(codec);
9970 static int patch_alc662(struct hda_codec *codec)
9972 struct alc_spec *spec;
9973 int err, board_config;
9975 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
9976 if (!spec)
9977 return -ENOMEM;
9979 codec->spec = spec;
9981 board_config = snd_hda_check_board_config(codec, ALC662_MODEL_LAST,
9982 alc662_models,
9983 alc662_cfg_tbl);
9984 if (board_config < 0) {
9985 printk(KERN_INFO "hda_codec: Unknown model for ALC662, "
9986 "trying auto-probe from BIOS...\n");
9987 board_config = ALC662_AUTO;
9990 if (board_config == ALC662_AUTO) {
9991 /* automatic parse from the BIOS config */
9992 err = alc662_parse_auto_config(codec);
9993 if (err < 0) {
9994 alc_free(codec);
9995 return err;
9996 } else if (err) {
9997 printk(KERN_INFO
9998 "hda_codec: Cannot set up configuration "
9999 "from BIOS. Using base mode...\n");
10000 board_config = ALC662_3ST_2ch_DIG;
10004 if (board_config != ALC662_AUTO)
10005 setup_preset(spec, &alc662_presets[board_config]);
10007 spec->stream_name_analog = "ALC662 Analog";
10008 spec->stream_analog_playback = &alc662_pcm_analog_playback;
10009 spec->stream_analog_capture = &alc662_pcm_analog_capture;
10011 spec->stream_name_digital = "ALC662 Digital";
10012 spec->stream_digital_playback = &alc662_pcm_digital_playback;
10013 spec->stream_digital_capture = &alc662_pcm_digital_capture;
10015 if (!spec->adc_nids && spec->input_mux) {
10016 spec->adc_nids = alc662_adc_nids;
10017 spec->num_adc_nids = ARRAY_SIZE(alc662_adc_nids);
10020 codec->patch_ops = alc_patch_ops;
10021 if (board_config == ALC662_AUTO)
10022 spec->init_hook = alc662_auto_init;
10024 return 0;
10028 * patch entries
10030 struct hda_codec_preset snd_hda_preset_realtek[] = {
10031 { .id = 0x10ec0260, .name = "ALC260", .patch = patch_alc260 },
10032 { .id = 0x10ec0262, .name = "ALC262", .patch = patch_alc262 },
10033 { .id = 0x10ec0861, .rev = 0x100340, .name = "ALC660",
10034 .patch = patch_alc861 },
10035 { .id = 0x10ec0660, .name = "ALC660-VD", .patch = patch_alc861vd },
10036 { .id = 0x10ec0861, .name = "ALC861", .patch = patch_alc861 },
10037 { .id = 0x10ec0862, .name = "ALC861-VD", .patch = patch_alc861vd },
10038 { .id = 0x10ec0662, .rev = 0x100002, .name = "ALC662 rev2",
10039 .patch = patch_alc883 },
10040 { .id = 0x10ec0662, .rev = 0x100101, .name = "ALC662 rev1",
10041 .patch = patch_alc662 },
10042 { .id = 0x10ec0880, .name = "ALC880", .patch = patch_alc880 },
10043 { .id = 0x10ec0882, .name = "ALC882", .patch = patch_alc882 },
10044 { .id = 0x10ec0883, .name = "ALC883", .patch = patch_alc883 },
10045 { .id = 0x10ec0885, .name = "ALC885", .patch = patch_alc882 },
10046 { .id = 0x10ec0888, .name = "ALC888", .patch = patch_alc883 },
10047 {} /* terminator */