blob: 6b45635b3ea3083bbe68ae94e90e7b225d7e524f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Universal Interface for Intel High Definition Audio Codec
3 *
4 * HD audio interface patch for ALC 260/880/882 codecs
5 *
Kailang Yangdf694da2005-12-05 19:42:22 +01006 * Copyright (c) 2004 Kailang Yang <kailang@realtek.com.tw>
7 * PeiSen Hou <pshou@realtek.com.tw>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Takashi Iwai <tiwai@suse.de>
Jonathan Woithe7cf51e482006-02-09 12:01:26 +01009 * Jonathan Woithe <jwoithe@physics.adelaide.edu.au>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
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 */
37enum {
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 ALC880_3ST,
39 ALC880_3ST_DIG,
40 ALC880_5ST,
41 ALC880_5ST_DIG,
42 ALC880_W810,
Takashi Iwaidfc0ff62005-05-12 14:31:49 +020043 ALC880_Z71V,
Takashi Iwaib6482d42005-06-27 15:32:43 +020044 ALC880_6ST,
Takashi Iwai16ded522005-06-10 19:58:24 +020045 ALC880_6ST_DIG,
46 ALC880_F1734,
47 ALC880_ASUS,
48 ALC880_ASUS_DIG,
49 ALC880_ASUS_W1V,
Kailang Yangdf694da2005-12-05 19:42:22 +010050 ALC880_ASUS_DIG2,
Takashi Iwai16ded522005-06-10 19:58:24 +020051 ALC880_UNIWILL_DIG,
Kailang Yangdf694da2005-12-05 19:42:22 +010052 ALC880_CLEVO,
53 ALC880_TCL_S700,
Takashi Iwaiae6b8132006-03-03 16:47:17 +010054 ALC880_LG,
Takashi Iwaid6815182006-03-23 16:06:23 +010055 ALC880_LG_LW,
Takashi Iwaie9edcee2005-06-13 14:16:38 +020056#ifdef CONFIG_SND_DEBUG
57 ALC880_TEST,
58#endif
Kailang Yangdf694da2005-12-05 19:42:22 +010059 ALC880_AUTO,
Takashi Iwai16ded522005-06-10 19:58:24 +020060 ALC880_MODEL_LAST /* last tag */
61};
62
63/* ALC260 models */
64enum {
65 ALC260_BASIC,
66 ALC260_HP,
Kailang Yangdf694da2005-12-05 19:42:22 +010067 ALC260_HP_3013,
68 ALC260_FUJITSU_S702X,
Jonathan Woithe0bfc90e2006-02-28 11:45:11 +010069 ALC260_ACER,
Jonathan Woithe7cf51e482006-02-09 12:01:26 +010070#ifdef CONFIG_SND_DEBUG
71 ALC260_TEST,
72#endif
Kailang Yangdf694da2005-12-05 19:42:22 +010073 ALC260_AUTO,
Takashi Iwai16ded522005-06-10 19:58:24 +020074 ALC260_MODEL_LAST /* last tag */
Linus Torvalds1da177e2005-04-16 15:20:36 -070075};
76
Kailang Yangdf694da2005-12-05 19:42:22 +010077/* ALC262 models */
78enum {
79 ALC262_BASIC,
Takashi Iwai834be882006-03-01 14:16:17 +010080 ALC262_FUJITSU,
Kailang Yangdf694da2005-12-05 19:42:22 +010081 ALC262_AUTO,
82 ALC262_MODEL_LAST /* last tag */
83};
84
85/* ALC861 models */
86enum {
87 ALC861_3ST,
88 ALC861_3ST_DIG,
89 ALC861_6ST_DIG,
90 ALC861_AUTO,
91 ALC861_MODEL_LAST,
92};
93
94/* ALC882 models */
95enum {
96 ALC882_3ST_DIG,
97 ALC882_6ST_DIG,
98 ALC882_AUTO,
99 ALC882_MODEL_LAST,
100};
101
102/* for GPIO Poll */
103#define GPIO_MASK 0x03
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105struct alc_spec {
106 /* codec parameterization */
Kailang Yangdf694da2005-12-05 19:42:22 +0100107 struct snd_kcontrol_new *mixers[5]; /* mixer arrays */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 unsigned int num_mixers;
109
Kailang Yangdf694da2005-12-05 19:42:22 +0100110 const struct hda_verb *init_verbs[5]; /* initialization verbs
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200111 * don't forget NULL termination!
112 */
113 unsigned int num_init_verbs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Takashi Iwai16ded522005-06-10 19:58:24 +0200115 char *stream_name_analog; /* analog PCM stream */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 struct hda_pcm_stream *stream_analog_playback;
117 struct hda_pcm_stream *stream_analog_capture;
118
Takashi Iwai16ded522005-06-10 19:58:24 +0200119 char *stream_name_digital; /* digital PCM stream */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 struct hda_pcm_stream *stream_digital_playback;
121 struct hda_pcm_stream *stream_digital_capture;
122
123 /* playback */
Takashi Iwai16ded522005-06-10 19:58:24 +0200124 struct hda_multi_out multiout; /* playback set-up
125 * max_channels, dacs must be set
126 * dig_out_nid and hp_nid are optional
127 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129 /* capture */
130 unsigned int num_adc_nids;
131 hda_nid_t *adc_nids;
Takashi Iwai16ded522005-06-10 19:58:24 +0200132 hda_nid_t dig_in_nid; /* digital-in NID; optional */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134 /* capture source */
135 const struct hda_input_mux *input_mux;
136 unsigned int cur_mux[3];
137
138 /* channel model */
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100139 const struct hda_channel_mode *channel_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 int num_channel_mode;
141
142 /* PCM information */
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100143 struct hda_pcm pcm_rec[3]; /* used in alc_build_pcms() */
Takashi Iwai41e41f12005-06-08 14:48:49 +0200144
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200145 /* dynamic controls, init_verbs and input_mux */
146 struct auto_pin_cfg autocfg;
147 unsigned int num_kctl_alloc, num_kctl_used;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100148 struct snd_kcontrol_new *kctl_alloc;
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200149 struct hda_input_mux private_imux;
Kailang Yangdf694da2005-12-05 19:42:22 +0100150 hda_nid_t private_dac_nids[5];
Takashi Iwai834be882006-03-01 14:16:17 +0100151
Takashi Iwaiae6b8132006-03-03 16:47:17 +0100152 /* hooks */
153 void (*init_hook)(struct hda_codec *codec);
154 void (*unsol_event)(struct hda_codec *codec, unsigned int res);
155
Takashi Iwai834be882006-03-01 14:16:17 +0100156 /* for pin sensing */
157 unsigned int sense_updated: 1;
158 unsigned int jack_present: 1;
Kailang Yangdf694da2005-12-05 19:42:22 +0100159};
160
161/*
162 * configuration template - to be copied to the spec instance
163 */
164struct alc_config_preset {
165 struct snd_kcontrol_new *mixers[5]; /* should be identical size with spec */
166 const struct hda_verb *init_verbs[5];
167 unsigned int num_dacs;
168 hda_nid_t *dac_nids;
169 hda_nid_t dig_out_nid; /* optional */
170 hda_nid_t hp_nid; /* optional */
171 unsigned int num_adc_nids;
172 hda_nid_t *adc_nids;
173 hda_nid_t dig_in_nid;
174 unsigned int num_channel_mode;
175 const struct hda_channel_mode *channel_mode;
176 const struct hda_input_mux *input_mux;
Takashi Iwaiae6b8132006-03-03 16:47:17 +0100177 void (*unsol_event)(struct hda_codec *, unsigned int);
178 void (*init_hook)(struct hda_codec *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179};
180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182/*
183 * input MUX handling
184 */
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100185static int alc_mux_enum_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
187 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
188 struct alc_spec *spec = codec->spec;
189 return snd_hda_input_mux_info(spec->input_mux, uinfo);
190}
191
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100192static int alc_mux_enum_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193{
194 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
195 struct alc_spec *spec = codec->spec;
196 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
197
198 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
199 return 0;
200}
201
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100202static int alc_mux_enum_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
204 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
205 struct alc_spec *spec = codec->spec;
206 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
207 return snd_hda_input_mux_put(codec, spec->input_mux, ucontrol,
208 spec->adc_nids[adc_idx], &spec->cur_mux[adc_idx]);
209}
210
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212/*
213 * channel mode setting
214 */
Kailang Yangdf694da2005-12-05 19:42:22 +0100215static int alc_ch_mode_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216{
217 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
218 struct alc_spec *spec = codec->spec;
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100219 return snd_hda_ch_mode_info(codec, uinfo, spec->channel_mode,
220 spec->num_channel_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221}
222
Kailang Yangdf694da2005-12-05 19:42:22 +0100223static int alc_ch_mode_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
225 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
226 struct alc_spec *spec = codec->spec;
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100227 return snd_hda_ch_mode_get(codec, ucontrol, spec->channel_mode,
228 spec->num_channel_mode, spec->multiout.max_channels);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
230
Kailang Yangdf694da2005-12-05 19:42:22 +0100231static int alc_ch_mode_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
233 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
234 struct alc_spec *spec = codec->spec;
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100235 return snd_hda_ch_mode_put(codec, ucontrol, spec->channel_mode,
236 spec->num_channel_mode, &spec->multiout.max_channels);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237}
238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239/*
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100240 * Control the mode of pin widget settings via the mixer. "pc" is used
241 * instead of "%" to avoid consequences of accidently treating the % as
242 * being part of a format specifier. Maximum allowed length of a value is
243 * 63 characters plus NULL terminator.
Jonathan Woithe7cf51e482006-02-09 12:01:26 +0100244 *
245 * Note: some retasking pin complexes seem to ignore requests for input
246 * states other than HiZ (eg: PIN_VREFxx) and revert to HiZ if any of these
247 * are requested. Therefore order this list so that this behaviour will not
248 * cause problems when mixer clients move through the enum sequentially.
249 * NIDs 0x0f and 0x10 have been observed to have this behaviour.
Jonathan Woithea9430dd2005-09-16 19:12:48 +0200250 */
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100251static char *alc_pin_mode_names[] = {
Jonathan Woithe7cf51e482006-02-09 12:01:26 +0100252 "Mic 50pc bias", "Mic 80pc bias",
253 "Line in", "Line out", "Headphone out",
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100254};
255static unsigned char alc_pin_mode_values[] = {
Jonathan Woithe7cf51e482006-02-09 12:01:26 +0100256 PIN_VREF50, PIN_VREF80, PIN_IN, PIN_OUT, PIN_HP,
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100257};
258/* The control can present all 5 options, or it can limit the options based
259 * in the pin being assumed to be exclusively an input or an output pin.
260 */
261#define ALC_PIN_DIR_IN 0x00
262#define ALC_PIN_DIR_OUT 0x01
263#define ALC_PIN_DIR_INOUT 0x02
264
265/* Info about the pin modes supported by the three different pin directions.
266 * For each direction the minimum and maximum values are given.
267 */
268static signed char alc_pin_mode_dir_info[3][2] = {
269 { 0, 2 }, /* ALC_PIN_DIR_IN */
270 { 3, 4 }, /* ALC_PIN_DIR_OUT */
271 { 0, 4 }, /* ALC_PIN_DIR_INOUT */
272};
273#define alc_pin_mode_min(_dir) (alc_pin_mode_dir_info[_dir][0])
274#define alc_pin_mode_max(_dir) (alc_pin_mode_dir_info[_dir][1])
275#define alc_pin_mode_n_items(_dir) \
276 (alc_pin_mode_max(_dir)-alc_pin_mode_min(_dir)+1)
277
278static int alc_pin_mode_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Jonathan Woithea9430dd2005-09-16 19:12:48 +0200279{
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100280 unsigned int item_num = uinfo->value.enumerated.item;
281 unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
282
283 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
Jonathan Woithea9430dd2005-09-16 19:12:48 +0200284 uinfo->count = 1;
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100285 uinfo->value.enumerated.items = alc_pin_mode_n_items(dir);
286
287 if (item_num<alc_pin_mode_min(dir) || item_num>alc_pin_mode_max(dir))
288 item_num = alc_pin_mode_min(dir);
289 strcpy(uinfo->value.enumerated.name, alc_pin_mode_names[item_num]);
Jonathan Woithea9430dd2005-09-16 19:12:48 +0200290 return 0;
291}
292
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100293static int alc_pin_mode_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Jonathan Woithea9430dd2005-09-16 19:12:48 +0200294{
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100295 unsigned int i;
Jonathan Woithea9430dd2005-09-16 19:12:48 +0200296 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
297 hda_nid_t nid = kcontrol->private_value & 0xffff;
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100298 unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
Jonathan Woithea9430dd2005-09-16 19:12:48 +0200299 long *valp = ucontrol->value.integer.value;
300 unsigned int pinctl = snd_hda_codec_read(codec,nid,0,AC_VERB_GET_PIN_WIDGET_CONTROL,0x00);
Jonathan Woithea9430dd2005-09-16 19:12:48 +0200301
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100302 /* Find enumerated value for current pinctl setting */
303 i = alc_pin_mode_min(dir);
304 while (alc_pin_mode_values[i]!=pinctl && i<=alc_pin_mode_max(dir))
305 i++;
306 *valp = i<=alc_pin_mode_max(dir)?i:alc_pin_mode_min(dir);
307 return 0;
308}
309
310static int alc_pin_mode_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
311{
312 signed int change;
313 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
314 hda_nid_t nid = kcontrol->private_value & 0xffff;
315 unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
316 long val = *ucontrol->value.integer.value;
317 unsigned int pinctl = snd_hda_codec_read(codec,nid,0,AC_VERB_GET_PIN_WIDGET_CONTROL,0x00);
318
319 if (val<alc_pin_mode_min(dir) || val>alc_pin_mode_max(dir))
320 val = alc_pin_mode_min(dir);
321
322 change = pinctl != alc_pin_mode_values[val];
Jonathan Woithecdcd9262006-02-28 11:36:42 +0100323 if (change) {
324 /* Set pin mode to that requested */
Jonathan Woithea9430dd2005-09-16 19:12:48 +0200325 snd_hda_codec_write(codec,nid,0,AC_VERB_SET_PIN_WIDGET_CONTROL,
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100326 alc_pin_mode_values[val]);
Jonathan Woithecdcd9262006-02-28 11:36:42 +0100327
328 /* Also enable the retasking pin's input/output as required
329 * for the requested pin mode. Enum values of 2 or less are
330 * input modes.
331 *
332 * Dynamically switching the input/output buffers probably
333 * reduces noise slightly, particularly on input. However,
334 * havingboth input and output buffers enabled
335 * simultaneously doesn't seem to be problematic.
336 */
337 if (val <= 2) {
338 snd_hda_codec_write(codec,nid,0,AC_VERB_SET_AMP_GAIN_MUTE,
339 AMP_OUT_MUTE);
340 snd_hda_codec_write(codec,nid,0,AC_VERB_SET_AMP_GAIN_MUTE,
341 AMP_IN_UNMUTE(0));
342 } else {
343 snd_hda_codec_write(codec,nid,0,AC_VERB_SET_AMP_GAIN_MUTE,
344 AMP_IN_MUTE(0));
345 snd_hda_codec_write(codec,nid,0,AC_VERB_SET_AMP_GAIN_MUTE,
346 AMP_OUT_UNMUTE);
347 }
348 }
Jonathan Woithea9430dd2005-09-16 19:12:48 +0200349 return change;
350}
351
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100352#define ALC_PIN_MODE(xname, nid, dir) \
Jonathan Woithea9430dd2005-09-16 19:12:48 +0200353 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100354 .info = alc_pin_mode_info, \
355 .get = alc_pin_mode_get, \
356 .put = alc_pin_mode_put, \
357 .private_value = nid | (dir<<16) }
Kailang Yangdf694da2005-12-05 19:42:22 +0100358
Jonathan Woithe5c8f8582006-02-28 11:43:27 +0100359/* A switch control for ALC260 GPIO pins. Multiple GPIOs can be ganged
360 * together using a mask with more than one bit set. This control is
361 * currently used only by the ALC260 test model. At this stage they are not
362 * needed for any "production" models.
363 */
364#ifdef CONFIG_SND_DEBUG
365static int alc_gpio_data_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
366{
367 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
368 uinfo->count = 1;
369 uinfo->value.integer.min = 0;
370 uinfo->value.integer.max = 1;
371 return 0;
372}
373static int alc_gpio_data_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
374{
375 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
376 hda_nid_t nid = kcontrol->private_value & 0xffff;
377 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
378 long *valp = ucontrol->value.integer.value;
379 unsigned int val = snd_hda_codec_read(codec,nid,0,AC_VERB_GET_GPIO_DATA,0x00);
380
381 *valp = (val & mask) != 0;
382 return 0;
383}
384static int alc_gpio_data_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
385{
386 signed int change;
387 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
388 hda_nid_t nid = kcontrol->private_value & 0xffff;
389 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
390 long val = *ucontrol->value.integer.value;
391 unsigned int gpio_data = snd_hda_codec_read(codec,nid,0,AC_VERB_GET_GPIO_DATA,0x00);
392
393 /* Set/unset the masked GPIO bit(s) as needed */
394 change = (val==0?0:mask) != (gpio_data & mask);
395 if (val==0)
396 gpio_data &= ~mask;
397 else
398 gpio_data |= mask;
399 snd_hda_codec_write(codec,nid,0,AC_VERB_SET_GPIO_DATA,gpio_data);
400
401 return change;
402}
403#define ALC_GPIO_DATA_SWITCH(xname, nid, mask) \
404 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
405 .info = alc_gpio_data_info, \
406 .get = alc_gpio_data_get, \
407 .put = alc_gpio_data_put, \
408 .private_value = nid | (mask<<16) }
409#endif /* CONFIG_SND_DEBUG */
410
Jonathan Woithe92621f12006-02-28 11:47:47 +0100411/* A switch control to allow the enabling of the digital IO pins on the
412 * ALC260. This is incredibly simplistic; the intention of this control is
413 * to provide something in the test model allowing digital outputs to be
414 * identified if present. If models are found which can utilise these
415 * outputs a more complete mixer control can be devised for those models if
416 * necessary.
417 */
418#ifdef CONFIG_SND_DEBUG
419static int alc_spdif_ctrl_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
420{
421 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
422 uinfo->count = 1;
423 uinfo->value.integer.min = 0;
424 uinfo->value.integer.max = 1;
425 return 0;
426}
427static int alc_spdif_ctrl_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
428{
429 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
430 hda_nid_t nid = kcontrol->private_value & 0xffff;
431 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
432 long *valp = ucontrol->value.integer.value;
433 unsigned int val = snd_hda_codec_read(codec,nid,0,AC_VERB_GET_DIGI_CONVERT,0x00);
434
435 *valp = (val & mask) != 0;
436 return 0;
437}
438static int alc_spdif_ctrl_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
439{
440 signed int change;
441 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
442 hda_nid_t nid = kcontrol->private_value & 0xffff;
443 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
444 long val = *ucontrol->value.integer.value;
445 unsigned int ctrl_data = snd_hda_codec_read(codec,nid,0,AC_VERB_GET_DIGI_CONVERT,0x00);
446
447 /* Set/unset the masked control bit(s) as needed */
448 change = (val==0?0:mask) != (ctrl_data & mask);
449 if (val==0)
450 ctrl_data &= ~mask;
451 else
452 ctrl_data |= mask;
453 snd_hda_codec_write(codec,nid,0,AC_VERB_SET_DIGI_CONVERT_1,ctrl_data);
454
455 return change;
456}
457#define ALC_SPDIF_CTRL_SWITCH(xname, nid, mask) \
458 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
459 .info = alc_spdif_ctrl_info, \
460 .get = alc_spdif_ctrl_get, \
461 .put = alc_spdif_ctrl_put, \
462 .private_value = nid | (mask<<16) }
463#endif /* CONFIG_SND_DEBUG */
464
Kailang Yangdf694da2005-12-05 19:42:22 +0100465/*
466 * set up from the preset table
467 */
468static void setup_preset(struct alc_spec *spec, const struct alc_config_preset *preset)
469{
470 int i;
471
472 for (i = 0; i < ARRAY_SIZE(preset->mixers) && preset->mixers[i]; i++)
473 spec->mixers[spec->num_mixers++] = preset->mixers[i];
474 for (i = 0; i < ARRAY_SIZE(preset->init_verbs) && preset->init_verbs[i]; i++)
475 spec->init_verbs[spec->num_init_verbs++] = preset->init_verbs[i];
476
477 spec->channel_mode = preset->channel_mode;
478 spec->num_channel_mode = preset->num_channel_mode;
479
480 spec->multiout.max_channels = spec->channel_mode[0].channels;
481
482 spec->multiout.num_dacs = preset->num_dacs;
483 spec->multiout.dac_nids = preset->dac_nids;
484 spec->multiout.dig_out_nid = preset->dig_out_nid;
485 spec->multiout.hp_nid = preset->hp_nid;
486
487 spec->input_mux = preset->input_mux;
488
489 spec->num_adc_nids = preset->num_adc_nids;
490 spec->adc_nids = preset->adc_nids;
491 spec->dig_in_nid = preset->dig_in_nid;
Takashi Iwaiae6b8132006-03-03 16:47:17 +0100492
493 spec->unsol_event = preset->unsol_event;
494 spec->init_hook = preset->init_hook;
Kailang Yangdf694da2005-12-05 19:42:22 +0100495}
496
Takashi Iwai41e41f12005-06-08 14:48:49 +0200497/*
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200498 * ALC880 3-stack model
499 *
500 * DAC: Front = 0x02 (0x0c), Surr = 0x05 (0x0f), CLFE = 0x04 (0x0e)
501 * Pin assignment: Front = 0x14, Line-In/Surr = 0x1a, Mic/CLFE = 0x18, F-Mic = 0x1b
502 * HP = 0x19
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 */
504
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200505static hda_nid_t alc880_dac_nids[4] = {
506 /* front, rear, clfe, rear_surr */
507 0x02, 0x05, 0x04, 0x03
508};
509
510static hda_nid_t alc880_adc_nids[3] = {
511 /* ADC0-2 */
512 0x07, 0x08, 0x09,
513};
514
515/* The datasheet says the node 0x07 is connected from inputs,
516 * but it shows zero connection in the real implementation on some devices.
Kailang Yangdf694da2005-12-05 19:42:22 +0100517 * Note: this is a 915GAV bug, fixed on 915GLV
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200519static hda_nid_t alc880_adc_nids_alt[2] = {
520 /* ADC1-2 */
521 0x08, 0x09,
522};
523
524#define ALC880_DIGOUT_NID 0x06
525#define ALC880_DIGIN_NID 0x0a
526
527static struct hda_input_mux alc880_capture_source = {
528 .num_items = 4,
529 .items = {
530 { "Mic", 0x0 },
531 { "Front Mic", 0x3 },
532 { "Line", 0x2 },
533 { "CD", 0x4 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 },
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200535};
536
537/* channel source setting (2/6 channel selection for 3-stack) */
538/* 2ch mode */
539static struct hda_verb alc880_threestack_ch2_init[] = {
540 /* set line-in to input, mute it */
541 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
542 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
543 /* set mic-in to input vref 80%, mute it */
544 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
545 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 { } /* end */
547};
548
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200549/* 6ch mode */
550static struct hda_verb alc880_threestack_ch6_init[] = {
551 /* set line-in to output, unmute it */
552 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
553 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
554 /* set mic-in to output, unmute it */
555 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
556 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
557 { } /* end */
558};
559
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100560static struct hda_channel_mode alc880_threestack_modes[2] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200561 { 2, alc880_threestack_ch2_init },
562 { 6, alc880_threestack_ch6_init },
563};
564
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100565static struct snd_kcontrol_new alc880_three_stack_mixer[] = {
Takashi Iwai05acb862005-06-10 19:50:25 +0200566 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +0100567 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
Takashi Iwai05acb862005-06-10 19:50:25 +0200568 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +0100569 HDA_BIND_MUTE("Surround Playback Switch", 0x0f, 2, HDA_INPUT),
Takashi Iwai05acb862005-06-10 19:50:25 +0200570 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
571 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +0100572 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
573 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
575 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
576 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
577 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
578 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
579 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
580 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x3, HDA_INPUT),
581 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x3, HDA_INPUT),
582 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
583 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 HDA_CODEC_MUTE("Headphone Playback Switch", 0x19, 0x0, HDA_OUTPUT),
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200585 {
586 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
587 .name = "Channel Mode",
Kailang Yangdf694da2005-12-05 19:42:22 +0100588 .info = alc_ch_mode_info,
589 .get = alc_ch_mode_get,
590 .put = alc_ch_mode_put,
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200591 },
592 { } /* end */
593};
594
595/* capture mixer elements */
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100596static struct snd_kcontrol_new alc880_capture_mixer[] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200597 HDA_CODEC_VOLUME("Capture Volume", 0x07, 0x0, HDA_INPUT),
598 HDA_CODEC_MUTE("Capture Switch", 0x07, 0x0, HDA_INPUT),
599 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x08, 0x0, HDA_INPUT),
600 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x08, 0x0, HDA_INPUT),
601 HDA_CODEC_VOLUME_IDX("Capture Volume", 2, 0x09, 0x0, HDA_INPUT),
602 HDA_CODEC_MUTE_IDX("Capture Switch", 2, 0x09, 0x0, HDA_INPUT),
603 {
604 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
605 /* The multiple "Capture Source" controls confuse alsamixer
606 * So call somewhat different..
607 * FIXME: the controls appear in the "playback" view!
608 */
609 /* .name = "Capture Source", */
610 .name = "Input Source",
611 .count = 3,
612 .info = alc_mux_enum_info,
613 .get = alc_mux_enum_get,
614 .put = alc_mux_enum_put,
615 },
616 { } /* end */
617};
618
619/* capture mixer elements (in case NID 0x07 not available) */
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100620static struct snd_kcontrol_new alc880_capture_alt_mixer[] = {
Takashi Iwai71fe7b82005-05-25 18:11:40 +0200621 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
622 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
623 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
624 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 {
626 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
627 /* The multiple "Capture Source" controls confuse alsamixer
628 * So call somewhat different..
629 * FIXME: the controls appear in the "playback" view!
630 */
631 /* .name = "Capture Source", */
632 .name = "Input Source",
633 .count = 2,
634 .info = alc_mux_enum_info,
635 .get = alc_mux_enum_get,
636 .put = alc_mux_enum_put,
637 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 { } /* end */
639};
640
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200641
642
643/*
644 * ALC880 5-stack model
645 *
646 * DAC: Front = 0x02 (0x0c), Surr = 0x05 (0x0f), CLFE = 0x04 (0x0d), Side = 0x02 (0xd)
647 * Pin assignment: Front = 0x14, Surr = 0x17, CLFE = 0x16
648 * Line-In/Side = 0x1a, Mic = 0x18, F-Mic = 0x1b, HP = 0x19
649 */
650
651/* additional mixers to alc880_three_stack_mixer */
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100652static struct snd_kcontrol_new alc880_five_stack_mixer[] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200653 HDA_CODEC_VOLUME("Side Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +0100654 HDA_BIND_MUTE("Side Playback Switch", 0x0d, 2, HDA_INPUT),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 { } /* end */
656};
657
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200658/* channel source setting (6/8 channel selection for 5-stack) */
659/* 6ch mode */
660static struct hda_verb alc880_fivestack_ch6_init[] = {
661 /* set line-in to input, mute it */
662 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
663 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
Takashi Iwaidfc0ff62005-05-12 14:31:49 +0200664 { } /* end */
665};
666
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200667/* 8ch mode */
668static struct hda_verb alc880_fivestack_ch8_init[] = {
669 /* set line-in to output, unmute it */
670 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
671 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
672 { } /* end */
673};
674
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100675static struct hda_channel_mode alc880_fivestack_modes[2] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200676 { 6, alc880_fivestack_ch6_init },
677 { 8, alc880_fivestack_ch8_init },
678};
679
680
681/*
682 * ALC880 6-stack model
683 *
684 * DAC: Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e), Side = 0x05 (0x0f)
685 * Pin assignment: Front = 0x14, Surr = 0x15, CLFE = 0x16, Side = 0x17,
686 * Mic = 0x18, F-Mic = 0x19, Line = 0x1a, HP = 0x1b
687 */
688
689static hda_nid_t alc880_6st_dac_nids[4] = {
690 /* front, rear, clfe, rear_surr */
691 0x02, 0x03, 0x04, 0x05
692};
693
694static struct hda_input_mux alc880_6stack_capture_source = {
695 .num_items = 4,
696 .items = {
697 { "Mic", 0x0 },
698 { "Front Mic", 0x1 },
699 { "Line", 0x2 },
700 { "CD", 0x4 },
701 },
702};
703
704/* fixed 8-channels */
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100705static struct hda_channel_mode alc880_sixstack_modes[1] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200706 { 8, NULL },
707};
708
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100709static struct snd_kcontrol_new alc880_six_stack_mixer[] = {
Takashi Iwai16ded522005-06-10 19:58:24 +0200710 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +0100711 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
Takashi Iwai16ded522005-06-10 19:58:24 +0200712 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +0100713 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
Takashi Iwai16ded522005-06-10 19:58:24 +0200714 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
715 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +0100716 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
717 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
Takashi Iwai16ded522005-06-10 19:58:24 +0200718 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +0100719 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
Takashi Iwai16ded522005-06-10 19:58:24 +0200720 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
721 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
722 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
723 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
724 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
725 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
726 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
727 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
728 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
729 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
Takashi Iwai16ded522005-06-10 19:58:24 +0200730 {
731 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
732 .name = "Channel Mode",
Kailang Yangdf694da2005-12-05 19:42:22 +0100733 .info = alc_ch_mode_info,
734 .get = alc_ch_mode_get,
735 .put = alc_ch_mode_put,
Takashi Iwai16ded522005-06-10 19:58:24 +0200736 },
737 { } /* end */
738};
739
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200740
741/*
742 * ALC880 W810 model
743 *
744 * W810 has rear IO for:
745 * Front (DAC 02)
746 * Surround (DAC 03)
747 * Center/LFE (DAC 04)
748 * Digital out (06)
749 *
750 * The system also has a pair of internal speakers, and a headphone jack.
751 * These are both connected to Line2 on the codec, hence to DAC 02.
752 *
753 * There is a variable resistor to control the speaker or headphone
754 * volume. This is a hardware-only device without a software API.
755 *
756 * Plugging headphones in will disable the internal speakers. This is
757 * implemented in hardware, not via the driver using jack sense. In
758 * a similar fashion, plugging into the rear socket marked "front" will
759 * disable both the speakers and headphones.
760 *
761 * For input, there's a microphone jack, and an "audio in" jack.
762 * These may not do anything useful with this driver yet, because I
763 * haven't setup any initialization verbs for these yet...
764 */
765
766static hda_nid_t alc880_w810_dac_nids[3] = {
767 /* front, rear/surround, clfe */
768 0x02, 0x03, 0x04
769};
770
771/* fixed 6 channels */
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100772static struct hda_channel_mode alc880_w810_modes[1] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200773 { 6, NULL }
774};
775
776/* Pin assignment: Front = 0x14, Surr = 0x15, CLFE = 0x16, HP = 0x1b */
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100777static struct snd_kcontrol_new alc880_w810_base_mixer[] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200778 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +0100779 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200780 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +0100781 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200782 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
783 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +0100784 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
785 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200786 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
787 { } /* end */
788};
789
790
791/*
792 * Z710V model
793 *
794 * DAC: Front = 0x02 (0x0c), HP = 0x03 (0x0d)
795 * Pin assignment: Front = 0x14, HP = 0x15, Mic = 0x18, Mic2 = 0x19(?), Line = 0x1a
796 */
797
798static hda_nid_t alc880_z71v_dac_nids[1] = {
799 0x02
800};
801#define ALC880_Z71V_HP_DAC 0x03
802
803/* fixed 2 channels */
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100804static struct hda_channel_mode alc880_2_jack_modes[1] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200805 { 2, NULL }
806};
807
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100808static struct snd_kcontrol_new alc880_z71v_mixer[] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200809 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +0100810 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200811 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +0100812 HDA_BIND_MUTE("Headphone Playback Switch", 0x0d, 2, HDA_INPUT),
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200813 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
814 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
815 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
816 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
817 { } /* end */
818};
819
820
821/* FIXME! */
822/*
823 * ALC880 F1734 model
824 *
825 * DAC: HP = 0x02 (0x0c), Front = 0x03 (0x0d)
826 * Pin assignment: HP = 0x14, Front = 0x15, Mic = 0x18
827 */
828
829static hda_nid_t alc880_f1734_dac_nids[1] = {
830 0x03
831};
832#define ALC880_F1734_HP_DAC 0x02
833
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100834static struct snd_kcontrol_new alc880_f1734_mixer[] = {
Takashi Iwai16ded522005-06-10 19:58:24 +0200835 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +0100836 HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT),
Takashi Iwai16ded522005-06-10 19:58:24 +0200837 HDA_CODEC_VOLUME("Internal Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +0100838 HDA_BIND_MUTE("Internal Speaker Playback Switch", 0x0d, 2, HDA_INPUT),
Takashi Iwai16ded522005-06-10 19:58:24 +0200839 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
840 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
841 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
842 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
Takashi Iwai16ded522005-06-10 19:58:24 +0200843 { } /* end */
844};
845
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200846
847/* FIXME! */
848/*
849 * ALC880 ASUS model
850 *
851 * DAC: HP/Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e)
852 * Pin assignment: HP/Front = 0x14, Surr = 0x15, CLFE = 0x16,
853 * Mic = 0x18, Line = 0x1a
854 */
855
856#define alc880_asus_dac_nids alc880_w810_dac_nids /* identical with w810 */
857#define alc880_asus_modes alc880_threestack_modes /* 2/6 channel mode */
858
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100859static struct snd_kcontrol_new alc880_asus_mixer[] = {
Takashi Iwai16ded522005-06-10 19:58:24 +0200860 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +0100861 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
Takashi Iwai16ded522005-06-10 19:58:24 +0200862 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +0100863 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
Takashi Iwai16ded522005-06-10 19:58:24 +0200864 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
865 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +0100866 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
867 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
Takashi Iwai16ded522005-06-10 19:58:24 +0200868 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
869 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
870 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
871 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
872 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
873 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
Takashi Iwai16ded522005-06-10 19:58:24 +0200874 {
875 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
876 .name = "Channel Mode",
Kailang Yangdf694da2005-12-05 19:42:22 +0100877 .info = alc_ch_mode_info,
878 .get = alc_ch_mode_get,
879 .put = alc_ch_mode_put,
Takashi Iwai16ded522005-06-10 19:58:24 +0200880 },
881 { } /* end */
882};
883
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200884/* FIXME! */
885/*
886 * ALC880 ASUS W1V model
887 *
888 * DAC: HP/Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e)
889 * Pin assignment: HP/Front = 0x14, Surr = 0x15, CLFE = 0x16,
890 * Mic = 0x18, Line = 0x1a, Line2 = 0x1b
891 */
892
893/* additional mixers to alc880_asus_mixer */
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100894static struct snd_kcontrol_new alc880_asus_w1v_mixer[] = {
Takashi Iwai16ded522005-06-10 19:58:24 +0200895 HDA_CODEC_VOLUME("Line2 Playback Volume", 0x0b, 0x03, HDA_INPUT),
896 HDA_CODEC_MUTE("Line2 Playback Switch", 0x0b, 0x03, HDA_INPUT),
Takashi Iwai16ded522005-06-10 19:58:24 +0200897 { } /* end */
898};
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200899
Takashi Iwai3c10a9d2005-08-23 20:02:27 +0200900/* additional mixers to alc880_asus_mixer */
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100901static struct snd_kcontrol_new alc880_pcbeep_mixer[] = {
Takashi Iwai3c10a9d2005-08-23 20:02:27 +0200902 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
903 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
904 { } /* end */
905};
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200906
Kailang Yangdf694da2005-12-05 19:42:22 +0100907/* TCL S700 */
908static struct snd_kcontrol_new alc880_tcl_s700_mixer[] = {
909 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
910 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
911 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
912 HDA_CODEC_VOLUME("CD Playback Volume", 0x0B, 0x04, HDA_INPUT),
913 HDA_CODEC_MUTE("CD Playback Switch", 0x0B, 0x04, HDA_INPUT),
914 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0B, 0x0, HDA_INPUT),
915 HDA_CODEC_MUTE("Mic Playback Switch", 0x0B, 0x0, HDA_INPUT),
916 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
917 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
918 {
919 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
920 /* The multiple "Capture Source" controls confuse alsamixer
921 * So call somewhat different..
922 * FIXME: the controls appear in the "playback" view!
923 */
924 /* .name = "Capture Source", */
925 .name = "Input Source",
926 .count = 1,
927 .info = alc_mux_enum_info,
928 .get = alc_mux_enum_get,
929 .put = alc_mux_enum_put,
930 },
931 { } /* end */
932};
933
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934/*
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200935 * build control elements
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 */
937static int alc_build_controls(struct hda_codec *codec)
938{
939 struct alc_spec *spec = codec->spec;
940 int err;
941 int i;
942
943 for (i = 0; i < spec->num_mixers; i++) {
944 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
945 if (err < 0)
946 return err;
947 }
948
949 if (spec->multiout.dig_out_nid) {
950 err = snd_hda_create_spdif_out_ctls(codec, spec->multiout.dig_out_nid);
951 if (err < 0)
952 return err;
953 }
954 if (spec->dig_in_nid) {
955 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
956 if (err < 0)
957 return err;
958 }
959 return 0;
960}
961
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200962
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963/*
964 * initialize the codec volumes, etc
965 */
966
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200967/*
968 * generic initialization of ADC, input mixers and output mixers
969 */
970static struct hda_verb alc880_volume_init_verbs[] = {
971 /*
972 * Unmute ADC0-2 and set the default input to mic-in
973 */
Takashi Iwai71fe7b82005-05-25 18:11:40 +0200974 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200975 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
Takashi Iwai71fe7b82005-05-25 18:11:40 +0200976 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200977 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
Takashi Iwai71fe7b82005-05-25 18:11:40 +0200978 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200979 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200981 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
982 * mixer widget
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 * Note: PASD motherboards uses the Line In 2 as the input for front panel
984 * mic (mic 2)
985 */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200986 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
Takashi Iwai16ded522005-06-10 19:58:24 +0200987 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200988 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
989 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
990 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
991 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200993 /*
994 * Set up output mixers (0x0c - 0x0f)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200996 /* set vol=0 to output mixers */
997 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
998 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
999 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1000 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1001 /* set up input amps for analog loopback */
1002 /* Amp Indices: DAC = 0, mixer = 1 */
Takashi Iwai05acb862005-06-10 19:50:25 +02001003 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1004 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
Takashi Iwai05acb862005-06-10 19:50:25 +02001005 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1006 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
Takashi Iwai05acb862005-06-10 19:50:25 +02001007 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1008 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
Takashi Iwai05acb862005-06-10 19:50:25 +02001009 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1010 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
1012 { }
1013};
1014
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001015/*
1016 * 3-stack pin configuration:
1017 * front = 0x14, mic/clfe = 0x18, HP = 0x19, line/surr = 0x1a, f-mic = 0x1b
1018 */
1019static struct hda_verb alc880_pin_3stack_init_verbs[] = {
1020 /*
1021 * preset connection lists of input pins
1022 * 0 = front, 1 = rear_surr, 2 = CLFE, 3 = surround
1023 */
1024 {0x10, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
1025 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1026 {0x12, AC_VERB_SET_CONNECT_SEL, 0x03}, /* line/surround */
1027
1028 /*
1029 * Set pin mode and muting
1030 */
1031 /* set front pin widgets 0x14 for output */
1032 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1033 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1034 /* Mic1 (rear panel) pin widget for input and vref at 80% */
1035 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1036 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1037 /* Mic2 (as headphone out) for HP output */
1038 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1039 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1040 /* Line In pin widget for input */
1041 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1042 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1043 /* Line2 (as front mic) pin widget for input and vref at 80% */
1044 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1045 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1046 /* CD pin widget for input */
1047 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1048
1049 { }
1050};
1051
1052/*
1053 * 5-stack pin configuration:
1054 * front = 0x14, surround = 0x17, clfe = 0x16, mic = 0x18, HP = 0x19,
1055 * line-in/side = 0x1a, f-mic = 0x1b
1056 */
1057static struct hda_verb alc880_pin_5stack_init_verbs[] = {
1058 /*
1059 * preset connection lists of input pins
1060 * 0 = front, 1 = rear_surr, 2 = CLFE, 3 = surround
1061 */
1062 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1063 {0x12, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/side */
1064
1065 /*
1066 * Set pin mode and muting
1067 */
1068 /* set pin widgets 0x14-0x17 for output */
Takashi Iwai05acb862005-06-10 19:50:25 +02001069 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1070 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1071 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1072 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001073 /* unmute pins for output (no gain on this amp) */
1074 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1075 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1076 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1077 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1078
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 /* Mic1 (rear panel) pin widget for input and vref at 80% */
Takashi Iwai16ded522005-06-10 19:58:24 +02001080 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001081 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1082 /* Mic2 (as headphone out) for HP output */
1083 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
Takashi Iwai05acb862005-06-10 19:50:25 +02001084 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001085 /* Line In pin widget for input */
1086 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1087 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1088 /* Line2 (as front mic) pin widget for input and vref at 80% */
1089 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1090 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1091 /* CD pin widget for input */
1092 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
1094 { }
1095};
1096
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001097/*
1098 * W810 pin configuration:
1099 * front = 0x14, surround = 0x15, clfe = 0x16, HP = 0x1b
1100 */
1101static struct hda_verb alc880_pin_w810_init_verbs[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 /* hphone/speaker input selector: front DAC */
1103 {0x13, AC_VERB_SET_CONNECT_SEL, 0x0},
1104
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001105 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1106 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1107 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1108 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1109 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1110 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1111
1112 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
Takashi Iwai05acb862005-06-10 19:50:25 +02001113 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 { }
1116};
1117
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001118/*
1119 * Z71V pin configuration:
1120 * Speaker-out = 0x14, HP = 0x15, Mic = 0x18, Line-in = 0x1a, Mic2 = 0x1b (?)
1121 */
1122static struct hda_verb alc880_pin_z71v_init_verbs[] = {
Takashi Iwai05acb862005-06-10 19:50:25 +02001123 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001124 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Takashi Iwai05acb862005-06-10 19:50:25 +02001125 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001126 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Takashi Iwaidfc0ff62005-05-12 14:31:49 +02001127
Takashi Iwai16ded522005-06-10 19:58:24 +02001128 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001129 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
Takashi Iwai16ded522005-06-10 19:58:24 +02001130 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001131 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
Takashi Iwaidfc0ff62005-05-12 14:31:49 +02001132
1133 { }
1134};
1135
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001136/*
1137 * 6-stack pin configuration:
1138 * front = 0x14, surr = 0x15, clfe = 0x16, side = 0x17, mic = 0x18, f-mic = 0x19,
1139 * line = 0x1a, HP = 0x1b
1140 */
1141static struct hda_verb alc880_pin_6stack_init_verbs[] = {
1142 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1143
Takashi Iwai16ded522005-06-10 19:58:24 +02001144 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001145 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Takashi Iwai16ded522005-06-10 19:58:24 +02001146 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001147 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Takashi Iwai16ded522005-06-10 19:58:24 +02001148 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001149 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Takashi Iwai16ded522005-06-10 19:58:24 +02001150 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001151 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1152
Takashi Iwai16ded522005-06-10 19:58:24 +02001153 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001154 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
Takashi Iwai16ded522005-06-10 19:58:24 +02001155 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001156 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
Takashi Iwai16ded522005-06-10 19:58:24 +02001157 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001158 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
Takashi Iwai16ded522005-06-10 19:58:24 +02001159 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
Takashi Iwai16ded522005-06-10 19:58:24 +02001160 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Takashi Iwai16ded522005-06-10 19:58:24 +02001161 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1162
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001163 { }
1164};
Takashi Iwai16ded522005-06-10 19:58:24 +02001165
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001166/* FIXME! */
1167/*
1168 * F1734 pin configuration:
1169 * HP = 0x14, speaker-out = 0x15, mic = 0x18
1170 */
1171static struct hda_verb alc880_pin_f1734_init_verbs[] = {
1172 {0x10, AC_VERB_SET_CONNECT_SEL, 0x02},
1173 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00},
1174 {0x12, AC_VERB_SET_CONNECT_SEL, 0x01},
1175 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00},
1176
1177 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1178 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1179 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1180 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1181
1182 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1183 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1184 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1185 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1186 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1187 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1188 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1189 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1190 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
Takashi Iwai16ded522005-06-10 19:58:24 +02001191
1192 { }
1193};
1194
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001195/* FIXME! */
1196/*
1197 * ASUS pin configuration:
1198 * HP/front = 0x14, surr = 0x15, clfe = 0x16, mic = 0x18, line = 0x1a
1199 */
1200static struct hda_verb alc880_pin_asus_init_verbs[] = {
1201 {0x10, AC_VERB_SET_CONNECT_SEL, 0x02},
1202 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00},
1203 {0x12, AC_VERB_SET_CONNECT_SEL, 0x01},
1204 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00},
1205
1206 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1207 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1208 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1209 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1210 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1211 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1212 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1213 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1214
1215 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1216 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1217 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1218 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1219 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1220 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1221 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1222 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1223 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1224
1225 { }
1226};
1227
1228/* Enable GPIO mask and set output */
1229static struct hda_verb alc880_gpio1_init_verbs[] = {
1230 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
1231 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
1232 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
Kailang Yangdf694da2005-12-05 19:42:22 +01001233
1234 { }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001235};
1236
1237/* Enable GPIO mask and set output */
1238static struct hda_verb alc880_gpio2_init_verbs[] = {
1239 {0x01, AC_VERB_SET_GPIO_MASK, 0x02},
1240 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x02},
1241 {0x01, AC_VERB_SET_GPIO_DATA, 0x02},
Kailang Yangdf694da2005-12-05 19:42:22 +01001242
1243 { }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001244};
1245
Kailang Yangdf694da2005-12-05 19:42:22 +01001246/* Clevo m520g init */
1247static struct hda_verb alc880_pin_clevo_init_verbs[] = {
1248 /* headphone output */
1249 {0x11, AC_VERB_SET_CONNECT_SEL, 0x01},
1250 /* line-out */
1251 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1252 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1253 /* Line-in */
1254 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1255 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1256 /* CD */
1257 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1258 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1259 /* Mic1 (rear panel) */
1260 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1261 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1262 /* Mic2 (front panel) */
1263 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1264 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1265 /* headphone */
1266 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1267 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1268 /* change to EAPD mode */
1269 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
1270 {0x20, AC_VERB_SET_PROC_COEF, 0x3060},
1271
1272 { }
1273};
1274
1275static struct hda_verb alc880_pin_tcl_S700_init_verbs[] = {
1276 /* Headphone output */
1277 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1278 /* Front output*/
1279 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1280 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
1281
1282 /* Line In pin widget for input */
1283 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1284 /* CD pin widget for input */
1285 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1286 /* Mic1 (rear panel) pin widget for input and vref at 80% */
1287 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1288
1289 /* change to EAPD mode */
1290 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
1291 {0x20, AC_VERB_SET_PROC_COEF, 0x3070},
1292
1293 { }
1294};
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001295
1296/*
Takashi Iwaiae6b8132006-03-03 16:47:17 +01001297 * LG m1 express dual
1298 *
1299 * Pin assignment:
1300 * Rear Line-In/Out (blue): 0x14
1301 * Build-in Mic-In: 0x15
1302 * Speaker-out: 0x17
1303 * HP-Out (green): 0x1b
1304 * Mic-In/Out (red): 0x19
1305 * SPDIF-Out: 0x1e
1306 */
1307
1308/* To make 5.1 output working (green=Front, blue=Surr, red=CLFE) */
1309static hda_nid_t alc880_lg_dac_nids[3] = {
1310 0x05, 0x02, 0x03
1311};
1312
1313/* seems analog CD is not working */
1314static struct hda_input_mux alc880_lg_capture_source = {
1315 .num_items = 3,
1316 .items = {
1317 { "Mic", 0x1 },
1318 { "Line", 0x5 },
1319 { "Internal Mic", 0x6 },
1320 },
1321};
1322
1323/* 2,4,6 channel modes */
1324static struct hda_verb alc880_lg_ch2_init[] = {
1325 /* set line-in and mic-in to input */
1326 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
1327 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
1328 { }
1329};
1330
1331static struct hda_verb alc880_lg_ch4_init[] = {
1332 /* set line-in to out and mic-in to input */
1333 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1334 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
1335 { }
1336};
1337
1338static struct hda_verb alc880_lg_ch6_init[] = {
1339 /* set line-in and mic-in to output */
1340 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1341 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1342 { }
1343};
1344
1345static struct hda_channel_mode alc880_lg_ch_modes[3] = {
1346 { 2, alc880_lg_ch2_init },
1347 { 4, alc880_lg_ch4_init },
1348 { 6, alc880_lg_ch6_init },
1349};
1350
1351static struct snd_kcontrol_new alc880_lg_mixer[] = {
1352 /* FIXME: it's not really "master" but front channels */
1353 HDA_CODEC_VOLUME("Master Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
1354 HDA_BIND_MUTE("Master Playback Switch", 0x0f, 2, HDA_INPUT),
1355 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1356 HDA_BIND_MUTE("Surround Playback Switch", 0x0c, 2, HDA_INPUT),
1357 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0d, 1, 0x0, HDA_OUTPUT),
1358 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0d, 2, 0x0, HDA_OUTPUT),
1359 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0d, 1, 2, HDA_INPUT),
1360 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0d, 2, 2, HDA_INPUT),
1361 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
1362 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
1363 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x06, HDA_INPUT),
1364 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x06, HDA_INPUT),
1365 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x07, HDA_INPUT),
1366 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x07, HDA_INPUT),
1367 {
1368 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1369 .name = "Channel Mode",
1370 .info = alc_ch_mode_info,
1371 .get = alc_ch_mode_get,
1372 .put = alc_ch_mode_put,
1373 },
1374 { } /* end */
1375};
1376
1377static struct hda_verb alc880_lg_init_verbs[] = {
1378 /* set capture source to mic-in */
1379 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1380 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1381 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1382 /* mute all amp mixer inputs */
1383 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(5)},
1384 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(6)},
1385 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(7)},
1386 /* line-in to input */
1387 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1388 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1389 /* built-in mic */
1390 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1391 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1392 /* speaker-out */
1393 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1394 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1395 /* mic-in to input */
1396 {0x11, AC_VERB_SET_CONNECT_SEL, 0x01},
1397 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1398 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1399 /* HP-out */
1400 {0x13, AC_VERB_SET_CONNECT_SEL, 0x03},
1401 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1402 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1403 /* jack sense */
1404 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | 0x1},
1405 { }
1406};
1407
1408/* toggle speaker-output according to the hp-jack state */
1409static void alc880_lg_automute(struct hda_codec *codec)
1410{
1411 unsigned int present;
1412
1413 present = snd_hda_codec_read(codec, 0x1b, 0,
1414 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1415 snd_hda_codec_amp_update(codec, 0x17, 0, HDA_OUTPUT, 0,
1416 0x80, present ? 0x80 : 0);
1417 snd_hda_codec_amp_update(codec, 0x17, 1, HDA_OUTPUT, 0,
1418 0x80, present ? 0x80 : 0);
1419}
1420
1421static void alc880_lg_unsol_event(struct hda_codec *codec, unsigned int res)
1422{
1423 /* Looks like the unsol event is incompatible with the standard
1424 * definition. 4bit tag is placed at 28 bit!
1425 */
1426 if ((res >> 28) == 0x01)
1427 alc880_lg_automute(codec);
1428}
1429
1430/*
Takashi Iwaid6815182006-03-23 16:06:23 +01001431 * LG LW20
1432 *
1433 * Pin assignment:
1434 * Speaker-out: 0x14
1435 * Mic-In: 0x18
1436 * Built-in Mic-In: 0x19 (?)
1437 * HP-Out: 0x1b
1438 * SPDIF-Out: 0x1e
1439 */
1440
1441/* seems analog CD is not working */
1442static struct hda_input_mux alc880_lg_lw_capture_source = {
1443 .num_items = 2,
1444 .items = {
1445 { "Mic", 0x0 },
1446 { "Internal Mic", 0x1 },
1447 },
1448};
1449
1450static struct snd_kcontrol_new alc880_lg_lw_mixer[] = {
1451 HDA_CODEC_VOLUME("Master Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1452 HDA_BIND_MUTE("Master Playback Switch", 0x0c, 2, HDA_INPUT),
1453 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1454 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1455 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
1456 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
1457 { } /* end */
1458};
1459
1460static struct hda_verb alc880_lg_lw_init_verbs[] = {
1461 /* set capture source to mic-in */
1462 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1463 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1464 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1465 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(7)},
1466 /* speaker-out */
1467 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1468 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1469 /* HP-out */
1470 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00},
1471 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1472 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1473 /* mic-in to input */
1474 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1475 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1476 /* built-in mic */
1477 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1478 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1479 /* jack sense */
1480 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | 0x1},
1481 { }
1482};
1483
1484/* toggle speaker-output according to the hp-jack state */
1485static void alc880_lg_lw_automute(struct hda_codec *codec)
1486{
1487 unsigned int present;
1488
1489 present = snd_hda_codec_read(codec, 0x1b, 0,
1490 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1491 snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
1492 0x80, present ? 0x80 : 0);
1493 snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
1494 0x80, present ? 0x80 : 0);
1495}
1496
1497static void alc880_lg_lw_unsol_event(struct hda_codec *codec, unsigned int res)
1498{
1499 /* Looks like the unsol event is incompatible with the standard
1500 * definition. 4bit tag is placed at 28 bit!
1501 */
1502 if ((res >> 28) == 0x01)
1503 alc880_lg_lw_automute(codec);
1504}
1505
1506/*
Takashi Iwaiae6b8132006-03-03 16:47:17 +01001507 * Common callbacks
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001508 */
Takashi Iwai16ded522005-06-10 19:58:24 +02001509
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510static int alc_init(struct hda_codec *codec)
1511{
1512 struct alc_spec *spec = codec->spec;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001513 unsigned int i;
1514
1515 for (i = 0; i < spec->num_init_verbs; i++)
1516 snd_hda_sequence_write(codec, spec->init_verbs[i]);
Takashi Iwaiae6b8132006-03-03 16:47:17 +01001517
1518 if (spec->init_hook)
1519 spec->init_hook(codec);
1520
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 return 0;
1522}
1523
Takashi Iwaiae6b8132006-03-03 16:47:17 +01001524static void alc_unsol_event(struct hda_codec *codec, unsigned int res)
1525{
1526 struct alc_spec *spec = codec->spec;
1527
1528 if (spec->unsol_event)
1529 spec->unsol_event(codec, res);
1530}
1531
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532#ifdef CONFIG_PM
1533/*
1534 * resume
1535 */
1536static int alc_resume(struct hda_codec *codec)
1537{
1538 struct alc_spec *spec = codec->spec;
1539 int i;
1540
1541 alc_init(codec);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001542 for (i = 0; i < spec->num_mixers; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 snd_hda_resume_ctls(codec, spec->mixers[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 if (spec->multiout.dig_out_nid)
1545 snd_hda_resume_spdif_out(codec);
1546 if (spec->dig_in_nid)
1547 snd_hda_resume_spdif_in(codec);
1548
1549 return 0;
1550}
1551#endif
1552
1553/*
1554 * Analog playback callbacks
1555 */
1556static int alc880_playback_pcm_open(struct hda_pcm_stream *hinfo,
1557 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001558 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559{
1560 struct alc_spec *spec = codec->spec;
1561 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream);
1562}
1563
1564static int alc880_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
1565 struct hda_codec *codec,
1566 unsigned int stream_tag,
1567 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001568 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569{
1570 struct alc_spec *spec = codec->spec;
1571 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout, stream_tag,
1572 format, substream);
1573}
1574
1575static int alc880_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
1576 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001577 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578{
1579 struct alc_spec *spec = codec->spec;
1580 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
1581}
1582
1583/*
1584 * Digital out
1585 */
1586static int alc880_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
1587 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001588 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589{
1590 struct alc_spec *spec = codec->spec;
1591 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
1592}
1593
1594static int alc880_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
1595 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001596 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597{
1598 struct alc_spec *spec = codec->spec;
1599 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
1600}
1601
1602/*
1603 * Analog capture
1604 */
1605static int alc880_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
1606 struct hda_codec *codec,
1607 unsigned int stream_tag,
1608 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001609 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610{
1611 struct alc_spec *spec = codec->spec;
1612
1613 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
1614 stream_tag, 0, format);
1615 return 0;
1616}
1617
1618static int alc880_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
1619 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001620 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621{
1622 struct alc_spec *spec = codec->spec;
1623
1624 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number], 0, 0, 0);
1625 return 0;
1626}
1627
1628
1629/*
1630 */
1631static struct hda_pcm_stream alc880_pcm_analog_playback = {
1632 .substreams = 1,
1633 .channels_min = 2,
1634 .channels_max = 8,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001635 /* NID is set in alc_build_pcms */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 .ops = {
1637 .open = alc880_playback_pcm_open,
1638 .prepare = alc880_playback_pcm_prepare,
1639 .cleanup = alc880_playback_pcm_cleanup
1640 },
1641};
1642
1643static struct hda_pcm_stream alc880_pcm_analog_capture = {
1644 .substreams = 2,
1645 .channels_min = 2,
1646 .channels_max = 2,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001647 /* NID is set in alc_build_pcms */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 .ops = {
1649 .prepare = alc880_capture_pcm_prepare,
1650 .cleanup = alc880_capture_pcm_cleanup
1651 },
1652};
1653
1654static struct hda_pcm_stream alc880_pcm_digital_playback = {
1655 .substreams = 1,
1656 .channels_min = 2,
1657 .channels_max = 2,
1658 /* NID is set in alc_build_pcms */
1659 .ops = {
1660 .open = alc880_dig_playback_pcm_open,
1661 .close = alc880_dig_playback_pcm_close
1662 },
1663};
1664
1665static struct hda_pcm_stream alc880_pcm_digital_capture = {
1666 .substreams = 1,
1667 .channels_min = 2,
1668 .channels_max = 2,
1669 /* NID is set in alc_build_pcms */
1670};
1671
Jonathan Woithe4c5186e2006-02-09 11:53:48 +01001672/* Used by alc_build_pcms to flag that a PCM has no playback stream */
1673static struct hda_pcm_stream alc_pcm_null_playback = {
1674 .substreams = 0,
1675 .channels_min = 0,
1676 .channels_max = 0,
1677};
1678
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679static int alc_build_pcms(struct hda_codec *codec)
1680{
1681 struct alc_spec *spec = codec->spec;
1682 struct hda_pcm *info = spec->pcm_rec;
1683 int i;
1684
1685 codec->num_pcms = 1;
1686 codec->pcm_info = info;
1687
1688 info->name = spec->stream_name_analog;
Takashi Iwai4a471b72005-12-07 13:56:29 +01001689 if (spec->stream_analog_playback) {
1690 snd_assert(spec->multiout.dac_nids, return -EINVAL);
1691 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *(spec->stream_analog_playback);
1692 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dac_nids[0];
1693 }
1694 if (spec->stream_analog_capture) {
1695 snd_assert(spec->adc_nids, return -EINVAL);
1696 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_analog_capture);
1697 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
1698 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
Takashi Iwai4a471b72005-12-07 13:56:29 +01001700 if (spec->channel_mode) {
1701 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = 0;
1702 for (i = 0; i < spec->num_channel_mode; i++) {
1703 if (spec->channel_mode[i].channels > info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max) {
1704 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = spec->channel_mode[i].channels;
1705 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 }
1707 }
1708
Jonathan Woithe4c5186e2006-02-09 11:53:48 +01001709 /* If the use of more than one ADC is requested for the current
1710 * model, configure a second analog capture-only PCM.
1711 */
1712 if (spec->num_adc_nids > 1) {
1713 codec->num_pcms++;
1714 info++;
1715 info->name = spec->stream_name_analog;
1716 /* No playback stream for second PCM */
1717 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = alc_pcm_null_playback;
1718 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = 0;
1719 if (spec->stream_analog_capture) {
1720 snd_assert(spec->adc_nids, return -EINVAL);
1721 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_analog_capture);
1722 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[1];
1723 }
1724 }
1725
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
1727 codec->num_pcms++;
1728 info++;
1729 info->name = spec->stream_name_digital;
Takashi Iwai4a471b72005-12-07 13:56:29 +01001730 if (spec->multiout.dig_out_nid &&
1731 spec->stream_digital_playback) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *(spec->stream_digital_playback);
1733 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
1734 }
Takashi Iwai4a471b72005-12-07 13:56:29 +01001735 if (spec->dig_in_nid &&
1736 spec->stream_digital_capture) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_digital_capture);
1738 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
1739 }
1740 }
1741
1742 return 0;
1743}
1744
1745static void alc_free(struct hda_codec *codec)
1746{
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001747 struct alc_spec *spec = codec->spec;
1748 unsigned int i;
1749
1750 if (! spec)
1751 return;
1752
1753 if (spec->kctl_alloc) {
1754 for (i = 0; i < spec->num_kctl_used; i++)
1755 kfree(spec->kctl_alloc[i].name);
1756 kfree(spec->kctl_alloc);
1757 }
1758 kfree(spec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759}
1760
1761/*
1762 */
1763static struct hda_codec_ops alc_patch_ops = {
1764 .build_controls = alc_build_controls,
1765 .build_pcms = alc_build_pcms,
1766 .init = alc_init,
1767 .free = alc_free,
Takashi Iwaiae6b8132006-03-03 16:47:17 +01001768 .unsol_event = alc_unsol_event,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769#ifdef CONFIG_PM
1770 .resume = alc_resume,
1771#endif
1772};
1773
Takashi Iwai2fa522b2005-05-12 14:51:12 +02001774
1775/*
1776 * Test configuration for debugging
1777 *
1778 * Almost all inputs/outputs are enabled. I/O pins can be configured via
1779 * enum controls.
1780 */
1781#ifdef CONFIG_SND_DEBUG
1782static hda_nid_t alc880_test_dac_nids[4] = {
1783 0x02, 0x03, 0x04, 0x05
1784};
1785
1786static struct hda_input_mux alc880_test_capture_source = {
Takashi Iwaiae6b8132006-03-03 16:47:17 +01001787 .num_items = 7,
Takashi Iwai2fa522b2005-05-12 14:51:12 +02001788 .items = {
1789 { "In-1", 0x0 },
1790 { "In-2", 0x1 },
1791 { "In-3", 0x2 },
1792 { "In-4", 0x3 },
1793 { "CD", 0x4 },
Takashi Iwaiae6b8132006-03-03 16:47:17 +01001794 { "Front", 0x5 },
1795 { "Surround", 0x6 },
Takashi Iwai2fa522b2005-05-12 14:51:12 +02001796 },
1797};
1798
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01001799static struct hda_channel_mode alc880_test_modes[4] = {
Takashi Iwai2fa522b2005-05-12 14:51:12 +02001800 { 2, NULL },
Takashi Iwaifd2c3262005-05-13 17:18:42 +02001801 { 4, NULL },
Takashi Iwai2fa522b2005-05-12 14:51:12 +02001802 { 6, NULL },
Takashi Iwaifd2c3262005-05-13 17:18:42 +02001803 { 8, NULL },
Takashi Iwai2fa522b2005-05-12 14:51:12 +02001804};
1805
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001806static int alc_test_pin_ctl_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Takashi Iwai2fa522b2005-05-12 14:51:12 +02001807{
1808 static char *texts[] = {
1809 "N/A", "Line Out", "HP Out",
1810 "In Hi-Z", "In 50%", "In Grd", "In 80%", "In 100%"
1811 };
1812 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1813 uinfo->count = 1;
1814 uinfo->value.enumerated.items = 8;
1815 if (uinfo->value.enumerated.item >= 8)
1816 uinfo->value.enumerated.item = 7;
1817 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
1818 return 0;
1819}
1820
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001821static int alc_test_pin_ctl_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Takashi Iwai2fa522b2005-05-12 14:51:12 +02001822{
1823 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1824 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
1825 unsigned int pin_ctl, item = 0;
1826
1827 pin_ctl = snd_hda_codec_read(codec, nid, 0,
1828 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
1829 if (pin_ctl & AC_PINCTL_OUT_EN) {
1830 if (pin_ctl & AC_PINCTL_HP_EN)
1831 item = 2;
1832 else
1833 item = 1;
1834 } else if (pin_ctl & AC_PINCTL_IN_EN) {
1835 switch (pin_ctl & AC_PINCTL_VREFEN) {
1836 case AC_PINCTL_VREF_HIZ: item = 3; break;
1837 case AC_PINCTL_VREF_50: item = 4; break;
1838 case AC_PINCTL_VREF_GRD: item = 5; break;
1839 case AC_PINCTL_VREF_80: item = 6; break;
1840 case AC_PINCTL_VREF_100: item = 7; break;
1841 }
1842 }
1843 ucontrol->value.enumerated.item[0] = item;
1844 return 0;
1845}
1846
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001847static int alc_test_pin_ctl_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Takashi Iwai2fa522b2005-05-12 14:51:12 +02001848{
1849 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1850 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
1851 static unsigned int ctls[] = {
1852 0, AC_PINCTL_OUT_EN, AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN,
1853 AC_PINCTL_IN_EN | AC_PINCTL_VREF_HIZ,
1854 AC_PINCTL_IN_EN | AC_PINCTL_VREF_50,
1855 AC_PINCTL_IN_EN | AC_PINCTL_VREF_GRD,
1856 AC_PINCTL_IN_EN | AC_PINCTL_VREF_80,
1857 AC_PINCTL_IN_EN | AC_PINCTL_VREF_100,
1858 };
1859 unsigned int old_ctl, new_ctl;
1860
1861 old_ctl = snd_hda_codec_read(codec, nid, 0,
1862 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
1863 new_ctl = ctls[ucontrol->value.enumerated.item[0]];
1864 if (old_ctl != new_ctl) {
1865 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, new_ctl);
1866 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
1867 ucontrol->value.enumerated.item[0] >= 3 ? 0xb080 : 0xb000);
1868 return 1;
1869 }
1870 return 0;
1871}
1872
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001873static int alc_test_pin_src_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Takashi Iwai2fa522b2005-05-12 14:51:12 +02001874{
1875 static char *texts[] = {
1876 "Front", "Surround", "CLFE", "Side"
1877 };
1878 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1879 uinfo->count = 1;
1880 uinfo->value.enumerated.items = 4;
1881 if (uinfo->value.enumerated.item >= 4)
1882 uinfo->value.enumerated.item = 3;
1883 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
1884 return 0;
1885}
1886
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001887static int alc_test_pin_src_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Takashi Iwai2fa522b2005-05-12 14:51:12 +02001888{
1889 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1890 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
1891 unsigned int sel;
1892
1893 sel = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONNECT_SEL, 0);
1894 ucontrol->value.enumerated.item[0] = sel & 3;
1895 return 0;
1896}
1897
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001898static int alc_test_pin_src_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Takashi Iwai2fa522b2005-05-12 14:51:12 +02001899{
1900 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1901 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
1902 unsigned int sel;
1903
1904 sel = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONNECT_SEL, 0) & 3;
1905 if (ucontrol->value.enumerated.item[0] != sel) {
1906 sel = ucontrol->value.enumerated.item[0] & 3;
1907 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, sel);
1908 return 1;
1909 }
1910 return 0;
1911}
1912
1913#define PIN_CTL_TEST(xname,nid) { \
1914 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1915 .name = xname, \
1916 .info = alc_test_pin_ctl_info, \
1917 .get = alc_test_pin_ctl_get, \
1918 .put = alc_test_pin_ctl_put, \
1919 .private_value = nid \
1920 }
1921
1922#define PIN_SRC_TEST(xname,nid) { \
1923 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1924 .name = xname, \
1925 .info = alc_test_pin_src_info, \
1926 .get = alc_test_pin_src_get, \
1927 .put = alc_test_pin_src_put, \
1928 .private_value = nid \
1929 }
1930
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001931static struct snd_kcontrol_new alc880_test_mixer[] = {
Takashi Iwai05acb862005-06-10 19:50:25 +02001932 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1933 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1934 HDA_CODEC_VOLUME("CLFE Playback Volume", 0x0e, 0x0, HDA_OUTPUT),
1935 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +01001936 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
1937 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
1938 HDA_BIND_MUTE("CLFE Playback Switch", 0x0e, 2, HDA_INPUT),
1939 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
Takashi Iwai2fa522b2005-05-12 14:51:12 +02001940 PIN_CTL_TEST("Front Pin Mode", 0x14),
1941 PIN_CTL_TEST("Surround Pin Mode", 0x15),
1942 PIN_CTL_TEST("CLFE Pin Mode", 0x16),
1943 PIN_CTL_TEST("Side Pin Mode", 0x17),
1944 PIN_CTL_TEST("In-1 Pin Mode", 0x18),
1945 PIN_CTL_TEST("In-2 Pin Mode", 0x19),
1946 PIN_CTL_TEST("In-3 Pin Mode", 0x1a),
1947 PIN_CTL_TEST("In-4 Pin Mode", 0x1b),
1948 PIN_SRC_TEST("In-1 Pin Source", 0x18),
1949 PIN_SRC_TEST("In-2 Pin Source", 0x19),
1950 PIN_SRC_TEST("In-3 Pin Source", 0x1a),
1951 PIN_SRC_TEST("In-4 Pin Source", 0x1b),
1952 HDA_CODEC_VOLUME("In-1 Playback Volume", 0x0b, 0x0, HDA_INPUT),
1953 HDA_CODEC_MUTE("In-1 Playback Switch", 0x0b, 0x0, HDA_INPUT),
1954 HDA_CODEC_VOLUME("In-2 Playback Volume", 0x0b, 0x1, HDA_INPUT),
1955 HDA_CODEC_MUTE("In-2 Playback Switch", 0x0b, 0x1, HDA_INPUT),
1956 HDA_CODEC_VOLUME("In-3 Playback Volume", 0x0b, 0x2, HDA_INPUT),
1957 HDA_CODEC_MUTE("In-3 Playback Switch", 0x0b, 0x2, HDA_INPUT),
1958 HDA_CODEC_VOLUME("In-4 Playback Volume", 0x0b, 0x3, HDA_INPUT),
1959 HDA_CODEC_MUTE("In-4 Playback Switch", 0x0b, 0x3, HDA_INPUT),
1960 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x4, HDA_INPUT),
1961 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x4, HDA_INPUT),
Takashi Iwai2fa522b2005-05-12 14:51:12 +02001962 {
1963 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1964 .name = "Channel Mode",
Kailang Yangdf694da2005-12-05 19:42:22 +01001965 .info = alc_ch_mode_info,
1966 .get = alc_ch_mode_get,
1967 .put = alc_ch_mode_put,
Takashi Iwai2fa522b2005-05-12 14:51:12 +02001968 },
1969 { } /* end */
1970};
1971
1972static struct hda_verb alc880_test_init_verbs[] = {
1973 /* Unmute inputs of 0x0c - 0x0f */
Takashi Iwai05acb862005-06-10 19:50:25 +02001974 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1975 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1976 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1977 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1978 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1979 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1980 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1981 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
Takashi Iwai2fa522b2005-05-12 14:51:12 +02001982 /* Vol output for 0x0c-0x0f */
Takashi Iwai05acb862005-06-10 19:50:25 +02001983 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1984 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1985 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1986 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
Takashi Iwai2fa522b2005-05-12 14:51:12 +02001987 /* Set output pins 0x14-0x17 */
Takashi Iwai05acb862005-06-10 19:50:25 +02001988 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1989 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1990 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1991 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Takashi Iwai2fa522b2005-05-12 14:51:12 +02001992 /* Unmute output pins 0x14-0x17 */
Takashi Iwai05acb862005-06-10 19:50:25 +02001993 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1994 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1995 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1996 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Takashi Iwai2fa522b2005-05-12 14:51:12 +02001997 /* Set input pins 0x18-0x1c */
Takashi Iwai16ded522005-06-10 19:58:24 +02001998 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1999 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
Takashi Iwai05acb862005-06-10 19:50:25 +02002000 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2001 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2002 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
Takashi Iwai2fa522b2005-05-12 14:51:12 +02002003 /* Mute input pins 0x18-0x1b */
Takashi Iwai05acb862005-06-10 19:50:25 +02002004 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2005 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2006 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2007 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
Takashi Iwai71fe7b82005-05-25 18:11:40 +02002008 /* ADC set up */
Takashi Iwai05acb862005-06-10 19:50:25 +02002009 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
Takashi Iwai71fe7b82005-05-25 18:11:40 +02002010 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
Takashi Iwai05acb862005-06-10 19:50:25 +02002011 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
Takashi Iwai71fe7b82005-05-25 18:11:40 +02002012 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
Takashi Iwai05acb862005-06-10 19:50:25 +02002013 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
Takashi Iwai71fe7b82005-05-25 18:11:40 +02002014 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
Takashi Iwai05acb862005-06-10 19:50:25 +02002015 /* Analog input/passthru */
2016 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2017 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2018 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2019 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2020 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
Takashi Iwai2fa522b2005-05-12 14:51:12 +02002021 { }
2022};
2023#endif
2024
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025/*
2026 */
2027
2028static struct hda_board_config alc880_cfg_tbl[] = {
2029 /* Back 3 jack, front 2 jack */
2030 { .modelname = "3stack", .config = ALC880_3ST },
Takashi Iwai72915482005-05-12 16:49:45 +02002031 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe200, .config = ALC880_3ST },
2032 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe201, .config = ALC880_3ST },
2033 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe202, .config = ALC880_3ST },
2034 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe203, .config = ALC880_3ST },
2035 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe204, .config = ALC880_3ST },
2036 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe205, .config = ALC880_3ST },
2037 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe206, .config = ALC880_3ST },
2038 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe207, .config = ALC880_3ST },
2039 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe208, .config = ALC880_3ST },
2040 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe209, .config = ALC880_3ST },
2041 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe20a, .config = ALC880_3ST },
2042 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe20b, .config = ALC880_3ST },
2043 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe20c, .config = ALC880_3ST },
2044 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe20d, .config = ALC880_3ST },
2045 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe20e, .config = ALC880_3ST },
2046 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe20f, .config = ALC880_3ST },
2047 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe210, .config = ALC880_3ST },
2048 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe211, .config = ALC880_3ST },
2049 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe214, .config = ALC880_3ST },
2050 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe302, .config = ALC880_3ST },
2051 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe303, .config = ALC880_3ST },
2052 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe304, .config = ALC880_3ST },
2053 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe306, .config = ALC880_3ST },
2054 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe307, .config = ALC880_3ST },
2055 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe404, .config = ALC880_3ST },
2056 { .pci_subvendor = 0x8086, .pci_subdevice = 0xa101, .config = ALC880_3ST },
2057 { .pci_subvendor = 0x107b, .pci_subdevice = 0x3031, .config = ALC880_3ST },
2058 { .pci_subvendor = 0x107b, .pci_subdevice = 0x4036, .config = ALC880_3ST },
2059 { .pci_subvendor = 0x107b, .pci_subdevice = 0x4037, .config = ALC880_3ST },
2060 { .pci_subvendor = 0x107b, .pci_subdevice = 0x4038, .config = ALC880_3ST },
2061 { .pci_subvendor = 0x107b, .pci_subdevice = 0x4040, .config = ALC880_3ST },
2062 { .pci_subvendor = 0x107b, .pci_subdevice = 0x4041, .config = ALC880_3ST },
Kailang Yangdf694da2005-12-05 19:42:22 +01002063 /* TCL S700 */
2064 { .pci_subvendor = 0x19db, .pci_subdevice = 0x4188, .config = ALC880_TCL_S700 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065
2066 /* Back 3 jack, front 2 jack (Internal add Aux-In) */
Takashi Iwai72915482005-05-12 16:49:45 +02002067 { .pci_subvendor = 0x1025, .pci_subdevice = 0xe310, .config = ALC880_3ST },
Takashi Iwai16ded522005-06-10 19:58:24 +02002068 { .pci_subvendor = 0x104d, .pci_subdevice = 0x81d6, .config = ALC880_3ST },
Davide Libenzi0ca21612005-09-05 11:56:47 +02002069 { .pci_subvendor = 0x104d, .pci_subdevice = 0x81a0, .config = ALC880_3ST },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
2071 /* Back 3 jack plus 1 SPDIF out jack, front 2 jack */
2072 { .modelname = "3stack-digout", .config = ALC880_3ST_DIG },
Takashi Iwai72915482005-05-12 16:49:45 +02002073 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe308, .config = ALC880_3ST_DIG },
Jaroslav Kysela5a47fe3c2005-08-15 20:01:40 +02002074 { .pci_subvendor = 0x1025, .pci_subdevice = 0x0070, .config = ALC880_3ST_DIG },
Kailang Yangdf694da2005-12-05 19:42:22 +01002075 /* Clevo m520G NB */
2076 { .pci_subvendor = 0x1558, .pci_subdevice = 0x0520, .config = ALC880_CLEVO },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077
2078 /* Back 3 jack plus 1 SPDIF out jack, front 2 jack (Internal add Aux-In)*/
Takashi Iwai72915482005-05-12 16:49:45 +02002079 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe305, .config = ALC880_3ST_DIG },
2080 { .pci_subvendor = 0x8086, .pci_subdevice = 0xd402, .config = ALC880_3ST_DIG },
2081 { .pci_subvendor = 0x1025, .pci_subdevice = 0xe309, .config = ALC880_3ST_DIG },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
2083 /* Back 5 jack, front 2 jack */
2084 { .modelname = "5stack", .config = ALC880_5ST },
Takashi Iwai72915482005-05-12 16:49:45 +02002085 { .pci_subvendor = 0x107b, .pci_subdevice = 0x3033, .config = ALC880_5ST },
2086 { .pci_subvendor = 0x107b, .pci_subdevice = 0x4039, .config = ALC880_5ST },
2087 { .pci_subvendor = 0x107b, .pci_subdevice = 0x3032, .config = ALC880_5ST },
2088 { .pci_subvendor = 0x103c, .pci_subdevice = 0x2a09, .config = ALC880_5ST },
Takashi Iwai16ded522005-06-10 19:58:24 +02002089 { .pci_subvendor = 0x1043, .pci_subdevice = 0x814e, .config = ALC880_5ST },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090
2091 /* Back 5 jack plus 1 SPDIF out jack, front 2 jack */
2092 { .modelname = "5stack-digout", .config = ALC880_5ST_DIG },
Takashi Iwai72915482005-05-12 16:49:45 +02002093 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe224, .config = ALC880_5ST_DIG },
2094 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe400, .config = ALC880_5ST_DIG },
2095 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe401, .config = ALC880_5ST_DIG },
2096 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe402, .config = ALC880_5ST_DIG },
2097 { .pci_subvendor = 0x8086, .pci_subdevice = 0xd400, .config = ALC880_5ST_DIG },
2098 { .pci_subvendor = 0x8086, .pci_subdevice = 0xd401, .config = ALC880_5ST_DIG },
2099 { .pci_subvendor = 0x8086, .pci_subdevice = 0xa100, .config = ALC880_5ST_DIG },
2100 { .pci_subvendor = 0x1565, .pci_subdevice = 0x8202, .config = ALC880_5ST_DIG },
Takashi Iwai16ded522005-06-10 19:58:24 +02002101 { .pci_subvendor = 0x1019, .pci_subdevice = 0xa880, .config = ALC880_5ST_DIG },
Takashi Iwaiede35312006-03-13 14:21:16 +01002102 { .pci_subvendor = 0xa0a0, .pci_subdevice = 0x0560,
2103 .config = ALC880_5ST_DIG }, /* Aopen i915GMm-HFS */
Takashi Iwai7a318a72005-06-28 14:16:21 +02002104 /* { .pci_subvendor = 0x1019, .pci_subdevice = 0xa884, .config = ALC880_5ST_DIG }, */ /* conflict with 6stack */
Takashi Iwai16ded522005-06-10 19:58:24 +02002105 { .pci_subvendor = 0x1695, .pci_subdevice = 0x400d, .config = ALC880_5ST_DIG },
Takashi Iwaib0af0de2005-06-21 14:49:19 +02002106 /* note subvendor = 0 below */
2107 /* { .pci_subvendor = 0x0000, .pci_subdevice = 0x8086, .config = ALC880_5ST_DIG }, */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
2109 { .modelname = "w810", .config = ALC880_W810 },
Takashi Iwai72915482005-05-12 16:49:45 +02002110 { .pci_subvendor = 0x161f, .pci_subdevice = 0x203d, .config = ALC880_W810 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111
Takashi Iwaidfc0ff62005-05-12 14:31:49 +02002112 { .modelname = "z71v", .config = ALC880_Z71V },
Takashi Iwai72915482005-05-12 16:49:45 +02002113 { .pci_subvendor = 0x1043, .pci_subdevice = 0x1964, .config = ALC880_Z71V },
Takashi Iwaidfc0ff62005-05-12 14:31:49 +02002114
Takashi Iwaib6482d42005-06-27 15:32:43 +02002115 { .modelname = "6stack", .config = ALC880_6ST },
Takashi Iwai7632c7b2005-12-07 18:25:47 +01002116 { .pci_subvendor = 0x1043, .pci_subdevice = 0x8196, .config = ALC880_6ST }, /* ASUS P5GD1-HVM */
Kailang Yangdf694da2005-12-05 19:42:22 +01002117 { .pci_subvendor = 0x1043, .pci_subdevice = 0x81b4, .config = ALC880_6ST },
Takashi Iwai7a318a72005-06-28 14:16:21 +02002118 { .pci_subvendor = 0x1019, .pci_subdevice = 0xa884, .config = ALC880_6ST }, /* Acer APFV */
Arnaud Patardbae2bdb2006-01-27 12:05:02 +01002119 { .pci_subvendor = 0x1458, .pci_subdevice = 0xa102, .config = ALC880_6ST }, /* Gigabyte K8N51 */
Takashi Iwaib6482d42005-06-27 15:32:43 +02002120
2121 { .modelname = "6stack-digout", .config = ALC880_6ST_DIG },
Takashi Iwai16ded522005-06-10 19:58:24 +02002122 { .pci_subvendor = 0x2668, .pci_subdevice = 0x8086, .config = ALC880_6ST_DIG },
2123 { .pci_subvendor = 0x8086, .pci_subdevice = 0x2668, .config = ALC880_6ST_DIG },
2124 { .pci_subvendor = 0x1462, .pci_subdevice = 0x1150, .config = ALC880_6ST_DIG },
2125 { .pci_subvendor = 0xe803, .pci_subdevice = 0x1019, .config = ALC880_6ST_DIG },
Kailang Yangdf694da2005-12-05 19:42:22 +01002126 { .pci_subvendor = 0x1039, .pci_subdevice = 0x1234, .config = ALC880_6ST_DIG },
2127 { .pci_subvendor = 0x1025, .pci_subdevice = 0x0077, .config = ALC880_6ST_DIG },
2128 { .pci_subvendor = 0x1025, .pci_subdevice = 0x0078, .config = ALC880_6ST_DIG },
2129 { .pci_subvendor = 0x1025, .pci_subdevice = 0x0087, .config = ALC880_6ST_DIG },
Takashi Iwai041dec02005-12-23 12:27:52 +01002130 { .pci_subvendor = 0x1297, .pci_subdevice = 0xc790, .config = ALC880_6ST_DIG }, /* Shuttle ST20G5 */
Takashi Iwaia12606c2006-03-15 18:24:43 +01002131 { .pci_subvendor = 0x1509, .pci_subdevice = 0x925d, .config = ALC880_6ST_DIG }, /* FIC P4M-915GD1 */
Takashi Iwai16ded522005-06-10 19:58:24 +02002132
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002133 { .modelname = "asus", .config = ALC880_ASUS },
Takashi Iwai16ded522005-06-10 19:58:24 +02002134 { .pci_subvendor = 0x1043, .pci_subdevice = 0x1964, .config = ALC880_ASUS_DIG },
2135 { .pci_subvendor = 0x1043, .pci_subdevice = 0x1973, .config = ALC880_ASUS_DIG },
2136 { .pci_subvendor = 0x1043, .pci_subdevice = 0x19b3, .config = ALC880_ASUS_DIG },
2137 { .pci_subvendor = 0x1043, .pci_subdevice = 0x1113, .config = ALC880_ASUS_DIG },
Takashi Iwai86488112005-09-09 13:56:32 +02002138 { .pci_subvendor = 0x1043, .pci_subdevice = 0x1173, .config = ALC880_ASUS_DIG },
Takashi Iwai16ded522005-06-10 19:58:24 +02002139 { .pci_subvendor = 0x1043, .pci_subdevice = 0x1993, .config = ALC880_ASUS },
2140 { .pci_subvendor = 0x1043, .pci_subdevice = 0x10c3, .config = ALC880_ASUS_DIG },
2141 { .pci_subvendor = 0x1043, .pci_subdevice = 0x1133, .config = ALC880_ASUS },
2142 { .pci_subvendor = 0x1043, .pci_subdevice = 0x1123, .config = ALC880_ASUS_DIG },
2143 { .pci_subvendor = 0x1043, .pci_subdevice = 0x1143, .config = ALC880_ASUS },
2144 { .pci_subvendor = 0x1043, .pci_subdevice = 0x10b3, .config = ALC880_ASUS_W1V },
Takashi Iwai84f34302006-03-21 19:12:53 +01002145 { .pci_subvendor = 0x1043, .pci_subdevice = 0x8181, .config = ALC880_ASUS_DIG }, /* ASUS P4GPL-X */
Kailang Yangdf694da2005-12-05 19:42:22 +01002146 { .pci_subvendor = 0x1558, .pci_subdevice = 0x5401, .config = ALC880_ASUS_DIG2 },
Takashi Iwai16ded522005-06-10 19:58:24 +02002147
2148 { .modelname = "uniwill", .config = ALC880_UNIWILL_DIG },
2149 { .pci_subvendor = 0x1584, .pci_subdevice = 0x9050, .config = ALC880_UNIWILL_DIG },
2150
2151 { .modelname = "F1734", .config = ALC880_F1734 },
2152 { .pci_subvendor = 0x1734, .pci_subdevice = 0x107c, .config = ALC880_F1734 },
Kailang Yangdf694da2005-12-05 19:42:22 +01002153 { .pci_subvendor = 0x1584, .pci_subdevice = 0x9054, .config = ALC880_F1734 },
Takashi Iwai16ded522005-06-10 19:58:24 +02002154
Takashi Iwaiae6b8132006-03-03 16:47:17 +01002155 { .modelname = "lg", .config = ALC880_LG },
2156 { .pci_subvendor = 0x1854, .pci_subdevice = 0x003b, .config = ALC880_LG },
2157
Takashi Iwaid6815182006-03-23 16:06:23 +01002158 { .modelname = "lg-lw", .config = ALC880_LG_LW },
2159 { .pci_subvendor = 0x1854, .pci_subdevice = 0x0018, .config = ALC880_LG_LW },
2160
Takashi Iwai2fa522b2005-05-12 14:51:12 +02002161#ifdef CONFIG_SND_DEBUG
2162 { .modelname = "test", .config = ALC880_TEST },
2163#endif
Kailang Yangdf694da2005-12-05 19:42:22 +01002164 { .modelname = "auto", .config = ALC880_AUTO },
Takashi Iwai2fa522b2005-05-12 14:51:12 +02002165
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 {}
2167};
2168
Takashi Iwai16ded522005-06-10 19:58:24 +02002169/*
Kailang Yangdf694da2005-12-05 19:42:22 +01002170 * ALC880 codec presets
Takashi Iwai16ded522005-06-10 19:58:24 +02002171 */
Takashi Iwai16ded522005-06-10 19:58:24 +02002172static struct alc_config_preset alc880_presets[] = {
2173 [ALC880_3ST] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002174 .mixers = { alc880_three_stack_mixer },
2175 .init_verbs = { alc880_volume_init_verbs, alc880_pin_3stack_init_verbs },
Takashi Iwai16ded522005-06-10 19:58:24 +02002176 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
Takashi Iwai16ded522005-06-10 19:58:24 +02002177 .dac_nids = alc880_dac_nids,
Takashi Iwai16ded522005-06-10 19:58:24 +02002178 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2179 .channel_mode = alc880_threestack_modes,
2180 .input_mux = &alc880_capture_source,
2181 },
2182 [ALC880_3ST_DIG] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002183 .mixers = { alc880_three_stack_mixer },
2184 .init_verbs = { alc880_volume_init_verbs, alc880_pin_3stack_init_verbs },
Takashi Iwai16ded522005-06-10 19:58:24 +02002185 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
Takashi Iwai16ded522005-06-10 19:58:24 +02002186 .dac_nids = alc880_dac_nids,
2187 .dig_out_nid = ALC880_DIGOUT_NID,
Takashi Iwai16ded522005-06-10 19:58:24 +02002188 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2189 .channel_mode = alc880_threestack_modes,
2190 .input_mux = &alc880_capture_source,
2191 },
Kailang Yangdf694da2005-12-05 19:42:22 +01002192 [ALC880_TCL_S700] = {
2193 .mixers = { alc880_tcl_s700_mixer },
2194 .init_verbs = { alc880_volume_init_verbs,
2195 alc880_pin_tcl_S700_init_verbs,
2196 alc880_gpio2_init_verbs },
2197 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2198 .dac_nids = alc880_dac_nids,
2199 .hp_nid = 0x03,
2200 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2201 .channel_mode = alc880_2_jack_modes,
2202 .input_mux = &alc880_capture_source,
2203 },
Takashi Iwai16ded522005-06-10 19:58:24 +02002204 [ALC880_5ST] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002205 .mixers = { alc880_three_stack_mixer, alc880_five_stack_mixer},
2206 .init_verbs = { alc880_volume_init_verbs, alc880_pin_5stack_init_verbs },
Takashi Iwai16ded522005-06-10 19:58:24 +02002207 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2208 .dac_nids = alc880_dac_nids,
Takashi Iwai16ded522005-06-10 19:58:24 +02002209 .num_channel_mode = ARRAY_SIZE(alc880_fivestack_modes),
2210 .channel_mode = alc880_fivestack_modes,
2211 .input_mux = &alc880_capture_source,
2212 },
2213 [ALC880_5ST_DIG] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002214 .mixers = { alc880_three_stack_mixer, alc880_five_stack_mixer },
2215 .init_verbs = { alc880_volume_init_verbs, alc880_pin_5stack_init_verbs },
Takashi Iwai16ded522005-06-10 19:58:24 +02002216 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2217 .dac_nids = alc880_dac_nids,
2218 .dig_out_nid = ALC880_DIGOUT_NID,
Takashi Iwai16ded522005-06-10 19:58:24 +02002219 .num_channel_mode = ARRAY_SIZE(alc880_fivestack_modes),
2220 .channel_mode = alc880_fivestack_modes,
2221 .input_mux = &alc880_capture_source,
2222 },
Takashi Iwaib6482d42005-06-27 15:32:43 +02002223 [ALC880_6ST] = {
2224 .mixers = { alc880_six_stack_mixer },
2225 .init_verbs = { alc880_volume_init_verbs, alc880_pin_6stack_init_verbs },
2226 .num_dacs = ARRAY_SIZE(alc880_6st_dac_nids),
2227 .dac_nids = alc880_6st_dac_nids,
2228 .num_channel_mode = ARRAY_SIZE(alc880_sixstack_modes),
2229 .channel_mode = alc880_sixstack_modes,
2230 .input_mux = &alc880_6stack_capture_source,
2231 },
Takashi Iwai16ded522005-06-10 19:58:24 +02002232 [ALC880_6ST_DIG] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002233 .mixers = { alc880_six_stack_mixer },
2234 .init_verbs = { alc880_volume_init_verbs, alc880_pin_6stack_init_verbs },
Takashi Iwai16ded522005-06-10 19:58:24 +02002235 .num_dacs = ARRAY_SIZE(alc880_6st_dac_nids),
2236 .dac_nids = alc880_6st_dac_nids,
2237 .dig_out_nid = ALC880_DIGOUT_NID,
Takashi Iwai16ded522005-06-10 19:58:24 +02002238 .num_channel_mode = ARRAY_SIZE(alc880_sixstack_modes),
2239 .channel_mode = alc880_sixstack_modes,
2240 .input_mux = &alc880_6stack_capture_source,
2241 },
2242 [ALC880_W810] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002243 .mixers = { alc880_w810_base_mixer },
Takashi Iwaib0af0de2005-06-21 14:49:19 +02002244 .init_verbs = { alc880_volume_init_verbs, alc880_pin_w810_init_verbs,
2245 alc880_gpio2_init_verbs },
Takashi Iwai16ded522005-06-10 19:58:24 +02002246 .num_dacs = ARRAY_SIZE(alc880_w810_dac_nids),
2247 .dac_nids = alc880_w810_dac_nids,
2248 .dig_out_nid = ALC880_DIGOUT_NID,
Takashi Iwai16ded522005-06-10 19:58:24 +02002249 .num_channel_mode = ARRAY_SIZE(alc880_w810_modes),
2250 .channel_mode = alc880_w810_modes,
2251 .input_mux = &alc880_capture_source,
2252 },
2253 [ALC880_Z71V] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002254 .mixers = { alc880_z71v_mixer },
Takashi Iwaib0af0de2005-06-21 14:49:19 +02002255 .init_verbs = { alc880_volume_init_verbs, alc880_pin_z71v_init_verbs },
Takashi Iwai16ded522005-06-10 19:58:24 +02002256 .num_dacs = ARRAY_SIZE(alc880_z71v_dac_nids),
2257 .dac_nids = alc880_z71v_dac_nids,
2258 .dig_out_nid = ALC880_DIGOUT_NID,
2259 .hp_nid = 0x03,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002260 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2261 .channel_mode = alc880_2_jack_modes,
Takashi Iwai16ded522005-06-10 19:58:24 +02002262 .input_mux = &alc880_capture_source,
2263 },
2264 [ALC880_F1734] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002265 .mixers = { alc880_f1734_mixer },
2266 .init_verbs = { alc880_volume_init_verbs, alc880_pin_f1734_init_verbs },
2267 .num_dacs = ARRAY_SIZE(alc880_f1734_dac_nids),
2268 .dac_nids = alc880_f1734_dac_nids,
2269 .hp_nid = 0x02,
2270 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2271 .channel_mode = alc880_2_jack_modes,
Takashi Iwai16ded522005-06-10 19:58:24 +02002272 .input_mux = &alc880_capture_source,
2273 },
2274 [ALC880_ASUS] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002275 .mixers = { alc880_asus_mixer },
2276 .init_verbs = { alc880_volume_init_verbs, alc880_pin_asus_init_verbs,
2277 alc880_gpio1_init_verbs },
2278 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2279 .dac_nids = alc880_asus_dac_nids,
2280 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2281 .channel_mode = alc880_asus_modes,
Takashi Iwai16ded522005-06-10 19:58:24 +02002282 .input_mux = &alc880_capture_source,
2283 },
2284 [ALC880_ASUS_DIG] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002285 .mixers = { alc880_asus_mixer },
2286 .init_verbs = { alc880_volume_init_verbs, alc880_pin_asus_init_verbs,
2287 alc880_gpio1_init_verbs },
2288 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2289 .dac_nids = alc880_asus_dac_nids,
Takashi Iwai16ded522005-06-10 19:58:24 +02002290 .dig_out_nid = ALC880_DIGOUT_NID,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002291 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2292 .channel_mode = alc880_asus_modes,
Takashi Iwai16ded522005-06-10 19:58:24 +02002293 .input_mux = &alc880_capture_source,
2294 },
Kailang Yangdf694da2005-12-05 19:42:22 +01002295 [ALC880_ASUS_DIG2] = {
2296 .mixers = { alc880_asus_mixer },
2297 .init_verbs = { alc880_volume_init_verbs, alc880_pin_asus_init_verbs,
2298 alc880_gpio2_init_verbs }, /* use GPIO2 */
2299 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2300 .dac_nids = alc880_asus_dac_nids,
2301 .dig_out_nid = ALC880_DIGOUT_NID,
2302 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2303 .channel_mode = alc880_asus_modes,
2304 .input_mux = &alc880_capture_source,
2305 },
Takashi Iwai16ded522005-06-10 19:58:24 +02002306 [ALC880_ASUS_W1V] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002307 .mixers = { alc880_asus_mixer, alc880_asus_w1v_mixer },
2308 .init_verbs = { alc880_volume_init_verbs, alc880_pin_asus_init_verbs,
2309 alc880_gpio1_init_verbs },
2310 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2311 .dac_nids = alc880_asus_dac_nids,
Takashi Iwai16ded522005-06-10 19:58:24 +02002312 .dig_out_nid = ALC880_DIGOUT_NID,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002313 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2314 .channel_mode = alc880_asus_modes,
Takashi Iwai16ded522005-06-10 19:58:24 +02002315 .input_mux = &alc880_capture_source,
2316 },
2317 [ALC880_UNIWILL_DIG] = {
Takashi Iwai3c10a9d2005-08-23 20:02:27 +02002318 .mixers = { alc880_asus_mixer, alc880_pcbeep_mixer },
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002319 .init_verbs = { alc880_volume_init_verbs, alc880_pin_asus_init_verbs },
2320 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2321 .dac_nids = alc880_asus_dac_nids,
Takashi Iwai16ded522005-06-10 19:58:24 +02002322 .dig_out_nid = ALC880_DIGOUT_NID,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002323 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2324 .channel_mode = alc880_asus_modes,
Takashi Iwai16ded522005-06-10 19:58:24 +02002325 .input_mux = &alc880_capture_source,
2326 },
Kailang Yangdf694da2005-12-05 19:42:22 +01002327 [ALC880_CLEVO] = {
2328 .mixers = { alc880_three_stack_mixer },
2329 .init_verbs = { alc880_volume_init_verbs,
2330 alc880_pin_clevo_init_verbs },
2331 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2332 .dac_nids = alc880_dac_nids,
2333 .hp_nid = 0x03,
2334 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2335 .channel_mode = alc880_threestack_modes,
2336 .input_mux = &alc880_capture_source,
2337 },
Takashi Iwaiae6b8132006-03-03 16:47:17 +01002338 [ALC880_LG] = {
2339 .mixers = { alc880_lg_mixer },
2340 .init_verbs = { alc880_volume_init_verbs,
2341 alc880_lg_init_verbs },
2342 .num_dacs = ARRAY_SIZE(alc880_lg_dac_nids),
2343 .dac_nids = alc880_lg_dac_nids,
2344 .dig_out_nid = ALC880_DIGOUT_NID,
2345 .num_channel_mode = ARRAY_SIZE(alc880_lg_ch_modes),
2346 .channel_mode = alc880_lg_ch_modes,
2347 .input_mux = &alc880_lg_capture_source,
2348 .unsol_event = alc880_lg_unsol_event,
2349 .init_hook = alc880_lg_automute,
2350 },
Takashi Iwaid6815182006-03-23 16:06:23 +01002351 [ALC880_LG_LW] = {
2352 .mixers = { alc880_lg_lw_mixer },
2353 .init_verbs = { alc880_volume_init_verbs,
2354 alc880_lg_lw_init_verbs },
2355 .num_dacs = 1,
2356 .dac_nids = alc880_dac_nids,
2357 .dig_out_nid = ALC880_DIGOUT_NID,
2358 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2359 .channel_mode = alc880_2_jack_modes,
2360 .input_mux = &alc880_lg_lw_capture_source,
2361 .unsol_event = alc880_lg_lw_unsol_event,
2362 .init_hook = alc880_lg_lw_automute,
2363 },
Takashi Iwai16ded522005-06-10 19:58:24 +02002364#ifdef CONFIG_SND_DEBUG
2365 [ALC880_TEST] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002366 .mixers = { alc880_test_mixer },
2367 .init_verbs = { alc880_test_init_verbs },
Takashi Iwai16ded522005-06-10 19:58:24 +02002368 .num_dacs = ARRAY_SIZE(alc880_test_dac_nids),
2369 .dac_nids = alc880_test_dac_nids,
2370 .dig_out_nid = ALC880_DIGOUT_NID,
Takashi Iwai16ded522005-06-10 19:58:24 +02002371 .num_channel_mode = ARRAY_SIZE(alc880_test_modes),
2372 .channel_mode = alc880_test_modes,
2373 .input_mux = &alc880_test_capture_source,
2374 },
2375#endif
2376};
2377
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002378/*
2379 * Automatic parse of I/O pins from the BIOS configuration
2380 */
2381
2382#define NUM_CONTROL_ALLOC 32
2383#define NUM_VERB_ALLOC 32
2384
2385enum {
2386 ALC_CTL_WIDGET_VOL,
2387 ALC_CTL_WIDGET_MUTE,
2388 ALC_CTL_BIND_MUTE,
2389};
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002390static struct snd_kcontrol_new alc880_control_templates[] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002391 HDA_CODEC_VOLUME(NULL, 0, 0, 0),
2392 HDA_CODEC_MUTE(NULL, 0, 0, 0),
Takashi Iwai985be542005-11-02 18:26:49 +01002393 HDA_BIND_MUTE(NULL, 0, 0, 0),
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002394};
2395
2396/* add dynamic controls */
2397static int add_control(struct alc_spec *spec, int type, const char *name, unsigned long val)
2398{
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002399 struct snd_kcontrol_new *knew;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002400
2401 if (spec->num_kctl_used >= spec->num_kctl_alloc) {
2402 int num = spec->num_kctl_alloc + NUM_CONTROL_ALLOC;
2403
2404 knew = kcalloc(num + 1, sizeof(*knew), GFP_KERNEL); /* array + terminator */
2405 if (! knew)
2406 return -ENOMEM;
2407 if (spec->kctl_alloc) {
2408 memcpy(knew, spec->kctl_alloc, sizeof(*knew) * spec->num_kctl_alloc);
2409 kfree(spec->kctl_alloc);
2410 }
2411 spec->kctl_alloc = knew;
2412 spec->num_kctl_alloc = num;
2413 }
2414
2415 knew = &spec->kctl_alloc[spec->num_kctl_used];
2416 *knew = alc880_control_templates[type];
Paulo Marques543537b2005-06-23 00:09:02 -07002417 knew->name = kstrdup(name, GFP_KERNEL);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002418 if (! knew->name)
2419 return -ENOMEM;
2420 knew->private_value = val;
2421 spec->num_kctl_used++;
2422 return 0;
2423}
2424
2425#define alc880_is_fixed_pin(nid) ((nid) >= 0x14 && (nid) <= 0x17)
2426#define alc880_fixed_pin_idx(nid) ((nid) - 0x14)
2427#define alc880_is_multi_pin(nid) ((nid) >= 0x18)
2428#define alc880_multi_pin_idx(nid) ((nid) - 0x18)
2429#define alc880_is_input_pin(nid) ((nid) >= 0x18)
2430#define alc880_input_pin_idx(nid) ((nid) - 0x18)
2431#define alc880_idx_to_dac(nid) ((nid) + 0x02)
2432#define alc880_dac_to_idx(nid) ((nid) - 0x02)
2433#define alc880_idx_to_mixer(nid) ((nid) + 0x0c)
2434#define alc880_idx_to_selector(nid) ((nid) + 0x10)
2435#define ALC880_PIN_CD_NID 0x1c
2436
2437/* fill in the dac_nids table from the parsed pin configuration */
2438static int alc880_auto_fill_dac_nids(struct alc_spec *spec, const struct auto_pin_cfg *cfg)
2439{
2440 hda_nid_t nid;
2441 int assigned[4];
2442 int i, j;
2443
2444 memset(assigned, 0, sizeof(assigned));
Takashi Iwaib0af0de2005-06-21 14:49:19 +02002445 spec->multiout.dac_nids = spec->private_dac_nids;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002446
2447 /* check the pins hardwired to audio widget */
2448 for (i = 0; i < cfg->line_outs; i++) {
2449 nid = cfg->line_out_pins[i];
2450 if (alc880_is_fixed_pin(nid)) {
2451 int idx = alc880_fixed_pin_idx(nid);
Libin Yang5014f192005-11-23 15:48:36 +01002452 spec->multiout.dac_nids[i] = alc880_idx_to_dac(idx);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002453 assigned[idx] = 1;
2454 }
2455 }
2456 /* left pins can be connect to any audio widget */
2457 for (i = 0; i < cfg->line_outs; i++) {
2458 nid = cfg->line_out_pins[i];
2459 if (alc880_is_fixed_pin(nid))
2460 continue;
2461 /* search for an empty channel */
2462 for (j = 0; j < cfg->line_outs; j++) {
2463 if (! assigned[j]) {
2464 spec->multiout.dac_nids[i] = alc880_idx_to_dac(j);
2465 assigned[j] = 1;
2466 break;
2467 }
2468 }
2469 }
2470 spec->multiout.num_dacs = cfg->line_outs;
2471 return 0;
2472}
2473
2474/* add playback controls from the parsed DAC table */
Kailang Yangdf694da2005-12-05 19:42:22 +01002475static int alc880_auto_create_multi_out_ctls(struct alc_spec *spec,
2476 const struct auto_pin_cfg *cfg)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002477{
2478 char name[32];
2479 static const char *chname[4] = { "Front", "Surround", NULL /*CLFE*/, "Side" };
2480 hda_nid_t nid;
2481 int i, err;
2482
2483 for (i = 0; i < cfg->line_outs; i++) {
2484 if (! spec->multiout.dac_nids[i])
2485 continue;
2486 nid = alc880_idx_to_mixer(alc880_dac_to_idx(spec->multiout.dac_nids[i]));
2487 if (i == 2) {
2488 /* Center/LFE */
2489 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL, "Center Playback Volume",
2490 HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT))) < 0)
2491 return err;
2492 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL, "LFE Playback Volume",
2493 HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_OUTPUT))) < 0)
2494 return err;
2495 if ((err = add_control(spec, ALC_CTL_BIND_MUTE, "Center Playback Switch",
2496 HDA_COMPOSE_AMP_VAL(nid, 1, 2, HDA_INPUT))) < 0)
2497 return err;
2498 if ((err = add_control(spec, ALC_CTL_BIND_MUTE, "LFE Playback Switch",
2499 HDA_COMPOSE_AMP_VAL(nid, 2, 2, HDA_INPUT))) < 0)
2500 return err;
2501 } else {
2502 sprintf(name, "%s Playback Volume", chname[i]);
2503 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
2504 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT))) < 0)
2505 return err;
2506 sprintf(name, "%s Playback Switch", chname[i]);
2507 if ((err = add_control(spec, ALC_CTL_BIND_MUTE, name,
2508 HDA_COMPOSE_AMP_VAL(nid, 3, 2, HDA_INPUT))) < 0)
2509 return err;
2510 }
2511 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002512 return 0;
2513}
2514
Takashi Iwai8d88bc32005-11-17 11:09:23 +01002515/* add playback controls for speaker and HP outputs */
2516static int alc880_auto_create_extra_out(struct alc_spec *spec, hda_nid_t pin,
2517 const char *pfx)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002518{
2519 hda_nid_t nid;
2520 int err;
Takashi Iwai8d88bc32005-11-17 11:09:23 +01002521 char name[32];
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002522
2523 if (! pin)
2524 return 0;
2525
2526 if (alc880_is_fixed_pin(pin)) {
2527 nid = alc880_idx_to_dac(alc880_fixed_pin_idx(pin));
Takashi Iwai82bc9552006-03-21 11:24:42 +01002528 /* specify the DAC as the extra output */
2529 if (! spec->multiout.hp_nid)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002530 spec->multiout.hp_nid = nid;
Takashi Iwai82bc9552006-03-21 11:24:42 +01002531 else
2532 spec->multiout.extra_out_nid[0] = nid;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002533 /* control HP volume/switch on the output mixer amp */
2534 nid = alc880_idx_to_mixer(alc880_fixed_pin_idx(pin));
Takashi Iwai8d88bc32005-11-17 11:09:23 +01002535 sprintf(name, "%s Playback Volume", pfx);
2536 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002537 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT))) < 0)
2538 return err;
Takashi Iwai8d88bc32005-11-17 11:09:23 +01002539 sprintf(name, "%s Playback Switch", pfx);
2540 if ((err = add_control(spec, ALC_CTL_BIND_MUTE, name,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002541 HDA_COMPOSE_AMP_VAL(nid, 3, 2, HDA_INPUT))) < 0)
2542 return err;
2543 } else if (alc880_is_multi_pin(pin)) {
2544 /* set manual connection */
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002545 /* we have only a switch on HP-out PIN */
Takashi Iwai8d88bc32005-11-17 11:09:23 +01002546 sprintf(name, "%s Playback Switch", pfx);
2547 if ((err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002548 HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT))) < 0)
2549 return err;
2550 }
2551 return 0;
2552}
2553
2554/* create input playback/capture controls for the given pin */
Kailang Yangdf694da2005-12-05 19:42:22 +01002555static int new_analog_input(struct alc_spec *spec, hda_nid_t pin, const char *ctlname,
2556 int idx, hda_nid_t mix_nid)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002557{
2558 char name[32];
Kailang Yangdf694da2005-12-05 19:42:22 +01002559 int err;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002560
2561 sprintf(name, "%s Playback Volume", ctlname);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002562 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
Kailang Yangdf694da2005-12-05 19:42:22 +01002563 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT))) < 0)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002564 return err;
2565 sprintf(name, "%s Playback Switch", ctlname);
2566 if ((err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
Kailang Yangdf694da2005-12-05 19:42:22 +01002567 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT))) < 0)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002568 return err;
2569 return 0;
2570}
2571
2572/* create playback/capture controls for input pins */
Kailang Yangdf694da2005-12-05 19:42:22 +01002573static int alc880_auto_create_analog_input_ctls(struct alc_spec *spec,
2574 const struct auto_pin_cfg *cfg)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002575{
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002576 struct hda_input_mux *imux = &spec->private_imux;
Kailang Yangdf694da2005-12-05 19:42:22 +01002577 int i, err, idx;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002578
2579 for (i = 0; i < AUTO_PIN_LAST; i++) {
2580 if (alc880_is_input_pin(cfg->input_pins[i])) {
Kailang Yangdf694da2005-12-05 19:42:22 +01002581 idx = alc880_input_pin_idx(cfg->input_pins[i]);
Takashi Iwai4a471b72005-12-07 13:56:29 +01002582 err = new_analog_input(spec, cfg->input_pins[i],
2583 auto_pin_cfg_labels[i],
Kailang Yangdf694da2005-12-05 19:42:22 +01002584 idx, 0x0b);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002585 if (err < 0)
2586 return err;
Takashi Iwai4a471b72005-12-07 13:56:29 +01002587 imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002588 imux->items[imux->num_items].index = alc880_input_pin_idx(cfg->input_pins[i]);
2589 imux->num_items++;
2590 }
2591 }
2592 return 0;
2593}
2594
Kailang Yangdf694da2005-12-05 19:42:22 +01002595static void alc880_auto_set_output_and_unmute(struct hda_codec *codec,
2596 hda_nid_t nid, int pin_type,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002597 int dac_idx)
2598{
2599 /* set as output */
2600 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
2601 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
2602 /* need the manual connection? */
2603 if (alc880_is_multi_pin(nid)) {
2604 struct alc_spec *spec = codec->spec;
2605 int idx = alc880_multi_pin_idx(nid);
2606 snd_hda_codec_write(codec, alc880_idx_to_selector(idx), 0,
2607 AC_VERB_SET_CONNECT_SEL,
2608 alc880_dac_to_idx(spec->multiout.dac_nids[dac_idx]));
2609 }
2610}
2611
2612static void alc880_auto_init_multi_out(struct hda_codec *codec)
2613{
2614 struct alc_spec *spec = codec->spec;
2615 int i;
2616
2617 for (i = 0; i < spec->autocfg.line_outs; i++) {
2618 hda_nid_t nid = spec->autocfg.line_out_pins[i];
2619 alc880_auto_set_output_and_unmute(codec, nid, PIN_OUT, i);
2620 }
2621}
2622
Takashi Iwai8d88bc32005-11-17 11:09:23 +01002623static void alc880_auto_init_extra_out(struct hda_codec *codec)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002624{
2625 struct alc_spec *spec = codec->spec;
2626 hda_nid_t pin;
2627
Takashi Iwai82bc9552006-03-21 11:24:42 +01002628 pin = spec->autocfg.speaker_pins[0];
Takashi Iwai8d88bc32005-11-17 11:09:23 +01002629 if (pin) /* connect to front */
2630 alc880_auto_set_output_and_unmute(codec, pin, PIN_OUT, 0);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002631 pin = spec->autocfg.hp_pin;
2632 if (pin) /* connect to front */
2633 alc880_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
2634}
2635
2636static void alc880_auto_init_analog_input(struct hda_codec *codec)
2637{
2638 struct alc_spec *spec = codec->spec;
2639 int i;
2640
2641 for (i = 0; i < AUTO_PIN_LAST; i++) {
2642 hda_nid_t nid = spec->autocfg.input_pins[i];
2643 if (alc880_is_input_pin(nid)) {
2644 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
2645 i <= AUTO_PIN_FRONT_MIC ? PIN_VREF80 : PIN_IN);
2646 if (nid != ALC880_PIN_CD_NID)
2647 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
2648 AMP_OUT_MUTE);
2649 }
2650 }
2651}
2652
2653/* parse the BIOS configuration and set up the alc_spec */
2654/* return 1 if successful, 0 if the proper config is not found, or a negative error code */
2655static int alc880_parse_auto_config(struct hda_codec *codec)
2656{
2657 struct alc_spec *spec = codec->spec;
2658 int err;
Kailang Yangdf694da2005-12-05 19:42:22 +01002659 static hda_nid_t alc880_ignore[] = { 0x1d, 0 };
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002660
Kailang Yangdf694da2005-12-05 19:42:22 +01002661 if ((err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
2662 alc880_ignore)) < 0)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002663 return err;
Takashi Iwai82bc9552006-03-21 11:24:42 +01002664 if (! spec->autocfg.line_outs)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002665 return 0; /* can't find valid BIOS pin config */
Kailang Yangdf694da2005-12-05 19:42:22 +01002666
2667 if ((err = alc880_auto_fill_dac_nids(spec, &spec->autocfg)) < 0 ||
2668 (err = alc880_auto_create_multi_out_ctls(spec, &spec->autocfg)) < 0 ||
Takashi Iwai82bc9552006-03-21 11:24:42 +01002669 (err = alc880_auto_create_extra_out(spec,
2670 spec->autocfg.speaker_pins[0],
Takashi Iwai8d88bc32005-11-17 11:09:23 +01002671 "Speaker")) < 0 ||
Takashi Iwai82bc9552006-03-21 11:24:42 +01002672 (err = alc880_auto_create_extra_out(spec, spec->autocfg.hp_pin,
Takashi Iwai8d88bc32005-11-17 11:09:23 +01002673 "Headphone")) < 0 ||
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002674 (err = alc880_auto_create_analog_input_ctls(spec, &spec->autocfg)) < 0)
2675 return err;
2676
2677 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
2678
2679 if (spec->autocfg.dig_out_pin)
2680 spec->multiout.dig_out_nid = ALC880_DIGOUT_NID;
2681 if (spec->autocfg.dig_in_pin)
2682 spec->dig_in_nid = ALC880_DIGIN_NID;
2683
2684 if (spec->kctl_alloc)
2685 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
2686
2687 spec->init_verbs[spec->num_init_verbs++] = alc880_volume_init_verbs;
2688
2689 spec->input_mux = &spec->private_imux;
2690
2691 return 1;
2692}
2693
Takashi Iwaiae6b8132006-03-03 16:47:17 +01002694/* additional initialization for auto-configuration model */
2695static void alc880_auto_init(struct hda_codec *codec)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002696{
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002697 alc880_auto_init_multi_out(codec);
Takashi Iwai8d88bc32005-11-17 11:09:23 +01002698 alc880_auto_init_extra_out(codec);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002699 alc880_auto_init_analog_input(codec);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002700}
2701
2702/*
2703 * OK, here we have finally the patch for ALC880
2704 */
2705
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706static int patch_alc880(struct hda_codec *codec)
2707{
2708 struct alc_spec *spec;
2709 int board_config;
Kailang Yangdf694da2005-12-05 19:42:22 +01002710 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711
Takashi Iwaie560d8d2005-09-09 14:21:46 +02002712 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 if (spec == NULL)
2714 return -ENOMEM;
2715
2716 codec->spec = spec;
2717
2718 board_config = snd_hda_check_board_config(codec, alc880_cfg_tbl);
Takashi Iwai16ded522005-06-10 19:58:24 +02002719 if (board_config < 0 || board_config >= ALC880_MODEL_LAST) {
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002720 printk(KERN_INFO "hda_codec: Unknown model for ALC880, trying auto-probe from BIOS...\n");
2721 board_config = ALC880_AUTO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722 }
2723
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002724 if (board_config == ALC880_AUTO) {
2725 /* automatic parse from the BIOS config */
2726 err = alc880_parse_auto_config(codec);
2727 if (err < 0) {
2728 alc_free(codec);
2729 return err;
2730 } else if (! err) {
2731 printk(KERN_INFO "hda_codec: Cannot set up configuration from BIOS. Using 3-stack mode...\n");
2732 board_config = ALC880_3ST;
2733 }
2734 }
2735
Kailang Yangdf694da2005-12-05 19:42:22 +01002736 if (board_config != ALC880_AUTO)
2737 setup_preset(spec, &alc880_presets[board_config]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738
2739 spec->stream_name_analog = "ALC880 Analog";
2740 spec->stream_analog_playback = &alc880_pcm_analog_playback;
2741 spec->stream_analog_capture = &alc880_pcm_analog_capture;
2742
2743 spec->stream_name_digital = "ALC880 Digital";
2744 spec->stream_digital_playback = &alc880_pcm_digital_playback;
2745 spec->stream_digital_capture = &alc880_pcm_digital_capture;
2746
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002747 if (! spec->adc_nids && spec->input_mux) {
2748 /* check whether NID 0x07 is valid */
Takashi Iwai54d17402005-11-21 16:33:22 +01002749 unsigned int wcap = get_wcaps(codec, alc880_adc_nids[0]);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002750 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT; /* get type */
2751 if (wcap != AC_WID_AUD_IN) {
2752 spec->adc_nids = alc880_adc_nids_alt;
2753 spec->num_adc_nids = ARRAY_SIZE(alc880_adc_nids_alt);
2754 spec->mixers[spec->num_mixers] = alc880_capture_alt_mixer;
2755 spec->num_mixers++;
2756 } else {
2757 spec->adc_nids = alc880_adc_nids;
2758 spec->num_adc_nids = ARRAY_SIZE(alc880_adc_nids);
2759 spec->mixers[spec->num_mixers] = alc880_capture_mixer;
2760 spec->num_mixers++;
2761 }
2762 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763
2764 codec->patch_ops = alc_patch_ops;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002765 if (board_config == ALC880_AUTO)
Takashi Iwaiae6b8132006-03-03 16:47:17 +01002766 spec->init_hook = alc880_auto_init;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767
2768 return 0;
2769}
2770
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002771
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772/*
2773 * ALC260 support
2774 */
2775
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002776static hda_nid_t alc260_dac_nids[1] = {
2777 /* front */
2778 0x02,
2779};
2780
2781static hda_nid_t alc260_adc_nids[1] = {
2782 /* ADC0 */
2783 0x04,
2784};
2785
Kailang Yangdf694da2005-12-05 19:42:22 +01002786static hda_nid_t alc260_adc_nids_alt[1] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002787 /* ADC1 */
2788 0x05,
2789};
2790
Kailang Yangdf694da2005-12-05 19:42:22 +01002791static hda_nid_t alc260_hp_adc_nids[2] = {
2792 /* ADC1, 0 */
2793 0x05, 0x04
2794};
2795
Jonathan Woithed57fdac2006-02-28 11:38:35 +01002796/* NIDs used when simultaneous access to both ADCs makes sense. Note that
2797 * alc260_capture_mixer assumes ADC0 (nid 0x04) is the first ADC.
2798 */
2799static hda_nid_t alc260_dual_adc_nids[2] = {
Jonathan Woithe4c5186e2006-02-09 11:53:48 +01002800 /* ADC0, ADC1 */
2801 0x04, 0x05
2802};
2803
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002804#define ALC260_DIGOUT_NID 0x03
2805#define ALC260_DIGIN_NID 0x06
2806
2807static struct hda_input_mux alc260_capture_source = {
2808 .num_items = 4,
2809 .items = {
2810 { "Mic", 0x0 },
2811 { "Front Mic", 0x1 },
2812 { "Line", 0x2 },
2813 { "CD", 0x4 },
2814 },
2815};
2816
Jonathan Woithe17e7aec2006-02-28 11:35:18 +01002817/* On Fujitsu S702x laptops capture only makes sense from Mic/LineIn jack,
2818 * headphone jack and the internal CD lines.
Jonathan Woithea9430dd2005-09-16 19:12:48 +02002819 */
2820static struct hda_input_mux alc260_fujitsu_capture_source = {
Jonathan Woithe4c5186e2006-02-09 11:53:48 +01002821 .num_items = 3,
Jonathan Woithea9430dd2005-09-16 19:12:48 +02002822 .items = {
2823 { "Mic/Line", 0x0 },
2824 { "CD", 0x4 },
Jonathan Woithe4c5186e2006-02-09 11:53:48 +01002825 { "Headphone", 0x2 },
Jonathan Woithea9430dd2005-09-16 19:12:48 +02002826 },
2827};
2828
Jonathan Woithe0bfc90e2006-02-28 11:45:11 +01002829/* Acer TravelMate(/Extensa/Aspire) notebooks have similar configutation to
2830 * the Fujitsu S702x, but jacks are marked differently. We won't allow
2831 * retasking the Headphone jack, so it won't be available here.
2832 */
2833static struct hda_input_mux alc260_acer_capture_source = {
2834 .num_items = 3,
2835 .items = {
2836 { "Mic", 0x0 },
2837 { "Line", 0x2 },
2838 { "CD", 0x4 },
2839 },
2840};
2841
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842/*
2843 * This is just place-holder, so there's something for alc_build_pcms to look
2844 * at when it calculates the maximum number of channels. ALC260 has no mixer
2845 * element which allows changing the channel mode, so the verb list is
2846 * never used.
2847 */
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002848static struct hda_channel_mode alc260_modes[1] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849 { 2, NULL },
2850};
2851
Kailang Yangdf694da2005-12-05 19:42:22 +01002852
2853/* Mixer combinations
2854 *
2855 * basic: base_output + input + pc_beep + capture
2856 * HP: base_output + input + capture_alt
2857 * HP_3013: hp_3013 + input + capture
2858 * fujitsu: fujitsu + capture
Jonathan Woithe0bfc90e2006-02-28 11:45:11 +01002859 * acer: acer + capture
Kailang Yangdf694da2005-12-05 19:42:22 +01002860 */
2861
2862static struct snd_kcontrol_new alc260_base_output_mixer[] = {
Takashi Iwai05acb862005-06-10 19:50:25 +02002863 HDA_CODEC_VOLUME("Front Playback Volume", 0x08, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +01002864 HDA_BIND_MUTE("Front Playback Switch", 0x08, 2, HDA_INPUT),
Kailang Yangdf694da2005-12-05 19:42:22 +01002865 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x09, 0x0, HDA_OUTPUT),
2866 HDA_BIND_MUTE("Headphone Playback Switch", 0x09, 2, HDA_INPUT),
2867 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
2868 HDA_BIND_MUTE_MONO("Mono Playback Switch", 0x0a, 1, 2, HDA_INPUT),
2869 { } /* end */
2870};
2871
2872static struct snd_kcontrol_new alc260_input_mixer[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
2874 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
2875 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
2876 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
2877 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
2878 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
2879 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x07, 0x01, HDA_INPUT),
2880 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x07, 0x01, HDA_INPUT),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881 { } /* end */
2882};
2883
Kailang Yangdf694da2005-12-05 19:42:22 +01002884static struct snd_kcontrol_new alc260_pc_beep_mixer[] = {
2885 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x07, 0x05, HDA_INPUT),
2886 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x07, 0x05, HDA_INPUT),
2887 { } /* end */
2888};
2889
2890static struct snd_kcontrol_new alc260_hp_3013_mixer[] = {
2891 HDA_CODEC_VOLUME("Front Playback Volume", 0x09, 0x0, HDA_OUTPUT),
2892 HDA_CODEC_MUTE("Front Playback Switch", 0x10, 0x0, HDA_OUTPUT),
2893 HDA_CODEC_VOLUME("Aux-In Playback Volume", 0x07, 0x06, HDA_INPUT),
2894 HDA_CODEC_MUTE("Aux-In Playback Switch", 0x07, 0x06, HDA_INPUT),
2895 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x08, 0x0, HDA_OUTPUT),
2896 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
2897 HDA_CODEC_VOLUME_MONO("iSpeaker Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
2898 HDA_CODEC_MUTE_MONO("iSpeaker Playback Switch", 0x11, 1, 0x0, HDA_OUTPUT),
Takashi Iwai16ded522005-06-10 19:58:24 +02002899 { } /* end */
2900};
2901
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002902static struct snd_kcontrol_new alc260_fujitsu_mixer[] = {
Jonathan Woithea9430dd2005-09-16 19:12:48 +02002903 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x08, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +01002904 HDA_BIND_MUTE("Headphone Playback Switch", 0x08, 2, HDA_INPUT),
Jonathan Woithe4c5186e2006-02-09 11:53:48 +01002905 ALC_PIN_MODE("Headphone Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
Jonathan Woithea9430dd2005-09-16 19:12:48 +02002906 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
2907 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
2908 HDA_CODEC_VOLUME("Mic/Line Playback Volume", 0x07, 0x0, HDA_INPUT),
2909 HDA_CODEC_MUTE("Mic/Line Playback Switch", 0x07, 0x0, HDA_INPUT),
Jonathan Woithe4c5186e2006-02-09 11:53:48 +01002910 ALC_PIN_MODE("Mic/Line Jack Mode", 0x12, ALC_PIN_DIR_IN),
Jonathan Woithea9430dd2005-09-16 19:12:48 +02002911 HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
2912 HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
2913 HDA_CODEC_VOLUME("Internal Speaker Playback Volume", 0x09, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +01002914 HDA_BIND_MUTE("Internal Speaker Playback Switch", 0x09, 2, HDA_INPUT),
Kailang Yangdf694da2005-12-05 19:42:22 +01002915 { } /* end */
2916};
2917
Jonathan Woithe0bfc90e2006-02-28 11:45:11 +01002918static struct snd_kcontrol_new alc260_acer_mixer[] = {
2919 HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT),
2920 HDA_BIND_MUTE("Master Playback Switch", 0x08, 2, HDA_INPUT),
2921 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
2922 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
2923 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
2924 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
2925 ALC_PIN_MODE("Mic Jack Mode", 0x12, ALC_PIN_DIR_IN),
2926 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
2927 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
2928 ALC_PIN_MODE("Line Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
2929 HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
2930 HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
2931 { } /* end */
2932};
2933
Kailang Yangdf694da2005-12-05 19:42:22 +01002934/* capture mixer elements */
2935static struct snd_kcontrol_new alc260_capture_mixer[] = {
Jonathan Woithea9430dd2005-09-16 19:12:48 +02002936 HDA_CODEC_VOLUME("Capture Volume", 0x04, 0x0, HDA_INPUT),
2937 HDA_CODEC_MUTE("Capture Switch", 0x04, 0x0, HDA_INPUT),
Kailang Yangdf694da2005-12-05 19:42:22 +01002938 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x05, 0x0, HDA_INPUT),
2939 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x05, 0x0, HDA_INPUT),
Jonathan Woithea9430dd2005-09-16 19:12:48 +02002940 {
2941 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Kailang Yangdf694da2005-12-05 19:42:22 +01002942 /* The multiple "Capture Source" controls confuse alsamixer
2943 * So call somewhat different..
2944 * FIXME: the controls appear in the "playback" view!
2945 */
2946 /* .name = "Capture Source", */
2947 .name = "Input Source",
2948 .count = 2,
Jonathan Woithea9430dd2005-09-16 19:12:48 +02002949 .info = alc_mux_enum_info,
2950 .get = alc_mux_enum_get,
2951 .put = alc_mux_enum_put,
2952 },
2953 { } /* end */
2954};
2955
Kailang Yangdf694da2005-12-05 19:42:22 +01002956static struct snd_kcontrol_new alc260_capture_alt_mixer[] = {
2957 HDA_CODEC_VOLUME("Capture Volume", 0x05, 0x0, HDA_INPUT),
2958 HDA_CODEC_MUTE("Capture Switch", 0x05, 0x0, HDA_INPUT),
2959 {
2960 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2961 /* The multiple "Capture Source" controls confuse alsamixer
2962 * So call somewhat different..
2963 * FIXME: the controls appear in the "playback" view!
2964 */
2965 /* .name = "Capture Source", */
2966 .name = "Input Source",
2967 .count = 1,
2968 .info = alc_mux_enum_info,
2969 .get = alc_mux_enum_get,
2970 .put = alc_mux_enum_put,
2971 },
2972 { } /* end */
2973};
2974
2975/*
2976 * initialization verbs
2977 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978static struct hda_verb alc260_init_verbs[] = {
2979 /* Line In pin widget for input */
Takashi Iwai05acb862005-06-10 19:50:25 +02002980 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981 /* CD pin widget for input */
Takashi Iwai05acb862005-06-10 19:50:25 +02002982 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 /* Mic1 (rear panel) pin widget for input and vref at 80% */
Takashi Iwai16ded522005-06-10 19:58:24 +02002984 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 /* Mic2 (front panel) pin widget for input and vref at 80% */
Takashi Iwai16ded522005-06-10 19:58:24 +02002986 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 /* LINE-2 is used for line-out in rear */
Takashi Iwai05acb862005-06-10 19:50:25 +02002988 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989 /* select line-out */
Jonathan Woithefd56f2d2006-01-24 10:35:46 +01002990 {0x0e, AC_VERB_SET_CONNECT_SEL, 0x00},
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 /* LINE-OUT pin */
Takashi Iwai05acb862005-06-10 19:50:25 +02002992 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993 /* enable HP */
Takashi Iwai05acb862005-06-10 19:50:25 +02002994 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995 /* enable Mono */
Takashi Iwai05acb862005-06-10 19:50:25 +02002996 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2997 /* mute capture amp left and right */
Takashi Iwai16ded522005-06-10 19:58:24 +02002998 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 /* set connection select to line in (default select for this ADC) */
3000 {0x04, AC_VERB_SET_CONNECT_SEL, 0x02},
Takashi Iwai16ded522005-06-10 19:58:24 +02003001 /* mute capture amp left and right */
3002 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3003 /* set connection select to line in (default select for this ADC) */
3004 {0x05, AC_VERB_SET_CONNECT_SEL, 0x02},
Takashi Iwai05acb862005-06-10 19:50:25 +02003005 /* set vol=0 Line-Out mixer amp left and right */
3006 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3007 /* unmute pin widget amp left and right (no gain on this amp) */
3008 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3009 /* set vol=0 HP mixer amp left and right */
3010 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3011 /* unmute pin widget amp left and right (no gain on this amp) */
3012 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3013 /* set vol=0 Mono mixer amp left and right */
3014 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3015 /* unmute pin widget amp left and right (no gain on this amp) */
3016 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3017 /* unmute LINE-2 out pin */
3018 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019 /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 & Line In 2 = 0x03 */
Takashi Iwai05acb862005-06-10 19:50:25 +02003020 /* mute CD */
Takashi Iwai16ded522005-06-10 19:58:24 +02003021 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
Takashi Iwai05acb862005-06-10 19:50:25 +02003022 /* mute Line In */
Takashi Iwai16ded522005-06-10 19:58:24 +02003023 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
Takashi Iwai05acb862005-06-10 19:50:25 +02003024 /* mute Mic */
Takashi Iwai16ded522005-06-10 19:58:24 +02003025 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026 /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
Takashi Iwai05acb862005-06-10 19:50:25 +02003027 /* mute Front out path */
3028 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3029 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3030 /* mute Headphone out path */
3031 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3032 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3033 /* mute Mono out path */
3034 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3035 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036 { }
3037};
3038
Kailang Yangdf694da2005-12-05 19:42:22 +01003039static struct hda_verb alc260_hp_init_verbs[] = {
3040 /* Headphone and output */
3041 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
3042 /* mono output */
3043 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3044 /* Mic1 (rear panel) pin widget for input and vref at 80% */
3045 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
3046 /* Mic2 (front panel) pin widget for input and vref at 80% */
3047 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
3048 /* Line In pin widget for input */
3049 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3050 /* Line-2 pin widget for output */
3051 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3052 /* CD pin widget for input */
3053 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3054 /* unmute amp left and right */
3055 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000},
3056 /* set connection select to line in (default select for this ADC) */
3057 {0x04, AC_VERB_SET_CONNECT_SEL, 0x02},
3058 /* unmute Line-Out mixer amp left and right (volume = 0) */
3059 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
3060 /* mute pin widget amp left and right (no gain on this amp) */
3061 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
3062 /* unmute HP mixer amp left and right (volume = 0) */
3063 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
3064 /* mute pin widget amp left and right (no gain on this amp) */
3065 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
3066 /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 & Line In 2 = 0x03 */
3067 /* unmute CD */
3068 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
3069 /* unmute Line In */
3070 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
3071 /* unmute Mic */
3072 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3073 /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
3074 /* Unmute Front out path */
3075 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3076 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3077 /* Unmute Headphone out path */
3078 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3079 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3080 /* Unmute Mono out path */
3081 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3082 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3083 { }
3084};
3085
3086static struct hda_verb alc260_hp_3013_init_verbs[] = {
3087 /* Line out and output */
3088 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3089 /* mono output */
3090 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3091 /* Mic1 (rear panel) pin widget for input and vref at 80% */
3092 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
3093 /* Mic2 (front panel) pin widget for input and vref at 80% */
3094 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
3095 /* Line In pin widget for input */
3096 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3097 /* Headphone pin widget for output */
3098 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
3099 /* CD pin widget for input */
3100 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3101 /* unmute amp left and right */
3102 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000},
3103 /* set connection select to line in (default select for this ADC) */
3104 {0x04, AC_VERB_SET_CONNECT_SEL, 0x02},
3105 /* unmute Line-Out mixer amp left and right (volume = 0) */
3106 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
3107 /* mute pin widget amp left and right (no gain on this amp) */
3108 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
3109 /* unmute HP mixer amp left and right (volume = 0) */
3110 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
3111 /* mute pin widget amp left and right (no gain on this amp) */
3112 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
3113 /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 & Line In 2 = 0x03 */
3114 /* unmute CD */
3115 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
3116 /* unmute Line In */
3117 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
3118 /* unmute Mic */
3119 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3120 /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
3121 /* Unmute Front out path */
3122 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3123 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3124 /* Unmute Headphone out path */
3125 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3126 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3127 /* Unmute Mono out path */
3128 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3129 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3130 { }
3131};
3132
Jonathan Woithea9430dd2005-09-16 19:12:48 +02003133/* Initialisation sequence for ALC260 as configured in Fujitsu S702x
3134 * laptops.
3135 */
3136static struct hda_verb alc260_fujitsu_init_verbs[] = {
3137 /* Disable all GPIOs */
3138 {0x01, AC_VERB_SET_GPIO_MASK, 0},
3139 /* Internal speaker is connected to headphone pin */
3140 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
3141 /* Headphone/Line-out jack connects to Line1 pin; make it an output */
3142 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Jonathan Woithef7ace402006-02-28 11:46:14 +01003143 /* Mic/Line-in jack is connected to mic1 pin, so make it an input */
3144 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3145 /* Ensure all other unused pins are disabled and muted. */
3146 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3147 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
Jonathan Woithea9430dd2005-09-16 19:12:48 +02003148 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
Jonathan Woithef7ace402006-02-28 11:46:14 +01003149 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
Jonathan Woithea9430dd2005-09-16 19:12:48 +02003150 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
Jonathan Woithef7ace402006-02-28 11:46:14 +01003151 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3152 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3153 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
Jonathan Woithea9430dd2005-09-16 19:12:48 +02003154
Jonathan Woithef7ace402006-02-28 11:46:14 +01003155 /* Disable digital (SPDIF) pins */
3156 {0x03, AC_VERB_SET_DIGI_CONVERT_1, 0},
3157 {0x06, AC_VERB_SET_DIGI_CONVERT_1, 0},
Jonathan Woithe4c5186e2006-02-09 11:53:48 +01003158
Jonathan Woithef7ace402006-02-28 11:46:14 +01003159 /* Ensure Line1 pin widget takes its input from the OUT1 sum bus
3160 * when acting as an output.
3161 */
3162 {0x0d, AC_VERB_SET_CONNECT_SEL, 0},
3163
3164 /* Start with output sum widgets muted and their output gains at min */
Takashi Iwai8b33a5a2006-02-09 11:57:01 +01003165 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3166 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3167 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3168 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3169 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3170 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3171 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3172 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3173 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
Jonathan Woithea9430dd2005-09-16 19:12:48 +02003174
Jonathan Woithef7ace402006-02-28 11:46:14 +01003175 /* Unmute HP pin widget amp left and right (no equiv mixer ctrl) */
3176 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3177 /* Unmute Line1 pin widget output buffer since it starts as an output.
3178 * If the pin mode is changed by the user the pin mode control will
3179 * take care of enabling the pin's input/output buffers as needed.
3180 * Therefore there's no need to enable the input buffer at this
3181 * stage.
Jonathan Woithecdcd9262006-02-28 11:36:42 +01003182 */
Jonathan Woithef7ace402006-02-28 11:46:14 +01003183 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Jonathan Woithecdcd9262006-02-28 11:36:42 +01003184 /* Unmute input buffer of pin widget used for Line-in (no equiv
3185 * mixer ctrl)
3186 */
Jonathan Woithef7ace402006-02-28 11:46:14 +01003187 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
Jonathan Woithea9430dd2005-09-16 19:12:48 +02003188
Jonathan Woithef7ace402006-02-28 11:46:14 +01003189 /* Mute capture amp left and right */
3190 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3191 /* Set ADC connection select to match default mixer setting - line
3192 * in (on mic1 pin)
3193 */
3194 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
Jonathan Woithea9430dd2005-09-16 19:12:48 +02003195
Jonathan Woithef7ace402006-02-28 11:46:14 +01003196 /* Do the same for the second ADC: mute capture input amp and
3197 * set ADC connection to line in (on mic1 pin)
3198 */
3199 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3200 {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
Jonathan Woithe4c5186e2006-02-09 11:53:48 +01003201
Jonathan Woithef7ace402006-02-28 11:46:14 +01003202 /* Mute all inputs to mixer widget (even unconnected ones) */
3203 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
3204 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
3205 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
3206 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
3207 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
3208 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
3209 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
3210 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
Takashi Iwai4a471b72005-12-07 13:56:29 +01003211
3212 { }
Jonathan Woithea9430dd2005-09-16 19:12:48 +02003213};
3214
Jonathan Woithe0bfc90e2006-02-28 11:45:11 +01003215/* Initialisation sequence for ALC260 as configured in Acer TravelMate and
3216 * similar laptops (adapted from Fujitsu init verbs).
3217 */
3218static struct hda_verb alc260_acer_init_verbs[] = {
3219 /* On TravelMate laptops, GPIO 0 enables the internal speaker and
3220 * the headphone jack. Turn this on and rely on the standard mute
3221 * methods whenever the user wants to turn these outputs off.
3222 */
3223 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
3224 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
3225 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
3226 /* Internal speaker/Headphone jack is connected to Line-out pin */
3227 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
3228 /* Internal microphone/Mic jack is connected to Mic1 pin */
3229 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50},
3230 /* Line In jack is connected to Line1 pin */
3231 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3232 /* Ensure all other unused pins are disabled and muted. */
3233 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3234 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3235 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3236 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3237 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3238 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3239 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3240 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3241 /* Disable digital (SPDIF) pins */
3242 {0x03, AC_VERB_SET_DIGI_CONVERT_1, 0},
3243 {0x06, AC_VERB_SET_DIGI_CONVERT_1, 0},
3244
3245 /* Ensure Mic1 and Line1 pin widgets take input from the OUT1 sum
3246 * bus when acting as outputs.
3247 */
3248 {0x0b, AC_VERB_SET_CONNECT_SEL, 0},
3249 {0x0d, AC_VERB_SET_CONNECT_SEL, 0},
3250
3251 /* Start with output sum widgets muted and their output gains at min */
3252 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3253 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3254 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3255 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3256 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3257 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3258 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3259 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3260 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3261
3262 /* Unmute Line-out pin widget amp left and right (no equiv mixer ctrl) */
3263 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3264 /* Unmute Mic1 and Line1 pin widget input buffers since they start as
3265 * inputs. If the pin mode is changed by the user the pin mode control
3266 * will take care of enabling the pin's input/output buffers as needed.
3267 * Therefore there's no need to enable the input buffer at this
3268 * stage.
3269 */
3270 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3271 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3272
3273 /* Mute capture amp left and right */
3274 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3275 /* Set ADC connection select to match default mixer setting - mic
3276 * (on mic1 pin)
3277 */
3278 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
3279
3280 /* Do similar with the second ADC: mute capture input amp and
3281 * set ADC connection to line (on line1 pin)
3282 */
3283 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3284 {0x05, AC_VERB_SET_CONNECT_SEL, 0x02},
3285
3286 /* Mute all inputs to mixer widget (even unconnected ones) */
3287 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
3288 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
3289 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
3290 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
3291 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
3292 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
3293 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
3294 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
3295
3296 { }
3297};
3298
Jonathan Woithe7cf51e482006-02-09 12:01:26 +01003299/* Test configuration for debugging, modelled after the ALC880 test
3300 * configuration.
3301 */
3302#ifdef CONFIG_SND_DEBUG
3303static hda_nid_t alc260_test_dac_nids[1] = {
3304 0x02,
3305};
3306static hda_nid_t alc260_test_adc_nids[2] = {
3307 0x04, 0x05,
3308};
Jonathan Woithe17e7aec2006-02-28 11:35:18 +01003309/* This is a bit messy since the two input muxes in the ALC260 have slight
3310 * variations in their signal assignments. The ideal way to deal with this
3311 * is to extend alc_spec.input_mux to allow a different input MUX for each
3312 * ADC. For the purposes of the test model it's sufficient to just list
3313 * both options for affected signal indices. The separate input mux
3314 * functionality only needs to be considered if a model comes along which
3315 * actually uses signals 0x5, 0x6 and 0x7 for something which makes sense to
3316 * record.
3317 */
Jonathan Woithe7cf51e482006-02-09 12:01:26 +01003318static struct hda_input_mux alc260_test_capture_source = {
Jonathan Woithe17e7aec2006-02-28 11:35:18 +01003319 .num_items = 8,
Jonathan Woithe7cf51e482006-02-09 12:01:26 +01003320 .items = {
3321 { "MIC1 pin", 0x0 },
3322 { "MIC2 pin", 0x1 },
3323 { "LINE1 pin", 0x2 },
3324 { "LINE2 pin", 0x3 },
3325 { "CD pin", 0x4 },
Jonathan Woithe17e7aec2006-02-28 11:35:18 +01003326 { "LINE-OUT pin (cap1), Mixer (cap2)", 0x5 },
3327 { "HP-OUT pin (cap1), LINE-OUT pin (cap2)", 0x6 },
3328 { "HP-OUT pin (cap2 only)", 0x7 },
Jonathan Woithe7cf51e482006-02-09 12:01:26 +01003329 },
3330};
3331static struct snd_kcontrol_new alc260_test_mixer[] = {
3332 /* Output driver widgets */
3333 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
3334 HDA_BIND_MUTE_MONO("Mono Playback Switch", 0x0a, 1, 2, HDA_INPUT),
3335 HDA_CODEC_VOLUME("LOUT2 Playback Volume", 0x09, 0x0, HDA_OUTPUT),
3336 HDA_BIND_MUTE("LOUT2 Playback Switch", 0x09, 2, HDA_INPUT),
3337 HDA_CODEC_VOLUME("LOUT1 Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3338 HDA_BIND_MUTE("LOUT1 Playback Switch", 0x08, 2, HDA_INPUT),
3339
3340 /* Modes for retasking pin widgets */
3341 ALC_PIN_MODE("HP-OUT pin mode", 0x10, ALC_PIN_DIR_INOUT),
3342 ALC_PIN_MODE("LINE-OUT pin mode", 0x0f, ALC_PIN_DIR_INOUT),
3343 ALC_PIN_MODE("LINE2 pin mode", 0x15, ALC_PIN_DIR_INOUT),
3344 ALC_PIN_MODE("LINE1 pin mode", 0x14, ALC_PIN_DIR_INOUT),
3345 ALC_PIN_MODE("MIC2 pin mode", 0x13, ALC_PIN_DIR_INOUT),
3346 ALC_PIN_MODE("MIC1 pin mode", 0x12, ALC_PIN_DIR_INOUT),
3347
3348 /* Loopback mixer controls */
3349 HDA_CODEC_VOLUME("MIC1 Playback Volume", 0x07, 0x00, HDA_INPUT),
3350 HDA_CODEC_MUTE("MIC1 Playback Switch", 0x07, 0x00, HDA_INPUT),
3351 HDA_CODEC_VOLUME("MIC2 Playback Volume", 0x07, 0x01, HDA_INPUT),
3352 HDA_CODEC_MUTE("MIC2 Playback Switch", 0x07, 0x01, HDA_INPUT),
3353 HDA_CODEC_VOLUME("LINE1 Playback Volume", 0x07, 0x02, HDA_INPUT),
3354 HDA_CODEC_MUTE("LINE1 Playback Switch", 0x07, 0x02, HDA_INPUT),
3355 HDA_CODEC_VOLUME("LINE2 Playback Volume", 0x07, 0x03, HDA_INPUT),
3356 HDA_CODEC_MUTE("LINE2 Playback Switch", 0x07, 0x03, HDA_INPUT),
3357 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
3358 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
3359 HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
3360 HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
3361 HDA_CODEC_VOLUME("LINE-OUT loopback Playback Volume", 0x07, 0x06, HDA_INPUT),
3362 HDA_CODEC_MUTE("LINE-OUT loopback Playback Switch", 0x07, 0x06, HDA_INPUT),
3363 HDA_CODEC_VOLUME("HP-OUT loopback Playback Volume", 0x07, 0x7, HDA_INPUT),
3364 HDA_CODEC_MUTE("HP-OUT loopback Playback Switch", 0x07, 0x7, HDA_INPUT),
Jonathan Woithe5c8f8582006-02-28 11:43:27 +01003365
3366 /* Controls for GPIO pins, assuming they are configured as outputs */
3367 ALC_GPIO_DATA_SWITCH("GPIO pin 0", 0x01, 0x01),
3368 ALC_GPIO_DATA_SWITCH("GPIO pin 1", 0x01, 0x02),
3369 ALC_GPIO_DATA_SWITCH("GPIO pin 2", 0x01, 0x04),
3370 ALC_GPIO_DATA_SWITCH("GPIO pin 3", 0x01, 0x08),
3371
Jonathan Woithe92621f12006-02-28 11:47:47 +01003372 /* Switches to allow the digital IO pins to be enabled. The datasheet
3373 * is ambigious as to which NID is which; testing on laptops which
3374 * make this output available should provide clarification.
3375 */
3376 ALC_SPDIF_CTRL_SWITCH("SPDIF Playback Switch", 0x03, 0x01),
3377 ALC_SPDIF_CTRL_SWITCH("SPDIF Capture Switch", 0x06, 0x01),
3378
Jonathan Woithe7cf51e482006-02-09 12:01:26 +01003379 { } /* end */
3380};
3381static struct hda_verb alc260_test_init_verbs[] = {
Jonathan Woithe5c8f8582006-02-28 11:43:27 +01003382 /* Enable all GPIOs as outputs with an initial value of 0 */
3383 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x0f},
3384 {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
3385 {0x01, AC_VERB_SET_GPIO_MASK, 0x0f},
3386
Jonathan Woithe7cf51e482006-02-09 12:01:26 +01003387 /* Enable retasking pins as output, initially without power amp */
3388 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3389 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3390 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3391 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3392 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3393 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3394
Jonathan Woithe92621f12006-02-28 11:47:47 +01003395 /* Disable digital (SPDIF) pins initially, but users can enable
3396 * them via a mixer switch. In the case of SPDIF-out, this initverb
3397 * payload also sets the generation to 0, output to be in "consumer"
3398 * PCM format, copyright asserted, no pre-emphasis and no validity
3399 * control.
3400 */
Jonathan Woithe7cf51e482006-02-09 12:01:26 +01003401 {0x03, AC_VERB_SET_DIGI_CONVERT_1, 0},
3402 {0x06, AC_VERB_SET_DIGI_CONVERT_1, 0},
3403
Jonathan Woithef7ace402006-02-28 11:46:14 +01003404 /* Ensure mic1, mic2, line1 and line2 pin widgets take input from the
Jonathan Woithe7cf51e482006-02-09 12:01:26 +01003405 * OUT1 sum bus when acting as an output.
3406 */
3407 {0x0b, AC_VERB_SET_CONNECT_SEL, 0},
3408 {0x0c, AC_VERB_SET_CONNECT_SEL, 0},
3409 {0x0d, AC_VERB_SET_CONNECT_SEL, 0},
3410 {0x0e, AC_VERB_SET_CONNECT_SEL, 0},
3411
3412 /* Start with output sum widgets muted and their output gains at min */
3413 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3414 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3415 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3416 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3417 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3418 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3419 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3420 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3421 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3422
Jonathan Woithecdcd9262006-02-28 11:36:42 +01003423 /* Unmute retasking pin widget output buffers since the default
3424 * state appears to be output. As the pin mode is changed by the
3425 * user the pin mode control will take care of enabling the pin's
3426 * input/output buffers as needed.
3427 */
Jonathan Woithe7cf51e482006-02-09 12:01:26 +01003428 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3429 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3430 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3431 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3432 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3433 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3434 /* Also unmute the mono-out pin widget */
3435 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3436
Jonathan Woithe7cf51e482006-02-09 12:01:26 +01003437 /* Mute capture amp left and right */
3438 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
Jonathan Woithef7ace402006-02-28 11:46:14 +01003439 /* Set ADC connection select to match default mixer setting (mic1
3440 * pin)
Jonathan Woithe7cf51e482006-02-09 12:01:26 +01003441 */
3442 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
3443
3444 /* Do the same for the second ADC: mute capture input amp and
Jonathan Woithef7ace402006-02-28 11:46:14 +01003445 * set ADC connection to mic1 pin
Jonathan Woithe7cf51e482006-02-09 12:01:26 +01003446 */
3447 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3448 {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
3449
3450 /* Mute all inputs to mixer widget (even unconnected ones) */
3451 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
3452 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
3453 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
3454 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
3455 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
3456 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
3457 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
3458 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
3459
3460 { }
3461};
3462#endif
3463
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464static struct hda_pcm_stream alc260_pcm_analog_playback = {
3465 .substreams = 1,
3466 .channels_min = 2,
3467 .channels_max = 2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468};
3469
3470static struct hda_pcm_stream alc260_pcm_analog_capture = {
3471 .substreams = 1,
3472 .channels_min = 2,
3473 .channels_max = 2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474};
3475
Takashi Iwaia3bcba32005-12-06 19:05:29 +01003476#define alc260_pcm_digital_playback alc880_pcm_digital_playback
3477#define alc260_pcm_digital_capture alc880_pcm_digital_capture
3478
Kailang Yangdf694da2005-12-05 19:42:22 +01003479/*
3480 * for BIOS auto-configuration
3481 */
3482
3483static int alc260_add_playback_controls(struct alc_spec *spec, hda_nid_t nid,
3484 const char *pfx)
3485{
3486 hda_nid_t nid_vol;
3487 unsigned long vol_val, sw_val;
3488 char name[32];
3489 int err;
3490
3491 if (nid >= 0x0f && nid < 0x11) {
3492 nid_vol = nid - 0x7;
3493 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, HDA_OUTPUT);
3494 sw_val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
3495 } else if (nid == 0x11) {
3496 nid_vol = nid - 0x7;
3497 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 2, 0, HDA_OUTPUT);
3498 sw_val = HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_OUTPUT);
3499 } else if (nid >= 0x12 && nid <= 0x15) {
3500 nid_vol = 0x08;
3501 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, HDA_OUTPUT);
3502 sw_val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
3503 } else
3504 return 0; /* N/A */
3505
3506 snprintf(name, sizeof(name), "%s Playback Volume", pfx);
3507 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL, name, vol_val)) < 0)
3508 return err;
3509 snprintf(name, sizeof(name), "%s Playback Switch", pfx);
3510 if ((err = add_control(spec, ALC_CTL_WIDGET_MUTE, name, sw_val)) < 0)
3511 return err;
3512 return 1;
3513}
3514
3515/* add playback controls from the parsed DAC table */
3516static int alc260_auto_create_multi_out_ctls(struct alc_spec *spec,
3517 const struct auto_pin_cfg *cfg)
3518{
3519 hda_nid_t nid;
3520 int err;
3521
3522 spec->multiout.num_dacs = 1;
3523 spec->multiout.dac_nids = spec->private_dac_nids;
3524 spec->multiout.dac_nids[0] = 0x02;
3525
3526 nid = cfg->line_out_pins[0];
3527 if (nid) {
3528 err = alc260_add_playback_controls(spec, nid, "Front");
3529 if (err < 0)
3530 return err;
3531 }
3532
Takashi Iwai82bc9552006-03-21 11:24:42 +01003533 nid = cfg->speaker_pins[0];
Kailang Yangdf694da2005-12-05 19:42:22 +01003534 if (nid) {
3535 err = alc260_add_playback_controls(spec, nid, "Speaker");
3536 if (err < 0)
3537 return err;
3538 }
3539
3540 nid = cfg->hp_pin;
3541 if (nid) {
3542 err = alc260_add_playback_controls(spec, nid, "Headphone");
3543 if (err < 0)
3544 return err;
3545 }
3546 return 0;
3547}
3548
3549/* create playback/capture controls for input pins */
3550static int alc260_auto_create_analog_input_ctls(struct alc_spec *spec,
3551 const struct auto_pin_cfg *cfg)
3552{
Kailang Yangdf694da2005-12-05 19:42:22 +01003553 struct hda_input_mux *imux = &spec->private_imux;
3554 int i, err, idx;
3555
3556 for (i = 0; i < AUTO_PIN_LAST; i++) {
3557 if (cfg->input_pins[i] >= 0x12) {
3558 idx = cfg->input_pins[i] - 0x12;
Takashi Iwai4a471b72005-12-07 13:56:29 +01003559 err = new_analog_input(spec, cfg->input_pins[i],
3560 auto_pin_cfg_labels[i], idx, 0x07);
Kailang Yangdf694da2005-12-05 19:42:22 +01003561 if (err < 0)
3562 return err;
Takashi Iwai4a471b72005-12-07 13:56:29 +01003563 imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
Kailang Yangdf694da2005-12-05 19:42:22 +01003564 imux->items[imux->num_items].index = idx;
3565 imux->num_items++;
3566 }
3567 if ((cfg->input_pins[i] >= 0x0f) && (cfg->input_pins[i] <= 0x10)){
3568 idx = cfg->input_pins[i] - 0x09;
Takashi Iwai4a471b72005-12-07 13:56:29 +01003569 err = new_analog_input(spec, cfg->input_pins[i],
3570 auto_pin_cfg_labels[i], idx, 0x07);
Kailang Yangdf694da2005-12-05 19:42:22 +01003571 if (err < 0)
3572 return err;
Takashi Iwai4a471b72005-12-07 13:56:29 +01003573 imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
Kailang Yangdf694da2005-12-05 19:42:22 +01003574 imux->items[imux->num_items].index = idx;
3575 imux->num_items++;
3576 }
3577 }
3578 return 0;
3579}
3580
3581static void alc260_auto_set_output_and_unmute(struct hda_codec *codec,
3582 hda_nid_t nid, int pin_type,
3583 int sel_idx)
3584{
3585 /* set as output */
3586 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
3587 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
3588 /* need the manual connection? */
3589 if (nid >= 0x12) {
3590 int idx = nid - 0x12;
3591 snd_hda_codec_write(codec, idx + 0x0b, 0,
3592 AC_VERB_SET_CONNECT_SEL, sel_idx);
3593
3594 }
3595}
3596
3597static void alc260_auto_init_multi_out(struct hda_codec *codec)
3598{
3599 struct alc_spec *spec = codec->spec;
3600 hda_nid_t nid;
3601
3602 nid = spec->autocfg.line_out_pins[0];
3603 if (nid)
3604 alc260_auto_set_output_and_unmute(codec, nid, PIN_OUT, 0);
3605
Takashi Iwai82bc9552006-03-21 11:24:42 +01003606 nid = spec->autocfg.speaker_pins[0];
Kailang Yangdf694da2005-12-05 19:42:22 +01003607 if (nid)
3608 alc260_auto_set_output_and_unmute(codec, nid, PIN_OUT, 0);
3609
3610 nid = spec->autocfg.hp_pin;
3611 if (nid)
3612 alc260_auto_set_output_and_unmute(codec, nid, PIN_OUT, 0);
3613}
3614
3615#define ALC260_PIN_CD_NID 0x16
3616static void alc260_auto_init_analog_input(struct hda_codec *codec)
3617{
3618 struct alc_spec *spec = codec->spec;
3619 int i;
3620
3621 for (i = 0; i < AUTO_PIN_LAST; i++) {
3622 hda_nid_t nid = spec->autocfg.input_pins[i];
3623 if (nid >= 0x12) {
3624 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
3625 i <= AUTO_PIN_FRONT_MIC ? PIN_VREF80 : PIN_IN);
3626 if (nid != ALC260_PIN_CD_NID)
3627 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
3628 AMP_OUT_MUTE);
3629 }
3630 }
3631}
3632
3633/*
3634 * generic initialization of ADC, input mixers and output mixers
3635 */
3636static struct hda_verb alc260_volume_init_verbs[] = {
3637 /*
3638 * Unmute ADC0-1 and set the default input to mic-in
3639 */
3640 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
3641 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3642 {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
3643 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3644
3645 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
3646 * mixer widget
3647 * Note: PASD motherboards uses the Line In 2 as the input for front panel
3648 * mic (mic 2)
3649 */
3650 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
3651 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3652 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
3653 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
3654 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
3655 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
3656
3657 /*
3658 * Set up output mixers (0x08 - 0x0a)
3659 */
3660 /* set vol=0 to output mixers */
3661 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3662 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3663 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3664 /* set up input amps for analog loopback */
3665 /* Amp Indices: DAC = 0, mixer = 1 */
3666 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3667 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
3668 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3669 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
3670 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3671 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
3672
3673 { }
3674};
3675
3676static int alc260_parse_auto_config(struct hda_codec *codec)
3677{
3678 struct alc_spec *spec = codec->spec;
3679 unsigned int wcap;
3680 int err;
3681 static hda_nid_t alc260_ignore[] = { 0x17, 0 };
3682
3683 if ((err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
3684 alc260_ignore)) < 0)
3685 return err;
Takashi Iwai4a471b72005-12-07 13:56:29 +01003686 if ((err = alc260_auto_create_multi_out_ctls(spec, &spec->autocfg)) < 0)
3687 return err;
3688 if (! spec->kctl_alloc)
Kailang Yangdf694da2005-12-05 19:42:22 +01003689 return 0; /* can't find valid BIOS pin config */
Takashi Iwai4a471b72005-12-07 13:56:29 +01003690 if ((err = alc260_auto_create_analog_input_ctls(spec, &spec->autocfg)) < 0)
Kailang Yangdf694da2005-12-05 19:42:22 +01003691 return err;
3692
3693 spec->multiout.max_channels = 2;
3694
3695 if (spec->autocfg.dig_out_pin)
3696 spec->multiout.dig_out_nid = ALC260_DIGOUT_NID;
3697 if (spec->kctl_alloc)
3698 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
3699
3700 spec->init_verbs[spec->num_init_verbs++] = alc260_volume_init_verbs;
3701
3702 spec->input_mux = &spec->private_imux;
3703
3704 /* check whether NID 0x04 is valid */
Takashi Iwai4a471b72005-12-07 13:56:29 +01003705 wcap = get_wcaps(codec, 0x04);
Kailang Yangdf694da2005-12-05 19:42:22 +01003706 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT; /* get type */
3707 if (wcap != AC_WID_AUD_IN) {
3708 spec->adc_nids = alc260_adc_nids_alt;
3709 spec->num_adc_nids = ARRAY_SIZE(alc260_adc_nids_alt);
3710 spec->mixers[spec->num_mixers] = alc260_capture_alt_mixer;
Kailang Yangdf694da2005-12-05 19:42:22 +01003711 } else {
3712 spec->adc_nids = alc260_adc_nids;
3713 spec->num_adc_nids = ARRAY_SIZE(alc260_adc_nids);
3714 spec->mixers[spec->num_mixers] = alc260_capture_mixer;
Kailang Yangdf694da2005-12-05 19:42:22 +01003715 }
Takashi Iwai4a471b72005-12-07 13:56:29 +01003716 spec->num_mixers++;
Kailang Yangdf694da2005-12-05 19:42:22 +01003717
3718 return 1;
3719}
3720
Takashi Iwaiae6b8132006-03-03 16:47:17 +01003721/* additional initialization for auto-configuration model */
3722static void alc260_auto_init(struct hda_codec *codec)
Kailang Yangdf694da2005-12-05 19:42:22 +01003723{
Kailang Yangdf694da2005-12-05 19:42:22 +01003724 alc260_auto_init_multi_out(codec);
3725 alc260_auto_init_analog_input(codec);
Kailang Yangdf694da2005-12-05 19:42:22 +01003726}
3727
3728/*
3729 * ALC260 configurations
3730 */
Takashi Iwai16ded522005-06-10 19:58:24 +02003731static struct hda_board_config alc260_cfg_tbl[] = {
Kailang Yangdf694da2005-12-05 19:42:22 +01003732 { .modelname = "basic", .config = ALC260_BASIC },
Takashi Iwaib14e77e2006-01-11 18:10:50 +01003733 { .pci_subvendor = 0x104d, .pci_subdevice = 0x81bb,
3734 .config = ALC260_BASIC }, /* Sony VAIO */
Takashi Iwaic1fc8042006-03-06 14:17:31 +01003735 { .pci_subvendor = 0x152d, .pci_subdevice = 0x0729,
3736 .config = ALC260_BASIC }, /* CTL Travel Master U553W */
Takashi Iwai16ded522005-06-10 19:58:24 +02003737 { .modelname = "hp", .config = ALC260_HP },
Kailang Yangdf694da2005-12-05 19:42:22 +01003738 { .pci_subvendor = 0x103c, .pci_subdevice = 0x3010, .config = ALC260_HP },
3739 { .pci_subvendor = 0x103c, .pci_subdevice = 0x3011, .config = ALC260_HP },
3740 { .pci_subvendor = 0x103c, .pci_subdevice = 0x3012, .config = ALC260_HP },
3741 { .pci_subvendor = 0x103c, .pci_subdevice = 0x3013, .config = ALC260_HP_3013 },
3742 { .pci_subvendor = 0x103c, .pci_subdevice = 0x3014, .config = ALC260_HP },
3743 { .pci_subvendor = 0x103c, .pci_subdevice = 0x3015, .config = ALC260_HP },
3744 { .pci_subvendor = 0x103c, .pci_subdevice = 0x3016, .config = ALC260_HP },
3745 { .modelname = "fujitsu", .config = ALC260_FUJITSU_S702X },
3746 { .pci_subvendor = 0x10cf, .pci_subdevice = 0x1326, .config = ALC260_FUJITSU_S702X },
Jonathan Woithe0bfc90e2006-02-28 11:45:11 +01003747 { .modelname = "acer", .config = ALC260_ACER },
3748 { .pci_subvendor = 0x1025, .pci_subdevice = 0x008f, .config = ALC260_ACER },
Jonathan Woithe7cf51e482006-02-09 12:01:26 +01003749#ifdef CONFIG_SND_DEBUG
3750 { .modelname = "test", .config = ALC260_TEST },
3751#endif
Kailang Yangdf694da2005-12-05 19:42:22 +01003752 { .modelname = "auto", .config = ALC260_AUTO },
Takashi Iwai16ded522005-06-10 19:58:24 +02003753 {}
3754};
3755
Kailang Yangdf694da2005-12-05 19:42:22 +01003756static struct alc_config_preset alc260_presets[] = {
3757 [ALC260_BASIC] = {
3758 .mixers = { alc260_base_output_mixer,
3759 alc260_input_mixer,
3760 alc260_pc_beep_mixer,
3761 alc260_capture_mixer },
3762 .init_verbs = { alc260_init_verbs },
3763 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
3764 .dac_nids = alc260_dac_nids,
3765 .num_adc_nids = ARRAY_SIZE(alc260_adc_nids),
3766 .adc_nids = alc260_adc_nids,
3767 .num_channel_mode = ARRAY_SIZE(alc260_modes),
3768 .channel_mode = alc260_modes,
3769 .input_mux = &alc260_capture_source,
3770 },
3771 [ALC260_HP] = {
3772 .mixers = { alc260_base_output_mixer,
3773 alc260_input_mixer,
3774 alc260_capture_alt_mixer },
3775 .init_verbs = { alc260_hp_init_verbs },
3776 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
3777 .dac_nids = alc260_dac_nids,
3778 .num_adc_nids = ARRAY_SIZE(alc260_hp_adc_nids),
3779 .adc_nids = alc260_hp_adc_nids,
3780 .num_channel_mode = ARRAY_SIZE(alc260_modes),
3781 .channel_mode = alc260_modes,
3782 .input_mux = &alc260_capture_source,
3783 },
3784 [ALC260_HP_3013] = {
3785 .mixers = { alc260_hp_3013_mixer,
3786 alc260_input_mixer,
3787 alc260_capture_alt_mixer },
3788 .init_verbs = { alc260_hp_3013_init_verbs },
3789 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
3790 .dac_nids = alc260_dac_nids,
3791 .num_adc_nids = ARRAY_SIZE(alc260_hp_adc_nids),
3792 .adc_nids = alc260_hp_adc_nids,
3793 .num_channel_mode = ARRAY_SIZE(alc260_modes),
3794 .channel_mode = alc260_modes,
3795 .input_mux = &alc260_capture_source,
3796 },
3797 [ALC260_FUJITSU_S702X] = {
3798 .mixers = { alc260_fujitsu_mixer,
3799 alc260_capture_mixer },
3800 .init_verbs = { alc260_fujitsu_init_verbs },
3801 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
3802 .dac_nids = alc260_dac_nids,
Jonathan Woithed57fdac2006-02-28 11:38:35 +01003803 .num_adc_nids = ARRAY_SIZE(alc260_dual_adc_nids),
3804 .adc_nids = alc260_dual_adc_nids,
Kailang Yangdf694da2005-12-05 19:42:22 +01003805 .num_channel_mode = ARRAY_SIZE(alc260_modes),
3806 .channel_mode = alc260_modes,
3807 .input_mux = &alc260_fujitsu_capture_source,
3808 },
Jonathan Woithe0bfc90e2006-02-28 11:45:11 +01003809 [ALC260_ACER] = {
3810 .mixers = { alc260_acer_mixer,
3811 alc260_capture_mixer },
3812 .init_verbs = { alc260_acer_init_verbs },
3813 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
3814 .dac_nids = alc260_dac_nids,
3815 .num_adc_nids = ARRAY_SIZE(alc260_dual_adc_nids),
3816 .adc_nids = alc260_dual_adc_nids,
3817 .num_channel_mode = ARRAY_SIZE(alc260_modes),
3818 .channel_mode = alc260_modes,
3819 .input_mux = &alc260_acer_capture_source,
3820 },
Jonathan Woithe7cf51e482006-02-09 12:01:26 +01003821#ifdef CONFIG_SND_DEBUG
3822 [ALC260_TEST] = {
3823 .mixers = { alc260_test_mixer,
3824 alc260_capture_mixer },
3825 .init_verbs = { alc260_test_init_verbs },
3826 .num_dacs = ARRAY_SIZE(alc260_test_dac_nids),
3827 .dac_nids = alc260_test_dac_nids,
3828 .num_adc_nids = ARRAY_SIZE(alc260_test_adc_nids),
3829 .adc_nids = alc260_test_adc_nids,
3830 .num_channel_mode = ARRAY_SIZE(alc260_modes),
3831 .channel_mode = alc260_modes,
3832 .input_mux = &alc260_test_capture_source,
3833 },
3834#endif
Kailang Yangdf694da2005-12-05 19:42:22 +01003835};
3836
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837static int patch_alc260(struct hda_codec *codec)
3838{
3839 struct alc_spec *spec;
Kailang Yangdf694da2005-12-05 19:42:22 +01003840 int err, board_config;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841
Takashi Iwaie560d8d2005-09-09 14:21:46 +02003842 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843 if (spec == NULL)
3844 return -ENOMEM;
3845
3846 codec->spec = spec;
3847
Takashi Iwai16ded522005-06-10 19:58:24 +02003848 board_config = snd_hda_check_board_config(codec, alc260_cfg_tbl);
3849 if (board_config < 0 || board_config >= ALC260_MODEL_LAST) {
3850 snd_printd(KERN_INFO "hda_codec: Unknown model for ALC260\n");
Kailang Yangdf694da2005-12-05 19:42:22 +01003851 board_config = ALC260_AUTO;
Takashi Iwai16ded522005-06-10 19:58:24 +02003852 }
3853
Kailang Yangdf694da2005-12-05 19:42:22 +01003854 if (board_config == ALC260_AUTO) {
3855 /* automatic parse from the BIOS config */
3856 err = alc260_parse_auto_config(codec);
3857 if (err < 0) {
3858 alc_free(codec);
3859 return err;
3860 } else if (! err) {
3861 printk(KERN_INFO "hda_codec: Cannot set up configuration from BIOS. Using base mode...\n");
3862 board_config = ALC260_BASIC;
3863 }
Takashi Iwai16ded522005-06-10 19:58:24 +02003864 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865
Kailang Yangdf694da2005-12-05 19:42:22 +01003866 if (board_config != ALC260_AUTO)
3867 setup_preset(spec, &alc260_presets[board_config]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868
3869 spec->stream_name_analog = "ALC260 Analog";
3870 spec->stream_analog_playback = &alc260_pcm_analog_playback;
3871 spec->stream_analog_capture = &alc260_pcm_analog_capture;
3872
Takashi Iwaia3bcba32005-12-06 19:05:29 +01003873 spec->stream_name_digital = "ALC260 Digital";
3874 spec->stream_digital_playback = &alc260_pcm_digital_playback;
3875 spec->stream_digital_capture = &alc260_pcm_digital_capture;
3876
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877 codec->patch_ops = alc_patch_ops;
Kailang Yangdf694da2005-12-05 19:42:22 +01003878 if (board_config == ALC260_AUTO)
Takashi Iwaiae6b8132006-03-03 16:47:17 +01003879 spec->init_hook = alc260_auto_init;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880
3881 return 0;
3882}
3883
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003884
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885/*
3886 * ALC882 support
3887 *
3888 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
3889 * configuration. Each pin widget can choose any input DACs and a mixer.
3890 * Each ADC is connected from a mixer of all inputs. This makes possible
3891 * 6-channel independent captures.
3892 *
3893 * In addition, an independent DAC for the multi-playback (not used in this
3894 * driver yet).
3895 */
Kailang Yangdf694da2005-12-05 19:42:22 +01003896#define ALC882_DIGOUT_NID 0x06
3897#define ALC882_DIGIN_NID 0x0a
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01003899static struct hda_channel_mode alc882_ch_modes[1] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900 { 8, NULL }
3901};
3902
3903static hda_nid_t alc882_dac_nids[4] = {
3904 /* front, rear, clfe, rear_surr */
3905 0x02, 0x03, 0x04, 0x05
3906};
3907
Kailang Yangdf694da2005-12-05 19:42:22 +01003908/* identical with ALC880 */
3909#define alc882_adc_nids alc880_adc_nids
3910#define alc882_adc_nids_alt alc880_adc_nids_alt
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911
3912/* input MUX */
3913/* FIXME: should be a matrix-type input source selection */
3914
3915static struct hda_input_mux alc882_capture_source = {
3916 .num_items = 4,
3917 .items = {
3918 { "Mic", 0x0 },
3919 { "Front Mic", 0x1 },
3920 { "Line", 0x2 },
3921 { "CD", 0x4 },
3922 },
3923};
3924
3925#define alc882_mux_enum_info alc_mux_enum_info
3926#define alc882_mux_enum_get alc_mux_enum_get
3927
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003928static int alc882_mux_enum_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929{
3930 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3931 struct alc_spec *spec = codec->spec;
3932 const struct hda_input_mux *imux = spec->input_mux;
3933 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
3934 static hda_nid_t capture_mixers[3] = { 0x24, 0x23, 0x22 };
3935 hda_nid_t nid = capture_mixers[adc_idx];
3936 unsigned int *cur_val = &spec->cur_mux[adc_idx];
3937 unsigned int i, idx;
3938
3939 idx = ucontrol->value.enumerated.item[0];
3940 if (idx >= imux->num_items)
3941 idx = imux->num_items - 1;
3942 if (*cur_val == idx && ! codec->in_resume)
3943 return 0;
3944 for (i = 0; i < imux->num_items; i++) {
3945 unsigned int v = (i == idx) ? 0x7000 : 0x7080;
3946 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
3947 v | (imux->items[i].index << 8));
3948 }
3949 *cur_val = idx;
3950 return 1;
3951}
3952
Kailang Yangdf694da2005-12-05 19:42:22 +01003953/*
3954 * 6ch mode
3955 */
3956static struct hda_verb alc882_sixstack_ch6_init[] = {
3957 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
3958 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
3959 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
3960 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
3961 { } /* end */
3962};
3963
3964/*
3965 * 8ch mode
3966 */
3967static struct hda_verb alc882_sixstack_ch8_init[] = {
3968 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
3969 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
3970 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
3971 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
3972 { } /* end */
3973};
3974
3975static struct hda_channel_mode alc882_sixstack_modes[2] = {
3976 { 6, alc882_sixstack_ch6_init },
3977 { 8, alc882_sixstack_ch8_init },
3978};
3979
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980/* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
3981 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
3982 */
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003983static struct snd_kcontrol_new alc882_base_mixer[] = {
Takashi Iwai05acb862005-06-10 19:50:25 +02003984 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +01003985 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
Takashi Iwai05acb862005-06-10 19:50:25 +02003986 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +01003987 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
Takashi Iwai05acb862005-06-10 19:50:25 +02003988 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
3989 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +01003990 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
3991 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
Takashi Iwai05acb862005-06-10 19:50:25 +02003992 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +01003993 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
3995 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
3996 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
3997 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
3998 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
3999 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
4000 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
4001 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
4002 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
4003 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
4004 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
4005 HDA_CODEC_VOLUME("Capture Volume", 0x07, 0x0, HDA_INPUT),
4006 HDA_CODEC_MUTE("Capture Switch", 0x07, 0x0, HDA_INPUT),
4007 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x08, 0x0, HDA_INPUT),
4008 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x08, 0x0, HDA_INPUT),
4009 HDA_CODEC_VOLUME_IDX("Capture Volume", 2, 0x09, 0x0, HDA_INPUT),
4010 HDA_CODEC_MUTE_IDX("Capture Switch", 2, 0x09, 0x0, HDA_INPUT),
4011 {
4012 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4013 /* .name = "Capture Source", */
4014 .name = "Input Source",
4015 .count = 3,
4016 .info = alc882_mux_enum_info,
4017 .get = alc882_mux_enum_get,
4018 .put = alc882_mux_enum_put,
4019 },
4020 { } /* end */
4021};
4022
Kailang Yangdf694da2005-12-05 19:42:22 +01004023static struct snd_kcontrol_new alc882_chmode_mixer[] = {
4024 {
4025 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4026 .name = "Channel Mode",
4027 .info = alc_ch_mode_info,
4028 .get = alc_ch_mode_get,
4029 .put = alc_ch_mode_put,
4030 },
4031 { } /* end */
4032};
4033
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034static struct hda_verb alc882_init_verbs[] = {
4035 /* Front mixer: unmute input/output amp left and right (volume = 0) */
Takashi Iwai05acb862005-06-10 19:50:25 +02004036 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4037 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4038 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039 /* Rear mixer */
Takashi Iwai05acb862005-06-10 19:50:25 +02004040 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4041 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4042 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043 /* CLFE mixer */
Takashi Iwai05acb862005-06-10 19:50:25 +02004044 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4045 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4046 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047 /* Side mixer */
Takashi Iwai05acb862005-06-10 19:50:25 +02004048 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4049 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4050 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051
Takashi Iwaie9edcee2005-06-13 14:16:38 +02004052 /* Front Pin: output 0 (0x0c) */
Takashi Iwai05acb862005-06-10 19:50:25 +02004053 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Takashi Iwai05acb862005-06-10 19:50:25 +02004054 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02004056 /* Rear Pin: output 1 (0x0d) */
Takashi Iwai05acb862005-06-10 19:50:25 +02004057 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Takashi Iwai05acb862005-06-10 19:50:25 +02004058 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Linus Torvalds1da177e2005-04-16 15:20:36 -07004059 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02004060 /* CLFE Pin: output 2 (0x0e) */
Takashi Iwai05acb862005-06-10 19:50:25 +02004061 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Takashi Iwai05acb862005-06-10 19:50:25 +02004062 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Linus Torvalds1da177e2005-04-16 15:20:36 -07004063 {0x16, AC_VERB_SET_CONNECT_SEL, 0x02},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02004064 /* Side Pin: output 3 (0x0f) */
Takashi Iwai05acb862005-06-10 19:50:25 +02004065 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Takashi Iwai05acb862005-06-10 19:50:25 +02004066 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067 {0x17, AC_VERB_SET_CONNECT_SEL, 0x03},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02004068 /* Mic (rear) pin: input vref at 80% */
Takashi Iwai16ded522005-06-10 19:58:24 +02004069 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02004070 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
4071 /* Front Mic pin: input vref at 80% */
Takashi Iwai16ded522005-06-10 19:58:24 +02004072 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02004073 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
4074 /* Line In pin: input */
Takashi Iwai05acb862005-06-10 19:50:25 +02004075 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02004076 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
4077 /* Line-2 In: Headphone output (output 0 - 0x0c) */
4078 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
4079 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4080 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
Linus Torvalds1da177e2005-04-16 15:20:36 -07004081 /* CD pin widget for input */
Takashi Iwai05acb862005-06-10 19:50:25 +02004082 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083
4084 /* FIXME: use matrix-type input source selection */
4085 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
4086 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
Takashi Iwai05acb862005-06-10 19:50:25 +02004087 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4088 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4089 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4090 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091 /* Input mixer2 */
Takashi Iwai05acb862005-06-10 19:50:25 +02004092 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4093 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4094 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4095 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
Linus Torvalds1da177e2005-04-16 15:20:36 -07004096 /* Input mixer3 */
Takashi Iwai05acb862005-06-10 19:50:25 +02004097 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4098 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4099 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4100 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
4101 /* ADC1: mute amp left and right */
4102 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
Takashi Iwai71fe7b82005-05-25 18:11:40 +02004103 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
Takashi Iwai05acb862005-06-10 19:50:25 +02004104 /* ADC2: mute amp left and right */
4105 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
Takashi Iwai71fe7b82005-05-25 18:11:40 +02004106 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
Takashi Iwai05acb862005-06-10 19:50:25 +02004107 /* ADC3: mute amp left and right */
4108 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
Takashi Iwai71fe7b82005-05-25 18:11:40 +02004109 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110
4111 { }
4112};
4113
Kailang Yangdf694da2005-12-05 19:42:22 +01004114/*
4115 * generic initialization of ADC, input mixers and output mixers
4116 */
4117static struct hda_verb alc882_auto_init_verbs[] = {
4118 /*
4119 * Unmute ADC0-2 and set the default input to mic-in
4120 */
4121 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
4122 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4123 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
4124 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4125 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
4126 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4127
4128 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
4129 * mixer widget
4130 * Note: PASD motherboards uses the Line In 2 as the input for front panel
4131 * mic (mic 2)
4132 */
4133 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
4134 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4135 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4136 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
4137 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
4138 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
4139
4140 /*
4141 * Set up output mixers (0x0c - 0x0f)
4142 */
4143 /* set vol=0 to output mixers */
4144 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4145 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4146 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4147 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4148 /* set up input amps for analog loopback */
4149 /* Amp Indices: DAC = 0, mixer = 1 */
4150 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4151 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4152 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4153 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4154 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4155 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4156 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4157 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4158 {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4159 {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4160
4161 /* FIXME: use matrix-type input source selection */
4162 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
4163 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
4164 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4165 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
4166 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
4167 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
4168 /* Input mixer2 */
4169 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4170 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
4171 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
4172 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
4173 /* Input mixer3 */
4174 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4175 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
4176 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
4177 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
4178
4179 { }
4180};
4181
4182/* capture mixer elements */
4183static struct snd_kcontrol_new alc882_capture_alt_mixer[] = {
4184 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
4185 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
4186 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
4187 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
4188 {
4189 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4190 /* The multiple "Capture Source" controls confuse alsamixer
4191 * So call somewhat different..
4192 * FIXME: the controls appear in the "playback" view!
4193 */
4194 /* .name = "Capture Source", */
4195 .name = "Input Source",
4196 .count = 2,
4197 .info = alc882_mux_enum_info,
4198 .get = alc882_mux_enum_get,
4199 .put = alc882_mux_enum_put,
4200 },
4201 { } /* end */
4202};
4203
4204static struct snd_kcontrol_new alc882_capture_mixer[] = {
4205 HDA_CODEC_VOLUME("Capture Volume", 0x07, 0x0, HDA_INPUT),
4206 HDA_CODEC_MUTE("Capture Switch", 0x07, 0x0, HDA_INPUT),
4207 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x08, 0x0, HDA_INPUT),
4208 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x08, 0x0, HDA_INPUT),
4209 HDA_CODEC_VOLUME_IDX("Capture Volume", 2, 0x09, 0x0, HDA_INPUT),
4210 HDA_CODEC_MUTE_IDX("Capture Switch", 2, 0x09, 0x0, HDA_INPUT),
4211 {
4212 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4213 /* The multiple "Capture Source" controls confuse alsamixer
4214 * So call somewhat different..
4215 * FIXME: the controls appear in the "playback" view!
4216 */
4217 /* .name = "Capture Source", */
4218 .name = "Input Source",
4219 .count = 3,
4220 .info = alc882_mux_enum_info,
4221 .get = alc882_mux_enum_get,
4222 .put = alc882_mux_enum_put,
4223 },
4224 { } /* end */
4225};
4226
4227/* pcm configuration: identiacal with ALC880 */
4228#define alc882_pcm_analog_playback alc880_pcm_analog_playback
4229#define alc882_pcm_analog_capture alc880_pcm_analog_capture
4230#define alc882_pcm_digital_playback alc880_pcm_digital_playback
4231#define alc882_pcm_digital_capture alc880_pcm_digital_capture
4232
4233/*
4234 * configuration and preset
4235 */
4236static struct hda_board_config alc882_cfg_tbl[] = {
Takashi Iwai1494a922006-01-31 10:58:46 +01004237 { .modelname = "3stack-dig", .config = ALC882_3ST_DIG },
4238 { .modelname = "6stack-dig", .config = ALC882_6ST_DIG },
Kailang Yangdf694da2005-12-05 19:42:22 +01004239 { .pci_subvendor = 0x1462, .pci_subdevice = 0x6668, .config = ALC882_6ST_DIG }, /* MSI */
4240 { .pci_subvendor = 0x105b, .pci_subdevice = 0x6668, .config = ALC882_6ST_DIG }, /* Foxconn */
4241 { .pci_subvendor = 0x1019, .pci_subdevice = 0x6668, .config = ALC882_6ST_DIG }, /* ECS */
Takashi Iwai1494a922006-01-31 10:58:46 +01004242 { .modelname = "auto", .config = ALC882_AUTO },
Kailang Yangdf694da2005-12-05 19:42:22 +01004243 {}
4244};
4245
4246static struct alc_config_preset alc882_presets[] = {
4247 [ALC882_3ST_DIG] = {
4248 .mixers = { alc882_base_mixer },
4249 .init_verbs = { alc882_init_verbs },
4250 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
4251 .dac_nids = alc882_dac_nids,
4252 .dig_out_nid = ALC882_DIGOUT_NID,
4253 .num_adc_nids = ARRAY_SIZE(alc882_adc_nids),
4254 .adc_nids = alc882_adc_nids,
4255 .dig_in_nid = ALC882_DIGIN_NID,
4256 .num_channel_mode = ARRAY_SIZE(alc882_ch_modes),
4257 .channel_mode = alc882_ch_modes,
4258 .input_mux = &alc882_capture_source,
4259 },
4260 [ALC882_6ST_DIG] = {
4261 .mixers = { alc882_base_mixer, alc882_chmode_mixer },
4262 .init_verbs = { alc882_init_verbs },
4263 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
4264 .dac_nids = alc882_dac_nids,
4265 .dig_out_nid = ALC882_DIGOUT_NID,
4266 .num_adc_nids = ARRAY_SIZE(alc882_adc_nids),
4267 .adc_nids = alc882_adc_nids,
4268 .dig_in_nid = ALC882_DIGIN_NID,
4269 .num_channel_mode = ARRAY_SIZE(alc882_sixstack_modes),
4270 .channel_mode = alc882_sixstack_modes,
4271 .input_mux = &alc882_capture_source,
4272 },
4273};
4274
4275
4276/*
4277 * BIOS auto configuration
4278 */
4279static void alc882_auto_set_output_and_unmute(struct hda_codec *codec,
4280 hda_nid_t nid, int pin_type,
4281 int dac_idx)
4282{
4283 /* set as output */
4284 struct alc_spec *spec = codec->spec;
4285 int idx;
4286
4287 if (spec->multiout.dac_nids[dac_idx] == 0x25)
4288 idx = 4;
4289 else
4290 idx = spec->multiout.dac_nids[dac_idx] - 2;
4291
4292 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
4293 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
4294 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, idx);
4295
4296}
4297
4298static void alc882_auto_init_multi_out(struct hda_codec *codec)
4299{
4300 struct alc_spec *spec = codec->spec;
4301 int i;
4302
4303 for (i = 0; i <= HDA_SIDE; i++) {
4304 hda_nid_t nid = spec->autocfg.line_out_pins[i];
4305 if (nid)
4306 alc882_auto_set_output_and_unmute(codec, nid, PIN_OUT, i);
4307 }
4308}
4309
4310static void alc882_auto_init_hp_out(struct hda_codec *codec)
4311{
4312 struct alc_spec *spec = codec->spec;
4313 hda_nid_t pin;
4314
4315 pin = spec->autocfg.hp_pin;
4316 if (pin) /* connect to front */
4317 alc882_auto_set_output_and_unmute(codec, pin, PIN_HP, 0); /* use dac 0 */
4318}
4319
4320#define alc882_is_input_pin(nid) alc880_is_input_pin(nid)
4321#define ALC882_PIN_CD_NID ALC880_PIN_CD_NID
4322
4323static void alc882_auto_init_analog_input(struct hda_codec *codec)
4324{
4325 struct alc_spec *spec = codec->spec;
4326 int i;
4327
4328 for (i = 0; i < AUTO_PIN_LAST; i++) {
4329 hda_nid_t nid = spec->autocfg.input_pins[i];
4330 if (alc882_is_input_pin(nid)) {
4331 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
4332 i <= AUTO_PIN_FRONT_MIC ? PIN_VREF80 : PIN_IN);
4333 if (nid != ALC882_PIN_CD_NID)
4334 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
4335 AMP_OUT_MUTE);
4336 }
4337 }
4338}
4339
4340/* almost identical with ALC880 parser... */
4341static int alc882_parse_auto_config(struct hda_codec *codec)
4342{
4343 struct alc_spec *spec = codec->spec;
4344 int err = alc880_parse_auto_config(codec);
4345
4346 if (err < 0)
4347 return err;
Takashi Iwaic5f2ea02005-12-06 18:54:31 +01004348 else if (err > 0)
4349 /* hack - override the init verbs */
4350 spec->init_verbs[0] = alc882_auto_init_verbs;
4351 return err;
Kailang Yangdf694da2005-12-05 19:42:22 +01004352}
4353
Takashi Iwaiae6b8132006-03-03 16:47:17 +01004354/* additional initialization for auto-configuration model */
4355static void alc882_auto_init(struct hda_codec *codec)
Kailang Yangdf694da2005-12-05 19:42:22 +01004356{
Kailang Yangdf694da2005-12-05 19:42:22 +01004357 alc882_auto_init_multi_out(codec);
4358 alc882_auto_init_hp_out(codec);
4359 alc882_auto_init_analog_input(codec);
Kailang Yangdf694da2005-12-05 19:42:22 +01004360}
4361
4362/*
4363 * ALC882 Headphone poll in 3.5.1a or 3.5.2
4364 */
4365
Linus Torvalds1da177e2005-04-16 15:20:36 -07004366static int patch_alc882(struct hda_codec *codec)
4367{
4368 struct alc_spec *spec;
Kailang Yangdf694da2005-12-05 19:42:22 +01004369 int err, board_config;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370
Takashi Iwaie560d8d2005-09-09 14:21:46 +02004371 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372 if (spec == NULL)
4373 return -ENOMEM;
4374
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375 codec->spec = spec;
4376
Kailang Yangdf694da2005-12-05 19:42:22 +01004377 board_config = snd_hda_check_board_config(codec, alc882_cfg_tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004378
Kailang Yangdf694da2005-12-05 19:42:22 +01004379 if (board_config < 0 || board_config >= ALC882_MODEL_LAST) {
4380 printk(KERN_INFO "hda_codec: Unknown model for ALC882, trying auto-probe from BIOS...\n");
4381 board_config = ALC882_AUTO;
4382 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02004383
Kailang Yangdf694da2005-12-05 19:42:22 +01004384 if (board_config == ALC882_AUTO) {
4385 /* automatic parse from the BIOS config */
4386 err = alc882_parse_auto_config(codec);
4387 if (err < 0) {
4388 alc_free(codec);
4389 return err;
4390 } else if (! err) {
4391 printk(KERN_INFO "hda_codec: Cannot set up configuration from BIOS. Using base mode...\n");
4392 board_config = ALC882_3ST_DIG;
4393 }
4394 }
4395
4396 if (board_config != ALC882_AUTO)
4397 setup_preset(spec, &alc882_presets[board_config]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004398
4399 spec->stream_name_analog = "ALC882 Analog";
Kailang Yangdf694da2005-12-05 19:42:22 +01004400 spec->stream_analog_playback = &alc882_pcm_analog_playback;
4401 spec->stream_analog_capture = &alc882_pcm_analog_capture;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004402
4403 spec->stream_name_digital = "ALC882 Digital";
Kailang Yangdf694da2005-12-05 19:42:22 +01004404 spec->stream_digital_playback = &alc882_pcm_digital_playback;
4405 spec->stream_digital_capture = &alc882_pcm_digital_capture;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004406
Kailang Yangdf694da2005-12-05 19:42:22 +01004407 if (! spec->adc_nids && spec->input_mux) {
4408 /* check whether NID 0x07 is valid */
Takashi Iwai4a471b72005-12-07 13:56:29 +01004409 unsigned int wcap = get_wcaps(codec, 0x07);
Kailang Yangdf694da2005-12-05 19:42:22 +01004410 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT; /* get type */
4411 if (wcap != AC_WID_AUD_IN) {
4412 spec->adc_nids = alc882_adc_nids_alt;
4413 spec->num_adc_nids = ARRAY_SIZE(alc882_adc_nids_alt);
4414 spec->mixers[spec->num_mixers] = alc882_capture_alt_mixer;
4415 spec->num_mixers++;
4416 } else {
4417 spec->adc_nids = alc882_adc_nids;
4418 spec->num_adc_nids = ARRAY_SIZE(alc882_adc_nids);
4419 spec->mixers[spec->num_mixers] = alc882_capture_mixer;
4420 spec->num_mixers++;
4421 }
4422 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004423
4424 codec->patch_ops = alc_patch_ops;
Kailang Yangdf694da2005-12-05 19:42:22 +01004425 if (board_config == ALC882_AUTO)
Takashi Iwaiae6b8132006-03-03 16:47:17 +01004426 spec->init_hook = alc882_auto_init;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427
4428 return 0;
4429}
4430
4431/*
Kailang Yangdf694da2005-12-05 19:42:22 +01004432 * ALC262 support
4433 */
4434
4435#define ALC262_DIGOUT_NID ALC880_DIGOUT_NID
4436#define ALC262_DIGIN_NID ALC880_DIGIN_NID
4437
4438#define alc262_dac_nids alc260_dac_nids
4439#define alc262_adc_nids alc882_adc_nids
4440#define alc262_adc_nids_alt alc882_adc_nids_alt
4441
4442#define alc262_modes alc260_modes
Takashi Iwaic5f2ea02005-12-06 18:54:31 +01004443#define alc262_capture_source alc882_capture_source
Kailang Yangdf694da2005-12-05 19:42:22 +01004444
4445static struct snd_kcontrol_new alc262_base_mixer[] = {
4446 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
4447 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
4448 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
4449 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
4450 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
4451 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
4452 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
4453 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
4454 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
4455 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
4456 /* HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x0b, 0x05, HDA_INPUT),
4457 HDA_CODEC_MUTE("PC Beelp Playback Switch", 0x0b, 0x05, HDA_INPUT), */
4458 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0D, 0x0, HDA_OUTPUT),
4459 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
4460 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
4461 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT),
Kailang Yangdf694da2005-12-05 19:42:22 +01004462 { } /* end */
Takashi Iwai834be882006-03-01 14:16:17 +01004463};
4464
Kailang Yangdf694da2005-12-05 19:42:22 +01004465#define alc262_capture_mixer alc882_capture_mixer
4466#define alc262_capture_alt_mixer alc882_capture_alt_mixer
4467
4468/*
4469 * generic initialization of ADC, input mixers and output mixers
4470 */
4471static struct hda_verb alc262_init_verbs[] = {
4472 /*
4473 * Unmute ADC0-2 and set the default input to mic-in
4474 */
4475 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
4476 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4477 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
4478 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4479 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
4480 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4481
4482 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
4483 * mixer widget
4484 * Note: PASD motherboards uses the Line In 2 as the input for front panel
4485 * mic (mic 2)
4486 */
4487 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
4488 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4489 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4490 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
4491 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
4492 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
4493
4494 /*
4495 * Set up output mixers (0x0c - 0x0e)
4496 */
4497 /* set vol=0 to output mixers */
4498 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4499 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4500 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4501 /* set up input amps for analog loopback */
4502 /* Amp Indices: DAC = 0, mixer = 1 */
4503 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4504 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4505 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4506 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4507 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4508 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4509
4510 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
4511 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
4512 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
4513 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
4514 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
4515 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
4516
4517 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
4518 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
4519 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
4520 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
4521 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
4522
4523 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
4524 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
4525
4526 /* FIXME: use matrix-type input source selection */
4527 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
4528 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
4529 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4530 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
4531 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
4532 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
4533 /* Input mixer2 */
4534 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4535 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
4536 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
4537 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
4538 /* Input mixer3 */
4539 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4540 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
4541 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
4542 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
4543
4544 { }
4545};
4546
Takashi Iwai834be882006-03-01 14:16:17 +01004547/*
4548 * fujitsu model
4549 * 0x14 = headphone/spdif-out, 0x15 = internal speaker
4550 */
4551
4552#define ALC_HP_EVENT 0x37
4553
4554static struct hda_verb alc262_fujitsu_unsol_verbs[] = {
4555 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC_HP_EVENT},
4556 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
4557 {}
4558};
4559
4560static struct hda_input_mux alc262_fujitsu_capture_source = {
4561 .num_items = 2,
4562 .items = {
4563 { "Mic", 0x0 },
4564 { "CD", 0x4 },
4565 },
4566};
4567
4568/* mute/unmute internal speaker according to the hp jack and mute state */
4569static void alc262_fujitsu_automute(struct hda_codec *codec, int force)
4570{
4571 struct alc_spec *spec = codec->spec;
4572 unsigned int mute;
4573
4574 if (force || ! spec->sense_updated) {
4575 unsigned int present;
4576 /* need to execute and sync at first */
4577 snd_hda_codec_read(codec, 0x14, 0, AC_VERB_SET_PIN_SENSE, 0);
4578 present = snd_hda_codec_read(codec, 0x14, 0,
4579 AC_VERB_GET_PIN_SENSE, 0);
4580 spec->jack_present = (present & 0x80000000) != 0;
4581 spec->sense_updated = 1;
4582 }
4583 if (spec->jack_present) {
4584 /* mute internal speaker */
4585 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
4586 0x80, 0x80);
4587 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
4588 0x80, 0x80);
4589 } else {
4590 /* unmute internal speaker if necessary */
4591 mute = snd_hda_codec_amp_read(codec, 0x14, 0, HDA_OUTPUT, 0);
4592 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
4593 0x80, mute & 0x80);
4594 mute = snd_hda_codec_amp_read(codec, 0x14, 1, HDA_OUTPUT, 0);
4595 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
4596 0x80, mute & 0x80);
4597 }
4598}
4599
4600/* unsolicited event for HP jack sensing */
4601static void alc262_fujitsu_unsol_event(struct hda_codec *codec,
4602 unsigned int res)
4603{
4604 if ((res >> 26) != ALC_HP_EVENT)
4605 return;
4606 alc262_fujitsu_automute(codec, 1);
4607}
4608
4609/* bind volumes of both NID 0x0c and 0x0d */
4610static int alc262_fujitsu_master_vol_put(struct snd_kcontrol *kcontrol,
4611 struct snd_ctl_elem_value *ucontrol)
4612{
4613 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
4614 long *valp = ucontrol->value.integer.value;
4615 int change;
4616
4617 change = snd_hda_codec_amp_update(codec, 0x0c, 0, HDA_OUTPUT, 0,
4618 0x7f, valp[0] & 0x7f);
4619 change |= snd_hda_codec_amp_update(codec, 0x0c, 1, HDA_OUTPUT, 0,
4620 0x7f, valp[1] & 0x7f);
4621 snd_hda_codec_amp_update(codec, 0x0d, 0, HDA_OUTPUT, 0,
4622 0x7f, valp[0] & 0x7f);
4623 snd_hda_codec_amp_update(codec, 0x0d, 1, HDA_OUTPUT, 0,
4624 0x7f, valp[1] & 0x7f);
4625 return change;
4626}
4627
4628/* bind hp and internal speaker mute (with plug check) */
4629static int alc262_fujitsu_master_sw_put(struct snd_kcontrol *kcontrol,
4630 struct snd_ctl_elem_value *ucontrol)
4631{
4632 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
4633 long *valp = ucontrol->value.integer.value;
4634 int change;
4635
4636 change = snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
4637 0x80, valp[0] ? 0 : 0x80);
4638 change |= snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
4639 0x80, valp[1] ? 0 : 0x80);
4640 if (change || codec->in_resume)
4641 alc262_fujitsu_automute(codec, codec->in_resume);
4642 return change;
4643}
4644
4645static struct snd_kcontrol_new alc262_fujitsu_mixer[] = {
4646 {
4647 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4648 .name = "Master Playback Volume",
4649 .info = snd_hda_mixer_amp_volume_info,
4650 .get = snd_hda_mixer_amp_volume_get,
4651 .put = alc262_fujitsu_master_vol_put,
4652 .private_value = HDA_COMPOSE_AMP_VAL(0x0c, 3, 0, HDA_OUTPUT),
4653 },
4654 {
4655 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4656 .name = "Master Playback Switch",
4657 .info = snd_hda_mixer_amp_switch_info,
4658 .get = snd_hda_mixer_amp_switch_get,
4659 .put = alc262_fujitsu_master_sw_put,
4660 .private_value = HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT),
4661 },
4662 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
4663 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
4664 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
4665 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
4666 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
4667 { } /* end */
4668};
4669
Kailang Yangdf694da2005-12-05 19:42:22 +01004670/* add playback controls from the parsed DAC table */
4671static int alc262_auto_create_multi_out_ctls(struct alc_spec *spec, const struct auto_pin_cfg *cfg)
4672{
4673 hda_nid_t nid;
4674 int err;
4675
4676 spec->multiout.num_dacs = 1; /* only use one dac */
4677 spec->multiout.dac_nids = spec->private_dac_nids;
4678 spec->multiout.dac_nids[0] = 2;
4679
4680 nid = cfg->line_out_pins[0];
4681 if (nid) {
4682 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL, "Front Playback Volume",
4683 HDA_COMPOSE_AMP_VAL(0x0c, 3, 0, HDA_OUTPUT))) < 0)
4684 return err;
4685 if ((err = add_control(spec, ALC_CTL_WIDGET_MUTE, "Front Playback Switch",
4686 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT))) < 0)
4687 return err;
4688 }
4689
Takashi Iwai82bc9552006-03-21 11:24:42 +01004690 nid = cfg->speaker_pins[0];
Kailang Yangdf694da2005-12-05 19:42:22 +01004691 if (nid) {
4692 if (nid == 0x16) {
4693 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL, "Speaker Playback Volume",
4694 HDA_COMPOSE_AMP_VAL(0x0e, 2, 0, HDA_OUTPUT))) < 0)
4695 return err;
4696 if ((err = add_control(spec, ALC_CTL_WIDGET_MUTE, "Speaker Playback Switch",
4697 HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_OUTPUT))) < 0)
4698 return err;
4699 } else {
Kailang Yangdf694da2005-12-05 19:42:22 +01004700 if ((err = add_control(spec, ALC_CTL_WIDGET_MUTE, "Speaker Playback Switch",
4701 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT))) < 0)
4702 return err;
4703 }
4704 }
4705 nid = cfg->hp_pin;
4706 if (nid) {
4707 /* spec->multiout.hp_nid = 2; */
4708 if (nid == 0x16) {
4709 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL, "Headphone Playback Volume",
4710 HDA_COMPOSE_AMP_VAL(0x0e, 2, 0, HDA_OUTPUT))) < 0)
4711 return err;
4712 if ((err = add_control(spec, ALC_CTL_WIDGET_MUTE, "Headphone Playback Switch",
4713 HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_OUTPUT))) < 0)
4714 return err;
4715 } else {
Kailang Yangdf694da2005-12-05 19:42:22 +01004716 if ((err = add_control(spec, ALC_CTL_WIDGET_MUTE, "Headphone Playback Switch",
4717 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT))) < 0)
4718 return err;
4719 }
4720 }
4721 return 0;
4722}
4723
4724/* identical with ALC880 */
4725#define alc262_auto_create_analog_input_ctls alc880_auto_create_analog_input_ctls
4726
4727/*
4728 * generic initialization of ADC, input mixers and output mixers
4729 */
4730static struct hda_verb alc262_volume_init_verbs[] = {
4731 /*
4732 * Unmute ADC0-2 and set the default input to mic-in
4733 */
4734 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
4735 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4736 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
4737 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4738 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
4739 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4740
4741 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
4742 * mixer widget
4743 * Note: PASD motherboards uses the Line In 2 as the input for front panel
4744 * mic (mic 2)
4745 */
4746 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
4747 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4748 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4749 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
4750 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
4751 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
4752
4753 /*
4754 * Set up output mixers (0x0c - 0x0f)
4755 */
4756 /* set vol=0 to output mixers */
4757 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4758 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4759 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4760
4761 /* set up input amps for analog loopback */
4762 /* Amp Indices: DAC = 0, mixer = 1 */
4763 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4764 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4765 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4766 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4767 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4768 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4769
4770 /* FIXME: use matrix-type input source selection */
4771 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
4772 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
4773 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4774 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
4775 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
4776 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
4777 /* Input mixer2 */
4778 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4779 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
4780 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
4781 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
4782 /* Input mixer3 */
4783 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4784 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
4785 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
4786 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
4787
4788 { }
4789};
4790
4791/* pcm configuration: identiacal with ALC880 */
4792#define alc262_pcm_analog_playback alc880_pcm_analog_playback
4793#define alc262_pcm_analog_capture alc880_pcm_analog_capture
4794#define alc262_pcm_digital_playback alc880_pcm_digital_playback
4795#define alc262_pcm_digital_capture alc880_pcm_digital_capture
4796
4797/*
4798 * BIOS auto configuration
4799 */
4800static int alc262_parse_auto_config(struct hda_codec *codec)
4801{
4802 struct alc_spec *spec = codec->spec;
4803 int err;
4804 static hda_nid_t alc262_ignore[] = { 0x1d, 0 };
4805
4806 if ((err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
4807 alc262_ignore)) < 0)
4808 return err;
Takashi Iwai82bc9552006-03-21 11:24:42 +01004809 if (! spec->autocfg.line_outs)
Kailang Yangdf694da2005-12-05 19:42:22 +01004810 return 0; /* can't find valid BIOS pin config */
4811 if ((err = alc262_auto_create_multi_out_ctls(spec, &spec->autocfg)) < 0 ||
4812 (err = alc262_auto_create_analog_input_ctls(spec, &spec->autocfg)) < 0)
4813 return err;
4814
4815 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
4816
4817 if (spec->autocfg.dig_out_pin)
4818 spec->multiout.dig_out_nid = ALC262_DIGOUT_NID;
4819 if (spec->autocfg.dig_in_pin)
4820 spec->dig_in_nid = ALC262_DIGIN_NID;
4821
4822 if (spec->kctl_alloc)
4823 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
4824
4825 spec->init_verbs[spec->num_init_verbs++] = alc262_volume_init_verbs;
4826 spec->input_mux = &spec->private_imux;
4827
4828 return 1;
4829}
4830
4831#define alc262_auto_init_multi_out alc882_auto_init_multi_out
4832#define alc262_auto_init_hp_out alc882_auto_init_hp_out
4833#define alc262_auto_init_analog_input alc882_auto_init_analog_input
4834
4835
4836/* init callback for auto-configuration model -- overriding the default init */
Takashi Iwaiae6b8132006-03-03 16:47:17 +01004837static void alc262_auto_init(struct hda_codec *codec)
Kailang Yangdf694da2005-12-05 19:42:22 +01004838{
Kailang Yangdf694da2005-12-05 19:42:22 +01004839 alc262_auto_init_multi_out(codec);
4840 alc262_auto_init_hp_out(codec);
4841 alc262_auto_init_analog_input(codec);
Kailang Yangdf694da2005-12-05 19:42:22 +01004842}
4843
4844/*
4845 * configuration and preset
4846 */
4847static struct hda_board_config alc262_cfg_tbl[] = {
4848 { .modelname = "basic", .config = ALC262_BASIC },
Takashi Iwai834be882006-03-01 14:16:17 +01004849 { .modelname = "fujitsu", .config = ALC262_FUJITSU },
4850 { .pci_subvendor = 0x10cf, .pci_subdevice = 0x1397, .config = ALC262_FUJITSU },
Kailang Yangdf694da2005-12-05 19:42:22 +01004851 { .modelname = "auto", .config = ALC262_AUTO },
4852 {}
4853};
4854
4855static struct alc_config_preset alc262_presets[] = {
4856 [ALC262_BASIC] = {
4857 .mixers = { alc262_base_mixer },
4858 .init_verbs = { alc262_init_verbs },
4859 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
4860 .dac_nids = alc262_dac_nids,
4861 .hp_nid = 0x03,
4862 .num_channel_mode = ARRAY_SIZE(alc262_modes),
4863 .channel_mode = alc262_modes,
Takashi Iwaia3bcba32005-12-06 19:05:29 +01004864 .input_mux = &alc262_capture_source,
Kailang Yangdf694da2005-12-05 19:42:22 +01004865 },
Takashi Iwai834be882006-03-01 14:16:17 +01004866 [ALC262_FUJITSU] = {
4867 .mixers = { alc262_fujitsu_mixer },
4868 .init_verbs = { alc262_init_verbs, alc262_fujitsu_unsol_verbs },
4869 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
4870 .dac_nids = alc262_dac_nids,
4871 .hp_nid = 0x03,
4872 .dig_out_nid = ALC262_DIGOUT_NID,
4873 .num_channel_mode = ARRAY_SIZE(alc262_modes),
4874 .channel_mode = alc262_modes,
4875 .input_mux = &alc262_fujitsu_capture_source,
Takashi Iwaiae6b8132006-03-03 16:47:17 +01004876 .unsol_event = alc262_fujitsu_unsol_event,
Takashi Iwai834be882006-03-01 14:16:17 +01004877 },
Kailang Yangdf694da2005-12-05 19:42:22 +01004878};
4879
4880static int patch_alc262(struct hda_codec *codec)
4881{
4882 struct alc_spec *spec;
4883 int board_config;
4884 int err;
4885
4886 spec = kcalloc(1, sizeof(*spec), GFP_KERNEL);
4887 if (spec == NULL)
4888 return -ENOMEM;
4889
4890 codec->spec = spec;
4891#if 0
4892 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is under-run */
4893 {
4894 int tmp;
4895 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
4896 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
4897 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
4898 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PROC_COEF, tmp | 0x80);
4899 }
4900#endif
4901
4902 board_config = snd_hda_check_board_config(codec, alc262_cfg_tbl);
4903 if (board_config < 0 || board_config >= ALC262_MODEL_LAST) {
4904 printk(KERN_INFO "hda_codec: Unknown model for ALC262, trying auto-probe from BIOS...\n");
4905 board_config = ALC262_AUTO;
4906 }
4907
4908 if (board_config == ALC262_AUTO) {
4909 /* automatic parse from the BIOS config */
4910 err = alc262_parse_auto_config(codec);
4911 if (err < 0) {
4912 alc_free(codec);
4913 return err;
4914 } else if (! err) {
4915 printk(KERN_INFO "hda_codec: Cannot set up configuration from BIOS. Using base mode...\n");
4916 board_config = ALC262_BASIC;
4917 }
4918 }
4919
4920 if (board_config != ALC262_AUTO)
4921 setup_preset(spec, &alc262_presets[board_config]);
4922
4923 spec->stream_name_analog = "ALC262 Analog";
4924 spec->stream_analog_playback = &alc262_pcm_analog_playback;
4925 spec->stream_analog_capture = &alc262_pcm_analog_capture;
4926
4927 spec->stream_name_digital = "ALC262 Digital";
4928 spec->stream_digital_playback = &alc262_pcm_digital_playback;
4929 spec->stream_digital_capture = &alc262_pcm_digital_capture;
4930
4931 if (! spec->adc_nids && spec->input_mux) {
4932 /* check whether NID 0x07 is valid */
Takashi Iwai4a471b72005-12-07 13:56:29 +01004933 unsigned int wcap = get_wcaps(codec, 0x07);
4934
Kailang Yangdf694da2005-12-05 19:42:22 +01004935 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT; /* get type */
4936 if (wcap != AC_WID_AUD_IN) {
4937 spec->adc_nids = alc262_adc_nids_alt;
4938 spec->num_adc_nids = ARRAY_SIZE(alc262_adc_nids_alt);
4939 spec->mixers[spec->num_mixers] = alc262_capture_alt_mixer;
4940 spec->num_mixers++;
4941 } else {
4942 spec->adc_nids = alc262_adc_nids;
4943 spec->num_adc_nids = ARRAY_SIZE(alc262_adc_nids);
4944 spec->mixers[spec->num_mixers] = alc262_capture_mixer;
4945 spec->num_mixers++;
4946 }
4947 }
4948
4949 codec->patch_ops = alc_patch_ops;
4950 if (board_config == ALC262_AUTO)
Takashi Iwaiae6b8132006-03-03 16:47:17 +01004951 spec->init_hook = alc262_auto_init;
Takashi Iwai834be882006-03-01 14:16:17 +01004952
Kailang Yangdf694da2005-12-05 19:42:22 +01004953 return 0;
4954}
4955
4956
4957/*
4958 * ALC861 channel source setting (2/6 channel selection for 3-stack)
4959 */
4960
4961/*
4962 * set the path ways for 2 channel output
4963 * need to set the codec line out and mic 1 pin widgets to inputs
4964 */
4965static struct hda_verb alc861_threestack_ch2_init[] = {
4966 /* set pin widget 1Ah (line in) for input */
4967 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
4968 /* set pin widget 18h (mic1/2) for input, for mic also enable the vref */
4969 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
4970
4971 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c },
4972 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8)) }, //mic
4973 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8)) }, //line in
4974 { } /* end */
4975};
4976/*
4977 * 6ch mode
4978 * need to set the codec line out and mic 1 pin widgets to outputs
4979 */
4980static struct hda_verb alc861_threestack_ch6_init[] = {
4981 /* set pin widget 1Ah (line in) for output (Back Surround)*/
4982 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
4983 /* set pin widget 18h (mic1) for output (CLFE)*/
4984 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
4985
4986 { 0x0c, AC_VERB_SET_CONNECT_SEL, 0x00 },
4987 { 0x0d, AC_VERB_SET_CONNECT_SEL, 0x00 },
4988
4989 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080 },
4990 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x01 << 8)) }, //mic
4991 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8)) }, //line in
4992 { } /* end */
4993};
4994
4995static struct hda_channel_mode alc861_threestack_modes[2] = {
4996 { 2, alc861_threestack_ch2_init },
4997 { 6, alc861_threestack_ch6_init },
4998};
4999
5000/* patch-ALC861 */
5001
5002static struct snd_kcontrol_new alc861_base_mixer[] = {
5003 /* output mixer control */
5004 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
5005 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
5006 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
5007 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
5008 HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT),
5009
5010 /*Input mixer control */
5011 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
5012 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
5013 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
5014 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
5015 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
5016 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
5017 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
5018 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
5019 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
5020 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT),
5021
5022 /* Capture mixer control */
5023 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5024 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5025 {
5026 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5027 .name = "Capture Source",
5028 .count = 1,
5029 .info = alc_mux_enum_info,
5030 .get = alc_mux_enum_get,
5031 .put = alc_mux_enum_put,
5032 },
5033 { } /* end */
5034};
5035
5036static struct snd_kcontrol_new alc861_3ST_mixer[] = {
5037 /* output mixer control */
5038 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
5039 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
5040 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
5041 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
5042 /*HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT), */
5043
5044 /* Input mixer control */
5045 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
5046 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
5047 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
5048 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
5049 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
5050 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
5051 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
5052 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
5053 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
5054 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT),
5055
5056 /* Capture mixer control */
5057 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5058 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5059 {
5060 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5061 .name = "Capture Source",
5062 .count = 1,
5063 .info = alc_mux_enum_info,
5064 .get = alc_mux_enum_get,
5065 .put = alc_mux_enum_put,
5066 },
5067 {
5068 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5069 .name = "Channel Mode",
5070 .info = alc_ch_mode_info,
5071 .get = alc_ch_mode_get,
5072 .put = alc_ch_mode_put,
5073 .private_value = ARRAY_SIZE(alc861_threestack_modes),
5074 },
5075 { } /* end */
5076};
5077
5078/*
5079 * generic initialization of ADC, input mixers and output mixers
5080 */
5081static struct hda_verb alc861_base_init_verbs[] = {
5082 /*
5083 * Unmute ADC0 and set the default input to mic-in
5084 */
5085 /* port-A for surround (rear panel) */
5086 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
5087 { 0x0e, AC_VERB_SET_CONNECT_SEL, 0x00 },
5088 /* port-B for mic-in (rear panel) with vref */
5089 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
5090 /* port-C for line-in (rear panel) */
5091 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
5092 /* port-D for Front */
5093 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
5094 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
5095 /* port-E for HP out (front panel) */
5096 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
5097 /* route front PCM to HP */
5098 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x01 },
5099 /* port-F for mic-in (front panel) with vref */
5100 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
5101 /* port-G for CLFE (rear panel) */
5102 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
5103 { 0x1f, AC_VERB_SET_CONNECT_SEL, 0x00 },
5104 /* port-H for side (rear panel) */
5105 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
5106 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x00 },
5107 /* CD-in */
5108 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
5109 /* route front mic to ADC1*/
5110 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
5111 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5112
5113 /* Unmute DAC0~3 & spdif out*/
5114 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5115 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5116 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5117 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5118 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5119
5120 /* Unmute Mixer 14 (mic) 1c (Line in)*/
5121 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5122 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5123 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5124 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5125
5126 /* Unmute Stereo Mixer 15 */
5127 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5128 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5129 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
5130 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c }, //Output 0~12 step
5131
5132 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5133 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5134 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5135 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5136 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5137 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5138 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5139 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5140 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)}, // hp used DAC 3 (Front)
5141 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
5142
5143 { }
5144};
5145
5146static struct hda_verb alc861_threestack_init_verbs[] = {
5147 /*
5148 * Unmute ADC0 and set the default input to mic-in
5149 */
5150 /* port-A for surround (rear panel) */
5151 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
5152 /* port-B for mic-in (rear panel) with vref */
5153 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
5154 /* port-C for line-in (rear panel) */
5155 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
5156 /* port-D for Front */
5157 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
5158 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
5159 /* port-E for HP out (front panel) */
5160 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
5161 /* route front PCM to HP */
5162 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x01 },
5163 /* port-F for mic-in (front panel) with vref */
5164 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
5165 /* port-G for CLFE (rear panel) */
5166 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
5167 /* port-H for side (rear panel) */
5168 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
5169 /* CD-in */
5170 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
5171 /* route front mic to ADC1*/
5172 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
5173 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5174 /* Unmute DAC0~3 & spdif out*/
5175 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5176 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5177 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5178 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5179 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5180
5181 /* Unmute Mixer 14 (mic) 1c (Line in)*/
5182 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5183 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5184 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5185 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5186
5187 /* Unmute Stereo Mixer 15 */
5188 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5189 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5190 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
5191 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c }, //Output 0~12 step
5192
5193 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5194 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5195 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5196 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5197 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5198 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5199 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5200 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5201 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)}, // hp used DAC 3 (Front)
5202 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
5203 { }
5204};
5205/*
5206 * generic initialization of ADC, input mixers and output mixers
5207 */
5208static struct hda_verb alc861_auto_init_verbs[] = {
5209 /*
5210 * Unmute ADC0 and set the default input to mic-in
5211 */
5212// {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
5213 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5214
5215 /* Unmute DAC0~3 & spdif out*/
5216 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5217 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5218 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5219 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5220 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5221
5222 /* Unmute Mixer 14 (mic) 1c (Line in)*/
5223 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5224 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5225 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5226 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5227
5228 /* Unmute Stereo Mixer 15 */
5229 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5230 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5231 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
5232 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c},
5233
5234 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5235 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5236 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5237 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5238 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5239 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5240 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5241 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5242
5243 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5244 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5245 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
5246 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
5247 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5248 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5249 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
5250 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
5251
5252 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00}, // set Mic 1
5253
5254 { }
5255};
5256
5257/* pcm configuration: identiacal with ALC880 */
5258#define alc861_pcm_analog_playback alc880_pcm_analog_playback
5259#define alc861_pcm_analog_capture alc880_pcm_analog_capture
5260#define alc861_pcm_digital_playback alc880_pcm_digital_playback
5261#define alc861_pcm_digital_capture alc880_pcm_digital_capture
5262
5263
5264#define ALC861_DIGOUT_NID 0x07
5265
5266static struct hda_channel_mode alc861_8ch_modes[1] = {
5267 { 8, NULL }
5268};
5269
5270static hda_nid_t alc861_dac_nids[4] = {
5271 /* front, surround, clfe, side */
5272 0x03, 0x06, 0x05, 0x04
5273};
5274
5275static hda_nid_t alc861_adc_nids[1] = {
5276 /* ADC0-2 */
5277 0x08,
5278};
5279
5280static struct hda_input_mux alc861_capture_source = {
5281 .num_items = 5,
5282 .items = {
5283 { "Mic", 0x0 },
5284 { "Front Mic", 0x3 },
5285 { "Line", 0x1 },
5286 { "CD", 0x4 },
5287 { "Mixer", 0x5 },
5288 },
5289};
5290
5291/* fill in the dac_nids table from the parsed pin configuration */
5292static int alc861_auto_fill_dac_nids(struct alc_spec *spec, const struct auto_pin_cfg *cfg)
5293{
5294 int i;
5295 hda_nid_t nid;
5296
5297 spec->multiout.dac_nids = spec->private_dac_nids;
5298 for (i = 0; i < cfg->line_outs; i++) {
5299 nid = cfg->line_out_pins[i];
5300 if (nid) {
5301 if (i >= ARRAY_SIZE(alc861_dac_nids))
5302 continue;
5303 spec->multiout.dac_nids[i] = alc861_dac_nids[i];
5304 }
5305 }
5306 spec->multiout.num_dacs = cfg->line_outs;
5307 return 0;
5308}
5309
5310/* add playback controls from the parsed DAC table */
5311static int alc861_auto_create_multi_out_ctls(struct alc_spec *spec,
5312 const struct auto_pin_cfg *cfg)
5313{
5314 char name[32];
5315 static const char *chname[4] = { "Front", "Surround", NULL /*CLFE*/, "Side" };
5316 hda_nid_t nid;
5317 int i, idx, err;
5318
5319 for (i = 0; i < cfg->line_outs; i++) {
5320 nid = spec->multiout.dac_nids[i];
5321 if (! nid)
5322 continue;
5323 if (nid == 0x05) {
5324 /* Center/LFE */
5325 if ((err = add_control(spec, ALC_CTL_BIND_MUTE, "Center Playback Switch",
5326 HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT))) < 0)
5327 return err;
5328 if ((err = add_control(spec, ALC_CTL_BIND_MUTE, "LFE Playback Switch",
5329 HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_OUTPUT))) < 0)
5330 return err;
5331 } else {
5332 for (idx = 0; idx < ARRAY_SIZE(alc861_dac_nids) - 1; idx++)
5333 if (nid == alc861_dac_nids[idx])
5334 break;
5335 sprintf(name, "%s Playback Switch", chname[idx]);
5336 if ((err = add_control(spec, ALC_CTL_BIND_MUTE, name,
5337 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT))) < 0)
5338 return err;
5339 }
5340 }
5341 return 0;
5342}
5343
5344static int alc861_auto_create_hp_ctls(struct alc_spec *spec, hda_nid_t pin)
5345{
5346 int err;
5347 hda_nid_t nid;
5348
5349 if (! pin)
5350 return 0;
5351
5352 if ((pin >= 0x0b && pin <= 0x10) || pin == 0x1f || pin == 0x20) {
5353 nid = 0x03;
5354 if ((err = add_control(spec, ALC_CTL_WIDGET_MUTE, "Headphone Playback Switch",
5355 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT))) < 0)
5356 return err;
5357 spec->multiout.hp_nid = nid;
5358 }
5359 return 0;
5360}
5361
5362/* create playback/capture controls for input pins */
5363static int alc861_auto_create_analog_input_ctls(struct alc_spec *spec, const struct auto_pin_cfg *cfg)
5364{
Kailang Yangdf694da2005-12-05 19:42:22 +01005365 struct hda_input_mux *imux = &spec->private_imux;
5366 int i, err, idx, idx1;
5367
5368 for (i = 0; i < AUTO_PIN_LAST; i++) {
5369 switch(cfg->input_pins[i]) {
5370 case 0x0c:
5371 idx1 = 1;
5372 idx = 2; // Line In
5373 break;
5374 case 0x0f:
5375 idx1 = 2;
5376 idx = 2; // Line In
5377 break;
5378 case 0x0d:
5379 idx1 = 0;
5380 idx = 1; // Mic In
5381 break;
5382 case 0x10:
5383 idx1 = 3;
5384 idx = 1; // Mic In
5385 break;
5386 case 0x11:
5387 idx1 = 4;
5388 idx = 0; // CD
5389 break;
5390 default:
5391 continue;
5392 }
5393
Takashi Iwai4a471b72005-12-07 13:56:29 +01005394 err = new_analog_input(spec, cfg->input_pins[i],
5395 auto_pin_cfg_labels[i], idx, 0x15);
Kailang Yangdf694da2005-12-05 19:42:22 +01005396 if (err < 0)
5397 return err;
5398
Takashi Iwai4a471b72005-12-07 13:56:29 +01005399 imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
Kailang Yangdf694da2005-12-05 19:42:22 +01005400 imux->items[imux->num_items].index = idx1;
5401 imux->num_items++;
5402 }
5403 return 0;
5404}
5405
5406static struct snd_kcontrol_new alc861_capture_mixer[] = {
5407 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5408 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5409
5410 {
5411 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5412 /* The multiple "Capture Source" controls confuse alsamixer
5413 * So call somewhat different..
5414 *FIXME: the controls appear in the "playback" view!
5415 */
5416 /* .name = "Capture Source", */
5417 .name = "Input Source",
5418 .count = 1,
5419 .info = alc_mux_enum_info,
5420 .get = alc_mux_enum_get,
5421 .put = alc_mux_enum_put,
5422 },
5423 { } /* end */
5424};
5425
5426static void alc861_auto_set_output_and_unmute(struct hda_codec *codec, hda_nid_t nid,
5427 int pin_type, int dac_idx)
5428{
5429 /* set as output */
5430
5431 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
5432 snd_hda_codec_write(codec, dac_idx, 0, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
5433
5434}
5435
5436static void alc861_auto_init_multi_out(struct hda_codec *codec)
5437{
5438 struct alc_spec *spec = codec->spec;
5439 int i;
5440
5441 for (i = 0; i < spec->autocfg.line_outs; i++) {
5442 hda_nid_t nid = spec->autocfg.line_out_pins[i];
5443 if (nid)
5444 alc861_auto_set_output_and_unmute(codec, nid, PIN_OUT, spec->multiout.dac_nids[i]);
5445 }
5446}
5447
5448static void alc861_auto_init_hp_out(struct hda_codec *codec)
5449{
5450 struct alc_spec *spec = codec->spec;
5451 hda_nid_t pin;
5452
5453 pin = spec->autocfg.hp_pin;
5454 if (pin) /* connect to front */
5455 alc861_auto_set_output_and_unmute(codec, pin, PIN_HP, spec->multiout.dac_nids[0]);
5456}
5457
5458static void alc861_auto_init_analog_input(struct hda_codec *codec)
5459{
5460 struct alc_spec *spec = codec->spec;
5461 int i;
5462
5463 for (i = 0; i < AUTO_PIN_LAST; i++) {
5464 hda_nid_t nid = spec->autocfg.input_pins[i];
5465 if ((nid>=0x0c) && (nid <=0x11)) {
5466 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
5467 i <= AUTO_PIN_FRONT_MIC ? PIN_VREF80 : PIN_IN);
5468 }
5469 }
5470}
5471
5472/* parse the BIOS configuration and set up the alc_spec */
5473/* return 1 if successful, 0 if the proper config is not found, or a negative error code */
5474static int alc861_parse_auto_config(struct hda_codec *codec)
5475{
5476 struct alc_spec *spec = codec->spec;
5477 int err;
5478 static hda_nid_t alc861_ignore[] = { 0x1d, 0 };
5479
5480 if ((err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
5481 alc861_ignore)) < 0)
5482 return err;
Takashi Iwai82bc9552006-03-21 11:24:42 +01005483 if (! spec->autocfg.line_outs)
Kailang Yangdf694da2005-12-05 19:42:22 +01005484 return 0; /* can't find valid BIOS pin config */
5485
5486 if ((err = alc861_auto_fill_dac_nids(spec, &spec->autocfg)) < 0 ||
5487 (err = alc861_auto_create_multi_out_ctls(spec, &spec->autocfg)) < 0 ||
5488 (err = alc861_auto_create_hp_ctls(spec, spec->autocfg.hp_pin)) < 0 ||
5489 (err = alc861_auto_create_analog_input_ctls(spec, &spec->autocfg)) < 0)
5490 return err;
5491
5492 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
5493
5494 if (spec->autocfg.dig_out_pin)
5495 spec->multiout.dig_out_nid = ALC861_DIGOUT_NID;
5496
5497 if (spec->kctl_alloc)
5498 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
5499
5500 spec->init_verbs[spec->num_init_verbs++] = alc861_auto_init_verbs;
5501
5502 spec->input_mux = &spec->private_imux;
5503
5504 spec->adc_nids = alc861_adc_nids;
5505 spec->num_adc_nids = ARRAY_SIZE(alc861_adc_nids);
5506 spec->mixers[spec->num_mixers] = alc861_capture_mixer;
5507 spec->num_mixers++;
5508
5509 return 1;
5510}
5511
Takashi Iwaiae6b8132006-03-03 16:47:17 +01005512/* additional initialization for auto-configuration model */
5513static void alc861_auto_init(struct hda_codec *codec)
Kailang Yangdf694da2005-12-05 19:42:22 +01005514{
Kailang Yangdf694da2005-12-05 19:42:22 +01005515 alc861_auto_init_multi_out(codec);
5516 alc861_auto_init_hp_out(codec);
5517 alc861_auto_init_analog_input(codec);
Kailang Yangdf694da2005-12-05 19:42:22 +01005518}
5519
5520
5521/*
5522 * configuration and preset
5523 */
5524static struct hda_board_config alc861_cfg_tbl[] = {
5525 { .modelname = "3stack", .config = ALC861_3ST },
5526 { .pci_subvendor = 0x8086, .pci_subdevice = 0xd600, .config = ALC861_3ST },
5527 { .modelname = "3stack-dig", .config = ALC861_3ST_DIG },
5528 { .modelname = "6stack-dig", .config = ALC861_6ST_DIG },
5529 { .modelname = "auto", .config = ALC861_AUTO },
5530 {}
5531};
5532
5533static struct alc_config_preset alc861_presets[] = {
5534 [ALC861_3ST] = {
5535 .mixers = { alc861_3ST_mixer },
5536 .init_verbs = { alc861_threestack_init_verbs },
5537 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
5538 .dac_nids = alc861_dac_nids,
5539 .num_channel_mode = ARRAY_SIZE(alc861_threestack_modes),
5540 .channel_mode = alc861_threestack_modes,
5541 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
5542 .adc_nids = alc861_adc_nids,
5543 .input_mux = &alc861_capture_source,
5544 },
5545 [ALC861_3ST_DIG] = {
5546 .mixers = { alc861_base_mixer },
5547 .init_verbs = { alc861_threestack_init_verbs },
5548 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
5549 .dac_nids = alc861_dac_nids,
5550 .dig_out_nid = ALC861_DIGOUT_NID,
5551 .num_channel_mode = ARRAY_SIZE(alc861_threestack_modes),
5552 .channel_mode = alc861_threestack_modes,
5553 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
5554 .adc_nids = alc861_adc_nids,
5555 .input_mux = &alc861_capture_source,
5556 },
5557 [ALC861_6ST_DIG] = {
5558 .mixers = { alc861_base_mixer },
5559 .init_verbs = { alc861_base_init_verbs },
5560 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
5561 .dac_nids = alc861_dac_nids,
5562 .dig_out_nid = ALC861_DIGOUT_NID,
5563 .num_channel_mode = ARRAY_SIZE(alc861_8ch_modes),
5564 .channel_mode = alc861_8ch_modes,
5565 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
5566 .adc_nids = alc861_adc_nids,
5567 .input_mux = &alc861_capture_source,
5568 },
5569};
5570
5571
5572static int patch_alc861(struct hda_codec *codec)
5573{
5574 struct alc_spec *spec;
5575 int board_config;
5576 int err;
5577
5578 spec = kcalloc(1, sizeof(*spec), GFP_KERNEL);
5579 if (spec == NULL)
5580 return -ENOMEM;
5581
5582 codec->spec = spec;
5583
5584 board_config = snd_hda_check_board_config(codec, alc861_cfg_tbl);
5585 if (board_config < 0 || board_config >= ALC861_MODEL_LAST) {
5586 printk(KERN_INFO "hda_codec: Unknown model for ALC861, trying auto-probe from BIOS...\n");
5587 board_config = ALC861_AUTO;
5588 }
5589
5590 if (board_config == ALC861_AUTO) {
5591 /* automatic parse from the BIOS config */
5592 err = alc861_parse_auto_config(codec);
5593 if (err < 0) {
5594 alc_free(codec);
5595 return err;
5596 } else if (! err) {
5597 printk(KERN_INFO "hda_codec: Cannot set up configuration from BIOS. Using base mode...\n");
5598 board_config = ALC861_3ST_DIG;
5599 }
5600 }
5601
5602 if (board_config != ALC861_AUTO)
5603 setup_preset(spec, &alc861_presets[board_config]);
5604
5605 spec->stream_name_analog = "ALC861 Analog";
5606 spec->stream_analog_playback = &alc861_pcm_analog_playback;
5607 spec->stream_analog_capture = &alc861_pcm_analog_capture;
5608
5609 spec->stream_name_digital = "ALC861 Digital";
5610 spec->stream_digital_playback = &alc861_pcm_digital_playback;
5611 spec->stream_digital_capture = &alc861_pcm_digital_capture;
5612
5613 codec->patch_ops = alc_patch_ops;
5614 if (board_config == ALC861_AUTO)
Takashi Iwaiae6b8132006-03-03 16:47:17 +01005615 spec->init_hook = alc861_auto_init;
Kailang Yangdf694da2005-12-05 19:42:22 +01005616
5617 return 0;
5618}
5619
5620/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005621 * patch entries
5622 */
5623struct hda_codec_preset snd_hda_preset_realtek[] = {
5624 { .id = 0x10ec0260, .name = "ALC260", .patch = patch_alc260 },
Kailang Yangdf694da2005-12-05 19:42:22 +01005625 { .id = 0x10ec0262, .name = "ALC262", .patch = patch_alc262 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07005626 { .id = 0x10ec0880, .name = "ALC880", .patch = patch_alc880 },
5627 { .id = 0x10ec0882, .name = "ALC882", .patch = patch_alc882 },
Kailang Yangdf694da2005-12-05 19:42:22 +01005628 { .id = 0x10ec0883, .name = "ALC883", .patch = patch_alc882 },
5629 { .id = 0x10ec0885, .name = "ALC885", .patch = patch_alc882 },
5630 { .id = 0x10ec0861, .name = "ALC861", .patch = patch_alc861 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07005631 {} /* terminator */
5632};