blob: 49a0fa8ec6796db4cd66c62212c9583032cc9eba [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 Woithe7cf51e42006-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
Kailang Yangccc656c2006-10-17 12:32:26 +020035#define ALC880_FRONT_EVENT 0x01
36#define ALC880_DCVOL_EVENT 0x02
37#define ALC880_HP_EVENT 0x04
38#define ALC880_MIC_EVENT 0x08
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40/* ALC880 board config type */
41enum {
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 ALC880_3ST,
43 ALC880_3ST_DIG,
44 ALC880_5ST,
45 ALC880_5ST_DIG,
46 ALC880_W810,
Takashi Iwaidfc0ff62005-05-12 14:31:49 +020047 ALC880_Z71V,
Takashi Iwaib6482d42005-06-27 15:32:43 +020048 ALC880_6ST,
Takashi Iwai16ded522005-06-10 19:58:24 +020049 ALC880_6ST_DIG,
50 ALC880_F1734,
51 ALC880_ASUS,
52 ALC880_ASUS_DIG,
53 ALC880_ASUS_W1V,
Kailang Yangdf694da2005-12-05 19:42:22 +010054 ALC880_ASUS_DIG2,
Tobin Davis2cf9f0f2007-02-07 16:04:25 +010055 ALC880_FUJITSU,
Takashi Iwai16ded522005-06-10 19:58:24 +020056 ALC880_UNIWILL_DIG,
Kailang Yangccc656c2006-10-17 12:32:26 +020057 ALC880_UNIWILL,
58 ALC880_UNIWILL_P53,
Kailang Yangdf694da2005-12-05 19:42:22 +010059 ALC880_CLEVO,
60 ALC880_TCL_S700,
Takashi Iwaiae6b8132006-03-03 16:47:17 +010061 ALC880_LG,
Takashi Iwaid6815182006-03-23 16:06:23 +010062 ALC880_LG_LW,
Takashi Iwaie9edcee2005-06-13 14:16:38 +020063#ifdef CONFIG_SND_DEBUG
64 ALC880_TEST,
65#endif
Kailang Yangdf694da2005-12-05 19:42:22 +010066 ALC880_AUTO,
Takashi Iwai16ded522005-06-10 19:58:24 +020067 ALC880_MODEL_LAST /* last tag */
68};
69
70/* ALC260 models */
71enum {
72 ALC260_BASIC,
73 ALC260_HP,
Kailang Yangdf694da2005-12-05 19:42:22 +010074 ALC260_HP_3013,
75 ALC260_FUJITSU_S702X,
Jonathan Woithe0bfc90e2006-02-28 11:45:11 +010076 ALC260_ACER,
Kailang Yangbc9f98a2007-04-12 13:06:07 +020077 ALC260_WILL,
78 ALC260_REPLACER_672V,
Jonathan Woithe7cf51e42006-02-09 12:01:26 +010079#ifdef CONFIG_SND_DEBUG
80 ALC260_TEST,
81#endif
Kailang Yangdf694da2005-12-05 19:42:22 +010082 ALC260_AUTO,
Takashi Iwai16ded522005-06-10 19:58:24 +020083 ALC260_MODEL_LAST /* last tag */
Linus Torvalds1da177e2005-04-16 15:20:36 -070084};
85
Kailang Yangdf694da2005-12-05 19:42:22 +010086/* ALC262 models */
87enum {
88 ALC262_BASIC,
Kailang Yangccc656c2006-10-17 12:32:26 +020089 ALC262_HIPPO,
90 ALC262_HIPPO_1,
Takashi Iwai834be882006-03-01 14:16:17 +010091 ALC262_FUJITSU,
Takashi Iwai9c7f8522006-06-28 15:08:22 +020092 ALC262_HP_BPC,
Kailang Yangcd7509a2007-01-26 18:33:17 +010093 ALC262_HP_BPC_D7000_WL,
94 ALC262_HP_BPC_D7000_WF,
Takashi Iwai304dcaa2006-07-25 14:51:16 +020095 ALC262_BENQ_ED8,
Kailang Yang272a5272007-05-14 11:00:38 +020096 ALC262_SONY_ASSAMD,
Kailang Yangdf694da2005-12-05 19:42:22 +010097 ALC262_AUTO,
98 ALC262_MODEL_LAST /* last tag */
99};
100
Kailang Yanga361d842007-06-05 12:30:55 +0200101/* ALC268 models */
102enum {
103 ALC268_3ST,
104 ALC268_AUTO,
105 ALC268_MODEL_LAST /* last tag */
106};
107
Kailang Yangdf694da2005-12-05 19:42:22 +0100108/* ALC861 models */
109enum {
110 ALC861_3ST,
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200111 ALC660_3ST,
Kailang Yangdf694da2005-12-05 19:42:22 +0100112 ALC861_3ST_DIG,
113 ALC861_6ST_DIG,
Takashi Iwai22309c32006-08-09 16:57:28 +0200114 ALC861_UNIWILL_M31,
Tobin Davisa53d1ae2006-10-17 12:00:28 +0200115 ALC861_TOSHIBA,
Mariusz Domanski7cdbff92006-10-23 13:42:56 +0200116 ALC861_ASUS,
Takashi Iwai56bb0ca2006-11-22 11:52:52 +0100117 ALC861_ASUS_LAPTOP,
Kailang Yangdf694da2005-12-05 19:42:22 +0100118 ALC861_AUTO,
119 ALC861_MODEL_LAST,
120};
121
Jakub Schmidtkef32610e2007-02-02 18:17:27 +0100122/* ALC861-VD models */
123enum {
124 ALC660VD_3ST,
125 ALC861VD_3ST,
126 ALC861VD_3ST_DIG,
127 ALC861VD_6ST_DIG,
Kailang Yangbdd148a2007-05-08 15:19:08 +0200128 ALC861VD_LENOVO,
Kailang Yang272a5272007-05-14 11:00:38 +0200129 ALC861VD_DALLAS,
Jakub Schmidtkef32610e2007-02-02 18:17:27 +0100130 ALC861VD_AUTO,
131 ALC861VD_MODEL_LAST,
132};
133
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200134/* ALC662 models */
135enum {
136 ALC662_3ST_2ch_DIG,
137 ALC662_3ST_6ch_DIG,
138 ALC662_3ST_6ch,
139 ALC662_5ST_DIG,
140 ALC662_LENOVO_101E,
141 ALC662_AUTO,
142 ALC662_MODEL_LAST,
143};
144
Kailang Yangdf694da2005-12-05 19:42:22 +0100145/* ALC882 models */
146enum {
147 ALC882_3ST_DIG,
148 ALC882_6ST_DIG,
Takashi Iwai4b146cb2006-07-28 14:42:36 +0200149 ALC882_ARIMA,
Kailang Yangbdd148a2007-05-08 15:19:08 +0200150 ALC882_W2JC,
Kailang Yang272a5272007-05-14 11:00:38 +0200151 ALC882_TARGA,
152 ALC882_ASUS_A7J,
Tobin Davis9102cd12006-12-15 10:02:12 +0100153 ALC885_MACPRO,
Kailang Yang272a5272007-05-14 11:00:38 +0200154 ALC882_AUTO,
Kailang Yangdf694da2005-12-05 19:42:22 +0100155 ALC882_MODEL_LAST,
156};
157
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200158/* ALC883 models */
159enum {
160 ALC883_3ST_2ch_DIG,
161 ALC883_3ST_6ch_DIG,
162 ALC883_3ST_6ch,
163 ALC883_6ST_DIG,
Kailang Yangccc656c2006-10-17 12:32:26 +0200164 ALC883_TARGA_DIG,
165 ALC883_TARGA_2ch_DIG,
Vladimir Avdoninbab282b2006-08-22 13:31:58 +0200166 ALC883_ACER,
Tobin Davisc07584c2006-10-13 12:32:16 +0200167 ALC883_MEDION,
Kailang Yang272a5272007-05-14 11:00:38 +0200168 ALC883_MEDION_MD2,
Andrew L. Neporadab373bde2006-11-07 11:37:08 +0100169 ALC883_LAPTOP_EAPD,
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200170 ALC883_LENOVO_101E_2ch,
Kailang Yang272a5272007-05-14 11:00:38 +0200171 ALC883_LENOVO_NB0763,
172 ALC888_LENOVO_MS7195_DIG,
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200173 ALC883_AUTO,
174 ALC883_MODEL_LAST,
175};
176
Kailang Yangdf694da2005-12-05 19:42:22 +0100177/* for GPIO Poll */
178#define GPIO_MASK 0x03
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180struct alc_spec {
181 /* codec parameterization */
Kailang Yangdf694da2005-12-05 19:42:22 +0100182 struct snd_kcontrol_new *mixers[5]; /* mixer arrays */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 unsigned int num_mixers;
184
Kailang Yangdf694da2005-12-05 19:42:22 +0100185 const struct hda_verb *init_verbs[5]; /* initialization verbs
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200186 * don't forget NULL
187 * termination!
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200188 */
189 unsigned int num_init_verbs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Takashi Iwai16ded522005-06-10 19:58:24 +0200191 char *stream_name_analog; /* analog PCM stream */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 struct hda_pcm_stream *stream_analog_playback;
193 struct hda_pcm_stream *stream_analog_capture;
194
Takashi Iwaif12ab1e2007-04-12 15:51:47 +0200195 char *stream_name_digital; /* digital PCM stream */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 struct hda_pcm_stream *stream_digital_playback;
197 struct hda_pcm_stream *stream_digital_capture;
198
199 /* playback */
Takashi Iwai16ded522005-06-10 19:58:24 +0200200 struct hda_multi_out multiout; /* playback set-up
201 * max_channels, dacs must be set
202 * dig_out_nid and hp_nid are optional
203 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205 /* capture */
206 unsigned int num_adc_nids;
207 hda_nid_t *adc_nids;
Takashi Iwai16ded522005-06-10 19:58:24 +0200208 hda_nid_t dig_in_nid; /* digital-in NID; optional */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210 /* capture source */
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +0200211 unsigned int num_mux_defs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 const struct hda_input_mux *input_mux;
213 unsigned int cur_mux[3];
214
215 /* channel model */
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100216 const struct hda_channel_mode *channel_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 int num_channel_mode;
Takashi Iwai4e195a72006-07-28 14:47:34 +0200218 int need_dac_fix;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220 /* PCM information */
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100221 struct hda_pcm pcm_rec[3]; /* used in alc_build_pcms() */
Takashi Iwai41e41f12005-06-08 14:48:49 +0200222
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200223 /* dynamic controls, init_verbs and input_mux */
224 struct auto_pin_cfg autocfg;
225 unsigned int num_kctl_alloc, num_kctl_used;
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +0100226 struct snd_kcontrol_new *kctl_alloc;
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200227 struct hda_input_mux private_imux;
Kailang Yangdf694da2005-12-05 19:42:22 +0100228 hda_nid_t private_dac_nids[5];
Takashi Iwai834be882006-03-01 14:16:17 +0100229
Takashi Iwaiae6b8132006-03-03 16:47:17 +0100230 /* hooks */
231 void (*init_hook)(struct hda_codec *codec);
232 void (*unsol_event)(struct hda_codec *codec, unsigned int res);
233
Takashi Iwai834be882006-03-01 14:16:17 +0100234 /* for pin sensing */
235 unsigned int sense_updated: 1;
236 unsigned int jack_present: 1;
Kailang Yangdf694da2005-12-05 19:42:22 +0100237};
238
239/*
240 * configuration template - to be copied to the spec instance
241 */
242struct alc_config_preset {
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200243 struct snd_kcontrol_new *mixers[5]; /* should be identical size
244 * with spec
245 */
Kailang Yangdf694da2005-12-05 19:42:22 +0100246 const struct hda_verb *init_verbs[5];
247 unsigned int num_dacs;
248 hda_nid_t *dac_nids;
249 hda_nid_t dig_out_nid; /* optional */
250 hda_nid_t hp_nid; /* optional */
251 unsigned int num_adc_nids;
252 hda_nid_t *adc_nids;
253 hda_nid_t dig_in_nid;
254 unsigned int num_channel_mode;
255 const struct hda_channel_mode *channel_mode;
Takashi Iwai4e195a72006-07-28 14:47:34 +0200256 int need_dac_fix;
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +0200257 unsigned int num_mux_defs;
Kailang Yangdf694da2005-12-05 19:42:22 +0100258 const struct hda_input_mux *input_mux;
Takashi Iwaiae6b8132006-03-03 16:47:17 +0100259 void (*unsol_event)(struct hda_codec *, unsigned int);
260 void (*init_hook)(struct hda_codec *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261};
262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
264/*
265 * input MUX handling
266 */
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200267static int alc_mux_enum_info(struct snd_kcontrol *kcontrol,
268 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
270 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
271 struct alc_spec *spec = codec->spec;
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +0200272 unsigned int mux_idx = snd_ctl_get_ioffidx(kcontrol, &uinfo->id);
273 if (mux_idx >= spec->num_mux_defs)
274 mux_idx = 0;
275 return snd_hda_input_mux_info(&spec->input_mux[mux_idx], uinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276}
277
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200278static int alc_mux_enum_get(struct snd_kcontrol *kcontrol,
279 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280{
281 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
282 struct alc_spec *spec = codec->spec;
283 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
284
285 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
286 return 0;
287}
288
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200289static int alc_mux_enum_put(struct snd_kcontrol *kcontrol,
290 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
292 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
293 struct alc_spec *spec = codec->spec;
294 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +0200295 unsigned int mux_idx = adc_idx >= spec->num_mux_defs ? 0 : adc_idx;
296 return snd_hda_input_mux_put(codec, &spec->input_mux[mux_idx], ucontrol,
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200297 spec->adc_nids[adc_idx],
298 &spec->cur_mux[adc_idx]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299}
300
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200301
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302/*
303 * channel mode setting
304 */
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200305static int alc_ch_mode_info(struct snd_kcontrol *kcontrol,
306 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
308 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
309 struct alc_spec *spec = codec->spec;
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100310 return snd_hda_ch_mode_info(codec, uinfo, spec->channel_mode,
311 spec->num_channel_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200314static int alc_ch_mode_get(struct snd_kcontrol *kcontrol,
315 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316{
317 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
318 struct alc_spec *spec = codec->spec;
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100319 return snd_hda_ch_mode_get(codec, ucontrol, spec->channel_mode,
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200320 spec->num_channel_mode,
321 spec->multiout.max_channels);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322}
323
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200324static int alc_ch_mode_put(struct snd_kcontrol *kcontrol,
325 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
327 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
328 struct alc_spec *spec = codec->spec;
Takashi Iwai4e195a72006-07-28 14:47:34 +0200329 int err = snd_hda_ch_mode_put(codec, ucontrol, spec->channel_mode,
330 spec->num_channel_mode,
331 &spec->multiout.max_channels);
Takashi Iwaibd2033f2006-10-10 19:49:31 +0200332 if (err >= 0 && spec->need_dac_fix)
Takashi Iwai4e195a72006-07-28 14:47:34 +0200333 spec->multiout.num_dacs = spec->multiout.max_channels / 2;
334 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335}
336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337/*
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100338 * Control the mode of pin widget settings via the mixer. "pc" is used
339 * instead of "%" to avoid consequences of accidently treating the % as
340 * being part of a format specifier. Maximum allowed length of a value is
341 * 63 characters plus NULL terminator.
Jonathan Woithe7cf51e42006-02-09 12:01:26 +0100342 *
343 * Note: some retasking pin complexes seem to ignore requests for input
344 * states other than HiZ (eg: PIN_VREFxx) and revert to HiZ if any of these
345 * are requested. Therefore order this list so that this behaviour will not
346 * cause problems when mixer clients move through the enum sequentially.
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +0200347 * NIDs 0x0f and 0x10 have been observed to have this behaviour as of
348 * March 2006.
Jonathan Woithea9430dd2005-09-16 19:12:48 +0200349 */
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100350static char *alc_pin_mode_names[] = {
Jonathan Woithe7cf51e42006-02-09 12:01:26 +0100351 "Mic 50pc bias", "Mic 80pc bias",
352 "Line in", "Line out", "Headphone out",
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100353};
354static unsigned char alc_pin_mode_values[] = {
Jonathan Woithe7cf51e42006-02-09 12:01:26 +0100355 PIN_VREF50, PIN_VREF80, PIN_IN, PIN_OUT, PIN_HP,
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100356};
357/* The control can present all 5 options, or it can limit the options based
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +0200358 * in the pin being assumed to be exclusively an input or an output pin. In
359 * addition, "input" pins may or may not process the mic bias option
360 * depending on actual widget capability (NIDs 0x0f and 0x10 don't seem to
361 * accept requests for bias as of chip versions up to March 2006) and/or
362 * wiring in the computer.
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100363 */
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +0200364#define ALC_PIN_DIR_IN 0x00
365#define ALC_PIN_DIR_OUT 0x01
366#define ALC_PIN_DIR_INOUT 0x02
367#define ALC_PIN_DIR_IN_NOMICBIAS 0x03
368#define ALC_PIN_DIR_INOUT_NOMICBIAS 0x04
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100369
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +0200370/* Info about the pin modes supported by the different pin direction modes.
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100371 * For each direction the minimum and maximum values are given.
372 */
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +0200373static signed char alc_pin_mode_dir_info[5][2] = {
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100374 { 0, 2 }, /* ALC_PIN_DIR_IN */
375 { 3, 4 }, /* ALC_PIN_DIR_OUT */
376 { 0, 4 }, /* ALC_PIN_DIR_INOUT */
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +0200377 { 2, 2 }, /* ALC_PIN_DIR_IN_NOMICBIAS */
378 { 2, 4 }, /* ALC_PIN_DIR_INOUT_NOMICBIAS */
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100379};
380#define alc_pin_mode_min(_dir) (alc_pin_mode_dir_info[_dir][0])
381#define alc_pin_mode_max(_dir) (alc_pin_mode_dir_info[_dir][1])
382#define alc_pin_mode_n_items(_dir) \
383 (alc_pin_mode_max(_dir)-alc_pin_mode_min(_dir)+1)
384
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200385static int alc_pin_mode_info(struct snd_kcontrol *kcontrol,
386 struct snd_ctl_elem_info *uinfo)
Jonathan Woithea9430dd2005-09-16 19:12:48 +0200387{
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100388 unsigned int item_num = uinfo->value.enumerated.item;
389 unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
390
391 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
Jonathan Woithea9430dd2005-09-16 19:12:48 +0200392 uinfo->count = 1;
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100393 uinfo->value.enumerated.items = alc_pin_mode_n_items(dir);
394
395 if (item_num<alc_pin_mode_min(dir) || item_num>alc_pin_mode_max(dir))
396 item_num = alc_pin_mode_min(dir);
397 strcpy(uinfo->value.enumerated.name, alc_pin_mode_names[item_num]);
Jonathan Woithea9430dd2005-09-16 19:12:48 +0200398 return 0;
399}
400
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200401static int alc_pin_mode_get(struct snd_kcontrol *kcontrol,
402 struct snd_ctl_elem_value *ucontrol)
Jonathan Woithea9430dd2005-09-16 19:12:48 +0200403{
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100404 unsigned int i;
Jonathan Woithea9430dd2005-09-16 19:12:48 +0200405 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
406 hda_nid_t nid = kcontrol->private_value & 0xffff;
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100407 unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
Jonathan Woithea9430dd2005-09-16 19:12:48 +0200408 long *valp = ucontrol->value.integer.value;
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200409 unsigned int pinctl = snd_hda_codec_read(codec, nid, 0,
410 AC_VERB_GET_PIN_WIDGET_CONTROL,
411 0x00);
Jonathan Woithea9430dd2005-09-16 19:12:48 +0200412
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100413 /* Find enumerated value for current pinctl setting */
414 i = alc_pin_mode_min(dir);
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200415 while (alc_pin_mode_values[i] != pinctl && i <= alc_pin_mode_max(dir))
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100416 i++;
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200417 *valp = i <= alc_pin_mode_max(dir) ? i: alc_pin_mode_min(dir);
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100418 return 0;
419}
420
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200421static int alc_pin_mode_put(struct snd_kcontrol *kcontrol,
422 struct snd_ctl_elem_value *ucontrol)
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100423{
424 signed int change;
425 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
426 hda_nid_t nid = kcontrol->private_value & 0xffff;
427 unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
428 long val = *ucontrol->value.integer.value;
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200429 unsigned int pinctl = snd_hda_codec_read(codec, nid, 0,
430 AC_VERB_GET_PIN_WIDGET_CONTROL,
431 0x00);
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100432
Takashi Iwaif12ab1e2007-04-12 15:51:47 +0200433 if (val < alc_pin_mode_min(dir) || val > alc_pin_mode_max(dir))
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100434 val = alc_pin_mode_min(dir);
435
436 change = pinctl != alc_pin_mode_values[val];
Jonathan Woithecdcd9262006-02-28 11:36:42 +0100437 if (change) {
438 /* Set pin mode to that requested */
Jonathan Woithea9430dd2005-09-16 19:12:48 +0200439 snd_hda_codec_write(codec,nid,0,AC_VERB_SET_PIN_WIDGET_CONTROL,
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200440 alc_pin_mode_values[val]);
Jonathan Woithecdcd9262006-02-28 11:36:42 +0100441
442 /* Also enable the retasking pin's input/output as required
443 * for the requested pin mode. Enum values of 2 or less are
444 * input modes.
445 *
446 * Dynamically switching the input/output buffers probably
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +0200447 * reduces noise slightly (particularly on input) so we'll
448 * do it. However, having both input and output buffers
449 * enabled simultaneously doesn't seem to be problematic if
450 * this turns out to be necessary in the future.
Jonathan Woithecdcd9262006-02-28 11:36:42 +0100451 */
452 if (val <= 2) {
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200453 snd_hda_codec_write(codec, nid, 0,
454 AC_VERB_SET_AMP_GAIN_MUTE,
455 AMP_OUT_MUTE);
456 snd_hda_codec_write(codec, nid, 0,
457 AC_VERB_SET_AMP_GAIN_MUTE,
458 AMP_IN_UNMUTE(0));
Jonathan Woithecdcd9262006-02-28 11:36:42 +0100459 } else {
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200460 snd_hda_codec_write(codec, nid, 0,
461 AC_VERB_SET_AMP_GAIN_MUTE,
462 AMP_IN_MUTE(0));
463 snd_hda_codec_write(codec, nid, 0,
464 AC_VERB_SET_AMP_GAIN_MUTE,
465 AMP_OUT_UNMUTE);
Jonathan Woithecdcd9262006-02-28 11:36:42 +0100466 }
467 }
Jonathan Woithea9430dd2005-09-16 19:12:48 +0200468 return change;
469}
470
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100471#define ALC_PIN_MODE(xname, nid, dir) \
Jonathan Woithea9430dd2005-09-16 19:12:48 +0200472 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
Jonathan Woithe4c5186e2006-02-09 11:53:48 +0100473 .info = alc_pin_mode_info, \
474 .get = alc_pin_mode_get, \
475 .put = alc_pin_mode_put, \
476 .private_value = nid | (dir<<16) }
Kailang Yangdf694da2005-12-05 19:42:22 +0100477
Jonathan Woithe5c8f8582006-02-28 11:43:27 +0100478/* A switch control for ALC260 GPIO pins. Multiple GPIOs can be ganged
479 * together using a mask with more than one bit set. This control is
480 * currently used only by the ALC260 test model. At this stage they are not
481 * needed for any "production" models.
482 */
483#ifdef CONFIG_SND_DEBUG
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200484static int alc_gpio_data_info(struct snd_kcontrol *kcontrol,
485 struct snd_ctl_elem_info *uinfo)
Jonathan Woithe5c8f8582006-02-28 11:43:27 +0100486{
487 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
488 uinfo->count = 1;
489 uinfo->value.integer.min = 0;
490 uinfo->value.integer.max = 1;
491 return 0;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +0200492}
493
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200494static int alc_gpio_data_get(struct snd_kcontrol *kcontrol,
495 struct snd_ctl_elem_value *ucontrol)
Jonathan Woithe5c8f8582006-02-28 11:43:27 +0100496{
497 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
498 hda_nid_t nid = kcontrol->private_value & 0xffff;
499 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
500 long *valp = ucontrol->value.integer.value;
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200501 unsigned int val = snd_hda_codec_read(codec, nid, 0,
502 AC_VERB_GET_GPIO_DATA, 0x00);
Jonathan Woithe5c8f8582006-02-28 11:43:27 +0100503
504 *valp = (val & mask) != 0;
505 return 0;
506}
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200507static int alc_gpio_data_put(struct snd_kcontrol *kcontrol,
508 struct snd_ctl_elem_value *ucontrol)
Jonathan Woithe5c8f8582006-02-28 11:43:27 +0100509{
510 signed int change;
511 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
512 hda_nid_t nid = kcontrol->private_value & 0xffff;
513 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
514 long val = *ucontrol->value.integer.value;
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200515 unsigned int gpio_data = snd_hda_codec_read(codec, nid, 0,
516 AC_VERB_GET_GPIO_DATA,
517 0x00);
Jonathan Woithe5c8f8582006-02-28 11:43:27 +0100518
519 /* Set/unset the masked GPIO bit(s) as needed */
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200520 change = (val == 0 ? 0 : mask) != (gpio_data & mask);
521 if (val == 0)
Jonathan Woithe5c8f8582006-02-28 11:43:27 +0100522 gpio_data &= ~mask;
523 else
524 gpio_data |= mask;
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200525 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_GPIO_DATA, gpio_data);
Jonathan Woithe5c8f8582006-02-28 11:43:27 +0100526
527 return change;
528}
529#define ALC_GPIO_DATA_SWITCH(xname, nid, mask) \
530 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
531 .info = alc_gpio_data_info, \
532 .get = alc_gpio_data_get, \
533 .put = alc_gpio_data_put, \
534 .private_value = nid | (mask<<16) }
535#endif /* CONFIG_SND_DEBUG */
536
Jonathan Woithe92621f12006-02-28 11:47:47 +0100537/* A switch control to allow the enabling of the digital IO pins on the
538 * ALC260. This is incredibly simplistic; the intention of this control is
539 * to provide something in the test model allowing digital outputs to be
540 * identified if present. If models are found which can utilise these
541 * outputs a more complete mixer control can be devised for those models if
542 * necessary.
543 */
544#ifdef CONFIG_SND_DEBUG
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200545static int alc_spdif_ctrl_info(struct snd_kcontrol *kcontrol,
546 struct snd_ctl_elem_info *uinfo)
Jonathan Woithe92621f12006-02-28 11:47:47 +0100547{
548 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
549 uinfo->count = 1;
550 uinfo->value.integer.min = 0;
551 uinfo->value.integer.max = 1;
552 return 0;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +0200553}
554
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200555static int alc_spdif_ctrl_get(struct snd_kcontrol *kcontrol,
556 struct snd_ctl_elem_value *ucontrol)
Jonathan Woithe92621f12006-02-28 11:47:47 +0100557{
558 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
559 hda_nid_t nid = kcontrol->private_value & 0xffff;
560 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
561 long *valp = ucontrol->value.integer.value;
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200562 unsigned int val = snd_hda_codec_read(codec, nid, 0,
563 AC_VERB_GET_DIGI_CONVERT, 0x00);
Jonathan Woithe92621f12006-02-28 11:47:47 +0100564
565 *valp = (val & mask) != 0;
566 return 0;
567}
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200568static int alc_spdif_ctrl_put(struct snd_kcontrol *kcontrol,
569 struct snd_ctl_elem_value *ucontrol)
Jonathan Woithe92621f12006-02-28 11:47:47 +0100570{
571 signed int change;
572 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
573 hda_nid_t nid = kcontrol->private_value & 0xffff;
574 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
575 long val = *ucontrol->value.integer.value;
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200576 unsigned int ctrl_data = snd_hda_codec_read(codec, nid, 0,
577 AC_VERB_GET_DIGI_CONVERT,
578 0x00);
Jonathan Woithe92621f12006-02-28 11:47:47 +0100579
580 /* Set/unset the masked control bit(s) as needed */
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200581 change = (val == 0 ? 0 : mask) != (ctrl_data & mask);
Jonathan Woithe92621f12006-02-28 11:47:47 +0100582 if (val==0)
583 ctrl_data &= ~mask;
584 else
585 ctrl_data |= mask;
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200586 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_DIGI_CONVERT_1,
587 ctrl_data);
Jonathan Woithe92621f12006-02-28 11:47:47 +0100588
589 return change;
590}
591#define ALC_SPDIF_CTRL_SWITCH(xname, nid, mask) \
592 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
593 .info = alc_spdif_ctrl_info, \
594 .get = alc_spdif_ctrl_get, \
595 .put = alc_spdif_ctrl_put, \
596 .private_value = nid | (mask<<16) }
597#endif /* CONFIG_SND_DEBUG */
598
Kailang Yangdf694da2005-12-05 19:42:22 +0100599/*
600 * set up from the preset table
601 */
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200602static void setup_preset(struct alc_spec *spec,
603 const struct alc_config_preset *preset)
Kailang Yangdf694da2005-12-05 19:42:22 +0100604{
605 int i;
606
607 for (i = 0; i < ARRAY_SIZE(preset->mixers) && preset->mixers[i]; i++)
608 spec->mixers[spec->num_mixers++] = preset->mixers[i];
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200609 for (i = 0; i < ARRAY_SIZE(preset->init_verbs) && preset->init_verbs[i];
610 i++)
611 spec->init_verbs[spec->num_init_verbs++] =
612 preset->init_verbs[i];
Kailang Yangdf694da2005-12-05 19:42:22 +0100613
614 spec->channel_mode = preset->channel_mode;
615 spec->num_channel_mode = preset->num_channel_mode;
Takashi Iwai4e195a72006-07-28 14:47:34 +0200616 spec->need_dac_fix = preset->need_dac_fix;
Kailang Yangdf694da2005-12-05 19:42:22 +0100617
618 spec->multiout.max_channels = spec->channel_mode[0].channels;
619
620 spec->multiout.num_dacs = preset->num_dacs;
621 spec->multiout.dac_nids = preset->dac_nids;
622 spec->multiout.dig_out_nid = preset->dig_out_nid;
623 spec->multiout.hp_nid = preset->hp_nid;
624
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +0200625 spec->num_mux_defs = preset->num_mux_defs;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +0200626 if (!spec->num_mux_defs)
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +0200627 spec->num_mux_defs = 1;
Kailang Yangdf694da2005-12-05 19:42:22 +0100628 spec->input_mux = preset->input_mux;
629
630 spec->num_adc_nids = preset->num_adc_nids;
631 spec->adc_nids = preset->adc_nids;
632 spec->dig_in_nid = preset->dig_in_nid;
Takashi Iwaiae6b8132006-03-03 16:47:17 +0100633
634 spec->unsol_event = preset->unsol_event;
635 spec->init_hook = preset->init_hook;
Kailang Yangdf694da2005-12-05 19:42:22 +0100636}
637
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200638/* Enable GPIO mask and set output */
639static struct hda_verb alc_gpio1_init_verbs[] = {
640 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
641 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
642 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
643 { }
644};
645
646static struct hda_verb alc_gpio2_init_verbs[] = {
647 {0x01, AC_VERB_SET_GPIO_MASK, 0x02},
648 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x02},
649 {0x01, AC_VERB_SET_GPIO_DATA, 0x02},
650 { }
651};
652
Kailang Yangbdd148a2007-05-08 15:19:08 +0200653static struct hda_verb alc_gpio3_init_verbs[] = {
654 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
655 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
656 {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
657 { }
658};
659
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200660/* 32-bit subsystem ID for BIOS loading in HD Audio codec.
661 * 31 ~ 16 : Manufacture ID
662 * 15 ~ 8 : SKU ID
663 * 7 ~ 0 : Assembly ID
664 * port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
665 */
666static void alc_subsystem_id(struct hda_codec *codec,
667 unsigned int porta, unsigned int porte,
668 unsigned int portd)
669{
670 unsigned int ass, tmp;
671
672 ass = codec->subsystem_id;
673 if (!(ass & 1))
674 return;
675
676 /* Override */
677 tmp = (ass & 0x38) >> 3; /* external Amp control */
678 switch (tmp) {
679 case 1:
680 snd_hda_sequence_write(codec, alc_gpio1_init_verbs);
681 break;
682 case 3:
683 snd_hda_sequence_write(codec, alc_gpio2_init_verbs);
684 break;
Kailang Yangbdd148a2007-05-08 15:19:08 +0200685 case 7:
686 snd_hda_sequence_write(codec, alc_gpio3_init_verbs);
687 break;
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200688 case 5:
Kailang Yangbdd148a2007-05-08 15:19:08 +0200689 switch (codec->vendor_id) {
690 case 0x10ec0862:
691 case 0x10ec0660:
692 case 0x10ec0662:
693 case 0x10ec0267:
694 case 0x10ec0268:
695 snd_hda_codec_write(codec, 0x14, 0,
696 AC_VERB_SET_EAPD_BTLENABLE, 2);
697 snd_hda_codec_write(codec, 0x15, 0,
698 AC_VERB_SET_EAPD_BTLENABLE, 2);
699 return;
700 }
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200701 case 6:
702 if (ass & 4) { /* bit 2 : 0 = Desktop, 1 = Laptop */
703 hda_nid_t port = 0;
704 tmp = (ass & 0x1800) >> 11;
705 switch (tmp) {
706 case 0: port = porta; break;
707 case 1: port = porte; break;
708 case 2: port = portd; break;
709 }
710 if (port)
711 snd_hda_codec_write(codec, port, 0,
712 AC_VERB_SET_EAPD_BTLENABLE,
713 2);
714 }
715 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
716 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PROC_COEF,
717 (tmp == 5 ? 0x3040 : 0x3050));
718 break;
719 }
720}
721
Takashi Iwai41e41f12005-06-08 14:48:49 +0200722/*
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200723 * ALC880 3-stack model
724 *
725 * DAC: Front = 0x02 (0x0c), Surr = 0x05 (0x0f), CLFE = 0x04 (0x0e)
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200726 * Pin assignment: Front = 0x14, Line-In/Surr = 0x1a, Mic/CLFE = 0x18,
727 * F-Mic = 0x1b, HP = 0x19
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 */
729
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200730static hda_nid_t alc880_dac_nids[4] = {
731 /* front, rear, clfe, rear_surr */
732 0x02, 0x05, 0x04, 0x03
733};
734
735static hda_nid_t alc880_adc_nids[3] = {
736 /* ADC0-2 */
737 0x07, 0x08, 0x09,
738};
739
740/* The datasheet says the node 0x07 is connected from inputs,
741 * but it shows zero connection in the real implementation on some devices.
Kailang Yangdf694da2005-12-05 19:42:22 +0100742 * Note: this is a 915GAV bug, fixed on 915GLV
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200744static hda_nid_t alc880_adc_nids_alt[2] = {
745 /* ADC1-2 */
746 0x08, 0x09,
747};
748
749#define ALC880_DIGOUT_NID 0x06
750#define ALC880_DIGIN_NID 0x0a
751
752static struct hda_input_mux alc880_capture_source = {
753 .num_items = 4,
754 .items = {
755 { "Mic", 0x0 },
756 { "Front Mic", 0x3 },
757 { "Line", 0x2 },
758 { "CD", 0x4 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 },
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200760};
761
762/* channel source setting (2/6 channel selection for 3-stack) */
763/* 2ch mode */
764static struct hda_verb alc880_threestack_ch2_init[] = {
765 /* set line-in to input, mute it */
766 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
767 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
768 /* set mic-in to input vref 80%, mute it */
769 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
770 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 { } /* end */
772};
773
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200774/* 6ch mode */
775static struct hda_verb alc880_threestack_ch6_init[] = {
776 /* set line-in to output, unmute it */
777 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
778 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
779 /* set mic-in to output, unmute it */
780 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
781 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
782 { } /* end */
783};
784
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100785static struct hda_channel_mode alc880_threestack_modes[2] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200786 { 2, alc880_threestack_ch2_init },
787 { 6, alc880_threestack_ch6_init },
788};
789
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +0100790static struct snd_kcontrol_new alc880_three_stack_mixer[] = {
Takashi Iwai05acb862005-06-10 19:50:25 +0200791 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +0100792 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
Takashi Iwai05acb862005-06-10 19:50:25 +0200793 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +0100794 HDA_BIND_MUTE("Surround Playback Switch", 0x0f, 2, HDA_INPUT),
Takashi Iwai05acb862005-06-10 19:50:25 +0200795 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
796 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +0100797 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
798 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
800 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
801 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
802 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
803 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
804 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
805 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x3, HDA_INPUT),
806 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x3, HDA_INPUT),
807 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
808 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 HDA_CODEC_MUTE("Headphone Playback Switch", 0x19, 0x0, HDA_OUTPUT),
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200810 {
811 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
812 .name = "Channel Mode",
Kailang Yangdf694da2005-12-05 19:42:22 +0100813 .info = alc_ch_mode_info,
814 .get = alc_ch_mode_get,
815 .put = alc_ch_mode_put,
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200816 },
817 { } /* end */
818};
819
820/* capture mixer elements */
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +0100821static struct snd_kcontrol_new alc880_capture_mixer[] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200822 HDA_CODEC_VOLUME("Capture Volume", 0x07, 0x0, HDA_INPUT),
823 HDA_CODEC_MUTE("Capture Switch", 0x07, 0x0, HDA_INPUT),
824 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x08, 0x0, HDA_INPUT),
825 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x08, 0x0, HDA_INPUT),
826 HDA_CODEC_VOLUME_IDX("Capture Volume", 2, 0x09, 0x0, HDA_INPUT),
827 HDA_CODEC_MUTE_IDX("Capture Switch", 2, 0x09, 0x0, HDA_INPUT),
828 {
829 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
830 /* The multiple "Capture Source" controls confuse alsamixer
831 * So call somewhat different..
832 * FIXME: the controls appear in the "playback" view!
833 */
834 /* .name = "Capture Source", */
835 .name = "Input Source",
836 .count = 3,
837 .info = alc_mux_enum_info,
838 .get = alc_mux_enum_get,
839 .put = alc_mux_enum_put,
840 },
841 { } /* end */
842};
843
844/* capture mixer elements (in case NID 0x07 not available) */
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +0100845static struct snd_kcontrol_new alc880_capture_alt_mixer[] = {
Takashi Iwai71fe7b82005-05-25 18:11:40 +0200846 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
847 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
848 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
849 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 {
851 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
852 /* The multiple "Capture Source" controls confuse alsamixer
853 * So call somewhat different..
854 * FIXME: the controls appear in the "playback" view!
855 */
856 /* .name = "Capture Source", */
857 .name = "Input Source",
858 .count = 2,
859 .info = alc_mux_enum_info,
860 .get = alc_mux_enum_get,
861 .put = alc_mux_enum_put,
862 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 { } /* end */
864};
865
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200866
867
868/*
869 * ALC880 5-stack model
870 *
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200871 * DAC: Front = 0x02 (0x0c), Surr = 0x05 (0x0f), CLFE = 0x04 (0x0d),
872 * Side = 0x02 (0xd)
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200873 * Pin assignment: Front = 0x14, Surr = 0x17, CLFE = 0x16
874 * Line-In/Side = 0x1a, Mic = 0x18, F-Mic = 0x1b, HP = 0x19
875 */
876
877/* additional mixers to alc880_three_stack_mixer */
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +0100878static struct snd_kcontrol_new alc880_five_stack_mixer[] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200879 HDA_CODEC_VOLUME("Side Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +0100880 HDA_BIND_MUTE("Side Playback Switch", 0x0d, 2, HDA_INPUT),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 { } /* end */
882};
883
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200884/* channel source setting (6/8 channel selection for 5-stack) */
885/* 6ch mode */
886static struct hda_verb alc880_fivestack_ch6_init[] = {
887 /* set line-in to input, mute it */
888 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
889 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
Takashi Iwaidfc0ff62005-05-12 14:31:49 +0200890 { } /* end */
891};
892
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200893/* 8ch mode */
894static struct hda_verb alc880_fivestack_ch8_init[] = {
895 /* set line-in to output, unmute it */
896 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
897 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
898 { } /* end */
899};
900
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100901static struct hda_channel_mode alc880_fivestack_modes[2] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200902 { 6, alc880_fivestack_ch6_init },
903 { 8, alc880_fivestack_ch8_init },
904};
905
906
907/*
908 * ALC880 6-stack model
909 *
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200910 * DAC: Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e),
911 * Side = 0x05 (0x0f)
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200912 * Pin assignment: Front = 0x14, Surr = 0x15, CLFE = 0x16, Side = 0x17,
913 * Mic = 0x18, F-Mic = 0x19, Line = 0x1a, HP = 0x1b
914 */
915
916static hda_nid_t alc880_6st_dac_nids[4] = {
917 /* front, rear, clfe, rear_surr */
918 0x02, 0x03, 0x04, 0x05
Takashi Iwaif12ab1e2007-04-12 15:51:47 +0200919};
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200920
921static struct hda_input_mux alc880_6stack_capture_source = {
922 .num_items = 4,
923 .items = {
924 { "Mic", 0x0 },
925 { "Front Mic", 0x1 },
926 { "Line", 0x2 },
927 { "CD", 0x4 },
928 },
929};
930
931/* fixed 8-channels */
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100932static struct hda_channel_mode alc880_sixstack_modes[1] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200933 { 8, NULL },
934};
935
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +0100936static struct snd_kcontrol_new alc880_six_stack_mixer[] = {
Takashi Iwai16ded522005-06-10 19:58:24 +0200937 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +0100938 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
Takashi Iwai16ded522005-06-10 19:58:24 +0200939 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +0100940 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
Takashi Iwai16ded522005-06-10 19:58:24 +0200941 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
942 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +0100943 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
944 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
Takashi Iwai16ded522005-06-10 19:58:24 +0200945 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +0100946 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
Takashi Iwai16ded522005-06-10 19:58:24 +0200947 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
948 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
949 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
950 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
951 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
952 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
953 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
954 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
955 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
956 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
Takashi Iwai16ded522005-06-10 19:58:24 +0200957 {
958 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
959 .name = "Channel Mode",
Kailang Yangdf694da2005-12-05 19:42:22 +0100960 .info = alc_ch_mode_info,
961 .get = alc_ch_mode_get,
962 .put = alc_ch_mode_put,
Takashi Iwai16ded522005-06-10 19:58:24 +0200963 },
964 { } /* end */
965};
966
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200967
968/*
969 * ALC880 W810 model
970 *
971 * W810 has rear IO for:
972 * Front (DAC 02)
973 * Surround (DAC 03)
974 * Center/LFE (DAC 04)
975 * Digital out (06)
976 *
977 * The system also has a pair of internal speakers, and a headphone jack.
978 * These are both connected to Line2 on the codec, hence to DAC 02.
979 *
980 * There is a variable resistor to control the speaker or headphone
981 * volume. This is a hardware-only device without a software API.
982 *
983 * Plugging headphones in will disable the internal speakers. This is
984 * implemented in hardware, not via the driver using jack sense. In
985 * a similar fashion, plugging into the rear socket marked "front" will
986 * disable both the speakers and headphones.
987 *
988 * For input, there's a microphone jack, and an "audio in" jack.
989 * These may not do anything useful with this driver yet, because I
990 * haven't setup any initialization verbs for these yet...
991 */
992
993static hda_nid_t alc880_w810_dac_nids[3] = {
994 /* front, rear/surround, clfe */
995 0x02, 0x03, 0x04
996};
997
998/* fixed 6 channels */
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100999static struct hda_channel_mode alc880_w810_modes[1] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001000 { 6, NULL }
1001};
1002
1003/* Pin assignment: Front = 0x14, Surr = 0x15, CLFE = 0x16, HP = 0x1b */
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01001004static struct snd_kcontrol_new alc880_w810_base_mixer[] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001005 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +01001006 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001007 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +01001008 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001009 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
1010 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +01001011 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
1012 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001013 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
1014 { } /* end */
1015};
1016
1017
1018/*
1019 * Z710V model
1020 *
1021 * DAC: Front = 0x02 (0x0c), HP = 0x03 (0x0d)
Takashi Iwai9c7f8522006-06-28 15:08:22 +02001022 * Pin assignment: Front = 0x14, HP = 0x15, Mic = 0x18, Mic2 = 0x19(?),
1023 * Line = 0x1a
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001024 */
1025
1026static hda_nid_t alc880_z71v_dac_nids[1] = {
1027 0x02
1028};
1029#define ALC880_Z71V_HP_DAC 0x03
1030
1031/* fixed 2 channels */
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01001032static struct hda_channel_mode alc880_2_jack_modes[1] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001033 { 2, NULL }
1034};
1035
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01001036static struct snd_kcontrol_new alc880_z71v_mixer[] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001037 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +01001038 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001039 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +01001040 HDA_BIND_MUTE("Headphone Playback Switch", 0x0d, 2, HDA_INPUT),
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001041 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1042 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1043 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1044 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1045 { } /* end */
1046};
1047
1048
1049/* FIXME! */
1050/*
1051 * ALC880 F1734 model
1052 *
1053 * DAC: HP = 0x02 (0x0c), Front = 0x03 (0x0d)
1054 * Pin assignment: HP = 0x14, Front = 0x15, Mic = 0x18
1055 */
1056
1057static hda_nid_t alc880_f1734_dac_nids[1] = {
1058 0x03
1059};
1060#define ALC880_F1734_HP_DAC 0x02
1061
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01001062static struct snd_kcontrol_new alc880_f1734_mixer[] = {
Takashi Iwai16ded522005-06-10 19:58:24 +02001063 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +01001064 HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT),
Takashi Iwai16ded522005-06-10 19:58:24 +02001065 HDA_CODEC_VOLUME("Internal Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +01001066 HDA_BIND_MUTE("Internal Speaker Playback Switch", 0x0d, 2, HDA_INPUT),
Takashi Iwai16ded522005-06-10 19:58:24 +02001067 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1068 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1069 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1070 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
Takashi Iwai16ded522005-06-10 19:58:24 +02001071 { } /* end */
1072};
1073
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001074
1075/* FIXME! */
1076/*
1077 * ALC880 ASUS model
1078 *
1079 * DAC: HP/Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e)
1080 * Pin assignment: HP/Front = 0x14, Surr = 0x15, CLFE = 0x16,
1081 * Mic = 0x18, Line = 0x1a
1082 */
1083
1084#define alc880_asus_dac_nids alc880_w810_dac_nids /* identical with w810 */
1085#define alc880_asus_modes alc880_threestack_modes /* 2/6 channel mode */
1086
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01001087static struct snd_kcontrol_new alc880_asus_mixer[] = {
Takashi Iwai16ded522005-06-10 19:58:24 +02001088 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +01001089 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
Takashi Iwai16ded522005-06-10 19:58:24 +02001090 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +01001091 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
Takashi Iwai16ded522005-06-10 19:58:24 +02001092 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
1093 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +01001094 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
1095 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
Takashi Iwai16ded522005-06-10 19:58:24 +02001096 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1097 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1098 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
1099 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
1100 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1101 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
Takashi Iwai16ded522005-06-10 19:58:24 +02001102 {
1103 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1104 .name = "Channel Mode",
Kailang Yangdf694da2005-12-05 19:42:22 +01001105 .info = alc_ch_mode_info,
1106 .get = alc_ch_mode_get,
1107 .put = alc_ch_mode_put,
Takashi Iwai16ded522005-06-10 19:58:24 +02001108 },
1109 { } /* end */
1110};
1111
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001112/* FIXME! */
1113/*
1114 * ALC880 ASUS W1V model
1115 *
1116 * DAC: HP/Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e)
1117 * Pin assignment: HP/Front = 0x14, Surr = 0x15, CLFE = 0x16,
1118 * Mic = 0x18, Line = 0x1a, Line2 = 0x1b
1119 */
1120
1121/* additional mixers to alc880_asus_mixer */
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01001122static struct snd_kcontrol_new alc880_asus_w1v_mixer[] = {
Takashi Iwai16ded522005-06-10 19:58:24 +02001123 HDA_CODEC_VOLUME("Line2 Playback Volume", 0x0b, 0x03, HDA_INPUT),
1124 HDA_CODEC_MUTE("Line2 Playback Switch", 0x0b, 0x03, HDA_INPUT),
Takashi Iwai16ded522005-06-10 19:58:24 +02001125 { } /* end */
1126};
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001127
Takashi Iwai3c10a9d2005-08-23 20:02:27 +02001128/* additional mixers to alc880_asus_mixer */
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01001129static struct snd_kcontrol_new alc880_pcbeep_mixer[] = {
Takashi Iwai3c10a9d2005-08-23 20:02:27 +02001130 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
1131 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
1132 { } /* end */
1133};
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001134
Kailang Yangdf694da2005-12-05 19:42:22 +01001135/* TCL S700 */
1136static struct snd_kcontrol_new alc880_tcl_s700_mixer[] = {
1137 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1138 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
1139 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
1140 HDA_CODEC_VOLUME("CD Playback Volume", 0x0B, 0x04, HDA_INPUT),
1141 HDA_CODEC_MUTE("CD Playback Switch", 0x0B, 0x04, HDA_INPUT),
1142 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0B, 0x0, HDA_INPUT),
1143 HDA_CODEC_MUTE("Mic Playback Switch", 0x0B, 0x0, HDA_INPUT),
1144 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
1145 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
1146 {
1147 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1148 /* The multiple "Capture Source" controls confuse alsamixer
1149 * So call somewhat different..
1150 * FIXME: the controls appear in the "playback" view!
1151 */
1152 /* .name = "Capture Source", */
1153 .name = "Input Source",
1154 .count = 1,
1155 .info = alc_mux_enum_info,
1156 .get = alc_mux_enum_get,
1157 .put = alc_mux_enum_put,
1158 },
1159 { } /* end */
1160};
1161
Kailang Yangccc656c2006-10-17 12:32:26 +02001162/* Uniwill */
1163static struct snd_kcontrol_new alc880_uniwill_mixer[] = {
1164 HDA_CODEC_VOLUME("HPhone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1165 HDA_BIND_MUTE("HPhone Playback Switch", 0x0c, 2, HDA_INPUT),
1166 HDA_CODEC_VOLUME("iSpeaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1167 HDA_BIND_MUTE("iSpeaker Playback Switch", 0x0d, 2, HDA_INPUT),
1168 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
1169 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
1170 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
1171 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
1172 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1173 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1174 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
1175 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
1176 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1177 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1178 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
1179 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
1180 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
1181 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
1182 {
1183 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1184 .name = "Channel Mode",
1185 .info = alc_ch_mode_info,
1186 .get = alc_ch_mode_get,
1187 .put = alc_ch_mode_put,
1188 },
1189 { } /* end */
1190};
1191
Tobin Davis2cf9f0f2007-02-07 16:04:25 +01001192static struct snd_kcontrol_new alc880_fujitsu_mixer[] = {
1193 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1194 HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT),
1195 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1196 HDA_BIND_MUTE("Speaker Playback Switch", 0x0d, 2, HDA_INPUT),
1197 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1198 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1199 HDA_CODEC_VOLUME("Ext Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1200 HDA_CODEC_MUTE("Ext Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1201 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
1202 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
1203 { } /* end */
1204};
1205
Kailang Yangccc656c2006-10-17 12:32:26 +02001206static struct snd_kcontrol_new alc880_uniwill_p53_mixer[] = {
1207 HDA_CODEC_VOLUME("HPhone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1208 HDA_BIND_MUTE("HPhone Playback Switch", 0x0c, 2, HDA_INPUT),
1209 HDA_CODEC_VOLUME("iSpeaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1210 HDA_BIND_MUTE("iSpeaker Playback Switch", 0x0d, 2, HDA_INPUT),
1211 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1212 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1213 { } /* end */
1214};
1215
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216/*
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001217 * build control elements
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 */
1219static int alc_build_controls(struct hda_codec *codec)
1220{
1221 struct alc_spec *spec = codec->spec;
1222 int err;
1223 int i;
1224
1225 for (i = 0; i < spec->num_mixers; i++) {
1226 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
1227 if (err < 0)
1228 return err;
1229 }
1230
1231 if (spec->multiout.dig_out_nid) {
Takashi Iwai9c7f8522006-06-28 15:08:22 +02001232 err = snd_hda_create_spdif_out_ctls(codec,
1233 spec->multiout.dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 if (err < 0)
1235 return err;
1236 }
1237 if (spec->dig_in_nid) {
1238 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
1239 if (err < 0)
1240 return err;
1241 }
1242 return 0;
1243}
1244
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001245
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246/*
1247 * initialize the codec volumes, etc
1248 */
1249
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001250/*
1251 * generic initialization of ADC, input mixers and output mixers
1252 */
1253static struct hda_verb alc880_volume_init_verbs[] = {
1254 /*
1255 * Unmute ADC0-2 and set the default input to mic-in
1256 */
Takashi Iwai71fe7b82005-05-25 18:11:40 +02001257 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001258 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
Takashi Iwai71fe7b82005-05-25 18:11:40 +02001259 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001260 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
Takashi Iwai71fe7b82005-05-25 18:11:40 +02001261 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001262 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001264 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
1265 * mixer widget
Takashi Iwai9c7f8522006-06-28 15:08:22 +02001266 * Note: PASD motherboards uses the Line In 2 as the input for front
1267 * panel mic (mic 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 */
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001269 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
Takashi Iwai16ded522005-06-10 19:58:24 +02001270 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001271 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1272 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
1273 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
1274 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001276 /*
1277 * Set up output mixers (0x0c - 0x0f)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 */
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001279 /* set vol=0 to output mixers */
1280 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1281 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1282 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1283 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1284 /* set up input amps for analog loopback */
1285 /* Amp Indices: DAC = 0, mixer = 1 */
Takashi Iwai05acb862005-06-10 19:50:25 +02001286 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1287 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
Takashi Iwai05acb862005-06-10 19:50:25 +02001288 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1289 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
Takashi Iwai05acb862005-06-10 19:50:25 +02001290 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1291 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
Takashi Iwai05acb862005-06-10 19:50:25 +02001292 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1293 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
1295 { }
1296};
1297
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001298/*
1299 * 3-stack pin configuration:
1300 * front = 0x14, mic/clfe = 0x18, HP = 0x19, line/surr = 0x1a, f-mic = 0x1b
1301 */
1302static struct hda_verb alc880_pin_3stack_init_verbs[] = {
1303 /*
1304 * preset connection lists of input pins
1305 * 0 = front, 1 = rear_surr, 2 = CLFE, 3 = surround
1306 */
1307 {0x10, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
1308 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1309 {0x12, AC_VERB_SET_CONNECT_SEL, 0x03}, /* line/surround */
1310
1311 /*
1312 * Set pin mode and muting
1313 */
1314 /* set front pin widgets 0x14 for output */
1315 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1316 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1317 /* Mic1 (rear panel) pin widget for input and vref at 80% */
1318 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1319 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1320 /* Mic2 (as headphone out) for HP output */
1321 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1322 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1323 /* Line In pin widget for input */
1324 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1325 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1326 /* Line2 (as front mic) pin widget for input and vref at 80% */
1327 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1328 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1329 /* CD pin widget for input */
1330 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1331
1332 { }
1333};
1334
1335/*
1336 * 5-stack pin configuration:
1337 * front = 0x14, surround = 0x17, clfe = 0x16, mic = 0x18, HP = 0x19,
1338 * line-in/side = 0x1a, f-mic = 0x1b
1339 */
1340static struct hda_verb alc880_pin_5stack_init_verbs[] = {
1341 /*
1342 * preset connection lists of input pins
1343 * 0 = front, 1 = rear_surr, 2 = CLFE, 3 = surround
1344 */
1345 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1346 {0x12, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/side */
1347
1348 /*
1349 * Set pin mode and muting
1350 */
1351 /* set pin widgets 0x14-0x17 for output */
Takashi Iwai05acb862005-06-10 19:50:25 +02001352 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1353 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1354 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1355 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001356 /* unmute pins for output (no gain on this amp) */
1357 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1358 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1359 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1360 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1361
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 /* Mic1 (rear panel) pin widget for input and vref at 80% */
Takashi Iwai16ded522005-06-10 19:58:24 +02001363 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001364 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1365 /* Mic2 (as headphone out) for HP output */
1366 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
Takashi Iwai05acb862005-06-10 19:50:25 +02001367 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001368 /* Line In pin widget for input */
1369 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1370 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1371 /* Line2 (as front mic) pin widget for input and vref at 80% */
1372 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1373 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1374 /* CD pin widget for input */
1375 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
1377 { }
1378};
1379
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001380/*
1381 * W810 pin configuration:
1382 * front = 0x14, surround = 0x15, clfe = 0x16, HP = 0x1b
1383 */
1384static struct hda_verb alc880_pin_w810_init_verbs[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 /* hphone/speaker input selector: front DAC */
1386 {0x13, AC_VERB_SET_CONNECT_SEL, 0x0},
1387
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001388 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1389 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1390 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1391 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1392 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1393 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1394
1395 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
Takashi Iwai05acb862005-06-10 19:50:25 +02001396 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 { }
1399};
1400
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001401/*
1402 * Z71V pin configuration:
1403 * Speaker-out = 0x14, HP = 0x15, Mic = 0x18, Line-in = 0x1a, Mic2 = 0x1b (?)
1404 */
1405static struct hda_verb alc880_pin_z71v_init_verbs[] = {
Takashi Iwai05acb862005-06-10 19:50:25 +02001406 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001407 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Takashi Iwai05acb862005-06-10 19:50:25 +02001408 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001409 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Takashi Iwaidfc0ff62005-05-12 14:31:49 +02001410
Takashi Iwai16ded522005-06-10 19:58:24 +02001411 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001412 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
Takashi Iwai16ded522005-06-10 19:58:24 +02001413 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001414 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
Takashi Iwaidfc0ff62005-05-12 14:31:49 +02001415
1416 { }
1417};
1418
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001419/*
1420 * 6-stack pin configuration:
Takashi Iwai9c7f8522006-06-28 15:08:22 +02001421 * front = 0x14, surr = 0x15, clfe = 0x16, side = 0x17, mic = 0x18,
1422 * f-mic = 0x19, line = 0x1a, HP = 0x1b
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001423 */
1424static struct hda_verb alc880_pin_6stack_init_verbs[] = {
1425 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1426
Takashi Iwai16ded522005-06-10 19:58:24 +02001427 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001428 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Takashi Iwai16ded522005-06-10 19:58:24 +02001429 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001430 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Takashi Iwai16ded522005-06-10 19:58:24 +02001431 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001432 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Takashi Iwai16ded522005-06-10 19:58:24 +02001433 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001434 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1435
Takashi Iwai16ded522005-06-10 19:58:24 +02001436 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001437 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
Takashi Iwai16ded522005-06-10 19:58:24 +02001438 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001439 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
Takashi Iwai16ded522005-06-10 19:58:24 +02001440 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001441 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
Takashi Iwai16ded522005-06-10 19:58:24 +02001442 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
Takashi Iwai16ded522005-06-10 19:58:24 +02001443 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Takashi Iwai16ded522005-06-10 19:58:24 +02001444 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1445
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001446 { }
1447};
Takashi Iwai16ded522005-06-10 19:58:24 +02001448
Kailang Yangccc656c2006-10-17 12:32:26 +02001449/*
1450 * Uniwill pin configuration:
1451 * HP = 0x14, InternalSpeaker = 0x15, mic = 0x18, internal mic = 0x19,
1452 * line = 0x1a
1453 */
1454static struct hda_verb alc880_uniwill_init_verbs[] = {
1455 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1456
1457 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1458 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1459 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1460 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1461 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1462 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1463 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1464 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1465 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1466 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1467 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1468 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1469 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1470 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1471
1472 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1473 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1474 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1475 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1476 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1477 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1478 /* {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP}, */
1479 /* {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, */
1480 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1481
1482 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
1483 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_MIC_EVENT},
1484
1485 { }
1486};
1487
1488/*
1489* Uniwill P53
1490* HP = 0x14, InternalSpeaker = 0x15, mic = 0x19,
1491 */
1492static struct hda_verb alc880_uniwill_p53_init_verbs[] = {
1493 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1494
1495 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1496 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1497 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1498 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1499 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1500 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1501 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1502 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1503 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1504 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1505 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1506 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1507
1508 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1509 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1510 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1511 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1512 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1513 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1514
1515 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
1516 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_DCVOL_EVENT},
1517
1518 { }
1519};
1520
Tobin Davis2cf9f0f2007-02-07 16:04:25 +01001521static struct hda_verb alc880_beep_init_verbs[] = {
1522 { 0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(5) },
1523 { }
1524};
1525
Kailang Yangccc656c2006-10-17 12:32:26 +02001526/* toggle speaker-output according to the hp-jack state */
Takashi Iwai458a4fa2007-05-05 12:18:40 +02001527static void alc880_uniwill_hp_automute(struct hda_codec *codec)
Kailang Yangccc656c2006-10-17 12:32:26 +02001528{
1529 unsigned int present;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02001530 unsigned char bits;
Kailang Yangccc656c2006-10-17 12:32:26 +02001531
1532 present = snd_hda_codec_read(codec, 0x14, 0,
1533 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02001534 bits = present ? 0x80 : 0;
Kailang Yangccc656c2006-10-17 12:32:26 +02001535 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02001536 0x80, bits);
Kailang Yangccc656c2006-10-17 12:32:26 +02001537 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02001538 0x80, bits);
Kailang Yangccc656c2006-10-17 12:32:26 +02001539 snd_hda_codec_amp_update(codec, 0x16, 0, HDA_OUTPUT, 0,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02001540 0x80, bits);
Kailang Yangccc656c2006-10-17 12:32:26 +02001541 snd_hda_codec_amp_update(codec, 0x16, 1, HDA_OUTPUT, 0,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02001542 0x80, bits);
Takashi Iwai458a4fa2007-05-05 12:18:40 +02001543}
1544
1545/* auto-toggle front mic */
1546static void alc880_uniwill_mic_automute(struct hda_codec *codec)
1547{
1548 unsigned int present;
1549 unsigned char bits;
Kailang Yangccc656c2006-10-17 12:32:26 +02001550
1551 present = snd_hda_codec_read(codec, 0x18, 0,
1552 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
Takashi Iwai458a4fa2007-05-05 12:18:40 +02001553 bits = present ? 0x80 : 0;
1554 snd_hda_codec_amp_update(codec, 0x0b, 0, HDA_INPUT, 1,
1555 0x80, bits);
1556 snd_hda_codec_amp_update(codec, 0x0b, 1, HDA_INPUT, 1,
1557 0x80, bits);
1558}
1559
1560static void alc880_uniwill_automute(struct hda_codec *codec)
1561{
1562 alc880_uniwill_hp_automute(codec);
1563 alc880_uniwill_mic_automute(codec);
Kailang Yangccc656c2006-10-17 12:32:26 +02001564}
1565
1566static void alc880_uniwill_unsol_event(struct hda_codec *codec,
1567 unsigned int res)
1568{
1569 /* Looks like the unsol event is incompatible with the standard
1570 * definition. 4bit tag is placed at 28 bit!
1571 */
Takashi Iwai458a4fa2007-05-05 12:18:40 +02001572 switch (res >> 28) {
1573 case ALC880_HP_EVENT:
1574 alc880_uniwill_hp_automute(codec);
1575 break;
1576 case ALC880_MIC_EVENT:
1577 alc880_uniwill_mic_automute(codec);
1578 break;
1579 }
Kailang Yangccc656c2006-10-17 12:32:26 +02001580}
1581
1582static void alc880_uniwill_p53_hp_automute(struct hda_codec *codec)
1583{
1584 unsigned int present;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02001585 unsigned char bits;
Kailang Yangccc656c2006-10-17 12:32:26 +02001586
1587 present = snd_hda_codec_read(codec, 0x14, 0,
1588 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02001589 bits = present ? 0x80 : 0;
Kailang Yangccc656c2006-10-17 12:32:26 +02001590 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_INPUT, 0,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02001591 0x80, bits);
Kailang Yangccc656c2006-10-17 12:32:26 +02001592 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_INPUT, 0,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02001593 0x80, bits);
Kailang Yangccc656c2006-10-17 12:32:26 +02001594}
1595
1596static void alc880_uniwill_p53_dcvol_automute(struct hda_codec *codec)
1597{
1598 unsigned int present;
1599
1600 present = snd_hda_codec_read(codec, 0x21, 0,
1601 AC_VERB_GET_VOLUME_KNOB_CONTROL, 0) & 0x7f;
1602
1603 snd_hda_codec_amp_update(codec, 0x0c, 0, HDA_OUTPUT, 0,
1604 0x7f, present);
1605 snd_hda_codec_amp_update(codec, 0x0c, 1, HDA_OUTPUT, 0,
1606 0x7f, present);
1607
1608 snd_hda_codec_amp_update(codec, 0x0d, 0, HDA_OUTPUT, 0,
1609 0x7f, present);
1610 snd_hda_codec_amp_update(codec, 0x0d, 1, HDA_OUTPUT, 0,
1611 0x7f, present);
1612
1613}
1614static void alc880_uniwill_p53_unsol_event(struct hda_codec *codec,
1615 unsigned int res)
1616{
1617 /* Looks like the unsol event is incompatible with the standard
1618 * definition. 4bit tag is placed at 28 bit!
1619 */
1620 if ((res >> 28) == ALC880_HP_EVENT)
1621 alc880_uniwill_p53_hp_automute(codec);
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02001622 if ((res >> 28) == ALC880_DCVOL_EVENT)
Kailang Yangccc656c2006-10-17 12:32:26 +02001623 alc880_uniwill_p53_dcvol_automute(codec);
1624}
1625
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001626/* FIXME! */
1627/*
1628 * F1734 pin configuration:
1629 * HP = 0x14, speaker-out = 0x15, mic = 0x18
1630 */
1631static struct hda_verb alc880_pin_f1734_init_verbs[] = {
1632 {0x10, AC_VERB_SET_CONNECT_SEL, 0x02},
1633 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00},
1634 {0x12, AC_VERB_SET_CONNECT_SEL, 0x01},
1635 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00},
1636
1637 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1638 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1639 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1640 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1641
1642 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1643 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1644 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1645 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1646 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1647 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1648 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1649 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1650 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
Takashi Iwai16ded522005-06-10 19:58:24 +02001651
1652 { }
1653};
1654
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001655/* FIXME! */
1656/*
1657 * ASUS pin configuration:
1658 * HP/front = 0x14, surr = 0x15, clfe = 0x16, mic = 0x18, line = 0x1a
1659 */
1660static struct hda_verb alc880_pin_asus_init_verbs[] = {
1661 {0x10, AC_VERB_SET_CONNECT_SEL, 0x02},
1662 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00},
1663 {0x12, AC_VERB_SET_CONNECT_SEL, 0x01},
1664 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00},
1665
1666 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1667 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1668 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1669 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1670 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1671 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1672 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1673 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1674
1675 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1676 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1677 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1678 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1679 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1680 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1681 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1682 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1683 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1684
1685 { }
1686};
1687
1688/* Enable GPIO mask and set output */
Kailang Yangbc9f98a2007-04-12 13:06:07 +02001689#define alc880_gpio1_init_verbs alc_gpio1_init_verbs
1690#define alc880_gpio2_init_verbs alc_gpio2_init_verbs
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001691
Kailang Yangdf694da2005-12-05 19:42:22 +01001692/* Clevo m520g init */
1693static struct hda_verb alc880_pin_clevo_init_verbs[] = {
1694 /* headphone output */
1695 {0x11, AC_VERB_SET_CONNECT_SEL, 0x01},
1696 /* line-out */
1697 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1698 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1699 /* Line-in */
1700 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1701 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1702 /* CD */
1703 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1704 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1705 /* Mic1 (rear panel) */
1706 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1707 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1708 /* Mic2 (front panel) */
1709 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1710 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1711 /* headphone */
1712 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1713 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1714 /* change to EAPD mode */
1715 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
1716 {0x20, AC_VERB_SET_PROC_COEF, 0x3060},
1717
1718 { }
1719};
1720
1721static struct hda_verb alc880_pin_tcl_S700_init_verbs[] = {
Takashi Iwai4b146cb2006-07-28 14:42:36 +02001722 /* change to EAPD mode */
1723 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
1724 {0x20, AC_VERB_SET_PROC_COEF, 0x3060},
1725
Kailang Yangdf694da2005-12-05 19:42:22 +01001726 /* Headphone output */
1727 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1728 /* Front output*/
1729 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1730 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
1731
1732 /* Line In pin widget for input */
1733 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1734 /* CD pin widget for input */
1735 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1736 /* Mic1 (rear panel) pin widget for input and vref at 80% */
1737 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1738
1739 /* change to EAPD mode */
1740 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
1741 {0x20, AC_VERB_SET_PROC_COEF, 0x3070},
1742
1743 { }
1744};
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001745
1746/*
Takashi Iwaiae6b8132006-03-03 16:47:17 +01001747 * LG m1 express dual
1748 *
1749 * Pin assignment:
1750 * Rear Line-In/Out (blue): 0x14
1751 * Build-in Mic-In: 0x15
1752 * Speaker-out: 0x17
1753 * HP-Out (green): 0x1b
1754 * Mic-In/Out (red): 0x19
1755 * SPDIF-Out: 0x1e
1756 */
1757
1758/* To make 5.1 output working (green=Front, blue=Surr, red=CLFE) */
1759static hda_nid_t alc880_lg_dac_nids[3] = {
1760 0x05, 0x02, 0x03
1761};
1762
1763/* seems analog CD is not working */
1764static struct hda_input_mux alc880_lg_capture_source = {
1765 .num_items = 3,
1766 .items = {
1767 { "Mic", 0x1 },
1768 { "Line", 0x5 },
1769 { "Internal Mic", 0x6 },
1770 },
1771};
1772
1773/* 2,4,6 channel modes */
1774static struct hda_verb alc880_lg_ch2_init[] = {
1775 /* set line-in and mic-in to input */
1776 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
1777 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
1778 { }
1779};
1780
1781static struct hda_verb alc880_lg_ch4_init[] = {
1782 /* set line-in to out and mic-in to input */
1783 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1784 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
1785 { }
1786};
1787
1788static struct hda_verb alc880_lg_ch6_init[] = {
1789 /* set line-in and mic-in to output */
1790 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1791 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1792 { }
1793};
1794
1795static struct hda_channel_mode alc880_lg_ch_modes[3] = {
1796 { 2, alc880_lg_ch2_init },
1797 { 4, alc880_lg_ch4_init },
1798 { 6, alc880_lg_ch6_init },
1799};
1800
1801static struct snd_kcontrol_new alc880_lg_mixer[] = {
1802 /* FIXME: it's not really "master" but front channels */
1803 HDA_CODEC_VOLUME("Master Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
1804 HDA_BIND_MUTE("Master Playback Switch", 0x0f, 2, HDA_INPUT),
1805 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1806 HDA_BIND_MUTE("Surround Playback Switch", 0x0c, 2, HDA_INPUT),
1807 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0d, 1, 0x0, HDA_OUTPUT),
1808 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0d, 2, 0x0, HDA_OUTPUT),
1809 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0d, 1, 2, HDA_INPUT),
1810 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0d, 2, 2, HDA_INPUT),
1811 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
1812 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
1813 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x06, HDA_INPUT),
1814 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x06, HDA_INPUT),
1815 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x07, HDA_INPUT),
1816 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x07, HDA_INPUT),
1817 {
1818 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1819 .name = "Channel Mode",
1820 .info = alc_ch_mode_info,
1821 .get = alc_ch_mode_get,
1822 .put = alc_ch_mode_put,
1823 },
1824 { } /* end */
1825};
1826
1827static struct hda_verb alc880_lg_init_verbs[] = {
1828 /* set capture source to mic-in */
1829 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1830 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1831 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1832 /* mute all amp mixer inputs */
1833 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(5)},
1834 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(6)},
1835 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(7)},
1836 /* line-in to input */
1837 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1838 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1839 /* built-in mic */
1840 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1841 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1842 /* speaker-out */
1843 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1844 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1845 /* mic-in to input */
1846 {0x11, AC_VERB_SET_CONNECT_SEL, 0x01},
1847 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1848 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1849 /* HP-out */
1850 {0x13, AC_VERB_SET_CONNECT_SEL, 0x03},
1851 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1852 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1853 /* jack sense */
1854 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | 0x1},
1855 { }
1856};
1857
1858/* toggle speaker-output according to the hp-jack state */
1859static void alc880_lg_automute(struct hda_codec *codec)
1860{
1861 unsigned int present;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02001862 unsigned char bits;
Takashi Iwaiae6b8132006-03-03 16:47:17 +01001863
1864 present = snd_hda_codec_read(codec, 0x1b, 0,
1865 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02001866 bits = present ? 0x80 : 0;
Takashi Iwaiae6b8132006-03-03 16:47:17 +01001867 snd_hda_codec_amp_update(codec, 0x17, 0, HDA_OUTPUT, 0,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02001868 0x80, bits);
Takashi Iwaiae6b8132006-03-03 16:47:17 +01001869 snd_hda_codec_amp_update(codec, 0x17, 1, HDA_OUTPUT, 0,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02001870 0x80, bits);
Takashi Iwaiae6b8132006-03-03 16:47:17 +01001871}
1872
1873static void alc880_lg_unsol_event(struct hda_codec *codec, unsigned int res)
1874{
1875 /* Looks like the unsol event is incompatible with the standard
1876 * definition. 4bit tag is placed at 28 bit!
1877 */
1878 if ((res >> 28) == 0x01)
1879 alc880_lg_automute(codec);
1880}
1881
1882/*
Takashi Iwaid6815182006-03-23 16:06:23 +01001883 * LG LW20
1884 *
1885 * Pin assignment:
1886 * Speaker-out: 0x14
1887 * Mic-In: 0x18
1888 * Built-in Mic-In: 0x19 (?)
1889 * HP-Out: 0x1b
1890 * SPDIF-Out: 0x1e
1891 */
1892
1893/* seems analog CD is not working */
1894static struct hda_input_mux alc880_lg_lw_capture_source = {
1895 .num_items = 2,
1896 .items = {
1897 { "Mic", 0x0 },
1898 { "Internal Mic", 0x1 },
1899 },
1900};
1901
1902static struct snd_kcontrol_new alc880_lg_lw_mixer[] = {
1903 HDA_CODEC_VOLUME("Master Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1904 HDA_BIND_MUTE("Master Playback Switch", 0x0c, 2, HDA_INPUT),
1905 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1906 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1907 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
1908 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
1909 { } /* end */
1910};
1911
1912static struct hda_verb alc880_lg_lw_init_verbs[] = {
1913 /* set capture source to mic-in */
1914 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1915 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1916 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1917 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(7)},
1918 /* speaker-out */
1919 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1920 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1921 /* HP-out */
1922 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00},
1923 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1924 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1925 /* mic-in to input */
1926 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1927 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1928 /* built-in mic */
1929 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1930 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1931 /* jack sense */
1932 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | 0x1},
1933 { }
1934};
1935
1936/* toggle speaker-output according to the hp-jack state */
1937static void alc880_lg_lw_automute(struct hda_codec *codec)
1938{
1939 unsigned int present;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02001940 unsigned char bits;
Takashi Iwaid6815182006-03-23 16:06:23 +01001941
1942 present = snd_hda_codec_read(codec, 0x1b, 0,
1943 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02001944 bits = present ? 0x80 : 0;
Takashi Iwaid6815182006-03-23 16:06:23 +01001945 snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02001946 0x80, bits);
Takashi Iwaid6815182006-03-23 16:06:23 +01001947 snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02001948 0x80, bits);
Takashi Iwaid6815182006-03-23 16:06:23 +01001949}
1950
1951static void alc880_lg_lw_unsol_event(struct hda_codec *codec, unsigned int res)
1952{
1953 /* Looks like the unsol event is incompatible with the standard
1954 * definition. 4bit tag is placed at 28 bit!
1955 */
1956 if ((res >> 28) == 0x01)
1957 alc880_lg_lw_automute(codec);
1958}
1959
1960/*
Takashi Iwaiae6b8132006-03-03 16:47:17 +01001961 * Common callbacks
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001962 */
Takashi Iwai16ded522005-06-10 19:58:24 +02001963
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964static int alc_init(struct hda_codec *codec)
1965{
1966 struct alc_spec *spec = codec->spec;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001967 unsigned int i;
1968
1969 for (i = 0; i < spec->num_init_verbs; i++)
1970 snd_hda_sequence_write(codec, spec->init_verbs[i]);
Takashi Iwaiae6b8132006-03-03 16:47:17 +01001971
1972 if (spec->init_hook)
1973 spec->init_hook(codec);
1974
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 return 0;
1976}
1977
Takashi Iwaiae6b8132006-03-03 16:47:17 +01001978static void alc_unsol_event(struct hda_codec *codec, unsigned int res)
1979{
1980 struct alc_spec *spec = codec->spec;
1981
1982 if (spec->unsol_event)
1983 spec->unsol_event(codec, res);
1984}
1985
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986#ifdef CONFIG_PM
1987/*
1988 * resume
1989 */
1990static int alc_resume(struct hda_codec *codec)
1991{
1992 struct alc_spec *spec = codec->spec;
1993 int i;
1994
1995 alc_init(codec);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02001996 for (i = 0; i < spec->num_mixers; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 snd_hda_resume_ctls(codec, spec->mixers[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 if (spec->multiout.dig_out_nid)
1999 snd_hda_resume_spdif_out(codec);
2000 if (spec->dig_in_nid)
2001 snd_hda_resume_spdif_in(codec);
2002
2003 return 0;
2004}
2005#endif
2006
2007/*
2008 * Analog playback callbacks
2009 */
2010static int alc880_playback_pcm_open(struct hda_pcm_stream *hinfo,
2011 struct hda_codec *codec,
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01002012 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013{
2014 struct alc_spec *spec = codec->spec;
2015 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream);
2016}
2017
2018static int alc880_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2019 struct hda_codec *codec,
2020 unsigned int stream_tag,
2021 unsigned int format,
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01002022 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023{
2024 struct alc_spec *spec = codec->spec;
Takashi Iwai9c7f8522006-06-28 15:08:22 +02002025 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
2026 stream_tag, format, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027}
2028
2029static int alc880_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2030 struct hda_codec *codec,
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01002031 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032{
2033 struct alc_spec *spec = codec->spec;
2034 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
2035}
2036
2037/*
2038 * Digital out
2039 */
2040static int alc880_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
2041 struct hda_codec *codec,
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01002042 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043{
2044 struct alc_spec *spec = codec->spec;
2045 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
2046}
2047
Takashi Iwai6b97eb42007-04-05 14:51:48 +02002048static int alc880_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2049 struct hda_codec *codec,
2050 unsigned int stream_tag,
2051 unsigned int format,
2052 struct snd_pcm_substream *substream)
2053{
2054 struct alc_spec *spec = codec->spec;
2055 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
2056 stream_tag, format, substream);
2057}
2058
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059static int alc880_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
2060 struct hda_codec *codec,
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01002061 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062{
2063 struct alc_spec *spec = codec->spec;
2064 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
2065}
2066
2067/*
2068 * Analog capture
2069 */
2070static int alc880_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
2071 struct hda_codec *codec,
2072 unsigned int stream_tag,
2073 unsigned int format,
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01002074 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075{
2076 struct alc_spec *spec = codec->spec;
2077
2078 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
2079 stream_tag, 0, format);
2080 return 0;
2081}
2082
2083static int alc880_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
2084 struct hda_codec *codec,
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01002085 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086{
2087 struct alc_spec *spec = codec->spec;
2088
Takashi Iwai9c7f8522006-06-28 15:08:22 +02002089 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
2090 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 return 0;
2092}
2093
2094
2095/*
2096 */
2097static struct hda_pcm_stream alc880_pcm_analog_playback = {
2098 .substreams = 1,
2099 .channels_min = 2,
2100 .channels_max = 8,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002101 /* NID is set in alc_build_pcms */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 .ops = {
2103 .open = alc880_playback_pcm_open,
2104 .prepare = alc880_playback_pcm_prepare,
2105 .cleanup = alc880_playback_pcm_cleanup
2106 },
2107};
2108
2109static struct hda_pcm_stream alc880_pcm_analog_capture = {
2110 .substreams = 2,
2111 .channels_min = 2,
2112 .channels_max = 2,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002113 /* NID is set in alc_build_pcms */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 .ops = {
2115 .prepare = alc880_capture_pcm_prepare,
2116 .cleanup = alc880_capture_pcm_cleanup
2117 },
2118};
2119
2120static struct hda_pcm_stream alc880_pcm_digital_playback = {
2121 .substreams = 1,
2122 .channels_min = 2,
2123 .channels_max = 2,
2124 /* NID is set in alc_build_pcms */
2125 .ops = {
2126 .open = alc880_dig_playback_pcm_open,
Takashi Iwai6b97eb42007-04-05 14:51:48 +02002127 .close = alc880_dig_playback_pcm_close,
2128 .prepare = alc880_dig_playback_pcm_prepare
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 },
2130};
2131
2132static struct hda_pcm_stream alc880_pcm_digital_capture = {
2133 .substreams = 1,
2134 .channels_min = 2,
2135 .channels_max = 2,
2136 /* NID is set in alc_build_pcms */
2137};
2138
Jonathan Woithe4c5186e2006-02-09 11:53:48 +01002139/* Used by alc_build_pcms to flag that a PCM has no playback stream */
2140static struct hda_pcm_stream alc_pcm_null_playback = {
2141 .substreams = 0,
2142 .channels_min = 0,
2143 .channels_max = 0,
2144};
2145
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146static int alc_build_pcms(struct hda_codec *codec)
2147{
2148 struct alc_spec *spec = codec->spec;
2149 struct hda_pcm *info = spec->pcm_rec;
2150 int i;
2151
2152 codec->num_pcms = 1;
2153 codec->pcm_info = info;
2154
2155 info->name = spec->stream_name_analog;
Takashi Iwai4a471b72005-12-07 13:56:29 +01002156 if (spec->stream_analog_playback) {
2157 snd_assert(spec->multiout.dac_nids, return -EINVAL);
2158 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *(spec->stream_analog_playback);
2159 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dac_nids[0];
2160 }
2161 if (spec->stream_analog_capture) {
2162 snd_assert(spec->adc_nids, return -EINVAL);
2163 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_analog_capture);
2164 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
2165 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166
Takashi Iwai4a471b72005-12-07 13:56:29 +01002167 if (spec->channel_mode) {
2168 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = 0;
2169 for (i = 0; i < spec->num_channel_mode; i++) {
2170 if (spec->channel_mode[i].channels > info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max) {
2171 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = spec->channel_mode[i].channels;
2172 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 }
2174 }
2175
Takashi Iwaie08a0072006-09-07 17:52:14 +02002176 /* SPDIF for stream index #1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
Takashi Iwaie08a0072006-09-07 17:52:14 +02002178 codec->num_pcms = 2;
Takashi Iwaic06134d2006-10-11 18:49:13 +02002179 info = spec->pcm_rec + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 info->name = spec->stream_name_digital;
Takashi Iwai4a471b72005-12-07 13:56:29 +01002181 if (spec->multiout.dig_out_nid &&
2182 spec->stream_digital_playback) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *(spec->stream_digital_playback);
2184 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
2185 }
Takashi Iwai4a471b72005-12-07 13:56:29 +01002186 if (spec->dig_in_nid &&
2187 spec->stream_digital_capture) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_digital_capture);
2189 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
2190 }
2191 }
2192
Takashi Iwaie08a0072006-09-07 17:52:14 +02002193 /* If the use of more than one ADC is requested for the current
2194 * model, configure a second analog capture-only PCM.
2195 */
2196 /* Additional Analaog capture for index #2 */
2197 if (spec->num_adc_nids > 1 && spec->stream_analog_capture &&
2198 spec->adc_nids) {
2199 codec->num_pcms = 3;
Takashi Iwaic06134d2006-10-11 18:49:13 +02002200 info = spec->pcm_rec + 2;
Takashi Iwaie08a0072006-09-07 17:52:14 +02002201 info->name = spec->stream_name_analog;
2202 /* No playback stream for second PCM */
2203 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = alc_pcm_null_playback;
2204 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = 0;
2205 if (spec->stream_analog_capture) {
2206 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_analog_capture);
2207 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[1];
2208 }
2209 }
2210
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 return 0;
2212}
2213
2214static void alc_free(struct hda_codec *codec)
2215{
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002216 struct alc_spec *spec = codec->spec;
2217 unsigned int i;
2218
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002219 if (!spec)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002220 return;
2221
2222 if (spec->kctl_alloc) {
2223 for (i = 0; i < spec->num_kctl_used; i++)
2224 kfree(spec->kctl_alloc[i].name);
2225 kfree(spec->kctl_alloc);
2226 }
2227 kfree(spec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228}
2229
2230/*
2231 */
2232static struct hda_codec_ops alc_patch_ops = {
2233 .build_controls = alc_build_controls,
2234 .build_pcms = alc_build_pcms,
2235 .init = alc_init,
2236 .free = alc_free,
Takashi Iwaiae6b8132006-03-03 16:47:17 +01002237 .unsol_event = alc_unsol_event,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238#ifdef CONFIG_PM
2239 .resume = alc_resume,
2240#endif
2241};
2242
Takashi Iwai2fa522b2005-05-12 14:51:12 +02002243
2244/*
2245 * Test configuration for debugging
2246 *
2247 * Almost all inputs/outputs are enabled. I/O pins can be configured via
2248 * enum controls.
2249 */
2250#ifdef CONFIG_SND_DEBUG
2251static hda_nid_t alc880_test_dac_nids[4] = {
2252 0x02, 0x03, 0x04, 0x05
2253};
2254
2255static struct hda_input_mux alc880_test_capture_source = {
Takashi Iwaiae6b8132006-03-03 16:47:17 +01002256 .num_items = 7,
Takashi Iwai2fa522b2005-05-12 14:51:12 +02002257 .items = {
2258 { "In-1", 0x0 },
2259 { "In-2", 0x1 },
2260 { "In-3", 0x2 },
2261 { "In-4", 0x3 },
2262 { "CD", 0x4 },
Takashi Iwaiae6b8132006-03-03 16:47:17 +01002263 { "Front", 0x5 },
2264 { "Surround", 0x6 },
Takashi Iwai2fa522b2005-05-12 14:51:12 +02002265 },
2266};
2267
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002268static struct hda_channel_mode alc880_test_modes[4] = {
Takashi Iwai2fa522b2005-05-12 14:51:12 +02002269 { 2, NULL },
Takashi Iwaifd2c3262005-05-13 17:18:42 +02002270 { 4, NULL },
Takashi Iwai2fa522b2005-05-12 14:51:12 +02002271 { 6, NULL },
Takashi Iwaifd2c3262005-05-13 17:18:42 +02002272 { 8, NULL },
Takashi Iwai2fa522b2005-05-12 14:51:12 +02002273};
2274
Takashi Iwai9c7f8522006-06-28 15:08:22 +02002275static int alc_test_pin_ctl_info(struct snd_kcontrol *kcontrol,
2276 struct snd_ctl_elem_info *uinfo)
Takashi Iwai2fa522b2005-05-12 14:51:12 +02002277{
2278 static char *texts[] = {
2279 "N/A", "Line Out", "HP Out",
2280 "In Hi-Z", "In 50%", "In Grd", "In 80%", "In 100%"
2281 };
2282 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2283 uinfo->count = 1;
2284 uinfo->value.enumerated.items = 8;
2285 if (uinfo->value.enumerated.item >= 8)
2286 uinfo->value.enumerated.item = 7;
2287 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
2288 return 0;
2289}
2290
Takashi Iwai9c7f8522006-06-28 15:08:22 +02002291static int alc_test_pin_ctl_get(struct snd_kcontrol *kcontrol,
2292 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai2fa522b2005-05-12 14:51:12 +02002293{
2294 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2295 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2296 unsigned int pin_ctl, item = 0;
2297
2298 pin_ctl = snd_hda_codec_read(codec, nid, 0,
2299 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
2300 if (pin_ctl & AC_PINCTL_OUT_EN) {
2301 if (pin_ctl & AC_PINCTL_HP_EN)
2302 item = 2;
2303 else
2304 item = 1;
2305 } else if (pin_ctl & AC_PINCTL_IN_EN) {
2306 switch (pin_ctl & AC_PINCTL_VREFEN) {
2307 case AC_PINCTL_VREF_HIZ: item = 3; break;
2308 case AC_PINCTL_VREF_50: item = 4; break;
2309 case AC_PINCTL_VREF_GRD: item = 5; break;
2310 case AC_PINCTL_VREF_80: item = 6; break;
2311 case AC_PINCTL_VREF_100: item = 7; break;
2312 }
2313 }
2314 ucontrol->value.enumerated.item[0] = item;
2315 return 0;
2316}
2317
Takashi Iwai9c7f8522006-06-28 15:08:22 +02002318static int alc_test_pin_ctl_put(struct snd_kcontrol *kcontrol,
2319 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai2fa522b2005-05-12 14:51:12 +02002320{
2321 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2322 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2323 static unsigned int ctls[] = {
2324 0, AC_PINCTL_OUT_EN, AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN,
2325 AC_PINCTL_IN_EN | AC_PINCTL_VREF_HIZ,
2326 AC_PINCTL_IN_EN | AC_PINCTL_VREF_50,
2327 AC_PINCTL_IN_EN | AC_PINCTL_VREF_GRD,
2328 AC_PINCTL_IN_EN | AC_PINCTL_VREF_80,
2329 AC_PINCTL_IN_EN | AC_PINCTL_VREF_100,
2330 };
2331 unsigned int old_ctl, new_ctl;
2332
2333 old_ctl = snd_hda_codec_read(codec, nid, 0,
2334 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
2335 new_ctl = ctls[ucontrol->value.enumerated.item[0]];
2336 if (old_ctl != new_ctl) {
Takashi Iwai9c7f8522006-06-28 15:08:22 +02002337 snd_hda_codec_write(codec, nid, 0,
2338 AC_VERB_SET_PIN_WIDGET_CONTROL, new_ctl);
Takashi Iwai2fa522b2005-05-12 14:51:12 +02002339 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
Takashi Iwai9c7f8522006-06-28 15:08:22 +02002340 (ucontrol->value.enumerated.item[0] >= 3 ?
2341 0xb080 : 0xb000));
Takashi Iwai2fa522b2005-05-12 14:51:12 +02002342 return 1;
2343 }
2344 return 0;
2345}
2346
Takashi Iwai9c7f8522006-06-28 15:08:22 +02002347static int alc_test_pin_src_info(struct snd_kcontrol *kcontrol,
2348 struct snd_ctl_elem_info *uinfo)
Takashi Iwai2fa522b2005-05-12 14:51:12 +02002349{
2350 static char *texts[] = {
2351 "Front", "Surround", "CLFE", "Side"
2352 };
2353 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2354 uinfo->count = 1;
2355 uinfo->value.enumerated.items = 4;
2356 if (uinfo->value.enumerated.item >= 4)
2357 uinfo->value.enumerated.item = 3;
2358 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
2359 return 0;
2360}
2361
Takashi Iwai9c7f8522006-06-28 15:08:22 +02002362static int alc_test_pin_src_get(struct snd_kcontrol *kcontrol,
2363 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai2fa522b2005-05-12 14:51:12 +02002364{
2365 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2366 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2367 unsigned int sel;
2368
2369 sel = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONNECT_SEL, 0);
2370 ucontrol->value.enumerated.item[0] = sel & 3;
2371 return 0;
2372}
2373
Takashi Iwai9c7f8522006-06-28 15:08:22 +02002374static int alc_test_pin_src_put(struct snd_kcontrol *kcontrol,
2375 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai2fa522b2005-05-12 14:51:12 +02002376{
2377 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2378 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2379 unsigned int sel;
2380
2381 sel = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONNECT_SEL, 0) & 3;
2382 if (ucontrol->value.enumerated.item[0] != sel) {
2383 sel = ucontrol->value.enumerated.item[0] & 3;
2384 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, sel);
2385 return 1;
2386 }
2387 return 0;
2388}
2389
2390#define PIN_CTL_TEST(xname,nid) { \
2391 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2392 .name = xname, \
2393 .info = alc_test_pin_ctl_info, \
2394 .get = alc_test_pin_ctl_get, \
2395 .put = alc_test_pin_ctl_put, \
2396 .private_value = nid \
2397 }
2398
2399#define PIN_SRC_TEST(xname,nid) { \
2400 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2401 .name = xname, \
2402 .info = alc_test_pin_src_info, \
2403 .get = alc_test_pin_src_get, \
2404 .put = alc_test_pin_src_put, \
2405 .private_value = nid \
2406 }
2407
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01002408static struct snd_kcontrol_new alc880_test_mixer[] = {
Takashi Iwai05acb862005-06-10 19:50:25 +02002409 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
2410 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
2411 HDA_CODEC_VOLUME("CLFE Playback Volume", 0x0e, 0x0, HDA_OUTPUT),
2412 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +01002413 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
2414 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
2415 HDA_BIND_MUTE("CLFE Playback Switch", 0x0e, 2, HDA_INPUT),
2416 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
Takashi Iwai2fa522b2005-05-12 14:51:12 +02002417 PIN_CTL_TEST("Front Pin Mode", 0x14),
2418 PIN_CTL_TEST("Surround Pin Mode", 0x15),
2419 PIN_CTL_TEST("CLFE Pin Mode", 0x16),
2420 PIN_CTL_TEST("Side Pin Mode", 0x17),
2421 PIN_CTL_TEST("In-1 Pin Mode", 0x18),
2422 PIN_CTL_TEST("In-2 Pin Mode", 0x19),
2423 PIN_CTL_TEST("In-3 Pin Mode", 0x1a),
2424 PIN_CTL_TEST("In-4 Pin Mode", 0x1b),
2425 PIN_SRC_TEST("In-1 Pin Source", 0x18),
2426 PIN_SRC_TEST("In-2 Pin Source", 0x19),
2427 PIN_SRC_TEST("In-3 Pin Source", 0x1a),
2428 PIN_SRC_TEST("In-4 Pin Source", 0x1b),
2429 HDA_CODEC_VOLUME("In-1 Playback Volume", 0x0b, 0x0, HDA_INPUT),
2430 HDA_CODEC_MUTE("In-1 Playback Switch", 0x0b, 0x0, HDA_INPUT),
2431 HDA_CODEC_VOLUME("In-2 Playback Volume", 0x0b, 0x1, HDA_INPUT),
2432 HDA_CODEC_MUTE("In-2 Playback Switch", 0x0b, 0x1, HDA_INPUT),
2433 HDA_CODEC_VOLUME("In-3 Playback Volume", 0x0b, 0x2, HDA_INPUT),
2434 HDA_CODEC_MUTE("In-3 Playback Switch", 0x0b, 0x2, HDA_INPUT),
2435 HDA_CODEC_VOLUME("In-4 Playback Volume", 0x0b, 0x3, HDA_INPUT),
2436 HDA_CODEC_MUTE("In-4 Playback Switch", 0x0b, 0x3, HDA_INPUT),
2437 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x4, HDA_INPUT),
2438 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x4, HDA_INPUT),
Takashi Iwai2fa522b2005-05-12 14:51:12 +02002439 {
2440 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2441 .name = "Channel Mode",
Kailang Yangdf694da2005-12-05 19:42:22 +01002442 .info = alc_ch_mode_info,
2443 .get = alc_ch_mode_get,
2444 .put = alc_ch_mode_put,
Takashi Iwai2fa522b2005-05-12 14:51:12 +02002445 },
2446 { } /* end */
2447};
2448
2449static struct hda_verb alc880_test_init_verbs[] = {
2450 /* Unmute inputs of 0x0c - 0x0f */
Takashi Iwai05acb862005-06-10 19:50:25 +02002451 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2452 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2453 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2454 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2455 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2456 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2457 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2458 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
Takashi Iwai2fa522b2005-05-12 14:51:12 +02002459 /* Vol output for 0x0c-0x0f */
Takashi Iwai05acb862005-06-10 19:50:25 +02002460 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2461 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2462 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2463 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
Takashi Iwai2fa522b2005-05-12 14:51:12 +02002464 /* Set output pins 0x14-0x17 */
Takashi Iwai05acb862005-06-10 19:50:25 +02002465 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2466 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2467 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2468 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Takashi Iwai2fa522b2005-05-12 14:51:12 +02002469 /* Unmute output pins 0x14-0x17 */
Takashi Iwai05acb862005-06-10 19:50:25 +02002470 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2471 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2472 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2473 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Takashi Iwai2fa522b2005-05-12 14:51:12 +02002474 /* Set input pins 0x18-0x1c */
Takashi Iwai16ded522005-06-10 19:58:24 +02002475 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2476 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
Takashi Iwai05acb862005-06-10 19:50:25 +02002477 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2478 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2479 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
Takashi Iwai2fa522b2005-05-12 14:51:12 +02002480 /* Mute input pins 0x18-0x1b */
Takashi Iwai05acb862005-06-10 19:50:25 +02002481 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2482 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2483 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2484 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
Takashi Iwai71fe7b82005-05-25 18:11:40 +02002485 /* ADC set up */
Takashi Iwai05acb862005-06-10 19:50:25 +02002486 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
Takashi Iwai71fe7b82005-05-25 18:11:40 +02002487 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
Takashi Iwai05acb862005-06-10 19:50:25 +02002488 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
Takashi Iwai71fe7b82005-05-25 18:11:40 +02002489 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
Takashi Iwai05acb862005-06-10 19:50:25 +02002490 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
Takashi Iwai71fe7b82005-05-25 18:11:40 +02002491 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
Takashi Iwai05acb862005-06-10 19:50:25 +02002492 /* Analog input/passthru */
2493 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2494 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2495 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2496 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2497 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
Takashi Iwai2fa522b2005-05-12 14:51:12 +02002498 { }
2499};
2500#endif
2501
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502/*
2503 */
2504
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002505static const char *alc880_models[ALC880_MODEL_LAST] = {
2506 [ALC880_3ST] = "3stack",
2507 [ALC880_TCL_S700] = "tcl",
2508 [ALC880_3ST_DIG] = "3stack-digout",
2509 [ALC880_CLEVO] = "clevo",
2510 [ALC880_5ST] = "5stack",
2511 [ALC880_5ST_DIG] = "5stack-digout",
2512 [ALC880_W810] = "w810",
2513 [ALC880_Z71V] = "z71v",
2514 [ALC880_6ST] = "6stack",
2515 [ALC880_6ST_DIG] = "6stack-digout",
2516 [ALC880_ASUS] = "asus",
2517 [ALC880_ASUS_W1V] = "asus-w1v",
2518 [ALC880_ASUS_DIG] = "asus-dig",
2519 [ALC880_ASUS_DIG2] = "asus-dig2",
2520 [ALC880_UNIWILL_DIG] = "uniwill",
Tobin Davis2cf9f0f2007-02-07 16:04:25 +01002521 [ALC880_UNIWILL_P53] = "uniwill-p53",
2522 [ALC880_FUJITSU] = "fujitsu",
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002523 [ALC880_F1734] = "F1734",
2524 [ALC880_LG] = "lg",
2525 [ALC880_LG_LW] = "lg-lw",
Takashi Iwai2fa522b2005-05-12 14:51:12 +02002526#ifdef CONFIG_SND_DEBUG
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002527 [ALC880_TEST] = "test",
Takashi Iwai2fa522b2005-05-12 14:51:12 +02002528#endif
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002529 [ALC880_AUTO] = "auto",
2530};
2531
2532static struct snd_pci_quirk alc880_cfg_tbl[] = {
2533 /* Broken BIOS configuration */
2534 SND_PCI_QUIRK(0x2668, 0x8086, NULL, ALC880_6ST_DIG),
2535 SND_PCI_QUIRK(0x8086, 0x2668, NULL, ALC880_6ST_DIG),
2536
2537 SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_5ST_DIG),
2538 SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_6ST),
Tobin Davis4dc53e22006-12-18 13:24:37 +01002539 SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_W810),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002540 SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_3ST_DIG),
2541 SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_6ST_DIG),
2542 SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_6ST_DIG),
2543 SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_6ST_DIG),
2544 SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_3ST_DIG),
2545 SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_3ST),
2546
2547 SND_PCI_QUIRK(0x1039, 0x1234, NULL, ALC880_6ST_DIG),
2548 SND_PCI_QUIRK(0x103c, 0x2a09, "HP", ALC880_5ST),
2549
2550 SND_PCI_QUIRK(0x1043, 0x10b3, "ASUS W1V", ALC880_ASUS_W1V),
2551 SND_PCI_QUIRK(0x1043, 0x10c2, "ASUS W6A", ALC880_ASUS_DIG),
2552 SND_PCI_QUIRK(0x1043, 0x10c3, "ASUS Wxx", ALC880_ASUS_DIG),
2553 SND_PCI_QUIRK(0x1043, 0x1113, "ASUS", ALC880_ASUS_DIG),
2554 SND_PCI_QUIRK(0x1043, 0x1123, "ASUS", ALC880_ASUS_DIG),
2555 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS", ALC880_ASUS_DIG),
2556 SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_Z71V),
2557 /* SND_PCI_QUIRK(0x1043, 0x1964, "ASUS", ALC880_ASUS_DIG), */
2558 SND_PCI_QUIRK(0x1043, 0x1973, "ASUS", ALC880_ASUS_DIG),
2559 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS", ALC880_ASUS_DIG),
Tobin Davis0e4ceb72007-01-08 10:54:26 +01002560 SND_PCI_QUIRK(0x1043, 0x814e, "ASUS", ALC880_ASUS),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002561 SND_PCI_QUIRK(0x1043, 0x8181, "ASUS P4GPL", ALC880_ASUS_DIG),
2562 SND_PCI_QUIRK(0x1043, 0x8196, "ASUS P5GD1", ALC880_6ST),
2563 SND_PCI_QUIRK(0x1043, 0x81b4, "ASUS", ALC880_6ST),
2564 SND_PCI_QUIRK(0x1043, 0, "ASUS", ALC880_ASUS),
2565
2566 SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_3ST),
2567 SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_3ST),
2568 SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_5ST),
2569 SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_5ST),
2570 SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_5ST),
2571 SND_PCI_QUIRK(0x1558, 0x0520, "Clevo m520G", ALC880_CLEVO),
2572 SND_PCI_QUIRK(0x1558, 0x0660, "Clevo m655n", ALC880_CLEVO),
2573 SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_5ST_DIG),
2574 SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_W810),
2575 SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_5ST_DIG),
2576 SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_TCL_S700),
2577 SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_5ST_DIG),
2578 SND_PCI_QUIRK(0xe803, 0x1019, NULL, ALC880_6ST_DIG),
2579 SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_6ST_DIG),
2580 SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_6ST_DIG),
2581 SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_6ST_DIG),
2582 SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_6ST_DIG),
2583 SND_PCI_QUIRK(0x1558, 0x5401, "ASUS", ALC880_ASUS_DIG2),
2584
2585 SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_UNIWILL_DIG),
2586 SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_UNIWILL),
2587 SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_UNIWILL_P53),
2588 SND_PCI_QUIRK(0x1584, 0x9054, "Uniwlll", ALC880_F1734),
2589
2590 SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_5ST_DIG),
2591 SND_PCI_QUIRK(0x1734, 0x10ac, "FSC", ALC880_UNIWILL),
2592 SND_PCI_QUIRK(0x1734, 0x107c, "FSC F1734", ALC880_F1734),
Tobin Davis2cf9f0f2007-02-07 16:04:25 +01002593 SND_PCI_QUIRK(0x1734, 0x10b0, "Fujitsu", ALC880_FUJITSU),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002594
2595 SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_LG),
2596 SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_LG),
2597 SND_PCI_QUIRK(0x1854, 0x0018, "LG LW20", ALC880_LG_LW),
2598 SND_PCI_QUIRK(0x1854, 0x0077, "LG LW25", ALC880_LG_LW),
2599
2600 SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_3ST_DIG),
2601 SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_3ST_DIG),
2602 SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_3ST_DIG),
2603 SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_5ST_DIG),
2604 SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_5ST_DIG),
2605 SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_5ST_DIG),
2606 SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_5ST_DIG),
2607 SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_5ST_DIG),
2608 SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_5ST_DIG),
2609 SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_5ST_DIG),
2610 SND_PCI_QUIRK(0x8086, 0, "Intel mobo", ALC880_3ST),
Takashi Iwai2fa522b2005-05-12 14:51:12 +02002611
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 {}
2613};
2614
Takashi Iwai16ded522005-06-10 19:58:24 +02002615/*
Kailang Yangdf694da2005-12-05 19:42:22 +01002616 * ALC880 codec presets
Takashi Iwai16ded522005-06-10 19:58:24 +02002617 */
Takashi Iwai16ded522005-06-10 19:58:24 +02002618static struct alc_config_preset alc880_presets[] = {
2619 [ALC880_3ST] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002620 .mixers = { alc880_three_stack_mixer },
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002621 .init_verbs = { alc880_volume_init_verbs,
2622 alc880_pin_3stack_init_verbs },
Takashi Iwai16ded522005-06-10 19:58:24 +02002623 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
Takashi Iwai16ded522005-06-10 19:58:24 +02002624 .dac_nids = alc880_dac_nids,
Takashi Iwai16ded522005-06-10 19:58:24 +02002625 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2626 .channel_mode = alc880_threestack_modes,
Takashi Iwai4e195a72006-07-28 14:47:34 +02002627 .need_dac_fix = 1,
Takashi Iwai16ded522005-06-10 19:58:24 +02002628 .input_mux = &alc880_capture_source,
2629 },
2630 [ALC880_3ST_DIG] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002631 .mixers = { alc880_three_stack_mixer },
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002632 .init_verbs = { alc880_volume_init_verbs,
2633 alc880_pin_3stack_init_verbs },
Takashi Iwai16ded522005-06-10 19:58:24 +02002634 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
Takashi Iwai16ded522005-06-10 19:58:24 +02002635 .dac_nids = alc880_dac_nids,
2636 .dig_out_nid = ALC880_DIGOUT_NID,
Takashi Iwai16ded522005-06-10 19:58:24 +02002637 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2638 .channel_mode = alc880_threestack_modes,
Takashi Iwai4e195a72006-07-28 14:47:34 +02002639 .need_dac_fix = 1,
Takashi Iwai16ded522005-06-10 19:58:24 +02002640 .input_mux = &alc880_capture_source,
2641 },
Kailang Yangdf694da2005-12-05 19:42:22 +01002642 [ALC880_TCL_S700] = {
2643 .mixers = { alc880_tcl_s700_mixer },
2644 .init_verbs = { alc880_volume_init_verbs,
2645 alc880_pin_tcl_S700_init_verbs,
2646 alc880_gpio2_init_verbs },
2647 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2648 .dac_nids = alc880_dac_nids,
2649 .hp_nid = 0x03,
2650 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2651 .channel_mode = alc880_2_jack_modes,
2652 .input_mux = &alc880_capture_source,
2653 },
Takashi Iwai16ded522005-06-10 19:58:24 +02002654 [ALC880_5ST] = {
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002655 .mixers = { alc880_three_stack_mixer,
2656 alc880_five_stack_mixer},
2657 .init_verbs = { alc880_volume_init_verbs,
2658 alc880_pin_5stack_init_verbs },
Takashi Iwai16ded522005-06-10 19:58:24 +02002659 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2660 .dac_nids = alc880_dac_nids,
Takashi Iwai16ded522005-06-10 19:58:24 +02002661 .num_channel_mode = ARRAY_SIZE(alc880_fivestack_modes),
2662 .channel_mode = alc880_fivestack_modes,
2663 .input_mux = &alc880_capture_source,
2664 },
2665 [ALC880_5ST_DIG] = {
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002666 .mixers = { alc880_three_stack_mixer,
2667 alc880_five_stack_mixer },
2668 .init_verbs = { alc880_volume_init_verbs,
2669 alc880_pin_5stack_init_verbs },
Takashi Iwai16ded522005-06-10 19:58:24 +02002670 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2671 .dac_nids = alc880_dac_nids,
2672 .dig_out_nid = ALC880_DIGOUT_NID,
Takashi Iwai16ded522005-06-10 19:58:24 +02002673 .num_channel_mode = ARRAY_SIZE(alc880_fivestack_modes),
2674 .channel_mode = alc880_fivestack_modes,
2675 .input_mux = &alc880_capture_source,
2676 },
Takashi Iwaib6482d42005-06-27 15:32:43 +02002677 [ALC880_6ST] = {
2678 .mixers = { alc880_six_stack_mixer },
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002679 .init_verbs = { alc880_volume_init_verbs,
2680 alc880_pin_6stack_init_verbs },
Takashi Iwaib6482d42005-06-27 15:32:43 +02002681 .num_dacs = ARRAY_SIZE(alc880_6st_dac_nids),
2682 .dac_nids = alc880_6st_dac_nids,
2683 .num_channel_mode = ARRAY_SIZE(alc880_sixstack_modes),
2684 .channel_mode = alc880_sixstack_modes,
2685 .input_mux = &alc880_6stack_capture_source,
2686 },
Takashi Iwai16ded522005-06-10 19:58:24 +02002687 [ALC880_6ST_DIG] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002688 .mixers = { alc880_six_stack_mixer },
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002689 .init_verbs = { alc880_volume_init_verbs,
2690 alc880_pin_6stack_init_verbs },
Takashi Iwai16ded522005-06-10 19:58:24 +02002691 .num_dacs = ARRAY_SIZE(alc880_6st_dac_nids),
2692 .dac_nids = alc880_6st_dac_nids,
2693 .dig_out_nid = ALC880_DIGOUT_NID,
Takashi Iwai16ded522005-06-10 19:58:24 +02002694 .num_channel_mode = ARRAY_SIZE(alc880_sixstack_modes),
2695 .channel_mode = alc880_sixstack_modes,
2696 .input_mux = &alc880_6stack_capture_source,
2697 },
2698 [ALC880_W810] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002699 .mixers = { alc880_w810_base_mixer },
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002700 .init_verbs = { alc880_volume_init_verbs,
2701 alc880_pin_w810_init_verbs,
Takashi Iwaib0af0de2005-06-21 14:49:19 +02002702 alc880_gpio2_init_verbs },
Takashi Iwai16ded522005-06-10 19:58:24 +02002703 .num_dacs = ARRAY_SIZE(alc880_w810_dac_nids),
2704 .dac_nids = alc880_w810_dac_nids,
2705 .dig_out_nid = ALC880_DIGOUT_NID,
Takashi Iwai16ded522005-06-10 19:58:24 +02002706 .num_channel_mode = ARRAY_SIZE(alc880_w810_modes),
2707 .channel_mode = alc880_w810_modes,
2708 .input_mux = &alc880_capture_source,
2709 },
2710 [ALC880_Z71V] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002711 .mixers = { alc880_z71v_mixer },
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002712 .init_verbs = { alc880_volume_init_verbs,
2713 alc880_pin_z71v_init_verbs },
Takashi Iwai16ded522005-06-10 19:58:24 +02002714 .num_dacs = ARRAY_SIZE(alc880_z71v_dac_nids),
2715 .dac_nids = alc880_z71v_dac_nids,
2716 .dig_out_nid = ALC880_DIGOUT_NID,
2717 .hp_nid = 0x03,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002718 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2719 .channel_mode = alc880_2_jack_modes,
Takashi Iwai16ded522005-06-10 19:58:24 +02002720 .input_mux = &alc880_capture_source,
2721 },
2722 [ALC880_F1734] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002723 .mixers = { alc880_f1734_mixer },
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002724 .init_verbs = { alc880_volume_init_verbs,
2725 alc880_pin_f1734_init_verbs },
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002726 .num_dacs = ARRAY_SIZE(alc880_f1734_dac_nids),
2727 .dac_nids = alc880_f1734_dac_nids,
2728 .hp_nid = 0x02,
2729 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2730 .channel_mode = alc880_2_jack_modes,
Takashi Iwai16ded522005-06-10 19:58:24 +02002731 .input_mux = &alc880_capture_source,
2732 },
2733 [ALC880_ASUS] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002734 .mixers = { alc880_asus_mixer },
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002735 .init_verbs = { alc880_volume_init_verbs,
2736 alc880_pin_asus_init_verbs,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002737 alc880_gpio1_init_verbs },
2738 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2739 .dac_nids = alc880_asus_dac_nids,
2740 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2741 .channel_mode = alc880_asus_modes,
Takashi Iwai4e195a72006-07-28 14:47:34 +02002742 .need_dac_fix = 1,
Takashi Iwai16ded522005-06-10 19:58:24 +02002743 .input_mux = &alc880_capture_source,
2744 },
2745 [ALC880_ASUS_DIG] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002746 .mixers = { alc880_asus_mixer },
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002747 .init_verbs = { alc880_volume_init_verbs,
2748 alc880_pin_asus_init_verbs,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002749 alc880_gpio1_init_verbs },
2750 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2751 .dac_nids = alc880_asus_dac_nids,
Takashi Iwai16ded522005-06-10 19:58:24 +02002752 .dig_out_nid = ALC880_DIGOUT_NID,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002753 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2754 .channel_mode = alc880_asus_modes,
Takashi Iwai4e195a72006-07-28 14:47:34 +02002755 .need_dac_fix = 1,
Takashi Iwai16ded522005-06-10 19:58:24 +02002756 .input_mux = &alc880_capture_source,
2757 },
Kailang Yangdf694da2005-12-05 19:42:22 +01002758 [ALC880_ASUS_DIG2] = {
2759 .mixers = { alc880_asus_mixer },
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002760 .init_verbs = { alc880_volume_init_verbs,
2761 alc880_pin_asus_init_verbs,
Kailang Yangdf694da2005-12-05 19:42:22 +01002762 alc880_gpio2_init_verbs }, /* use GPIO2 */
2763 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2764 .dac_nids = alc880_asus_dac_nids,
2765 .dig_out_nid = ALC880_DIGOUT_NID,
2766 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2767 .channel_mode = alc880_asus_modes,
Takashi Iwai4e195a72006-07-28 14:47:34 +02002768 .need_dac_fix = 1,
Kailang Yangdf694da2005-12-05 19:42:22 +01002769 .input_mux = &alc880_capture_source,
2770 },
Takashi Iwai16ded522005-06-10 19:58:24 +02002771 [ALC880_ASUS_W1V] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002772 .mixers = { alc880_asus_mixer, alc880_asus_w1v_mixer },
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002773 .init_verbs = { alc880_volume_init_verbs,
2774 alc880_pin_asus_init_verbs,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002775 alc880_gpio1_init_verbs },
2776 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2777 .dac_nids = alc880_asus_dac_nids,
Takashi Iwai16ded522005-06-10 19:58:24 +02002778 .dig_out_nid = ALC880_DIGOUT_NID,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002779 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2780 .channel_mode = alc880_asus_modes,
Takashi Iwai4e195a72006-07-28 14:47:34 +02002781 .need_dac_fix = 1,
Takashi Iwai16ded522005-06-10 19:58:24 +02002782 .input_mux = &alc880_capture_source,
2783 },
2784 [ALC880_UNIWILL_DIG] = {
Takashi Iwai3c10a9d2005-08-23 20:02:27 +02002785 .mixers = { alc880_asus_mixer, alc880_pcbeep_mixer },
Kailang Yangccc656c2006-10-17 12:32:26 +02002786 .init_verbs = { alc880_volume_init_verbs,
2787 alc880_pin_asus_init_verbs },
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002788 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2789 .dac_nids = alc880_asus_dac_nids,
Takashi Iwai16ded522005-06-10 19:58:24 +02002790 .dig_out_nid = ALC880_DIGOUT_NID,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002791 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2792 .channel_mode = alc880_asus_modes,
Takashi Iwai4e195a72006-07-28 14:47:34 +02002793 .need_dac_fix = 1,
Takashi Iwai16ded522005-06-10 19:58:24 +02002794 .input_mux = &alc880_capture_source,
2795 },
Kailang Yangccc656c2006-10-17 12:32:26 +02002796 [ALC880_UNIWILL] = {
2797 .mixers = { alc880_uniwill_mixer },
2798 .init_verbs = { alc880_volume_init_verbs,
2799 alc880_uniwill_init_verbs },
2800 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2801 .dac_nids = alc880_asus_dac_nids,
2802 .dig_out_nid = ALC880_DIGOUT_NID,
2803 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2804 .channel_mode = alc880_threestack_modes,
2805 .need_dac_fix = 1,
2806 .input_mux = &alc880_capture_source,
2807 .unsol_event = alc880_uniwill_unsol_event,
2808 .init_hook = alc880_uniwill_automute,
2809 },
2810 [ALC880_UNIWILL_P53] = {
2811 .mixers = { alc880_uniwill_p53_mixer },
2812 .init_verbs = { alc880_volume_init_verbs,
2813 alc880_uniwill_p53_init_verbs },
2814 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2815 .dac_nids = alc880_asus_dac_nids,
2816 .num_channel_mode = ARRAY_SIZE(alc880_w810_modes),
Tobin Davis2cf9f0f2007-02-07 16:04:25 +01002817 .channel_mode = alc880_threestack_modes,
2818 .input_mux = &alc880_capture_source,
2819 .unsol_event = alc880_uniwill_p53_unsol_event,
2820 .init_hook = alc880_uniwill_p53_hp_automute,
2821 },
2822 [ALC880_FUJITSU] = {
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002823 .mixers = { alc880_fujitsu_mixer,
Tobin Davis2cf9f0f2007-02-07 16:04:25 +01002824 alc880_pcbeep_mixer, },
2825 .init_verbs = { alc880_volume_init_verbs,
2826 alc880_uniwill_p53_init_verbs,
2827 alc880_beep_init_verbs },
2828 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2829 .dac_nids = alc880_dac_nids,
2830 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2831 .channel_mode = alc880_2_jack_modes,
Kailang Yangccc656c2006-10-17 12:32:26 +02002832 .input_mux = &alc880_capture_source,
2833 .unsol_event = alc880_uniwill_p53_unsol_event,
2834 .init_hook = alc880_uniwill_p53_hp_automute,
2835 },
Kailang Yangdf694da2005-12-05 19:42:22 +01002836 [ALC880_CLEVO] = {
2837 .mixers = { alc880_three_stack_mixer },
2838 .init_verbs = { alc880_volume_init_verbs,
2839 alc880_pin_clevo_init_verbs },
2840 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2841 .dac_nids = alc880_dac_nids,
2842 .hp_nid = 0x03,
2843 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2844 .channel_mode = alc880_threestack_modes,
Takashi Iwai4e195a72006-07-28 14:47:34 +02002845 .need_dac_fix = 1,
Kailang Yangdf694da2005-12-05 19:42:22 +01002846 .input_mux = &alc880_capture_source,
2847 },
Takashi Iwaiae6b8132006-03-03 16:47:17 +01002848 [ALC880_LG] = {
2849 .mixers = { alc880_lg_mixer },
2850 .init_verbs = { alc880_volume_init_verbs,
2851 alc880_lg_init_verbs },
2852 .num_dacs = ARRAY_SIZE(alc880_lg_dac_nids),
2853 .dac_nids = alc880_lg_dac_nids,
2854 .dig_out_nid = ALC880_DIGOUT_NID,
2855 .num_channel_mode = ARRAY_SIZE(alc880_lg_ch_modes),
2856 .channel_mode = alc880_lg_ch_modes,
Takashi Iwai4e195a72006-07-28 14:47:34 +02002857 .need_dac_fix = 1,
Takashi Iwaiae6b8132006-03-03 16:47:17 +01002858 .input_mux = &alc880_lg_capture_source,
2859 .unsol_event = alc880_lg_unsol_event,
2860 .init_hook = alc880_lg_automute,
2861 },
Takashi Iwaid6815182006-03-23 16:06:23 +01002862 [ALC880_LG_LW] = {
2863 .mixers = { alc880_lg_lw_mixer },
2864 .init_verbs = { alc880_volume_init_verbs,
2865 alc880_lg_lw_init_verbs },
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002866 .num_dacs = 1,
Takashi Iwaid6815182006-03-23 16:06:23 +01002867 .dac_nids = alc880_dac_nids,
2868 .dig_out_nid = ALC880_DIGOUT_NID,
2869 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2870 .channel_mode = alc880_2_jack_modes,
2871 .input_mux = &alc880_lg_lw_capture_source,
2872 .unsol_event = alc880_lg_lw_unsol_event,
2873 .init_hook = alc880_lg_lw_automute,
2874 },
Takashi Iwai16ded522005-06-10 19:58:24 +02002875#ifdef CONFIG_SND_DEBUG
2876 [ALC880_TEST] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002877 .mixers = { alc880_test_mixer },
2878 .init_verbs = { alc880_test_init_verbs },
Takashi Iwai16ded522005-06-10 19:58:24 +02002879 .num_dacs = ARRAY_SIZE(alc880_test_dac_nids),
2880 .dac_nids = alc880_test_dac_nids,
2881 .dig_out_nid = ALC880_DIGOUT_NID,
Takashi Iwai16ded522005-06-10 19:58:24 +02002882 .num_channel_mode = ARRAY_SIZE(alc880_test_modes),
2883 .channel_mode = alc880_test_modes,
2884 .input_mux = &alc880_test_capture_source,
2885 },
2886#endif
2887};
2888
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002889/*
2890 * Automatic parse of I/O pins from the BIOS configuration
2891 */
2892
2893#define NUM_CONTROL_ALLOC 32
2894#define NUM_VERB_ALLOC 32
2895
2896enum {
2897 ALC_CTL_WIDGET_VOL,
2898 ALC_CTL_WIDGET_MUTE,
2899 ALC_CTL_BIND_MUTE,
2900};
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01002901static struct snd_kcontrol_new alc880_control_templates[] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002902 HDA_CODEC_VOLUME(NULL, 0, 0, 0),
2903 HDA_CODEC_MUTE(NULL, 0, 0, 0),
Takashi Iwai985be542005-11-02 18:26:49 +01002904 HDA_BIND_MUTE(NULL, 0, 0, 0),
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002905};
2906
2907/* add dynamic controls */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002908static int add_control(struct alc_spec *spec, int type, const char *name,
2909 unsigned long val)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002910{
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01002911 struct snd_kcontrol_new *knew;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002912
2913 if (spec->num_kctl_used >= spec->num_kctl_alloc) {
2914 int num = spec->num_kctl_alloc + NUM_CONTROL_ALLOC;
2915
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002916 /* array + terminator */
2917 knew = kcalloc(num + 1, sizeof(*knew), GFP_KERNEL);
2918 if (!knew)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002919 return -ENOMEM;
2920 if (spec->kctl_alloc) {
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002921 memcpy(knew, spec->kctl_alloc,
2922 sizeof(*knew) * spec->num_kctl_alloc);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002923 kfree(spec->kctl_alloc);
2924 }
2925 spec->kctl_alloc = knew;
2926 spec->num_kctl_alloc = num;
2927 }
2928
2929 knew = &spec->kctl_alloc[spec->num_kctl_used];
2930 *knew = alc880_control_templates[type];
Paulo Marques543537b2005-06-23 00:09:02 -07002931 knew->name = kstrdup(name, GFP_KERNEL);
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002932 if (!knew->name)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002933 return -ENOMEM;
2934 knew->private_value = val;
2935 spec->num_kctl_used++;
2936 return 0;
2937}
2938
2939#define alc880_is_fixed_pin(nid) ((nid) >= 0x14 && (nid) <= 0x17)
2940#define alc880_fixed_pin_idx(nid) ((nid) - 0x14)
2941#define alc880_is_multi_pin(nid) ((nid) >= 0x18)
2942#define alc880_multi_pin_idx(nid) ((nid) - 0x18)
2943#define alc880_is_input_pin(nid) ((nid) >= 0x18)
2944#define alc880_input_pin_idx(nid) ((nid) - 0x18)
2945#define alc880_idx_to_dac(nid) ((nid) + 0x02)
2946#define alc880_dac_to_idx(nid) ((nid) - 0x02)
2947#define alc880_idx_to_mixer(nid) ((nid) + 0x0c)
2948#define alc880_idx_to_selector(nid) ((nid) + 0x10)
2949#define ALC880_PIN_CD_NID 0x1c
2950
2951/* fill in the dac_nids table from the parsed pin configuration */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002952static int alc880_auto_fill_dac_nids(struct alc_spec *spec,
2953 const struct auto_pin_cfg *cfg)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002954{
2955 hda_nid_t nid;
2956 int assigned[4];
2957 int i, j;
2958
2959 memset(assigned, 0, sizeof(assigned));
Takashi Iwaib0af0de2005-06-21 14:49:19 +02002960 spec->multiout.dac_nids = spec->private_dac_nids;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002961
2962 /* check the pins hardwired to audio widget */
2963 for (i = 0; i < cfg->line_outs; i++) {
2964 nid = cfg->line_out_pins[i];
2965 if (alc880_is_fixed_pin(nid)) {
2966 int idx = alc880_fixed_pin_idx(nid);
Libin Yang5014f192005-11-23 15:48:36 +01002967 spec->multiout.dac_nids[i] = alc880_idx_to_dac(idx);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002968 assigned[idx] = 1;
2969 }
2970 }
2971 /* left pins can be connect to any audio widget */
2972 for (i = 0; i < cfg->line_outs; i++) {
2973 nid = cfg->line_out_pins[i];
2974 if (alc880_is_fixed_pin(nid))
2975 continue;
2976 /* search for an empty channel */
2977 for (j = 0; j < cfg->line_outs; j++) {
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002978 if (!assigned[j]) {
2979 spec->multiout.dac_nids[i] =
2980 alc880_idx_to_dac(j);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002981 assigned[j] = 1;
2982 break;
2983 }
2984 }
2985 }
2986 spec->multiout.num_dacs = cfg->line_outs;
2987 return 0;
2988}
2989
2990/* add playback controls from the parsed DAC table */
Kailang Yangdf694da2005-12-05 19:42:22 +01002991static int alc880_auto_create_multi_out_ctls(struct alc_spec *spec,
2992 const struct auto_pin_cfg *cfg)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002993{
2994 char name[32];
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02002995 static const char *chname[4] = {
2996 "Front", "Surround", NULL /*CLFE*/, "Side"
2997 };
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002998 hda_nid_t nid;
2999 int i, err;
3000
3001 for (i = 0; i < cfg->line_outs; i++) {
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02003002 if (!spec->multiout.dac_nids[i])
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003003 continue;
3004 nid = alc880_idx_to_mixer(alc880_dac_to_idx(spec->multiout.dac_nids[i]));
3005 if (i == 2) {
3006 /* Center/LFE */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02003007 err = add_control(spec, ALC_CTL_WIDGET_VOL,
3008 "Center Playback Volume",
3009 HDA_COMPOSE_AMP_VAL(nid, 1, 0,
3010 HDA_OUTPUT));
3011 if (err < 0)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003012 return err;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02003013 err = add_control(spec, ALC_CTL_WIDGET_VOL,
3014 "LFE Playback Volume",
3015 HDA_COMPOSE_AMP_VAL(nid, 2, 0,
3016 HDA_OUTPUT));
3017 if (err < 0)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003018 return err;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02003019 err = add_control(spec, ALC_CTL_BIND_MUTE,
3020 "Center Playback Switch",
3021 HDA_COMPOSE_AMP_VAL(nid, 1, 2,
3022 HDA_INPUT));
3023 if (err < 0)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003024 return err;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02003025 err = add_control(spec, ALC_CTL_BIND_MUTE,
3026 "LFE Playback Switch",
3027 HDA_COMPOSE_AMP_VAL(nid, 2, 2,
3028 HDA_INPUT));
3029 if (err < 0)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003030 return err;
3031 } else {
3032 sprintf(name, "%s Playback Volume", chname[i]);
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02003033 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
3034 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
3035 HDA_OUTPUT));
3036 if (err < 0)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003037 return err;
3038 sprintf(name, "%s Playback Switch", chname[i]);
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02003039 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
3040 HDA_COMPOSE_AMP_VAL(nid, 3, 2,
3041 HDA_INPUT));
3042 if (err < 0)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003043 return err;
3044 }
3045 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003046 return 0;
3047}
3048
Takashi Iwai8d88bc32005-11-17 11:09:23 +01003049/* add playback controls for speaker and HP outputs */
3050static int alc880_auto_create_extra_out(struct alc_spec *spec, hda_nid_t pin,
3051 const char *pfx)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003052{
3053 hda_nid_t nid;
3054 int err;
Takashi Iwai8d88bc32005-11-17 11:09:23 +01003055 char name[32];
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003056
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02003057 if (!pin)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003058 return 0;
3059
3060 if (alc880_is_fixed_pin(pin)) {
3061 nid = alc880_idx_to_dac(alc880_fixed_pin_idx(pin));
Takashi Iwai82bc9552006-03-21 11:24:42 +01003062 /* specify the DAC as the extra output */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02003063 if (!spec->multiout.hp_nid)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003064 spec->multiout.hp_nid = nid;
Takashi Iwai82bc9552006-03-21 11:24:42 +01003065 else
3066 spec->multiout.extra_out_nid[0] = nid;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003067 /* control HP volume/switch on the output mixer amp */
3068 nid = alc880_idx_to_mixer(alc880_fixed_pin_idx(pin));
Takashi Iwai8d88bc32005-11-17 11:09:23 +01003069 sprintf(name, "%s Playback Volume", pfx);
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02003070 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
3071 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT));
3072 if (err < 0)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003073 return err;
Takashi Iwai8d88bc32005-11-17 11:09:23 +01003074 sprintf(name, "%s Playback Switch", pfx);
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02003075 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
3076 HDA_COMPOSE_AMP_VAL(nid, 3, 2, HDA_INPUT));
3077 if (err < 0)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003078 return err;
3079 } else if (alc880_is_multi_pin(pin)) {
3080 /* set manual connection */
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003081 /* we have only a switch on HP-out PIN */
Takashi Iwai8d88bc32005-11-17 11:09:23 +01003082 sprintf(name, "%s Playback Switch", pfx);
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02003083 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
3084 HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
3085 if (err < 0)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003086 return err;
3087 }
3088 return 0;
3089}
3090
3091/* create input playback/capture controls for the given pin */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02003092static int new_analog_input(struct alc_spec *spec, hda_nid_t pin,
3093 const char *ctlname,
Kailang Yangdf694da2005-12-05 19:42:22 +01003094 int idx, hda_nid_t mix_nid)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003095{
3096 char name[32];
Kailang Yangdf694da2005-12-05 19:42:22 +01003097 int err;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003098
3099 sprintf(name, "%s Playback Volume", ctlname);
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02003100 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
3101 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
3102 if (err < 0)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003103 return err;
3104 sprintf(name, "%s Playback Switch", ctlname);
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02003105 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
3106 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
3107 if (err < 0)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003108 return err;
3109 return 0;
3110}
3111
3112/* create playback/capture controls for input pins */
Kailang Yangdf694da2005-12-05 19:42:22 +01003113static int alc880_auto_create_analog_input_ctls(struct alc_spec *spec,
3114 const struct auto_pin_cfg *cfg)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003115{
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003116 struct hda_input_mux *imux = &spec->private_imux;
Kailang Yangdf694da2005-12-05 19:42:22 +01003117 int i, err, idx;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003118
3119 for (i = 0; i < AUTO_PIN_LAST; i++) {
3120 if (alc880_is_input_pin(cfg->input_pins[i])) {
Kailang Yangdf694da2005-12-05 19:42:22 +01003121 idx = alc880_input_pin_idx(cfg->input_pins[i]);
Takashi Iwai4a471b72005-12-07 13:56:29 +01003122 err = new_analog_input(spec, cfg->input_pins[i],
3123 auto_pin_cfg_labels[i],
Kailang Yangdf694da2005-12-05 19:42:22 +01003124 idx, 0x0b);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003125 if (err < 0)
3126 return err;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02003127 imux->items[imux->num_items].label =
3128 auto_pin_cfg_labels[i];
3129 imux->items[imux->num_items].index =
3130 alc880_input_pin_idx(cfg->input_pins[i]);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003131 imux->num_items++;
3132 }
3133 }
3134 return 0;
3135}
3136
Kailang Yangdf694da2005-12-05 19:42:22 +01003137static void alc880_auto_set_output_and_unmute(struct hda_codec *codec,
3138 hda_nid_t nid, int pin_type,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003139 int dac_idx)
3140{
3141 /* set as output */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02003142 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
3143 pin_type);
3144 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
3145 AMP_OUT_UNMUTE);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003146 /* need the manual connection? */
3147 if (alc880_is_multi_pin(nid)) {
3148 struct alc_spec *spec = codec->spec;
3149 int idx = alc880_multi_pin_idx(nid);
3150 snd_hda_codec_write(codec, alc880_idx_to_selector(idx), 0,
3151 AC_VERB_SET_CONNECT_SEL,
3152 alc880_dac_to_idx(spec->multiout.dac_nids[dac_idx]));
3153 }
3154}
3155
Takashi Iwaibaba8ee2007-04-23 17:17:48 +02003156static int get_pin_type(int line_out_type)
3157{
3158 if (line_out_type == AUTO_PIN_HP_OUT)
3159 return PIN_HP;
3160 else
3161 return PIN_OUT;
3162}
3163
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003164static void alc880_auto_init_multi_out(struct hda_codec *codec)
3165{
3166 struct alc_spec *spec = codec->spec;
3167 int i;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003168
3169 alc_subsystem_id(codec, 0x15, 0x1b, 0x14);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003170 for (i = 0; i < spec->autocfg.line_outs; i++) {
3171 hda_nid_t nid = spec->autocfg.line_out_pins[i];
Takashi Iwaibaba8ee2007-04-23 17:17:48 +02003172 int pin_type = get_pin_type(spec->autocfg.line_out_type);
3173 alc880_auto_set_output_and_unmute(codec, nid, pin_type, i);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003174 }
3175}
3176
Takashi Iwai8d88bc32005-11-17 11:09:23 +01003177static void alc880_auto_init_extra_out(struct hda_codec *codec)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003178{
3179 struct alc_spec *spec = codec->spec;
3180 hda_nid_t pin;
3181
Takashi Iwai82bc9552006-03-21 11:24:42 +01003182 pin = spec->autocfg.speaker_pins[0];
Takashi Iwai8d88bc32005-11-17 11:09:23 +01003183 if (pin) /* connect to front */
3184 alc880_auto_set_output_and_unmute(codec, pin, PIN_OUT, 0);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003185 pin = spec->autocfg.hp_pins[0];
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003186 if (pin) /* connect to front */
3187 alc880_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
3188}
3189
3190static void alc880_auto_init_analog_input(struct hda_codec *codec)
3191{
3192 struct alc_spec *spec = codec->spec;
3193 int i;
3194
3195 for (i = 0; i < AUTO_PIN_LAST; i++) {
3196 hda_nid_t nid = spec->autocfg.input_pins[i];
3197 if (alc880_is_input_pin(nid)) {
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02003198 snd_hda_codec_write(codec, nid, 0,
3199 AC_VERB_SET_PIN_WIDGET_CONTROL,
3200 i <= AUTO_PIN_FRONT_MIC ?
3201 PIN_VREF80 : PIN_IN);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003202 if (nid != ALC880_PIN_CD_NID)
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02003203 snd_hda_codec_write(codec, nid, 0,
3204 AC_VERB_SET_AMP_GAIN_MUTE,
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003205 AMP_OUT_MUTE);
3206 }
3207 }
3208}
3209
3210/* parse the BIOS configuration and set up the alc_spec */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02003211/* return 1 if successful, 0 if the proper config is not found,
3212 * or a negative error code
3213 */
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003214static int alc880_parse_auto_config(struct hda_codec *codec)
3215{
3216 struct alc_spec *spec = codec->spec;
3217 int err;
Kailang Yangdf694da2005-12-05 19:42:22 +01003218 static hda_nid_t alc880_ignore[] = { 0x1d, 0 };
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003219
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02003220 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
3221 alc880_ignore);
3222 if (err < 0)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003223 return err;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02003224 if (!spec->autocfg.line_outs)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003225 return 0; /* can't find valid BIOS pin config */
Kailang Yangdf694da2005-12-05 19:42:22 +01003226
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02003227 err = alc880_auto_fill_dac_nids(spec, &spec->autocfg);
3228 if (err < 0)
3229 return err;
3230 err = alc880_auto_create_multi_out_ctls(spec, &spec->autocfg);
3231 if (err < 0)
3232 return err;
3233 err = alc880_auto_create_extra_out(spec,
3234 spec->autocfg.speaker_pins[0],
3235 "Speaker");
3236 if (err < 0)
3237 return err;
3238 err = alc880_auto_create_extra_out(spec, spec->autocfg.hp_pins[0],
3239 "Headphone");
3240 if (err < 0)
3241 return err;
3242 err = alc880_auto_create_analog_input_ctls(spec, &spec->autocfg);
3243 if (err < 0)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003244 return err;
3245
3246 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
3247
3248 if (spec->autocfg.dig_out_pin)
3249 spec->multiout.dig_out_nid = ALC880_DIGOUT_NID;
3250 if (spec->autocfg.dig_in_pin)
3251 spec->dig_in_nid = ALC880_DIGIN_NID;
3252
3253 if (spec->kctl_alloc)
3254 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
3255
3256 spec->init_verbs[spec->num_init_verbs++] = alc880_volume_init_verbs;
3257
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +02003258 spec->num_mux_defs = 1;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003259 spec->input_mux = &spec->private_imux;
3260
3261 return 1;
3262}
3263
Takashi Iwaiae6b8132006-03-03 16:47:17 +01003264/* additional initialization for auto-configuration model */
3265static void alc880_auto_init(struct hda_codec *codec)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003266{
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003267 alc880_auto_init_multi_out(codec);
Takashi Iwai8d88bc32005-11-17 11:09:23 +01003268 alc880_auto_init_extra_out(codec);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003269 alc880_auto_init_analog_input(codec);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003270}
3271
3272/*
3273 * OK, here we have finally the patch for ALC880
3274 */
3275
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276static int patch_alc880(struct hda_codec *codec)
3277{
3278 struct alc_spec *spec;
3279 int board_config;
Kailang Yangdf694da2005-12-05 19:42:22 +01003280 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281
Takashi Iwaie560d8d2005-09-09 14:21:46 +02003282 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283 if (spec == NULL)
3284 return -ENOMEM;
3285
3286 codec->spec = spec;
3287
Takashi Iwaif5fcc132006-11-24 17:07:44 +01003288 board_config = snd_hda_check_board_config(codec, ALC880_MODEL_LAST,
3289 alc880_models,
3290 alc880_cfg_tbl);
3291 if (board_config < 0) {
Takashi Iwai9c7f8522006-06-28 15:08:22 +02003292 printk(KERN_INFO "hda_codec: Unknown model for ALC880, "
3293 "trying auto-probe from BIOS...\n");
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003294 board_config = ALC880_AUTO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295 }
3296
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003297 if (board_config == ALC880_AUTO) {
3298 /* automatic parse from the BIOS config */
3299 err = alc880_parse_auto_config(codec);
3300 if (err < 0) {
3301 alc_free(codec);
3302 return err;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02003303 } else if (!err) {
Takashi Iwai9c7f8522006-06-28 15:08:22 +02003304 printk(KERN_INFO
3305 "hda_codec: Cannot set up configuration "
3306 "from BIOS. Using 3-stack mode...\n");
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003307 board_config = ALC880_3ST;
3308 }
3309 }
3310
Kailang Yangdf694da2005-12-05 19:42:22 +01003311 if (board_config != ALC880_AUTO)
3312 setup_preset(spec, &alc880_presets[board_config]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313
3314 spec->stream_name_analog = "ALC880 Analog";
3315 spec->stream_analog_playback = &alc880_pcm_analog_playback;
3316 spec->stream_analog_capture = &alc880_pcm_analog_capture;
3317
3318 spec->stream_name_digital = "ALC880 Digital";
3319 spec->stream_digital_playback = &alc880_pcm_digital_playback;
3320 spec->stream_digital_capture = &alc880_pcm_digital_capture;
3321
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02003322 if (!spec->adc_nids && spec->input_mux) {
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003323 /* check whether NID 0x07 is valid */
Takashi Iwai54d17402005-11-21 16:33:22 +01003324 unsigned int wcap = get_wcaps(codec, alc880_adc_nids[0]);
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02003325 /* get type */
3326 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003327 if (wcap != AC_WID_AUD_IN) {
3328 spec->adc_nids = alc880_adc_nids_alt;
3329 spec->num_adc_nids = ARRAY_SIZE(alc880_adc_nids_alt);
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02003330 spec->mixers[spec->num_mixers] =
3331 alc880_capture_alt_mixer;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003332 spec->num_mixers++;
3333 } else {
3334 spec->adc_nids = alc880_adc_nids;
3335 spec->num_adc_nids = ARRAY_SIZE(alc880_adc_nids);
3336 spec->mixers[spec->num_mixers] = alc880_capture_mixer;
3337 spec->num_mixers++;
3338 }
3339 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340
3341 codec->patch_ops = alc_patch_ops;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003342 if (board_config == ALC880_AUTO)
Takashi Iwaiae6b8132006-03-03 16:47:17 +01003343 spec->init_hook = alc880_auto_init;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344
3345 return 0;
3346}
3347
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003348
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349/*
3350 * ALC260 support
3351 */
3352
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003353static hda_nid_t alc260_dac_nids[1] = {
3354 /* front */
3355 0x02,
3356};
3357
3358static hda_nid_t alc260_adc_nids[1] = {
3359 /* ADC0 */
3360 0x04,
3361};
3362
Kailang Yangdf694da2005-12-05 19:42:22 +01003363static hda_nid_t alc260_adc_nids_alt[1] = {
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003364 /* ADC1 */
3365 0x05,
3366};
3367
Kailang Yangdf694da2005-12-05 19:42:22 +01003368static hda_nid_t alc260_hp_adc_nids[2] = {
3369 /* ADC1, 0 */
3370 0x05, 0x04
3371};
3372
Jonathan Woithed57fdac2006-02-28 11:38:35 +01003373/* NIDs used when simultaneous access to both ADCs makes sense. Note that
3374 * alc260_capture_mixer assumes ADC0 (nid 0x04) is the first ADC.
3375 */
3376static hda_nid_t alc260_dual_adc_nids[2] = {
Jonathan Woithe4c5186e2006-02-09 11:53:48 +01003377 /* ADC0, ADC1 */
3378 0x04, 0x05
3379};
3380
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003381#define ALC260_DIGOUT_NID 0x03
3382#define ALC260_DIGIN_NID 0x06
3383
3384static struct hda_input_mux alc260_capture_source = {
3385 .num_items = 4,
3386 .items = {
3387 { "Mic", 0x0 },
3388 { "Front Mic", 0x1 },
3389 { "Line", 0x2 },
3390 { "CD", 0x4 },
3391 },
3392};
3393
Jonathan Woithe17e7aec2006-02-28 11:35:18 +01003394/* On Fujitsu S702x laptops capture only makes sense from Mic/LineIn jack,
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +02003395 * headphone jack and the internal CD lines since these are the only pins at
3396 * which audio can appear. For flexibility, also allow the option of
3397 * recording the mixer output on the second ADC (ADC0 doesn't have a
3398 * connection to the mixer output).
Jonathan Woithea9430dd2005-09-16 19:12:48 +02003399 */
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +02003400static struct hda_input_mux alc260_fujitsu_capture_sources[2] = {
3401 {
3402 .num_items = 3,
3403 .items = {
3404 { "Mic/Line", 0x0 },
3405 { "CD", 0x4 },
3406 { "Headphone", 0x2 },
3407 },
Jonathan Woithea9430dd2005-09-16 19:12:48 +02003408 },
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +02003409 {
3410 .num_items = 4,
3411 .items = {
3412 { "Mic/Line", 0x0 },
3413 { "CD", 0x4 },
3414 { "Headphone", 0x2 },
3415 { "Mixer", 0x5 },
3416 },
3417 },
3418
Jonathan Woithea9430dd2005-09-16 19:12:48 +02003419};
3420
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +02003421/* Acer TravelMate(/Extensa/Aspire) notebooks have similar configuration to
3422 * the Fujitsu S702x, but jacks are marked differently.
Jonathan Woithe0bfc90e2006-02-28 11:45:11 +01003423 */
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +02003424static struct hda_input_mux alc260_acer_capture_sources[2] = {
3425 {
3426 .num_items = 4,
3427 .items = {
3428 { "Mic", 0x0 },
3429 { "Line", 0x2 },
3430 { "CD", 0x4 },
3431 { "Headphone", 0x5 },
3432 },
3433 },
3434 {
3435 .num_items = 5,
3436 .items = {
3437 { "Mic", 0x0 },
3438 { "Line", 0x2 },
3439 { "CD", 0x4 },
3440 { "Headphone", 0x6 },
3441 { "Mixer", 0x5 },
3442 },
Jonathan Woithe0bfc90e2006-02-28 11:45:11 +01003443 },
3444};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445/*
3446 * This is just place-holder, so there's something for alc_build_pcms to look
3447 * at when it calculates the maximum number of channels. ALC260 has no mixer
3448 * element which allows changing the channel mode, so the verb list is
3449 * never used.
3450 */
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01003451static struct hda_channel_mode alc260_modes[1] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452 { 2, NULL },
3453};
3454
Kailang Yangdf694da2005-12-05 19:42:22 +01003455
3456/* Mixer combinations
3457 *
3458 * basic: base_output + input + pc_beep + capture
3459 * HP: base_output + input + capture_alt
3460 * HP_3013: hp_3013 + input + capture
3461 * fujitsu: fujitsu + capture
Jonathan Woithe0bfc90e2006-02-28 11:45:11 +01003462 * acer: acer + capture
Kailang Yangdf694da2005-12-05 19:42:22 +01003463 */
3464
3465static struct snd_kcontrol_new alc260_base_output_mixer[] = {
Takashi Iwai05acb862005-06-10 19:50:25 +02003466 HDA_CODEC_VOLUME("Front Playback Volume", 0x08, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +01003467 HDA_BIND_MUTE("Front Playback Switch", 0x08, 2, HDA_INPUT),
Kailang Yangdf694da2005-12-05 19:42:22 +01003468 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x09, 0x0, HDA_OUTPUT),
3469 HDA_BIND_MUTE("Headphone Playback Switch", 0x09, 2, HDA_INPUT),
3470 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
3471 HDA_BIND_MUTE_MONO("Mono Playback Switch", 0x0a, 1, 2, HDA_INPUT),
3472 { } /* end */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02003473};
Kailang Yangdf694da2005-12-05 19:42:22 +01003474
3475static struct snd_kcontrol_new alc260_input_mixer[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
3477 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
3478 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
3479 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
3480 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
3481 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
3482 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x07, 0x01, HDA_INPUT),
3483 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x07, 0x01, HDA_INPUT),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484 { } /* end */
3485};
3486
Kailang Yangdf694da2005-12-05 19:42:22 +01003487static struct snd_kcontrol_new alc260_pc_beep_mixer[] = {
3488 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x07, 0x05, HDA_INPUT),
3489 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x07, 0x05, HDA_INPUT),
3490 { } /* end */
3491};
3492
3493static struct snd_kcontrol_new alc260_hp_3013_mixer[] = {
3494 HDA_CODEC_VOLUME("Front Playback Volume", 0x09, 0x0, HDA_OUTPUT),
3495 HDA_CODEC_MUTE("Front Playback Switch", 0x10, 0x0, HDA_OUTPUT),
3496 HDA_CODEC_VOLUME("Aux-In Playback Volume", 0x07, 0x06, HDA_INPUT),
3497 HDA_CODEC_MUTE("Aux-In Playback Switch", 0x07, 0x06, HDA_INPUT),
3498 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3499 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
3500 HDA_CODEC_VOLUME_MONO("iSpeaker Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
3501 HDA_CODEC_MUTE_MONO("iSpeaker Playback Switch", 0x11, 1, 0x0, HDA_OUTPUT),
Takashi Iwai16ded522005-06-10 19:58:24 +02003502 { } /* end */
3503};
3504
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +02003505/* Fujitsu S702x series laptops. ALC260 pin usage: Mic/Line jack = 0x12,
3506 * HP jack = 0x14, CD audio = 0x16, internal speaker = 0x10.
3507 */
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01003508static struct snd_kcontrol_new alc260_fujitsu_mixer[] = {
Jonathan Woithea9430dd2005-09-16 19:12:48 +02003509 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x08, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +01003510 HDA_BIND_MUTE("Headphone Playback Switch", 0x08, 2, HDA_INPUT),
Jonathan Woithe4c5186e2006-02-09 11:53:48 +01003511 ALC_PIN_MODE("Headphone Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
Jonathan Woithea9430dd2005-09-16 19:12:48 +02003512 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
3513 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
3514 HDA_CODEC_VOLUME("Mic/Line Playback Volume", 0x07, 0x0, HDA_INPUT),
3515 HDA_CODEC_MUTE("Mic/Line Playback Switch", 0x07, 0x0, HDA_INPUT),
Jonathan Woithe4c5186e2006-02-09 11:53:48 +01003516 ALC_PIN_MODE("Mic/Line Jack Mode", 0x12, ALC_PIN_DIR_IN),
Jonathan Woithea9430dd2005-09-16 19:12:48 +02003517 HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
3518 HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
3519 HDA_CODEC_VOLUME("Internal Speaker Playback Volume", 0x09, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +01003520 HDA_BIND_MUTE("Internal Speaker Playback Switch", 0x09, 2, HDA_INPUT),
Kailang Yangdf694da2005-12-05 19:42:22 +01003521 { } /* end */
3522};
3523
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +02003524/* Mixer for Acer TravelMate(/Extensa/Aspire) notebooks. Note that current
3525 * versions of the ALC260 don't act on requests to enable mic bias from NID
3526 * 0x0f (used to drive the headphone jack in these laptops). The ALC260
3527 * datasheet doesn't mention this restriction. At this stage it's not clear
3528 * whether this behaviour is intentional or is a hardware bug in chip
3529 * revisions available in early 2006. Therefore for now allow the
3530 * "Headphone Jack Mode" control to span all choices, but if it turns out
3531 * that the lack of mic bias for this NID is intentional we could change the
3532 * mode from ALC_PIN_DIR_INOUT to ALC_PIN_DIR_INOUT_NOMICBIAS.
3533 *
3534 * In addition, Acer TravelMate(/Extensa/Aspire) notebooks in early 2006
3535 * don't appear to make the mic bias available from the "line" jack, even
3536 * though the NID used for this jack (0x14) can supply it. The theory is
3537 * that perhaps Acer have included blocking capacitors between the ALC260
3538 * and the output jack. If this turns out to be the case for all such
3539 * models the "Line Jack Mode" mode could be changed from ALC_PIN_DIR_INOUT
3540 * to ALC_PIN_DIR_INOUT_NOMICBIAS.
Jonathan Woithebd869482006-11-28 11:35:52 +01003541 *
3542 * The C20x Tablet series have a mono internal speaker which is controlled
3543 * via the chip's Mono sum widget and pin complex, so include the necessary
3544 * controls for such models. On models without a "mono speaker" the control
3545 * won't do anything.
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +02003546 */
Jonathan Woithe0bfc90e2006-02-28 11:45:11 +01003547static struct snd_kcontrol_new alc260_acer_mixer[] = {
3548 HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3549 HDA_BIND_MUTE("Master Playback Switch", 0x08, 2, HDA_INPUT),
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +02003550 ALC_PIN_MODE("Headphone Jack Mode", 0x0f, ALC_PIN_DIR_INOUT),
Jonathan Woithebd869482006-11-28 11:35:52 +01003551 HDA_CODEC_VOLUME_MONO("Mono Speaker Playback Volume", 0x0a, 1, 0x0,
3552 HDA_OUTPUT),
3553 HDA_BIND_MUTE_MONO("Mono Speaker Playback Switch", 0x0a, 1, 2,
3554 HDA_INPUT),
Jonathan Woithe0bfc90e2006-02-28 11:45:11 +01003555 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
3556 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
3557 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
3558 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
3559 ALC_PIN_MODE("Mic Jack Mode", 0x12, ALC_PIN_DIR_IN),
3560 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
3561 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
3562 ALC_PIN_MODE("Line Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
3563 HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
3564 HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
3565 { } /* end */
3566};
3567
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003568/* Packard bell V7900 ALC260 pin usage: HP = 0x0f, Mic jack = 0x12,
3569 * Line In jack = 0x14, CD audio = 0x16, pc beep = 0x17.
3570 */
3571static struct snd_kcontrol_new alc260_will_mixer[] = {
3572 HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3573 HDA_BIND_MUTE("Master Playback Switch", 0x08, 0x2, HDA_INPUT),
3574 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
3575 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
3576 ALC_PIN_MODE("Mic Jack Mode", 0x12, ALC_PIN_DIR_IN),
3577 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
3578 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
3579 ALC_PIN_MODE("Line Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
3580 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
3581 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
3582 HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
3583 HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
3584 { } /* end */
3585};
3586
3587/* Replacer 672V ALC260 pin usage: Mic jack = 0x12,
3588 * Line In jack = 0x14, ATAPI Mic = 0x13, speaker = 0x0f.
3589 */
3590static struct snd_kcontrol_new alc260_replacer_672v_mixer[] = {
3591 HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3592 HDA_BIND_MUTE("Master Playback Switch", 0x08, 0x2, HDA_INPUT),
3593 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
3594 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
3595 ALC_PIN_MODE("Mic Jack Mode", 0x12, ALC_PIN_DIR_IN),
3596 HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x07, 0x1, HDA_INPUT),
3597 HDA_CODEC_MUTE("ATATI Mic Playback Switch", 0x07, 0x1, HDA_INPUT),
3598 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
3599 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
3600 ALC_PIN_MODE("Line Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
3601 { } /* end */
3602};
3603
Kailang Yangdf694da2005-12-05 19:42:22 +01003604/* capture mixer elements */
3605static struct snd_kcontrol_new alc260_capture_mixer[] = {
Jonathan Woithea9430dd2005-09-16 19:12:48 +02003606 HDA_CODEC_VOLUME("Capture Volume", 0x04, 0x0, HDA_INPUT),
3607 HDA_CODEC_MUTE("Capture Switch", 0x04, 0x0, HDA_INPUT),
Kailang Yangdf694da2005-12-05 19:42:22 +01003608 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x05, 0x0, HDA_INPUT),
3609 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x05, 0x0, HDA_INPUT),
Jonathan Woithea9430dd2005-09-16 19:12:48 +02003610 {
3611 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Kailang Yangdf694da2005-12-05 19:42:22 +01003612 /* The multiple "Capture Source" controls confuse alsamixer
3613 * So call somewhat different..
3614 * FIXME: the controls appear in the "playback" view!
3615 */
3616 /* .name = "Capture Source", */
3617 .name = "Input Source",
3618 .count = 2,
Jonathan Woithea9430dd2005-09-16 19:12:48 +02003619 .info = alc_mux_enum_info,
3620 .get = alc_mux_enum_get,
3621 .put = alc_mux_enum_put,
3622 },
3623 { } /* end */
3624};
3625
Kailang Yangdf694da2005-12-05 19:42:22 +01003626static struct snd_kcontrol_new alc260_capture_alt_mixer[] = {
3627 HDA_CODEC_VOLUME("Capture Volume", 0x05, 0x0, HDA_INPUT),
3628 HDA_CODEC_MUTE("Capture Switch", 0x05, 0x0, HDA_INPUT),
3629 {
3630 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3631 /* The multiple "Capture Source" controls confuse alsamixer
3632 * So call somewhat different..
3633 * FIXME: the controls appear in the "playback" view!
3634 */
3635 /* .name = "Capture Source", */
3636 .name = "Input Source",
3637 .count = 1,
3638 .info = alc_mux_enum_info,
3639 .get = alc_mux_enum_get,
3640 .put = alc_mux_enum_put,
3641 },
3642 { } /* end */
3643};
3644
3645/*
3646 * initialization verbs
3647 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648static struct hda_verb alc260_init_verbs[] = {
3649 /* Line In pin widget for input */
Takashi Iwai05acb862005-06-10 19:50:25 +02003650 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
Linus Torvalds1da177e2005-04-16 15:20:36 -07003651 /* CD pin widget for input */
Takashi Iwai05acb862005-06-10 19:50:25 +02003652 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653 /* Mic1 (rear panel) pin widget for input and vref at 80% */
Takashi Iwai16ded522005-06-10 19:58:24 +02003654 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655 /* Mic2 (front panel) pin widget for input and vref at 80% */
Takashi Iwai16ded522005-06-10 19:58:24 +02003656 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657 /* LINE-2 is used for line-out in rear */
Takashi Iwai05acb862005-06-10 19:50:25 +02003658 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659 /* select line-out */
Jonathan Woithefd56f2d2006-01-24 10:35:46 +01003660 {0x0e, AC_VERB_SET_CONNECT_SEL, 0x00},
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661 /* LINE-OUT pin */
Takashi Iwai05acb862005-06-10 19:50:25 +02003662 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663 /* enable HP */
Takashi Iwai05acb862005-06-10 19:50:25 +02003664 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665 /* enable Mono */
Takashi Iwai05acb862005-06-10 19:50:25 +02003666 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3667 /* mute capture amp left and right */
Takashi Iwai16ded522005-06-10 19:58:24 +02003668 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669 /* set connection select to line in (default select for this ADC) */
3670 {0x04, AC_VERB_SET_CONNECT_SEL, 0x02},
Takashi Iwai16ded522005-06-10 19:58:24 +02003671 /* mute capture amp left and right */
3672 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3673 /* set connection select to line in (default select for this ADC) */
3674 {0x05, AC_VERB_SET_CONNECT_SEL, 0x02},
Takashi Iwai05acb862005-06-10 19:50:25 +02003675 /* set vol=0 Line-Out mixer amp left and right */
3676 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3677 /* unmute pin widget amp left and right (no gain on this amp) */
3678 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3679 /* set vol=0 HP mixer amp left and right */
3680 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3681 /* unmute pin widget amp left and right (no gain on this amp) */
3682 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3683 /* set vol=0 Mono mixer amp left and right */
3684 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3685 /* unmute pin widget amp left and right (no gain on this amp) */
3686 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3687 /* unmute LINE-2 out pin */
3688 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02003689 /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 &
3690 * Line In 2 = 0x03
3691 */
Takashi Iwai05acb862005-06-10 19:50:25 +02003692 /* mute CD */
Takashi Iwai16ded522005-06-10 19:58:24 +02003693 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
Takashi Iwai05acb862005-06-10 19:50:25 +02003694 /* mute Line In */
Takashi Iwai16ded522005-06-10 19:58:24 +02003695 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
Takashi Iwai05acb862005-06-10 19:50:25 +02003696 /* mute Mic */
Takashi Iwai16ded522005-06-10 19:58:24 +02003697 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698 /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
Takashi Iwai05acb862005-06-10 19:50:25 +02003699 /* mute Front out path */
3700 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3701 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3702 /* mute Headphone out path */
3703 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3704 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3705 /* mute Mono out path */
3706 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3707 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708 { }
3709};
3710
Takashi Iwai474167d2006-05-17 17:17:43 +02003711#if 0 /* should be identical with alc260_init_verbs? */
Kailang Yangdf694da2005-12-05 19:42:22 +01003712static struct hda_verb alc260_hp_init_verbs[] = {
3713 /* Headphone and output */
3714 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
3715 /* mono output */
3716 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3717 /* Mic1 (rear panel) pin widget for input and vref at 80% */
3718 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
3719 /* Mic2 (front panel) pin widget for input and vref at 80% */
3720 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
3721 /* Line In pin widget for input */
3722 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3723 /* Line-2 pin widget for output */
3724 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3725 /* CD pin widget for input */
3726 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3727 /* unmute amp left and right */
3728 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000},
3729 /* set connection select to line in (default select for this ADC) */
3730 {0x04, AC_VERB_SET_CONNECT_SEL, 0x02},
3731 /* unmute Line-Out mixer amp left and right (volume = 0) */
3732 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
3733 /* mute pin widget amp left and right (no gain on this amp) */
3734 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
3735 /* unmute HP mixer amp left and right (volume = 0) */
3736 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
3737 /* mute pin widget amp left and right (no gain on this amp) */
3738 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02003739 /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 &
3740 * Line In 2 = 0x03
3741 */
Kailang Yangdf694da2005-12-05 19:42:22 +01003742 /* unmute CD */
3743 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
3744 /* unmute Line In */
3745 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
3746 /* unmute Mic */
3747 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3748 /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
3749 /* Unmute Front out path */
3750 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3751 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3752 /* Unmute Headphone out path */
3753 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3754 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3755 /* Unmute Mono out path */
3756 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3757 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3758 { }
3759};
Takashi Iwai474167d2006-05-17 17:17:43 +02003760#endif
Kailang Yangdf694da2005-12-05 19:42:22 +01003761
3762static struct hda_verb alc260_hp_3013_init_verbs[] = {
3763 /* Line out and output */
3764 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3765 /* mono output */
3766 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3767 /* Mic1 (rear panel) pin widget for input and vref at 80% */
3768 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
3769 /* Mic2 (front panel) pin widget for input and vref at 80% */
3770 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
3771 /* Line In pin widget for input */
3772 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3773 /* Headphone pin widget for output */
3774 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
3775 /* CD pin widget for input */
3776 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3777 /* unmute amp left and right */
3778 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000},
3779 /* set connection select to line in (default select for this ADC) */
3780 {0x04, AC_VERB_SET_CONNECT_SEL, 0x02},
3781 /* unmute Line-Out mixer amp left and right (volume = 0) */
3782 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
3783 /* mute pin widget amp left and right (no gain on this amp) */
3784 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
3785 /* unmute HP mixer amp left and right (volume = 0) */
3786 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
3787 /* mute pin widget amp left and right (no gain on this amp) */
3788 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02003789 /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 &
3790 * Line In 2 = 0x03
3791 */
Kailang Yangdf694da2005-12-05 19:42:22 +01003792 /* unmute CD */
3793 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
3794 /* unmute Line In */
3795 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
3796 /* unmute Mic */
3797 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3798 /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
3799 /* Unmute Front out path */
3800 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3801 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3802 /* Unmute Headphone out path */
3803 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3804 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3805 /* Unmute Mono out path */
3806 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3807 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3808 { }
3809};
3810
Jonathan Woithea9430dd2005-09-16 19:12:48 +02003811/* Initialisation sequence for ALC260 as configured in Fujitsu S702x
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +02003812 * laptops. ALC260 pin usage: Mic/Line jack = 0x12, HP jack = 0x14, CD
3813 * audio = 0x16, internal speaker = 0x10.
Jonathan Woithea9430dd2005-09-16 19:12:48 +02003814 */
3815static struct hda_verb alc260_fujitsu_init_verbs[] = {
3816 /* Disable all GPIOs */
3817 {0x01, AC_VERB_SET_GPIO_MASK, 0},
3818 /* Internal speaker is connected to headphone pin */
3819 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
3820 /* Headphone/Line-out jack connects to Line1 pin; make it an output */
3821 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Jonathan Woithef7ace402006-02-28 11:46:14 +01003822 /* Mic/Line-in jack is connected to mic1 pin, so make it an input */
3823 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3824 /* Ensure all other unused pins are disabled and muted. */
3825 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3826 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
Jonathan Woithea9430dd2005-09-16 19:12:48 +02003827 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
Jonathan Woithef7ace402006-02-28 11:46:14 +01003828 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
Jonathan Woithea9430dd2005-09-16 19:12:48 +02003829 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
Jonathan Woithef7ace402006-02-28 11:46:14 +01003830 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3831 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3832 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
Jonathan Woithea9430dd2005-09-16 19:12:48 +02003833
Jonathan Woithef7ace402006-02-28 11:46:14 +01003834 /* Disable digital (SPDIF) pins */
3835 {0x03, AC_VERB_SET_DIGI_CONVERT_1, 0},
3836 {0x06, AC_VERB_SET_DIGI_CONVERT_1, 0},
Jonathan Woithe4c5186e2006-02-09 11:53:48 +01003837
Jonathan Woithef7ace402006-02-28 11:46:14 +01003838 /* Ensure Line1 pin widget takes its input from the OUT1 sum bus
3839 * when acting as an output.
3840 */
3841 {0x0d, AC_VERB_SET_CONNECT_SEL, 0},
3842
3843 /* Start with output sum widgets muted and their output gains at min */
Takashi Iwai8b33a5a2006-02-09 11:57:01 +01003844 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3845 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3846 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3847 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3848 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3849 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3850 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3851 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3852 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
Jonathan Woithea9430dd2005-09-16 19:12:48 +02003853
Jonathan Woithef7ace402006-02-28 11:46:14 +01003854 /* Unmute HP pin widget amp left and right (no equiv mixer ctrl) */
3855 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3856 /* Unmute Line1 pin widget output buffer since it starts as an output.
3857 * If the pin mode is changed by the user the pin mode control will
3858 * take care of enabling the pin's input/output buffers as needed.
3859 * Therefore there's no need to enable the input buffer at this
3860 * stage.
Jonathan Woithecdcd9262006-02-28 11:36:42 +01003861 */
Jonathan Woithef7ace402006-02-28 11:46:14 +01003862 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Jonathan Woithecdcd9262006-02-28 11:36:42 +01003863 /* Unmute input buffer of pin widget used for Line-in (no equiv
3864 * mixer ctrl)
3865 */
Jonathan Woithef7ace402006-02-28 11:46:14 +01003866 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
Jonathan Woithea9430dd2005-09-16 19:12:48 +02003867
Jonathan Woithef7ace402006-02-28 11:46:14 +01003868 /* Mute capture amp left and right */
3869 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3870 /* Set ADC connection select to match default mixer setting - line
3871 * in (on mic1 pin)
3872 */
3873 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
Jonathan Woithea9430dd2005-09-16 19:12:48 +02003874
Jonathan Woithef7ace402006-02-28 11:46:14 +01003875 /* Do the same for the second ADC: mute capture input amp and
3876 * set ADC connection to line in (on mic1 pin)
3877 */
3878 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3879 {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
Jonathan Woithe4c5186e2006-02-09 11:53:48 +01003880
Jonathan Woithef7ace402006-02-28 11:46:14 +01003881 /* Mute all inputs to mixer widget (even unconnected ones) */
3882 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
3883 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
3884 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
3885 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
3886 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
3887 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
3888 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
3889 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
Takashi Iwai4a471b72005-12-07 13:56:29 +01003890
3891 { }
Jonathan Woithea9430dd2005-09-16 19:12:48 +02003892};
3893
Jonathan Woithe0bfc90e2006-02-28 11:45:11 +01003894/* Initialisation sequence for ALC260 as configured in Acer TravelMate and
3895 * similar laptops (adapted from Fujitsu init verbs).
3896 */
3897static struct hda_verb alc260_acer_init_verbs[] = {
3898 /* On TravelMate laptops, GPIO 0 enables the internal speaker and
3899 * the headphone jack. Turn this on and rely on the standard mute
3900 * methods whenever the user wants to turn these outputs off.
3901 */
3902 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
3903 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
3904 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
3905 /* Internal speaker/Headphone jack is connected to Line-out pin */
3906 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
3907 /* Internal microphone/Mic jack is connected to Mic1 pin */
3908 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50},
3909 /* Line In jack is connected to Line1 pin */
3910 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
Jonathan Woithebd869482006-11-28 11:35:52 +01003911 /* Some Acers (eg: C20x Tablets) use Mono pin for internal speaker */
3912 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
Jonathan Woithe0bfc90e2006-02-28 11:45:11 +01003913 /* Ensure all other unused pins are disabled and muted. */
3914 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3915 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
Jonathan Woithe0bfc90e2006-02-28 11:45:11 +01003916 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3917 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3918 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3919 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3920 /* Disable digital (SPDIF) pins */
3921 {0x03, AC_VERB_SET_DIGI_CONVERT_1, 0},
3922 {0x06, AC_VERB_SET_DIGI_CONVERT_1, 0},
3923
3924 /* Ensure Mic1 and Line1 pin widgets take input from the OUT1 sum
3925 * bus when acting as outputs.
3926 */
3927 {0x0b, AC_VERB_SET_CONNECT_SEL, 0},
3928 {0x0d, AC_VERB_SET_CONNECT_SEL, 0},
3929
3930 /* Start with output sum widgets muted and their output gains at min */
3931 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3932 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3933 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3934 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3935 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3936 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3937 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3938 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3939 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3940
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02003941 /* Unmute Line-out pin widget amp left and right
3942 * (no equiv mixer ctrl)
3943 */
Jonathan Woithe0bfc90e2006-02-28 11:45:11 +01003944 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Jonathan Woithebd869482006-11-28 11:35:52 +01003945 /* Unmute mono pin widget amp output (no equiv mixer ctrl) */
3946 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Jonathan Woithe0bfc90e2006-02-28 11:45:11 +01003947 /* Unmute Mic1 and Line1 pin widget input buffers since they start as
3948 * inputs. If the pin mode is changed by the user the pin mode control
3949 * will take care of enabling the pin's input/output buffers as needed.
3950 * Therefore there's no need to enable the input buffer at this
3951 * stage.
3952 */
3953 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3954 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3955
3956 /* Mute capture amp left and right */
3957 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3958 /* Set ADC connection select to match default mixer setting - mic
3959 * (on mic1 pin)
3960 */
3961 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
3962
3963 /* Do similar with the second ADC: mute capture input amp and
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +02003964 * set ADC connection to mic to match ALSA's default state.
Jonathan Woithe0bfc90e2006-02-28 11:45:11 +01003965 */
3966 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +02003967 {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
Jonathan Woithe0bfc90e2006-02-28 11:45:11 +01003968
3969 /* Mute all inputs to mixer widget (even unconnected ones) */
3970 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
3971 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
3972 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
3973 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
3974 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
3975 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
3976 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
3977 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
3978
3979 { }
3980};
3981
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003982static struct hda_verb alc260_will_verbs[] = {
3983 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
3984 {0x0b, AC_VERB_SET_CONNECT_SEL, 0x00},
3985 {0x0d, AC_VERB_SET_CONNECT_SEL, 0x00},
3986 {0x0f, AC_VERB_SET_EAPD_BTLENABLE, 0x02},
3987 {0x1a, AC_VERB_SET_COEF_INDEX, 0x07},
3988 {0x1a, AC_VERB_SET_PROC_COEF, 0x3040},
3989 {}
3990};
3991
3992static struct hda_verb alc260_replacer_672v_verbs[] = {
3993 {0x0f, AC_VERB_SET_EAPD_BTLENABLE, 0x02},
3994 {0x1a, AC_VERB_SET_COEF_INDEX, 0x07},
3995 {0x1a, AC_VERB_SET_PROC_COEF, 0x3050},
3996
3997 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
3998 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
3999 {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
4000
4001 {0x0f, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
4002 {}
4003};
4004
4005/* toggle speaker-output according to the hp-jack state */
4006static void alc260_replacer_672v_automute(struct hda_codec *codec)
4007{
4008 unsigned int present;
4009
4010 /* speaker --> GPIO Data 0, hp or spdif --> GPIO data 1 */
4011 present = snd_hda_codec_read(codec, 0x0f, 0,
4012 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
4013 if (present) {
4014 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA, 1);
4015 snd_hda_codec_write(codec, 0x0f, 0,
4016 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP);
4017 } else {
4018 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA, 0);
4019 snd_hda_codec_write(codec, 0x0f, 0,
4020 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
4021 }
4022}
4023
4024static void alc260_replacer_672v_unsol_event(struct hda_codec *codec,
4025 unsigned int res)
4026{
4027 if ((res >> 26) == ALC880_HP_EVENT)
4028 alc260_replacer_672v_automute(codec);
4029}
4030
Jonathan Woithe7cf51e42006-02-09 12:01:26 +01004031/* Test configuration for debugging, modelled after the ALC880 test
4032 * configuration.
4033 */
4034#ifdef CONFIG_SND_DEBUG
4035static hda_nid_t alc260_test_dac_nids[1] = {
4036 0x02,
4037};
4038static hda_nid_t alc260_test_adc_nids[2] = {
4039 0x04, 0x05,
4040};
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +02004041/* For testing the ALC260, each input MUX needs its own definition since
4042 * the signal assignments are different. This assumes that the first ADC
4043 * is NID 0x04.
Jonathan Woithe17e7aec2006-02-28 11:35:18 +01004044 */
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +02004045static struct hda_input_mux alc260_test_capture_sources[2] = {
4046 {
4047 .num_items = 7,
4048 .items = {
4049 { "MIC1 pin", 0x0 },
4050 { "MIC2 pin", 0x1 },
4051 { "LINE1 pin", 0x2 },
4052 { "LINE2 pin", 0x3 },
4053 { "CD pin", 0x4 },
4054 { "LINE-OUT pin", 0x5 },
4055 { "HP-OUT pin", 0x6 },
4056 },
4057 },
4058 {
4059 .num_items = 8,
4060 .items = {
4061 { "MIC1 pin", 0x0 },
4062 { "MIC2 pin", 0x1 },
4063 { "LINE1 pin", 0x2 },
4064 { "LINE2 pin", 0x3 },
4065 { "CD pin", 0x4 },
4066 { "Mixer", 0x5 },
4067 { "LINE-OUT pin", 0x6 },
4068 { "HP-OUT pin", 0x7 },
4069 },
Jonathan Woithe7cf51e42006-02-09 12:01:26 +01004070 },
4071};
4072static struct snd_kcontrol_new alc260_test_mixer[] = {
4073 /* Output driver widgets */
4074 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
4075 HDA_BIND_MUTE_MONO("Mono Playback Switch", 0x0a, 1, 2, HDA_INPUT),
4076 HDA_CODEC_VOLUME("LOUT2 Playback Volume", 0x09, 0x0, HDA_OUTPUT),
4077 HDA_BIND_MUTE("LOUT2 Playback Switch", 0x09, 2, HDA_INPUT),
4078 HDA_CODEC_VOLUME("LOUT1 Playback Volume", 0x08, 0x0, HDA_OUTPUT),
4079 HDA_BIND_MUTE("LOUT1 Playback Switch", 0x08, 2, HDA_INPUT),
4080
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +02004081 /* Modes for retasking pin widgets
4082 * Note: the ALC260 doesn't seem to act on requests to enable mic
4083 * bias from NIDs 0x0f and 0x10. The ALC260 datasheet doesn't
4084 * mention this restriction. At this stage it's not clear whether
4085 * this behaviour is intentional or is a hardware bug in chip
4086 * revisions available at least up until early 2006. Therefore for
4087 * now allow the "HP-OUT" and "LINE-OUT" Mode controls to span all
4088 * choices, but if it turns out that the lack of mic bias for these
4089 * NIDs is intentional we could change their modes from
4090 * ALC_PIN_DIR_INOUT to ALC_PIN_DIR_INOUT_NOMICBIAS.
4091 */
Jonathan Woithe7cf51e42006-02-09 12:01:26 +01004092 ALC_PIN_MODE("HP-OUT pin mode", 0x10, ALC_PIN_DIR_INOUT),
4093 ALC_PIN_MODE("LINE-OUT pin mode", 0x0f, ALC_PIN_DIR_INOUT),
4094 ALC_PIN_MODE("LINE2 pin mode", 0x15, ALC_PIN_DIR_INOUT),
4095 ALC_PIN_MODE("LINE1 pin mode", 0x14, ALC_PIN_DIR_INOUT),
4096 ALC_PIN_MODE("MIC2 pin mode", 0x13, ALC_PIN_DIR_INOUT),
4097 ALC_PIN_MODE("MIC1 pin mode", 0x12, ALC_PIN_DIR_INOUT),
4098
4099 /* Loopback mixer controls */
4100 HDA_CODEC_VOLUME("MIC1 Playback Volume", 0x07, 0x00, HDA_INPUT),
4101 HDA_CODEC_MUTE("MIC1 Playback Switch", 0x07, 0x00, HDA_INPUT),
4102 HDA_CODEC_VOLUME("MIC2 Playback Volume", 0x07, 0x01, HDA_INPUT),
4103 HDA_CODEC_MUTE("MIC2 Playback Switch", 0x07, 0x01, HDA_INPUT),
4104 HDA_CODEC_VOLUME("LINE1 Playback Volume", 0x07, 0x02, HDA_INPUT),
4105 HDA_CODEC_MUTE("LINE1 Playback Switch", 0x07, 0x02, HDA_INPUT),
4106 HDA_CODEC_VOLUME("LINE2 Playback Volume", 0x07, 0x03, HDA_INPUT),
4107 HDA_CODEC_MUTE("LINE2 Playback Switch", 0x07, 0x03, HDA_INPUT),
4108 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
4109 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
4110 HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
4111 HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
4112 HDA_CODEC_VOLUME("LINE-OUT loopback Playback Volume", 0x07, 0x06, HDA_INPUT),
4113 HDA_CODEC_MUTE("LINE-OUT loopback Playback Switch", 0x07, 0x06, HDA_INPUT),
4114 HDA_CODEC_VOLUME("HP-OUT loopback Playback Volume", 0x07, 0x7, HDA_INPUT),
4115 HDA_CODEC_MUTE("HP-OUT loopback Playback Switch", 0x07, 0x7, HDA_INPUT),
Jonathan Woithe5c8f8582006-02-28 11:43:27 +01004116
4117 /* Controls for GPIO pins, assuming they are configured as outputs */
4118 ALC_GPIO_DATA_SWITCH("GPIO pin 0", 0x01, 0x01),
4119 ALC_GPIO_DATA_SWITCH("GPIO pin 1", 0x01, 0x02),
4120 ALC_GPIO_DATA_SWITCH("GPIO pin 2", 0x01, 0x04),
4121 ALC_GPIO_DATA_SWITCH("GPIO pin 3", 0x01, 0x08),
4122
Jonathan Woithe92621f12006-02-28 11:47:47 +01004123 /* Switches to allow the digital IO pins to be enabled. The datasheet
4124 * is ambigious as to which NID is which; testing on laptops which
4125 * make this output available should provide clarification.
4126 */
4127 ALC_SPDIF_CTRL_SWITCH("SPDIF Playback Switch", 0x03, 0x01),
4128 ALC_SPDIF_CTRL_SWITCH("SPDIF Capture Switch", 0x06, 0x01),
4129
Jonathan Woithe7cf51e42006-02-09 12:01:26 +01004130 { } /* end */
4131};
4132static struct hda_verb alc260_test_init_verbs[] = {
Jonathan Woithe5c8f8582006-02-28 11:43:27 +01004133 /* Enable all GPIOs as outputs with an initial value of 0 */
4134 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x0f},
4135 {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
4136 {0x01, AC_VERB_SET_GPIO_MASK, 0x0f},
4137
Jonathan Woithe7cf51e42006-02-09 12:01:26 +01004138 /* Enable retasking pins as output, initially without power amp */
4139 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4140 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4141 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4142 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4143 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4144 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4145
Jonathan Woithe92621f12006-02-28 11:47:47 +01004146 /* Disable digital (SPDIF) pins initially, but users can enable
4147 * them via a mixer switch. In the case of SPDIF-out, this initverb
4148 * payload also sets the generation to 0, output to be in "consumer"
4149 * PCM format, copyright asserted, no pre-emphasis and no validity
4150 * control.
4151 */
Jonathan Woithe7cf51e42006-02-09 12:01:26 +01004152 {0x03, AC_VERB_SET_DIGI_CONVERT_1, 0},
4153 {0x06, AC_VERB_SET_DIGI_CONVERT_1, 0},
4154
Jonathan Woithef7ace402006-02-28 11:46:14 +01004155 /* Ensure mic1, mic2, line1 and line2 pin widgets take input from the
Jonathan Woithe7cf51e42006-02-09 12:01:26 +01004156 * OUT1 sum bus when acting as an output.
4157 */
4158 {0x0b, AC_VERB_SET_CONNECT_SEL, 0},
4159 {0x0c, AC_VERB_SET_CONNECT_SEL, 0},
4160 {0x0d, AC_VERB_SET_CONNECT_SEL, 0},
4161 {0x0e, AC_VERB_SET_CONNECT_SEL, 0},
4162
4163 /* Start with output sum widgets muted and their output gains at min */
4164 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4165 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4166 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4167 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4168 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4169 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4170 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4171 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4172 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4173
Jonathan Woithecdcd9262006-02-28 11:36:42 +01004174 /* Unmute retasking pin widget output buffers since the default
4175 * state appears to be output. As the pin mode is changed by the
4176 * user the pin mode control will take care of enabling the pin's
4177 * input/output buffers as needed.
4178 */
Jonathan Woithe7cf51e42006-02-09 12:01:26 +01004179 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4180 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4181 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4182 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4183 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4184 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4185 /* Also unmute the mono-out pin widget */
4186 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4187
Jonathan Woithe7cf51e42006-02-09 12:01:26 +01004188 /* Mute capture amp left and right */
4189 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
Jonathan Woithef7ace402006-02-28 11:46:14 +01004190 /* Set ADC connection select to match default mixer setting (mic1
4191 * pin)
Jonathan Woithe7cf51e42006-02-09 12:01:26 +01004192 */
4193 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
4194
4195 /* Do the same for the second ADC: mute capture input amp and
Jonathan Woithef7ace402006-02-28 11:46:14 +01004196 * set ADC connection to mic1 pin
Jonathan Woithe7cf51e42006-02-09 12:01:26 +01004197 */
4198 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4199 {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
4200
4201 /* Mute all inputs to mixer widget (even unconnected ones) */
4202 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
4203 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
4204 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
4205 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
4206 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
4207 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
4208 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
4209 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
4210
4211 { }
4212};
4213#endif
4214
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215static struct hda_pcm_stream alc260_pcm_analog_playback = {
4216 .substreams = 1,
4217 .channels_min = 2,
4218 .channels_max = 2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004219};
4220
4221static struct hda_pcm_stream alc260_pcm_analog_capture = {
4222 .substreams = 1,
4223 .channels_min = 2,
4224 .channels_max = 2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225};
4226
Takashi Iwaia3bcba32005-12-06 19:05:29 +01004227#define alc260_pcm_digital_playback alc880_pcm_digital_playback
4228#define alc260_pcm_digital_capture alc880_pcm_digital_capture
4229
Kailang Yangdf694da2005-12-05 19:42:22 +01004230/*
4231 * for BIOS auto-configuration
4232 */
4233
4234static int alc260_add_playback_controls(struct alc_spec *spec, hda_nid_t nid,
4235 const char *pfx)
4236{
4237 hda_nid_t nid_vol;
4238 unsigned long vol_val, sw_val;
4239 char name[32];
4240 int err;
4241
4242 if (nid >= 0x0f && nid < 0x11) {
4243 nid_vol = nid - 0x7;
4244 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, HDA_OUTPUT);
4245 sw_val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
4246 } else if (nid == 0x11) {
4247 nid_vol = nid - 0x7;
4248 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 2, 0, HDA_OUTPUT);
4249 sw_val = HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_OUTPUT);
4250 } else if (nid >= 0x12 && nid <= 0x15) {
4251 nid_vol = 0x08;
4252 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, HDA_OUTPUT);
4253 sw_val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
4254 } else
4255 return 0; /* N/A */
4256
4257 snprintf(name, sizeof(name), "%s Playback Volume", pfx);
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02004258 err = add_control(spec, ALC_CTL_WIDGET_VOL, name, vol_val);
4259 if (err < 0)
Kailang Yangdf694da2005-12-05 19:42:22 +01004260 return err;
4261 snprintf(name, sizeof(name), "%s Playback Switch", pfx);
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02004262 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name, sw_val);
4263 if (err < 0)
Kailang Yangdf694da2005-12-05 19:42:22 +01004264 return err;
4265 return 1;
4266}
4267
4268/* add playback controls from the parsed DAC table */
4269static int alc260_auto_create_multi_out_ctls(struct alc_spec *spec,
4270 const struct auto_pin_cfg *cfg)
4271{
4272 hda_nid_t nid;
4273 int err;
4274
4275 spec->multiout.num_dacs = 1;
4276 spec->multiout.dac_nids = spec->private_dac_nids;
4277 spec->multiout.dac_nids[0] = 0x02;
4278
4279 nid = cfg->line_out_pins[0];
4280 if (nid) {
4281 err = alc260_add_playback_controls(spec, nid, "Front");
4282 if (err < 0)
4283 return err;
4284 }
4285
Takashi Iwai82bc9552006-03-21 11:24:42 +01004286 nid = cfg->speaker_pins[0];
Kailang Yangdf694da2005-12-05 19:42:22 +01004287 if (nid) {
4288 err = alc260_add_playback_controls(spec, nid, "Speaker");
4289 if (err < 0)
4290 return err;
4291 }
4292
Takashi Iwaieb06ed82006-09-20 17:10:27 +02004293 nid = cfg->hp_pins[0];
Kailang Yangdf694da2005-12-05 19:42:22 +01004294 if (nid) {
4295 err = alc260_add_playback_controls(spec, nid, "Headphone");
4296 if (err < 0)
4297 return err;
4298 }
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02004299 return 0;
Kailang Yangdf694da2005-12-05 19:42:22 +01004300}
4301
4302/* create playback/capture controls for input pins */
4303static int alc260_auto_create_analog_input_ctls(struct alc_spec *spec,
4304 const struct auto_pin_cfg *cfg)
4305{
Kailang Yangdf694da2005-12-05 19:42:22 +01004306 struct hda_input_mux *imux = &spec->private_imux;
4307 int i, err, idx;
4308
4309 for (i = 0; i < AUTO_PIN_LAST; i++) {
4310 if (cfg->input_pins[i] >= 0x12) {
4311 idx = cfg->input_pins[i] - 0x12;
Takashi Iwai4a471b72005-12-07 13:56:29 +01004312 err = new_analog_input(spec, cfg->input_pins[i],
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02004313 auto_pin_cfg_labels[i], idx,
4314 0x07);
Kailang Yangdf694da2005-12-05 19:42:22 +01004315 if (err < 0)
4316 return err;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02004317 imux->items[imux->num_items].label =
4318 auto_pin_cfg_labels[i];
Kailang Yangdf694da2005-12-05 19:42:22 +01004319 imux->items[imux->num_items].index = idx;
4320 imux->num_items++;
4321 }
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02004322 if (cfg->input_pins[i] >= 0x0f && cfg->input_pins[i] <= 0x10){
Kailang Yangdf694da2005-12-05 19:42:22 +01004323 idx = cfg->input_pins[i] - 0x09;
Takashi Iwai4a471b72005-12-07 13:56:29 +01004324 err = new_analog_input(spec, cfg->input_pins[i],
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02004325 auto_pin_cfg_labels[i], idx,
4326 0x07);
Kailang Yangdf694da2005-12-05 19:42:22 +01004327 if (err < 0)
4328 return err;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02004329 imux->items[imux->num_items].label =
4330 auto_pin_cfg_labels[i];
Kailang Yangdf694da2005-12-05 19:42:22 +01004331 imux->items[imux->num_items].index = idx;
4332 imux->num_items++;
4333 }
4334 }
4335 return 0;
4336}
4337
4338static void alc260_auto_set_output_and_unmute(struct hda_codec *codec,
4339 hda_nid_t nid, int pin_type,
4340 int sel_idx)
4341{
4342 /* set as output */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02004343 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
4344 pin_type);
4345 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
4346 AMP_OUT_UNMUTE);
Kailang Yangdf694da2005-12-05 19:42:22 +01004347 /* need the manual connection? */
4348 if (nid >= 0x12) {
4349 int idx = nid - 0x12;
4350 snd_hda_codec_write(codec, idx + 0x0b, 0,
4351 AC_VERB_SET_CONNECT_SEL, sel_idx);
Kailang Yangdf694da2005-12-05 19:42:22 +01004352 }
4353}
4354
4355static void alc260_auto_init_multi_out(struct hda_codec *codec)
4356{
4357 struct alc_spec *spec = codec->spec;
4358 hda_nid_t nid;
4359
Kailang Yangbc9f98a2007-04-12 13:06:07 +02004360 alc_subsystem_id(codec, 0x10, 0x15, 0x0f);
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02004361 nid = spec->autocfg.line_out_pins[0];
Takashi Iwaibaba8ee2007-04-23 17:17:48 +02004362 if (nid) {
4363 int pin_type = get_pin_type(spec->autocfg.line_out_type);
4364 alc260_auto_set_output_and_unmute(codec, nid, pin_type, 0);
4365 }
Kailang Yangdf694da2005-12-05 19:42:22 +01004366
Takashi Iwai82bc9552006-03-21 11:24:42 +01004367 nid = spec->autocfg.speaker_pins[0];
Kailang Yangdf694da2005-12-05 19:42:22 +01004368 if (nid)
4369 alc260_auto_set_output_and_unmute(codec, nid, PIN_OUT, 0);
4370
Takashi Iwaieb06ed82006-09-20 17:10:27 +02004371 nid = spec->autocfg.hp_pins[0];
Kailang Yangdf694da2005-12-05 19:42:22 +01004372 if (nid)
Takashi Iwaibaba8ee2007-04-23 17:17:48 +02004373 alc260_auto_set_output_and_unmute(codec, nid, PIN_HP, 0);
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02004374}
Kailang Yangdf694da2005-12-05 19:42:22 +01004375
4376#define ALC260_PIN_CD_NID 0x16
4377static void alc260_auto_init_analog_input(struct hda_codec *codec)
4378{
4379 struct alc_spec *spec = codec->spec;
4380 int i;
4381
4382 for (i = 0; i < AUTO_PIN_LAST; i++) {
4383 hda_nid_t nid = spec->autocfg.input_pins[i];
4384 if (nid >= 0x12) {
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02004385 snd_hda_codec_write(codec, nid, 0,
4386 AC_VERB_SET_PIN_WIDGET_CONTROL,
4387 i <= AUTO_PIN_FRONT_MIC ?
4388 PIN_VREF80 : PIN_IN);
Kailang Yangdf694da2005-12-05 19:42:22 +01004389 if (nid != ALC260_PIN_CD_NID)
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02004390 snd_hda_codec_write(codec, nid, 0,
4391 AC_VERB_SET_AMP_GAIN_MUTE,
Kailang Yangdf694da2005-12-05 19:42:22 +01004392 AMP_OUT_MUTE);
4393 }
4394 }
4395}
4396
4397/*
4398 * generic initialization of ADC, input mixers and output mixers
4399 */
4400static struct hda_verb alc260_volume_init_verbs[] = {
4401 /*
4402 * Unmute ADC0-1 and set the default input to mic-in
4403 */
4404 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
4405 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4406 {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
4407 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4408
4409 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
4410 * mixer widget
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02004411 * Note: PASD motherboards uses the Line In 2 as the input for
4412 * front panel mic (mic 2)
Kailang Yangdf694da2005-12-05 19:42:22 +01004413 */
4414 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
4415 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4416 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4417 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
4418 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
4419 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
4420
4421 /*
4422 * Set up output mixers (0x08 - 0x0a)
4423 */
4424 /* set vol=0 to output mixers */
4425 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4426 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4427 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4428 /* set up input amps for analog loopback */
4429 /* Amp Indices: DAC = 0, mixer = 1 */
4430 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4431 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4432 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4433 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4434 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4435 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4436
4437 { }
4438};
4439
4440static int alc260_parse_auto_config(struct hda_codec *codec)
4441{
4442 struct alc_spec *spec = codec->spec;
4443 unsigned int wcap;
4444 int err;
4445 static hda_nid_t alc260_ignore[] = { 0x17, 0 };
4446
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02004447 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
4448 alc260_ignore);
4449 if (err < 0)
Kailang Yangdf694da2005-12-05 19:42:22 +01004450 return err;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02004451 err = alc260_auto_create_multi_out_ctls(spec, &spec->autocfg);
4452 if (err < 0)
Takashi Iwai4a471b72005-12-07 13:56:29 +01004453 return err;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02004454 if (!spec->kctl_alloc)
Kailang Yangdf694da2005-12-05 19:42:22 +01004455 return 0; /* can't find valid BIOS pin config */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02004456 err = alc260_auto_create_analog_input_ctls(spec, &spec->autocfg);
4457 if (err < 0)
Kailang Yangdf694da2005-12-05 19:42:22 +01004458 return err;
4459
4460 spec->multiout.max_channels = 2;
4461
4462 if (spec->autocfg.dig_out_pin)
4463 spec->multiout.dig_out_nid = ALC260_DIGOUT_NID;
4464 if (spec->kctl_alloc)
4465 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
4466
4467 spec->init_verbs[spec->num_init_verbs++] = alc260_volume_init_verbs;
4468
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +02004469 spec->num_mux_defs = 1;
Kailang Yangdf694da2005-12-05 19:42:22 +01004470 spec->input_mux = &spec->private_imux;
4471
4472 /* check whether NID 0x04 is valid */
Takashi Iwai4a471b72005-12-07 13:56:29 +01004473 wcap = get_wcaps(codec, 0x04);
Kailang Yangdf694da2005-12-05 19:42:22 +01004474 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT; /* get type */
4475 if (wcap != AC_WID_AUD_IN) {
4476 spec->adc_nids = alc260_adc_nids_alt;
4477 spec->num_adc_nids = ARRAY_SIZE(alc260_adc_nids_alt);
4478 spec->mixers[spec->num_mixers] = alc260_capture_alt_mixer;
Kailang Yangdf694da2005-12-05 19:42:22 +01004479 } else {
4480 spec->adc_nids = alc260_adc_nids;
4481 spec->num_adc_nids = ARRAY_SIZE(alc260_adc_nids);
4482 spec->mixers[spec->num_mixers] = alc260_capture_mixer;
Kailang Yangdf694da2005-12-05 19:42:22 +01004483 }
Takashi Iwai4a471b72005-12-07 13:56:29 +01004484 spec->num_mixers++;
Kailang Yangdf694da2005-12-05 19:42:22 +01004485
4486 return 1;
4487}
4488
Takashi Iwaiae6b8132006-03-03 16:47:17 +01004489/* additional initialization for auto-configuration model */
4490static void alc260_auto_init(struct hda_codec *codec)
Kailang Yangdf694da2005-12-05 19:42:22 +01004491{
Kailang Yangdf694da2005-12-05 19:42:22 +01004492 alc260_auto_init_multi_out(codec);
4493 alc260_auto_init_analog_input(codec);
Kailang Yangdf694da2005-12-05 19:42:22 +01004494}
4495
4496/*
4497 * ALC260 configurations
4498 */
Takashi Iwaif5fcc132006-11-24 17:07:44 +01004499static const char *alc260_models[ALC260_MODEL_LAST] = {
4500 [ALC260_BASIC] = "basic",
4501 [ALC260_HP] = "hp",
4502 [ALC260_HP_3013] = "hp-3013",
4503 [ALC260_FUJITSU_S702X] = "fujitsu",
4504 [ALC260_ACER] = "acer",
Kailang Yangbc9f98a2007-04-12 13:06:07 +02004505 [ALC260_WILL] = "will",
4506 [ALC260_REPLACER_672V] = "replacer",
Jonathan Woithe7cf51e42006-02-09 12:01:26 +01004507#ifdef CONFIG_SND_DEBUG
Takashi Iwaif5fcc132006-11-24 17:07:44 +01004508 [ALC260_TEST] = "test",
Jonathan Woithe7cf51e42006-02-09 12:01:26 +01004509#endif
Takashi Iwaif5fcc132006-11-24 17:07:44 +01004510 [ALC260_AUTO] = "auto",
4511};
4512
4513static struct snd_pci_quirk alc260_cfg_tbl[] = {
Jonathan Woithebd869482006-11-28 11:35:52 +01004514 SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_ACER),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01004515 SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_ACER),
Takashi Iwai9720b712007-03-13 21:46:23 +01004516 SND_PCI_QUIRK(0x103c, 0x2808, "HP d5700", ALC260_HP_3013),
Takashi Iwaia8a5d062007-03-15 15:10:28 +01004517 SND_PCI_QUIRK(0x103c, 0x280a, "HP d5750", ALC260_HP_3013),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01004518 SND_PCI_QUIRK(0x103c, 0x3010, "HP", ALC260_HP_3013),
4519 SND_PCI_QUIRK(0x103c, 0x3011, "HP", ALC260_HP),
4520 SND_PCI_QUIRK(0x103c, 0x3012, "HP", ALC260_HP_3013),
4521 SND_PCI_QUIRK(0x103c, 0x3013, "HP", ALC260_HP_3013),
4522 SND_PCI_QUIRK(0x103c, 0x3014, "HP", ALC260_HP),
4523 SND_PCI_QUIRK(0x103c, 0x3015, "HP", ALC260_HP),
4524 SND_PCI_QUIRK(0x103c, 0x3016, "HP", ALC260_HP),
4525 SND_PCI_QUIRK(0x104d, 0x81bb, "Sony VAIO", ALC260_BASIC),
4526 SND_PCI_QUIRK(0x104d, 0x81cc, "Sony VAIO", ALC260_BASIC),
4527 SND_PCI_QUIRK(0x104d, 0x81cd, "Sony VAIO", ALC260_BASIC),
4528 SND_PCI_QUIRK(0x10cf, 0x1326, "Fujitsu S702X", ALC260_FUJITSU_S702X),
4529 SND_PCI_QUIRK(0x152d, 0x0729, "CTL U553W", ALC260_BASIC),
Kailang Yangbc9f98a2007-04-12 13:06:07 +02004530 SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_WILL),
4531 SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_REPLACER_672V),
Takashi Iwai16ded522005-06-10 19:58:24 +02004532 {}
4533};
4534
Kailang Yangdf694da2005-12-05 19:42:22 +01004535static struct alc_config_preset alc260_presets[] = {
4536 [ALC260_BASIC] = {
4537 .mixers = { alc260_base_output_mixer,
4538 alc260_input_mixer,
4539 alc260_pc_beep_mixer,
4540 alc260_capture_mixer },
4541 .init_verbs = { alc260_init_verbs },
4542 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4543 .dac_nids = alc260_dac_nids,
4544 .num_adc_nids = ARRAY_SIZE(alc260_adc_nids),
4545 .adc_nids = alc260_adc_nids,
4546 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4547 .channel_mode = alc260_modes,
4548 .input_mux = &alc260_capture_source,
4549 },
4550 [ALC260_HP] = {
4551 .mixers = { alc260_base_output_mixer,
4552 alc260_input_mixer,
4553 alc260_capture_alt_mixer },
Takashi Iwai474167d2006-05-17 17:17:43 +02004554 .init_verbs = { alc260_init_verbs },
Kailang Yangdf694da2005-12-05 19:42:22 +01004555 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4556 .dac_nids = alc260_dac_nids,
4557 .num_adc_nids = ARRAY_SIZE(alc260_hp_adc_nids),
4558 .adc_nids = alc260_hp_adc_nids,
4559 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4560 .channel_mode = alc260_modes,
4561 .input_mux = &alc260_capture_source,
4562 },
4563 [ALC260_HP_3013] = {
4564 .mixers = { alc260_hp_3013_mixer,
4565 alc260_input_mixer,
4566 alc260_capture_alt_mixer },
4567 .init_verbs = { alc260_hp_3013_init_verbs },
4568 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4569 .dac_nids = alc260_dac_nids,
4570 .num_adc_nids = ARRAY_SIZE(alc260_hp_adc_nids),
4571 .adc_nids = alc260_hp_adc_nids,
4572 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4573 .channel_mode = alc260_modes,
4574 .input_mux = &alc260_capture_source,
4575 },
4576 [ALC260_FUJITSU_S702X] = {
4577 .mixers = { alc260_fujitsu_mixer,
4578 alc260_capture_mixer },
4579 .init_verbs = { alc260_fujitsu_init_verbs },
4580 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4581 .dac_nids = alc260_dac_nids,
Jonathan Woithed57fdac2006-02-28 11:38:35 +01004582 .num_adc_nids = ARRAY_SIZE(alc260_dual_adc_nids),
4583 .adc_nids = alc260_dual_adc_nids,
Kailang Yangdf694da2005-12-05 19:42:22 +01004584 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4585 .channel_mode = alc260_modes,
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +02004586 .num_mux_defs = ARRAY_SIZE(alc260_fujitsu_capture_sources),
4587 .input_mux = alc260_fujitsu_capture_sources,
Kailang Yangdf694da2005-12-05 19:42:22 +01004588 },
Jonathan Woithe0bfc90e2006-02-28 11:45:11 +01004589 [ALC260_ACER] = {
4590 .mixers = { alc260_acer_mixer,
4591 alc260_capture_mixer },
4592 .init_verbs = { alc260_acer_init_verbs },
4593 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4594 .dac_nids = alc260_dac_nids,
4595 .num_adc_nids = ARRAY_SIZE(alc260_dual_adc_nids),
4596 .adc_nids = alc260_dual_adc_nids,
4597 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4598 .channel_mode = alc260_modes,
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +02004599 .num_mux_defs = ARRAY_SIZE(alc260_acer_capture_sources),
4600 .input_mux = alc260_acer_capture_sources,
Jonathan Woithe0bfc90e2006-02-28 11:45:11 +01004601 },
Kailang Yangbc9f98a2007-04-12 13:06:07 +02004602 [ALC260_WILL] = {
4603 .mixers = { alc260_will_mixer,
4604 alc260_capture_mixer },
4605 .init_verbs = { alc260_init_verbs, alc260_will_verbs },
4606 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4607 .dac_nids = alc260_dac_nids,
4608 .num_adc_nids = ARRAY_SIZE(alc260_adc_nids),
4609 .adc_nids = alc260_adc_nids,
4610 .dig_out_nid = ALC260_DIGOUT_NID,
4611 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4612 .channel_mode = alc260_modes,
4613 .input_mux = &alc260_capture_source,
4614 },
4615 [ALC260_REPLACER_672V] = {
4616 .mixers = { alc260_replacer_672v_mixer,
4617 alc260_capture_mixer },
4618 .init_verbs = { alc260_init_verbs, alc260_replacer_672v_verbs },
4619 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4620 .dac_nids = alc260_dac_nids,
4621 .num_adc_nids = ARRAY_SIZE(alc260_adc_nids),
4622 .adc_nids = alc260_adc_nids,
4623 .dig_out_nid = ALC260_DIGOUT_NID,
4624 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4625 .channel_mode = alc260_modes,
4626 .input_mux = &alc260_capture_source,
4627 .unsol_event = alc260_replacer_672v_unsol_event,
4628 .init_hook = alc260_replacer_672v_automute,
4629 },
Jonathan Woithe7cf51e42006-02-09 12:01:26 +01004630#ifdef CONFIG_SND_DEBUG
4631 [ALC260_TEST] = {
4632 .mixers = { alc260_test_mixer,
4633 alc260_capture_mixer },
4634 .init_verbs = { alc260_test_init_verbs },
4635 .num_dacs = ARRAY_SIZE(alc260_test_dac_nids),
4636 .dac_nids = alc260_test_dac_nids,
4637 .num_adc_nids = ARRAY_SIZE(alc260_test_adc_nids),
4638 .adc_nids = alc260_test_adc_nids,
4639 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4640 .channel_mode = alc260_modes,
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +02004641 .num_mux_defs = ARRAY_SIZE(alc260_test_capture_sources),
4642 .input_mux = alc260_test_capture_sources,
Jonathan Woithe7cf51e42006-02-09 12:01:26 +01004643 },
4644#endif
Kailang Yangdf694da2005-12-05 19:42:22 +01004645};
4646
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647static int patch_alc260(struct hda_codec *codec)
4648{
4649 struct alc_spec *spec;
Kailang Yangdf694da2005-12-05 19:42:22 +01004650 int err, board_config;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004651
Takashi Iwaie560d8d2005-09-09 14:21:46 +02004652 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004653 if (spec == NULL)
4654 return -ENOMEM;
4655
4656 codec->spec = spec;
4657
Takashi Iwaif5fcc132006-11-24 17:07:44 +01004658 board_config = snd_hda_check_board_config(codec, ALC260_MODEL_LAST,
4659 alc260_models,
4660 alc260_cfg_tbl);
4661 if (board_config < 0) {
Takashi Iwai9c7f8522006-06-28 15:08:22 +02004662 snd_printd(KERN_INFO "hda_codec: Unknown model for ALC260, "
4663 "trying auto-probe from BIOS...\n");
Kailang Yangdf694da2005-12-05 19:42:22 +01004664 board_config = ALC260_AUTO;
Takashi Iwai16ded522005-06-10 19:58:24 +02004665 }
4666
Kailang Yangdf694da2005-12-05 19:42:22 +01004667 if (board_config == ALC260_AUTO) {
4668 /* automatic parse from the BIOS config */
4669 err = alc260_parse_auto_config(codec);
4670 if (err < 0) {
4671 alc_free(codec);
4672 return err;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02004673 } else if (!err) {
Takashi Iwai9c7f8522006-06-28 15:08:22 +02004674 printk(KERN_INFO
4675 "hda_codec: Cannot set up configuration "
4676 "from BIOS. Using base mode...\n");
Kailang Yangdf694da2005-12-05 19:42:22 +01004677 board_config = ALC260_BASIC;
4678 }
Takashi Iwai16ded522005-06-10 19:58:24 +02004679 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004680
Kailang Yangdf694da2005-12-05 19:42:22 +01004681 if (board_config != ALC260_AUTO)
4682 setup_preset(spec, &alc260_presets[board_config]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004683
4684 spec->stream_name_analog = "ALC260 Analog";
4685 spec->stream_analog_playback = &alc260_pcm_analog_playback;
4686 spec->stream_analog_capture = &alc260_pcm_analog_capture;
4687
Takashi Iwaia3bcba32005-12-06 19:05:29 +01004688 spec->stream_name_digital = "ALC260 Digital";
4689 spec->stream_digital_playback = &alc260_pcm_digital_playback;
4690 spec->stream_digital_capture = &alc260_pcm_digital_capture;
4691
Linus Torvalds1da177e2005-04-16 15:20:36 -07004692 codec->patch_ops = alc_patch_ops;
Kailang Yangdf694da2005-12-05 19:42:22 +01004693 if (board_config == ALC260_AUTO)
Takashi Iwaiae6b8132006-03-03 16:47:17 +01004694 spec->init_hook = alc260_auto_init;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004695
4696 return 0;
4697}
4698
Takashi Iwaie9edcee2005-06-13 14:16:38 +02004699
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700/*
4701 * ALC882 support
4702 *
4703 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
4704 * configuration. Each pin widget can choose any input DACs and a mixer.
4705 * Each ADC is connected from a mixer of all inputs. This makes possible
4706 * 6-channel independent captures.
4707 *
4708 * In addition, an independent DAC for the multi-playback (not used in this
4709 * driver yet).
4710 */
Kailang Yangdf694da2005-12-05 19:42:22 +01004711#define ALC882_DIGOUT_NID 0x06
4712#define ALC882_DIGIN_NID 0x0a
Linus Torvalds1da177e2005-04-16 15:20:36 -07004713
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01004714static struct hda_channel_mode alc882_ch_modes[1] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004715 { 8, NULL }
4716};
4717
4718static hda_nid_t alc882_dac_nids[4] = {
4719 /* front, rear, clfe, rear_surr */
4720 0x02, 0x03, 0x04, 0x05
4721};
4722
Kailang Yangdf694da2005-12-05 19:42:22 +01004723/* identical with ALC880 */
4724#define alc882_adc_nids alc880_adc_nids
4725#define alc882_adc_nids_alt alc880_adc_nids_alt
Linus Torvalds1da177e2005-04-16 15:20:36 -07004726
4727/* input MUX */
4728/* FIXME: should be a matrix-type input source selection */
4729
4730static struct hda_input_mux alc882_capture_source = {
4731 .num_items = 4,
4732 .items = {
4733 { "Mic", 0x0 },
4734 { "Front Mic", 0x1 },
4735 { "Line", 0x2 },
4736 { "CD", 0x4 },
4737 },
4738};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004739#define alc882_mux_enum_info alc_mux_enum_info
4740#define alc882_mux_enum_get alc_mux_enum_get
4741
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02004742static int alc882_mux_enum_put(struct snd_kcontrol *kcontrol,
4743 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004744{
4745 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
4746 struct alc_spec *spec = codec->spec;
4747 const struct hda_input_mux *imux = spec->input_mux;
4748 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
4749 static hda_nid_t capture_mixers[3] = { 0x24, 0x23, 0x22 };
4750 hda_nid_t nid = capture_mixers[adc_idx];
4751 unsigned int *cur_val = &spec->cur_mux[adc_idx];
4752 unsigned int i, idx;
4753
4754 idx = ucontrol->value.enumerated.item[0];
4755 if (idx >= imux->num_items)
4756 idx = imux->num_items - 1;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02004757 if (*cur_val == idx && !codec->in_resume)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004758 return 0;
4759 for (i = 0; i < imux->num_items; i++) {
4760 unsigned int v = (i == idx) ? 0x7000 : 0x7080;
4761 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
4762 v | (imux->items[i].index << 8));
4763 }
4764 *cur_val = idx;
4765 return 1;
4766}
4767
Kailang Yangdf694da2005-12-05 19:42:22 +01004768/*
Kailang Yang272a5272007-05-14 11:00:38 +02004769 * 2ch mode
4770 */
4771static struct hda_verb alc882_3ST_ch2_init[] = {
4772 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
4773 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
4774 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
4775 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
4776 { } /* end */
4777};
4778
4779/*
4780 * 6ch mode
4781 */
4782static struct hda_verb alc882_3ST_ch6_init[] = {
4783 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4784 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
4785 { 0x18, AC_VERB_SET_CONNECT_SEL, 0x02 },
4786 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4787 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
4788 { 0x1a, AC_VERB_SET_CONNECT_SEL, 0x01 },
4789 { } /* end */
4790};
4791
4792static struct hda_channel_mode alc882_3ST_6ch_modes[2] = {
4793 { 2, alc882_3ST_ch2_init },
4794 { 6, alc882_3ST_ch6_init },
4795};
4796
4797/*
Kailang Yangdf694da2005-12-05 19:42:22 +01004798 * 6ch mode
4799 */
4800static struct hda_verb alc882_sixstack_ch6_init[] = {
4801 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
4802 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4803 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4804 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4805 { } /* end */
4806};
4807
4808/*
4809 * 8ch mode
4810 */
4811static struct hda_verb alc882_sixstack_ch8_init[] = {
4812 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4813 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4814 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4815 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4816 { } /* end */
4817};
4818
4819static struct hda_channel_mode alc882_sixstack_modes[2] = {
4820 { 6, alc882_sixstack_ch6_init },
4821 { 8, alc882_sixstack_ch8_init },
4822};
4823
Linus Torvalds1da177e2005-04-16 15:20:36 -07004824/* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
4825 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
4826 */
Takashi Iwaic8b6bf9b2005-11-17 14:57:47 +01004827static struct snd_kcontrol_new alc882_base_mixer[] = {
Takashi Iwai05acb862005-06-10 19:50:25 +02004828 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +01004829 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
Takashi Iwai05acb862005-06-10 19:50:25 +02004830 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +01004831 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
Takashi Iwai05acb862005-06-10 19:50:25 +02004832 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
4833 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +01004834 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
4835 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
Takashi Iwai05acb862005-06-10 19:50:25 +02004836 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
Takashi Iwai985be542005-11-02 18:26:49 +01004837 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
Linus Torvalds1da177e2005-04-16 15:20:36 -07004838 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
4839 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
4840 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
4841 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
4842 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
4843 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
Thomas De Schampheleire32360412007-01-24 16:13:35 +01004844 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
Linus Torvalds1da177e2005-04-16 15:20:36 -07004845 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
4846 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
Thomas De Schampheleire32360412007-01-24 16:13:35 +01004847 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
Linus Torvalds1da177e2005-04-16 15:20:36 -07004848 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
4849 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
4850 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
Linus Torvalds1da177e2005-04-16 15:20:36 -07004851 { } /* end */
4852};
4853
Kailang Yangbdd148a2007-05-08 15:19:08 +02004854static struct snd_kcontrol_new alc882_w2jc_mixer[] = {
4855 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
4856 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
4857 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
4858 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
4859 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
4860 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
4861 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
4862 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
4863 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
4864 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
4865 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
4866 { } /* end */
4867};
4868
Kailang Yang272a5272007-05-14 11:00:38 +02004869static struct snd_kcontrol_new alc882_targa_mixer[] = {
4870 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
4871 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
4872 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
4873 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
4874 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
4875 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
4876 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
4877 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
4878 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
4879 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
4880 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
4881 { } /* end */
4882};
4883
4884/* Pin assignment: Front=0x14, HP = 0x15, Front = 0x16, ???
4885 * Front Mic=0x18, Line In = 0x1a, Line In = 0x1b, CD = 0x1c
4886 */
4887static struct snd_kcontrol_new alc882_asus_a7j_mixer[] = {
4888 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
4889 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
4890 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
4891 HDA_CODEC_MUTE("Mobile Front Playback Switch", 0x16, 0x0, HDA_OUTPUT),
4892 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
4893 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
4894 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
4895 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
4896 HDA_CODEC_VOLUME("Mobile Line Playback Volume", 0x0b, 0x03, HDA_INPUT),
4897 HDA_CODEC_MUTE("Mobile Line Playback Switch", 0x0b, 0x03, HDA_INPUT),
4898 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
4899 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
4900 { } /* end */
4901};
4902
Kailang Yangdf694da2005-12-05 19:42:22 +01004903static struct snd_kcontrol_new alc882_chmode_mixer[] = {
4904 {
4905 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4906 .name = "Channel Mode",
4907 .info = alc_ch_mode_info,
4908 .get = alc_ch_mode_get,
4909 .put = alc_ch_mode_put,
4910 },
4911 { } /* end */
4912};
4913
Linus Torvalds1da177e2005-04-16 15:20:36 -07004914static struct hda_verb alc882_init_verbs[] = {
4915 /* Front mixer: unmute input/output amp left and right (volume = 0) */
Takashi Iwai05acb862005-06-10 19:50:25 +02004916 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4917 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4918 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
Linus Torvalds1da177e2005-04-16 15:20:36 -07004919 /* Rear mixer */
Takashi Iwai05acb862005-06-10 19:50:25 +02004920 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4921 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4922 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
Linus Torvalds1da177e2005-04-16 15:20:36 -07004923 /* CLFE mixer */
Takashi Iwai05acb862005-06-10 19:50:25 +02004924 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4925 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4926 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
Linus Torvalds1da177e2005-04-16 15:20:36 -07004927 /* Side mixer */
Takashi Iwai05acb862005-06-10 19:50:25 +02004928 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4929 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4930 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
Linus Torvalds1da177e2005-04-16 15:20:36 -07004931
Takashi Iwaie9edcee2005-06-13 14:16:38 +02004932 /* Front Pin: output 0 (0x0c) */
Takashi Iwai05acb862005-06-10 19:50:25 +02004933 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Takashi Iwai05acb862005-06-10 19:50:25 +02004934 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Linus Torvalds1da177e2005-04-16 15:20:36 -07004935 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02004936 /* Rear Pin: output 1 (0x0d) */
Takashi Iwai05acb862005-06-10 19:50:25 +02004937 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Takashi Iwai05acb862005-06-10 19:50:25 +02004938 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Linus Torvalds1da177e2005-04-16 15:20:36 -07004939 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02004940 /* CLFE Pin: output 2 (0x0e) */
Takashi Iwai05acb862005-06-10 19:50:25 +02004941 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Takashi Iwai05acb862005-06-10 19:50:25 +02004942 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Linus Torvalds1da177e2005-04-16 15:20:36 -07004943 {0x16, AC_VERB_SET_CONNECT_SEL, 0x02},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02004944 /* Side Pin: output 3 (0x0f) */
Takashi Iwai05acb862005-06-10 19:50:25 +02004945 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Takashi Iwai05acb862005-06-10 19:50:25 +02004946 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Linus Torvalds1da177e2005-04-16 15:20:36 -07004947 {0x17, AC_VERB_SET_CONNECT_SEL, 0x03},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02004948 /* Mic (rear) pin: input vref at 80% */
Takashi Iwai16ded522005-06-10 19:58:24 +02004949 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02004950 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
4951 /* Front Mic pin: input vref at 80% */
Takashi Iwai16ded522005-06-10 19:58:24 +02004952 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02004953 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
4954 /* Line In pin: input */
Takashi Iwai05acb862005-06-10 19:50:25 +02004955 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
Takashi Iwaie9edcee2005-06-13 14:16:38 +02004956 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
4957 /* Line-2 In: Headphone output (output 0 - 0x0c) */
4958 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
4959 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4960 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
Linus Torvalds1da177e2005-04-16 15:20:36 -07004961 /* CD pin widget for input */
Takashi Iwai05acb862005-06-10 19:50:25 +02004962 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
Linus Torvalds1da177e2005-04-16 15:20:36 -07004963
4964 /* FIXME: use matrix-type input source selection */
4965 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
4966 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
Takashi Iwai05acb862005-06-10 19:50:25 +02004967 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4968 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4969 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4970 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971 /* Input mixer2 */
Takashi Iwai05acb862005-06-10 19:50:25 +02004972 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4973 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4974 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4975 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
Linus Torvalds1da177e2005-04-16 15:20:36 -07004976 /* Input mixer3 */
Takashi Iwai05acb862005-06-10 19:50:25 +02004977 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4978 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4979 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4980 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
4981 /* ADC1: mute amp left and right */
4982 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
Takashi Iwai71fe7b82005-05-25 18:11:40 +02004983 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
Takashi Iwai05acb862005-06-10 19:50:25 +02004984 /* ADC2: mute amp left and right */
4985 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
Takashi Iwai71fe7b82005-05-25 18:11:40 +02004986 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
Takashi Iwai05acb862005-06-10 19:50:25 +02004987 /* ADC3: mute amp left and right */
4988 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
Takashi Iwai71fe7b82005-05-25 18:11:40 +02004989 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
Linus Torvalds1da177e2005-04-16 15:20:36 -07004990
4991 { }
4992};
4993
Takashi Iwai4b146cb2006-07-28 14:42:36 +02004994static struct hda_verb alc882_eapd_verbs[] = {
4995 /* change to EAPD mode */
4996 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
Andrew L. Neporadab373bde2006-11-07 11:37:08 +01004997 {0x20, AC_VERB_SET_PROC_COEF, 0x3060},
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02004998 { }
Takashi Iwai4b146cb2006-07-28 14:42:36 +02004999};
5000
Tobin Davis9102cd12006-12-15 10:02:12 +01005001/* Mac Pro test */
5002static struct snd_kcontrol_new alc882_macpro_mixer[] = {
5003 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5004 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
5005 HDA_CODEC_MUTE("Headphone Playback Switch", 0x18, 0x0, HDA_OUTPUT),
5006 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x01, HDA_INPUT),
5007 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x01, HDA_INPUT),
5008 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x02, HDA_INPUT),
5009 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x02, HDA_INPUT),
5010 { } /* end */
5011};
5012
5013static struct hda_verb alc882_macpro_init_verbs[] = {
5014 /* Front mixer: unmute input/output amp left and right (volume = 0) */
5015 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5016 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5017 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5018 /* Front Pin: output 0 (0x0c) */
5019 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5020 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5021 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
5022 /* Front Mic pin: input vref at 80% */
5023 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5024 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5025 /* Speaker: output */
5026 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5027 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5028 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x04},
5029 /* Headphone output (output 0 - 0x0c) */
5030 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5031 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5032 {0x18, AC_VERB_SET_CONNECT_SEL, 0x00},
5033
5034 /* FIXME: use matrix-type input source selection */
5035 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
5036 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
5037 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5038 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5039 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5040 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5041 /* Input mixer2 */
5042 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5043 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5044 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5045 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5046 /* Input mixer3 */
5047 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5048 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5049 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5050 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5051 /* ADC1: mute amp left and right */
5052 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5053 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
5054 /* ADC2: mute amp left and right */
5055 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5056 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
5057 /* ADC3: mute amp left and right */
5058 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5059 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
5060
5061 { }
5062};
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02005063
Kailang Yang272a5272007-05-14 11:00:38 +02005064static struct hda_verb alc882_targa_verbs[] = {
5065 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5066 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5067
5068 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5069 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5070
5071 {0x18, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
5072 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/surround */
5073 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
5074
5075 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
5076 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
5077 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
5078 {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
5079 { } /* end */
5080};
5081
5082/* toggle speaker-output according to the hp-jack state */
5083static void alc882_targa_automute(struct hda_codec *codec)
5084{
5085 unsigned int present;
5086
5087 present = snd_hda_codec_read(codec, 0x14, 0,
5088 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
5089 snd_hda_codec_amp_update(codec, 0x1b, 0, HDA_OUTPUT, 0,
5090 0x80, present ? 0x80 : 0);
5091 snd_hda_codec_amp_update(codec, 0x1b, 1, HDA_OUTPUT, 0,
5092 0x80, present ? 0x80 : 0);
5093 snd_hda_codec_write(codec, 1, 0, AC_VERB_SET_GPIO_DATA, present ? 1 : 3);
5094}
5095
5096static void alc882_targa_unsol_event(struct hda_codec *codec, unsigned int res)
5097{
5098 /* Looks like the unsol event is incompatible with the standard
5099 * definition. 4bit tag is placed at 26 bit!
5100 */
5101 if (((res >> 26) == ALC880_HP_EVENT)) {
5102 alc882_targa_automute(codec);
5103 }
5104}
5105
5106static struct hda_verb alc882_asus_a7j_verbs[] = {
5107 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5108 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5109
5110 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5111 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5112 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5113
5114 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00}, /* Front */
5115 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
5116 {0x16, AC_VERB_SET_CONNECT_SEL, 0x00}, /* Front */
5117
5118 {0x18, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
5119 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/surround */
5120 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
5121 { } /* end */
5122};
5123
Tobin Davis9102cd12006-12-15 10:02:12 +01005124static void alc882_gpio_mute(struct hda_codec *codec, int pin, int muted)
5125{
5126 unsigned int gpiostate, gpiomask, gpiodir;
5127
5128 gpiostate = snd_hda_codec_read(codec, codec->afg, 0,
5129 AC_VERB_GET_GPIO_DATA, 0);
5130
5131 if (!muted)
5132 gpiostate |= (1 << pin);
5133 else
5134 gpiostate &= ~(1 << pin);
5135
5136 gpiomask = snd_hda_codec_read(codec, codec->afg, 0,
5137 AC_VERB_GET_GPIO_MASK, 0);
5138 gpiomask |= (1 << pin);
5139
5140 gpiodir = snd_hda_codec_read(codec, codec->afg, 0,
5141 AC_VERB_GET_GPIO_DIRECTION, 0);
5142 gpiodir |= (1 << pin);
5143
5144
5145 snd_hda_codec_write(codec, codec->afg, 0,
5146 AC_VERB_SET_GPIO_MASK, gpiomask);
5147 snd_hda_codec_write(codec, codec->afg, 0,
5148 AC_VERB_SET_GPIO_DIRECTION, gpiodir);
5149
5150 msleep(1);
5151
5152 snd_hda_codec_write(codec, codec->afg, 0,
5153 AC_VERB_SET_GPIO_DATA, gpiostate);
5154}
5155
Kailang Yangdf694da2005-12-05 19:42:22 +01005156/*
5157 * generic initialization of ADC, input mixers and output mixers
5158 */
5159static struct hda_verb alc882_auto_init_verbs[] = {
5160 /*
5161 * Unmute ADC0-2 and set the default input to mic-in
5162 */
5163 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
5164 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5165 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
5166 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5167 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
5168 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5169
5170 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
5171 * mixer widget
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02005172 * Note: PASD motherboards uses the Line In 2 as the input for
5173 * front panel mic (mic 2)
Kailang Yangdf694da2005-12-05 19:42:22 +01005174 */
5175 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
5176 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5177 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5178 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
5179 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
5180 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
5181
5182 /*
5183 * Set up output mixers (0x0c - 0x0f)
5184 */
5185 /* set vol=0 to output mixers */
5186 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5187 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5188 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5189 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5190 /* set up input amps for analog loopback */
5191 /* Amp Indices: DAC = 0, mixer = 1 */
5192 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5193 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5194 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5195 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5196 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5197 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5198 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5199 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5200 {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5201 {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5202
5203 /* FIXME: use matrix-type input source selection */
5204 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
5205 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
5206 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
5207 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
5208 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
5209 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
5210 /* Input mixer2 */
5211 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
5212 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
5213 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
5214 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
5215 /* Input mixer3 */
5216 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
5217 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
5218 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
5219 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
5220
5221 { }
5222};
5223
5224/* capture mixer elements */
5225static struct snd_kcontrol_new alc882_capture_alt_mixer[] = {
5226 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5227 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5228 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
5229 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
5230 {
5231 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5232 /* The multiple "Capture Source" controls confuse alsamixer
5233 * So call somewhat different..
5234 * FIXME: the controls appear in the "playback" view!
5235 */
5236 /* .name = "Capture Source", */
5237 .name = "Input Source",
5238 .count = 2,
5239 .info = alc882_mux_enum_info,
5240 .get = alc882_mux_enum_get,
5241 .put = alc882_mux_enum_put,
5242 },
5243 { } /* end */
5244};
5245
5246static struct snd_kcontrol_new alc882_capture_mixer[] = {
5247 HDA_CODEC_VOLUME("Capture Volume", 0x07, 0x0, HDA_INPUT),
5248 HDA_CODEC_MUTE("Capture Switch", 0x07, 0x0, HDA_INPUT),
5249 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x08, 0x0, HDA_INPUT),
5250 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x08, 0x0, HDA_INPUT),
5251 HDA_CODEC_VOLUME_IDX("Capture Volume", 2, 0x09, 0x0, HDA_INPUT),
5252 HDA_CODEC_MUTE_IDX("Capture Switch", 2, 0x09, 0x0, HDA_INPUT),
5253 {
5254 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5255 /* The multiple "Capture Source" controls confuse alsamixer
5256 * So call somewhat different..
5257 * FIXME: the controls appear in the "playback" view!
5258 */
5259 /* .name = "Capture Source", */
5260 .name = "Input Source",
5261 .count = 3,
5262 .info = alc882_mux_enum_info,
5263 .get = alc882_mux_enum_get,
5264 .put = alc882_mux_enum_put,
5265 },
5266 { } /* end */
5267};
5268
5269/* pcm configuration: identiacal with ALC880 */
5270#define alc882_pcm_analog_playback alc880_pcm_analog_playback
5271#define alc882_pcm_analog_capture alc880_pcm_analog_capture
5272#define alc882_pcm_digital_playback alc880_pcm_digital_playback
5273#define alc882_pcm_digital_capture alc880_pcm_digital_capture
5274
5275/*
5276 * configuration and preset
5277 */
Takashi Iwaif5fcc132006-11-24 17:07:44 +01005278static const char *alc882_models[ALC882_MODEL_LAST] = {
5279 [ALC882_3ST_DIG] = "3stack-dig",
5280 [ALC882_6ST_DIG] = "6stack-dig",
5281 [ALC882_ARIMA] = "arima",
Kailang Yangbdd148a2007-05-08 15:19:08 +02005282 [ALC882_W2JC] = "w2jc",
Tobin Davis9102cd12006-12-15 10:02:12 +01005283 [ALC885_MACPRO] = "macpro",
Takashi Iwaif5fcc132006-11-24 17:07:44 +01005284 [ALC882_AUTO] = "auto",
5285};
5286
5287static struct snd_pci_quirk alc882_cfg_tbl[] = {
5288 SND_PCI_QUIRK(0x1019, 0x6668, "ECS", ALC882_6ST_DIG),
5289 SND_PCI_QUIRK(0x105b, 0x6668, "Foxconn", ALC882_6ST_DIG),
5290 SND_PCI_QUIRK(0x1462, 0x6668, "MSI", ALC882_6ST_DIG),
Kailang Yang272a5272007-05-14 11:00:38 +02005291 SND_PCI_QUIRK(0x1462, 0x28fb, "Targa T8", ALC882_TARGA), /* MSI-1049 T8 */
Takashi Iwaif5fcc132006-11-24 17:07:44 +01005292 SND_PCI_QUIRK(0x161f, 0x2054, "Arima W820", ALC882_ARIMA),
Kailang Yang272a5272007-05-14 11:00:38 +02005293 SND_PCI_QUIRK(0x1043, 0x060d, "Asus A7J", ALC882_ASUS_A7J),
Tobin Davis7b9470d2006-12-28 13:56:48 +01005294 SND_PCI_QUIRK(0x1043, 0x81d8, "Asus P5WD", ALC882_6ST_DIG),
Kailang Yangbdd148a2007-05-08 15:19:08 +02005295 SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_W2JC),
Kailang Yangdf694da2005-12-05 19:42:22 +01005296 {}
5297};
5298
5299static struct alc_config_preset alc882_presets[] = {
5300 [ALC882_3ST_DIG] = {
5301 .mixers = { alc882_base_mixer },
5302 .init_verbs = { alc882_init_verbs },
5303 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5304 .dac_nids = alc882_dac_nids,
5305 .dig_out_nid = ALC882_DIGOUT_NID,
Kailang Yangdf694da2005-12-05 19:42:22 +01005306 .dig_in_nid = ALC882_DIGIN_NID,
5307 .num_channel_mode = ARRAY_SIZE(alc882_ch_modes),
5308 .channel_mode = alc882_ch_modes,
Takashi Iwai4e195a72006-07-28 14:47:34 +02005309 .need_dac_fix = 1,
Kailang Yangdf694da2005-12-05 19:42:22 +01005310 .input_mux = &alc882_capture_source,
5311 },
5312 [ALC882_6ST_DIG] = {
5313 .mixers = { alc882_base_mixer, alc882_chmode_mixer },
5314 .init_verbs = { alc882_init_verbs },
5315 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5316 .dac_nids = alc882_dac_nids,
5317 .dig_out_nid = ALC882_DIGOUT_NID,
Kailang Yangdf694da2005-12-05 19:42:22 +01005318 .dig_in_nid = ALC882_DIGIN_NID,
5319 .num_channel_mode = ARRAY_SIZE(alc882_sixstack_modes),
5320 .channel_mode = alc882_sixstack_modes,
5321 .input_mux = &alc882_capture_source,
5322 },
Takashi Iwai4b146cb2006-07-28 14:42:36 +02005323 [ALC882_ARIMA] = {
5324 .mixers = { alc882_base_mixer, alc882_chmode_mixer },
5325 .init_verbs = { alc882_init_verbs, alc882_eapd_verbs },
5326 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5327 .dac_nids = alc882_dac_nids,
5328 .num_channel_mode = ARRAY_SIZE(alc882_sixstack_modes),
5329 .channel_mode = alc882_sixstack_modes,
5330 .input_mux = &alc882_capture_source,
5331 },
Kailang Yangbdd148a2007-05-08 15:19:08 +02005332 [ALC882_W2JC] = {
5333 .mixers = { alc882_w2jc_mixer, alc882_chmode_mixer },
5334 .init_verbs = { alc882_init_verbs, alc882_eapd_verbs,
5335 alc880_gpio1_init_verbs },
5336 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5337 .dac_nids = alc882_dac_nids,
5338 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
5339 .channel_mode = alc880_threestack_modes,
5340 .need_dac_fix = 1,
5341 .input_mux = &alc882_capture_source,
5342 .dig_out_nid = ALC882_DIGOUT_NID,
5343 },
Tobin Davis9102cd12006-12-15 10:02:12 +01005344 [ALC885_MACPRO] = {
5345 .mixers = { alc882_macpro_mixer },
5346 .init_verbs = { alc882_macpro_init_verbs },
5347 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5348 .dac_nids = alc882_dac_nids,
5349 .dig_out_nid = ALC882_DIGOUT_NID,
5350 .dig_in_nid = ALC882_DIGIN_NID,
5351 .num_channel_mode = ARRAY_SIZE(alc882_ch_modes),
5352 .channel_mode = alc882_ch_modes,
5353 .input_mux = &alc882_capture_source,
5354 },
Kailang Yang272a5272007-05-14 11:00:38 +02005355 [ALC882_TARGA] = {
5356 .mixers = { alc882_targa_mixer, alc882_chmode_mixer,
5357 alc882_capture_mixer },
5358 .init_verbs = { alc882_init_verbs, alc882_targa_verbs},
5359 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5360 .dac_nids = alc882_dac_nids,
5361 .dig_out_nid = ALC882_DIGOUT_NID,
5362 .num_adc_nids = ARRAY_SIZE(alc882_adc_nids),
5363 .adc_nids = alc882_adc_nids,
5364 .num_channel_mode = ARRAY_SIZE(alc882_3ST_6ch_modes),
5365 .channel_mode = alc882_3ST_6ch_modes,
5366 .need_dac_fix = 1,
5367 .input_mux = &alc882_capture_source,
5368 .unsol_event = alc882_targa_unsol_event,
5369 .init_hook = alc882_targa_automute,
5370 },
5371 [ALC882_ASUS_A7J] = {
5372 .mixers = { alc882_asus_a7j_mixer, alc882_chmode_mixer,
5373 alc882_capture_mixer },
5374 .init_verbs = { alc882_init_verbs, alc882_asus_a7j_verbs},
5375 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5376 .dac_nids = alc882_dac_nids,
5377 .dig_out_nid = ALC882_DIGOUT_NID,
5378 .num_adc_nids = ARRAY_SIZE(alc882_adc_nids),
5379 .adc_nids = alc882_adc_nids,
5380 .num_channel_mode = ARRAY_SIZE(alc882_3ST_6ch_modes),
5381 .channel_mode = alc882_3ST_6ch_modes,
5382 .need_dac_fix = 1,
5383 .input_mux = &alc882_capture_source,
5384 },
Kailang Yangdf694da2005-12-05 19:42:22 +01005385};
5386
5387
5388/*
5389 * BIOS auto configuration
5390 */
5391static void alc882_auto_set_output_and_unmute(struct hda_codec *codec,
5392 hda_nid_t nid, int pin_type,
5393 int dac_idx)
5394{
5395 /* set as output */
5396 struct alc_spec *spec = codec->spec;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02005397 int idx;
5398
Kailang Yangdf694da2005-12-05 19:42:22 +01005399 if (spec->multiout.dac_nids[dac_idx] == 0x25)
5400 idx = 4;
5401 else
5402 idx = spec->multiout.dac_nids[dac_idx] - 2;
5403
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02005404 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
5405 pin_type);
5406 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
5407 AMP_OUT_UNMUTE);
Kailang Yangdf694da2005-12-05 19:42:22 +01005408 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, idx);
5409
5410}
5411
5412static void alc882_auto_init_multi_out(struct hda_codec *codec)
5413{
5414 struct alc_spec *spec = codec->spec;
5415 int i;
5416
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005417 alc_subsystem_id(codec, 0x15, 0x1b, 0x14);
Kailang Yangdf694da2005-12-05 19:42:22 +01005418 for (i = 0; i <= HDA_SIDE; i++) {
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02005419 hda_nid_t nid = spec->autocfg.line_out_pins[i];
Takashi Iwaibaba8ee2007-04-23 17:17:48 +02005420 int pin_type = get_pin_type(spec->autocfg.line_out_type);
Kailang Yangdf694da2005-12-05 19:42:22 +01005421 if (nid)
Takashi Iwaibaba8ee2007-04-23 17:17:48 +02005422 alc882_auto_set_output_and_unmute(codec, nid, pin_type,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02005423 i);
Kailang Yangdf694da2005-12-05 19:42:22 +01005424 }
5425}
5426
5427static void alc882_auto_init_hp_out(struct hda_codec *codec)
5428{
5429 struct alc_spec *spec = codec->spec;
5430 hda_nid_t pin;
5431
Takashi Iwaieb06ed82006-09-20 17:10:27 +02005432 pin = spec->autocfg.hp_pins[0];
Kailang Yangdf694da2005-12-05 19:42:22 +01005433 if (pin) /* connect to front */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02005434 /* use dac 0 */
5435 alc882_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
Kailang Yangdf694da2005-12-05 19:42:22 +01005436}
5437
5438#define alc882_is_input_pin(nid) alc880_is_input_pin(nid)
5439#define ALC882_PIN_CD_NID ALC880_PIN_CD_NID
5440
5441static void alc882_auto_init_analog_input(struct hda_codec *codec)
5442{
5443 struct alc_spec *spec = codec->spec;
5444 int i;
5445
5446 for (i = 0; i < AUTO_PIN_LAST; i++) {
5447 hda_nid_t nid = spec->autocfg.input_pins[i];
5448 if (alc882_is_input_pin(nid)) {
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02005449 snd_hda_codec_write(codec, nid, 0,
5450 AC_VERB_SET_PIN_WIDGET_CONTROL,
5451 i <= AUTO_PIN_FRONT_MIC ?
5452 PIN_VREF80 : PIN_IN);
Kailang Yangdf694da2005-12-05 19:42:22 +01005453 if (nid != ALC882_PIN_CD_NID)
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02005454 snd_hda_codec_write(codec, nid, 0,
5455 AC_VERB_SET_AMP_GAIN_MUTE,
Kailang Yangdf694da2005-12-05 19:42:22 +01005456 AMP_OUT_MUTE);
5457 }
5458 }
5459}
5460
5461/* almost identical with ALC880 parser... */
5462static int alc882_parse_auto_config(struct hda_codec *codec)
5463{
5464 struct alc_spec *spec = codec->spec;
5465 int err = alc880_parse_auto_config(codec);
5466
5467 if (err < 0)
5468 return err;
Takashi Iwaic5f2ea02005-12-06 18:54:31 +01005469 else if (err > 0)
5470 /* hack - override the init verbs */
5471 spec->init_verbs[0] = alc882_auto_init_verbs;
5472 return err;
Kailang Yangdf694da2005-12-05 19:42:22 +01005473}
5474
Takashi Iwaiae6b8132006-03-03 16:47:17 +01005475/* additional initialization for auto-configuration model */
5476static void alc882_auto_init(struct hda_codec *codec)
Kailang Yangdf694da2005-12-05 19:42:22 +01005477{
Kailang Yangdf694da2005-12-05 19:42:22 +01005478 alc882_auto_init_multi_out(codec);
5479 alc882_auto_init_hp_out(codec);
5480 alc882_auto_init_analog_input(codec);
Kailang Yangdf694da2005-12-05 19:42:22 +01005481}
5482
Linus Torvalds1da177e2005-04-16 15:20:36 -07005483static int patch_alc882(struct hda_codec *codec)
5484{
5485 struct alc_spec *spec;
Kailang Yangdf694da2005-12-05 19:42:22 +01005486 int err, board_config;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005487
Takashi Iwaie560d8d2005-09-09 14:21:46 +02005488 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005489 if (spec == NULL)
5490 return -ENOMEM;
5491
Linus Torvalds1da177e2005-04-16 15:20:36 -07005492 codec->spec = spec;
5493
Takashi Iwaif5fcc132006-11-24 17:07:44 +01005494 board_config = snd_hda_check_board_config(codec, ALC882_MODEL_LAST,
5495 alc882_models,
5496 alc882_cfg_tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005497
Kailang Yangdf694da2005-12-05 19:42:22 +01005498 if (board_config < 0 || board_config >= ALC882_MODEL_LAST) {
Tobin Davis081d17c2007-02-15 17:46:18 +01005499 /* Pick up systems that don't supply PCI SSID */
5500 switch (codec->subsystem_id) {
5501 case 0x106b0c00: /* Mac Pro */
5502 board_config = ALC885_MACPRO;
5503 break;
5504 default:
5505 printk(KERN_INFO "hda_codec: Unknown model for ALC882, "
5506 "trying auto-probe from BIOS...\n");
5507 board_config = ALC882_AUTO;
5508 }
Kailang Yangdf694da2005-12-05 19:42:22 +01005509 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02005510
Kailang Yangdf694da2005-12-05 19:42:22 +01005511 if (board_config == ALC882_AUTO) {
5512 /* automatic parse from the BIOS config */
5513 err = alc882_parse_auto_config(codec);
5514 if (err < 0) {
5515 alc_free(codec);
5516 return err;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02005517 } else if (!err) {
Takashi Iwai9c7f8522006-06-28 15:08:22 +02005518 printk(KERN_INFO
5519 "hda_codec: Cannot set up configuration "
5520 "from BIOS. Using base mode...\n");
Kailang Yangdf694da2005-12-05 19:42:22 +01005521 board_config = ALC882_3ST_DIG;
5522 }
5523 }
5524
5525 if (board_config != ALC882_AUTO)
5526 setup_preset(spec, &alc882_presets[board_config]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005527
Tobin Davis9102cd12006-12-15 10:02:12 +01005528 if (board_config == ALC885_MACPRO) {
5529 alc882_gpio_mute(codec, 0, 0);
5530 alc882_gpio_mute(codec, 1, 0);
5531 }
5532
Linus Torvalds1da177e2005-04-16 15:20:36 -07005533 spec->stream_name_analog = "ALC882 Analog";
Kailang Yangdf694da2005-12-05 19:42:22 +01005534 spec->stream_analog_playback = &alc882_pcm_analog_playback;
5535 spec->stream_analog_capture = &alc882_pcm_analog_capture;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005536
5537 spec->stream_name_digital = "ALC882 Digital";
Kailang Yangdf694da2005-12-05 19:42:22 +01005538 spec->stream_digital_playback = &alc882_pcm_digital_playback;
5539 spec->stream_digital_capture = &alc882_pcm_digital_capture;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005540
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02005541 if (!spec->adc_nids && spec->input_mux) {
Kailang Yangdf694da2005-12-05 19:42:22 +01005542 /* check whether NID 0x07 is valid */
Takashi Iwai4a471b72005-12-07 13:56:29 +01005543 unsigned int wcap = get_wcaps(codec, 0x07);
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02005544 /* get type */
5545 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
Kailang Yangdf694da2005-12-05 19:42:22 +01005546 if (wcap != AC_WID_AUD_IN) {
5547 spec->adc_nids = alc882_adc_nids_alt;
5548 spec->num_adc_nids = ARRAY_SIZE(alc882_adc_nids_alt);
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02005549 spec->mixers[spec->num_mixers] =
5550 alc882_capture_alt_mixer;
Kailang Yangdf694da2005-12-05 19:42:22 +01005551 spec->num_mixers++;
5552 } else {
5553 spec->adc_nids = alc882_adc_nids;
5554 spec->num_adc_nids = ARRAY_SIZE(alc882_adc_nids);
5555 spec->mixers[spec->num_mixers] = alc882_capture_mixer;
5556 spec->num_mixers++;
5557 }
5558 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005559
5560 codec->patch_ops = alc_patch_ops;
Kailang Yangdf694da2005-12-05 19:42:22 +01005561 if (board_config == ALC882_AUTO)
Takashi Iwaiae6b8132006-03-03 16:47:17 +01005562 spec->init_hook = alc882_auto_init;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005563
5564 return 0;
5565}
5566
5567/*
Takashi Iwai9c7f8522006-06-28 15:08:22 +02005568 * ALC883 support
5569 *
5570 * ALC883 is almost identical with ALC880 but has cleaner and more flexible
5571 * configuration. Each pin widget can choose any input DACs and a mixer.
5572 * Each ADC is connected from a mixer of all inputs. This makes possible
5573 * 6-channel independent captures.
5574 *
5575 * In addition, an independent DAC for the multi-playback (not used in this
5576 * driver yet).
5577 */
5578#define ALC883_DIGOUT_NID 0x06
5579#define ALC883_DIGIN_NID 0x0a
5580
5581static hda_nid_t alc883_dac_nids[4] = {
5582 /* front, rear, clfe, rear_surr */
5583 0x02, 0x04, 0x03, 0x05
5584};
5585
5586static hda_nid_t alc883_adc_nids[2] = {
5587 /* ADC1-2 */
5588 0x08, 0x09,
5589};
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02005590
Takashi Iwai9c7f8522006-06-28 15:08:22 +02005591/* input MUX */
5592/* FIXME: should be a matrix-type input source selection */
5593
5594static struct hda_input_mux alc883_capture_source = {
5595 .num_items = 4,
5596 .items = {
5597 { "Mic", 0x0 },
5598 { "Front Mic", 0x1 },
5599 { "Line", 0x2 },
5600 { "CD", 0x4 },
5601 },
5602};
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005603
5604static struct hda_input_mux alc883_lenovo_101e_capture_source = {
5605 .num_items = 2,
5606 .items = {
5607 { "Mic", 0x1 },
5608 { "Line", 0x2 },
5609 },
5610};
5611
Kailang Yang272a5272007-05-14 11:00:38 +02005612static struct hda_input_mux alc883_lenovo_nb0763_capture_source = {
5613 .num_items = 4,
5614 .items = {
5615 { "Mic", 0x0 },
5616 { "iMic", 0x1 },
5617 { "Line", 0x2 },
5618 { "CD", 0x4 },
5619 },
5620};
5621
Takashi Iwai9c7f8522006-06-28 15:08:22 +02005622#define alc883_mux_enum_info alc_mux_enum_info
5623#define alc883_mux_enum_get alc_mux_enum_get
5624
5625static int alc883_mux_enum_put(struct snd_kcontrol *kcontrol,
5626 struct snd_ctl_elem_value *ucontrol)
5627{
5628 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
5629 struct alc_spec *spec = codec->spec;
5630 const struct hda_input_mux *imux = spec->input_mux;
5631 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
5632 static hda_nid_t capture_mixers[3] = { 0x24, 0x23, 0x22 };
5633 hda_nid_t nid = capture_mixers[adc_idx];
5634 unsigned int *cur_val = &spec->cur_mux[adc_idx];
5635 unsigned int i, idx;
5636
5637 idx = ucontrol->value.enumerated.item[0];
5638 if (idx >= imux->num_items)
5639 idx = imux->num_items - 1;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02005640 if (*cur_val == idx && !codec->in_resume)
Takashi Iwai9c7f8522006-06-28 15:08:22 +02005641 return 0;
5642 for (i = 0; i < imux->num_items; i++) {
5643 unsigned int v = (i == idx) ? 0x7000 : 0x7080;
5644 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
5645 v | (imux->items[i].index << 8));
5646 }
5647 *cur_val = idx;
5648 return 1;
5649}
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02005650
Takashi Iwai9c7f8522006-06-28 15:08:22 +02005651/*
5652 * 2ch mode
5653 */
5654static struct hda_channel_mode alc883_3ST_2ch_modes[1] = {
5655 { 2, NULL }
5656};
5657
5658/*
5659 * 2ch mode
5660 */
5661static struct hda_verb alc883_3ST_ch2_init[] = {
5662 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
5663 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
5664 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
5665 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
5666 { } /* end */
5667};
5668
5669/*
5670 * 6ch mode
5671 */
5672static struct hda_verb alc883_3ST_ch6_init[] = {
5673 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5674 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
5675 { 0x18, AC_VERB_SET_CONNECT_SEL, 0x02 },
5676 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5677 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
5678 { 0x1a, AC_VERB_SET_CONNECT_SEL, 0x01 },
5679 { } /* end */
5680};
5681
5682static struct hda_channel_mode alc883_3ST_6ch_modes[2] = {
5683 { 2, alc883_3ST_ch2_init },
5684 { 6, alc883_3ST_ch6_init },
5685};
5686
5687/*
5688 * 6ch mode
5689 */
5690static struct hda_verb alc883_sixstack_ch6_init[] = {
5691 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
5692 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5693 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5694 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5695 { } /* end */
5696};
5697
5698/*
5699 * 8ch mode
5700 */
5701static struct hda_verb alc883_sixstack_ch8_init[] = {
5702 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5703 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5704 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5705 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5706 { } /* end */
5707};
5708
5709static struct hda_channel_mode alc883_sixstack_modes[2] = {
5710 { 6, alc883_sixstack_ch6_init },
5711 { 8, alc883_sixstack_ch8_init },
5712};
5713
Andrew L. Neporadab373bde2006-11-07 11:37:08 +01005714static struct hda_verb alc883_medion_eapd_verbs[] = {
5715 /* eanable EAPD on medion laptop */
5716 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
5717 {0x20, AC_VERB_SET_PROC_COEF, 0x3070},
5718 { }
5719};
5720
Takashi Iwai9c7f8522006-06-28 15:08:22 +02005721/* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
5722 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
5723 */
5724
5725static struct snd_kcontrol_new alc883_base_mixer[] = {
5726 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5727 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
5728 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
5729 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
5730 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
5731 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
5732 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
5733 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
5734 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
5735 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
5736 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
5737 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5738 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5739 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5740 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5741 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
Thomas De Schampheleire32360412007-01-24 16:13:35 +01005742 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
Takashi Iwai9c7f8522006-06-28 15:08:22 +02005743 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5744 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
Thomas De Schampheleire32360412007-01-24 16:13:35 +01005745 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
Takashi Iwai9c7f8522006-06-28 15:08:22 +02005746 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
5747 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
5748 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
5749 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5750 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5751 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
5752 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
5753 {
5754 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5755 /* .name = "Capture Source", */
5756 .name = "Input Source",
5757 .count = 2,
5758 .info = alc883_mux_enum_info,
5759 .get = alc883_mux_enum_get,
5760 .put = alc883_mux_enum_put,
5761 },
5762 { } /* end */
5763};
5764
5765static struct snd_kcontrol_new alc883_3ST_2ch_mixer[] = {
5766 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5767 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
5768 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
5769 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5770 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5771 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5772 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5773 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
Thomas De Schampheleire32360412007-01-24 16:13:35 +01005774 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
Takashi Iwai9c7f8522006-06-28 15:08:22 +02005775 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5776 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
Thomas De Schampheleire32360412007-01-24 16:13:35 +01005777 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
Takashi Iwai9c7f8522006-06-28 15:08:22 +02005778 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
5779 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
5780 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
5781 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5782 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5783 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
5784 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
5785 {
5786 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5787 /* .name = "Capture Source", */
5788 .name = "Input Source",
5789 .count = 2,
5790 .info = alc883_mux_enum_info,
5791 .get = alc883_mux_enum_get,
5792 .put = alc883_mux_enum_put,
5793 },
5794 { } /* end */
5795};
5796
5797static struct snd_kcontrol_new alc883_3ST_6ch_mixer[] = {
5798 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5799 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
5800 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
5801 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
5802 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
5803 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
5804 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
5805 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
5806 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
5807 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5808 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5809 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5810 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5811 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
Thomas De Schampheleire32360412007-01-24 16:13:35 +01005812 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
Takashi Iwai9c7f8522006-06-28 15:08:22 +02005813 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5814 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
Thomas De Schampheleire32360412007-01-24 16:13:35 +01005815 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
Takashi Iwai9c7f8522006-06-28 15:08:22 +02005816 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
5817 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
5818 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
5819 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5820 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5821 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
5822 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
5823 {
5824 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5825 /* .name = "Capture Source", */
5826 .name = "Input Source",
5827 .count = 2,
5828 .info = alc883_mux_enum_info,
5829 .get = alc883_mux_enum_get,
5830 .put = alc883_mux_enum_put,
5831 },
5832 { } /* end */
5833};
5834
Takashi Iwaid1d985f2006-11-23 19:27:12 +01005835static struct snd_kcontrol_new alc883_fivestack_mixer[] = {
Tobin Davisc07584c2006-10-13 12:32:16 +02005836 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5837 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
5838 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
5839 HDA_CODEC_MUTE("Surround Playback Switch", 0x15, 0x0, HDA_OUTPUT),
5840 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
5841 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
5842 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x16, 1, 0x0, HDA_OUTPUT),
5843 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT),
5844 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
5845 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5846 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5847 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5848 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5849 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
Thomas De Schampheleire32360412007-01-24 16:13:35 +01005850 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
Tobin Davisc07584c2006-10-13 12:32:16 +02005851 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5852 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
Thomas De Schampheleire32360412007-01-24 16:13:35 +01005853 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
Tobin Davisc07584c2006-10-13 12:32:16 +02005854 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
5855 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
5856 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
5857 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5858 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5859
5860 {
5861 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5862 /* .name = "Capture Source", */
5863 .name = "Input Source",
5864 .count = 1,
5865 .info = alc883_mux_enum_info,
5866 .get = alc883_mux_enum_get,
5867 .put = alc883_mux_enum_put,
5868 },
5869 { } /* end */
5870};
5871
Kailang Yangccc656c2006-10-17 12:32:26 +02005872static struct snd_kcontrol_new alc883_tagra_mixer[] = {
5873 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5874 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
5875 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
5876 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
5877 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
5878 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
5879 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
5880 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
5881 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
5882 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5883 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5884 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5885 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5886 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
Thomas De Schampheleire32360412007-01-24 16:13:35 +01005887 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
Kailang Yangccc656c2006-10-17 12:32:26 +02005888 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5889 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5890 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5891 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
5892 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
5893 {
5894 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5895 /* .name = "Capture Source", */
5896 .name = "Input Source",
5897 .count = 2,
5898 .info = alc883_mux_enum_info,
5899 .get = alc883_mux_enum_get,
5900 .put = alc883_mux_enum_put,
5901 },
5902 { } /* end */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02005903};
Kailang Yangccc656c2006-10-17 12:32:26 +02005904
5905static struct snd_kcontrol_new alc883_tagra_2ch_mixer[] = {
5906 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5907 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
5908 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
5909 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5910 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5911 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
Thomas De Schampheleire32360412007-01-24 16:13:35 +01005912 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
Kailang Yangccc656c2006-10-17 12:32:26 +02005913 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5914 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5915 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5916 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
5917 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
5918 {
5919 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5920 /* .name = "Capture Source", */
5921 .name = "Input Source",
5922 .count = 2,
5923 .info = alc883_mux_enum_info,
5924 .get = alc883_mux_enum_get,
5925 .put = alc883_mux_enum_put,
5926 },
5927 { } /* end */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02005928};
Kailang Yangccc656c2006-10-17 12:32:26 +02005929
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005930static struct snd_kcontrol_new alc883_lenovo_101e_2ch_mixer[] = {
5931 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5932 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
5933 HDA_CODEC_VOLUME("iSpeaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
5934 HDA_BIND_MUTE("iSpeaker Playback Switch", 0x0d, 2, HDA_INPUT),
5935 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
5936 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
5937 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5938 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
5939 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5940 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5941 {
5942 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5943 /* .name = "Capture Source", */
5944 .name = "Input Source",
5945 .count = 1,
5946 .info = alc883_mux_enum_info,
5947 .get = alc883_mux_enum_get,
5948 .put = alc883_mux_enum_put,
5949 },
5950 { } /* end */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02005951};
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005952
Kailang Yang272a5272007-05-14 11:00:38 +02005953static struct snd_kcontrol_new alc883_lenovo_nb0763_mixer[] = {
5954 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5955 HDA_BIND_MUTE("Speaker Playback Switch", 0x0c, 2, HDA_INPUT),
5956 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
5957 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5958 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5959 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5960 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5961 HDA_CODEC_VOLUME("iMic Playback Volume", 0x0b, 0x1, HDA_INPUT),
5962 HDA_CODEC_MUTE("iMic Playback Switch", 0x0b, 0x1, HDA_INPUT),
5963 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5964 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5965 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
5966 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
5967 {
5968 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5969 /* .name = "Capture Source", */
5970 .name = "Input Source",
5971 .count = 2,
5972 .info = alc883_mux_enum_info,
5973 .get = alc883_mux_enum_get,
5974 .put = alc883_mux_enum_put,
5975 },
5976 { } /* end */
5977};
5978
5979static struct snd_kcontrol_new alc883_medion_md2_mixer[] = {
5980 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5981 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
5982 HDA_CODEC_MUTE("Front Playback Switch", 0x15, 0x0, HDA_OUTPUT),
5983 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5984 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5985 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5986 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5987 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5988 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5989 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5990 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5991 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
5992 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
5993 {
5994 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5995 /* .name = "Capture Source", */
5996 .name = "Input Source",
5997 .count = 2,
5998 .info = alc883_mux_enum_info,
5999 .get = alc883_mux_enum_get,
6000 .put = alc883_mux_enum_put,
6001 },
6002 { } /* end */
6003};
6004
Takashi Iwai9c7f8522006-06-28 15:08:22 +02006005static struct snd_kcontrol_new alc883_chmode_mixer[] = {
6006 {
6007 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6008 .name = "Channel Mode",
6009 .info = alc_ch_mode_info,
6010 .get = alc_ch_mode_get,
6011 .put = alc_ch_mode_put,
6012 },
6013 { } /* end */
6014};
6015
6016static struct hda_verb alc883_init_verbs[] = {
6017 /* ADC1: mute amp left and right */
6018 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6019 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
6020 /* ADC2: mute amp left and right */
6021 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6022 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
6023 /* Front mixer: unmute input/output amp left and right (volume = 0) */
6024 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6025 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6026 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
6027 /* Rear mixer */
6028 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6029 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6030 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
6031 /* CLFE mixer */
6032 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6033 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6034 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
6035 /* Side mixer */
6036 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6037 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6038 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
6039
6040 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6041 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6042 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
6043 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
6044 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
6045
6046 /* Front Pin: output 0 (0x0c) */
6047 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
6048 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
6049 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
6050 /* Rear Pin: output 1 (0x0d) */
6051 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
6052 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
6053 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
6054 /* CLFE Pin: output 2 (0x0e) */
6055 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
6056 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
6057 {0x16, AC_VERB_SET_CONNECT_SEL, 0x02},
6058 /* Side Pin: output 3 (0x0f) */
6059 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
6060 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
6061 {0x17, AC_VERB_SET_CONNECT_SEL, 0x03},
6062 /* Mic (rear) pin: input vref at 80% */
6063 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
6064 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
6065 /* Front Mic pin: input vref at 80% */
6066 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
6067 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
6068 /* Line In pin: input */
6069 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
6070 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
6071 /* Line-2 In: Headphone output (output 0 - 0x0c) */
6072 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6073 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
6074 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
6075 /* CD pin widget for input */
6076 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
6077
6078 /* FIXME: use matrix-type input source selection */
6079 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
6080 /* Input mixer2 */
6081 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6082 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6083 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
6084 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
6085 /* Input mixer3 */
6086 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6087 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6088 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
6089 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
6090 { }
6091};
6092
Kailang Yangccc656c2006-10-17 12:32:26 +02006093static struct hda_verb alc883_tagra_verbs[] = {
6094 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6095 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6096
6097 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6098 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
6099
6100 {0x18, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
6101 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/surround */
6102 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
6103
6104 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02006105 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
6106 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
6107 {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
Kailang Yangccc656c2006-10-17 12:32:26 +02006108
6109 { } /* end */
6110};
6111
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006112static struct hda_verb alc883_lenovo_101e_verbs[] = {
6113 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
6114 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_FRONT_EVENT|AC_USRSP_EN},
6115 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT|AC_USRSP_EN},
6116 { } /* end */
6117};
6118
Kailang Yang272a5272007-05-14 11:00:38 +02006119static struct hda_verb alc883_lenovo_nb0763_verbs[] = {
6120 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
6121 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6122 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
6123 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6124 { } /* end */
6125};
6126
6127static struct hda_verb alc888_lenovo_ms7195_verbs[] = {
6128 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6129 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6130 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
6131 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_FRONT_EVENT | AC_USRSP_EN},
6132 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
6133 { } /* end */
6134};
6135
6136/* toggle front-jack and RCA according to the hp-jack state */
6137static void alc888_lenovo_ms7195_front_automute(struct hda_codec *codec)
6138{
6139 unsigned int present;
6140
6141 present = snd_hda_codec_read(codec, 0x1b, 0,
6142 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
6143 snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
6144 0x80, present ? 0x80 : 0);
6145 snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
6146 0x80, present ? 0x80 : 0);
6147 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
6148 0x80, present ? 0x80 : 0);
6149 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
6150 0x80, present ? 0x80 : 0);
6151
6152}
6153
6154/* toggle RCA according to the front-jack state */
6155static void alc888_lenovo_ms7195_rca_automute(struct hda_codec *codec)
6156{
6157 unsigned int present;
6158
6159 present = snd_hda_codec_read(codec, 0x14, 0,
6160 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
6161 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
6162 0x80, present ? 0x80 : 0);
6163 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
6164 0x80, present ? 0x80 : 0);
6165
6166}
6167static void alc883_lenovo_ms7195_unsol_event(struct hda_codec *codec,
6168 unsigned int res)
6169{
6170 if ((res >> 26) == ALC880_HP_EVENT)
6171 alc888_lenovo_ms7195_front_automute(codec);
6172 if ((res >> 26) == ALC880_FRONT_EVENT)
6173 alc888_lenovo_ms7195_rca_automute(codec);
6174}
6175
6176static struct hda_verb alc883_medion_md2_verbs[] = {
6177 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6178 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6179
6180 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6181
6182 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
6183 { } /* end */
6184};
6185
6186/* toggle speaker-output according to the hp-jack state */
6187static void alc883_medion_md2_automute(struct hda_codec *codec)
6188{
6189 unsigned int present;
6190
6191 present = snd_hda_codec_read(codec, 0x14, 0,
6192 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
6193 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
6194 0x80, present ? 0x80 : 0);
6195 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
6196 0x80, present ? 0x80 : 0);
6197}
6198
6199static void alc883_medion_md2_unsol_event(struct hda_codec *codec,
6200 unsigned int res)
6201{
6202 if ((res >> 26) == ALC880_HP_EVENT)
6203 alc883_medion_md2_automute(codec);
6204}
6205
Kailang Yangccc656c2006-10-17 12:32:26 +02006206/* toggle speaker-output according to the hp-jack state */
6207static void alc883_tagra_automute(struct hda_codec *codec)
6208{
6209 unsigned int present;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02006210 unsigned char bits;
Kailang Yangccc656c2006-10-17 12:32:26 +02006211
6212 present = snd_hda_codec_read(codec, 0x14, 0,
6213 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02006214 bits = present ? 0x80 : 0;
Kailang Yangccc656c2006-10-17 12:32:26 +02006215 snd_hda_codec_amp_update(codec, 0x1b, 0, HDA_OUTPUT, 0,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02006216 0x80, bits);
Kailang Yangccc656c2006-10-17 12:32:26 +02006217 snd_hda_codec_amp_update(codec, 0x1b, 1, HDA_OUTPUT, 0,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02006218 0x80, bits);
6219 snd_hda_codec_write(codec, 1, 0, AC_VERB_SET_GPIO_DATA,
6220 present ? 1 : 3);
Kailang Yangccc656c2006-10-17 12:32:26 +02006221}
6222
6223static void alc883_tagra_unsol_event(struct hda_codec *codec, unsigned int res)
6224{
6225 if ((res >> 26) == ALC880_HP_EVENT)
6226 alc883_tagra_automute(codec);
6227}
6228
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006229static void alc883_lenovo_101e_ispeaker_automute(struct hda_codec *codec)
6230{
6231 unsigned int present;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02006232 unsigned char bits;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006233
6234 present = snd_hda_codec_read(codec, 0x14, 0,
6235 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02006236 bits = present ? 0x80 : 0;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006237 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02006238 0x80, bits);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006239 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02006240 0x80, bits);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006241}
6242
6243static void alc883_lenovo_101e_all_automute(struct hda_codec *codec)
6244{
6245 unsigned int present;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02006246 unsigned char bits;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006247
6248 present = snd_hda_codec_read(codec, 0x1b, 0,
6249 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02006250 bits = present ? 0x80 : 0;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006251 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02006252 0x80, bits);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006253 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02006254 0x80, bits);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006255 snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02006256 0x80, bits);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006257 snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02006258 0x80, bits);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006259}
6260
6261static void alc883_lenovo_101e_unsol_event(struct hda_codec *codec,
6262 unsigned int res)
6263{
6264 if ((res >> 26) == ALC880_HP_EVENT)
6265 alc883_lenovo_101e_all_automute(codec);
6266 if ((res >> 26) == ALC880_FRONT_EVENT)
6267 alc883_lenovo_101e_ispeaker_automute(codec);
6268}
6269
Takashi Iwai9c7f8522006-06-28 15:08:22 +02006270/*
6271 * generic initialization of ADC, input mixers and output mixers
6272 */
6273static struct hda_verb alc883_auto_init_verbs[] = {
6274 /*
6275 * Unmute ADC0-2 and set the default input to mic-in
6276 */
6277 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
6278 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6279 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
6280 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6281
6282 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
6283 * mixer widget
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02006284 * Note: PASD motherboards uses the Line In 2 as the input for
6285 * front panel mic (mic 2)
Takashi Iwai9c7f8522006-06-28 15:08:22 +02006286 */
6287 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
6288 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6289 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6290 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
6291 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
6292 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
6293
6294 /*
6295 * Set up output mixers (0x0c - 0x0f)
6296 */
6297 /* set vol=0 to output mixers */
6298 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6299 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6300 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6301 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6302 /* set up input amps for analog loopback */
6303 /* Amp Indices: DAC = 0, mixer = 1 */
6304 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6305 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6306 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6307 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6308 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6309 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6310 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6311 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6312 {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6313 {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6314
6315 /* FIXME: use matrix-type input source selection */
6316 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
6317 /* Input mixer1 */
6318 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6319 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6320 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02006321 /* {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)}, */
Takashi Iwai9c7f8522006-06-28 15:08:22 +02006322 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
6323 /* Input mixer2 */
6324 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6325 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6326 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02006327 /* {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)}, */
Takashi Iwai9c7f8522006-06-28 15:08:22 +02006328 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
6329
6330 { }
6331};
6332
6333/* capture mixer elements */
6334static struct snd_kcontrol_new alc883_capture_mixer[] = {
6335 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6336 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6337 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
6338 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
6339 {
6340 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6341 /* The multiple "Capture Source" controls confuse alsamixer
6342 * So call somewhat different..
6343 * FIXME: the controls appear in the "playback" view!
6344 */
6345 /* .name = "Capture Source", */
6346 .name = "Input Source",
6347 .count = 2,
6348 .info = alc882_mux_enum_info,
6349 .get = alc882_mux_enum_get,
6350 .put = alc882_mux_enum_put,
6351 },
6352 { } /* end */
6353};
6354
6355/* pcm configuration: identiacal with ALC880 */
6356#define alc883_pcm_analog_playback alc880_pcm_analog_playback
6357#define alc883_pcm_analog_capture alc880_pcm_analog_capture
6358#define alc883_pcm_digital_playback alc880_pcm_digital_playback
6359#define alc883_pcm_digital_capture alc880_pcm_digital_capture
6360
6361/*
6362 * configuration and preset
6363 */
Takashi Iwaif5fcc132006-11-24 17:07:44 +01006364static const char *alc883_models[ALC883_MODEL_LAST] = {
6365 [ALC883_3ST_2ch_DIG] = "3stack-dig",
6366 [ALC883_3ST_6ch_DIG] = "3stack-6ch-dig",
6367 [ALC883_3ST_6ch] = "3stack-6ch",
6368 [ALC883_6ST_DIG] = "6stack-dig",
6369 [ALC883_TARGA_DIG] = "targa-dig",
6370 [ALC883_TARGA_2ch_DIG] = "targa-2ch-dig",
Takashi Iwaif5fcc132006-11-24 17:07:44 +01006371 [ALC883_ACER] = "acer",
6372 [ALC883_MEDION] = "medion",
Kailang Yang272a5272007-05-14 11:00:38 +02006373 [ALC883_MEDION_MD2] = "medion-md2",
Takashi Iwaif5fcc132006-11-24 17:07:44 +01006374 [ALC883_LAPTOP_EAPD] = "laptop-eapd",
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006375 [ALC883_LENOVO_101E_2ch] = "lenovo-101e",
Kailang Yang272a5272007-05-14 11:00:38 +02006376 [ALC883_LENOVO_NB0763] = "lenovo-nb0763",
6377 [ALC888_LENOVO_MS7195_DIG] = "lenovo-ms7195-dig",
Takashi Iwaif5fcc132006-11-24 17:07:44 +01006378 [ALC883_AUTO] = "auto",
6379};
6380
6381static struct snd_pci_quirk alc883_cfg_tbl[] = {
6382 SND_PCI_QUIRK(0x1019, 0x6668, "ECS", ALC883_3ST_6ch_DIG),
6383 SND_PCI_QUIRK(0x108e, 0x534d, NULL, ALC883_3ST_6ch),
6384 SND_PCI_QUIRK(0x1558, 0, "Clevo laptop", ALC883_LAPTOP_EAPD),
6385 SND_PCI_QUIRK(0x105b, 0x6668, "Foxconn", ALC883_6ST_DIG),
Tobin Davis57b14f22007-04-18 23:05:36 +02006386 SND_PCI_QUIRK(0x1458, 0xa002, "MSI", ALC883_6ST_DIG),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01006387 SND_PCI_QUIRK(0x1462, 0x6668, "MSI", ALC883_6ST_DIG),
6388 SND_PCI_QUIRK(0x1462, 0x7187, "MSI", ALC883_6ST_DIG),
Tobin Davis799f88a2007-05-29 14:29:08 +02006389 SND_PCI_QUIRK(0x1462, 0x7250, "MSI", ALC883_6ST_DIG),
Leonard Norrgard2a296cb2007-01-08 11:28:22 +01006390 SND_PCI_QUIRK(0x1462, 0x7280, "MSI", ALC883_6ST_DIG),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01006391 SND_PCI_QUIRK(0x1462, 0x0579, "MSI", ALC883_TARGA_2ch_DIG),
Baruch Evendd146a62007-05-25 12:18:49 +02006392 SND_PCI_QUIRK(0x1462, 0x3729, "MSI S420", ALC883_TARGA_DIG),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01006393 SND_PCI_QUIRK(0x1462, 0x3ef9, "MSI", ALC883_TARGA_DIG),
6394 SND_PCI_QUIRK(0x1462, 0x3b7f, "MSI", ALC883_TARGA_2ch_DIG),
6395 SND_PCI_QUIRK(0x1462, 0x3fcc, "MSI", ALC883_TARGA_DIG),
6396 SND_PCI_QUIRK(0x1462, 0x3fc1, "MSI", ALC883_TARGA_DIG),
6397 SND_PCI_QUIRK(0x1462, 0x3fc3, "MSI", ALC883_TARGA_DIG),
6398 SND_PCI_QUIRK(0x1462, 0x4314, "MSI", ALC883_TARGA_DIG),
6399 SND_PCI_QUIRK(0x1462, 0x4319, "MSI", ALC883_TARGA_DIG),
6400 SND_PCI_QUIRK(0x1462, 0x4324, "MSI", ALC883_TARGA_DIG),
6401 SND_PCI_QUIRK(0x1462, 0xa422, "MSI", ALC883_TARGA_2ch_DIG),
6402 SND_PCI_QUIRK(0x1025, 0, "Acer laptop", ALC883_ACER),
Daniel T Chene60623b2007-05-29 03:41:55 -04006403 SND_PCI_QUIRK(0x15d9, 0x8780, "Supermicro PDSBA", ALC883_3ST_6ch),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01006404 SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_MEDION),
6405 SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC883_LAPTOP_EAPD),
6406 SND_PCI_QUIRK(0x8086, 0xd601, "D102GGC", ALC883_3ST_6ch),
Kailang Yang272a5272007-05-14 11:00:38 +02006407 SND_PCI_QUIRK(0x17aa, 0x101e, "Lenovo 101e", ALC883_LENOVO_101E_2ch),
6408 SND_PCI_QUIRK(0x17aa, 0x3bfd, "Lenovo NB0763", ALC883_LENOVO_NB0763),
6409 SND_PCI_QUIRK(0x17aa, 0x2085, "Lenovo NB0763", ALC883_LENOVO_NB0763),
6410 SND_PCI_QUIRK(0x17c0, 0x4071, "MEDION MD2", ALC883_MEDION_MD2),
Takashi Iwai9c7f8522006-06-28 15:08:22 +02006411 {}
6412};
6413
6414static struct alc_config_preset alc883_presets[] = {
6415 [ALC883_3ST_2ch_DIG] = {
6416 .mixers = { alc883_3ST_2ch_mixer },
6417 .init_verbs = { alc883_init_verbs },
6418 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6419 .dac_nids = alc883_dac_nids,
6420 .dig_out_nid = ALC883_DIGOUT_NID,
6421 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6422 .adc_nids = alc883_adc_nids,
6423 .dig_in_nid = ALC883_DIGIN_NID,
6424 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
6425 .channel_mode = alc883_3ST_2ch_modes,
6426 .input_mux = &alc883_capture_source,
6427 },
6428 [ALC883_3ST_6ch_DIG] = {
6429 .mixers = { alc883_3ST_6ch_mixer, alc883_chmode_mixer },
6430 .init_verbs = { alc883_init_verbs },
6431 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6432 .dac_nids = alc883_dac_nids,
6433 .dig_out_nid = ALC883_DIGOUT_NID,
6434 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6435 .adc_nids = alc883_adc_nids,
6436 .dig_in_nid = ALC883_DIGIN_NID,
6437 .num_channel_mode = ARRAY_SIZE(alc883_3ST_6ch_modes),
6438 .channel_mode = alc883_3ST_6ch_modes,
Takashi Iwai4e195a72006-07-28 14:47:34 +02006439 .need_dac_fix = 1,
Takashi Iwai9c7f8522006-06-28 15:08:22 +02006440 .input_mux = &alc883_capture_source,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02006441 },
Takashi Iwai9c7f8522006-06-28 15:08:22 +02006442 [ALC883_3ST_6ch] = {
6443 .mixers = { alc883_3ST_6ch_mixer, alc883_chmode_mixer },
6444 .init_verbs = { alc883_init_verbs },
6445 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6446 .dac_nids = alc883_dac_nids,
6447 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6448 .adc_nids = alc883_adc_nids,
6449 .num_channel_mode = ARRAY_SIZE(alc883_3ST_6ch_modes),
6450 .channel_mode = alc883_3ST_6ch_modes,
Takashi Iwai4e195a72006-07-28 14:47:34 +02006451 .need_dac_fix = 1,
Takashi Iwai9c7f8522006-06-28 15:08:22 +02006452 .input_mux = &alc883_capture_source,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02006453 },
Takashi Iwai9c7f8522006-06-28 15:08:22 +02006454 [ALC883_6ST_DIG] = {
6455 .mixers = { alc883_base_mixer, alc883_chmode_mixer },
6456 .init_verbs = { alc883_init_verbs },
6457 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6458 .dac_nids = alc883_dac_nids,
6459 .dig_out_nid = ALC883_DIGOUT_NID,
6460 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6461 .adc_nids = alc883_adc_nids,
6462 .dig_in_nid = ALC883_DIGIN_NID,
6463 .num_channel_mode = ARRAY_SIZE(alc883_sixstack_modes),
6464 .channel_mode = alc883_sixstack_modes,
6465 .input_mux = &alc883_capture_source,
6466 },
Kailang Yangccc656c2006-10-17 12:32:26 +02006467 [ALC883_TARGA_DIG] = {
6468 .mixers = { alc883_tagra_mixer, alc883_chmode_mixer },
6469 .init_verbs = { alc883_init_verbs, alc883_tagra_verbs},
6470 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6471 .dac_nids = alc883_dac_nids,
6472 .dig_out_nid = ALC883_DIGOUT_NID,
6473 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6474 .adc_nids = alc883_adc_nids,
6475 .num_channel_mode = ARRAY_SIZE(alc883_3ST_6ch_modes),
6476 .channel_mode = alc883_3ST_6ch_modes,
6477 .need_dac_fix = 1,
6478 .input_mux = &alc883_capture_source,
6479 .unsol_event = alc883_tagra_unsol_event,
6480 .init_hook = alc883_tagra_automute,
6481 },
6482 [ALC883_TARGA_2ch_DIG] = {
6483 .mixers = { alc883_tagra_2ch_mixer},
6484 .init_verbs = { alc883_init_verbs, alc883_tagra_verbs},
6485 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6486 .dac_nids = alc883_dac_nids,
6487 .dig_out_nid = ALC883_DIGOUT_NID,
6488 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6489 .adc_nids = alc883_adc_nids,
6490 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
6491 .channel_mode = alc883_3ST_2ch_modes,
6492 .input_mux = &alc883_capture_source,
6493 .unsol_event = alc883_tagra_unsol_event,
6494 .init_hook = alc883_tagra_automute,
6495 },
Vladimir Avdoninbab282b2006-08-22 13:31:58 +02006496 [ALC883_ACER] = {
6497 .mixers = { alc883_base_mixer,
6498 alc883_chmode_mixer },
6499 /* On TravelMate laptops, GPIO 0 enables the internal speaker
6500 * and the headphone jack. Turn this on and rely on the
6501 * standard mute methods whenever the user wants to turn
6502 * these outputs off.
6503 */
6504 .init_verbs = { alc883_init_verbs, alc880_gpio1_init_verbs },
6505 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6506 .dac_nids = alc883_dac_nids,
6507 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6508 .adc_nids = alc883_adc_nids,
6509 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
6510 .channel_mode = alc883_3ST_2ch_modes,
6511 .input_mux = &alc883_capture_source,
6512 },
Tobin Davisc07584c2006-10-13 12:32:16 +02006513 [ALC883_MEDION] = {
6514 .mixers = { alc883_fivestack_mixer,
6515 alc883_chmode_mixer },
6516 .init_verbs = { alc883_init_verbs,
Andrew L. Neporadab373bde2006-11-07 11:37:08 +01006517 alc883_medion_eapd_verbs },
Tobin Davisc07584c2006-10-13 12:32:16 +02006518 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6519 .dac_nids = alc883_dac_nids,
6520 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6521 .adc_nids = alc883_adc_nids,
6522 .num_channel_mode = ARRAY_SIZE(alc883_sixstack_modes),
6523 .channel_mode = alc883_sixstack_modes,
6524 .input_mux = &alc883_capture_source,
Andrew L. Neporadab373bde2006-11-07 11:37:08 +01006525 },
Kailang Yang272a5272007-05-14 11:00:38 +02006526 [ALC883_MEDION_MD2] = {
6527 .mixers = { alc883_medion_md2_mixer},
6528 .init_verbs = { alc883_init_verbs, alc883_medion_md2_verbs},
6529 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6530 .dac_nids = alc883_dac_nids,
6531 .dig_out_nid = ALC883_DIGOUT_NID,
6532 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6533 .adc_nids = alc883_adc_nids,
6534 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
6535 .channel_mode = alc883_3ST_2ch_modes,
6536 .input_mux = &alc883_capture_source,
6537 .unsol_event = alc883_medion_md2_unsol_event,
6538 .init_hook = alc883_medion_md2_automute,
6539 },
Andrew L. Neporadab373bde2006-11-07 11:37:08 +01006540 [ALC883_LAPTOP_EAPD] = {
6541 .mixers = { alc883_base_mixer,
6542 alc883_chmode_mixer },
6543 .init_verbs = { alc883_init_verbs, alc882_eapd_verbs },
6544 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6545 .dac_nids = alc883_dac_nids,
6546 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6547 .adc_nids = alc883_adc_nids,
6548 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
6549 .channel_mode = alc883_3ST_2ch_modes,
6550 .input_mux = &alc883_capture_source,
6551 },
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006552 [ALC883_LENOVO_101E_2ch] = {
6553 .mixers = { alc883_lenovo_101e_2ch_mixer},
6554 .init_verbs = { alc883_init_verbs, alc883_lenovo_101e_verbs},
6555 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6556 .dac_nids = alc883_dac_nids,
6557 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6558 .adc_nids = alc883_adc_nids,
6559 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
6560 .channel_mode = alc883_3ST_2ch_modes,
6561 .input_mux = &alc883_lenovo_101e_capture_source,
6562 .unsol_event = alc883_lenovo_101e_unsol_event,
6563 .init_hook = alc883_lenovo_101e_all_automute,
6564 },
Kailang Yang272a5272007-05-14 11:00:38 +02006565 [ALC883_LENOVO_NB0763] = {
6566 .mixers = { alc883_lenovo_nb0763_mixer },
6567 .init_verbs = { alc883_init_verbs, alc883_lenovo_nb0763_verbs},
6568 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6569 .dac_nids = alc883_dac_nids,
6570 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6571 .adc_nids = alc883_adc_nids,
6572 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
6573 .channel_mode = alc883_3ST_2ch_modes,
6574 .need_dac_fix = 1,
6575 .input_mux = &alc883_lenovo_nb0763_capture_source,
6576 .unsol_event = alc883_medion_md2_unsol_event,
6577 .init_hook = alc883_medion_md2_automute,
6578 },
6579 [ALC888_LENOVO_MS7195_DIG] = {
6580 .mixers = { alc883_3ST_6ch_mixer, alc883_chmode_mixer },
6581 .init_verbs = { alc883_init_verbs, alc888_lenovo_ms7195_verbs},
6582 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6583 .dac_nids = alc883_dac_nids,
6584 .dig_out_nid = ALC883_DIGOUT_NID,
6585 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6586 .adc_nids = alc883_adc_nids,
6587 .num_channel_mode = ARRAY_SIZE(alc883_3ST_6ch_modes),
6588 .channel_mode = alc883_3ST_6ch_modes,
6589 .need_dac_fix = 1,
6590 .input_mux = &alc883_capture_source,
6591 .unsol_event = alc883_lenovo_ms7195_unsol_event,
6592 .init_hook = alc888_lenovo_ms7195_front_automute,
6593 },
Takashi Iwai9c7f8522006-06-28 15:08:22 +02006594};
6595
6596
6597/*
6598 * BIOS auto configuration
6599 */
6600static void alc883_auto_set_output_and_unmute(struct hda_codec *codec,
6601 hda_nid_t nid, int pin_type,
6602 int dac_idx)
6603{
6604 /* set as output */
6605 struct alc_spec *spec = codec->spec;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02006606 int idx;
6607
Takashi Iwai9c7f8522006-06-28 15:08:22 +02006608 if (spec->multiout.dac_nids[dac_idx] == 0x25)
6609 idx = 4;
6610 else
6611 idx = spec->multiout.dac_nids[dac_idx] - 2;
6612
6613 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
6614 pin_type);
6615 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
6616 AMP_OUT_UNMUTE);
6617 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, idx);
6618
6619}
6620
6621static void alc883_auto_init_multi_out(struct hda_codec *codec)
6622{
6623 struct alc_spec *spec = codec->spec;
6624 int i;
6625
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006626 alc_subsystem_id(codec, 0x15, 0x1b, 0x14);
Takashi Iwai9c7f8522006-06-28 15:08:22 +02006627 for (i = 0; i <= HDA_SIDE; i++) {
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02006628 hda_nid_t nid = spec->autocfg.line_out_pins[i];
Takashi Iwaibaba8ee2007-04-23 17:17:48 +02006629 int pin_type = get_pin_type(spec->autocfg.line_out_type);
Takashi Iwai9c7f8522006-06-28 15:08:22 +02006630 if (nid)
Takashi Iwaibaba8ee2007-04-23 17:17:48 +02006631 alc883_auto_set_output_and_unmute(codec, nid, pin_type,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02006632 i);
Takashi Iwai9c7f8522006-06-28 15:08:22 +02006633 }
6634}
6635
6636static void alc883_auto_init_hp_out(struct hda_codec *codec)
6637{
6638 struct alc_spec *spec = codec->spec;
6639 hda_nid_t pin;
6640
Takashi Iwaieb06ed82006-09-20 17:10:27 +02006641 pin = spec->autocfg.hp_pins[0];
Takashi Iwai9c7f8522006-06-28 15:08:22 +02006642 if (pin) /* connect to front */
6643 /* use dac 0 */
6644 alc883_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
6645}
6646
6647#define alc883_is_input_pin(nid) alc880_is_input_pin(nid)
6648#define ALC883_PIN_CD_NID ALC880_PIN_CD_NID
6649
6650static void alc883_auto_init_analog_input(struct hda_codec *codec)
6651{
6652 struct alc_spec *spec = codec->spec;
6653 int i;
6654
6655 for (i = 0; i < AUTO_PIN_LAST; i++) {
6656 hda_nid_t nid = spec->autocfg.input_pins[i];
6657 if (alc883_is_input_pin(nid)) {
6658 snd_hda_codec_write(codec, nid, 0,
6659 AC_VERB_SET_PIN_WIDGET_CONTROL,
6660 (i <= AUTO_PIN_FRONT_MIC ?
6661 PIN_VREF80 : PIN_IN));
6662 if (nid != ALC883_PIN_CD_NID)
6663 snd_hda_codec_write(codec, nid, 0,
6664 AC_VERB_SET_AMP_GAIN_MUTE,
6665 AMP_OUT_MUTE);
6666 }
6667 }
6668}
6669
6670/* almost identical with ALC880 parser... */
6671static int alc883_parse_auto_config(struct hda_codec *codec)
6672{
6673 struct alc_spec *spec = codec->spec;
6674 int err = alc880_parse_auto_config(codec);
6675
6676 if (err < 0)
6677 return err;
6678 else if (err > 0)
6679 /* hack - override the init verbs */
6680 spec->init_verbs[0] = alc883_auto_init_verbs;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02006681 spec->mixers[spec->num_mixers] = alc883_capture_mixer;
6682 spec->num_mixers++;
Takashi Iwai9c7f8522006-06-28 15:08:22 +02006683 return err;
6684}
6685
6686/* additional initialization for auto-configuration model */
6687static void alc883_auto_init(struct hda_codec *codec)
6688{
6689 alc883_auto_init_multi_out(codec);
6690 alc883_auto_init_hp_out(codec);
6691 alc883_auto_init_analog_input(codec);
6692}
6693
6694static int patch_alc883(struct hda_codec *codec)
6695{
6696 struct alc_spec *spec;
6697 int err, board_config;
6698
6699 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
6700 if (spec == NULL)
6701 return -ENOMEM;
6702
6703 codec->spec = spec;
6704
Takashi Iwaif5fcc132006-11-24 17:07:44 +01006705 board_config = snd_hda_check_board_config(codec, ALC883_MODEL_LAST,
6706 alc883_models,
6707 alc883_cfg_tbl);
6708 if (board_config < 0) {
Takashi Iwai9c7f8522006-06-28 15:08:22 +02006709 printk(KERN_INFO "hda_codec: Unknown model for ALC883, "
6710 "trying auto-probe from BIOS...\n");
6711 board_config = ALC883_AUTO;
6712 }
6713
6714 if (board_config == ALC883_AUTO) {
6715 /* automatic parse from the BIOS config */
6716 err = alc883_parse_auto_config(codec);
6717 if (err < 0) {
6718 alc_free(codec);
6719 return err;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02006720 } else if (!err) {
Takashi Iwai9c7f8522006-06-28 15:08:22 +02006721 printk(KERN_INFO
6722 "hda_codec: Cannot set up configuration "
6723 "from BIOS. Using base mode...\n");
6724 board_config = ALC883_3ST_2ch_DIG;
6725 }
6726 }
6727
6728 if (board_config != ALC883_AUTO)
6729 setup_preset(spec, &alc883_presets[board_config]);
6730
6731 spec->stream_name_analog = "ALC883 Analog";
6732 spec->stream_analog_playback = &alc883_pcm_analog_playback;
6733 spec->stream_analog_capture = &alc883_pcm_analog_capture;
6734
6735 spec->stream_name_digital = "ALC883 Digital";
6736 spec->stream_digital_playback = &alc883_pcm_digital_playback;
6737 spec->stream_digital_capture = &alc883_pcm_digital_capture;
6738
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02006739 if (!spec->adc_nids && spec->input_mux) {
Takashi Iwai4b146cb2006-07-28 14:42:36 +02006740 spec->adc_nids = alc883_adc_nids;
6741 spec->num_adc_nids = ARRAY_SIZE(alc883_adc_nids);
6742 }
Takashi Iwai9c7f8522006-06-28 15:08:22 +02006743
6744 codec->patch_ops = alc_patch_ops;
6745 if (board_config == ALC883_AUTO)
6746 spec->init_hook = alc883_auto_init;
6747
6748 return 0;
6749}
6750
6751/*
Kailang Yangdf694da2005-12-05 19:42:22 +01006752 * ALC262 support
6753 */
6754
6755#define ALC262_DIGOUT_NID ALC880_DIGOUT_NID
6756#define ALC262_DIGIN_NID ALC880_DIGIN_NID
6757
6758#define alc262_dac_nids alc260_dac_nids
6759#define alc262_adc_nids alc882_adc_nids
6760#define alc262_adc_nids_alt alc882_adc_nids_alt
6761
6762#define alc262_modes alc260_modes
Takashi Iwaic5f2ea02005-12-06 18:54:31 +01006763#define alc262_capture_source alc882_capture_source
Kailang Yangdf694da2005-12-05 19:42:22 +01006764
6765static struct snd_kcontrol_new alc262_base_mixer[] = {
6766 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6767 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
6768 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6769 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6770 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
6771 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
6772 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6773 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
Takashi Iwaicc69d122007-02-15 19:29:26 +01006774 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
Kailang Yangdf694da2005-12-05 19:42:22 +01006775 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
6776 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
Takashi Iwaicc69d122007-02-15 19:29:26 +01006777 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
Kailang Yangdf694da2005-12-05 19:42:22 +01006778 /* HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x0b, 0x05, HDA_INPUT),
6779 HDA_CODEC_MUTE("PC Beelp Playback Switch", 0x0b, 0x05, HDA_INPUT), */
6780 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0D, 0x0, HDA_OUTPUT),
6781 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
6782 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
6783 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT),
Kailang Yangdf694da2005-12-05 19:42:22 +01006784 { } /* end */
Takashi Iwai834be882006-03-01 14:16:17 +01006785};
6786
Kailang Yangccc656c2006-10-17 12:32:26 +02006787static struct snd_kcontrol_new alc262_hippo1_mixer[] = {
6788 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6789 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
6790 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6791 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6792 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
6793 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
6794 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6795 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
Takashi Iwaicc69d122007-02-15 19:29:26 +01006796 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
Kailang Yangccc656c2006-10-17 12:32:26 +02006797 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
6798 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
Takashi Iwaicc69d122007-02-15 19:29:26 +01006799 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
Kailang Yangccc656c2006-10-17 12:32:26 +02006800 /* HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x0b, 0x05, HDA_INPUT),
6801 HDA_CODEC_MUTE("PC Beelp Playback Switch", 0x0b, 0x05, HDA_INPUT), */
6802 /*HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0D, 0x0, HDA_OUTPUT),*/
6803 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
6804 { } /* end */
6805};
6806
Takashi Iwai9c7f8522006-06-28 15:08:22 +02006807static struct snd_kcontrol_new alc262_HP_BPC_mixer[] = {
6808 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6809 HDA_CODEC_MUTE("Front Playback Switch", 0x15, 0x0, HDA_OUTPUT),
6810 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
6811 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
6812 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT),
6813
6814 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6815 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
Takashi Iwaicc69d122007-02-15 19:29:26 +01006816 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
Takashi Iwai9c7f8522006-06-28 15:08:22 +02006817 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
6818 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
Takashi Iwaicc69d122007-02-15 19:29:26 +01006819 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
Takashi Iwai9c7f8522006-06-28 15:08:22 +02006820 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
6821 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
6822 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6823 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6824 HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x0b, 0x05, HDA_INPUT),
6825 HDA_CODEC_MUTE("PC Beep Playback Switch", 0x0b, 0x05, HDA_INPUT),
6826 HDA_CODEC_VOLUME("AUX IN Playback Volume", 0x0b, 0x06, HDA_INPUT),
6827 HDA_CODEC_MUTE("AUX IN Playback Switch", 0x0b, 0x06, HDA_INPUT),
6828 { } /* end */
6829};
6830
Kailang Yangcd7509a2007-01-26 18:33:17 +01006831static struct snd_kcontrol_new alc262_HP_BPC_WildWest_mixer[] = {
6832 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6833 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
6834 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
6835 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
6836 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
6837 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT),
6838 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x02, HDA_INPUT),
6839 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x02, HDA_INPUT),
Takashi Iwaicc69d122007-02-15 19:29:26 +01006840 HDA_CODEC_VOLUME("Front Mic Boost", 0x1a, 0, HDA_INPUT),
Kailang Yangcd7509a2007-01-26 18:33:17 +01006841 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x01, HDA_INPUT),
6842 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x01, HDA_INPUT),
6843 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6844 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6845 HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x0b, 0x05, HDA_INPUT),
6846 HDA_CODEC_MUTE("PC Beep Playback Switch", 0x0b, 0x05, HDA_INPUT),
6847 { } /* end */
6848};
6849
6850static struct snd_kcontrol_new alc262_HP_BPC_WildWest_option_mixer[] = {
6851 HDA_CODEC_VOLUME("Rear Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6852 HDA_CODEC_MUTE("Rear Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
Takashi Iwaicc69d122007-02-15 19:29:26 +01006853 HDA_CODEC_VOLUME("Rear Mic Boost", 0x18, 0, HDA_INPUT),
Kailang Yangcd7509a2007-01-26 18:33:17 +01006854 { } /* end */
6855};
6856
Kailang Yang272a5272007-05-14 11:00:38 +02006857static struct snd_kcontrol_new alc262_sony_mixer[] = {
6858 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6859 HDA_CODEC_MUTE("Front Playback Switch", 0x15, 0x0, HDA_OUTPUT),
6860 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6861 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6862 HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
6863 HDA_CODEC_MUTE("ATAPI Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
6864 { } /* end */
6865};
6866
6867
6868
Kailang Yangdf694da2005-12-05 19:42:22 +01006869#define alc262_capture_mixer alc882_capture_mixer
6870#define alc262_capture_alt_mixer alc882_capture_alt_mixer
6871
6872/*
6873 * generic initialization of ADC, input mixers and output mixers
6874 */
6875static struct hda_verb alc262_init_verbs[] = {
6876 /*
6877 * Unmute ADC0-2 and set the default input to mic-in
6878 */
6879 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
6880 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6881 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
6882 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6883 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
6884 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6885
6886 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
6887 * mixer widget
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02006888 * Note: PASD motherboards uses the Line In 2 as the input for
6889 * front panel mic (mic 2)
Kailang Yangdf694da2005-12-05 19:42:22 +01006890 */
6891 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
6892 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6893 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6894 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
6895 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
6896 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
6897
6898 /*
6899 * Set up output mixers (0x0c - 0x0e)
6900 */
6901 /* set vol=0 to output mixers */
6902 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6903 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6904 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6905 /* set up input amps for analog loopback */
6906 /* Amp Indices: DAC = 0, mixer = 1 */
6907 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6908 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6909 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6910 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6911 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6912 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6913
6914 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
6915 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
6916 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
6917 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
6918 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
6919 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
6920
6921 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
6922 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
6923 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
6924 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
6925 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
6926
6927 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
6928 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
6929
6930 /* FIXME: use matrix-type input source selection */
6931 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
6932 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
6933 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
6934 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
6935 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
6936 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
6937 /* Input mixer2 */
6938 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
6939 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
6940 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
6941 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
6942 /* Input mixer3 */
6943 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
6944 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
6945 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02006946 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
Kailang Yangdf694da2005-12-05 19:42:22 +01006947
6948 { }
6949};
6950
Kailang Yangccc656c2006-10-17 12:32:26 +02006951static struct hda_verb alc262_hippo_unsol_verbs[] = {
6952 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
6953 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6954 {}
6955};
6956
6957static struct hda_verb alc262_hippo1_unsol_verbs[] = {
6958 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
6959 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
6960 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
6961
6962 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
6963 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6964 {}
6965};
6966
Kailang Yang272a5272007-05-14 11:00:38 +02006967static struct hda_verb alc262_sony_unsol_verbs[] = {
6968 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
6969 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
6970 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24}, // Front Mic
6971
6972 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
6973 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6974};
6975
Kailang Yangccc656c2006-10-17 12:32:26 +02006976/* mute/unmute internal speaker according to the hp jack and mute state */
6977static void alc262_hippo_automute(struct hda_codec *codec, int force)
6978{
6979 struct alc_spec *spec = codec->spec;
6980 unsigned int mute;
6981
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02006982 if (force || !spec->sense_updated) {
Kailang Yangccc656c2006-10-17 12:32:26 +02006983 unsigned int present;
6984 /* need to execute and sync at first */
6985 snd_hda_codec_read(codec, 0x15, 0, AC_VERB_SET_PIN_SENSE, 0);
6986 present = snd_hda_codec_read(codec, 0x15, 0,
6987 AC_VERB_GET_PIN_SENSE, 0);
6988 spec->jack_present = (present & 0x80000000) != 0;
6989 spec->sense_updated = 1;
6990 }
6991 if (spec->jack_present) {
6992 /* mute internal speaker */
6993 snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
6994 0x80, 0x80);
6995 snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
6996 0x80, 0x80);
6997 } else {
6998 /* unmute internal speaker if necessary */
6999 mute = snd_hda_codec_amp_read(codec, 0x15, 0, HDA_OUTPUT, 0);
7000 snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
7001 0x80, mute & 0x80);
7002 mute = snd_hda_codec_amp_read(codec, 0x15, 1, HDA_OUTPUT, 0);
7003 snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
7004 0x80, mute & 0x80);
7005 }
7006}
7007
7008/* unsolicited event for HP jack sensing */
7009static void alc262_hippo_unsol_event(struct hda_codec *codec,
7010 unsigned int res)
7011{
7012 if ((res >> 26) != ALC880_HP_EVENT)
7013 return;
7014 alc262_hippo_automute(codec, 1);
7015}
7016
7017static void alc262_hippo1_automute(struct hda_codec *codec, int force)
7018{
7019 struct alc_spec *spec = codec->spec;
7020 unsigned int mute;
7021
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02007022 if (force || !spec->sense_updated) {
Kailang Yangccc656c2006-10-17 12:32:26 +02007023 unsigned int present;
7024 /* need to execute and sync at first */
7025 snd_hda_codec_read(codec, 0x1b, 0, AC_VERB_SET_PIN_SENSE, 0);
7026 present = snd_hda_codec_read(codec, 0x1b, 0,
7027 AC_VERB_GET_PIN_SENSE, 0);
7028 spec->jack_present = (present & 0x80000000) != 0;
7029 spec->sense_updated = 1;
7030 }
7031 if (spec->jack_present) {
7032 /* mute internal speaker */
7033 snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
7034 0x80, 0x80);
7035 snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
7036 0x80, 0x80);
7037 } else {
7038 /* unmute internal speaker if necessary */
7039 mute = snd_hda_codec_amp_read(codec, 0x1b, 0, HDA_OUTPUT, 0);
7040 snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
7041 0x80, mute & 0x80);
7042 mute = snd_hda_codec_amp_read(codec, 0x1b, 1, HDA_OUTPUT, 0);
7043 snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
7044 0x80, mute & 0x80);
7045 }
7046}
7047
7048/* unsolicited event for HP jack sensing */
7049static void alc262_hippo1_unsol_event(struct hda_codec *codec,
7050 unsigned int res)
7051{
7052 if ((res >> 26) != ALC880_HP_EVENT)
7053 return;
7054 alc262_hippo1_automute(codec, 1);
7055}
7056
Takashi Iwai834be882006-03-01 14:16:17 +01007057/*
7058 * fujitsu model
7059 * 0x14 = headphone/spdif-out, 0x15 = internal speaker
7060 */
7061
7062#define ALC_HP_EVENT 0x37
7063
7064static struct hda_verb alc262_fujitsu_unsol_verbs[] = {
7065 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC_HP_EVENT},
7066 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
7067 {}
7068};
7069
7070static struct hda_input_mux alc262_fujitsu_capture_source = {
7071 .num_items = 2,
7072 .items = {
7073 { "Mic", 0x0 },
7074 { "CD", 0x4 },
7075 },
7076};
7077
Takashi Iwai9c7f8522006-06-28 15:08:22 +02007078static struct hda_input_mux alc262_HP_capture_source = {
7079 .num_items = 5,
7080 .items = {
7081 { "Mic", 0x0 },
7082 { "Front Mic", 0x3 },
7083 { "Line", 0x2 },
7084 { "CD", 0x4 },
7085 { "AUX IN", 0x6 },
7086 },
7087};
7088
Takashi Iwai834be882006-03-01 14:16:17 +01007089/* mute/unmute internal speaker according to the hp jack and mute state */
7090static void alc262_fujitsu_automute(struct hda_codec *codec, int force)
7091{
7092 struct alc_spec *spec = codec->spec;
7093 unsigned int mute;
7094
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02007095 if (force || !spec->sense_updated) {
Takashi Iwai834be882006-03-01 14:16:17 +01007096 unsigned int present;
7097 /* need to execute and sync at first */
7098 snd_hda_codec_read(codec, 0x14, 0, AC_VERB_SET_PIN_SENSE, 0);
7099 present = snd_hda_codec_read(codec, 0x14, 0,
7100 AC_VERB_GET_PIN_SENSE, 0);
7101 spec->jack_present = (present & 0x80000000) != 0;
7102 spec->sense_updated = 1;
7103 }
7104 if (spec->jack_present) {
7105 /* mute internal speaker */
7106 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
7107 0x80, 0x80);
7108 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
7109 0x80, 0x80);
7110 } else {
7111 /* unmute internal speaker if necessary */
7112 mute = snd_hda_codec_amp_read(codec, 0x14, 0, HDA_OUTPUT, 0);
7113 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
7114 0x80, mute & 0x80);
7115 mute = snd_hda_codec_amp_read(codec, 0x14, 1, HDA_OUTPUT, 0);
7116 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
7117 0x80, mute & 0x80);
7118 }
7119}
7120
7121/* unsolicited event for HP jack sensing */
7122static void alc262_fujitsu_unsol_event(struct hda_codec *codec,
7123 unsigned int res)
7124{
7125 if ((res >> 26) != ALC_HP_EVENT)
7126 return;
7127 alc262_fujitsu_automute(codec, 1);
7128}
7129
7130/* bind volumes of both NID 0x0c and 0x0d */
7131static int alc262_fujitsu_master_vol_put(struct snd_kcontrol *kcontrol,
7132 struct snd_ctl_elem_value *ucontrol)
7133{
7134 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
7135 long *valp = ucontrol->value.integer.value;
7136 int change;
7137
7138 change = snd_hda_codec_amp_update(codec, 0x0c, 0, HDA_OUTPUT, 0,
7139 0x7f, valp[0] & 0x7f);
7140 change |= snd_hda_codec_amp_update(codec, 0x0c, 1, HDA_OUTPUT, 0,
7141 0x7f, valp[1] & 0x7f);
7142 snd_hda_codec_amp_update(codec, 0x0d, 0, HDA_OUTPUT, 0,
7143 0x7f, valp[0] & 0x7f);
7144 snd_hda_codec_amp_update(codec, 0x0d, 1, HDA_OUTPUT, 0,
7145 0x7f, valp[1] & 0x7f);
7146 return change;
7147}
7148
7149/* bind hp and internal speaker mute (with plug check) */
7150static int alc262_fujitsu_master_sw_put(struct snd_kcontrol *kcontrol,
7151 struct snd_ctl_elem_value *ucontrol)
7152{
7153 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
7154 long *valp = ucontrol->value.integer.value;
7155 int change;
7156
7157 change = snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
7158 0x80, valp[0] ? 0 : 0x80);
7159 change |= snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
7160 0x80, valp[1] ? 0 : 0x80);
7161 if (change || codec->in_resume)
7162 alc262_fujitsu_automute(codec, codec->in_resume);
7163 return change;
7164}
7165
7166static struct snd_kcontrol_new alc262_fujitsu_mixer[] = {
7167 {
7168 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7169 .name = "Master Playback Volume",
7170 .info = snd_hda_mixer_amp_volume_info,
7171 .get = snd_hda_mixer_amp_volume_get,
7172 .put = alc262_fujitsu_master_vol_put,
Takashi Iwaic2566522006-08-17 18:21:36 +02007173 .tlv = { .c = snd_hda_mixer_amp_tlv },
Takashi Iwai834be882006-03-01 14:16:17 +01007174 .private_value = HDA_COMPOSE_AMP_VAL(0x0c, 3, 0, HDA_OUTPUT),
7175 },
7176 {
7177 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7178 .name = "Master Playback Switch",
7179 .info = snd_hda_mixer_amp_switch_info,
7180 .get = snd_hda_mixer_amp_switch_get,
7181 .put = alc262_fujitsu_master_sw_put,
7182 .private_value = HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT),
7183 },
7184 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
7185 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
7186 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
7187 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7188 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7189 { } /* end */
7190};
7191
Takashi Iwai304dcaa2006-07-25 14:51:16 +02007192/* additional init verbs for Benq laptops */
7193static struct hda_verb alc262_EAPD_verbs[] = {
7194 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
7195 {0x20, AC_VERB_SET_PROC_COEF, 0x3070},
7196 {}
7197};
7198
Kailang Yangdf694da2005-12-05 19:42:22 +01007199/* add playback controls from the parsed DAC table */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02007200static int alc262_auto_create_multi_out_ctls(struct alc_spec *spec,
7201 const struct auto_pin_cfg *cfg)
Kailang Yangdf694da2005-12-05 19:42:22 +01007202{
7203 hda_nid_t nid;
7204 int err;
7205
7206 spec->multiout.num_dacs = 1; /* only use one dac */
7207 spec->multiout.dac_nids = spec->private_dac_nids;
7208 spec->multiout.dac_nids[0] = 2;
7209
7210 nid = cfg->line_out_pins[0];
7211 if (nid) {
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02007212 err = add_control(spec, ALC_CTL_WIDGET_VOL,
7213 "Front Playback Volume",
7214 HDA_COMPOSE_AMP_VAL(0x0c, 3, 0, HDA_OUTPUT));
7215 if (err < 0)
Kailang Yangdf694da2005-12-05 19:42:22 +01007216 return err;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02007217 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
7218 "Front Playback Switch",
7219 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT));
7220 if (err < 0)
Kailang Yangdf694da2005-12-05 19:42:22 +01007221 return err;
7222 }
7223
Takashi Iwai82bc9552006-03-21 11:24:42 +01007224 nid = cfg->speaker_pins[0];
Kailang Yangdf694da2005-12-05 19:42:22 +01007225 if (nid) {
7226 if (nid == 0x16) {
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02007227 err = add_control(spec, ALC_CTL_WIDGET_VOL,
7228 "Speaker Playback Volume",
7229 HDA_COMPOSE_AMP_VAL(0x0e, 2, 0,
7230 HDA_OUTPUT));
7231 if (err < 0)
Kailang Yangdf694da2005-12-05 19:42:22 +01007232 return err;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02007233 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
7234 "Speaker Playback Switch",
7235 HDA_COMPOSE_AMP_VAL(nid, 2, 0,
7236 HDA_OUTPUT));
7237 if (err < 0)
Kailang Yangdf694da2005-12-05 19:42:22 +01007238 return err;
7239 } else {
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02007240 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
7241 "Speaker Playback Switch",
7242 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
7243 HDA_OUTPUT));
7244 if (err < 0)
Kailang Yangdf694da2005-12-05 19:42:22 +01007245 return err;
7246 }
7247 }
Takashi Iwaieb06ed82006-09-20 17:10:27 +02007248 nid = cfg->hp_pins[0];
Kailang Yangdf694da2005-12-05 19:42:22 +01007249 if (nid) {
7250 /* spec->multiout.hp_nid = 2; */
7251 if (nid == 0x16) {
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02007252 err = add_control(spec, ALC_CTL_WIDGET_VOL,
7253 "Headphone Playback Volume",
7254 HDA_COMPOSE_AMP_VAL(0x0e, 2, 0,
7255 HDA_OUTPUT));
7256 if (err < 0)
Kailang Yangdf694da2005-12-05 19:42:22 +01007257 return err;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02007258 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
7259 "Headphone Playback Switch",
7260 HDA_COMPOSE_AMP_VAL(nid, 2, 0,
7261 HDA_OUTPUT));
7262 if (err < 0)
Kailang Yangdf694da2005-12-05 19:42:22 +01007263 return err;
7264 } else {
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02007265 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
7266 "Headphone Playback Switch",
7267 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
7268 HDA_OUTPUT));
7269 if (err < 0)
Kailang Yangdf694da2005-12-05 19:42:22 +01007270 return err;
7271 }
7272 }
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02007273 return 0;
Kailang Yangdf694da2005-12-05 19:42:22 +01007274}
7275
7276/* identical with ALC880 */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02007277#define alc262_auto_create_analog_input_ctls \
7278 alc880_auto_create_analog_input_ctls
Kailang Yangdf694da2005-12-05 19:42:22 +01007279
7280/*
7281 * generic initialization of ADC, input mixers and output mixers
7282 */
7283static struct hda_verb alc262_volume_init_verbs[] = {
7284 /*
7285 * Unmute ADC0-2 and set the default input to mic-in
7286 */
7287 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
7288 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7289 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
7290 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7291 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
7292 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7293
7294 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
7295 * mixer widget
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02007296 * Note: PASD motherboards uses the Line In 2 as the input for
7297 * front panel mic (mic 2)
Kailang Yangdf694da2005-12-05 19:42:22 +01007298 */
7299 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
7300 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7301 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7302 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
7303 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
7304 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
7305
7306 /*
7307 * Set up output mixers (0x0c - 0x0f)
7308 */
7309 /* set vol=0 to output mixers */
7310 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7311 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7312 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7313
7314 /* set up input amps for analog loopback */
7315 /* Amp Indices: DAC = 0, mixer = 1 */
7316 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7317 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7318 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7319 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7320 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7321 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7322
7323 /* FIXME: use matrix-type input source selection */
7324 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
7325 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
7326 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7327 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
7328 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
7329 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
7330 /* Input mixer2 */
7331 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7332 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
7333 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
7334 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
7335 /* Input mixer3 */
7336 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7337 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
7338 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
7339 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
7340
7341 { }
7342};
7343
Takashi Iwai9c7f8522006-06-28 15:08:22 +02007344static struct hda_verb alc262_HP_BPC_init_verbs[] = {
7345 /*
7346 * Unmute ADC0-2 and set the default input to mic-in
7347 */
7348 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
7349 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7350 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
7351 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7352 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
7353 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7354
7355 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
7356 * mixer widget
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02007357 * Note: PASD motherboards uses the Line In 2 as the input for
7358 * front panel mic (mic 2)
Takashi Iwai9c7f8522006-06-28 15:08:22 +02007359 */
7360 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
7361 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7362 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7363 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
7364 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
7365 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
7366 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(5)},
7367 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(6)},
7368
7369 /*
7370 * Set up output mixers (0x0c - 0x0e)
7371 */
7372 /* set vol=0 to output mixers */
7373 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7374 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7375 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7376
7377 /* set up input amps for analog loopback */
7378 /* Amp Indices: DAC = 0, mixer = 1 */
7379 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7380 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7381 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7382 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7383 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7384 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7385
7386 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
7387 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
7388 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
7389
7390 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
7391 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
7392
7393 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
7394 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
7395
7396 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
7397 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
7398 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
7399 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
7400 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
7401
7402 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0x7023 },
7403 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
7404 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
7405 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, 0x7023 },
7406 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
7407 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
7408
7409
7410 /* FIXME: use matrix-type input source selection */
7411 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
7412 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
7413 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7414 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
7415 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
7416 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
7417 /* Input mixer2 */
7418 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7419 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
7420 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
7421 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
7422 /* Input mixer3 */
7423 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7424 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
7425 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
7426 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
7427
7428 { }
7429};
7430
Kailang Yangcd7509a2007-01-26 18:33:17 +01007431static struct hda_verb alc262_HP_BPC_WildWest_init_verbs[] = {
7432 /*
7433 * Unmute ADC0-2 and set the default input to mic-in
7434 */
7435 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
7436 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7437 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
7438 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7439 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
7440 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7441
7442 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
7443 * mixer widget
7444 * Note: PASD motherboards uses the Line In 2 as the input for front
7445 * panel mic (mic 2)
7446 */
7447 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
7448 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7449 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7450 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
7451 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
7452 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
7453 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(5)},
7454 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(6)},
7455 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(7)},
7456 /*
7457 * Set up output mixers (0x0c - 0x0e)
7458 */
7459 /* set vol=0 to output mixers */
7460 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7461 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7462 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7463
7464 /* set up input amps for analog loopback */
7465 /* Amp Indices: DAC = 0, mixer = 1 */
7466 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7467 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7468 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7469 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7470 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7471 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7472
7473
7474 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP }, /* HP */
7475 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT }, /* Mono */
7476 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 }, /* rear MIC */
7477 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN }, /* Line in */
7478 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 }, /* Front MIC */
7479 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT }, /* Line out */
7480 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN }, /* CD in */
7481
7482 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
7483 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
7484
7485 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
7486 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
7487
7488 /* {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0x7023 }, */
7489 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
7490 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
7491 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, 0x7023 },
7492 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
7493 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
7494
7495 /* FIXME: use matrix-type input source selection */
7496 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
7497 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
7498 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))}, /*rear MIC*/
7499 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))}, /*Line in*/
7500 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))}, /*F MIC*/
7501 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))}, /*Front*/
7502 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))}, /*CD*/
7503 /* {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x06 << 8))}, */
7504 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x07 << 8))}, /*HP*/
7505 /* Input mixer2 */
7506 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7507 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
7508 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
7509 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
7510 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
7511 /* {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x06 << 8))}, */
7512 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x07 << 8))},
7513 /* Input mixer3 */
7514 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7515 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
7516 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
7517 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
7518 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
7519 /* {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x06 << 8))}, */
7520 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x07 << 8))},
7521
7522 { }
7523};
7524
Kailang Yangdf694da2005-12-05 19:42:22 +01007525/* pcm configuration: identiacal with ALC880 */
7526#define alc262_pcm_analog_playback alc880_pcm_analog_playback
7527#define alc262_pcm_analog_capture alc880_pcm_analog_capture
7528#define alc262_pcm_digital_playback alc880_pcm_digital_playback
7529#define alc262_pcm_digital_capture alc880_pcm_digital_capture
7530
7531/*
7532 * BIOS auto configuration
7533 */
7534static int alc262_parse_auto_config(struct hda_codec *codec)
7535{
7536 struct alc_spec *spec = codec->spec;
7537 int err;
7538 static hda_nid_t alc262_ignore[] = { 0x1d, 0 };
7539
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02007540 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
7541 alc262_ignore);
7542 if (err < 0)
Kailang Yangdf694da2005-12-05 19:42:22 +01007543 return err;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02007544 if (!spec->autocfg.line_outs)
Kailang Yangdf694da2005-12-05 19:42:22 +01007545 return 0; /* can't find valid BIOS pin config */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02007546 err = alc262_auto_create_multi_out_ctls(spec, &spec->autocfg);
7547 if (err < 0)
7548 return err;
7549 err = alc262_auto_create_analog_input_ctls(spec, &spec->autocfg);
7550 if (err < 0)
Kailang Yangdf694da2005-12-05 19:42:22 +01007551 return err;
7552
7553 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
7554
7555 if (spec->autocfg.dig_out_pin)
7556 spec->multiout.dig_out_nid = ALC262_DIGOUT_NID;
7557 if (spec->autocfg.dig_in_pin)
7558 spec->dig_in_nid = ALC262_DIGIN_NID;
7559
7560 if (spec->kctl_alloc)
7561 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
7562
7563 spec->init_verbs[spec->num_init_verbs++] = alc262_volume_init_verbs;
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +02007564 spec->num_mux_defs = 1;
Kailang Yangdf694da2005-12-05 19:42:22 +01007565 spec->input_mux = &spec->private_imux;
7566
7567 return 1;
7568}
7569
7570#define alc262_auto_init_multi_out alc882_auto_init_multi_out
7571#define alc262_auto_init_hp_out alc882_auto_init_hp_out
7572#define alc262_auto_init_analog_input alc882_auto_init_analog_input
7573
7574
7575/* init callback for auto-configuration model -- overriding the default init */
Takashi Iwaiae6b8132006-03-03 16:47:17 +01007576static void alc262_auto_init(struct hda_codec *codec)
Kailang Yangdf694da2005-12-05 19:42:22 +01007577{
Kailang Yangdf694da2005-12-05 19:42:22 +01007578 alc262_auto_init_multi_out(codec);
7579 alc262_auto_init_hp_out(codec);
7580 alc262_auto_init_analog_input(codec);
Kailang Yangdf694da2005-12-05 19:42:22 +01007581}
7582
7583/*
7584 * configuration and preset
7585 */
Takashi Iwaif5fcc132006-11-24 17:07:44 +01007586static const char *alc262_models[ALC262_MODEL_LAST] = {
7587 [ALC262_BASIC] = "basic",
7588 [ALC262_HIPPO] = "hippo",
7589 [ALC262_HIPPO_1] = "hippo_1",
7590 [ALC262_FUJITSU] = "fujitsu",
7591 [ALC262_HP_BPC] = "hp-bpc",
Kailang Yangcd7509a2007-01-26 18:33:17 +01007592 [ALC262_HP_BPC_D7000_WL]= "hp-bpc-d7000",
Takashi Iwaif5fcc132006-11-24 17:07:44 +01007593 [ALC262_BENQ_ED8] = "benq",
Kailang Yang272a5272007-05-14 11:00:38 +02007594 [ALC262_BENQ_ED8] = "sony-assamd",
Takashi Iwaif5fcc132006-11-24 17:07:44 +01007595 [ALC262_AUTO] = "auto",
7596};
7597
7598static struct snd_pci_quirk alc262_cfg_tbl[] = {
7599 SND_PCI_QUIRK(0x1002, 0x437b, "Hippo", ALC262_HIPPO),
7600 SND_PCI_QUIRK(0x103c, 0x12fe, "HP xw9400", ALC262_HP_BPC),
7601 SND_PCI_QUIRK(0x103c, 0x280c, "HP xw4400", ALC262_HP_BPC),
Kailang Yang7d87de22007-06-05 12:17:21 +02007602 SND_PCI_QUIRK(0x103c, 0x12ff, "HP xw4550", ALC262_HP_BPC),
7603 SND_PCI_QUIRK(0x103c, 0x1308, "HP xw4600", ALC262_HP_BPC),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01007604 SND_PCI_QUIRK(0x103c, 0x3014, "HP xw6400", ALC262_HP_BPC),
Kailang Yang7d87de22007-06-05 12:17:21 +02007605 SND_PCI_QUIRK(0x103c, 0x1307, "HP xw6600", ALC262_HP_BPC),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01007606 SND_PCI_QUIRK(0x103c, 0x3015, "HP xw8400", ALC262_HP_BPC),
Kailang Yang7d87de22007-06-05 12:17:21 +02007607 SND_PCI_QUIRK(0x103c, 0x1306, "HP xw8600", ALC262_HP_BPC),
Kailang Yangcd7509a2007-01-26 18:33:17 +01007608 SND_PCI_QUIRK(0x103c, 0x2800, "HP D7000", ALC262_HP_BPC_D7000_WL),
7609 SND_PCI_QUIRK(0x103c, 0x2802, "HP D7000", ALC262_HP_BPC_D7000_WL),
7610 SND_PCI_QUIRK(0x103c, 0x2804, "HP D7000", ALC262_HP_BPC_D7000_WL),
7611 SND_PCI_QUIRK(0x103c, 0x2806, "HP D7000", ALC262_HP_BPC_D7000_WL),
7612 SND_PCI_QUIRK(0x103c, 0x2801, "HP D7000", ALC262_HP_BPC_D7000_WF),
7613 SND_PCI_QUIRK(0x103c, 0x2803, "HP D7000", ALC262_HP_BPC_D7000_WF),
7614 SND_PCI_QUIRK(0x103c, 0x2805, "HP D7000", ALC262_HP_BPC_D7000_WF),
7615 SND_PCI_QUIRK(0x103c, 0x2807, "HP D7000", ALC262_HP_BPC_D7000_WF),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01007616 SND_PCI_QUIRK(0x104d, 0x8203, "Sony UX-90", ALC262_HIPPO),
7617 SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu", ALC262_FUJITSU),
7618 SND_PCI_QUIRK(0x17ff, 0x058f, "Benq Hippo", ALC262_HIPPO_1),
7619 SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_BENQ_ED8),
Kailang Yang272a5272007-05-14 11:00:38 +02007620 SND_PCI_QUIRK(0x104d, 0x9015, "Sony 0x9015", ALC262_SONY_ASSAMD),
7621 SND_PCI_QUIRK(0x104d, 0x900e, "Sony ASSAMD", ALC262_SONY_ASSAMD),
7622 SND_PCI_QUIRK(0x104d, 0x1f00, "Sony ASSAMD", ALC262_SONY_ASSAMD),
Kailang Yangdf694da2005-12-05 19:42:22 +01007623 {}
7624};
7625
7626static struct alc_config_preset alc262_presets[] = {
7627 [ALC262_BASIC] = {
7628 .mixers = { alc262_base_mixer },
7629 .init_verbs = { alc262_init_verbs },
7630 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
7631 .dac_nids = alc262_dac_nids,
7632 .hp_nid = 0x03,
7633 .num_channel_mode = ARRAY_SIZE(alc262_modes),
7634 .channel_mode = alc262_modes,
Takashi Iwaia3bcba32005-12-06 19:05:29 +01007635 .input_mux = &alc262_capture_source,
Kailang Yangdf694da2005-12-05 19:42:22 +01007636 },
Kailang Yangccc656c2006-10-17 12:32:26 +02007637 [ALC262_HIPPO] = {
7638 .mixers = { alc262_base_mixer },
7639 .init_verbs = { alc262_init_verbs, alc262_hippo_unsol_verbs},
7640 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
7641 .dac_nids = alc262_dac_nids,
7642 .hp_nid = 0x03,
7643 .dig_out_nid = ALC262_DIGOUT_NID,
7644 .num_channel_mode = ARRAY_SIZE(alc262_modes),
7645 .channel_mode = alc262_modes,
7646 .input_mux = &alc262_capture_source,
7647 .unsol_event = alc262_hippo_unsol_event,
7648 },
7649 [ALC262_HIPPO_1] = {
7650 .mixers = { alc262_hippo1_mixer },
7651 .init_verbs = { alc262_init_verbs, alc262_hippo1_unsol_verbs},
7652 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
7653 .dac_nids = alc262_dac_nids,
7654 .hp_nid = 0x02,
7655 .dig_out_nid = ALC262_DIGOUT_NID,
7656 .num_channel_mode = ARRAY_SIZE(alc262_modes),
7657 .channel_mode = alc262_modes,
7658 .input_mux = &alc262_capture_source,
7659 .unsol_event = alc262_hippo1_unsol_event,
7660 },
Takashi Iwai834be882006-03-01 14:16:17 +01007661 [ALC262_FUJITSU] = {
7662 .mixers = { alc262_fujitsu_mixer },
7663 .init_verbs = { alc262_init_verbs, alc262_fujitsu_unsol_verbs },
7664 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
7665 .dac_nids = alc262_dac_nids,
7666 .hp_nid = 0x03,
7667 .dig_out_nid = ALC262_DIGOUT_NID,
7668 .num_channel_mode = ARRAY_SIZE(alc262_modes),
7669 .channel_mode = alc262_modes,
7670 .input_mux = &alc262_fujitsu_capture_source,
Takashi Iwaiae6b8132006-03-03 16:47:17 +01007671 .unsol_event = alc262_fujitsu_unsol_event,
Takashi Iwai834be882006-03-01 14:16:17 +01007672 },
Takashi Iwai9c7f8522006-06-28 15:08:22 +02007673 [ALC262_HP_BPC] = {
7674 .mixers = { alc262_HP_BPC_mixer },
7675 .init_verbs = { alc262_HP_BPC_init_verbs },
7676 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
7677 .dac_nids = alc262_dac_nids,
7678 .hp_nid = 0x03,
7679 .num_channel_mode = ARRAY_SIZE(alc262_modes),
7680 .channel_mode = alc262_modes,
7681 .input_mux = &alc262_HP_capture_source,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02007682 },
Kailang Yangcd7509a2007-01-26 18:33:17 +01007683 [ALC262_HP_BPC_D7000_WF] = {
7684 .mixers = { alc262_HP_BPC_WildWest_mixer },
7685 .init_verbs = { alc262_HP_BPC_WildWest_init_verbs },
7686 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
7687 .dac_nids = alc262_dac_nids,
7688 .hp_nid = 0x03,
7689 .num_channel_mode = ARRAY_SIZE(alc262_modes),
7690 .channel_mode = alc262_modes,
7691 .input_mux = &alc262_HP_capture_source,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02007692 },
Kailang Yangcd7509a2007-01-26 18:33:17 +01007693 [ALC262_HP_BPC_D7000_WL] = {
7694 .mixers = { alc262_HP_BPC_WildWest_mixer,
7695 alc262_HP_BPC_WildWest_option_mixer },
7696 .init_verbs = { alc262_HP_BPC_WildWest_init_verbs },
7697 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
7698 .dac_nids = alc262_dac_nids,
7699 .hp_nid = 0x03,
7700 .num_channel_mode = ARRAY_SIZE(alc262_modes),
7701 .channel_mode = alc262_modes,
7702 .input_mux = &alc262_HP_capture_source,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02007703 },
Takashi Iwai304dcaa2006-07-25 14:51:16 +02007704 [ALC262_BENQ_ED8] = {
7705 .mixers = { alc262_base_mixer },
7706 .init_verbs = { alc262_init_verbs, alc262_EAPD_verbs },
7707 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
7708 .dac_nids = alc262_dac_nids,
7709 .hp_nid = 0x03,
7710 .num_channel_mode = ARRAY_SIZE(alc262_modes),
7711 .channel_mode = alc262_modes,
7712 .input_mux = &alc262_capture_source,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02007713 },
Kailang Yang272a5272007-05-14 11:00:38 +02007714 [ALC262_SONY_ASSAMD] = {
7715 .mixers = { alc262_sony_mixer },
7716 .init_verbs = { alc262_init_verbs, alc262_sony_unsol_verbs},
7717 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
7718 .dac_nids = alc262_dac_nids,
7719 .hp_nid = 0x02,
7720 .num_channel_mode = ARRAY_SIZE(alc262_modes),
7721 .channel_mode = alc262_modes,
7722 .input_mux = &alc262_capture_source,
7723 .unsol_event = alc262_hippo_unsol_event,
7724 },
Kailang Yangdf694da2005-12-05 19:42:22 +01007725};
7726
7727static int patch_alc262(struct hda_codec *codec)
7728{
7729 struct alc_spec *spec;
7730 int board_config;
7731 int err;
7732
Robert P. J. Daydc041e02006-12-19 14:44:15 +01007733 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
Kailang Yangdf694da2005-12-05 19:42:22 +01007734 if (spec == NULL)
7735 return -ENOMEM;
7736
7737 codec->spec = spec;
7738#if 0
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02007739 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
7740 * under-run
7741 */
Kailang Yangdf694da2005-12-05 19:42:22 +01007742 {
7743 int tmp;
7744 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
7745 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
7746 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
7747 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PROC_COEF, tmp | 0x80);
7748 }
7749#endif
7750
Takashi Iwaif5fcc132006-11-24 17:07:44 +01007751 board_config = snd_hda_check_board_config(codec, ALC262_MODEL_LAST,
7752 alc262_models,
7753 alc262_cfg_tbl);
Kailang Yangcd7509a2007-01-26 18:33:17 +01007754
Takashi Iwaif5fcc132006-11-24 17:07:44 +01007755 if (board_config < 0) {
Takashi Iwai9c7f8522006-06-28 15:08:22 +02007756 printk(KERN_INFO "hda_codec: Unknown model for ALC262, "
7757 "trying auto-probe from BIOS...\n");
Kailang Yangdf694da2005-12-05 19:42:22 +01007758 board_config = ALC262_AUTO;
7759 }
7760
7761 if (board_config == ALC262_AUTO) {
7762 /* automatic parse from the BIOS config */
7763 err = alc262_parse_auto_config(codec);
7764 if (err < 0) {
7765 alc_free(codec);
7766 return err;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02007767 } else if (!err) {
Takashi Iwai9c7f8522006-06-28 15:08:22 +02007768 printk(KERN_INFO
7769 "hda_codec: Cannot set up configuration "
7770 "from BIOS. Using base mode...\n");
Kailang Yangdf694da2005-12-05 19:42:22 +01007771 board_config = ALC262_BASIC;
7772 }
7773 }
7774
7775 if (board_config != ALC262_AUTO)
7776 setup_preset(spec, &alc262_presets[board_config]);
7777
7778 spec->stream_name_analog = "ALC262 Analog";
7779 spec->stream_analog_playback = &alc262_pcm_analog_playback;
7780 spec->stream_analog_capture = &alc262_pcm_analog_capture;
7781
7782 spec->stream_name_digital = "ALC262 Digital";
7783 spec->stream_digital_playback = &alc262_pcm_digital_playback;
7784 spec->stream_digital_capture = &alc262_pcm_digital_capture;
7785
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02007786 if (!spec->adc_nids && spec->input_mux) {
Kailang Yangdf694da2005-12-05 19:42:22 +01007787 /* check whether NID 0x07 is valid */
Takashi Iwai4a471b72005-12-07 13:56:29 +01007788 unsigned int wcap = get_wcaps(codec, 0x07);
7789
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02007790 /* get type */
7791 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
Kailang Yangdf694da2005-12-05 19:42:22 +01007792 if (wcap != AC_WID_AUD_IN) {
7793 spec->adc_nids = alc262_adc_nids_alt;
7794 spec->num_adc_nids = ARRAY_SIZE(alc262_adc_nids_alt);
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02007795 spec->mixers[spec->num_mixers] =
7796 alc262_capture_alt_mixer;
Kailang Yangdf694da2005-12-05 19:42:22 +01007797 spec->num_mixers++;
7798 } else {
7799 spec->adc_nids = alc262_adc_nids;
7800 spec->num_adc_nids = ARRAY_SIZE(alc262_adc_nids);
7801 spec->mixers[spec->num_mixers] = alc262_capture_mixer;
7802 spec->num_mixers++;
7803 }
7804 }
7805
7806 codec->patch_ops = alc_patch_ops;
7807 if (board_config == ALC262_AUTO)
Takashi Iwaiae6b8132006-03-03 16:47:17 +01007808 spec->init_hook = alc262_auto_init;
Takashi Iwai834be882006-03-01 14:16:17 +01007809
Kailang Yangdf694da2005-12-05 19:42:22 +01007810 return 0;
7811}
7812
Kailang Yangdf694da2005-12-05 19:42:22 +01007813/*
Kailang Yanga361d842007-06-05 12:30:55 +02007814 * ALC268 channel source setting (2 channel)
7815 */
7816#define ALC268_DIGOUT_NID ALC880_DIGOUT_NID
7817#define alc268_modes alc260_modes
7818
7819static hda_nid_t alc268_dac_nids[2] = {
7820 /* front, hp */
7821 0x02, 0x03
7822};
7823
7824static hda_nid_t alc268_adc_nids[2] = {
7825 /* ADC0-1 */
7826 0x08, 0x07
7827};
7828
7829static hda_nid_t alc268_adc_nids_alt[1] = {
7830 /* ADC0 */
7831 0x08
7832};
7833
7834static struct snd_kcontrol_new alc268_base_mixer[] = {
7835 /* output mixer control */
7836 HDA_CODEC_VOLUME("Front Playback Volume", 0x2, 0x0, HDA_OUTPUT),
7837 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
7838 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x3, 0x0, HDA_OUTPUT),
7839 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
7840 { }
7841};
7842
7843/*
7844 * generic initialization of ADC, input mixers and output mixers
7845 */
7846static struct hda_verb alc268_base_init_verbs[] = {
7847 /* Unmute DAC0-1 and set vol = 0 */
7848 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7849 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7850 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7851 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7852 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7853 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7854
7855 /*
7856 * Set up output mixers (0x0c - 0x0e)
7857 */
7858 /* set vol=0 to output mixers */
7859 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7860 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7861 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7862 {0x0e, AC_VERB_SET_CONNECT_SEL, 0x00},
7863
7864 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7865 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7866
7867 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
7868 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
7869 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
7870 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
7871 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
7872 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
7873 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
7874 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
7875
7876 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
7877 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
7878 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
7879 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
7880 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
7881 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
7882 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
7883 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7884
7885 /* FIXME: use matrix-type input source selection */
7886 /* Mixer elements: 0x18, 19, 1a, 1c, 14, 15, 0b */
7887 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
7888 /* Input mixer2 */
7889 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7890 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
7891 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
7892 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
7893
7894 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7895 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
7896 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
7897 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
7898 { }
7899};
7900
7901/*
7902 * generic initialization of ADC, input mixers and output mixers
7903 */
7904static struct hda_verb alc268_volume_init_verbs[] = {
7905 /* set output DAC */
7906 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7907 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7908 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7909 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7910
7911 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
7912 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
7913 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
7914 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
7915 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
7916
7917 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7918 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7919 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7920 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7921 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7922
7923 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
7924 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
7925 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
7926 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
7927
7928 /* set PCBEEP vol = 0 */
7929 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, (0xb000 | (0x00 << 8))},
7930
7931 { }
7932};
7933
7934#define alc268_mux_enum_info alc_mux_enum_info
7935#define alc268_mux_enum_get alc_mux_enum_get
7936
7937static int alc268_mux_enum_put(struct snd_kcontrol *kcontrol,
7938 struct snd_ctl_elem_value *ucontrol)
7939{
7940 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
7941 struct alc_spec *spec = codec->spec;
7942 const struct hda_input_mux *imux = spec->input_mux;
7943 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
7944 static hda_nid_t capture_mixers[3] = { 0x23, 0x24 };
7945 hda_nid_t nid = capture_mixers[adc_idx];
7946 unsigned int *cur_val = &spec->cur_mux[adc_idx];
7947 unsigned int i, idx;
7948
7949 idx = ucontrol->value.enumerated.item[0];
7950 if (idx >= imux->num_items)
7951 idx = imux->num_items - 1;
7952 if (*cur_val == idx && !codec->in_resume)
7953 return 0;
7954 for (i = 0; i < imux->num_items; i++) {
7955 unsigned int v = (i == idx) ? 0x7000 : 0x7080;
7956 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
7957 v | (imux->items[i].index << 8));
7958 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL,
7959 idx );
7960 }
7961 *cur_val = idx;
7962 return 1;
7963}
7964
7965static struct snd_kcontrol_new alc268_capture_alt_mixer[] = {
7966 HDA_CODEC_VOLUME("Capture Volume", 0x23, 0x0, HDA_OUTPUT),
7967 HDA_CODEC_MUTE("Capture Switch", 0x23, 0x0, HDA_OUTPUT),
7968 {
7969 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7970 /* The multiple "Capture Source" controls confuse alsamixer
7971 * So call somewhat different..
7972 * FIXME: the controls appear in the "playback" view!
7973 */
7974 /* .name = "Capture Source", */
7975 .name = "Input Source",
7976 .count = 1,
7977 .info = alc268_mux_enum_info,
7978 .get = alc268_mux_enum_get,
7979 .put = alc268_mux_enum_put,
7980 },
7981 { } /* end */
7982};
7983
7984static struct snd_kcontrol_new alc268_capture_mixer[] = {
7985 HDA_CODEC_VOLUME("Capture Volume", 0x23, 0x0, HDA_OUTPUT),
7986 HDA_CODEC_MUTE("Capture Switch", 0x23, 0x0, HDA_OUTPUT),
7987 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x24, 0x0, HDA_OUTPUT),
7988 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x24, 0x0, HDA_OUTPUT),
7989 {
7990 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7991 /* The multiple "Capture Source" controls confuse alsamixer
7992 * So call somewhat different..
7993 * FIXME: the controls appear in the "playback" view!
7994 */
7995 /* .name = "Capture Source", */
7996 .name = "Input Source",
7997 .count = 2,
7998 .info = alc268_mux_enum_info,
7999 .get = alc268_mux_enum_get,
8000 .put = alc268_mux_enum_put,
8001 },
8002 { } /* end */
8003};
8004
8005static struct hda_input_mux alc268_capture_source = {
8006 .num_items = 4,
8007 .items = {
8008 { "Mic", 0x0 },
8009 { "Front Mic", 0x1 },
8010 { "Line", 0x2 },
8011 { "CD", 0x3 },
8012 },
8013};
8014
8015/* create input playback/capture controls for the given pin */
8016static int alc268_new_analog_output(struct alc_spec *spec, hda_nid_t nid,
8017 const char *ctlname, int idx)
8018{
8019 char name[32];
8020 int err;
8021
8022 sprintf(name, "%s Playback Volume", ctlname);
8023 if (nid == 0x14) {
8024 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
8025 HDA_COMPOSE_AMP_VAL(0x02, 3, idx,
8026 HDA_OUTPUT));
8027 if (err < 0)
8028 return err;
8029 } else if (nid == 0x15) {
8030 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
8031 HDA_COMPOSE_AMP_VAL(0x03, 3, idx,
8032 HDA_OUTPUT));
8033 if (err < 0)
8034 return err;
8035 } else
8036 return -1;
8037 sprintf(name, "%s Playback Switch", ctlname);
8038 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
8039 HDA_COMPOSE_AMP_VAL(nid, 3, idx, HDA_OUTPUT));
8040 if (err < 0)
8041 return err;
8042 return 0;
8043}
8044
8045/* add playback controls from the parsed DAC table */
8046static int alc268_auto_create_multi_out_ctls(struct alc_spec *spec,
8047 const struct auto_pin_cfg *cfg)
8048{
8049 hda_nid_t nid;
8050 int err;
8051
8052 spec->multiout.num_dacs = 2; /* only use one dac */
8053 spec->multiout.dac_nids = spec->private_dac_nids;
8054 spec->multiout.dac_nids[0] = 2;
8055 spec->multiout.dac_nids[1] = 3;
8056
8057 nid = cfg->line_out_pins[0];
8058 if (nid)
8059 alc268_new_analog_output(spec, nid, "Front", 0);
8060
8061 nid = cfg->speaker_pins[0];
8062 if (nid == 0x1d) {
8063 err = add_control(spec, ALC_CTL_WIDGET_VOL,
8064 "Speaker Playback Volume",
8065 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_INPUT));
8066 if (err < 0)
8067 return err;
8068 }
8069 nid = cfg->hp_pins[0];
8070 if (nid)
8071 alc268_new_analog_output(spec, nid, "Headphone", 0);
8072
8073 nid = cfg->line_out_pins[1] | cfg->line_out_pins[2];
8074 if (nid == 0x16) {
8075 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
8076 "Mono Playback Switch",
8077 HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_INPUT));
8078 if (err < 0)
8079 return err;
8080 }
8081 return 0;
8082}
8083
8084/* create playback/capture controls for input pins */
8085static int alc268_auto_create_analog_input_ctls(struct alc_spec *spec,
8086 const struct auto_pin_cfg *cfg)
8087{
8088 struct hda_input_mux *imux = &spec->private_imux;
8089 int i, idx1;
8090
8091 for (i = 0; i < AUTO_PIN_LAST; i++) {
8092 switch(cfg->input_pins[i]) {
8093 case 0x18:
8094 idx1 = 0; /* Mic 1 */
8095 break;
8096 case 0x19:
8097 idx1 = 1; /* Mic 2 */
8098 break;
8099 case 0x1a:
8100 idx1 = 2; /* Line In */
8101 break;
8102 case 0x1c:
8103 idx1 = 3; /* CD */
8104 break;
8105 default:
8106 continue;
8107 }
8108 imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
8109 imux->items[imux->num_items].index = idx1;
8110 imux->num_items++;
8111 }
8112 return 0;
8113}
8114
8115static void alc268_auto_init_mono_speaker_out(struct hda_codec *codec)
8116{
8117 struct alc_spec *spec = codec->spec;
8118 hda_nid_t speaker_nid = spec->autocfg.speaker_pins[0];
8119 hda_nid_t hp_nid = spec->autocfg.hp_pins[0];
8120 hda_nid_t line_nid = spec->autocfg.line_out_pins[0];
8121 unsigned int dac_vol1, dac_vol2;
8122
8123 if (speaker_nid) {
8124 snd_hda_codec_write(codec, speaker_nid, 0,
8125 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
8126 snd_hda_codec_write(codec, 0x0f, 0,
8127 AC_VERB_SET_AMP_GAIN_MUTE,
8128 AMP_IN_UNMUTE(1));
8129 snd_hda_codec_write(codec, 0x10, 0,
8130 AC_VERB_SET_AMP_GAIN_MUTE,
8131 AMP_IN_UNMUTE(1));
8132 } else {
8133 snd_hda_codec_write(codec, 0x0f, 0,
8134 AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1));
8135 snd_hda_codec_write(codec, 0x10, 0,
8136 AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1));
8137 }
8138
8139 dac_vol1 = dac_vol2 = 0xb000 | 0x40; /* set max volume */
8140 if (line_nid == 0x14)
8141 dac_vol2 = AMP_OUT_ZERO;
8142 else if (line_nid == 0x15)
8143 dac_vol1 = AMP_OUT_ZERO;
8144 if (hp_nid == 0x14)
8145 dac_vol2 = AMP_OUT_ZERO;
8146 else if (hp_nid == 0x15)
8147 dac_vol1 = AMP_OUT_ZERO;
8148 if (line_nid != 0x16 || hp_nid != 0x16 ||
8149 spec->autocfg.line_out_pins[1] != 0x16 ||
8150 spec->autocfg.line_out_pins[2] != 0x16)
8151 dac_vol1 = dac_vol2 = AMP_OUT_ZERO;
8152
8153 snd_hda_codec_write(codec, 0x02, 0,
8154 AC_VERB_SET_AMP_GAIN_MUTE, dac_vol1);
8155 snd_hda_codec_write(codec, 0x03, 0,
8156 AC_VERB_SET_AMP_GAIN_MUTE, dac_vol2);
8157}
8158
8159/* pcm configuration: identiacal with ALC880 */
8160#define alc268_pcm_analog_playback alc880_pcm_analog_playback
8161#define alc268_pcm_analog_capture alc880_pcm_analog_capture
8162#define alc268_pcm_digital_playback alc880_pcm_digital_playback
8163
8164/*
8165 * BIOS auto configuration
8166 */
8167static int alc268_parse_auto_config(struct hda_codec *codec)
8168{
8169 struct alc_spec *spec = codec->spec;
8170 int err;
8171 static hda_nid_t alc268_ignore[] = { 0 };
8172
8173 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
8174 alc268_ignore);
8175 if (err < 0)
8176 return err;
8177 if (!spec->autocfg.line_outs)
8178 return 0; /* can't find valid BIOS pin config */
8179
8180 err = alc268_auto_create_multi_out_ctls(spec, &spec->autocfg);
8181 if (err < 0)
8182 return err;
8183 err = alc268_auto_create_analog_input_ctls(spec, &spec->autocfg);
8184 if (err < 0)
8185 return err;
8186
8187 spec->multiout.max_channels = 2;
8188
8189 /* digital only support output */
8190 if (spec->autocfg.dig_out_pin)
8191 spec->multiout.dig_out_nid = ALC268_DIGOUT_NID;
8192
8193 if (spec->kctl_alloc)
8194 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
8195
8196 spec->init_verbs[spec->num_init_verbs++] = alc268_volume_init_verbs;
8197 spec->num_mux_defs = 1;
8198 spec->input_mux = &spec->private_imux;
8199
8200 return 1;
8201}
8202
8203#define alc268_auto_init_multi_out alc882_auto_init_multi_out
8204#define alc268_auto_init_hp_out alc882_auto_init_hp_out
8205#define alc268_auto_init_analog_input alc882_auto_init_analog_input
8206
8207/* init callback for auto-configuration model -- overriding the default init */
8208static void alc268_auto_init(struct hda_codec *codec)
8209{
8210 alc268_auto_init_multi_out(codec);
8211 alc268_auto_init_hp_out(codec);
8212 alc268_auto_init_mono_speaker_out(codec);
8213 alc268_auto_init_analog_input(codec);
8214}
8215
8216/*
8217 * configuration and preset
8218 */
8219static const char *alc268_models[ALC268_MODEL_LAST] = {
8220 [ALC268_3ST] = "3stack",
8221 [ALC268_AUTO] = "auto",
8222};
8223
8224static struct snd_pci_quirk alc268_cfg_tbl[] = {
8225 SND_PCI_QUIRK(0x1043, 0x1205, "ASUS W7J", ALC268_3ST),
8226 {}
8227};
8228
8229static struct alc_config_preset alc268_presets[] = {
8230 [ALC268_3ST] = {
8231 .mixers = { alc268_base_mixer, alc268_capture_alt_mixer },
8232 .init_verbs = { alc268_base_init_verbs },
8233 .num_dacs = ARRAY_SIZE(alc268_dac_nids),
8234 .dac_nids = alc268_dac_nids,
8235 .num_adc_nids = ARRAY_SIZE(alc268_adc_nids_alt),
8236 .adc_nids = alc268_adc_nids_alt,
8237 .hp_nid = 0x03,
8238 .dig_out_nid = ALC268_DIGOUT_NID,
8239 .num_channel_mode = ARRAY_SIZE(alc268_modes),
8240 .channel_mode = alc268_modes,
8241 .input_mux = &alc268_capture_source,
8242 },
8243};
8244
8245static int patch_alc268(struct hda_codec *codec)
8246{
8247 struct alc_spec *spec;
8248 int board_config;
8249 int err;
8250
8251 spec = kcalloc(1, sizeof(*spec), GFP_KERNEL);
8252 if (spec == NULL)
8253 return -ENOMEM;
8254
8255 codec->spec = spec;
8256
8257 board_config = snd_hda_check_board_config(codec, ALC268_MODEL_LAST,
8258 alc268_models,
8259 alc268_cfg_tbl);
8260
8261 if (board_config < 0 || board_config >= ALC268_MODEL_LAST) {
8262 printk(KERN_INFO "hda_codec: Unknown model for ALC268, "
8263 "trying auto-probe from BIOS...\n");
8264 board_config = ALC268_AUTO;
8265 }
8266
8267 if (board_config == ALC268_AUTO) {
8268 /* automatic parse from the BIOS config */
8269 err = alc268_parse_auto_config(codec);
8270 if (err < 0) {
8271 alc_free(codec);
8272 return err;
8273 } else if (!err) {
8274 printk(KERN_INFO
8275 "hda_codec: Cannot set up configuration "
8276 "from BIOS. Using base mode...\n");
8277 board_config = ALC268_3ST;
8278 }
8279 }
8280
8281 if (board_config != ALC268_AUTO)
8282 setup_preset(spec, &alc268_presets[board_config]);
8283
8284 spec->stream_name_analog = "ALC268 Analog";
8285 spec->stream_analog_playback = &alc268_pcm_analog_playback;
8286 spec->stream_analog_capture = &alc268_pcm_analog_capture;
8287
8288 spec->stream_name_digital = "ALC268 Digital";
8289 spec->stream_digital_playback = &alc268_pcm_digital_playback;
8290
8291 if (board_config == ALC268_AUTO) {
8292 if (!spec->adc_nids && spec->input_mux) {
8293 /* check whether NID 0x07 is valid */
8294 unsigned int wcap = get_wcaps(codec, 0x07);
8295
8296 /* get type */
8297 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
8298 if (wcap != AC_WID_AUD_IN) {
8299 spec->adc_nids = alc268_adc_nids_alt;
8300 spec->num_adc_nids =
8301 ARRAY_SIZE(alc268_adc_nids_alt);
8302 spec->mixers[spec->num_mixers] =
8303 alc268_capture_alt_mixer;
8304 spec->num_mixers++;
8305 } else {
8306 spec->adc_nids = alc268_adc_nids;
8307 spec->num_adc_nids =
8308 ARRAY_SIZE(alc268_adc_nids);
8309 spec->mixers[spec->num_mixers] =
8310 alc268_capture_mixer;
8311 spec->num_mixers++;
8312 }
8313 }
8314 }
8315 codec->patch_ops = alc_patch_ops;
8316 if (board_config == ALC268_AUTO)
8317 spec->init_hook = alc268_auto_init;
8318
8319 return 0;
8320}
8321
8322/*
Kailang Yangdf694da2005-12-05 19:42:22 +01008323 * ALC861 channel source setting (2/6 channel selection for 3-stack)
8324 */
8325
8326/*
8327 * set the path ways for 2 channel output
8328 * need to set the codec line out and mic 1 pin widgets to inputs
8329 */
8330static struct hda_verb alc861_threestack_ch2_init[] = {
8331 /* set pin widget 1Ah (line in) for input */
8332 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02008333 /* set pin widget 18h (mic1/2) for input, for mic also enable
8334 * the vref
8335 */
Kailang Yangdf694da2005-12-05 19:42:22 +01008336 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
8337
Takashi Iwai9c7f8522006-06-28 15:08:22 +02008338 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c },
8339#if 0
8340 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8)) }, /*mic*/
8341 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8)) }, /*line-in*/
8342#endif
Kailang Yangdf694da2005-12-05 19:42:22 +01008343 { } /* end */
8344};
8345/*
8346 * 6ch mode
8347 * need to set the codec line out and mic 1 pin widgets to outputs
8348 */
8349static struct hda_verb alc861_threestack_ch6_init[] = {
8350 /* set pin widget 1Ah (line in) for output (Back Surround)*/
8351 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
8352 /* set pin widget 18h (mic1) for output (CLFE)*/
8353 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
8354
8355 { 0x0c, AC_VERB_SET_CONNECT_SEL, 0x00 },
Takashi Iwai9c7f8522006-06-28 15:08:22 +02008356 { 0x0d, AC_VERB_SET_CONNECT_SEL, 0x00 },
Kailang Yangdf694da2005-12-05 19:42:22 +01008357
Takashi Iwai9c7f8522006-06-28 15:08:22 +02008358 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080 },
8359#if 0
8360 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x01 << 8)) }, /*mic*/
8361 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8)) }, /*line in*/
8362#endif
Kailang Yangdf694da2005-12-05 19:42:22 +01008363 { } /* end */
8364};
8365
8366static struct hda_channel_mode alc861_threestack_modes[2] = {
8367 { 2, alc861_threestack_ch2_init },
8368 { 6, alc861_threestack_ch6_init },
8369};
Takashi Iwai22309c32006-08-09 16:57:28 +02008370/* Set mic1 as input and unmute the mixer */
8371static struct hda_verb alc861_uniwill_m31_ch2_init[] = {
8372 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
8373 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x01 << 8)) }, /*mic*/
8374 { } /* end */
8375};
8376/* Set mic1 as output and mute mixer */
8377static struct hda_verb alc861_uniwill_m31_ch4_init[] = {
8378 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
8379 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8)) }, /*mic*/
8380 { } /* end */
8381};
8382
8383static struct hda_channel_mode alc861_uniwill_m31_modes[2] = {
8384 { 2, alc861_uniwill_m31_ch2_init },
8385 { 4, alc861_uniwill_m31_ch4_init },
8386};
Kailang Yangdf694da2005-12-05 19:42:22 +01008387
Mariusz Domanski7cdbff92006-10-23 13:42:56 +02008388/* Set mic1 and line-in as input and unmute the mixer */
8389static struct hda_verb alc861_asus_ch2_init[] = {
8390 /* set pin widget 1Ah (line in) for input */
8391 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02008392 /* set pin widget 18h (mic1/2) for input, for mic also enable
8393 * the vref
8394 */
Mariusz Domanski7cdbff92006-10-23 13:42:56 +02008395 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
8396
8397 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c },
8398#if 0
8399 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8)) }, /*mic*/
8400 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8)) }, /*line-in*/
8401#endif
8402 { } /* end */
8403};
8404/* Set mic1 nad line-in as output and mute mixer */
8405static struct hda_verb alc861_asus_ch6_init[] = {
8406 /* set pin widget 1Ah (line in) for output (Back Surround)*/
8407 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
8408 /* { 0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE }, */
8409 /* set pin widget 18h (mic1) for output (CLFE)*/
8410 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
8411 /* { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE }, */
8412 { 0x0c, AC_VERB_SET_CONNECT_SEL, 0x00 },
8413 { 0x0d, AC_VERB_SET_CONNECT_SEL, 0x00 },
8414
8415 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080 },
8416#if 0
8417 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x01 << 8)) }, /*mic*/
8418 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8)) }, /*line in*/
8419#endif
8420 { } /* end */
8421};
8422
8423static struct hda_channel_mode alc861_asus_modes[2] = {
8424 { 2, alc861_asus_ch2_init },
8425 { 6, alc861_asus_ch6_init },
8426};
8427
Kailang Yangdf694da2005-12-05 19:42:22 +01008428/* patch-ALC861 */
8429
8430static struct snd_kcontrol_new alc861_base_mixer[] = {
8431 /* output mixer control */
8432 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
8433 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
8434 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
8435 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
8436 HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT),
8437
8438 /*Input mixer control */
8439 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
8440 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
8441 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
8442 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
8443 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
8444 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
8445 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
8446 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
8447 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
8448 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT),
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02008449
Kailang Yangdf694da2005-12-05 19:42:22 +01008450 /* Capture mixer control */
8451 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
8452 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
8453 {
8454 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
8455 .name = "Capture Source",
8456 .count = 1,
8457 .info = alc_mux_enum_info,
8458 .get = alc_mux_enum_get,
8459 .put = alc_mux_enum_put,
8460 },
8461 { } /* end */
8462};
8463
8464static struct snd_kcontrol_new alc861_3ST_mixer[] = {
8465 /* output mixer control */
8466 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
8467 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
8468 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
8469 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
8470 /*HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT), */
8471
8472 /* Input mixer control */
8473 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
8474 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
8475 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
8476 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
8477 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
8478 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
8479 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
8480 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
8481 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
8482 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT),
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02008483
Kailang Yangdf694da2005-12-05 19:42:22 +01008484 /* Capture mixer control */
8485 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
8486 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
8487 {
8488 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
8489 .name = "Capture Source",
8490 .count = 1,
8491 .info = alc_mux_enum_info,
8492 .get = alc_mux_enum_get,
8493 .put = alc_mux_enum_put,
8494 },
8495 {
8496 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
8497 .name = "Channel Mode",
8498 .info = alc_ch_mode_info,
8499 .get = alc_ch_mode_get,
8500 .put = alc_ch_mode_put,
8501 .private_value = ARRAY_SIZE(alc861_threestack_modes),
8502 },
8503 { } /* end */
Tobin Davisa53d1ae2006-10-17 12:00:28 +02008504};
8505
Takashi Iwaid1d985f2006-11-23 19:27:12 +01008506static struct snd_kcontrol_new alc861_toshiba_mixer[] = {
Tobin Davisa53d1ae2006-10-17 12:00:28 +02008507 /* output mixer control */
8508 HDA_CODEC_MUTE("Master Playback Switch", 0x03, 0x0, HDA_OUTPUT),
8509 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
8510 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
8511
8512 /*Capture mixer control */
8513 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
8514 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
8515 {
8516 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
8517 .name = "Capture Source",
8518 .count = 1,
8519 .info = alc_mux_enum_info,
8520 .get = alc_mux_enum_get,
8521 .put = alc_mux_enum_put,
8522 },
8523
8524 { } /* end */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02008525};
Tobin Davisa53d1ae2006-10-17 12:00:28 +02008526
Takashi Iwai22309c32006-08-09 16:57:28 +02008527static struct snd_kcontrol_new alc861_uniwill_m31_mixer[] = {
8528 /* output mixer control */
8529 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
8530 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
8531 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
8532 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
8533 /*HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT), */
8534
8535 /* Input mixer control */
8536 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
8537 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
8538 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
8539 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
8540 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
8541 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
8542 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
8543 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
8544 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
8545 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT),
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02008546
Takashi Iwai22309c32006-08-09 16:57:28 +02008547 /* Capture mixer control */
8548 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
8549 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
8550 {
8551 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
8552 .name = "Capture Source",
8553 .count = 1,
8554 .info = alc_mux_enum_info,
8555 .get = alc_mux_enum_get,
8556 .put = alc_mux_enum_put,
8557 },
8558 {
8559 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
8560 .name = "Channel Mode",
8561 .info = alc_ch_mode_info,
8562 .get = alc_ch_mode_get,
8563 .put = alc_ch_mode_put,
8564 .private_value = ARRAY_SIZE(alc861_uniwill_m31_modes),
8565 },
8566 { } /* end */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02008567};
Mariusz Domanski7cdbff92006-10-23 13:42:56 +02008568
8569static struct snd_kcontrol_new alc861_asus_mixer[] = {
8570 /* output mixer control */
8571 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
8572 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
8573 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
8574 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
8575 HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT),
8576
8577 /* Input mixer control */
8578 HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
8579 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT),
8580 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
8581 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
8582 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
8583 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
8584 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
8585 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
8586 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02008587 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_OUTPUT),
8588
Mariusz Domanski7cdbff92006-10-23 13:42:56 +02008589 /* Capture mixer control */
8590 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
8591 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
8592 {
8593 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
8594 .name = "Capture Source",
8595 .count = 1,
8596 .info = alc_mux_enum_info,
8597 .get = alc_mux_enum_get,
8598 .put = alc_mux_enum_put,
8599 },
8600 {
8601 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
8602 .name = "Channel Mode",
8603 .info = alc_ch_mode_info,
8604 .get = alc_ch_mode_get,
8605 .put = alc_ch_mode_put,
8606 .private_value = ARRAY_SIZE(alc861_asus_modes),
8607 },
8608 { }
Takashi Iwai56bb0ca2006-11-22 11:52:52 +01008609};
Mariusz Domanski7cdbff92006-10-23 13:42:56 +02008610
Takashi Iwai56bb0ca2006-11-22 11:52:52 +01008611/* additional mixer */
Takashi Iwaid1d985f2006-11-23 19:27:12 +01008612static struct snd_kcontrol_new alc861_asus_laptop_mixer[] = {
Takashi Iwai56bb0ca2006-11-22 11:52:52 +01008613 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
8614 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
8615 HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x23, 0x0, HDA_OUTPUT),
8616 HDA_CODEC_MUTE("PC Beep Playback Switch", 0x23, 0x0, HDA_OUTPUT),
8617 { }
8618};
8619
Kailang Yangdf694da2005-12-05 19:42:22 +01008620/*
8621 * generic initialization of ADC, input mixers and output mixers
8622 */
8623static struct hda_verb alc861_base_init_verbs[] = {
8624 /*
8625 * Unmute ADC0 and set the default input to mic-in
8626 */
8627 /* port-A for surround (rear panel) */
8628 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
8629 { 0x0e, AC_VERB_SET_CONNECT_SEL, 0x00 },
8630 /* port-B for mic-in (rear panel) with vref */
8631 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
8632 /* port-C for line-in (rear panel) */
8633 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
8634 /* port-D for Front */
8635 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
8636 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
8637 /* port-E for HP out (front panel) */
8638 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
8639 /* route front PCM to HP */
Takashi Iwai9dece1d2006-11-16 17:12:49 +01008640 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
Kailang Yangdf694da2005-12-05 19:42:22 +01008641 /* port-F for mic-in (front panel) with vref */
8642 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
8643 /* port-G for CLFE (rear panel) */
8644 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
8645 { 0x1f, AC_VERB_SET_CONNECT_SEL, 0x00 },
8646 /* port-H for side (rear panel) */
8647 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
8648 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x00 },
8649 /* CD-in */
8650 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
8651 /* route front mic to ADC1*/
8652 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
8653 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8654
8655 /* Unmute DAC0~3 & spdif out*/
8656 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8657 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8658 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8659 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8660 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8661
8662 /* Unmute Mixer 14 (mic) 1c (Line in)*/
8663 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8664 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8665 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8666 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8667
8668 /* Unmute Stereo Mixer 15 */
8669 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8670 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8671 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02008672 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c}, /* Output 0~12 step */
Kailang Yangdf694da2005-12-05 19:42:22 +01008673
8674 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8675 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8676 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8677 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8678 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8679 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8680 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8681 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02008682 /* hp used DAC 3 (Front) */
8683 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
Kailang Yangdf694da2005-12-05 19:42:22 +01008684 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
8685
8686 { }
8687};
8688
8689static struct hda_verb alc861_threestack_init_verbs[] = {
8690 /*
8691 * Unmute ADC0 and set the default input to mic-in
8692 */
8693 /* port-A for surround (rear panel) */
8694 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
8695 /* port-B for mic-in (rear panel) with vref */
8696 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
8697 /* port-C for line-in (rear panel) */
8698 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
8699 /* port-D for Front */
8700 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
8701 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
8702 /* port-E for HP out (front panel) */
8703 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
8704 /* route front PCM to HP */
Takashi Iwai9dece1d2006-11-16 17:12:49 +01008705 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
Kailang Yangdf694da2005-12-05 19:42:22 +01008706 /* port-F for mic-in (front panel) with vref */
8707 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
8708 /* port-G for CLFE (rear panel) */
8709 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
8710 /* port-H for side (rear panel) */
8711 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
8712 /* CD-in */
8713 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
8714 /* route front mic to ADC1*/
8715 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
8716 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8717 /* Unmute DAC0~3 & spdif out*/
8718 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8719 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8720 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8721 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8722 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8723
8724 /* Unmute Mixer 14 (mic) 1c (Line in)*/
8725 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8726 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8727 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8728 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8729
8730 /* Unmute Stereo Mixer 15 */
8731 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8732 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8733 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02008734 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c}, /* Output 0~12 step */
Kailang Yangdf694da2005-12-05 19:42:22 +01008735
8736 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8737 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8738 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8739 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8740 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8741 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8742 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8743 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02008744 /* hp used DAC 3 (Front) */
8745 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
Kailang Yangdf694da2005-12-05 19:42:22 +01008746 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
8747 { }
8748};
Takashi Iwai22309c32006-08-09 16:57:28 +02008749
8750static struct hda_verb alc861_uniwill_m31_init_verbs[] = {
8751 /*
8752 * Unmute ADC0 and set the default input to mic-in
8753 */
8754 /* port-A for surround (rear panel) */
8755 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
8756 /* port-B for mic-in (rear panel) with vref */
8757 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
8758 /* port-C for line-in (rear panel) */
8759 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
8760 /* port-D for Front */
8761 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
8762 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
8763 /* port-E for HP out (front panel) */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02008764 /* this has to be set to VREF80 */
8765 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
Takashi Iwai22309c32006-08-09 16:57:28 +02008766 /* route front PCM to HP */
Takashi Iwai9dece1d2006-11-16 17:12:49 +01008767 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
Takashi Iwai22309c32006-08-09 16:57:28 +02008768 /* port-F for mic-in (front panel) with vref */
8769 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
8770 /* port-G for CLFE (rear panel) */
8771 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
8772 /* port-H for side (rear panel) */
8773 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
8774 /* CD-in */
8775 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
8776 /* route front mic to ADC1*/
8777 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
8778 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8779 /* Unmute DAC0~3 & spdif out*/
8780 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8781 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8782 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8783 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8784 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8785
8786 /* Unmute Mixer 14 (mic) 1c (Line in)*/
8787 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8788 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8789 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8790 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8791
8792 /* Unmute Stereo Mixer 15 */
8793 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8794 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8795 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02008796 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c}, /* Output 0~12 step */
Takashi Iwai22309c32006-08-09 16:57:28 +02008797
8798 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8799 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8800 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8801 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8802 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8803 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8804 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8805 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02008806 /* hp used DAC 3 (Front) */
8807 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
Takashi Iwai22309c32006-08-09 16:57:28 +02008808 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
8809 { }
8810};
8811
Mariusz Domanski7cdbff92006-10-23 13:42:56 +02008812static struct hda_verb alc861_asus_init_verbs[] = {
8813 /*
8814 * Unmute ADC0 and set the default input to mic-in
8815 */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02008816 /* port-A for surround (rear panel)
8817 * according to codec#0 this is the HP jack
8818 */
Mariusz Domanski7cdbff92006-10-23 13:42:56 +02008819 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 }, /* was 0x00 */
8820 /* route front PCM to HP */
8821 { 0x0e, AC_VERB_SET_CONNECT_SEL, 0x01 },
8822 /* port-B for mic-in (rear panel) with vref */
8823 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
8824 /* port-C for line-in (rear panel) */
8825 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
8826 /* port-D for Front */
8827 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
8828 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
8829 /* port-E for HP out (front panel) */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02008830 /* this has to be set to VREF80 */
8831 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
Mariusz Domanski7cdbff92006-10-23 13:42:56 +02008832 /* route front PCM to HP */
Takashi Iwai9dece1d2006-11-16 17:12:49 +01008833 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
Mariusz Domanski7cdbff92006-10-23 13:42:56 +02008834 /* port-F for mic-in (front panel) with vref */
8835 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
8836 /* port-G for CLFE (rear panel) */
8837 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
8838 /* port-H for side (rear panel) */
8839 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
8840 /* CD-in */
8841 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
8842 /* route front mic to ADC1*/
8843 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
8844 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8845 /* Unmute DAC0~3 & spdif out*/
8846 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8847 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8848 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8849 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8850 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8851 /* Unmute Mixer 14 (mic) 1c (Line in)*/
8852 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8853 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8854 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8855 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8856
8857 /* Unmute Stereo Mixer 15 */
8858 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8859 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8860 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02008861 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c}, /* Output 0~12 step */
Mariusz Domanski7cdbff92006-10-23 13:42:56 +02008862
8863 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8864 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8865 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8866 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8867 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8868 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8869 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8870 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02008871 /* hp used DAC 3 (Front) */
8872 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
Mariusz Domanski7cdbff92006-10-23 13:42:56 +02008873 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
8874 { }
8875};
8876
Takashi Iwai56bb0ca2006-11-22 11:52:52 +01008877/* additional init verbs for ASUS laptops */
8878static struct hda_verb alc861_asus_laptop_init_verbs[] = {
8879 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x45 }, /* HP-out */
8880 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2) }, /* mute line-in */
8881 { }
8882};
Mariusz Domanski7cdbff92006-10-23 13:42:56 +02008883
Kailang Yangdf694da2005-12-05 19:42:22 +01008884/*
8885 * generic initialization of ADC, input mixers and output mixers
8886 */
8887static struct hda_verb alc861_auto_init_verbs[] = {
8888 /*
8889 * Unmute ADC0 and set the default input to mic-in
8890 */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02008891 /* {0x08, AC_VERB_SET_CONNECT_SEL, 0x00}, */
Kailang Yangdf694da2005-12-05 19:42:22 +01008892 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8893
8894 /* Unmute DAC0~3 & spdif out*/
8895 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8896 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8897 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8898 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8899 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8900
8901 /* Unmute Mixer 14 (mic) 1c (Line in)*/
8902 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8903 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8904 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8905 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8906
8907 /* Unmute Stereo Mixer 15 */
8908 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8909 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8910 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
8911 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c},
8912
8913 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8914 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8915 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8916 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8917 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8918 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8919 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8920 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8921
8922 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
8923 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02008924 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
8925 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
Kailang Yangdf694da2005-12-05 19:42:22 +01008926 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
8927 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02008928 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
8929 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
Kailang Yangdf694da2005-12-05 19:42:22 +01008930
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02008931 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00}, /* set Mic 1 */
Kailang Yangdf694da2005-12-05 19:42:22 +01008932
8933 { }
8934};
8935
Tobin Davisa53d1ae2006-10-17 12:00:28 +02008936static struct hda_verb alc861_toshiba_init_verbs[] = {
8937 {0x0f, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02008938
Tobin Davisa53d1ae2006-10-17 12:00:28 +02008939 { }
8940};
8941
8942/* toggle speaker-output according to the hp-jack state */
8943static void alc861_toshiba_automute(struct hda_codec *codec)
8944{
8945 unsigned int present;
8946
8947 present = snd_hda_codec_read(codec, 0x0f, 0,
8948 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
8949 snd_hda_codec_amp_update(codec, 0x16, 0, HDA_INPUT, 0,
8950 0x80, present ? 0x80 : 0);
8951 snd_hda_codec_amp_update(codec, 0x16, 1, HDA_INPUT, 0,
8952 0x80, present ? 0x80 : 0);
8953 snd_hda_codec_amp_update(codec, 0x1a, 0, HDA_INPUT, 3,
8954 0x80, present ? 0 : 0x80);
8955 snd_hda_codec_amp_update(codec, 0x1a, 1, HDA_INPUT, 3,
8956 0x80, present ? 0 : 0x80);
8957}
8958
8959static void alc861_toshiba_unsol_event(struct hda_codec *codec,
8960 unsigned int res)
8961{
Tobin Davisa53d1ae2006-10-17 12:00:28 +02008962 if ((res >> 26) == ALC880_HP_EVENT)
8963 alc861_toshiba_automute(codec);
8964}
8965
Kailang Yangdf694da2005-12-05 19:42:22 +01008966/* pcm configuration: identiacal with ALC880 */
8967#define alc861_pcm_analog_playback alc880_pcm_analog_playback
8968#define alc861_pcm_analog_capture alc880_pcm_analog_capture
8969#define alc861_pcm_digital_playback alc880_pcm_digital_playback
8970#define alc861_pcm_digital_capture alc880_pcm_digital_capture
8971
8972
8973#define ALC861_DIGOUT_NID 0x07
8974
8975static struct hda_channel_mode alc861_8ch_modes[1] = {
8976 { 8, NULL }
8977};
8978
8979static hda_nid_t alc861_dac_nids[4] = {
8980 /* front, surround, clfe, side */
8981 0x03, 0x06, 0x05, 0x04
8982};
8983
Takashi Iwai9c7f8522006-06-28 15:08:22 +02008984static hda_nid_t alc660_dac_nids[3] = {
8985 /* front, clfe, surround */
8986 0x03, 0x05, 0x06
8987};
8988
Kailang Yangdf694da2005-12-05 19:42:22 +01008989static hda_nid_t alc861_adc_nids[1] = {
8990 /* ADC0-2 */
8991 0x08,
8992};
8993
8994static struct hda_input_mux alc861_capture_source = {
8995 .num_items = 5,
8996 .items = {
8997 { "Mic", 0x0 },
8998 { "Front Mic", 0x3 },
8999 { "Line", 0x1 },
9000 { "CD", 0x4 },
9001 { "Mixer", 0x5 },
9002 },
9003};
9004
9005/* fill in the dac_nids table from the parsed pin configuration */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02009006static int alc861_auto_fill_dac_nids(struct alc_spec *spec,
9007 const struct auto_pin_cfg *cfg)
Kailang Yangdf694da2005-12-05 19:42:22 +01009008{
9009 int i;
9010 hda_nid_t nid;
9011
9012 spec->multiout.dac_nids = spec->private_dac_nids;
9013 for (i = 0; i < cfg->line_outs; i++) {
9014 nid = cfg->line_out_pins[i];
9015 if (nid) {
9016 if (i >= ARRAY_SIZE(alc861_dac_nids))
9017 continue;
9018 spec->multiout.dac_nids[i] = alc861_dac_nids[i];
9019 }
9020 }
9021 spec->multiout.num_dacs = cfg->line_outs;
9022 return 0;
9023}
9024
9025/* add playback controls from the parsed DAC table */
9026static int alc861_auto_create_multi_out_ctls(struct alc_spec *spec,
9027 const struct auto_pin_cfg *cfg)
9028{
9029 char name[32];
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02009030 static const char *chname[4] = {
9031 "Front", "Surround", NULL /*CLFE*/, "Side"
9032 };
Kailang Yangdf694da2005-12-05 19:42:22 +01009033 hda_nid_t nid;
9034 int i, idx, err;
9035
9036 for (i = 0; i < cfg->line_outs; i++) {
9037 nid = spec->multiout.dac_nids[i];
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02009038 if (!nid)
Kailang Yangdf694da2005-12-05 19:42:22 +01009039 continue;
9040 if (nid == 0x05) {
9041 /* Center/LFE */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02009042 err = add_control(spec, ALC_CTL_BIND_MUTE,
9043 "Center Playback Switch",
9044 HDA_COMPOSE_AMP_VAL(nid, 1, 0,
9045 HDA_OUTPUT));
9046 if (err < 0)
Kailang Yangdf694da2005-12-05 19:42:22 +01009047 return err;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02009048 err = add_control(spec, ALC_CTL_BIND_MUTE,
9049 "LFE Playback Switch",
9050 HDA_COMPOSE_AMP_VAL(nid, 2, 0,
9051 HDA_OUTPUT));
9052 if (err < 0)
Kailang Yangdf694da2005-12-05 19:42:22 +01009053 return err;
9054 } else {
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02009055 for (idx = 0; idx < ARRAY_SIZE(alc861_dac_nids) - 1;
9056 idx++)
Kailang Yangdf694da2005-12-05 19:42:22 +01009057 if (nid == alc861_dac_nids[idx])
9058 break;
9059 sprintf(name, "%s Playback Switch", chname[idx]);
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02009060 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
9061 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
9062 HDA_OUTPUT));
9063 if (err < 0)
Kailang Yangdf694da2005-12-05 19:42:22 +01009064 return err;
9065 }
9066 }
9067 return 0;
9068}
9069
9070static int alc861_auto_create_hp_ctls(struct alc_spec *spec, hda_nid_t pin)
9071{
9072 int err;
9073 hda_nid_t nid;
9074
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02009075 if (!pin)
Kailang Yangdf694da2005-12-05 19:42:22 +01009076 return 0;
9077
9078 if ((pin >= 0x0b && pin <= 0x10) || pin == 0x1f || pin == 0x20) {
9079 nid = 0x03;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02009080 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
9081 "Headphone Playback Switch",
9082 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT));
9083 if (err < 0)
Kailang Yangdf694da2005-12-05 19:42:22 +01009084 return err;
9085 spec->multiout.hp_nid = nid;
9086 }
9087 return 0;
9088}
9089
9090/* create playback/capture controls for input pins */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02009091static int alc861_auto_create_analog_input_ctls(struct alc_spec *spec,
9092 const struct auto_pin_cfg *cfg)
Kailang Yangdf694da2005-12-05 19:42:22 +01009093{
Kailang Yangdf694da2005-12-05 19:42:22 +01009094 struct hda_input_mux *imux = &spec->private_imux;
9095 int i, err, idx, idx1;
9096
9097 for (i = 0; i < AUTO_PIN_LAST; i++) {
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02009098 switch (cfg->input_pins[i]) {
Kailang Yangdf694da2005-12-05 19:42:22 +01009099 case 0x0c:
9100 idx1 = 1;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02009101 idx = 2; /* Line In */
Kailang Yangdf694da2005-12-05 19:42:22 +01009102 break;
9103 case 0x0f:
9104 idx1 = 2;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02009105 idx = 2; /* Line In */
Kailang Yangdf694da2005-12-05 19:42:22 +01009106 break;
9107 case 0x0d:
9108 idx1 = 0;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02009109 idx = 1; /* Mic In */
Kailang Yangdf694da2005-12-05 19:42:22 +01009110 break;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02009111 case 0x10:
Kailang Yangdf694da2005-12-05 19:42:22 +01009112 idx1 = 3;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02009113 idx = 1; /* Mic In */
Kailang Yangdf694da2005-12-05 19:42:22 +01009114 break;
9115 case 0x11:
9116 idx1 = 4;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02009117 idx = 0; /* CD */
Kailang Yangdf694da2005-12-05 19:42:22 +01009118 break;
9119 default:
9120 continue;
9121 }
9122
Takashi Iwai4a471b72005-12-07 13:56:29 +01009123 err = new_analog_input(spec, cfg->input_pins[i],
9124 auto_pin_cfg_labels[i], idx, 0x15);
Kailang Yangdf694da2005-12-05 19:42:22 +01009125 if (err < 0)
9126 return err;
9127
Takashi Iwai4a471b72005-12-07 13:56:29 +01009128 imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
Kailang Yangdf694da2005-12-05 19:42:22 +01009129 imux->items[imux->num_items].index = idx1;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02009130 imux->num_items++;
Kailang Yangdf694da2005-12-05 19:42:22 +01009131 }
9132 return 0;
9133}
9134
9135static struct snd_kcontrol_new alc861_capture_mixer[] = {
9136 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
9137 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
9138
9139 {
9140 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9141 /* The multiple "Capture Source" controls confuse alsamixer
9142 * So call somewhat different..
9143 *FIXME: the controls appear in the "playback" view!
9144 */
9145 /* .name = "Capture Source", */
9146 .name = "Input Source",
9147 .count = 1,
9148 .info = alc_mux_enum_info,
9149 .get = alc_mux_enum_get,
9150 .put = alc_mux_enum_put,
9151 },
9152 { } /* end */
9153};
9154
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02009155static void alc861_auto_set_output_and_unmute(struct hda_codec *codec,
9156 hda_nid_t nid,
Kailang Yangdf694da2005-12-05 19:42:22 +01009157 int pin_type, int dac_idx)
9158{
9159 /* set as output */
9160
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02009161 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
9162 pin_type);
9163 snd_hda_codec_write(codec, dac_idx, 0, AC_VERB_SET_AMP_GAIN_MUTE,
9164 AMP_OUT_UNMUTE);
Kailang Yangdf694da2005-12-05 19:42:22 +01009165
9166}
9167
9168static void alc861_auto_init_multi_out(struct hda_codec *codec)
9169{
9170 struct alc_spec *spec = codec->spec;
9171 int i;
9172
Kailang Yangbc9f98a2007-04-12 13:06:07 +02009173 alc_subsystem_id(codec, 0x0e, 0x0f, 0x0b);
Kailang Yangdf694da2005-12-05 19:42:22 +01009174 for (i = 0; i < spec->autocfg.line_outs; i++) {
9175 hda_nid_t nid = spec->autocfg.line_out_pins[i];
Takashi Iwaibaba8ee2007-04-23 17:17:48 +02009176 int pin_type = get_pin_type(spec->autocfg.line_out_type);
Kailang Yangdf694da2005-12-05 19:42:22 +01009177 if (nid)
Takashi Iwaibaba8ee2007-04-23 17:17:48 +02009178 alc861_auto_set_output_and_unmute(codec, nid, pin_type,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02009179 spec->multiout.dac_nids[i]);
Kailang Yangdf694da2005-12-05 19:42:22 +01009180 }
9181}
9182
9183static void alc861_auto_init_hp_out(struct hda_codec *codec)
9184{
9185 struct alc_spec *spec = codec->spec;
9186 hda_nid_t pin;
9187
Takashi Iwaieb06ed82006-09-20 17:10:27 +02009188 pin = spec->autocfg.hp_pins[0];
Kailang Yangdf694da2005-12-05 19:42:22 +01009189 if (pin) /* connect to front */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02009190 alc861_auto_set_output_and_unmute(codec, pin, PIN_HP,
9191 spec->multiout.dac_nids[0]);
Kailang Yangdf694da2005-12-05 19:42:22 +01009192}
9193
9194static void alc861_auto_init_analog_input(struct hda_codec *codec)
9195{
9196 struct alc_spec *spec = codec->spec;
9197 int i;
9198
9199 for (i = 0; i < AUTO_PIN_LAST; i++) {
9200 hda_nid_t nid = spec->autocfg.input_pins[i];
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02009201 if (nid >= 0x0c && nid <= 0x11) {
9202 snd_hda_codec_write(codec, nid, 0,
9203 AC_VERB_SET_PIN_WIDGET_CONTROL,
9204 i <= AUTO_PIN_FRONT_MIC ?
9205 PIN_VREF80 : PIN_IN);
Kailang Yangdf694da2005-12-05 19:42:22 +01009206 }
9207 }
9208}
9209
9210/* parse the BIOS configuration and set up the alc_spec */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02009211/* return 1 if successful, 0 if the proper config is not found,
9212 * or a negative error code
9213 */
Kailang Yangdf694da2005-12-05 19:42:22 +01009214static int alc861_parse_auto_config(struct hda_codec *codec)
9215{
9216 struct alc_spec *spec = codec->spec;
9217 int err;
9218 static hda_nid_t alc861_ignore[] = { 0x1d, 0 };
9219
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02009220 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
9221 alc861_ignore);
9222 if (err < 0)
Kailang Yangdf694da2005-12-05 19:42:22 +01009223 return err;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02009224 if (!spec->autocfg.line_outs)
Kailang Yangdf694da2005-12-05 19:42:22 +01009225 return 0; /* can't find valid BIOS pin config */
9226
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02009227 err = alc861_auto_fill_dac_nids(spec, &spec->autocfg);
9228 if (err < 0)
9229 return err;
9230 err = alc861_auto_create_multi_out_ctls(spec, &spec->autocfg);
9231 if (err < 0)
9232 return err;
9233 err = alc861_auto_create_hp_ctls(spec, spec->autocfg.hp_pins[0]);
9234 if (err < 0)
9235 return err;
9236 err = alc861_auto_create_analog_input_ctls(spec, &spec->autocfg);
9237 if (err < 0)
Kailang Yangdf694da2005-12-05 19:42:22 +01009238 return err;
9239
9240 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
9241
9242 if (spec->autocfg.dig_out_pin)
9243 spec->multiout.dig_out_nid = ALC861_DIGOUT_NID;
9244
9245 if (spec->kctl_alloc)
9246 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
9247
9248 spec->init_verbs[spec->num_init_verbs++] = alc861_auto_init_verbs;
9249
Jonathan Woithea1e8d2d2006-03-28 12:47:09 +02009250 spec->num_mux_defs = 1;
Kailang Yangdf694da2005-12-05 19:42:22 +01009251 spec->input_mux = &spec->private_imux;
9252
9253 spec->adc_nids = alc861_adc_nids;
9254 spec->num_adc_nids = ARRAY_SIZE(alc861_adc_nids);
9255 spec->mixers[spec->num_mixers] = alc861_capture_mixer;
9256 spec->num_mixers++;
9257
9258 return 1;
9259}
9260
Takashi Iwaiae6b8132006-03-03 16:47:17 +01009261/* additional initialization for auto-configuration model */
9262static void alc861_auto_init(struct hda_codec *codec)
Kailang Yangdf694da2005-12-05 19:42:22 +01009263{
Kailang Yangdf694da2005-12-05 19:42:22 +01009264 alc861_auto_init_multi_out(codec);
9265 alc861_auto_init_hp_out(codec);
9266 alc861_auto_init_analog_input(codec);
Kailang Yangdf694da2005-12-05 19:42:22 +01009267}
9268
9269
9270/*
9271 * configuration and preset
9272 */
Takashi Iwaif5fcc132006-11-24 17:07:44 +01009273static const char *alc861_models[ALC861_MODEL_LAST] = {
9274 [ALC861_3ST] = "3stack",
9275 [ALC660_3ST] = "3stack-660",
9276 [ALC861_3ST_DIG] = "3stack-dig",
9277 [ALC861_6ST_DIG] = "6stack-dig",
9278 [ALC861_UNIWILL_M31] = "uniwill-m31",
9279 [ALC861_TOSHIBA] = "toshiba",
9280 [ALC861_ASUS] = "asus",
9281 [ALC861_ASUS_LAPTOP] = "asus-laptop",
9282 [ALC861_AUTO] = "auto",
9283};
9284
9285static struct snd_pci_quirk alc861_cfg_tbl[] = {
Takashi Iwai687a47b2007-01-10 11:25:58 +01009286 SND_PCI_QUIRK(0x1043, 0x1205, "ASUS W7J", ALC861_3ST),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01009287 SND_PCI_QUIRK(0x1043, 0x1335, "ASUS F2/3", ALC861_ASUS_LAPTOP),
9288 SND_PCI_QUIRK(0x1043, 0x1338, "ASUS F2/3", ALC861_ASUS_LAPTOP),
Takashi Iwaif223a9f2007-04-25 13:38:31 +02009289 SND_PCI_QUIRK(0x1043, 0x13d7, "ASUS A9rp", ALC861_ASUS_LAPTOP),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01009290 SND_PCI_QUIRK(0x1043, 0x1393, "ASUS", ALC861_ASUS),
Tobin Davisad5e7732007-01-08 10:57:32 +01009291 SND_PCI_QUIRK(0x1179, 0xff00, "Toshiba", ALC861_TOSHIBA),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01009292 SND_PCI_QUIRK(0x1179, 0xff10, "Toshiba", ALC861_TOSHIBA),
9293 SND_PCI_QUIRK(0x1584, 0x9072, "Uniwill m31", ALC861_UNIWILL_M31),
Takashi Iwai4147dab2007-01-31 10:35:19 +01009294 SND_PCI_QUIRK(0x1584, 0x2b01, "Uniwill X40AIx", ALC861_UNIWILL_M31),
Takashi Iwai07e038b2007-02-15 18:23:41 +01009295 SND_PCI_QUIRK(0x1849, 0x0660, "Asrock 939SLI32", ALC660_3ST),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01009296 SND_PCI_QUIRK(0x8086, 0xd600, "Intel", ALC861_3ST),
Kailang Yangdf694da2005-12-05 19:42:22 +01009297 {}
9298};
9299
9300static struct alc_config_preset alc861_presets[] = {
9301 [ALC861_3ST] = {
9302 .mixers = { alc861_3ST_mixer },
9303 .init_verbs = { alc861_threestack_init_verbs },
9304 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
9305 .dac_nids = alc861_dac_nids,
9306 .num_channel_mode = ARRAY_SIZE(alc861_threestack_modes),
9307 .channel_mode = alc861_threestack_modes,
Takashi Iwai4e195a72006-07-28 14:47:34 +02009308 .need_dac_fix = 1,
Kailang Yangdf694da2005-12-05 19:42:22 +01009309 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
9310 .adc_nids = alc861_adc_nids,
9311 .input_mux = &alc861_capture_source,
9312 },
9313 [ALC861_3ST_DIG] = {
9314 .mixers = { alc861_base_mixer },
9315 .init_verbs = { alc861_threestack_init_verbs },
9316 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
9317 .dac_nids = alc861_dac_nids,
9318 .dig_out_nid = ALC861_DIGOUT_NID,
9319 .num_channel_mode = ARRAY_SIZE(alc861_threestack_modes),
9320 .channel_mode = alc861_threestack_modes,
Takashi Iwai4e195a72006-07-28 14:47:34 +02009321 .need_dac_fix = 1,
Kailang Yangdf694da2005-12-05 19:42:22 +01009322 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
9323 .adc_nids = alc861_adc_nids,
9324 .input_mux = &alc861_capture_source,
9325 },
9326 [ALC861_6ST_DIG] = {
9327 .mixers = { alc861_base_mixer },
9328 .init_verbs = { alc861_base_init_verbs },
9329 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
9330 .dac_nids = alc861_dac_nids,
9331 .dig_out_nid = ALC861_DIGOUT_NID,
9332 .num_channel_mode = ARRAY_SIZE(alc861_8ch_modes),
9333 .channel_mode = alc861_8ch_modes,
9334 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
9335 .adc_nids = alc861_adc_nids,
9336 .input_mux = &alc861_capture_source,
9337 },
Takashi Iwai9c7f8522006-06-28 15:08:22 +02009338 [ALC660_3ST] = {
9339 .mixers = { alc861_3ST_mixer },
9340 .init_verbs = { alc861_threestack_init_verbs },
9341 .num_dacs = ARRAY_SIZE(alc660_dac_nids),
9342 .dac_nids = alc660_dac_nids,
9343 .num_channel_mode = ARRAY_SIZE(alc861_threestack_modes),
9344 .channel_mode = alc861_threestack_modes,
Takashi Iwai4e195a72006-07-28 14:47:34 +02009345 .need_dac_fix = 1,
Takashi Iwai9c7f8522006-06-28 15:08:22 +02009346 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
9347 .adc_nids = alc861_adc_nids,
9348 .input_mux = &alc861_capture_source,
9349 },
Takashi Iwai22309c32006-08-09 16:57:28 +02009350 [ALC861_UNIWILL_M31] = {
9351 .mixers = { alc861_uniwill_m31_mixer },
9352 .init_verbs = { alc861_uniwill_m31_init_verbs },
9353 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
9354 .dac_nids = alc861_dac_nids,
9355 .dig_out_nid = ALC861_DIGOUT_NID,
9356 .num_channel_mode = ARRAY_SIZE(alc861_uniwill_m31_modes),
9357 .channel_mode = alc861_uniwill_m31_modes,
9358 .need_dac_fix = 1,
9359 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
9360 .adc_nids = alc861_adc_nids,
9361 .input_mux = &alc861_capture_source,
9362 },
Tobin Davisa53d1ae2006-10-17 12:00:28 +02009363 [ALC861_TOSHIBA] = {
9364 .mixers = { alc861_toshiba_mixer },
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02009365 .init_verbs = { alc861_base_init_verbs,
9366 alc861_toshiba_init_verbs },
Tobin Davisa53d1ae2006-10-17 12:00:28 +02009367 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
9368 .dac_nids = alc861_dac_nids,
9369 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
9370 .channel_mode = alc883_3ST_2ch_modes,
9371 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
9372 .adc_nids = alc861_adc_nids,
9373 .input_mux = &alc861_capture_source,
9374 .unsol_event = alc861_toshiba_unsol_event,
9375 .init_hook = alc861_toshiba_automute,
9376 },
Mariusz Domanski7cdbff92006-10-23 13:42:56 +02009377 [ALC861_ASUS] = {
9378 .mixers = { alc861_asus_mixer },
9379 .init_verbs = { alc861_asus_init_verbs },
9380 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
9381 .dac_nids = alc861_dac_nids,
9382 .dig_out_nid = ALC861_DIGOUT_NID,
9383 .num_channel_mode = ARRAY_SIZE(alc861_asus_modes),
9384 .channel_mode = alc861_asus_modes,
9385 .need_dac_fix = 1,
9386 .hp_nid = 0x06,
9387 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
9388 .adc_nids = alc861_adc_nids,
9389 .input_mux = &alc861_capture_source,
9390 },
Takashi Iwai56bb0ca2006-11-22 11:52:52 +01009391 [ALC861_ASUS_LAPTOP] = {
9392 .mixers = { alc861_toshiba_mixer, alc861_asus_laptop_mixer },
9393 .init_verbs = { alc861_asus_init_verbs,
9394 alc861_asus_laptop_init_verbs },
9395 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
9396 .dac_nids = alc861_dac_nids,
9397 .dig_out_nid = ALC861_DIGOUT_NID,
9398 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
9399 .channel_mode = alc883_3ST_2ch_modes,
9400 .need_dac_fix = 1,
9401 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
9402 .adc_nids = alc861_adc_nids,
9403 .input_mux = &alc861_capture_source,
9404 },
9405};
Kailang Yangdf694da2005-12-05 19:42:22 +01009406
9407
9408static int patch_alc861(struct hda_codec *codec)
9409{
9410 struct alc_spec *spec;
9411 int board_config;
9412 int err;
9413
Robert P. J. Daydc041e02006-12-19 14:44:15 +01009414 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
Kailang Yangdf694da2005-12-05 19:42:22 +01009415 if (spec == NULL)
9416 return -ENOMEM;
9417
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02009418 codec->spec = spec;
Kailang Yangdf694da2005-12-05 19:42:22 +01009419
Takashi Iwaif5fcc132006-11-24 17:07:44 +01009420 board_config = snd_hda_check_board_config(codec, ALC861_MODEL_LAST,
9421 alc861_models,
9422 alc861_cfg_tbl);
Takashi Iwai9c7f8522006-06-28 15:08:22 +02009423
Takashi Iwaif5fcc132006-11-24 17:07:44 +01009424 if (board_config < 0) {
Takashi Iwai9c7f8522006-06-28 15:08:22 +02009425 printk(KERN_INFO "hda_codec: Unknown model for ALC861, "
9426 "trying auto-probe from BIOS...\n");
Kailang Yangdf694da2005-12-05 19:42:22 +01009427 board_config = ALC861_AUTO;
9428 }
9429
9430 if (board_config == ALC861_AUTO) {
9431 /* automatic parse from the BIOS config */
9432 err = alc861_parse_auto_config(codec);
9433 if (err < 0) {
9434 alc_free(codec);
9435 return err;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02009436 } else if (!err) {
Takashi Iwai9c7f8522006-06-28 15:08:22 +02009437 printk(KERN_INFO
9438 "hda_codec: Cannot set up configuration "
9439 "from BIOS. Using base mode...\n");
Kailang Yangdf694da2005-12-05 19:42:22 +01009440 board_config = ALC861_3ST_DIG;
9441 }
9442 }
9443
9444 if (board_config != ALC861_AUTO)
9445 setup_preset(spec, &alc861_presets[board_config]);
9446
9447 spec->stream_name_analog = "ALC861 Analog";
9448 spec->stream_analog_playback = &alc861_pcm_analog_playback;
9449 spec->stream_analog_capture = &alc861_pcm_analog_capture;
9450
9451 spec->stream_name_digital = "ALC861 Digital";
9452 spec->stream_digital_playback = &alc861_pcm_digital_playback;
9453 spec->stream_digital_capture = &alc861_pcm_digital_capture;
9454
9455 codec->patch_ops = alc_patch_ops;
9456 if (board_config == ALC861_AUTO)
Takashi Iwaiae6b8132006-03-03 16:47:17 +01009457 spec->init_hook = alc861_auto_init;
Kailang Yangdf694da2005-12-05 19:42:22 +01009458
9459 return 0;
9460}
9461
9462/*
Jakub Schmidtkef32610e2007-02-02 18:17:27 +01009463 * ALC861-VD support
9464 *
9465 * Based on ALC882
9466 *
9467 * In addition, an independent DAC
9468 */
9469#define ALC861VD_DIGOUT_NID 0x06
9470
9471static hda_nid_t alc861vd_dac_nids[4] = {
9472 /* front, surr, clfe, side surr */
9473 0x02, 0x03, 0x04, 0x05
9474};
9475
9476/* dac_nids for ALC660vd are in a different order - according to
9477 * Realtek's driver.
9478 * This should probably tesult in a different mixer for 6stack models
9479 * of ALC660vd codecs, but for now there is only 3stack mixer
9480 * - and it is the same as in 861vd.
9481 * adc_nids in ALC660vd are (is) the same as in 861vd
9482 */
9483static hda_nid_t alc660vd_dac_nids[3] = {
9484 /* front, rear, clfe, rear_surr */
9485 0x02, 0x04, 0x03
9486};
9487
9488static hda_nid_t alc861vd_adc_nids[1] = {
9489 /* ADC0 */
9490 0x09,
9491};
9492
9493/* input MUX */
9494/* FIXME: should be a matrix-type input source selection */
9495static struct hda_input_mux alc861vd_capture_source = {
9496 .num_items = 4,
9497 .items = {
9498 { "Mic", 0x0 },
9499 { "Front Mic", 0x1 },
9500 { "Line", 0x2 },
9501 { "CD", 0x4 },
9502 },
9503};
9504
Kailang Yang272a5272007-05-14 11:00:38 +02009505static struct hda_input_mux alc861vd_dallas_capture_source = {
9506 .num_items = 3,
9507 .items = {
9508 { "Front Mic", 0x0 },
9509 { "ATAPI Mic", 0x1 },
9510 { "Line In", 0x5 },
9511 },
9512};
9513
Jakub Schmidtkef32610e2007-02-02 18:17:27 +01009514#define alc861vd_mux_enum_info alc_mux_enum_info
9515#define alc861vd_mux_enum_get alc_mux_enum_get
9516
9517static int alc861vd_mux_enum_put(struct snd_kcontrol *kcontrol,
9518 struct snd_ctl_elem_value *ucontrol)
9519{
9520 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
9521 struct alc_spec *spec = codec->spec;
9522 const struct hda_input_mux *imux = spec->input_mux;
9523 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
9524 static hda_nid_t capture_mixers[1] = { 0x22 };
9525 hda_nid_t nid = capture_mixers[adc_idx];
9526 unsigned int *cur_val = &spec->cur_mux[adc_idx];
9527 unsigned int i, idx;
9528
9529 idx = ucontrol->value.enumerated.item[0];
9530 if (idx >= imux->num_items)
9531 idx = imux->num_items - 1;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +02009532 if (*cur_val == idx && !codec->in_resume)
Jakub Schmidtkef32610e2007-02-02 18:17:27 +01009533 return 0;
9534 for (i = 0; i < imux->num_items; i++) {
9535 unsigned int v = (i == idx) ? 0x7000 : 0x7080;
9536 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
9537 v | (imux->items[i].index << 8));
9538 }
9539 *cur_val = idx;
9540 return 1;
9541}
9542
9543/*
9544 * 2ch mode
9545 */
9546static struct hda_channel_mode alc861vd_3stack_2ch_modes[1] = {
9547 { 2, NULL }
9548};
9549
9550/*
9551 * 6ch mode
9552 */
9553static struct hda_verb alc861vd_6stack_ch6_init[] = {
9554 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
9555 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
9556 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
9557 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
9558 { } /* end */
9559};
9560
9561/*
9562 * 8ch mode
9563 */
9564static struct hda_verb alc861vd_6stack_ch8_init[] = {
9565 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
9566 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
9567 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
9568 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
9569 { } /* end */
9570};
9571
9572static struct hda_channel_mode alc861vd_6stack_modes[2] = {
9573 { 6, alc861vd_6stack_ch6_init },
9574 { 8, alc861vd_6stack_ch8_init },
9575};
9576
9577static struct snd_kcontrol_new alc861vd_chmode_mixer[] = {
9578 {
9579 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9580 .name = "Channel Mode",
9581 .info = alc_ch_mode_info,
9582 .get = alc_ch_mode_get,
9583 .put = alc_ch_mode_put,
9584 },
9585 { } /* end */
9586};
9587
9588static struct snd_kcontrol_new alc861vd_capture_mixer[] = {
9589 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
9590 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
9591
9592 {
9593 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9594 /* The multiple "Capture Source" controls confuse alsamixer
9595 * So call somewhat different..
9596 *FIXME: the controls appear in the "playback" view!
9597 */
9598 /* .name = "Capture Source", */
9599 .name = "Input Source",
9600 .count = 1,
9601 .info = alc861vd_mux_enum_info,
9602 .get = alc861vd_mux_enum_get,
9603 .put = alc861vd_mux_enum_put,
9604 },
9605 { } /* end */
9606};
9607
9608/* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
9609 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
9610 */
9611static struct snd_kcontrol_new alc861vd_6st_mixer[] = {
9612 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
9613 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
9614
9615 HDA_CODEC_VOLUME("Surround Playback Volume", 0x03, 0x0, HDA_OUTPUT),
9616 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
9617
9618 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0,
9619 HDA_OUTPUT),
9620 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0,
9621 HDA_OUTPUT),
9622 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
9623 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
9624
9625 HDA_CODEC_VOLUME("Side Playback Volume", 0x05, 0x0, HDA_OUTPUT),
9626 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
9627
9628 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
9629
9630 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
9631 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
9632 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
9633
9634 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
9635 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
9636 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
9637
9638 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
9639 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
9640
9641 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
9642 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
9643
9644 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
9645 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
9646
9647 { } /* end */
9648};
9649
9650static struct snd_kcontrol_new alc861vd_3st_mixer[] = {
9651 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
9652 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
9653
9654 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
9655
9656 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
9657 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
9658 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
9659
9660 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
9661 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
9662 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
9663
9664 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
9665 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
9666
9667 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
9668 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
9669
9670 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
9671 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
9672
9673 { } /* end */
9674};
9675
Kailang Yangbdd148a2007-05-08 15:19:08 +02009676static struct snd_kcontrol_new alc861vd_lenovo_mixer[] = {
9677 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
9678 /*HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),*/
9679 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
9680
9681 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
9682
9683 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
9684 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
9685 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
9686
9687 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
9688 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
9689 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
9690
9691 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
9692 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
9693
9694 { } /* end */
9695};
9696
Kailang Yang272a5272007-05-14 11:00:38 +02009697/* Pin assignment: Front=0x14, HP = 0x15,
9698 * Front Mic=0x18, ATAPI Mic = 0x19, Line In = 0x1d
9699 */
9700static struct snd_kcontrol_new alc861vd_dallas_mixer[] = {
9701 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
9702 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
9703 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT),
9704 HDA_BIND_MUTE("Headphone Playback Switch", 0x0d, 2, HDA_INPUT),
9705 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
9706 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
9707 HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
9708 HDA_CODEC_MUTE("ATAPI Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
9709 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x05, HDA_INPUT),
9710 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x05, HDA_INPUT),
9711 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
9712 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
9713 {
9714 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9715 /* .name = "Capture Source", */
9716 .name = "Input Source",
9717 .count = 1,
9718 .info = alc882_mux_enum_info,
9719 .get = alc882_mux_enum_get,
9720 .put = alc882_mux_enum_put,
9721 },
9722 { } /* end */
9723};
9724
Jakub Schmidtkef32610e2007-02-02 18:17:27 +01009725/*
9726 * generic initialization of ADC, input mixers and output mixers
9727 */
9728static struct hda_verb alc861vd_volume_init_verbs[] = {
9729 /*
9730 * Unmute ADC0 and set the default input to mic-in
9731 */
9732 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
9733 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9734
9735 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of
9736 * the analog-loopback mixer widget
9737 */
9738 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
9739 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9740 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9741 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9742 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
9743 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
9744
9745 /* Capture mixer: unmute Mic, F-Mic, Line, CD inputs */
Kailang Yangbdd148a2007-05-08 15:19:08 +02009746 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9747 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9748 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
Jakub Schmidtkef32610e2007-02-02 18:17:27 +01009749 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
Jakub Schmidtkef32610e2007-02-02 18:17:27 +01009750
9751 /*
9752 * Set up output mixers (0x02 - 0x05)
9753 */
9754 /* set vol=0 to output mixers */
9755 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
9756 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
9757 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
9758 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
9759
9760 /* set up input amps for analog loopback */
9761 /* Amp Indices: DAC = 0, mixer = 1 */
9762 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
9763 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
9764 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
9765 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
9766 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
9767 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
9768 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
9769 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
9770
9771 { }
9772};
9773
9774/*
9775 * 3-stack pin configuration:
9776 * front = 0x14, mic/clfe = 0x18, HP = 0x19, line/surr = 0x1a, f-mic = 0x1b
9777 */
9778static struct hda_verb alc861vd_3stack_init_verbs[] = {
9779 /*
9780 * Set pin mode and muting
9781 */
9782 /* set front pin widgets 0x14 for output */
9783 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
9784 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9785 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
9786
9787 /* Mic (rear) pin: input vref at 80% */
9788 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
9789 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
9790 /* Front Mic pin: input vref at 80% */
9791 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
9792 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
9793 /* Line In pin: input */
9794 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
9795 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
9796 /* Line-2 In: Headphone output (output 0 - 0x0c) */
9797 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
9798 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9799 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
9800 /* CD pin widget for input */
9801 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
9802
9803 { }
9804};
9805
9806/*
9807 * 6-stack pin configuration:
9808 */
9809static struct hda_verb alc861vd_6stack_init_verbs[] = {
9810 /*
9811 * Set pin mode and muting
9812 */
9813 /* set front pin widgets 0x14 for output */
9814 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
9815 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9816 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
9817
9818 /* Rear Pin: output 1 (0x0d) */
9819 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
9820 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9821 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
9822 /* CLFE Pin: output 2 (0x0e) */
9823 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
9824 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9825 {0x16, AC_VERB_SET_CONNECT_SEL, 0x02},
9826 /* Side Pin: output 3 (0x0f) */
9827 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
9828 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9829 {0x17, AC_VERB_SET_CONNECT_SEL, 0x03},
9830
9831 /* Mic (rear) pin: input vref at 80% */
9832 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
9833 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
9834 /* Front Mic pin: input vref at 80% */
9835 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
9836 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
9837 /* Line In pin: input */
9838 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
9839 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
9840 /* Line-2 In: Headphone output (output 0 - 0x0c) */
9841 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
9842 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9843 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
9844 /* CD pin widget for input */
9845 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
9846
9847 { }
9848};
9849
Kailang Yangbdd148a2007-05-08 15:19:08 +02009850static struct hda_verb alc861vd_eapd_verbs[] = {
9851 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 2},
9852 { }
9853};
9854
9855static struct hda_verb alc861vd_lenovo_unsol_verbs[] = {
9856 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9857 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9858 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)},
9859 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
9860 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_MIC_EVENT},
9861 {}
9862};
9863
9864/* toggle speaker-output according to the hp-jack state */
9865static void alc861vd_lenovo_hp_automute(struct hda_codec *codec)
9866{
9867 unsigned int present;
9868 unsigned char bits;
9869
9870 present = snd_hda_codec_read(codec, 0x1b, 0,
9871 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
9872 bits = present ? 0x80 : 0;
9873 snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
9874 0x80, bits);
9875 snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
9876 0x80, bits);
9877}
9878
9879static void alc861vd_lenovo_mic_automute(struct hda_codec *codec)
9880{
9881 unsigned int present;
9882 unsigned char bits;
9883
9884 present = snd_hda_codec_read(codec, 0x18, 0,
9885 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
9886 bits = present ? 0x80 : 0;
9887 snd_hda_codec_amp_update(codec, 0x0b, 0, HDA_INPUT, 1,
9888 0x80, bits);
9889 snd_hda_codec_amp_update(codec, 0x0b, 1, HDA_INPUT, 1,
9890 0x80, bits);
9891}
9892
9893static void alc861vd_lenovo_automute(struct hda_codec *codec)
9894{
9895 alc861vd_lenovo_hp_automute(codec);
9896 alc861vd_lenovo_mic_automute(codec);
9897}
9898
9899static void alc861vd_lenovo_unsol_event(struct hda_codec *codec,
9900 unsigned int res)
9901{
9902 switch (res >> 26) {
9903 case ALC880_HP_EVENT:
9904 alc861vd_lenovo_hp_automute(codec);
9905 break;
9906 case ALC880_MIC_EVENT:
9907 alc861vd_lenovo_mic_automute(codec);
9908 break;
9909 }
9910}
9911
Kailang Yang272a5272007-05-14 11:00:38 +02009912static struct hda_verb alc861vd_dallas_verbs[] = {
9913 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
9914 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
9915 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
9916 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
9917
9918 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9919 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9920 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
9921 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
9922 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
9923 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
9924 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
9925 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
9926
9927 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
9928 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9929 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
9930 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9931 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
9932 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9933 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
9934 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9935
9936 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50},
9937 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
9938 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50},
9939 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
9940 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
9941 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
9942 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
9943 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
9944
9945 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9946 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
9947 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
9948 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
9949
9950 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
9951 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
9952 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
9953
9954 { } /* end */
9955};
9956
9957/* toggle speaker-output according to the hp-jack state */
9958static void alc861vd_dallas_automute(struct hda_codec *codec)
9959{
9960 unsigned int present;
9961
9962 present = snd_hda_codec_read(codec, 0x15, 0,
9963 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
9964 snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
9965 0x80, present ? 0x80 : 0);
9966 snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
9967 0x80, present ? 0x80 : 0);
9968}
9969
9970static void alc861vd_dallas_unsol_event(struct hda_codec *codec, unsigned int res)
9971{
9972 if ((res >> 26) == ALC880_HP_EVENT)
9973 alc861vd_dallas_automute(codec);
9974}
9975
Jakub Schmidtkef32610e2007-02-02 18:17:27 +01009976/* pcm configuration: identiacal with ALC880 */
9977#define alc861vd_pcm_analog_playback alc880_pcm_analog_playback
9978#define alc861vd_pcm_analog_capture alc880_pcm_analog_capture
9979#define alc861vd_pcm_digital_playback alc880_pcm_digital_playback
9980#define alc861vd_pcm_digital_capture alc880_pcm_digital_capture
9981
9982/*
9983 * configuration and preset
9984 */
9985static const char *alc861vd_models[ALC861VD_MODEL_LAST] = {
9986 [ALC660VD_3ST] = "3stack-660",
9987 [ALC861VD_3ST] = "3stack",
9988 [ALC861VD_3ST_DIG] = "3stack-digout",
9989 [ALC861VD_6ST_DIG] = "6stack-digout",
Kailang Yangbdd148a2007-05-08 15:19:08 +02009990 [ALC861VD_LENOVO] = "lenovo",
Kailang Yang272a5272007-05-14 11:00:38 +02009991 [ALC861VD_DALLAS] = "dallas",
Jakub Schmidtkef32610e2007-02-02 18:17:27 +01009992 [ALC861VD_AUTO] = "auto",
9993};
9994
9995static struct snd_pci_quirk alc861vd_cfg_tbl[] = {
Takashi Iwai07e038b2007-02-15 18:23:41 +01009996 SND_PCI_QUIRK(0x1043, 0x12e2, "Asus z35m", ALC660VD_3ST),
Jakub Schmidtkef32610e2007-02-02 18:17:27 +01009997 SND_PCI_QUIRK(0x1043, 0x1339, "Asus G1", ALC660VD_3ST),
Daniel Drake36c3b4e2007-05-21 12:27:57 +02009998 SND_PCI_QUIRK(0x1043, 0x81e7, "ASUS", ALC660VD_3ST),
Jakub Schmidtkef32610e2007-02-02 18:17:27 +01009999 SND_PCI_QUIRK(0x10de, 0x03f0, "Realtek ALC660 demo", ALC660VD_3ST),
10000 SND_PCI_QUIRK(0x1019, 0xa88d, "Realtek ALC660 demo", ALC660VD_3ST),
10001
Kailang Yang272a5272007-05-14 11:00:38 +020010002 SND_PCI_QUIRK(0x1179, 0xff00, "DALLAS", ALC861VD_DALLAS),
10003 SND_PCI_QUIRK(0x1179, 0xff01, "DALLAS", ALC861VD_DALLAS),
Kailang Yangbdd148a2007-05-08 15:19:08 +020010004 SND_PCI_QUIRK(0x17aa, 0x3802, "Lenovo 3000 C200", ALC861VD_LENOVO),
10005 SND_PCI_QUIRK(0x17aa, 0x2066, "Lenovo", ALC861VD_LENOVO),
Jakub Schmidtkef32610e2007-02-02 18:17:27 +010010006 {}
10007};
10008
10009static struct alc_config_preset alc861vd_presets[] = {
10010 [ALC660VD_3ST] = {
10011 .mixers = { alc861vd_3st_mixer },
10012 .init_verbs = { alc861vd_volume_init_verbs,
10013 alc861vd_3stack_init_verbs },
10014 .num_dacs = ARRAY_SIZE(alc660vd_dac_nids),
10015 .dac_nids = alc660vd_dac_nids,
10016 .num_adc_nids = ARRAY_SIZE(alc861vd_adc_nids),
10017 .adc_nids = alc861vd_adc_nids,
10018 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
10019 .channel_mode = alc861vd_3stack_2ch_modes,
10020 .input_mux = &alc861vd_capture_source,
10021 },
10022 [ALC861VD_3ST] = {
10023 .mixers = { alc861vd_3st_mixer },
10024 .init_verbs = { alc861vd_volume_init_verbs,
10025 alc861vd_3stack_init_verbs },
10026 .num_dacs = ARRAY_SIZE(alc861vd_dac_nids),
10027 .dac_nids = alc861vd_dac_nids,
10028 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
10029 .channel_mode = alc861vd_3stack_2ch_modes,
10030 .input_mux = &alc861vd_capture_source,
10031 },
10032 [ALC861VD_3ST_DIG] = {
10033 .mixers = { alc861vd_3st_mixer },
10034 .init_verbs = { alc861vd_volume_init_verbs,
10035 alc861vd_3stack_init_verbs },
10036 .num_dacs = ARRAY_SIZE(alc861vd_dac_nids),
10037 .dac_nids = alc861vd_dac_nids,
10038 .dig_out_nid = ALC861VD_DIGOUT_NID,
10039 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
10040 .channel_mode = alc861vd_3stack_2ch_modes,
10041 .input_mux = &alc861vd_capture_source,
10042 },
10043 [ALC861VD_6ST_DIG] = {
10044 .mixers = { alc861vd_6st_mixer, alc861vd_chmode_mixer },
10045 .init_verbs = { alc861vd_volume_init_verbs,
10046 alc861vd_6stack_init_verbs },
10047 .num_dacs = ARRAY_SIZE(alc861vd_dac_nids),
10048 .dac_nids = alc861vd_dac_nids,
10049 .dig_out_nid = ALC861VD_DIGOUT_NID,
10050 .num_channel_mode = ARRAY_SIZE(alc861vd_6stack_modes),
10051 .channel_mode = alc861vd_6stack_modes,
10052 .input_mux = &alc861vd_capture_source,
10053 },
Kailang Yangbdd148a2007-05-08 15:19:08 +020010054 [ALC861VD_LENOVO] = {
10055 .mixers = { alc861vd_lenovo_mixer },
10056 .init_verbs = { alc861vd_volume_init_verbs,
10057 alc861vd_3stack_init_verbs,
10058 alc861vd_eapd_verbs,
10059 alc861vd_lenovo_unsol_verbs },
10060 .num_dacs = ARRAY_SIZE(alc660vd_dac_nids),
10061 .dac_nids = alc660vd_dac_nids,
10062 .num_adc_nids = ARRAY_SIZE(alc861vd_adc_nids),
10063 .adc_nids = alc861vd_adc_nids,
10064 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
10065 .channel_mode = alc861vd_3stack_2ch_modes,
10066 .input_mux = &alc861vd_capture_source,
10067 .unsol_event = alc861vd_lenovo_unsol_event,
10068 .init_hook = alc861vd_lenovo_automute,
10069 },
Kailang Yang272a5272007-05-14 11:00:38 +020010070 [ALC861VD_DALLAS] = {
10071 .mixers = { alc861vd_dallas_mixer },
10072 .init_verbs = { alc861vd_dallas_verbs },
10073 .num_dacs = ARRAY_SIZE(alc861vd_dac_nids),
10074 .dac_nids = alc861vd_dac_nids,
10075 .num_adc_nids = ARRAY_SIZE(alc861vd_adc_nids),
10076 .adc_nids = alc861vd_adc_nids,
10077 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
10078 .channel_mode = alc861vd_3stack_2ch_modes,
10079 .input_mux = &alc861vd_dallas_capture_source,
10080 .unsol_event = alc861vd_dallas_unsol_event,
10081 .init_hook = alc861vd_dallas_automute,
10082 },
Jakub Schmidtkef32610e2007-02-02 18:17:27 +010010083};
10084
10085/*
10086 * BIOS auto configuration
10087 */
10088static void alc861vd_auto_set_output_and_unmute(struct hda_codec *codec,
10089 hda_nid_t nid, int pin_type, int dac_idx)
10090{
10091 /* set as output */
10092 snd_hda_codec_write(codec, nid, 0,
10093 AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
10094 snd_hda_codec_write(codec, nid, 0,
10095 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
10096}
10097
10098static void alc861vd_auto_init_multi_out(struct hda_codec *codec)
10099{
10100 struct alc_spec *spec = codec->spec;
10101 int i;
10102
Kailang Yangbc9f98a2007-04-12 13:06:07 +020010103 alc_subsystem_id(codec, 0x15, 0x1b, 0x14);
Jakub Schmidtkef32610e2007-02-02 18:17:27 +010010104 for (i = 0; i <= HDA_SIDE; i++) {
10105 hda_nid_t nid = spec->autocfg.line_out_pins[i];
Takashi Iwaibaba8ee2007-04-23 17:17:48 +020010106 int pin_type = get_pin_type(spec->autocfg.line_out_type);
Jakub Schmidtkef32610e2007-02-02 18:17:27 +010010107 if (nid)
10108 alc861vd_auto_set_output_and_unmute(codec, nid,
Takashi Iwaibaba8ee2007-04-23 17:17:48 +020010109 pin_type, i);
Jakub Schmidtkef32610e2007-02-02 18:17:27 +010010110 }
10111}
10112
10113
10114static void alc861vd_auto_init_hp_out(struct hda_codec *codec)
10115{
10116 struct alc_spec *spec = codec->spec;
10117 hda_nid_t pin;
10118
10119 pin = spec->autocfg.hp_pins[0];
10120 if (pin) /* connect to front and use dac 0 */
10121 alc861vd_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
10122}
10123
10124#define alc861vd_is_input_pin(nid) alc880_is_input_pin(nid)
10125#define ALC861VD_PIN_CD_NID ALC880_PIN_CD_NID
10126
10127static void alc861vd_auto_init_analog_input(struct hda_codec *codec)
10128{
10129 struct alc_spec *spec = codec->spec;
10130 int i;
10131
10132 for (i = 0; i < AUTO_PIN_LAST; i++) {
10133 hda_nid_t nid = spec->autocfg.input_pins[i];
10134 if (alc861vd_is_input_pin(nid)) {
10135 snd_hda_codec_write(codec, nid, 0,
10136 AC_VERB_SET_PIN_WIDGET_CONTROL,
10137 i <= AUTO_PIN_FRONT_MIC ?
10138 PIN_VREF80 : PIN_IN);
10139 if (nid != ALC861VD_PIN_CD_NID)
10140 snd_hda_codec_write(codec, nid, 0,
10141 AC_VERB_SET_AMP_GAIN_MUTE,
10142 AMP_OUT_MUTE);
10143 }
10144 }
10145}
10146
10147#define alc861vd_idx_to_mixer_vol(nid) ((nid) + 0x02)
10148#define alc861vd_idx_to_mixer_switch(nid) ((nid) + 0x0c)
10149
10150/* add playback controls from the parsed DAC table */
10151/* Based on ALC880 version. But ALC861VD has separate,
10152 * different NIDs for mute/unmute switch and volume control */
10153static int alc861vd_auto_create_multi_out_ctls(struct alc_spec *spec,
10154 const struct auto_pin_cfg *cfg)
10155{
10156 char name[32];
10157 static const char *chname[4] = {"Front", "Surround", "CLFE", "Side"};
10158 hda_nid_t nid_v, nid_s;
10159 int i, err;
10160
10161 for (i = 0; i < cfg->line_outs; i++) {
Takashi Iwaif12ab1e2007-04-12 15:51:47 +020010162 if (!spec->multiout.dac_nids[i])
Jakub Schmidtkef32610e2007-02-02 18:17:27 +010010163 continue;
10164 nid_v = alc861vd_idx_to_mixer_vol(
10165 alc880_dac_to_idx(
10166 spec->multiout.dac_nids[i]));
10167 nid_s = alc861vd_idx_to_mixer_switch(
10168 alc880_dac_to_idx(
10169 spec->multiout.dac_nids[i]));
10170
10171 if (i == 2) {
10172 /* Center/LFE */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +020010173 err = add_control(spec, ALC_CTL_WIDGET_VOL,
10174 "Center Playback Volume",
10175 HDA_COMPOSE_AMP_VAL(nid_v, 1, 0,
10176 HDA_OUTPUT));
10177 if (err < 0)
Jakub Schmidtkef32610e2007-02-02 18:17:27 +010010178 return err;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +020010179 err = add_control(spec, ALC_CTL_WIDGET_VOL,
10180 "LFE Playback Volume",
10181 HDA_COMPOSE_AMP_VAL(nid_v, 2, 0,
10182 HDA_OUTPUT));
10183 if (err < 0)
Jakub Schmidtkef32610e2007-02-02 18:17:27 +010010184 return err;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +020010185 err = add_control(spec, ALC_CTL_BIND_MUTE,
10186 "Center Playback Switch",
10187 HDA_COMPOSE_AMP_VAL(nid_s, 1, 2,
10188 HDA_INPUT));
10189 if (err < 0)
Jakub Schmidtkef32610e2007-02-02 18:17:27 +010010190 return err;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +020010191 err = add_control(spec, ALC_CTL_BIND_MUTE,
10192 "LFE Playback Switch",
10193 HDA_COMPOSE_AMP_VAL(nid_s, 2, 2,
10194 HDA_INPUT));
10195 if (err < 0)
Jakub Schmidtkef32610e2007-02-02 18:17:27 +010010196 return err;
10197 } else {
10198 sprintf(name, "%s Playback Volume", chname[i]);
Takashi Iwaif12ab1e2007-04-12 15:51:47 +020010199 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
10200 HDA_COMPOSE_AMP_VAL(nid_v, 3, 0,
10201 HDA_OUTPUT));
10202 if (err < 0)
Jakub Schmidtkef32610e2007-02-02 18:17:27 +010010203 return err;
10204 sprintf(name, "%s Playback Switch", chname[i]);
Takashi Iwaif12ab1e2007-04-12 15:51:47 +020010205 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
Kailang Yangbdd148a2007-05-08 15:19:08 +020010206 HDA_COMPOSE_AMP_VAL(nid_s, 3, 2,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +020010207 HDA_INPUT));
10208 if (err < 0)
Jakub Schmidtkef32610e2007-02-02 18:17:27 +010010209 return err;
10210 }
10211 }
10212 return 0;
10213}
10214
10215/* add playback controls for speaker and HP outputs */
10216/* Based on ALC880 version. But ALC861VD has separate,
10217 * different NIDs for mute/unmute switch and volume control */
10218static int alc861vd_auto_create_extra_out(struct alc_spec *spec,
10219 hda_nid_t pin, const char *pfx)
10220{
10221 hda_nid_t nid_v, nid_s;
10222 int err;
10223 char name[32];
10224
Takashi Iwaif12ab1e2007-04-12 15:51:47 +020010225 if (!pin)
Jakub Schmidtkef32610e2007-02-02 18:17:27 +010010226 return 0;
10227
10228 if (alc880_is_fixed_pin(pin)) {
10229 nid_v = alc880_idx_to_dac(alc880_fixed_pin_idx(pin));
10230 /* specify the DAC as the extra output */
Takashi Iwaif12ab1e2007-04-12 15:51:47 +020010231 if (!spec->multiout.hp_nid)
Jakub Schmidtkef32610e2007-02-02 18:17:27 +010010232 spec->multiout.hp_nid = nid_v;
10233 else
10234 spec->multiout.extra_out_nid[0] = nid_v;
10235 /* control HP volume/switch on the output mixer amp */
10236 nid_v = alc861vd_idx_to_mixer_vol(
10237 alc880_fixed_pin_idx(pin));
10238 nid_s = alc861vd_idx_to_mixer_switch(
10239 alc880_fixed_pin_idx(pin));
10240
10241 sprintf(name, "%s Playback Volume", pfx);
Takashi Iwaif12ab1e2007-04-12 15:51:47 +020010242 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
10243 HDA_COMPOSE_AMP_VAL(nid_v, 3, 0, HDA_OUTPUT));
10244 if (err < 0)
Jakub Schmidtkef32610e2007-02-02 18:17:27 +010010245 return err;
10246 sprintf(name, "%s Playback Switch", pfx);
Takashi Iwaif12ab1e2007-04-12 15:51:47 +020010247 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
10248 HDA_COMPOSE_AMP_VAL(nid_s, 3, 2, HDA_INPUT));
10249 if (err < 0)
Jakub Schmidtkef32610e2007-02-02 18:17:27 +010010250 return err;
10251 } else if (alc880_is_multi_pin(pin)) {
10252 /* set manual connection */
10253 /* we have only a switch on HP-out PIN */
10254 sprintf(name, "%s Playback Switch", pfx);
Takashi Iwaif12ab1e2007-04-12 15:51:47 +020010255 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
10256 HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
10257 if (err < 0)
Jakub Schmidtkef32610e2007-02-02 18:17:27 +010010258 return err;
10259 }
10260 return 0;
10261}
10262
10263/* parse the BIOS configuration and set up the alc_spec
10264 * return 1 if successful, 0 if the proper config is not found,
10265 * or a negative error code
10266 * Based on ALC880 version - had to change it to override
10267 * alc880_auto_create_extra_out and alc880_auto_create_multi_out_ctls */
10268static int alc861vd_parse_auto_config(struct hda_codec *codec)
10269{
10270 struct alc_spec *spec = codec->spec;
10271 int err;
10272 static hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
10273
Takashi Iwaif12ab1e2007-04-12 15:51:47 +020010274 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
10275 alc861vd_ignore);
10276 if (err < 0)
Jakub Schmidtkef32610e2007-02-02 18:17:27 +010010277 return err;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +020010278 if (!spec->autocfg.line_outs)
Jakub Schmidtkef32610e2007-02-02 18:17:27 +010010279 return 0; /* can't find valid BIOS pin config */
10280
Takashi Iwaif12ab1e2007-04-12 15:51:47 +020010281 err = alc880_auto_fill_dac_nids(spec, &spec->autocfg);
10282 if (err < 0)
10283 return err;
10284 err = alc861vd_auto_create_multi_out_ctls(spec, &spec->autocfg);
10285 if (err < 0)
10286 return err;
10287 err = alc861vd_auto_create_extra_out(spec,
10288 spec->autocfg.speaker_pins[0],
10289 "Speaker");
10290 if (err < 0)
10291 return err;
10292 err = alc861vd_auto_create_extra_out(spec,
10293 spec->autocfg.hp_pins[0],
10294 "Headphone");
10295 if (err < 0)
10296 return err;
10297 err = alc880_auto_create_analog_input_ctls(spec, &spec->autocfg);
10298 if (err < 0)
Jakub Schmidtkef32610e2007-02-02 18:17:27 +010010299 return err;
10300
10301 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
10302
10303 if (spec->autocfg.dig_out_pin)
10304 spec->multiout.dig_out_nid = ALC861VD_DIGOUT_NID;
10305
10306 if (spec->kctl_alloc)
10307 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
10308
10309 spec->init_verbs[spec->num_init_verbs++]
10310 = alc861vd_volume_init_verbs;
10311
10312 spec->num_mux_defs = 1;
10313 spec->input_mux = &spec->private_imux;
10314
10315 return 1;
10316}
10317
10318/* additional initialization for auto-configuration model */
10319static void alc861vd_auto_init(struct hda_codec *codec)
10320{
10321 alc861vd_auto_init_multi_out(codec);
10322 alc861vd_auto_init_hp_out(codec);
10323 alc861vd_auto_init_analog_input(codec);
10324}
10325
10326static int patch_alc861vd(struct hda_codec *codec)
10327{
10328 struct alc_spec *spec;
10329 int err, board_config;
10330
10331 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
10332 if (spec == NULL)
10333 return -ENOMEM;
10334
10335 codec->spec = spec;
10336
10337 board_config = snd_hda_check_board_config(codec, ALC861VD_MODEL_LAST,
10338 alc861vd_models,
10339 alc861vd_cfg_tbl);
10340
10341 if (board_config < 0 || board_config >= ALC861VD_MODEL_LAST) {
10342 printk(KERN_INFO "hda_codec: Unknown model for ALC660VD/"
10343 "ALC861VD, trying auto-probe from BIOS...\n");
10344 board_config = ALC861VD_AUTO;
10345 }
10346
10347 if (board_config == ALC861VD_AUTO) {
10348 /* automatic parse from the BIOS config */
10349 err = alc861vd_parse_auto_config(codec);
10350 if (err < 0) {
10351 alc_free(codec);
10352 return err;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +020010353 } else if (!err) {
Jakub Schmidtkef32610e2007-02-02 18:17:27 +010010354 printk(KERN_INFO
10355 "hda_codec: Cannot set up configuration "
10356 "from BIOS. Using base mode...\n");
10357 board_config = ALC861VD_3ST;
10358 }
10359 }
10360
10361 if (board_config != ALC861VD_AUTO)
10362 setup_preset(spec, &alc861vd_presets[board_config]);
10363
10364 spec->stream_name_analog = "ALC861VD Analog";
10365 spec->stream_analog_playback = &alc861vd_pcm_analog_playback;
10366 spec->stream_analog_capture = &alc861vd_pcm_analog_capture;
10367
10368 spec->stream_name_digital = "ALC861VD Digital";
10369 spec->stream_digital_playback = &alc861vd_pcm_digital_playback;
10370 spec->stream_digital_capture = &alc861vd_pcm_digital_capture;
10371
10372 spec->adc_nids = alc861vd_adc_nids;
10373 spec->num_adc_nids = ARRAY_SIZE(alc861vd_adc_nids);
10374
10375 spec->mixers[spec->num_mixers] = alc861vd_capture_mixer;
10376 spec->num_mixers++;
10377
10378 codec->patch_ops = alc_patch_ops;
10379
10380 if (board_config == ALC861VD_AUTO)
10381 spec->init_hook = alc861vd_auto_init;
10382
10383 return 0;
10384}
10385
10386/*
Kailang Yangbc9f98a2007-04-12 13:06:07 +020010387 * ALC662 support
10388 *
10389 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
10390 * configuration. Each pin widget can choose any input DACs and a mixer.
10391 * Each ADC is connected from a mixer of all inputs. This makes possible
10392 * 6-channel independent captures.
10393 *
10394 * In addition, an independent DAC for the multi-playback (not used in this
10395 * driver yet).
10396 */
10397#define ALC662_DIGOUT_NID 0x06
10398#define ALC662_DIGIN_NID 0x0a
10399
10400static hda_nid_t alc662_dac_nids[4] = {
10401 /* front, rear, clfe, rear_surr */
10402 0x02, 0x03, 0x04
10403};
10404
10405static hda_nid_t alc662_adc_nids[1] = {
10406 /* ADC1-2 */
10407 0x09,
10408};
10409/* input MUX */
10410/* FIXME: should be a matrix-type input source selection */
10411
10412static struct hda_input_mux alc662_capture_source = {
10413 .num_items = 4,
10414 .items = {
10415 { "Mic", 0x0 },
10416 { "Front Mic", 0x1 },
10417 { "Line", 0x2 },
10418 { "CD", 0x4 },
10419 },
10420};
10421
10422static struct hda_input_mux alc662_lenovo_101e_capture_source = {
10423 .num_items = 2,
10424 .items = {
10425 { "Mic", 0x1 },
10426 { "Line", 0x2 },
10427 },
10428};
10429#define alc662_mux_enum_info alc_mux_enum_info
10430#define alc662_mux_enum_get alc_mux_enum_get
10431
10432static int alc662_mux_enum_put(struct snd_kcontrol *kcontrol,
10433 struct snd_ctl_elem_value *ucontrol)
10434{
10435 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
10436 struct alc_spec *spec = codec->spec;
10437 const struct hda_input_mux *imux = spec->input_mux;
10438 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
10439 static hda_nid_t capture_mixers[3] = { 0x24, 0x23, 0x22 };
10440 hda_nid_t nid = capture_mixers[adc_idx];
10441 unsigned int *cur_val = &spec->cur_mux[adc_idx];
10442 unsigned int i, idx;
10443
10444 idx = ucontrol->value.enumerated.item[0];
10445 if (idx >= imux->num_items)
10446 idx = imux->num_items - 1;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +020010447 if (*cur_val == idx && !codec->in_resume)
Kailang Yangbc9f98a2007-04-12 13:06:07 +020010448 return 0;
10449 for (i = 0; i < imux->num_items; i++) {
10450 unsigned int v = (i == idx) ? 0x7000 : 0x7080;
10451 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
10452 v | (imux->items[i].index << 8));
10453 }
10454 *cur_val = idx;
10455 return 1;
10456}
10457/*
10458 * 2ch mode
10459 */
10460static struct hda_channel_mode alc662_3ST_2ch_modes[1] = {
10461 { 2, NULL }
10462};
10463
10464/*
10465 * 2ch mode
10466 */
10467static struct hda_verb alc662_3ST_ch2_init[] = {
10468 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
10469 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
10470 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
10471 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
10472 { } /* end */
10473};
10474
10475/*
10476 * 6ch mode
10477 */
10478static struct hda_verb alc662_3ST_ch6_init[] = {
10479 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
10480 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
10481 { 0x18, AC_VERB_SET_CONNECT_SEL, 0x02 },
10482 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
10483 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
10484 { 0x1a, AC_VERB_SET_CONNECT_SEL, 0x01 },
10485 { } /* end */
10486};
10487
10488static struct hda_channel_mode alc662_3ST_6ch_modes[2] = {
10489 { 2, alc662_3ST_ch2_init },
10490 { 6, alc662_3ST_ch6_init },
10491};
10492
10493/*
10494 * 2ch mode
10495 */
10496static struct hda_verb alc662_sixstack_ch6_init[] = {
10497 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
10498 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
10499 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
10500 { } /* end */
10501};
10502
10503/*
10504 * 6ch mode
10505 */
10506static struct hda_verb alc662_sixstack_ch8_init[] = {
10507 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
10508 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
10509 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
10510 { } /* end */
10511};
10512
10513static struct hda_channel_mode alc662_5stack_modes[2] = {
10514 { 2, alc662_sixstack_ch6_init },
10515 { 6, alc662_sixstack_ch8_init },
10516};
10517
10518/* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
10519 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
10520 */
10521
10522static struct snd_kcontrol_new alc662_base_mixer[] = {
10523 /* output mixer control */
10524 HDA_CODEC_VOLUME("Front Playback Volume", 0x2, 0x0, HDA_OUTPUT),
10525 HDA_CODEC_MUTE("Front Playback Switch", 0x02, 0x0, HDA_OUTPUT),
10526 HDA_CODEC_VOLUME("Surround Playback Volume", 0x3, 0x0, HDA_OUTPUT),
10527 HDA_CODEC_MUTE("Surround Playback Switch", 0x03, 0x0, HDA_OUTPUT),
10528 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0, HDA_OUTPUT),
10529 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0, HDA_OUTPUT),
10530 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x04, 1, 2, HDA_INPUT),
10531 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x04, 2, 2, HDA_INPUT),
10532 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
10533
10534 /*Input mixer control */
10535 HDA_CODEC_VOLUME("CD Playback Volume", 0xb, 0x4, HDA_INPUT),
10536 HDA_CODEC_MUTE("CD Playback Switch", 0xb, 0x4, HDA_INPUT),
10537 HDA_CODEC_VOLUME("Line Playback Volume", 0xb, 0x02, HDA_INPUT),
10538 HDA_CODEC_MUTE("Line Playback Switch", 0xb, 0x02, HDA_INPUT),
10539 HDA_CODEC_VOLUME("Mic Playback Volume", 0xb, 0x0, HDA_INPUT),
10540 HDA_CODEC_MUTE("Mic Playback Switch", 0xb, 0x0, HDA_INPUT),
10541 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0xb, 0x01, HDA_INPUT),
10542 HDA_CODEC_MUTE("Front Mic Playback Switch", 0xb, 0x01, HDA_INPUT),
10543
10544 /* Capture mixer control */
10545 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
10546 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
10547 {
10548 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
10549 .name = "Capture Source",
10550 .count = 1,
10551 .info = alc_mux_enum_info,
10552 .get = alc_mux_enum_get,
10553 .put = alc_mux_enum_put,
10554 },
10555 { } /* end */
10556};
10557
10558static struct snd_kcontrol_new alc662_3ST_2ch_mixer[] = {
10559 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
10560 HDA_BIND_MUTE("Front Playback Switch", 0x02, 2, HDA_INPUT),
10561 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
10562 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
10563 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
10564 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
10565 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
10566 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
10567 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
10568 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
10569 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
10570 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
10571 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
10572 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
10573 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
10574 {
10575 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
10576 /* .name = "Capture Source", */
10577 .name = "Input Source",
10578 .count = 1,
10579 .info = alc662_mux_enum_info,
10580 .get = alc662_mux_enum_get,
10581 .put = alc662_mux_enum_put,
10582 },
10583 { } /* end */
10584};
10585
10586static struct snd_kcontrol_new alc662_3ST_6ch_mixer[] = {
10587 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
10588 HDA_BIND_MUTE("Front Playback Switch", 0x02, 2, HDA_INPUT),
10589 HDA_CODEC_VOLUME("Surround Playback Volume", 0x03, 0x0, HDA_OUTPUT),
10590 HDA_BIND_MUTE("Surround Playback Switch", 0x03, 2, HDA_INPUT),
10591 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0, HDA_OUTPUT),
10592 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0, HDA_OUTPUT),
10593 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x04, 1, 2, HDA_INPUT),
10594 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x04, 2, 2, HDA_INPUT),
10595 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
10596 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
10597 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
10598 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
10599 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
10600 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
10601 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
10602 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
10603 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
10604 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
10605 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
10606 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
10607 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
10608 {
10609 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
10610 /* .name = "Capture Source", */
10611 .name = "Input Source",
10612 .count = 1,
10613 .info = alc662_mux_enum_info,
10614 .get = alc662_mux_enum_get,
10615 .put = alc662_mux_enum_put,
10616 },
10617 { } /* end */
10618};
10619
10620static struct snd_kcontrol_new alc662_lenovo_101e_mixer[] = {
10621 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
10622 HDA_BIND_MUTE("Front Playback Switch", 0x02, 2, HDA_INPUT),
10623 HDA_CODEC_VOLUME("iSpeaker Playback Volume", 0x03, 0x0, HDA_OUTPUT),
10624 HDA_BIND_MUTE("iSpeaker Playback Switch", 0x03, 2, HDA_INPUT),
10625 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
10626 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
10627 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
10628 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
10629 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
10630 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
10631 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
10632 {
10633 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
10634 /* .name = "Capture Source", */
10635 .name = "Input Source",
10636 .count = 1,
10637 .info = alc662_mux_enum_info,
10638 .get = alc662_mux_enum_get,
10639 .put = alc662_mux_enum_put,
10640 },
10641 { } /* end */
10642};
10643
10644static struct snd_kcontrol_new alc662_chmode_mixer[] = {
10645 {
10646 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
10647 .name = "Channel Mode",
10648 .info = alc_ch_mode_info,
10649 .get = alc_ch_mode_get,
10650 .put = alc_ch_mode_put,
10651 },
10652 { } /* end */
10653};
10654
10655static struct hda_verb alc662_init_verbs[] = {
10656 /* ADC: mute amp left and right */
10657 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
10658 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
10659 /* Front mixer: unmute input/output amp left and right (volume = 0) */
10660
10661 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10662 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
10663 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
10664 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
10665 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
10666
10667 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10668 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
10669 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10670 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
10671 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10672 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
10673
10674 /* Front Pin: output 0 (0x0c) */
10675 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10676 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10677
10678 /* Rear Pin: output 1 (0x0d) */
10679 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10680 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10681
10682 /* CLFE Pin: output 2 (0x0e) */
10683 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10684 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10685
10686 /* Mic (rear) pin: input vref at 80% */
10687 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
10688 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
10689 /* Front Mic pin: input vref at 80% */
10690 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
10691 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
10692 /* Line In pin: input */
10693 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
10694 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
10695 /* Line-2 In: Headphone output (output 0 - 0x0c) */
10696 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
10697 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10698 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
10699 /* CD pin widget for input */
10700 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
10701
10702 /* FIXME: use matrix-type input source selection */
10703 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
10704 /* Input mixer */
10705 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10706 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
10707 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
10708 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
10709 { }
10710};
10711
10712static struct hda_verb alc662_sue_init_verbs[] = {
10713 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|ALC880_FRONT_EVENT},
10714 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|ALC880_HP_EVENT},
10715 {}
10716};
10717
10718/*
10719 * generic initialization of ADC, input mixers and output mixers
10720 */
10721static struct hda_verb alc662_auto_init_verbs[] = {
10722 /*
10723 * Unmute ADC and set the default input to mic-in
10724 */
10725 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
10726 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10727
10728 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
10729 * mixer widget
10730 * Note: PASD motherboards uses the Line In 2 as the input for front
10731 * panel mic (mic 2)
10732 */
10733 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
10734 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10735 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
10736 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
10737 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
10738 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
10739
10740 /*
10741 * Set up output mixers (0x0c - 0x0f)
10742 */
10743 /* set vol=0 to output mixers */
10744 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10745 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10746 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10747
10748 /* set up input amps for analog loopback */
10749 /* Amp Indices: DAC = 0, mixer = 1 */
10750 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10751 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
10752 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10753 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
10754 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10755 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
10756
10757
10758 /* FIXME: use matrix-type input source selection */
10759 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
10760 /* Input mixer */
10761 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10762 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
10763 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
10764 /*{0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},*/
10765 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
10766
10767 { }
10768};
10769
10770/* capture mixer elements */
10771static struct snd_kcontrol_new alc662_capture_mixer[] = {
10772 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
10773 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
10774 {
10775 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
10776 /* The multiple "Capture Source" controls confuse alsamixer
10777 * So call somewhat different..
10778 * FIXME: the controls appear in the "playback" view!
10779 */
10780 /* .name = "Capture Source", */
10781 .name = "Input Source",
10782 .count = 1,
10783 .info = alc882_mux_enum_info,
10784 .get = alc882_mux_enum_get,
10785 .put = alc882_mux_enum_put,
10786 },
10787 { } /* end */
10788};
10789
10790static void alc662_lenovo_101e_ispeaker_automute(struct hda_codec *codec)
10791{
10792 unsigned int present;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +020010793 unsigned char bits;
Kailang Yangbc9f98a2007-04-12 13:06:07 +020010794
10795 present = snd_hda_codec_read(codec, 0x14, 0,
10796 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +020010797 bits = present ? 0x80 : 0;
Kailang Yangbc9f98a2007-04-12 13:06:07 +020010798 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +020010799 0x80, bits);
Kailang Yangbc9f98a2007-04-12 13:06:07 +020010800 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +020010801 0x80, bits);
Kailang Yangbc9f98a2007-04-12 13:06:07 +020010802}
10803
10804static void alc662_lenovo_101e_all_automute(struct hda_codec *codec)
10805{
10806 unsigned int present;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +020010807 unsigned char bits;
Kailang Yangbc9f98a2007-04-12 13:06:07 +020010808
10809 present = snd_hda_codec_read(codec, 0x1b, 0,
10810 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
Takashi Iwaif12ab1e2007-04-12 15:51:47 +020010811 bits = present ? 0x80 : 0;
Kailang Yangbc9f98a2007-04-12 13:06:07 +020010812 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +020010813 0x80, bits);
Kailang Yangbc9f98a2007-04-12 13:06:07 +020010814 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +020010815 0x80, bits);
Kailang Yangbc9f98a2007-04-12 13:06:07 +020010816 snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +020010817 0x80, bits);
Kailang Yangbc9f98a2007-04-12 13:06:07 +020010818 snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +020010819 0x80, bits);
Kailang Yangbc9f98a2007-04-12 13:06:07 +020010820}
10821
10822static void alc662_lenovo_101e_unsol_event(struct hda_codec *codec,
10823 unsigned int res)
10824{
10825 if ((res >> 26) == ALC880_HP_EVENT)
10826 alc662_lenovo_101e_all_automute(codec);
10827 if ((res >> 26) == ALC880_FRONT_EVENT)
10828 alc662_lenovo_101e_ispeaker_automute(codec);
10829}
10830
10831
10832/* pcm configuration: identiacal with ALC880 */
10833#define alc662_pcm_analog_playback alc880_pcm_analog_playback
10834#define alc662_pcm_analog_capture alc880_pcm_analog_capture
10835#define alc662_pcm_digital_playback alc880_pcm_digital_playback
10836#define alc662_pcm_digital_capture alc880_pcm_digital_capture
10837
10838/*
10839 * configuration and preset
10840 */
10841static const char *alc662_models[ALC662_MODEL_LAST] = {
10842 [ALC662_3ST_2ch_DIG] = "3stack-dig",
10843 [ALC662_3ST_6ch_DIG] = "3stack-6ch-dig",
10844 [ALC662_3ST_6ch] = "3stack-6ch",
10845 [ALC662_5ST_DIG] = "6stack-dig",
10846 [ALC662_LENOVO_101E] = "lenovo-101e",
10847 [ALC662_AUTO] = "auto",
10848};
10849
10850static struct snd_pci_quirk alc662_cfg_tbl[] = {
10851 SND_PCI_QUIRK(0x17aa, 0x101e, "Lenovo", ALC662_LENOVO_101E),
10852 {}
10853};
10854
10855static struct alc_config_preset alc662_presets[] = {
10856 [ALC662_3ST_2ch_DIG] = {
10857 .mixers = { alc662_3ST_2ch_mixer },
10858 .init_verbs = { alc662_init_verbs },
10859 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
10860 .dac_nids = alc662_dac_nids,
10861 .dig_out_nid = ALC662_DIGOUT_NID,
10862 .num_adc_nids = ARRAY_SIZE(alc662_adc_nids),
10863 .adc_nids = alc662_adc_nids,
10864 .dig_in_nid = ALC662_DIGIN_NID,
10865 .num_channel_mode = ARRAY_SIZE(alc662_3ST_2ch_modes),
10866 .channel_mode = alc662_3ST_2ch_modes,
10867 .input_mux = &alc662_capture_source,
10868 },
10869 [ALC662_3ST_6ch_DIG] = {
10870 .mixers = { alc662_3ST_6ch_mixer, alc662_chmode_mixer },
10871 .init_verbs = { alc662_init_verbs },
10872 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
10873 .dac_nids = alc662_dac_nids,
10874 .dig_out_nid = ALC662_DIGOUT_NID,
10875 .num_adc_nids = ARRAY_SIZE(alc662_adc_nids),
10876 .adc_nids = alc662_adc_nids,
10877 .dig_in_nid = ALC662_DIGIN_NID,
10878 .num_channel_mode = ARRAY_SIZE(alc662_3ST_6ch_modes),
10879 .channel_mode = alc662_3ST_6ch_modes,
10880 .need_dac_fix = 1,
10881 .input_mux = &alc662_capture_source,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +020010882 },
Kailang Yangbc9f98a2007-04-12 13:06:07 +020010883 [ALC662_3ST_6ch] = {
10884 .mixers = { alc662_3ST_6ch_mixer, alc662_chmode_mixer },
10885 .init_verbs = { alc662_init_verbs },
10886 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
10887 .dac_nids = alc662_dac_nids,
10888 .num_adc_nids = ARRAY_SIZE(alc662_adc_nids),
10889 .adc_nids = alc662_adc_nids,
10890 .num_channel_mode = ARRAY_SIZE(alc662_3ST_6ch_modes),
10891 .channel_mode = alc662_3ST_6ch_modes,
10892 .need_dac_fix = 1,
10893 .input_mux = &alc662_capture_source,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +020010894 },
Kailang Yangbc9f98a2007-04-12 13:06:07 +020010895 [ALC662_5ST_DIG] = {
10896 .mixers = { alc662_base_mixer, alc662_chmode_mixer },
10897 .init_verbs = { alc662_init_verbs },
10898 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
10899 .dac_nids = alc662_dac_nids,
10900 .dig_out_nid = ALC662_DIGOUT_NID,
10901 .num_adc_nids = ARRAY_SIZE(alc662_adc_nids),
10902 .adc_nids = alc662_adc_nids,
10903 .dig_in_nid = ALC662_DIGIN_NID,
10904 .num_channel_mode = ARRAY_SIZE(alc662_5stack_modes),
10905 .channel_mode = alc662_5stack_modes,
10906 .input_mux = &alc662_capture_source,
10907 },
10908 [ALC662_LENOVO_101E] = {
10909 .mixers = { alc662_lenovo_101e_mixer },
10910 .init_verbs = { alc662_init_verbs, alc662_sue_init_verbs },
10911 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
10912 .dac_nids = alc662_dac_nids,
10913 .num_adc_nids = ARRAY_SIZE(alc662_adc_nids),
10914 .adc_nids = alc662_adc_nids,
10915 .num_channel_mode = ARRAY_SIZE(alc662_3ST_2ch_modes),
10916 .channel_mode = alc662_3ST_2ch_modes,
10917 .input_mux = &alc662_lenovo_101e_capture_source,
10918 .unsol_event = alc662_lenovo_101e_unsol_event,
10919 .init_hook = alc662_lenovo_101e_all_automute,
10920 },
10921
10922};
10923
10924
10925/*
10926 * BIOS auto configuration
10927 */
10928
10929/* add playback controls from the parsed DAC table */
10930static int alc662_auto_create_multi_out_ctls(struct alc_spec *spec,
10931 const struct auto_pin_cfg *cfg)
10932{
10933 char name[32];
10934 static const char *chname[4] = {
10935 "Front", "Surround", NULL /*CLFE*/, "Side"
10936 };
10937 hda_nid_t nid;
10938 int i, err;
10939
10940 for (i = 0; i < cfg->line_outs; i++) {
10941 if (!spec->multiout.dac_nids[i])
10942 continue;
10943 nid = alc880_idx_to_dac(i);
10944 if (i == 2) {
10945 /* Center/LFE */
10946 err = add_control(spec, ALC_CTL_WIDGET_VOL,
10947 "Center Playback Volume",
Takashi Iwaif12ab1e2007-04-12 15:51:47 +020010948 HDA_COMPOSE_AMP_VAL(nid, 1, 0,
10949 HDA_OUTPUT));
Kailang Yangbc9f98a2007-04-12 13:06:07 +020010950 if (err < 0)
10951 return err;
10952 err = add_control(spec, ALC_CTL_WIDGET_VOL,
10953 "LFE Playback Volume",
Takashi Iwaif12ab1e2007-04-12 15:51:47 +020010954 HDA_COMPOSE_AMP_VAL(nid, 2, 0,
10955 HDA_OUTPUT));
Kailang Yangbc9f98a2007-04-12 13:06:07 +020010956 if (err < 0)
10957 return err;
10958 err = add_control(spec, ALC_CTL_BIND_MUTE,
10959 "Center Playback Switch",
Takashi Iwaif12ab1e2007-04-12 15:51:47 +020010960 HDA_COMPOSE_AMP_VAL(nid, 1, 2,
10961 HDA_INPUT));
Kailang Yangbc9f98a2007-04-12 13:06:07 +020010962 if (err < 0)
10963 return err;
10964 err = add_control(spec, ALC_CTL_BIND_MUTE,
10965 "LFE Playback Switch",
Takashi Iwaif12ab1e2007-04-12 15:51:47 +020010966 HDA_COMPOSE_AMP_VAL(nid, 2, 2,
10967 HDA_INPUT));
Kailang Yangbc9f98a2007-04-12 13:06:07 +020010968 if (err < 0)
10969 return err;
10970 } else {
10971 sprintf(name, "%s Playback Volume", chname[i]);
10972 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +020010973 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
10974 HDA_OUTPUT));
Kailang Yangbc9f98a2007-04-12 13:06:07 +020010975 if (err < 0)
10976 return err;
10977 sprintf(name, "%s Playback Switch", chname[i]);
10978 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
Takashi Iwaif12ab1e2007-04-12 15:51:47 +020010979 HDA_COMPOSE_AMP_VAL(nid, 3, 2,
10980 HDA_INPUT));
Kailang Yangbc9f98a2007-04-12 13:06:07 +020010981 if (err < 0)
10982 return err;
10983 }
10984 }
10985 return 0;
10986}
10987
10988/* add playback controls for speaker and HP outputs */
10989static int alc662_auto_create_extra_out(struct alc_spec *spec, hda_nid_t pin,
10990 const char *pfx)
10991{
10992 hda_nid_t nid;
10993 int err;
10994 char name[32];
10995
10996 if (!pin)
10997 return 0;
10998
10999 if (alc880_is_fixed_pin(pin)) {
11000 nid = alc880_idx_to_dac(alc880_fixed_pin_idx(pin));
11001 /* printk("DAC nid=%x\n",nid); */
11002 /* specify the DAC as the extra output */
11003 if (!spec->multiout.hp_nid)
11004 spec->multiout.hp_nid = nid;
11005 else
11006 spec->multiout.extra_out_nid[0] = nid;
11007 /* control HP volume/switch on the output mixer amp */
11008 nid = alc880_idx_to_dac(alc880_fixed_pin_idx(pin));
11009 sprintf(name, "%s Playback Volume", pfx);
11010 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
11011 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT));
11012 if (err < 0)
11013 return err;
11014 sprintf(name, "%s Playback Switch", pfx);
11015 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
11016 HDA_COMPOSE_AMP_VAL(nid, 3, 2, HDA_INPUT));
11017 if (err < 0)
11018 return err;
11019 } else if (alc880_is_multi_pin(pin)) {
11020 /* set manual connection */
11021 /* we have only a switch on HP-out PIN */
11022 sprintf(name, "%s Playback Switch", pfx);
11023 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
11024 HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
11025 if (err < 0)
11026 return err;
11027 }
11028 return 0;
11029}
11030
11031/* create playback/capture controls for input pins */
11032static int alc662_auto_create_analog_input_ctls(struct alc_spec *spec,
11033 const struct auto_pin_cfg *cfg)
11034{
11035 struct hda_input_mux *imux = &spec->private_imux;
11036 int i, err, idx;
11037
11038 for (i = 0; i < AUTO_PIN_LAST; i++) {
11039 if (alc880_is_input_pin(cfg->input_pins[i])) {
11040 idx = alc880_input_pin_idx(cfg->input_pins[i]);
11041 err = new_analog_input(spec, cfg->input_pins[i],
11042 auto_pin_cfg_labels[i],
11043 idx, 0x0b);
11044 if (err < 0)
11045 return err;
11046 imux->items[imux->num_items].label =
11047 auto_pin_cfg_labels[i];
11048 imux->items[imux->num_items].index =
11049 alc880_input_pin_idx(cfg->input_pins[i]);
11050 imux->num_items++;
11051 }
11052 }
11053 return 0;
11054}
11055
11056static void alc662_auto_set_output_and_unmute(struct hda_codec *codec,
11057 hda_nid_t nid, int pin_type,
11058 int dac_idx)
11059{
11060 /* set as output */
11061 snd_hda_codec_write(codec, nid, 0,
11062 AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
11063 snd_hda_codec_write(codec, nid, 0,
11064 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
11065 /* need the manual connection? */
11066 if (alc880_is_multi_pin(nid)) {
11067 struct alc_spec *spec = codec->spec;
11068 int idx = alc880_multi_pin_idx(nid);
11069 snd_hda_codec_write(codec, alc880_idx_to_selector(idx), 0,
11070 AC_VERB_SET_CONNECT_SEL,
11071 alc880_dac_to_idx(spec->multiout.dac_nids[dac_idx]));
11072 }
11073}
11074
11075static void alc662_auto_init_multi_out(struct hda_codec *codec)
11076{
11077 struct alc_spec *spec = codec->spec;
11078 int i;
11079
11080 for (i = 0; i <= HDA_SIDE; i++) {
11081 hda_nid_t nid = spec->autocfg.line_out_pins[i];
Takashi Iwaibaba8ee2007-04-23 17:17:48 +020011082 int pin_type = get_pin_type(spec->autocfg.line_out_type);
Kailang Yangbc9f98a2007-04-12 13:06:07 +020011083 if (nid)
Takashi Iwaibaba8ee2007-04-23 17:17:48 +020011084 alc662_auto_set_output_and_unmute(codec, nid, pin_type,
Kailang Yangbc9f98a2007-04-12 13:06:07 +020011085 i);
11086 }
11087}
11088
11089static void alc662_auto_init_hp_out(struct hda_codec *codec)
11090{
11091 struct alc_spec *spec = codec->spec;
11092 hda_nid_t pin;
11093
11094 pin = spec->autocfg.hp_pins[0];
11095 if (pin) /* connect to front */
11096 /* use dac 0 */
11097 alc662_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
11098}
11099
11100#define alc662_is_input_pin(nid) alc880_is_input_pin(nid)
11101#define ALC662_PIN_CD_NID ALC880_PIN_CD_NID
11102
11103static void alc662_auto_init_analog_input(struct hda_codec *codec)
11104{
11105 struct alc_spec *spec = codec->spec;
11106 int i;
11107
11108 for (i = 0; i < AUTO_PIN_LAST; i++) {
11109 hda_nid_t nid = spec->autocfg.input_pins[i];
11110 if (alc662_is_input_pin(nid)) {
11111 snd_hda_codec_write(codec, nid, 0,
11112 AC_VERB_SET_PIN_WIDGET_CONTROL,
11113 (i <= AUTO_PIN_FRONT_MIC ?
11114 PIN_VREF80 : PIN_IN));
11115 if (nid != ALC662_PIN_CD_NID)
11116 snd_hda_codec_write(codec, nid, 0,
11117 AC_VERB_SET_AMP_GAIN_MUTE,
11118 AMP_OUT_MUTE);
11119 }
11120 }
11121}
11122
11123static int alc662_parse_auto_config(struct hda_codec *codec)
11124{
11125 struct alc_spec *spec = codec->spec;
11126 int err;
11127 static hda_nid_t alc662_ignore[] = { 0x1d, 0 };
11128
11129 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
11130 alc662_ignore);
11131 if (err < 0)
11132 return err;
11133 if (!spec->autocfg.line_outs)
11134 return 0; /* can't find valid BIOS pin config */
11135
Takashi Iwaif12ab1e2007-04-12 15:51:47 +020011136 err = alc880_auto_fill_dac_nids(spec, &spec->autocfg);
11137 if (err < 0)
11138 return err;
11139 err = alc662_auto_create_multi_out_ctls(spec, &spec->autocfg);
11140 if (err < 0)
11141 return err;
11142 err = alc662_auto_create_extra_out(spec,
11143 spec->autocfg.speaker_pins[0],
11144 "Speaker");
11145 if (err < 0)
11146 return err;
11147 err = alc662_auto_create_extra_out(spec, spec->autocfg.hp_pins[0],
11148 "Headphone");
11149 if (err < 0)
11150 return err;
11151 err = alc662_auto_create_analog_input_ctls(spec, &spec->autocfg);
11152 if (err < 0)
Kailang Yangbc9f98a2007-04-12 13:06:07 +020011153 return err;
11154
11155 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
11156
11157 if (spec->autocfg.dig_out_pin)
11158 spec->multiout.dig_out_nid = ALC880_DIGOUT_NID;
11159
11160 if (spec->kctl_alloc)
11161 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
11162
11163 spec->num_mux_defs = 1;
11164 spec->input_mux = &spec->private_imux;
11165
11166 if (err < 0)
11167 return err;
11168 else if (err > 0)
11169 /* hack - override the init verbs */
11170 spec->init_verbs[0] = alc662_auto_init_verbs;
11171 spec->mixers[spec->num_mixers] = alc662_capture_mixer;
11172 spec->num_mixers++;
11173 return err;
11174}
11175
11176/* additional initialization for auto-configuration model */
11177static void alc662_auto_init(struct hda_codec *codec)
11178{
11179 alc662_auto_init_multi_out(codec);
11180 alc662_auto_init_hp_out(codec);
11181 alc662_auto_init_analog_input(codec);
11182}
11183
11184static int patch_alc662(struct hda_codec *codec)
11185{
11186 struct alc_spec *spec;
11187 int err, board_config;
11188
11189 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
11190 if (!spec)
11191 return -ENOMEM;
11192
11193 codec->spec = spec;
11194
11195 board_config = snd_hda_check_board_config(codec, ALC662_MODEL_LAST,
11196 alc662_models,
11197 alc662_cfg_tbl);
11198 if (board_config < 0) {
11199 printk(KERN_INFO "hda_codec: Unknown model for ALC662, "
11200 "trying auto-probe from BIOS...\n");
11201 board_config = ALC662_AUTO;
11202 }
11203
11204 if (board_config == ALC662_AUTO) {
11205 /* automatic parse from the BIOS config */
11206 err = alc662_parse_auto_config(codec);
11207 if (err < 0) {
11208 alc_free(codec);
11209 return err;
11210 } else if (err) {
11211 printk(KERN_INFO
11212 "hda_codec: Cannot set up configuration "
11213 "from BIOS. Using base mode...\n");
11214 board_config = ALC662_3ST_2ch_DIG;
11215 }
11216 }
11217
11218 if (board_config != ALC662_AUTO)
11219 setup_preset(spec, &alc662_presets[board_config]);
11220
11221 spec->stream_name_analog = "ALC662 Analog";
11222 spec->stream_analog_playback = &alc662_pcm_analog_playback;
11223 spec->stream_analog_capture = &alc662_pcm_analog_capture;
11224
11225 spec->stream_name_digital = "ALC662 Digital";
11226 spec->stream_digital_playback = &alc662_pcm_digital_playback;
11227 spec->stream_digital_capture = &alc662_pcm_digital_capture;
11228
11229 if (!spec->adc_nids && spec->input_mux) {
11230 spec->adc_nids = alc662_adc_nids;
11231 spec->num_adc_nids = ARRAY_SIZE(alc662_adc_nids);
11232 }
11233
11234 codec->patch_ops = alc_patch_ops;
11235 if (board_config == ALC662_AUTO)
11236 spec->init_hook = alc662_auto_init;
11237
11238 return 0;
11239}
11240
11241/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011242 * patch entries
11243 */
11244struct hda_codec_preset snd_hda_preset_realtek[] = {
11245 { .id = 0x10ec0260, .name = "ALC260", .patch = patch_alc260 },
Kailang Yangdf694da2005-12-05 19:42:22 +010011246 { .id = 0x10ec0262, .name = "ALC262", .patch = patch_alc262 },
Kailang Yanga361d842007-06-05 12:30:55 +020011247 { .id = 0x10ec0268, .name = "ALC268", .patch = patch_alc268 },
Jakub Schmidtkef32610e2007-02-02 18:17:27 +010011248 { .id = 0x10ec0861, .rev = 0x100340, .name = "ALC660",
Kailang Yangbc9f98a2007-04-12 13:06:07 +020011249 .patch = patch_alc861 },
Jakub Schmidtkef32610e2007-02-02 18:17:27 +010011250 { .id = 0x10ec0660, .name = "ALC660-VD", .patch = patch_alc861vd },
11251 { .id = 0x10ec0861, .name = "ALC861", .patch = patch_alc861 },
11252 { .id = 0x10ec0862, .name = "ALC861-VD", .patch = patch_alc861vd },
Kailang Yangbc9f98a2007-04-12 13:06:07 +020011253 { .id = 0x10ec0662, .rev = 0x100002, .name = "ALC662 rev2",
11254 .patch = patch_alc883 },
11255 { .id = 0x10ec0662, .rev = 0x100101, .name = "ALC662 rev1",
11256 .patch = patch_alc662 },
Jakub Schmidtkef32610e2007-02-02 18:17:27 +010011257 { .id = 0x10ec0880, .name = "ALC880", .patch = patch_alc880 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070011258 { .id = 0x10ec0882, .name = "ALC882", .patch = patch_alc882 },
Takashi Iwai9c7f8522006-06-28 15:08:22 +020011259 { .id = 0x10ec0883, .name = "ALC883", .patch = patch_alc883 },
Kailang Yangdf694da2005-12-05 19:42:22 +010011260 { .id = 0x10ec0885, .name = "ALC885", .patch = patch_alc882 },
Takashi Iwai9c7f8522006-06-28 15:08:22 +020011261 { .id = 0x10ec0888, .name = "ALC888", .patch = patch_alc883 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070011262 {} /* terminator */
11263};