blob: 896bc2cc9293db75e3c1d80ee4bf2d319bbcc81d [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 Iwai4a79ba342009-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
Takashi Iwai23d30f22012-05-07 17:17:32 +020069/* make compatible with old code */
70#define alc_apply_pincfgs snd_hda_apply_pincfgs
71#define alc_apply_fixup snd_hda_apply_fixup
72#define alc_pick_fixup snd_hda_pick_fixup
73#define alc_fixup hda_fixup
74#define alc_pincfg hda_pintbl
75#define alc_model_fixup hda_model_fixup
76
77#define ALC_FIXUP_PINS HDA_FIXUP_PINS
78#define ALC_FIXUP_VERBS HDA_FIXUP_VERBS
79#define ALC_FIXUP_FUNC HDA_FIXUP_FUNC
80
81#define ALC_FIXUP_ACT_PRE_PROBE HDA_FIXUP_ACT_PRE_PROBE
82#define ALC_FIXUP_ACT_PROBE HDA_FIXUP_ACT_PROBE
83#define ALC_FIXUP_ACT_INIT HDA_FIXUP_ACT_INIT
84#define ALC_FIXUP_ACT_BUILD HDA_FIXUP_ACT_BUILD
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086struct alc_spec {
Takashi Iwai08c189f2012-12-19 15:22:24 +010087 struct hda_gen_spec gen; /* must be at head */
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 /* codec parameterization */
Takashi Iwaia9111322011-05-02 11:30:18 +020090 const struct snd_kcontrol_new *mixers[5]; /* mixer arrays */
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 unsigned int num_mixers;
Takashi Iwai45bdd1c2009-02-06 16:11:25 +010092 unsigned int beep_amp; /* beep amp value, set via set_beep_amp() */
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Kailang Yangda00c242010-03-19 11:23:45 +010094 struct alc_customize_define cdefine;
Takashi Iwai08c189f2012-12-19 15:22:24 +010095 unsigned int parse_flags; /* flag for snd_hda_parse_pin_defcfg() */
96
97 /* inverted dmic fix */
98 unsigned int inv_dmic_fixup:1; /* has inverted digital-mic workaround */
99 unsigned int inv_dmic_muted:1; /* R-ch of inv d-mic is muted? */
Takashi Iwai125821a2012-06-22 14:30:29 +0200100 hda_nid_t inv_dmic_pin;
Takashi Iwaiab16c6d2012-11-29 09:56:50 +0100101
Takashi Iwaiae6b8132006-03-03 16:47:17 +0100102 /* hooks */
103 void (*init_hook)(struct hda_codec *codec);
Takashi Iwai83012a72012-08-24 18:38:08 +0200104#ifdef CONFIG_PM
Daniel T Chenc97259d2009-12-27 18:52:08 -0500105 void (*power_hook)(struct hda_codec *codec);
Hector Martinf5de24b2009-12-20 22:51:31 +0100106#endif
Takashi Iwai1c7161532011-04-07 10:37:16 +0200107 void (*shutup)(struct hda_codec *codec);
Takashi Iwaid922b512011-04-28 12:18:53 +0200108
Takashi Iwai4a79ba342009-04-22 16:31:35 +0200109 int init_amp;
Takashi Iwaid433a672010-09-20 15:11:54 +0200110 int codec_variant; /* flag for other variants */
Takashi Iwaie64f14f2009-01-20 18:32:55 +0100111
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +0200112 /* for PLL fix */
113 hda_nid_t pll_nid;
114 unsigned int pll_coef_idx, pll_coef_bit;
Takashi Iwai1bb7e432011-10-17 16:50:59 +0200115 unsigned int coef0;
Kailang Yangdf694da2005-12-05 19:42:22 +0100116};
117
Takashi Iwai23f0c042009-02-26 13:03:58 +0100118/*
Takashi Iwai1d045db2011-07-07 18:23:21 +0200119 * Append the given mixer and verb elements for the later use
120 * The mixer array is referred in build_controls(), and init_verbs are
121 * called in init().
Takashi Iwaid88897e2008-10-31 15:01:37 +0100122 */
Takashi Iwaia9111322011-05-02 11:30:18 +0200123static void add_mixer(struct alc_spec *spec, const struct snd_kcontrol_new *mix)
Takashi Iwaid88897e2008-10-31 15:01:37 +0100124{
125 if (snd_BUG_ON(spec->num_mixers >= ARRAY_SIZE(spec->mixers)))
126 return;
127 spec->mixers[spec->num_mixers++] = mix;
128}
129
Takashi Iwaid88897e2008-10-31 15:01:37 +0100130/*
Takashi Iwai1d045db2011-07-07 18:23:21 +0200131 * GPIO setup tables, used in initialization
Kailang Yangdf694da2005-12-05 19:42:22 +0100132 */
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200133/* Enable GPIO mask and set output */
Takashi Iwaia9111322011-05-02 11:30:18 +0200134static const struct hda_verb alc_gpio1_init_verbs[] = {
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200135 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
136 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
137 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
138 { }
139};
140
Takashi Iwaia9111322011-05-02 11:30:18 +0200141static const struct hda_verb alc_gpio2_init_verbs[] = {
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200142 {0x01, AC_VERB_SET_GPIO_MASK, 0x02},
143 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x02},
144 {0x01, AC_VERB_SET_GPIO_DATA, 0x02},
145 { }
146};
147
Takashi Iwaia9111322011-05-02 11:30:18 +0200148static const struct hda_verb alc_gpio3_init_verbs[] = {
Kailang Yangbdd148a2007-05-08 15:19:08 +0200149 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
150 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
151 {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
152 { }
153};
154
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +0200155/*
156 * Fix hardware PLL issue
157 * On some codecs, the analog PLL gating control must be off while
158 * the default value is 1.
159 */
160static void alc_fix_pll(struct hda_codec *codec)
161{
162 struct alc_spec *spec = codec->spec;
163 unsigned int val;
164
165 if (!spec->pll_nid)
166 return;
167 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_COEF_INDEX,
168 spec->pll_coef_idx);
169 val = snd_hda_codec_read(codec, spec->pll_nid, 0,
170 AC_VERB_GET_PROC_COEF, 0);
171 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_COEF_INDEX,
172 spec->pll_coef_idx);
173 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_PROC_COEF,
174 val & ~(1 << spec->pll_coef_bit));
175}
176
177static void alc_fix_pll_init(struct hda_codec *codec, hda_nid_t nid,
178 unsigned int coef_idx, unsigned int coef_bit)
179{
180 struct alc_spec *spec = codec->spec;
181 spec->pll_nid = nid;
182 spec->pll_coef_idx = coef_idx;
183 spec->pll_coef_bit = coef_bit;
184 alc_fix_pll(codec);
185}
186
Takashi Iwaicf5a2272012-02-20 16:31:07 +0100187/* update the master volume per volume-knob's unsol event */
David Henningsson29adc4b2012-09-25 11:31:00 +0200188static void alc_update_knob_master(struct hda_codec *codec, struct hda_jack_tbl *jack)
Takashi Iwaicf5a2272012-02-20 16:31:07 +0100189{
190 unsigned int val;
191 struct snd_kcontrol *kctl;
192 struct snd_ctl_elem_value *uctl;
193
194 kctl = snd_hda_find_mixer_ctl(codec, "Master Playback Volume");
195 if (!kctl)
196 return;
197 uctl = kzalloc(sizeof(*uctl), GFP_KERNEL);
198 if (!uctl)
199 return;
David Henningsson29adc4b2012-09-25 11:31:00 +0200200 val = snd_hda_codec_read(codec, jack->nid, 0,
Takashi Iwaicf5a2272012-02-20 16:31:07 +0100201 AC_VERB_GET_VOLUME_KNOB_CONTROL, 0);
202 val &= HDA_AMP_VOLMASK;
203 uctl->value.integer.value[0] = val;
204 uctl->value.integer.value[1] = val;
205 kctl->put(kctl, uctl);
206 kfree(uctl);
207}
208
David Henningsson29adc4b2012-09-25 11:31:00 +0200209static void alc880_unsol_event(struct hda_codec *codec, unsigned int res)
Takashi Iwaif21d78e2012-01-19 12:10:29 +0100210{
David Henningsson29adc4b2012-09-25 11:31:00 +0200211 /* For some reason, the res given from ALC880 is broken.
212 Here we adjust it properly. */
213 snd_hda_jack_unsol_event(codec, res >> 2);
Takashi Iwaif21d78e2012-01-19 12:10:29 +0100214}
215
Kailang Yangf9423e72008-05-27 12:32:25 +0200216/* additional initialization for ALC888 variants */
217static void alc888_coef_init(struct hda_codec *codec)
218{
219 unsigned int tmp;
220
221 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0);
222 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
223 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
Takashi Iwai37db6232009-03-05 09:40:16 +0100224 if ((tmp & 0xf0) == 0x20)
Kailang Yangf9423e72008-05-27 12:32:25 +0200225 /* alc888S-VC */
226 snd_hda_codec_read(codec, 0x20, 0,
227 AC_VERB_SET_PROC_COEF, 0x830);
228 else
229 /* alc888-VB */
230 snd_hda_codec_read(codec, 0x20, 0,
231 AC_VERB_SET_PROC_COEF, 0x3030);
232}
233
Takashi Iwai1d045db2011-07-07 18:23:21 +0200234/* additional initialization for ALC889 variants */
Jaroslav Kysela87a8c372009-07-23 10:58:29 +0200235static void alc889_coef_init(struct hda_codec *codec)
236{
237 unsigned int tmp;
238
239 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
240 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
241 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
242 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, tmp|0x2010);
243}
244
Takashi Iwai3fb4a502010-01-19 15:46:37 +0100245/* turn on/off EAPD control (only if available) */
246static void set_eapd(struct hda_codec *codec, hda_nid_t nid, int on)
247{
248 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
249 return;
250 if (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)
251 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
252 on ? 2 : 0);
253}
254
Takashi Iwai691f1fc2011-04-07 10:31:43 +0200255/* turn on/off EAPD controls of the codec */
256static void alc_auto_setup_eapd(struct hda_codec *codec, bool on)
257{
258 /* We currently only handle front, HP */
Takashi Iwai39fa84e2011-06-27 15:28:57 +0200259 static hda_nid_t pins[] = {
260 0x0f, 0x10, 0x14, 0x15, 0
261 };
262 hda_nid_t *p;
263 for (p = pins; *p; p++)
264 set_eapd(codec, *p, on);
Takashi Iwai691f1fc2011-04-07 10:31:43 +0200265}
266
Takashi Iwai1c7161532011-04-07 10:37:16 +0200267/* generic shutup callback;
268 * just turning off EPAD and a little pause for avoiding pop-noise
269 */
270static void alc_eapd_shutup(struct hda_codec *codec)
271{
272 alc_auto_setup_eapd(codec, false);
273 msleep(200);
274}
275
Takashi Iwai1d045db2011-07-07 18:23:21 +0200276/* generic EAPD initialization */
Takashi Iwai4a79ba342009-04-22 16:31:35 +0200277static void alc_auto_init_amp(struct hda_codec *codec, int type)
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200278{
Takashi Iwai4a79ba342009-04-22 16:31:35 +0200279 unsigned int tmp;
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200280
Takashi Iwai39fa84e2011-06-27 15:28:57 +0200281 alc_auto_setup_eapd(codec, true);
Takashi Iwai4a79ba342009-04-22 16:31:35 +0200282 switch (type) {
283 case ALC_INIT_GPIO1:
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200284 snd_hda_sequence_write(codec, alc_gpio1_init_verbs);
285 break;
Takashi Iwai4a79ba342009-04-22 16:31:35 +0200286 case ALC_INIT_GPIO2:
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200287 snd_hda_sequence_write(codec, alc_gpio2_init_verbs);
288 break;
Takashi Iwai4a79ba342009-04-22 16:31:35 +0200289 case ALC_INIT_GPIO3:
Kailang Yangbdd148a2007-05-08 15:19:08 +0200290 snd_hda_sequence_write(codec, alc_gpio3_init_verbs);
291 break;
Takashi Iwai4a79ba342009-04-22 16:31:35 +0200292 case ALC_INIT_DEFAULT:
Kailang Yangc9b58002007-10-16 14:30:01 +0200293 switch (codec->vendor_id) {
294 case 0x10ec0260:
295 snd_hda_codec_write(codec, 0x1a, 0,
296 AC_VERB_SET_COEF_INDEX, 7);
297 tmp = snd_hda_codec_read(codec, 0x1a, 0,
298 AC_VERB_GET_PROC_COEF, 0);
299 snd_hda_codec_write(codec, 0x1a, 0,
300 AC_VERB_SET_COEF_INDEX, 7);
301 snd_hda_codec_write(codec, 0x1a, 0,
302 AC_VERB_SET_PROC_COEF,
303 tmp | 0x2010);
304 break;
305 case 0x10ec0262:
306 case 0x10ec0880:
307 case 0x10ec0882:
308 case 0x10ec0883:
309 case 0x10ec0885:
Takashi Iwai4a5a4c52009-02-06 12:46:59 +0100310 case 0x10ec0887:
Takashi Iwai20b67dd2011-03-23 22:54:32 +0100311 /*case 0x10ec0889:*/ /* this causes an SPDIF problem */
Jaroslav Kysela87a8c372009-07-23 10:58:29 +0200312 alc889_coef_init(codec);
Kailang Yangc9b58002007-10-16 14:30:01 +0200313 break;
Kailang Yangf9423e72008-05-27 12:32:25 +0200314 case 0x10ec0888:
Takashi Iwai4a79ba342009-04-22 16:31:35 +0200315 alc888_coef_init(codec);
Kailang Yangf9423e72008-05-27 12:32:25 +0200316 break;
Takashi Iwai0aea7782010-01-25 15:44:11 +0100317#if 0 /* XXX: This may cause the silent output on speaker on some machines */
Kailang Yangc9b58002007-10-16 14:30:01 +0200318 case 0x10ec0267:
319 case 0x10ec0268:
320 snd_hda_codec_write(codec, 0x20, 0,
321 AC_VERB_SET_COEF_INDEX, 7);
322 tmp = snd_hda_codec_read(codec, 0x20, 0,
323 AC_VERB_GET_PROC_COEF, 0);
324 snd_hda_codec_write(codec, 0x20, 0,
Kailang Yangea1fb292008-08-26 12:58:38 +0200325 AC_VERB_SET_COEF_INDEX, 7);
Kailang Yangc9b58002007-10-16 14:30:01 +0200326 snd_hda_codec_write(codec, 0x20, 0,
327 AC_VERB_SET_PROC_COEF,
328 tmp | 0x3000);
329 break;
Takashi Iwai0aea7782010-01-25 15:44:11 +0100330#endif /* XXX */
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200331 }
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200332 break;
333 }
Takashi Iwai4a79ba342009-04-22 16:31:35 +0200334}
Kailang Yangea1fb292008-08-26 12:58:38 +0200335
Takashi Iwai6c819492009-08-10 18:47:44 +0200336
Takashi Iwai1d045db2011-07-07 18:23:21 +0200337/*
338 * Realtek SSID verification
339 */
340
David Henningsson90622912010-10-14 14:50:18 +0200341/* Could be any non-zero and even value. When used as fixup, tells
342 * the driver to ignore any present sku defines.
343 */
344#define ALC_FIXUP_SKU_IGNORE (2)
345
Takashi Iwai23d30f22012-05-07 17:17:32 +0200346static void alc_fixup_sku_ignore(struct hda_codec *codec,
347 const struct hda_fixup *fix, int action)
348{
349 struct alc_spec *spec = codec->spec;
350 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
351 spec->cdefine.fixup = 1;
352 spec->cdefine.sku_cfg = ALC_FIXUP_SKU_IGNORE;
353 }
354}
355
Kailang Yangda00c242010-03-19 11:23:45 +0100356static int alc_auto_parse_customize_define(struct hda_codec *codec)
357{
358 unsigned int ass, tmp, i;
Takashi Iwai7fb56222010-03-22 17:09:47 +0100359 unsigned nid = 0;
Kailang Yangda00c242010-03-19 11:23:45 +0100360 struct alc_spec *spec = codec->spec;
361
Takashi Iwaib6cbe512010-07-28 17:43:36 +0200362 spec->cdefine.enable_pcbeep = 1; /* assume always enabled */
363
David Henningsson90622912010-10-14 14:50:18 +0200364 if (spec->cdefine.fixup) {
365 ass = spec->cdefine.sku_cfg;
366 if (ass == ALC_FIXUP_SKU_IGNORE)
367 return -1;
368 goto do_sku;
369 }
370
Kailang Yangda00c242010-03-19 11:23:45 +0100371 ass = codec->subsystem_id & 0xffff;
Takashi Iwaib6cbe512010-07-28 17:43:36 +0200372 if (ass != codec->bus->pci->subsystem_device && (ass & 1))
Kailang Yangda00c242010-03-19 11:23:45 +0100373 goto do_sku;
374
375 nid = 0x1d;
376 if (codec->vendor_id == 0x10ec0260)
377 nid = 0x17;
378 ass = snd_hda_codec_get_pincfg(codec, nid);
379
380 if (!(ass & 1)) {
381 printk(KERN_INFO "hda_codec: %s: SKU not ready 0x%08x\n",
382 codec->chip_name, ass);
383 return -1;
384 }
385
386 /* check sum */
387 tmp = 0;
388 for (i = 1; i < 16; i++) {
389 if ((ass >> i) & 1)
390 tmp++;
391 }
392 if (((ass >> 16) & 0xf) != tmp)
393 return -1;
394
395 spec->cdefine.port_connectivity = ass >> 30;
396 spec->cdefine.enable_pcbeep = (ass & 0x100000) >> 20;
397 spec->cdefine.check_sum = (ass >> 16) & 0xf;
398 spec->cdefine.customization = ass >> 8;
399do_sku:
400 spec->cdefine.sku_cfg = ass;
401 spec->cdefine.external_amp = (ass & 0x38) >> 3;
402 spec->cdefine.platform_type = (ass & 0x4) >> 2;
403 spec->cdefine.swap = (ass & 0x2) >> 1;
404 spec->cdefine.override = ass & 0x1;
405
406 snd_printd("SKU: Nid=0x%x sku_cfg=0x%08x\n",
407 nid, spec->cdefine.sku_cfg);
408 snd_printd("SKU: port_connectivity=0x%x\n",
409 spec->cdefine.port_connectivity);
410 snd_printd("SKU: enable_pcbeep=0x%x\n", spec->cdefine.enable_pcbeep);
411 snd_printd("SKU: check_sum=0x%08x\n", spec->cdefine.check_sum);
412 snd_printd("SKU: customization=0x%08x\n", spec->cdefine.customization);
413 snd_printd("SKU: external_amp=0x%x\n", spec->cdefine.external_amp);
414 snd_printd("SKU: platform_type=0x%x\n", spec->cdefine.platform_type);
415 snd_printd("SKU: swap=0x%x\n", spec->cdefine.swap);
416 snd_printd("SKU: override=0x%x\n", spec->cdefine.override);
417
418 return 0;
419}
420
Takashi Iwai08c189f2012-12-19 15:22:24 +0100421/* return the position of NID in the list, or -1 if not found */
422static int find_idx_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
423{
424 int i;
425 for (i = 0; i < nums; i++)
426 if (list[i] == nid)
427 return i;
428 return -1;
429}
Takashi Iwai1d045db2011-07-07 18:23:21 +0200430/* return true if the given NID is found in the list */
Takashi Iwai3af9ee62011-06-27 12:34:01 +0200431static bool found_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
432{
Takashi Iwai21268962011-07-07 15:01:13 +0200433 return find_idx_in_nid_list(nid, list, nums) >= 0;
Takashi Iwai3af9ee62011-06-27 12:34:01 +0200434}
435
Takashi Iwai4a79ba342009-04-22 16:31:35 +0200436/* check subsystem ID and set up device-specific initialization;
437 * return 1 if initialized, 0 if invalid SSID
438 */
439/* 32-bit subsystem ID for BIOS loading in HD Audio codec.
440 * 31 ~ 16 : Manufacture ID
441 * 15 ~ 8 : SKU ID
442 * 7 ~ 0 : Assembly ID
443 * port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
444 */
445static int alc_subsystem_id(struct hda_codec *codec,
446 hda_nid_t porta, hda_nid_t porte,
Kailang Yang6227cdc2010-02-25 08:36:52 +0100447 hda_nid_t portd, hda_nid_t porti)
Takashi Iwai4a79ba342009-04-22 16:31:35 +0200448{
449 unsigned int ass, tmp, i;
450 unsigned nid;
451 struct alc_spec *spec = codec->spec;
452
David Henningsson90622912010-10-14 14:50:18 +0200453 if (spec->cdefine.fixup) {
454 ass = spec->cdefine.sku_cfg;
455 if (ass == ALC_FIXUP_SKU_IGNORE)
456 return 0;
457 goto do_sku;
458 }
459
Takashi Iwai4a79ba342009-04-22 16:31:35 +0200460 ass = codec->subsystem_id & 0xffff;
461 if ((ass != codec->bus->pci->subsystem_device) && (ass & 1))
462 goto do_sku;
463
464 /* invalid SSID, check the special NID pin defcfg instead */
465 /*
Sasha Alexandrdef319f2009-06-16 16:00:15 -0400466 * 31~30 : port connectivity
Takashi Iwai4a79ba342009-04-22 16:31:35 +0200467 * 29~21 : reserve
468 * 20 : PCBEEP input
469 * 19~16 : Check sum (15:1)
470 * 15~1 : Custom
471 * 0 : override
472 */
473 nid = 0x1d;
474 if (codec->vendor_id == 0x10ec0260)
475 nid = 0x17;
476 ass = snd_hda_codec_get_pincfg(codec, nid);
477 snd_printd("realtek: No valid SSID, "
478 "checking pincfg 0x%08x for NID 0x%x\n",
Takashi Iwaicb6605c2009-04-28 13:03:19 +0200479 ass, nid);
Kailang Yang6227cdc2010-02-25 08:36:52 +0100480 if (!(ass & 1))
Takashi Iwai4a79ba342009-04-22 16:31:35 +0200481 return 0;
482 if ((ass >> 30) != 1) /* no physical connection */
483 return 0;
484
485 /* check sum */
486 tmp = 0;
487 for (i = 1; i < 16; i++) {
488 if ((ass >> i) & 1)
489 tmp++;
490 }
491 if (((ass >> 16) & 0xf) != tmp)
492 return 0;
493do_sku:
494 snd_printd("realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n",
495 ass & 0xffff, codec->vendor_id);
496 /*
497 * 0 : override
498 * 1 : Swap Jack
499 * 2 : 0 --> Desktop, 1 --> Laptop
500 * 3~5 : External Amplifier control
501 * 7~6 : Reserved
502 */
503 tmp = (ass & 0x38) >> 3; /* external Amp control */
504 switch (tmp) {
505 case 1:
506 spec->init_amp = ALC_INIT_GPIO1;
507 break;
508 case 3:
509 spec->init_amp = ALC_INIT_GPIO2;
510 break;
511 case 7:
512 spec->init_amp = ALC_INIT_GPIO3;
513 break;
514 case 5:
Takashi Iwai5a8cfb42010-11-26 17:11:18 +0100515 default:
Takashi Iwai4a79ba342009-04-22 16:31:35 +0200516 spec->init_amp = ALC_INIT_DEFAULT;
517 break;
518 }
519
520 /* is laptop or Desktop and enable the function "Mute internal speaker
521 * when the external headphone out jack is plugged"
522 */
523 if (!(ass & 0x8000))
524 return 1;
525 /*
526 * 10~8 : Jack location
527 * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered
528 * 14~13: Resvered
529 * 15 : 1 --> enable the function "Mute internal speaker
530 * when the external headphone out jack is plugged"
531 */
Takashi Iwai08c189f2012-12-19 15:22:24 +0100532 if (!spec->gen.autocfg.hp_pins[0] &&
533 !(spec->gen.autocfg.line_out_pins[0] &&
534 spec->gen.autocfg.line_out_type == AUTO_PIN_HP_OUT)) {
Takashi Iwai01d48252009-10-06 13:21:54 +0200535 hda_nid_t nid;
Kailang Yangc9b58002007-10-16 14:30:01 +0200536 tmp = (ass >> 11) & 0x3; /* HP to chassis */
537 if (tmp == 0)
Takashi Iwai01d48252009-10-06 13:21:54 +0200538 nid = porta;
Kailang Yangc9b58002007-10-16 14:30:01 +0200539 else if (tmp == 1)
Takashi Iwai01d48252009-10-06 13:21:54 +0200540 nid = porte;
Kailang Yangc9b58002007-10-16 14:30:01 +0200541 else if (tmp == 2)
Takashi Iwai01d48252009-10-06 13:21:54 +0200542 nid = portd;
Kailang Yang6227cdc2010-02-25 08:36:52 +0100543 else if (tmp == 3)
544 nid = porti;
Kailang Yangc9b58002007-10-16 14:30:01 +0200545 else
Takashi Iwai4a79ba342009-04-22 16:31:35 +0200546 return 1;
Takashi Iwai08c189f2012-12-19 15:22:24 +0100547 if (found_in_nid_list(nid, spec->gen.autocfg.line_out_pins,
548 spec->gen.autocfg.line_outs))
Takashi Iwai3af9ee62011-06-27 12:34:01 +0200549 return 1;
Takashi Iwai08c189f2012-12-19 15:22:24 +0100550 spec->gen.autocfg.hp_pins[0] = nid;
Kailang Yangc9b58002007-10-16 14:30:01 +0200551 }
Takashi Iwai4a79ba342009-04-22 16:31:35 +0200552 return 1;
553}
Kailang Yangea1fb292008-08-26 12:58:38 +0200554
Takashi Iwai3e6179b2011-07-08 16:55:13 +0200555/* Check the validity of ALC subsystem-id
556 * ports contains an array of 4 pin NIDs for port-A, E, D and I */
557static void alc_ssid_check(struct hda_codec *codec, const hda_nid_t *ports)
Takashi Iwai4a79ba342009-04-22 16:31:35 +0200558{
Takashi Iwai3e6179b2011-07-08 16:55:13 +0200559 if (!alc_subsystem_id(codec, ports[0], ports[1], ports[2], ports[3])) {
Takashi Iwai4a79ba342009-04-22 16:31:35 +0200560 struct alc_spec *spec = codec->spec;
561 snd_printd("realtek: "
562 "Enable default setup for auto mode as fallback\n");
563 spec->init_amp = ALC_INIT_DEFAULT;
Takashi Iwai4a79ba342009-04-22 16:31:35 +0200564 }
Takashi Iwai21268962011-07-07 15:01:13 +0200565}
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200566
Takashi Iwai41e41f12005-06-08 14:48:49 +0200567/*
Takashi Iwai1d045db2011-07-07 18:23:21 +0200568 * COEF access helper functions
569 */
Kailang Yang274693f2009-12-03 10:07:50 +0100570static int alc_read_coef_idx(struct hda_codec *codec,
571 unsigned int coef_idx)
572{
573 unsigned int val;
574 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX,
575 coef_idx);
576 val = snd_hda_codec_read(codec, 0x20, 0,
577 AC_VERB_GET_PROC_COEF, 0);
578 return val;
579}
580
Kailang Yang977ddd62010-09-15 10:02:29 +0200581static void alc_write_coef_idx(struct hda_codec *codec, unsigned int coef_idx,
582 unsigned int coef_val)
583{
584 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX,
585 coef_idx);
586 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF,
587 coef_val);
588}
589
Takashi Iwai1bb7e432011-10-17 16:50:59 +0200590/* a special bypass for COEF 0; read the cached value at the second time */
591static unsigned int alc_get_coef0(struct hda_codec *codec)
592{
593 struct alc_spec *spec = codec->spec;
594 if (!spec->coef0)
595 spec->coef0 = alc_read_coef_idx(codec, 0);
596 return spec->coef0;
597}
598
Takashi Iwai1d045db2011-07-07 18:23:21 +0200599/*
Takashi Iwai1d045db2011-07-07 18:23:21 +0200600 */
601
Takashi Iwai08c189f2012-12-19 15:22:24 +0100602static hda_nid_t get_adc_nid(struct hda_codec *codec, int adc_idx, int imux_idx)
Takashi Iwai757899a2010-07-30 10:48:14 +0200603{
Takashi Iwai08c189f2012-12-19 15:22:24 +0100604 struct hda_gen_spec *spec = codec->spec;
605 if (spec->dyn_adc_switch)
606 adc_idx = spec->dyn_adc_idx[imux_idx];
607 return spec->adc_nids[adc_idx];
Takashi Iwaif9e336f2008-10-31 16:37:07 +0100608}
609
Takashi Iwai666a70d2012-12-17 20:29:29 +0100610static void alc_inv_dmic_sync_adc(struct hda_codec *codec, int adc_idx)
611{
612 struct alc_spec *spec = codec->spec;
Takashi Iwai08c189f2012-12-19 15:22:24 +0100613 struct hda_input_mux *imux = &spec->gen.input_mux;
Takashi Iwai666a70d2012-12-17 20:29:29 +0100614 struct nid_path *path;
615 hda_nid_t nid;
616 int i, dir, parm;
617 unsigned int val;
618
619 for (i = 0; i < imux->num_items; i++) {
Takashi Iwai08c189f2012-12-19 15:22:24 +0100620 if (spec->gen.imux_pins[i] == spec->inv_dmic_pin)
Takashi Iwai666a70d2012-12-17 20:29:29 +0100621 break;
Takashi Iwaia23b6882009-03-23 15:21:36 +0100622 }
Takashi Iwai666a70d2012-12-17 20:29:29 +0100623 if (i >= imux->num_items)
624 return;
Takashi Iwaia23b6882009-03-23 15:21:36 +0100625
Takashi Iwai08c189f2012-12-19 15:22:24 +0100626 path = snd_hda_get_nid_path(codec, spec->inv_dmic_pin,
627 get_adc_nid(codec, adc_idx, i));
Takashi Iwai666a70d2012-12-17 20:29:29 +0100628 val = path->ctls[NID_PATH_MUTE_CTL];
629 if (!val)
630 return;
631 nid = get_amp_nid_(val);
632 dir = get_amp_direction_(val);
633 parm = AC_AMP_SET_RIGHT |
634 (dir == HDA_OUTPUT ? AC_AMP_SET_OUTPUT : AC_AMP_SET_INPUT);
Takashi Iwaia23b6882009-03-23 15:21:36 +0100635
Takashi Iwai666a70d2012-12-17 20:29:29 +0100636 /* we care only right channel */
637 val = snd_hda_codec_amp_read(codec, nid, 1, dir, 0);
638 if (val & 0x80) /* if already muted, we don't need to touch */
639 return;
640 val |= 0x80;
641 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
642 parm | val);
Takashi Iwaia23b6882009-03-23 15:21:36 +0100643}
644
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200645/*
Takashi Iwai125821a2012-06-22 14:30:29 +0200646 * Inverted digital-mic handling
647 *
648 * First off, it's a bit tricky. The "Inverted Internal Mic Capture Switch"
649 * gives the additional mute only to the right channel of the digital mic
650 * capture stream. This is a workaround for avoiding the almost silence
651 * by summing the stereo stream from some (known to be ForteMedia)
652 * digital mic unit.
653 *
654 * The logic is to call alc_inv_dmic_sync() after each action (possibly)
655 * modifying ADC amp. When the mute flag is set, it mutes the R-channel
656 * without caching so that the cache can still keep the original value.
657 * The cached value is then restored when the flag is set off or any other
658 * than d-mic is used as the current input source.
659 */
660static void alc_inv_dmic_sync(struct hda_codec *codec, bool force)
661{
662 struct alc_spec *spec = codec->spec;
Takashi Iwai666a70d2012-12-17 20:29:29 +0100663 int src, nums;
Takashi Iwai125821a2012-06-22 14:30:29 +0200664
665 if (!spec->inv_dmic_fixup)
666 return;
667 if (!spec->inv_dmic_muted && !force)
668 return;
Takashi Iwai08c189f2012-12-19 15:22:24 +0100669 nums = spec->gen.dyn_adc_switch ? 1 : spec->gen.num_adc_nids;
Takashi Iwai666a70d2012-12-17 20:29:29 +0100670 for (src = 0; src < nums; src++) {
Takashi Iwai125821a2012-06-22 14:30:29 +0200671 bool dmic_fixup = false;
Takashi Iwai125821a2012-06-22 14:30:29 +0200672
673 if (spec->inv_dmic_muted &&
Takashi Iwai08c189f2012-12-19 15:22:24 +0100674 spec->gen.imux_pins[spec->gen.cur_mux[src]] == spec->inv_dmic_pin)
Takashi Iwai125821a2012-06-22 14:30:29 +0200675 dmic_fixup = true;
676 if (!dmic_fixup && !force)
677 continue;
Takashi Iwai666a70d2012-12-17 20:29:29 +0100678 alc_inv_dmic_sync_adc(codec, src);
Takashi Iwai125821a2012-06-22 14:30:29 +0200679 }
680}
681
Takashi Iwai08c189f2012-12-19 15:22:24 +0100682static void alc_inv_dmic_hook(struct hda_codec *codec)
683{
684 alc_inv_dmic_sync(codec, false);
685}
686
Takashi Iwai125821a2012-06-22 14:30:29 +0200687static int alc_inv_dmic_sw_get(struct snd_kcontrol *kcontrol,
688 struct snd_ctl_elem_value *ucontrol)
689{
690 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
691 struct alc_spec *spec = codec->spec;
692
693 ucontrol->value.integer.value[0] = !spec->inv_dmic_muted;
694 return 0;
695}
696
697static int alc_inv_dmic_sw_put(struct snd_kcontrol *kcontrol,
698 struct snd_ctl_elem_value *ucontrol)
699{
700 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
701 struct alc_spec *spec = codec->spec;
702 unsigned int val = !ucontrol->value.integer.value[0];
703
704 if (val == spec->inv_dmic_muted)
705 return 0;
706 spec->inv_dmic_muted = val;
707 alc_inv_dmic_sync(codec, true);
708 return 0;
709}
710
711static const struct snd_kcontrol_new alc_inv_dmic_sw = {
712 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Takashi Iwaibc549762012-12-18 15:35:11 +0100713 .name = "Inverted Internal Mic Capture Switch",
Takashi Iwai125821a2012-06-22 14:30:29 +0200714 .info = snd_ctl_boolean_mono_info,
715 .get = alc_inv_dmic_sw_get,
716 .put = alc_inv_dmic_sw_put,
717};
718
719static int alc_add_inv_dmic_mixer(struct hda_codec *codec, hda_nid_t nid)
720{
721 struct alc_spec *spec = codec->spec;
Takashi Iwai668d1e92012-11-29 14:10:17 +0100722
Takashi Iwai08c189f2012-12-19 15:22:24 +0100723 if (!snd_hda_gen_add_kctl(&spec->gen, NULL, &alc_inv_dmic_sw))
Takashi Iwai125821a2012-06-22 14:30:29 +0200724 return -ENOMEM;
725 spec->inv_dmic_fixup = 1;
726 spec->inv_dmic_muted = 0;
727 spec->inv_dmic_pin = nid;
Takashi Iwai08c189f2012-12-19 15:22:24 +0100728 spec->gen.cap_sync_hook = alc_inv_dmic_hook;
Takashi Iwai125821a2012-06-22 14:30:29 +0200729 return 0;
730}
731
Takashi Iwai6e72aa52012-06-25 10:52:25 +0200732/* typically the digital mic is put at node 0x12 */
733static void alc_fixup_inv_dmic_0x12(struct hda_codec *codec,
734 const struct alc_fixup *fix, int action)
735{
736 if (action == ALC_FIXUP_ACT_PROBE)
737 alc_add_inv_dmic_mixer(codec, 0x12);
738}
739
Takashi Iwai603c4012008-07-30 15:01:44 +0200740
Takashi Iwai67d634c2009-11-16 15:35:59 +0100741#ifdef CONFIG_SND_HDA_INPUT_BEEP
Takashi Iwai45bdd1c2009-02-06 16:11:25 +0100742/* additional beep mixers; the actual parameters are overwritten at build */
Takashi Iwaia9111322011-05-02 11:30:18 +0200743static const struct snd_kcontrol_new alc_beep_mixer[] = {
Takashi Iwai45bdd1c2009-02-06 16:11:25 +0100744 HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT),
Jaroslav Kysela123c07a2009-10-21 14:48:23 +0200745 HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_INPUT),
Takashi Iwai45bdd1c2009-02-06 16:11:25 +0100746 { } /* end */
747};
Takashi Iwai67d634c2009-11-16 15:35:59 +0100748#endif
Takashi Iwai45bdd1c2009-02-06 16:11:25 +0100749
Takashi Iwai2eab6942012-12-18 15:30:41 +0100750static int alc_build_controls(struct hda_codec *codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751{
752 struct alc_spec *spec = codec->spec;
Takashi Iwai666a70d2012-12-17 20:29:29 +0100753 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Takashi Iwai08c189f2012-12-19 15:22:24 +0100755 err = snd_hda_gen_build_controls(codec);
756 if (err < 0)
757 return err;
758
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 for (i = 0; i < spec->num_mixers; i++) {
760 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
761 if (err < 0)
762 return err;
763 }
Takashi Iwai2134ea42008-01-10 16:53:55 +0100764
Takashi Iwai67d634c2009-11-16 15:35:59 +0100765#ifdef CONFIG_SND_HDA_INPUT_BEEP
Takashi Iwai45bdd1c2009-02-06 16:11:25 +0100766 /* create beep controls if needed */
767 if (spec->beep_amp) {
Takashi Iwaia9111322011-05-02 11:30:18 +0200768 const struct snd_kcontrol_new *knew;
Takashi Iwai45bdd1c2009-02-06 16:11:25 +0100769 for (knew = alc_beep_mixer; knew->name; knew++) {
770 struct snd_kcontrol *kctl;
771 kctl = snd_ctl_new1(knew, codec);
772 if (!kctl)
773 return -ENOMEM;
774 kctl->private_value = spec->beep_amp;
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +0100775 err = snd_hda_ctl_add(codec, 0, kctl);
Takashi Iwai45bdd1c2009-02-06 16:11:25 +0100776 if (err < 0)
777 return err;
778 }
779 }
Takashi Iwai67d634c2009-11-16 15:35:59 +0100780#endif
Takashi Iwai45bdd1c2009-02-06 16:11:25 +0100781
Takashi Iwai420b0fe2012-03-12 12:35:27 +0100782 alc_apply_fixup(codec, ALC_FIXUP_ACT_BUILD);
783 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784}
785
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787/*
Takashi Iwaiae6b8132006-03-03 16:47:17 +0100788 * Common callbacks
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200789 */
Takashi Iwai16ded522005-06-10 19:58:24 +0200790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791static int alc_init(struct hda_codec *codec)
792{
793 struct alc_spec *spec = codec->spec;
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200794
Takashi Iwai546bb672012-03-07 08:37:19 +0100795 if (spec->init_hook)
796 spec->init_hook(codec);
Kailang Yang526af6e2012-03-07 08:25:20 +0100797
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +0200798 alc_fix_pll(codec);
Takashi Iwai4a79ba342009-04-22 16:31:35 +0200799 alc_auto_init_amp(codec, spec->init_amp);
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +0200800
Takashi Iwai08c189f2012-12-19 15:22:24 +0100801 snd_hda_gen_init(codec);
Takashi Iwai3bd7b642012-12-18 14:57:09 +0100802
Takashi Iwai58701122011-01-13 15:41:45 +0100803 alc_apply_fixup(codec, ALC_FIXUP_ACT_INIT);
804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 return 0;
806}
807
Takashi Iwai83012a72012-08-24 18:38:08 +0200808#ifdef CONFIG_PM
Takashi Iwaicb53c622007-08-10 17:21:45 +0200809static int alc_check_power_status(struct hda_codec *codec, hda_nid_t nid)
810{
811 struct alc_spec *spec = codec->spec;
Takashi Iwai08c189f2012-12-19 15:22:24 +0100812 return snd_hda_check_amp_list_power(codec, &spec->gen.loopback, nid);
Takashi Iwaicb53c622007-08-10 17:21:45 +0200813}
814#endif
815
Takashi Iwaia4e09aa2009-12-27 11:22:24 +0100816static inline void alc_shutup(struct hda_codec *codec)
817{
Takashi Iwai1c7161532011-04-07 10:37:16 +0200818 struct alc_spec *spec = codec->spec;
819
820 if (spec && spec->shutup)
821 spec->shutup(codec);
Takashi Iwaia4e09aa2009-12-27 11:22:24 +0100822 snd_hda_shutup_pins(codec);
823}
824
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825static void alc_free(struct hda_codec *codec)
826{
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200827 struct alc_spec *spec = codec->spec;
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200828
Takashi Iwaif12ab1e2007-04-12 15:51:47 +0200829 if (!spec)
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200830 return;
831
Takashi Iwai08c189f2012-12-19 15:22:24 +0100832 snd_hda_gen_spec_free(&spec->gen);
Kusanagi Kouichi680cd532009-02-05 00:00:58 +0900833 snd_hda_detach_beep_device(codec);
Takashi Iwai08c189f2012-12-19 15:22:24 +0100834 kfree(spec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835}
836
Takashi Iwai83012a72012-08-24 18:38:08 +0200837#ifdef CONFIG_PM
Daniel T Chenc97259d2009-12-27 18:52:08 -0500838static void alc_power_eapd(struct hda_codec *codec)
839{
Takashi Iwai691f1fc2011-04-07 10:31:43 +0200840 alc_auto_setup_eapd(codec, false);
Daniel T Chenc97259d2009-12-27 18:52:08 -0500841}
842
Takashi Iwai68cb2b52012-07-02 15:20:37 +0200843static int alc_suspend(struct hda_codec *codec)
Hector Martinf5de24b2009-12-20 22:51:31 +0100844{
845 struct alc_spec *spec = codec->spec;
Takashi Iwaia4e09aa2009-12-27 11:22:24 +0100846 alc_shutup(codec);
Hector Martinf5de24b2009-12-20 22:51:31 +0100847 if (spec && spec->power_hook)
Daniel T Chenc97259d2009-12-27 18:52:08 -0500848 spec->power_hook(codec);
Hector Martinf5de24b2009-12-20 22:51:31 +0100849 return 0;
850}
851#endif
852
Takashi Iwai2a439522011-07-26 09:52:50 +0200853#ifdef CONFIG_PM
Takashi Iwaie044c392008-10-27 16:56:24 +0100854static int alc_resume(struct hda_codec *codec)
855{
Takashi Iwai1c7161532011-04-07 10:37:16 +0200856 msleep(150); /* to avoid pop noise */
Takashi Iwaie044c392008-10-27 16:56:24 +0100857 codec->patch_ops.init(codec);
858 snd_hda_codec_resume_amp(codec);
859 snd_hda_codec_resume_cache(codec);
Takashi Iwai125821a2012-06-22 14:30:29 +0200860 alc_inv_dmic_sync(codec, true);
Takashi Iwai9e5341b2010-09-21 09:57:06 +0200861 hda_call_check_power_status(codec, 0x01);
Takashi Iwaie044c392008-10-27 16:56:24 +0100862 return 0;
863}
Takashi Iwaie044c392008-10-27 16:56:24 +0100864#endif
865
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866/*
867 */
Takashi Iwaia9111322011-05-02 11:30:18 +0200868static const struct hda_codec_ops alc_patch_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 .build_controls = alc_build_controls,
Takashi Iwai08c189f2012-12-19 15:22:24 +0100870 .build_pcms = snd_hda_gen_build_pcms,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 .init = alc_init,
872 .free = alc_free,
David Henningsson29adc4b2012-09-25 11:31:00 +0200873 .unsol_event = snd_hda_jack_unsol_event,
Takashi Iwai2a439522011-07-26 09:52:50 +0200874#ifdef CONFIG_PM
Takashi Iwaie044c392008-10-27 16:56:24 +0100875 .resume = alc_resume,
876#endif
Takashi Iwai83012a72012-08-24 18:38:08 +0200877#ifdef CONFIG_PM
Hector Martinf5de24b2009-12-20 22:51:31 +0100878 .suspend = alc_suspend,
Takashi Iwaicb53c622007-08-10 17:21:45 +0200879 .check_power_status = alc_check_power_status,
880#endif
Daniel T Chenc97259d2009-12-27 18:52:08 -0500881 .reboot_notify = alc_shutup,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882};
883
David Henningsson29adc4b2012-09-25 11:31:00 +0200884
Kailang Yangc027ddc2010-03-19 11:33:06 +0100885/* replace the codec chip_name with the given string */
886static int alc_codec_rename(struct hda_codec *codec, const char *name)
887{
888 kfree(codec->chip_name);
889 codec->chip_name = kstrdup(name, GFP_KERNEL);
890 if (!codec->chip_name) {
891 alc_free(codec);
892 return -ENOMEM;
893 }
894 return 0;
895}
896
Takashi Iwai2fa522b2005-05-12 14:51:12 +0200897/*
Takashi Iwaie16fb6d2011-10-17 16:39:09 +0200898 * Rename codecs appropriately from COEF value
899 */
900struct alc_codec_rename_table {
901 unsigned int vendor_id;
902 unsigned short coef_mask;
903 unsigned short coef_bits;
904 const char *name;
905};
906
907static struct alc_codec_rename_table rename_tbl[] = {
908 { 0x10ec0269, 0xfff0, 0x3010, "ALC277" },
909 { 0x10ec0269, 0xf0f0, 0x2010, "ALC259" },
910 { 0x10ec0269, 0xf0f0, 0x3010, "ALC258" },
911 { 0x10ec0269, 0x00f0, 0x0010, "ALC269VB" },
912 { 0x10ec0269, 0xffff, 0xa023, "ALC259" },
913 { 0x10ec0269, 0xffff, 0x6023, "ALC281X" },
914 { 0x10ec0269, 0x00f0, 0x0020, "ALC269VC" },
Kailang Yangadcc70b2012-05-25 08:08:38 +0200915 { 0x10ec0269, 0x00f0, 0x0030, "ALC269VD" },
Takashi Iwaie16fb6d2011-10-17 16:39:09 +0200916 { 0x10ec0887, 0x00f0, 0x0030, "ALC887-VD" },
917 { 0x10ec0888, 0x00f0, 0x0030, "ALC888-VD" },
918 { 0x10ec0888, 0xf0f0, 0x3020, "ALC886" },
919 { 0x10ec0899, 0x2000, 0x2000, "ALC899" },
920 { 0x10ec0892, 0xffff, 0x8020, "ALC661" },
921 { 0x10ec0892, 0xffff, 0x8011, "ALC661" },
922 { 0x10ec0892, 0xffff, 0x4011, "ALC656" },
923 { } /* terminator */
924};
925
926static int alc_codec_rename_from_preset(struct hda_codec *codec)
927{
928 const struct alc_codec_rename_table *p;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +0200929
930 for (p = rename_tbl; p->vendor_id; p++) {
931 if (p->vendor_id != codec->vendor_id)
932 continue;
Takashi Iwai1bb7e432011-10-17 16:50:59 +0200933 if ((alc_get_coef0(codec) & p->coef_mask) == p->coef_bits)
Takashi Iwaie16fb6d2011-10-17 16:39:09 +0200934 return alc_codec_rename(codec, p->name);
935 }
936 return 0;
937}
938
Takashi Iwaie4770622011-07-08 11:11:35 +0200939
940/*
Takashi Iwai1d045db2011-07-07 18:23:21 +0200941 * Digital-beep handlers
942 */
943#ifdef CONFIG_SND_HDA_INPUT_BEEP
944#define set_beep_amp(spec, nid, idx, dir) \
945 ((spec)->beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir))
946
947static const struct snd_pci_quirk beep_white_list[] = {
Duncan Roe71100052012-10-10 14:19:50 +0200948 SND_PCI_QUIRK(0x1043, 0x103c, "ASUS", 1),
Takashi Iwai1d045db2011-07-07 18:23:21 +0200949 SND_PCI_QUIRK(0x1043, 0x829f, "ASUS", 1),
950 SND_PCI_QUIRK(0x1043, 0x83ce, "EeePC", 1),
951 SND_PCI_QUIRK(0x1043, 0x831a, "EeePC", 1),
952 SND_PCI_QUIRK(0x1043, 0x834a, "EeePC", 1),
Takashi Iwai78f8baf2012-03-06 14:02:32 +0100953 SND_PCI_QUIRK(0x1458, 0xa002, "GA-MA790X", 1),
Takashi Iwai1d045db2011-07-07 18:23:21 +0200954 SND_PCI_QUIRK(0x8086, 0xd613, "Intel", 1),
955 {}
956};
957
958static inline int has_cdefine_beep(struct hda_codec *codec)
959{
960 struct alc_spec *spec = codec->spec;
961 const struct snd_pci_quirk *q;
962 q = snd_pci_quirk_lookup(codec->bus->pci, beep_white_list);
963 if (q)
964 return q->value;
965 return spec->cdefine.enable_pcbeep;
966}
967#else
968#define set_beep_amp(spec, nid, idx, dir) /* NOP */
969#define has_cdefine_beep(codec) 0
970#endif
971
972/* parse the BIOS configuration and set up the alc_spec */
973/* return 1 if successful, 0 if the proper config is not found,
974 * or a negative error code
975 */
Takashi Iwai3e6179b2011-07-08 16:55:13 +0200976static int alc_parse_auto_config(struct hda_codec *codec,
977 const hda_nid_t *ignore_nids,
978 const hda_nid_t *ssid_nids)
Takashi Iwai1d045db2011-07-07 18:23:21 +0200979{
980 struct alc_spec *spec = codec->spec;
Takashi Iwai08c189f2012-12-19 15:22:24 +0100981 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
Takashi Iwai1d045db2011-07-07 18:23:21 +0200982 int err;
Takashi Iwai1d045db2011-07-07 18:23:21 +0200983
Takashi Iwai53c334a2011-08-23 18:27:14 +0200984 err = snd_hda_parse_pin_defcfg(codec, cfg, ignore_nids,
985 spec->parse_flags);
Takashi Iwai1d045db2011-07-07 18:23:21 +0200986 if (err < 0)
987 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +0200988
Takashi Iwai3e6179b2011-07-08 16:55:13 +0200989 if (ssid_nids)
990 alc_ssid_check(codec, ssid_nids);
991
Takashi Iwai08c189f2012-12-19 15:22:24 +0100992 err = snd_hda_gen_parse_auto_config(codec, cfg);
993 if (err < 0)
994 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +0200995
Takashi Iwai1d045db2011-07-07 18:23:21 +0200996 return 1;
997}
998
Takashi Iwai3de95172012-05-07 18:03:15 +0200999/* common preparation job for alc_spec */
1000static int alc_alloc_spec(struct hda_codec *codec, hda_nid_t mixer_nid)
1001{
1002 struct alc_spec *spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1003 int err;
1004
1005 if (!spec)
1006 return -ENOMEM;
1007 codec->spec = spec;
Takashi Iwai08c189f2012-12-19 15:22:24 +01001008 snd_hda_gen_spec_init(&spec->gen);
1009 spec->gen.mixer_nid = mixer_nid;
1010 spec->gen.own_eapd_ctl = 1;
Takashi Iwai1098b7c2012-12-17 20:03:15 +01001011 codec->single_adc_amp = 1;
Takashi Iwai08c189f2012-12-19 15:22:24 +01001012 /* FIXME: do we need this for all Realtek codec models? */
1013 codec->spdif_status_reset = 1;
Takashi Iwai3de95172012-05-07 18:03:15 +02001014
1015 err = alc_codec_rename_from_preset(codec);
1016 if (err < 0) {
1017 kfree(spec);
1018 return err;
1019 }
1020 return 0;
1021}
1022
Takashi Iwai3e6179b2011-07-08 16:55:13 +02001023static int alc880_parse_auto_config(struct hda_codec *codec)
1024{
1025 static const hda_nid_t alc880_ignore[] = { 0x1d, 0 };
Jesper Juhl7d7eb9e2012-04-12 22:11:25 +02001026 static const hda_nid_t alc880_ssids[] = { 0x15, 0x1b, 0x14, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02001027 return alc_parse_auto_config(codec, alc880_ignore, alc880_ssids);
1028}
1029
Takashi Iwai1d045db2011-07-07 18:23:21 +02001030/*
Takashi Iwaiee3b2962011-11-15 14:26:54 +01001031 * ALC880 fix-ups
1032 */
1033enum {
Takashi Iwai411225a2012-02-20 17:48:19 +01001034 ALC880_FIXUP_GPIO1,
Takashi Iwaiee3b2962011-11-15 14:26:54 +01001035 ALC880_FIXUP_GPIO2,
1036 ALC880_FIXUP_MEDION_RIM,
Takashi Iwaidc6af522012-02-17 16:18:59 +01001037 ALC880_FIXUP_LG,
Takashi Iwaif02aab52012-02-17 16:33:56 +01001038 ALC880_FIXUP_W810,
Takashi Iwai27e917f2012-02-17 17:49:54 +01001039 ALC880_FIXUP_EAPD_COEF,
Takashi Iwaib9368f52012-02-17 17:54:44 +01001040 ALC880_FIXUP_TCL_S700,
Takashi Iwaicf5a2272012-02-20 16:31:07 +01001041 ALC880_FIXUP_VOL_KNOB,
1042 ALC880_FIXUP_FUJITSU,
Takashi Iwaiba533812012-02-20 16:36:52 +01001043 ALC880_FIXUP_F1734,
Takashi Iwai817de922012-02-20 17:20:48 +01001044 ALC880_FIXUP_UNIWILL,
Takashi Iwai967b88c2012-02-20 17:31:02 +01001045 ALC880_FIXUP_UNIWILL_DIG,
Takashi Iwai96e225f2012-02-20 17:41:51 +01001046 ALC880_FIXUP_Z71V,
Takashi Iwai67b6ec32012-02-20 18:20:42 +01001047 ALC880_FIXUP_3ST_BASE,
1048 ALC880_FIXUP_3ST,
1049 ALC880_FIXUP_3ST_DIG,
1050 ALC880_FIXUP_5ST_BASE,
1051 ALC880_FIXUP_5ST,
1052 ALC880_FIXUP_5ST_DIG,
1053 ALC880_FIXUP_6ST_BASE,
1054 ALC880_FIXUP_6ST,
1055 ALC880_FIXUP_6ST_DIG,
Takashi Iwaiee3b2962011-11-15 14:26:54 +01001056};
1057
Takashi Iwaicf5a2272012-02-20 16:31:07 +01001058/* enable the volume-knob widget support on NID 0x21 */
1059static void alc880_fixup_vol_knob(struct hda_codec *codec,
1060 const struct alc_fixup *fix, int action)
1061{
1062 if (action == ALC_FIXUP_ACT_PROBE)
David Henningsson29adc4b2012-09-25 11:31:00 +02001063 snd_hda_jack_detect_enable_callback(codec, 0x21, ALC_DCVOL_EVENT, alc_update_knob_master);
Takashi Iwaicf5a2272012-02-20 16:31:07 +01001064}
1065
Takashi Iwaiee3b2962011-11-15 14:26:54 +01001066static const struct alc_fixup alc880_fixups[] = {
Takashi Iwai411225a2012-02-20 17:48:19 +01001067 [ALC880_FIXUP_GPIO1] = {
1068 .type = ALC_FIXUP_VERBS,
1069 .v.verbs = alc_gpio1_init_verbs,
1070 },
Takashi Iwaiee3b2962011-11-15 14:26:54 +01001071 [ALC880_FIXUP_GPIO2] = {
1072 .type = ALC_FIXUP_VERBS,
1073 .v.verbs = alc_gpio2_init_verbs,
1074 },
1075 [ALC880_FIXUP_MEDION_RIM] = {
1076 .type = ALC_FIXUP_VERBS,
1077 .v.verbs = (const struct hda_verb[]) {
1078 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1079 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
1080 { }
1081 },
1082 .chained = true,
1083 .chain_id = ALC880_FIXUP_GPIO2,
1084 },
Takashi Iwaidc6af522012-02-17 16:18:59 +01001085 [ALC880_FIXUP_LG] = {
1086 .type = ALC_FIXUP_PINS,
1087 .v.pins = (const struct alc_pincfg[]) {
1088 /* disable bogus unused pins */
1089 { 0x16, 0x411111f0 },
1090 { 0x18, 0x411111f0 },
1091 { 0x1a, 0x411111f0 },
1092 { }
1093 }
1094 },
Takashi Iwaif02aab52012-02-17 16:33:56 +01001095 [ALC880_FIXUP_W810] = {
1096 .type = ALC_FIXUP_PINS,
1097 .v.pins = (const struct alc_pincfg[]) {
1098 /* disable bogus unused pins */
1099 { 0x17, 0x411111f0 },
1100 { }
1101 },
1102 .chained = true,
1103 .chain_id = ALC880_FIXUP_GPIO2,
1104 },
Takashi Iwai27e917f2012-02-17 17:49:54 +01001105 [ALC880_FIXUP_EAPD_COEF] = {
1106 .type = ALC_FIXUP_VERBS,
1107 .v.verbs = (const struct hda_verb[]) {
1108 /* change to EAPD mode */
1109 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1110 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
1111 {}
1112 },
1113 },
Takashi Iwaib9368f52012-02-17 17:54:44 +01001114 [ALC880_FIXUP_TCL_S700] = {
1115 .type = ALC_FIXUP_VERBS,
1116 .v.verbs = (const struct hda_verb[]) {
1117 /* change to EAPD mode */
1118 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1119 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
1120 {}
1121 },
1122 .chained = true,
1123 .chain_id = ALC880_FIXUP_GPIO2,
1124 },
Takashi Iwaicf5a2272012-02-20 16:31:07 +01001125 [ALC880_FIXUP_VOL_KNOB] = {
1126 .type = ALC_FIXUP_FUNC,
1127 .v.func = alc880_fixup_vol_knob,
1128 },
1129 [ALC880_FIXUP_FUJITSU] = {
1130 /* override all pins as BIOS on old Amilo is broken */
1131 .type = ALC_FIXUP_PINS,
1132 .v.pins = (const struct alc_pincfg[]) {
1133 { 0x14, 0x0121411f }, /* HP */
1134 { 0x15, 0x99030120 }, /* speaker */
1135 { 0x16, 0x99030130 }, /* bass speaker */
1136 { 0x17, 0x411111f0 }, /* N/A */
1137 { 0x18, 0x411111f0 }, /* N/A */
1138 { 0x19, 0x01a19950 }, /* mic-in */
1139 { 0x1a, 0x411111f0 }, /* N/A */
1140 { 0x1b, 0x411111f0 }, /* N/A */
1141 { 0x1c, 0x411111f0 }, /* N/A */
1142 { 0x1d, 0x411111f0 }, /* N/A */
1143 { 0x1e, 0x01454140 }, /* SPDIF out */
1144 { }
1145 },
1146 .chained = true,
1147 .chain_id = ALC880_FIXUP_VOL_KNOB,
1148 },
Takashi Iwaiba533812012-02-20 16:36:52 +01001149 [ALC880_FIXUP_F1734] = {
1150 /* almost compatible with FUJITSU, but no bass and SPDIF */
1151 .type = ALC_FIXUP_PINS,
1152 .v.pins = (const struct alc_pincfg[]) {
1153 { 0x14, 0x0121411f }, /* HP */
1154 { 0x15, 0x99030120 }, /* speaker */
1155 { 0x16, 0x411111f0 }, /* N/A */
1156 { 0x17, 0x411111f0 }, /* N/A */
1157 { 0x18, 0x411111f0 }, /* N/A */
1158 { 0x19, 0x01a19950 }, /* mic-in */
1159 { 0x1a, 0x411111f0 }, /* N/A */
1160 { 0x1b, 0x411111f0 }, /* N/A */
1161 { 0x1c, 0x411111f0 }, /* N/A */
1162 { 0x1d, 0x411111f0 }, /* N/A */
1163 { 0x1e, 0x411111f0 }, /* N/A */
1164 { }
1165 },
1166 .chained = true,
1167 .chain_id = ALC880_FIXUP_VOL_KNOB,
1168 },
Takashi Iwai817de922012-02-20 17:20:48 +01001169 [ALC880_FIXUP_UNIWILL] = {
1170 /* need to fix HP and speaker pins to be parsed correctly */
1171 .type = ALC_FIXUP_PINS,
1172 .v.pins = (const struct alc_pincfg[]) {
1173 { 0x14, 0x0121411f }, /* HP */
1174 { 0x15, 0x99030120 }, /* speaker */
1175 { 0x16, 0x99030130 }, /* bass speaker */
1176 { }
1177 },
1178 },
Takashi Iwai967b88c2012-02-20 17:31:02 +01001179 [ALC880_FIXUP_UNIWILL_DIG] = {
1180 .type = ALC_FIXUP_PINS,
1181 .v.pins = (const struct alc_pincfg[]) {
1182 /* disable bogus unused pins */
1183 { 0x17, 0x411111f0 },
1184 { 0x19, 0x411111f0 },
1185 { 0x1b, 0x411111f0 },
1186 { 0x1f, 0x411111f0 },
1187 { }
1188 }
1189 },
Takashi Iwai96e225f2012-02-20 17:41:51 +01001190 [ALC880_FIXUP_Z71V] = {
1191 .type = ALC_FIXUP_PINS,
1192 .v.pins = (const struct alc_pincfg[]) {
1193 /* set up the whole pins as BIOS is utterly broken */
1194 { 0x14, 0x99030120 }, /* speaker */
1195 { 0x15, 0x0121411f }, /* HP */
1196 { 0x16, 0x411111f0 }, /* N/A */
1197 { 0x17, 0x411111f0 }, /* N/A */
1198 { 0x18, 0x01a19950 }, /* mic-in */
1199 { 0x19, 0x411111f0 }, /* N/A */
1200 { 0x1a, 0x01813031 }, /* line-in */
1201 { 0x1b, 0x411111f0 }, /* N/A */
1202 { 0x1c, 0x411111f0 }, /* N/A */
1203 { 0x1d, 0x411111f0 }, /* N/A */
1204 { 0x1e, 0x0144111e }, /* SPDIF */
1205 { }
1206 }
1207 },
Takashi Iwai67b6ec32012-02-20 18:20:42 +01001208 [ALC880_FIXUP_3ST_BASE] = {
1209 .type = ALC_FIXUP_PINS,
1210 .v.pins = (const struct alc_pincfg[]) {
1211 { 0x14, 0x01014010 }, /* line-out */
1212 { 0x15, 0x411111f0 }, /* N/A */
1213 { 0x16, 0x411111f0 }, /* N/A */
1214 { 0x17, 0x411111f0 }, /* N/A */
1215 { 0x18, 0x01a19c30 }, /* mic-in */
1216 { 0x19, 0x0121411f }, /* HP */
1217 { 0x1a, 0x01813031 }, /* line-in */
1218 { 0x1b, 0x02a19c40 }, /* front-mic */
1219 { 0x1c, 0x411111f0 }, /* N/A */
1220 { 0x1d, 0x411111f0 }, /* N/A */
1221 /* 0x1e is filled in below */
1222 { 0x1f, 0x411111f0 }, /* N/A */
1223 { }
1224 }
1225 },
1226 [ALC880_FIXUP_3ST] = {
1227 .type = ALC_FIXUP_PINS,
1228 .v.pins = (const struct alc_pincfg[]) {
1229 { 0x1e, 0x411111f0 }, /* N/A */
1230 { }
1231 },
1232 .chained = true,
1233 .chain_id = ALC880_FIXUP_3ST_BASE,
1234 },
1235 [ALC880_FIXUP_3ST_DIG] = {
1236 .type = ALC_FIXUP_PINS,
1237 .v.pins = (const struct alc_pincfg[]) {
1238 { 0x1e, 0x0144111e }, /* SPDIF */
1239 { }
1240 },
1241 .chained = true,
1242 .chain_id = ALC880_FIXUP_3ST_BASE,
1243 },
1244 [ALC880_FIXUP_5ST_BASE] = {
1245 .type = ALC_FIXUP_PINS,
1246 .v.pins = (const struct alc_pincfg[]) {
1247 { 0x14, 0x01014010 }, /* front */
1248 { 0x15, 0x411111f0 }, /* N/A */
1249 { 0x16, 0x01011411 }, /* CLFE */
1250 { 0x17, 0x01016412 }, /* surr */
1251 { 0x18, 0x01a19c30 }, /* mic-in */
1252 { 0x19, 0x0121411f }, /* HP */
1253 { 0x1a, 0x01813031 }, /* line-in */
1254 { 0x1b, 0x02a19c40 }, /* front-mic */
1255 { 0x1c, 0x411111f0 }, /* N/A */
1256 { 0x1d, 0x411111f0 }, /* N/A */
1257 /* 0x1e is filled in below */
1258 { 0x1f, 0x411111f0 }, /* N/A */
1259 { }
1260 }
1261 },
1262 [ALC880_FIXUP_5ST] = {
1263 .type = ALC_FIXUP_PINS,
1264 .v.pins = (const struct alc_pincfg[]) {
1265 { 0x1e, 0x411111f0 }, /* N/A */
1266 { }
1267 },
1268 .chained = true,
1269 .chain_id = ALC880_FIXUP_5ST_BASE,
1270 },
1271 [ALC880_FIXUP_5ST_DIG] = {
1272 .type = ALC_FIXUP_PINS,
1273 .v.pins = (const struct alc_pincfg[]) {
1274 { 0x1e, 0x0144111e }, /* SPDIF */
1275 { }
1276 },
1277 .chained = true,
1278 .chain_id = ALC880_FIXUP_5ST_BASE,
1279 },
1280 [ALC880_FIXUP_6ST_BASE] = {
1281 .type = ALC_FIXUP_PINS,
1282 .v.pins = (const struct alc_pincfg[]) {
1283 { 0x14, 0x01014010 }, /* front */
1284 { 0x15, 0x01016412 }, /* surr */
1285 { 0x16, 0x01011411 }, /* CLFE */
1286 { 0x17, 0x01012414 }, /* side */
1287 { 0x18, 0x01a19c30 }, /* mic-in */
1288 { 0x19, 0x02a19c40 }, /* front-mic */
1289 { 0x1a, 0x01813031 }, /* line-in */
1290 { 0x1b, 0x0121411f }, /* HP */
1291 { 0x1c, 0x411111f0 }, /* N/A */
1292 { 0x1d, 0x411111f0 }, /* N/A */
1293 /* 0x1e is filled in below */
1294 { 0x1f, 0x411111f0 }, /* N/A */
1295 { }
1296 }
1297 },
1298 [ALC880_FIXUP_6ST] = {
1299 .type = ALC_FIXUP_PINS,
1300 .v.pins = (const struct alc_pincfg[]) {
1301 { 0x1e, 0x411111f0 }, /* N/A */
1302 { }
1303 },
1304 .chained = true,
1305 .chain_id = ALC880_FIXUP_6ST_BASE,
1306 },
1307 [ALC880_FIXUP_6ST_DIG] = {
1308 .type = ALC_FIXUP_PINS,
1309 .v.pins = (const struct alc_pincfg[]) {
1310 { 0x1e, 0x0144111e }, /* SPDIF */
1311 { }
1312 },
1313 .chained = true,
1314 .chain_id = ALC880_FIXUP_6ST_BASE,
1315 },
Takashi Iwaiee3b2962011-11-15 14:26:54 +01001316};
1317
1318static const struct snd_pci_quirk alc880_fixup_tbl[] = {
Takashi Iwaif02aab52012-02-17 16:33:56 +01001319 SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_FIXUP_W810),
Takashi Iwai96e225f2012-02-20 17:41:51 +01001320 SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_FIXUP_Z71V),
Takashi Iwai29e3fdc2012-02-20 17:56:57 +01001321 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS", ALC880_FIXUP_GPIO1),
1322 SND_PCI_QUIRK(0x1558, 0x5401, "Clevo GPIO2", ALC880_FIXUP_GPIO2),
Takashi Iwai27e917f2012-02-17 17:49:54 +01001323 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo", ALC880_FIXUP_EAPD_COEF),
Takashi Iwai967b88c2012-02-20 17:31:02 +01001324 SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_FIXUP_UNIWILL_DIG),
Takashi Iwaiba533812012-02-20 16:36:52 +01001325 SND_PCI_QUIRK(0x1584, 0x9054, "Uniwill", ALC880_FIXUP_F1734),
Takashi Iwai817de922012-02-20 17:20:48 +01001326 SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_FIXUP_UNIWILL),
Takashi Iwai7833c7e2012-02-20 17:11:38 +01001327 SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_FIXUP_VOL_KNOB),
Takashi Iwaif02aab52012-02-17 16:33:56 +01001328 SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_FIXUP_W810),
Takashi Iwaiee3b2962011-11-15 14:26:54 +01001329 SND_PCI_QUIRK(0x161f, 0x205d, "Medion Rim 2150", ALC880_FIXUP_MEDION_RIM),
Takashi Iwaiba533812012-02-20 16:36:52 +01001330 SND_PCI_QUIRK(0x1734, 0x107c, "FSC F1734", ALC880_FIXUP_F1734),
Takashi Iwaicf5a2272012-02-20 16:31:07 +01001331 SND_PCI_QUIRK(0x1734, 0x1094, "FSC Amilo M1451G", ALC880_FIXUP_FUJITSU),
Takashi Iwaiba533812012-02-20 16:36:52 +01001332 SND_PCI_QUIRK(0x1734, 0x10ac, "FSC AMILO Xi 1526", ALC880_FIXUP_F1734),
Takashi Iwaicf5a2272012-02-20 16:31:07 +01001333 SND_PCI_QUIRK(0x1734, 0x10b0, "FSC Amilo Pi1556", ALC880_FIXUP_FUJITSU),
Takashi Iwaidc6af522012-02-17 16:18:59 +01001334 SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_FIXUP_LG),
1335 SND_PCI_QUIRK(0x1854, 0x005f, "LG P1 Express", ALC880_FIXUP_LG),
1336 SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_FIXUP_LG),
Takashi Iwaib9368f52012-02-17 17:54:44 +01001337 SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_FIXUP_TCL_S700),
Takashi Iwai67b6ec32012-02-20 18:20:42 +01001338
1339 /* Below is the copied entries from alc880_quirks.c.
1340 * It's not quite sure whether BIOS sets the correct pin-config table
1341 * on these machines, thus they are kept to be compatible with
1342 * the old static quirks. Once when it's confirmed to work without
1343 * these overrides, it'd be better to remove.
1344 */
1345 SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_FIXUP_5ST_DIG),
1346 SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_FIXUP_6ST),
1347 SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_FIXUP_3ST_DIG),
1348 SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_FIXUP_6ST_DIG),
1349 SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_FIXUP_6ST_DIG),
1350 SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_FIXUP_6ST_DIG),
1351 SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_FIXUP_3ST_DIG),
1352 SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_FIXUP_3ST),
1353 SND_PCI_QUIRK(0x1039, 0x1234, NULL, ALC880_FIXUP_6ST_DIG),
1354 SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_FIXUP_3ST),
1355 SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_FIXUP_3ST),
1356 SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_FIXUP_5ST),
1357 SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_FIXUP_5ST),
1358 SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_FIXUP_5ST),
1359 SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_FIXUP_6ST_DIG),
1360 SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_FIXUP_6ST_DIG),
1361 SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_FIXUP_6ST_DIG),
1362 SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_FIXUP_6ST_DIG),
1363 SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_FIXUP_5ST_DIG),
1364 SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_FIXUP_5ST_DIG),
1365 SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_FIXUP_5ST_DIG),
1366 SND_PCI_QUIRK(0x2668, 0x8086, NULL, ALC880_FIXUP_6ST_DIG), /* broken BIOS */
1367 SND_PCI_QUIRK(0x8086, 0x2668, NULL, ALC880_FIXUP_6ST_DIG),
1368 SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1369 SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1370 SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1371 SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1372 SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1373 SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1374 SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1375 SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1376 SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1377 SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1378 /* default Intel */
1379 SND_PCI_QUIRK_VENDOR(0x8086, "Intel mobo", ALC880_FIXUP_3ST),
1380 SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_FIXUP_5ST_DIG),
1381 SND_PCI_QUIRK(0xe803, 0x1019, NULL, ALC880_FIXUP_6ST_DIG),
1382 {}
1383};
1384
1385static const struct alc_model_fixup alc880_fixup_models[] = {
1386 {.id = ALC880_FIXUP_3ST, .name = "3stack"},
1387 {.id = ALC880_FIXUP_3ST_DIG, .name = "3stack-digout"},
1388 {.id = ALC880_FIXUP_5ST, .name = "5stack"},
1389 {.id = ALC880_FIXUP_5ST_DIG, .name = "5stack-digout"},
1390 {.id = ALC880_FIXUP_6ST, .name = "6stack"},
1391 {.id = ALC880_FIXUP_6ST_DIG, .name = "6stack-digout"},
Takashi Iwaiee3b2962011-11-15 14:26:54 +01001392 {}
1393};
1394
1395
1396/*
Takashi Iwai1d045db2011-07-07 18:23:21 +02001397 * OK, here we have finally the patch for ALC880
1398 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02001399static int patch_alc880(struct hda_codec *codec)
1400{
1401 struct alc_spec *spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02001402 int err;
1403
Takashi Iwai3de95172012-05-07 18:03:15 +02001404 err = alc_alloc_spec(codec, 0x0b);
1405 if (err < 0)
1406 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02001407
Takashi Iwai3de95172012-05-07 18:03:15 +02001408 spec = codec->spec;
Takashi Iwai08c189f2012-12-19 15:22:24 +01001409 spec->gen.need_dac_fix = 1;
Takashi Iwai1d045db2011-07-07 18:23:21 +02001410
Takashi Iwai67b6ec32012-02-20 18:20:42 +01001411 alc_pick_fixup(codec, alc880_fixup_models, alc880_fixup_tbl,
1412 alc880_fixups);
1413 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02001414
Takashi Iwai67b6ec32012-02-20 18:20:42 +01001415 /* automatic parse from the BIOS config */
1416 err = alc880_parse_auto_config(codec);
1417 if (err < 0)
1418 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02001419
Takashi Iwai08c189f2012-12-19 15:22:24 +01001420 if (!spec->gen.no_analog) {
Takashi Iwai3e6179b2011-07-08 16:55:13 +02001421 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02001422 if (err < 0)
1423 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02001424 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
1425 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02001426
Takashi Iwai1d045db2011-07-07 18:23:21 +02001427 codec->patch_ops = alc_patch_ops;
David Henningsson29adc4b2012-09-25 11:31:00 +02001428 codec->patch_ops.unsol_event = alc880_unsol_event;
1429
Takashi Iwai1d045db2011-07-07 18:23:21 +02001430
Takashi Iwai589876e2012-02-20 15:47:55 +01001431 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
1432
Takashi Iwai1d045db2011-07-07 18:23:21 +02001433 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02001434
1435 error:
1436 alc_free(codec);
1437 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02001438}
1439
1440
1441/*
1442 * ALC260 support
1443 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02001444static int alc260_parse_auto_config(struct hda_codec *codec)
1445{
Takashi Iwai1d045db2011-07-07 18:23:21 +02001446 static const hda_nid_t alc260_ignore[] = { 0x17, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02001447 static const hda_nid_t alc260_ssids[] = { 0x10, 0x15, 0x0f, 0 };
1448 return alc_parse_auto_config(codec, alc260_ignore, alc260_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02001449}
1450
Takashi Iwai1d045db2011-07-07 18:23:21 +02001451/*
1452 * Pin config fixes
1453 */
1454enum {
Takashi Iwaica8f0422012-02-16 11:51:19 +01001455 ALC260_FIXUP_HP_DC5750,
1456 ALC260_FIXUP_HP_PIN_0F,
1457 ALC260_FIXUP_COEF,
Takashi Iwai15317ab2012-02-16 12:02:53 +01001458 ALC260_FIXUP_GPIO1,
Takashi Iwai20f7d922012-02-16 12:35:16 +01001459 ALC260_FIXUP_GPIO1_TOGGLE,
1460 ALC260_FIXUP_REPLACER,
Takashi Iwai0a1c4fa2012-02-16 12:42:30 +01001461 ALC260_FIXUP_HP_B1900,
Takashi Iwai118cb4a2012-04-19 07:33:27 +02001462 ALC260_FIXUP_KN1,
Takashi Iwai1d045db2011-07-07 18:23:21 +02001463};
1464
Takashi Iwai20f7d922012-02-16 12:35:16 +01001465static void alc260_gpio1_automute(struct hda_codec *codec)
1466{
1467 struct alc_spec *spec = codec->spec;
1468 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
Takashi Iwai08c189f2012-12-19 15:22:24 +01001469 spec->gen.hp_jack_present);
Takashi Iwai20f7d922012-02-16 12:35:16 +01001470}
1471
1472static void alc260_fixup_gpio1_toggle(struct hda_codec *codec,
1473 const struct alc_fixup *fix, int action)
1474{
1475 struct alc_spec *spec = codec->spec;
1476 if (action == ALC_FIXUP_ACT_PROBE) {
1477 /* although the machine has only one output pin, we need to
1478 * toggle GPIO1 according to the jack state
1479 */
Takashi Iwai08c189f2012-12-19 15:22:24 +01001480 spec->gen.automute_hook = alc260_gpio1_automute;
1481 spec->gen.detect_hp = 1;
1482 spec->gen.automute_speaker = 1;
1483 spec->gen.autocfg.hp_pins[0] = 0x0f; /* copy it for automute */
1484 snd_hda_jack_detect_enable_callback(codec, 0x0f, HDA_GEN_HP_EVENT,
1485 snd_hda_gen_hp_automute);
Takashi Iwaic9ce6b22012-12-18 18:12:44 +01001486 snd_hda_add_verbs(codec, alc_gpio1_init_verbs);
Takashi Iwai20f7d922012-02-16 12:35:16 +01001487 }
1488}
1489
Takashi Iwai118cb4a2012-04-19 07:33:27 +02001490static void alc260_fixup_kn1(struct hda_codec *codec,
1491 const struct alc_fixup *fix, int action)
1492{
1493 struct alc_spec *spec = codec->spec;
1494 static const struct alc_pincfg pincfgs[] = {
1495 { 0x0f, 0x02214000 }, /* HP/speaker */
1496 { 0x12, 0x90a60160 }, /* int mic */
1497 { 0x13, 0x02a19000 }, /* ext mic */
1498 { 0x18, 0x01446000 }, /* SPDIF out */
1499 /* disable bogus I/O pins */
1500 { 0x10, 0x411111f0 },
1501 { 0x11, 0x411111f0 },
1502 { 0x14, 0x411111f0 },
1503 { 0x15, 0x411111f0 },
1504 { 0x16, 0x411111f0 },
1505 { 0x17, 0x411111f0 },
1506 { 0x19, 0x411111f0 },
1507 { }
1508 };
1509
1510 switch (action) {
1511 case ALC_FIXUP_ACT_PRE_PROBE:
1512 alc_apply_pincfgs(codec, pincfgs);
1513 break;
1514 case ALC_FIXUP_ACT_PROBE:
1515 spec->init_amp = ALC_INIT_NONE;
1516 break;
1517 }
1518}
1519
Takashi Iwai1d045db2011-07-07 18:23:21 +02001520static const struct alc_fixup alc260_fixups[] = {
Takashi Iwaica8f0422012-02-16 11:51:19 +01001521 [ALC260_FIXUP_HP_DC5750] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02001522 .type = ALC_FIXUP_PINS,
1523 .v.pins = (const struct alc_pincfg[]) {
1524 { 0x11, 0x90130110 }, /* speaker */
1525 { }
1526 }
1527 },
Takashi Iwaica8f0422012-02-16 11:51:19 +01001528 [ALC260_FIXUP_HP_PIN_0F] = {
1529 .type = ALC_FIXUP_PINS,
1530 .v.pins = (const struct alc_pincfg[]) {
1531 { 0x0f, 0x01214000 }, /* HP */
1532 { }
1533 }
1534 },
1535 [ALC260_FIXUP_COEF] = {
1536 .type = ALC_FIXUP_VERBS,
1537 .v.verbs = (const struct hda_verb[]) {
1538 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1539 { 0x20, AC_VERB_SET_PROC_COEF, 0x3040 },
1540 { }
1541 },
1542 .chained = true,
1543 .chain_id = ALC260_FIXUP_HP_PIN_0F,
1544 },
Takashi Iwai15317ab2012-02-16 12:02:53 +01001545 [ALC260_FIXUP_GPIO1] = {
1546 .type = ALC_FIXUP_VERBS,
1547 .v.verbs = alc_gpio1_init_verbs,
1548 },
Takashi Iwai20f7d922012-02-16 12:35:16 +01001549 [ALC260_FIXUP_GPIO1_TOGGLE] = {
1550 .type = ALC_FIXUP_FUNC,
1551 .v.func = alc260_fixup_gpio1_toggle,
1552 .chained = true,
1553 .chain_id = ALC260_FIXUP_HP_PIN_0F,
1554 },
1555 [ALC260_FIXUP_REPLACER] = {
1556 .type = ALC_FIXUP_VERBS,
1557 .v.verbs = (const struct hda_verb[]) {
1558 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1559 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
1560 { }
1561 },
1562 .chained = true,
1563 .chain_id = ALC260_FIXUP_GPIO1_TOGGLE,
1564 },
Takashi Iwai0a1c4fa2012-02-16 12:42:30 +01001565 [ALC260_FIXUP_HP_B1900] = {
1566 .type = ALC_FIXUP_FUNC,
1567 .v.func = alc260_fixup_gpio1_toggle,
1568 .chained = true,
1569 .chain_id = ALC260_FIXUP_COEF,
Takashi Iwai118cb4a2012-04-19 07:33:27 +02001570 },
1571 [ALC260_FIXUP_KN1] = {
1572 .type = ALC_FIXUP_FUNC,
1573 .v.func = alc260_fixup_kn1,
1574 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02001575};
1576
1577static const struct snd_pci_quirk alc260_fixup_tbl[] = {
Takashi Iwai15317ab2012-02-16 12:02:53 +01001578 SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_FIXUP_GPIO1),
Takashi Iwaica8f0422012-02-16 11:51:19 +01001579 SND_PCI_QUIRK(0x1025, 0x007f, "Acer Aspire 9500", ALC260_FIXUP_COEF),
Takashi Iwai15317ab2012-02-16 12:02:53 +01001580 SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_FIXUP_GPIO1),
Takashi Iwaica8f0422012-02-16 11:51:19 +01001581 SND_PCI_QUIRK(0x103c, 0x280a, "HP dc5750", ALC260_FIXUP_HP_DC5750),
Takashi Iwai0a1c4fa2012-02-16 12:42:30 +01001582 SND_PCI_QUIRK(0x103c, 0x30ba, "HP Presario B1900", ALC260_FIXUP_HP_B1900),
Takashi Iwaib1f58082012-02-16 12:45:03 +01001583 SND_PCI_QUIRK(0x1509, 0x4540, "Favorit 100XS", ALC260_FIXUP_GPIO1),
Takashi Iwai118cb4a2012-04-19 07:33:27 +02001584 SND_PCI_QUIRK(0x152d, 0x0729, "Quanta KN1", ALC260_FIXUP_KN1),
Takashi Iwai20f7d922012-02-16 12:35:16 +01001585 SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_FIXUP_REPLACER),
Takashi Iwaica8f0422012-02-16 11:51:19 +01001586 SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_FIXUP_COEF),
Takashi Iwai1d045db2011-07-07 18:23:21 +02001587 {}
1588};
1589
1590/*
1591 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02001592static int patch_alc260(struct hda_codec *codec)
1593{
1594 struct alc_spec *spec;
Takashi Iwaic3c2c9e2012-02-16 12:59:55 +01001595 int err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02001596
Takashi Iwai3de95172012-05-07 18:03:15 +02001597 err = alc_alloc_spec(codec, 0x07);
1598 if (err < 0)
1599 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02001600
Takashi Iwai3de95172012-05-07 18:03:15 +02001601 spec = codec->spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02001602
Takashi Iwaic3c2c9e2012-02-16 12:59:55 +01001603 alc_pick_fixup(codec, NULL, alc260_fixup_tbl, alc260_fixups);
1604 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02001605
Takashi Iwaic3c2c9e2012-02-16 12:59:55 +01001606 /* automatic parse from the BIOS config */
1607 err = alc260_parse_auto_config(codec);
1608 if (err < 0)
1609 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02001610
Takashi Iwai08c189f2012-12-19 15:22:24 +01001611 if (!spec->gen.no_analog) {
Takashi Iwai3e6179b2011-07-08 16:55:13 +02001612 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02001613 if (err < 0)
1614 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02001615 set_beep_amp(spec, 0x07, 0x05, HDA_INPUT);
1616 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02001617
Takashi Iwai1d045db2011-07-07 18:23:21 +02001618 codec->patch_ops = alc_patch_ops;
Takashi Iwai1d045db2011-07-07 18:23:21 +02001619 spec->shutup = alc_eapd_shutup;
Takashi Iwai1d045db2011-07-07 18:23:21 +02001620
Takashi Iwai589876e2012-02-20 15:47:55 +01001621 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
1622
Takashi Iwai1d045db2011-07-07 18:23:21 +02001623 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02001624
1625 error:
1626 alc_free(codec);
1627 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02001628}
1629
1630
1631/*
1632 * ALC882/883/885/888/889 support
1633 *
1634 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
1635 * configuration. Each pin widget can choose any input DACs and a mixer.
1636 * Each ADC is connected from a mixer of all inputs. This makes possible
1637 * 6-channel independent captures.
1638 *
1639 * In addition, an independent DAC for the multi-playback (not used in this
1640 * driver yet).
1641 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02001642
1643/*
1644 * Pin config fixes
1645 */
1646enum {
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01001647 ALC882_FIXUP_ABIT_AW9D_MAX,
1648 ALC882_FIXUP_LENOVO_Y530,
1649 ALC882_FIXUP_PB_M5210,
1650 ALC882_FIXUP_ACER_ASPIRE_7736,
1651 ALC882_FIXUP_ASUS_W90V,
Marton Balint8f239212012-03-05 21:33:23 +01001652 ALC889_FIXUP_CD,
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01001653 ALC889_FIXUP_VAIO_TT,
Takashi Iwai0e7cc2e2011-11-09 12:42:48 +01001654 ALC888_FIXUP_EEE1601,
Takashi Iwai177943a32011-11-09 12:55:18 +01001655 ALC882_FIXUP_EAPD,
Takashi Iwai7a6069b2011-11-09 15:22:01 +01001656 ALC883_FIXUP_EAPD,
Takashi Iwai8812c4f2011-11-09 17:39:15 +01001657 ALC883_FIXUP_ACER_EAPD,
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01001658 ALC882_FIXUP_GPIO1,
1659 ALC882_FIXUP_GPIO2,
Takashi Iwaieb844d52011-11-09 18:03:07 +01001660 ALC882_FIXUP_GPIO3,
Takashi Iwai68ef0562011-11-09 18:24:44 +01001661 ALC889_FIXUP_COEF,
1662 ALC882_FIXUP_ASUS_W2JC,
Takashi Iwaic3e837b2011-11-10 16:01:47 +01001663 ALC882_FIXUP_ACER_ASPIRE_4930G,
1664 ALC882_FIXUP_ACER_ASPIRE_8930G,
1665 ALC882_FIXUP_ASPIRE_8930G_VERBS,
Takashi Iwai56710872011-11-14 17:42:11 +01001666 ALC885_FIXUP_MACPRO_GPIO,
Takashi Iwai02a237b2012-02-13 15:25:07 +01001667 ALC889_FIXUP_DAC_ROUTE,
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01001668 ALC889_FIXUP_MBP_VREF,
1669 ALC889_FIXUP_IMAC91_VREF,
Takashi Iwai6e72aa52012-06-25 10:52:25 +02001670 ALC882_FIXUP_INV_DMIC,
Takashi Iwaie427c232012-07-29 10:04:08 +02001671 ALC882_FIXUP_NO_PRIMARY_HP,
Takashi Iwai1d045db2011-07-07 18:23:21 +02001672};
1673
Takashi Iwai68ef0562011-11-09 18:24:44 +01001674static void alc889_fixup_coef(struct hda_codec *codec,
1675 const struct alc_fixup *fix, int action)
1676{
1677 if (action != ALC_FIXUP_ACT_INIT)
1678 return;
1679 alc889_coef_init(codec);
1680}
1681
Takashi Iwai56710872011-11-14 17:42:11 +01001682/* toggle speaker-output according to the hp-jack state */
1683static void alc882_gpio_mute(struct hda_codec *codec, int pin, int muted)
1684{
1685 unsigned int gpiostate, gpiomask, gpiodir;
1686
1687 gpiostate = snd_hda_codec_read(codec, codec->afg, 0,
1688 AC_VERB_GET_GPIO_DATA, 0);
1689
1690 if (!muted)
1691 gpiostate |= (1 << pin);
1692 else
1693 gpiostate &= ~(1 << pin);
1694
1695 gpiomask = snd_hda_codec_read(codec, codec->afg, 0,
1696 AC_VERB_GET_GPIO_MASK, 0);
1697 gpiomask |= (1 << pin);
1698
1699 gpiodir = snd_hda_codec_read(codec, codec->afg, 0,
1700 AC_VERB_GET_GPIO_DIRECTION, 0);
1701 gpiodir |= (1 << pin);
1702
1703
1704 snd_hda_codec_write(codec, codec->afg, 0,
1705 AC_VERB_SET_GPIO_MASK, gpiomask);
1706 snd_hda_codec_write(codec, codec->afg, 0,
1707 AC_VERB_SET_GPIO_DIRECTION, gpiodir);
1708
1709 msleep(1);
1710
1711 snd_hda_codec_write(codec, codec->afg, 0,
1712 AC_VERB_SET_GPIO_DATA, gpiostate);
1713}
1714
1715/* set up GPIO at initialization */
1716static void alc885_fixup_macpro_gpio(struct hda_codec *codec,
1717 const struct alc_fixup *fix, int action)
1718{
1719 if (action != ALC_FIXUP_ACT_INIT)
1720 return;
1721 alc882_gpio_mute(codec, 0, 0);
1722 alc882_gpio_mute(codec, 1, 0);
1723}
1724
Takashi Iwai02a237b2012-02-13 15:25:07 +01001725/* Fix the connection of some pins for ALC889:
1726 * At least, Acer Aspire 5935 shows the connections to DAC3/4 don't
1727 * work correctly (bko#42740)
1728 */
1729static void alc889_fixup_dac_route(struct hda_codec *codec,
1730 const struct alc_fixup *fix, int action)
1731{
1732 if (action == ALC_FIXUP_ACT_PRE_PROBE) {
Takashi Iwaief8d60f2012-02-17 10:12:38 +01001733 /* fake the connections during parsing the tree */
Takashi Iwai02a237b2012-02-13 15:25:07 +01001734 hda_nid_t conn1[2] = { 0x0c, 0x0d };
1735 hda_nid_t conn2[2] = { 0x0e, 0x0f };
1736 snd_hda_override_conn_list(codec, 0x14, 2, conn1);
1737 snd_hda_override_conn_list(codec, 0x15, 2, conn1);
1738 snd_hda_override_conn_list(codec, 0x18, 2, conn2);
1739 snd_hda_override_conn_list(codec, 0x1a, 2, conn2);
Takashi Iwaief8d60f2012-02-17 10:12:38 +01001740 } else if (action == ALC_FIXUP_ACT_PROBE) {
1741 /* restore the connections */
1742 hda_nid_t conn[5] = { 0x0c, 0x0d, 0x0e, 0x0f, 0x26 };
1743 snd_hda_override_conn_list(codec, 0x14, 5, conn);
1744 snd_hda_override_conn_list(codec, 0x15, 5, conn);
1745 snd_hda_override_conn_list(codec, 0x18, 5, conn);
1746 snd_hda_override_conn_list(codec, 0x1a, 5, conn);
Takashi Iwai02a237b2012-02-13 15:25:07 +01001747 }
1748}
1749
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01001750/* Set VREF on HP pin */
1751static void alc889_fixup_mbp_vref(struct hda_codec *codec,
1752 const struct alc_fixup *fix, int action)
1753{
1754 struct alc_spec *spec = codec->spec;
1755 static hda_nid_t nids[2] = { 0x14, 0x15 };
1756 int i;
1757
1758 if (action != ALC_FIXUP_ACT_INIT)
1759 return;
1760 for (i = 0; i < ARRAY_SIZE(nids); i++) {
1761 unsigned int val = snd_hda_codec_get_pincfg(codec, nids[i]);
1762 if (get_defcfg_device(val) != AC_JACK_HP_OUT)
1763 continue;
1764 val = snd_hda_codec_read(codec, nids[i], 0,
1765 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
1766 val |= AC_PINCTL_VREF_80;
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02001767 snd_hda_set_pin_ctl(codec, nids[i], val);
Takashi Iwai08c189f2012-12-19 15:22:24 +01001768 spec->gen.keep_vref_in_automute = 1;
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01001769 break;
1770 }
1771}
1772
1773/* Set VREF on speaker pins on imac91 */
1774static void alc889_fixup_imac91_vref(struct hda_codec *codec,
1775 const struct alc_fixup *fix, int action)
1776{
1777 struct alc_spec *spec = codec->spec;
1778 static hda_nid_t nids[2] = { 0x18, 0x1a };
1779 int i;
1780
1781 if (action != ALC_FIXUP_ACT_INIT)
1782 return;
1783 for (i = 0; i < ARRAY_SIZE(nids); i++) {
1784 unsigned int val;
1785 val = snd_hda_codec_read(codec, nids[i], 0,
1786 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
1787 val |= AC_PINCTL_VREF_50;
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02001788 snd_hda_set_pin_ctl(codec, nids[i], val);
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01001789 }
Takashi Iwai08c189f2012-12-19 15:22:24 +01001790 spec->gen.keep_vref_in_automute = 1;
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01001791}
1792
Takashi Iwaie427c232012-07-29 10:04:08 +02001793/* Don't take HP output as primary
1794 * strangely, the speaker output doesn't work on VAIO Z through DAC 0x05
1795 */
1796static void alc882_fixup_no_primary_hp(struct hda_codec *codec,
1797 const struct alc_fixup *fix, int action)
1798{
1799 struct alc_spec *spec = codec->spec;
1800 if (action == ALC_FIXUP_ACT_PRE_PROBE)
Takashi Iwai08c189f2012-12-19 15:22:24 +01001801 spec->gen.no_primary_hp = 1;
Takashi Iwaie427c232012-07-29 10:04:08 +02001802}
1803
Takashi Iwai1d045db2011-07-07 18:23:21 +02001804static const struct alc_fixup alc882_fixups[] = {
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01001805 [ALC882_FIXUP_ABIT_AW9D_MAX] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02001806 .type = ALC_FIXUP_PINS,
1807 .v.pins = (const struct alc_pincfg[]) {
1808 { 0x15, 0x01080104 }, /* side */
1809 { 0x16, 0x01011012 }, /* rear */
1810 { 0x17, 0x01016011 }, /* clfe */
1811 { }
1812 }
1813 },
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01001814 [ALC882_FIXUP_LENOVO_Y530] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02001815 .type = ALC_FIXUP_PINS,
1816 .v.pins = (const struct alc_pincfg[]) {
1817 { 0x15, 0x99130112 }, /* rear int speakers */
1818 { 0x16, 0x99130111 }, /* subwoofer */
1819 { }
1820 }
1821 },
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01001822 [ALC882_FIXUP_PB_M5210] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02001823 .type = ALC_FIXUP_VERBS,
1824 .v.verbs = (const struct hda_verb[]) {
1825 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50 },
1826 {}
1827 }
1828 },
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01001829 [ALC882_FIXUP_ACER_ASPIRE_7736] = {
Takashi Iwai23d30f22012-05-07 17:17:32 +02001830 .type = ALC_FIXUP_FUNC,
1831 .v.func = alc_fixup_sku_ignore,
Takashi Iwai1d045db2011-07-07 18:23:21 +02001832 },
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01001833 [ALC882_FIXUP_ASUS_W90V] = {
Takashi Iwai5cdf7452011-10-26 23:04:08 +02001834 .type = ALC_FIXUP_PINS,
1835 .v.pins = (const struct alc_pincfg[]) {
1836 { 0x16, 0x99130110 }, /* fix sequence for CLFE */
1837 { }
1838 }
1839 },
Marton Balint8f239212012-03-05 21:33:23 +01001840 [ALC889_FIXUP_CD] = {
1841 .type = ALC_FIXUP_PINS,
1842 .v.pins = (const struct alc_pincfg[]) {
1843 { 0x1c, 0x993301f0 }, /* CD */
1844 { }
1845 }
1846 },
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01001847 [ALC889_FIXUP_VAIO_TT] = {
1848 .type = ALC_FIXUP_PINS,
1849 .v.pins = (const struct alc_pincfg[]) {
1850 { 0x17, 0x90170111 }, /* hidden surround speaker */
1851 { }
1852 }
1853 },
Takashi Iwai0e7cc2e2011-11-09 12:42:48 +01001854 [ALC888_FIXUP_EEE1601] = {
1855 .type = ALC_FIXUP_VERBS,
1856 .v.verbs = (const struct hda_verb[]) {
1857 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
1858 { 0x20, AC_VERB_SET_PROC_COEF, 0x0838 },
1859 { }
1860 }
Takashi Iwai177943a32011-11-09 12:55:18 +01001861 },
1862 [ALC882_FIXUP_EAPD] = {
1863 .type = ALC_FIXUP_VERBS,
1864 .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, 0x3060 },
1868 { }
1869 }
1870 },
Takashi Iwai7a6069b2011-11-09 15:22:01 +01001871 [ALC883_FIXUP_EAPD] = {
1872 .type = ALC_FIXUP_VERBS,
1873 .v.verbs = (const struct hda_verb[]) {
1874 /* change to EAPD mode */
1875 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1876 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
1877 { }
1878 }
1879 },
Takashi Iwai8812c4f2011-11-09 17:39:15 +01001880 [ALC883_FIXUP_ACER_EAPD] = {
1881 .type = ALC_FIXUP_VERBS,
1882 .v.verbs = (const struct hda_verb[]) {
1883 /* eanable EAPD on Acer laptops */
1884 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1885 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
1886 { }
1887 }
1888 },
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01001889 [ALC882_FIXUP_GPIO1] = {
1890 .type = ALC_FIXUP_VERBS,
1891 .v.verbs = alc_gpio1_init_verbs,
1892 },
1893 [ALC882_FIXUP_GPIO2] = {
1894 .type = ALC_FIXUP_VERBS,
1895 .v.verbs = alc_gpio2_init_verbs,
1896 },
Takashi Iwaieb844d52011-11-09 18:03:07 +01001897 [ALC882_FIXUP_GPIO3] = {
1898 .type = ALC_FIXUP_VERBS,
1899 .v.verbs = alc_gpio3_init_verbs,
1900 },
Takashi Iwai68ef0562011-11-09 18:24:44 +01001901 [ALC882_FIXUP_ASUS_W2JC] = {
1902 .type = ALC_FIXUP_VERBS,
1903 .v.verbs = alc_gpio1_init_verbs,
1904 .chained = true,
1905 .chain_id = ALC882_FIXUP_EAPD,
1906 },
1907 [ALC889_FIXUP_COEF] = {
1908 .type = ALC_FIXUP_FUNC,
1909 .v.func = alc889_fixup_coef,
1910 },
Takashi Iwaic3e837b2011-11-10 16:01:47 +01001911 [ALC882_FIXUP_ACER_ASPIRE_4930G] = {
1912 .type = ALC_FIXUP_PINS,
1913 .v.pins = (const struct alc_pincfg[]) {
1914 { 0x16, 0x99130111 }, /* CLFE speaker */
1915 { 0x17, 0x99130112 }, /* surround speaker */
1916 { }
Takashi Iwai038d4fef2012-04-11 17:18:12 +02001917 },
1918 .chained = true,
1919 .chain_id = ALC882_FIXUP_GPIO1,
Takashi Iwaic3e837b2011-11-10 16:01:47 +01001920 },
1921 [ALC882_FIXUP_ACER_ASPIRE_8930G] = {
1922 .type = ALC_FIXUP_PINS,
1923 .v.pins = (const struct alc_pincfg[]) {
1924 { 0x16, 0x99130111 }, /* CLFE speaker */
1925 { 0x1b, 0x99130112 }, /* surround speaker */
1926 { }
1927 },
1928 .chained = true,
1929 .chain_id = ALC882_FIXUP_ASPIRE_8930G_VERBS,
1930 },
1931 [ALC882_FIXUP_ASPIRE_8930G_VERBS] = {
1932 /* additional init verbs for Acer Aspire 8930G */
1933 .type = ALC_FIXUP_VERBS,
1934 .v.verbs = (const struct hda_verb[]) {
1935 /* Enable all DACs */
1936 /* DAC DISABLE/MUTE 1? */
1937 /* setting bits 1-5 disables DAC nids 0x02-0x06
1938 * apparently. Init=0x38 */
1939 { 0x20, AC_VERB_SET_COEF_INDEX, 0x03 },
1940 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
1941 /* DAC DISABLE/MUTE 2? */
1942 /* some bit here disables the other DACs.
1943 * Init=0x4900 */
1944 { 0x20, AC_VERB_SET_COEF_INDEX, 0x08 },
1945 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
1946 /* DMIC fix
1947 * This laptop has a stereo digital microphone.
1948 * The mics are only 1cm apart which makes the stereo
1949 * useless. However, either the mic or the ALC889
1950 * makes the signal become a difference/sum signal
1951 * instead of standard stereo, which is annoying.
1952 * So instead we flip this bit which makes the
1953 * codec replicate the sum signal to both channels,
1954 * turning it into a normal mono mic.
1955 */
1956 /* DMIC_CONTROL? Init value = 0x0001 */
1957 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
1958 { 0x20, AC_VERB_SET_PROC_COEF, 0x0003 },
1959 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1960 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
1961 { }
Takashi Iwai038d4fef2012-04-11 17:18:12 +02001962 },
1963 .chained = true,
1964 .chain_id = ALC882_FIXUP_GPIO1,
Takashi Iwaic3e837b2011-11-10 16:01:47 +01001965 },
Takashi Iwai56710872011-11-14 17:42:11 +01001966 [ALC885_FIXUP_MACPRO_GPIO] = {
1967 .type = ALC_FIXUP_FUNC,
1968 .v.func = alc885_fixup_macpro_gpio,
1969 },
Takashi Iwai02a237b2012-02-13 15:25:07 +01001970 [ALC889_FIXUP_DAC_ROUTE] = {
1971 .type = ALC_FIXUP_FUNC,
1972 .v.func = alc889_fixup_dac_route,
1973 },
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01001974 [ALC889_FIXUP_MBP_VREF] = {
1975 .type = ALC_FIXUP_FUNC,
1976 .v.func = alc889_fixup_mbp_vref,
1977 .chained = true,
1978 .chain_id = ALC882_FIXUP_GPIO1,
1979 },
1980 [ALC889_FIXUP_IMAC91_VREF] = {
1981 .type = ALC_FIXUP_FUNC,
1982 .v.func = alc889_fixup_imac91_vref,
1983 .chained = true,
1984 .chain_id = ALC882_FIXUP_GPIO1,
1985 },
Takashi Iwai6e72aa52012-06-25 10:52:25 +02001986 [ALC882_FIXUP_INV_DMIC] = {
1987 .type = ALC_FIXUP_FUNC,
1988 .v.func = alc_fixup_inv_dmic_0x12,
1989 },
Takashi Iwaie427c232012-07-29 10:04:08 +02001990 [ALC882_FIXUP_NO_PRIMARY_HP] = {
1991 .type = ALC_FIXUP_FUNC,
1992 .v.func = alc882_fixup_no_primary_hp,
1993 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02001994};
1995
1996static const struct snd_pci_quirk alc882_fixup_tbl[] = {
Takashi Iwai8812c4f2011-11-09 17:39:15 +01001997 SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_FIXUP_ACER_EAPD),
1998 SND_PCI_QUIRK(0x1025, 0x0090, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
1999 SND_PCI_QUIRK(0x1025, 0x010a, "Acer Ferrari 5000", ALC883_FIXUP_ACER_EAPD),
2000 SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
2001 SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_FIXUP_ACER_EAPD),
2002 SND_PCI_QUIRK(0x1025, 0x0121, "Acer Aspire 5920G", ALC883_FIXUP_ACER_EAPD),
Takashi Iwaic3e837b2011-11-10 16:01:47 +01002003 SND_PCI_QUIRK(0x1025, 0x013e, "Acer Aspire 4930G",
2004 ALC882_FIXUP_ACER_ASPIRE_4930G),
2005 SND_PCI_QUIRK(0x1025, 0x013f, "Acer Aspire 5930G",
2006 ALC882_FIXUP_ACER_ASPIRE_4930G),
2007 SND_PCI_QUIRK(0x1025, 0x0145, "Acer Aspire 8930G",
2008 ALC882_FIXUP_ACER_ASPIRE_8930G),
2009 SND_PCI_QUIRK(0x1025, 0x0146, "Acer Aspire 6935G",
2010 ALC882_FIXUP_ACER_ASPIRE_8930G),
2011 SND_PCI_QUIRK(0x1025, 0x015e, "Acer Aspire 6930G",
2012 ALC882_FIXUP_ACER_ASPIRE_4930G),
2013 SND_PCI_QUIRK(0x1025, 0x0166, "Acer Aspire 6530G",
2014 ALC882_FIXUP_ACER_ASPIRE_4930G),
2015 SND_PCI_QUIRK(0x1025, 0x0142, "Acer Aspire 7730G",
2016 ALC882_FIXUP_ACER_ASPIRE_4930G),
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01002017 SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", ALC882_FIXUP_PB_M5210),
Takashi Iwaif5c53d82012-05-07 10:07:33 +02002018 SND_PCI_QUIRK(0x1025, 0x021e, "Acer Aspire 5739G",
2019 ALC882_FIXUP_ACER_ASPIRE_4930G),
Takashi Iwai02a237b2012-02-13 15:25:07 +01002020 SND_PCI_QUIRK(0x1025, 0x0259, "Acer Aspire 5935", ALC889_FIXUP_DAC_ROUTE),
Takashi Iwaife97da12012-04-12 08:00:19 +02002021 SND_PCI_QUIRK(0x1025, 0x026b, "Acer Aspire 8940G", ALC882_FIXUP_ACER_ASPIRE_8930G),
Takashi Iwaiac9b1cd2011-11-09 17:45:55 +01002022 SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", ALC882_FIXUP_ACER_ASPIRE_7736),
Takashi Iwai177943a32011-11-09 12:55:18 +01002023 SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_FIXUP_EAPD),
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01002024 SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", ALC882_FIXUP_ASUS_W90V),
Takashi Iwai68ef0562011-11-09 18:24:44 +01002025 SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_FIXUP_ASUS_W2JC),
Takashi Iwai0e7cc2e2011-11-09 12:42:48 +01002026 SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_FIXUP_EEE1601),
Takashi Iwaiac9b1cd2011-11-09 17:45:55 +01002027 SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT),
Takashi Iwaie427c232012-07-29 10:04:08 +02002028 SND_PCI_QUIRK(0x104d, 0x905a, "Sony Vaio Z", ALC882_FIXUP_NO_PRIMARY_HP),
Takashi Iwai56710872011-11-14 17:42:11 +01002029
2030 /* All Apple entries are in codec SSIDs */
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01002031 SND_PCI_QUIRK(0x106b, 0x00a0, "MacBookPro 3,1", ALC889_FIXUP_MBP_VREF),
2032 SND_PCI_QUIRK(0x106b, 0x00a1, "Macbook", ALC889_FIXUP_MBP_VREF),
2033 SND_PCI_QUIRK(0x106b, 0x00a4, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
Takashi Iwai56710872011-11-14 17:42:11 +01002034 SND_PCI_QUIRK(0x106b, 0x0c00, "Mac Pro", ALC885_FIXUP_MACPRO_GPIO),
2035 SND_PCI_QUIRK(0x106b, 0x1000, "iMac 24", ALC885_FIXUP_MACPRO_GPIO),
2036 SND_PCI_QUIRK(0x106b, 0x2800, "AppleTV", ALC885_FIXUP_MACPRO_GPIO),
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01002037 SND_PCI_QUIRK(0x106b, 0x2c00, "MacbookPro rev3", ALC889_FIXUP_MBP_VREF),
2038 SND_PCI_QUIRK(0x106b, 0x3000, "iMac", ALC889_FIXUP_MBP_VREF),
Takashi Iwai56710872011-11-14 17:42:11 +01002039 SND_PCI_QUIRK(0x106b, 0x3200, "iMac 7,1 Aluminum", ALC882_FIXUP_EAPD),
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01002040 SND_PCI_QUIRK(0x106b, 0x3400, "MacBookAir 1,1", ALC889_FIXUP_MBP_VREF),
2041 SND_PCI_QUIRK(0x106b, 0x3500, "MacBookAir 2,1", ALC889_FIXUP_MBP_VREF),
2042 SND_PCI_QUIRK(0x106b, 0x3600, "Macbook 3,1", ALC889_FIXUP_MBP_VREF),
2043 SND_PCI_QUIRK(0x106b, 0x3800, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
Takashi Iwai56710872011-11-14 17:42:11 +01002044 SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_FIXUP_MACPRO_GPIO),
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01002045 SND_PCI_QUIRK(0x106b, 0x3f00, "Macbook 5,1", ALC889_FIXUP_IMAC91_VREF),
2046 SND_PCI_QUIRK(0x106b, 0x4000, "MacbookPro 5,1", ALC889_FIXUP_IMAC91_VREF),
2047 SND_PCI_QUIRK(0x106b, 0x4100, "Macmini 3,1", ALC889_FIXUP_IMAC91_VREF),
Josh Boyer29ebe402012-04-12 13:55:36 -04002048 SND_PCI_QUIRK(0x106b, 0x4200, "Mac Pro 5,1", ALC885_FIXUP_MACPRO_GPIO),
Takashi Iwai05193632012-11-12 10:07:36 +01002049 SND_PCI_QUIRK(0x106b, 0x4300, "iMac 9,1", ALC889_FIXUP_IMAC91_VREF),
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01002050 SND_PCI_QUIRK(0x106b, 0x4600, "MacbookPro 5,2", ALC889_FIXUP_IMAC91_VREF),
2051 SND_PCI_QUIRK(0x106b, 0x4900, "iMac 9,1 Aluminum", ALC889_FIXUP_IMAC91_VREF),
2052 SND_PCI_QUIRK(0x106b, 0x4a00, "Macbook 5,2", ALC889_FIXUP_IMAC91_VREF),
Takashi Iwai56710872011-11-14 17:42:11 +01002053
Takashi Iwai7a6069b2011-11-09 15:22:01 +01002054 SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC882_FIXUP_EAPD),
Takashi Iwaibca40132012-05-07 11:13:14 +02002055 SND_PCI_QUIRK(0x1462, 0x7350, "MSI-7350", ALC889_FIXUP_CD),
Takashi Iwaieb844d52011-11-09 18:03:07 +01002056 SND_PCI_QUIRK_VENDOR(0x1462, "MSI", ALC882_FIXUP_GPIO3),
Marton Balint8f239212012-03-05 21:33:23 +01002057 SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte EP45-DS3", ALC889_FIXUP_CD),
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01002058 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", ALC882_FIXUP_ABIT_AW9D_MAX),
Takashi Iwai7a6069b2011-11-09 15:22:01 +01002059 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC882_FIXUP_EAPD),
2060 SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_FIXUP_EAPD),
Takashi Iwaiac9b1cd2011-11-09 17:45:55 +01002061 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530),
Takashi Iwai68ef0562011-11-09 18:24:44 +01002062 SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC889_FIXUP_COEF),
Takashi Iwai1d045db2011-07-07 18:23:21 +02002063 {}
2064};
2065
Takashi Iwai912093b2012-04-11 14:03:41 +02002066static const struct alc_model_fixup alc882_fixup_models[] = {
2067 {.id = ALC882_FIXUP_ACER_ASPIRE_4930G, .name = "acer-aspire-4930g"},
2068 {.id = ALC882_FIXUP_ACER_ASPIRE_8930G, .name = "acer-aspire-8930g"},
2069 {.id = ALC883_FIXUP_ACER_EAPD, .name = "acer-aspire"},
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002070 {.id = ALC882_FIXUP_INV_DMIC, .name = "inv-dmic"},
Takashi Iwaie427c232012-07-29 10:04:08 +02002071 {.id = ALC882_FIXUP_NO_PRIMARY_HP, .name = "no-primary-hp"},
Takashi Iwai912093b2012-04-11 14:03:41 +02002072 {}
2073};
2074
Takashi Iwai1d045db2011-07-07 18:23:21 +02002075/*
2076 * BIOS auto configuration
2077 */
2078/* almost identical with ALC880 parser... */
2079static int alc882_parse_auto_config(struct hda_codec *codec)
2080{
Takashi Iwai1d045db2011-07-07 18:23:21 +02002081 static const hda_nid_t alc882_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02002082 static const hda_nid_t alc882_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2083 return alc_parse_auto_config(codec, alc882_ignore, alc882_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02002084}
2085
Takashi Iwai1d045db2011-07-07 18:23:21 +02002086/*
2087 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02002088static int patch_alc882(struct hda_codec *codec)
2089{
2090 struct alc_spec *spec;
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01002091 int err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002092
Takashi Iwai3de95172012-05-07 18:03:15 +02002093 err = alc_alloc_spec(codec, 0x0b);
2094 if (err < 0)
2095 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002096
Takashi Iwai3de95172012-05-07 18:03:15 +02002097 spec = codec->spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002098
2099 switch (codec->vendor_id) {
2100 case 0x10ec0882:
2101 case 0x10ec0885:
2102 break;
2103 default:
2104 /* ALC883 and variants */
2105 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2106 break;
2107 }
2108
Takashi Iwai912093b2012-04-11 14:03:41 +02002109 alc_pick_fixup(codec, alc882_fixup_models, alc882_fixup_tbl,
2110 alc882_fixups);
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01002111 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02002112
2113 alc_auto_parse_customize_define(codec);
2114
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01002115 /* automatic parse from the BIOS config */
2116 err = alc882_parse_auto_config(codec);
2117 if (err < 0)
2118 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002119
Takashi Iwai08c189f2012-12-19 15:22:24 +01002120 if (!spec->gen.no_analog && has_cdefine_beep(codec)) {
Takashi Iwai3e6179b2011-07-08 16:55:13 +02002121 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002122 if (err < 0)
2123 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002124 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02002125 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02002126
Takashi Iwai1d045db2011-07-07 18:23:21 +02002127 codec->patch_ops = alc_patch_ops;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002128
Takashi Iwai589876e2012-02-20 15:47:55 +01002129 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
2130
Takashi Iwai1d045db2011-07-07 18:23:21 +02002131 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002132
2133 error:
2134 alc_free(codec);
2135 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002136}
2137
2138
2139/*
2140 * ALC262 support
2141 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02002142static int alc262_parse_auto_config(struct hda_codec *codec)
2143{
Takashi Iwai1d045db2011-07-07 18:23:21 +02002144 static const hda_nid_t alc262_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02002145 static const hda_nid_t alc262_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2146 return alc_parse_auto_config(codec, alc262_ignore, alc262_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02002147}
2148
2149/*
2150 * Pin config fixes
2151 */
2152enum {
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01002153 ALC262_FIXUP_FSC_H270,
2154 ALC262_FIXUP_HP_Z200,
2155 ALC262_FIXUP_TYAN,
Takashi Iwaic4701502011-11-07 14:20:07 +01002156 ALC262_FIXUP_LENOVO_3000,
Takashi Iwaib42590b2011-11-07 14:41:01 +01002157 ALC262_FIXUP_BENQ,
2158 ALC262_FIXUP_BENQ_T31,
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002159 ALC262_FIXUP_INV_DMIC,
Takashi Iwai1d045db2011-07-07 18:23:21 +02002160};
2161
2162static const struct alc_fixup alc262_fixups[] = {
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01002163 [ALC262_FIXUP_FSC_H270] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02002164 .type = ALC_FIXUP_PINS,
2165 .v.pins = (const struct alc_pincfg[]) {
2166 { 0x14, 0x99130110 }, /* speaker */
2167 { 0x15, 0x0221142f }, /* front HP */
2168 { 0x1b, 0x0121141f }, /* rear HP */
2169 { }
2170 }
2171 },
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01002172 [ALC262_FIXUP_HP_Z200] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02002173 .type = ALC_FIXUP_PINS,
2174 .v.pins = (const struct alc_pincfg[]) {
2175 { 0x16, 0x99130120 }, /* internal speaker */
2176 { }
2177 }
2178 },
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01002179 [ALC262_FIXUP_TYAN] = {
2180 .type = ALC_FIXUP_PINS,
2181 .v.pins = (const struct alc_pincfg[]) {
2182 { 0x14, 0x1993e1f0 }, /* int AUX */
2183 { }
2184 }
2185 },
Takashi Iwaic4701502011-11-07 14:20:07 +01002186 [ALC262_FIXUP_LENOVO_3000] = {
2187 .type = ALC_FIXUP_VERBS,
2188 .v.verbs = (const struct hda_verb[]) {
2189 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50 },
Takashi Iwaib42590b2011-11-07 14:41:01 +01002190 {}
2191 },
2192 .chained = true,
2193 .chain_id = ALC262_FIXUP_BENQ,
2194 },
2195 [ALC262_FIXUP_BENQ] = {
2196 .type = ALC_FIXUP_VERBS,
2197 .v.verbs = (const struct hda_verb[]) {
Takashi Iwaic4701502011-11-07 14:20:07 +01002198 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2199 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
2200 {}
2201 }
2202 },
Takashi Iwaib42590b2011-11-07 14:41:01 +01002203 [ALC262_FIXUP_BENQ_T31] = {
2204 .type = ALC_FIXUP_VERBS,
2205 .v.verbs = (const struct hda_verb[]) {
2206 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2207 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2208 {}
2209 }
2210 },
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002211 [ALC262_FIXUP_INV_DMIC] = {
2212 .type = ALC_FIXUP_FUNC,
2213 .v.func = alc_fixup_inv_dmic_0x12,
2214 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02002215};
2216
2217static const struct snd_pci_quirk alc262_fixup_tbl[] = {
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01002218 SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", ALC262_FIXUP_HP_Z200),
Takashi Iwai3dcd3be2011-11-07 14:59:40 +01002219 SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu", ALC262_FIXUP_BENQ),
2220 SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FIXUP_BENQ),
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01002221 SND_PCI_QUIRK(0x10f1, 0x2915, "Tyan Thunder n6650W", ALC262_FIXUP_TYAN),
2222 SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", ALC262_FIXUP_FSC_H270),
Takashi Iwaic4701502011-11-07 14:20:07 +01002223 SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000", ALC262_FIXUP_LENOVO_3000),
Takashi Iwaib42590b2011-11-07 14:41:01 +01002224 SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_FIXUP_BENQ),
2225 SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_FIXUP_BENQ_T31),
Takashi Iwai1d045db2011-07-07 18:23:21 +02002226 {}
2227};
2228
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002229static const struct alc_model_fixup alc262_fixup_models[] = {
2230 {.id = ALC262_FIXUP_INV_DMIC, .name = "inv-dmic"},
2231 {}
2232};
Takashi Iwai1d045db2011-07-07 18:23:21 +02002233
Takashi Iwai1d045db2011-07-07 18:23:21 +02002234/*
2235 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02002236static int patch_alc262(struct hda_codec *codec)
2237{
2238 struct alc_spec *spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002239 int err;
2240
Takashi Iwai3de95172012-05-07 18:03:15 +02002241 err = alc_alloc_spec(codec, 0x0b);
2242 if (err < 0)
2243 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002244
Takashi Iwai3de95172012-05-07 18:03:15 +02002245 spec = codec->spec;
Takashi Iwai08c189f2012-12-19 15:22:24 +01002246 spec->gen.shared_mic_vref_pin = 0x18;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002247
2248#if 0
2249 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
2250 * under-run
2251 */
2252 {
2253 int tmp;
2254 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
2255 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
2256 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
2257 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PROC_COEF, tmp | 0x80);
2258 }
2259#endif
Takashi Iwai1d045db2011-07-07 18:23:21 +02002260 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2261
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002262 alc_pick_fixup(codec, alc262_fixup_models, alc262_fixup_tbl,
2263 alc262_fixups);
Takashi Iwai42399f72011-11-07 17:18:44 +01002264 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02002265
Takashi Iwaiaf741c12012-05-07 18:09:48 +02002266 alc_auto_parse_customize_define(codec);
2267
Takashi Iwai42399f72011-11-07 17:18:44 +01002268 /* automatic parse from the BIOS config */
2269 err = alc262_parse_auto_config(codec);
2270 if (err < 0)
2271 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02002272
Takashi Iwai08c189f2012-12-19 15:22:24 +01002273 if (!spec->gen.no_analog && has_cdefine_beep(codec)) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02002274 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002275 if (err < 0)
2276 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002277 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02002278 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02002279
Takashi Iwai1d045db2011-07-07 18:23:21 +02002280 codec->patch_ops = alc_patch_ops;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002281 spec->shutup = alc_eapd_shutup;
2282
Takashi Iwai589876e2012-02-20 15:47:55 +01002283 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
2284
Takashi Iwai1d045db2011-07-07 18:23:21 +02002285 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002286
2287 error:
2288 alc_free(codec);
2289 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002290}
2291
2292/*
2293 * ALC268
2294 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02002295/* bind Beep switches of both NID 0x0f and 0x10 */
2296static const struct hda_bind_ctls alc268_bind_beep_sw = {
2297 .ops = &snd_hda_bind_sw,
2298 .values = {
2299 HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT),
2300 HDA_COMPOSE_AMP_VAL(0x10, 3, 1, HDA_INPUT),
2301 0
2302 },
2303};
2304
2305static const struct snd_kcontrol_new alc268_beep_mixer[] = {
2306 HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT),
2307 HDA_BIND_SW("Beep Playback Switch", &alc268_bind_beep_sw),
2308 { }
2309};
2310
2311/* set PCBEEP vol = 0, mute connections */
2312static const struct hda_verb alc268_beep_init_verbs[] = {
2313 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2314 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2315 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2316 { }
2317};
2318
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002319enum {
2320 ALC268_FIXUP_INV_DMIC,
Takashi Iwaicb766402012-10-20 10:55:21 +02002321 ALC268_FIXUP_HP_EAPD,
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002322};
2323
2324static const struct alc_fixup alc268_fixups[] = {
2325 [ALC268_FIXUP_INV_DMIC] = {
2326 .type = ALC_FIXUP_FUNC,
2327 .v.func = alc_fixup_inv_dmic_0x12,
2328 },
Takashi Iwaicb766402012-10-20 10:55:21 +02002329 [ALC268_FIXUP_HP_EAPD] = {
2330 .type = ALC_FIXUP_VERBS,
2331 .v.verbs = (const struct hda_verb[]) {
2332 {0x15, AC_VERB_SET_EAPD_BTLENABLE, 0},
2333 {}
2334 }
2335 },
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002336};
2337
2338static const struct alc_model_fixup alc268_fixup_models[] = {
2339 {.id = ALC268_FIXUP_INV_DMIC, .name = "inv-dmic"},
Takashi Iwaicb766402012-10-20 10:55:21 +02002340 {.id = ALC268_FIXUP_HP_EAPD, .name = "hp-eapd"},
2341 {}
2342};
2343
2344static const struct snd_pci_quirk alc268_fixup_tbl[] = {
2345 /* below is codec SSID since multiple Toshiba laptops have the
2346 * same PCI SSID 1179:ff00
2347 */
2348 SND_PCI_QUIRK(0x1179, 0xff06, "Toshiba P200", ALC268_FIXUP_HP_EAPD),
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002349 {}
2350};
2351
Takashi Iwai1d045db2011-07-07 18:23:21 +02002352/*
2353 * BIOS auto configuration
2354 */
2355static int alc268_parse_auto_config(struct hda_codec *codec)
2356{
Takashi Iwai3e6179b2011-07-08 16:55:13 +02002357 static const hda_nid_t alc268_ssids[] = { 0x15, 0x1b, 0x14, 0 };
Takashi Iwai1d045db2011-07-07 18:23:21 +02002358 struct alc_spec *spec = codec->spec;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02002359 int err = alc_parse_auto_config(codec, NULL, alc268_ssids);
2360 if (err > 0) {
Takashi Iwai08c189f2012-12-19 15:22:24 +01002361 if (!spec->gen.no_analog &&
2362 spec->gen.autocfg.speaker_pins[0] != 0x1d) {
Takashi Iwai3e6179b2011-07-08 16:55:13 +02002363 add_mixer(spec, alc268_beep_mixer);
Takashi Iwaic9ce6b22012-12-18 18:12:44 +01002364 snd_hda_add_verbs(codec, alc268_beep_init_verbs);
Takashi Iwai1d045db2011-07-07 18:23:21 +02002365 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02002366 }
Takashi Iwai3e6179b2011-07-08 16:55:13 +02002367 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002368}
2369
Takashi Iwai1d045db2011-07-07 18:23:21 +02002370/*
2371 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02002372static int patch_alc268(struct hda_codec *codec)
2373{
2374 struct alc_spec *spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002375 int i, has_beep, err;
2376
Takashi Iwai1d045db2011-07-07 18:23:21 +02002377 /* ALC268 has no aa-loopback mixer */
Takashi Iwai3de95172012-05-07 18:03:15 +02002378 err = alc_alloc_spec(codec, 0);
2379 if (err < 0)
2380 return err;
2381
2382 spec = codec->spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002383
Takashi Iwaicb766402012-10-20 10:55:21 +02002384 alc_pick_fixup(codec, alc268_fixup_models, alc268_fixup_tbl, alc268_fixups);
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002385 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
2386
Takashi Iwai6ebb8052011-08-16 15:15:40 +02002387 /* automatic parse from the BIOS config */
2388 err = alc268_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002389 if (err < 0)
2390 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002391
Takashi Iwai1d045db2011-07-07 18:23:21 +02002392 has_beep = 0;
2393 for (i = 0; i < spec->num_mixers; i++) {
2394 if (spec->mixers[i] == alc268_beep_mixer) {
2395 has_beep = 1;
2396 break;
2397 }
2398 }
2399
2400 if (has_beep) {
2401 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002402 if (err < 0)
2403 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002404 if (!query_amp_caps(codec, 0x1d, HDA_INPUT))
2405 /* override the amp caps for beep generator */
2406 snd_hda_override_amp_caps(codec, 0x1d, HDA_INPUT,
2407 (0x0c << AC_AMPCAP_OFFSET_SHIFT) |
2408 (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT) |
2409 (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT) |
2410 (0 << AC_AMPCAP_MUTE_SHIFT));
2411 }
2412
Takashi Iwai1d045db2011-07-07 18:23:21 +02002413 codec->patch_ops = alc_patch_ops;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002414 spec->shutup = alc_eapd_shutup;
2415
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002416 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
2417
Takashi Iwai1d045db2011-07-07 18:23:21 +02002418 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002419
2420 error:
2421 alc_free(codec);
2422 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002423}
2424
2425/*
2426 * ALC269
2427 */
Takashi Iwai08c189f2012-12-19 15:22:24 +01002428
2429static int playback_pcm_open(struct hda_pcm_stream *hinfo,
2430 struct hda_codec *codec,
2431 struct snd_pcm_substream *substream)
2432{
2433 struct hda_gen_spec *spec = codec->spec;
2434 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
2435 hinfo);
2436}
2437
2438static int playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2439 struct hda_codec *codec,
2440 unsigned int stream_tag,
2441 unsigned int format,
2442 struct snd_pcm_substream *substream)
2443{
2444 struct hda_gen_spec *spec = codec->spec;
2445 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
2446 stream_tag, format, substream);
2447}
2448
2449static int playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2450 struct hda_codec *codec,
2451 struct snd_pcm_substream *substream)
2452{
2453 struct hda_gen_spec *spec = codec->spec;
2454 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
2455}
2456
Takashi Iwai1d045db2011-07-07 18:23:21 +02002457static const struct hda_pcm_stream alc269_44k_pcm_analog_playback = {
2458 .substreams = 1,
2459 .channels_min = 2,
2460 .channels_max = 8,
2461 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
2462 /* NID is set in alc_build_pcms */
2463 .ops = {
Takashi Iwai08c189f2012-12-19 15:22:24 +01002464 .open = playback_pcm_open,
2465 .prepare = playback_pcm_prepare,
2466 .cleanup = playback_pcm_cleanup
Takashi Iwai1d045db2011-07-07 18:23:21 +02002467 },
2468};
2469
2470static const struct hda_pcm_stream alc269_44k_pcm_analog_capture = {
2471 .substreams = 1,
2472 .channels_min = 2,
2473 .channels_max = 2,
2474 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
2475 /* NID is set in alc_build_pcms */
2476};
2477
Takashi Iwai1d045db2011-07-07 18:23:21 +02002478/* different alc269-variants */
2479enum {
2480 ALC269_TYPE_ALC269VA,
2481 ALC269_TYPE_ALC269VB,
2482 ALC269_TYPE_ALC269VC,
Kailang Yangadcc70b2012-05-25 08:08:38 +02002483 ALC269_TYPE_ALC269VD,
Kailang Yang065380f2013-01-10 10:25:48 +01002484 ALC269_TYPE_ALC280,
2485 ALC269_TYPE_ALC282,
2486 ALC269_TYPE_ALC284,
Takashi Iwai1d045db2011-07-07 18:23:21 +02002487};
2488
2489/*
2490 * BIOS auto configuration
2491 */
2492static int alc269_parse_auto_config(struct hda_codec *codec)
2493{
Takashi Iwai1d045db2011-07-07 18:23:21 +02002494 static const hda_nid_t alc269_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02002495 static const hda_nid_t alc269_ssids[] = { 0, 0x1b, 0x14, 0x21 };
2496 static const hda_nid_t alc269va_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2497 struct alc_spec *spec = codec->spec;
Kailang Yangadcc70b2012-05-25 08:08:38 +02002498 const hda_nid_t *ssids;
2499
2500 switch (spec->codec_variant) {
2501 case ALC269_TYPE_ALC269VA:
2502 case ALC269_TYPE_ALC269VC:
Kailang Yang065380f2013-01-10 10:25:48 +01002503 case ALC269_TYPE_ALC280:
2504 case ALC269_TYPE_ALC284:
Kailang Yangadcc70b2012-05-25 08:08:38 +02002505 ssids = alc269va_ssids;
2506 break;
2507 case ALC269_TYPE_ALC269VB:
2508 case ALC269_TYPE_ALC269VD:
Kailang Yang065380f2013-01-10 10:25:48 +01002509 case ALC269_TYPE_ALC282:
Kailang Yangadcc70b2012-05-25 08:08:38 +02002510 ssids = alc269_ssids;
2511 break;
2512 default:
2513 ssids = alc269_ssids;
2514 break;
2515 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02002516
Takashi Iwai3e6179b2011-07-08 16:55:13 +02002517 return alc_parse_auto_config(codec, alc269_ignore, ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02002518}
2519
Kailang Yang1387e2d2012-11-08 10:23:18 +01002520static void alc269vb_toggle_power_output(struct hda_codec *codec, int power_up)
Takashi Iwai1d045db2011-07-07 18:23:21 +02002521{
2522 int val = alc_read_coef_idx(codec, 0x04);
2523 if (power_up)
2524 val |= 1 << 11;
2525 else
2526 val &= ~(1 << 11);
2527 alc_write_coef_idx(codec, 0x04, val);
2528}
2529
2530static void alc269_shutup(struct hda_codec *codec)
2531{
Kailang Yangadcc70b2012-05-25 08:08:38 +02002532 struct alc_spec *spec = codec->spec;
2533
2534 if (spec->codec_variant != ALC269_TYPE_ALC269VB)
2535 return;
2536
Kailang Yang1387e2d2012-11-08 10:23:18 +01002537 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
2538 alc269vb_toggle_power_output(codec, 0);
2539 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
2540 (alc_get_coef0(codec) & 0x00ff) == 0x018) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02002541 msleep(150);
2542 }
2543}
2544
Takashi Iwai2a439522011-07-26 09:52:50 +02002545#ifdef CONFIG_PM
Takashi Iwai1d045db2011-07-07 18:23:21 +02002546static int alc269_resume(struct hda_codec *codec)
2547{
Kailang Yangadcc70b2012-05-25 08:08:38 +02002548 struct alc_spec *spec = codec->spec;
2549
Kailang Yang1387e2d2012-11-08 10:23:18 +01002550 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
2551 alc269vb_toggle_power_output(codec, 0);
2552 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
Kailang Yangadcc70b2012-05-25 08:08:38 +02002553 (alc_get_coef0(codec) & 0x00ff) == 0x018) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02002554 msleep(150);
2555 }
2556
2557 codec->patch_ops.init(codec);
2558
Kailang Yang1387e2d2012-11-08 10:23:18 +01002559 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
2560 alc269vb_toggle_power_output(codec, 1);
2561 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
Kailang Yangadcc70b2012-05-25 08:08:38 +02002562 (alc_get_coef0(codec) & 0x00ff) == 0x017) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02002563 msleep(200);
2564 }
2565
Takashi Iwai1d045db2011-07-07 18:23:21 +02002566 snd_hda_codec_resume_amp(codec);
2567 snd_hda_codec_resume_cache(codec);
2568 hda_call_check_power_status(codec, 0x01);
2569 return 0;
2570}
Takashi Iwai2a439522011-07-26 09:52:50 +02002571#endif /* CONFIG_PM */
Takashi Iwai1d045db2011-07-07 18:23:21 +02002572
David Henningsson108cc102012-07-20 10:37:25 +02002573static void alc269_fixup_pincfg_no_hp_to_lineout(struct hda_codec *codec,
2574 const struct alc_fixup *fix, int action)
2575{
2576 struct alc_spec *spec = codec->spec;
2577
2578 if (action == ALC_FIXUP_ACT_PRE_PROBE)
2579 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
2580}
2581
Takashi Iwai1d045db2011-07-07 18:23:21 +02002582static void alc269_fixup_hweq(struct hda_codec *codec,
2583 const struct alc_fixup *fix, int action)
2584{
2585 int coef;
2586
2587 if (action != ALC_FIXUP_ACT_INIT)
2588 return;
2589 coef = alc_read_coef_idx(codec, 0x1e);
2590 alc_write_coef_idx(codec, 0x1e, coef | 0x80);
2591}
2592
2593static void alc271_fixup_dmic(struct hda_codec *codec,
2594 const struct alc_fixup *fix, int action)
2595{
2596 static const struct hda_verb verbs[] = {
2597 {0x20, AC_VERB_SET_COEF_INDEX, 0x0d},
2598 {0x20, AC_VERB_SET_PROC_COEF, 0x4000},
2599 {}
2600 };
2601 unsigned int cfg;
2602
2603 if (strcmp(codec->chip_name, "ALC271X"))
2604 return;
2605 cfg = snd_hda_codec_get_pincfg(codec, 0x12);
2606 if (get_defcfg_connect(cfg) == AC_JACK_PORT_FIXED)
2607 snd_hda_sequence_write(codec, verbs);
2608}
2609
Takashi Iwai017f2a12011-07-09 14:42:25 +02002610static void alc269_fixup_pcm_44k(struct hda_codec *codec,
2611 const struct alc_fixup *fix, int action)
2612{
2613 struct alc_spec *spec = codec->spec;
2614
2615 if (action != ALC_FIXUP_ACT_PROBE)
2616 return;
2617
2618 /* Due to a hardware problem on Lenovo Ideadpad, we need to
2619 * fix the sample rate of analog I/O to 44.1kHz
2620 */
Takashi Iwai08c189f2012-12-19 15:22:24 +01002621 spec->gen.stream_analog_playback = &alc269_44k_pcm_analog_playback;
2622 spec->gen.stream_analog_capture = &alc269_44k_pcm_analog_capture;
Takashi Iwai017f2a12011-07-09 14:42:25 +02002623}
2624
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02002625static void alc269_fixup_stereo_dmic(struct hda_codec *codec,
2626 const struct alc_fixup *fix, int action)
2627{
2628 int coef;
2629
2630 if (action != ALC_FIXUP_ACT_INIT)
2631 return;
2632 /* The digital-mic unit sends PDM (differential signal) instead of
2633 * the standard PCM, thus you can't record a valid mono stream as is.
2634 * Below is a workaround specific to ALC269 to control the dmic
2635 * signal source as mono.
2636 */
2637 coef = alc_read_coef_idx(codec, 0x07);
2638 alc_write_coef_idx(codec, 0x07, coef | 0x80);
2639}
2640
Takashi Iwai24519912011-08-16 15:08:49 +02002641static void alc269_quanta_automute(struct hda_codec *codec)
2642{
Takashi Iwai08c189f2012-12-19 15:22:24 +01002643 snd_hda_gen_update_outputs(codec);
Takashi Iwai24519912011-08-16 15:08:49 +02002644
2645 snd_hda_codec_write(codec, 0x20, 0,
2646 AC_VERB_SET_COEF_INDEX, 0x0c);
2647 snd_hda_codec_write(codec, 0x20, 0,
2648 AC_VERB_SET_PROC_COEF, 0x680);
2649
2650 snd_hda_codec_write(codec, 0x20, 0,
2651 AC_VERB_SET_COEF_INDEX, 0x0c);
2652 snd_hda_codec_write(codec, 0x20, 0,
2653 AC_VERB_SET_PROC_COEF, 0x480);
2654}
2655
2656static void alc269_fixup_quanta_mute(struct hda_codec *codec,
2657 const struct alc_fixup *fix, int action)
2658{
2659 struct alc_spec *spec = codec->spec;
2660 if (action != ALC_FIXUP_ACT_PROBE)
2661 return;
Takashi Iwai08c189f2012-12-19 15:22:24 +01002662 spec->gen.automute_hook = alc269_quanta_automute;
Takashi Iwai24519912011-08-16 15:08:49 +02002663}
2664
David Henningsson6d3cd5d2013-01-07 12:03:47 +01002665/* update mute-LED according to the speaker mute state via mic1 VREF pin */
2666static void alc269_fixup_mic1_mute_hook(void *private_data, int enabled)
2667{
2668 struct hda_codec *codec = private_data;
2669 unsigned int pinval = AC_PINCTL_IN_EN + (enabled ?
2670 AC_PINCTL_VREF_HIZ : AC_PINCTL_VREF_80);
2671 snd_hda_set_pin_ctl_cache(codec, 0x18, pinval);
2672}
2673
2674static void alc269_fixup_mic1_mute(struct hda_codec *codec,
2675 const struct alc_fixup *fix, int action)
2676{
2677 struct alc_spec *spec = codec->spec;
Takashi Iwai3bd7b642012-12-18 14:57:09 +01002678 if (action == ALC_FIXUP_ACT_PROBE)
Takashi Iwai08c189f2012-12-19 15:22:24 +01002679 spec->gen.vmaster_mute.hook = alc269_fixup_mic1_mute_hook;
David Henningsson6d3cd5d2013-01-07 12:03:47 +01002680}
2681
Takashi Iwai420b0fe2012-03-12 12:35:27 +01002682/* update mute-LED according to the speaker mute state via mic2 VREF pin */
2683static void alc269_fixup_mic2_mute_hook(void *private_data, int enabled)
2684{
2685 struct hda_codec *codec = private_data;
2686 unsigned int pinval = enabled ? 0x20 : 0x24;
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02002687 snd_hda_set_pin_ctl_cache(codec, 0x19, pinval);
Takashi Iwai420b0fe2012-03-12 12:35:27 +01002688}
2689
2690static void alc269_fixup_mic2_mute(struct hda_codec *codec,
2691 const struct alc_fixup *fix, int action)
2692{
2693 struct alc_spec *spec = codec->spec;
Takashi Iwai3bd7b642012-12-18 14:57:09 +01002694 if (action == ALC_FIXUP_ACT_PROBE)
Takashi Iwai08c189f2012-12-19 15:22:24 +01002695 spec->gen.vmaster_mute.hook = alc269_fixup_mic2_mute_hook;
Takashi Iwai420b0fe2012-03-12 12:35:27 +01002696}
2697
Dylan Reid08a978d2012-11-18 22:56:40 -08002698static void alc271_hp_gate_mic_jack(struct hda_codec *codec,
2699 const struct alc_fixup *fix,
2700 int action)
2701{
2702 struct alc_spec *spec = codec->spec;
2703
Takashi Iwai08c189f2012-12-19 15:22:24 +01002704 if (snd_BUG_ON(!spec->gen.am_entry[1].pin ||
2705 !spec->gen.autocfg.hp_pins[0]))
Takashi Iwaiab16c6d2012-11-29 09:56:50 +01002706 return;
Dylan Reid08a978d2012-11-18 22:56:40 -08002707 if (action == ALC_FIXUP_ACT_PROBE)
Takashi Iwai08c189f2012-12-19 15:22:24 +01002708 snd_hda_jack_set_gating_jack(codec, spec->gen.am_entry[1].pin,
2709 spec->gen.autocfg.hp_pins[0]);
Dylan Reid08a978d2012-11-18 22:56:40 -08002710}
David Henningsson693b6132012-06-22 19:12:10 +02002711
Takashi Iwai1d045db2011-07-07 18:23:21 +02002712enum {
2713 ALC269_FIXUP_SONY_VAIO,
2714 ALC275_FIXUP_SONY_VAIO_GPIO2,
2715 ALC269_FIXUP_DELL_M101Z,
2716 ALC269_FIXUP_SKU_IGNORE,
2717 ALC269_FIXUP_ASUS_G73JW,
2718 ALC269_FIXUP_LENOVO_EAPD,
2719 ALC275_FIXUP_SONY_HWEQ,
2720 ALC271_FIXUP_DMIC,
Takashi Iwai017f2a12011-07-09 14:42:25 +02002721 ALC269_FIXUP_PCM_44K,
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02002722 ALC269_FIXUP_STEREO_DMIC,
Takashi Iwai24519912011-08-16 15:08:49 +02002723 ALC269_FIXUP_QUANTA_MUTE,
2724 ALC269_FIXUP_LIFEBOOK,
Takashi Iwaia4297b52011-08-23 18:40:12 +02002725 ALC269_FIXUP_AMIC,
2726 ALC269_FIXUP_DMIC,
2727 ALC269VB_FIXUP_AMIC,
2728 ALC269VB_FIXUP_DMIC,
David Henningsson6d3cd5d2013-01-07 12:03:47 +01002729 ALC269_FIXUP_MIC1_MUTE_LED,
Takashi Iwai420b0fe2012-03-12 12:35:27 +01002730 ALC269_FIXUP_MIC2_MUTE_LED,
David Henningsson693b6132012-06-22 19:12:10 +02002731 ALC269_FIXUP_INV_DMIC,
David Henningsson108cc102012-07-20 10:37:25 +02002732 ALC269_FIXUP_LENOVO_DOCK,
2733 ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT,
Dylan Reid08a978d2012-11-18 22:56:40 -08002734 ALC271_FIXUP_AMIC_MIC2,
2735 ALC271_FIXUP_HP_GATE_MIC_JACK,
Takashi Iwai1d045db2011-07-07 18:23:21 +02002736};
2737
2738static const struct alc_fixup alc269_fixups[] = {
2739 [ALC269_FIXUP_SONY_VAIO] = {
2740 .type = ALC_FIXUP_VERBS,
2741 .v.verbs = (const struct hda_verb[]) {
2742 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREFGRD},
2743 {}
2744 }
2745 },
2746 [ALC275_FIXUP_SONY_VAIO_GPIO2] = {
2747 .type = ALC_FIXUP_VERBS,
2748 .v.verbs = (const struct hda_verb[]) {
2749 {0x01, AC_VERB_SET_GPIO_MASK, 0x04},
2750 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x04},
2751 {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
2752 { }
2753 },
2754 .chained = true,
2755 .chain_id = ALC269_FIXUP_SONY_VAIO
2756 },
2757 [ALC269_FIXUP_DELL_M101Z] = {
2758 .type = ALC_FIXUP_VERBS,
2759 .v.verbs = (const struct hda_verb[]) {
2760 /* Enables internal speaker */
2761 {0x20, AC_VERB_SET_COEF_INDEX, 13},
2762 {0x20, AC_VERB_SET_PROC_COEF, 0x4040},
2763 {}
2764 }
2765 },
2766 [ALC269_FIXUP_SKU_IGNORE] = {
Takashi Iwai23d30f22012-05-07 17:17:32 +02002767 .type = ALC_FIXUP_FUNC,
2768 .v.func = alc_fixup_sku_ignore,
Takashi Iwai1d045db2011-07-07 18:23:21 +02002769 },
2770 [ALC269_FIXUP_ASUS_G73JW] = {
2771 .type = ALC_FIXUP_PINS,
2772 .v.pins = (const struct alc_pincfg[]) {
2773 { 0x17, 0x99130111 }, /* subwoofer */
2774 { }
2775 }
2776 },
2777 [ALC269_FIXUP_LENOVO_EAPD] = {
2778 .type = ALC_FIXUP_VERBS,
2779 .v.verbs = (const struct hda_verb[]) {
2780 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
2781 {}
2782 }
2783 },
2784 [ALC275_FIXUP_SONY_HWEQ] = {
2785 .type = ALC_FIXUP_FUNC,
2786 .v.func = alc269_fixup_hweq,
2787 .chained = true,
2788 .chain_id = ALC275_FIXUP_SONY_VAIO_GPIO2
2789 },
2790 [ALC271_FIXUP_DMIC] = {
2791 .type = ALC_FIXUP_FUNC,
2792 .v.func = alc271_fixup_dmic,
2793 },
Takashi Iwai017f2a12011-07-09 14:42:25 +02002794 [ALC269_FIXUP_PCM_44K] = {
2795 .type = ALC_FIXUP_FUNC,
2796 .v.func = alc269_fixup_pcm_44k,
David Henningsson012e7eb2012-08-08 08:43:37 +02002797 .chained = true,
2798 .chain_id = ALC269_FIXUP_QUANTA_MUTE
Takashi Iwai017f2a12011-07-09 14:42:25 +02002799 },
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02002800 [ALC269_FIXUP_STEREO_DMIC] = {
2801 .type = ALC_FIXUP_FUNC,
2802 .v.func = alc269_fixup_stereo_dmic,
2803 },
Takashi Iwai24519912011-08-16 15:08:49 +02002804 [ALC269_FIXUP_QUANTA_MUTE] = {
2805 .type = ALC_FIXUP_FUNC,
2806 .v.func = alc269_fixup_quanta_mute,
2807 },
2808 [ALC269_FIXUP_LIFEBOOK] = {
2809 .type = ALC_FIXUP_PINS,
2810 .v.pins = (const struct alc_pincfg[]) {
2811 { 0x1a, 0x2101103f }, /* dock line-out */
2812 { 0x1b, 0x23a11040 }, /* dock mic-in */
2813 { }
2814 },
2815 .chained = true,
2816 .chain_id = ALC269_FIXUP_QUANTA_MUTE
2817 },
Takashi Iwaia4297b52011-08-23 18:40:12 +02002818 [ALC269_FIXUP_AMIC] = {
2819 .type = ALC_FIXUP_PINS,
2820 .v.pins = (const struct alc_pincfg[]) {
2821 { 0x14, 0x99130110 }, /* speaker */
2822 { 0x15, 0x0121401f }, /* HP out */
2823 { 0x18, 0x01a19c20 }, /* mic */
2824 { 0x19, 0x99a3092f }, /* int-mic */
2825 { }
2826 },
2827 },
2828 [ALC269_FIXUP_DMIC] = {
2829 .type = ALC_FIXUP_PINS,
2830 .v.pins = (const struct alc_pincfg[]) {
2831 { 0x12, 0x99a3092f }, /* int-mic */
2832 { 0x14, 0x99130110 }, /* speaker */
2833 { 0x15, 0x0121401f }, /* HP out */
2834 { 0x18, 0x01a19c20 }, /* mic */
2835 { }
2836 },
2837 },
2838 [ALC269VB_FIXUP_AMIC] = {
2839 .type = ALC_FIXUP_PINS,
2840 .v.pins = (const struct alc_pincfg[]) {
2841 { 0x14, 0x99130110 }, /* speaker */
2842 { 0x18, 0x01a19c20 }, /* mic */
2843 { 0x19, 0x99a3092f }, /* int-mic */
2844 { 0x21, 0x0121401f }, /* HP out */
2845 { }
2846 },
2847 },
David Henningsson2267ea92012-01-03 08:45:56 +01002848 [ALC269VB_FIXUP_DMIC] = {
Takashi Iwaia4297b52011-08-23 18:40:12 +02002849 .type = ALC_FIXUP_PINS,
2850 .v.pins = (const struct alc_pincfg[]) {
2851 { 0x12, 0x99a3092f }, /* int-mic */
2852 { 0x14, 0x99130110 }, /* speaker */
2853 { 0x18, 0x01a19c20 }, /* mic */
2854 { 0x21, 0x0121401f }, /* HP out */
2855 { }
2856 },
2857 },
David Henningsson6d3cd5d2013-01-07 12:03:47 +01002858 [ALC269_FIXUP_MIC1_MUTE_LED] = {
2859 .type = ALC_FIXUP_FUNC,
2860 .v.func = alc269_fixup_mic1_mute,
2861 },
Takashi Iwai420b0fe2012-03-12 12:35:27 +01002862 [ALC269_FIXUP_MIC2_MUTE_LED] = {
2863 .type = ALC_FIXUP_FUNC,
2864 .v.func = alc269_fixup_mic2_mute,
2865 },
David Henningsson693b6132012-06-22 19:12:10 +02002866 [ALC269_FIXUP_INV_DMIC] = {
2867 .type = ALC_FIXUP_FUNC,
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002868 .v.func = alc_fixup_inv_dmic_0x12,
David Henningsson693b6132012-06-22 19:12:10 +02002869 },
David Henningsson108cc102012-07-20 10:37:25 +02002870 [ALC269_FIXUP_LENOVO_DOCK] = {
2871 .type = ALC_FIXUP_PINS,
2872 .v.pins = (const struct alc_pincfg[]) {
2873 { 0x19, 0x23a11040 }, /* dock mic */
2874 { 0x1b, 0x2121103f }, /* dock headphone */
2875 { }
2876 },
2877 .chained = true,
2878 .chain_id = ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT
2879 },
2880 [ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT] = {
2881 .type = ALC_FIXUP_FUNC,
2882 .v.func = alc269_fixup_pincfg_no_hp_to_lineout,
2883 },
Dylan Reid08a978d2012-11-18 22:56:40 -08002884 [ALC271_FIXUP_AMIC_MIC2] = {
2885 .type = ALC_FIXUP_PINS,
2886 .v.pins = (const struct alc_pincfg[]) {
2887 { 0x14, 0x99130110 }, /* speaker */
2888 { 0x19, 0x01a19c20 }, /* mic */
2889 { 0x1b, 0x99a7012f }, /* int-mic */
2890 { 0x21, 0x0121401f }, /* HP out */
2891 { }
2892 },
2893 },
2894 [ALC271_FIXUP_HP_GATE_MIC_JACK] = {
2895 .type = ALC_FIXUP_FUNC,
2896 .v.func = alc271_hp_gate_mic_jack,
2897 .chained = true,
2898 .chain_id = ALC271_FIXUP_AMIC_MIC2,
2899 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02002900};
2901
2902static const struct snd_pci_quirk alc269_fixup_tbl[] = {
David Henningsson693b6132012-06-22 19:12:10 +02002903 SND_PCI_QUIRK(0x1025, 0x029b, "Acer 1810TZ", ALC269_FIXUP_INV_DMIC),
2904 SND_PCI_QUIRK(0x1025, 0x0349, "Acer AOD260", ALC269_FIXUP_INV_DMIC),
Takashi Iwai420b0fe2012-03-12 12:35:27 +01002905 SND_PCI_QUIRK(0x103c, 0x1586, "HP", ALC269_FIXUP_MIC2_MUTE_LED),
David Henningsson6d3cd5d2013-01-07 12:03:47 +01002906 SND_PCI_QUIRK(0x103c, 0x1972, "HP Pavilion 17", ALC269_FIXUP_MIC1_MUTE_LED),
David Henningsson5ac57552012-04-20 10:01:46 +02002907 SND_PCI_QUIRK(0x1043, 0x1427, "Asus Zenbook UX31E", ALC269VB_FIXUP_DMIC),
Oleksij Rempel148728f2012-09-21 17:44:58 +02002908 SND_PCI_QUIRK(0x1043, 0x1517, "Asus Zenbook UX31A", ALC269VB_FIXUP_DMIC),
Takashi Iwai017f2a12011-07-09 14:42:25 +02002909 SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW),
David Henningsson693b6132012-06-22 19:12:10 +02002910 SND_PCI_QUIRK(0x1043, 0x1b13, "Asus U41SV", ALC269_FIXUP_INV_DMIC),
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02002911 SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC),
2912 SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC),
2913 SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC),
2914 SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
2915 SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
Takashi Iwai1d045db2011-07-07 18:23:21 +02002916 SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2),
2917 SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
2918 SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
2919 SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO),
2920 SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
Dylan Reid08a978d2012-11-18 22:56:40 -08002921 SND_PCI_QUIRK(0x1025, 0x0742, "Acer AO756", ALC271_FIXUP_HP_GATE_MIC_JACK),
Takashi Iwai1d045db2011-07-07 18:23:21 +02002922 SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC),
Takashi Iwai24519912011-08-16 15:08:49 +02002923 SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook", ALC269_FIXUP_LIFEBOOK),
Takashi Iwai1d045db2011-07-07 18:23:21 +02002924 SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE),
2925 SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE),
2926 SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE),
2927 SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE),
2928 SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE),
Takashi Iwai707fba32012-08-02 09:04:39 +02002929 SND_PCI_QUIRK(0x17aa, 0x21f6, "Thinkpad T530", ALC269_FIXUP_LENOVO_DOCK),
Felix Kaechelec8415a42012-08-06 23:02:01 +02002930 SND_PCI_QUIRK(0x17aa, 0x21fa, "Thinkpad X230", ALC269_FIXUP_LENOVO_DOCK),
Stefán Freyr84f98fd2012-10-19 22:46:00 +02002931 SND_PCI_QUIRK(0x17aa, 0x21f3, "Thinkpad T430", ALC269_FIXUP_LENOVO_DOCK),
Philipp A. Mohrenweiser4407be62012-08-06 13:14:18 +02002932 SND_PCI_QUIRK(0x17aa, 0x21fb, "Thinkpad T430s", ALC269_FIXUP_LENOVO_DOCK),
David Henningsson108cc102012-07-20 10:37:25 +02002933 SND_PCI_QUIRK(0x17aa, 0x2203, "Thinkpad X230 Tablet", ALC269_FIXUP_LENOVO_DOCK),
David Henningsson012e7eb2012-08-08 08:43:37 +02002934 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_PCM_44K),
Takashi Iwai1d045db2011-07-07 18:23:21 +02002935 SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD),
Takashi Iwaia4297b52011-08-23 18:40:12 +02002936
Takashi Iwaia7f3eed2012-02-16 13:03:18 +01002937#if 0
Takashi Iwaia4297b52011-08-23 18:40:12 +02002938 /* Below is a quirk table taken from the old code.
2939 * Basically the device should work as is without the fixup table.
2940 * If BIOS doesn't give a proper info, enable the corresponding
2941 * fixup entry.
Jesper Juhl7d7eb9e2012-04-12 22:11:25 +02002942 */
Takashi Iwaia4297b52011-08-23 18:40:12 +02002943 SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
2944 ALC269_FIXUP_AMIC),
2945 SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC),
Takashi Iwaia4297b52011-08-23 18:40:12 +02002946 SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC),
2947 SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC),
2948 SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC),
2949 SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269_FIXUP_AMIC),
2950 SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269_FIXUP_AMIC),
2951 SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269_FIXUP_AMIC),
2952 SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_FIXUP_AMIC),
2953 SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269_FIXUP_AMIC),
2954 SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_FIXUP_AMIC),
2955 SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_FIXUP_AMIC),
2956 SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_FIXUP_AMIC),
2957 SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_FIXUP_AMIC),
2958 SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_FIXUP_AMIC),
2959 SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_FIXUP_AMIC),
2960 SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_FIXUP_AMIC),
2961 SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_FIXUP_AMIC),
2962 SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_FIXUP_AMIC),
2963 SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_FIXUP_AMIC),
2964 SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_FIXUP_AMIC),
2965 SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_FIXUP_AMIC),
2966 SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_FIXUP_AMIC),
2967 SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_FIXUP_AMIC),
2968 SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_FIXUP_AMIC),
2969 SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_FIXUP_AMIC),
2970 SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_FIXUP_AMIC),
2971 SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_FIXUP_AMIC),
2972 SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_FIXUP_AMIC),
2973 SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_FIXUP_AMIC),
2974 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_FIXUP_AMIC),
2975 SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_FIXUP_AMIC),
2976 SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_FIXUP_AMIC),
2977 SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_FIXUP_AMIC),
2978 SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_FIXUP_AMIC),
2979 SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_FIXUP_DMIC),
2980 SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_FIXUP_AMIC),
2981 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_AMIC),
2982 SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_FIXUP_DMIC),
2983 SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_FIXUP_DMIC),
2984#endif
2985 {}
2986};
2987
2988static const struct alc_model_fixup alc269_fixup_models[] = {
2989 {.id = ALC269_FIXUP_AMIC, .name = "laptop-amic"},
2990 {.id = ALC269_FIXUP_DMIC, .name = "laptop-dmic"},
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002991 {.id = ALC269_FIXUP_STEREO_DMIC, .name = "alc269-dmic"},
2992 {.id = ALC271_FIXUP_DMIC, .name = "alc271-dmic"},
2993 {.id = ALC269_FIXUP_INV_DMIC, .name = "inv-dmic"},
David Henningsson108cc102012-07-20 10:37:25 +02002994 {.id = ALC269_FIXUP_LENOVO_DOCK, .name = "lenovo-dock"},
Takashi Iwai1d045db2011-07-07 18:23:21 +02002995 {}
2996};
2997
2998
Takashi Iwai546bb672012-03-07 08:37:19 +01002999static void alc269_fill_coef(struct hda_codec *codec)
Takashi Iwai1d045db2011-07-07 18:23:21 +02003000{
Kailang Yang526af6e2012-03-07 08:25:20 +01003001 struct alc_spec *spec = codec->spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003002 int val;
3003
Kailang Yang526af6e2012-03-07 08:25:20 +01003004 if (spec->codec_variant != ALC269_TYPE_ALC269VB)
Takashi Iwai546bb672012-03-07 08:37:19 +01003005 return;
Kailang Yang526af6e2012-03-07 08:25:20 +01003006
Takashi Iwai1bb7e432011-10-17 16:50:59 +02003007 if ((alc_get_coef0(codec) & 0x00ff) < 0x015) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02003008 alc_write_coef_idx(codec, 0xf, 0x960b);
3009 alc_write_coef_idx(codec, 0xe, 0x8817);
3010 }
3011
Takashi Iwai1bb7e432011-10-17 16:50:59 +02003012 if ((alc_get_coef0(codec) & 0x00ff) == 0x016) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02003013 alc_write_coef_idx(codec, 0xf, 0x960b);
3014 alc_write_coef_idx(codec, 0xe, 0x8814);
3015 }
3016
Takashi Iwai1bb7e432011-10-17 16:50:59 +02003017 if ((alc_get_coef0(codec) & 0x00ff) == 0x017) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02003018 val = alc_read_coef_idx(codec, 0x04);
3019 /* Power up output pin */
3020 alc_write_coef_idx(codec, 0x04, val | (1<<11));
3021 }
3022
Takashi Iwai1bb7e432011-10-17 16:50:59 +02003023 if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02003024 val = alc_read_coef_idx(codec, 0xd);
3025 if ((val & 0x0c00) >> 10 != 0x1) {
3026 /* Capless ramp up clock control */
3027 alc_write_coef_idx(codec, 0xd, val | (1<<10));
3028 }
3029 val = alc_read_coef_idx(codec, 0x17);
3030 if ((val & 0x01c0) >> 6 != 0x4) {
3031 /* Class D power on reset */
3032 alc_write_coef_idx(codec, 0x17, val | (1<<7));
3033 }
3034 }
3035
3036 val = alc_read_coef_idx(codec, 0xd); /* Class D */
3037 alc_write_coef_idx(codec, 0xd, val | (1<<14));
3038
3039 val = alc_read_coef_idx(codec, 0x4); /* HP */
3040 alc_write_coef_idx(codec, 0x4, val | (1<<11));
Takashi Iwai1d045db2011-07-07 18:23:21 +02003041}
3042
3043/*
3044 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02003045static int patch_alc269(struct hda_codec *codec)
3046{
3047 struct alc_spec *spec;
Takashi Iwai3de95172012-05-07 18:03:15 +02003048 int err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003049
Takashi Iwai3de95172012-05-07 18:03:15 +02003050 err = alc_alloc_spec(codec, 0x0b);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003051 if (err < 0)
Takashi Iwai3de95172012-05-07 18:03:15 +02003052 return err;
3053
3054 spec = codec->spec;
Takashi Iwai08c189f2012-12-19 15:22:24 +01003055 spec->gen.shared_mic_vref_pin = 0x18;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003056
Herton Ronaldo Krzesinski9f720bb92012-09-27 10:38:14 -03003057 alc_pick_fixup(codec, alc269_fixup_models,
3058 alc269_fixup_tbl, alc269_fixups);
3059 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
3060
3061 alc_auto_parse_customize_define(codec);
3062
Kailang Yang065380f2013-01-10 10:25:48 +01003063 switch (codec->vendor_id) {
3064 case 0x10ec0269:
Takashi Iwai1d045db2011-07-07 18:23:21 +02003065 spec->codec_variant = ALC269_TYPE_ALC269VA;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02003066 switch (alc_get_coef0(codec) & 0x00f0) {
3067 case 0x0010:
Takashi Iwai1d045db2011-07-07 18:23:21 +02003068 if (codec->bus->pci->subsystem_vendor == 0x1025 &&
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003069 spec->cdefine.platform_type == 1)
Takashi Iwai20ca0c32011-10-17 16:00:35 +02003070 err = alc_codec_rename(codec, "ALC271X");
Takashi Iwai1d045db2011-07-07 18:23:21 +02003071 spec->codec_variant = ALC269_TYPE_ALC269VB;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02003072 break;
3073 case 0x0020:
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003074 if (codec->bus->pci->subsystem_vendor == 0x17aa &&
3075 codec->bus->pci->subsystem_device == 0x21f3)
Takashi Iwai20ca0c32011-10-17 16:00:35 +02003076 err = alc_codec_rename(codec, "ALC3202");
Takashi Iwai1d045db2011-07-07 18:23:21 +02003077 spec->codec_variant = ALC269_TYPE_ALC269VC;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02003078 break;
Kailang Yangadcc70b2012-05-25 08:08:38 +02003079 case 0x0030:
3080 spec->codec_variant = ALC269_TYPE_ALC269VD;
3081 break;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02003082 default:
Takashi Iwai1d045db2011-07-07 18:23:21 +02003083 alc_fix_pll_init(codec, 0x20, 0x04, 15);
Takashi Iwai1bb7e432011-10-17 16:50:59 +02003084 }
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003085 if (err < 0)
3086 goto error;
Takashi Iwai546bb672012-03-07 08:37:19 +01003087 spec->init_hook = alc269_fill_coef;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003088 alc269_fill_coef(codec);
Kailang Yang065380f2013-01-10 10:25:48 +01003089 break;
3090
3091 case 0x10ec0280:
3092 case 0x10ec0290:
3093 spec->codec_variant = ALC269_TYPE_ALC280;
3094 break;
3095 case 0x10ec0282:
3096 case 0x10ec0283:
3097 spec->codec_variant = ALC269_TYPE_ALC282;
3098 break;
3099 case 0x10ec0284:
3100 case 0x10ec0292:
3101 spec->codec_variant = ALC269_TYPE_ALC284;
3102 break;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003103 }
3104
Takashi Iwaia4297b52011-08-23 18:40:12 +02003105 /* automatic parse from the BIOS config */
3106 err = alc269_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003107 if (err < 0)
3108 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003109
Takashi Iwai08c189f2012-12-19 15:22:24 +01003110 if (!spec->gen.no_analog && has_cdefine_beep(codec)) {
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003111 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003112 if (err < 0)
3113 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003114 set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003115 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02003116
Takashi Iwai1d045db2011-07-07 18:23:21 +02003117 codec->patch_ops = alc_patch_ops;
Takashi Iwai2a439522011-07-26 09:52:50 +02003118#ifdef CONFIG_PM
Takashi Iwai1d045db2011-07-07 18:23:21 +02003119 codec->patch_ops.resume = alc269_resume;
3120#endif
Takashi Iwai1d045db2011-07-07 18:23:21 +02003121 spec->shutup = alc269_shutup;
3122
Takashi Iwai589876e2012-02-20 15:47:55 +01003123 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
3124
Takashi Iwai1d045db2011-07-07 18:23:21 +02003125 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003126
3127 error:
3128 alc_free(codec);
3129 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003130}
3131
3132/*
3133 * ALC861
3134 */
3135
Takashi Iwai1d045db2011-07-07 18:23:21 +02003136static int alc861_parse_auto_config(struct hda_codec *codec)
3137{
Takashi Iwai1d045db2011-07-07 18:23:21 +02003138 static const hda_nid_t alc861_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003139 static const hda_nid_t alc861_ssids[] = { 0x0e, 0x0f, 0x0b, 0 };
3140 return alc_parse_auto_config(codec, alc861_ignore, alc861_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02003141}
3142
Takashi Iwai1d045db2011-07-07 18:23:21 +02003143/* Pin config fixes */
3144enum {
Takashi Iwaie652f4c2012-02-13 11:56:25 +01003145 ALC861_FIXUP_FSC_AMILO_PI1505,
3146 ALC861_FIXUP_AMP_VREF_0F,
3147 ALC861_FIXUP_NO_JACK_DETECT,
3148 ALC861_FIXUP_ASUS_A6RP,
Takashi Iwai1d045db2011-07-07 18:23:21 +02003149};
3150
Takashi Iwai31150f22012-01-30 10:54:08 +01003151/* On some laptops, VREF of pin 0x0f is abused for controlling the main amp */
3152static void alc861_fixup_asus_amp_vref_0f(struct hda_codec *codec,
3153 const struct alc_fixup *fix, int action)
3154{
3155 struct alc_spec *spec = codec->spec;
3156 unsigned int val;
3157
3158 if (action != ALC_FIXUP_ACT_INIT)
3159 return;
3160 val = snd_hda_codec_read(codec, 0x0f, 0,
3161 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
3162 if (!(val & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN)))
3163 val |= AC_PINCTL_IN_EN;
3164 val |= AC_PINCTL_VREF_50;
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02003165 snd_hda_set_pin_ctl(codec, 0x0f, val);
Takashi Iwai08c189f2012-12-19 15:22:24 +01003166 spec->gen.keep_vref_in_automute = 1;
Takashi Iwai31150f22012-01-30 10:54:08 +01003167}
3168
Takashi Iwaie652f4c2012-02-13 11:56:25 +01003169/* suppress the jack-detection */
3170static void alc_fixup_no_jack_detect(struct hda_codec *codec,
3171 const struct alc_fixup *fix, int action)
3172{
3173 if (action == ALC_FIXUP_ACT_PRE_PROBE)
3174 codec->no_jack_detect = 1;
Jesper Juhl7d7eb9e2012-04-12 22:11:25 +02003175}
Takashi Iwaie652f4c2012-02-13 11:56:25 +01003176
Takashi Iwai1d045db2011-07-07 18:23:21 +02003177static const struct alc_fixup alc861_fixups[] = {
Takashi Iwaie652f4c2012-02-13 11:56:25 +01003178 [ALC861_FIXUP_FSC_AMILO_PI1505] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02003179 .type = ALC_FIXUP_PINS,
3180 .v.pins = (const struct alc_pincfg[]) {
3181 { 0x0b, 0x0221101f }, /* HP */
3182 { 0x0f, 0x90170310 }, /* speaker */
3183 { }
3184 }
3185 },
Takashi Iwaie652f4c2012-02-13 11:56:25 +01003186 [ALC861_FIXUP_AMP_VREF_0F] = {
Takashi Iwai31150f22012-01-30 10:54:08 +01003187 .type = ALC_FIXUP_FUNC,
3188 .v.func = alc861_fixup_asus_amp_vref_0f,
Takashi Iwai3b25eb62012-01-25 09:55:46 +01003189 },
Takashi Iwaie652f4c2012-02-13 11:56:25 +01003190 [ALC861_FIXUP_NO_JACK_DETECT] = {
3191 .type = ALC_FIXUP_FUNC,
3192 .v.func = alc_fixup_no_jack_detect,
3193 },
3194 [ALC861_FIXUP_ASUS_A6RP] = {
3195 .type = ALC_FIXUP_FUNC,
3196 .v.func = alc861_fixup_asus_amp_vref_0f,
3197 .chained = true,
3198 .chain_id = ALC861_FIXUP_NO_JACK_DETECT,
3199 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02003200};
3201
3202static const struct snd_pci_quirk alc861_fixup_tbl[] = {
Takashi Iwaie652f4c2012-02-13 11:56:25 +01003203 SND_PCI_QUIRK(0x1043, 0x1393, "ASUS A6Rp", ALC861_FIXUP_ASUS_A6RP),
3204 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS laptop", ALC861_FIXUP_AMP_VREF_0F),
3205 SND_PCI_QUIRK(0x1462, 0x7254, "HP DX2200", ALC861_FIXUP_NO_JACK_DETECT),
3206 SND_PCI_QUIRK(0x1584, 0x2b01, "Haier W18", ALC861_FIXUP_AMP_VREF_0F),
3207 SND_PCI_QUIRK(0x1584, 0x0000, "Uniwill ECS M31EI", ALC861_FIXUP_AMP_VREF_0F),
3208 SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", ALC861_FIXUP_FSC_AMILO_PI1505),
Takashi Iwai1d045db2011-07-07 18:23:21 +02003209 {}
3210};
3211
3212/*
3213 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02003214static int patch_alc861(struct hda_codec *codec)
3215{
3216 struct alc_spec *spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003217 int err;
3218
Takashi Iwai3de95172012-05-07 18:03:15 +02003219 err = alc_alloc_spec(codec, 0x15);
3220 if (err < 0)
3221 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003222
Takashi Iwai3de95172012-05-07 18:03:15 +02003223 spec = codec->spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003224
Takashi Iwaicb4e4822011-08-23 17:34:25 +02003225 alc_pick_fixup(codec, NULL, alc861_fixup_tbl, alc861_fixups);
3226 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02003227
Takashi Iwaicb4e4822011-08-23 17:34:25 +02003228 /* automatic parse from the BIOS config */
3229 err = alc861_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003230 if (err < 0)
3231 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003232
Takashi Iwai08c189f2012-12-19 15:22:24 +01003233 if (!spec->gen.no_analog) {
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003234 err = snd_hda_attach_beep_device(codec, 0x23);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003235 if (err < 0)
3236 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003237 set_beep_amp(spec, 0x23, 0, HDA_OUTPUT);
3238 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02003239
Takashi Iwai1d045db2011-07-07 18:23:21 +02003240 codec->patch_ops = alc_patch_ops;
Takashi Iwai83012a72012-08-24 18:38:08 +02003241#ifdef CONFIG_PM
Takashi Iwaicb4e4822011-08-23 17:34:25 +02003242 spec->power_hook = alc_power_eapd;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003243#endif
3244
Takashi Iwai589876e2012-02-20 15:47:55 +01003245 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
3246
Takashi Iwai1d045db2011-07-07 18:23:21 +02003247 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003248
3249 error:
3250 alc_free(codec);
3251 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003252}
3253
3254/*
3255 * ALC861-VD support
3256 *
3257 * Based on ALC882
3258 *
3259 * In addition, an independent DAC
3260 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02003261static int alc861vd_parse_auto_config(struct hda_codec *codec)
3262{
Takashi Iwai1d045db2011-07-07 18:23:21 +02003263 static const hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003264 static const hda_nid_t alc861vd_ssids[] = { 0x15, 0x1b, 0x14, 0 };
3265 return alc_parse_auto_config(codec, alc861vd_ignore, alc861vd_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02003266}
3267
Takashi Iwai1d045db2011-07-07 18:23:21 +02003268enum {
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02003269 ALC660VD_FIX_ASUS_GPIO1,
3270 ALC861VD_FIX_DALLAS,
Takashi Iwai1d045db2011-07-07 18:23:21 +02003271};
3272
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02003273/* exclude VREF80 */
3274static void alc861vd_fixup_dallas(struct hda_codec *codec,
3275 const struct alc_fixup *fix, int action)
3276{
3277 if (action == ALC_FIXUP_ACT_PRE_PROBE) {
Takashi Iwaib78562b2012-12-17 20:06:49 +01003278 snd_hda_override_pin_caps(codec, 0x18, 0x00000734);
3279 snd_hda_override_pin_caps(codec, 0x19, 0x0000073c);
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02003280 }
3281}
3282
Takashi Iwai1d045db2011-07-07 18:23:21 +02003283static const struct alc_fixup alc861vd_fixups[] = {
3284 [ALC660VD_FIX_ASUS_GPIO1] = {
3285 .type = ALC_FIXUP_VERBS,
3286 .v.verbs = (const struct hda_verb[]) {
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02003287 /* reset GPIO1 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02003288 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
3289 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
3290 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
3291 { }
3292 }
3293 },
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02003294 [ALC861VD_FIX_DALLAS] = {
3295 .type = ALC_FIXUP_FUNC,
3296 .v.func = alc861vd_fixup_dallas,
3297 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02003298};
3299
3300static const struct snd_pci_quirk alc861vd_fixup_tbl[] = {
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02003301 SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_FIX_DALLAS),
Takashi Iwai1d045db2011-07-07 18:23:21 +02003302 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1),
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02003303 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_FIX_DALLAS),
Takashi Iwai1d045db2011-07-07 18:23:21 +02003304 {}
3305};
3306
Takashi Iwai1d045db2011-07-07 18:23:21 +02003307/*
3308 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02003309static int patch_alc861vd(struct hda_codec *codec)
3310{
3311 struct alc_spec *spec;
Takashi Iwaicb4e4822011-08-23 17:34:25 +02003312 int err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003313
Takashi Iwai3de95172012-05-07 18:03:15 +02003314 err = alc_alloc_spec(codec, 0x0b);
3315 if (err < 0)
3316 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003317
Takashi Iwai3de95172012-05-07 18:03:15 +02003318 spec = codec->spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003319
Takashi Iwaicb4e4822011-08-23 17:34:25 +02003320 alc_pick_fixup(codec, NULL, alc861vd_fixup_tbl, alc861vd_fixups);
3321 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02003322
Takashi Iwaicb4e4822011-08-23 17:34:25 +02003323 /* automatic parse from the BIOS config */
3324 err = alc861vd_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003325 if (err < 0)
3326 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003327
Takashi Iwai08c189f2012-12-19 15:22:24 +01003328 if (!spec->gen.no_analog) {
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003329 err = snd_hda_attach_beep_device(codec, 0x23);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003330 if (err < 0)
3331 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003332 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
3333 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02003334
Takashi Iwai1d045db2011-07-07 18:23:21 +02003335 codec->patch_ops = alc_patch_ops;
3336
Takashi Iwai1d045db2011-07-07 18:23:21 +02003337 spec->shutup = alc_eapd_shutup;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003338
Takashi Iwai589876e2012-02-20 15:47:55 +01003339 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
3340
Takashi Iwai1d045db2011-07-07 18:23:21 +02003341 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003342
3343 error:
3344 alc_free(codec);
3345 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02003346}
3347
3348/*
3349 * ALC662 support
3350 *
3351 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
3352 * configuration. Each pin widget can choose any input DACs and a mixer.
3353 * Each ADC is connected from a mixer of all inputs. This makes possible
3354 * 6-channel independent captures.
3355 *
3356 * In addition, an independent DAC for the multi-playback (not used in this
3357 * driver yet).
3358 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02003359
3360/*
3361 * BIOS auto configuration
3362 */
3363
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003364static int alc662_parse_auto_config(struct hda_codec *codec)
3365{
Takashi Iwai4c6d72d2011-05-02 11:30:18 +02003366 static const hda_nid_t alc662_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003367 static const hda_nid_t alc663_ssids[] = { 0x15, 0x1b, 0x14, 0x21 };
3368 static const hda_nid_t alc662_ssids[] = { 0x15, 0x1b, 0x14, 0 };
3369 const hda_nid_t *ssids;
Takashi Iwaiee979a142008-09-02 15:42:20 +02003370
Kailang Yang6227cdc2010-02-25 08:36:52 +01003371 if (codec->vendor_id == 0x10ec0272 || codec->vendor_id == 0x10ec0663 ||
3372 codec->vendor_id == 0x10ec0665 || codec->vendor_id == 0x10ec0670)
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003373 ssids = alc663_ssids;
Kailang Yang6227cdc2010-02-25 08:36:52 +01003374 else
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003375 ssids = alc662_ssids;
3376 return alc_parse_auto_config(codec, alc662_ignore, ssids);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003377}
3378
Todd Broch6be79482010-12-07 16:51:05 -08003379static void alc272_fixup_mario(struct hda_codec *codec,
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01003380 const struct alc_fixup *fix, int action)
Takashi Iwai6fc398c2011-01-13 14:36:37 +01003381{
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01003382 if (action != ALC_FIXUP_ACT_PROBE)
Takashi Iwai6fc398c2011-01-13 14:36:37 +01003383 return;
Todd Broch6be79482010-12-07 16:51:05 -08003384 if (snd_hda_override_amp_caps(codec, 0x2, HDA_OUTPUT,
3385 (0x3b << AC_AMPCAP_OFFSET_SHIFT) |
3386 (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT) |
3387 (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT) |
3388 (0 << AC_AMPCAP_MUTE_SHIFT)))
3389 printk(KERN_WARNING
3390 "hda_codec: failed to override amp caps for NID 0x2\n");
3391}
3392
David Henningsson6cb3b702010-09-09 08:51:44 +02003393enum {
Daniel T Chen2df03512010-10-10 22:39:28 -04003394 ALC662_FIXUP_ASPIRE,
David Henningsson6cb3b702010-09-09 08:51:44 +02003395 ALC662_FIXUP_IDEAPAD,
Todd Broch6be79482010-12-07 16:51:05 -08003396 ALC272_FIXUP_MARIO,
Anisse Astierd2ebd472011-01-20 12:36:21 +01003397 ALC662_FIXUP_CZC_P10T,
David Henningsson94024cd2011-04-29 14:10:55 +02003398 ALC662_FIXUP_SKU_IGNORE,
Takashi Iwaie59ea3e2011-06-29 17:21:00 +02003399 ALC662_FIXUP_HP_RP5800,
Takashi Iwai53c334a2011-08-23 18:27:14 +02003400 ALC662_FIXUP_ASUS_MODE1,
3401 ALC662_FIXUP_ASUS_MODE2,
3402 ALC662_FIXUP_ASUS_MODE3,
3403 ALC662_FIXUP_ASUS_MODE4,
3404 ALC662_FIXUP_ASUS_MODE5,
3405 ALC662_FIXUP_ASUS_MODE6,
3406 ALC662_FIXUP_ASUS_MODE7,
3407 ALC662_FIXUP_ASUS_MODE8,
Takashi Iwai1565cc32012-02-13 12:03:25 +01003408 ALC662_FIXUP_NO_JACK_DETECT,
David Henningssonedfe3bf2012-06-12 13:15:12 +02003409 ALC662_FIXUP_ZOTAC_Z68,
Takashi Iwai125821a2012-06-22 14:30:29 +02003410 ALC662_FIXUP_INV_DMIC,
David Henningsson6cb3b702010-09-09 08:51:44 +02003411};
3412
3413static const struct alc_fixup alc662_fixups[] = {
Daniel T Chen2df03512010-10-10 22:39:28 -04003414 [ALC662_FIXUP_ASPIRE] = {
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01003415 .type = ALC_FIXUP_PINS,
3416 .v.pins = (const struct alc_pincfg[]) {
Daniel T Chen2df03512010-10-10 22:39:28 -04003417 { 0x15, 0x99130112 }, /* subwoofer */
3418 { }
3419 }
3420 },
David Henningsson6cb3b702010-09-09 08:51:44 +02003421 [ALC662_FIXUP_IDEAPAD] = {
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01003422 .type = ALC_FIXUP_PINS,
3423 .v.pins = (const struct alc_pincfg[]) {
David Henningsson6cb3b702010-09-09 08:51:44 +02003424 { 0x17, 0x99130112 }, /* subwoofer */
3425 { }
3426 }
3427 },
Todd Broch6be79482010-12-07 16:51:05 -08003428 [ALC272_FIXUP_MARIO] = {
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01003429 .type = ALC_FIXUP_FUNC,
3430 .v.func = alc272_fixup_mario,
Anisse Astierd2ebd472011-01-20 12:36:21 +01003431 },
3432 [ALC662_FIXUP_CZC_P10T] = {
3433 .type = ALC_FIXUP_VERBS,
3434 .v.verbs = (const struct hda_verb[]) {
3435 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
3436 {}
3437 }
3438 },
David Henningsson94024cd2011-04-29 14:10:55 +02003439 [ALC662_FIXUP_SKU_IGNORE] = {
Takashi Iwai23d30f22012-05-07 17:17:32 +02003440 .type = ALC_FIXUP_FUNC,
3441 .v.func = alc_fixup_sku_ignore,
Takashi Iwaic6b35872011-03-28 12:05:31 +02003442 },
Takashi Iwaie59ea3e2011-06-29 17:21:00 +02003443 [ALC662_FIXUP_HP_RP5800] = {
3444 .type = ALC_FIXUP_PINS,
3445 .v.pins = (const struct alc_pincfg[]) {
3446 { 0x14, 0x0221201f }, /* HP out */
3447 { }
3448 },
3449 .chained = true,
3450 .chain_id = ALC662_FIXUP_SKU_IGNORE
3451 },
Takashi Iwai53c334a2011-08-23 18:27:14 +02003452 [ALC662_FIXUP_ASUS_MODE1] = {
3453 .type = ALC_FIXUP_PINS,
3454 .v.pins = (const struct alc_pincfg[]) {
3455 { 0x14, 0x99130110 }, /* speaker */
3456 { 0x18, 0x01a19c20 }, /* mic */
3457 { 0x19, 0x99a3092f }, /* int-mic */
3458 { 0x21, 0x0121401f }, /* HP out */
3459 { }
3460 },
3461 .chained = true,
3462 .chain_id = ALC662_FIXUP_SKU_IGNORE
3463 },
3464 [ALC662_FIXUP_ASUS_MODE2] = {
Takashi Iwai2996bdb2011-08-18 16:02:24 +02003465 .type = ALC_FIXUP_PINS,
3466 .v.pins = (const struct alc_pincfg[]) {
3467 { 0x14, 0x99130110 }, /* speaker */
3468 { 0x18, 0x01a19820 }, /* mic */
3469 { 0x19, 0x99a3092f }, /* int-mic */
3470 { 0x1b, 0x0121401f }, /* HP out */
3471 { }
3472 },
Takashi Iwai53c334a2011-08-23 18:27:14 +02003473 .chained = true,
3474 .chain_id = ALC662_FIXUP_SKU_IGNORE
3475 },
3476 [ALC662_FIXUP_ASUS_MODE3] = {
3477 .type = ALC_FIXUP_PINS,
3478 .v.pins = (const struct alc_pincfg[]) {
3479 { 0x14, 0x99130110 }, /* speaker */
3480 { 0x15, 0x0121441f }, /* HP */
3481 { 0x18, 0x01a19840 }, /* mic */
3482 { 0x19, 0x99a3094f }, /* int-mic */
3483 { 0x21, 0x01211420 }, /* HP2 */
3484 { }
3485 },
3486 .chained = true,
3487 .chain_id = ALC662_FIXUP_SKU_IGNORE
3488 },
3489 [ALC662_FIXUP_ASUS_MODE4] = {
3490 .type = ALC_FIXUP_PINS,
3491 .v.pins = (const struct alc_pincfg[]) {
3492 { 0x14, 0x99130110 }, /* speaker */
3493 { 0x16, 0x99130111 }, /* speaker */
3494 { 0x18, 0x01a19840 }, /* mic */
3495 { 0x19, 0x99a3094f }, /* int-mic */
3496 { 0x21, 0x0121441f }, /* HP */
3497 { }
3498 },
3499 .chained = true,
3500 .chain_id = ALC662_FIXUP_SKU_IGNORE
3501 },
3502 [ALC662_FIXUP_ASUS_MODE5] = {
3503 .type = ALC_FIXUP_PINS,
3504 .v.pins = (const struct alc_pincfg[]) {
3505 { 0x14, 0x99130110 }, /* speaker */
3506 { 0x15, 0x0121441f }, /* HP */
3507 { 0x16, 0x99130111 }, /* speaker */
3508 { 0x18, 0x01a19840 }, /* mic */
3509 { 0x19, 0x99a3094f }, /* int-mic */
3510 { }
3511 },
3512 .chained = true,
3513 .chain_id = ALC662_FIXUP_SKU_IGNORE
3514 },
3515 [ALC662_FIXUP_ASUS_MODE6] = {
3516 .type = ALC_FIXUP_PINS,
3517 .v.pins = (const struct alc_pincfg[]) {
3518 { 0x14, 0x99130110 }, /* speaker */
3519 { 0x15, 0x01211420 }, /* HP2 */
3520 { 0x18, 0x01a19840 }, /* mic */
3521 { 0x19, 0x99a3094f }, /* int-mic */
3522 { 0x1b, 0x0121441f }, /* HP */
3523 { }
3524 },
3525 .chained = true,
3526 .chain_id = ALC662_FIXUP_SKU_IGNORE
3527 },
3528 [ALC662_FIXUP_ASUS_MODE7] = {
3529 .type = ALC_FIXUP_PINS,
3530 .v.pins = (const struct alc_pincfg[]) {
3531 { 0x14, 0x99130110 }, /* speaker */
3532 { 0x17, 0x99130111 }, /* speaker */
3533 { 0x18, 0x01a19840 }, /* mic */
3534 { 0x19, 0x99a3094f }, /* int-mic */
3535 { 0x1b, 0x01214020 }, /* HP */
3536 { 0x21, 0x0121401f }, /* HP */
3537 { }
3538 },
3539 .chained = true,
3540 .chain_id = ALC662_FIXUP_SKU_IGNORE
3541 },
3542 [ALC662_FIXUP_ASUS_MODE8] = {
3543 .type = ALC_FIXUP_PINS,
3544 .v.pins = (const struct alc_pincfg[]) {
3545 { 0x14, 0x99130110 }, /* speaker */
3546 { 0x12, 0x99a30970 }, /* int-mic */
3547 { 0x15, 0x01214020 }, /* HP */
3548 { 0x17, 0x99130111 }, /* speaker */
3549 { 0x18, 0x01a19840 }, /* mic */
3550 { 0x21, 0x0121401f }, /* HP */
3551 { }
3552 },
3553 .chained = true,
3554 .chain_id = ALC662_FIXUP_SKU_IGNORE
Takashi Iwai2996bdb2011-08-18 16:02:24 +02003555 },
Takashi Iwai1565cc32012-02-13 12:03:25 +01003556 [ALC662_FIXUP_NO_JACK_DETECT] = {
3557 .type = ALC_FIXUP_FUNC,
3558 .v.func = alc_fixup_no_jack_detect,
3559 },
David Henningssonedfe3bf2012-06-12 13:15:12 +02003560 [ALC662_FIXUP_ZOTAC_Z68] = {
3561 .type = ALC_FIXUP_PINS,
3562 .v.pins = (const struct alc_pincfg[]) {
3563 { 0x1b, 0x02214020 }, /* Front HP */
3564 { }
3565 }
3566 },
Takashi Iwai125821a2012-06-22 14:30:29 +02003567 [ALC662_FIXUP_INV_DMIC] = {
3568 .type = ALC_FIXUP_FUNC,
Takashi Iwai6e72aa52012-06-25 10:52:25 +02003569 .v.func = alc_fixup_inv_dmic_0x12,
Takashi Iwai125821a2012-06-22 14:30:29 +02003570 },
David Henningsson6cb3b702010-09-09 08:51:44 +02003571};
3572
Takashi Iwaia9111322011-05-02 11:30:18 +02003573static const struct snd_pci_quirk alc662_fixup_tbl[] = {
Takashi Iwai53c334a2011-08-23 18:27:14 +02003574 SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2),
David Henningssona6c47a82011-02-10 15:39:19 +01003575 SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE),
David Henningsson94024cd2011-04-29 14:10:55 +02003576 SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE),
Takashi Iwai125821a2012-06-22 14:30:29 +02003577 SND_PCI_QUIRK(0x1025, 0x0349, "eMachines eM250", ALC662_FIXUP_INV_DMIC),
Daniel T Chen2df03512010-10-10 22:39:28 -04003578 SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE),
Takashi Iwaie59ea3e2011-06-29 17:21:00 +02003579 SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800),
Takashi Iwai1565cc32012-02-13 12:03:25 +01003580 SND_PCI_QUIRK(0x1043, 0x8469, "ASUS mobo", ALC662_FIXUP_NO_JACK_DETECT),
Takashi Iwai53c334a2011-08-23 18:27:14 +02003581 SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2),
Daniel T Chena0e90ac2010-11-20 10:20:35 -05003582 SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD),
Valentine Sinitsynd4118582010-10-01 22:24:08 +06003583 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD),
David Henningsson6cb3b702010-09-09 08:51:44 +02003584 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD),
David Henningssonedfe3bf2012-06-12 13:15:12 +02003585 SND_PCI_QUIRK(0x19da, 0xa130, "Zotac Z68", ALC662_FIXUP_ZOTAC_Z68),
Anisse Astierd2ebd472011-01-20 12:36:21 +01003586 SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T),
Takashi Iwai53c334a2011-08-23 18:27:14 +02003587
3588#if 0
3589 /* Below is a quirk table taken from the old code.
3590 * Basically the device should work as is without the fixup table.
3591 * If BIOS doesn't give a proper info, enable the corresponding
3592 * fixup entry.
Jesper Juhl7d7eb9e2012-04-12 22:11:25 +02003593 */
Takashi Iwai53c334a2011-08-23 18:27:14 +02003594 SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC662_FIXUP_ASUS_MODE1),
3595 SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC662_FIXUP_ASUS_MODE3),
3596 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC662_FIXUP_ASUS_MODE1),
3597 SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC662_FIXUP_ASUS_MODE3),
3598 SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
3599 SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
3600 SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
3601 SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC662_FIXUP_ASUS_MODE1),
3602 SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC662_FIXUP_ASUS_MODE1),
3603 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
3604 SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC662_FIXUP_ASUS_MODE7),
3605 SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC662_FIXUP_ASUS_MODE7),
3606 SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC662_FIXUP_ASUS_MODE8),
3607 SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC662_FIXUP_ASUS_MODE3),
3608 SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC662_FIXUP_ASUS_MODE1),
3609 SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
3610 SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_FIXUP_ASUS_MODE2),
3611 SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC662_FIXUP_ASUS_MODE1),
3612 SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
3613 SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
3614 SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
3615 SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
3616 SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC662_FIXUP_ASUS_MODE1),
3617 SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC662_FIXUP_ASUS_MODE3),
3618 SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_FIXUP_ASUS_MODE2),
3619 SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
3620 SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC662_FIXUP_ASUS_MODE5),
3621 SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
3622 SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
3623 SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC662_FIXUP_ASUS_MODE1),
3624 SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
3625 SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
3626 SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC662_FIXUP_ASUS_MODE3),
3627 SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC662_FIXUP_ASUS_MODE3),
3628 SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC662_FIXUP_ASUS_MODE1),
3629 SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC662_FIXUP_ASUS_MODE1),
3630 SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC662_FIXUP_ASUS_MODE1),
3631 SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC662_FIXUP_ASUS_MODE1),
3632 SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC662_FIXUP_ASUS_MODE1),
3633 SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
3634 SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_FIXUP_ASUS_MODE2),
3635 SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC662_FIXUP_ASUS_MODE1),
3636 SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
3637 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC662_FIXUP_ASUS_MODE3),
3638 SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC662_FIXUP_ASUS_MODE1),
3639 SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC662_FIXUP_ASUS_MODE1),
3640 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC662_FIXUP_ASUS_MODE1),
3641 SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_FIXUP_ASUS_MODE2),
3642 SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
3643 SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE4),
3644#endif
David Henningsson6cb3b702010-09-09 08:51:44 +02003645 {}
3646};
3647
Todd Broch6be79482010-12-07 16:51:05 -08003648static const struct alc_model_fixup alc662_fixup_models[] = {
3649 {.id = ALC272_FIXUP_MARIO, .name = "mario"},
Takashi Iwai53c334a2011-08-23 18:27:14 +02003650 {.id = ALC662_FIXUP_ASUS_MODE1, .name = "asus-mode1"},
3651 {.id = ALC662_FIXUP_ASUS_MODE2, .name = "asus-mode2"},
3652 {.id = ALC662_FIXUP_ASUS_MODE3, .name = "asus-mode3"},
3653 {.id = ALC662_FIXUP_ASUS_MODE4, .name = "asus-mode4"},
3654 {.id = ALC662_FIXUP_ASUS_MODE5, .name = "asus-mode5"},
3655 {.id = ALC662_FIXUP_ASUS_MODE6, .name = "asus-mode6"},
3656 {.id = ALC662_FIXUP_ASUS_MODE7, .name = "asus-mode7"},
3657 {.id = ALC662_FIXUP_ASUS_MODE8, .name = "asus-mode8"},
Takashi Iwai6e72aa52012-06-25 10:52:25 +02003658 {.id = ALC662_FIXUP_INV_DMIC, .name = "inv-dmic"},
Todd Broch6be79482010-12-07 16:51:05 -08003659 {}
3660};
David Henningsson6cb3b702010-09-09 08:51:44 +02003661
Kailang Yang8663ff72012-06-29 09:35:52 +02003662static void alc662_fill_coef(struct hda_codec *codec)
3663{
3664 int val, coef;
3665
3666 coef = alc_get_coef0(codec);
3667
3668 switch (codec->vendor_id) {
3669 case 0x10ec0662:
3670 if ((coef & 0x00f0) == 0x0030) {
3671 val = alc_read_coef_idx(codec, 0x4); /* EAPD Ctrl */
3672 alc_write_coef_idx(codec, 0x4, val & ~(1<<10));
3673 }
3674 break;
3675 case 0x10ec0272:
3676 case 0x10ec0273:
3677 case 0x10ec0663:
3678 case 0x10ec0665:
3679 case 0x10ec0670:
3680 case 0x10ec0671:
3681 case 0x10ec0672:
3682 val = alc_read_coef_idx(codec, 0xd); /* EAPD Ctrl */
3683 alc_write_coef_idx(codec, 0xd, val | (1<<14));
3684 break;
3685 }
3686}
David Henningsson6cb3b702010-09-09 08:51:44 +02003687
Takashi Iwai1d045db2011-07-07 18:23:21 +02003688/*
3689 */
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003690static int patch_alc662(struct hda_codec *codec)
3691{
3692 struct alc_spec *spec;
Takashi Iwai3de95172012-05-07 18:03:15 +02003693 int err;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003694
Takashi Iwai3de95172012-05-07 18:03:15 +02003695 err = alc_alloc_spec(codec, 0x0b);
3696 if (err < 0)
3697 return err;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003698
Takashi Iwai3de95172012-05-07 18:03:15 +02003699 spec = codec->spec;
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02003700
Takashi Iwai53c334a2011-08-23 18:27:14 +02003701 /* handle multiple HPs as is */
3702 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
3703
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +02003704 alc_fix_pll_init(codec, 0x20, 0x04, 15);
3705
Kailang Yang8663ff72012-06-29 09:35:52 +02003706 spec->init_hook = alc662_fill_coef;
3707 alc662_fill_coef(codec);
3708
Takashi Iwai8e5a0502012-06-21 15:49:33 +02003709 alc_pick_fixup(codec, alc662_fixup_models,
3710 alc662_fixup_tbl, alc662_fixups);
3711 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
3712
3713 alc_auto_parse_customize_define(codec);
3714
Takashi Iwai1bb7e432011-10-17 16:50:59 +02003715 if ((alc_get_coef0(codec) & (1 << 14)) &&
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003716 codec->bus->pci->subsystem_vendor == 0x1025 &&
3717 spec->cdefine.platform_type == 1) {
3718 if (alc_codec_rename(codec, "ALC272X") < 0)
3719 goto error;
Takashi Iwai20ca0c32011-10-17 16:00:35 +02003720 }
Kailang Yang274693f2009-12-03 10:07:50 +01003721
Takashi Iwaib9c51062011-08-24 18:08:07 +02003722 /* automatic parse from the BIOS config */
3723 err = alc662_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003724 if (err < 0)
3725 goto error;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003726
Takashi Iwai08c189f2012-12-19 15:22:24 +01003727 if (!spec->gen.no_analog && has_cdefine_beep(codec)) {
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003728 err = snd_hda_attach_beep_device(codec, 0x1);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003729 if (err < 0)
3730 goto error;
Kailang Yangda00c242010-03-19 11:23:45 +01003731 switch (codec->vendor_id) {
3732 case 0x10ec0662:
3733 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
3734 break;
3735 case 0x10ec0272:
3736 case 0x10ec0663:
3737 case 0x10ec0665:
3738 set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
3739 break;
3740 case 0x10ec0273:
3741 set_beep_amp(spec, 0x0b, 0x03, HDA_INPUT);
3742 break;
3743 }
Kailang Yangcec27c82010-02-04 14:18:18 +01003744 }
Takashi Iwai2134ea42008-01-10 16:53:55 +01003745
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003746 codec->patch_ops = alc_patch_ops;
Takashi Iwai1c7161532011-04-07 10:37:16 +02003747 spec->shutup = alc_eapd_shutup;
David Henningsson6cb3b702010-09-09 08:51:44 +02003748
Takashi Iwai589876e2012-02-20 15:47:55 +01003749 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
3750
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003751 return 0;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003752
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003753 error:
3754 alc_free(codec);
3755 return err;
Kailang Yangb478b992011-05-18 11:51:15 +02003756}
3757
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003758/*
Kailang Yangd1eb57f2010-06-23 16:25:26 +02003759 * ALC680 support
3760 */
Kailang Yangd1eb57f2010-06-23 16:25:26 +02003761
Kailang Yangd1eb57f2010-06-23 16:25:26 +02003762static int alc680_parse_auto_config(struct hda_codec *codec)
3763{
Takashi Iwai3e6179b2011-07-08 16:55:13 +02003764 return alc_parse_auto_config(codec, NULL, NULL);
Kailang Yangd1eb57f2010-06-23 16:25:26 +02003765}
3766
Kailang Yangd1eb57f2010-06-23 16:25:26 +02003767/*
Kailang Yangd1eb57f2010-06-23 16:25:26 +02003768 */
Kailang Yangd1eb57f2010-06-23 16:25:26 +02003769static int patch_alc680(struct hda_codec *codec)
3770{
Kailang Yangd1eb57f2010-06-23 16:25:26 +02003771 int err;
3772
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02003773 /* ALC680 has no aa-loopback mixer */
Takashi Iwai3de95172012-05-07 18:03:15 +02003774 err = alc_alloc_spec(codec, 0);
3775 if (err < 0)
3776 return err;
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02003777
Takashi Iwai1ebec5f2011-08-15 13:21:48 +02003778 /* automatic parse from the BIOS config */
3779 err = alc680_parse_auto_config(codec);
3780 if (err < 0) {
3781 alc_free(codec);
3782 return err;
Kailang Yangd1eb57f2010-06-23 16:25:26 +02003783 }
3784
Kailang Yangd1eb57f2010-06-23 16:25:26 +02003785 codec->patch_ops = alc_patch_ops;
Kailang Yangd1eb57f2010-06-23 16:25:26 +02003786
3787 return 0;
3788}
3789
3790/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791 * patch entries
3792 */
Takashi Iwaia9111322011-05-02 11:30:18 +02003793static const struct hda_codec_preset snd_hda_preset_realtek[] = {
Kailang Yang296f0332011-05-18 11:52:36 +02003794 { .id = 0x10ec0221, .name = "ALC221", .patch = patch_alc269 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795 { .id = 0x10ec0260, .name = "ALC260", .patch = patch_alc260 },
Kailang Yangdf694da2005-12-05 19:42:22 +01003796 { .id = 0x10ec0262, .name = "ALC262", .patch = patch_alc262 },
Kailang Yangf6a92242007-12-13 16:52:54 +01003797 { .id = 0x10ec0267, .name = "ALC267", .patch = patch_alc268 },
Kailang Yanga361d842007-06-05 12:30:55 +02003798 { .id = 0x10ec0268, .name = "ALC268", .patch = patch_alc268 },
Kailang Yangf6a92242007-12-13 16:52:54 +01003799 { .id = 0x10ec0269, .name = "ALC269", .patch = patch_alc269 },
Kailang Yangebb83ee2009-12-17 12:23:00 +01003800 { .id = 0x10ec0270, .name = "ALC270", .patch = patch_alc269 },
Kailang Yang01afd412008-10-15 11:22:09 +02003801 { .id = 0x10ec0272, .name = "ALC272", .patch = patch_alc662 },
Kailang Yangebb83ee2009-12-17 12:23:00 +01003802 { .id = 0x10ec0275, .name = "ALC275", .patch = patch_alc269 },
Kailang Yang296f0332011-05-18 11:52:36 +02003803 { .id = 0x10ec0276, .name = "ALC276", .patch = patch_alc269 },
David Henningssonbefae822012-06-25 19:49:28 +02003804 { .id = 0x10ec0280, .name = "ALC280", .patch = patch_alc269 },
David Henningsson4e01ec62012-07-18 07:38:46 +02003805 { .id = 0x10ec0282, .name = "ALC282", .patch = patch_alc269 },
Kailang Yang7ff34ad2012-10-06 17:02:30 +02003806 { .id = 0x10ec0283, .name = "ALC283", .patch = patch_alc269 },
Kailang Yang065380f2013-01-10 10:25:48 +01003807 { .id = 0x10ec0284, .name = "ALC284", .patch = patch_alc269 },
Kailang Yang7ff34ad2012-10-06 17:02:30 +02003808 { .id = 0x10ec0290, .name = "ALC290", .patch = patch_alc269 },
David Henningssonaf02dde2012-11-21 08:57:58 +01003809 { .id = 0x10ec0292, .name = "ALC292", .patch = patch_alc269 },
Jakub Schmidtkef32610e2007-02-02 18:17:27 +01003810 { .id = 0x10ec0861, .rev = 0x100340, .name = "ALC660",
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003811 .patch = patch_alc861 },
Jakub Schmidtkef32610e2007-02-02 18:17:27 +01003812 { .id = 0x10ec0660, .name = "ALC660-VD", .patch = patch_alc861vd },
3813 { .id = 0x10ec0861, .name = "ALC861", .patch = patch_alc861 },
3814 { .id = 0x10ec0862, .name = "ALC861-VD", .patch = patch_alc861vd },
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003815 { .id = 0x10ec0662, .rev = 0x100002, .name = "ALC662 rev2",
Takashi Iwai4953550a2009-06-30 15:28:30 +02003816 .patch = patch_alc882 },
Kailang Yangbc9f98a2007-04-12 13:06:07 +02003817 { .id = 0x10ec0662, .rev = 0x100101, .name = "ALC662 rev1",
3818 .patch = patch_alc662 },
David Henningssoncc667a72011-10-18 14:07:51 +02003819 { .id = 0x10ec0662, .rev = 0x100300, .name = "ALC662 rev3",
3820 .patch = patch_alc662 },
Kailang Yang6dda9f42008-05-27 12:05:31 +02003821 { .id = 0x10ec0663, .name = "ALC663", .patch = patch_alc662 },
Kailang Yangcec27c82010-02-04 14:18:18 +01003822 { .id = 0x10ec0665, .name = "ALC665", .patch = patch_alc662 },
Kailang Yang19a62822012-11-08 10:25:37 +01003823 { .id = 0x10ec0668, .name = "ALC668", .patch = patch_alc662 },
Kailang Yang6227cdc2010-02-25 08:36:52 +01003824 { .id = 0x10ec0670, .name = "ALC670", .patch = patch_alc662 },
Kailang Yangd1eb57f2010-06-23 16:25:26 +02003825 { .id = 0x10ec0680, .name = "ALC680", .patch = patch_alc680 },
Jakub Schmidtkef32610e2007-02-02 18:17:27 +01003826 { .id = 0x10ec0880, .name = "ALC880", .patch = patch_alc880 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827 { .id = 0x10ec0882, .name = "ALC882", .patch = patch_alc882 },
Takashi Iwai4953550a2009-06-30 15:28:30 +02003828 { .id = 0x10ec0883, .name = "ALC883", .patch = patch_alc882 },
Clive Messer669faba2008-09-30 15:49:13 +02003829 { .id = 0x10ec0885, .rev = 0x100101, .name = "ALC889A",
Takashi Iwai4953550a2009-06-30 15:28:30 +02003830 .patch = patch_alc882 },
Takashi Iwaicb308f92008-04-16 14:13:29 +02003831 { .id = 0x10ec0885, .rev = 0x100103, .name = "ALC889A",
Takashi Iwai4953550a2009-06-30 15:28:30 +02003832 .patch = patch_alc882 },
Kailang Yangdf694da2005-12-05 19:42:22 +01003833 { .id = 0x10ec0885, .name = "ALC885", .patch = patch_alc882 },
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003834 { .id = 0x10ec0887, .name = "ALC887", .patch = patch_alc882 },
Kailang Yang44426082008-10-15 11:18:05 +02003835 { .id = 0x10ec0888, .rev = 0x100101, .name = "ALC1200",
Takashi Iwai4953550a2009-06-30 15:28:30 +02003836 .patch = patch_alc882 },
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003837 { .id = 0x10ec0888, .name = "ALC888", .patch = patch_alc882 },
Takashi Iwai4953550a2009-06-30 15:28:30 +02003838 { .id = 0x10ec0889, .name = "ALC889", .patch = patch_alc882 },
Kailang Yang274693f2009-12-03 10:07:50 +01003839 { .id = 0x10ec0892, .name = "ALC892", .patch = patch_alc662 },
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02003840 { .id = 0x10ec0899, .name = "ALC898", .patch = patch_alc882 },
Kailang Yang19a62822012-11-08 10:25:37 +01003841 { .id = 0x10ec0900, .name = "ALC1150", .patch = patch_alc882 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842 {} /* terminator */
3843};
Takashi Iwai1289e9e2008-11-27 15:47:11 +01003844
3845MODULE_ALIAS("snd-hda-codec-id:10ec*");
3846
3847MODULE_LICENSE("GPL");
3848MODULE_DESCRIPTION("Realtek HD-audio codec");
3849
3850static struct hda_codec_preset_list realtek_list = {
3851 .preset = snd_hda_preset_realtek,
3852 .owner = THIS_MODULE,
3853};
3854
3855static int __init patch_realtek_init(void)
3856{
3857 return snd_hda_add_codec_preset(&realtek_list);
3858}
3859
3860static void __exit patch_realtek_exit(void)
3861{
3862 snd_hda_delete_codec_preset(&realtek_list);
3863}
3864
3865module_init(patch_realtek_init)
3866module_exit(patch_realtek_exit)