blob: 42fc05c3fdf660f41ab3adddf00a60d112724e32 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Universal Interface for Intel High Definition Audio Codec
3 *
Takashi Iwai1d045db2011-07-07 18:23:21 +02004 * HD audio interface patch for Realtek ALC codecs
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
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 Woithe409a3e92012-03-27 13:01:01 +10309 * Jonathan Woithe <jwoithe@just42.net>
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/init.h>
27#include <linux/delay.h>
28#include <linux/slab.h>
29#include <linux/pci.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040030#include <linux/module.h>
Takashi Iwaiab16c6d2012-11-29 09:56:50 +010031#include <linux/sort.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <sound/core.h>
Kailang Yang9ad0e492010-09-14 23:22:00 +020033#include <sound/jack.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "hda_codec.h"
35#include "hda_local.h"
Takashi Iwai23d30f22012-05-07 17:17:32 +020036#include "hda_auto_parser.h"
Kusanagi Kouichi680cd532009-02-05 00:00:58 +090037#include "hda_beep.h"
Takashi Iwai1835a0f2011-10-27 22:12:46 +020038#include "hda_jack.h"
Takashi Iwai08c189f2012-12-19 15:22:24 +010039#include "hda_generic.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Takashi Iwai1d045db2011-07-07 18:23:21 +020041/* unsol event tags */
Takashi Iwai08c189f2012-12-19 15:22:24 +010042#define ALC_DCVOL_EVENT 0x08
Takashi Iwaid4a86d82010-06-23 17:51:26 +020043
Kailang Yangdf694da2005-12-05 19:42:22 +010044/* for GPIO Poll */
45#define GPIO_MASK 0x03
46
Takashi Iwai4a79ba32009-04-22 16:31:35 +020047/* extra amp-initialization sequence types */
48enum {
49 ALC_INIT_NONE,
50 ALC_INIT_DEFAULT,
51 ALC_INIT_GPIO1,
52 ALC_INIT_GPIO2,
53 ALC_INIT_GPIO3,
54};
55
Kailang Yangda00c242010-03-19 11:23:45 +010056struct alc_customize_define {
57 unsigned int sku_cfg;
58 unsigned char port_connectivity;
59 unsigned char check_sum;
60 unsigned char customization;
61 unsigned char external_amp;
62 unsigned int enable_pcbeep:1;
63 unsigned int platform_type:1;
64 unsigned int swap:1;
65 unsigned int override:1;
David Henningsson90622912010-10-14 14:50:18 +020066 unsigned int fixup:1; /* Means that this sku is set by driver, not read from hw */
Kailang Yangda00c242010-03-19 11:23:45 +010067};
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069struct alc_spec {
Takashi Iwai08c189f2012-12-19 15:22:24 +010070 struct hda_gen_spec gen; /* must be at head */
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 /* codec parameterization */
Takashi Iwaia9111322011-05-02 11:30:18 +020073 const struct snd_kcontrol_new *mixers[5]; /* mixer arrays */
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 unsigned int num_mixers;
Takashi Iwai45bdd1c2009-02-06 16:11:25 +010075 unsigned int beep_amp; /* beep amp value, set via set_beep_amp() */
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Kailang Yangda00c242010-03-19 11:23:45 +010077 struct alc_customize_define cdefine;
Takashi Iwai08c189f2012-12-19 15:22:24 +010078 unsigned int parse_flags; /* flag for snd_hda_parse_pin_defcfg() */
79
80 /* inverted dmic fix */
81 unsigned int inv_dmic_fixup:1; /* has inverted digital-mic workaround */
82 unsigned int inv_dmic_muted:1; /* R-ch of inv d-mic is muted? */
Takashi Iwai125821a2012-06-22 14:30:29 +020083 hda_nid_t inv_dmic_pin;
Takashi Iwaiab16c6d2012-11-29 09:56:50 +010084
Takashi Iwaiae6b8132006-03-03 16:47:17 +010085 /* hooks */
86 void (*init_hook)(struct hda_codec *codec);
Takashi Iwai83012a72012-08-24 18:38:08 +020087#ifdef CONFIG_PM
Daniel T Chenc97259d2009-12-27 18:52:08 -050088 void (*power_hook)(struct hda_codec *codec);
Hector Martinf5de24b2009-12-20 22:51:31 +010089#endif
Takashi Iwai1c716152011-04-07 10:37:16 +020090 void (*shutup)(struct hda_codec *codec);
Takashi Iwaid922b512011-04-28 12:18:53 +020091
Takashi Iwai4a79ba32009-04-22 16:31:35 +020092 int init_amp;
Takashi Iwaid433a672010-09-20 15:11:54 +020093 int codec_variant; /* flag for other variants */
Takashi Iwaie64f14f2009-01-20 18:32:55 +010094
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +020095 /* for PLL fix */
96 hda_nid_t pll_nid;
97 unsigned int pll_coef_idx, pll_coef_bit;
Takashi Iwai1bb7e432011-10-17 16:50:59 +020098 unsigned int coef0;
Kailang Yangdf694da2005-12-05 19:42:22 +010099};
100
Takashi Iwai23f0c042009-02-26 13:03:58 +0100101/*
Takashi Iwai1d045db2011-07-07 18:23:21 +0200102 * Append the given mixer and verb elements for the later use
103 * The mixer array is referred in build_controls(), and init_verbs are
104 * called in init().
Takashi Iwaid88897e2008-10-31 15:01:37 +0100105 */
Takashi Iwaia9111322011-05-02 11:30:18 +0200106static void add_mixer(struct alc_spec *spec, const struct snd_kcontrol_new *mix)
Takashi Iwaid88897e2008-10-31 15:01:37 +0100107{
108 if (snd_BUG_ON(spec->num_mixers >= ARRAY_SIZE(spec->mixers)))
109 return;
110 spec->mixers[spec->num_mixers++] = mix;
111}
112
Takashi Iwaid88897e2008-10-31 15:01:37 +0100113/*
Takashi Iwai1d045db2011-07-07 18:23:21 +0200114 * GPIO setup tables, used in initialization
Kailang Yangdf694da2005-12-05 19:42:22 +0100115 */
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200116/* Enable GPIO mask and set output */
Takashi Iwaia9111322011-05-02 11:30:18 +0200117static const struct hda_verb alc_gpio1_init_verbs[] = {
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200118 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
119 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
120 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
121 { }
122};
123
Takashi Iwaia9111322011-05-02 11:30:18 +0200124static const struct hda_verb alc_gpio2_init_verbs[] = {
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200125 {0x01, AC_VERB_SET_GPIO_MASK, 0x02},
126 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x02},
127 {0x01, AC_VERB_SET_GPIO_DATA, 0x02},
128 { }
129};
130
Takashi Iwaia9111322011-05-02 11:30:18 +0200131static const struct hda_verb alc_gpio3_init_verbs[] = {
Kailang Yangbdd148a2007-05-08 15:19:08 +0200132 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
133 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
134 {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
135 { }
136};
137
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +0200138/*
139 * Fix hardware PLL issue
140 * On some codecs, the analog PLL gating control must be off while
141 * the default value is 1.
142 */
143static void alc_fix_pll(struct hda_codec *codec)
144{
145 struct alc_spec *spec = codec->spec;
146 unsigned int val;
147
148 if (!spec->pll_nid)
149 return;
150 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_COEF_INDEX,
151 spec->pll_coef_idx);
152 val = snd_hda_codec_read(codec, spec->pll_nid, 0,
153 AC_VERB_GET_PROC_COEF, 0);
154 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_COEF_INDEX,
155 spec->pll_coef_idx);
156 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_PROC_COEF,
157 val & ~(1 << spec->pll_coef_bit));
158}
159
160static void alc_fix_pll_init(struct hda_codec *codec, hda_nid_t nid,
161 unsigned int coef_idx, unsigned int coef_bit)
162{
163 struct alc_spec *spec = codec->spec;
164 spec->pll_nid = nid;
165 spec->pll_coef_idx = coef_idx;
166 spec->pll_coef_bit = coef_bit;
167 alc_fix_pll(codec);
168}
169
Takashi Iwaicf5a2272012-02-20 16:31:07 +0100170/* update the master volume per volume-knob's unsol event */
David Henningsson29adc4b2012-09-25 11:31:00 +0200171static void alc_update_knob_master(struct hda_codec *codec, struct hda_jack_tbl *jack)
Takashi Iwaicf5a2272012-02-20 16:31:07 +0100172{
173 unsigned int val;
174 struct snd_kcontrol *kctl;
175 struct snd_ctl_elem_value *uctl;
176
177 kctl = snd_hda_find_mixer_ctl(codec, "Master Playback Volume");
178 if (!kctl)
179 return;
180 uctl = kzalloc(sizeof(*uctl), GFP_KERNEL);
181 if (!uctl)
182 return;
David Henningsson29adc4b2012-09-25 11:31:00 +0200183 val = snd_hda_codec_read(codec, jack->nid, 0,
Takashi Iwaicf5a2272012-02-20 16:31:07 +0100184 AC_VERB_GET_VOLUME_KNOB_CONTROL, 0);
185 val &= HDA_AMP_VOLMASK;
186 uctl->value.integer.value[0] = val;
187 uctl->value.integer.value[1] = val;
188 kctl->put(kctl, uctl);
189 kfree(uctl);
190}
191
David Henningsson29adc4b2012-09-25 11:31:00 +0200192static void alc880_unsol_event(struct hda_codec *codec, unsigned int res)
Takashi Iwaif21d78e2012-01-19 12:10:29 +0100193{
David Henningsson29adc4b2012-09-25 11:31:00 +0200194 /* For some reason, the res given from ALC880 is broken.
195 Here we adjust it properly. */
196 snd_hda_jack_unsol_event(codec, res >> 2);
Takashi Iwaif21d78e2012-01-19 12:10:29 +0100197}
198
Kailang Yangf9423e72008-05-27 12:32:25 +0200199/* additional initialization for ALC888 variants */
200static void alc888_coef_init(struct hda_codec *codec)
201{
202 unsigned int tmp;
203
204 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0);
205 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
206 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
Takashi Iwai37db6232009-03-05 09:40:16 +0100207 if ((tmp & 0xf0) == 0x20)
Kailang Yangf9423e72008-05-27 12:32:25 +0200208 /* alc888S-VC */
209 snd_hda_codec_read(codec, 0x20, 0,
210 AC_VERB_SET_PROC_COEF, 0x830);
211 else
212 /* alc888-VB */
213 snd_hda_codec_read(codec, 0x20, 0,
214 AC_VERB_SET_PROC_COEF, 0x3030);
215}
216
Takashi Iwai1d045db2011-07-07 18:23:21 +0200217/* additional initialization for ALC889 variants */
Jaroslav Kysela87a8c372009-07-23 10:58:29 +0200218static void alc889_coef_init(struct hda_codec *codec)
219{
220 unsigned int tmp;
221
222 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
223 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
224 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
225 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, tmp|0x2010);
226}
227
Takashi Iwai3fb4a502010-01-19 15:46:37 +0100228/* turn on/off EAPD control (only if available) */
229static void set_eapd(struct hda_codec *codec, hda_nid_t nid, int on)
230{
231 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
232 return;
233 if (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)
234 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
235 on ? 2 : 0);
236}
237
Takashi Iwai691f1fc2011-04-07 10:31:43 +0200238/* turn on/off EAPD controls of the codec */
239static void alc_auto_setup_eapd(struct hda_codec *codec, bool on)
240{
241 /* We currently only handle front, HP */
Takashi Iwai39fa84e2011-06-27 15:28:57 +0200242 static hda_nid_t pins[] = {
243 0x0f, 0x10, 0x14, 0x15, 0
244 };
245 hda_nid_t *p;
246 for (p = pins; *p; p++)
247 set_eapd(codec, *p, on);
Takashi Iwai691f1fc2011-04-07 10:31:43 +0200248}
249
Takashi Iwai1c716152011-04-07 10:37:16 +0200250/* generic shutup callback;
251 * just turning off EPAD and a little pause for avoiding pop-noise
252 */
253static void alc_eapd_shutup(struct hda_codec *codec)
254{
255 alc_auto_setup_eapd(codec, false);
256 msleep(200);
257}
258
Takashi Iwai1d045db2011-07-07 18:23:21 +0200259/* generic EAPD initialization */
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200260static void alc_auto_init_amp(struct hda_codec *codec, int type)
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200261{
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200262 unsigned int tmp;
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200263
Takashi Iwai39fa84e2011-06-27 15:28:57 +0200264 alc_auto_setup_eapd(codec, true);
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200265 switch (type) {
266 case ALC_INIT_GPIO1:
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200267 snd_hda_sequence_write(codec, alc_gpio1_init_verbs);
268 break;
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200269 case ALC_INIT_GPIO2:
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200270 snd_hda_sequence_write(codec, alc_gpio2_init_verbs);
271 break;
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200272 case ALC_INIT_GPIO3:
Kailang Yangbdd148a2007-05-08 15:19:08 +0200273 snd_hda_sequence_write(codec, alc_gpio3_init_verbs);
274 break;
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200275 case ALC_INIT_DEFAULT:
Kailang Yangc9b58002007-10-16 14:30:01 +0200276 switch (codec->vendor_id) {
277 case 0x10ec0260:
278 snd_hda_codec_write(codec, 0x1a, 0,
279 AC_VERB_SET_COEF_INDEX, 7);
280 tmp = snd_hda_codec_read(codec, 0x1a, 0,
281 AC_VERB_GET_PROC_COEF, 0);
282 snd_hda_codec_write(codec, 0x1a, 0,
283 AC_VERB_SET_COEF_INDEX, 7);
284 snd_hda_codec_write(codec, 0x1a, 0,
285 AC_VERB_SET_PROC_COEF,
286 tmp | 0x2010);
287 break;
288 case 0x10ec0262:
289 case 0x10ec0880:
290 case 0x10ec0882:
291 case 0x10ec0883:
292 case 0x10ec0885:
Takashi Iwai4a5a4c52009-02-06 12:46:59 +0100293 case 0x10ec0887:
Takashi Iwai20b67dd2011-03-23 22:54:32 +0100294 /*case 0x10ec0889:*/ /* this causes an SPDIF problem */
Jaroslav Kysela87a8c372009-07-23 10:58:29 +0200295 alc889_coef_init(codec);
Kailang Yangc9b58002007-10-16 14:30:01 +0200296 break;
Kailang Yangf9423e72008-05-27 12:32:25 +0200297 case 0x10ec0888:
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200298 alc888_coef_init(codec);
Kailang Yangf9423e72008-05-27 12:32:25 +0200299 break;
Takashi Iwai0aea7782010-01-25 15:44:11 +0100300#if 0 /* XXX: This may cause the silent output on speaker on some machines */
Kailang Yangc9b58002007-10-16 14:30:01 +0200301 case 0x10ec0267:
302 case 0x10ec0268:
303 snd_hda_codec_write(codec, 0x20, 0,
304 AC_VERB_SET_COEF_INDEX, 7);
305 tmp = snd_hda_codec_read(codec, 0x20, 0,
306 AC_VERB_GET_PROC_COEF, 0);
307 snd_hda_codec_write(codec, 0x20, 0,
Kailang Yangea1fb292008-08-26 12:58:38 +0200308 AC_VERB_SET_COEF_INDEX, 7);
Kailang Yangc9b58002007-10-16 14:30:01 +0200309 snd_hda_codec_write(codec, 0x20, 0,
310 AC_VERB_SET_PROC_COEF,
311 tmp | 0x3000);
312 break;
Takashi Iwai0aea7782010-01-25 15:44:11 +0100313#endif /* XXX */
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200314 }
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200315 break;
316 }
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200317}
Kailang Yangea1fb292008-08-26 12:58:38 +0200318
Takashi Iwai6c819492009-08-10 18:47:44 +0200319
Takashi Iwai1d045db2011-07-07 18:23:21 +0200320/*
321 * Realtek SSID verification
322 */
323
David Henningsson90622912010-10-14 14:50:18 +0200324/* Could be any non-zero and even value. When used as fixup, tells
325 * the driver to ignore any present sku defines.
326 */
327#define ALC_FIXUP_SKU_IGNORE (2)
328
Takashi Iwai23d30f22012-05-07 17:17:32 +0200329static void alc_fixup_sku_ignore(struct hda_codec *codec,
330 const struct hda_fixup *fix, int action)
331{
332 struct alc_spec *spec = codec->spec;
333 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
334 spec->cdefine.fixup = 1;
335 spec->cdefine.sku_cfg = ALC_FIXUP_SKU_IGNORE;
336 }
337}
338
Kailang Yangda00c242010-03-19 11:23:45 +0100339static int alc_auto_parse_customize_define(struct hda_codec *codec)
340{
341 unsigned int ass, tmp, i;
Takashi Iwai7fb56222010-03-22 17:09:47 +0100342 unsigned nid = 0;
Kailang Yangda00c242010-03-19 11:23:45 +0100343 struct alc_spec *spec = codec->spec;
344
Takashi Iwaib6cbe512010-07-28 17:43:36 +0200345 spec->cdefine.enable_pcbeep = 1; /* assume always enabled */
346
David Henningsson90622912010-10-14 14:50:18 +0200347 if (spec->cdefine.fixup) {
348 ass = spec->cdefine.sku_cfg;
349 if (ass == ALC_FIXUP_SKU_IGNORE)
350 return -1;
351 goto do_sku;
352 }
353
Kailang Yangda00c242010-03-19 11:23:45 +0100354 ass = codec->subsystem_id & 0xffff;
Takashi Iwaib6cbe512010-07-28 17:43:36 +0200355 if (ass != codec->bus->pci->subsystem_device && (ass & 1))
Kailang Yangda00c242010-03-19 11:23:45 +0100356 goto do_sku;
357
358 nid = 0x1d;
359 if (codec->vendor_id == 0x10ec0260)
360 nid = 0x17;
361 ass = snd_hda_codec_get_pincfg(codec, nid);
362
363 if (!(ass & 1)) {
364 printk(KERN_INFO "hda_codec: %s: SKU not ready 0x%08x\n",
365 codec->chip_name, ass);
366 return -1;
367 }
368
369 /* check sum */
370 tmp = 0;
371 for (i = 1; i < 16; i++) {
372 if ((ass >> i) & 1)
373 tmp++;
374 }
375 if (((ass >> 16) & 0xf) != tmp)
376 return -1;
377
378 spec->cdefine.port_connectivity = ass >> 30;
379 spec->cdefine.enable_pcbeep = (ass & 0x100000) >> 20;
380 spec->cdefine.check_sum = (ass >> 16) & 0xf;
381 spec->cdefine.customization = ass >> 8;
382do_sku:
383 spec->cdefine.sku_cfg = ass;
384 spec->cdefine.external_amp = (ass & 0x38) >> 3;
385 spec->cdefine.platform_type = (ass & 0x4) >> 2;
386 spec->cdefine.swap = (ass & 0x2) >> 1;
387 spec->cdefine.override = ass & 0x1;
388
389 snd_printd("SKU: Nid=0x%x sku_cfg=0x%08x\n",
390 nid, spec->cdefine.sku_cfg);
391 snd_printd("SKU: port_connectivity=0x%x\n",
392 spec->cdefine.port_connectivity);
393 snd_printd("SKU: enable_pcbeep=0x%x\n", spec->cdefine.enable_pcbeep);
394 snd_printd("SKU: check_sum=0x%08x\n", spec->cdefine.check_sum);
395 snd_printd("SKU: customization=0x%08x\n", spec->cdefine.customization);
396 snd_printd("SKU: external_amp=0x%x\n", spec->cdefine.external_amp);
397 snd_printd("SKU: platform_type=0x%x\n", spec->cdefine.platform_type);
398 snd_printd("SKU: swap=0x%x\n", spec->cdefine.swap);
399 snd_printd("SKU: override=0x%x\n", spec->cdefine.override);
400
401 return 0;
402}
403
Takashi Iwai08c189f2012-12-19 15:22:24 +0100404/* return the position of NID in the list, or -1 if not found */
405static int find_idx_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
406{
407 int i;
408 for (i = 0; i < nums; i++)
409 if (list[i] == nid)
410 return i;
411 return -1;
412}
Takashi Iwai1d045db2011-07-07 18:23:21 +0200413/* return true if the given NID is found in the list */
Takashi Iwai3af9ee62011-06-27 12:34:01 +0200414static bool found_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
415{
Takashi Iwai21268962011-07-07 15:01:13 +0200416 return find_idx_in_nid_list(nid, list, nums) >= 0;
Takashi Iwai3af9ee62011-06-27 12:34:01 +0200417}
418
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200419/* check subsystem ID and set up device-specific initialization;
420 * return 1 if initialized, 0 if invalid SSID
421 */
422/* 32-bit subsystem ID for BIOS loading in HD Audio codec.
423 * 31 ~ 16 : Manufacture ID
424 * 15 ~ 8 : SKU ID
425 * 7 ~ 0 : Assembly ID
426 * port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
427 */
428static int alc_subsystem_id(struct hda_codec *codec,
429 hda_nid_t porta, hda_nid_t porte,
Kailang Yang6227cdc2010-02-25 08:36:52 +0100430 hda_nid_t portd, hda_nid_t porti)
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200431{
432 unsigned int ass, tmp, i;
433 unsigned nid;
434 struct alc_spec *spec = codec->spec;
435
David Henningsson90622912010-10-14 14:50:18 +0200436 if (spec->cdefine.fixup) {
437 ass = spec->cdefine.sku_cfg;
438 if (ass == ALC_FIXUP_SKU_IGNORE)
439 return 0;
440 goto do_sku;
441 }
442
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200443 ass = codec->subsystem_id & 0xffff;
444 if ((ass != codec->bus->pci->subsystem_device) && (ass & 1))
445 goto do_sku;
446
447 /* invalid SSID, check the special NID pin defcfg instead */
448 /*
Sasha Alexandrdef319f2009-06-16 16:00:15 -0400449 * 31~30 : port connectivity
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200450 * 29~21 : reserve
451 * 20 : PCBEEP input
452 * 19~16 : Check sum (15:1)
453 * 15~1 : Custom
454 * 0 : override
455 */
456 nid = 0x1d;
457 if (codec->vendor_id == 0x10ec0260)
458 nid = 0x17;
459 ass = snd_hda_codec_get_pincfg(codec, nid);
460 snd_printd("realtek: No valid SSID, "
461 "checking pincfg 0x%08x for NID 0x%x\n",
Takashi Iwaicb6605c2009-04-28 13:03:19 +0200462 ass, nid);
Kailang Yang6227cdc2010-02-25 08:36:52 +0100463 if (!(ass & 1))
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200464 return 0;
465 if ((ass >> 30) != 1) /* no physical connection */
466 return 0;
467
468 /* check sum */
469 tmp = 0;
470 for (i = 1; i < 16; i++) {
471 if ((ass >> i) & 1)
472 tmp++;
473 }
474 if (((ass >> 16) & 0xf) != tmp)
475 return 0;
476do_sku:
477 snd_printd("realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n",
478 ass & 0xffff, codec->vendor_id);
479 /*
480 * 0 : override
481 * 1 : Swap Jack
482 * 2 : 0 --> Desktop, 1 --> Laptop
483 * 3~5 : External Amplifier control
484 * 7~6 : Reserved
485 */
486 tmp = (ass & 0x38) >> 3; /* external Amp control */
487 switch (tmp) {
488 case 1:
489 spec->init_amp = ALC_INIT_GPIO1;
490 break;
491 case 3:
492 spec->init_amp = ALC_INIT_GPIO2;
493 break;
494 case 7:
495 spec->init_amp = ALC_INIT_GPIO3;
496 break;
497 case 5:
Takashi Iwai5a8cfb42010-11-26 17:11:18 +0100498 default:
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200499 spec->init_amp = ALC_INIT_DEFAULT;
500 break;
501 }
502
503 /* is laptop or Desktop and enable the function "Mute internal speaker
504 * when the external headphone out jack is plugged"
505 */
506 if (!(ass & 0x8000))
507 return 1;
508 /*
509 * 10~8 : Jack location
510 * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered
511 * 14~13: Resvered
512 * 15 : 1 --> enable the function "Mute internal speaker
513 * when the external headphone out jack is plugged"
514 */
Takashi Iwai08c189f2012-12-19 15:22:24 +0100515 if (!spec->gen.autocfg.hp_pins[0] &&
516 !(spec->gen.autocfg.line_out_pins[0] &&
517 spec->gen.autocfg.line_out_type == AUTO_PIN_HP_OUT)) {
Takashi Iwai01d48252009-10-06 13:21:54 +0200518 hda_nid_t nid;
Kailang Yangc9b58002007-10-16 14:30:01 +0200519 tmp = (ass >> 11) & 0x3; /* HP to chassis */
520 if (tmp == 0)
Takashi Iwai01d48252009-10-06 13:21:54 +0200521 nid = porta;
Kailang Yangc9b58002007-10-16 14:30:01 +0200522 else if (tmp == 1)
Takashi Iwai01d48252009-10-06 13:21:54 +0200523 nid = porte;
Kailang Yangc9b58002007-10-16 14:30:01 +0200524 else if (tmp == 2)
Takashi Iwai01d48252009-10-06 13:21:54 +0200525 nid = portd;
Kailang Yang6227cdc2010-02-25 08:36:52 +0100526 else if (tmp == 3)
527 nid = porti;
Kailang Yangc9b58002007-10-16 14:30:01 +0200528 else
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200529 return 1;
Takashi Iwai08c189f2012-12-19 15:22:24 +0100530 if (found_in_nid_list(nid, spec->gen.autocfg.line_out_pins,
531 spec->gen.autocfg.line_outs))
Takashi Iwai3af9ee62011-06-27 12:34:01 +0200532 return 1;
Takashi Iwai08c189f2012-12-19 15:22:24 +0100533 spec->gen.autocfg.hp_pins[0] = nid;
Kailang Yangc9b58002007-10-16 14:30:01 +0200534 }
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200535 return 1;
536}
Kailang Yangea1fb292008-08-26 12:58:38 +0200537
Takashi Iwai3e6179b2011-07-08 16:55:13 +0200538/* Check the validity of ALC subsystem-id
539 * ports contains an array of 4 pin NIDs for port-A, E, D and I */
540static void alc_ssid_check(struct hda_codec *codec, const hda_nid_t *ports)
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200541{
Takashi Iwai3e6179b2011-07-08 16:55:13 +0200542 if (!alc_subsystem_id(codec, ports[0], ports[1], ports[2], ports[3])) {
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200543 struct alc_spec *spec = codec->spec;
544 snd_printd("realtek: "
545 "Enable default setup for auto mode as fallback\n");
546 spec->init_amp = ALC_INIT_DEFAULT;
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200547 }
Takashi Iwai21268962011-07-07 15:01:13 +0200548}
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200549
Takashi Iwai41e41f12005-06-08 14:48:49 +0200550/*
Takashi Iwai1d045db2011-07-07 18:23:21 +0200551 * COEF access helper functions
552 */
Kailang Yang274693f2009-12-03 10:07:50 +0100553static int alc_read_coef_idx(struct hda_codec *codec,
554 unsigned int coef_idx)
555{
556 unsigned int val;
557 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX,
558 coef_idx);
559 val = snd_hda_codec_read(codec, 0x20, 0,
560 AC_VERB_GET_PROC_COEF, 0);
561 return val;
562}
563
Kailang Yang977ddd62010-09-15 10:02:29 +0200564static void alc_write_coef_idx(struct hda_codec *codec, unsigned int coef_idx,
565 unsigned int coef_val)
566{
567 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX,
568 coef_idx);
569 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF,
570 coef_val);
571}
572
Takashi Iwai1bb7e432011-10-17 16:50:59 +0200573/* a special bypass for COEF 0; read the cached value at the second time */
574static unsigned int alc_get_coef0(struct hda_codec *codec)
575{
576 struct alc_spec *spec = codec->spec;
577 if (!spec->coef0)
578 spec->coef0 = alc_read_coef_idx(codec, 0);
579 return spec->coef0;
580}
581
Takashi Iwai1d045db2011-07-07 18:23:21 +0200582/*
Takashi Iwai1d045db2011-07-07 18:23:21 +0200583 */
584
Takashi Iwai08c189f2012-12-19 15:22:24 +0100585static hda_nid_t get_adc_nid(struct hda_codec *codec, int adc_idx, int imux_idx)
Takashi Iwai757899a2010-07-30 10:48:14 +0200586{
Takashi Iwai08c189f2012-12-19 15:22:24 +0100587 struct hda_gen_spec *spec = codec->spec;
588 if (spec->dyn_adc_switch)
589 adc_idx = spec->dyn_adc_idx[imux_idx];
590 return spec->adc_nids[adc_idx];
Takashi Iwaif9e336f2008-10-31 16:37:07 +0100591}
592
Takashi Iwai666a70d2012-12-17 20:29:29 +0100593static void alc_inv_dmic_sync_adc(struct hda_codec *codec, int adc_idx)
594{
595 struct alc_spec *spec = codec->spec;
Takashi Iwai08c189f2012-12-19 15:22:24 +0100596 struct hda_input_mux *imux = &spec->gen.input_mux;
Takashi Iwai666a70d2012-12-17 20:29:29 +0100597 struct nid_path *path;
598 hda_nid_t nid;
599 int i, dir, parm;
600 unsigned int val;
601
602 for (i = 0; i < imux->num_items; i++) {
Takashi Iwai08c189f2012-12-19 15:22:24 +0100603 if (spec->gen.imux_pins[i] == spec->inv_dmic_pin)
Takashi Iwai666a70d2012-12-17 20:29:29 +0100604 break;
Takashi Iwaia23b6882009-03-23 15:21:36 +0100605 }
Takashi Iwai666a70d2012-12-17 20:29:29 +0100606 if (i >= imux->num_items)
607 return;
Takashi Iwaia23b6882009-03-23 15:21:36 +0100608
Takashi Iwai08c189f2012-12-19 15:22:24 +0100609 path = snd_hda_get_nid_path(codec, spec->inv_dmic_pin,
610 get_adc_nid(codec, adc_idx, i));
Takashi Iwai666a70d2012-12-17 20:29:29 +0100611 val = path->ctls[NID_PATH_MUTE_CTL];
612 if (!val)
613 return;
614 nid = get_amp_nid_(val);
615 dir = get_amp_direction_(val);
616 parm = AC_AMP_SET_RIGHT |
617 (dir == HDA_OUTPUT ? AC_AMP_SET_OUTPUT : AC_AMP_SET_INPUT);
Takashi Iwaia23b6882009-03-23 15:21:36 +0100618
Takashi Iwaic4f3ebe2012-12-20 11:33:20 +0100619 /* flush all cached amps at first */
Takashi Iwai0c3d47b2012-12-20 11:41:54 +0100620 snd_hda_codec_flush_amp_cache(codec);
Takashi Iwaic4f3ebe2012-12-20 11:33:20 +0100621
Takashi Iwai666a70d2012-12-17 20:29:29 +0100622 /* we care only right channel */
623 val = snd_hda_codec_amp_read(codec, nid, 1, dir, 0);
624 if (val & 0x80) /* if already muted, we don't need to touch */
625 return;
626 val |= 0x80;
627 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
628 parm | val);
Takashi Iwaia23b6882009-03-23 15:21:36 +0100629}
630
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200631/*
Takashi Iwai125821a2012-06-22 14:30:29 +0200632 * Inverted digital-mic handling
633 *
634 * First off, it's a bit tricky. The "Inverted Internal Mic Capture Switch"
635 * gives the additional mute only to the right channel of the digital mic
636 * capture stream. This is a workaround for avoiding the almost silence
637 * by summing the stereo stream from some (known to be ForteMedia)
638 * digital mic unit.
639 *
640 * The logic is to call alc_inv_dmic_sync() after each action (possibly)
641 * modifying ADC amp. When the mute flag is set, it mutes the R-channel
642 * without caching so that the cache can still keep the original value.
643 * The cached value is then restored when the flag is set off or any other
644 * than d-mic is used as the current input source.
645 */
646static void alc_inv_dmic_sync(struct hda_codec *codec, bool force)
647{
648 struct alc_spec *spec = codec->spec;
Takashi Iwai666a70d2012-12-17 20:29:29 +0100649 int src, nums;
Takashi Iwai125821a2012-06-22 14:30:29 +0200650
651 if (!spec->inv_dmic_fixup)
652 return;
653 if (!spec->inv_dmic_muted && !force)
654 return;
Takashi Iwai08c189f2012-12-19 15:22:24 +0100655 nums = spec->gen.dyn_adc_switch ? 1 : spec->gen.num_adc_nids;
Takashi Iwai666a70d2012-12-17 20:29:29 +0100656 for (src = 0; src < nums; src++) {
Takashi Iwai125821a2012-06-22 14:30:29 +0200657 bool dmic_fixup = false;
Takashi Iwai125821a2012-06-22 14:30:29 +0200658
659 if (spec->inv_dmic_muted &&
Takashi Iwai08c189f2012-12-19 15:22:24 +0100660 spec->gen.imux_pins[spec->gen.cur_mux[src]] == spec->inv_dmic_pin)
Takashi Iwai125821a2012-06-22 14:30:29 +0200661 dmic_fixup = true;
662 if (!dmic_fixup && !force)
663 continue;
Takashi Iwai666a70d2012-12-17 20:29:29 +0100664 alc_inv_dmic_sync_adc(codec, src);
Takashi Iwai125821a2012-06-22 14:30:29 +0200665 }
666}
667
Takashi Iwai08c189f2012-12-19 15:22:24 +0100668static void alc_inv_dmic_hook(struct hda_codec *codec)
669{
670 alc_inv_dmic_sync(codec, false);
671}
672
Takashi Iwai125821a2012-06-22 14:30:29 +0200673static int alc_inv_dmic_sw_get(struct snd_kcontrol *kcontrol,
674 struct snd_ctl_elem_value *ucontrol)
675{
676 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
677 struct alc_spec *spec = codec->spec;
678
679 ucontrol->value.integer.value[0] = !spec->inv_dmic_muted;
680 return 0;
681}
682
683static int alc_inv_dmic_sw_put(struct snd_kcontrol *kcontrol,
684 struct snd_ctl_elem_value *ucontrol)
685{
686 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
687 struct alc_spec *spec = codec->spec;
688 unsigned int val = !ucontrol->value.integer.value[0];
689
690 if (val == spec->inv_dmic_muted)
691 return 0;
692 spec->inv_dmic_muted = val;
693 alc_inv_dmic_sync(codec, true);
694 return 0;
695}
696
697static const struct snd_kcontrol_new alc_inv_dmic_sw = {
698 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Takashi Iwaibc549762012-12-18 15:35:11 +0100699 .name = "Inverted Internal Mic Capture Switch",
Takashi Iwai125821a2012-06-22 14:30:29 +0200700 .info = snd_ctl_boolean_mono_info,
701 .get = alc_inv_dmic_sw_get,
702 .put = alc_inv_dmic_sw_put,
703};
704
705static int alc_add_inv_dmic_mixer(struct hda_codec *codec, hda_nid_t nid)
706{
707 struct alc_spec *spec = codec->spec;
Takashi Iwai668d1e92012-11-29 14:10:17 +0100708
Takashi Iwai08c189f2012-12-19 15:22:24 +0100709 if (!snd_hda_gen_add_kctl(&spec->gen, NULL, &alc_inv_dmic_sw))
Takashi Iwai125821a2012-06-22 14:30:29 +0200710 return -ENOMEM;
711 spec->inv_dmic_fixup = 1;
712 spec->inv_dmic_muted = 0;
713 spec->inv_dmic_pin = nid;
Takashi Iwai08c189f2012-12-19 15:22:24 +0100714 spec->gen.cap_sync_hook = alc_inv_dmic_hook;
Takashi Iwai125821a2012-06-22 14:30:29 +0200715 return 0;
716}
717
Takashi Iwai6e72aa52012-06-25 10:52:25 +0200718/* typically the digital mic is put at node 0x12 */
719static void alc_fixup_inv_dmic_0x12(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +0100720 const struct hda_fixup *fix, int action)
Takashi Iwai6e72aa52012-06-25 10:52:25 +0200721{
Takashi Iwai1727a772013-01-10 09:52:52 +0100722 if (action == HDA_FIXUP_ACT_PROBE)
Takashi Iwai6e72aa52012-06-25 10:52:25 +0200723 alc_add_inv_dmic_mixer(codec, 0x12);
724}
725
Takashi Iwai603c4012008-07-30 15:01:44 +0200726
Takashi Iwai67d634c2009-11-16 15:35:59 +0100727#ifdef CONFIG_SND_HDA_INPUT_BEEP
Takashi Iwai45bdd1c2009-02-06 16:11:25 +0100728/* additional beep mixers; the actual parameters are overwritten at build */
Takashi Iwaia9111322011-05-02 11:30:18 +0200729static const struct snd_kcontrol_new alc_beep_mixer[] = {
Takashi Iwai45bdd1c2009-02-06 16:11:25 +0100730 HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT),
Jaroslav Kysela123c07a2009-10-21 14:48:23 +0200731 HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_INPUT),
Takashi Iwai45bdd1c2009-02-06 16:11:25 +0100732 { } /* end */
733};
Takashi Iwai67d634c2009-11-16 15:35:59 +0100734#endif
Takashi Iwai45bdd1c2009-02-06 16:11:25 +0100735
Takashi Iwai2eab6942012-12-18 15:30:41 +0100736static int alc_build_controls(struct hda_codec *codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737{
738 struct alc_spec *spec = codec->spec;
Takashi Iwai666a70d2012-12-17 20:29:29 +0100739 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
Takashi Iwai08c189f2012-12-19 15:22:24 +0100741 err = snd_hda_gen_build_controls(codec);
742 if (err < 0)
743 return err;
744
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 for (i = 0; i < spec->num_mixers; i++) {
746 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
747 if (err < 0)
748 return err;
749 }
Takashi Iwai2134ea42008-01-10 16:53:55 +0100750
Takashi Iwai67d634c2009-11-16 15:35:59 +0100751#ifdef CONFIG_SND_HDA_INPUT_BEEP
Takashi Iwai45bdd1c2009-02-06 16:11:25 +0100752 /* create beep controls if needed */
753 if (spec->beep_amp) {
Takashi Iwaia9111322011-05-02 11:30:18 +0200754 const struct snd_kcontrol_new *knew;
Takashi Iwai45bdd1c2009-02-06 16:11:25 +0100755 for (knew = alc_beep_mixer; knew->name; knew++) {
756 struct snd_kcontrol *kctl;
757 kctl = snd_ctl_new1(knew, codec);
758 if (!kctl)
759 return -ENOMEM;
760 kctl->private_value = spec->beep_amp;
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +0100761 err = snd_hda_ctl_add(codec, 0, kctl);
Takashi Iwai45bdd1c2009-02-06 16:11:25 +0100762 if (err < 0)
763 return err;
764 }
765 }
Takashi Iwai67d634c2009-11-16 15:35:59 +0100766#endif
Takashi Iwai45bdd1c2009-02-06 16:11:25 +0100767
Takashi Iwai1727a772013-01-10 09:52:52 +0100768 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_BUILD);
Takashi Iwai420b0fe2012-03-12 12:35:27 +0100769 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770}
771
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200772
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773/*
Takashi Iwaiae6b8132006-03-03 16:47:17 +0100774 * Common callbacks
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200775 */
Takashi Iwai16ded522005-06-10 19:58:24 +0200776
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777static int alc_init(struct hda_codec *codec)
778{
779 struct alc_spec *spec = codec->spec;
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200780
Takashi Iwai546bb672012-03-07 08:37:19 +0100781 if (spec->init_hook)
782 spec->init_hook(codec);
Kailang Yang526af6e2012-03-07 08:25:20 +0100783
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +0200784 alc_fix_pll(codec);
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200785 alc_auto_init_amp(codec, spec->init_amp);
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +0200786
Takashi Iwai08c189f2012-12-19 15:22:24 +0100787 snd_hda_gen_init(codec);
Takashi Iwai3bd7b642012-12-18 14:57:09 +0100788
Takashi Iwai1727a772013-01-10 09:52:52 +0100789 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_INIT);
Takashi Iwai58701122011-01-13 15:41:45 +0100790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 return 0;
792}
793
Takashi Iwaia4e09aa2009-12-27 11:22:24 +0100794static inline void alc_shutup(struct hda_codec *codec)
795{
Takashi Iwai1c716152011-04-07 10:37:16 +0200796 struct alc_spec *spec = codec->spec;
797
798 if (spec && spec->shutup)
799 spec->shutup(codec);
Takashi Iwaia4e09aa2009-12-27 11:22:24 +0100800 snd_hda_shutup_pins(codec);
801}
802
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803static void alc_free(struct hda_codec *codec)
804{
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200805 struct alc_spec *spec = codec->spec;
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200806
Takashi Iwaif12ab1e2007-04-12 15:51:47 +0200807 if (!spec)
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200808 return;
809
Takashi Iwai08c189f2012-12-19 15:22:24 +0100810 snd_hda_gen_spec_free(&spec->gen);
Kusanagi Kouichi680cd532009-02-05 00:00:58 +0900811 snd_hda_detach_beep_device(codec);
Takashi Iwai08c189f2012-12-19 15:22:24 +0100812 kfree(spec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813}
814
Takashi Iwai83012a72012-08-24 18:38:08 +0200815#ifdef CONFIG_PM
Daniel T Chenc97259d2009-12-27 18:52:08 -0500816static void alc_power_eapd(struct hda_codec *codec)
817{
Takashi Iwai691f1fc2011-04-07 10:31:43 +0200818 alc_auto_setup_eapd(codec, false);
Daniel T Chenc97259d2009-12-27 18:52:08 -0500819}
820
Takashi Iwai68cb2b52012-07-02 15:20:37 +0200821static int alc_suspend(struct hda_codec *codec)
Hector Martinf5de24b2009-12-20 22:51:31 +0100822{
823 struct alc_spec *spec = codec->spec;
Takashi Iwaia4e09aa2009-12-27 11:22:24 +0100824 alc_shutup(codec);
Hector Martinf5de24b2009-12-20 22:51:31 +0100825 if (spec && spec->power_hook)
Daniel T Chenc97259d2009-12-27 18:52:08 -0500826 spec->power_hook(codec);
Hector Martinf5de24b2009-12-20 22:51:31 +0100827 return 0;
828}
829#endif
830
Takashi Iwai2a439522011-07-26 09:52:50 +0200831#ifdef CONFIG_PM
Takashi Iwaie044c392008-10-27 16:56:24 +0100832static int alc_resume(struct hda_codec *codec)
833{
Takashi Iwai1c716152011-04-07 10:37:16 +0200834 msleep(150); /* to avoid pop noise */
Takashi Iwaie044c392008-10-27 16:56:24 +0100835 codec->patch_ops.init(codec);
836 snd_hda_codec_resume_amp(codec);
837 snd_hda_codec_resume_cache(codec);
Takashi Iwai125821a2012-06-22 14:30:29 +0200838 alc_inv_dmic_sync(codec, true);
Takashi Iwai9e5341b2010-09-21 09:57:06 +0200839 hda_call_check_power_status(codec, 0x01);
Takashi Iwaie044c392008-10-27 16:56:24 +0100840 return 0;
841}
Takashi Iwaie044c392008-10-27 16:56:24 +0100842#endif
843
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844/*
845 */
Takashi Iwaia9111322011-05-02 11:30:18 +0200846static const struct hda_codec_ops alc_patch_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 .build_controls = alc_build_controls,
Takashi Iwai08c189f2012-12-19 15:22:24 +0100848 .build_pcms = snd_hda_gen_build_pcms,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 .init = alc_init,
850 .free = alc_free,
David Henningsson29adc4b2012-09-25 11:31:00 +0200851 .unsol_event = snd_hda_jack_unsol_event,
Takashi Iwai2a439522011-07-26 09:52:50 +0200852#ifdef CONFIG_PM
Takashi Iwaie044c392008-10-27 16:56:24 +0100853 .resume = alc_resume,
Hector Martinf5de24b2009-12-20 22:51:31 +0100854 .suspend = alc_suspend,
Takashi Iwaifce52a32013-01-07 12:42:48 +0100855 .check_power_status = snd_hda_gen_check_power_status,
Takashi Iwaicb53c622007-08-10 17:21:45 +0200856#endif
Daniel T Chenc97259d2009-12-27 18:52:08 -0500857 .reboot_notify = alc_shutup,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858};
859
David Henningsson29adc4b2012-09-25 11:31:00 +0200860
Kailang Yangc027ddc2010-03-19 11:33:06 +0100861/* replace the codec chip_name with the given string */
862static int alc_codec_rename(struct hda_codec *codec, const char *name)
863{
864 kfree(codec->chip_name);
865 codec->chip_name = kstrdup(name, GFP_KERNEL);
866 if (!codec->chip_name) {
867 alc_free(codec);
868 return -ENOMEM;
869 }
870 return 0;
871}
872
Takashi Iwai2fa522b2005-05-12 14:51:12 +0200873/*
Takashi Iwaie16fb6d2011-10-17 16:39:09 +0200874 * Rename codecs appropriately from COEF value
875 */
876struct alc_codec_rename_table {
877 unsigned int vendor_id;
878 unsigned short coef_mask;
879 unsigned short coef_bits;
880 const char *name;
881};
882
883static struct alc_codec_rename_table rename_tbl[] = {
884 { 0x10ec0269, 0xfff0, 0x3010, "ALC277" },
885 { 0x10ec0269, 0xf0f0, 0x2010, "ALC259" },
886 { 0x10ec0269, 0xf0f0, 0x3010, "ALC258" },
887 { 0x10ec0269, 0x00f0, 0x0010, "ALC269VB" },
888 { 0x10ec0269, 0xffff, 0xa023, "ALC259" },
889 { 0x10ec0269, 0xffff, 0x6023, "ALC281X" },
890 { 0x10ec0269, 0x00f0, 0x0020, "ALC269VC" },
Kailang Yangadcc70b2012-05-25 08:08:38 +0200891 { 0x10ec0269, 0x00f0, 0x0030, "ALC269VD" },
Takashi Iwaie16fb6d2011-10-17 16:39:09 +0200892 { 0x10ec0887, 0x00f0, 0x0030, "ALC887-VD" },
893 { 0x10ec0888, 0x00f0, 0x0030, "ALC888-VD" },
894 { 0x10ec0888, 0xf0f0, 0x3020, "ALC886" },
895 { 0x10ec0899, 0x2000, 0x2000, "ALC899" },
896 { 0x10ec0892, 0xffff, 0x8020, "ALC661" },
897 { 0x10ec0892, 0xffff, 0x8011, "ALC661" },
898 { 0x10ec0892, 0xffff, 0x4011, "ALC656" },
899 { } /* terminator */
900};
901
902static int alc_codec_rename_from_preset(struct hda_codec *codec)
903{
904 const struct alc_codec_rename_table *p;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +0200905
906 for (p = rename_tbl; p->vendor_id; p++) {
907 if (p->vendor_id != codec->vendor_id)
908 continue;
Takashi Iwai1bb7e432011-10-17 16:50:59 +0200909 if ((alc_get_coef0(codec) & p->coef_mask) == p->coef_bits)
Takashi Iwaie16fb6d2011-10-17 16:39:09 +0200910 return alc_codec_rename(codec, p->name);
911 }
912 return 0;
913}
914
Takashi Iwaie4770622011-07-08 11:11:35 +0200915
916/*
Takashi Iwai1d045db2011-07-07 18:23:21 +0200917 * Digital-beep handlers
918 */
919#ifdef CONFIG_SND_HDA_INPUT_BEEP
920#define set_beep_amp(spec, nid, idx, dir) \
921 ((spec)->beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir))
922
923static const struct snd_pci_quirk beep_white_list[] = {
Duncan Roe71100052012-10-10 14:19:50 +0200924 SND_PCI_QUIRK(0x1043, 0x103c, "ASUS", 1),
Takashi Iwai1d045db2011-07-07 18:23:21 +0200925 SND_PCI_QUIRK(0x1043, 0x829f, "ASUS", 1),
926 SND_PCI_QUIRK(0x1043, 0x83ce, "EeePC", 1),
927 SND_PCI_QUIRK(0x1043, 0x831a, "EeePC", 1),
928 SND_PCI_QUIRK(0x1043, 0x834a, "EeePC", 1),
Takashi Iwai78f8baf2012-03-06 14:02:32 +0100929 SND_PCI_QUIRK(0x1458, 0xa002, "GA-MA790X", 1),
Takashi Iwai1d045db2011-07-07 18:23:21 +0200930 SND_PCI_QUIRK(0x8086, 0xd613, "Intel", 1),
931 {}
932};
933
934static inline int has_cdefine_beep(struct hda_codec *codec)
935{
936 struct alc_spec *spec = codec->spec;
937 const struct snd_pci_quirk *q;
938 q = snd_pci_quirk_lookup(codec->bus->pci, beep_white_list);
939 if (q)
940 return q->value;
941 return spec->cdefine.enable_pcbeep;
942}
943#else
944#define set_beep_amp(spec, nid, idx, dir) /* NOP */
945#define has_cdefine_beep(codec) 0
946#endif
947
948/* parse the BIOS configuration and set up the alc_spec */
949/* return 1 if successful, 0 if the proper config is not found,
950 * or a negative error code
951 */
Takashi Iwai3e6179b2011-07-08 16:55:13 +0200952static int alc_parse_auto_config(struct hda_codec *codec,
953 const hda_nid_t *ignore_nids,
954 const hda_nid_t *ssid_nids)
Takashi Iwai1d045db2011-07-07 18:23:21 +0200955{
956 struct alc_spec *spec = codec->spec;
Takashi Iwai08c189f2012-12-19 15:22:24 +0100957 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
Takashi Iwai1d045db2011-07-07 18:23:21 +0200958 int err;
Takashi Iwai1d045db2011-07-07 18:23:21 +0200959
Takashi Iwai53c334a2011-08-23 18:27:14 +0200960 err = snd_hda_parse_pin_defcfg(codec, cfg, ignore_nids,
961 spec->parse_flags);
Takashi Iwai1d045db2011-07-07 18:23:21 +0200962 if (err < 0)
963 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +0200964
Takashi Iwai3e6179b2011-07-08 16:55:13 +0200965 if (ssid_nids)
966 alc_ssid_check(codec, ssid_nids);
967
Takashi Iwai08c189f2012-12-19 15:22:24 +0100968 err = snd_hda_gen_parse_auto_config(codec, cfg);
969 if (err < 0)
970 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +0200971
Takashi Iwai1d045db2011-07-07 18:23:21 +0200972 return 1;
973}
974
Takashi Iwai3de95172012-05-07 18:03:15 +0200975/* common preparation job for alc_spec */
976static int alc_alloc_spec(struct hda_codec *codec, hda_nid_t mixer_nid)
977{
978 struct alc_spec *spec = kzalloc(sizeof(*spec), GFP_KERNEL);
979 int err;
980
981 if (!spec)
982 return -ENOMEM;
983 codec->spec = spec;
Takashi Iwai08c189f2012-12-19 15:22:24 +0100984 snd_hda_gen_spec_init(&spec->gen);
985 spec->gen.mixer_nid = mixer_nid;
986 spec->gen.own_eapd_ctl = 1;
Takashi Iwai1098b7c2012-12-17 20:03:15 +0100987 codec->single_adc_amp = 1;
Takashi Iwai08c189f2012-12-19 15:22:24 +0100988 /* FIXME: do we need this for all Realtek codec models? */
989 codec->spdif_status_reset = 1;
Takashi Iwai3de95172012-05-07 18:03:15 +0200990
991 err = alc_codec_rename_from_preset(codec);
992 if (err < 0) {
993 kfree(spec);
994 return err;
995 }
996 return 0;
997}
998
Takashi Iwai3e6179b2011-07-08 16:55:13 +0200999static int alc880_parse_auto_config(struct hda_codec *codec)
1000{
1001 static const hda_nid_t alc880_ignore[] = { 0x1d, 0 };
Jesper Juhl7d7eb9e2012-04-12 22:11:25 +02001002 static const hda_nid_t alc880_ssids[] = { 0x15, 0x1b, 0x14, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02001003 return alc_parse_auto_config(codec, alc880_ignore, alc880_ssids);
1004}
1005
Takashi Iwai1d045db2011-07-07 18:23:21 +02001006/*
Takashi Iwaiee3b2962011-11-15 14:26:54 +01001007 * ALC880 fix-ups
1008 */
1009enum {
Takashi Iwai411225a2012-02-20 17:48:19 +01001010 ALC880_FIXUP_GPIO1,
Takashi Iwaiee3b2962011-11-15 14:26:54 +01001011 ALC880_FIXUP_GPIO2,
1012 ALC880_FIXUP_MEDION_RIM,
Takashi Iwaidc6af522012-02-17 16:18:59 +01001013 ALC880_FIXUP_LG,
Takashi Iwaif02aab52012-02-17 16:33:56 +01001014 ALC880_FIXUP_W810,
Takashi Iwai27e917f2012-02-17 17:49:54 +01001015 ALC880_FIXUP_EAPD_COEF,
Takashi Iwaib9368f52012-02-17 17:54:44 +01001016 ALC880_FIXUP_TCL_S700,
Takashi Iwaicf5a2272012-02-20 16:31:07 +01001017 ALC880_FIXUP_VOL_KNOB,
1018 ALC880_FIXUP_FUJITSU,
Takashi Iwaiba533812012-02-20 16:36:52 +01001019 ALC880_FIXUP_F1734,
Takashi Iwai817de922012-02-20 17:20:48 +01001020 ALC880_FIXUP_UNIWILL,
Takashi Iwai967b88c2012-02-20 17:31:02 +01001021 ALC880_FIXUP_UNIWILL_DIG,
Takashi Iwai96e225f2012-02-20 17:41:51 +01001022 ALC880_FIXUP_Z71V,
Takashi Iwai67b6ec32012-02-20 18:20:42 +01001023 ALC880_FIXUP_3ST_BASE,
1024 ALC880_FIXUP_3ST,
1025 ALC880_FIXUP_3ST_DIG,
1026 ALC880_FIXUP_5ST_BASE,
1027 ALC880_FIXUP_5ST,
1028 ALC880_FIXUP_5ST_DIG,
1029 ALC880_FIXUP_6ST_BASE,
1030 ALC880_FIXUP_6ST,
1031 ALC880_FIXUP_6ST_DIG,
Takashi Iwaiee3b2962011-11-15 14:26:54 +01001032};
1033
Takashi Iwaicf5a2272012-02-20 16:31:07 +01001034/* enable the volume-knob widget support on NID 0x21 */
1035static void alc880_fixup_vol_knob(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +01001036 const struct hda_fixup *fix, int action)
Takashi Iwaicf5a2272012-02-20 16:31:07 +01001037{
Takashi Iwai1727a772013-01-10 09:52:52 +01001038 if (action == HDA_FIXUP_ACT_PROBE)
David Henningsson29adc4b2012-09-25 11:31:00 +02001039 snd_hda_jack_detect_enable_callback(codec, 0x21, ALC_DCVOL_EVENT, alc_update_knob_master);
Takashi Iwaicf5a2272012-02-20 16:31:07 +01001040}
1041
Takashi Iwai1727a772013-01-10 09:52:52 +01001042static const struct hda_fixup alc880_fixups[] = {
Takashi Iwai411225a2012-02-20 17:48:19 +01001043 [ALC880_FIXUP_GPIO1] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001044 .type = HDA_FIXUP_VERBS,
Takashi Iwai411225a2012-02-20 17:48:19 +01001045 .v.verbs = alc_gpio1_init_verbs,
1046 },
Takashi Iwaiee3b2962011-11-15 14:26:54 +01001047 [ALC880_FIXUP_GPIO2] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001048 .type = HDA_FIXUP_VERBS,
Takashi Iwaiee3b2962011-11-15 14:26:54 +01001049 .v.verbs = alc_gpio2_init_verbs,
1050 },
1051 [ALC880_FIXUP_MEDION_RIM] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001052 .type = HDA_FIXUP_VERBS,
Takashi Iwaiee3b2962011-11-15 14:26:54 +01001053 .v.verbs = (const struct hda_verb[]) {
1054 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1055 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
1056 { }
1057 },
1058 .chained = true,
1059 .chain_id = ALC880_FIXUP_GPIO2,
1060 },
Takashi Iwaidc6af522012-02-17 16:18:59 +01001061 [ALC880_FIXUP_LG] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001062 .type = HDA_FIXUP_PINS,
1063 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwaidc6af522012-02-17 16:18:59 +01001064 /* disable bogus unused pins */
1065 { 0x16, 0x411111f0 },
1066 { 0x18, 0x411111f0 },
1067 { 0x1a, 0x411111f0 },
1068 { }
1069 }
1070 },
Takashi Iwaif02aab52012-02-17 16:33:56 +01001071 [ALC880_FIXUP_W810] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001072 .type = HDA_FIXUP_PINS,
1073 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwaif02aab52012-02-17 16:33:56 +01001074 /* disable bogus unused pins */
1075 { 0x17, 0x411111f0 },
1076 { }
1077 },
1078 .chained = true,
1079 .chain_id = ALC880_FIXUP_GPIO2,
1080 },
Takashi Iwai27e917f2012-02-17 17:49:54 +01001081 [ALC880_FIXUP_EAPD_COEF] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001082 .type = HDA_FIXUP_VERBS,
Takashi Iwai27e917f2012-02-17 17:49:54 +01001083 .v.verbs = (const struct hda_verb[]) {
1084 /* change to EAPD mode */
1085 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1086 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
1087 {}
1088 },
1089 },
Takashi Iwaib9368f52012-02-17 17:54:44 +01001090 [ALC880_FIXUP_TCL_S700] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001091 .type = HDA_FIXUP_VERBS,
Takashi Iwaib9368f52012-02-17 17:54:44 +01001092 .v.verbs = (const struct hda_verb[]) {
1093 /* change to EAPD mode */
1094 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1095 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
1096 {}
1097 },
1098 .chained = true,
1099 .chain_id = ALC880_FIXUP_GPIO2,
1100 },
Takashi Iwaicf5a2272012-02-20 16:31:07 +01001101 [ALC880_FIXUP_VOL_KNOB] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001102 .type = HDA_FIXUP_FUNC,
Takashi Iwaicf5a2272012-02-20 16:31:07 +01001103 .v.func = alc880_fixup_vol_knob,
1104 },
1105 [ALC880_FIXUP_FUJITSU] = {
1106 /* override all pins as BIOS on old Amilo is broken */
Takashi Iwai1727a772013-01-10 09:52:52 +01001107 .type = HDA_FIXUP_PINS,
1108 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwaicf5a2272012-02-20 16:31:07 +01001109 { 0x14, 0x0121411f }, /* HP */
1110 { 0x15, 0x99030120 }, /* speaker */
1111 { 0x16, 0x99030130 }, /* bass speaker */
1112 { 0x17, 0x411111f0 }, /* N/A */
1113 { 0x18, 0x411111f0 }, /* N/A */
1114 { 0x19, 0x01a19950 }, /* mic-in */
1115 { 0x1a, 0x411111f0 }, /* N/A */
1116 { 0x1b, 0x411111f0 }, /* N/A */
1117 { 0x1c, 0x411111f0 }, /* N/A */
1118 { 0x1d, 0x411111f0 }, /* N/A */
1119 { 0x1e, 0x01454140 }, /* SPDIF out */
1120 { }
1121 },
1122 .chained = true,
1123 .chain_id = ALC880_FIXUP_VOL_KNOB,
1124 },
Takashi Iwaiba533812012-02-20 16:36:52 +01001125 [ALC880_FIXUP_F1734] = {
1126 /* almost compatible with FUJITSU, but no bass and SPDIF */
Takashi Iwai1727a772013-01-10 09:52:52 +01001127 .type = HDA_FIXUP_PINS,
1128 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwaiba533812012-02-20 16:36:52 +01001129 { 0x14, 0x0121411f }, /* HP */
1130 { 0x15, 0x99030120 }, /* speaker */
1131 { 0x16, 0x411111f0 }, /* N/A */
1132 { 0x17, 0x411111f0 }, /* N/A */
1133 { 0x18, 0x411111f0 }, /* N/A */
1134 { 0x19, 0x01a19950 }, /* mic-in */
1135 { 0x1a, 0x411111f0 }, /* N/A */
1136 { 0x1b, 0x411111f0 }, /* N/A */
1137 { 0x1c, 0x411111f0 }, /* N/A */
1138 { 0x1d, 0x411111f0 }, /* N/A */
1139 { 0x1e, 0x411111f0 }, /* N/A */
1140 { }
1141 },
1142 .chained = true,
1143 .chain_id = ALC880_FIXUP_VOL_KNOB,
1144 },
Takashi Iwai817de922012-02-20 17:20:48 +01001145 [ALC880_FIXUP_UNIWILL] = {
1146 /* need to fix HP and speaker pins to be parsed correctly */
Takashi Iwai1727a772013-01-10 09:52:52 +01001147 .type = HDA_FIXUP_PINS,
1148 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai817de922012-02-20 17:20:48 +01001149 { 0x14, 0x0121411f }, /* HP */
1150 { 0x15, 0x99030120 }, /* speaker */
1151 { 0x16, 0x99030130 }, /* bass speaker */
1152 { }
1153 },
1154 },
Takashi Iwai967b88c2012-02-20 17:31:02 +01001155 [ALC880_FIXUP_UNIWILL_DIG] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001156 .type = HDA_FIXUP_PINS,
1157 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai967b88c2012-02-20 17:31:02 +01001158 /* disable bogus unused pins */
1159 { 0x17, 0x411111f0 },
1160 { 0x19, 0x411111f0 },
1161 { 0x1b, 0x411111f0 },
1162 { 0x1f, 0x411111f0 },
1163 { }
1164 }
1165 },
Takashi Iwai96e225f2012-02-20 17:41:51 +01001166 [ALC880_FIXUP_Z71V] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001167 .type = HDA_FIXUP_PINS,
1168 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai96e225f2012-02-20 17:41:51 +01001169 /* set up the whole pins as BIOS is utterly broken */
1170 { 0x14, 0x99030120 }, /* speaker */
1171 { 0x15, 0x0121411f }, /* HP */
1172 { 0x16, 0x411111f0 }, /* N/A */
1173 { 0x17, 0x411111f0 }, /* N/A */
1174 { 0x18, 0x01a19950 }, /* mic-in */
1175 { 0x19, 0x411111f0 }, /* N/A */
1176 { 0x1a, 0x01813031 }, /* line-in */
1177 { 0x1b, 0x411111f0 }, /* N/A */
1178 { 0x1c, 0x411111f0 }, /* N/A */
1179 { 0x1d, 0x411111f0 }, /* N/A */
1180 { 0x1e, 0x0144111e }, /* SPDIF */
1181 { }
1182 }
1183 },
Takashi Iwai67b6ec32012-02-20 18:20:42 +01001184 [ALC880_FIXUP_3ST_BASE] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001185 .type = HDA_FIXUP_PINS,
1186 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai67b6ec32012-02-20 18:20:42 +01001187 { 0x14, 0x01014010 }, /* line-out */
1188 { 0x15, 0x411111f0 }, /* N/A */
1189 { 0x16, 0x411111f0 }, /* N/A */
1190 { 0x17, 0x411111f0 }, /* N/A */
1191 { 0x18, 0x01a19c30 }, /* mic-in */
1192 { 0x19, 0x0121411f }, /* HP */
1193 { 0x1a, 0x01813031 }, /* line-in */
1194 { 0x1b, 0x02a19c40 }, /* front-mic */
1195 { 0x1c, 0x411111f0 }, /* N/A */
1196 { 0x1d, 0x411111f0 }, /* N/A */
1197 /* 0x1e is filled in below */
1198 { 0x1f, 0x411111f0 }, /* N/A */
1199 { }
1200 }
1201 },
1202 [ALC880_FIXUP_3ST] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001203 .type = HDA_FIXUP_PINS,
1204 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai67b6ec32012-02-20 18:20:42 +01001205 { 0x1e, 0x411111f0 }, /* N/A */
1206 { }
1207 },
1208 .chained = true,
1209 .chain_id = ALC880_FIXUP_3ST_BASE,
1210 },
1211 [ALC880_FIXUP_3ST_DIG] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001212 .type = HDA_FIXUP_PINS,
1213 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai67b6ec32012-02-20 18:20:42 +01001214 { 0x1e, 0x0144111e }, /* SPDIF */
1215 { }
1216 },
1217 .chained = true,
1218 .chain_id = ALC880_FIXUP_3ST_BASE,
1219 },
1220 [ALC880_FIXUP_5ST_BASE] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001221 .type = HDA_FIXUP_PINS,
1222 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai67b6ec32012-02-20 18:20:42 +01001223 { 0x14, 0x01014010 }, /* front */
1224 { 0x15, 0x411111f0 }, /* N/A */
1225 { 0x16, 0x01011411 }, /* CLFE */
1226 { 0x17, 0x01016412 }, /* surr */
1227 { 0x18, 0x01a19c30 }, /* mic-in */
1228 { 0x19, 0x0121411f }, /* HP */
1229 { 0x1a, 0x01813031 }, /* line-in */
1230 { 0x1b, 0x02a19c40 }, /* front-mic */
1231 { 0x1c, 0x411111f0 }, /* N/A */
1232 { 0x1d, 0x411111f0 }, /* N/A */
1233 /* 0x1e is filled in below */
1234 { 0x1f, 0x411111f0 }, /* N/A */
1235 { }
1236 }
1237 },
1238 [ALC880_FIXUP_5ST] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001239 .type = HDA_FIXUP_PINS,
1240 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai67b6ec32012-02-20 18:20:42 +01001241 { 0x1e, 0x411111f0 }, /* N/A */
1242 { }
1243 },
1244 .chained = true,
1245 .chain_id = ALC880_FIXUP_5ST_BASE,
1246 },
1247 [ALC880_FIXUP_5ST_DIG] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001248 .type = HDA_FIXUP_PINS,
1249 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai67b6ec32012-02-20 18:20:42 +01001250 { 0x1e, 0x0144111e }, /* SPDIF */
1251 { }
1252 },
1253 .chained = true,
1254 .chain_id = ALC880_FIXUP_5ST_BASE,
1255 },
1256 [ALC880_FIXUP_6ST_BASE] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001257 .type = HDA_FIXUP_PINS,
1258 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai67b6ec32012-02-20 18:20:42 +01001259 { 0x14, 0x01014010 }, /* front */
1260 { 0x15, 0x01016412 }, /* surr */
1261 { 0x16, 0x01011411 }, /* CLFE */
1262 { 0x17, 0x01012414 }, /* side */
1263 { 0x18, 0x01a19c30 }, /* mic-in */
1264 { 0x19, 0x02a19c40 }, /* front-mic */
1265 { 0x1a, 0x01813031 }, /* line-in */
1266 { 0x1b, 0x0121411f }, /* HP */
1267 { 0x1c, 0x411111f0 }, /* N/A */
1268 { 0x1d, 0x411111f0 }, /* N/A */
1269 /* 0x1e is filled in below */
1270 { 0x1f, 0x411111f0 }, /* N/A */
1271 { }
1272 }
1273 },
1274 [ALC880_FIXUP_6ST] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001275 .type = HDA_FIXUP_PINS,
1276 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai67b6ec32012-02-20 18:20:42 +01001277 { 0x1e, 0x411111f0 }, /* N/A */
1278 { }
1279 },
1280 .chained = true,
1281 .chain_id = ALC880_FIXUP_6ST_BASE,
1282 },
1283 [ALC880_FIXUP_6ST_DIG] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001284 .type = HDA_FIXUP_PINS,
1285 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai67b6ec32012-02-20 18:20:42 +01001286 { 0x1e, 0x0144111e }, /* SPDIF */
1287 { }
1288 },
1289 .chained = true,
1290 .chain_id = ALC880_FIXUP_6ST_BASE,
1291 },
Takashi Iwaiee3b2962011-11-15 14:26:54 +01001292};
1293
1294static const struct snd_pci_quirk alc880_fixup_tbl[] = {
Takashi Iwaif02aab52012-02-17 16:33:56 +01001295 SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_FIXUP_W810),
Takashi Iwai96e225f2012-02-20 17:41:51 +01001296 SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_FIXUP_Z71V),
Takashi Iwai29e3fdc2012-02-20 17:56:57 +01001297 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS", ALC880_FIXUP_GPIO1),
1298 SND_PCI_QUIRK(0x1558, 0x5401, "Clevo GPIO2", ALC880_FIXUP_GPIO2),
Takashi Iwai27e917f2012-02-17 17:49:54 +01001299 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo", ALC880_FIXUP_EAPD_COEF),
Takashi Iwai967b88c2012-02-20 17:31:02 +01001300 SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_FIXUP_UNIWILL_DIG),
Takashi Iwaiba533812012-02-20 16:36:52 +01001301 SND_PCI_QUIRK(0x1584, 0x9054, "Uniwill", ALC880_FIXUP_F1734),
Takashi Iwai817de922012-02-20 17:20:48 +01001302 SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_FIXUP_UNIWILL),
Takashi Iwai7833c7e2012-02-20 17:11:38 +01001303 SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_FIXUP_VOL_KNOB),
Takashi Iwaif02aab52012-02-17 16:33:56 +01001304 SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_FIXUP_W810),
Takashi Iwaiee3b2962011-11-15 14:26:54 +01001305 SND_PCI_QUIRK(0x161f, 0x205d, "Medion Rim 2150", ALC880_FIXUP_MEDION_RIM),
Takashi Iwaiba533812012-02-20 16:36:52 +01001306 SND_PCI_QUIRK(0x1734, 0x107c, "FSC F1734", ALC880_FIXUP_F1734),
Takashi Iwaicf5a2272012-02-20 16:31:07 +01001307 SND_PCI_QUIRK(0x1734, 0x1094, "FSC Amilo M1451G", ALC880_FIXUP_FUJITSU),
Takashi Iwaiba533812012-02-20 16:36:52 +01001308 SND_PCI_QUIRK(0x1734, 0x10ac, "FSC AMILO Xi 1526", ALC880_FIXUP_F1734),
Takashi Iwaicf5a2272012-02-20 16:31:07 +01001309 SND_PCI_QUIRK(0x1734, 0x10b0, "FSC Amilo Pi1556", ALC880_FIXUP_FUJITSU),
Takashi Iwaidc6af522012-02-17 16:18:59 +01001310 SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_FIXUP_LG),
1311 SND_PCI_QUIRK(0x1854, 0x005f, "LG P1 Express", ALC880_FIXUP_LG),
1312 SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_FIXUP_LG),
Takashi Iwaib9368f52012-02-17 17:54:44 +01001313 SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_FIXUP_TCL_S700),
Takashi Iwai67b6ec32012-02-20 18:20:42 +01001314
1315 /* Below is the copied entries from alc880_quirks.c.
1316 * It's not quite sure whether BIOS sets the correct pin-config table
1317 * on these machines, thus they are kept to be compatible with
1318 * the old static quirks. Once when it's confirmed to work without
1319 * these overrides, it'd be better to remove.
1320 */
1321 SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_FIXUP_5ST_DIG),
1322 SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_FIXUP_6ST),
1323 SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_FIXUP_3ST_DIG),
1324 SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_FIXUP_6ST_DIG),
1325 SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_FIXUP_6ST_DIG),
1326 SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_FIXUP_6ST_DIG),
1327 SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_FIXUP_3ST_DIG),
1328 SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_FIXUP_3ST),
1329 SND_PCI_QUIRK(0x1039, 0x1234, NULL, ALC880_FIXUP_6ST_DIG),
1330 SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_FIXUP_3ST),
1331 SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_FIXUP_3ST),
1332 SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_FIXUP_5ST),
1333 SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_FIXUP_5ST),
1334 SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_FIXUP_5ST),
1335 SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_FIXUP_6ST_DIG),
1336 SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_FIXUP_6ST_DIG),
1337 SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_FIXUP_6ST_DIG),
1338 SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_FIXUP_6ST_DIG),
1339 SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_FIXUP_5ST_DIG),
1340 SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_FIXUP_5ST_DIG),
1341 SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_FIXUP_5ST_DIG),
1342 SND_PCI_QUIRK(0x2668, 0x8086, NULL, ALC880_FIXUP_6ST_DIG), /* broken BIOS */
1343 SND_PCI_QUIRK(0x8086, 0x2668, NULL, ALC880_FIXUP_6ST_DIG),
1344 SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1345 SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1346 SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1347 SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1348 SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1349 SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1350 SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1351 SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1352 SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1353 SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1354 /* default Intel */
1355 SND_PCI_QUIRK_VENDOR(0x8086, "Intel mobo", ALC880_FIXUP_3ST),
1356 SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_FIXUP_5ST_DIG),
1357 SND_PCI_QUIRK(0xe803, 0x1019, NULL, ALC880_FIXUP_6ST_DIG),
1358 {}
1359};
1360
Takashi Iwai1727a772013-01-10 09:52:52 +01001361static const struct hda_model_fixup alc880_fixup_models[] = {
Takashi Iwai67b6ec32012-02-20 18:20:42 +01001362 {.id = ALC880_FIXUP_3ST, .name = "3stack"},
1363 {.id = ALC880_FIXUP_3ST_DIG, .name = "3stack-digout"},
1364 {.id = ALC880_FIXUP_5ST, .name = "5stack"},
1365 {.id = ALC880_FIXUP_5ST_DIG, .name = "5stack-digout"},
1366 {.id = ALC880_FIXUP_6ST, .name = "6stack"},
1367 {.id = ALC880_FIXUP_6ST_DIG, .name = "6stack-digout"},
Takashi Iwaiee3b2962011-11-15 14:26:54 +01001368 {}
1369};
1370
1371
1372/*
Takashi Iwai1d045db2011-07-07 18:23:21 +02001373 * OK, here we have finally the patch for ALC880
1374 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02001375static int patch_alc880(struct hda_codec *codec)
1376{
1377 struct alc_spec *spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02001378 int err;
1379
Takashi Iwai3de95172012-05-07 18:03:15 +02001380 err = alc_alloc_spec(codec, 0x0b);
1381 if (err < 0)
1382 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02001383
Takashi Iwai3de95172012-05-07 18:03:15 +02001384 spec = codec->spec;
Takashi Iwai08c189f2012-12-19 15:22:24 +01001385 spec->gen.need_dac_fix = 1;
Takashi Iwai1d045db2011-07-07 18:23:21 +02001386
Takashi Iwai1727a772013-01-10 09:52:52 +01001387 snd_hda_pick_fixup(codec, alc880_fixup_models, alc880_fixup_tbl,
Takashi Iwai67b6ec32012-02-20 18:20:42 +01001388 alc880_fixups);
Takashi Iwai1727a772013-01-10 09:52:52 +01001389 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02001390
Takashi Iwai67b6ec32012-02-20 18:20:42 +01001391 /* automatic parse from the BIOS config */
1392 err = alc880_parse_auto_config(codec);
1393 if (err < 0)
1394 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02001395
Takashi Iwai08c189f2012-12-19 15:22:24 +01001396 if (!spec->gen.no_analog) {
Takashi Iwai3e6179b2011-07-08 16:55:13 +02001397 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02001398 if (err < 0)
1399 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02001400 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
1401 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02001402
Takashi Iwai1d045db2011-07-07 18:23:21 +02001403 codec->patch_ops = alc_patch_ops;
David Henningsson29adc4b2012-09-25 11:31:00 +02001404 codec->patch_ops.unsol_event = alc880_unsol_event;
1405
Takashi Iwai1d045db2011-07-07 18:23:21 +02001406
Takashi Iwai1727a772013-01-10 09:52:52 +01001407 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
Takashi Iwai589876e2012-02-20 15:47:55 +01001408
Takashi Iwai1d045db2011-07-07 18:23:21 +02001409 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02001410
1411 error:
1412 alc_free(codec);
1413 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02001414}
1415
1416
1417/*
1418 * ALC260 support
1419 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02001420static int alc260_parse_auto_config(struct hda_codec *codec)
1421{
Takashi Iwai1d045db2011-07-07 18:23:21 +02001422 static const hda_nid_t alc260_ignore[] = { 0x17, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02001423 static const hda_nid_t alc260_ssids[] = { 0x10, 0x15, 0x0f, 0 };
1424 return alc_parse_auto_config(codec, alc260_ignore, alc260_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02001425}
1426
Takashi Iwai1d045db2011-07-07 18:23:21 +02001427/*
1428 * Pin config fixes
1429 */
1430enum {
Takashi Iwaica8f0422012-02-16 11:51:19 +01001431 ALC260_FIXUP_HP_DC5750,
1432 ALC260_FIXUP_HP_PIN_0F,
1433 ALC260_FIXUP_COEF,
Takashi Iwai15317ab2012-02-16 12:02:53 +01001434 ALC260_FIXUP_GPIO1,
Takashi Iwai20f7d922012-02-16 12:35:16 +01001435 ALC260_FIXUP_GPIO1_TOGGLE,
1436 ALC260_FIXUP_REPLACER,
Takashi Iwai0a1c4fa2012-02-16 12:42:30 +01001437 ALC260_FIXUP_HP_B1900,
Takashi Iwai118cb4a2012-04-19 07:33:27 +02001438 ALC260_FIXUP_KN1,
Takashi Iwai39aedee2013-01-10 17:10:40 +01001439 ALC260_FIXUP_FSC_S7020,
Takashi Iwai1d045db2011-07-07 18:23:21 +02001440};
1441
Takashi Iwai20f7d922012-02-16 12:35:16 +01001442static void alc260_gpio1_automute(struct hda_codec *codec)
1443{
1444 struct alc_spec *spec = codec->spec;
1445 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
Takashi Iwai08c189f2012-12-19 15:22:24 +01001446 spec->gen.hp_jack_present);
Takashi Iwai20f7d922012-02-16 12:35:16 +01001447}
1448
1449static void alc260_fixup_gpio1_toggle(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +01001450 const struct hda_fixup *fix, int action)
Takashi Iwai20f7d922012-02-16 12:35:16 +01001451{
1452 struct alc_spec *spec = codec->spec;
Takashi Iwai1727a772013-01-10 09:52:52 +01001453 if (action == HDA_FIXUP_ACT_PROBE) {
Takashi Iwai20f7d922012-02-16 12:35:16 +01001454 /* although the machine has only one output pin, we need to
1455 * toggle GPIO1 according to the jack state
1456 */
Takashi Iwai08c189f2012-12-19 15:22:24 +01001457 spec->gen.automute_hook = alc260_gpio1_automute;
1458 spec->gen.detect_hp = 1;
1459 spec->gen.automute_speaker = 1;
1460 spec->gen.autocfg.hp_pins[0] = 0x0f; /* copy it for automute */
1461 snd_hda_jack_detect_enable_callback(codec, 0x0f, HDA_GEN_HP_EVENT,
1462 snd_hda_gen_hp_automute);
Takashi Iwaic9ce6b22012-12-18 18:12:44 +01001463 snd_hda_add_verbs(codec, alc_gpio1_init_verbs);
Takashi Iwai20f7d922012-02-16 12:35:16 +01001464 }
1465}
1466
Takashi Iwai118cb4a2012-04-19 07:33:27 +02001467static void alc260_fixup_kn1(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +01001468 const struct hda_fixup *fix, int action)
Takashi Iwai118cb4a2012-04-19 07:33:27 +02001469{
1470 struct alc_spec *spec = codec->spec;
Takashi Iwai1727a772013-01-10 09:52:52 +01001471 static const struct hda_pintbl pincfgs[] = {
Takashi Iwai118cb4a2012-04-19 07:33:27 +02001472 { 0x0f, 0x02214000 }, /* HP/speaker */
1473 { 0x12, 0x90a60160 }, /* int mic */
1474 { 0x13, 0x02a19000 }, /* ext mic */
1475 { 0x18, 0x01446000 }, /* SPDIF out */
1476 /* disable bogus I/O pins */
1477 { 0x10, 0x411111f0 },
1478 { 0x11, 0x411111f0 },
1479 { 0x14, 0x411111f0 },
1480 { 0x15, 0x411111f0 },
1481 { 0x16, 0x411111f0 },
1482 { 0x17, 0x411111f0 },
1483 { 0x19, 0x411111f0 },
1484 { }
1485 };
1486
1487 switch (action) {
Takashi Iwai1727a772013-01-10 09:52:52 +01001488 case HDA_FIXUP_ACT_PRE_PROBE:
1489 snd_hda_apply_pincfgs(codec, pincfgs);
Takashi Iwai118cb4a2012-04-19 07:33:27 +02001490 break;
Takashi Iwai1727a772013-01-10 09:52:52 +01001491 case HDA_FIXUP_ACT_PROBE:
Takashi Iwai118cb4a2012-04-19 07:33:27 +02001492 spec->init_amp = ALC_INIT_NONE;
1493 break;
1494 }
1495}
1496
Takashi Iwai39aedee2013-01-10 17:10:40 +01001497static void alc260_fixup_fsc_s7020(struct hda_codec *codec,
1498 const struct hda_fixup *fix, int action)
1499{
1500 struct alc_spec *spec = codec->spec;
1501
1502 if (action == HDA_FIXUP_ACT_PRE_PROBE)
1503 spec->gen.add_out_jack_modes = 1;
1504 else if (action == HDA_FIXUP_ACT_PROBE)
1505 snd_hda_set_pin_ctl_cache(codec, 0x10, PIN_HP);
1506}
1507
Takashi Iwai1727a772013-01-10 09:52:52 +01001508static const struct hda_fixup alc260_fixups[] = {
Takashi Iwaica8f0422012-02-16 11:51:19 +01001509 [ALC260_FIXUP_HP_DC5750] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001510 .type = HDA_FIXUP_PINS,
1511 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02001512 { 0x11, 0x90130110 }, /* speaker */
1513 { }
1514 }
1515 },
Takashi Iwaica8f0422012-02-16 11:51:19 +01001516 [ALC260_FIXUP_HP_PIN_0F] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001517 .type = HDA_FIXUP_PINS,
1518 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwaica8f0422012-02-16 11:51:19 +01001519 { 0x0f, 0x01214000 }, /* HP */
1520 { }
1521 }
1522 },
1523 [ALC260_FIXUP_COEF] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001524 .type = HDA_FIXUP_VERBS,
Takashi Iwaica8f0422012-02-16 11:51:19 +01001525 .v.verbs = (const struct hda_verb[]) {
1526 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1527 { 0x20, AC_VERB_SET_PROC_COEF, 0x3040 },
1528 { }
1529 },
1530 .chained = true,
1531 .chain_id = ALC260_FIXUP_HP_PIN_0F,
1532 },
Takashi Iwai15317ab2012-02-16 12:02:53 +01001533 [ALC260_FIXUP_GPIO1] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001534 .type = HDA_FIXUP_VERBS,
Takashi Iwai15317ab2012-02-16 12:02:53 +01001535 .v.verbs = alc_gpio1_init_verbs,
1536 },
Takashi Iwai20f7d922012-02-16 12:35:16 +01001537 [ALC260_FIXUP_GPIO1_TOGGLE] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001538 .type = HDA_FIXUP_FUNC,
Takashi Iwai20f7d922012-02-16 12:35:16 +01001539 .v.func = alc260_fixup_gpio1_toggle,
1540 .chained = true,
1541 .chain_id = ALC260_FIXUP_HP_PIN_0F,
1542 },
1543 [ALC260_FIXUP_REPLACER] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001544 .type = HDA_FIXUP_VERBS,
Takashi Iwai20f7d922012-02-16 12:35:16 +01001545 .v.verbs = (const struct hda_verb[]) {
1546 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1547 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
1548 { }
1549 },
1550 .chained = true,
1551 .chain_id = ALC260_FIXUP_GPIO1_TOGGLE,
1552 },
Takashi Iwai0a1c4fa2012-02-16 12:42:30 +01001553 [ALC260_FIXUP_HP_B1900] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001554 .type = HDA_FIXUP_FUNC,
Takashi Iwai0a1c4fa2012-02-16 12:42:30 +01001555 .v.func = alc260_fixup_gpio1_toggle,
1556 .chained = true,
1557 .chain_id = ALC260_FIXUP_COEF,
Takashi Iwai118cb4a2012-04-19 07:33:27 +02001558 },
1559 [ALC260_FIXUP_KN1] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001560 .type = HDA_FIXUP_FUNC,
Takashi Iwai118cb4a2012-04-19 07:33:27 +02001561 .v.func = alc260_fixup_kn1,
1562 },
Takashi Iwai39aedee2013-01-10 17:10:40 +01001563 [ALC260_FIXUP_FSC_S7020] = {
1564 .type = HDA_FIXUP_FUNC,
1565 .v.func = alc260_fixup_fsc_s7020,
1566 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02001567};
1568
1569static const struct snd_pci_quirk alc260_fixup_tbl[] = {
Takashi Iwai15317ab2012-02-16 12:02:53 +01001570 SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_FIXUP_GPIO1),
Takashi Iwaica8f0422012-02-16 11:51:19 +01001571 SND_PCI_QUIRK(0x1025, 0x007f, "Acer Aspire 9500", ALC260_FIXUP_COEF),
Takashi Iwai15317ab2012-02-16 12:02:53 +01001572 SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_FIXUP_GPIO1),
Takashi Iwaica8f0422012-02-16 11:51:19 +01001573 SND_PCI_QUIRK(0x103c, 0x280a, "HP dc5750", ALC260_FIXUP_HP_DC5750),
Takashi Iwai0a1c4fa2012-02-16 12:42:30 +01001574 SND_PCI_QUIRK(0x103c, 0x30ba, "HP Presario B1900", ALC260_FIXUP_HP_B1900),
Takashi Iwai39aedee2013-01-10 17:10:40 +01001575 SND_PCI_QUIRK(0x10cf, 0x1326, "FSC LifeBook S7020", ALC260_FIXUP_FSC_S7020),
Takashi Iwaib1f58082012-02-16 12:45:03 +01001576 SND_PCI_QUIRK(0x1509, 0x4540, "Favorit 100XS", ALC260_FIXUP_GPIO1),
Takashi Iwai118cb4a2012-04-19 07:33:27 +02001577 SND_PCI_QUIRK(0x152d, 0x0729, "Quanta KN1", ALC260_FIXUP_KN1),
Takashi Iwai20f7d922012-02-16 12:35:16 +01001578 SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_FIXUP_REPLACER),
Takashi Iwaica8f0422012-02-16 11:51:19 +01001579 SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_FIXUP_COEF),
Takashi Iwai1d045db2011-07-07 18:23:21 +02001580 {}
1581};
1582
1583/*
1584 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02001585static int patch_alc260(struct hda_codec *codec)
1586{
1587 struct alc_spec *spec;
Takashi Iwaic3c2c9e2012-02-16 12:59:55 +01001588 int err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02001589
Takashi Iwai3de95172012-05-07 18:03:15 +02001590 err = alc_alloc_spec(codec, 0x07);
1591 if (err < 0)
1592 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02001593
Takashi Iwai3de95172012-05-07 18:03:15 +02001594 spec = codec->spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02001595
Takashi Iwai1727a772013-01-10 09:52:52 +01001596 snd_hda_pick_fixup(codec, NULL, alc260_fixup_tbl, alc260_fixups);
1597 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02001598
Takashi Iwaic3c2c9e2012-02-16 12:59:55 +01001599 /* automatic parse from the BIOS config */
1600 err = alc260_parse_auto_config(codec);
1601 if (err < 0)
1602 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02001603
Takashi Iwai08c189f2012-12-19 15:22:24 +01001604 if (!spec->gen.no_analog) {
Takashi Iwai3e6179b2011-07-08 16:55:13 +02001605 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02001606 if (err < 0)
1607 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02001608 set_beep_amp(spec, 0x07, 0x05, HDA_INPUT);
1609 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02001610
Takashi Iwai1d045db2011-07-07 18:23:21 +02001611 codec->patch_ops = alc_patch_ops;
Takashi Iwai1d045db2011-07-07 18:23:21 +02001612 spec->shutup = alc_eapd_shutup;
Takashi Iwai1d045db2011-07-07 18:23:21 +02001613
Takashi Iwai1727a772013-01-10 09:52:52 +01001614 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
Takashi Iwai589876e2012-02-20 15:47:55 +01001615
Takashi Iwai1d045db2011-07-07 18:23:21 +02001616 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02001617
1618 error:
1619 alc_free(codec);
1620 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02001621}
1622
1623
1624/*
1625 * ALC882/883/885/888/889 support
1626 *
1627 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
1628 * configuration. Each pin widget can choose any input DACs and a mixer.
1629 * Each ADC is connected from a mixer of all inputs. This makes possible
1630 * 6-channel independent captures.
1631 *
1632 * In addition, an independent DAC for the multi-playback (not used in this
1633 * driver yet).
1634 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02001635
1636/*
1637 * Pin config fixes
1638 */
1639enum {
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01001640 ALC882_FIXUP_ABIT_AW9D_MAX,
1641 ALC882_FIXUP_LENOVO_Y530,
1642 ALC882_FIXUP_PB_M5210,
1643 ALC882_FIXUP_ACER_ASPIRE_7736,
1644 ALC882_FIXUP_ASUS_W90V,
Marton Balint8f239212012-03-05 21:33:23 +01001645 ALC889_FIXUP_CD,
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01001646 ALC889_FIXUP_VAIO_TT,
Takashi Iwai0e7cc2e2011-11-09 12:42:48 +01001647 ALC888_FIXUP_EEE1601,
Takashi Iwai177943a2011-11-09 12:55:18 +01001648 ALC882_FIXUP_EAPD,
Takashi Iwai7a6069b2011-11-09 15:22:01 +01001649 ALC883_FIXUP_EAPD,
Takashi Iwai8812c4f2011-11-09 17:39:15 +01001650 ALC883_FIXUP_ACER_EAPD,
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01001651 ALC882_FIXUP_GPIO1,
1652 ALC882_FIXUP_GPIO2,
Takashi Iwaieb844d52011-11-09 18:03:07 +01001653 ALC882_FIXUP_GPIO3,
Takashi Iwai68ef0562011-11-09 18:24:44 +01001654 ALC889_FIXUP_COEF,
1655 ALC882_FIXUP_ASUS_W2JC,
Takashi Iwaic3e837b2011-11-10 16:01:47 +01001656 ALC882_FIXUP_ACER_ASPIRE_4930G,
1657 ALC882_FIXUP_ACER_ASPIRE_8930G,
1658 ALC882_FIXUP_ASPIRE_8930G_VERBS,
Takashi Iwai56710872011-11-14 17:42:11 +01001659 ALC885_FIXUP_MACPRO_GPIO,
Takashi Iwai02a237b2012-02-13 15:25:07 +01001660 ALC889_FIXUP_DAC_ROUTE,
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01001661 ALC889_FIXUP_MBP_VREF,
1662 ALC889_FIXUP_IMAC91_VREF,
Takashi Iwai6e72aa52012-06-25 10:52:25 +02001663 ALC882_FIXUP_INV_DMIC,
Takashi Iwaie427c232012-07-29 10:04:08 +02001664 ALC882_FIXUP_NO_PRIMARY_HP,
Takashi Iwai1d045db2011-07-07 18:23:21 +02001665};
1666
Takashi Iwai68ef0562011-11-09 18:24:44 +01001667static void alc889_fixup_coef(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +01001668 const struct hda_fixup *fix, int action)
Takashi Iwai68ef0562011-11-09 18:24:44 +01001669{
Takashi Iwai1727a772013-01-10 09:52:52 +01001670 if (action != HDA_FIXUP_ACT_INIT)
Takashi Iwai68ef0562011-11-09 18:24:44 +01001671 return;
1672 alc889_coef_init(codec);
1673}
1674
Takashi Iwai56710872011-11-14 17:42:11 +01001675/* toggle speaker-output according to the hp-jack state */
1676static void alc882_gpio_mute(struct hda_codec *codec, int pin, int muted)
1677{
1678 unsigned int gpiostate, gpiomask, gpiodir;
1679
1680 gpiostate = snd_hda_codec_read(codec, codec->afg, 0,
1681 AC_VERB_GET_GPIO_DATA, 0);
1682
1683 if (!muted)
1684 gpiostate |= (1 << pin);
1685 else
1686 gpiostate &= ~(1 << pin);
1687
1688 gpiomask = snd_hda_codec_read(codec, codec->afg, 0,
1689 AC_VERB_GET_GPIO_MASK, 0);
1690 gpiomask |= (1 << pin);
1691
1692 gpiodir = snd_hda_codec_read(codec, codec->afg, 0,
1693 AC_VERB_GET_GPIO_DIRECTION, 0);
1694 gpiodir |= (1 << pin);
1695
1696
1697 snd_hda_codec_write(codec, codec->afg, 0,
1698 AC_VERB_SET_GPIO_MASK, gpiomask);
1699 snd_hda_codec_write(codec, codec->afg, 0,
1700 AC_VERB_SET_GPIO_DIRECTION, gpiodir);
1701
1702 msleep(1);
1703
1704 snd_hda_codec_write(codec, codec->afg, 0,
1705 AC_VERB_SET_GPIO_DATA, gpiostate);
1706}
1707
1708/* set up GPIO at initialization */
1709static void alc885_fixup_macpro_gpio(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +01001710 const struct hda_fixup *fix, int action)
Takashi Iwai56710872011-11-14 17:42:11 +01001711{
Takashi Iwai1727a772013-01-10 09:52:52 +01001712 if (action != HDA_FIXUP_ACT_INIT)
Takashi Iwai56710872011-11-14 17:42:11 +01001713 return;
1714 alc882_gpio_mute(codec, 0, 0);
1715 alc882_gpio_mute(codec, 1, 0);
1716}
1717
Takashi Iwai02a237b2012-02-13 15:25:07 +01001718/* Fix the connection of some pins for ALC889:
1719 * At least, Acer Aspire 5935 shows the connections to DAC3/4 don't
1720 * work correctly (bko#42740)
1721 */
1722static void alc889_fixup_dac_route(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +01001723 const struct hda_fixup *fix, int action)
Takashi Iwai02a237b2012-02-13 15:25:07 +01001724{
Takashi Iwai1727a772013-01-10 09:52:52 +01001725 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
Takashi Iwaief8d60f2012-02-17 10:12:38 +01001726 /* fake the connections during parsing the tree */
Takashi Iwai02a237b2012-02-13 15:25:07 +01001727 hda_nid_t conn1[2] = { 0x0c, 0x0d };
1728 hda_nid_t conn2[2] = { 0x0e, 0x0f };
1729 snd_hda_override_conn_list(codec, 0x14, 2, conn1);
1730 snd_hda_override_conn_list(codec, 0x15, 2, conn1);
1731 snd_hda_override_conn_list(codec, 0x18, 2, conn2);
1732 snd_hda_override_conn_list(codec, 0x1a, 2, conn2);
Takashi Iwai1727a772013-01-10 09:52:52 +01001733 } else if (action == HDA_FIXUP_ACT_PROBE) {
Takashi Iwaief8d60f2012-02-17 10:12:38 +01001734 /* restore the connections */
1735 hda_nid_t conn[5] = { 0x0c, 0x0d, 0x0e, 0x0f, 0x26 };
1736 snd_hda_override_conn_list(codec, 0x14, 5, conn);
1737 snd_hda_override_conn_list(codec, 0x15, 5, conn);
1738 snd_hda_override_conn_list(codec, 0x18, 5, conn);
1739 snd_hda_override_conn_list(codec, 0x1a, 5, conn);
Takashi Iwai02a237b2012-02-13 15:25:07 +01001740 }
1741}
1742
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01001743/* Set VREF on HP pin */
1744static void alc889_fixup_mbp_vref(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +01001745 const struct hda_fixup *fix, int action)
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01001746{
1747 struct alc_spec *spec = codec->spec;
1748 static hda_nid_t nids[2] = { 0x14, 0x15 };
1749 int i;
1750
Takashi Iwai1727a772013-01-10 09:52:52 +01001751 if (action != HDA_FIXUP_ACT_INIT)
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01001752 return;
1753 for (i = 0; i < ARRAY_SIZE(nids); i++) {
1754 unsigned int val = snd_hda_codec_get_pincfg(codec, nids[i]);
1755 if (get_defcfg_device(val) != AC_JACK_HP_OUT)
1756 continue;
Takashi Iwaid3f02d62013-01-10 10:12:22 +01001757 val = snd_hda_codec_get_pin_target(codec, nids[i]);
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01001758 val |= AC_PINCTL_VREF_80;
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02001759 snd_hda_set_pin_ctl(codec, nids[i], val);
Takashi Iwai08c189f2012-12-19 15:22:24 +01001760 spec->gen.keep_vref_in_automute = 1;
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01001761 break;
1762 }
1763}
1764
1765/* Set VREF on speaker pins on imac91 */
1766static void alc889_fixup_imac91_vref(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +01001767 const struct hda_fixup *fix, int action)
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01001768{
1769 struct alc_spec *spec = codec->spec;
1770 static hda_nid_t nids[2] = { 0x18, 0x1a };
1771 int i;
1772
Takashi Iwai1727a772013-01-10 09:52:52 +01001773 if (action != HDA_FIXUP_ACT_INIT)
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01001774 return;
1775 for (i = 0; i < ARRAY_SIZE(nids); i++) {
1776 unsigned int val;
Takashi Iwaid3f02d62013-01-10 10:12:22 +01001777 val = snd_hda_codec_get_pin_target(codec, nids[i]);
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01001778 val |= AC_PINCTL_VREF_50;
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02001779 snd_hda_set_pin_ctl(codec, nids[i], val);
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01001780 }
Takashi Iwai08c189f2012-12-19 15:22:24 +01001781 spec->gen.keep_vref_in_automute = 1;
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01001782}
1783
Takashi Iwaie427c232012-07-29 10:04:08 +02001784/* Don't take HP output as primary
1785 * strangely, the speaker output doesn't work on VAIO Z through DAC 0x05
1786 */
1787static void alc882_fixup_no_primary_hp(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +01001788 const struct hda_fixup *fix, int action)
Takashi Iwaie427c232012-07-29 10:04:08 +02001789{
1790 struct alc_spec *spec = codec->spec;
Takashi Iwai1727a772013-01-10 09:52:52 +01001791 if (action == HDA_FIXUP_ACT_PRE_PROBE)
Takashi Iwai08c189f2012-12-19 15:22:24 +01001792 spec->gen.no_primary_hp = 1;
Takashi Iwaie427c232012-07-29 10:04:08 +02001793}
1794
Takashi Iwai1727a772013-01-10 09:52:52 +01001795static const struct hda_fixup alc882_fixups[] = {
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01001796 [ALC882_FIXUP_ABIT_AW9D_MAX] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001797 .type = HDA_FIXUP_PINS,
1798 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02001799 { 0x15, 0x01080104 }, /* side */
1800 { 0x16, 0x01011012 }, /* rear */
1801 { 0x17, 0x01016011 }, /* clfe */
1802 { }
1803 }
1804 },
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01001805 [ALC882_FIXUP_LENOVO_Y530] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001806 .type = HDA_FIXUP_PINS,
1807 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02001808 { 0x15, 0x99130112 }, /* rear int speakers */
1809 { 0x16, 0x99130111 }, /* subwoofer */
1810 { }
1811 }
1812 },
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01001813 [ALC882_FIXUP_PB_M5210] = {
Takashi Iwaifd108212013-01-10 10:18:14 +01001814 .type = HDA_FIXUP_PINCTLS,
1815 .v.pins = (const struct hda_pintbl[]) {
1816 { 0x19, PIN_VREF50 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02001817 {}
1818 }
1819 },
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01001820 [ALC882_FIXUP_ACER_ASPIRE_7736] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001821 .type = HDA_FIXUP_FUNC,
Takashi Iwai23d30f22012-05-07 17:17:32 +02001822 .v.func = alc_fixup_sku_ignore,
Takashi Iwai1d045db2011-07-07 18:23:21 +02001823 },
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01001824 [ALC882_FIXUP_ASUS_W90V] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001825 .type = HDA_FIXUP_PINS,
1826 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai5cdf7452011-10-26 23:04:08 +02001827 { 0x16, 0x99130110 }, /* fix sequence for CLFE */
1828 { }
1829 }
1830 },
Marton Balint8f239212012-03-05 21:33:23 +01001831 [ALC889_FIXUP_CD] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001832 .type = HDA_FIXUP_PINS,
1833 .v.pins = (const struct hda_pintbl[]) {
Marton Balint8f239212012-03-05 21:33:23 +01001834 { 0x1c, 0x993301f0 }, /* CD */
1835 { }
1836 }
1837 },
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01001838 [ALC889_FIXUP_VAIO_TT] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001839 .type = HDA_FIXUP_PINS,
1840 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01001841 { 0x17, 0x90170111 }, /* hidden surround speaker */
1842 { }
1843 }
1844 },
Takashi Iwai0e7cc2e2011-11-09 12:42:48 +01001845 [ALC888_FIXUP_EEE1601] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001846 .type = HDA_FIXUP_VERBS,
Takashi Iwai0e7cc2e2011-11-09 12:42:48 +01001847 .v.verbs = (const struct hda_verb[]) {
1848 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
1849 { 0x20, AC_VERB_SET_PROC_COEF, 0x0838 },
1850 { }
1851 }
Takashi Iwai177943a2011-11-09 12:55:18 +01001852 },
1853 [ALC882_FIXUP_EAPD] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001854 .type = HDA_FIXUP_VERBS,
Takashi Iwai177943a2011-11-09 12:55:18 +01001855 .v.verbs = (const struct hda_verb[]) {
1856 /* change to EAPD mode */
1857 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1858 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
1859 { }
1860 }
1861 },
Takashi Iwai7a6069b2011-11-09 15:22:01 +01001862 [ALC883_FIXUP_EAPD] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001863 .type = HDA_FIXUP_VERBS,
Takashi Iwai7a6069b2011-11-09 15:22:01 +01001864 .v.verbs = (const struct hda_verb[]) {
1865 /* change to EAPD mode */
1866 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1867 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
1868 { }
1869 }
1870 },
Takashi Iwai8812c4f2011-11-09 17:39:15 +01001871 [ALC883_FIXUP_ACER_EAPD] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001872 .type = HDA_FIXUP_VERBS,
Takashi Iwai8812c4f2011-11-09 17:39:15 +01001873 .v.verbs = (const struct hda_verb[]) {
1874 /* eanable EAPD on Acer laptops */
1875 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1876 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
1877 { }
1878 }
1879 },
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01001880 [ALC882_FIXUP_GPIO1] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001881 .type = HDA_FIXUP_VERBS,
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01001882 .v.verbs = alc_gpio1_init_verbs,
1883 },
1884 [ALC882_FIXUP_GPIO2] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001885 .type = HDA_FIXUP_VERBS,
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01001886 .v.verbs = alc_gpio2_init_verbs,
1887 },
Takashi Iwaieb844d52011-11-09 18:03:07 +01001888 [ALC882_FIXUP_GPIO3] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001889 .type = HDA_FIXUP_VERBS,
Takashi Iwaieb844d52011-11-09 18:03:07 +01001890 .v.verbs = alc_gpio3_init_verbs,
1891 },
Takashi Iwai68ef0562011-11-09 18:24:44 +01001892 [ALC882_FIXUP_ASUS_W2JC] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001893 .type = HDA_FIXUP_VERBS,
Takashi Iwai68ef0562011-11-09 18:24:44 +01001894 .v.verbs = alc_gpio1_init_verbs,
1895 .chained = true,
1896 .chain_id = ALC882_FIXUP_EAPD,
1897 },
1898 [ALC889_FIXUP_COEF] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001899 .type = HDA_FIXUP_FUNC,
Takashi Iwai68ef0562011-11-09 18:24:44 +01001900 .v.func = alc889_fixup_coef,
1901 },
Takashi Iwaic3e837b2011-11-10 16:01:47 +01001902 [ALC882_FIXUP_ACER_ASPIRE_4930G] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001903 .type = HDA_FIXUP_PINS,
1904 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwaic3e837b2011-11-10 16:01:47 +01001905 { 0x16, 0x99130111 }, /* CLFE speaker */
1906 { 0x17, 0x99130112 }, /* surround speaker */
1907 { }
Takashi Iwai038d4fe2012-04-11 17:18:12 +02001908 },
1909 .chained = true,
1910 .chain_id = ALC882_FIXUP_GPIO1,
Takashi Iwaic3e837b2011-11-10 16:01:47 +01001911 },
1912 [ALC882_FIXUP_ACER_ASPIRE_8930G] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001913 .type = HDA_FIXUP_PINS,
1914 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwaic3e837b2011-11-10 16:01:47 +01001915 { 0x16, 0x99130111 }, /* CLFE speaker */
1916 { 0x1b, 0x99130112 }, /* surround speaker */
1917 { }
1918 },
1919 .chained = true,
1920 .chain_id = ALC882_FIXUP_ASPIRE_8930G_VERBS,
1921 },
1922 [ALC882_FIXUP_ASPIRE_8930G_VERBS] = {
1923 /* additional init verbs for Acer Aspire 8930G */
Takashi Iwai1727a772013-01-10 09:52:52 +01001924 .type = HDA_FIXUP_VERBS,
Takashi Iwaic3e837b2011-11-10 16:01:47 +01001925 .v.verbs = (const struct hda_verb[]) {
1926 /* Enable all DACs */
1927 /* DAC DISABLE/MUTE 1? */
1928 /* setting bits 1-5 disables DAC nids 0x02-0x06
1929 * apparently. Init=0x38 */
1930 { 0x20, AC_VERB_SET_COEF_INDEX, 0x03 },
1931 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
1932 /* DAC DISABLE/MUTE 2? */
1933 /* some bit here disables the other DACs.
1934 * Init=0x4900 */
1935 { 0x20, AC_VERB_SET_COEF_INDEX, 0x08 },
1936 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
1937 /* DMIC fix
1938 * This laptop has a stereo digital microphone.
1939 * The mics are only 1cm apart which makes the stereo
1940 * useless. However, either the mic or the ALC889
1941 * makes the signal become a difference/sum signal
1942 * instead of standard stereo, which is annoying.
1943 * So instead we flip this bit which makes the
1944 * codec replicate the sum signal to both channels,
1945 * turning it into a normal mono mic.
1946 */
1947 /* DMIC_CONTROL? Init value = 0x0001 */
1948 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
1949 { 0x20, AC_VERB_SET_PROC_COEF, 0x0003 },
1950 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1951 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
1952 { }
Takashi Iwai038d4fe2012-04-11 17:18:12 +02001953 },
1954 .chained = true,
1955 .chain_id = ALC882_FIXUP_GPIO1,
Takashi Iwaic3e837b2011-11-10 16:01:47 +01001956 },
Takashi Iwai56710872011-11-14 17:42:11 +01001957 [ALC885_FIXUP_MACPRO_GPIO] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001958 .type = HDA_FIXUP_FUNC,
Takashi Iwai56710872011-11-14 17:42:11 +01001959 .v.func = alc885_fixup_macpro_gpio,
1960 },
Takashi Iwai02a237b2012-02-13 15:25:07 +01001961 [ALC889_FIXUP_DAC_ROUTE] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001962 .type = HDA_FIXUP_FUNC,
Takashi Iwai02a237b2012-02-13 15:25:07 +01001963 .v.func = alc889_fixup_dac_route,
1964 },
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01001965 [ALC889_FIXUP_MBP_VREF] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001966 .type = HDA_FIXUP_FUNC,
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01001967 .v.func = alc889_fixup_mbp_vref,
1968 .chained = true,
1969 .chain_id = ALC882_FIXUP_GPIO1,
1970 },
1971 [ALC889_FIXUP_IMAC91_VREF] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001972 .type = HDA_FIXUP_FUNC,
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01001973 .v.func = alc889_fixup_imac91_vref,
1974 .chained = true,
1975 .chain_id = ALC882_FIXUP_GPIO1,
1976 },
Takashi Iwai6e72aa52012-06-25 10:52:25 +02001977 [ALC882_FIXUP_INV_DMIC] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001978 .type = HDA_FIXUP_FUNC,
Takashi Iwai6e72aa52012-06-25 10:52:25 +02001979 .v.func = alc_fixup_inv_dmic_0x12,
1980 },
Takashi Iwaie427c232012-07-29 10:04:08 +02001981 [ALC882_FIXUP_NO_PRIMARY_HP] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001982 .type = HDA_FIXUP_FUNC,
Takashi Iwaie427c232012-07-29 10:04:08 +02001983 .v.func = alc882_fixup_no_primary_hp,
1984 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02001985};
1986
1987static const struct snd_pci_quirk alc882_fixup_tbl[] = {
Takashi Iwai8812c4f2011-11-09 17:39:15 +01001988 SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_FIXUP_ACER_EAPD),
1989 SND_PCI_QUIRK(0x1025, 0x0090, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
1990 SND_PCI_QUIRK(0x1025, 0x010a, "Acer Ferrari 5000", ALC883_FIXUP_ACER_EAPD),
1991 SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
1992 SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_FIXUP_ACER_EAPD),
1993 SND_PCI_QUIRK(0x1025, 0x0121, "Acer Aspire 5920G", ALC883_FIXUP_ACER_EAPD),
Takashi Iwaic3e837b2011-11-10 16:01:47 +01001994 SND_PCI_QUIRK(0x1025, 0x013e, "Acer Aspire 4930G",
1995 ALC882_FIXUP_ACER_ASPIRE_4930G),
1996 SND_PCI_QUIRK(0x1025, 0x013f, "Acer Aspire 5930G",
1997 ALC882_FIXUP_ACER_ASPIRE_4930G),
1998 SND_PCI_QUIRK(0x1025, 0x0145, "Acer Aspire 8930G",
1999 ALC882_FIXUP_ACER_ASPIRE_8930G),
2000 SND_PCI_QUIRK(0x1025, 0x0146, "Acer Aspire 6935G",
2001 ALC882_FIXUP_ACER_ASPIRE_8930G),
2002 SND_PCI_QUIRK(0x1025, 0x015e, "Acer Aspire 6930G",
2003 ALC882_FIXUP_ACER_ASPIRE_4930G),
2004 SND_PCI_QUIRK(0x1025, 0x0166, "Acer Aspire 6530G",
2005 ALC882_FIXUP_ACER_ASPIRE_4930G),
2006 SND_PCI_QUIRK(0x1025, 0x0142, "Acer Aspire 7730G",
2007 ALC882_FIXUP_ACER_ASPIRE_4930G),
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01002008 SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", ALC882_FIXUP_PB_M5210),
Takashi Iwaif5c53d82012-05-07 10:07:33 +02002009 SND_PCI_QUIRK(0x1025, 0x021e, "Acer Aspire 5739G",
2010 ALC882_FIXUP_ACER_ASPIRE_4930G),
Takashi Iwai02a237b2012-02-13 15:25:07 +01002011 SND_PCI_QUIRK(0x1025, 0x0259, "Acer Aspire 5935", ALC889_FIXUP_DAC_ROUTE),
Takashi Iwaife97da12012-04-12 08:00:19 +02002012 SND_PCI_QUIRK(0x1025, 0x026b, "Acer Aspire 8940G", ALC882_FIXUP_ACER_ASPIRE_8930G),
Takashi Iwaiac9b1cd2011-11-09 17:45:55 +01002013 SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", ALC882_FIXUP_ACER_ASPIRE_7736),
Takashi Iwai177943a2011-11-09 12:55:18 +01002014 SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_FIXUP_EAPD),
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01002015 SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", ALC882_FIXUP_ASUS_W90V),
Takashi Iwai68ef0562011-11-09 18:24:44 +01002016 SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_FIXUP_ASUS_W2JC),
Takashi Iwai0e7cc2e2011-11-09 12:42:48 +01002017 SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_FIXUP_EEE1601),
Takashi Iwaiac9b1cd2011-11-09 17:45:55 +01002018 SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT),
Takashi Iwaie427c232012-07-29 10:04:08 +02002019 SND_PCI_QUIRK(0x104d, 0x905a, "Sony Vaio Z", ALC882_FIXUP_NO_PRIMARY_HP),
Takashi Iwai56710872011-11-14 17:42:11 +01002020
2021 /* All Apple entries are in codec SSIDs */
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01002022 SND_PCI_QUIRK(0x106b, 0x00a0, "MacBookPro 3,1", ALC889_FIXUP_MBP_VREF),
2023 SND_PCI_QUIRK(0x106b, 0x00a1, "Macbook", ALC889_FIXUP_MBP_VREF),
2024 SND_PCI_QUIRK(0x106b, 0x00a4, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
Takashi Iwai56710872011-11-14 17:42:11 +01002025 SND_PCI_QUIRK(0x106b, 0x0c00, "Mac Pro", ALC885_FIXUP_MACPRO_GPIO),
2026 SND_PCI_QUIRK(0x106b, 0x1000, "iMac 24", ALC885_FIXUP_MACPRO_GPIO),
2027 SND_PCI_QUIRK(0x106b, 0x2800, "AppleTV", ALC885_FIXUP_MACPRO_GPIO),
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01002028 SND_PCI_QUIRK(0x106b, 0x2c00, "MacbookPro rev3", ALC889_FIXUP_MBP_VREF),
2029 SND_PCI_QUIRK(0x106b, 0x3000, "iMac", ALC889_FIXUP_MBP_VREF),
Takashi Iwai56710872011-11-14 17:42:11 +01002030 SND_PCI_QUIRK(0x106b, 0x3200, "iMac 7,1 Aluminum", ALC882_FIXUP_EAPD),
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01002031 SND_PCI_QUIRK(0x106b, 0x3400, "MacBookAir 1,1", ALC889_FIXUP_MBP_VREF),
2032 SND_PCI_QUIRK(0x106b, 0x3500, "MacBookAir 2,1", ALC889_FIXUP_MBP_VREF),
2033 SND_PCI_QUIRK(0x106b, 0x3600, "Macbook 3,1", ALC889_FIXUP_MBP_VREF),
2034 SND_PCI_QUIRK(0x106b, 0x3800, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
Takashi Iwai56710872011-11-14 17:42:11 +01002035 SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_FIXUP_MACPRO_GPIO),
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01002036 SND_PCI_QUIRK(0x106b, 0x3f00, "Macbook 5,1", ALC889_FIXUP_IMAC91_VREF),
2037 SND_PCI_QUIRK(0x106b, 0x4000, "MacbookPro 5,1", ALC889_FIXUP_IMAC91_VREF),
2038 SND_PCI_QUIRK(0x106b, 0x4100, "Macmini 3,1", ALC889_FIXUP_IMAC91_VREF),
Josh Boyer29ebe402012-04-12 13:55:36 -04002039 SND_PCI_QUIRK(0x106b, 0x4200, "Mac Pro 5,1", ALC885_FIXUP_MACPRO_GPIO),
Takashi Iwai05193632012-11-12 10:07:36 +01002040 SND_PCI_QUIRK(0x106b, 0x4300, "iMac 9,1", ALC889_FIXUP_IMAC91_VREF),
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01002041 SND_PCI_QUIRK(0x106b, 0x4600, "MacbookPro 5,2", ALC889_FIXUP_IMAC91_VREF),
2042 SND_PCI_QUIRK(0x106b, 0x4900, "iMac 9,1 Aluminum", ALC889_FIXUP_IMAC91_VREF),
2043 SND_PCI_QUIRK(0x106b, 0x4a00, "Macbook 5,2", ALC889_FIXUP_IMAC91_VREF),
Takashi Iwai56710872011-11-14 17:42:11 +01002044
Takashi Iwai7a6069b2011-11-09 15:22:01 +01002045 SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC882_FIXUP_EAPD),
Takashi Iwaibca40132012-05-07 11:13:14 +02002046 SND_PCI_QUIRK(0x1462, 0x7350, "MSI-7350", ALC889_FIXUP_CD),
Takashi Iwaieb844d52011-11-09 18:03:07 +01002047 SND_PCI_QUIRK_VENDOR(0x1462, "MSI", ALC882_FIXUP_GPIO3),
Marton Balint8f239212012-03-05 21:33:23 +01002048 SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte EP45-DS3", ALC889_FIXUP_CD),
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01002049 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", ALC882_FIXUP_ABIT_AW9D_MAX),
Takashi Iwai7a6069b2011-11-09 15:22:01 +01002050 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC882_FIXUP_EAPD),
2051 SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_FIXUP_EAPD),
Takashi Iwaiac9b1cd2011-11-09 17:45:55 +01002052 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530),
Takashi Iwai68ef0562011-11-09 18:24:44 +01002053 SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC889_FIXUP_COEF),
Takashi Iwai1d045db2011-07-07 18:23:21 +02002054 {}
2055};
2056
Takashi Iwai1727a772013-01-10 09:52:52 +01002057static const struct hda_model_fixup alc882_fixup_models[] = {
Takashi Iwai912093b2012-04-11 14:03:41 +02002058 {.id = ALC882_FIXUP_ACER_ASPIRE_4930G, .name = "acer-aspire-4930g"},
2059 {.id = ALC882_FIXUP_ACER_ASPIRE_8930G, .name = "acer-aspire-8930g"},
2060 {.id = ALC883_FIXUP_ACER_EAPD, .name = "acer-aspire"},
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002061 {.id = ALC882_FIXUP_INV_DMIC, .name = "inv-dmic"},
Takashi Iwaie427c232012-07-29 10:04:08 +02002062 {.id = ALC882_FIXUP_NO_PRIMARY_HP, .name = "no-primary-hp"},
Takashi Iwai912093b2012-04-11 14:03:41 +02002063 {}
2064};
2065
Takashi Iwai1d045db2011-07-07 18:23:21 +02002066/*
2067 * BIOS auto configuration
2068 */
2069/* almost identical with ALC880 parser... */
2070static int alc882_parse_auto_config(struct hda_codec *codec)
2071{
Takashi Iwai1d045db2011-07-07 18:23:21 +02002072 static const hda_nid_t alc882_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02002073 static const hda_nid_t alc882_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2074 return alc_parse_auto_config(codec, alc882_ignore, alc882_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02002075}
2076
Takashi Iwai1d045db2011-07-07 18:23:21 +02002077/*
2078 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02002079static int patch_alc882(struct hda_codec *codec)
2080{
2081 struct alc_spec *spec;
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01002082 int err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002083
Takashi Iwai3de95172012-05-07 18:03:15 +02002084 err = alc_alloc_spec(codec, 0x0b);
2085 if (err < 0)
2086 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002087
Takashi Iwai3de95172012-05-07 18:03:15 +02002088 spec = codec->spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002089
2090 switch (codec->vendor_id) {
2091 case 0x10ec0882:
2092 case 0x10ec0885:
2093 break;
2094 default:
2095 /* ALC883 and variants */
2096 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2097 break;
2098 }
2099
Takashi Iwai1727a772013-01-10 09:52:52 +01002100 snd_hda_pick_fixup(codec, alc882_fixup_models, alc882_fixup_tbl,
Takashi Iwai912093b2012-04-11 14:03:41 +02002101 alc882_fixups);
Takashi Iwai1727a772013-01-10 09:52:52 +01002102 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02002103
2104 alc_auto_parse_customize_define(codec);
2105
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01002106 /* automatic parse from the BIOS config */
2107 err = alc882_parse_auto_config(codec);
2108 if (err < 0)
2109 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002110
Takashi Iwai08c189f2012-12-19 15:22:24 +01002111 if (!spec->gen.no_analog && has_cdefine_beep(codec)) {
Takashi Iwai3e6179b2011-07-08 16:55:13 +02002112 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002113 if (err < 0)
2114 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002115 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02002116 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02002117
Takashi Iwai1d045db2011-07-07 18:23:21 +02002118 codec->patch_ops = alc_patch_ops;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002119
Takashi Iwai1727a772013-01-10 09:52:52 +01002120 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
Takashi Iwai589876e2012-02-20 15:47:55 +01002121
Takashi Iwai1d045db2011-07-07 18:23:21 +02002122 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002123
2124 error:
2125 alc_free(codec);
2126 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002127}
2128
2129
2130/*
2131 * ALC262 support
2132 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02002133static int alc262_parse_auto_config(struct hda_codec *codec)
2134{
Takashi Iwai1d045db2011-07-07 18:23:21 +02002135 static const hda_nid_t alc262_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02002136 static const hda_nid_t alc262_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2137 return alc_parse_auto_config(codec, alc262_ignore, alc262_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02002138}
2139
2140/*
2141 * Pin config fixes
2142 */
2143enum {
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01002144 ALC262_FIXUP_FSC_H270,
2145 ALC262_FIXUP_HP_Z200,
2146 ALC262_FIXUP_TYAN,
Takashi Iwaic4701502011-11-07 14:20:07 +01002147 ALC262_FIXUP_LENOVO_3000,
Takashi Iwaib42590b2011-11-07 14:41:01 +01002148 ALC262_FIXUP_BENQ,
2149 ALC262_FIXUP_BENQ_T31,
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002150 ALC262_FIXUP_INV_DMIC,
Takashi Iwai1d045db2011-07-07 18:23:21 +02002151};
2152
Takashi Iwai1727a772013-01-10 09:52:52 +01002153static const struct hda_fixup alc262_fixups[] = {
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01002154 [ALC262_FIXUP_FSC_H270] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002155 .type = HDA_FIXUP_PINS,
2156 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02002157 { 0x14, 0x99130110 }, /* speaker */
2158 { 0x15, 0x0221142f }, /* front HP */
2159 { 0x1b, 0x0121141f }, /* rear HP */
2160 { }
2161 }
2162 },
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01002163 [ALC262_FIXUP_HP_Z200] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002164 .type = HDA_FIXUP_PINS,
2165 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02002166 { 0x16, 0x99130120 }, /* internal speaker */
2167 { }
2168 }
2169 },
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01002170 [ALC262_FIXUP_TYAN] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002171 .type = HDA_FIXUP_PINS,
2172 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01002173 { 0x14, 0x1993e1f0 }, /* int AUX */
2174 { }
2175 }
2176 },
Takashi Iwaic4701502011-11-07 14:20:07 +01002177 [ALC262_FIXUP_LENOVO_3000] = {
Takashi Iwaifd108212013-01-10 10:18:14 +01002178 .type = HDA_FIXUP_PINCTLS,
2179 .v.pins = (const struct hda_pintbl[]) {
2180 { 0x19, PIN_VREF50 },
Takashi Iwaib42590b2011-11-07 14:41:01 +01002181 {}
2182 },
2183 .chained = true,
2184 .chain_id = ALC262_FIXUP_BENQ,
2185 },
2186 [ALC262_FIXUP_BENQ] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002187 .type = HDA_FIXUP_VERBS,
Takashi Iwaib42590b2011-11-07 14:41:01 +01002188 .v.verbs = (const struct hda_verb[]) {
Takashi Iwaic4701502011-11-07 14:20:07 +01002189 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2190 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
2191 {}
2192 }
2193 },
Takashi Iwaib42590b2011-11-07 14:41:01 +01002194 [ALC262_FIXUP_BENQ_T31] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002195 .type = HDA_FIXUP_VERBS,
Takashi Iwaib42590b2011-11-07 14:41:01 +01002196 .v.verbs = (const struct hda_verb[]) {
2197 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2198 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2199 {}
2200 }
2201 },
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002202 [ALC262_FIXUP_INV_DMIC] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002203 .type = HDA_FIXUP_FUNC,
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002204 .v.func = alc_fixup_inv_dmic_0x12,
2205 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02002206};
2207
2208static const struct snd_pci_quirk alc262_fixup_tbl[] = {
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01002209 SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", ALC262_FIXUP_HP_Z200),
Takashi Iwai3dcd3be2011-11-07 14:59:40 +01002210 SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu", ALC262_FIXUP_BENQ),
2211 SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FIXUP_BENQ),
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01002212 SND_PCI_QUIRK(0x10f1, 0x2915, "Tyan Thunder n6650W", ALC262_FIXUP_TYAN),
2213 SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", ALC262_FIXUP_FSC_H270),
Takashi Iwaic4701502011-11-07 14:20:07 +01002214 SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000", ALC262_FIXUP_LENOVO_3000),
Takashi Iwaib42590b2011-11-07 14:41:01 +01002215 SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_FIXUP_BENQ),
2216 SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_FIXUP_BENQ_T31),
Takashi Iwai1d045db2011-07-07 18:23:21 +02002217 {}
2218};
2219
Takashi Iwai1727a772013-01-10 09:52:52 +01002220static const struct hda_model_fixup alc262_fixup_models[] = {
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002221 {.id = ALC262_FIXUP_INV_DMIC, .name = "inv-dmic"},
2222 {}
2223};
Takashi Iwai1d045db2011-07-07 18:23:21 +02002224
Takashi Iwai1d045db2011-07-07 18:23:21 +02002225/*
2226 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02002227static int patch_alc262(struct hda_codec *codec)
2228{
2229 struct alc_spec *spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002230 int err;
2231
Takashi Iwai3de95172012-05-07 18:03:15 +02002232 err = alc_alloc_spec(codec, 0x0b);
2233 if (err < 0)
2234 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002235
Takashi Iwai3de95172012-05-07 18:03:15 +02002236 spec = codec->spec;
Takashi Iwai08c189f2012-12-19 15:22:24 +01002237 spec->gen.shared_mic_vref_pin = 0x18;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002238
2239#if 0
2240 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
2241 * under-run
2242 */
2243 {
2244 int tmp;
2245 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
2246 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
2247 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
2248 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PROC_COEF, tmp | 0x80);
2249 }
2250#endif
Takashi Iwai1d045db2011-07-07 18:23:21 +02002251 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2252
Takashi Iwai1727a772013-01-10 09:52:52 +01002253 snd_hda_pick_fixup(codec, alc262_fixup_models, alc262_fixup_tbl,
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002254 alc262_fixups);
Takashi Iwai1727a772013-01-10 09:52:52 +01002255 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02002256
Takashi Iwaiaf741c12012-05-07 18:09:48 +02002257 alc_auto_parse_customize_define(codec);
2258
Takashi Iwai42399f72011-11-07 17:18:44 +01002259 /* automatic parse from the BIOS config */
2260 err = alc262_parse_auto_config(codec);
2261 if (err < 0)
2262 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02002263
Takashi Iwai08c189f2012-12-19 15:22:24 +01002264 if (!spec->gen.no_analog && has_cdefine_beep(codec)) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02002265 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002266 if (err < 0)
2267 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002268 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02002269 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02002270
Takashi Iwai1d045db2011-07-07 18:23:21 +02002271 codec->patch_ops = alc_patch_ops;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002272 spec->shutup = alc_eapd_shutup;
2273
Takashi Iwai1727a772013-01-10 09:52:52 +01002274 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
Takashi Iwai589876e2012-02-20 15:47:55 +01002275
Takashi Iwai1d045db2011-07-07 18:23:21 +02002276 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002277
2278 error:
2279 alc_free(codec);
2280 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002281}
2282
2283/*
2284 * ALC268
2285 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02002286/* bind Beep switches of both NID 0x0f and 0x10 */
2287static const struct hda_bind_ctls alc268_bind_beep_sw = {
2288 .ops = &snd_hda_bind_sw,
2289 .values = {
2290 HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT),
2291 HDA_COMPOSE_AMP_VAL(0x10, 3, 1, HDA_INPUT),
2292 0
2293 },
2294};
2295
2296static const struct snd_kcontrol_new alc268_beep_mixer[] = {
2297 HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT),
2298 HDA_BIND_SW("Beep Playback Switch", &alc268_bind_beep_sw),
2299 { }
2300};
2301
2302/* set PCBEEP vol = 0, mute connections */
2303static const struct hda_verb alc268_beep_init_verbs[] = {
2304 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2305 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2306 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2307 { }
2308};
2309
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002310enum {
2311 ALC268_FIXUP_INV_DMIC,
Takashi Iwaicb766402012-10-20 10:55:21 +02002312 ALC268_FIXUP_HP_EAPD,
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002313};
2314
Takashi Iwai1727a772013-01-10 09:52:52 +01002315static const struct hda_fixup alc268_fixups[] = {
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002316 [ALC268_FIXUP_INV_DMIC] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002317 .type = HDA_FIXUP_FUNC,
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002318 .v.func = alc_fixup_inv_dmic_0x12,
2319 },
Takashi Iwaicb766402012-10-20 10:55:21 +02002320 [ALC268_FIXUP_HP_EAPD] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002321 .type = HDA_FIXUP_VERBS,
Takashi Iwaicb766402012-10-20 10:55:21 +02002322 .v.verbs = (const struct hda_verb[]) {
2323 {0x15, AC_VERB_SET_EAPD_BTLENABLE, 0},
2324 {}
2325 }
2326 },
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002327};
2328
Takashi Iwai1727a772013-01-10 09:52:52 +01002329static const struct hda_model_fixup alc268_fixup_models[] = {
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002330 {.id = ALC268_FIXUP_INV_DMIC, .name = "inv-dmic"},
Takashi Iwaicb766402012-10-20 10:55:21 +02002331 {.id = ALC268_FIXUP_HP_EAPD, .name = "hp-eapd"},
2332 {}
2333};
2334
2335static const struct snd_pci_quirk alc268_fixup_tbl[] = {
2336 /* below is codec SSID since multiple Toshiba laptops have the
2337 * same PCI SSID 1179:ff00
2338 */
2339 SND_PCI_QUIRK(0x1179, 0xff06, "Toshiba P200", ALC268_FIXUP_HP_EAPD),
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002340 {}
2341};
2342
Takashi Iwai1d045db2011-07-07 18:23:21 +02002343/*
2344 * BIOS auto configuration
2345 */
2346static int alc268_parse_auto_config(struct hda_codec *codec)
2347{
Takashi Iwai3e6179b2011-07-08 16:55:13 +02002348 static const hda_nid_t alc268_ssids[] = { 0x15, 0x1b, 0x14, 0 };
Takashi Iwai1d045db2011-07-07 18:23:21 +02002349 struct alc_spec *spec = codec->spec;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02002350 int err = alc_parse_auto_config(codec, NULL, alc268_ssids);
2351 if (err > 0) {
Takashi Iwai08c189f2012-12-19 15:22:24 +01002352 if (!spec->gen.no_analog &&
2353 spec->gen.autocfg.speaker_pins[0] != 0x1d) {
Takashi Iwai3e6179b2011-07-08 16:55:13 +02002354 add_mixer(spec, alc268_beep_mixer);
Takashi Iwaic9ce6b22012-12-18 18:12:44 +01002355 snd_hda_add_verbs(codec, alc268_beep_init_verbs);
Takashi Iwai1d045db2011-07-07 18:23:21 +02002356 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02002357 }
Takashi Iwai3e6179b2011-07-08 16:55:13 +02002358 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002359}
2360
Takashi Iwai1d045db2011-07-07 18:23:21 +02002361/*
2362 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02002363static int patch_alc268(struct hda_codec *codec)
2364{
2365 struct alc_spec *spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002366 int i, has_beep, err;
2367
Takashi Iwai1d045db2011-07-07 18:23:21 +02002368 /* ALC268 has no aa-loopback mixer */
Takashi Iwai3de95172012-05-07 18:03:15 +02002369 err = alc_alloc_spec(codec, 0);
2370 if (err < 0)
2371 return err;
2372
2373 spec = codec->spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002374
Takashi Iwai1727a772013-01-10 09:52:52 +01002375 snd_hda_pick_fixup(codec, alc268_fixup_models, alc268_fixup_tbl, alc268_fixups);
2376 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002377
Takashi Iwai6ebb8052011-08-16 15:15:40 +02002378 /* automatic parse from the BIOS config */
2379 err = alc268_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002380 if (err < 0)
2381 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002382
Takashi Iwai1d045db2011-07-07 18:23:21 +02002383 has_beep = 0;
2384 for (i = 0; i < spec->num_mixers; i++) {
2385 if (spec->mixers[i] == alc268_beep_mixer) {
2386 has_beep = 1;
2387 break;
2388 }
2389 }
2390
2391 if (has_beep) {
2392 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002393 if (err < 0)
2394 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002395 if (!query_amp_caps(codec, 0x1d, HDA_INPUT))
2396 /* override the amp caps for beep generator */
2397 snd_hda_override_amp_caps(codec, 0x1d, HDA_INPUT,
2398 (0x0c << AC_AMPCAP_OFFSET_SHIFT) |
2399 (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT) |
2400 (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT) |
2401 (0 << AC_AMPCAP_MUTE_SHIFT));
2402 }
2403
Takashi Iwai1d045db2011-07-07 18:23:21 +02002404 codec->patch_ops = alc_patch_ops;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002405 spec->shutup = alc_eapd_shutup;
2406
Takashi Iwai1727a772013-01-10 09:52:52 +01002407 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002408
Takashi Iwai1d045db2011-07-07 18:23:21 +02002409 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002410
2411 error:
2412 alc_free(codec);
2413 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002414}
2415
2416/*
2417 * ALC269
2418 */
Takashi Iwai08c189f2012-12-19 15:22:24 +01002419
2420static int playback_pcm_open(struct hda_pcm_stream *hinfo,
2421 struct hda_codec *codec,
2422 struct snd_pcm_substream *substream)
2423{
2424 struct hda_gen_spec *spec = codec->spec;
2425 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
2426 hinfo);
2427}
2428
2429static int playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2430 struct hda_codec *codec,
2431 unsigned int stream_tag,
2432 unsigned int format,
2433 struct snd_pcm_substream *substream)
2434{
2435 struct hda_gen_spec *spec = codec->spec;
2436 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
2437 stream_tag, format, substream);
2438}
2439
2440static int playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2441 struct hda_codec *codec,
2442 struct snd_pcm_substream *substream)
2443{
2444 struct hda_gen_spec *spec = codec->spec;
2445 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
2446}
2447
Takashi Iwai1d045db2011-07-07 18:23:21 +02002448static const struct hda_pcm_stream alc269_44k_pcm_analog_playback = {
2449 .substreams = 1,
2450 .channels_min = 2,
2451 .channels_max = 8,
2452 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
2453 /* NID is set in alc_build_pcms */
2454 .ops = {
Takashi Iwai08c189f2012-12-19 15:22:24 +01002455 .open = playback_pcm_open,
2456 .prepare = playback_pcm_prepare,
2457 .cleanup = playback_pcm_cleanup
Takashi Iwai1d045db2011-07-07 18:23:21 +02002458 },
2459};
2460
2461static const struct hda_pcm_stream alc269_44k_pcm_analog_capture = {
2462 .substreams = 1,
2463 .channels_min = 2,
2464 .channels_max = 2,
2465 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
2466 /* NID is set in alc_build_pcms */
2467};
2468
Takashi Iwai1d045db2011-07-07 18:23:21 +02002469/* different alc269-variants */
2470enum {
2471 ALC269_TYPE_ALC269VA,
2472 ALC269_TYPE_ALC269VB,
2473 ALC269_TYPE_ALC269VC,
Kailang Yangadcc70b2012-05-25 08:08:38 +02002474 ALC269_TYPE_ALC269VD,
Kailang Yang065380f2013-01-10 10:25:48 +01002475 ALC269_TYPE_ALC280,
2476 ALC269_TYPE_ALC282,
2477 ALC269_TYPE_ALC284,
Takashi Iwai1d045db2011-07-07 18:23:21 +02002478};
2479
2480/*
2481 * BIOS auto configuration
2482 */
2483static int alc269_parse_auto_config(struct hda_codec *codec)
2484{
Takashi Iwai1d045db2011-07-07 18:23:21 +02002485 static const hda_nid_t alc269_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02002486 static const hda_nid_t alc269_ssids[] = { 0, 0x1b, 0x14, 0x21 };
2487 static const hda_nid_t alc269va_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2488 struct alc_spec *spec = codec->spec;
Kailang Yangadcc70b2012-05-25 08:08:38 +02002489 const hda_nid_t *ssids;
2490
2491 switch (spec->codec_variant) {
2492 case ALC269_TYPE_ALC269VA:
2493 case ALC269_TYPE_ALC269VC:
Kailang Yang065380f2013-01-10 10:25:48 +01002494 case ALC269_TYPE_ALC280:
2495 case ALC269_TYPE_ALC284:
Kailang Yangadcc70b2012-05-25 08:08:38 +02002496 ssids = alc269va_ssids;
2497 break;
2498 case ALC269_TYPE_ALC269VB:
2499 case ALC269_TYPE_ALC269VD:
Kailang Yang065380f2013-01-10 10:25:48 +01002500 case ALC269_TYPE_ALC282:
Kailang Yangadcc70b2012-05-25 08:08:38 +02002501 ssids = alc269_ssids;
2502 break;
2503 default:
2504 ssids = alc269_ssids;
2505 break;
2506 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02002507
Takashi Iwai3e6179b2011-07-08 16:55:13 +02002508 return alc_parse_auto_config(codec, alc269_ignore, ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02002509}
2510
Kailang Yang1387e2d2012-11-08 10:23:18 +01002511static void alc269vb_toggle_power_output(struct hda_codec *codec, int power_up)
Takashi Iwai1d045db2011-07-07 18:23:21 +02002512{
2513 int val = alc_read_coef_idx(codec, 0x04);
2514 if (power_up)
2515 val |= 1 << 11;
2516 else
2517 val &= ~(1 << 11);
2518 alc_write_coef_idx(codec, 0x04, val);
2519}
2520
2521static void alc269_shutup(struct hda_codec *codec)
2522{
Kailang Yangadcc70b2012-05-25 08:08:38 +02002523 struct alc_spec *spec = codec->spec;
2524
2525 if (spec->codec_variant != ALC269_TYPE_ALC269VB)
2526 return;
2527
Kailang Yang1387e2d2012-11-08 10:23:18 +01002528 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
2529 alc269vb_toggle_power_output(codec, 0);
2530 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
2531 (alc_get_coef0(codec) & 0x00ff) == 0x018) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02002532 msleep(150);
2533 }
2534}
2535
Takashi Iwai2a439522011-07-26 09:52:50 +02002536#ifdef CONFIG_PM
Takashi Iwai1d045db2011-07-07 18:23:21 +02002537static int alc269_resume(struct hda_codec *codec)
2538{
Kailang Yangadcc70b2012-05-25 08:08:38 +02002539 struct alc_spec *spec = codec->spec;
2540
Kailang Yang1387e2d2012-11-08 10:23:18 +01002541 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
2542 alc269vb_toggle_power_output(codec, 0);
2543 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
Kailang Yangadcc70b2012-05-25 08:08:38 +02002544 (alc_get_coef0(codec) & 0x00ff) == 0x018) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02002545 msleep(150);
2546 }
2547
2548 codec->patch_ops.init(codec);
2549
Kailang Yang1387e2d2012-11-08 10:23:18 +01002550 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
2551 alc269vb_toggle_power_output(codec, 1);
2552 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
Kailang Yangadcc70b2012-05-25 08:08:38 +02002553 (alc_get_coef0(codec) & 0x00ff) == 0x017) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02002554 msleep(200);
2555 }
2556
Takashi Iwai1d045db2011-07-07 18:23:21 +02002557 snd_hda_codec_resume_amp(codec);
2558 snd_hda_codec_resume_cache(codec);
2559 hda_call_check_power_status(codec, 0x01);
2560 return 0;
2561}
Takashi Iwai2a439522011-07-26 09:52:50 +02002562#endif /* CONFIG_PM */
Takashi Iwai1d045db2011-07-07 18:23:21 +02002563
David Henningsson108cc102012-07-20 10:37:25 +02002564static void alc269_fixup_pincfg_no_hp_to_lineout(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +01002565 const struct hda_fixup *fix, int action)
David Henningsson108cc102012-07-20 10:37:25 +02002566{
2567 struct alc_spec *spec = codec->spec;
2568
Takashi Iwai1727a772013-01-10 09:52:52 +01002569 if (action == HDA_FIXUP_ACT_PRE_PROBE)
David Henningsson108cc102012-07-20 10:37:25 +02002570 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
2571}
2572
Takashi Iwai1d045db2011-07-07 18:23:21 +02002573static void alc269_fixup_hweq(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +01002574 const struct hda_fixup *fix, int action)
Takashi Iwai1d045db2011-07-07 18:23:21 +02002575{
2576 int coef;
2577
Takashi Iwai1727a772013-01-10 09:52:52 +01002578 if (action != HDA_FIXUP_ACT_INIT)
Takashi Iwai1d045db2011-07-07 18:23:21 +02002579 return;
2580 coef = alc_read_coef_idx(codec, 0x1e);
2581 alc_write_coef_idx(codec, 0x1e, coef | 0x80);
2582}
2583
2584static void alc271_fixup_dmic(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +01002585 const struct hda_fixup *fix, int action)
Takashi Iwai1d045db2011-07-07 18:23:21 +02002586{
2587 static const struct hda_verb verbs[] = {
2588 {0x20, AC_VERB_SET_COEF_INDEX, 0x0d},
2589 {0x20, AC_VERB_SET_PROC_COEF, 0x4000},
2590 {}
2591 };
2592 unsigned int cfg;
2593
2594 if (strcmp(codec->chip_name, "ALC271X"))
2595 return;
2596 cfg = snd_hda_codec_get_pincfg(codec, 0x12);
2597 if (get_defcfg_connect(cfg) == AC_JACK_PORT_FIXED)
2598 snd_hda_sequence_write(codec, verbs);
2599}
2600
Takashi Iwai017f2a12011-07-09 14:42:25 +02002601static void alc269_fixup_pcm_44k(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +01002602 const struct hda_fixup *fix, int action)
Takashi Iwai017f2a12011-07-09 14:42:25 +02002603{
2604 struct alc_spec *spec = codec->spec;
2605
Takashi Iwai1727a772013-01-10 09:52:52 +01002606 if (action != HDA_FIXUP_ACT_PROBE)
Takashi Iwai017f2a12011-07-09 14:42:25 +02002607 return;
2608
2609 /* Due to a hardware problem on Lenovo Ideadpad, we need to
2610 * fix the sample rate of analog I/O to 44.1kHz
2611 */
Takashi Iwai08c189f2012-12-19 15:22:24 +01002612 spec->gen.stream_analog_playback = &alc269_44k_pcm_analog_playback;
2613 spec->gen.stream_analog_capture = &alc269_44k_pcm_analog_capture;
Takashi Iwai017f2a12011-07-09 14:42:25 +02002614}
2615
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02002616static void alc269_fixup_stereo_dmic(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +01002617 const struct hda_fixup *fix, int action)
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02002618{
2619 int coef;
2620
Takashi Iwai1727a772013-01-10 09:52:52 +01002621 if (action != HDA_FIXUP_ACT_INIT)
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02002622 return;
2623 /* The digital-mic unit sends PDM (differential signal) instead of
2624 * the standard PCM, thus you can't record a valid mono stream as is.
2625 * Below is a workaround specific to ALC269 to control the dmic
2626 * signal source as mono.
2627 */
2628 coef = alc_read_coef_idx(codec, 0x07);
2629 alc_write_coef_idx(codec, 0x07, coef | 0x80);
2630}
2631
Takashi Iwai24519912011-08-16 15:08:49 +02002632static void alc269_quanta_automute(struct hda_codec *codec)
2633{
Takashi Iwai08c189f2012-12-19 15:22:24 +01002634 snd_hda_gen_update_outputs(codec);
Takashi Iwai24519912011-08-16 15:08:49 +02002635
2636 snd_hda_codec_write(codec, 0x20, 0,
2637 AC_VERB_SET_COEF_INDEX, 0x0c);
2638 snd_hda_codec_write(codec, 0x20, 0,
2639 AC_VERB_SET_PROC_COEF, 0x680);
2640
2641 snd_hda_codec_write(codec, 0x20, 0,
2642 AC_VERB_SET_COEF_INDEX, 0x0c);
2643 snd_hda_codec_write(codec, 0x20, 0,
2644 AC_VERB_SET_PROC_COEF, 0x480);
2645}
2646
2647static void alc269_fixup_quanta_mute(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +01002648 const struct hda_fixup *fix, int action)
Takashi Iwai24519912011-08-16 15:08:49 +02002649{
2650 struct alc_spec *spec = codec->spec;
Takashi Iwai1727a772013-01-10 09:52:52 +01002651 if (action != HDA_FIXUP_ACT_PROBE)
Takashi Iwai24519912011-08-16 15:08:49 +02002652 return;
Takashi Iwai08c189f2012-12-19 15:22:24 +01002653 spec->gen.automute_hook = alc269_quanta_automute;
Takashi Iwai24519912011-08-16 15:08:49 +02002654}
2655
David Henningsson6d3cd5d2013-01-07 12:03:47 +01002656/* update mute-LED according to the speaker mute state via mic1 VREF pin */
2657static void alc269_fixup_mic1_mute_hook(void *private_data, int enabled)
2658{
2659 struct hda_codec *codec = private_data;
2660 unsigned int pinval = AC_PINCTL_IN_EN + (enabled ?
2661 AC_PINCTL_VREF_HIZ : AC_PINCTL_VREF_80);
2662 snd_hda_set_pin_ctl_cache(codec, 0x18, pinval);
2663}
2664
2665static void alc269_fixup_mic1_mute(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +01002666 const struct hda_fixup *fix, int action)
David Henningsson6d3cd5d2013-01-07 12:03:47 +01002667{
2668 struct alc_spec *spec = codec->spec;
Takashi Iwai1727a772013-01-10 09:52:52 +01002669 if (action == HDA_FIXUP_ACT_PROBE) {
Takashi Iwai08c189f2012-12-19 15:22:24 +01002670 spec->gen.vmaster_mute.hook = alc269_fixup_mic1_mute_hook;
Takashi Iwaifd25a972012-12-20 14:57:18 +01002671 spec->gen.vmaster_mute_enum = 1;
2672 }
David Henningsson6d3cd5d2013-01-07 12:03:47 +01002673}
2674
Takashi Iwai420b0fe2012-03-12 12:35:27 +01002675/* update mute-LED according to the speaker mute state via mic2 VREF pin */
2676static void alc269_fixup_mic2_mute_hook(void *private_data, int enabled)
2677{
2678 struct hda_codec *codec = private_data;
2679 unsigned int pinval = enabled ? 0x20 : 0x24;
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02002680 snd_hda_set_pin_ctl_cache(codec, 0x19, pinval);
Takashi Iwai420b0fe2012-03-12 12:35:27 +01002681}
2682
2683static void alc269_fixup_mic2_mute(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +01002684 const struct hda_fixup *fix, int action)
Takashi Iwai420b0fe2012-03-12 12:35:27 +01002685{
2686 struct alc_spec *spec = codec->spec;
Takashi Iwai1727a772013-01-10 09:52:52 +01002687 if (action == HDA_FIXUP_ACT_PROBE) {
Takashi Iwai08c189f2012-12-19 15:22:24 +01002688 spec->gen.vmaster_mute.hook = alc269_fixup_mic2_mute_hook;
Takashi Iwaifd25a972012-12-20 14:57:18 +01002689 spec->gen.vmaster_mute_enum = 1;
2690 }
Takashi Iwai420b0fe2012-03-12 12:35:27 +01002691}
2692
Dylan Reid08a978d2012-11-18 22:56:40 -08002693static void alc271_hp_gate_mic_jack(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +01002694 const struct hda_fixup *fix,
Dylan Reid08a978d2012-11-18 22:56:40 -08002695 int action)
2696{
2697 struct alc_spec *spec = codec->spec;
2698
Takashi Iwai08c189f2012-12-19 15:22:24 +01002699 if (snd_BUG_ON(!spec->gen.am_entry[1].pin ||
2700 !spec->gen.autocfg.hp_pins[0]))
Takashi Iwaiab16c6d2012-11-29 09:56:50 +01002701 return;
Takashi Iwai1727a772013-01-10 09:52:52 +01002702 if (action == HDA_FIXUP_ACT_PROBE)
Takashi Iwai08c189f2012-12-19 15:22:24 +01002703 snd_hda_jack_set_gating_jack(codec, spec->gen.am_entry[1].pin,
2704 spec->gen.autocfg.hp_pins[0]);
Dylan Reid08a978d2012-11-18 22:56:40 -08002705}
David Henningsson693b6132012-06-22 19:12:10 +02002706
Takashi Iwai1d045db2011-07-07 18:23:21 +02002707enum {
2708 ALC269_FIXUP_SONY_VAIO,
2709 ALC275_FIXUP_SONY_VAIO_GPIO2,
2710 ALC269_FIXUP_DELL_M101Z,
2711 ALC269_FIXUP_SKU_IGNORE,
2712 ALC269_FIXUP_ASUS_G73JW,
2713 ALC269_FIXUP_LENOVO_EAPD,
2714 ALC275_FIXUP_SONY_HWEQ,
2715 ALC271_FIXUP_DMIC,
Takashi Iwai017f2a12011-07-09 14:42:25 +02002716 ALC269_FIXUP_PCM_44K,
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02002717 ALC269_FIXUP_STEREO_DMIC,
Takashi Iwai24519912011-08-16 15:08:49 +02002718 ALC269_FIXUP_QUANTA_MUTE,
2719 ALC269_FIXUP_LIFEBOOK,
Takashi Iwaia4297b52011-08-23 18:40:12 +02002720 ALC269_FIXUP_AMIC,
2721 ALC269_FIXUP_DMIC,
2722 ALC269VB_FIXUP_AMIC,
2723 ALC269VB_FIXUP_DMIC,
David Henningsson6d3cd5d2013-01-07 12:03:47 +01002724 ALC269_FIXUP_MIC1_MUTE_LED,
Takashi Iwai420b0fe2012-03-12 12:35:27 +01002725 ALC269_FIXUP_MIC2_MUTE_LED,
David Henningsson693b6132012-06-22 19:12:10 +02002726 ALC269_FIXUP_INV_DMIC,
David Henningsson108cc102012-07-20 10:37:25 +02002727 ALC269_FIXUP_LENOVO_DOCK,
2728 ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT,
Dylan Reid08a978d2012-11-18 22:56:40 -08002729 ALC271_FIXUP_AMIC_MIC2,
2730 ALC271_FIXUP_HP_GATE_MIC_JACK,
Takashi Iwai1d045db2011-07-07 18:23:21 +02002731};
2732
Takashi Iwai1727a772013-01-10 09:52:52 +01002733static const struct hda_fixup alc269_fixups[] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02002734 [ALC269_FIXUP_SONY_VAIO] = {
Takashi Iwaifd108212013-01-10 10:18:14 +01002735 .type = HDA_FIXUP_PINCTLS,
2736 .v.pins = (const struct hda_pintbl[]) {
2737 {0x19, PIN_VREFGRD},
Takashi Iwai1d045db2011-07-07 18:23:21 +02002738 {}
2739 }
2740 },
2741 [ALC275_FIXUP_SONY_VAIO_GPIO2] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002742 .type = HDA_FIXUP_VERBS,
Takashi Iwai1d045db2011-07-07 18:23:21 +02002743 .v.verbs = (const struct hda_verb[]) {
2744 {0x01, AC_VERB_SET_GPIO_MASK, 0x04},
2745 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x04},
2746 {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
2747 { }
2748 },
2749 .chained = true,
2750 .chain_id = ALC269_FIXUP_SONY_VAIO
2751 },
2752 [ALC269_FIXUP_DELL_M101Z] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002753 .type = HDA_FIXUP_VERBS,
Takashi Iwai1d045db2011-07-07 18:23:21 +02002754 .v.verbs = (const struct hda_verb[]) {
2755 /* Enables internal speaker */
2756 {0x20, AC_VERB_SET_COEF_INDEX, 13},
2757 {0x20, AC_VERB_SET_PROC_COEF, 0x4040},
2758 {}
2759 }
2760 },
2761 [ALC269_FIXUP_SKU_IGNORE] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002762 .type = HDA_FIXUP_FUNC,
Takashi Iwai23d30f22012-05-07 17:17:32 +02002763 .v.func = alc_fixup_sku_ignore,
Takashi Iwai1d045db2011-07-07 18:23:21 +02002764 },
2765 [ALC269_FIXUP_ASUS_G73JW] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002766 .type = HDA_FIXUP_PINS,
2767 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02002768 { 0x17, 0x99130111 }, /* subwoofer */
2769 { }
2770 }
2771 },
2772 [ALC269_FIXUP_LENOVO_EAPD] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002773 .type = HDA_FIXUP_VERBS,
Takashi Iwai1d045db2011-07-07 18:23:21 +02002774 .v.verbs = (const struct hda_verb[]) {
2775 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
2776 {}
2777 }
2778 },
2779 [ALC275_FIXUP_SONY_HWEQ] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002780 .type = HDA_FIXUP_FUNC,
Takashi Iwai1d045db2011-07-07 18:23:21 +02002781 .v.func = alc269_fixup_hweq,
2782 .chained = true,
2783 .chain_id = ALC275_FIXUP_SONY_VAIO_GPIO2
2784 },
2785 [ALC271_FIXUP_DMIC] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002786 .type = HDA_FIXUP_FUNC,
Takashi Iwai1d045db2011-07-07 18:23:21 +02002787 .v.func = alc271_fixup_dmic,
2788 },
Takashi Iwai017f2a12011-07-09 14:42:25 +02002789 [ALC269_FIXUP_PCM_44K] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002790 .type = HDA_FIXUP_FUNC,
Takashi Iwai017f2a12011-07-09 14:42:25 +02002791 .v.func = alc269_fixup_pcm_44k,
David Henningsson012e7eb2012-08-08 08:43:37 +02002792 .chained = true,
2793 .chain_id = ALC269_FIXUP_QUANTA_MUTE
Takashi Iwai017f2a12011-07-09 14:42:25 +02002794 },
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02002795 [ALC269_FIXUP_STEREO_DMIC] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002796 .type = HDA_FIXUP_FUNC,
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02002797 .v.func = alc269_fixup_stereo_dmic,
2798 },
Takashi Iwai24519912011-08-16 15:08:49 +02002799 [ALC269_FIXUP_QUANTA_MUTE] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002800 .type = HDA_FIXUP_FUNC,
Takashi Iwai24519912011-08-16 15:08:49 +02002801 .v.func = alc269_fixup_quanta_mute,
2802 },
2803 [ALC269_FIXUP_LIFEBOOK] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002804 .type = HDA_FIXUP_PINS,
2805 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai24519912011-08-16 15:08:49 +02002806 { 0x1a, 0x2101103f }, /* dock line-out */
2807 { 0x1b, 0x23a11040 }, /* dock mic-in */
2808 { }
2809 },
2810 .chained = true,
2811 .chain_id = ALC269_FIXUP_QUANTA_MUTE
2812 },
Takashi Iwaia4297b52011-08-23 18:40:12 +02002813 [ALC269_FIXUP_AMIC] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002814 .type = HDA_FIXUP_PINS,
2815 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwaia4297b52011-08-23 18:40:12 +02002816 { 0x14, 0x99130110 }, /* speaker */
2817 { 0x15, 0x0121401f }, /* HP out */
2818 { 0x18, 0x01a19c20 }, /* mic */
2819 { 0x19, 0x99a3092f }, /* int-mic */
2820 { }
2821 },
2822 },
2823 [ALC269_FIXUP_DMIC] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002824 .type = HDA_FIXUP_PINS,
2825 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwaia4297b52011-08-23 18:40:12 +02002826 { 0x12, 0x99a3092f }, /* int-mic */
2827 { 0x14, 0x99130110 }, /* speaker */
2828 { 0x15, 0x0121401f }, /* HP out */
2829 { 0x18, 0x01a19c20 }, /* mic */
2830 { }
2831 },
2832 },
2833 [ALC269VB_FIXUP_AMIC] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002834 .type = HDA_FIXUP_PINS,
2835 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwaia4297b52011-08-23 18:40:12 +02002836 { 0x14, 0x99130110 }, /* speaker */
2837 { 0x18, 0x01a19c20 }, /* mic */
2838 { 0x19, 0x99a3092f }, /* int-mic */
2839 { 0x21, 0x0121401f }, /* HP out */
2840 { }
2841 },
2842 },
David Henningsson2267ea92012-01-03 08:45:56 +01002843 [ALC269VB_FIXUP_DMIC] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002844 .type = HDA_FIXUP_PINS,
2845 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwaia4297b52011-08-23 18:40:12 +02002846 { 0x12, 0x99a3092f }, /* int-mic */
2847 { 0x14, 0x99130110 }, /* speaker */
2848 { 0x18, 0x01a19c20 }, /* mic */
2849 { 0x21, 0x0121401f }, /* HP out */
2850 { }
2851 },
2852 },
David Henningsson6d3cd5d2013-01-07 12:03:47 +01002853 [ALC269_FIXUP_MIC1_MUTE_LED] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002854 .type = HDA_FIXUP_FUNC,
David Henningsson6d3cd5d2013-01-07 12:03:47 +01002855 .v.func = alc269_fixup_mic1_mute,
2856 },
Takashi Iwai420b0fe2012-03-12 12:35:27 +01002857 [ALC269_FIXUP_MIC2_MUTE_LED] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002858 .type = HDA_FIXUP_FUNC,
Takashi Iwai420b0fe2012-03-12 12:35:27 +01002859 .v.func = alc269_fixup_mic2_mute,
2860 },
David Henningsson693b6132012-06-22 19:12:10 +02002861 [ALC269_FIXUP_INV_DMIC] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002862 .type = HDA_FIXUP_FUNC,
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002863 .v.func = alc_fixup_inv_dmic_0x12,
David Henningsson693b6132012-06-22 19:12:10 +02002864 },
David Henningsson108cc102012-07-20 10:37:25 +02002865 [ALC269_FIXUP_LENOVO_DOCK] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002866 .type = HDA_FIXUP_PINS,
2867 .v.pins = (const struct hda_pintbl[]) {
David Henningsson108cc102012-07-20 10:37:25 +02002868 { 0x19, 0x23a11040 }, /* dock mic */
2869 { 0x1b, 0x2121103f }, /* dock headphone */
2870 { }
2871 },
2872 .chained = true,
2873 .chain_id = ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT
2874 },
2875 [ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002876 .type = HDA_FIXUP_FUNC,
David Henningsson108cc102012-07-20 10:37:25 +02002877 .v.func = alc269_fixup_pincfg_no_hp_to_lineout,
2878 },
Dylan Reid08a978d2012-11-18 22:56:40 -08002879 [ALC271_FIXUP_AMIC_MIC2] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002880 .type = HDA_FIXUP_PINS,
2881 .v.pins = (const struct hda_pintbl[]) {
Dylan Reid08a978d2012-11-18 22:56:40 -08002882 { 0x14, 0x99130110 }, /* speaker */
2883 { 0x19, 0x01a19c20 }, /* mic */
2884 { 0x1b, 0x99a7012f }, /* int-mic */
2885 { 0x21, 0x0121401f }, /* HP out */
2886 { }
2887 },
2888 },
2889 [ALC271_FIXUP_HP_GATE_MIC_JACK] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002890 .type = HDA_FIXUP_FUNC,
Dylan Reid08a978d2012-11-18 22:56:40 -08002891 .v.func = alc271_hp_gate_mic_jack,
2892 .chained = true,
2893 .chain_id = ALC271_FIXUP_AMIC_MIC2,
2894 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02002895};
2896
2897static const struct snd_pci_quirk alc269_fixup_tbl[] = {
David Henningsson693b6132012-06-22 19:12:10 +02002898 SND_PCI_QUIRK(0x1025, 0x029b, "Acer 1810TZ", ALC269_FIXUP_INV_DMIC),
2899 SND_PCI_QUIRK(0x1025, 0x0349, "Acer AOD260", ALC269_FIXUP_INV_DMIC),
Takashi Iwai420b0fe2012-03-12 12:35:27 +01002900 SND_PCI_QUIRK(0x103c, 0x1586, "HP", ALC269_FIXUP_MIC2_MUTE_LED),
David Henningsson6d3cd5d2013-01-07 12:03:47 +01002901 SND_PCI_QUIRK(0x103c, 0x1972, "HP Pavilion 17", ALC269_FIXUP_MIC1_MUTE_LED),
David Henningsson5ac57552012-04-20 10:01:46 +02002902 SND_PCI_QUIRK(0x1043, 0x1427, "Asus Zenbook UX31E", ALC269VB_FIXUP_DMIC),
Oleksij Rempel148728f2012-09-21 17:44:58 +02002903 SND_PCI_QUIRK(0x1043, 0x1517, "Asus Zenbook UX31A", ALC269VB_FIXUP_DMIC),
Takashi Iwai017f2a12011-07-09 14:42:25 +02002904 SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW),
David Henningsson693b6132012-06-22 19:12:10 +02002905 SND_PCI_QUIRK(0x1043, 0x1b13, "Asus U41SV", ALC269_FIXUP_INV_DMIC),
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02002906 SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC),
2907 SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC),
2908 SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC),
2909 SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
2910 SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
Takashi Iwai1d045db2011-07-07 18:23:21 +02002911 SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2),
2912 SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
2913 SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
2914 SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO),
2915 SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
Dylan Reid08a978d2012-11-18 22:56:40 -08002916 SND_PCI_QUIRK(0x1025, 0x0742, "Acer AO756", ALC271_FIXUP_HP_GATE_MIC_JACK),
Takashi Iwai1d045db2011-07-07 18:23:21 +02002917 SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC),
Takashi Iwai24519912011-08-16 15:08:49 +02002918 SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook", ALC269_FIXUP_LIFEBOOK),
Takashi Iwai1d045db2011-07-07 18:23:21 +02002919 SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE),
2920 SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE),
2921 SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE),
2922 SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE),
2923 SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE),
Takashi Iwai707fba32012-08-02 09:04:39 +02002924 SND_PCI_QUIRK(0x17aa, 0x21f6, "Thinkpad T530", ALC269_FIXUP_LENOVO_DOCK),
Felix Kaechelec8415a42012-08-06 23:02:01 +02002925 SND_PCI_QUIRK(0x17aa, 0x21fa, "Thinkpad X230", ALC269_FIXUP_LENOVO_DOCK),
Stefán Freyr84f98fd2012-10-19 22:46:00 +02002926 SND_PCI_QUIRK(0x17aa, 0x21f3, "Thinkpad T430", ALC269_FIXUP_LENOVO_DOCK),
Philipp A. Mohrenweiser4407be62012-08-06 13:14:18 +02002927 SND_PCI_QUIRK(0x17aa, 0x21fb, "Thinkpad T430s", ALC269_FIXUP_LENOVO_DOCK),
David Henningsson108cc102012-07-20 10:37:25 +02002928 SND_PCI_QUIRK(0x17aa, 0x2203, "Thinkpad X230 Tablet", ALC269_FIXUP_LENOVO_DOCK),
David Henningsson012e7eb2012-08-08 08:43:37 +02002929 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_PCM_44K),
Takashi Iwai1d045db2011-07-07 18:23:21 +02002930 SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD),
Takashi Iwaia4297b52011-08-23 18:40:12 +02002931
Takashi Iwaia7f3eed2012-02-16 13:03:18 +01002932#if 0
Takashi Iwaia4297b52011-08-23 18:40:12 +02002933 /* Below is a quirk table taken from the old code.
2934 * Basically the device should work as is without the fixup table.
2935 * If BIOS doesn't give a proper info, enable the corresponding
2936 * fixup entry.
Jesper Juhl7d7eb9e2012-04-12 22:11:25 +02002937 */
Takashi Iwaia4297b52011-08-23 18:40:12 +02002938 SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
2939 ALC269_FIXUP_AMIC),
2940 SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC),
Takashi Iwaia4297b52011-08-23 18:40:12 +02002941 SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC),
2942 SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC),
2943 SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC),
2944 SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269_FIXUP_AMIC),
2945 SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269_FIXUP_AMIC),
2946 SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269_FIXUP_AMIC),
2947 SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_FIXUP_AMIC),
2948 SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269_FIXUP_AMIC),
2949 SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_FIXUP_AMIC),
2950 SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_FIXUP_AMIC),
2951 SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_FIXUP_AMIC),
2952 SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_FIXUP_AMIC),
2953 SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_FIXUP_AMIC),
2954 SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_FIXUP_AMIC),
2955 SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_FIXUP_AMIC),
2956 SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_FIXUP_AMIC),
2957 SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_FIXUP_AMIC),
2958 SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_FIXUP_AMIC),
2959 SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_FIXUP_AMIC),
2960 SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_FIXUP_AMIC),
2961 SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_FIXUP_AMIC),
2962 SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_FIXUP_AMIC),
2963 SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_FIXUP_AMIC),
2964 SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_FIXUP_AMIC),
2965 SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_FIXUP_AMIC),
2966 SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_FIXUP_AMIC),
2967 SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_FIXUP_AMIC),
2968 SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_FIXUP_AMIC),
2969 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_FIXUP_AMIC),
2970 SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_FIXUP_AMIC),
2971 SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_FIXUP_AMIC),
2972 SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_FIXUP_AMIC),
2973 SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_FIXUP_AMIC),
2974 SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_FIXUP_DMIC),
2975 SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_FIXUP_AMIC),
2976 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_AMIC),
2977 SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_FIXUP_DMIC),
2978 SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_FIXUP_DMIC),
2979#endif
2980 {}
2981};
2982
Takashi Iwai1727a772013-01-10 09:52:52 +01002983static const struct hda_model_fixup alc269_fixup_models[] = {
Takashi Iwaia4297b52011-08-23 18:40:12 +02002984 {.id = ALC269_FIXUP_AMIC, .name = "laptop-amic"},
2985 {.id = ALC269_FIXUP_DMIC, .name = "laptop-dmic"},
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002986 {.id = ALC269_FIXUP_STEREO_DMIC, .name = "alc269-dmic"},
2987 {.id = ALC271_FIXUP_DMIC, .name = "alc271-dmic"},
2988 {.id = ALC269_FIXUP_INV_DMIC, .name = "inv-dmic"},
David Henningsson108cc102012-07-20 10:37:25 +02002989 {.id = ALC269_FIXUP_LENOVO_DOCK, .name = "lenovo-dock"},
Takashi Iwai1d045db2011-07-07 18:23:21 +02002990 {}
2991};
2992
2993
Takashi Iwai546bb672012-03-07 08:37:19 +01002994static void alc269_fill_coef(struct hda_codec *codec)
Takashi Iwai1d045db2011-07-07 18:23:21 +02002995{
Kailang Yang526af6e2012-03-07 08:25:20 +01002996 struct alc_spec *spec = codec->spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002997 int val;
2998
Kailang Yang526af6e2012-03-07 08:25:20 +01002999 if (spec->codec_variant != ALC269_TYPE_ALC269VB)
Takashi Iwai546bb672012-03-07 08:37:19 +01003000 return;
Kailang Yang526af6e2012-03-07 08:25:20 +01003001
Takashi Iwai1bb7e432011-10-17 16:50:59 +02003002 if ((alc_get_coef0(codec) & 0x00ff) < 0x015) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02003003 alc_write_coef_idx(codec, 0xf, 0x960b);
3004 alc_write_coef_idx(codec, 0xe, 0x8817);
3005 }
3006
Takashi Iwai1bb7e432011-10-17 16:50:59 +02003007 if ((alc_get_coef0(codec) & 0x00ff) == 0x016) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02003008 alc_write_coef_idx(codec, 0xf, 0x960b);
3009 alc_write_coef_idx(codec, 0xe, 0x8814);
3010 }
3011
Takashi Iwai1bb7e432011-10-17 16:50:59 +02003012 if ((alc_get_coef0(codec) & 0x00ff) == 0x017) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02003013 val = alc_read_coef_idx(codec, 0x04);
3014 /* Power up output pin */
3015 alc_write_coef_idx(codec, 0x04, val | (1<<11));
3016 }
3017
Takashi Iwai1bb7e432011-10-17 16:50:59 +02003018 if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02003019 val = alc_read_coef_idx(codec, 0xd);
3020 if ((val & 0x0c00) >> 10 != 0x1) {
3021 /* Capless ramp up clock control */
3022 alc_write_coef_idx(codec, 0xd, val | (1<<10));
3023 }
3024 val = alc_read_coef_idx(codec, 0x17);
3025 if ((val & 0x01c0) >> 6 != 0x4) {
3026 /* Class D power on reset */
3027 alc_write_coef_idx(codec, 0x17, val | (1<<7));
3028 }
3029 }
3030
3031 val = alc_read_coef_idx(codec, 0xd); /* Class D */
3032 alc_write_coef_idx(codec, 0xd, val | (1<<14));
3033
3034 val = alc_read_coef_idx(codec, 0x4); /* HP */
3035 alc_write_coef_idx(codec, 0x4, val | (1<<11));
Takashi Iwai1d045db2011-07-07 18:23:21 +02003036}
3037
3038/*
3039 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02003040static int patch_alc269(struct hda_codec *codec)
3041{
3042 struct alc_spec *spec;
Takashi Iwai3de95172012-05-07 18:03:15 +02003043 int err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003044
Takashi Iwai3de95172012-05-07 18:03:15 +02003045 err = alc_alloc_spec(codec, 0x0b);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003046 if (err < 0)
Takashi Iwai3de95172012-05-07 18:03:15 +02003047 return err;
3048
3049 spec = codec->spec;
Takashi Iwai08c189f2012-12-19 15:22:24 +01003050 spec->gen.shared_mic_vref_pin = 0x18;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003051
Takashi Iwai1727a772013-01-10 09:52:52 +01003052 snd_hda_pick_fixup(codec, alc269_fixup_models,
Herton Ronaldo Krzesinski9f720bb2012-09-27 10:38:14 -03003053 alc269_fixup_tbl, alc269_fixups);
Takashi Iwai1727a772013-01-10 09:52:52 +01003054 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
Herton Ronaldo Krzesinski9f720bb2012-09-27 10:38:14 -03003055
3056 alc_auto_parse_customize_define(codec);
3057
Kailang Yang065380f2013-01-10 10:25:48 +01003058 switch (codec->vendor_id) {
3059 case 0x10ec0269:
Takashi Iwai1d045db2011-07-07 18:23:21 +02003060 spec->codec_variant = ALC269_TYPE_ALC269VA;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02003061 switch (alc_get_coef0(codec) & 0x00f0) {
3062 case 0x0010:
Takashi Iwai1d045db2011-07-07 18:23:21 +02003063 if (codec->bus->pci->subsystem_vendor == 0x1025 &&
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003064 spec->cdefine.platform_type == 1)
Takashi Iwai20ca0c32011-10-17 16:00:35 +02003065 err = alc_codec_rename(codec, "ALC271X");
Takashi Iwai1d045db2011-07-07 18:23:21 +02003066 spec->codec_variant = ALC269_TYPE_ALC269VB;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02003067 break;
3068 case 0x0020:
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003069 if (codec->bus->pci->subsystem_vendor == 0x17aa &&
3070 codec->bus->pci->subsystem_device == 0x21f3)
Takashi Iwai20ca0c32011-10-17 16:00:35 +02003071 err = alc_codec_rename(codec, "ALC3202");
Takashi Iwai1d045db2011-07-07 18:23:21 +02003072 spec->codec_variant = ALC269_TYPE_ALC269VC;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02003073 break;
Kailang Yangadcc70b2012-05-25 08:08:38 +02003074 case 0x0030:
3075 spec->codec_variant = ALC269_TYPE_ALC269VD;
3076 break;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02003077 default:
Takashi Iwai1d045db2011-07-07 18:23:21 +02003078 alc_fix_pll_init(codec, 0x20, 0x04, 15);
Takashi Iwai1bb7e432011-10-17 16:50:59 +02003079 }
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003080 if (err < 0)
3081 goto error;
Takashi Iwai546bb672012-03-07 08:37:19 +01003082 spec->init_hook = alc269_fill_coef;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003083 alc269_fill_coef(codec);
Kailang Yang065380f2013-01-10 10:25:48 +01003084 break;
3085
3086 case 0x10ec0280:
3087 case 0x10ec0290:
3088 spec->codec_variant = ALC269_TYPE_ALC280;
3089 break;
3090 case 0x10ec0282:
3091 case 0x10ec0283:
3092 spec->codec_variant = ALC269_TYPE_ALC282;
3093 break;
3094 case 0x10ec0284:
3095 case 0x10ec0292:
3096 spec->codec_variant = ALC269_TYPE_ALC284;
3097 break;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003098 }
3099
Takashi Iwaia4297b52011-08-23 18:40:12 +02003100 /* automatic parse from the BIOS config */
3101 err = alc269_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003102 if (err < 0)
3103 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003104
Takashi Iwai08c189f2012-12-19 15:22:24 +01003105 if (!spec->gen.no_analog && has_cdefine_beep(codec)) {
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003106 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003107 if (err < 0)
3108 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003109 set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003110 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02003111
Takashi Iwai1d045db2011-07-07 18:23:21 +02003112 codec->patch_ops = alc_patch_ops;
Takashi Iwai2a439522011-07-26 09:52:50 +02003113#ifdef CONFIG_PM
Takashi Iwai1d045db2011-07-07 18:23:21 +02003114 codec->patch_ops.resume = alc269_resume;
3115#endif
Takashi Iwai1d045db2011-07-07 18:23:21 +02003116 spec->shutup = alc269_shutup;
3117
Takashi Iwai1727a772013-01-10 09:52:52 +01003118 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
Takashi Iwai589876e2012-02-20 15:47:55 +01003119
Takashi Iwai1d045db2011-07-07 18:23:21 +02003120 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003121
3122 error:
3123 alc_free(codec);
3124 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003125}
3126
3127/*
3128 * ALC861
3129 */
3130
Takashi Iwai1d045db2011-07-07 18:23:21 +02003131static int alc861_parse_auto_config(struct hda_codec *codec)
3132{
Takashi Iwai1d045db2011-07-07 18:23:21 +02003133 static const hda_nid_t alc861_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003134 static const hda_nid_t alc861_ssids[] = { 0x0e, 0x0f, 0x0b, 0 };
3135 return alc_parse_auto_config(codec, alc861_ignore, alc861_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02003136}
3137
Takashi Iwai1d045db2011-07-07 18:23:21 +02003138/* Pin config fixes */
3139enum {
Takashi Iwaie652f4c2012-02-13 11:56:25 +01003140 ALC861_FIXUP_FSC_AMILO_PI1505,
3141 ALC861_FIXUP_AMP_VREF_0F,
3142 ALC861_FIXUP_NO_JACK_DETECT,
3143 ALC861_FIXUP_ASUS_A6RP,
Takashi Iwai1d045db2011-07-07 18:23:21 +02003144};
3145
Takashi Iwai31150f22012-01-30 10:54:08 +01003146/* On some laptops, VREF of pin 0x0f is abused for controlling the main amp */
3147static void alc861_fixup_asus_amp_vref_0f(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +01003148 const struct hda_fixup *fix, int action)
Takashi Iwai31150f22012-01-30 10:54:08 +01003149{
3150 struct alc_spec *spec = codec->spec;
3151 unsigned int val;
3152
Takashi Iwai1727a772013-01-10 09:52:52 +01003153 if (action != HDA_FIXUP_ACT_INIT)
Takashi Iwai31150f22012-01-30 10:54:08 +01003154 return;
Takashi Iwaid3f02d62013-01-10 10:12:22 +01003155 val = snd_hda_codec_get_pin_target(codec, 0x0f);
Takashi Iwai31150f22012-01-30 10:54:08 +01003156 if (!(val & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN)))
3157 val |= AC_PINCTL_IN_EN;
3158 val |= AC_PINCTL_VREF_50;
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02003159 snd_hda_set_pin_ctl(codec, 0x0f, val);
Takashi Iwai08c189f2012-12-19 15:22:24 +01003160 spec->gen.keep_vref_in_automute = 1;
Takashi Iwai31150f22012-01-30 10:54:08 +01003161}
3162
Takashi Iwaie652f4c2012-02-13 11:56:25 +01003163/* suppress the jack-detection */
3164static void alc_fixup_no_jack_detect(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +01003165 const struct hda_fixup *fix, int action)
Takashi Iwaie652f4c2012-02-13 11:56:25 +01003166{
Takashi Iwai1727a772013-01-10 09:52:52 +01003167 if (action == HDA_FIXUP_ACT_PRE_PROBE)
Takashi Iwaie652f4c2012-02-13 11:56:25 +01003168 codec->no_jack_detect = 1;
Jesper Juhl7d7eb9e2012-04-12 22:11:25 +02003169}
Takashi Iwaie652f4c2012-02-13 11:56:25 +01003170
Takashi Iwai1727a772013-01-10 09:52:52 +01003171static const struct hda_fixup alc861_fixups[] = {
Takashi Iwaie652f4c2012-02-13 11:56:25 +01003172 [ALC861_FIXUP_FSC_AMILO_PI1505] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01003173 .type = HDA_FIXUP_PINS,
3174 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02003175 { 0x0b, 0x0221101f }, /* HP */
3176 { 0x0f, 0x90170310 }, /* speaker */
3177 { }
3178 }
3179 },
Takashi Iwaie652f4c2012-02-13 11:56:25 +01003180 [ALC861_FIXUP_AMP_VREF_0F] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01003181 .type = HDA_FIXUP_FUNC,
Takashi Iwai31150f22012-01-30 10:54:08 +01003182 .v.func = alc861_fixup_asus_amp_vref_0f,
Takashi Iwai3b25eb62012-01-25 09:55:46 +01003183 },
Takashi Iwaie652f4c2012-02-13 11:56:25 +01003184 [ALC861_FIXUP_NO_JACK_DETECT] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01003185 .type = HDA_FIXUP_FUNC,
Takashi Iwaie652f4c2012-02-13 11:56:25 +01003186 .v.func = alc_fixup_no_jack_detect,
3187 },
3188 [ALC861_FIXUP_ASUS_A6RP] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01003189 .type = HDA_FIXUP_FUNC,
Takashi Iwaie652f4c2012-02-13 11:56:25 +01003190 .v.func = alc861_fixup_asus_amp_vref_0f,
3191 .chained = true,
3192 .chain_id = ALC861_FIXUP_NO_JACK_DETECT,
3193 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02003194};
3195
3196static const struct snd_pci_quirk alc861_fixup_tbl[] = {
Takashi Iwaie652f4c2012-02-13 11:56:25 +01003197 SND_PCI_QUIRK(0x1043, 0x1393, "ASUS A6Rp", ALC861_FIXUP_ASUS_A6RP),
3198 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS laptop", ALC861_FIXUP_AMP_VREF_0F),
3199 SND_PCI_QUIRK(0x1462, 0x7254, "HP DX2200", ALC861_FIXUP_NO_JACK_DETECT),
3200 SND_PCI_QUIRK(0x1584, 0x2b01, "Haier W18", ALC861_FIXUP_AMP_VREF_0F),
3201 SND_PCI_QUIRK(0x1584, 0x0000, "Uniwill ECS M31EI", ALC861_FIXUP_AMP_VREF_0F),
3202 SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", ALC861_FIXUP_FSC_AMILO_PI1505),
Takashi Iwai1d045db2011-07-07 18:23:21 +02003203 {}
3204};
3205
3206/*
3207 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02003208static int patch_alc861(struct hda_codec *codec)
3209{
3210 struct alc_spec *spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003211 int err;
3212
Takashi Iwai3de95172012-05-07 18:03:15 +02003213 err = alc_alloc_spec(codec, 0x15);
3214 if (err < 0)
3215 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003216
Takashi Iwai3de95172012-05-07 18:03:15 +02003217 spec = codec->spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003218
Takashi Iwai1727a772013-01-10 09:52:52 +01003219 snd_hda_pick_fixup(codec, NULL, alc861_fixup_tbl, alc861_fixups);
3220 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02003221
Takashi Iwaicb4e4822011-08-23 17:34:25 +02003222 /* automatic parse from the BIOS config */
3223 err = alc861_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003224 if (err < 0)
3225 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003226
Takashi Iwai08c189f2012-12-19 15:22:24 +01003227 if (!spec->gen.no_analog) {
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003228 err = snd_hda_attach_beep_device(codec, 0x23);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003229 if (err < 0)
3230 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003231 set_beep_amp(spec, 0x23, 0, HDA_OUTPUT);
3232 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02003233
Takashi Iwai1d045db2011-07-07 18:23:21 +02003234 codec->patch_ops = alc_patch_ops;
Takashi Iwai83012a72012-08-24 18:38:08 +02003235#ifdef CONFIG_PM
Takashi Iwaicb4e4822011-08-23 17:34:25 +02003236 spec->power_hook = alc_power_eapd;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003237#endif
3238
Takashi Iwai1727a772013-01-10 09:52:52 +01003239 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
Takashi Iwai589876e2012-02-20 15:47:55 +01003240
Takashi Iwai1d045db2011-07-07 18:23:21 +02003241 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003242
3243 error:
3244 alc_free(codec);
3245 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003246}
3247
3248/*
3249 * ALC861-VD support
3250 *
3251 * Based on ALC882
3252 *
3253 * In addition, an independent DAC
3254 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02003255static int alc861vd_parse_auto_config(struct hda_codec *codec)
3256{
Takashi Iwai1d045db2011-07-07 18:23:21 +02003257 static const hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003258 static const hda_nid_t alc861vd_ssids[] = { 0x15, 0x1b, 0x14, 0 };
3259 return alc_parse_auto_config(codec, alc861vd_ignore, alc861vd_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02003260}
3261
Takashi Iwai1d045db2011-07-07 18:23:21 +02003262enum {
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02003263 ALC660VD_FIX_ASUS_GPIO1,
3264 ALC861VD_FIX_DALLAS,
Takashi Iwai1d045db2011-07-07 18:23:21 +02003265};
3266
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02003267/* exclude VREF80 */
3268static void alc861vd_fixup_dallas(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +01003269 const struct hda_fixup *fix, int action)
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02003270{
Takashi Iwai1727a772013-01-10 09:52:52 +01003271 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
Takashi Iwaib78562b2012-12-17 20:06:49 +01003272 snd_hda_override_pin_caps(codec, 0x18, 0x00000734);
3273 snd_hda_override_pin_caps(codec, 0x19, 0x0000073c);
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02003274 }
3275}
3276
Takashi Iwai1727a772013-01-10 09:52:52 +01003277static const struct hda_fixup alc861vd_fixups[] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02003278 [ALC660VD_FIX_ASUS_GPIO1] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01003279 .type = HDA_FIXUP_VERBS,
Takashi Iwai1d045db2011-07-07 18:23:21 +02003280 .v.verbs = (const struct hda_verb[]) {
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02003281 /* reset GPIO1 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02003282 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
3283 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
3284 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
3285 { }
3286 }
3287 },
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02003288 [ALC861VD_FIX_DALLAS] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01003289 .type = HDA_FIXUP_FUNC,
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02003290 .v.func = alc861vd_fixup_dallas,
3291 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02003292};
3293
3294static const struct snd_pci_quirk alc861vd_fixup_tbl[] = {
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02003295 SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_FIX_DALLAS),
Takashi Iwai1d045db2011-07-07 18:23:21 +02003296 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1),
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02003297 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_FIX_DALLAS),
Takashi Iwai1d045db2011-07-07 18:23:21 +02003298 {}
3299};
3300
Takashi Iwai1d045db2011-07-07 18:23:21 +02003301/*
3302 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02003303static int patch_alc861vd(struct hda_codec *codec)
3304{
3305 struct alc_spec *spec;
Takashi Iwaicb4e4822011-08-23 17:34:25 +02003306 int err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003307
Takashi Iwai3de95172012-05-07 18:03:15 +02003308 err = alc_alloc_spec(codec, 0x0b);
3309 if (err < 0)
3310 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003311
Takashi Iwai3de95172012-05-07 18:03:15 +02003312 spec = codec->spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003313
Takashi Iwai1727a772013-01-10 09:52:52 +01003314 snd_hda_pick_fixup(codec, NULL, alc861vd_fixup_tbl, alc861vd_fixups);
3315 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02003316
Takashi Iwaicb4e4822011-08-23 17:34:25 +02003317 /* automatic parse from the BIOS config */
3318 err = alc861vd_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003319 if (err < 0)
3320 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003321
Takashi Iwai08c189f2012-12-19 15:22:24 +01003322 if (!spec->gen.no_analog) {
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003323 err = snd_hda_attach_beep_device(codec, 0x23);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003324 if (err < 0)
3325 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003326 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
3327 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02003328
Takashi Iwai1d045db2011-07-07 18:23:21 +02003329 codec->patch_ops = alc_patch_ops;
3330
Takashi Iwai1d045db2011-07-07 18:23:21 +02003331 spec->shutup = alc_eapd_shutup;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003332
Takashi Iwai1727a772013-01-10 09:52:52 +01003333 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
Takashi Iwai589876e2012-02-20 15:47:55 +01003334
Takashi Iwai1d045db2011-07-07 18:23:21 +02003335 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003336
3337 error:
3338 alc_free(codec);
3339 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003340}
3341
3342/*
3343 * ALC662 support
3344 *
3345 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
3346 * configuration. Each pin widget can choose any input DACs and a mixer.
3347 * Each ADC is connected from a mixer of all inputs. This makes possible
3348 * 6-channel independent captures.
3349 *
3350 * In addition, an independent DAC for the multi-playback (not used in this
3351 * driver yet).
3352 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02003353
3354/*
3355 * BIOS auto configuration
3356 */
3357
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003358static int alc662_parse_auto_config(struct hda_codec *codec)
3359{
Takashi Iwai4c6d72d2011-05-02 11:30:18 +02003360 static const hda_nid_t alc662_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003361 static const hda_nid_t alc663_ssids[] = { 0x15, 0x1b, 0x14, 0x21 };
3362 static const hda_nid_t alc662_ssids[] = { 0x15, 0x1b, 0x14, 0 };
3363 const hda_nid_t *ssids;
Takashi Iwaiee979a142008-09-02 15:42:20 +02003364
Kailang Yang6227cdc2010-02-25 08:36:52 +01003365 if (codec->vendor_id == 0x10ec0272 || codec->vendor_id == 0x10ec0663 ||
3366 codec->vendor_id == 0x10ec0665 || codec->vendor_id == 0x10ec0670)
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003367 ssids = alc663_ssids;
Kailang Yang6227cdc2010-02-25 08:36:52 +01003368 else
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003369 ssids = alc662_ssids;
3370 return alc_parse_auto_config(codec, alc662_ignore, ssids);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003371}
3372
Todd Broch6be79482010-12-07 16:51:05 -08003373static void alc272_fixup_mario(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +01003374 const struct hda_fixup *fix, int action)
Takashi Iwai6fc398c2011-01-13 14:36:37 +01003375{
Takashi Iwai1727a772013-01-10 09:52:52 +01003376 if (action != HDA_FIXUP_ACT_PROBE)
Takashi Iwai6fc398c2011-01-13 14:36:37 +01003377 return;
Todd Broch6be79482010-12-07 16:51:05 -08003378 if (snd_hda_override_amp_caps(codec, 0x2, HDA_OUTPUT,
3379 (0x3b << AC_AMPCAP_OFFSET_SHIFT) |
3380 (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT) |
3381 (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT) |
3382 (0 << AC_AMPCAP_MUTE_SHIFT)))
3383 printk(KERN_WARNING
3384 "hda_codec: failed to override amp caps for NID 0x2\n");
3385}
3386
David Henningsson6cb3b702010-09-09 08:51:44 +02003387enum {
Daniel T Chen2df03512010-10-10 22:39:28 -04003388 ALC662_FIXUP_ASPIRE,
David Henningsson6cb3b702010-09-09 08:51:44 +02003389 ALC662_FIXUP_IDEAPAD,
Todd Broch6be79482010-12-07 16:51:05 -08003390 ALC272_FIXUP_MARIO,
Anisse Astierd2ebd472011-01-20 12:36:21 +01003391 ALC662_FIXUP_CZC_P10T,
David Henningsson94024cd2011-04-29 14:10:55 +02003392 ALC662_FIXUP_SKU_IGNORE,
Takashi Iwaie59ea3e2011-06-29 17:21:00 +02003393 ALC662_FIXUP_HP_RP5800,
Takashi Iwai53c334a2011-08-23 18:27:14 +02003394 ALC662_FIXUP_ASUS_MODE1,
3395 ALC662_FIXUP_ASUS_MODE2,
3396 ALC662_FIXUP_ASUS_MODE3,
3397 ALC662_FIXUP_ASUS_MODE4,
3398 ALC662_FIXUP_ASUS_MODE5,
3399 ALC662_FIXUP_ASUS_MODE6,
3400 ALC662_FIXUP_ASUS_MODE7,
3401 ALC662_FIXUP_ASUS_MODE8,
Takashi Iwai1565cc32012-02-13 12:03:25 +01003402 ALC662_FIXUP_NO_JACK_DETECT,
David Henningssonedfe3bf2012-06-12 13:15:12 +02003403 ALC662_FIXUP_ZOTAC_Z68,
Takashi Iwai125821a2012-06-22 14:30:29 +02003404 ALC662_FIXUP_INV_DMIC,
David Henningsson6cb3b702010-09-09 08:51:44 +02003405};
3406
Takashi Iwai1727a772013-01-10 09:52:52 +01003407static const struct hda_fixup alc662_fixups[] = {
Daniel T Chen2df03512010-10-10 22:39:28 -04003408 [ALC662_FIXUP_ASPIRE] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01003409 .type = HDA_FIXUP_PINS,
3410 .v.pins = (const struct hda_pintbl[]) {
Daniel T Chen2df03512010-10-10 22:39:28 -04003411 { 0x15, 0x99130112 }, /* subwoofer */
3412 { }
3413 }
3414 },
David Henningsson6cb3b702010-09-09 08:51:44 +02003415 [ALC662_FIXUP_IDEAPAD] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01003416 .type = HDA_FIXUP_PINS,
3417 .v.pins = (const struct hda_pintbl[]) {
David Henningsson6cb3b702010-09-09 08:51:44 +02003418 { 0x17, 0x99130112 }, /* subwoofer */
3419 { }
3420 }
3421 },
Todd Broch6be79482010-12-07 16:51:05 -08003422 [ALC272_FIXUP_MARIO] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01003423 .type = HDA_FIXUP_FUNC,
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01003424 .v.func = alc272_fixup_mario,
Anisse Astierd2ebd472011-01-20 12:36:21 +01003425 },
3426 [ALC662_FIXUP_CZC_P10T] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01003427 .type = HDA_FIXUP_VERBS,
Anisse Astierd2ebd472011-01-20 12:36:21 +01003428 .v.verbs = (const struct hda_verb[]) {
3429 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
3430 {}
3431 }
3432 },
David Henningsson94024cd2011-04-29 14:10:55 +02003433 [ALC662_FIXUP_SKU_IGNORE] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01003434 .type = HDA_FIXUP_FUNC,
Takashi Iwai23d30f22012-05-07 17:17:32 +02003435 .v.func = alc_fixup_sku_ignore,
Takashi Iwaic6b35872011-03-28 12:05:31 +02003436 },
Takashi Iwaie59ea3e2011-06-29 17:21:00 +02003437 [ALC662_FIXUP_HP_RP5800] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01003438 .type = HDA_FIXUP_PINS,
3439 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwaie59ea3e2011-06-29 17:21:00 +02003440 { 0x14, 0x0221201f }, /* HP out */
3441 { }
3442 },
3443 .chained = true,
3444 .chain_id = ALC662_FIXUP_SKU_IGNORE
3445 },
Takashi Iwai53c334a2011-08-23 18:27:14 +02003446 [ALC662_FIXUP_ASUS_MODE1] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01003447 .type = HDA_FIXUP_PINS,
3448 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai53c334a2011-08-23 18:27:14 +02003449 { 0x14, 0x99130110 }, /* speaker */
3450 { 0x18, 0x01a19c20 }, /* mic */
3451 { 0x19, 0x99a3092f }, /* int-mic */
3452 { 0x21, 0x0121401f }, /* HP out */
3453 { }
3454 },
3455 .chained = true,
3456 .chain_id = ALC662_FIXUP_SKU_IGNORE
3457 },
3458 [ALC662_FIXUP_ASUS_MODE2] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01003459 .type = HDA_FIXUP_PINS,
3460 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai2996bdb2011-08-18 16:02:24 +02003461 { 0x14, 0x99130110 }, /* speaker */
3462 { 0x18, 0x01a19820 }, /* mic */
3463 { 0x19, 0x99a3092f }, /* int-mic */
3464 { 0x1b, 0x0121401f }, /* HP out */
3465 { }
3466 },
Takashi Iwai53c334a2011-08-23 18:27:14 +02003467 .chained = true,
3468 .chain_id = ALC662_FIXUP_SKU_IGNORE
3469 },
3470 [ALC662_FIXUP_ASUS_MODE3] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01003471 .type = HDA_FIXUP_PINS,
3472 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai53c334a2011-08-23 18:27:14 +02003473 { 0x14, 0x99130110 }, /* speaker */
3474 { 0x15, 0x0121441f }, /* HP */
3475 { 0x18, 0x01a19840 }, /* mic */
3476 { 0x19, 0x99a3094f }, /* int-mic */
3477 { 0x21, 0x01211420 }, /* HP2 */
3478 { }
3479 },
3480 .chained = true,
3481 .chain_id = ALC662_FIXUP_SKU_IGNORE
3482 },
3483 [ALC662_FIXUP_ASUS_MODE4] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01003484 .type = HDA_FIXUP_PINS,
3485 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai53c334a2011-08-23 18:27:14 +02003486 { 0x14, 0x99130110 }, /* speaker */
3487 { 0x16, 0x99130111 }, /* speaker */
3488 { 0x18, 0x01a19840 }, /* mic */
3489 { 0x19, 0x99a3094f }, /* int-mic */
3490 { 0x21, 0x0121441f }, /* HP */
3491 { }
3492 },
3493 .chained = true,
3494 .chain_id = ALC662_FIXUP_SKU_IGNORE
3495 },
3496 [ALC662_FIXUP_ASUS_MODE5] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01003497 .type = HDA_FIXUP_PINS,
3498 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai53c334a2011-08-23 18:27:14 +02003499 { 0x14, 0x99130110 }, /* speaker */
3500 { 0x15, 0x0121441f }, /* HP */
3501 { 0x16, 0x99130111 }, /* speaker */
3502 { 0x18, 0x01a19840 }, /* mic */
3503 { 0x19, 0x99a3094f }, /* int-mic */
3504 { }
3505 },
3506 .chained = true,
3507 .chain_id = ALC662_FIXUP_SKU_IGNORE
3508 },
3509 [ALC662_FIXUP_ASUS_MODE6] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01003510 .type = HDA_FIXUP_PINS,
3511 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai53c334a2011-08-23 18:27:14 +02003512 { 0x14, 0x99130110 }, /* speaker */
3513 { 0x15, 0x01211420 }, /* HP2 */
3514 { 0x18, 0x01a19840 }, /* mic */
3515 { 0x19, 0x99a3094f }, /* int-mic */
3516 { 0x1b, 0x0121441f }, /* HP */
3517 { }
3518 },
3519 .chained = true,
3520 .chain_id = ALC662_FIXUP_SKU_IGNORE
3521 },
3522 [ALC662_FIXUP_ASUS_MODE7] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01003523 .type = HDA_FIXUP_PINS,
3524 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai53c334a2011-08-23 18:27:14 +02003525 { 0x14, 0x99130110 }, /* speaker */
3526 { 0x17, 0x99130111 }, /* speaker */
3527 { 0x18, 0x01a19840 }, /* mic */
3528 { 0x19, 0x99a3094f }, /* int-mic */
3529 { 0x1b, 0x01214020 }, /* HP */
3530 { 0x21, 0x0121401f }, /* HP */
3531 { }
3532 },
3533 .chained = true,
3534 .chain_id = ALC662_FIXUP_SKU_IGNORE
3535 },
3536 [ALC662_FIXUP_ASUS_MODE8] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01003537 .type = HDA_FIXUP_PINS,
3538 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai53c334a2011-08-23 18:27:14 +02003539 { 0x14, 0x99130110 }, /* speaker */
3540 { 0x12, 0x99a30970 }, /* int-mic */
3541 { 0x15, 0x01214020 }, /* HP */
3542 { 0x17, 0x99130111 }, /* speaker */
3543 { 0x18, 0x01a19840 }, /* mic */
3544 { 0x21, 0x0121401f }, /* HP */
3545 { }
3546 },
3547 .chained = true,
3548 .chain_id = ALC662_FIXUP_SKU_IGNORE
Takashi Iwai2996bdb2011-08-18 16:02:24 +02003549 },
Takashi Iwai1565cc32012-02-13 12:03:25 +01003550 [ALC662_FIXUP_NO_JACK_DETECT] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01003551 .type = HDA_FIXUP_FUNC,
Takashi Iwai1565cc32012-02-13 12:03:25 +01003552 .v.func = alc_fixup_no_jack_detect,
3553 },
David Henningssonedfe3bf2012-06-12 13:15:12 +02003554 [ALC662_FIXUP_ZOTAC_Z68] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01003555 .type = HDA_FIXUP_PINS,
3556 .v.pins = (const struct hda_pintbl[]) {
David Henningssonedfe3bf2012-06-12 13:15:12 +02003557 { 0x1b, 0x02214020 }, /* Front HP */
3558 { }
3559 }
3560 },
Takashi Iwai125821a2012-06-22 14:30:29 +02003561 [ALC662_FIXUP_INV_DMIC] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01003562 .type = HDA_FIXUP_FUNC,
Takashi Iwai6e72aa52012-06-25 10:52:25 +02003563 .v.func = alc_fixup_inv_dmic_0x12,
Takashi Iwai125821a2012-06-22 14:30:29 +02003564 },
David Henningsson6cb3b702010-09-09 08:51:44 +02003565};
3566
Takashi Iwaia9111322011-05-02 11:30:18 +02003567static const struct snd_pci_quirk alc662_fixup_tbl[] = {
Takashi Iwai53c334a2011-08-23 18:27:14 +02003568 SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2),
David Henningssona6c47a82011-02-10 15:39:19 +01003569 SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE),
David Henningsson94024cd2011-04-29 14:10:55 +02003570 SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE),
Takashi Iwai125821a2012-06-22 14:30:29 +02003571 SND_PCI_QUIRK(0x1025, 0x0349, "eMachines eM250", ALC662_FIXUP_INV_DMIC),
Daniel T Chen2df03512010-10-10 22:39:28 -04003572 SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE),
Takashi Iwaie59ea3e2011-06-29 17:21:00 +02003573 SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800),
Takashi Iwai1565cc32012-02-13 12:03:25 +01003574 SND_PCI_QUIRK(0x1043, 0x8469, "ASUS mobo", ALC662_FIXUP_NO_JACK_DETECT),
Takashi Iwai53c334a2011-08-23 18:27:14 +02003575 SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2),
Daniel T Chena0e90ac2010-11-20 10:20:35 -05003576 SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD),
Valentine Sinitsynd4118582010-10-01 22:24:08 +06003577 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD),
David Henningsson6cb3b702010-09-09 08:51:44 +02003578 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD),
David Henningssonedfe3bf2012-06-12 13:15:12 +02003579 SND_PCI_QUIRK(0x19da, 0xa130, "Zotac Z68", ALC662_FIXUP_ZOTAC_Z68),
Anisse Astierd2ebd472011-01-20 12:36:21 +01003580 SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T),
Takashi Iwai53c334a2011-08-23 18:27:14 +02003581
3582#if 0
3583 /* Below is a quirk table taken from the old code.
3584 * Basically the device should work as is without the fixup table.
3585 * If BIOS doesn't give a proper info, enable the corresponding
3586 * fixup entry.
Jesper Juhl7d7eb9e2012-04-12 22:11:25 +02003587 */
Takashi Iwai53c334a2011-08-23 18:27:14 +02003588 SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC662_FIXUP_ASUS_MODE1),
3589 SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC662_FIXUP_ASUS_MODE3),
3590 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC662_FIXUP_ASUS_MODE1),
3591 SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC662_FIXUP_ASUS_MODE3),
3592 SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
3593 SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
3594 SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
3595 SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC662_FIXUP_ASUS_MODE1),
3596 SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC662_FIXUP_ASUS_MODE1),
3597 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
3598 SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC662_FIXUP_ASUS_MODE7),
3599 SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC662_FIXUP_ASUS_MODE7),
3600 SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC662_FIXUP_ASUS_MODE8),
3601 SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC662_FIXUP_ASUS_MODE3),
3602 SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC662_FIXUP_ASUS_MODE1),
3603 SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
3604 SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_FIXUP_ASUS_MODE2),
3605 SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC662_FIXUP_ASUS_MODE1),
3606 SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
3607 SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
3608 SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
3609 SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
3610 SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC662_FIXUP_ASUS_MODE1),
3611 SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC662_FIXUP_ASUS_MODE3),
3612 SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_FIXUP_ASUS_MODE2),
3613 SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
3614 SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC662_FIXUP_ASUS_MODE5),
3615 SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
3616 SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
3617 SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC662_FIXUP_ASUS_MODE1),
3618 SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
3619 SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
3620 SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC662_FIXUP_ASUS_MODE3),
3621 SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC662_FIXUP_ASUS_MODE3),
3622 SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC662_FIXUP_ASUS_MODE1),
3623 SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC662_FIXUP_ASUS_MODE1),
3624 SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC662_FIXUP_ASUS_MODE1),
3625 SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC662_FIXUP_ASUS_MODE1),
3626 SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC662_FIXUP_ASUS_MODE1),
3627 SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
3628 SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_FIXUP_ASUS_MODE2),
3629 SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC662_FIXUP_ASUS_MODE1),
3630 SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
3631 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC662_FIXUP_ASUS_MODE3),
3632 SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC662_FIXUP_ASUS_MODE1),
3633 SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC662_FIXUP_ASUS_MODE1),
3634 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC662_FIXUP_ASUS_MODE1),
3635 SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_FIXUP_ASUS_MODE2),
3636 SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
3637 SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE4),
3638#endif
David Henningsson6cb3b702010-09-09 08:51:44 +02003639 {}
3640};
3641
Takashi Iwai1727a772013-01-10 09:52:52 +01003642static const struct hda_model_fixup alc662_fixup_models[] = {
Todd Broch6be79482010-12-07 16:51:05 -08003643 {.id = ALC272_FIXUP_MARIO, .name = "mario"},
Takashi Iwai53c334a2011-08-23 18:27:14 +02003644 {.id = ALC662_FIXUP_ASUS_MODE1, .name = "asus-mode1"},
3645 {.id = ALC662_FIXUP_ASUS_MODE2, .name = "asus-mode2"},
3646 {.id = ALC662_FIXUP_ASUS_MODE3, .name = "asus-mode3"},
3647 {.id = ALC662_FIXUP_ASUS_MODE4, .name = "asus-mode4"},
3648 {.id = ALC662_FIXUP_ASUS_MODE5, .name = "asus-mode5"},
3649 {.id = ALC662_FIXUP_ASUS_MODE6, .name = "asus-mode6"},
3650 {.id = ALC662_FIXUP_ASUS_MODE7, .name = "asus-mode7"},
3651 {.id = ALC662_FIXUP_ASUS_MODE8, .name = "asus-mode8"},
Takashi Iwai6e72aa52012-06-25 10:52:25 +02003652 {.id = ALC662_FIXUP_INV_DMIC, .name = "inv-dmic"},
Todd Broch6be79482010-12-07 16:51:05 -08003653 {}
3654};
David Henningsson6cb3b702010-09-09 08:51:44 +02003655
Kailang Yang8663ff72012-06-29 09:35:52 +02003656static void alc662_fill_coef(struct hda_codec *codec)
3657{
3658 int val, coef;
3659
3660 coef = alc_get_coef0(codec);
3661
3662 switch (codec->vendor_id) {
3663 case 0x10ec0662:
3664 if ((coef & 0x00f0) == 0x0030) {
3665 val = alc_read_coef_idx(codec, 0x4); /* EAPD Ctrl */
3666 alc_write_coef_idx(codec, 0x4, val & ~(1<<10));
3667 }
3668 break;
3669 case 0x10ec0272:
3670 case 0x10ec0273:
3671 case 0x10ec0663:
3672 case 0x10ec0665:
3673 case 0x10ec0670:
3674 case 0x10ec0671:
3675 case 0x10ec0672:
3676 val = alc_read_coef_idx(codec, 0xd); /* EAPD Ctrl */
3677 alc_write_coef_idx(codec, 0xd, val | (1<<14));
3678 break;
3679 }
3680}
David Henningsson6cb3b702010-09-09 08:51:44 +02003681
Takashi Iwai1d045db2011-07-07 18:23:21 +02003682/*
3683 */
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003684static int patch_alc662(struct hda_codec *codec)
3685{
3686 struct alc_spec *spec;
Takashi Iwai3de95172012-05-07 18:03:15 +02003687 int err;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003688
Takashi Iwai3de95172012-05-07 18:03:15 +02003689 err = alc_alloc_spec(codec, 0x0b);
3690 if (err < 0)
3691 return err;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003692
Takashi Iwai3de95172012-05-07 18:03:15 +02003693 spec = codec->spec;
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02003694
Takashi Iwai53c334a2011-08-23 18:27:14 +02003695 /* handle multiple HPs as is */
3696 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
3697
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +02003698 alc_fix_pll_init(codec, 0x20, 0x04, 15);
3699
Kailang Yang8663ff72012-06-29 09:35:52 +02003700 spec->init_hook = alc662_fill_coef;
3701 alc662_fill_coef(codec);
3702
Takashi Iwai1727a772013-01-10 09:52:52 +01003703 snd_hda_pick_fixup(codec, alc662_fixup_models,
Takashi Iwai8e5a0502012-06-21 15:49:33 +02003704 alc662_fixup_tbl, alc662_fixups);
Takashi Iwai1727a772013-01-10 09:52:52 +01003705 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
Takashi Iwai8e5a0502012-06-21 15:49:33 +02003706
3707 alc_auto_parse_customize_define(codec);
3708
Takashi Iwai1bb7e432011-10-17 16:50:59 +02003709 if ((alc_get_coef0(codec) & (1 << 14)) &&
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003710 codec->bus->pci->subsystem_vendor == 0x1025 &&
3711 spec->cdefine.platform_type == 1) {
3712 if (alc_codec_rename(codec, "ALC272X") < 0)
3713 goto error;
Takashi Iwai20ca0c32011-10-17 16:00:35 +02003714 }
Kailang Yang274693f2009-12-03 10:07:50 +01003715
Takashi Iwaib9c51062011-08-24 18:08:07 +02003716 /* automatic parse from the BIOS config */
3717 err = alc662_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003718 if (err < 0)
3719 goto error;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003720
Takashi Iwai08c189f2012-12-19 15:22:24 +01003721 if (!spec->gen.no_analog && has_cdefine_beep(codec)) {
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003722 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003723 if (err < 0)
3724 goto error;
Kailang Yangda00c242010-03-19 11:23:45 +01003725 switch (codec->vendor_id) {
3726 case 0x10ec0662:
3727 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
3728 break;
3729 case 0x10ec0272:
3730 case 0x10ec0663:
3731 case 0x10ec0665:
3732 set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
3733 break;
3734 case 0x10ec0273:
3735 set_beep_amp(spec, 0x0b, 0x03, HDA_INPUT);
3736 break;
3737 }
Kailang Yangcec27c82010-02-04 14:18:18 +01003738 }
Takashi Iwai2134ea42008-01-10 16:53:55 +01003739
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003740 codec->patch_ops = alc_patch_ops;
Takashi Iwai1c716152011-04-07 10:37:16 +02003741 spec->shutup = alc_eapd_shutup;
David Henningsson6cb3b702010-09-09 08:51:44 +02003742
Takashi Iwai1727a772013-01-10 09:52:52 +01003743 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
Takashi Iwai589876e2012-02-20 15:47:55 +01003744
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003745 return 0;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003746
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003747 error:
3748 alc_free(codec);
3749 return err;
Kailang Yangb478b992011-05-18 11:51:15 +02003750}
3751
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003752/*
Kailang Yangd1eb57f2010-06-23 16:25:26 +02003753 * ALC680 support
3754 */
Kailang Yangd1eb57f2010-06-23 16:25:26 +02003755
Kailang Yangd1eb57f2010-06-23 16:25:26 +02003756static int alc680_parse_auto_config(struct hda_codec *codec)
3757{
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003758 return alc_parse_auto_config(codec, NULL, NULL);
Kailang Yangd1eb57f2010-06-23 16:25:26 +02003759}
3760
Kailang Yangd1eb57f2010-06-23 16:25:26 +02003761/*
Kailang Yangd1eb57f2010-06-23 16:25:26 +02003762 */
Kailang Yangd1eb57f2010-06-23 16:25:26 +02003763static int patch_alc680(struct hda_codec *codec)
3764{
Kailang Yangd1eb57f2010-06-23 16:25:26 +02003765 int err;
3766
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02003767 /* ALC680 has no aa-loopback mixer */
Takashi Iwai3de95172012-05-07 18:03:15 +02003768 err = alc_alloc_spec(codec, 0);
3769 if (err < 0)
3770 return err;
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02003771
Takashi Iwai1ebec5f2011-08-15 13:21:48 +02003772 /* automatic parse from the BIOS config */
3773 err = alc680_parse_auto_config(codec);
3774 if (err < 0) {
3775 alc_free(codec);
3776 return err;
Kailang Yangd1eb57f2010-06-23 16:25:26 +02003777 }
3778
Kailang Yangd1eb57f2010-06-23 16:25:26 +02003779 codec->patch_ops = alc_patch_ops;
Kailang Yangd1eb57f2010-06-23 16:25:26 +02003780
3781 return 0;
3782}
3783
3784/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003785 * patch entries
3786 */
Takashi Iwaia9111322011-05-02 11:30:18 +02003787static const struct hda_codec_preset snd_hda_preset_realtek[] = {
Kailang Yang296f0332011-05-18 11:52:36 +02003788 { .id = 0x10ec0221, .name = "ALC221", .patch = patch_alc269 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789 { .id = 0x10ec0260, .name = "ALC260", .patch = patch_alc260 },
Kailang Yangdf694da2005-12-05 19:42:22 +01003790 { .id = 0x10ec0262, .name = "ALC262", .patch = patch_alc262 },
Kailang Yangf6a92242007-12-13 16:52:54 +01003791 { .id = 0x10ec0267, .name = "ALC267", .patch = patch_alc268 },
Kailang Yanga361d842007-06-05 12:30:55 +02003792 { .id = 0x10ec0268, .name = "ALC268", .patch = patch_alc268 },
Kailang Yangf6a92242007-12-13 16:52:54 +01003793 { .id = 0x10ec0269, .name = "ALC269", .patch = patch_alc269 },
Kailang Yangebb83ee2009-12-17 12:23:00 +01003794 { .id = 0x10ec0270, .name = "ALC270", .patch = patch_alc269 },
Kailang Yang01afd412008-10-15 11:22:09 +02003795 { .id = 0x10ec0272, .name = "ALC272", .patch = patch_alc662 },
Kailang Yangebb83ee2009-12-17 12:23:00 +01003796 { .id = 0x10ec0275, .name = "ALC275", .patch = patch_alc269 },
Kailang Yang296f0332011-05-18 11:52:36 +02003797 { .id = 0x10ec0276, .name = "ALC276", .patch = patch_alc269 },
David Henningssonbefae822012-06-25 19:49:28 +02003798 { .id = 0x10ec0280, .name = "ALC280", .patch = patch_alc269 },
David Henningsson4e01ec62012-07-18 07:38:46 +02003799 { .id = 0x10ec0282, .name = "ALC282", .patch = patch_alc269 },
Kailang Yang7ff34ad2012-10-06 17:02:30 +02003800 { .id = 0x10ec0283, .name = "ALC283", .patch = patch_alc269 },
Kailang Yang065380f2013-01-10 10:25:48 +01003801 { .id = 0x10ec0284, .name = "ALC284", .patch = patch_alc269 },
Kailang Yang7ff34ad2012-10-06 17:02:30 +02003802 { .id = 0x10ec0290, .name = "ALC290", .patch = patch_alc269 },
David Henningssonaf02dde2012-11-21 08:57:58 +01003803 { .id = 0x10ec0292, .name = "ALC292", .patch = patch_alc269 },
Jakub Schmidtkef32610e2007-02-02 18:17:27 +01003804 { .id = 0x10ec0861, .rev = 0x100340, .name = "ALC660",
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003805 .patch = patch_alc861 },
Jakub Schmidtkef32610e2007-02-02 18:17:27 +01003806 { .id = 0x10ec0660, .name = "ALC660-VD", .patch = patch_alc861vd },
3807 { .id = 0x10ec0861, .name = "ALC861", .patch = patch_alc861 },
3808 { .id = 0x10ec0862, .name = "ALC861-VD", .patch = patch_alc861vd },
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003809 { .id = 0x10ec0662, .rev = 0x100002, .name = "ALC662 rev2",
Takashi Iwai4953550a2009-06-30 15:28:30 +02003810 .patch = patch_alc882 },
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003811 { .id = 0x10ec0662, .rev = 0x100101, .name = "ALC662 rev1",
3812 .patch = patch_alc662 },
David Henningssoncc667a72011-10-18 14:07:51 +02003813 { .id = 0x10ec0662, .rev = 0x100300, .name = "ALC662 rev3",
3814 .patch = patch_alc662 },
Kailang Yang6dda9f42008-05-27 12:05:31 +02003815 { .id = 0x10ec0663, .name = "ALC663", .patch = patch_alc662 },
Kailang Yangcec27c82010-02-04 14:18:18 +01003816 { .id = 0x10ec0665, .name = "ALC665", .patch = patch_alc662 },
Kailang Yang19a62822012-11-08 10:25:37 +01003817 { .id = 0x10ec0668, .name = "ALC668", .patch = patch_alc662 },
Kailang Yang6227cdc2010-02-25 08:36:52 +01003818 { .id = 0x10ec0670, .name = "ALC670", .patch = patch_alc662 },
Kailang Yangd1eb57f2010-06-23 16:25:26 +02003819 { .id = 0x10ec0680, .name = "ALC680", .patch = patch_alc680 },
Jakub Schmidtkef32610e2007-02-02 18:17:27 +01003820 { .id = 0x10ec0880, .name = "ALC880", .patch = patch_alc880 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821 { .id = 0x10ec0882, .name = "ALC882", .patch = patch_alc882 },
Takashi Iwai4953550a2009-06-30 15:28:30 +02003822 { .id = 0x10ec0883, .name = "ALC883", .patch = patch_alc882 },
Clive Messer669faba2008-09-30 15:49:13 +02003823 { .id = 0x10ec0885, .rev = 0x100101, .name = "ALC889A",
Takashi Iwai4953550a2009-06-30 15:28:30 +02003824 .patch = patch_alc882 },
Takashi Iwaicb308f92008-04-16 14:13:29 +02003825 { .id = 0x10ec0885, .rev = 0x100103, .name = "ALC889A",
Takashi Iwai4953550a2009-06-30 15:28:30 +02003826 .patch = patch_alc882 },
Kailang Yangdf694da2005-12-05 19:42:22 +01003827 { .id = 0x10ec0885, .name = "ALC885", .patch = patch_alc882 },
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003828 { .id = 0x10ec0887, .name = "ALC887", .patch = patch_alc882 },
Kailang Yang44426082008-10-15 11:18:05 +02003829 { .id = 0x10ec0888, .rev = 0x100101, .name = "ALC1200",
Takashi Iwai4953550a2009-06-30 15:28:30 +02003830 .patch = patch_alc882 },
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003831 { .id = 0x10ec0888, .name = "ALC888", .patch = patch_alc882 },
Takashi Iwai4953550a2009-06-30 15:28:30 +02003832 { .id = 0x10ec0889, .name = "ALC889", .patch = patch_alc882 },
Kailang Yang274693f2009-12-03 10:07:50 +01003833 { .id = 0x10ec0892, .name = "ALC892", .patch = patch_alc662 },
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003834 { .id = 0x10ec0899, .name = "ALC898", .patch = patch_alc882 },
Kailang Yang19a62822012-11-08 10:25:37 +01003835 { .id = 0x10ec0900, .name = "ALC1150", .patch = patch_alc882 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836 {} /* terminator */
3837};
Takashi Iwai1289e9e2008-11-27 15:47:11 +01003838
3839MODULE_ALIAS("snd-hda-codec-id:10ec*");
3840
3841MODULE_LICENSE("GPL");
3842MODULE_DESCRIPTION("Realtek HD-audio codec");
3843
3844static struct hda_codec_preset_list realtek_list = {
3845 .preset = snd_hda_preset_realtek,
3846 .owner = THIS_MODULE,
3847};
3848
3849static int __init patch_realtek_init(void)
3850{
3851 return snd_hda_add_codec_preset(&realtek_list);
3852}
3853
3854static void __exit patch_realtek_exit(void)
3855{
3856 snd_hda_delete_codec_preset(&realtek_list);
3857}
3858
3859module_init(patch_realtek_init)
3860module_exit(patch_realtek_exit)