[ALSA] hda-codec - Add lg model for LG laptop
[deliverable/linux.git] / sound / pci / hda / patch_realtek.c
1 /*
2 * Universal Interface for Intel High Definition Audio Codec
3 *
4 * HD audio interface patch for ALC 260/880/882 codecs
5 *
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>
10 *
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.
15 *
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.
20 *
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
24 */
25
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"
34
35
36 /* ALC880 board config type */
37 enum {
38 ALC880_3ST,
39 ALC880_3ST_DIG,
40 ALC880_5ST,
41 ALC880_5ST_DIG,
42 ALC880_W810,
43 ALC880_Z71V,
44 ALC880_6ST,
45 ALC880_6ST_DIG,
46 ALC880_F1734,
47 ALC880_ASUS,
48 ALC880_ASUS_DIG,
49 ALC880_ASUS_W1V,
50 ALC880_ASUS_DIG2,
51 ALC880_UNIWILL_DIG,
52 ALC880_CLEVO,
53 ALC880_TCL_S700,
54 ALC880_LG,
55 #ifdef CONFIG_SND_DEBUG
56 ALC880_TEST,
57 #endif
58 ALC880_AUTO,
59 ALC880_MODEL_LAST /* last tag */
60 };
61
62 /* ALC260 models */
63 enum {
64 ALC260_BASIC,
65 ALC260_HP,
66 ALC260_HP_3013,
67 ALC260_FUJITSU_S702X,
68 ALC260_ACER,
69 #ifdef CONFIG_SND_DEBUG
70 ALC260_TEST,
71 #endif
72 ALC260_AUTO,
73 ALC260_MODEL_LAST /* last tag */
74 };
75
76 /* ALC262 models */
77 enum {
78 ALC262_BASIC,
79 ALC262_FUJITSU,
80 ALC262_AUTO,
81 ALC262_MODEL_LAST /* last tag */
82 };
83
84 /* ALC861 models */
85 enum {
86 ALC861_3ST,
87 ALC861_3ST_DIG,
88 ALC861_6ST_DIG,
89 ALC861_AUTO,
90 ALC861_MODEL_LAST,
91 };
92
93 /* ALC882 models */
94 enum {
95 ALC882_3ST_DIG,
96 ALC882_6ST_DIG,
97 ALC882_AUTO,
98 ALC882_MODEL_LAST,
99 };
100
101 /* for GPIO Poll */
102 #define GPIO_MASK 0x03
103
104 struct alc_spec {
105 /* codec parameterization */
106 struct snd_kcontrol_new *mixers[5]; /* mixer arrays */
107 unsigned int num_mixers;
108
109 const struct hda_verb *init_verbs[5]; /* initialization verbs
110 * don't forget NULL termination!
111 */
112 unsigned int num_init_verbs;
113
114 char *stream_name_analog; /* analog PCM stream */
115 struct hda_pcm_stream *stream_analog_playback;
116 struct hda_pcm_stream *stream_analog_capture;
117
118 char *stream_name_digital; /* digital PCM stream */
119 struct hda_pcm_stream *stream_digital_playback;
120 struct hda_pcm_stream *stream_digital_capture;
121
122 /* playback */
123 struct hda_multi_out multiout; /* playback set-up
124 * max_channels, dacs must be set
125 * dig_out_nid and hp_nid are optional
126 */
127
128 /* capture */
129 unsigned int num_adc_nids;
130 hda_nid_t *adc_nids;
131 hda_nid_t dig_in_nid; /* digital-in NID; optional */
132
133 /* capture source */
134 const struct hda_input_mux *input_mux;
135 unsigned int cur_mux[3];
136
137 /* channel model */
138 const struct hda_channel_mode *channel_mode;
139 int num_channel_mode;
140
141 /* PCM information */
142 struct hda_pcm pcm_rec[3]; /* used in alc_build_pcms() */
143
144 /* dynamic controls, init_verbs and input_mux */
145 struct auto_pin_cfg autocfg;
146 unsigned int num_kctl_alloc, num_kctl_used;
147 struct snd_kcontrol_new *kctl_alloc;
148 struct hda_input_mux private_imux;
149 hda_nid_t private_dac_nids[5];
150
151 /* hooks */
152 void (*init_hook)(struct hda_codec *codec);
153 void (*unsol_event)(struct hda_codec *codec, unsigned int res);
154
155 /* for pin sensing */
156 unsigned int sense_updated: 1;
157 unsigned int jack_present: 1;
158 };
159
160 /*
161 * configuration template - to be copied to the spec instance
162 */
163 struct alc_config_preset {
164 struct snd_kcontrol_new *mixers[5]; /* should be identical size with spec */
165 const struct hda_verb *init_verbs[5];
166 unsigned int num_dacs;
167 hda_nid_t *dac_nids;
168 hda_nid_t dig_out_nid; /* optional */
169 hda_nid_t hp_nid; /* optional */
170 unsigned int num_adc_nids;
171 hda_nid_t *adc_nids;
172 hda_nid_t dig_in_nid;
173 unsigned int num_channel_mode;
174 const struct hda_channel_mode *channel_mode;
175 const struct hda_input_mux *input_mux;
176 void (*unsol_event)(struct hda_codec *, unsigned int);
177 void (*init_hook)(struct hda_codec *);
178 };
179
180
181 /*
182 * input MUX handling
183 */
184 static int alc_mux_enum_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
185 {
186 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
187 struct alc_spec *spec = codec->spec;
188 return snd_hda_input_mux_info(spec->input_mux, uinfo);
189 }
190
191 static int alc_mux_enum_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
192 {
193 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
194 struct alc_spec *spec = codec->spec;
195 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
196
197 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
198 return 0;
199 }
200
201 static int alc_mux_enum_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
202 {
203 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
204 struct alc_spec *spec = codec->spec;
205 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
206 return snd_hda_input_mux_put(codec, spec->input_mux, ucontrol,
207 spec->adc_nids[adc_idx], &spec->cur_mux[adc_idx]);
208 }
209
210
211 /*
212 * channel mode setting
213 */
214 static int alc_ch_mode_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
215 {
216 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
217 struct alc_spec *spec = codec->spec;
218 return snd_hda_ch_mode_info(codec, uinfo, spec->channel_mode,
219 spec->num_channel_mode);
220 }
221
222 static int alc_ch_mode_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
223 {
224 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
225 struct alc_spec *spec = codec->spec;
226 return snd_hda_ch_mode_get(codec, ucontrol, spec->channel_mode,
227 spec->num_channel_mode, spec->multiout.max_channels);
228 }
229
230 static int alc_ch_mode_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
231 {
232 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
233 struct alc_spec *spec = codec->spec;
234 return snd_hda_ch_mode_put(codec, ucontrol, spec->channel_mode,
235 spec->num_channel_mode, &spec->multiout.max_channels);
236 }
237
238 /*
239 * Control the mode of pin widget settings via the mixer. "pc" is used
240 * instead of "%" to avoid consequences of accidently treating the % as
241 * being part of a format specifier. Maximum allowed length of a value is
242 * 63 characters plus NULL terminator.
243 *
244 * Note: some retasking pin complexes seem to ignore requests for input
245 * states other than HiZ (eg: PIN_VREFxx) and revert to HiZ if any of these
246 * are requested. Therefore order this list so that this behaviour will not
247 * cause problems when mixer clients move through the enum sequentially.
248 * NIDs 0x0f and 0x10 have been observed to have this behaviour.
249 */
250 static char *alc_pin_mode_names[] = {
251 "Mic 50pc bias", "Mic 80pc bias",
252 "Line in", "Line out", "Headphone out",
253 };
254 static unsigned char alc_pin_mode_values[] = {
255 PIN_VREF50, PIN_VREF80, PIN_IN, PIN_OUT, PIN_HP,
256 };
257 /* The control can present all 5 options, or it can limit the options based
258 * in the pin being assumed to be exclusively an input or an output pin.
259 */
260 #define ALC_PIN_DIR_IN 0x00
261 #define ALC_PIN_DIR_OUT 0x01
262 #define ALC_PIN_DIR_INOUT 0x02
263
264 /* Info about the pin modes supported by the three different pin directions.
265 * For each direction the minimum and maximum values are given.
266 */
267 static signed char alc_pin_mode_dir_info[3][2] = {
268 { 0, 2 }, /* ALC_PIN_DIR_IN */
269 { 3, 4 }, /* ALC_PIN_DIR_OUT */
270 { 0, 4 }, /* ALC_PIN_DIR_INOUT */
271 };
272 #define alc_pin_mode_min(_dir) (alc_pin_mode_dir_info[_dir][0])
273 #define alc_pin_mode_max(_dir) (alc_pin_mode_dir_info[_dir][1])
274 #define alc_pin_mode_n_items(_dir) \
275 (alc_pin_mode_max(_dir)-alc_pin_mode_min(_dir)+1)
276
277 static int alc_pin_mode_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
278 {
279 unsigned int item_num = uinfo->value.enumerated.item;
280 unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
281
282 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
283 uinfo->count = 1;
284 uinfo->value.enumerated.items = alc_pin_mode_n_items(dir);
285
286 if (item_num<alc_pin_mode_min(dir) || item_num>alc_pin_mode_max(dir))
287 item_num = alc_pin_mode_min(dir);
288 strcpy(uinfo->value.enumerated.name, alc_pin_mode_names[item_num]);
289 return 0;
290 }
291
292 static int alc_pin_mode_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
293 {
294 unsigned int i;
295 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
296 hda_nid_t nid = kcontrol->private_value & 0xffff;
297 unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
298 long *valp = ucontrol->value.integer.value;
299 unsigned int pinctl = snd_hda_codec_read(codec,nid,0,AC_VERB_GET_PIN_WIDGET_CONTROL,0x00);
300
301 /* Find enumerated value for current pinctl setting */
302 i = alc_pin_mode_min(dir);
303 while (alc_pin_mode_values[i]!=pinctl && i<=alc_pin_mode_max(dir))
304 i++;
305 *valp = i<=alc_pin_mode_max(dir)?i:alc_pin_mode_min(dir);
306 return 0;
307 }
308
309 static int alc_pin_mode_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
310 {
311 signed int change;
312 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
313 hda_nid_t nid = kcontrol->private_value & 0xffff;
314 unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
315 long val = *ucontrol->value.integer.value;
316 unsigned int pinctl = snd_hda_codec_read(codec,nid,0,AC_VERB_GET_PIN_WIDGET_CONTROL,0x00);
317
318 if (val<alc_pin_mode_min(dir) || val>alc_pin_mode_max(dir))
319 val = alc_pin_mode_min(dir);
320
321 change = pinctl != alc_pin_mode_values[val];
322 if (change) {
323 /* Set pin mode to that requested */
324 snd_hda_codec_write(codec,nid,0,AC_VERB_SET_PIN_WIDGET_CONTROL,
325 alc_pin_mode_values[val]);
326
327 /* Also enable the retasking pin's input/output as required
328 * for the requested pin mode. Enum values of 2 or less are
329 * input modes.
330 *
331 * Dynamically switching the input/output buffers probably
332 * reduces noise slightly, particularly on input. However,
333 * havingboth input and output buffers enabled
334 * simultaneously doesn't seem to be problematic.
335 */
336 if (val <= 2) {
337 snd_hda_codec_write(codec,nid,0,AC_VERB_SET_AMP_GAIN_MUTE,
338 AMP_OUT_MUTE);
339 snd_hda_codec_write(codec,nid,0,AC_VERB_SET_AMP_GAIN_MUTE,
340 AMP_IN_UNMUTE(0));
341 } else {
342 snd_hda_codec_write(codec,nid,0,AC_VERB_SET_AMP_GAIN_MUTE,
343 AMP_IN_MUTE(0));
344 snd_hda_codec_write(codec,nid,0,AC_VERB_SET_AMP_GAIN_MUTE,
345 AMP_OUT_UNMUTE);
346 }
347 }
348 return change;
349 }
350
351 #define ALC_PIN_MODE(xname, nid, dir) \
352 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
353 .info = alc_pin_mode_info, \
354 .get = alc_pin_mode_get, \
355 .put = alc_pin_mode_put, \
356 .private_value = nid | (dir<<16) }
357
358 /* A switch control for ALC260 GPIO pins. Multiple GPIOs can be ganged
359 * together using a mask with more than one bit set. This control is
360 * currently used only by the ALC260 test model. At this stage they are not
361 * needed for any "production" models.
362 */
363 #ifdef CONFIG_SND_DEBUG
364 static int alc_gpio_data_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
365 {
366 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
367 uinfo->count = 1;
368 uinfo->value.integer.min = 0;
369 uinfo->value.integer.max = 1;
370 return 0;
371 }
372 static int alc_gpio_data_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
373 {
374 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
375 hda_nid_t nid = kcontrol->private_value & 0xffff;
376 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
377 long *valp = ucontrol->value.integer.value;
378 unsigned int val = snd_hda_codec_read(codec,nid,0,AC_VERB_GET_GPIO_DATA,0x00);
379
380 *valp = (val & mask) != 0;
381 return 0;
382 }
383 static int alc_gpio_data_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
384 {
385 signed int change;
386 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
387 hda_nid_t nid = kcontrol->private_value & 0xffff;
388 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
389 long val = *ucontrol->value.integer.value;
390 unsigned int gpio_data = snd_hda_codec_read(codec,nid,0,AC_VERB_GET_GPIO_DATA,0x00);
391
392 /* Set/unset the masked GPIO bit(s) as needed */
393 change = (val==0?0:mask) != (gpio_data & mask);
394 if (val==0)
395 gpio_data &= ~mask;
396 else
397 gpio_data |= mask;
398 snd_hda_codec_write(codec,nid,0,AC_VERB_SET_GPIO_DATA,gpio_data);
399
400 return change;
401 }
402 #define ALC_GPIO_DATA_SWITCH(xname, nid, mask) \
403 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
404 .info = alc_gpio_data_info, \
405 .get = alc_gpio_data_get, \
406 .put = alc_gpio_data_put, \
407 .private_value = nid | (mask<<16) }
408 #endif /* CONFIG_SND_DEBUG */
409
410 /* A switch control to allow the enabling of the digital IO pins on the
411 * ALC260. This is incredibly simplistic; the intention of this control is
412 * to provide something in the test model allowing digital outputs to be
413 * identified if present. If models are found which can utilise these
414 * outputs a more complete mixer control can be devised for those models if
415 * necessary.
416 */
417 #ifdef CONFIG_SND_DEBUG
418 static int alc_spdif_ctrl_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
419 {
420 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
421 uinfo->count = 1;
422 uinfo->value.integer.min = 0;
423 uinfo->value.integer.max = 1;
424 return 0;
425 }
426 static int alc_spdif_ctrl_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
427 {
428 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
429 hda_nid_t nid = kcontrol->private_value & 0xffff;
430 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
431 long *valp = ucontrol->value.integer.value;
432 unsigned int val = snd_hda_codec_read(codec,nid,0,AC_VERB_GET_DIGI_CONVERT,0x00);
433
434 *valp = (val & mask) != 0;
435 return 0;
436 }
437 static int alc_spdif_ctrl_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
438 {
439 signed int change;
440 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
441 hda_nid_t nid = kcontrol->private_value & 0xffff;
442 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
443 long val = *ucontrol->value.integer.value;
444 unsigned int ctrl_data = snd_hda_codec_read(codec,nid,0,AC_VERB_GET_DIGI_CONVERT,0x00);
445
446 /* Set/unset the masked control bit(s) as needed */
447 change = (val==0?0:mask) != (ctrl_data & mask);
448 if (val==0)
449 ctrl_data &= ~mask;
450 else
451 ctrl_data |= mask;
452 snd_hda_codec_write(codec,nid,0,AC_VERB_SET_DIGI_CONVERT_1,ctrl_data);
453
454 return change;
455 }
456 #define ALC_SPDIF_CTRL_SWITCH(xname, nid, mask) \
457 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
458 .info = alc_spdif_ctrl_info, \
459 .get = alc_spdif_ctrl_get, \
460 .put = alc_spdif_ctrl_put, \
461 .private_value = nid | (mask<<16) }
462 #endif /* CONFIG_SND_DEBUG */
463
464 /*
465 * set up from the preset table
466 */
467 static void setup_preset(struct alc_spec *spec, const struct alc_config_preset *preset)
468 {
469 int i;
470
471 for (i = 0; i < ARRAY_SIZE(preset->mixers) && preset->mixers[i]; i++)
472 spec->mixers[spec->num_mixers++] = preset->mixers[i];
473 for (i = 0; i < ARRAY_SIZE(preset->init_verbs) && preset->init_verbs[i]; i++)
474 spec->init_verbs[spec->num_init_verbs++] = preset->init_verbs[i];
475
476 spec->channel_mode = preset->channel_mode;
477 spec->num_channel_mode = preset->num_channel_mode;
478
479 spec->multiout.max_channels = spec->channel_mode[0].channels;
480
481 spec->multiout.num_dacs = preset->num_dacs;
482 spec->multiout.dac_nids = preset->dac_nids;
483 spec->multiout.dig_out_nid = preset->dig_out_nid;
484 spec->multiout.hp_nid = preset->hp_nid;
485
486 spec->input_mux = preset->input_mux;
487
488 spec->num_adc_nids = preset->num_adc_nids;
489 spec->adc_nids = preset->adc_nids;
490 spec->dig_in_nid = preset->dig_in_nid;
491
492 spec->unsol_event = preset->unsol_event;
493 spec->init_hook = preset->init_hook;
494 }
495
496 /*
497 * ALC880 3-stack model
498 *
499 * DAC: Front = 0x02 (0x0c), Surr = 0x05 (0x0f), CLFE = 0x04 (0x0e)
500 * Pin assignment: Front = 0x14, Line-In/Surr = 0x1a, Mic/CLFE = 0x18, F-Mic = 0x1b
501 * HP = 0x19
502 */
503
504 static hda_nid_t alc880_dac_nids[4] = {
505 /* front, rear, clfe, rear_surr */
506 0x02, 0x05, 0x04, 0x03
507 };
508
509 static hda_nid_t alc880_adc_nids[3] = {
510 /* ADC0-2 */
511 0x07, 0x08, 0x09,
512 };
513
514 /* The datasheet says the node 0x07 is connected from inputs,
515 * but it shows zero connection in the real implementation on some devices.
516 * Note: this is a 915GAV bug, fixed on 915GLV
517 */
518 static hda_nid_t alc880_adc_nids_alt[2] = {
519 /* ADC1-2 */
520 0x08, 0x09,
521 };
522
523 #define ALC880_DIGOUT_NID 0x06
524 #define ALC880_DIGIN_NID 0x0a
525
526 static struct hda_input_mux alc880_capture_source = {
527 .num_items = 4,
528 .items = {
529 { "Mic", 0x0 },
530 { "Front Mic", 0x3 },
531 { "Line", 0x2 },
532 { "CD", 0x4 },
533 },
534 };
535
536 /* channel source setting (2/6 channel selection for 3-stack) */
537 /* 2ch mode */
538 static struct hda_verb alc880_threestack_ch2_init[] = {
539 /* set line-in to input, mute it */
540 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
541 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
542 /* set mic-in to input vref 80%, mute it */
543 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
544 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
545 { } /* end */
546 };
547
548 /* 6ch mode */
549 static struct hda_verb alc880_threestack_ch6_init[] = {
550 /* set line-in to output, unmute it */
551 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
552 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
553 /* set mic-in to output, unmute it */
554 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
555 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
556 { } /* end */
557 };
558
559 static struct hda_channel_mode alc880_threestack_modes[2] = {
560 { 2, alc880_threestack_ch2_init },
561 { 6, alc880_threestack_ch6_init },
562 };
563
564 static struct snd_kcontrol_new alc880_three_stack_mixer[] = {
565 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
566 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
567 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
568 HDA_BIND_MUTE("Surround Playback Switch", 0x0f, 2, HDA_INPUT),
569 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
570 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
571 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
572 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
573 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
574 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
575 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
576 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
577 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
578 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
579 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x3, HDA_INPUT),
580 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x3, HDA_INPUT),
581 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
582 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
583 HDA_CODEC_MUTE("Headphone Playback Switch", 0x19, 0x0, HDA_OUTPUT),
584 {
585 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
586 .name = "Channel Mode",
587 .info = alc_ch_mode_info,
588 .get = alc_ch_mode_get,
589 .put = alc_ch_mode_put,
590 },
591 { } /* end */
592 };
593
594 /* capture mixer elements */
595 static struct snd_kcontrol_new alc880_capture_mixer[] = {
596 HDA_CODEC_VOLUME("Capture Volume", 0x07, 0x0, HDA_INPUT),
597 HDA_CODEC_MUTE("Capture Switch", 0x07, 0x0, HDA_INPUT),
598 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x08, 0x0, HDA_INPUT),
599 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x08, 0x0, HDA_INPUT),
600 HDA_CODEC_VOLUME_IDX("Capture Volume", 2, 0x09, 0x0, HDA_INPUT),
601 HDA_CODEC_MUTE_IDX("Capture Switch", 2, 0x09, 0x0, HDA_INPUT),
602 {
603 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
604 /* The multiple "Capture Source" controls confuse alsamixer
605 * So call somewhat different..
606 * FIXME: the controls appear in the "playback" view!
607 */
608 /* .name = "Capture Source", */
609 .name = "Input Source",
610 .count = 3,
611 .info = alc_mux_enum_info,
612 .get = alc_mux_enum_get,
613 .put = alc_mux_enum_put,
614 },
615 { } /* end */
616 };
617
618 /* capture mixer elements (in case NID 0x07 not available) */
619 static struct snd_kcontrol_new alc880_capture_alt_mixer[] = {
620 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
621 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
622 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
623 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
624 {
625 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
626 /* The multiple "Capture Source" controls confuse alsamixer
627 * So call somewhat different..
628 * FIXME: the controls appear in the "playback" view!
629 */
630 /* .name = "Capture Source", */
631 .name = "Input Source",
632 .count = 2,
633 .info = alc_mux_enum_info,
634 .get = alc_mux_enum_get,
635 .put = alc_mux_enum_put,
636 },
637 { } /* end */
638 };
639
640
641
642 /*
643 * ALC880 5-stack model
644 *
645 * DAC: Front = 0x02 (0x0c), Surr = 0x05 (0x0f), CLFE = 0x04 (0x0d), Side = 0x02 (0xd)
646 * Pin assignment: Front = 0x14, Surr = 0x17, CLFE = 0x16
647 * Line-In/Side = 0x1a, Mic = 0x18, F-Mic = 0x1b, HP = 0x19
648 */
649
650 /* additional mixers to alc880_three_stack_mixer */
651 static struct snd_kcontrol_new alc880_five_stack_mixer[] = {
652 HDA_CODEC_VOLUME("Side Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
653 HDA_BIND_MUTE("Side Playback Switch", 0x0d, 2, HDA_INPUT),
654 { } /* end */
655 };
656
657 /* channel source setting (6/8 channel selection for 5-stack) */
658 /* 6ch mode */
659 static struct hda_verb alc880_fivestack_ch6_init[] = {
660 /* set line-in to input, mute it */
661 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
662 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
663 { } /* end */
664 };
665
666 /* 8ch mode */
667 static struct hda_verb alc880_fivestack_ch8_init[] = {
668 /* set line-in to output, unmute it */
669 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
670 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
671 { } /* end */
672 };
673
674 static struct hda_channel_mode alc880_fivestack_modes[2] = {
675 { 6, alc880_fivestack_ch6_init },
676 { 8, alc880_fivestack_ch8_init },
677 };
678
679
680 /*
681 * ALC880 6-stack model
682 *
683 * DAC: Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e), Side = 0x05 (0x0f)
684 * Pin assignment: Front = 0x14, Surr = 0x15, CLFE = 0x16, Side = 0x17,
685 * Mic = 0x18, F-Mic = 0x19, Line = 0x1a, HP = 0x1b
686 */
687
688 static hda_nid_t alc880_6st_dac_nids[4] = {
689 /* front, rear, clfe, rear_surr */
690 0x02, 0x03, 0x04, 0x05
691 };
692
693 static struct hda_input_mux alc880_6stack_capture_source = {
694 .num_items = 4,
695 .items = {
696 { "Mic", 0x0 },
697 { "Front Mic", 0x1 },
698 { "Line", 0x2 },
699 { "CD", 0x4 },
700 },
701 };
702
703 /* fixed 8-channels */
704 static struct hda_channel_mode alc880_sixstack_modes[1] = {
705 { 8, NULL },
706 };
707
708 static struct snd_kcontrol_new alc880_six_stack_mixer[] = {
709 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
710 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
711 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
712 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
713 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
714 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
715 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
716 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
717 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
718 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
719 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
720 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
721 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
722 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
723 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
724 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
725 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
726 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
727 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
728 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
729 {
730 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
731 .name = "Channel Mode",
732 .info = alc_ch_mode_info,
733 .get = alc_ch_mode_get,
734 .put = alc_ch_mode_put,
735 },
736 { } /* end */
737 };
738
739
740 /*
741 * ALC880 W810 model
742 *
743 * W810 has rear IO for:
744 * Front (DAC 02)
745 * Surround (DAC 03)
746 * Center/LFE (DAC 04)
747 * Digital out (06)
748 *
749 * The system also has a pair of internal speakers, and a headphone jack.
750 * These are both connected to Line2 on the codec, hence to DAC 02.
751 *
752 * There is a variable resistor to control the speaker or headphone
753 * volume. This is a hardware-only device without a software API.
754 *
755 * Plugging headphones in will disable the internal speakers. This is
756 * implemented in hardware, not via the driver using jack sense. In
757 * a similar fashion, plugging into the rear socket marked "front" will
758 * disable both the speakers and headphones.
759 *
760 * For input, there's a microphone jack, and an "audio in" jack.
761 * These may not do anything useful with this driver yet, because I
762 * haven't setup any initialization verbs for these yet...
763 */
764
765 static hda_nid_t alc880_w810_dac_nids[3] = {
766 /* front, rear/surround, clfe */
767 0x02, 0x03, 0x04
768 };
769
770 /* fixed 6 channels */
771 static struct hda_channel_mode alc880_w810_modes[1] = {
772 { 6, NULL }
773 };
774
775 /* Pin assignment: Front = 0x14, Surr = 0x15, CLFE = 0x16, HP = 0x1b */
776 static struct snd_kcontrol_new alc880_w810_base_mixer[] = {
777 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
778 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
779 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
780 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
781 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
782 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
783 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
784 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
785 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
786 { } /* end */
787 };
788
789
790 /*
791 * Z710V model
792 *
793 * DAC: Front = 0x02 (0x0c), HP = 0x03 (0x0d)
794 * Pin assignment: Front = 0x14, HP = 0x15, Mic = 0x18, Mic2 = 0x19(?), Line = 0x1a
795 */
796
797 static hda_nid_t alc880_z71v_dac_nids[1] = {
798 0x02
799 };
800 #define ALC880_Z71V_HP_DAC 0x03
801
802 /* fixed 2 channels */
803 static struct hda_channel_mode alc880_2_jack_modes[1] = {
804 { 2, NULL }
805 };
806
807 static struct snd_kcontrol_new alc880_z71v_mixer[] = {
808 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
809 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
810 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
811 HDA_BIND_MUTE("Headphone Playback Switch", 0x0d, 2, HDA_INPUT),
812 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
813 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
814 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
815 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
816 { } /* end */
817 };
818
819
820 /* FIXME! */
821 /*
822 * ALC880 F1734 model
823 *
824 * DAC: HP = 0x02 (0x0c), Front = 0x03 (0x0d)
825 * Pin assignment: HP = 0x14, Front = 0x15, Mic = 0x18
826 */
827
828 static hda_nid_t alc880_f1734_dac_nids[1] = {
829 0x03
830 };
831 #define ALC880_F1734_HP_DAC 0x02
832
833 static struct snd_kcontrol_new alc880_f1734_mixer[] = {
834 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
835 HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT),
836 HDA_CODEC_VOLUME("Internal Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
837 HDA_BIND_MUTE("Internal Speaker Playback Switch", 0x0d, 2, HDA_INPUT),
838 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
839 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
840 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
841 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
842 { } /* end */
843 };
844
845
846 /* FIXME! */
847 /*
848 * ALC880 ASUS model
849 *
850 * DAC: HP/Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e)
851 * Pin assignment: HP/Front = 0x14, Surr = 0x15, CLFE = 0x16,
852 * Mic = 0x18, Line = 0x1a
853 */
854
855 #define alc880_asus_dac_nids alc880_w810_dac_nids /* identical with w810 */
856 #define alc880_asus_modes alc880_threestack_modes /* 2/6 channel mode */
857
858 static struct snd_kcontrol_new alc880_asus_mixer[] = {
859 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
860 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
861 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
862 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
863 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
864 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
865 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
866 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
867 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
868 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
869 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
870 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
871 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
872 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
873 {
874 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
875 .name = "Channel Mode",
876 .info = alc_ch_mode_info,
877 .get = alc_ch_mode_get,
878 .put = alc_ch_mode_put,
879 },
880 { } /* end */
881 };
882
883 /* FIXME! */
884 /*
885 * ALC880 ASUS W1V model
886 *
887 * DAC: HP/Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e)
888 * Pin assignment: HP/Front = 0x14, Surr = 0x15, CLFE = 0x16,
889 * Mic = 0x18, Line = 0x1a, Line2 = 0x1b
890 */
891
892 /* additional mixers to alc880_asus_mixer */
893 static struct snd_kcontrol_new alc880_asus_w1v_mixer[] = {
894 HDA_CODEC_VOLUME("Line2 Playback Volume", 0x0b, 0x03, HDA_INPUT),
895 HDA_CODEC_MUTE("Line2 Playback Switch", 0x0b, 0x03, HDA_INPUT),
896 { } /* end */
897 };
898
899 /* additional mixers to alc880_asus_mixer */
900 static struct snd_kcontrol_new alc880_pcbeep_mixer[] = {
901 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
902 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
903 { } /* end */
904 };
905
906 /* TCL S700 */
907 static struct snd_kcontrol_new alc880_tcl_s700_mixer[] = {
908 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
909 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
910 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
911 HDA_CODEC_VOLUME("CD Playback Volume", 0x0B, 0x04, HDA_INPUT),
912 HDA_CODEC_MUTE("CD Playback Switch", 0x0B, 0x04, HDA_INPUT),
913 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0B, 0x0, HDA_INPUT),
914 HDA_CODEC_MUTE("Mic Playback Switch", 0x0B, 0x0, HDA_INPUT),
915 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
916 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
917 {
918 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
919 /* The multiple "Capture Source" controls confuse alsamixer
920 * So call somewhat different..
921 * FIXME: the controls appear in the "playback" view!
922 */
923 /* .name = "Capture Source", */
924 .name = "Input Source",
925 .count = 1,
926 .info = alc_mux_enum_info,
927 .get = alc_mux_enum_get,
928 .put = alc_mux_enum_put,
929 },
930 { } /* end */
931 };
932
933 /*
934 * build control elements
935 */
936 static int alc_build_controls(struct hda_codec *codec)
937 {
938 struct alc_spec *spec = codec->spec;
939 int err;
940 int i;
941
942 for (i = 0; i < spec->num_mixers; i++) {
943 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
944 if (err < 0)
945 return err;
946 }
947
948 if (spec->multiout.dig_out_nid) {
949 err = snd_hda_create_spdif_out_ctls(codec, spec->multiout.dig_out_nid);
950 if (err < 0)
951 return err;
952 }
953 if (spec->dig_in_nid) {
954 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
955 if (err < 0)
956 return err;
957 }
958 return 0;
959 }
960
961
962 /*
963 * initialize the codec volumes, etc
964 */
965
966 /*
967 * generic initialization of ADC, input mixers and output mixers
968 */
969 static struct hda_verb alc880_volume_init_verbs[] = {
970 /*
971 * Unmute ADC0-2 and set the default input to mic-in
972 */
973 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
974 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
975 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
976 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
977 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
978 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
979
980 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
981 * mixer widget
982 * Note: PASD motherboards uses the Line In 2 as the input for front panel
983 * mic (mic 2)
984 */
985 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
986 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
987 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
988 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
989 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
990 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
991
992 /*
993 * Set up output mixers (0x0c - 0x0f)
994 */
995 /* set vol=0 to output mixers */
996 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
997 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
998 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
999 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1000 /* set up input amps for analog loopback */
1001 /* Amp Indices: DAC = 0, mixer = 1 */
1002 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1003 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1004 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1005 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1006 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1007 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1008 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1009 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1010
1011 { }
1012 };
1013
1014 /*
1015 * 3-stack pin configuration:
1016 * front = 0x14, mic/clfe = 0x18, HP = 0x19, line/surr = 0x1a, f-mic = 0x1b
1017 */
1018 static struct hda_verb alc880_pin_3stack_init_verbs[] = {
1019 /*
1020 * preset connection lists of input pins
1021 * 0 = front, 1 = rear_surr, 2 = CLFE, 3 = surround
1022 */
1023 {0x10, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
1024 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1025 {0x12, AC_VERB_SET_CONNECT_SEL, 0x03}, /* line/surround */
1026
1027 /*
1028 * Set pin mode and muting
1029 */
1030 /* set front pin widgets 0x14 for output */
1031 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1032 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1033 /* Mic1 (rear panel) pin widget for input and vref at 80% */
1034 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1035 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1036 /* Mic2 (as headphone out) for HP output */
1037 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1038 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1039 /* Line In pin widget for input */
1040 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1041 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1042 /* Line2 (as front mic) pin widget for input and vref at 80% */
1043 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1044 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1045 /* CD pin widget for input */
1046 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1047
1048 { }
1049 };
1050
1051 /*
1052 * 5-stack pin configuration:
1053 * front = 0x14, surround = 0x17, clfe = 0x16, mic = 0x18, HP = 0x19,
1054 * line-in/side = 0x1a, f-mic = 0x1b
1055 */
1056 static struct hda_verb alc880_pin_5stack_init_verbs[] = {
1057 /*
1058 * preset connection lists of input pins
1059 * 0 = front, 1 = rear_surr, 2 = CLFE, 3 = surround
1060 */
1061 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1062 {0x12, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/side */
1063
1064 /*
1065 * Set pin mode and muting
1066 */
1067 /* set pin widgets 0x14-0x17 for output */
1068 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1069 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1070 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1071 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1072 /* unmute pins for output (no gain on this amp) */
1073 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1074 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1075 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1076 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1077
1078 /* Mic1 (rear panel) pin widget for input and vref at 80% */
1079 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1080 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1081 /* Mic2 (as headphone out) for HP output */
1082 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1083 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1084 /* Line In pin widget for input */
1085 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1086 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1087 /* Line2 (as front mic) pin widget for input and vref at 80% */
1088 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1089 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1090 /* CD pin widget for input */
1091 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1092
1093 { }
1094 };
1095
1096 /*
1097 * W810 pin configuration:
1098 * front = 0x14, surround = 0x15, clfe = 0x16, HP = 0x1b
1099 */
1100 static struct hda_verb alc880_pin_w810_init_verbs[] = {
1101 /* hphone/speaker input selector: front DAC */
1102 {0x13, AC_VERB_SET_CONNECT_SEL, 0x0},
1103
1104 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1105 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1106 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1107 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1108 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1109 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1110
1111 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1112 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1113
1114 { }
1115 };
1116
1117 /*
1118 * Z71V pin configuration:
1119 * Speaker-out = 0x14, HP = 0x15, Mic = 0x18, Line-in = 0x1a, Mic2 = 0x1b (?)
1120 */
1121 static struct hda_verb alc880_pin_z71v_init_verbs[] = {
1122 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1123 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1124 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1125 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1126
1127 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1128 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1129 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1130 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1131
1132 { }
1133 };
1134
1135 /*
1136 * 6-stack pin configuration:
1137 * front = 0x14, surr = 0x15, clfe = 0x16, side = 0x17, mic = 0x18, f-mic = 0x19,
1138 * line = 0x1a, HP = 0x1b
1139 */
1140 static struct hda_verb alc880_pin_6stack_init_verbs[] = {
1141 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1142
1143 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1144 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1145 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1146 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1147 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1148 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1149 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1150 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1151
1152 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1153 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1154 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1155 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1156 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1157 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1158 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1159 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1160 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1161
1162 { }
1163 };
1164
1165 /* FIXME! */
1166 /*
1167 * F1734 pin configuration:
1168 * HP = 0x14, speaker-out = 0x15, mic = 0x18
1169 */
1170 static struct hda_verb alc880_pin_f1734_init_verbs[] = {
1171 {0x10, AC_VERB_SET_CONNECT_SEL, 0x02},
1172 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00},
1173 {0x12, AC_VERB_SET_CONNECT_SEL, 0x01},
1174 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00},
1175
1176 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1177 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1178 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1179 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1180
1181 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1182 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1183 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1184 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1185 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1186 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1187 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1188 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1189 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1190
1191 { }
1192 };
1193
1194 /* FIXME! */
1195 /*
1196 * ASUS pin configuration:
1197 * HP/front = 0x14, surr = 0x15, clfe = 0x16, mic = 0x18, line = 0x1a
1198 */
1199 static struct hda_verb alc880_pin_asus_init_verbs[] = {
1200 {0x10, AC_VERB_SET_CONNECT_SEL, 0x02},
1201 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00},
1202 {0x12, AC_VERB_SET_CONNECT_SEL, 0x01},
1203 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00},
1204
1205 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1206 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1207 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1208 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1209 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1210 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1211 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1212 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1213
1214 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1215 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1216 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1217 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1218 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1219 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1220 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1221 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1222 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1223
1224 { }
1225 };
1226
1227 /* Enable GPIO mask and set output */
1228 static struct hda_verb alc880_gpio1_init_verbs[] = {
1229 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
1230 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
1231 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
1232
1233 { }
1234 };
1235
1236 /* Enable GPIO mask and set output */
1237 static struct hda_verb alc880_gpio2_init_verbs[] = {
1238 {0x01, AC_VERB_SET_GPIO_MASK, 0x02},
1239 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x02},
1240 {0x01, AC_VERB_SET_GPIO_DATA, 0x02},
1241
1242 { }
1243 };
1244
1245 /* Clevo m520g init */
1246 static struct hda_verb alc880_pin_clevo_init_verbs[] = {
1247 /* headphone output */
1248 {0x11, AC_VERB_SET_CONNECT_SEL, 0x01},
1249 /* line-out */
1250 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1251 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1252 /* Line-in */
1253 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1254 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1255 /* CD */
1256 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1257 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1258 /* Mic1 (rear panel) */
1259 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1260 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1261 /* Mic2 (front panel) */
1262 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1263 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1264 /* headphone */
1265 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1266 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1267 /* change to EAPD mode */
1268 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
1269 {0x20, AC_VERB_SET_PROC_COEF, 0x3060},
1270
1271 { }
1272 };
1273
1274 static struct hda_verb alc880_pin_tcl_S700_init_verbs[] = {
1275 /* Headphone output */
1276 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1277 /* Front output*/
1278 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1279 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
1280
1281 /* Line In pin widget for input */
1282 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1283 /* CD pin widget for input */
1284 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1285 /* Mic1 (rear panel) pin widget for input and vref at 80% */
1286 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1287
1288 /* change to EAPD mode */
1289 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
1290 {0x20, AC_VERB_SET_PROC_COEF, 0x3070},
1291
1292 { }
1293 };
1294
1295 /*
1296 * LG m1 express dual
1297 *
1298 * Pin assignment:
1299 * Rear Line-In/Out (blue): 0x14
1300 * Build-in Mic-In: 0x15
1301 * Speaker-out: 0x17
1302 * HP-Out (green): 0x1b
1303 * Mic-In/Out (red): 0x19
1304 * SPDIF-Out: 0x1e
1305 */
1306
1307 /* To make 5.1 output working (green=Front, blue=Surr, red=CLFE) */
1308 static hda_nid_t alc880_lg_dac_nids[3] = {
1309 0x05, 0x02, 0x03
1310 };
1311
1312 /* seems analog CD is not working */
1313 static struct hda_input_mux alc880_lg_capture_source = {
1314 .num_items = 3,
1315 .items = {
1316 { "Mic", 0x1 },
1317 { "Line", 0x5 },
1318 { "Internal Mic", 0x6 },
1319 },
1320 };
1321
1322 /* 2,4,6 channel modes */
1323 static struct hda_verb alc880_lg_ch2_init[] = {
1324 /* set line-in and mic-in to input */
1325 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
1326 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
1327 { }
1328 };
1329
1330 static struct hda_verb alc880_lg_ch4_init[] = {
1331 /* set line-in to out and mic-in to input */
1332 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1333 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
1334 { }
1335 };
1336
1337 static struct hda_verb alc880_lg_ch6_init[] = {
1338 /* set line-in and mic-in to output */
1339 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1340 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1341 { }
1342 };
1343
1344 static struct hda_channel_mode alc880_lg_ch_modes[3] = {
1345 { 2, alc880_lg_ch2_init },
1346 { 4, alc880_lg_ch4_init },
1347 { 6, alc880_lg_ch6_init },
1348 };
1349
1350 static struct snd_kcontrol_new alc880_lg_mixer[] = {
1351 /* FIXME: it's not really "master" but front channels */
1352 HDA_CODEC_VOLUME("Master Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
1353 HDA_BIND_MUTE("Master Playback Switch", 0x0f, 2, HDA_INPUT),
1354 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1355 HDA_BIND_MUTE("Surround Playback Switch", 0x0c, 2, HDA_INPUT),
1356 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0d, 1, 0x0, HDA_OUTPUT),
1357 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0d, 2, 0x0, HDA_OUTPUT),
1358 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0d, 1, 2, HDA_INPUT),
1359 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0d, 2, 2, HDA_INPUT),
1360 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
1361 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
1362 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x06, HDA_INPUT),
1363 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x06, HDA_INPUT),
1364 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x07, HDA_INPUT),
1365 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x07, HDA_INPUT),
1366 {
1367 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1368 .name = "Channel Mode",
1369 .info = alc_ch_mode_info,
1370 .get = alc_ch_mode_get,
1371 .put = alc_ch_mode_put,
1372 },
1373 { } /* end */
1374 };
1375
1376 static struct hda_verb alc880_lg_init_verbs[] = {
1377 /* set capture source to mic-in */
1378 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1379 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1380 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1381 /* mute all amp mixer inputs */
1382 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(5)},
1383 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(6)},
1384 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(7)},
1385 /* line-in to input */
1386 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1387 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1388 /* built-in mic */
1389 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1390 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1391 /* speaker-out */
1392 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1393 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1394 /* mic-in to input */
1395 {0x11, AC_VERB_SET_CONNECT_SEL, 0x01},
1396 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1397 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1398 /* HP-out */
1399 {0x13, AC_VERB_SET_CONNECT_SEL, 0x03},
1400 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1401 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1402 /* jack sense */
1403 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | 0x1},
1404 { }
1405 };
1406
1407 /* toggle speaker-output according to the hp-jack state */
1408 static void alc880_lg_automute(struct hda_codec *codec)
1409 {
1410 unsigned int present;
1411
1412 present = snd_hda_codec_read(codec, 0x1b, 0,
1413 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1414 snd_hda_codec_amp_update(codec, 0x17, 0, HDA_OUTPUT, 0,
1415 0x80, present ? 0x80 : 0);
1416 snd_hda_codec_amp_update(codec, 0x17, 1, HDA_OUTPUT, 0,
1417 0x80, present ? 0x80 : 0);
1418 }
1419
1420 static void alc880_lg_unsol_event(struct hda_codec *codec, unsigned int res)
1421 {
1422 /* Looks like the unsol event is incompatible with the standard
1423 * definition. 4bit tag is placed at 28 bit!
1424 */
1425 if ((res >> 28) == 0x01)
1426 alc880_lg_automute(codec);
1427 }
1428
1429 /*
1430 * Common callbacks
1431 */
1432
1433 static int alc_init(struct hda_codec *codec)
1434 {
1435 struct alc_spec *spec = codec->spec;
1436 unsigned int i;
1437
1438 for (i = 0; i < spec->num_init_verbs; i++)
1439 snd_hda_sequence_write(codec, spec->init_verbs[i]);
1440
1441 if (spec->init_hook)
1442 spec->init_hook(codec);
1443
1444 return 0;
1445 }
1446
1447 static void alc_unsol_event(struct hda_codec *codec, unsigned int res)
1448 {
1449 struct alc_spec *spec = codec->spec;
1450
1451 if (spec->unsol_event)
1452 spec->unsol_event(codec, res);
1453 }
1454
1455 #ifdef CONFIG_PM
1456 /*
1457 * resume
1458 */
1459 static int alc_resume(struct hda_codec *codec)
1460 {
1461 struct alc_spec *spec = codec->spec;
1462 int i;
1463
1464 alc_init(codec);
1465 for (i = 0; i < spec->num_mixers; i++)
1466 snd_hda_resume_ctls(codec, spec->mixers[i]);
1467 if (spec->multiout.dig_out_nid)
1468 snd_hda_resume_spdif_out(codec);
1469 if (spec->dig_in_nid)
1470 snd_hda_resume_spdif_in(codec);
1471
1472 return 0;
1473 }
1474 #endif
1475
1476 /*
1477 * Analog playback callbacks
1478 */
1479 static int alc880_playback_pcm_open(struct hda_pcm_stream *hinfo,
1480 struct hda_codec *codec,
1481 struct snd_pcm_substream *substream)
1482 {
1483 struct alc_spec *spec = codec->spec;
1484 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream);
1485 }
1486
1487 static int alc880_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
1488 struct hda_codec *codec,
1489 unsigned int stream_tag,
1490 unsigned int format,
1491 struct snd_pcm_substream *substream)
1492 {
1493 struct alc_spec *spec = codec->spec;
1494 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout, stream_tag,
1495 format, substream);
1496 }
1497
1498 static int alc880_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
1499 struct hda_codec *codec,
1500 struct snd_pcm_substream *substream)
1501 {
1502 struct alc_spec *spec = codec->spec;
1503 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
1504 }
1505
1506 /*
1507 * Digital out
1508 */
1509 static int alc880_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
1510 struct hda_codec *codec,
1511 struct snd_pcm_substream *substream)
1512 {
1513 struct alc_spec *spec = codec->spec;
1514 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
1515 }
1516
1517 static int alc880_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
1518 struct hda_codec *codec,
1519 struct snd_pcm_substream *substream)
1520 {
1521 struct alc_spec *spec = codec->spec;
1522 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
1523 }
1524
1525 /*
1526 * Analog capture
1527 */
1528 static int alc880_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
1529 struct hda_codec *codec,
1530 unsigned int stream_tag,
1531 unsigned int format,
1532 struct snd_pcm_substream *substream)
1533 {
1534 struct alc_spec *spec = codec->spec;
1535
1536 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
1537 stream_tag, 0, format);
1538 return 0;
1539 }
1540
1541 static int alc880_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
1542 struct hda_codec *codec,
1543 struct snd_pcm_substream *substream)
1544 {
1545 struct alc_spec *spec = codec->spec;
1546
1547 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number], 0, 0, 0);
1548 return 0;
1549 }
1550
1551
1552 /*
1553 */
1554 static struct hda_pcm_stream alc880_pcm_analog_playback = {
1555 .substreams = 1,
1556 .channels_min = 2,
1557 .channels_max = 8,
1558 /* NID is set in alc_build_pcms */
1559 .ops = {
1560 .open = alc880_playback_pcm_open,
1561 .prepare = alc880_playback_pcm_prepare,
1562 .cleanup = alc880_playback_pcm_cleanup
1563 },
1564 };
1565
1566 static struct hda_pcm_stream alc880_pcm_analog_capture = {
1567 .substreams = 2,
1568 .channels_min = 2,
1569 .channels_max = 2,
1570 /* NID is set in alc_build_pcms */
1571 .ops = {
1572 .prepare = alc880_capture_pcm_prepare,
1573 .cleanup = alc880_capture_pcm_cleanup
1574 },
1575 };
1576
1577 static struct hda_pcm_stream alc880_pcm_digital_playback = {
1578 .substreams = 1,
1579 .channels_min = 2,
1580 .channels_max = 2,
1581 /* NID is set in alc_build_pcms */
1582 .ops = {
1583 .open = alc880_dig_playback_pcm_open,
1584 .close = alc880_dig_playback_pcm_close
1585 },
1586 };
1587
1588 static struct hda_pcm_stream alc880_pcm_digital_capture = {
1589 .substreams = 1,
1590 .channels_min = 2,
1591 .channels_max = 2,
1592 /* NID is set in alc_build_pcms */
1593 };
1594
1595 /* Used by alc_build_pcms to flag that a PCM has no playback stream */
1596 static struct hda_pcm_stream alc_pcm_null_playback = {
1597 .substreams = 0,
1598 .channels_min = 0,
1599 .channels_max = 0,
1600 };
1601
1602 static int alc_build_pcms(struct hda_codec *codec)
1603 {
1604 struct alc_spec *spec = codec->spec;
1605 struct hda_pcm *info = spec->pcm_rec;
1606 int i;
1607
1608 codec->num_pcms = 1;
1609 codec->pcm_info = info;
1610
1611 info->name = spec->stream_name_analog;
1612 if (spec->stream_analog_playback) {
1613 snd_assert(spec->multiout.dac_nids, return -EINVAL);
1614 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *(spec->stream_analog_playback);
1615 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dac_nids[0];
1616 }
1617 if (spec->stream_analog_capture) {
1618 snd_assert(spec->adc_nids, return -EINVAL);
1619 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_analog_capture);
1620 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
1621 }
1622
1623 if (spec->channel_mode) {
1624 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = 0;
1625 for (i = 0; i < spec->num_channel_mode; i++) {
1626 if (spec->channel_mode[i].channels > info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max) {
1627 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = spec->channel_mode[i].channels;
1628 }
1629 }
1630 }
1631
1632 /* If the use of more than one ADC is requested for the current
1633 * model, configure a second analog capture-only PCM.
1634 */
1635 if (spec->num_adc_nids > 1) {
1636 codec->num_pcms++;
1637 info++;
1638 info->name = spec->stream_name_analog;
1639 /* No playback stream for second PCM */
1640 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = alc_pcm_null_playback;
1641 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = 0;
1642 if (spec->stream_analog_capture) {
1643 snd_assert(spec->adc_nids, return -EINVAL);
1644 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_analog_capture);
1645 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[1];
1646 }
1647 }
1648
1649 if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
1650 codec->num_pcms++;
1651 info++;
1652 info->name = spec->stream_name_digital;
1653 if (spec->multiout.dig_out_nid &&
1654 spec->stream_digital_playback) {
1655 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *(spec->stream_digital_playback);
1656 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
1657 }
1658 if (spec->dig_in_nid &&
1659 spec->stream_digital_capture) {
1660 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_digital_capture);
1661 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
1662 }
1663 }
1664
1665 return 0;
1666 }
1667
1668 static void alc_free(struct hda_codec *codec)
1669 {
1670 struct alc_spec *spec = codec->spec;
1671 unsigned int i;
1672
1673 if (! spec)
1674 return;
1675
1676 if (spec->kctl_alloc) {
1677 for (i = 0; i < spec->num_kctl_used; i++)
1678 kfree(spec->kctl_alloc[i].name);
1679 kfree(spec->kctl_alloc);
1680 }
1681 kfree(spec);
1682 }
1683
1684 /*
1685 */
1686 static struct hda_codec_ops alc_patch_ops = {
1687 .build_controls = alc_build_controls,
1688 .build_pcms = alc_build_pcms,
1689 .init = alc_init,
1690 .free = alc_free,
1691 .unsol_event = alc_unsol_event,
1692 #ifdef CONFIG_PM
1693 .resume = alc_resume,
1694 #endif
1695 };
1696
1697
1698 /*
1699 * Test configuration for debugging
1700 *
1701 * Almost all inputs/outputs are enabled. I/O pins can be configured via
1702 * enum controls.
1703 */
1704 #ifdef CONFIG_SND_DEBUG
1705 static hda_nid_t alc880_test_dac_nids[4] = {
1706 0x02, 0x03, 0x04, 0x05
1707 };
1708
1709 static struct hda_input_mux alc880_test_capture_source = {
1710 .num_items = 7,
1711 .items = {
1712 { "In-1", 0x0 },
1713 { "In-2", 0x1 },
1714 { "In-3", 0x2 },
1715 { "In-4", 0x3 },
1716 { "CD", 0x4 },
1717 { "Front", 0x5 },
1718 { "Surround", 0x6 },
1719 },
1720 };
1721
1722 static struct hda_channel_mode alc880_test_modes[4] = {
1723 { 2, NULL },
1724 { 4, NULL },
1725 { 6, NULL },
1726 { 8, NULL },
1727 };
1728
1729 static int alc_test_pin_ctl_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
1730 {
1731 static char *texts[] = {
1732 "N/A", "Line Out", "HP Out",
1733 "In Hi-Z", "In 50%", "In Grd", "In 80%", "In 100%"
1734 };
1735 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1736 uinfo->count = 1;
1737 uinfo->value.enumerated.items = 8;
1738 if (uinfo->value.enumerated.item >= 8)
1739 uinfo->value.enumerated.item = 7;
1740 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
1741 return 0;
1742 }
1743
1744 static int alc_test_pin_ctl_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1745 {
1746 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1747 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
1748 unsigned int pin_ctl, item = 0;
1749
1750 pin_ctl = snd_hda_codec_read(codec, nid, 0,
1751 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
1752 if (pin_ctl & AC_PINCTL_OUT_EN) {
1753 if (pin_ctl & AC_PINCTL_HP_EN)
1754 item = 2;
1755 else
1756 item = 1;
1757 } else if (pin_ctl & AC_PINCTL_IN_EN) {
1758 switch (pin_ctl & AC_PINCTL_VREFEN) {
1759 case AC_PINCTL_VREF_HIZ: item = 3; break;
1760 case AC_PINCTL_VREF_50: item = 4; break;
1761 case AC_PINCTL_VREF_GRD: item = 5; break;
1762 case AC_PINCTL_VREF_80: item = 6; break;
1763 case AC_PINCTL_VREF_100: item = 7; break;
1764 }
1765 }
1766 ucontrol->value.enumerated.item[0] = item;
1767 return 0;
1768 }
1769
1770 static int alc_test_pin_ctl_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1771 {
1772 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1773 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
1774 static unsigned int ctls[] = {
1775 0, AC_PINCTL_OUT_EN, AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN,
1776 AC_PINCTL_IN_EN | AC_PINCTL_VREF_HIZ,
1777 AC_PINCTL_IN_EN | AC_PINCTL_VREF_50,
1778 AC_PINCTL_IN_EN | AC_PINCTL_VREF_GRD,
1779 AC_PINCTL_IN_EN | AC_PINCTL_VREF_80,
1780 AC_PINCTL_IN_EN | AC_PINCTL_VREF_100,
1781 };
1782 unsigned int old_ctl, new_ctl;
1783
1784 old_ctl = snd_hda_codec_read(codec, nid, 0,
1785 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
1786 new_ctl = ctls[ucontrol->value.enumerated.item[0]];
1787 if (old_ctl != new_ctl) {
1788 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, new_ctl);
1789 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
1790 ucontrol->value.enumerated.item[0] >= 3 ? 0xb080 : 0xb000);
1791 return 1;
1792 }
1793 return 0;
1794 }
1795
1796 static int alc_test_pin_src_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
1797 {
1798 static char *texts[] = {
1799 "Front", "Surround", "CLFE", "Side"
1800 };
1801 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1802 uinfo->count = 1;
1803 uinfo->value.enumerated.items = 4;
1804 if (uinfo->value.enumerated.item >= 4)
1805 uinfo->value.enumerated.item = 3;
1806 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
1807 return 0;
1808 }
1809
1810 static int alc_test_pin_src_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1811 {
1812 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1813 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
1814 unsigned int sel;
1815
1816 sel = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONNECT_SEL, 0);
1817 ucontrol->value.enumerated.item[0] = sel & 3;
1818 return 0;
1819 }
1820
1821 static int alc_test_pin_src_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1822 {
1823 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1824 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
1825 unsigned int sel;
1826
1827 sel = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONNECT_SEL, 0) & 3;
1828 if (ucontrol->value.enumerated.item[0] != sel) {
1829 sel = ucontrol->value.enumerated.item[0] & 3;
1830 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, sel);
1831 return 1;
1832 }
1833 return 0;
1834 }
1835
1836 #define PIN_CTL_TEST(xname,nid) { \
1837 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1838 .name = xname, \
1839 .info = alc_test_pin_ctl_info, \
1840 .get = alc_test_pin_ctl_get, \
1841 .put = alc_test_pin_ctl_put, \
1842 .private_value = nid \
1843 }
1844
1845 #define PIN_SRC_TEST(xname,nid) { \
1846 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1847 .name = xname, \
1848 .info = alc_test_pin_src_info, \
1849 .get = alc_test_pin_src_get, \
1850 .put = alc_test_pin_src_put, \
1851 .private_value = nid \
1852 }
1853
1854 static struct snd_kcontrol_new alc880_test_mixer[] = {
1855 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1856 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1857 HDA_CODEC_VOLUME("CLFE Playback Volume", 0x0e, 0x0, HDA_OUTPUT),
1858 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
1859 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
1860 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
1861 HDA_BIND_MUTE("CLFE Playback Switch", 0x0e, 2, HDA_INPUT),
1862 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
1863 PIN_CTL_TEST("Front Pin Mode", 0x14),
1864 PIN_CTL_TEST("Surround Pin Mode", 0x15),
1865 PIN_CTL_TEST("CLFE Pin Mode", 0x16),
1866 PIN_CTL_TEST("Side Pin Mode", 0x17),
1867 PIN_CTL_TEST("In-1 Pin Mode", 0x18),
1868 PIN_CTL_TEST("In-2 Pin Mode", 0x19),
1869 PIN_CTL_TEST("In-3 Pin Mode", 0x1a),
1870 PIN_CTL_TEST("In-4 Pin Mode", 0x1b),
1871 PIN_SRC_TEST("In-1 Pin Source", 0x18),
1872 PIN_SRC_TEST("In-2 Pin Source", 0x19),
1873 PIN_SRC_TEST("In-3 Pin Source", 0x1a),
1874 PIN_SRC_TEST("In-4 Pin Source", 0x1b),
1875 HDA_CODEC_VOLUME("In-1 Playback Volume", 0x0b, 0x0, HDA_INPUT),
1876 HDA_CODEC_MUTE("In-1 Playback Switch", 0x0b, 0x0, HDA_INPUT),
1877 HDA_CODEC_VOLUME("In-2 Playback Volume", 0x0b, 0x1, HDA_INPUT),
1878 HDA_CODEC_MUTE("In-2 Playback Switch", 0x0b, 0x1, HDA_INPUT),
1879 HDA_CODEC_VOLUME("In-3 Playback Volume", 0x0b, 0x2, HDA_INPUT),
1880 HDA_CODEC_MUTE("In-3 Playback Switch", 0x0b, 0x2, HDA_INPUT),
1881 HDA_CODEC_VOLUME("In-4 Playback Volume", 0x0b, 0x3, HDA_INPUT),
1882 HDA_CODEC_MUTE("In-4 Playback Switch", 0x0b, 0x3, HDA_INPUT),
1883 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x4, HDA_INPUT),
1884 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x4, HDA_INPUT),
1885 {
1886 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1887 .name = "Channel Mode",
1888 .info = alc_ch_mode_info,
1889 .get = alc_ch_mode_get,
1890 .put = alc_ch_mode_put,
1891 },
1892 { } /* end */
1893 };
1894
1895 static struct hda_verb alc880_test_init_verbs[] = {
1896 /* Unmute inputs of 0x0c - 0x0f */
1897 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1898 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1899 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1900 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1901 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1902 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1903 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1904 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1905 /* Vol output for 0x0c-0x0f */
1906 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1907 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1908 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1909 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1910 /* Set output pins 0x14-0x17 */
1911 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1912 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1913 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1914 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1915 /* Unmute output pins 0x14-0x17 */
1916 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1917 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1918 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1919 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1920 /* Set input pins 0x18-0x1c */
1921 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1922 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1923 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1924 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1925 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1926 /* Mute input pins 0x18-0x1b */
1927 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1928 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1929 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1930 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1931 /* ADC set up */
1932 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1933 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
1934 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1935 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
1936 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1937 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
1938 /* Analog input/passthru */
1939 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1940 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1941 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
1942 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
1943 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
1944 { }
1945 };
1946 #endif
1947
1948 /*
1949 */
1950
1951 static struct hda_board_config alc880_cfg_tbl[] = {
1952 /* Back 3 jack, front 2 jack */
1953 { .modelname = "3stack", .config = ALC880_3ST },
1954 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe200, .config = ALC880_3ST },
1955 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe201, .config = ALC880_3ST },
1956 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe202, .config = ALC880_3ST },
1957 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe203, .config = ALC880_3ST },
1958 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe204, .config = ALC880_3ST },
1959 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe205, .config = ALC880_3ST },
1960 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe206, .config = ALC880_3ST },
1961 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe207, .config = ALC880_3ST },
1962 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe208, .config = ALC880_3ST },
1963 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe209, .config = ALC880_3ST },
1964 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe20a, .config = ALC880_3ST },
1965 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe20b, .config = ALC880_3ST },
1966 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe20c, .config = ALC880_3ST },
1967 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe20d, .config = ALC880_3ST },
1968 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe20e, .config = ALC880_3ST },
1969 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe20f, .config = ALC880_3ST },
1970 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe210, .config = ALC880_3ST },
1971 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe211, .config = ALC880_3ST },
1972 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe214, .config = ALC880_3ST },
1973 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe302, .config = ALC880_3ST },
1974 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe303, .config = ALC880_3ST },
1975 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe304, .config = ALC880_3ST },
1976 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe306, .config = ALC880_3ST },
1977 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe307, .config = ALC880_3ST },
1978 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe404, .config = ALC880_3ST },
1979 { .pci_subvendor = 0x8086, .pci_subdevice = 0xa101, .config = ALC880_3ST },
1980 { .pci_subvendor = 0x107b, .pci_subdevice = 0x3031, .config = ALC880_3ST },
1981 { .pci_subvendor = 0x107b, .pci_subdevice = 0x4036, .config = ALC880_3ST },
1982 { .pci_subvendor = 0x107b, .pci_subdevice = 0x4037, .config = ALC880_3ST },
1983 { .pci_subvendor = 0x107b, .pci_subdevice = 0x4038, .config = ALC880_3ST },
1984 { .pci_subvendor = 0x107b, .pci_subdevice = 0x4040, .config = ALC880_3ST },
1985 { .pci_subvendor = 0x107b, .pci_subdevice = 0x4041, .config = ALC880_3ST },
1986 /* TCL S700 */
1987 { .pci_subvendor = 0x19db, .pci_subdevice = 0x4188, .config = ALC880_TCL_S700 },
1988
1989 /* Back 3 jack, front 2 jack (Internal add Aux-In) */
1990 { .pci_subvendor = 0x1025, .pci_subdevice = 0xe310, .config = ALC880_3ST },
1991 { .pci_subvendor = 0x104d, .pci_subdevice = 0x81d6, .config = ALC880_3ST },
1992 { .pci_subvendor = 0x104d, .pci_subdevice = 0x81a0, .config = ALC880_3ST },
1993
1994 /* Back 3 jack plus 1 SPDIF out jack, front 2 jack */
1995 { .modelname = "3stack-digout", .config = ALC880_3ST_DIG },
1996 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe308, .config = ALC880_3ST_DIG },
1997 { .pci_subvendor = 0x1025, .pci_subdevice = 0x0070, .config = ALC880_3ST_DIG },
1998 /* Clevo m520G NB */
1999 { .pci_subvendor = 0x1558, .pci_subdevice = 0x0520, .config = ALC880_CLEVO },
2000
2001 /* Back 3 jack plus 1 SPDIF out jack, front 2 jack (Internal add Aux-In)*/
2002 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe305, .config = ALC880_3ST_DIG },
2003 { .pci_subvendor = 0x8086, .pci_subdevice = 0xd402, .config = ALC880_3ST_DIG },
2004 { .pci_subvendor = 0x1025, .pci_subdevice = 0xe309, .config = ALC880_3ST_DIG },
2005
2006 /* Back 5 jack, front 2 jack */
2007 { .modelname = "5stack", .config = ALC880_5ST },
2008 { .pci_subvendor = 0x107b, .pci_subdevice = 0x3033, .config = ALC880_5ST },
2009 { .pci_subvendor = 0x107b, .pci_subdevice = 0x4039, .config = ALC880_5ST },
2010 { .pci_subvendor = 0x107b, .pci_subdevice = 0x3032, .config = ALC880_5ST },
2011 { .pci_subvendor = 0x103c, .pci_subdevice = 0x2a09, .config = ALC880_5ST },
2012 { .pci_subvendor = 0x1043, .pci_subdevice = 0x814e, .config = ALC880_5ST },
2013
2014 /* Back 5 jack plus 1 SPDIF out jack, front 2 jack */
2015 { .modelname = "5stack-digout", .config = ALC880_5ST_DIG },
2016 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe224, .config = ALC880_5ST_DIG },
2017 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe400, .config = ALC880_5ST_DIG },
2018 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe401, .config = ALC880_5ST_DIG },
2019 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe402, .config = ALC880_5ST_DIG },
2020 { .pci_subvendor = 0x8086, .pci_subdevice = 0xd400, .config = ALC880_5ST_DIG },
2021 { .pci_subvendor = 0x8086, .pci_subdevice = 0xd401, .config = ALC880_5ST_DIG },
2022 { .pci_subvendor = 0x8086, .pci_subdevice = 0xa100, .config = ALC880_5ST_DIG },
2023 { .pci_subvendor = 0x1565, .pci_subdevice = 0x8202, .config = ALC880_5ST_DIG },
2024 { .pci_subvendor = 0x1019, .pci_subdevice = 0xa880, .config = ALC880_5ST_DIG },
2025 /* { .pci_subvendor = 0x1019, .pci_subdevice = 0xa884, .config = ALC880_5ST_DIG }, */ /* conflict with 6stack */
2026 { .pci_subvendor = 0x1695, .pci_subdevice = 0x400d, .config = ALC880_5ST_DIG },
2027 /* note subvendor = 0 below */
2028 /* { .pci_subvendor = 0x0000, .pci_subdevice = 0x8086, .config = ALC880_5ST_DIG }, */
2029
2030 { .modelname = "w810", .config = ALC880_W810 },
2031 { .pci_subvendor = 0x161f, .pci_subdevice = 0x203d, .config = ALC880_W810 },
2032
2033 { .modelname = "z71v", .config = ALC880_Z71V },
2034 { .pci_subvendor = 0x1043, .pci_subdevice = 0x1964, .config = ALC880_Z71V },
2035
2036 { .modelname = "6stack", .config = ALC880_6ST },
2037 { .pci_subvendor = 0x1043, .pci_subdevice = 0x8196, .config = ALC880_6ST }, /* ASUS P5GD1-HVM */
2038 { .pci_subvendor = 0x1043, .pci_subdevice = 0x81b4, .config = ALC880_6ST },
2039 { .pci_subvendor = 0x1019, .pci_subdevice = 0xa884, .config = ALC880_6ST }, /* Acer APFV */
2040 { .pci_subvendor = 0x1458, .pci_subdevice = 0xa102, .config = ALC880_6ST }, /* Gigabyte K8N51 */
2041
2042 { .modelname = "6stack-digout", .config = ALC880_6ST_DIG },
2043 { .pci_subvendor = 0x2668, .pci_subdevice = 0x8086, .config = ALC880_6ST_DIG },
2044 { .pci_subvendor = 0x8086, .pci_subdevice = 0x2668, .config = ALC880_6ST_DIG },
2045 { .pci_subvendor = 0x1462, .pci_subdevice = 0x1150, .config = ALC880_6ST_DIG },
2046 { .pci_subvendor = 0xe803, .pci_subdevice = 0x1019, .config = ALC880_6ST_DIG },
2047 { .pci_subvendor = 0x1039, .pci_subdevice = 0x1234, .config = ALC880_6ST_DIG },
2048 { .pci_subvendor = 0x1025, .pci_subdevice = 0x0077, .config = ALC880_6ST_DIG },
2049 { .pci_subvendor = 0x1025, .pci_subdevice = 0x0078, .config = ALC880_6ST_DIG },
2050 { .pci_subvendor = 0x1025, .pci_subdevice = 0x0087, .config = ALC880_6ST_DIG },
2051 { .pci_subvendor = 0x1297, .pci_subdevice = 0xc790, .config = ALC880_6ST_DIG }, /* Shuttle ST20G5 */
2052
2053 { .modelname = "asus", .config = ALC880_ASUS },
2054 { .pci_subvendor = 0x1043, .pci_subdevice = 0x1964, .config = ALC880_ASUS_DIG },
2055 { .pci_subvendor = 0x1043, .pci_subdevice = 0x1973, .config = ALC880_ASUS_DIG },
2056 { .pci_subvendor = 0x1043, .pci_subdevice = 0x19b3, .config = ALC880_ASUS_DIG },
2057 { .pci_subvendor = 0x1043, .pci_subdevice = 0x1113, .config = ALC880_ASUS_DIG },
2058 { .pci_subvendor = 0x1043, .pci_subdevice = 0x1173, .config = ALC880_ASUS_DIG },
2059 { .pci_subvendor = 0x1043, .pci_subdevice = 0x1993, .config = ALC880_ASUS },
2060 { .pci_subvendor = 0x1043, .pci_subdevice = 0x10c3, .config = ALC880_ASUS_DIG },
2061 { .pci_subvendor = 0x1043, .pci_subdevice = 0x1133, .config = ALC880_ASUS },
2062 { .pci_subvendor = 0x1043, .pci_subdevice = 0x1123, .config = ALC880_ASUS_DIG },
2063 { .pci_subvendor = 0x1043, .pci_subdevice = 0x1143, .config = ALC880_ASUS },
2064 { .pci_subvendor = 0x1043, .pci_subdevice = 0x10b3, .config = ALC880_ASUS_W1V },
2065 { .pci_subvendor = 0x1558, .pci_subdevice = 0x5401, .config = ALC880_ASUS_DIG2 },
2066
2067 { .modelname = "uniwill", .config = ALC880_UNIWILL_DIG },
2068 { .pci_subvendor = 0x1584, .pci_subdevice = 0x9050, .config = ALC880_UNIWILL_DIG },
2069
2070 { .modelname = "F1734", .config = ALC880_F1734 },
2071 { .pci_subvendor = 0x1734, .pci_subdevice = 0x107c, .config = ALC880_F1734 },
2072 { .pci_subvendor = 0x1584, .pci_subdevice = 0x9054, .config = ALC880_F1734 },
2073
2074 { .modelname = "lg", .config = ALC880_LG },
2075 { .pci_subvendor = 0x1854, .pci_subdevice = 0x003b, .config = ALC880_LG },
2076
2077 #ifdef CONFIG_SND_DEBUG
2078 { .modelname = "test", .config = ALC880_TEST },
2079 #endif
2080 { .modelname = "auto", .config = ALC880_AUTO },
2081
2082 {}
2083 };
2084
2085 /*
2086 * ALC880 codec presets
2087 */
2088 static struct alc_config_preset alc880_presets[] = {
2089 [ALC880_3ST] = {
2090 .mixers = { alc880_three_stack_mixer },
2091 .init_verbs = { alc880_volume_init_verbs, alc880_pin_3stack_init_verbs },
2092 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2093 .dac_nids = alc880_dac_nids,
2094 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2095 .channel_mode = alc880_threestack_modes,
2096 .input_mux = &alc880_capture_source,
2097 },
2098 [ALC880_3ST_DIG] = {
2099 .mixers = { alc880_three_stack_mixer },
2100 .init_verbs = { alc880_volume_init_verbs, alc880_pin_3stack_init_verbs },
2101 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2102 .dac_nids = alc880_dac_nids,
2103 .dig_out_nid = ALC880_DIGOUT_NID,
2104 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2105 .channel_mode = alc880_threestack_modes,
2106 .input_mux = &alc880_capture_source,
2107 },
2108 [ALC880_TCL_S700] = {
2109 .mixers = { alc880_tcl_s700_mixer },
2110 .init_verbs = { alc880_volume_init_verbs,
2111 alc880_pin_tcl_S700_init_verbs,
2112 alc880_gpio2_init_verbs },
2113 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2114 .dac_nids = alc880_dac_nids,
2115 .hp_nid = 0x03,
2116 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2117 .channel_mode = alc880_2_jack_modes,
2118 .input_mux = &alc880_capture_source,
2119 },
2120 [ALC880_5ST] = {
2121 .mixers = { alc880_three_stack_mixer, alc880_five_stack_mixer},
2122 .init_verbs = { alc880_volume_init_verbs, alc880_pin_5stack_init_verbs },
2123 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2124 .dac_nids = alc880_dac_nids,
2125 .num_channel_mode = ARRAY_SIZE(alc880_fivestack_modes),
2126 .channel_mode = alc880_fivestack_modes,
2127 .input_mux = &alc880_capture_source,
2128 },
2129 [ALC880_5ST_DIG] = {
2130 .mixers = { alc880_three_stack_mixer, alc880_five_stack_mixer },
2131 .init_verbs = { alc880_volume_init_verbs, alc880_pin_5stack_init_verbs },
2132 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2133 .dac_nids = alc880_dac_nids,
2134 .dig_out_nid = ALC880_DIGOUT_NID,
2135 .num_channel_mode = ARRAY_SIZE(alc880_fivestack_modes),
2136 .channel_mode = alc880_fivestack_modes,
2137 .input_mux = &alc880_capture_source,
2138 },
2139 [ALC880_6ST] = {
2140 .mixers = { alc880_six_stack_mixer },
2141 .init_verbs = { alc880_volume_init_verbs, alc880_pin_6stack_init_verbs },
2142 .num_dacs = ARRAY_SIZE(alc880_6st_dac_nids),
2143 .dac_nids = alc880_6st_dac_nids,
2144 .num_channel_mode = ARRAY_SIZE(alc880_sixstack_modes),
2145 .channel_mode = alc880_sixstack_modes,
2146 .input_mux = &alc880_6stack_capture_source,
2147 },
2148 [ALC880_6ST_DIG] = {
2149 .mixers = { alc880_six_stack_mixer },
2150 .init_verbs = { alc880_volume_init_verbs, alc880_pin_6stack_init_verbs },
2151 .num_dacs = ARRAY_SIZE(alc880_6st_dac_nids),
2152 .dac_nids = alc880_6st_dac_nids,
2153 .dig_out_nid = ALC880_DIGOUT_NID,
2154 .num_channel_mode = ARRAY_SIZE(alc880_sixstack_modes),
2155 .channel_mode = alc880_sixstack_modes,
2156 .input_mux = &alc880_6stack_capture_source,
2157 },
2158 [ALC880_W810] = {
2159 .mixers = { alc880_w810_base_mixer },
2160 .init_verbs = { alc880_volume_init_verbs, alc880_pin_w810_init_verbs,
2161 alc880_gpio2_init_verbs },
2162 .num_dacs = ARRAY_SIZE(alc880_w810_dac_nids),
2163 .dac_nids = alc880_w810_dac_nids,
2164 .dig_out_nid = ALC880_DIGOUT_NID,
2165 .num_channel_mode = ARRAY_SIZE(alc880_w810_modes),
2166 .channel_mode = alc880_w810_modes,
2167 .input_mux = &alc880_capture_source,
2168 },
2169 [ALC880_Z71V] = {
2170 .mixers = { alc880_z71v_mixer },
2171 .init_verbs = { alc880_volume_init_verbs, alc880_pin_z71v_init_verbs },
2172 .num_dacs = ARRAY_SIZE(alc880_z71v_dac_nids),
2173 .dac_nids = alc880_z71v_dac_nids,
2174 .dig_out_nid = ALC880_DIGOUT_NID,
2175 .hp_nid = 0x03,
2176 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2177 .channel_mode = alc880_2_jack_modes,
2178 .input_mux = &alc880_capture_source,
2179 },
2180 [ALC880_F1734] = {
2181 .mixers = { alc880_f1734_mixer },
2182 .init_verbs = { alc880_volume_init_verbs, alc880_pin_f1734_init_verbs },
2183 .num_dacs = ARRAY_SIZE(alc880_f1734_dac_nids),
2184 .dac_nids = alc880_f1734_dac_nids,
2185 .hp_nid = 0x02,
2186 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2187 .channel_mode = alc880_2_jack_modes,
2188 .input_mux = &alc880_capture_source,
2189 },
2190 [ALC880_ASUS] = {
2191 .mixers = { alc880_asus_mixer },
2192 .init_verbs = { alc880_volume_init_verbs, alc880_pin_asus_init_verbs,
2193 alc880_gpio1_init_verbs },
2194 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2195 .dac_nids = alc880_asus_dac_nids,
2196 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2197 .channel_mode = alc880_asus_modes,
2198 .input_mux = &alc880_capture_source,
2199 },
2200 [ALC880_ASUS_DIG] = {
2201 .mixers = { alc880_asus_mixer },
2202 .init_verbs = { alc880_volume_init_verbs, alc880_pin_asus_init_verbs,
2203 alc880_gpio1_init_verbs },
2204 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2205 .dac_nids = alc880_asus_dac_nids,
2206 .dig_out_nid = ALC880_DIGOUT_NID,
2207 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2208 .channel_mode = alc880_asus_modes,
2209 .input_mux = &alc880_capture_source,
2210 },
2211 [ALC880_ASUS_DIG2] = {
2212 .mixers = { alc880_asus_mixer },
2213 .init_verbs = { alc880_volume_init_verbs, alc880_pin_asus_init_verbs,
2214 alc880_gpio2_init_verbs }, /* use GPIO2 */
2215 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2216 .dac_nids = alc880_asus_dac_nids,
2217 .dig_out_nid = ALC880_DIGOUT_NID,
2218 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2219 .channel_mode = alc880_asus_modes,
2220 .input_mux = &alc880_capture_source,
2221 },
2222 [ALC880_ASUS_W1V] = {
2223 .mixers = { alc880_asus_mixer, alc880_asus_w1v_mixer },
2224 .init_verbs = { alc880_volume_init_verbs, alc880_pin_asus_init_verbs,
2225 alc880_gpio1_init_verbs },
2226 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2227 .dac_nids = alc880_asus_dac_nids,
2228 .dig_out_nid = ALC880_DIGOUT_NID,
2229 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2230 .channel_mode = alc880_asus_modes,
2231 .input_mux = &alc880_capture_source,
2232 },
2233 [ALC880_UNIWILL_DIG] = {
2234 .mixers = { alc880_asus_mixer, alc880_pcbeep_mixer },
2235 .init_verbs = { alc880_volume_init_verbs, alc880_pin_asus_init_verbs },
2236 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2237 .dac_nids = alc880_asus_dac_nids,
2238 .dig_out_nid = ALC880_DIGOUT_NID,
2239 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2240 .channel_mode = alc880_asus_modes,
2241 .input_mux = &alc880_capture_source,
2242 },
2243 [ALC880_CLEVO] = {
2244 .mixers = { alc880_three_stack_mixer },
2245 .init_verbs = { alc880_volume_init_verbs,
2246 alc880_pin_clevo_init_verbs },
2247 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2248 .dac_nids = alc880_dac_nids,
2249 .hp_nid = 0x03,
2250 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2251 .channel_mode = alc880_threestack_modes,
2252 .input_mux = &alc880_capture_source,
2253 },
2254 [ALC880_LG] = {
2255 .mixers = { alc880_lg_mixer },
2256 .init_verbs = { alc880_volume_init_verbs,
2257 alc880_lg_init_verbs },
2258 .num_dacs = ARRAY_SIZE(alc880_lg_dac_nids),
2259 .dac_nids = alc880_lg_dac_nids,
2260 .dig_out_nid = ALC880_DIGOUT_NID,
2261 .num_channel_mode = ARRAY_SIZE(alc880_lg_ch_modes),
2262 .channel_mode = alc880_lg_ch_modes,
2263 .input_mux = &alc880_lg_capture_source,
2264 .unsol_event = alc880_lg_unsol_event,
2265 .init_hook = alc880_lg_automute,
2266 },
2267 #ifdef CONFIG_SND_DEBUG
2268 [ALC880_TEST] = {
2269 .mixers = { alc880_test_mixer },
2270 .init_verbs = { alc880_test_init_verbs },
2271 .num_dacs = ARRAY_SIZE(alc880_test_dac_nids),
2272 .dac_nids = alc880_test_dac_nids,
2273 .dig_out_nid = ALC880_DIGOUT_NID,
2274 .num_channel_mode = ARRAY_SIZE(alc880_test_modes),
2275 .channel_mode = alc880_test_modes,
2276 .input_mux = &alc880_test_capture_source,
2277 },
2278 #endif
2279 };
2280
2281 /*
2282 * Automatic parse of I/O pins from the BIOS configuration
2283 */
2284
2285 #define NUM_CONTROL_ALLOC 32
2286 #define NUM_VERB_ALLOC 32
2287
2288 enum {
2289 ALC_CTL_WIDGET_VOL,
2290 ALC_CTL_WIDGET_MUTE,
2291 ALC_CTL_BIND_MUTE,
2292 };
2293 static struct snd_kcontrol_new alc880_control_templates[] = {
2294 HDA_CODEC_VOLUME(NULL, 0, 0, 0),
2295 HDA_CODEC_MUTE(NULL, 0, 0, 0),
2296 HDA_BIND_MUTE(NULL, 0, 0, 0),
2297 };
2298
2299 /* add dynamic controls */
2300 static int add_control(struct alc_spec *spec, int type, const char *name, unsigned long val)
2301 {
2302 struct snd_kcontrol_new *knew;
2303
2304 if (spec->num_kctl_used >= spec->num_kctl_alloc) {
2305 int num = spec->num_kctl_alloc + NUM_CONTROL_ALLOC;
2306
2307 knew = kcalloc(num + 1, sizeof(*knew), GFP_KERNEL); /* array + terminator */
2308 if (! knew)
2309 return -ENOMEM;
2310 if (spec->kctl_alloc) {
2311 memcpy(knew, spec->kctl_alloc, sizeof(*knew) * spec->num_kctl_alloc);
2312 kfree(spec->kctl_alloc);
2313 }
2314 spec->kctl_alloc = knew;
2315 spec->num_kctl_alloc = num;
2316 }
2317
2318 knew = &spec->kctl_alloc[spec->num_kctl_used];
2319 *knew = alc880_control_templates[type];
2320 knew->name = kstrdup(name, GFP_KERNEL);
2321 if (! knew->name)
2322 return -ENOMEM;
2323 knew->private_value = val;
2324 spec->num_kctl_used++;
2325 return 0;
2326 }
2327
2328 #define alc880_is_fixed_pin(nid) ((nid) >= 0x14 && (nid) <= 0x17)
2329 #define alc880_fixed_pin_idx(nid) ((nid) - 0x14)
2330 #define alc880_is_multi_pin(nid) ((nid) >= 0x18)
2331 #define alc880_multi_pin_idx(nid) ((nid) - 0x18)
2332 #define alc880_is_input_pin(nid) ((nid) >= 0x18)
2333 #define alc880_input_pin_idx(nid) ((nid) - 0x18)
2334 #define alc880_idx_to_dac(nid) ((nid) + 0x02)
2335 #define alc880_dac_to_idx(nid) ((nid) - 0x02)
2336 #define alc880_idx_to_mixer(nid) ((nid) + 0x0c)
2337 #define alc880_idx_to_selector(nid) ((nid) + 0x10)
2338 #define ALC880_PIN_CD_NID 0x1c
2339
2340 /* fill in the dac_nids table from the parsed pin configuration */
2341 static int alc880_auto_fill_dac_nids(struct alc_spec *spec, const struct auto_pin_cfg *cfg)
2342 {
2343 hda_nid_t nid;
2344 int assigned[4];
2345 int i, j;
2346
2347 memset(assigned, 0, sizeof(assigned));
2348 spec->multiout.dac_nids = spec->private_dac_nids;
2349
2350 /* check the pins hardwired to audio widget */
2351 for (i = 0; i < cfg->line_outs; i++) {
2352 nid = cfg->line_out_pins[i];
2353 if (alc880_is_fixed_pin(nid)) {
2354 int idx = alc880_fixed_pin_idx(nid);
2355 spec->multiout.dac_nids[i] = alc880_idx_to_dac(idx);
2356 assigned[idx] = 1;
2357 }
2358 }
2359 /* left pins can be connect to any audio widget */
2360 for (i = 0; i < cfg->line_outs; i++) {
2361 nid = cfg->line_out_pins[i];
2362 if (alc880_is_fixed_pin(nid))
2363 continue;
2364 /* search for an empty channel */
2365 for (j = 0; j < cfg->line_outs; j++) {
2366 if (! assigned[j]) {
2367 spec->multiout.dac_nids[i] = alc880_idx_to_dac(j);
2368 assigned[j] = 1;
2369 break;
2370 }
2371 }
2372 }
2373 spec->multiout.num_dacs = cfg->line_outs;
2374 return 0;
2375 }
2376
2377 /* add playback controls from the parsed DAC table */
2378 static int alc880_auto_create_multi_out_ctls(struct alc_spec *spec,
2379 const struct auto_pin_cfg *cfg)
2380 {
2381 char name[32];
2382 static const char *chname[4] = { "Front", "Surround", NULL /*CLFE*/, "Side" };
2383 hda_nid_t nid;
2384 int i, err;
2385
2386 for (i = 0; i < cfg->line_outs; i++) {
2387 if (! spec->multiout.dac_nids[i])
2388 continue;
2389 nid = alc880_idx_to_mixer(alc880_dac_to_idx(spec->multiout.dac_nids[i]));
2390 if (i == 2) {
2391 /* Center/LFE */
2392 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL, "Center Playback Volume",
2393 HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT))) < 0)
2394 return err;
2395 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL, "LFE Playback Volume",
2396 HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_OUTPUT))) < 0)
2397 return err;
2398 if ((err = add_control(spec, ALC_CTL_BIND_MUTE, "Center Playback Switch",
2399 HDA_COMPOSE_AMP_VAL(nid, 1, 2, HDA_INPUT))) < 0)
2400 return err;
2401 if ((err = add_control(spec, ALC_CTL_BIND_MUTE, "LFE Playback Switch",
2402 HDA_COMPOSE_AMP_VAL(nid, 2, 2, HDA_INPUT))) < 0)
2403 return err;
2404 } else {
2405 sprintf(name, "%s Playback Volume", chname[i]);
2406 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
2407 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT))) < 0)
2408 return err;
2409 sprintf(name, "%s Playback Switch", chname[i]);
2410 if ((err = add_control(spec, ALC_CTL_BIND_MUTE, name,
2411 HDA_COMPOSE_AMP_VAL(nid, 3, 2, HDA_INPUT))) < 0)
2412 return err;
2413 }
2414 }
2415 return 0;
2416 }
2417
2418 /* add playback controls for speaker and HP outputs */
2419 static int alc880_auto_create_extra_out(struct alc_spec *spec, hda_nid_t pin,
2420 const char *pfx)
2421 {
2422 hda_nid_t nid;
2423 int err;
2424 char name[32];
2425
2426 if (! pin)
2427 return 0;
2428
2429 if (alc880_is_fixed_pin(pin)) {
2430 nid = alc880_idx_to_dac(alc880_fixed_pin_idx(pin));
2431 if (! spec->multiout.dac_nids[0]) {
2432 /* use this as the primary output */
2433 spec->multiout.dac_nids[0] = nid;
2434 if (! spec->multiout.num_dacs)
2435 spec->multiout.num_dacs = 1;
2436 } else
2437 /* specify the DAC as the extra output */
2438 spec->multiout.hp_nid = nid;
2439 /* control HP volume/switch on the output mixer amp */
2440 nid = alc880_idx_to_mixer(alc880_fixed_pin_idx(pin));
2441 sprintf(name, "%s Playback Volume", pfx);
2442 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
2443 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT))) < 0)
2444 return err;
2445 sprintf(name, "%s Playback Switch", pfx);
2446 if ((err = add_control(spec, ALC_CTL_BIND_MUTE, name,
2447 HDA_COMPOSE_AMP_VAL(nid, 3, 2, HDA_INPUT))) < 0)
2448 return err;
2449 } else if (alc880_is_multi_pin(pin)) {
2450 /* set manual connection */
2451 if (! spec->multiout.dac_nids[0]) {
2452 /* use this as the primary output */
2453 spec->multiout.dac_nids[0] = alc880_idx_to_dac(alc880_multi_pin_idx(pin));
2454 if (! spec->multiout.num_dacs)
2455 spec->multiout.num_dacs = 1;
2456 }
2457 /* we have only a switch on HP-out PIN */
2458 sprintf(name, "%s Playback Switch", pfx);
2459 if ((err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
2460 HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT))) < 0)
2461 return err;
2462 }
2463 return 0;
2464 }
2465
2466 /* create input playback/capture controls for the given pin */
2467 static int new_analog_input(struct alc_spec *spec, hda_nid_t pin, const char *ctlname,
2468 int idx, hda_nid_t mix_nid)
2469 {
2470 char name[32];
2471 int err;
2472
2473 sprintf(name, "%s Playback Volume", ctlname);
2474 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
2475 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT))) < 0)
2476 return err;
2477 sprintf(name, "%s Playback Switch", ctlname);
2478 if ((err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
2479 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT))) < 0)
2480 return err;
2481 return 0;
2482 }
2483
2484 /* create playback/capture controls for input pins */
2485 static int alc880_auto_create_analog_input_ctls(struct alc_spec *spec,
2486 const struct auto_pin_cfg *cfg)
2487 {
2488 struct hda_input_mux *imux = &spec->private_imux;
2489 int i, err, idx;
2490
2491 for (i = 0; i < AUTO_PIN_LAST; i++) {
2492 if (alc880_is_input_pin(cfg->input_pins[i])) {
2493 idx = alc880_input_pin_idx(cfg->input_pins[i]);
2494 err = new_analog_input(spec, cfg->input_pins[i],
2495 auto_pin_cfg_labels[i],
2496 idx, 0x0b);
2497 if (err < 0)
2498 return err;
2499 imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
2500 imux->items[imux->num_items].index = alc880_input_pin_idx(cfg->input_pins[i]);
2501 imux->num_items++;
2502 }
2503 }
2504 return 0;
2505 }
2506
2507 static void alc880_auto_set_output_and_unmute(struct hda_codec *codec,
2508 hda_nid_t nid, int pin_type,
2509 int dac_idx)
2510 {
2511 /* set as output */
2512 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
2513 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
2514 /* need the manual connection? */
2515 if (alc880_is_multi_pin(nid)) {
2516 struct alc_spec *spec = codec->spec;
2517 int idx = alc880_multi_pin_idx(nid);
2518 snd_hda_codec_write(codec, alc880_idx_to_selector(idx), 0,
2519 AC_VERB_SET_CONNECT_SEL,
2520 alc880_dac_to_idx(spec->multiout.dac_nids[dac_idx]));
2521 }
2522 }
2523
2524 static void alc880_auto_init_multi_out(struct hda_codec *codec)
2525 {
2526 struct alc_spec *spec = codec->spec;
2527 int i;
2528
2529 for (i = 0; i < spec->autocfg.line_outs; i++) {
2530 hda_nid_t nid = spec->autocfg.line_out_pins[i];
2531 alc880_auto_set_output_and_unmute(codec, nid, PIN_OUT, i);
2532 }
2533 }
2534
2535 static void alc880_auto_init_extra_out(struct hda_codec *codec)
2536 {
2537 struct alc_spec *spec = codec->spec;
2538 hda_nid_t pin;
2539
2540 pin = spec->autocfg.speaker_pin;
2541 if (pin) /* connect to front */
2542 alc880_auto_set_output_and_unmute(codec, pin, PIN_OUT, 0);
2543 pin = spec->autocfg.hp_pin;
2544 if (pin) /* connect to front */
2545 alc880_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
2546 }
2547
2548 static void alc880_auto_init_analog_input(struct hda_codec *codec)
2549 {
2550 struct alc_spec *spec = codec->spec;
2551 int i;
2552
2553 for (i = 0; i < AUTO_PIN_LAST; i++) {
2554 hda_nid_t nid = spec->autocfg.input_pins[i];
2555 if (alc880_is_input_pin(nid)) {
2556 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
2557 i <= AUTO_PIN_FRONT_MIC ? PIN_VREF80 : PIN_IN);
2558 if (nid != ALC880_PIN_CD_NID)
2559 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
2560 AMP_OUT_MUTE);
2561 }
2562 }
2563 }
2564
2565 /* parse the BIOS configuration and set up the alc_spec */
2566 /* return 1 if successful, 0 if the proper config is not found, or a negative error code */
2567 static int alc880_parse_auto_config(struct hda_codec *codec)
2568 {
2569 struct alc_spec *spec = codec->spec;
2570 int err;
2571 static hda_nid_t alc880_ignore[] = { 0x1d, 0 };
2572
2573 if ((err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
2574 alc880_ignore)) < 0)
2575 return err;
2576 if (! spec->autocfg.line_outs && ! spec->autocfg.speaker_pin &&
2577 ! spec->autocfg.hp_pin)
2578 return 0; /* can't find valid BIOS pin config */
2579
2580 if ((err = alc880_auto_fill_dac_nids(spec, &spec->autocfg)) < 0 ||
2581 (err = alc880_auto_create_multi_out_ctls(spec, &spec->autocfg)) < 0 ||
2582 (err = alc880_auto_create_extra_out(spec, spec->autocfg.speaker_pin,
2583 "Speaker")) < 0 ||
2584 (err = alc880_auto_create_extra_out(spec, spec->autocfg.speaker_pin,
2585 "Headphone")) < 0 ||
2586 (err = alc880_auto_create_analog_input_ctls(spec, &spec->autocfg)) < 0)
2587 return err;
2588
2589 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
2590
2591 if (spec->autocfg.dig_out_pin)
2592 spec->multiout.dig_out_nid = ALC880_DIGOUT_NID;
2593 if (spec->autocfg.dig_in_pin)
2594 spec->dig_in_nid = ALC880_DIGIN_NID;
2595
2596 if (spec->kctl_alloc)
2597 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
2598
2599 spec->init_verbs[spec->num_init_verbs++] = alc880_volume_init_verbs;
2600
2601 spec->input_mux = &spec->private_imux;
2602
2603 return 1;
2604 }
2605
2606 /* additional initialization for auto-configuration model */
2607 static void alc880_auto_init(struct hda_codec *codec)
2608 {
2609 alc880_auto_init_multi_out(codec);
2610 alc880_auto_init_extra_out(codec);
2611 alc880_auto_init_analog_input(codec);
2612 }
2613
2614 /*
2615 * OK, here we have finally the patch for ALC880
2616 */
2617
2618 static int patch_alc880(struct hda_codec *codec)
2619 {
2620 struct alc_spec *spec;
2621 int board_config;
2622 int err;
2623
2624 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
2625 if (spec == NULL)
2626 return -ENOMEM;
2627
2628 codec->spec = spec;
2629
2630 board_config = snd_hda_check_board_config(codec, alc880_cfg_tbl);
2631 if (board_config < 0 || board_config >= ALC880_MODEL_LAST) {
2632 printk(KERN_INFO "hda_codec: Unknown model for ALC880, trying auto-probe from BIOS...\n");
2633 board_config = ALC880_AUTO;
2634 }
2635
2636 if (board_config == ALC880_AUTO) {
2637 /* automatic parse from the BIOS config */
2638 err = alc880_parse_auto_config(codec);
2639 if (err < 0) {
2640 alc_free(codec);
2641 return err;
2642 } else if (! err) {
2643 printk(KERN_INFO "hda_codec: Cannot set up configuration from BIOS. Using 3-stack mode...\n");
2644 board_config = ALC880_3ST;
2645 }
2646 }
2647
2648 if (board_config != ALC880_AUTO)
2649 setup_preset(spec, &alc880_presets[board_config]);
2650
2651 spec->stream_name_analog = "ALC880 Analog";
2652 spec->stream_analog_playback = &alc880_pcm_analog_playback;
2653 spec->stream_analog_capture = &alc880_pcm_analog_capture;
2654
2655 spec->stream_name_digital = "ALC880 Digital";
2656 spec->stream_digital_playback = &alc880_pcm_digital_playback;
2657 spec->stream_digital_capture = &alc880_pcm_digital_capture;
2658
2659 if (! spec->adc_nids && spec->input_mux) {
2660 /* check whether NID 0x07 is valid */
2661 unsigned int wcap = get_wcaps(codec, alc880_adc_nids[0]);
2662 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT; /* get type */
2663 if (wcap != AC_WID_AUD_IN) {
2664 spec->adc_nids = alc880_adc_nids_alt;
2665 spec->num_adc_nids = ARRAY_SIZE(alc880_adc_nids_alt);
2666 spec->mixers[spec->num_mixers] = alc880_capture_alt_mixer;
2667 spec->num_mixers++;
2668 } else {
2669 spec->adc_nids = alc880_adc_nids;
2670 spec->num_adc_nids = ARRAY_SIZE(alc880_adc_nids);
2671 spec->mixers[spec->num_mixers] = alc880_capture_mixer;
2672 spec->num_mixers++;
2673 }
2674 }
2675
2676 codec->patch_ops = alc_patch_ops;
2677 if (board_config == ALC880_AUTO)
2678 spec->init_hook = alc880_auto_init;
2679
2680 return 0;
2681 }
2682
2683
2684 /*
2685 * ALC260 support
2686 */
2687
2688 static hda_nid_t alc260_dac_nids[1] = {
2689 /* front */
2690 0x02,
2691 };
2692
2693 static hda_nid_t alc260_adc_nids[1] = {
2694 /* ADC0 */
2695 0x04,
2696 };
2697
2698 static hda_nid_t alc260_adc_nids_alt[1] = {
2699 /* ADC1 */
2700 0x05,
2701 };
2702
2703 static hda_nid_t alc260_hp_adc_nids[2] = {
2704 /* ADC1, 0 */
2705 0x05, 0x04
2706 };
2707
2708 /* NIDs used when simultaneous access to both ADCs makes sense. Note that
2709 * alc260_capture_mixer assumes ADC0 (nid 0x04) is the first ADC.
2710 */
2711 static hda_nid_t alc260_dual_adc_nids[2] = {
2712 /* ADC0, ADC1 */
2713 0x04, 0x05
2714 };
2715
2716 #define ALC260_DIGOUT_NID 0x03
2717 #define ALC260_DIGIN_NID 0x06
2718
2719 static struct hda_input_mux alc260_capture_source = {
2720 .num_items = 4,
2721 .items = {
2722 { "Mic", 0x0 },
2723 { "Front Mic", 0x1 },
2724 { "Line", 0x2 },
2725 { "CD", 0x4 },
2726 },
2727 };
2728
2729 /* On Fujitsu S702x laptops capture only makes sense from Mic/LineIn jack,
2730 * headphone jack and the internal CD lines.
2731 */
2732 static struct hda_input_mux alc260_fujitsu_capture_source = {
2733 .num_items = 3,
2734 .items = {
2735 { "Mic/Line", 0x0 },
2736 { "CD", 0x4 },
2737 { "Headphone", 0x2 },
2738 },
2739 };
2740
2741 /* Acer TravelMate(/Extensa/Aspire) notebooks have similar configutation to
2742 * the Fujitsu S702x, but jacks are marked differently. We won't allow
2743 * retasking the Headphone jack, so it won't be available here.
2744 */
2745 static struct hda_input_mux alc260_acer_capture_source = {
2746 .num_items = 3,
2747 .items = {
2748 { "Mic", 0x0 },
2749 { "Line", 0x2 },
2750 { "CD", 0x4 },
2751 },
2752 };
2753
2754 /*
2755 * This is just place-holder, so there's something for alc_build_pcms to look
2756 * at when it calculates the maximum number of channels. ALC260 has no mixer
2757 * element which allows changing the channel mode, so the verb list is
2758 * never used.
2759 */
2760 static struct hda_channel_mode alc260_modes[1] = {
2761 { 2, NULL },
2762 };
2763
2764
2765 /* Mixer combinations
2766 *
2767 * basic: base_output + input + pc_beep + capture
2768 * HP: base_output + input + capture_alt
2769 * HP_3013: hp_3013 + input + capture
2770 * fujitsu: fujitsu + capture
2771 * acer: acer + capture
2772 */
2773
2774 static struct snd_kcontrol_new alc260_base_output_mixer[] = {
2775 HDA_CODEC_VOLUME("Front Playback Volume", 0x08, 0x0, HDA_OUTPUT),
2776 HDA_BIND_MUTE("Front Playback Switch", 0x08, 2, HDA_INPUT),
2777 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x09, 0x0, HDA_OUTPUT),
2778 HDA_BIND_MUTE("Headphone Playback Switch", 0x09, 2, HDA_INPUT),
2779 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
2780 HDA_BIND_MUTE_MONO("Mono Playback Switch", 0x0a, 1, 2, HDA_INPUT),
2781 { } /* end */
2782 };
2783
2784 static struct snd_kcontrol_new alc260_input_mixer[] = {
2785 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
2786 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
2787 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
2788 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
2789 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
2790 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
2791 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x07, 0x01, HDA_INPUT),
2792 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x07, 0x01, HDA_INPUT),
2793 { } /* end */
2794 };
2795
2796 static struct snd_kcontrol_new alc260_pc_beep_mixer[] = {
2797 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x07, 0x05, HDA_INPUT),
2798 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x07, 0x05, HDA_INPUT),
2799 { } /* end */
2800 };
2801
2802 static struct snd_kcontrol_new alc260_hp_3013_mixer[] = {
2803 HDA_CODEC_VOLUME("Front Playback Volume", 0x09, 0x0, HDA_OUTPUT),
2804 HDA_CODEC_MUTE("Front Playback Switch", 0x10, 0x0, HDA_OUTPUT),
2805 HDA_CODEC_VOLUME("Aux-In Playback Volume", 0x07, 0x06, HDA_INPUT),
2806 HDA_CODEC_MUTE("Aux-In Playback Switch", 0x07, 0x06, HDA_INPUT),
2807 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x08, 0x0, HDA_OUTPUT),
2808 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
2809 HDA_CODEC_VOLUME_MONO("iSpeaker Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
2810 HDA_CODEC_MUTE_MONO("iSpeaker Playback Switch", 0x11, 1, 0x0, HDA_OUTPUT),
2811 { } /* end */
2812 };
2813
2814 static struct snd_kcontrol_new alc260_fujitsu_mixer[] = {
2815 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x08, 0x0, HDA_OUTPUT),
2816 HDA_BIND_MUTE("Headphone Playback Switch", 0x08, 2, HDA_INPUT),
2817 ALC_PIN_MODE("Headphone Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
2818 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
2819 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
2820 HDA_CODEC_VOLUME("Mic/Line Playback Volume", 0x07, 0x0, HDA_INPUT),
2821 HDA_CODEC_MUTE("Mic/Line Playback Switch", 0x07, 0x0, HDA_INPUT),
2822 ALC_PIN_MODE("Mic/Line Jack Mode", 0x12, ALC_PIN_DIR_IN),
2823 HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
2824 HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
2825 HDA_CODEC_VOLUME("Internal Speaker Playback Volume", 0x09, 0x0, HDA_OUTPUT),
2826 HDA_BIND_MUTE("Internal Speaker Playback Switch", 0x09, 2, HDA_INPUT),
2827 { } /* end */
2828 };
2829
2830 static struct snd_kcontrol_new alc260_acer_mixer[] = {
2831 HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT),
2832 HDA_BIND_MUTE("Master Playback Switch", 0x08, 2, HDA_INPUT),
2833 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
2834 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
2835 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
2836 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
2837 ALC_PIN_MODE("Mic Jack Mode", 0x12, ALC_PIN_DIR_IN),
2838 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
2839 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
2840 ALC_PIN_MODE("Line Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
2841 HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
2842 HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
2843 { } /* end */
2844 };
2845
2846 /* capture mixer elements */
2847 static struct snd_kcontrol_new alc260_capture_mixer[] = {
2848 HDA_CODEC_VOLUME("Capture Volume", 0x04, 0x0, HDA_INPUT),
2849 HDA_CODEC_MUTE("Capture Switch", 0x04, 0x0, HDA_INPUT),
2850 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x05, 0x0, HDA_INPUT),
2851 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x05, 0x0, HDA_INPUT),
2852 {
2853 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2854 /* The multiple "Capture Source" controls confuse alsamixer
2855 * So call somewhat different..
2856 * FIXME: the controls appear in the "playback" view!
2857 */
2858 /* .name = "Capture Source", */
2859 .name = "Input Source",
2860 .count = 2,
2861 .info = alc_mux_enum_info,
2862 .get = alc_mux_enum_get,
2863 .put = alc_mux_enum_put,
2864 },
2865 { } /* end */
2866 };
2867
2868 static struct snd_kcontrol_new alc260_capture_alt_mixer[] = {
2869 HDA_CODEC_VOLUME("Capture Volume", 0x05, 0x0, HDA_INPUT),
2870 HDA_CODEC_MUTE("Capture Switch", 0x05, 0x0, HDA_INPUT),
2871 {
2872 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2873 /* The multiple "Capture Source" controls confuse alsamixer
2874 * So call somewhat different..
2875 * FIXME: the controls appear in the "playback" view!
2876 */
2877 /* .name = "Capture Source", */
2878 .name = "Input Source",
2879 .count = 1,
2880 .info = alc_mux_enum_info,
2881 .get = alc_mux_enum_get,
2882 .put = alc_mux_enum_put,
2883 },
2884 { } /* end */
2885 };
2886
2887 /*
2888 * initialization verbs
2889 */
2890 static struct hda_verb alc260_init_verbs[] = {
2891 /* Line In pin widget for input */
2892 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2893 /* CD pin widget for input */
2894 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2895 /* Mic1 (rear panel) pin widget for input and vref at 80% */
2896 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2897 /* Mic2 (front panel) pin widget for input and vref at 80% */
2898 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2899 /* LINE-2 is used for line-out in rear */
2900 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2901 /* select line-out */
2902 {0x0e, AC_VERB_SET_CONNECT_SEL, 0x00},
2903 /* LINE-OUT pin */
2904 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2905 /* enable HP */
2906 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2907 /* enable Mono */
2908 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2909 /* mute capture amp left and right */
2910 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2911 /* set connection select to line in (default select for this ADC) */
2912 {0x04, AC_VERB_SET_CONNECT_SEL, 0x02},
2913 /* mute capture amp left and right */
2914 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2915 /* set connection select to line in (default select for this ADC) */
2916 {0x05, AC_VERB_SET_CONNECT_SEL, 0x02},
2917 /* set vol=0 Line-Out mixer amp left and right */
2918 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2919 /* unmute pin widget amp left and right (no gain on this amp) */
2920 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2921 /* set vol=0 HP mixer amp left and right */
2922 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2923 /* unmute pin widget amp left and right (no gain on this amp) */
2924 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2925 /* set vol=0 Mono mixer amp left and right */
2926 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2927 /* unmute pin widget amp left and right (no gain on this amp) */
2928 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2929 /* unmute LINE-2 out pin */
2930 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2931 /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 & Line In 2 = 0x03 */
2932 /* mute CD */
2933 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
2934 /* mute Line In */
2935 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
2936 /* mute Mic */
2937 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2938 /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
2939 /* mute Front out path */
2940 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2941 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2942 /* mute Headphone out path */
2943 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2944 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2945 /* mute Mono out path */
2946 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2947 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2948 { }
2949 };
2950
2951 static struct hda_verb alc260_hp_init_verbs[] = {
2952 /* Headphone and output */
2953 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
2954 /* mono output */
2955 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
2956 /* Mic1 (rear panel) pin widget for input and vref at 80% */
2957 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
2958 /* Mic2 (front panel) pin widget for input and vref at 80% */
2959 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
2960 /* Line In pin widget for input */
2961 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
2962 /* Line-2 pin widget for output */
2963 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
2964 /* CD pin widget for input */
2965 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
2966 /* unmute amp left and right */
2967 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000},
2968 /* set connection select to line in (default select for this ADC) */
2969 {0x04, AC_VERB_SET_CONNECT_SEL, 0x02},
2970 /* unmute Line-Out mixer amp left and right (volume = 0) */
2971 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
2972 /* mute pin widget amp left and right (no gain on this amp) */
2973 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
2974 /* unmute HP mixer amp left and right (volume = 0) */
2975 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
2976 /* mute pin widget amp left and right (no gain on this amp) */
2977 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
2978 /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 & Line In 2 = 0x03 */
2979 /* unmute CD */
2980 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
2981 /* unmute Line In */
2982 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
2983 /* unmute Mic */
2984 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
2985 /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
2986 /* Unmute Front out path */
2987 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
2988 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
2989 /* Unmute Headphone out path */
2990 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
2991 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
2992 /* Unmute Mono out path */
2993 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
2994 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
2995 { }
2996 };
2997
2998 static struct hda_verb alc260_hp_3013_init_verbs[] = {
2999 /* Line out and output */
3000 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3001 /* mono output */
3002 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3003 /* Mic1 (rear panel) pin widget for input and vref at 80% */
3004 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
3005 /* Mic2 (front panel) pin widget for input and vref at 80% */
3006 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
3007 /* Line In pin widget for input */
3008 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3009 /* Headphone pin widget for output */
3010 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
3011 /* CD pin widget for input */
3012 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3013 /* unmute amp left and right */
3014 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000},
3015 /* set connection select to line in (default select for this ADC) */
3016 {0x04, AC_VERB_SET_CONNECT_SEL, 0x02},
3017 /* unmute Line-Out mixer amp left and right (volume = 0) */
3018 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
3019 /* mute pin widget amp left and right (no gain on this amp) */
3020 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
3021 /* unmute HP mixer amp left and right (volume = 0) */
3022 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
3023 /* mute pin widget amp left and right (no gain on this amp) */
3024 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
3025 /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 & Line In 2 = 0x03 */
3026 /* unmute CD */
3027 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
3028 /* unmute Line In */
3029 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
3030 /* unmute Mic */
3031 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3032 /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
3033 /* Unmute Front out path */
3034 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3035 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3036 /* Unmute Headphone out path */
3037 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3038 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3039 /* Unmute Mono out path */
3040 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3041 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3042 { }
3043 };
3044
3045 /* Initialisation sequence for ALC260 as configured in Fujitsu S702x
3046 * laptops.
3047 */
3048 static struct hda_verb alc260_fujitsu_init_verbs[] = {
3049 /* Disable all GPIOs */
3050 {0x01, AC_VERB_SET_GPIO_MASK, 0},
3051 /* Internal speaker is connected to headphone pin */
3052 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
3053 /* Headphone/Line-out jack connects to Line1 pin; make it an output */
3054 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3055 /* Mic/Line-in jack is connected to mic1 pin, so make it an input */
3056 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3057 /* Ensure all other unused pins are disabled and muted. */
3058 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3059 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3060 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3061 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3062 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3063 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3064 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3065 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3066
3067 /* Disable digital (SPDIF) pins */
3068 {0x03, AC_VERB_SET_DIGI_CONVERT_1, 0},
3069 {0x06, AC_VERB_SET_DIGI_CONVERT_1, 0},
3070
3071 /* Ensure Line1 pin widget takes its input from the OUT1 sum bus
3072 * when acting as an output.
3073 */
3074 {0x0d, AC_VERB_SET_CONNECT_SEL, 0},
3075
3076 /* Start with output sum widgets muted and their output gains at min */
3077 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3078 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3079 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3080 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3081 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3082 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3083 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3084 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3085 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3086
3087 /* Unmute HP pin widget amp left and right (no equiv mixer ctrl) */
3088 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3089 /* Unmute Line1 pin widget output buffer since it starts as an output.
3090 * If the pin mode is changed by the user the pin mode control will
3091 * take care of enabling the pin's input/output buffers as needed.
3092 * Therefore there's no need to enable the input buffer at this
3093 * stage.
3094 */
3095 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3096 /* Unmute input buffer of pin widget used for Line-in (no equiv
3097 * mixer ctrl)
3098 */
3099 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3100
3101 /* Mute capture amp left and right */
3102 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3103 /* Set ADC connection select to match default mixer setting - line
3104 * in (on mic1 pin)
3105 */
3106 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
3107
3108 /* Do the same for the second ADC: mute capture input amp and
3109 * set ADC connection to line in (on mic1 pin)
3110 */
3111 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3112 {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
3113
3114 /* Mute all inputs to mixer widget (even unconnected ones) */
3115 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
3116 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
3117 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
3118 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
3119 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
3120 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
3121 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
3122 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
3123
3124 { }
3125 };
3126
3127 /* Initialisation sequence for ALC260 as configured in Acer TravelMate and
3128 * similar laptops (adapted from Fujitsu init verbs).
3129 */
3130 static struct hda_verb alc260_acer_init_verbs[] = {
3131 /* On TravelMate laptops, GPIO 0 enables the internal speaker and
3132 * the headphone jack. Turn this on and rely on the standard mute
3133 * methods whenever the user wants to turn these outputs off.
3134 */
3135 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
3136 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
3137 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
3138 /* Internal speaker/Headphone jack is connected to Line-out pin */
3139 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
3140 /* Internal microphone/Mic jack is connected to Mic1 pin */
3141 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50},
3142 /* Line In jack is connected to Line1 pin */
3143 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3144 /* Ensure all other unused pins are disabled and muted. */
3145 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3146 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3147 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3148 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3149 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3150 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3151 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3152 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3153 /* Disable digital (SPDIF) pins */
3154 {0x03, AC_VERB_SET_DIGI_CONVERT_1, 0},
3155 {0x06, AC_VERB_SET_DIGI_CONVERT_1, 0},
3156
3157 /* Ensure Mic1 and Line1 pin widgets take input from the OUT1 sum
3158 * bus when acting as outputs.
3159 */
3160 {0x0b, AC_VERB_SET_CONNECT_SEL, 0},
3161 {0x0d, AC_VERB_SET_CONNECT_SEL, 0},
3162
3163 /* Start with output sum widgets muted and their output gains at min */
3164 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3165 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3166 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3167 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3168 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3169 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3170 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3171 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3172 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3173
3174 /* Unmute Line-out pin widget amp left and right (no equiv mixer ctrl) */
3175 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3176 /* Unmute Mic1 and Line1 pin widget input buffers since they start as
3177 * inputs. If the pin mode is changed by the user the pin mode control
3178 * will take care of enabling the pin's input/output buffers as needed.
3179 * Therefore there's no need to enable the input buffer at this
3180 * stage.
3181 */
3182 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3183 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3184
3185 /* Mute capture amp left and right */
3186 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3187 /* Set ADC connection select to match default mixer setting - mic
3188 * (on mic1 pin)
3189 */
3190 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
3191
3192 /* Do similar with the second ADC: mute capture input amp and
3193 * set ADC connection to line (on line1 pin)
3194 */
3195 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3196 {0x05, AC_VERB_SET_CONNECT_SEL, 0x02},
3197
3198 /* Mute all inputs to mixer widget (even unconnected ones) */
3199 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
3200 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
3201 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
3202 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
3203 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
3204 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
3205 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
3206 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
3207
3208 { }
3209 };
3210
3211 /* Test configuration for debugging, modelled after the ALC880 test
3212 * configuration.
3213 */
3214 #ifdef CONFIG_SND_DEBUG
3215 static hda_nid_t alc260_test_dac_nids[1] = {
3216 0x02,
3217 };
3218 static hda_nid_t alc260_test_adc_nids[2] = {
3219 0x04, 0x05,
3220 };
3221 /* This is a bit messy since the two input muxes in the ALC260 have slight
3222 * variations in their signal assignments. The ideal way to deal with this
3223 * is to extend alc_spec.input_mux to allow a different input MUX for each
3224 * ADC. For the purposes of the test model it's sufficient to just list
3225 * both options for affected signal indices. The separate input mux
3226 * functionality only needs to be considered if a model comes along which
3227 * actually uses signals 0x5, 0x6 and 0x7 for something which makes sense to
3228 * record.
3229 */
3230 static struct hda_input_mux alc260_test_capture_source = {
3231 .num_items = 8,
3232 .items = {
3233 { "MIC1 pin", 0x0 },
3234 { "MIC2 pin", 0x1 },
3235 { "LINE1 pin", 0x2 },
3236 { "LINE2 pin", 0x3 },
3237 { "CD pin", 0x4 },
3238 { "LINE-OUT pin (cap1), Mixer (cap2)", 0x5 },
3239 { "HP-OUT pin (cap1), LINE-OUT pin (cap2)", 0x6 },
3240 { "HP-OUT pin (cap2 only)", 0x7 },
3241 },
3242 };
3243 static struct snd_kcontrol_new alc260_test_mixer[] = {
3244 /* Output driver widgets */
3245 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
3246 HDA_BIND_MUTE_MONO("Mono Playback Switch", 0x0a, 1, 2, HDA_INPUT),
3247 HDA_CODEC_VOLUME("LOUT2 Playback Volume", 0x09, 0x0, HDA_OUTPUT),
3248 HDA_BIND_MUTE("LOUT2 Playback Switch", 0x09, 2, HDA_INPUT),
3249 HDA_CODEC_VOLUME("LOUT1 Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3250 HDA_BIND_MUTE("LOUT1 Playback Switch", 0x08, 2, HDA_INPUT),
3251
3252 /* Modes for retasking pin widgets */
3253 ALC_PIN_MODE("HP-OUT pin mode", 0x10, ALC_PIN_DIR_INOUT),
3254 ALC_PIN_MODE("LINE-OUT pin mode", 0x0f, ALC_PIN_DIR_INOUT),
3255 ALC_PIN_MODE("LINE2 pin mode", 0x15, ALC_PIN_DIR_INOUT),
3256 ALC_PIN_MODE("LINE1 pin mode", 0x14, ALC_PIN_DIR_INOUT),
3257 ALC_PIN_MODE("MIC2 pin mode", 0x13, ALC_PIN_DIR_INOUT),
3258 ALC_PIN_MODE("MIC1 pin mode", 0x12, ALC_PIN_DIR_INOUT),
3259
3260 /* Loopback mixer controls */
3261 HDA_CODEC_VOLUME("MIC1 Playback Volume", 0x07, 0x00, HDA_INPUT),
3262 HDA_CODEC_MUTE("MIC1 Playback Switch", 0x07, 0x00, HDA_INPUT),
3263 HDA_CODEC_VOLUME("MIC2 Playback Volume", 0x07, 0x01, HDA_INPUT),
3264 HDA_CODEC_MUTE("MIC2 Playback Switch", 0x07, 0x01, HDA_INPUT),
3265 HDA_CODEC_VOLUME("LINE1 Playback Volume", 0x07, 0x02, HDA_INPUT),
3266 HDA_CODEC_MUTE("LINE1 Playback Switch", 0x07, 0x02, HDA_INPUT),
3267 HDA_CODEC_VOLUME("LINE2 Playback Volume", 0x07, 0x03, HDA_INPUT),
3268 HDA_CODEC_MUTE("LINE2 Playback Switch", 0x07, 0x03, HDA_INPUT),
3269 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
3270 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
3271 HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
3272 HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
3273 HDA_CODEC_VOLUME("LINE-OUT loopback Playback Volume", 0x07, 0x06, HDA_INPUT),
3274 HDA_CODEC_MUTE("LINE-OUT loopback Playback Switch", 0x07, 0x06, HDA_INPUT),
3275 HDA_CODEC_VOLUME("HP-OUT loopback Playback Volume", 0x07, 0x7, HDA_INPUT),
3276 HDA_CODEC_MUTE("HP-OUT loopback Playback Switch", 0x07, 0x7, HDA_INPUT),
3277
3278 /* Controls for GPIO pins, assuming they are configured as outputs */
3279 ALC_GPIO_DATA_SWITCH("GPIO pin 0", 0x01, 0x01),
3280 ALC_GPIO_DATA_SWITCH("GPIO pin 1", 0x01, 0x02),
3281 ALC_GPIO_DATA_SWITCH("GPIO pin 2", 0x01, 0x04),
3282 ALC_GPIO_DATA_SWITCH("GPIO pin 3", 0x01, 0x08),
3283
3284 /* Switches to allow the digital IO pins to be enabled. The datasheet
3285 * is ambigious as to which NID is which; testing on laptops which
3286 * make this output available should provide clarification.
3287 */
3288 ALC_SPDIF_CTRL_SWITCH("SPDIF Playback Switch", 0x03, 0x01),
3289 ALC_SPDIF_CTRL_SWITCH("SPDIF Capture Switch", 0x06, 0x01),
3290
3291 { } /* end */
3292 };
3293 static struct hda_verb alc260_test_init_verbs[] = {
3294 /* Enable all GPIOs as outputs with an initial value of 0 */
3295 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x0f},
3296 {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
3297 {0x01, AC_VERB_SET_GPIO_MASK, 0x0f},
3298
3299 /* Enable retasking pins as output, initially without power amp */
3300 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3301 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3302 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3303 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3304 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3305 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3306
3307 /* Disable digital (SPDIF) pins initially, but users can enable
3308 * them via a mixer switch. In the case of SPDIF-out, this initverb
3309 * payload also sets the generation to 0, output to be in "consumer"
3310 * PCM format, copyright asserted, no pre-emphasis and no validity
3311 * control.
3312 */
3313 {0x03, AC_VERB_SET_DIGI_CONVERT_1, 0},
3314 {0x06, AC_VERB_SET_DIGI_CONVERT_1, 0},
3315
3316 /* Ensure mic1, mic2, line1 and line2 pin widgets take input from the
3317 * OUT1 sum bus when acting as an output.
3318 */
3319 {0x0b, AC_VERB_SET_CONNECT_SEL, 0},
3320 {0x0c, AC_VERB_SET_CONNECT_SEL, 0},
3321 {0x0d, AC_VERB_SET_CONNECT_SEL, 0},
3322 {0x0e, AC_VERB_SET_CONNECT_SEL, 0},
3323
3324 /* Start with output sum widgets muted and their output gains at min */
3325 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3326 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3327 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3328 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3329 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3330 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3331 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3332 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3333 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3334
3335 /* Unmute retasking pin widget output buffers since the default
3336 * state appears to be output. As the pin mode is changed by the
3337 * user the pin mode control will take care of enabling the pin's
3338 * input/output buffers as needed.
3339 */
3340 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3341 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3342 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3343 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3344 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3345 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3346 /* Also unmute the mono-out pin widget */
3347 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3348
3349 /* Mute capture amp left and right */
3350 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3351 /* Set ADC connection select to match default mixer setting (mic1
3352 * pin)
3353 */
3354 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
3355
3356 /* Do the same for the second ADC: mute capture input amp and
3357 * set ADC connection to mic1 pin
3358 */
3359 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3360 {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
3361
3362 /* Mute all inputs to mixer widget (even unconnected ones) */
3363 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
3364 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
3365 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
3366 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
3367 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
3368 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
3369 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
3370 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
3371
3372 { }
3373 };
3374 #endif
3375
3376 static struct hda_pcm_stream alc260_pcm_analog_playback = {
3377 .substreams = 1,
3378 .channels_min = 2,
3379 .channels_max = 2,
3380 };
3381
3382 static struct hda_pcm_stream alc260_pcm_analog_capture = {
3383 .substreams = 1,
3384 .channels_min = 2,
3385 .channels_max = 2,
3386 };
3387
3388 #define alc260_pcm_digital_playback alc880_pcm_digital_playback
3389 #define alc260_pcm_digital_capture alc880_pcm_digital_capture
3390
3391 /*
3392 * for BIOS auto-configuration
3393 */
3394
3395 static int alc260_add_playback_controls(struct alc_spec *spec, hda_nid_t nid,
3396 const char *pfx)
3397 {
3398 hda_nid_t nid_vol;
3399 unsigned long vol_val, sw_val;
3400 char name[32];
3401 int err;
3402
3403 if (nid >= 0x0f && nid < 0x11) {
3404 nid_vol = nid - 0x7;
3405 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, HDA_OUTPUT);
3406 sw_val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
3407 } else if (nid == 0x11) {
3408 nid_vol = nid - 0x7;
3409 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 2, 0, HDA_OUTPUT);
3410 sw_val = HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_OUTPUT);
3411 } else if (nid >= 0x12 && nid <= 0x15) {
3412 nid_vol = 0x08;
3413 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, HDA_OUTPUT);
3414 sw_val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
3415 } else
3416 return 0; /* N/A */
3417
3418 snprintf(name, sizeof(name), "%s Playback Volume", pfx);
3419 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL, name, vol_val)) < 0)
3420 return err;
3421 snprintf(name, sizeof(name), "%s Playback Switch", pfx);
3422 if ((err = add_control(spec, ALC_CTL_WIDGET_MUTE, name, sw_val)) < 0)
3423 return err;
3424 return 1;
3425 }
3426
3427 /* add playback controls from the parsed DAC table */
3428 static int alc260_auto_create_multi_out_ctls(struct alc_spec *spec,
3429 const struct auto_pin_cfg *cfg)
3430 {
3431 hda_nid_t nid;
3432 int err;
3433
3434 spec->multiout.num_dacs = 1;
3435 spec->multiout.dac_nids = spec->private_dac_nids;
3436 spec->multiout.dac_nids[0] = 0x02;
3437
3438 nid = cfg->line_out_pins[0];
3439 if (nid) {
3440 err = alc260_add_playback_controls(spec, nid, "Front");
3441 if (err < 0)
3442 return err;
3443 }
3444
3445 nid = cfg->speaker_pin;
3446 if (nid) {
3447 err = alc260_add_playback_controls(spec, nid, "Speaker");
3448 if (err < 0)
3449 return err;
3450 }
3451
3452 nid = cfg->hp_pin;
3453 if (nid) {
3454 err = alc260_add_playback_controls(spec, nid, "Headphone");
3455 if (err < 0)
3456 return err;
3457 }
3458 return 0;
3459 }
3460
3461 /* create playback/capture controls for input pins */
3462 static int alc260_auto_create_analog_input_ctls(struct alc_spec *spec,
3463 const struct auto_pin_cfg *cfg)
3464 {
3465 struct hda_input_mux *imux = &spec->private_imux;
3466 int i, err, idx;
3467
3468 for (i = 0; i < AUTO_PIN_LAST; i++) {
3469 if (cfg->input_pins[i] >= 0x12) {
3470 idx = cfg->input_pins[i] - 0x12;
3471 err = new_analog_input(spec, cfg->input_pins[i],
3472 auto_pin_cfg_labels[i], idx, 0x07);
3473 if (err < 0)
3474 return err;
3475 imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
3476 imux->items[imux->num_items].index = idx;
3477 imux->num_items++;
3478 }
3479 if ((cfg->input_pins[i] >= 0x0f) && (cfg->input_pins[i] <= 0x10)){
3480 idx = cfg->input_pins[i] - 0x09;
3481 err = new_analog_input(spec, cfg->input_pins[i],
3482 auto_pin_cfg_labels[i], idx, 0x07);
3483 if (err < 0)
3484 return err;
3485 imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
3486 imux->items[imux->num_items].index = idx;
3487 imux->num_items++;
3488 }
3489 }
3490 return 0;
3491 }
3492
3493 static void alc260_auto_set_output_and_unmute(struct hda_codec *codec,
3494 hda_nid_t nid, int pin_type,
3495 int sel_idx)
3496 {
3497 /* set as output */
3498 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
3499 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
3500 /* need the manual connection? */
3501 if (nid >= 0x12) {
3502 int idx = nid - 0x12;
3503 snd_hda_codec_write(codec, idx + 0x0b, 0,
3504 AC_VERB_SET_CONNECT_SEL, sel_idx);
3505
3506 }
3507 }
3508
3509 static void alc260_auto_init_multi_out(struct hda_codec *codec)
3510 {
3511 struct alc_spec *spec = codec->spec;
3512 hda_nid_t nid;
3513
3514 nid = spec->autocfg.line_out_pins[0];
3515 if (nid)
3516 alc260_auto_set_output_and_unmute(codec, nid, PIN_OUT, 0);
3517
3518 nid = spec->autocfg.speaker_pin;
3519 if (nid)
3520 alc260_auto_set_output_and_unmute(codec, nid, PIN_OUT, 0);
3521
3522 nid = spec->autocfg.hp_pin;
3523 if (nid)
3524 alc260_auto_set_output_and_unmute(codec, nid, PIN_OUT, 0);
3525 }
3526
3527 #define ALC260_PIN_CD_NID 0x16
3528 static void alc260_auto_init_analog_input(struct hda_codec *codec)
3529 {
3530 struct alc_spec *spec = codec->spec;
3531 int i;
3532
3533 for (i = 0; i < AUTO_PIN_LAST; i++) {
3534 hda_nid_t nid = spec->autocfg.input_pins[i];
3535 if (nid >= 0x12) {
3536 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
3537 i <= AUTO_PIN_FRONT_MIC ? PIN_VREF80 : PIN_IN);
3538 if (nid != ALC260_PIN_CD_NID)
3539 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
3540 AMP_OUT_MUTE);
3541 }
3542 }
3543 }
3544
3545 /*
3546 * generic initialization of ADC, input mixers and output mixers
3547 */
3548 static struct hda_verb alc260_volume_init_verbs[] = {
3549 /*
3550 * Unmute ADC0-1 and set the default input to mic-in
3551 */
3552 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
3553 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3554 {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
3555 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3556
3557 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
3558 * mixer widget
3559 * Note: PASD motherboards uses the Line In 2 as the input for front panel
3560 * mic (mic 2)
3561 */
3562 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
3563 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3564 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
3565 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
3566 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
3567 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
3568
3569 /*
3570 * Set up output mixers (0x08 - 0x0a)
3571 */
3572 /* set vol=0 to output mixers */
3573 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3574 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3575 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3576 /* set up input amps for analog loopback */
3577 /* Amp Indices: DAC = 0, mixer = 1 */
3578 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3579 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
3580 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3581 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
3582 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3583 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
3584
3585 { }
3586 };
3587
3588 static int alc260_parse_auto_config(struct hda_codec *codec)
3589 {
3590 struct alc_spec *spec = codec->spec;
3591 unsigned int wcap;
3592 int err;
3593 static hda_nid_t alc260_ignore[] = { 0x17, 0 };
3594
3595 if ((err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
3596 alc260_ignore)) < 0)
3597 return err;
3598 if ((err = alc260_auto_create_multi_out_ctls(spec, &spec->autocfg)) < 0)
3599 return err;
3600 if (! spec->kctl_alloc)
3601 return 0; /* can't find valid BIOS pin config */
3602 if ((err = alc260_auto_create_analog_input_ctls(spec, &spec->autocfg)) < 0)
3603 return err;
3604
3605 spec->multiout.max_channels = 2;
3606
3607 if (spec->autocfg.dig_out_pin)
3608 spec->multiout.dig_out_nid = ALC260_DIGOUT_NID;
3609 if (spec->kctl_alloc)
3610 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
3611
3612 spec->init_verbs[spec->num_init_verbs++] = alc260_volume_init_verbs;
3613
3614 spec->input_mux = &spec->private_imux;
3615
3616 /* check whether NID 0x04 is valid */
3617 wcap = get_wcaps(codec, 0x04);
3618 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT; /* get type */
3619 if (wcap != AC_WID_AUD_IN) {
3620 spec->adc_nids = alc260_adc_nids_alt;
3621 spec->num_adc_nids = ARRAY_SIZE(alc260_adc_nids_alt);
3622 spec->mixers[spec->num_mixers] = alc260_capture_alt_mixer;
3623 } else {
3624 spec->adc_nids = alc260_adc_nids;
3625 spec->num_adc_nids = ARRAY_SIZE(alc260_adc_nids);
3626 spec->mixers[spec->num_mixers] = alc260_capture_mixer;
3627 }
3628 spec->num_mixers++;
3629
3630 return 1;
3631 }
3632
3633 /* additional initialization for auto-configuration model */
3634 static void alc260_auto_init(struct hda_codec *codec)
3635 {
3636 alc260_auto_init_multi_out(codec);
3637 alc260_auto_init_analog_input(codec);
3638 }
3639
3640 /*
3641 * ALC260 configurations
3642 */
3643 static struct hda_board_config alc260_cfg_tbl[] = {
3644 { .modelname = "basic", .config = ALC260_BASIC },
3645 { .pci_subvendor = 0x104d, .pci_subdevice = 0x81bb,
3646 .config = ALC260_BASIC }, /* Sony VAIO */
3647 { .modelname = "hp", .config = ALC260_HP },
3648 { .pci_subvendor = 0x103c, .pci_subdevice = 0x3010, .config = ALC260_HP },
3649 { .pci_subvendor = 0x103c, .pci_subdevice = 0x3011, .config = ALC260_HP },
3650 { .pci_subvendor = 0x103c, .pci_subdevice = 0x3012, .config = ALC260_HP },
3651 { .pci_subvendor = 0x103c, .pci_subdevice = 0x3013, .config = ALC260_HP_3013 },
3652 { .pci_subvendor = 0x103c, .pci_subdevice = 0x3014, .config = ALC260_HP },
3653 { .pci_subvendor = 0x103c, .pci_subdevice = 0x3015, .config = ALC260_HP },
3654 { .pci_subvendor = 0x103c, .pci_subdevice = 0x3016, .config = ALC260_HP },
3655 { .modelname = "fujitsu", .config = ALC260_FUJITSU_S702X },
3656 { .pci_subvendor = 0x10cf, .pci_subdevice = 0x1326, .config = ALC260_FUJITSU_S702X },
3657 { .modelname = "acer", .config = ALC260_ACER },
3658 { .pci_subvendor = 0x1025, .pci_subdevice = 0x008f, .config = ALC260_ACER },
3659 #ifdef CONFIG_SND_DEBUG
3660 { .modelname = "test", .config = ALC260_TEST },
3661 #endif
3662 { .modelname = "auto", .config = ALC260_AUTO },
3663 {}
3664 };
3665
3666 static struct alc_config_preset alc260_presets[] = {
3667 [ALC260_BASIC] = {
3668 .mixers = { alc260_base_output_mixer,
3669 alc260_input_mixer,
3670 alc260_pc_beep_mixer,
3671 alc260_capture_mixer },
3672 .init_verbs = { alc260_init_verbs },
3673 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
3674 .dac_nids = alc260_dac_nids,
3675 .num_adc_nids = ARRAY_SIZE(alc260_adc_nids),
3676 .adc_nids = alc260_adc_nids,
3677 .num_channel_mode = ARRAY_SIZE(alc260_modes),
3678 .channel_mode = alc260_modes,
3679 .input_mux = &alc260_capture_source,
3680 },
3681 [ALC260_HP] = {
3682 .mixers = { alc260_base_output_mixer,
3683 alc260_input_mixer,
3684 alc260_capture_alt_mixer },
3685 .init_verbs = { alc260_hp_init_verbs },
3686 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
3687 .dac_nids = alc260_dac_nids,
3688 .num_adc_nids = ARRAY_SIZE(alc260_hp_adc_nids),
3689 .adc_nids = alc260_hp_adc_nids,
3690 .num_channel_mode = ARRAY_SIZE(alc260_modes),
3691 .channel_mode = alc260_modes,
3692 .input_mux = &alc260_capture_source,
3693 },
3694 [ALC260_HP_3013] = {
3695 .mixers = { alc260_hp_3013_mixer,
3696 alc260_input_mixer,
3697 alc260_capture_alt_mixer },
3698 .init_verbs = { alc260_hp_3013_init_verbs },
3699 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
3700 .dac_nids = alc260_dac_nids,
3701 .num_adc_nids = ARRAY_SIZE(alc260_hp_adc_nids),
3702 .adc_nids = alc260_hp_adc_nids,
3703 .num_channel_mode = ARRAY_SIZE(alc260_modes),
3704 .channel_mode = alc260_modes,
3705 .input_mux = &alc260_capture_source,
3706 },
3707 [ALC260_FUJITSU_S702X] = {
3708 .mixers = { alc260_fujitsu_mixer,
3709 alc260_capture_mixer },
3710 .init_verbs = { alc260_fujitsu_init_verbs },
3711 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
3712 .dac_nids = alc260_dac_nids,
3713 .num_adc_nids = ARRAY_SIZE(alc260_dual_adc_nids),
3714 .adc_nids = alc260_dual_adc_nids,
3715 .num_channel_mode = ARRAY_SIZE(alc260_modes),
3716 .channel_mode = alc260_modes,
3717 .input_mux = &alc260_fujitsu_capture_source,
3718 },
3719 [ALC260_ACER] = {
3720 .mixers = { alc260_acer_mixer,
3721 alc260_capture_mixer },
3722 .init_verbs = { alc260_acer_init_verbs },
3723 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
3724 .dac_nids = alc260_dac_nids,
3725 .num_adc_nids = ARRAY_SIZE(alc260_dual_adc_nids),
3726 .adc_nids = alc260_dual_adc_nids,
3727 .num_channel_mode = ARRAY_SIZE(alc260_modes),
3728 .channel_mode = alc260_modes,
3729 .input_mux = &alc260_acer_capture_source,
3730 },
3731 #ifdef CONFIG_SND_DEBUG
3732 [ALC260_TEST] = {
3733 .mixers = { alc260_test_mixer,
3734 alc260_capture_mixer },
3735 .init_verbs = { alc260_test_init_verbs },
3736 .num_dacs = ARRAY_SIZE(alc260_test_dac_nids),
3737 .dac_nids = alc260_test_dac_nids,
3738 .num_adc_nids = ARRAY_SIZE(alc260_test_adc_nids),
3739 .adc_nids = alc260_test_adc_nids,
3740 .num_channel_mode = ARRAY_SIZE(alc260_modes),
3741 .channel_mode = alc260_modes,
3742 .input_mux = &alc260_test_capture_source,
3743 },
3744 #endif
3745 };
3746
3747 static int patch_alc260(struct hda_codec *codec)
3748 {
3749 struct alc_spec *spec;
3750 int err, board_config;
3751
3752 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
3753 if (spec == NULL)
3754 return -ENOMEM;
3755
3756 codec->spec = spec;
3757
3758 board_config = snd_hda_check_board_config(codec, alc260_cfg_tbl);
3759 if (board_config < 0 || board_config >= ALC260_MODEL_LAST) {
3760 snd_printd(KERN_INFO "hda_codec: Unknown model for ALC260\n");
3761 board_config = ALC260_AUTO;
3762 }
3763
3764 if (board_config == ALC260_AUTO) {
3765 /* automatic parse from the BIOS config */
3766 err = alc260_parse_auto_config(codec);
3767 if (err < 0) {
3768 alc_free(codec);
3769 return err;
3770 } else if (! err) {
3771 printk(KERN_INFO "hda_codec: Cannot set up configuration from BIOS. Using base mode...\n");
3772 board_config = ALC260_BASIC;
3773 }
3774 }
3775
3776 if (board_config != ALC260_AUTO)
3777 setup_preset(spec, &alc260_presets[board_config]);
3778
3779 spec->stream_name_analog = "ALC260 Analog";
3780 spec->stream_analog_playback = &alc260_pcm_analog_playback;
3781 spec->stream_analog_capture = &alc260_pcm_analog_capture;
3782
3783 spec->stream_name_digital = "ALC260 Digital";
3784 spec->stream_digital_playback = &alc260_pcm_digital_playback;
3785 spec->stream_digital_capture = &alc260_pcm_digital_capture;
3786
3787 codec->patch_ops = alc_patch_ops;
3788 if (board_config == ALC260_AUTO)
3789 spec->init_hook = alc260_auto_init;
3790
3791 return 0;
3792 }
3793
3794
3795 /*
3796 * ALC882 support
3797 *
3798 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
3799 * configuration. Each pin widget can choose any input DACs and a mixer.
3800 * Each ADC is connected from a mixer of all inputs. This makes possible
3801 * 6-channel independent captures.
3802 *
3803 * In addition, an independent DAC for the multi-playback (not used in this
3804 * driver yet).
3805 */
3806 #define ALC882_DIGOUT_NID 0x06
3807 #define ALC882_DIGIN_NID 0x0a
3808
3809 static struct hda_channel_mode alc882_ch_modes[1] = {
3810 { 8, NULL }
3811 };
3812
3813 static hda_nid_t alc882_dac_nids[4] = {
3814 /* front, rear, clfe, rear_surr */
3815 0x02, 0x03, 0x04, 0x05
3816 };
3817
3818 /* identical with ALC880 */
3819 #define alc882_adc_nids alc880_adc_nids
3820 #define alc882_adc_nids_alt alc880_adc_nids_alt
3821
3822 /* input MUX */
3823 /* FIXME: should be a matrix-type input source selection */
3824
3825 static struct hda_input_mux alc882_capture_source = {
3826 .num_items = 4,
3827 .items = {
3828 { "Mic", 0x0 },
3829 { "Front Mic", 0x1 },
3830 { "Line", 0x2 },
3831 { "CD", 0x4 },
3832 },
3833 };
3834
3835 #define alc882_mux_enum_info alc_mux_enum_info
3836 #define alc882_mux_enum_get alc_mux_enum_get
3837
3838 static int alc882_mux_enum_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
3839 {
3840 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3841 struct alc_spec *spec = codec->spec;
3842 const struct hda_input_mux *imux = spec->input_mux;
3843 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
3844 static hda_nid_t capture_mixers[3] = { 0x24, 0x23, 0x22 };
3845 hda_nid_t nid = capture_mixers[adc_idx];
3846 unsigned int *cur_val = &spec->cur_mux[adc_idx];
3847 unsigned int i, idx;
3848
3849 idx = ucontrol->value.enumerated.item[0];
3850 if (idx >= imux->num_items)
3851 idx = imux->num_items - 1;
3852 if (*cur_val == idx && ! codec->in_resume)
3853 return 0;
3854 for (i = 0; i < imux->num_items; i++) {
3855 unsigned int v = (i == idx) ? 0x7000 : 0x7080;
3856 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
3857 v | (imux->items[i].index << 8));
3858 }
3859 *cur_val = idx;
3860 return 1;
3861 }
3862
3863 /*
3864 * 6ch mode
3865 */
3866 static struct hda_verb alc882_sixstack_ch6_init[] = {
3867 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
3868 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
3869 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
3870 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
3871 { } /* end */
3872 };
3873
3874 /*
3875 * 8ch mode
3876 */
3877 static struct hda_verb alc882_sixstack_ch8_init[] = {
3878 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
3879 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
3880 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
3881 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
3882 { } /* end */
3883 };
3884
3885 static struct hda_channel_mode alc882_sixstack_modes[2] = {
3886 { 6, alc882_sixstack_ch6_init },
3887 { 8, alc882_sixstack_ch8_init },
3888 };
3889
3890 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
3891 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
3892 */
3893 static struct snd_kcontrol_new alc882_base_mixer[] = {
3894 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
3895 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
3896 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
3897 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
3898 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
3899 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
3900 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
3901 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
3902 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
3903 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
3904 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
3905 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
3906 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
3907 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
3908 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
3909 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
3910 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
3911 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
3912 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
3913 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
3914 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
3915 HDA_CODEC_VOLUME("Capture Volume", 0x07, 0x0, HDA_INPUT),
3916 HDA_CODEC_MUTE("Capture Switch", 0x07, 0x0, HDA_INPUT),
3917 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x08, 0x0, HDA_INPUT),
3918 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x08, 0x0, HDA_INPUT),
3919 HDA_CODEC_VOLUME_IDX("Capture Volume", 2, 0x09, 0x0, HDA_INPUT),
3920 HDA_CODEC_MUTE_IDX("Capture Switch", 2, 0x09, 0x0, HDA_INPUT),
3921 {
3922 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3923 /* .name = "Capture Source", */
3924 .name = "Input Source",
3925 .count = 3,
3926 .info = alc882_mux_enum_info,
3927 .get = alc882_mux_enum_get,
3928 .put = alc882_mux_enum_put,
3929 },
3930 { } /* end */
3931 };
3932
3933 static struct snd_kcontrol_new alc882_chmode_mixer[] = {
3934 {
3935 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3936 .name = "Channel Mode",
3937 .info = alc_ch_mode_info,
3938 .get = alc_ch_mode_get,
3939 .put = alc_ch_mode_put,
3940 },
3941 { } /* end */
3942 };
3943
3944 static struct hda_verb alc882_init_verbs[] = {
3945 /* Front mixer: unmute input/output amp left and right (volume = 0) */
3946 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3947 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3948 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3949 /* Rear mixer */
3950 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3951 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3952 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3953 /* CLFE mixer */
3954 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3955 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3956 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3957 /* Side mixer */
3958 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3959 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3960 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3961
3962 /* Front Pin: output 0 (0x0c) */
3963 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3964 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3965 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
3966 /* Rear Pin: output 1 (0x0d) */
3967 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3968 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3969 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
3970 /* CLFE Pin: output 2 (0x0e) */
3971 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3972 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3973 {0x16, AC_VERB_SET_CONNECT_SEL, 0x02},
3974 /* Side Pin: output 3 (0x0f) */
3975 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3976 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3977 {0x17, AC_VERB_SET_CONNECT_SEL, 0x03},
3978 /* Mic (rear) pin: input vref at 80% */
3979 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
3980 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
3981 /* Front Mic pin: input vref at 80% */
3982 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
3983 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
3984 /* Line In pin: input */
3985 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3986 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
3987 /* Line-2 In: Headphone output (output 0 - 0x0c) */
3988 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
3989 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3990 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
3991 /* CD pin widget for input */
3992 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3993
3994 /* FIXME: use matrix-type input source selection */
3995 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
3996 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
3997 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3998 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
3999 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4000 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
4001 /* Input mixer2 */
4002 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4003 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4004 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4005 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
4006 /* Input mixer3 */
4007 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4008 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4009 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4010 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
4011 /* ADC1: mute amp left and right */
4012 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4013 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
4014 /* ADC2: mute amp left and right */
4015 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4016 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
4017 /* ADC3: mute amp left and right */
4018 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4019 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
4020
4021 { }
4022 };
4023
4024 /*
4025 * generic initialization of ADC, input mixers and output mixers
4026 */
4027 static struct hda_verb alc882_auto_init_verbs[] = {
4028 /*
4029 * Unmute ADC0-2 and set the default input to mic-in
4030 */
4031 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
4032 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4033 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
4034 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4035 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
4036 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4037
4038 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
4039 * mixer widget
4040 * Note: PASD motherboards uses the Line In 2 as the input for front panel
4041 * mic (mic 2)
4042 */
4043 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
4044 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4045 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4046 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
4047 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
4048 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
4049
4050 /*
4051 * Set up output mixers (0x0c - 0x0f)
4052 */
4053 /* set vol=0 to output mixers */
4054 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4055 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4056 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4057 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4058 /* set up input amps for analog loopback */
4059 /* Amp Indices: DAC = 0, mixer = 1 */
4060 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4061 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4062 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4063 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4064 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4065 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4066 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4067 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4068 {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4069 {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4070
4071 /* FIXME: use matrix-type input source selection */
4072 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
4073 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
4074 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4075 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
4076 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
4077 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
4078 /* Input mixer2 */
4079 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4080 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
4081 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
4082 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
4083 /* Input mixer3 */
4084 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4085 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
4086 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
4087 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
4088
4089 { }
4090 };
4091
4092 /* capture mixer elements */
4093 static struct snd_kcontrol_new alc882_capture_alt_mixer[] = {
4094 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
4095 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
4096 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
4097 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
4098 {
4099 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4100 /* The multiple "Capture Source" controls confuse alsamixer
4101 * So call somewhat different..
4102 * FIXME: the controls appear in the "playback" view!
4103 */
4104 /* .name = "Capture Source", */
4105 .name = "Input Source",
4106 .count = 2,
4107 .info = alc882_mux_enum_info,
4108 .get = alc882_mux_enum_get,
4109 .put = alc882_mux_enum_put,
4110 },
4111 { } /* end */
4112 };
4113
4114 static struct snd_kcontrol_new alc882_capture_mixer[] = {
4115 HDA_CODEC_VOLUME("Capture Volume", 0x07, 0x0, HDA_INPUT),
4116 HDA_CODEC_MUTE("Capture Switch", 0x07, 0x0, HDA_INPUT),
4117 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x08, 0x0, HDA_INPUT),
4118 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x08, 0x0, HDA_INPUT),
4119 HDA_CODEC_VOLUME_IDX("Capture Volume", 2, 0x09, 0x0, HDA_INPUT),
4120 HDA_CODEC_MUTE_IDX("Capture Switch", 2, 0x09, 0x0, HDA_INPUT),
4121 {
4122 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4123 /* The multiple "Capture Source" controls confuse alsamixer
4124 * So call somewhat different..
4125 * FIXME: the controls appear in the "playback" view!
4126 */
4127 /* .name = "Capture Source", */
4128 .name = "Input Source",
4129 .count = 3,
4130 .info = alc882_mux_enum_info,
4131 .get = alc882_mux_enum_get,
4132 .put = alc882_mux_enum_put,
4133 },
4134 { } /* end */
4135 };
4136
4137 /* pcm configuration: identiacal with ALC880 */
4138 #define alc882_pcm_analog_playback alc880_pcm_analog_playback
4139 #define alc882_pcm_analog_capture alc880_pcm_analog_capture
4140 #define alc882_pcm_digital_playback alc880_pcm_digital_playback
4141 #define alc882_pcm_digital_capture alc880_pcm_digital_capture
4142
4143 /*
4144 * configuration and preset
4145 */
4146 static struct hda_board_config alc882_cfg_tbl[] = {
4147 { .modelname = "3stack-dig", .config = ALC882_3ST_DIG },
4148 { .modelname = "6stack-dig", .config = ALC882_6ST_DIG },
4149 { .pci_subvendor = 0x1462, .pci_subdevice = 0x6668, .config = ALC882_6ST_DIG }, /* MSI */
4150 { .pci_subvendor = 0x105b, .pci_subdevice = 0x6668, .config = ALC882_6ST_DIG }, /* Foxconn */
4151 { .pci_subvendor = 0x1019, .pci_subdevice = 0x6668, .config = ALC882_6ST_DIG }, /* ECS */
4152 { .modelname = "auto", .config = ALC882_AUTO },
4153 {}
4154 };
4155
4156 static struct alc_config_preset alc882_presets[] = {
4157 [ALC882_3ST_DIG] = {
4158 .mixers = { alc882_base_mixer },
4159 .init_verbs = { alc882_init_verbs },
4160 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
4161 .dac_nids = alc882_dac_nids,
4162 .dig_out_nid = ALC882_DIGOUT_NID,
4163 .num_adc_nids = ARRAY_SIZE(alc882_adc_nids),
4164 .adc_nids = alc882_adc_nids,
4165 .dig_in_nid = ALC882_DIGIN_NID,
4166 .num_channel_mode = ARRAY_SIZE(alc882_ch_modes),
4167 .channel_mode = alc882_ch_modes,
4168 .input_mux = &alc882_capture_source,
4169 },
4170 [ALC882_6ST_DIG] = {
4171 .mixers = { alc882_base_mixer, alc882_chmode_mixer },
4172 .init_verbs = { alc882_init_verbs },
4173 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
4174 .dac_nids = alc882_dac_nids,
4175 .dig_out_nid = ALC882_DIGOUT_NID,
4176 .num_adc_nids = ARRAY_SIZE(alc882_adc_nids),
4177 .adc_nids = alc882_adc_nids,
4178 .dig_in_nid = ALC882_DIGIN_NID,
4179 .num_channel_mode = ARRAY_SIZE(alc882_sixstack_modes),
4180 .channel_mode = alc882_sixstack_modes,
4181 .input_mux = &alc882_capture_source,
4182 },
4183 };
4184
4185
4186 /*
4187 * BIOS auto configuration
4188 */
4189 static void alc882_auto_set_output_and_unmute(struct hda_codec *codec,
4190 hda_nid_t nid, int pin_type,
4191 int dac_idx)
4192 {
4193 /* set as output */
4194 struct alc_spec *spec = codec->spec;
4195 int idx;
4196
4197 if (spec->multiout.dac_nids[dac_idx] == 0x25)
4198 idx = 4;
4199 else
4200 idx = spec->multiout.dac_nids[dac_idx] - 2;
4201
4202 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
4203 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
4204 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, idx);
4205
4206 }
4207
4208 static void alc882_auto_init_multi_out(struct hda_codec *codec)
4209 {
4210 struct alc_spec *spec = codec->spec;
4211 int i;
4212
4213 for (i = 0; i <= HDA_SIDE; i++) {
4214 hda_nid_t nid = spec->autocfg.line_out_pins[i];
4215 if (nid)
4216 alc882_auto_set_output_and_unmute(codec, nid, PIN_OUT, i);
4217 }
4218 }
4219
4220 static void alc882_auto_init_hp_out(struct hda_codec *codec)
4221 {
4222 struct alc_spec *spec = codec->spec;
4223 hda_nid_t pin;
4224
4225 pin = spec->autocfg.hp_pin;
4226 if (pin) /* connect to front */
4227 alc882_auto_set_output_and_unmute(codec, pin, PIN_HP, 0); /* use dac 0 */
4228 }
4229
4230 #define alc882_is_input_pin(nid) alc880_is_input_pin(nid)
4231 #define ALC882_PIN_CD_NID ALC880_PIN_CD_NID
4232
4233 static void alc882_auto_init_analog_input(struct hda_codec *codec)
4234 {
4235 struct alc_spec *spec = codec->spec;
4236 int i;
4237
4238 for (i = 0; i < AUTO_PIN_LAST; i++) {
4239 hda_nid_t nid = spec->autocfg.input_pins[i];
4240 if (alc882_is_input_pin(nid)) {
4241 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
4242 i <= AUTO_PIN_FRONT_MIC ? PIN_VREF80 : PIN_IN);
4243 if (nid != ALC882_PIN_CD_NID)
4244 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
4245 AMP_OUT_MUTE);
4246 }
4247 }
4248 }
4249
4250 /* almost identical with ALC880 parser... */
4251 static int alc882_parse_auto_config(struct hda_codec *codec)
4252 {
4253 struct alc_spec *spec = codec->spec;
4254 int err = alc880_parse_auto_config(codec);
4255
4256 if (err < 0)
4257 return err;
4258 else if (err > 0)
4259 /* hack - override the init verbs */
4260 spec->init_verbs[0] = alc882_auto_init_verbs;
4261 return err;
4262 }
4263
4264 /* additional initialization for auto-configuration model */
4265 static void alc882_auto_init(struct hda_codec *codec)
4266 {
4267 alc882_auto_init_multi_out(codec);
4268 alc882_auto_init_hp_out(codec);
4269 alc882_auto_init_analog_input(codec);
4270 }
4271
4272 /*
4273 * ALC882 Headphone poll in 3.5.1a or 3.5.2
4274 */
4275
4276 static int patch_alc882(struct hda_codec *codec)
4277 {
4278 struct alc_spec *spec;
4279 int err, board_config;
4280
4281 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4282 if (spec == NULL)
4283 return -ENOMEM;
4284
4285 codec->spec = spec;
4286
4287 board_config = snd_hda_check_board_config(codec, alc882_cfg_tbl);
4288
4289 if (board_config < 0 || board_config >= ALC882_MODEL_LAST) {
4290 printk(KERN_INFO "hda_codec: Unknown model for ALC882, trying auto-probe from BIOS...\n");
4291 board_config = ALC882_AUTO;
4292 }
4293
4294 if (board_config == ALC882_AUTO) {
4295 /* automatic parse from the BIOS config */
4296 err = alc882_parse_auto_config(codec);
4297 if (err < 0) {
4298 alc_free(codec);
4299 return err;
4300 } else if (! err) {
4301 printk(KERN_INFO "hda_codec: Cannot set up configuration from BIOS. Using base mode...\n");
4302 board_config = ALC882_3ST_DIG;
4303 }
4304 }
4305
4306 if (board_config != ALC882_AUTO)
4307 setup_preset(spec, &alc882_presets[board_config]);
4308
4309 spec->stream_name_analog = "ALC882 Analog";
4310 spec->stream_analog_playback = &alc882_pcm_analog_playback;
4311 spec->stream_analog_capture = &alc882_pcm_analog_capture;
4312
4313 spec->stream_name_digital = "ALC882 Digital";
4314 spec->stream_digital_playback = &alc882_pcm_digital_playback;
4315 spec->stream_digital_capture = &alc882_pcm_digital_capture;
4316
4317 if (! spec->adc_nids && spec->input_mux) {
4318 /* check whether NID 0x07 is valid */
4319 unsigned int wcap = get_wcaps(codec, 0x07);
4320 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT; /* get type */
4321 if (wcap != AC_WID_AUD_IN) {
4322 spec->adc_nids = alc882_adc_nids_alt;
4323 spec->num_adc_nids = ARRAY_SIZE(alc882_adc_nids_alt);
4324 spec->mixers[spec->num_mixers] = alc882_capture_alt_mixer;
4325 spec->num_mixers++;
4326 } else {
4327 spec->adc_nids = alc882_adc_nids;
4328 spec->num_adc_nids = ARRAY_SIZE(alc882_adc_nids);
4329 spec->mixers[spec->num_mixers] = alc882_capture_mixer;
4330 spec->num_mixers++;
4331 }
4332 }
4333
4334 codec->patch_ops = alc_patch_ops;
4335 if (board_config == ALC882_AUTO)
4336 spec->init_hook = alc882_auto_init;
4337
4338 return 0;
4339 }
4340
4341 /*
4342 * ALC262 support
4343 */
4344
4345 #define ALC262_DIGOUT_NID ALC880_DIGOUT_NID
4346 #define ALC262_DIGIN_NID ALC880_DIGIN_NID
4347
4348 #define alc262_dac_nids alc260_dac_nids
4349 #define alc262_adc_nids alc882_adc_nids
4350 #define alc262_adc_nids_alt alc882_adc_nids_alt
4351
4352 #define alc262_modes alc260_modes
4353 #define alc262_capture_source alc882_capture_source
4354
4355 static struct snd_kcontrol_new alc262_base_mixer[] = {
4356 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
4357 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
4358 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
4359 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
4360 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
4361 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
4362 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
4363 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
4364 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
4365 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
4366 /* HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x0b, 0x05, HDA_INPUT),
4367 HDA_CODEC_MUTE("PC Beelp Playback Switch", 0x0b, 0x05, HDA_INPUT), */
4368 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0D, 0x0, HDA_OUTPUT),
4369 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
4370 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
4371 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT),
4372 { } /* end */
4373 };
4374
4375 #define alc262_capture_mixer alc882_capture_mixer
4376 #define alc262_capture_alt_mixer alc882_capture_alt_mixer
4377
4378 /*
4379 * generic initialization of ADC, input mixers and output mixers
4380 */
4381 static struct hda_verb alc262_init_verbs[] = {
4382 /*
4383 * Unmute ADC0-2 and set the default input to mic-in
4384 */
4385 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
4386 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4387 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
4388 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4389 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
4390 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4391
4392 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
4393 * mixer widget
4394 * Note: PASD motherboards uses the Line In 2 as the input for front panel
4395 * mic (mic 2)
4396 */
4397 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
4398 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4399 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4400 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
4401 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
4402 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
4403
4404 /*
4405 * Set up output mixers (0x0c - 0x0e)
4406 */
4407 /* set vol=0 to output mixers */
4408 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4409 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4410 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4411 /* set up input amps for analog loopback */
4412 /* Amp Indices: DAC = 0, mixer = 1 */
4413 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4414 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4415 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4416 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4417 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4418 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4419
4420 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
4421 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
4422 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
4423 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
4424 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
4425 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
4426
4427 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
4428 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
4429 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
4430 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
4431 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
4432
4433 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
4434 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
4435
4436 /* FIXME: use matrix-type input source selection */
4437 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
4438 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
4439 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4440 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
4441 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
4442 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
4443 /* Input mixer2 */
4444 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4445 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
4446 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
4447 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
4448 /* Input mixer3 */
4449 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4450 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
4451 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
4452 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
4453
4454 { }
4455 };
4456
4457 /*
4458 * fujitsu model
4459 * 0x14 = headphone/spdif-out, 0x15 = internal speaker
4460 */
4461
4462 #define ALC_HP_EVENT 0x37
4463
4464 static struct hda_verb alc262_fujitsu_unsol_verbs[] = {
4465 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC_HP_EVENT},
4466 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
4467 {}
4468 };
4469
4470 static struct hda_input_mux alc262_fujitsu_capture_source = {
4471 .num_items = 2,
4472 .items = {
4473 { "Mic", 0x0 },
4474 { "CD", 0x4 },
4475 },
4476 };
4477
4478 /* mute/unmute internal speaker according to the hp jack and mute state */
4479 static void alc262_fujitsu_automute(struct hda_codec *codec, int force)
4480 {
4481 struct alc_spec *spec = codec->spec;
4482 unsigned int mute;
4483
4484 if (force || ! spec->sense_updated) {
4485 unsigned int present;
4486 /* need to execute and sync at first */
4487 snd_hda_codec_read(codec, 0x14, 0, AC_VERB_SET_PIN_SENSE, 0);
4488 present = snd_hda_codec_read(codec, 0x14, 0,
4489 AC_VERB_GET_PIN_SENSE, 0);
4490 spec->jack_present = (present & 0x80000000) != 0;
4491 spec->sense_updated = 1;
4492 }
4493 if (spec->jack_present) {
4494 /* mute internal speaker */
4495 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
4496 0x80, 0x80);
4497 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
4498 0x80, 0x80);
4499 } else {
4500 /* unmute internal speaker if necessary */
4501 mute = snd_hda_codec_amp_read(codec, 0x14, 0, HDA_OUTPUT, 0);
4502 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
4503 0x80, mute & 0x80);
4504 mute = snd_hda_codec_amp_read(codec, 0x14, 1, HDA_OUTPUT, 0);
4505 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
4506 0x80, mute & 0x80);
4507 }
4508 }
4509
4510 /* unsolicited event for HP jack sensing */
4511 static void alc262_fujitsu_unsol_event(struct hda_codec *codec,
4512 unsigned int res)
4513 {
4514 if ((res >> 26) != ALC_HP_EVENT)
4515 return;
4516 alc262_fujitsu_automute(codec, 1);
4517 }
4518
4519 /* bind volumes of both NID 0x0c and 0x0d */
4520 static int alc262_fujitsu_master_vol_put(struct snd_kcontrol *kcontrol,
4521 struct snd_ctl_elem_value *ucontrol)
4522 {
4523 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
4524 long *valp = ucontrol->value.integer.value;
4525 int change;
4526
4527 change = snd_hda_codec_amp_update(codec, 0x0c, 0, HDA_OUTPUT, 0,
4528 0x7f, valp[0] & 0x7f);
4529 change |= snd_hda_codec_amp_update(codec, 0x0c, 1, HDA_OUTPUT, 0,
4530 0x7f, valp[1] & 0x7f);
4531 snd_hda_codec_amp_update(codec, 0x0d, 0, HDA_OUTPUT, 0,
4532 0x7f, valp[0] & 0x7f);
4533 snd_hda_codec_amp_update(codec, 0x0d, 1, HDA_OUTPUT, 0,
4534 0x7f, valp[1] & 0x7f);
4535 return change;
4536 }
4537
4538 /* bind hp and internal speaker mute (with plug check) */
4539 static int alc262_fujitsu_master_sw_put(struct snd_kcontrol *kcontrol,
4540 struct snd_ctl_elem_value *ucontrol)
4541 {
4542 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
4543 long *valp = ucontrol->value.integer.value;
4544 int change;
4545
4546 change = snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
4547 0x80, valp[0] ? 0 : 0x80);
4548 change |= snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
4549 0x80, valp[1] ? 0 : 0x80);
4550 if (change || codec->in_resume)
4551 alc262_fujitsu_automute(codec, codec->in_resume);
4552 return change;
4553 }
4554
4555 static struct snd_kcontrol_new alc262_fujitsu_mixer[] = {
4556 {
4557 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4558 .name = "Master Playback Volume",
4559 .info = snd_hda_mixer_amp_volume_info,
4560 .get = snd_hda_mixer_amp_volume_get,
4561 .put = alc262_fujitsu_master_vol_put,
4562 .private_value = HDA_COMPOSE_AMP_VAL(0x0c, 3, 0, HDA_OUTPUT),
4563 },
4564 {
4565 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4566 .name = "Master Playback Switch",
4567 .info = snd_hda_mixer_amp_switch_info,
4568 .get = snd_hda_mixer_amp_switch_get,
4569 .put = alc262_fujitsu_master_sw_put,
4570 .private_value = HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT),
4571 },
4572 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
4573 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
4574 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
4575 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
4576 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
4577 { } /* end */
4578 };
4579
4580 /* add playback controls from the parsed DAC table */
4581 static int alc262_auto_create_multi_out_ctls(struct alc_spec *spec, const struct auto_pin_cfg *cfg)
4582 {
4583 hda_nid_t nid;
4584 int err;
4585
4586 spec->multiout.num_dacs = 1; /* only use one dac */
4587 spec->multiout.dac_nids = spec->private_dac_nids;
4588 spec->multiout.dac_nids[0] = 2;
4589
4590 nid = cfg->line_out_pins[0];
4591 if (nid) {
4592 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL, "Front Playback Volume",
4593 HDA_COMPOSE_AMP_VAL(0x0c, 3, 0, HDA_OUTPUT))) < 0)
4594 return err;
4595 if ((err = add_control(spec, ALC_CTL_WIDGET_MUTE, "Front Playback Switch",
4596 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT))) < 0)
4597 return err;
4598 }
4599
4600 nid = cfg->speaker_pin;
4601 if (nid) {
4602 if (nid == 0x16) {
4603 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL, "Speaker Playback Volume",
4604 HDA_COMPOSE_AMP_VAL(0x0e, 2, 0, HDA_OUTPUT))) < 0)
4605 return err;
4606 if ((err = add_control(spec, ALC_CTL_WIDGET_MUTE, "Speaker Playback Switch",
4607 HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_OUTPUT))) < 0)
4608 return err;
4609 } else {
4610 if (! cfg->line_out_pins[0])
4611 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL, "Speaker Playback Volume",
4612 HDA_COMPOSE_AMP_VAL(0x0c, 3, 0, HDA_OUTPUT))) < 0)
4613 return err;
4614 if ((err = add_control(spec, ALC_CTL_WIDGET_MUTE, "Speaker Playback Switch",
4615 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT))) < 0)
4616 return err;
4617 }
4618 }
4619 nid = cfg->hp_pin;
4620 if (nid) {
4621 /* spec->multiout.hp_nid = 2; */
4622 if (nid == 0x16) {
4623 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL, "Headphone Playback Volume",
4624 HDA_COMPOSE_AMP_VAL(0x0e, 2, 0, HDA_OUTPUT))) < 0)
4625 return err;
4626 if ((err = add_control(spec, ALC_CTL_WIDGET_MUTE, "Headphone Playback Switch",
4627 HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_OUTPUT))) < 0)
4628 return err;
4629 } else {
4630 if (! cfg->line_out_pins[0])
4631 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL, "Headphone Playback Volume",
4632 HDA_COMPOSE_AMP_VAL(0x0c, 3, 0, HDA_OUTPUT))) < 0)
4633 return err;
4634 if ((err = add_control(spec, ALC_CTL_WIDGET_MUTE, "Headphone Playback Switch",
4635 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT))) < 0)
4636 return err;
4637 }
4638 }
4639 return 0;
4640 }
4641
4642 /* identical with ALC880 */
4643 #define alc262_auto_create_analog_input_ctls alc880_auto_create_analog_input_ctls
4644
4645 /*
4646 * generic initialization of ADC, input mixers and output mixers
4647 */
4648 static struct hda_verb alc262_volume_init_verbs[] = {
4649 /*
4650 * Unmute ADC0-2 and set the default input to mic-in
4651 */
4652 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
4653 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4654 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
4655 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4656 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
4657 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4658
4659 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
4660 * mixer widget
4661 * Note: PASD motherboards uses the Line In 2 as the input for front panel
4662 * mic (mic 2)
4663 */
4664 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
4665 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4666 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4667 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
4668 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
4669 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
4670
4671 /*
4672 * Set up output mixers (0x0c - 0x0f)
4673 */
4674 /* set vol=0 to output mixers */
4675 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4676 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4677 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4678
4679 /* set up input amps for analog loopback */
4680 /* Amp Indices: DAC = 0, mixer = 1 */
4681 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4682 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4683 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4684 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4685 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4686 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4687
4688 /* FIXME: use matrix-type input source selection */
4689 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
4690 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
4691 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4692 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
4693 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
4694 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
4695 /* Input mixer2 */
4696 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4697 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
4698 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
4699 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
4700 /* Input mixer3 */
4701 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4702 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
4703 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
4704 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
4705
4706 { }
4707 };
4708
4709 /* pcm configuration: identiacal with ALC880 */
4710 #define alc262_pcm_analog_playback alc880_pcm_analog_playback
4711 #define alc262_pcm_analog_capture alc880_pcm_analog_capture
4712 #define alc262_pcm_digital_playback alc880_pcm_digital_playback
4713 #define alc262_pcm_digital_capture alc880_pcm_digital_capture
4714
4715 /*
4716 * BIOS auto configuration
4717 */
4718 static int alc262_parse_auto_config(struct hda_codec *codec)
4719 {
4720 struct alc_spec *spec = codec->spec;
4721 int err;
4722 static hda_nid_t alc262_ignore[] = { 0x1d, 0 };
4723
4724 if ((err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
4725 alc262_ignore)) < 0)
4726 return err;
4727 if (! spec->autocfg.line_outs && ! spec->autocfg.speaker_pin &&
4728 ! spec->autocfg.hp_pin)
4729 return 0; /* can't find valid BIOS pin config */
4730 if ((err = alc262_auto_create_multi_out_ctls(spec, &spec->autocfg)) < 0 ||
4731 (err = alc262_auto_create_analog_input_ctls(spec, &spec->autocfg)) < 0)
4732 return err;
4733
4734 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
4735
4736 if (spec->autocfg.dig_out_pin)
4737 spec->multiout.dig_out_nid = ALC262_DIGOUT_NID;
4738 if (spec->autocfg.dig_in_pin)
4739 spec->dig_in_nid = ALC262_DIGIN_NID;
4740
4741 if (spec->kctl_alloc)
4742 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
4743
4744 spec->init_verbs[spec->num_init_verbs++] = alc262_volume_init_verbs;
4745 spec->input_mux = &spec->private_imux;
4746
4747 return 1;
4748 }
4749
4750 #define alc262_auto_init_multi_out alc882_auto_init_multi_out
4751 #define alc262_auto_init_hp_out alc882_auto_init_hp_out
4752 #define alc262_auto_init_analog_input alc882_auto_init_analog_input
4753
4754
4755 /* init callback for auto-configuration model -- overriding the default init */
4756 static void alc262_auto_init(struct hda_codec *codec)
4757 {
4758 alc262_auto_init_multi_out(codec);
4759 alc262_auto_init_hp_out(codec);
4760 alc262_auto_init_analog_input(codec);
4761 }
4762
4763 /*
4764 * configuration and preset
4765 */
4766 static struct hda_board_config alc262_cfg_tbl[] = {
4767 { .modelname = "basic", .config = ALC262_BASIC },
4768 { .modelname = "fujitsu", .config = ALC262_FUJITSU },
4769 { .pci_subvendor = 0x10cf, .pci_subdevice = 0x1397, .config = ALC262_FUJITSU },
4770 { .modelname = "auto", .config = ALC262_AUTO },
4771 {}
4772 };
4773
4774 static struct alc_config_preset alc262_presets[] = {
4775 [ALC262_BASIC] = {
4776 .mixers = { alc262_base_mixer },
4777 .init_verbs = { alc262_init_verbs },
4778 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
4779 .dac_nids = alc262_dac_nids,
4780 .hp_nid = 0x03,
4781 .num_channel_mode = ARRAY_SIZE(alc262_modes),
4782 .channel_mode = alc262_modes,
4783 .input_mux = &alc262_capture_source,
4784 },
4785 [ALC262_FUJITSU] = {
4786 .mixers = { alc262_fujitsu_mixer },
4787 .init_verbs = { alc262_init_verbs, alc262_fujitsu_unsol_verbs },
4788 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
4789 .dac_nids = alc262_dac_nids,
4790 .hp_nid = 0x03,
4791 .dig_out_nid = ALC262_DIGOUT_NID,
4792 .num_channel_mode = ARRAY_SIZE(alc262_modes),
4793 .channel_mode = alc262_modes,
4794 .input_mux = &alc262_fujitsu_capture_source,
4795 .unsol_event = alc262_fujitsu_unsol_event,
4796 },
4797 };
4798
4799 static int patch_alc262(struct hda_codec *codec)
4800 {
4801 struct alc_spec *spec;
4802 int board_config;
4803 int err;
4804
4805 spec = kcalloc(1, sizeof(*spec), GFP_KERNEL);
4806 if (spec == NULL)
4807 return -ENOMEM;
4808
4809 codec->spec = spec;
4810 #if 0
4811 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is under-run */
4812 {
4813 int tmp;
4814 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
4815 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
4816 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
4817 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PROC_COEF, tmp | 0x80);
4818 }
4819 #endif
4820
4821 board_config = snd_hda_check_board_config(codec, alc262_cfg_tbl);
4822 if (board_config < 0 || board_config >= ALC262_MODEL_LAST) {
4823 printk(KERN_INFO "hda_codec: Unknown model for ALC262, trying auto-probe from BIOS...\n");
4824 board_config = ALC262_AUTO;
4825 }
4826
4827 if (board_config == ALC262_AUTO) {
4828 /* automatic parse from the BIOS config */
4829 err = alc262_parse_auto_config(codec);
4830 if (err < 0) {
4831 alc_free(codec);
4832 return err;
4833 } else if (! err) {
4834 printk(KERN_INFO "hda_codec: Cannot set up configuration from BIOS. Using base mode...\n");
4835 board_config = ALC262_BASIC;
4836 }
4837 }
4838
4839 if (board_config != ALC262_AUTO)
4840 setup_preset(spec, &alc262_presets[board_config]);
4841
4842 spec->stream_name_analog = "ALC262 Analog";
4843 spec->stream_analog_playback = &alc262_pcm_analog_playback;
4844 spec->stream_analog_capture = &alc262_pcm_analog_capture;
4845
4846 spec->stream_name_digital = "ALC262 Digital";
4847 spec->stream_digital_playback = &alc262_pcm_digital_playback;
4848 spec->stream_digital_capture = &alc262_pcm_digital_capture;
4849
4850 if (! spec->adc_nids && spec->input_mux) {
4851 /* check whether NID 0x07 is valid */
4852 unsigned int wcap = get_wcaps(codec, 0x07);
4853
4854 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT; /* get type */
4855 if (wcap != AC_WID_AUD_IN) {
4856 spec->adc_nids = alc262_adc_nids_alt;
4857 spec->num_adc_nids = ARRAY_SIZE(alc262_adc_nids_alt);
4858 spec->mixers[spec->num_mixers] = alc262_capture_alt_mixer;
4859 spec->num_mixers++;
4860 } else {
4861 spec->adc_nids = alc262_adc_nids;
4862 spec->num_adc_nids = ARRAY_SIZE(alc262_adc_nids);
4863 spec->mixers[spec->num_mixers] = alc262_capture_mixer;
4864 spec->num_mixers++;
4865 }
4866 }
4867
4868 codec->patch_ops = alc_patch_ops;
4869 if (board_config == ALC262_AUTO)
4870 spec->init_hook = alc262_auto_init;
4871
4872 return 0;
4873 }
4874
4875
4876 /*
4877 * ALC861 channel source setting (2/6 channel selection for 3-stack)
4878 */
4879
4880 /*
4881 * set the path ways for 2 channel output
4882 * need to set the codec line out and mic 1 pin widgets to inputs
4883 */
4884 static struct hda_verb alc861_threestack_ch2_init[] = {
4885 /* set pin widget 1Ah (line in) for input */
4886 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
4887 /* set pin widget 18h (mic1/2) for input, for mic also enable the vref */
4888 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
4889
4890 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c },
4891 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8)) }, //mic
4892 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8)) }, //line in
4893 { } /* end */
4894 };
4895 /*
4896 * 6ch mode
4897 * need to set the codec line out and mic 1 pin widgets to outputs
4898 */
4899 static struct hda_verb alc861_threestack_ch6_init[] = {
4900 /* set pin widget 1Ah (line in) for output (Back Surround)*/
4901 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
4902 /* set pin widget 18h (mic1) for output (CLFE)*/
4903 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
4904
4905 { 0x0c, AC_VERB_SET_CONNECT_SEL, 0x00 },
4906 { 0x0d, AC_VERB_SET_CONNECT_SEL, 0x00 },
4907
4908 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080 },
4909 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x01 << 8)) }, //mic
4910 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8)) }, //line in
4911 { } /* end */
4912 };
4913
4914 static struct hda_channel_mode alc861_threestack_modes[2] = {
4915 { 2, alc861_threestack_ch2_init },
4916 { 6, alc861_threestack_ch6_init },
4917 };
4918
4919 /* patch-ALC861 */
4920
4921 static struct snd_kcontrol_new alc861_base_mixer[] = {
4922 /* output mixer control */
4923 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
4924 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
4925 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
4926 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
4927 HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT),
4928
4929 /*Input mixer control */
4930 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
4931 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
4932 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
4933 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
4934 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
4935 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
4936 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
4937 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
4938 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
4939 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT),
4940
4941 /* Capture mixer control */
4942 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
4943 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
4944 {
4945 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4946 .name = "Capture Source",
4947 .count = 1,
4948 .info = alc_mux_enum_info,
4949 .get = alc_mux_enum_get,
4950 .put = alc_mux_enum_put,
4951 },
4952 { } /* end */
4953 };
4954
4955 static struct snd_kcontrol_new alc861_3ST_mixer[] = {
4956 /* output mixer control */
4957 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
4958 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
4959 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
4960 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
4961 /*HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT), */
4962
4963 /* Input mixer control */
4964 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
4965 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
4966 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
4967 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
4968 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
4969 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
4970 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
4971 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
4972 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
4973 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT),
4974
4975 /* Capture mixer control */
4976 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
4977 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
4978 {
4979 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4980 .name = "Capture Source",
4981 .count = 1,
4982 .info = alc_mux_enum_info,
4983 .get = alc_mux_enum_get,
4984 .put = alc_mux_enum_put,
4985 },
4986 {
4987 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4988 .name = "Channel Mode",
4989 .info = alc_ch_mode_info,
4990 .get = alc_ch_mode_get,
4991 .put = alc_ch_mode_put,
4992 .private_value = ARRAY_SIZE(alc861_threestack_modes),
4993 },
4994 { } /* end */
4995 };
4996
4997 /*
4998 * generic initialization of ADC, input mixers and output mixers
4999 */
5000 static struct hda_verb alc861_base_init_verbs[] = {
5001 /*
5002 * Unmute ADC0 and set the default input to mic-in
5003 */
5004 /* port-A for surround (rear panel) */
5005 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
5006 { 0x0e, AC_VERB_SET_CONNECT_SEL, 0x00 },
5007 /* port-B for mic-in (rear panel) with vref */
5008 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
5009 /* port-C for line-in (rear panel) */
5010 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
5011 /* port-D for Front */
5012 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
5013 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
5014 /* port-E for HP out (front panel) */
5015 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
5016 /* route front PCM to HP */
5017 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x01 },
5018 /* port-F for mic-in (front panel) with vref */
5019 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
5020 /* port-G for CLFE (rear panel) */
5021 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
5022 { 0x1f, AC_VERB_SET_CONNECT_SEL, 0x00 },
5023 /* port-H for side (rear panel) */
5024 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
5025 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x00 },
5026 /* CD-in */
5027 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
5028 /* route front mic to ADC1*/
5029 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
5030 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5031
5032 /* Unmute DAC0~3 & spdif out*/
5033 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5034 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5035 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5036 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5037 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5038
5039 /* Unmute Mixer 14 (mic) 1c (Line in)*/
5040 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5041 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5042 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5043 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5044
5045 /* Unmute Stereo Mixer 15 */
5046 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5047 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5048 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
5049 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c }, //Output 0~12 step
5050
5051 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5052 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5053 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5054 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5055 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5056 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5057 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5058 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5059 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)}, // hp used DAC 3 (Front)
5060 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
5061
5062 { }
5063 };
5064
5065 static struct hda_verb alc861_threestack_init_verbs[] = {
5066 /*
5067 * Unmute ADC0 and set the default input to mic-in
5068 */
5069 /* port-A for surround (rear panel) */
5070 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
5071 /* port-B for mic-in (rear panel) with vref */
5072 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
5073 /* port-C for line-in (rear panel) */
5074 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
5075 /* port-D for Front */
5076 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
5077 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
5078 /* port-E for HP out (front panel) */
5079 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
5080 /* route front PCM to HP */
5081 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x01 },
5082 /* port-F for mic-in (front panel) with vref */
5083 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
5084 /* port-G for CLFE (rear panel) */
5085 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
5086 /* port-H for side (rear panel) */
5087 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
5088 /* CD-in */
5089 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
5090 /* route front mic to ADC1*/
5091 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
5092 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5093 /* Unmute DAC0~3 & spdif out*/
5094 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5095 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5096 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5097 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5098 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5099
5100 /* Unmute Mixer 14 (mic) 1c (Line in)*/
5101 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5102 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5103 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5104 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5105
5106 /* Unmute Stereo Mixer 15 */
5107 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5108 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5109 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
5110 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c }, //Output 0~12 step
5111
5112 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5113 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5114 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5115 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5116 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5117 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5118 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5119 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5120 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)}, // hp used DAC 3 (Front)
5121 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
5122 { }
5123 };
5124 /*
5125 * generic initialization of ADC, input mixers and output mixers
5126 */
5127 static struct hda_verb alc861_auto_init_verbs[] = {
5128 /*
5129 * Unmute ADC0 and set the default input to mic-in
5130 */
5131 // {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
5132 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5133
5134 /* Unmute DAC0~3 & spdif out*/
5135 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5136 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5137 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5138 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5139 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5140
5141 /* Unmute Mixer 14 (mic) 1c (Line in)*/
5142 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5143 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5144 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5145 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5146
5147 /* Unmute Stereo Mixer 15 */
5148 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5149 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5150 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
5151 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c},
5152
5153 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5154 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5155 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5156 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5157 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5158 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5159 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5160 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5161
5162 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5163 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5164 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
5165 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
5166 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5167 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5168 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
5169 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
5170
5171 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00}, // set Mic 1
5172
5173 { }
5174 };
5175
5176 /* pcm configuration: identiacal with ALC880 */
5177 #define alc861_pcm_analog_playback alc880_pcm_analog_playback
5178 #define alc861_pcm_analog_capture alc880_pcm_analog_capture
5179 #define alc861_pcm_digital_playback alc880_pcm_digital_playback
5180 #define alc861_pcm_digital_capture alc880_pcm_digital_capture
5181
5182
5183 #define ALC861_DIGOUT_NID 0x07
5184
5185 static struct hda_channel_mode alc861_8ch_modes[1] = {
5186 { 8, NULL }
5187 };
5188
5189 static hda_nid_t alc861_dac_nids[4] = {
5190 /* front, surround, clfe, side */
5191 0x03, 0x06, 0x05, 0x04
5192 };
5193
5194 static hda_nid_t alc861_adc_nids[1] = {
5195 /* ADC0-2 */
5196 0x08,
5197 };
5198
5199 static struct hda_input_mux alc861_capture_source = {
5200 .num_items = 5,
5201 .items = {
5202 { "Mic", 0x0 },
5203 { "Front Mic", 0x3 },
5204 { "Line", 0x1 },
5205 { "CD", 0x4 },
5206 { "Mixer", 0x5 },
5207 },
5208 };
5209
5210 /* fill in the dac_nids table from the parsed pin configuration */
5211 static int alc861_auto_fill_dac_nids(struct alc_spec *spec, const struct auto_pin_cfg *cfg)
5212 {
5213 int i;
5214 hda_nid_t nid;
5215
5216 spec->multiout.dac_nids = spec->private_dac_nids;
5217 for (i = 0; i < cfg->line_outs; i++) {
5218 nid = cfg->line_out_pins[i];
5219 if (nid) {
5220 if (i >= ARRAY_SIZE(alc861_dac_nids))
5221 continue;
5222 spec->multiout.dac_nids[i] = alc861_dac_nids[i];
5223 }
5224 }
5225 spec->multiout.num_dacs = cfg->line_outs;
5226 return 0;
5227 }
5228
5229 /* add playback controls from the parsed DAC table */
5230 static int alc861_auto_create_multi_out_ctls(struct alc_spec *spec,
5231 const struct auto_pin_cfg *cfg)
5232 {
5233 char name[32];
5234 static const char *chname[4] = { "Front", "Surround", NULL /*CLFE*/, "Side" };
5235 hda_nid_t nid;
5236 int i, idx, err;
5237
5238 for (i = 0; i < cfg->line_outs; i++) {
5239 nid = spec->multiout.dac_nids[i];
5240 if (! nid)
5241 continue;
5242 if (nid == 0x05) {
5243 /* Center/LFE */
5244 if ((err = add_control(spec, ALC_CTL_BIND_MUTE, "Center Playback Switch",
5245 HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT))) < 0)
5246 return err;
5247 if ((err = add_control(spec, ALC_CTL_BIND_MUTE, "LFE Playback Switch",
5248 HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_OUTPUT))) < 0)
5249 return err;
5250 } else {
5251 for (idx = 0; idx < ARRAY_SIZE(alc861_dac_nids) - 1; idx++)
5252 if (nid == alc861_dac_nids[idx])
5253 break;
5254 sprintf(name, "%s Playback Switch", chname[idx]);
5255 if ((err = add_control(spec, ALC_CTL_BIND_MUTE, name,
5256 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT))) < 0)
5257 return err;
5258 }
5259 }
5260 return 0;
5261 }
5262
5263 static int alc861_auto_create_hp_ctls(struct alc_spec *spec, hda_nid_t pin)
5264 {
5265 int err;
5266 hda_nid_t nid;
5267
5268 if (! pin)
5269 return 0;
5270
5271 if ((pin >= 0x0b && pin <= 0x10) || pin == 0x1f || pin == 0x20) {
5272 nid = 0x03;
5273 if ((err = add_control(spec, ALC_CTL_WIDGET_MUTE, "Headphone Playback Switch",
5274 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT))) < 0)
5275 return err;
5276 spec->multiout.hp_nid = nid;
5277 }
5278 return 0;
5279 }
5280
5281 /* create playback/capture controls for input pins */
5282 static int alc861_auto_create_analog_input_ctls(struct alc_spec *spec, const struct auto_pin_cfg *cfg)
5283 {
5284 struct hda_input_mux *imux = &spec->private_imux;
5285 int i, err, idx, idx1;
5286
5287 for (i = 0; i < AUTO_PIN_LAST; i++) {
5288 switch(cfg->input_pins[i]) {
5289 case 0x0c:
5290 idx1 = 1;
5291 idx = 2; // Line In
5292 break;
5293 case 0x0f:
5294 idx1 = 2;
5295 idx = 2; // Line In
5296 break;
5297 case 0x0d:
5298 idx1 = 0;
5299 idx = 1; // Mic In
5300 break;
5301 case 0x10:
5302 idx1 = 3;
5303 idx = 1; // Mic In
5304 break;
5305 case 0x11:
5306 idx1 = 4;
5307 idx = 0; // CD
5308 break;
5309 default:
5310 continue;
5311 }
5312
5313 err = new_analog_input(spec, cfg->input_pins[i],
5314 auto_pin_cfg_labels[i], idx, 0x15);
5315 if (err < 0)
5316 return err;
5317
5318 imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
5319 imux->items[imux->num_items].index = idx1;
5320 imux->num_items++;
5321 }
5322 return 0;
5323 }
5324
5325 static struct snd_kcontrol_new alc861_capture_mixer[] = {
5326 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5327 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5328
5329 {
5330 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5331 /* The multiple "Capture Source" controls confuse alsamixer
5332 * So call somewhat different..
5333 *FIXME: the controls appear in the "playback" view!
5334 */
5335 /* .name = "Capture Source", */
5336 .name = "Input Source",
5337 .count = 1,
5338 .info = alc_mux_enum_info,
5339 .get = alc_mux_enum_get,
5340 .put = alc_mux_enum_put,
5341 },
5342 { } /* end */
5343 };
5344
5345 static void alc861_auto_set_output_and_unmute(struct hda_codec *codec, hda_nid_t nid,
5346 int pin_type, int dac_idx)
5347 {
5348 /* set as output */
5349
5350 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
5351 snd_hda_codec_write(codec, dac_idx, 0, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
5352
5353 }
5354
5355 static void alc861_auto_init_multi_out(struct hda_codec *codec)
5356 {
5357 struct alc_spec *spec = codec->spec;
5358 int i;
5359
5360 for (i = 0; i < spec->autocfg.line_outs; i++) {
5361 hda_nid_t nid = spec->autocfg.line_out_pins[i];
5362 if (nid)
5363 alc861_auto_set_output_and_unmute(codec, nid, PIN_OUT, spec->multiout.dac_nids[i]);
5364 }
5365 }
5366
5367 static void alc861_auto_init_hp_out(struct hda_codec *codec)
5368 {
5369 struct alc_spec *spec = codec->spec;
5370 hda_nid_t pin;
5371
5372 pin = spec->autocfg.hp_pin;
5373 if (pin) /* connect to front */
5374 alc861_auto_set_output_and_unmute(codec, pin, PIN_HP, spec->multiout.dac_nids[0]);
5375 }
5376
5377 static void alc861_auto_init_analog_input(struct hda_codec *codec)
5378 {
5379 struct alc_spec *spec = codec->spec;
5380 int i;
5381
5382 for (i = 0; i < AUTO_PIN_LAST; i++) {
5383 hda_nid_t nid = spec->autocfg.input_pins[i];
5384 if ((nid>=0x0c) && (nid <=0x11)) {
5385 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
5386 i <= AUTO_PIN_FRONT_MIC ? PIN_VREF80 : PIN_IN);
5387 }
5388 }
5389 }
5390
5391 /* parse the BIOS configuration and set up the alc_spec */
5392 /* return 1 if successful, 0 if the proper config is not found, or a negative error code */
5393 static int alc861_parse_auto_config(struct hda_codec *codec)
5394 {
5395 struct alc_spec *spec = codec->spec;
5396 int err;
5397 static hda_nid_t alc861_ignore[] = { 0x1d, 0 };
5398
5399 if ((err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
5400 alc861_ignore)) < 0)
5401 return err;
5402 if (! spec->autocfg.line_outs && ! spec->autocfg.speaker_pin &&
5403 ! spec->autocfg.hp_pin)
5404 return 0; /* can't find valid BIOS pin config */
5405
5406 if ((err = alc861_auto_fill_dac_nids(spec, &spec->autocfg)) < 0 ||
5407 (err = alc861_auto_create_multi_out_ctls(spec, &spec->autocfg)) < 0 ||
5408 (err = alc861_auto_create_hp_ctls(spec, spec->autocfg.hp_pin)) < 0 ||
5409 (err = alc861_auto_create_analog_input_ctls(spec, &spec->autocfg)) < 0)
5410 return err;
5411
5412 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
5413
5414 if (spec->autocfg.dig_out_pin)
5415 spec->multiout.dig_out_nid = ALC861_DIGOUT_NID;
5416
5417 if (spec->kctl_alloc)
5418 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
5419
5420 spec->init_verbs[spec->num_init_verbs++] = alc861_auto_init_verbs;
5421
5422 spec->input_mux = &spec->private_imux;
5423
5424 spec->adc_nids = alc861_adc_nids;
5425 spec->num_adc_nids = ARRAY_SIZE(alc861_adc_nids);
5426 spec->mixers[spec->num_mixers] = alc861_capture_mixer;
5427 spec->num_mixers++;
5428
5429 return 1;
5430 }
5431
5432 /* additional initialization for auto-configuration model */
5433 static void alc861_auto_init(struct hda_codec *codec)
5434 {
5435 alc861_auto_init_multi_out(codec);
5436 alc861_auto_init_hp_out(codec);
5437 alc861_auto_init_analog_input(codec);
5438 }
5439
5440
5441 /*
5442 * configuration and preset
5443 */
5444 static struct hda_board_config alc861_cfg_tbl[] = {
5445 { .modelname = "3stack", .config = ALC861_3ST },
5446 { .pci_subvendor = 0x8086, .pci_subdevice = 0xd600, .config = ALC861_3ST },
5447 { .modelname = "3stack-dig", .config = ALC861_3ST_DIG },
5448 { .modelname = "6stack-dig", .config = ALC861_6ST_DIG },
5449 { .modelname = "auto", .config = ALC861_AUTO },
5450 {}
5451 };
5452
5453 static struct alc_config_preset alc861_presets[] = {
5454 [ALC861_3ST] = {
5455 .mixers = { alc861_3ST_mixer },
5456 .init_verbs = { alc861_threestack_init_verbs },
5457 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
5458 .dac_nids = alc861_dac_nids,
5459 .num_channel_mode = ARRAY_SIZE(alc861_threestack_modes),
5460 .channel_mode = alc861_threestack_modes,
5461 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
5462 .adc_nids = alc861_adc_nids,
5463 .input_mux = &alc861_capture_source,
5464 },
5465 [ALC861_3ST_DIG] = {
5466 .mixers = { alc861_base_mixer },
5467 .init_verbs = { alc861_threestack_init_verbs },
5468 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
5469 .dac_nids = alc861_dac_nids,
5470 .dig_out_nid = ALC861_DIGOUT_NID,
5471 .num_channel_mode = ARRAY_SIZE(alc861_threestack_modes),
5472 .channel_mode = alc861_threestack_modes,
5473 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
5474 .adc_nids = alc861_adc_nids,
5475 .input_mux = &alc861_capture_source,
5476 },
5477 [ALC861_6ST_DIG] = {
5478 .mixers = { alc861_base_mixer },
5479 .init_verbs = { alc861_base_init_verbs },
5480 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
5481 .dac_nids = alc861_dac_nids,
5482 .dig_out_nid = ALC861_DIGOUT_NID,
5483 .num_channel_mode = ARRAY_SIZE(alc861_8ch_modes),
5484 .channel_mode = alc861_8ch_modes,
5485 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
5486 .adc_nids = alc861_adc_nids,
5487 .input_mux = &alc861_capture_source,
5488 },
5489 };
5490
5491
5492 static int patch_alc861(struct hda_codec *codec)
5493 {
5494 struct alc_spec *spec;
5495 int board_config;
5496 int err;
5497
5498 spec = kcalloc(1, sizeof(*spec), GFP_KERNEL);
5499 if (spec == NULL)
5500 return -ENOMEM;
5501
5502 codec->spec = spec;
5503
5504 board_config = snd_hda_check_board_config(codec, alc861_cfg_tbl);
5505 if (board_config < 0 || board_config >= ALC861_MODEL_LAST) {
5506 printk(KERN_INFO "hda_codec: Unknown model for ALC861, trying auto-probe from BIOS...\n");
5507 board_config = ALC861_AUTO;
5508 }
5509
5510 if (board_config == ALC861_AUTO) {
5511 /* automatic parse from the BIOS config */
5512 err = alc861_parse_auto_config(codec);
5513 if (err < 0) {
5514 alc_free(codec);
5515 return err;
5516 } else if (! err) {
5517 printk(KERN_INFO "hda_codec: Cannot set up configuration from BIOS. Using base mode...\n");
5518 board_config = ALC861_3ST_DIG;
5519 }
5520 }
5521
5522 if (board_config != ALC861_AUTO)
5523 setup_preset(spec, &alc861_presets[board_config]);
5524
5525 spec->stream_name_analog = "ALC861 Analog";
5526 spec->stream_analog_playback = &alc861_pcm_analog_playback;
5527 spec->stream_analog_capture = &alc861_pcm_analog_capture;
5528
5529 spec->stream_name_digital = "ALC861 Digital";
5530 spec->stream_digital_playback = &alc861_pcm_digital_playback;
5531 spec->stream_digital_capture = &alc861_pcm_digital_capture;
5532
5533 codec->patch_ops = alc_patch_ops;
5534 if (board_config == ALC861_AUTO)
5535 spec->init_hook = alc861_auto_init;
5536
5537 return 0;
5538 }
5539
5540 /*
5541 * patch entries
5542 */
5543 struct hda_codec_preset snd_hda_preset_realtek[] = {
5544 { .id = 0x10ec0260, .name = "ALC260", .patch = patch_alc260 },
5545 { .id = 0x10ec0262, .name = "ALC262", .patch = patch_alc262 },
5546 { .id = 0x10ec0880, .name = "ALC880", .patch = patch_alc880 },
5547 { .id = 0x10ec0882, .name = "ALC882", .patch = patch_alc882 },
5548 { .id = 0x10ec0883, .name = "ALC883", .patch = patch_alc882 },
5549 { .id = 0x10ec0885, .name = "ALC885", .patch = patch_alc882 },
5550 { .id = 0x10ec0861, .name = "ALC861", .patch = patch_alc861 },
5551 {} /* terminator */
5552 };
This page took 0.150414 seconds and 5 git commands to generate.