blob: a84e0493499de37ed6162c155daec18eaf9eeab1 [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>
Takashi Iwai08fb0d02013-01-10 17:33:58 +010030#include <linux/dmi.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040031#include <linux/module.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"
Takashi Iwai1835a0f2011-10-27 22:12:46 +020037#include "hda_jack.h"
Takashi Iwai08c189f2012-12-19 15:22:24 +010038#include "hda_generic.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Takashi Iwaicd63a5f2013-07-05 12:13:59 +020040/* keep halting ALC5505 DSP, for power saving */
41#define HALT_REALTEK_ALC5505
42
Takashi Iwai1d045db2011-07-07 18:23:21 +020043/* unsol event tags */
Takashi Iwai08c189f2012-12-19 15:22:24 +010044#define ALC_DCVOL_EVENT 0x08
Takashi Iwaid4a86d82010-06-23 17:51:26 +020045
Kailang Yangdf694da2005-12-05 19:42:22 +010046/* for GPIO Poll */
47#define GPIO_MASK 0x03
48
Takashi Iwai4a79ba32009-04-22 16:31:35 +020049/* extra amp-initialization sequence types */
50enum {
51 ALC_INIT_NONE,
52 ALC_INIT_DEFAULT,
53 ALC_INIT_GPIO1,
54 ALC_INIT_GPIO2,
55 ALC_INIT_GPIO3,
56};
57
David Henningsson73bdd592013-04-15 15:44:14 +020058enum {
59 ALC_HEADSET_MODE_UNKNOWN,
60 ALC_HEADSET_MODE_UNPLUGGED,
61 ALC_HEADSET_MODE_HEADSET,
62 ALC_HEADSET_MODE_MIC,
63 ALC_HEADSET_MODE_HEADPHONE,
64};
65
66enum {
67 ALC_HEADSET_TYPE_UNKNOWN,
68 ALC_HEADSET_TYPE_CTIA,
69 ALC_HEADSET_TYPE_OMTP,
70};
71
Kailang Yangda00c242010-03-19 11:23:45 +010072struct alc_customize_define {
73 unsigned int sku_cfg;
74 unsigned char port_connectivity;
75 unsigned char check_sum;
76 unsigned char customization;
77 unsigned char external_amp;
78 unsigned int enable_pcbeep:1;
79 unsigned int platform_type:1;
80 unsigned int swap:1;
81 unsigned int override:1;
David Henningsson90622912010-10-14 14:50:18 +020082 unsigned int fixup:1; /* Means that this sku is set by driver, not read from hw */
Kailang Yangda00c242010-03-19 11:23:45 +010083};
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085struct alc_spec {
Takashi Iwai08c189f2012-12-19 15:22:24 +010086 struct hda_gen_spec gen; /* must be at head */
Takashi Iwai23d30f22012-05-07 17:17:32 +020087
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 /* codec parameterization */
Takashi Iwaia9111322011-05-02 11:30:18 +020089 const struct snd_kcontrol_new *mixers[5]; /* mixer arrays */
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 unsigned int num_mixers;
Takashi Iwai45bdd1c2009-02-06 16:11:25 +010091 unsigned int beep_amp; /* beep amp value, set via set_beep_amp() */
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Kailang Yangda00c242010-03-19 11:23:45 +010093 struct alc_customize_define cdefine;
Takashi Iwai08c189f2012-12-19 15:22:24 +010094 unsigned int parse_flags; /* flag for snd_hda_parse_pin_defcfg() */
95
96 /* inverted dmic fix */
97 unsigned int inv_dmic_fixup:1; /* has inverted digital-mic workaround */
98 unsigned int inv_dmic_muted:1; /* R-ch of inv d-mic is muted? */
Takashi Iwai125821a2012-06-22 14:30:29 +020099 hda_nid_t inv_dmic_pin;
Takashi Iwai834be882006-03-01 14:16:17 +0100100
Takashi Iwai08fb0d02013-01-10 17:33:58 +0100101 /* mute LED for HP laptops, see alc269_fixup_mic_mute_hook() */
102 int mute_led_polarity;
103 hda_nid_t mute_led_nid;
104
Takashi Iwai9f5c6fa2013-03-18 14:15:58 +0100105 unsigned int gpio_led; /* used for alc269_fixup_hp_gpio_led() */
106
David Henningsson73bdd592013-04-15 15:44:14 +0200107 hda_nid_t headset_mic_pin;
108 hda_nid_t headphone_mic_pin;
109 int current_headset_mode;
110 int current_headset_type;
111
Takashi Iwaiae6b8132006-03-03 16:47:17 +0100112 /* hooks */
113 void (*init_hook)(struct hda_codec *codec);
Takashi Iwai83012a72012-08-24 18:38:08 +0200114#ifdef CONFIG_PM
Daniel T Chenc97259d2009-12-27 18:52:08 -0500115 void (*power_hook)(struct hda_codec *codec);
Hector Martinf5de24b2009-12-20 22:51:31 +0100116#endif
Takashi Iwai1c716152011-04-07 10:37:16 +0200117 void (*shutup)(struct hda_codec *codec);
Takashi Iwaid922b512011-04-28 12:18:53 +0200118
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200119 int init_amp;
Takashi Iwaid433a672010-09-20 15:11:54 +0200120 int codec_variant; /* flag for other variants */
Kailang Yang97a26572013-11-29 00:35:26 -0500121 unsigned int has_alc5505_dsp:1;
122 unsigned int no_depop_delay:1;
Takashi Iwaie64f14f2009-01-20 18:32:55 +0100123
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +0200124 /* for PLL fix */
125 hda_nid_t pll_nid;
126 unsigned int pll_coef_idx, pll_coef_bit;
Takashi Iwai1bb7e432011-10-17 16:50:59 +0200127 unsigned int coef0;
Kailang Yangdf694da2005-12-05 19:42:22 +0100128};
129
Takashi Iwai23f0c042009-02-26 13:03:58 +0100130/*
Takashi Iwai1d045db2011-07-07 18:23:21 +0200131 * Append the given mixer and verb elements for the later use
132 * The mixer array is referred in build_controls(), and init_verbs are
133 * called in init().
Takashi Iwaid88897e2008-10-31 15:01:37 +0100134 */
Takashi Iwaia9111322011-05-02 11:30:18 +0200135static void add_mixer(struct alc_spec *spec, const struct snd_kcontrol_new *mix)
Takashi Iwaid88897e2008-10-31 15:01:37 +0100136{
137 if (snd_BUG_ON(spec->num_mixers >= ARRAY_SIZE(spec->mixers)))
138 return;
139 spec->mixers[spec->num_mixers++] = mix;
140}
141
Takashi Iwaid88897e2008-10-31 15:01:37 +0100142/*
Takashi Iwai1d045db2011-07-07 18:23:21 +0200143 * GPIO setup tables, used in initialization
Kailang Yangdf694da2005-12-05 19:42:22 +0100144 */
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200145/* Enable GPIO mask and set output */
Takashi Iwaia9111322011-05-02 11:30:18 +0200146static const struct hda_verb alc_gpio1_init_verbs[] = {
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200147 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
148 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
149 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
150 { }
151};
152
Takashi Iwaia9111322011-05-02 11:30:18 +0200153static const struct hda_verb alc_gpio2_init_verbs[] = {
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200154 {0x01, AC_VERB_SET_GPIO_MASK, 0x02},
155 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x02},
156 {0x01, AC_VERB_SET_GPIO_DATA, 0x02},
157 { }
158};
159
Takashi Iwaia9111322011-05-02 11:30:18 +0200160static const struct hda_verb alc_gpio3_init_verbs[] = {
Kailang Yangbdd148a2007-05-08 15:19:08 +0200161 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
162 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
163 {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
164 { }
165};
166
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +0200167/*
168 * Fix hardware PLL issue
169 * On some codecs, the analog PLL gating control must be off while
170 * the default value is 1.
171 */
172static void alc_fix_pll(struct hda_codec *codec)
173{
174 struct alc_spec *spec = codec->spec;
175 unsigned int val;
176
177 if (!spec->pll_nid)
178 return;
179 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_COEF_INDEX,
180 spec->pll_coef_idx);
181 val = snd_hda_codec_read(codec, spec->pll_nid, 0,
182 AC_VERB_GET_PROC_COEF, 0);
183 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_COEF_INDEX,
184 spec->pll_coef_idx);
185 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_PROC_COEF,
186 val & ~(1 << spec->pll_coef_bit));
187}
188
189static void alc_fix_pll_init(struct hda_codec *codec, hda_nid_t nid,
190 unsigned int coef_idx, unsigned int coef_bit)
191{
192 struct alc_spec *spec = codec->spec;
193 spec->pll_nid = nid;
194 spec->pll_coef_idx = coef_idx;
195 spec->pll_coef_bit = coef_bit;
196 alc_fix_pll(codec);
197}
198
Takashi Iwaicf5a2272012-02-20 16:31:07 +0100199/* update the master volume per volume-knob's unsol event */
David Henningsson29adc4b2012-09-25 11:31:00 +0200200static void alc_update_knob_master(struct hda_codec *codec, struct hda_jack_tbl *jack)
Takashi Iwaicf5a2272012-02-20 16:31:07 +0100201{
202 unsigned int val;
203 struct snd_kcontrol *kctl;
204 struct snd_ctl_elem_value *uctl;
205
206 kctl = snd_hda_find_mixer_ctl(codec, "Master Playback Volume");
207 if (!kctl)
208 return;
209 uctl = kzalloc(sizeof(*uctl), GFP_KERNEL);
210 if (!uctl)
211 return;
David Henningsson29adc4b2012-09-25 11:31:00 +0200212 val = snd_hda_codec_read(codec, jack->nid, 0,
Takashi Iwaicf5a2272012-02-20 16:31:07 +0100213 AC_VERB_GET_VOLUME_KNOB_CONTROL, 0);
214 val &= HDA_AMP_VOLMASK;
215 uctl->value.integer.value[0] = val;
216 uctl->value.integer.value[1] = val;
217 kctl->put(kctl, uctl);
218 kfree(uctl);
219}
220
David Henningsson29adc4b2012-09-25 11:31:00 +0200221static void alc880_unsol_event(struct hda_codec *codec, unsigned int res)
Takashi Iwaif21d78e2012-01-19 12:10:29 +0100222{
David Henningsson29adc4b2012-09-25 11:31:00 +0200223 /* For some reason, the res given from ALC880 is broken.
224 Here we adjust it properly. */
225 snd_hda_jack_unsol_event(codec, res >> 2);
Takashi Iwaif21d78e2012-01-19 12:10:29 +0100226}
227
Kailang Yangf9423e72008-05-27 12:32:25 +0200228/* additional initialization for ALC888 variants */
229static void alc888_coef_init(struct hda_codec *codec)
230{
231 unsigned int tmp;
232
233 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0);
234 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
235 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
Takashi Iwai37db6232009-03-05 09:40:16 +0100236 if ((tmp & 0xf0) == 0x20)
Kailang Yangf9423e72008-05-27 12:32:25 +0200237 /* alc888S-VC */
238 snd_hda_codec_read(codec, 0x20, 0,
239 AC_VERB_SET_PROC_COEF, 0x830);
240 else
241 /* alc888-VB */
242 snd_hda_codec_read(codec, 0x20, 0,
243 AC_VERB_SET_PROC_COEF, 0x3030);
244}
245
Takashi Iwai1d045db2011-07-07 18:23:21 +0200246/* additional initialization for ALC889 variants */
Jaroslav Kysela87a8c372009-07-23 10:58:29 +0200247static void alc889_coef_init(struct hda_codec *codec)
248{
249 unsigned int tmp;
250
251 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
252 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
253 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
254 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, tmp|0x2010);
255}
256
Takashi Iwai3fb4a502010-01-19 15:46:37 +0100257/* turn on/off EAPD control (only if available) */
258static void set_eapd(struct hda_codec *codec, hda_nid_t nid, int on)
259{
260 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
261 return;
262 if (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)
263 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
264 on ? 2 : 0);
265}
266
Takashi Iwai691f1fc2011-04-07 10:31:43 +0200267/* turn on/off EAPD controls of the codec */
268static void alc_auto_setup_eapd(struct hda_codec *codec, bool on)
269{
270 /* We currently only handle front, HP */
Takashi Iwai39fa84e2011-06-27 15:28:57 +0200271 static hda_nid_t pins[] = {
272 0x0f, 0x10, 0x14, 0x15, 0
273 };
274 hda_nid_t *p;
275 for (p = pins; *p; p++)
276 set_eapd(codec, *p, on);
Takashi Iwai691f1fc2011-04-07 10:31:43 +0200277}
278
Takashi Iwai1c716152011-04-07 10:37:16 +0200279/* generic shutup callback;
280 * just turning off EPAD and a little pause for avoiding pop-noise
281 */
282static void alc_eapd_shutup(struct hda_codec *codec)
283{
Kailang Yang97a26572013-11-29 00:35:26 -0500284 struct alc_spec *spec = codec->spec;
285
Takashi Iwai1c716152011-04-07 10:37:16 +0200286 alc_auto_setup_eapd(codec, false);
Kailang Yang97a26572013-11-29 00:35:26 -0500287 if (!spec->no_depop_delay)
288 msleep(200);
Takashi Iwai9bfb2842013-07-24 14:31:50 +0200289 snd_hda_shutup_pins(codec);
Takashi Iwai1c716152011-04-07 10:37:16 +0200290}
291
Takashi Iwai1d045db2011-07-07 18:23:21 +0200292/* generic EAPD initialization */
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200293static void alc_auto_init_amp(struct hda_codec *codec, int type)
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200294{
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200295 unsigned int tmp;
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200296
Takashi Iwai39fa84e2011-06-27 15:28:57 +0200297 alc_auto_setup_eapd(codec, true);
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200298 switch (type) {
299 case ALC_INIT_GPIO1:
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200300 snd_hda_sequence_write(codec, alc_gpio1_init_verbs);
301 break;
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200302 case ALC_INIT_GPIO2:
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200303 snd_hda_sequence_write(codec, alc_gpio2_init_verbs);
304 break;
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200305 case ALC_INIT_GPIO3:
Kailang Yangbdd148a2007-05-08 15:19:08 +0200306 snd_hda_sequence_write(codec, alc_gpio3_init_verbs);
307 break;
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200308 case ALC_INIT_DEFAULT:
Kailang Yangc9b58002007-10-16 14:30:01 +0200309 switch (codec->vendor_id) {
310 case 0x10ec0260:
311 snd_hda_codec_write(codec, 0x1a, 0,
312 AC_VERB_SET_COEF_INDEX, 7);
313 tmp = snd_hda_codec_read(codec, 0x1a, 0,
314 AC_VERB_GET_PROC_COEF, 0);
315 snd_hda_codec_write(codec, 0x1a, 0,
316 AC_VERB_SET_COEF_INDEX, 7);
317 snd_hda_codec_write(codec, 0x1a, 0,
318 AC_VERB_SET_PROC_COEF,
319 tmp | 0x2010);
320 break;
321 case 0x10ec0262:
322 case 0x10ec0880:
323 case 0x10ec0882:
324 case 0x10ec0883:
325 case 0x10ec0885:
Takashi Iwai4a5a4c52009-02-06 12:46:59 +0100326 case 0x10ec0887:
Takashi Iwai20b67dd2011-03-23 22:54:32 +0100327 /*case 0x10ec0889:*/ /* this causes an SPDIF problem */
Jaroslav Kysela87a8c372009-07-23 10:58:29 +0200328 alc889_coef_init(codec);
Kailang Yangc9b58002007-10-16 14:30:01 +0200329 break;
Kailang Yangf9423e72008-05-27 12:32:25 +0200330 case 0x10ec0888:
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200331 alc888_coef_init(codec);
Kailang Yangf9423e72008-05-27 12:32:25 +0200332 break;
Takashi Iwai0aea7782010-01-25 15:44:11 +0100333#if 0 /* XXX: This may cause the silent output on speaker on some machines */
Kailang Yangc9b58002007-10-16 14:30:01 +0200334 case 0x10ec0267:
335 case 0x10ec0268:
336 snd_hda_codec_write(codec, 0x20, 0,
337 AC_VERB_SET_COEF_INDEX, 7);
338 tmp = snd_hda_codec_read(codec, 0x20, 0,
339 AC_VERB_GET_PROC_COEF, 0);
340 snd_hda_codec_write(codec, 0x20, 0,
Kailang Yangea1fb292008-08-26 12:58:38 +0200341 AC_VERB_SET_COEF_INDEX, 7);
Kailang Yangc9b58002007-10-16 14:30:01 +0200342 snd_hda_codec_write(codec, 0x20, 0,
343 AC_VERB_SET_PROC_COEF,
344 tmp | 0x3000);
345 break;
Takashi Iwai0aea7782010-01-25 15:44:11 +0100346#endif /* XXX */
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200347 }
Kailang Yangbc9f98a2007-04-12 13:06:07 +0200348 break;
349 }
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200350}
Kailang Yangea1fb292008-08-26 12:58:38 +0200351
Takashi Iwai1d045db2011-07-07 18:23:21 +0200352
353/*
354 * Realtek SSID verification
355 */
356
David Henningsson90622912010-10-14 14:50:18 +0200357/* Could be any non-zero and even value. When used as fixup, tells
358 * the driver to ignore any present sku defines.
359 */
360#define ALC_FIXUP_SKU_IGNORE (2)
361
Takashi Iwai23d30f22012-05-07 17:17:32 +0200362static void alc_fixup_sku_ignore(struct hda_codec *codec,
363 const struct hda_fixup *fix, int action)
364{
365 struct alc_spec *spec = codec->spec;
366 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
367 spec->cdefine.fixup = 1;
368 spec->cdefine.sku_cfg = ALC_FIXUP_SKU_IGNORE;
369 }
370}
371
Mengdong Linb5c66112013-11-29 00:35:35 -0500372static void alc_fixup_no_depop_delay(struct hda_codec *codec,
373 const struct hda_fixup *fix, int action)
374{
375 struct alc_spec *spec = codec->spec;
376
Mengdong Lin84d2dc32013-12-02 22:26:03 -0500377 if (action == HDA_FIXUP_ACT_PROBE) {
Mengdong Linb5c66112013-11-29 00:35:35 -0500378 spec->no_depop_delay = 1;
Mengdong Lin84d2dc32013-12-02 22:26:03 -0500379 codec->depop_delay = 0;
380 }
Mengdong Linb5c66112013-11-29 00:35:35 -0500381}
382
Kailang Yangda00c242010-03-19 11:23:45 +0100383static int alc_auto_parse_customize_define(struct hda_codec *codec)
384{
385 unsigned int ass, tmp, i;
Takashi Iwai7fb56222010-03-22 17:09:47 +0100386 unsigned nid = 0;
Kailang Yangda00c242010-03-19 11:23:45 +0100387 struct alc_spec *spec = codec->spec;
388
Takashi Iwaib6cbe512010-07-28 17:43:36 +0200389 spec->cdefine.enable_pcbeep = 1; /* assume always enabled */
390
David Henningsson90622912010-10-14 14:50:18 +0200391 if (spec->cdefine.fixup) {
392 ass = spec->cdefine.sku_cfg;
393 if (ass == ALC_FIXUP_SKU_IGNORE)
394 return -1;
395 goto do_sku;
396 }
397
Kailang Yangda00c242010-03-19 11:23:45 +0100398 ass = codec->subsystem_id & 0xffff;
Takashi Iwaib6cbe512010-07-28 17:43:36 +0200399 if (ass != codec->bus->pci->subsystem_device && (ass & 1))
Kailang Yangda00c242010-03-19 11:23:45 +0100400 goto do_sku;
401
402 nid = 0x1d;
403 if (codec->vendor_id == 0x10ec0260)
404 nid = 0x17;
405 ass = snd_hda_codec_get_pincfg(codec, nid);
406
407 if (!(ass & 1)) {
408 printk(KERN_INFO "hda_codec: %s: SKU not ready 0x%08x\n",
409 codec->chip_name, ass);
410 return -1;
411 }
412
413 /* check sum */
414 tmp = 0;
415 for (i = 1; i < 16; i++) {
416 if ((ass >> i) & 1)
417 tmp++;
418 }
419 if (((ass >> 16) & 0xf) != tmp)
420 return -1;
421
422 spec->cdefine.port_connectivity = ass >> 30;
423 spec->cdefine.enable_pcbeep = (ass & 0x100000) >> 20;
424 spec->cdefine.check_sum = (ass >> 16) & 0xf;
425 spec->cdefine.customization = ass >> 8;
426do_sku:
427 spec->cdefine.sku_cfg = ass;
428 spec->cdefine.external_amp = (ass & 0x38) >> 3;
429 spec->cdefine.platform_type = (ass & 0x4) >> 2;
430 spec->cdefine.swap = (ass & 0x2) >> 1;
431 spec->cdefine.override = ass & 0x1;
432
433 snd_printd("SKU: Nid=0x%x sku_cfg=0x%08x\n",
434 nid, spec->cdefine.sku_cfg);
435 snd_printd("SKU: port_connectivity=0x%x\n",
436 spec->cdefine.port_connectivity);
437 snd_printd("SKU: enable_pcbeep=0x%x\n", spec->cdefine.enable_pcbeep);
438 snd_printd("SKU: check_sum=0x%08x\n", spec->cdefine.check_sum);
439 snd_printd("SKU: customization=0x%08x\n", spec->cdefine.customization);
440 snd_printd("SKU: external_amp=0x%x\n", spec->cdefine.external_amp);
441 snd_printd("SKU: platform_type=0x%x\n", spec->cdefine.platform_type);
442 snd_printd("SKU: swap=0x%x\n", spec->cdefine.swap);
443 snd_printd("SKU: override=0x%x\n", spec->cdefine.override);
444
445 return 0;
446}
447
Takashi Iwai08c189f2012-12-19 15:22:24 +0100448/* return the position of NID in the list, or -1 if not found */
449static int find_idx_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
450{
451 int i;
452 for (i = 0; i < nums; i++)
453 if (list[i] == nid)
454 return i;
455 return -1;
456}
Takashi Iwai1d045db2011-07-07 18:23:21 +0200457/* return true if the given NID is found in the list */
Takashi Iwai3af9ee62011-06-27 12:34:01 +0200458static bool found_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
459{
Takashi Iwai21268962011-07-07 15:01:13 +0200460 return find_idx_in_nid_list(nid, list, nums) >= 0;
Takashi Iwai3af9ee62011-06-27 12:34:01 +0200461}
462
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200463/* check subsystem ID and set up device-specific initialization;
464 * return 1 if initialized, 0 if invalid SSID
465 */
466/* 32-bit subsystem ID for BIOS loading in HD Audio codec.
467 * 31 ~ 16 : Manufacture ID
468 * 15 ~ 8 : SKU ID
469 * 7 ~ 0 : Assembly ID
470 * port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
471 */
472static int alc_subsystem_id(struct hda_codec *codec,
473 hda_nid_t porta, hda_nid_t porte,
Kailang Yang6227cdc2010-02-25 08:36:52 +0100474 hda_nid_t portd, hda_nid_t porti)
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200475{
476 unsigned int ass, tmp, i;
477 unsigned nid;
478 struct alc_spec *spec = codec->spec;
479
David Henningsson90622912010-10-14 14:50:18 +0200480 if (spec->cdefine.fixup) {
481 ass = spec->cdefine.sku_cfg;
482 if (ass == ALC_FIXUP_SKU_IGNORE)
483 return 0;
484 goto do_sku;
485 }
486
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200487 ass = codec->subsystem_id & 0xffff;
488 if ((ass != codec->bus->pci->subsystem_device) && (ass & 1))
489 goto do_sku;
490
491 /* invalid SSID, check the special NID pin defcfg instead */
492 /*
Sasha Alexandrdef319f2009-06-16 16:00:15 -0400493 * 31~30 : port connectivity
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200494 * 29~21 : reserve
495 * 20 : PCBEEP input
496 * 19~16 : Check sum (15:1)
497 * 15~1 : Custom
498 * 0 : override
499 */
500 nid = 0x1d;
501 if (codec->vendor_id == 0x10ec0260)
502 nid = 0x17;
503 ass = snd_hda_codec_get_pincfg(codec, nid);
504 snd_printd("realtek: No valid SSID, "
505 "checking pincfg 0x%08x for NID 0x%x\n",
Takashi Iwaicb6605c2009-04-28 13:03:19 +0200506 ass, nid);
Kailang Yang6227cdc2010-02-25 08:36:52 +0100507 if (!(ass & 1))
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200508 return 0;
509 if ((ass >> 30) != 1) /* no physical connection */
510 return 0;
511
512 /* check sum */
513 tmp = 0;
514 for (i = 1; i < 16; i++) {
515 if ((ass >> i) & 1)
516 tmp++;
517 }
518 if (((ass >> 16) & 0xf) != tmp)
519 return 0;
520do_sku:
521 snd_printd("realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n",
522 ass & 0xffff, codec->vendor_id);
523 /*
524 * 0 : override
525 * 1 : Swap Jack
526 * 2 : 0 --> Desktop, 1 --> Laptop
527 * 3~5 : External Amplifier control
528 * 7~6 : Reserved
529 */
530 tmp = (ass & 0x38) >> 3; /* external Amp control */
531 switch (tmp) {
532 case 1:
533 spec->init_amp = ALC_INIT_GPIO1;
534 break;
535 case 3:
536 spec->init_amp = ALC_INIT_GPIO2;
537 break;
538 case 7:
539 spec->init_amp = ALC_INIT_GPIO3;
540 break;
541 case 5:
Takashi Iwai5a8cfb42010-11-26 17:11:18 +0100542 default:
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200543 spec->init_amp = ALC_INIT_DEFAULT;
544 break;
545 }
546
547 /* is laptop or Desktop and enable the function "Mute internal speaker
548 * when the external headphone out jack is plugged"
549 */
550 if (!(ass & 0x8000))
551 return 1;
552 /*
553 * 10~8 : Jack location
554 * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered
555 * 14~13: Resvered
556 * 15 : 1 --> enable the function "Mute internal speaker
557 * when the external headphone out jack is plugged"
558 */
Takashi Iwai08c189f2012-12-19 15:22:24 +0100559 if (!spec->gen.autocfg.hp_pins[0] &&
560 !(spec->gen.autocfg.line_out_pins[0] &&
561 spec->gen.autocfg.line_out_type == AUTO_PIN_HP_OUT)) {
Takashi Iwai01d48252009-10-06 13:21:54 +0200562 hda_nid_t nid;
Kailang Yangc9b58002007-10-16 14:30:01 +0200563 tmp = (ass >> 11) & 0x3; /* HP to chassis */
564 if (tmp == 0)
Takashi Iwai01d48252009-10-06 13:21:54 +0200565 nid = porta;
Kailang Yangc9b58002007-10-16 14:30:01 +0200566 else if (tmp == 1)
Takashi Iwai01d48252009-10-06 13:21:54 +0200567 nid = porte;
Kailang Yangc9b58002007-10-16 14:30:01 +0200568 else if (tmp == 2)
Takashi Iwai01d48252009-10-06 13:21:54 +0200569 nid = portd;
Kailang Yang6227cdc2010-02-25 08:36:52 +0100570 else if (tmp == 3)
571 nid = porti;
Takashi Iwai08c189f2012-12-19 15:22:24 +0100572 if (found_in_nid_list(nid, spec->gen.autocfg.line_out_pins,
573 spec->gen.autocfg.line_outs))
Takashi Iwai3af9ee62011-06-27 12:34:01 +0200574 return 1;
Takashi Iwai08c189f2012-12-19 15:22:24 +0100575 spec->gen.autocfg.hp_pins[0] = nid;
Kailang Yangc9b58002007-10-16 14:30:01 +0200576 }
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200577 return 1;
578}
Kailang Yangea1fb292008-08-26 12:58:38 +0200579
Takashi Iwai3e6179b2011-07-08 16:55:13 +0200580/* Check the validity of ALC subsystem-id
581 * ports contains an array of 4 pin NIDs for port-A, E, D and I */
582static void alc_ssid_check(struct hda_codec *codec, const hda_nid_t *ports)
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200583{
Takashi Iwai3e6179b2011-07-08 16:55:13 +0200584 if (!alc_subsystem_id(codec, ports[0], ports[1], ports[2], ports[3])) {
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200585 struct alc_spec *spec = codec->spec;
586 snd_printd("realtek: "
587 "Enable default setup for auto mode as fallback\n");
588 spec->init_amp = ALC_INIT_DEFAULT;
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200589 }
Takashi Iwai21268962011-07-07 15:01:13 +0200590}
Takashi Iwai1a1455d2011-04-28 17:36:18 +0200591
Takashi Iwai41e41f12005-06-08 14:48:49 +0200592/*
Takashi Iwai1d045db2011-07-07 18:23:21 +0200593 * COEF access helper functions
594 */
Kailang Yang9a22a8f2013-11-08 15:54:49 +0800595
596static int alc_read_coefex_idx(struct hda_codec *codec,
597 hda_nid_t nid,
598 unsigned int coef_idx)
Kailang Yang274693f2009-12-03 10:07:50 +0100599{
600 unsigned int val;
Kailang Yang9a22a8f2013-11-08 15:54:49 +0800601 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_COEF_INDEX,
Kailang Yang274693f2009-12-03 10:07:50 +0100602 coef_idx);
Kailang Yang9a22a8f2013-11-08 15:54:49 +0800603 val = snd_hda_codec_read(codec, nid, 0,
Kailang Yang274693f2009-12-03 10:07:50 +0100604 AC_VERB_GET_PROC_COEF, 0);
605 return val;
606}
607
Kailang Yang9a22a8f2013-11-08 15:54:49 +0800608#define alc_read_coef_idx(codec, coef_idx) \
609 alc_read_coefex_idx(codec, 0x20, coef_idx)
610
611static void alc_write_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
612 unsigned int coef_idx,
Kailang Yang977ddd62010-09-15 10:02:29 +0200613 unsigned int coef_val)
614{
Kailang Yang9a22a8f2013-11-08 15:54:49 +0800615 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_COEF_INDEX,
Kailang Yang977ddd62010-09-15 10:02:29 +0200616 coef_idx);
Kailang Yang9a22a8f2013-11-08 15:54:49 +0800617 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PROC_COEF,
Kailang Yang977ddd62010-09-15 10:02:29 +0200618 coef_val);
619}
620
Kailang Yang9a22a8f2013-11-08 15:54:49 +0800621#define alc_write_coef_idx(codec, coef_idx, coef_val) \
622 alc_write_coefex_idx(codec, 0x20, coef_idx, coef_val)
623
Takashi Iwai1bb7e432011-10-17 16:50:59 +0200624/* a special bypass for COEF 0; read the cached value at the second time */
625static unsigned int alc_get_coef0(struct hda_codec *codec)
626{
627 struct alc_spec *spec = codec->spec;
628 if (!spec->coef0)
629 spec->coef0 = alc_read_coef_idx(codec, 0);
630 return spec->coef0;
631}
632
Takashi Iwai1d045db2011-07-07 18:23:21 +0200633/*
Takashi Iwai1d045db2011-07-07 18:23:21 +0200634 */
635
Takashi Iwai08c189f2012-12-19 15:22:24 +0100636static hda_nid_t get_adc_nid(struct hda_codec *codec, int adc_idx, int imux_idx)
Takashi Iwai757899a2010-07-30 10:48:14 +0200637{
Takashi Iwai08c189f2012-12-19 15:22:24 +0100638 struct hda_gen_spec *spec = codec->spec;
639 if (spec->dyn_adc_switch)
640 adc_idx = spec->dyn_adc_idx[imux_idx];
641 return spec->adc_nids[adc_idx];
Takashi Iwaif9e336f2008-10-31 16:37:07 +0100642}
643
Takashi Iwai666a70d2012-12-17 20:29:29 +0100644static void alc_inv_dmic_sync_adc(struct hda_codec *codec, int adc_idx)
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200645{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 struct alc_spec *spec = codec->spec;
Takashi Iwai08c189f2012-12-19 15:22:24 +0100647 struct hda_input_mux *imux = &spec->gen.input_mux;
Takashi Iwai666a70d2012-12-17 20:29:29 +0100648 struct nid_path *path;
649 hda_nid_t nid;
650 int i, dir, parm;
651 unsigned int val;
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200652
Takashi Iwai666a70d2012-12-17 20:29:29 +0100653 for (i = 0; i < imux->num_items; i++) {
Takashi Iwai08c189f2012-12-19 15:22:24 +0100654 if (spec->gen.imux_pins[i] == spec->inv_dmic_pin)
Takashi Iwai666a70d2012-12-17 20:29:29 +0100655 break;
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200656 }
Takashi Iwai666a70d2012-12-17 20:29:29 +0100657 if (i >= imux->num_items)
658 return;
Takashi Iwaia23b6882009-03-23 15:21:36 +0100659
Takashi Iwai08c189f2012-12-19 15:22:24 +0100660 path = snd_hda_get_nid_path(codec, spec->inv_dmic_pin,
661 get_adc_nid(codec, adc_idx, i));
Takashi Iwai666a70d2012-12-17 20:29:29 +0100662 val = path->ctls[NID_PATH_MUTE_CTL];
663 if (!val)
664 return;
665 nid = get_amp_nid_(val);
666 dir = get_amp_direction_(val);
667 parm = AC_AMP_SET_RIGHT |
668 (dir == HDA_OUTPUT ? AC_AMP_SET_OUTPUT : AC_AMP_SET_INPUT);
Takashi Iwaia23b6882009-03-23 15:21:36 +0100669
Takashi Iwaic4f3ebe2012-12-20 11:33:20 +0100670 /* flush all cached amps at first */
Takashi Iwaidc870f32013-01-22 15:24:30 +0100671 snd_hda_codec_flush_cache(codec);
Takashi Iwaic4f3ebe2012-12-20 11:33:20 +0100672
Takashi Iwai666a70d2012-12-17 20:29:29 +0100673 /* we care only right channel */
674 val = snd_hda_codec_amp_read(codec, nid, 1, dir, 0);
675 if (val & 0x80) /* if already muted, we don't need to touch */
676 return;
677 val |= 0x80;
678 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
679 parm | val);
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200680}
681
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200682/*
Takashi Iwai125821a2012-06-22 14:30:29 +0200683 * Inverted digital-mic handling
684 *
685 * First off, it's a bit tricky. The "Inverted Internal Mic Capture Switch"
686 * gives the additional mute only to the right channel of the digital mic
687 * capture stream. This is a workaround for avoiding the almost silence
688 * by summing the stereo stream from some (known to be ForteMedia)
689 * digital mic unit.
690 *
691 * The logic is to call alc_inv_dmic_sync() after each action (possibly)
692 * modifying ADC amp. When the mute flag is set, it mutes the R-channel
693 * without caching so that the cache can still keep the original value.
694 * The cached value is then restored when the flag is set off or any other
695 * than d-mic is used as the current input source.
696 */
697static void alc_inv_dmic_sync(struct hda_codec *codec, bool force)
698{
699 struct alc_spec *spec = codec->spec;
Takashi Iwai666a70d2012-12-17 20:29:29 +0100700 int src, nums;
Takashi Iwai125821a2012-06-22 14:30:29 +0200701
702 if (!spec->inv_dmic_fixup)
703 return;
704 if (!spec->inv_dmic_muted && !force)
705 return;
Takashi Iwai08c189f2012-12-19 15:22:24 +0100706 nums = spec->gen.dyn_adc_switch ? 1 : spec->gen.num_adc_nids;
Takashi Iwai666a70d2012-12-17 20:29:29 +0100707 for (src = 0; src < nums; src++) {
Takashi Iwai125821a2012-06-22 14:30:29 +0200708 bool dmic_fixup = false;
Takashi Iwai125821a2012-06-22 14:30:29 +0200709
710 if (spec->inv_dmic_muted &&
Takashi Iwai08c189f2012-12-19 15:22:24 +0100711 spec->gen.imux_pins[spec->gen.cur_mux[src]] == spec->inv_dmic_pin)
Takashi Iwai125821a2012-06-22 14:30:29 +0200712 dmic_fixup = true;
713 if (!dmic_fixup && !force)
714 continue;
Takashi Iwai666a70d2012-12-17 20:29:29 +0100715 alc_inv_dmic_sync_adc(codec, src);
Takashi Iwai125821a2012-06-22 14:30:29 +0200716 }
717}
718
Takashi Iwaia90229e2013-01-18 14:10:00 +0100719static void alc_inv_dmic_hook(struct hda_codec *codec,
720 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai08c189f2012-12-19 15:22:24 +0100721{
722 alc_inv_dmic_sync(codec, false);
723}
724
Takashi Iwai125821a2012-06-22 14:30:29 +0200725static int alc_inv_dmic_sw_get(struct snd_kcontrol *kcontrol,
726 struct snd_ctl_elem_value *ucontrol)
727{
728 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
729 struct alc_spec *spec = codec->spec;
730
731 ucontrol->value.integer.value[0] = !spec->inv_dmic_muted;
732 return 0;
733}
734
735static int alc_inv_dmic_sw_put(struct snd_kcontrol *kcontrol,
736 struct snd_ctl_elem_value *ucontrol)
737{
738 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
739 struct alc_spec *spec = codec->spec;
740 unsigned int val = !ucontrol->value.integer.value[0];
741
742 if (val == spec->inv_dmic_muted)
743 return 0;
744 spec->inv_dmic_muted = val;
745 alc_inv_dmic_sync(codec, true);
746 return 0;
747}
748
749static const struct snd_kcontrol_new alc_inv_dmic_sw = {
750 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Takashi Iwaibc549762012-12-18 15:35:11 +0100751 .name = "Inverted Internal Mic Capture Switch",
Takashi Iwai125821a2012-06-22 14:30:29 +0200752 .info = snd_ctl_boolean_mono_info,
753 .get = alc_inv_dmic_sw_get,
754 .put = alc_inv_dmic_sw_put,
755};
756
757static int alc_add_inv_dmic_mixer(struct hda_codec *codec, hda_nid_t nid)
758{
759 struct alc_spec *spec = codec->spec;
Takashi Iwai668d1e92012-11-29 14:10:17 +0100760
Takashi Iwai08c189f2012-12-19 15:22:24 +0100761 if (!snd_hda_gen_add_kctl(&spec->gen, NULL, &alc_inv_dmic_sw))
Takashi Iwai125821a2012-06-22 14:30:29 +0200762 return -ENOMEM;
763 spec->inv_dmic_fixup = 1;
764 spec->inv_dmic_muted = 0;
765 spec->inv_dmic_pin = nid;
Takashi Iwai08c189f2012-12-19 15:22:24 +0100766 spec->gen.cap_sync_hook = alc_inv_dmic_hook;
Takashi Iwai125821a2012-06-22 14:30:29 +0200767 return 0;
768}
769
Takashi Iwai6e72aa52012-06-25 10:52:25 +0200770/* typically the digital mic is put at node 0x12 */
771static void alc_fixup_inv_dmic_0x12(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +0100772 const struct hda_fixup *fix, int action)
Takashi Iwai6e72aa52012-06-25 10:52:25 +0200773{
Takashi Iwai1727a772013-01-10 09:52:52 +0100774 if (action == HDA_FIXUP_ACT_PROBE)
Takashi Iwai6e72aa52012-06-25 10:52:25 +0200775 alc_add_inv_dmic_mixer(codec, 0x12);
776}
777
Takashi Iwai603c4012008-07-30 15:01:44 +0200778
Takashi Iwai67d634c2009-11-16 15:35:59 +0100779#ifdef CONFIG_SND_HDA_INPUT_BEEP
Takashi Iwai45bdd1c2009-02-06 16:11:25 +0100780/* additional beep mixers; the actual parameters are overwritten at build */
Takashi Iwaia9111322011-05-02 11:30:18 +0200781static const struct snd_kcontrol_new alc_beep_mixer[] = {
Takashi Iwai45bdd1c2009-02-06 16:11:25 +0100782 HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT),
Jaroslav Kysela123c07a2009-10-21 14:48:23 +0200783 HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_INPUT),
Takashi Iwai45bdd1c2009-02-06 16:11:25 +0100784 { } /* end */
785};
Takashi Iwai67d634c2009-11-16 15:35:59 +0100786#endif
Takashi Iwai45bdd1c2009-02-06 16:11:25 +0100787
Takashi Iwai2eab6942012-12-18 15:30:41 +0100788static int alc_build_controls(struct hda_codec *codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789{
790 struct alc_spec *spec = codec->spec;
Takashi Iwai666a70d2012-12-17 20:29:29 +0100791 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
Takashi Iwai08c189f2012-12-19 15:22:24 +0100793 err = snd_hda_gen_build_controls(codec);
794 if (err < 0)
795 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
797 for (i = 0; i < spec->num_mixers; i++) {
798 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
799 if (err < 0)
800 return err;
801 }
Takashi Iwai2134ea42008-01-10 16:53:55 +0100802
Takashi Iwai67d634c2009-11-16 15:35:59 +0100803#ifdef CONFIG_SND_HDA_INPUT_BEEP
Takashi Iwai45bdd1c2009-02-06 16:11:25 +0100804 /* create beep controls if needed */
805 if (spec->beep_amp) {
Takashi Iwaia9111322011-05-02 11:30:18 +0200806 const struct snd_kcontrol_new *knew;
Takashi Iwai45bdd1c2009-02-06 16:11:25 +0100807 for (knew = alc_beep_mixer; knew->name; knew++) {
808 struct snd_kcontrol *kctl;
809 kctl = snd_ctl_new1(knew, codec);
810 if (!kctl)
811 return -ENOMEM;
812 kctl->private_value = spec->beep_amp;
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +0100813 err = snd_hda_ctl_add(codec, 0, kctl);
Takashi Iwai45bdd1c2009-02-06 16:11:25 +0100814 if (err < 0)
815 return err;
816 }
817 }
Takashi Iwai67d634c2009-11-16 15:35:59 +0100818#endif
Takashi Iwai45bdd1c2009-02-06 16:11:25 +0100819
Takashi Iwai1727a772013-01-10 09:52:52 +0100820 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_BUILD);
Takashi Iwai420b0fe2012-03-12 12:35:27 +0100821 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822}
823
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200824
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825/*
Takashi Iwaiae6b8132006-03-03 16:47:17 +0100826 * Common callbacks
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200827 */
Takashi Iwai16ded522005-06-10 19:58:24 +0200828
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829static int alc_init(struct hda_codec *codec)
830{
831 struct alc_spec *spec = codec->spec;
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200832
Takashi Iwai546bb672012-03-07 08:37:19 +0100833 if (spec->init_hook)
834 spec->init_hook(codec);
Kailang Yang526af6e2012-03-07 08:25:20 +0100835
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +0200836 alc_fix_pll(codec);
Takashi Iwai4a79ba32009-04-22 16:31:35 +0200837 alc_auto_init_amp(codec, spec->init_amp);
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +0200838
Takashi Iwai08c189f2012-12-19 15:22:24 +0100839 snd_hda_gen_init(codec);
Takashi Iwaiae6b8132006-03-03 16:47:17 +0100840
Takashi Iwai1727a772013-01-10 09:52:52 +0100841 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_INIT);
Takashi Iwaie08a0072006-09-07 17:52:14 +0200842
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 return 0;
844}
845
Takashi Iwaia4e09aa2009-12-27 11:22:24 +0100846static inline void alc_shutup(struct hda_codec *codec)
847{
Takashi Iwai1c716152011-04-07 10:37:16 +0200848 struct alc_spec *spec = codec->spec;
849
850 if (spec && spec->shutup)
851 spec->shutup(codec);
Takashi Iwai9bfb2842013-07-24 14:31:50 +0200852 else
853 snd_hda_shutup_pins(codec);
Takashi Iwaia4e09aa2009-12-27 11:22:24 +0100854}
855
David Henningssonb67ae3f2013-11-05 13:11:37 +0100856static void alc_free(struct hda_codec *codec)
857{
858 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_FREE);
859 snd_hda_gen_free(codec);
860}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Takashi Iwai83012a72012-08-24 18:38:08 +0200862#ifdef CONFIG_PM
Daniel T Chenc97259d2009-12-27 18:52:08 -0500863static void alc_power_eapd(struct hda_codec *codec)
864{
Takashi Iwai691f1fc2011-04-07 10:31:43 +0200865 alc_auto_setup_eapd(codec, false);
Daniel T Chenc97259d2009-12-27 18:52:08 -0500866}
867
Takashi Iwai68cb2b52012-07-02 15:20:37 +0200868static int alc_suspend(struct hda_codec *codec)
Hector Martinf5de24b2009-12-20 22:51:31 +0100869{
870 struct alc_spec *spec = codec->spec;
Takashi Iwaia4e09aa2009-12-27 11:22:24 +0100871 alc_shutup(codec);
Hector Martinf5de24b2009-12-20 22:51:31 +0100872 if (spec && spec->power_hook)
Daniel T Chenc97259d2009-12-27 18:52:08 -0500873 spec->power_hook(codec);
Hector Martinf5de24b2009-12-20 22:51:31 +0100874 return 0;
875}
876#endif
877
Takashi Iwai2a439522011-07-26 09:52:50 +0200878#ifdef CONFIG_PM
Takashi Iwaie044c392008-10-27 16:56:24 +0100879static int alc_resume(struct hda_codec *codec)
880{
Kailang Yang97a26572013-11-29 00:35:26 -0500881 struct alc_spec *spec = codec->spec;
882
883 if (!spec->no_depop_delay)
884 msleep(150); /* to avoid pop noise */
Takashi Iwaie044c392008-10-27 16:56:24 +0100885 codec->patch_ops.init(codec);
886 snd_hda_codec_resume_amp(codec);
887 snd_hda_codec_resume_cache(codec);
Takashi Iwai125821a2012-06-22 14:30:29 +0200888 alc_inv_dmic_sync(codec, true);
Takashi Iwai9e5341b2010-09-21 09:57:06 +0200889 hda_call_check_power_status(codec, 0x01);
Takashi Iwaie044c392008-10-27 16:56:24 +0100890 return 0;
891}
Takashi Iwaie044c392008-10-27 16:56:24 +0100892#endif
893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894/*
895 */
Takashi Iwaia9111322011-05-02 11:30:18 +0200896static const struct hda_codec_ops alc_patch_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 .build_controls = alc_build_controls,
Takashi Iwai08c189f2012-12-19 15:22:24 +0100898 .build_pcms = snd_hda_gen_build_pcms,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 .init = alc_init,
900 .free = alc_free,
David Henningsson29adc4b2012-09-25 11:31:00 +0200901 .unsol_event = snd_hda_jack_unsol_event,
Takashi Iwai2a439522011-07-26 09:52:50 +0200902#ifdef CONFIG_PM
Takashi Iwaie044c392008-10-27 16:56:24 +0100903 .resume = alc_resume,
Hector Martinf5de24b2009-12-20 22:51:31 +0100904 .suspend = alc_suspend,
Takashi Iwaifce52a32013-01-07 12:42:48 +0100905 .check_power_status = snd_hda_gen_check_power_status,
Takashi Iwaicb53c622007-08-10 17:21:45 +0200906#endif
Daniel T Chenc97259d2009-12-27 18:52:08 -0500907 .reboot_notify = alc_shutup,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908};
909
David Henningsson29adc4b2012-09-25 11:31:00 +0200910
Kailang Yangc027ddc2010-03-19 11:33:06 +0100911/* replace the codec chip_name with the given string */
912static int alc_codec_rename(struct hda_codec *codec, const char *name)
913{
914 kfree(codec->chip_name);
915 codec->chip_name = kstrdup(name, GFP_KERNEL);
916 if (!codec->chip_name) {
917 alc_free(codec);
918 return -ENOMEM;
919 }
920 return 0;
921}
922
Takashi Iwai2fa522b2005-05-12 14:51:12 +0200923/*
Kailang Yang4b016932013-11-28 11:55:09 +0100924 * Rename codecs appropriately from COEF value or subvendor id
Takashi Iwaie16fb6d2011-10-17 16:39:09 +0200925 */
926struct alc_codec_rename_table {
927 unsigned int vendor_id;
928 unsigned short coef_mask;
929 unsigned short coef_bits;
930 const char *name;
931};
932
Kailang Yang4b016932013-11-28 11:55:09 +0100933struct alc_codec_rename_pci_table {
934 unsigned int codec_vendor_id;
935 unsigned short pci_subvendor;
936 unsigned short pci_subdevice;
937 const char *name;
938};
939
Takashi Iwaie16fb6d2011-10-17 16:39:09 +0200940static struct alc_codec_rename_table rename_tbl[] = {
941 { 0x10ec0269, 0xfff0, 0x3010, "ALC277" },
942 { 0x10ec0269, 0xf0f0, 0x2010, "ALC259" },
943 { 0x10ec0269, 0xf0f0, 0x3010, "ALC258" },
944 { 0x10ec0269, 0x00f0, 0x0010, "ALC269VB" },
945 { 0x10ec0269, 0xffff, 0xa023, "ALC259" },
946 { 0x10ec0269, 0xffff, 0x6023, "ALC281X" },
947 { 0x10ec0269, 0x00f0, 0x0020, "ALC269VC" },
Kailang Yangadcc70b2012-05-25 08:08:38 +0200948 { 0x10ec0269, 0x00f0, 0x0030, "ALC269VD" },
Takashi Iwaie16fb6d2011-10-17 16:39:09 +0200949 { 0x10ec0887, 0x00f0, 0x0030, "ALC887-VD" },
950 { 0x10ec0888, 0x00f0, 0x0030, "ALC888-VD" },
951 { 0x10ec0888, 0xf0f0, 0x3020, "ALC886" },
952 { 0x10ec0899, 0x2000, 0x2000, "ALC899" },
953 { 0x10ec0892, 0xffff, 0x8020, "ALC661" },
954 { 0x10ec0892, 0xffff, 0x8011, "ALC661" },
955 { 0x10ec0892, 0xffff, 0x4011, "ALC656" },
956 { } /* terminator */
957};
958
Kailang Yang4b016932013-11-28 11:55:09 +0100959static struct alc_codec_rename_pci_table rename_pci_tbl[] = {
960 { 0x10ec0280, 0x1028, 0, "ALC3220" },
961 { 0x10ec0282, 0x1028, 0, "ALC3221" },
962 { 0x10ec0283, 0x1028, 0, "ALC3223" },
963 { 0x10ec0292, 0x1028, 0, "ALC3226" },
964 { 0x10ec0255, 0x1028, 0, "ALC3234" },
965 { 0x10ec0668, 0x1028, 0, "ALC3661" },
966 { } /* terminator */
967};
968
Takashi Iwaie16fb6d2011-10-17 16:39:09 +0200969static int alc_codec_rename_from_preset(struct hda_codec *codec)
970{
971 const struct alc_codec_rename_table *p;
Kailang Yang4b016932013-11-28 11:55:09 +0100972 const struct alc_codec_rename_pci_table *q;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +0200973
974 for (p = rename_tbl; p->vendor_id; p++) {
975 if (p->vendor_id != codec->vendor_id)
976 continue;
Takashi Iwai1bb7e432011-10-17 16:50:59 +0200977 if ((alc_get_coef0(codec) & p->coef_mask) == p->coef_bits)
Takashi Iwaie16fb6d2011-10-17 16:39:09 +0200978 return alc_codec_rename(codec, p->name);
979 }
Kailang Yang4b016932013-11-28 11:55:09 +0100980
981 for (q = rename_pci_tbl; q->codec_vendor_id; q++) {
982 if (q->codec_vendor_id != codec->vendor_id)
983 continue;
984 if (q->pci_subvendor != codec->bus->pci->subsystem_vendor)
985 continue;
986 if (!q->pci_subdevice ||
987 q->pci_subdevice == codec->bus->pci->subsystem_device)
988 return alc_codec_rename(codec, q->name);
989 }
990
Takashi Iwaie16fb6d2011-10-17 16:39:09 +0200991 return 0;
992}
993
Takashi Iwaie4770622011-07-08 11:11:35 +0200994
995/*
Takashi Iwai1d045db2011-07-07 18:23:21 +0200996 * Digital-beep handlers
997 */
998#ifdef CONFIG_SND_HDA_INPUT_BEEP
999#define set_beep_amp(spec, nid, idx, dir) \
1000 ((spec)->beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir))
1001
1002static const struct snd_pci_quirk beep_white_list[] = {
Duncan Roe71100052012-10-10 14:19:50 +02001003 SND_PCI_QUIRK(0x1043, 0x103c, "ASUS", 1),
Takashi Iwai1d045db2011-07-07 18:23:21 +02001004 SND_PCI_QUIRK(0x1043, 0x829f, "ASUS", 1),
Takashi Iwai8554ee42013-02-25 09:54:43 +01001005 SND_PCI_QUIRK(0x1043, 0x8376, "EeePC", 1),
Takashi Iwai1d045db2011-07-07 18:23:21 +02001006 SND_PCI_QUIRK(0x1043, 0x83ce, "EeePC", 1),
1007 SND_PCI_QUIRK(0x1043, 0x831a, "EeePC", 1),
1008 SND_PCI_QUIRK(0x1043, 0x834a, "EeePC", 1),
Takashi Iwai78f8baf2012-03-06 14:02:32 +01001009 SND_PCI_QUIRK(0x1458, 0xa002, "GA-MA790X", 1),
Takashi Iwai1d045db2011-07-07 18:23:21 +02001010 SND_PCI_QUIRK(0x8086, 0xd613, "Intel", 1),
1011 {}
1012};
1013
1014static inline int has_cdefine_beep(struct hda_codec *codec)
1015{
1016 struct alc_spec *spec = codec->spec;
1017 const struct snd_pci_quirk *q;
1018 q = snd_pci_quirk_lookup(codec->bus->pci, beep_white_list);
1019 if (q)
1020 return q->value;
1021 return spec->cdefine.enable_pcbeep;
1022}
1023#else
1024#define set_beep_amp(spec, nid, idx, dir) /* NOP */
1025#define has_cdefine_beep(codec) 0
1026#endif
1027
1028/* parse the BIOS configuration and set up the alc_spec */
1029/* return 1 if successful, 0 if the proper config is not found,
1030 * or a negative error code
1031 */
Takashi Iwai3e6179b2011-07-08 16:55:13 +02001032static int alc_parse_auto_config(struct hda_codec *codec,
1033 const hda_nid_t *ignore_nids,
1034 const hda_nid_t *ssid_nids)
Takashi Iwai1d045db2011-07-07 18:23:21 +02001035{
1036 struct alc_spec *spec = codec->spec;
Takashi Iwai08c189f2012-12-19 15:22:24 +01001037 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
Takashi Iwai1d045db2011-07-07 18:23:21 +02001038 int err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02001039
Takashi Iwai53c334a2011-08-23 18:27:14 +02001040 err = snd_hda_parse_pin_defcfg(codec, cfg, ignore_nids,
1041 spec->parse_flags);
Takashi Iwai1d045db2011-07-07 18:23:21 +02001042 if (err < 0)
1043 return err;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02001044
1045 if (ssid_nids)
1046 alc_ssid_check(codec, ssid_nids);
1047
Takashi Iwai08c189f2012-12-19 15:22:24 +01001048 err = snd_hda_gen_parse_auto_config(codec, cfg);
1049 if (err < 0)
1050 return err;
Takashi Iwai070cff42012-02-21 12:54:17 +01001051
Takashi Iwai1d045db2011-07-07 18:23:21 +02001052 return 1;
1053}
1054
Takashi Iwai3de95172012-05-07 18:03:15 +02001055/* common preparation job for alc_spec */
1056static int alc_alloc_spec(struct hda_codec *codec, hda_nid_t mixer_nid)
1057{
1058 struct alc_spec *spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1059 int err;
1060
1061 if (!spec)
1062 return -ENOMEM;
1063 codec->spec = spec;
Takashi Iwai08c189f2012-12-19 15:22:24 +01001064 snd_hda_gen_spec_init(&spec->gen);
1065 spec->gen.mixer_nid = mixer_nid;
1066 spec->gen.own_eapd_ctl = 1;
Takashi Iwai1098b7c2012-12-17 20:03:15 +01001067 codec->single_adc_amp = 1;
Takashi Iwai08c189f2012-12-19 15:22:24 +01001068 /* FIXME: do we need this for all Realtek codec models? */
1069 codec->spdif_status_reset = 1;
Takashi Iwai3de95172012-05-07 18:03:15 +02001070
1071 err = alc_codec_rename_from_preset(codec);
1072 if (err < 0) {
1073 kfree(spec);
1074 return err;
1075 }
1076 return 0;
1077}
1078
Takashi Iwai3e6179b2011-07-08 16:55:13 +02001079static int alc880_parse_auto_config(struct hda_codec *codec)
1080{
1081 static const hda_nid_t alc880_ignore[] = { 0x1d, 0 };
Jesper Juhl7d7eb9e2012-04-12 22:11:25 +02001082 static const hda_nid_t alc880_ssids[] = { 0x15, 0x1b, 0x14, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02001083 return alc_parse_auto_config(codec, alc880_ignore, alc880_ssids);
1084}
1085
Takashi Iwai1d045db2011-07-07 18:23:21 +02001086/*
Takashi Iwaiee3b2962011-11-15 14:26:54 +01001087 * ALC880 fix-ups
1088 */
1089enum {
Takashi Iwai411225a2012-02-20 17:48:19 +01001090 ALC880_FIXUP_GPIO1,
Takashi Iwaiee3b2962011-11-15 14:26:54 +01001091 ALC880_FIXUP_GPIO2,
1092 ALC880_FIXUP_MEDION_RIM,
Takashi Iwaidc6af522012-02-17 16:18:59 +01001093 ALC880_FIXUP_LG,
Takashi Iwaidb8a38e2013-08-09 12:34:42 +02001094 ALC880_FIXUP_LG_LW25,
Takashi Iwaif02aab52012-02-17 16:33:56 +01001095 ALC880_FIXUP_W810,
Takashi Iwai27e917f2012-02-17 17:49:54 +01001096 ALC880_FIXUP_EAPD_COEF,
Takashi Iwaib9368f52012-02-17 17:54:44 +01001097 ALC880_FIXUP_TCL_S700,
Takashi Iwaicf5a2272012-02-20 16:31:07 +01001098 ALC880_FIXUP_VOL_KNOB,
1099 ALC880_FIXUP_FUJITSU,
Takashi Iwaiba533812012-02-20 16:36:52 +01001100 ALC880_FIXUP_F1734,
Takashi Iwai817de922012-02-20 17:20:48 +01001101 ALC880_FIXUP_UNIWILL,
Takashi Iwai967b88c2012-02-20 17:31:02 +01001102 ALC880_FIXUP_UNIWILL_DIG,
Takashi Iwai96e225f2012-02-20 17:41:51 +01001103 ALC880_FIXUP_Z71V,
Takashi Iwai487a5882013-11-07 07:29:30 +01001104 ALC880_FIXUP_ASUS_W5A,
Takashi Iwai67b6ec32012-02-20 18:20:42 +01001105 ALC880_FIXUP_3ST_BASE,
1106 ALC880_FIXUP_3ST,
1107 ALC880_FIXUP_3ST_DIG,
1108 ALC880_FIXUP_5ST_BASE,
1109 ALC880_FIXUP_5ST,
1110 ALC880_FIXUP_5ST_DIG,
1111 ALC880_FIXUP_6ST_BASE,
1112 ALC880_FIXUP_6ST,
1113 ALC880_FIXUP_6ST_DIG,
Takashi Iwai53971452013-01-23 18:21:37 +01001114 ALC880_FIXUP_6ST_AUTOMUTE,
Takashi Iwaiee3b2962011-11-15 14:26:54 +01001115};
1116
Takashi Iwaicf5a2272012-02-20 16:31:07 +01001117/* enable the volume-knob widget support on NID 0x21 */
1118static void alc880_fixup_vol_knob(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +01001119 const struct hda_fixup *fix, int action)
Takashi Iwaicf5a2272012-02-20 16:31:07 +01001120{
Takashi Iwai1727a772013-01-10 09:52:52 +01001121 if (action == HDA_FIXUP_ACT_PROBE)
David Henningsson29adc4b2012-09-25 11:31:00 +02001122 snd_hda_jack_detect_enable_callback(codec, 0x21, ALC_DCVOL_EVENT, alc_update_knob_master);
Takashi Iwaicf5a2272012-02-20 16:31:07 +01001123}
1124
Takashi Iwai1727a772013-01-10 09:52:52 +01001125static const struct hda_fixup alc880_fixups[] = {
Takashi Iwai411225a2012-02-20 17:48:19 +01001126 [ALC880_FIXUP_GPIO1] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001127 .type = HDA_FIXUP_VERBS,
Takashi Iwai411225a2012-02-20 17:48:19 +01001128 .v.verbs = alc_gpio1_init_verbs,
1129 },
Takashi Iwaiee3b2962011-11-15 14:26:54 +01001130 [ALC880_FIXUP_GPIO2] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001131 .type = HDA_FIXUP_VERBS,
Takashi Iwaiee3b2962011-11-15 14:26:54 +01001132 .v.verbs = alc_gpio2_init_verbs,
1133 },
1134 [ALC880_FIXUP_MEDION_RIM] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001135 .type = HDA_FIXUP_VERBS,
Takashi Iwaiee3b2962011-11-15 14:26:54 +01001136 .v.verbs = (const struct hda_verb[]) {
1137 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1138 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
1139 { }
1140 },
1141 .chained = true,
1142 .chain_id = ALC880_FIXUP_GPIO2,
1143 },
Takashi Iwaidc6af522012-02-17 16:18:59 +01001144 [ALC880_FIXUP_LG] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001145 .type = HDA_FIXUP_PINS,
1146 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwaidc6af522012-02-17 16:18:59 +01001147 /* disable bogus unused pins */
1148 { 0x16, 0x411111f0 },
1149 { 0x18, 0x411111f0 },
1150 { 0x1a, 0x411111f0 },
1151 { }
1152 }
1153 },
Takashi Iwaidb8a38e2013-08-09 12:34:42 +02001154 [ALC880_FIXUP_LG_LW25] = {
1155 .type = HDA_FIXUP_PINS,
1156 .v.pins = (const struct hda_pintbl[]) {
1157 { 0x1a, 0x0181344f }, /* line-in */
1158 { 0x1b, 0x0321403f }, /* headphone */
1159 { }
1160 }
1161 },
Takashi Iwaif02aab52012-02-17 16:33:56 +01001162 [ALC880_FIXUP_W810] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001163 .type = HDA_FIXUP_PINS,
1164 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwaif02aab52012-02-17 16:33:56 +01001165 /* disable bogus unused pins */
1166 { 0x17, 0x411111f0 },
1167 { }
1168 },
1169 .chained = true,
1170 .chain_id = ALC880_FIXUP_GPIO2,
1171 },
Takashi Iwai27e917f2012-02-17 17:49:54 +01001172 [ALC880_FIXUP_EAPD_COEF] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001173 .type = HDA_FIXUP_VERBS,
Takashi Iwai27e917f2012-02-17 17:49:54 +01001174 .v.verbs = (const struct hda_verb[]) {
1175 /* change to EAPD mode */
1176 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1177 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
1178 {}
1179 },
1180 },
Takashi Iwaib9368f52012-02-17 17:54:44 +01001181 [ALC880_FIXUP_TCL_S700] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001182 .type = HDA_FIXUP_VERBS,
Takashi Iwaib9368f52012-02-17 17:54:44 +01001183 .v.verbs = (const struct hda_verb[]) {
1184 /* change to EAPD mode */
1185 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1186 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
1187 {}
1188 },
1189 .chained = true,
1190 .chain_id = ALC880_FIXUP_GPIO2,
1191 },
Takashi Iwaicf5a2272012-02-20 16:31:07 +01001192 [ALC880_FIXUP_VOL_KNOB] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001193 .type = HDA_FIXUP_FUNC,
Takashi Iwaicf5a2272012-02-20 16:31:07 +01001194 .v.func = alc880_fixup_vol_knob,
1195 },
1196 [ALC880_FIXUP_FUJITSU] = {
1197 /* override all pins as BIOS on old Amilo is broken */
Takashi Iwai1727a772013-01-10 09:52:52 +01001198 .type = HDA_FIXUP_PINS,
1199 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwaicf5a2272012-02-20 16:31:07 +01001200 { 0x14, 0x0121411f }, /* HP */
1201 { 0x15, 0x99030120 }, /* speaker */
1202 { 0x16, 0x99030130 }, /* bass speaker */
1203 { 0x17, 0x411111f0 }, /* N/A */
1204 { 0x18, 0x411111f0 }, /* N/A */
1205 { 0x19, 0x01a19950 }, /* mic-in */
1206 { 0x1a, 0x411111f0 }, /* N/A */
1207 { 0x1b, 0x411111f0 }, /* N/A */
1208 { 0x1c, 0x411111f0 }, /* N/A */
1209 { 0x1d, 0x411111f0 }, /* N/A */
1210 { 0x1e, 0x01454140 }, /* SPDIF out */
1211 { }
1212 },
1213 .chained = true,
1214 .chain_id = ALC880_FIXUP_VOL_KNOB,
1215 },
Takashi Iwaiba533812012-02-20 16:36:52 +01001216 [ALC880_FIXUP_F1734] = {
1217 /* almost compatible with FUJITSU, but no bass and SPDIF */
Takashi Iwai1727a772013-01-10 09:52:52 +01001218 .type = HDA_FIXUP_PINS,
1219 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwaiba533812012-02-20 16:36:52 +01001220 { 0x14, 0x0121411f }, /* HP */
1221 { 0x15, 0x99030120 }, /* speaker */
1222 { 0x16, 0x411111f0 }, /* N/A */
1223 { 0x17, 0x411111f0 }, /* N/A */
1224 { 0x18, 0x411111f0 }, /* N/A */
1225 { 0x19, 0x01a19950 }, /* mic-in */
1226 { 0x1a, 0x411111f0 }, /* N/A */
1227 { 0x1b, 0x411111f0 }, /* N/A */
1228 { 0x1c, 0x411111f0 }, /* N/A */
1229 { 0x1d, 0x411111f0 }, /* N/A */
1230 { 0x1e, 0x411111f0 }, /* N/A */
1231 { }
1232 },
1233 .chained = true,
1234 .chain_id = ALC880_FIXUP_VOL_KNOB,
1235 },
Takashi Iwai817de922012-02-20 17:20:48 +01001236 [ALC880_FIXUP_UNIWILL] = {
1237 /* need to fix HP and speaker pins to be parsed correctly */
Takashi Iwai1727a772013-01-10 09:52:52 +01001238 .type = HDA_FIXUP_PINS,
1239 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai817de922012-02-20 17:20:48 +01001240 { 0x14, 0x0121411f }, /* HP */
1241 { 0x15, 0x99030120 }, /* speaker */
1242 { 0x16, 0x99030130 }, /* bass speaker */
1243 { }
1244 },
1245 },
Takashi Iwai967b88c2012-02-20 17:31:02 +01001246 [ALC880_FIXUP_UNIWILL_DIG] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001247 .type = HDA_FIXUP_PINS,
1248 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai967b88c2012-02-20 17:31:02 +01001249 /* disable bogus unused pins */
1250 { 0x17, 0x411111f0 },
1251 { 0x19, 0x411111f0 },
1252 { 0x1b, 0x411111f0 },
1253 { 0x1f, 0x411111f0 },
1254 { }
1255 }
1256 },
Takashi Iwai96e225f2012-02-20 17:41:51 +01001257 [ALC880_FIXUP_Z71V] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001258 .type = HDA_FIXUP_PINS,
1259 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai96e225f2012-02-20 17:41:51 +01001260 /* set up the whole pins as BIOS is utterly broken */
1261 { 0x14, 0x99030120 }, /* speaker */
1262 { 0x15, 0x0121411f }, /* HP */
1263 { 0x16, 0x411111f0 }, /* N/A */
1264 { 0x17, 0x411111f0 }, /* N/A */
1265 { 0x18, 0x01a19950 }, /* mic-in */
1266 { 0x19, 0x411111f0 }, /* N/A */
1267 { 0x1a, 0x01813031 }, /* line-in */
1268 { 0x1b, 0x411111f0 }, /* N/A */
1269 { 0x1c, 0x411111f0 }, /* N/A */
1270 { 0x1d, 0x411111f0 }, /* N/A */
1271 { 0x1e, 0x0144111e }, /* SPDIF */
1272 { }
1273 }
1274 },
Takashi Iwai487a5882013-11-07 07:29:30 +01001275 [ALC880_FIXUP_ASUS_W5A] = {
1276 .type = HDA_FIXUP_PINS,
1277 .v.pins = (const struct hda_pintbl[]) {
1278 /* set up the whole pins as BIOS is utterly broken */
1279 { 0x14, 0x0121411f }, /* HP */
1280 { 0x15, 0x411111f0 }, /* N/A */
1281 { 0x16, 0x411111f0 }, /* N/A */
1282 { 0x17, 0x411111f0 }, /* N/A */
1283 { 0x18, 0x90a60160 }, /* mic */
1284 { 0x19, 0x411111f0 }, /* N/A */
1285 { 0x1a, 0x411111f0 }, /* N/A */
1286 { 0x1b, 0x411111f0 }, /* N/A */
1287 { 0x1c, 0x411111f0 }, /* N/A */
1288 { 0x1d, 0x411111f0 }, /* N/A */
1289 { 0x1e, 0xb743111e }, /* SPDIF out */
1290 { }
1291 },
1292 .chained = true,
1293 .chain_id = ALC880_FIXUP_GPIO1,
1294 },
Takashi Iwai67b6ec32012-02-20 18:20:42 +01001295 [ALC880_FIXUP_3ST_BASE] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001296 .type = HDA_FIXUP_PINS,
1297 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai67b6ec32012-02-20 18:20:42 +01001298 { 0x14, 0x01014010 }, /* line-out */
1299 { 0x15, 0x411111f0 }, /* N/A */
1300 { 0x16, 0x411111f0 }, /* N/A */
1301 { 0x17, 0x411111f0 }, /* N/A */
1302 { 0x18, 0x01a19c30 }, /* mic-in */
1303 { 0x19, 0x0121411f }, /* HP */
1304 { 0x1a, 0x01813031 }, /* line-in */
1305 { 0x1b, 0x02a19c40 }, /* front-mic */
1306 { 0x1c, 0x411111f0 }, /* N/A */
1307 { 0x1d, 0x411111f0 }, /* N/A */
1308 /* 0x1e is filled in below */
1309 { 0x1f, 0x411111f0 }, /* N/A */
1310 { }
1311 }
1312 },
1313 [ALC880_FIXUP_3ST] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001314 .type = HDA_FIXUP_PINS,
1315 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai67b6ec32012-02-20 18:20:42 +01001316 { 0x1e, 0x411111f0 }, /* N/A */
1317 { }
1318 },
1319 .chained = true,
1320 .chain_id = ALC880_FIXUP_3ST_BASE,
1321 },
1322 [ALC880_FIXUP_3ST_DIG] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001323 .type = HDA_FIXUP_PINS,
1324 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai67b6ec32012-02-20 18:20:42 +01001325 { 0x1e, 0x0144111e }, /* SPDIF */
1326 { }
1327 },
1328 .chained = true,
1329 .chain_id = ALC880_FIXUP_3ST_BASE,
1330 },
1331 [ALC880_FIXUP_5ST_BASE] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001332 .type = HDA_FIXUP_PINS,
1333 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai67b6ec32012-02-20 18:20:42 +01001334 { 0x14, 0x01014010 }, /* front */
1335 { 0x15, 0x411111f0 }, /* N/A */
1336 { 0x16, 0x01011411 }, /* CLFE */
1337 { 0x17, 0x01016412 }, /* surr */
1338 { 0x18, 0x01a19c30 }, /* mic-in */
1339 { 0x19, 0x0121411f }, /* HP */
1340 { 0x1a, 0x01813031 }, /* line-in */
1341 { 0x1b, 0x02a19c40 }, /* front-mic */
1342 { 0x1c, 0x411111f0 }, /* N/A */
1343 { 0x1d, 0x411111f0 }, /* N/A */
1344 /* 0x1e is filled in below */
1345 { 0x1f, 0x411111f0 }, /* N/A */
1346 { }
1347 }
1348 },
1349 [ALC880_FIXUP_5ST] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001350 .type = HDA_FIXUP_PINS,
1351 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai67b6ec32012-02-20 18:20:42 +01001352 { 0x1e, 0x411111f0 }, /* N/A */
1353 { }
1354 },
1355 .chained = true,
1356 .chain_id = ALC880_FIXUP_5ST_BASE,
1357 },
1358 [ALC880_FIXUP_5ST_DIG] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001359 .type = HDA_FIXUP_PINS,
1360 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai67b6ec32012-02-20 18:20:42 +01001361 { 0x1e, 0x0144111e }, /* SPDIF */
1362 { }
1363 },
1364 .chained = true,
1365 .chain_id = ALC880_FIXUP_5ST_BASE,
1366 },
1367 [ALC880_FIXUP_6ST_BASE] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001368 .type = HDA_FIXUP_PINS,
1369 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai67b6ec32012-02-20 18:20:42 +01001370 { 0x14, 0x01014010 }, /* front */
1371 { 0x15, 0x01016412 }, /* surr */
1372 { 0x16, 0x01011411 }, /* CLFE */
1373 { 0x17, 0x01012414 }, /* side */
1374 { 0x18, 0x01a19c30 }, /* mic-in */
1375 { 0x19, 0x02a19c40 }, /* front-mic */
1376 { 0x1a, 0x01813031 }, /* line-in */
1377 { 0x1b, 0x0121411f }, /* HP */
1378 { 0x1c, 0x411111f0 }, /* N/A */
1379 { 0x1d, 0x411111f0 }, /* N/A */
1380 /* 0x1e is filled in below */
1381 { 0x1f, 0x411111f0 }, /* N/A */
1382 { }
1383 }
1384 },
1385 [ALC880_FIXUP_6ST] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001386 .type = HDA_FIXUP_PINS,
1387 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai67b6ec32012-02-20 18:20:42 +01001388 { 0x1e, 0x411111f0 }, /* N/A */
1389 { }
1390 },
1391 .chained = true,
1392 .chain_id = ALC880_FIXUP_6ST_BASE,
1393 },
1394 [ALC880_FIXUP_6ST_DIG] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001395 .type = HDA_FIXUP_PINS,
1396 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai67b6ec32012-02-20 18:20:42 +01001397 { 0x1e, 0x0144111e }, /* SPDIF */
1398 { }
1399 },
1400 .chained = true,
1401 .chain_id = ALC880_FIXUP_6ST_BASE,
1402 },
Takashi Iwai53971452013-01-23 18:21:37 +01001403 [ALC880_FIXUP_6ST_AUTOMUTE] = {
1404 .type = HDA_FIXUP_PINS,
1405 .v.pins = (const struct hda_pintbl[]) {
1406 { 0x1b, 0x0121401f }, /* HP with jack detect */
1407 { }
1408 },
1409 .chained_before = true,
1410 .chain_id = ALC880_FIXUP_6ST_BASE,
1411 },
Takashi Iwaiee3b2962011-11-15 14:26:54 +01001412};
1413
1414static const struct snd_pci_quirk alc880_fixup_tbl[] = {
Takashi Iwaif02aab52012-02-17 16:33:56 +01001415 SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_FIXUP_W810),
Takashi Iwai487a5882013-11-07 07:29:30 +01001416 SND_PCI_QUIRK(0x1043, 0x10c3, "ASUS W5A", ALC880_FIXUP_ASUS_W5A),
Takashi Iwai96e225f2012-02-20 17:41:51 +01001417 SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_FIXUP_Z71V),
Takashi Iwai29e3fdc2012-02-20 17:56:57 +01001418 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS", ALC880_FIXUP_GPIO1),
1419 SND_PCI_QUIRK(0x1558, 0x5401, "Clevo GPIO2", ALC880_FIXUP_GPIO2),
Takashi Iwai27e917f2012-02-17 17:49:54 +01001420 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo", ALC880_FIXUP_EAPD_COEF),
Takashi Iwai967b88c2012-02-20 17:31:02 +01001421 SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_FIXUP_UNIWILL_DIG),
Takashi Iwaiba533812012-02-20 16:36:52 +01001422 SND_PCI_QUIRK(0x1584, 0x9054, "Uniwill", ALC880_FIXUP_F1734),
Takashi Iwai817de922012-02-20 17:20:48 +01001423 SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_FIXUP_UNIWILL),
Takashi Iwai7833c7e2012-02-20 17:11:38 +01001424 SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_FIXUP_VOL_KNOB),
Takashi Iwaif02aab52012-02-17 16:33:56 +01001425 SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_FIXUP_W810),
Takashi Iwaiee3b2962011-11-15 14:26:54 +01001426 SND_PCI_QUIRK(0x161f, 0x205d, "Medion Rim 2150", ALC880_FIXUP_MEDION_RIM),
Takashi Iwai53971452013-01-23 18:21:37 +01001427 SND_PCI_QUIRK(0x1631, 0xe011, "PB 13201056", ALC880_FIXUP_6ST_AUTOMUTE),
Takashi Iwaiba533812012-02-20 16:36:52 +01001428 SND_PCI_QUIRK(0x1734, 0x107c, "FSC F1734", ALC880_FIXUP_F1734),
Takashi Iwaicf5a2272012-02-20 16:31:07 +01001429 SND_PCI_QUIRK(0x1734, 0x1094, "FSC Amilo M1451G", ALC880_FIXUP_FUJITSU),
Takashi Iwaiba533812012-02-20 16:36:52 +01001430 SND_PCI_QUIRK(0x1734, 0x10ac, "FSC AMILO Xi 1526", ALC880_FIXUP_F1734),
Takashi Iwaicf5a2272012-02-20 16:31:07 +01001431 SND_PCI_QUIRK(0x1734, 0x10b0, "FSC Amilo Pi1556", ALC880_FIXUP_FUJITSU),
Takashi Iwaidc6af522012-02-17 16:18:59 +01001432 SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_FIXUP_LG),
1433 SND_PCI_QUIRK(0x1854, 0x005f, "LG P1 Express", ALC880_FIXUP_LG),
1434 SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_FIXUP_LG),
Takashi Iwaidb8a38e2013-08-09 12:34:42 +02001435 SND_PCI_QUIRK(0x1854, 0x0077, "LG LW25", ALC880_FIXUP_LG_LW25),
Takashi Iwaib9368f52012-02-17 17:54:44 +01001436 SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_FIXUP_TCL_S700),
Takashi Iwai67b6ec32012-02-20 18:20:42 +01001437
1438 /* Below is the copied entries from alc880_quirks.c.
1439 * It's not quite sure whether BIOS sets the correct pin-config table
1440 * on these machines, thus they are kept to be compatible with
1441 * the old static quirks. Once when it's confirmed to work without
1442 * these overrides, it'd be better to remove.
1443 */
1444 SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_FIXUP_5ST_DIG),
1445 SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_FIXUP_6ST),
1446 SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_FIXUP_3ST_DIG),
1447 SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_FIXUP_6ST_DIG),
1448 SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_FIXUP_6ST_DIG),
1449 SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_FIXUP_6ST_DIG),
1450 SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_FIXUP_3ST_DIG),
1451 SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_FIXUP_3ST),
1452 SND_PCI_QUIRK(0x1039, 0x1234, NULL, ALC880_FIXUP_6ST_DIG),
1453 SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_FIXUP_3ST),
1454 SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_FIXUP_3ST),
1455 SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_FIXUP_5ST),
1456 SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_FIXUP_5ST),
1457 SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_FIXUP_5ST),
1458 SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_FIXUP_6ST_DIG),
1459 SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_FIXUP_6ST_DIG),
1460 SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_FIXUP_6ST_DIG),
1461 SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_FIXUP_6ST_DIG),
1462 SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_FIXUP_5ST_DIG),
1463 SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_FIXUP_5ST_DIG),
1464 SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_FIXUP_5ST_DIG),
1465 SND_PCI_QUIRK(0x2668, 0x8086, NULL, ALC880_FIXUP_6ST_DIG), /* broken BIOS */
1466 SND_PCI_QUIRK(0x8086, 0x2668, NULL, ALC880_FIXUP_6ST_DIG),
1467 SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1468 SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1469 SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1470 SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1471 SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1472 SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1473 SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1474 SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1475 SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1476 SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1477 /* default Intel */
1478 SND_PCI_QUIRK_VENDOR(0x8086, "Intel mobo", ALC880_FIXUP_3ST),
1479 SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_FIXUP_5ST_DIG),
1480 SND_PCI_QUIRK(0xe803, 0x1019, NULL, ALC880_FIXUP_6ST_DIG),
1481 {}
1482};
1483
Takashi Iwai1727a772013-01-10 09:52:52 +01001484static const struct hda_model_fixup alc880_fixup_models[] = {
Takashi Iwai67b6ec32012-02-20 18:20:42 +01001485 {.id = ALC880_FIXUP_3ST, .name = "3stack"},
1486 {.id = ALC880_FIXUP_3ST_DIG, .name = "3stack-digout"},
1487 {.id = ALC880_FIXUP_5ST, .name = "5stack"},
1488 {.id = ALC880_FIXUP_5ST_DIG, .name = "5stack-digout"},
1489 {.id = ALC880_FIXUP_6ST, .name = "6stack"},
1490 {.id = ALC880_FIXUP_6ST_DIG, .name = "6stack-digout"},
Takashi Iwai53971452013-01-23 18:21:37 +01001491 {.id = ALC880_FIXUP_6ST_AUTOMUTE, .name = "6stack-automute"},
Takashi Iwaiee3b2962011-11-15 14:26:54 +01001492 {}
1493};
1494
1495
1496/*
Takashi Iwai1d045db2011-07-07 18:23:21 +02001497 * OK, here we have finally the patch for ALC880
1498 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02001499static int patch_alc880(struct hda_codec *codec)
1500{
1501 struct alc_spec *spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02001502 int err;
1503
Takashi Iwai3de95172012-05-07 18:03:15 +02001504 err = alc_alloc_spec(codec, 0x0b);
1505 if (err < 0)
1506 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02001507
Takashi Iwai3de95172012-05-07 18:03:15 +02001508 spec = codec->spec;
Takashi Iwai08c189f2012-12-19 15:22:24 +01001509 spec->gen.need_dac_fix = 1;
Takashi Iwai7504b6c2013-03-18 11:25:51 +01001510 spec->gen.beep_nid = 0x01;
Takashi Iwai1d045db2011-07-07 18:23:21 +02001511
Takashi Iwai1727a772013-01-10 09:52:52 +01001512 snd_hda_pick_fixup(codec, alc880_fixup_models, alc880_fixup_tbl,
Takashi Iwai67b6ec32012-02-20 18:20:42 +01001513 alc880_fixups);
Takashi Iwai1727a772013-01-10 09:52:52 +01001514 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02001515
Takashi Iwai67b6ec32012-02-20 18:20:42 +01001516 /* automatic parse from the BIOS config */
1517 err = alc880_parse_auto_config(codec);
1518 if (err < 0)
1519 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02001520
Takashi Iwai7504b6c2013-03-18 11:25:51 +01001521 if (!spec->gen.no_analog)
Takashi Iwai3e6179b2011-07-08 16:55:13 +02001522 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
Takashi Iwai1d045db2011-07-07 18:23:21 +02001523
Takashi Iwai1d045db2011-07-07 18:23:21 +02001524 codec->patch_ops = alc_patch_ops;
David Henningsson29adc4b2012-09-25 11:31:00 +02001525 codec->patch_ops.unsol_event = alc880_unsol_event;
1526
Takashi Iwai1d045db2011-07-07 18:23:21 +02001527
Takashi Iwai1727a772013-01-10 09:52:52 +01001528 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
Takashi Iwai589876e2012-02-20 15:47:55 +01001529
Takashi Iwai1d045db2011-07-07 18:23:21 +02001530 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02001531
1532 error:
1533 alc_free(codec);
1534 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02001535}
1536
1537
1538/*
1539 * ALC260 support
1540 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02001541static int alc260_parse_auto_config(struct hda_codec *codec)
1542{
Takashi Iwai1d045db2011-07-07 18:23:21 +02001543 static const hda_nid_t alc260_ignore[] = { 0x17, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02001544 static const hda_nid_t alc260_ssids[] = { 0x10, 0x15, 0x0f, 0 };
1545 return alc_parse_auto_config(codec, alc260_ignore, alc260_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02001546}
1547
Takashi Iwai1d045db2011-07-07 18:23:21 +02001548/*
1549 * Pin config fixes
1550 */
1551enum {
Takashi Iwaica8f0422012-02-16 11:51:19 +01001552 ALC260_FIXUP_HP_DC5750,
1553 ALC260_FIXUP_HP_PIN_0F,
1554 ALC260_FIXUP_COEF,
Takashi Iwai15317ab2012-02-16 12:02:53 +01001555 ALC260_FIXUP_GPIO1,
Takashi Iwai20f7d922012-02-16 12:35:16 +01001556 ALC260_FIXUP_GPIO1_TOGGLE,
1557 ALC260_FIXUP_REPLACER,
Takashi Iwai0a1c4fa2012-02-16 12:42:30 +01001558 ALC260_FIXUP_HP_B1900,
Takashi Iwai118cb4a2012-04-19 07:33:27 +02001559 ALC260_FIXUP_KN1,
Takashi Iwai39aedee2013-01-10 17:10:40 +01001560 ALC260_FIXUP_FSC_S7020,
Takashi Iwai5ebd3bb2013-02-19 18:23:31 +01001561 ALC260_FIXUP_FSC_S7020_JWSE,
Takashi Iwaid08c5ef2013-11-22 08:06:36 +01001562 ALC260_FIXUP_VAIO_PINS,
Takashi Iwai1d045db2011-07-07 18:23:21 +02001563};
1564
Takashi Iwai20f7d922012-02-16 12:35:16 +01001565static void alc260_gpio1_automute(struct hda_codec *codec)
1566{
1567 struct alc_spec *spec = codec->spec;
1568 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
Takashi Iwai08c189f2012-12-19 15:22:24 +01001569 spec->gen.hp_jack_present);
Takashi Iwai20f7d922012-02-16 12:35:16 +01001570}
1571
1572static void alc260_fixup_gpio1_toggle(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +01001573 const struct hda_fixup *fix, int action)
Takashi Iwai20f7d922012-02-16 12:35:16 +01001574{
1575 struct alc_spec *spec = codec->spec;
Takashi Iwai1727a772013-01-10 09:52:52 +01001576 if (action == HDA_FIXUP_ACT_PROBE) {
Takashi Iwai20f7d922012-02-16 12:35:16 +01001577 /* although the machine has only one output pin, we need to
1578 * toggle GPIO1 according to the jack state
1579 */
Takashi Iwai08c189f2012-12-19 15:22:24 +01001580 spec->gen.automute_hook = alc260_gpio1_automute;
1581 spec->gen.detect_hp = 1;
1582 spec->gen.automute_speaker = 1;
1583 spec->gen.autocfg.hp_pins[0] = 0x0f; /* copy it for automute */
1584 snd_hda_jack_detect_enable_callback(codec, 0x0f, HDA_GEN_HP_EVENT,
1585 snd_hda_gen_hp_automute);
Takashi Iwaic9ce6b22012-12-18 18:12:44 +01001586 snd_hda_add_verbs(codec, alc_gpio1_init_verbs);
Takashi Iwai20f7d922012-02-16 12:35:16 +01001587 }
1588}
1589
Takashi Iwai118cb4a2012-04-19 07:33:27 +02001590static void alc260_fixup_kn1(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +01001591 const struct hda_fixup *fix, int action)
Takashi Iwai118cb4a2012-04-19 07:33:27 +02001592{
1593 struct alc_spec *spec = codec->spec;
Takashi Iwai1727a772013-01-10 09:52:52 +01001594 static const struct hda_pintbl pincfgs[] = {
Takashi Iwai118cb4a2012-04-19 07:33:27 +02001595 { 0x0f, 0x02214000 }, /* HP/speaker */
1596 { 0x12, 0x90a60160 }, /* int mic */
1597 { 0x13, 0x02a19000 }, /* ext mic */
1598 { 0x18, 0x01446000 }, /* SPDIF out */
1599 /* disable bogus I/O pins */
1600 { 0x10, 0x411111f0 },
1601 { 0x11, 0x411111f0 },
1602 { 0x14, 0x411111f0 },
1603 { 0x15, 0x411111f0 },
1604 { 0x16, 0x411111f0 },
1605 { 0x17, 0x411111f0 },
1606 { 0x19, 0x411111f0 },
1607 { }
1608 };
1609
1610 switch (action) {
Takashi Iwai1727a772013-01-10 09:52:52 +01001611 case HDA_FIXUP_ACT_PRE_PROBE:
1612 snd_hda_apply_pincfgs(codec, pincfgs);
Takashi Iwai118cb4a2012-04-19 07:33:27 +02001613 break;
Takashi Iwai1727a772013-01-10 09:52:52 +01001614 case HDA_FIXUP_ACT_PROBE:
Takashi Iwai118cb4a2012-04-19 07:33:27 +02001615 spec->init_amp = ALC_INIT_NONE;
1616 break;
1617 }
1618}
1619
Takashi Iwai39aedee2013-01-10 17:10:40 +01001620static void alc260_fixup_fsc_s7020(struct hda_codec *codec,
1621 const struct hda_fixup *fix, int action)
1622{
1623 struct alc_spec *spec = codec->spec;
Takashi Iwai5ebd3bb2013-02-19 18:23:31 +01001624 if (action == HDA_FIXUP_ACT_PROBE)
Takashi Iwaie6e0ee52013-02-18 17:04:20 +01001625 spec->init_amp = ALC_INIT_NONE;
Takashi Iwai5ebd3bb2013-02-19 18:23:31 +01001626}
1627
1628static void alc260_fixup_fsc_s7020_jwse(struct hda_codec *codec,
1629 const struct hda_fixup *fix, int action)
1630{
1631 struct alc_spec *spec = codec->spec;
1632 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
Takashi Iwaif811c3c2013-03-07 18:32:59 +01001633 spec->gen.add_jack_modes = 1;
Takashi Iwai5ebd3bb2013-02-19 18:23:31 +01001634 spec->gen.hp_mic = 1;
Takashi Iwaie6e0ee52013-02-18 17:04:20 +01001635 }
Takashi Iwai39aedee2013-01-10 17:10:40 +01001636}
1637
Takashi Iwai1727a772013-01-10 09:52:52 +01001638static const struct hda_fixup alc260_fixups[] = {
Takashi Iwaica8f0422012-02-16 11:51:19 +01001639 [ALC260_FIXUP_HP_DC5750] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001640 .type = HDA_FIXUP_PINS,
1641 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02001642 { 0x11, 0x90130110 }, /* speaker */
1643 { }
1644 }
1645 },
Takashi Iwaica8f0422012-02-16 11:51:19 +01001646 [ALC260_FIXUP_HP_PIN_0F] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001647 .type = HDA_FIXUP_PINS,
1648 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwaica8f0422012-02-16 11:51:19 +01001649 { 0x0f, 0x01214000 }, /* HP */
1650 { }
1651 }
1652 },
1653 [ALC260_FIXUP_COEF] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001654 .type = HDA_FIXUP_VERBS,
Takashi Iwaica8f0422012-02-16 11:51:19 +01001655 .v.verbs = (const struct hda_verb[]) {
1656 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1657 { 0x20, AC_VERB_SET_PROC_COEF, 0x3040 },
1658 { }
1659 },
1660 .chained = true,
1661 .chain_id = ALC260_FIXUP_HP_PIN_0F,
1662 },
Takashi Iwai15317ab2012-02-16 12:02:53 +01001663 [ALC260_FIXUP_GPIO1] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001664 .type = HDA_FIXUP_VERBS,
Takashi Iwai15317ab2012-02-16 12:02:53 +01001665 .v.verbs = alc_gpio1_init_verbs,
1666 },
Takashi Iwai20f7d922012-02-16 12:35:16 +01001667 [ALC260_FIXUP_GPIO1_TOGGLE] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001668 .type = HDA_FIXUP_FUNC,
Takashi Iwai20f7d922012-02-16 12:35:16 +01001669 .v.func = alc260_fixup_gpio1_toggle,
1670 .chained = true,
1671 .chain_id = ALC260_FIXUP_HP_PIN_0F,
1672 },
1673 [ALC260_FIXUP_REPLACER] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001674 .type = HDA_FIXUP_VERBS,
Takashi Iwai20f7d922012-02-16 12:35:16 +01001675 .v.verbs = (const struct hda_verb[]) {
1676 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1677 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
1678 { }
1679 },
1680 .chained = true,
1681 .chain_id = ALC260_FIXUP_GPIO1_TOGGLE,
1682 },
Takashi Iwai0a1c4fa2012-02-16 12:42:30 +01001683 [ALC260_FIXUP_HP_B1900] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001684 .type = HDA_FIXUP_FUNC,
Takashi Iwai0a1c4fa2012-02-16 12:42:30 +01001685 .v.func = alc260_fixup_gpio1_toggle,
1686 .chained = true,
1687 .chain_id = ALC260_FIXUP_COEF,
Takashi Iwai118cb4a2012-04-19 07:33:27 +02001688 },
1689 [ALC260_FIXUP_KN1] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001690 .type = HDA_FIXUP_FUNC,
Takashi Iwai118cb4a2012-04-19 07:33:27 +02001691 .v.func = alc260_fixup_kn1,
1692 },
Takashi Iwai39aedee2013-01-10 17:10:40 +01001693 [ALC260_FIXUP_FSC_S7020] = {
1694 .type = HDA_FIXUP_FUNC,
1695 .v.func = alc260_fixup_fsc_s7020,
1696 },
Takashi Iwai5ebd3bb2013-02-19 18:23:31 +01001697 [ALC260_FIXUP_FSC_S7020_JWSE] = {
1698 .type = HDA_FIXUP_FUNC,
1699 .v.func = alc260_fixup_fsc_s7020_jwse,
1700 .chained = true,
1701 .chain_id = ALC260_FIXUP_FSC_S7020,
1702 },
Takashi Iwaid08c5ef2013-11-22 08:06:36 +01001703 [ALC260_FIXUP_VAIO_PINS] = {
1704 .type = HDA_FIXUP_PINS,
1705 .v.pins = (const struct hda_pintbl[]) {
1706 /* Pin configs are missing completely on some VAIOs */
1707 { 0x0f, 0x01211020 },
1708 { 0x10, 0x0001003f },
1709 { 0x11, 0x411111f0 },
1710 { 0x12, 0x01a15930 },
1711 { 0x13, 0x411111f0 },
1712 { 0x14, 0x411111f0 },
1713 { 0x15, 0x411111f0 },
1714 { 0x16, 0x411111f0 },
1715 { 0x17, 0x411111f0 },
1716 { 0x18, 0x411111f0 },
1717 { 0x19, 0x411111f0 },
1718 { }
1719 }
1720 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02001721};
1722
1723static const struct snd_pci_quirk alc260_fixup_tbl[] = {
Takashi Iwai15317ab2012-02-16 12:02:53 +01001724 SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_FIXUP_GPIO1),
Takashi Iwaica8f0422012-02-16 11:51:19 +01001725 SND_PCI_QUIRK(0x1025, 0x007f, "Acer Aspire 9500", ALC260_FIXUP_COEF),
Takashi Iwai15317ab2012-02-16 12:02:53 +01001726 SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_FIXUP_GPIO1),
Takashi Iwaica8f0422012-02-16 11:51:19 +01001727 SND_PCI_QUIRK(0x103c, 0x280a, "HP dc5750", ALC260_FIXUP_HP_DC5750),
Takashi Iwai0a1c4fa2012-02-16 12:42:30 +01001728 SND_PCI_QUIRK(0x103c, 0x30ba, "HP Presario B1900", ALC260_FIXUP_HP_B1900),
Takashi Iwaid08c5ef2013-11-22 08:06:36 +01001729 SND_PCI_QUIRK(0x104d, 0x81bb, "Sony VAIO", ALC260_FIXUP_VAIO_PINS),
Takashi Iwai0f5a5b82013-11-21 09:12:52 +01001730 SND_PCI_QUIRK(0x104d, 0x81e2, "Sony VAIO TX", ALC260_FIXUP_HP_PIN_0F),
Takashi Iwai39aedee2013-01-10 17:10:40 +01001731 SND_PCI_QUIRK(0x10cf, 0x1326, "FSC LifeBook S7020", ALC260_FIXUP_FSC_S7020),
Takashi Iwaib1f58082012-02-16 12:45:03 +01001732 SND_PCI_QUIRK(0x1509, 0x4540, "Favorit 100XS", ALC260_FIXUP_GPIO1),
Takashi Iwai118cb4a2012-04-19 07:33:27 +02001733 SND_PCI_QUIRK(0x152d, 0x0729, "Quanta KN1", ALC260_FIXUP_KN1),
Takashi Iwai20f7d922012-02-16 12:35:16 +01001734 SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_FIXUP_REPLACER),
Takashi Iwaica8f0422012-02-16 11:51:19 +01001735 SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_FIXUP_COEF),
Takashi Iwai1d045db2011-07-07 18:23:21 +02001736 {}
1737};
1738
Takashi Iwai5ebd3bb2013-02-19 18:23:31 +01001739static const struct hda_model_fixup alc260_fixup_models[] = {
1740 {.id = ALC260_FIXUP_GPIO1, .name = "gpio1"},
1741 {.id = ALC260_FIXUP_COEF, .name = "coef"},
1742 {.id = ALC260_FIXUP_FSC_S7020, .name = "fujitsu"},
1743 {.id = ALC260_FIXUP_FSC_S7020_JWSE, .name = "fujitsu-jwse"},
1744 {}
1745};
1746
Takashi Iwai1d045db2011-07-07 18:23:21 +02001747/*
1748 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02001749static int patch_alc260(struct hda_codec *codec)
1750{
1751 struct alc_spec *spec;
Takashi Iwaic3c2c9e2012-02-16 12:59:55 +01001752 int err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02001753
Takashi Iwai3de95172012-05-07 18:03:15 +02001754 err = alc_alloc_spec(codec, 0x07);
1755 if (err < 0)
1756 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02001757
Takashi Iwai3de95172012-05-07 18:03:15 +02001758 spec = codec->spec;
Takashi Iwaiea46c3c2013-01-15 18:45:53 +01001759 /* as quite a few machines require HP amp for speaker outputs,
1760 * it's easier to enable it unconditionally; even if it's unneeded,
1761 * it's almost harmless.
1762 */
1763 spec->gen.prefer_hp_amp = 1;
Takashi Iwai7504b6c2013-03-18 11:25:51 +01001764 spec->gen.beep_nid = 0x01;
Takashi Iwai1d045db2011-07-07 18:23:21 +02001765
Takashi Iwai5ebd3bb2013-02-19 18:23:31 +01001766 snd_hda_pick_fixup(codec, alc260_fixup_models, alc260_fixup_tbl,
1767 alc260_fixups);
Takashi Iwai1727a772013-01-10 09:52:52 +01001768 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02001769
Takashi Iwaic3c2c9e2012-02-16 12:59:55 +01001770 /* automatic parse from the BIOS config */
1771 err = alc260_parse_auto_config(codec);
1772 if (err < 0)
1773 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02001774
Takashi Iwai7504b6c2013-03-18 11:25:51 +01001775 if (!spec->gen.no_analog)
Takashi Iwai3e6179b2011-07-08 16:55:13 +02001776 set_beep_amp(spec, 0x07, 0x05, HDA_INPUT);
Takashi Iwai1d045db2011-07-07 18:23:21 +02001777
Takashi Iwai1d045db2011-07-07 18:23:21 +02001778 codec->patch_ops = alc_patch_ops;
Takashi Iwai1d045db2011-07-07 18:23:21 +02001779 spec->shutup = alc_eapd_shutup;
Takashi Iwai1d045db2011-07-07 18:23:21 +02001780
Takashi Iwai1727a772013-01-10 09:52:52 +01001781 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
Takashi Iwai589876e2012-02-20 15:47:55 +01001782
Takashi Iwai1d045db2011-07-07 18:23:21 +02001783 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02001784
1785 error:
1786 alc_free(codec);
1787 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02001788}
1789
1790
1791/*
1792 * ALC882/883/885/888/889 support
1793 *
1794 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
1795 * configuration. Each pin widget can choose any input DACs and a mixer.
1796 * Each ADC is connected from a mixer of all inputs. This makes possible
1797 * 6-channel independent captures.
1798 *
1799 * In addition, an independent DAC for the multi-playback (not used in this
1800 * driver yet).
1801 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02001802
1803/*
1804 * Pin config fixes
1805 */
1806enum {
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01001807 ALC882_FIXUP_ABIT_AW9D_MAX,
1808 ALC882_FIXUP_LENOVO_Y530,
1809 ALC882_FIXUP_PB_M5210,
1810 ALC882_FIXUP_ACER_ASPIRE_7736,
1811 ALC882_FIXUP_ASUS_W90V,
Marton Balint8f239212012-03-05 21:33:23 +01001812 ALC889_FIXUP_CD,
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01001813 ALC889_FIXUP_VAIO_TT,
Takashi Iwai0e7cc2e2011-11-09 12:42:48 +01001814 ALC888_FIXUP_EEE1601,
Takashi Iwai177943a2011-11-09 12:55:18 +01001815 ALC882_FIXUP_EAPD,
Takashi Iwai7a6069b2011-11-09 15:22:01 +01001816 ALC883_FIXUP_EAPD,
Takashi Iwai8812c4f2011-11-09 17:39:15 +01001817 ALC883_FIXUP_ACER_EAPD,
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01001818 ALC882_FIXUP_GPIO1,
1819 ALC882_FIXUP_GPIO2,
Takashi Iwaieb844d52011-11-09 18:03:07 +01001820 ALC882_FIXUP_GPIO3,
Takashi Iwai68ef0562011-11-09 18:24:44 +01001821 ALC889_FIXUP_COEF,
1822 ALC882_FIXUP_ASUS_W2JC,
Takashi Iwaic3e837b2011-11-10 16:01:47 +01001823 ALC882_FIXUP_ACER_ASPIRE_4930G,
1824 ALC882_FIXUP_ACER_ASPIRE_8930G,
1825 ALC882_FIXUP_ASPIRE_8930G_VERBS,
Takashi Iwai56710872011-11-14 17:42:11 +01001826 ALC885_FIXUP_MACPRO_GPIO,
Takashi Iwai02a237b2012-02-13 15:25:07 +01001827 ALC889_FIXUP_DAC_ROUTE,
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01001828 ALC889_FIXUP_MBP_VREF,
1829 ALC889_FIXUP_IMAC91_VREF,
Takashi Iwai0756f092013-12-04 13:59:45 +01001830 ALC889_FIXUP_MBA21_VREF,
Takashi Iwai6e72aa52012-06-25 10:52:25 +02001831 ALC882_FIXUP_INV_DMIC,
Takashi Iwaie427c232012-07-29 10:04:08 +02001832 ALC882_FIXUP_NO_PRIMARY_HP,
Takashi Iwai1f0bbf02013-11-28 15:21:21 +01001833 ALC887_FIXUP_ASUS_BASS,
Takashi Iwaieb9ca3a2013-11-28 15:24:34 +01001834 ALC887_FIXUP_BASS_CHMAP,
Takashi Iwai1d045db2011-07-07 18:23:21 +02001835};
1836
Takashi Iwai68ef0562011-11-09 18:24:44 +01001837static void alc889_fixup_coef(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +01001838 const struct hda_fixup *fix, int action)
Takashi Iwai68ef0562011-11-09 18:24:44 +01001839{
Takashi Iwai1727a772013-01-10 09:52:52 +01001840 if (action != HDA_FIXUP_ACT_INIT)
Takashi Iwai68ef0562011-11-09 18:24:44 +01001841 return;
1842 alc889_coef_init(codec);
1843}
1844
Takashi Iwai56710872011-11-14 17:42:11 +01001845/* toggle speaker-output according to the hp-jack state */
1846static void alc882_gpio_mute(struct hda_codec *codec, int pin, int muted)
1847{
1848 unsigned int gpiostate, gpiomask, gpiodir;
1849
1850 gpiostate = snd_hda_codec_read(codec, codec->afg, 0,
1851 AC_VERB_GET_GPIO_DATA, 0);
1852
1853 if (!muted)
1854 gpiostate |= (1 << pin);
1855 else
1856 gpiostate &= ~(1 << pin);
1857
1858 gpiomask = snd_hda_codec_read(codec, codec->afg, 0,
1859 AC_VERB_GET_GPIO_MASK, 0);
1860 gpiomask |= (1 << pin);
1861
1862 gpiodir = snd_hda_codec_read(codec, codec->afg, 0,
1863 AC_VERB_GET_GPIO_DIRECTION, 0);
1864 gpiodir |= (1 << pin);
1865
1866
1867 snd_hda_codec_write(codec, codec->afg, 0,
1868 AC_VERB_SET_GPIO_MASK, gpiomask);
1869 snd_hda_codec_write(codec, codec->afg, 0,
1870 AC_VERB_SET_GPIO_DIRECTION, gpiodir);
1871
1872 msleep(1);
1873
1874 snd_hda_codec_write(codec, codec->afg, 0,
1875 AC_VERB_SET_GPIO_DATA, gpiostate);
1876}
1877
1878/* set up GPIO at initialization */
1879static void alc885_fixup_macpro_gpio(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +01001880 const struct hda_fixup *fix, int action)
Takashi Iwai56710872011-11-14 17:42:11 +01001881{
Takashi Iwai1727a772013-01-10 09:52:52 +01001882 if (action != HDA_FIXUP_ACT_INIT)
Takashi Iwai56710872011-11-14 17:42:11 +01001883 return;
1884 alc882_gpio_mute(codec, 0, 0);
1885 alc882_gpio_mute(codec, 1, 0);
1886}
1887
Takashi Iwai02a237b2012-02-13 15:25:07 +01001888/* Fix the connection of some pins for ALC889:
1889 * At least, Acer Aspire 5935 shows the connections to DAC3/4 don't
1890 * work correctly (bko#42740)
1891 */
1892static void alc889_fixup_dac_route(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +01001893 const struct hda_fixup *fix, int action)
Takashi Iwai02a237b2012-02-13 15:25:07 +01001894{
Takashi Iwai1727a772013-01-10 09:52:52 +01001895 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
Takashi Iwaief8d60f2012-02-17 10:12:38 +01001896 /* fake the connections during parsing the tree */
Takashi Iwai02a237b2012-02-13 15:25:07 +01001897 hda_nid_t conn1[2] = { 0x0c, 0x0d };
1898 hda_nid_t conn2[2] = { 0x0e, 0x0f };
1899 snd_hda_override_conn_list(codec, 0x14, 2, conn1);
1900 snd_hda_override_conn_list(codec, 0x15, 2, conn1);
1901 snd_hda_override_conn_list(codec, 0x18, 2, conn2);
1902 snd_hda_override_conn_list(codec, 0x1a, 2, conn2);
Takashi Iwai1727a772013-01-10 09:52:52 +01001903 } else if (action == HDA_FIXUP_ACT_PROBE) {
Takashi Iwaief8d60f2012-02-17 10:12:38 +01001904 /* restore the connections */
1905 hda_nid_t conn[5] = { 0x0c, 0x0d, 0x0e, 0x0f, 0x26 };
1906 snd_hda_override_conn_list(codec, 0x14, 5, conn);
1907 snd_hda_override_conn_list(codec, 0x15, 5, conn);
1908 snd_hda_override_conn_list(codec, 0x18, 5, conn);
1909 snd_hda_override_conn_list(codec, 0x1a, 5, conn);
Takashi Iwai02a237b2012-02-13 15:25:07 +01001910 }
1911}
1912
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01001913/* Set VREF on HP pin */
1914static void alc889_fixup_mbp_vref(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +01001915 const struct hda_fixup *fix, int action)
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01001916{
1917 struct alc_spec *spec = codec->spec;
1918 static hda_nid_t nids[2] = { 0x14, 0x15 };
1919 int i;
1920
Takashi Iwai1727a772013-01-10 09:52:52 +01001921 if (action != HDA_FIXUP_ACT_INIT)
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01001922 return;
1923 for (i = 0; i < ARRAY_SIZE(nids); i++) {
1924 unsigned int val = snd_hda_codec_get_pincfg(codec, nids[i]);
1925 if (get_defcfg_device(val) != AC_JACK_HP_OUT)
1926 continue;
Takashi Iwaid3f02d62013-01-10 10:12:22 +01001927 val = snd_hda_codec_get_pin_target(codec, nids[i]);
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01001928 val |= AC_PINCTL_VREF_80;
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02001929 snd_hda_set_pin_ctl(codec, nids[i], val);
Takashi Iwai08c189f2012-12-19 15:22:24 +01001930 spec->gen.keep_vref_in_automute = 1;
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01001931 break;
1932 }
1933}
1934
Takashi Iwai0756f092013-12-04 13:59:45 +01001935static void alc889_fixup_mac_pins(struct hda_codec *codec,
1936 const hda_nid_t *nids, int num_nids)
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01001937{
1938 struct alc_spec *spec = codec->spec;
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01001939 int i;
1940
Takashi Iwai0756f092013-12-04 13:59:45 +01001941 for (i = 0; i < num_nids; i++) {
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01001942 unsigned int val;
Takashi Iwaid3f02d62013-01-10 10:12:22 +01001943 val = snd_hda_codec_get_pin_target(codec, nids[i]);
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01001944 val |= AC_PINCTL_VREF_50;
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02001945 snd_hda_set_pin_ctl(codec, nids[i], val);
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01001946 }
Takashi Iwai08c189f2012-12-19 15:22:24 +01001947 spec->gen.keep_vref_in_automute = 1;
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01001948}
1949
Takashi Iwai0756f092013-12-04 13:59:45 +01001950/* Set VREF on speaker pins on imac91 */
1951static void alc889_fixup_imac91_vref(struct hda_codec *codec,
1952 const struct hda_fixup *fix, int action)
1953{
1954 static hda_nid_t nids[2] = { 0x18, 0x1a };
1955
1956 if (action == HDA_FIXUP_ACT_INIT)
1957 alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids));
1958}
1959
1960/* Set VREF on speaker pins on mba21 */
1961static void alc889_fixup_mba21_vref(struct hda_codec *codec,
1962 const struct hda_fixup *fix, int action)
1963{
1964 static hda_nid_t nids[2] = { 0x18, 0x19 };
1965
1966 if (action == HDA_FIXUP_ACT_INIT)
1967 alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids));
1968}
1969
Takashi Iwaie427c232012-07-29 10:04:08 +02001970/* Don't take HP output as primary
Fernando Luis Vázquez Caod9111492013-02-12 16:49:46 +09001971 * Strangely, the speaker output doesn't work on Vaio Z and some Vaio
1972 * all-in-one desktop PCs (for example VGC-LN51JGB) through DAC 0x05
Takashi Iwaie427c232012-07-29 10:04:08 +02001973 */
1974static void alc882_fixup_no_primary_hp(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +01001975 const struct hda_fixup *fix, int action)
Takashi Iwaie427c232012-07-29 10:04:08 +02001976{
1977 struct alc_spec *spec = codec->spec;
Takashi Iwaida96fb52013-07-29 16:54:36 +02001978 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
Takashi Iwai08c189f2012-12-19 15:22:24 +01001979 spec->gen.no_primary_hp = 1;
Takashi Iwaida96fb52013-07-29 16:54:36 +02001980 spec->gen.no_multi_io = 1;
1981 }
Takashi Iwaie427c232012-07-29 10:04:08 +02001982}
1983
Takashi Iwaieb9ca3a2013-11-28 15:24:34 +01001984static void alc_fixup_bass_chmap(struct hda_codec *codec,
1985 const struct hda_fixup *fix, int action);
1986
Takashi Iwai1727a772013-01-10 09:52:52 +01001987static const struct hda_fixup alc882_fixups[] = {
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01001988 [ALC882_FIXUP_ABIT_AW9D_MAX] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001989 .type = HDA_FIXUP_PINS,
1990 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02001991 { 0x15, 0x01080104 }, /* side */
1992 { 0x16, 0x01011012 }, /* rear */
1993 { 0x17, 0x01016011 }, /* clfe */
1994 { }
1995 }
1996 },
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01001997 [ALC882_FIXUP_LENOVO_Y530] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01001998 .type = HDA_FIXUP_PINS,
1999 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02002000 { 0x15, 0x99130112 }, /* rear int speakers */
2001 { 0x16, 0x99130111 }, /* subwoofer */
2002 { }
2003 }
2004 },
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01002005 [ALC882_FIXUP_PB_M5210] = {
Takashi Iwaifd108212013-01-10 10:18:14 +01002006 .type = HDA_FIXUP_PINCTLS,
2007 .v.pins = (const struct hda_pintbl[]) {
2008 { 0x19, PIN_VREF50 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02002009 {}
2010 }
2011 },
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01002012 [ALC882_FIXUP_ACER_ASPIRE_7736] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002013 .type = HDA_FIXUP_FUNC,
Takashi Iwai23d30f22012-05-07 17:17:32 +02002014 .v.func = alc_fixup_sku_ignore,
Takashi Iwai1d045db2011-07-07 18:23:21 +02002015 },
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01002016 [ALC882_FIXUP_ASUS_W90V] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002017 .type = HDA_FIXUP_PINS,
2018 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai5cdf7452011-10-26 23:04:08 +02002019 { 0x16, 0x99130110 }, /* fix sequence for CLFE */
2020 { }
2021 }
2022 },
Marton Balint8f239212012-03-05 21:33:23 +01002023 [ALC889_FIXUP_CD] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002024 .type = HDA_FIXUP_PINS,
2025 .v.pins = (const struct hda_pintbl[]) {
Marton Balint8f239212012-03-05 21:33:23 +01002026 { 0x1c, 0x993301f0 }, /* CD */
2027 { }
2028 }
2029 },
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01002030 [ALC889_FIXUP_VAIO_TT] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002031 .type = HDA_FIXUP_PINS,
2032 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01002033 { 0x17, 0x90170111 }, /* hidden surround speaker */
2034 { }
2035 }
2036 },
Takashi Iwai0e7cc2e2011-11-09 12:42:48 +01002037 [ALC888_FIXUP_EEE1601] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002038 .type = HDA_FIXUP_VERBS,
Takashi Iwai0e7cc2e2011-11-09 12:42:48 +01002039 .v.verbs = (const struct hda_verb[]) {
2040 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
2041 { 0x20, AC_VERB_SET_PROC_COEF, 0x0838 },
2042 { }
2043 }
Takashi Iwai177943a2011-11-09 12:55:18 +01002044 },
2045 [ALC882_FIXUP_EAPD] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002046 .type = HDA_FIXUP_VERBS,
Takashi Iwai177943a2011-11-09 12:55:18 +01002047 .v.verbs = (const struct hda_verb[]) {
2048 /* change to EAPD mode */
2049 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2050 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
2051 { }
2052 }
2053 },
Takashi Iwai7a6069b2011-11-09 15:22:01 +01002054 [ALC883_FIXUP_EAPD] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002055 .type = HDA_FIXUP_VERBS,
Takashi Iwai7a6069b2011-11-09 15:22:01 +01002056 .v.verbs = (const struct hda_verb[]) {
2057 /* change to EAPD mode */
2058 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2059 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
2060 { }
2061 }
2062 },
Takashi Iwai8812c4f2011-11-09 17:39:15 +01002063 [ALC883_FIXUP_ACER_EAPD] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002064 .type = HDA_FIXUP_VERBS,
Takashi Iwai8812c4f2011-11-09 17:39:15 +01002065 .v.verbs = (const struct hda_verb[]) {
2066 /* eanable EAPD on Acer laptops */
2067 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2068 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2069 { }
2070 }
2071 },
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01002072 [ALC882_FIXUP_GPIO1] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002073 .type = HDA_FIXUP_VERBS,
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01002074 .v.verbs = alc_gpio1_init_verbs,
2075 },
2076 [ALC882_FIXUP_GPIO2] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002077 .type = HDA_FIXUP_VERBS,
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01002078 .v.verbs = alc_gpio2_init_verbs,
2079 },
Takashi Iwaieb844d52011-11-09 18:03:07 +01002080 [ALC882_FIXUP_GPIO3] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002081 .type = HDA_FIXUP_VERBS,
Takashi Iwaieb844d52011-11-09 18:03:07 +01002082 .v.verbs = alc_gpio3_init_verbs,
2083 },
Takashi Iwai68ef0562011-11-09 18:24:44 +01002084 [ALC882_FIXUP_ASUS_W2JC] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002085 .type = HDA_FIXUP_VERBS,
Takashi Iwai68ef0562011-11-09 18:24:44 +01002086 .v.verbs = alc_gpio1_init_verbs,
2087 .chained = true,
2088 .chain_id = ALC882_FIXUP_EAPD,
2089 },
2090 [ALC889_FIXUP_COEF] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002091 .type = HDA_FIXUP_FUNC,
Takashi Iwai68ef0562011-11-09 18:24:44 +01002092 .v.func = alc889_fixup_coef,
2093 },
Takashi Iwaic3e837b2011-11-10 16:01:47 +01002094 [ALC882_FIXUP_ACER_ASPIRE_4930G] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002095 .type = HDA_FIXUP_PINS,
2096 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwaic3e837b2011-11-10 16:01:47 +01002097 { 0x16, 0x99130111 }, /* CLFE speaker */
2098 { 0x17, 0x99130112 }, /* surround speaker */
2099 { }
Takashi Iwai038d4fe2012-04-11 17:18:12 +02002100 },
2101 .chained = true,
2102 .chain_id = ALC882_FIXUP_GPIO1,
Takashi Iwaic3e837b2011-11-10 16:01:47 +01002103 },
2104 [ALC882_FIXUP_ACER_ASPIRE_8930G] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002105 .type = HDA_FIXUP_PINS,
2106 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwaic3e837b2011-11-10 16:01:47 +01002107 { 0x16, 0x99130111 }, /* CLFE speaker */
2108 { 0x1b, 0x99130112 }, /* surround speaker */
2109 { }
2110 },
2111 .chained = true,
2112 .chain_id = ALC882_FIXUP_ASPIRE_8930G_VERBS,
2113 },
2114 [ALC882_FIXUP_ASPIRE_8930G_VERBS] = {
2115 /* additional init verbs for Acer Aspire 8930G */
Takashi Iwai1727a772013-01-10 09:52:52 +01002116 .type = HDA_FIXUP_VERBS,
Takashi Iwaic3e837b2011-11-10 16:01:47 +01002117 .v.verbs = (const struct hda_verb[]) {
2118 /* Enable all DACs */
2119 /* DAC DISABLE/MUTE 1? */
2120 /* setting bits 1-5 disables DAC nids 0x02-0x06
2121 * apparently. Init=0x38 */
2122 { 0x20, AC_VERB_SET_COEF_INDEX, 0x03 },
2123 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
2124 /* DAC DISABLE/MUTE 2? */
2125 /* some bit here disables the other DACs.
2126 * Init=0x4900 */
2127 { 0x20, AC_VERB_SET_COEF_INDEX, 0x08 },
2128 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
2129 /* DMIC fix
2130 * This laptop has a stereo digital microphone.
2131 * The mics are only 1cm apart which makes the stereo
2132 * useless. However, either the mic or the ALC889
2133 * makes the signal become a difference/sum signal
2134 * instead of standard stereo, which is annoying.
2135 * So instead we flip this bit which makes the
2136 * codec replicate the sum signal to both channels,
2137 * turning it into a normal mono mic.
2138 */
2139 /* DMIC_CONTROL? Init value = 0x0001 */
2140 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
2141 { 0x20, AC_VERB_SET_PROC_COEF, 0x0003 },
2142 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2143 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2144 { }
Takashi Iwai038d4fe2012-04-11 17:18:12 +02002145 },
2146 .chained = true,
2147 .chain_id = ALC882_FIXUP_GPIO1,
Takashi Iwaic3e837b2011-11-10 16:01:47 +01002148 },
Takashi Iwai56710872011-11-14 17:42:11 +01002149 [ALC885_FIXUP_MACPRO_GPIO] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002150 .type = HDA_FIXUP_FUNC,
Takashi Iwai56710872011-11-14 17:42:11 +01002151 .v.func = alc885_fixup_macpro_gpio,
2152 },
Takashi Iwai02a237b2012-02-13 15:25:07 +01002153 [ALC889_FIXUP_DAC_ROUTE] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002154 .type = HDA_FIXUP_FUNC,
Takashi Iwai02a237b2012-02-13 15:25:07 +01002155 .v.func = alc889_fixup_dac_route,
2156 },
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01002157 [ALC889_FIXUP_MBP_VREF] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002158 .type = HDA_FIXUP_FUNC,
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01002159 .v.func = alc889_fixup_mbp_vref,
2160 .chained = true,
2161 .chain_id = ALC882_FIXUP_GPIO1,
2162 },
2163 [ALC889_FIXUP_IMAC91_VREF] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002164 .type = HDA_FIXUP_FUNC,
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01002165 .v.func = alc889_fixup_imac91_vref,
2166 .chained = true,
2167 .chain_id = ALC882_FIXUP_GPIO1,
2168 },
Takashi Iwai0756f092013-12-04 13:59:45 +01002169 [ALC889_FIXUP_MBA21_VREF] = {
2170 .type = HDA_FIXUP_FUNC,
2171 .v.func = alc889_fixup_mba21_vref,
2172 .chained = true,
2173 .chain_id = ALC889_FIXUP_MBP_VREF,
2174 },
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002175 [ALC882_FIXUP_INV_DMIC] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002176 .type = HDA_FIXUP_FUNC,
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002177 .v.func = alc_fixup_inv_dmic_0x12,
2178 },
Takashi Iwaie427c232012-07-29 10:04:08 +02002179 [ALC882_FIXUP_NO_PRIMARY_HP] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002180 .type = HDA_FIXUP_FUNC,
Takashi Iwaie427c232012-07-29 10:04:08 +02002181 .v.func = alc882_fixup_no_primary_hp,
2182 },
Takashi Iwai1f0bbf02013-11-28 15:21:21 +01002183 [ALC887_FIXUP_ASUS_BASS] = {
2184 .type = HDA_FIXUP_PINS,
2185 .v.pins = (const struct hda_pintbl[]) {
2186 {0x16, 0x99130130}, /* bass speaker */
2187 {}
2188 },
Takashi Iwaieb9ca3a2013-11-28 15:24:34 +01002189 .chained = true,
2190 .chain_id = ALC887_FIXUP_BASS_CHMAP,
2191 },
2192 [ALC887_FIXUP_BASS_CHMAP] = {
2193 .type = HDA_FIXUP_FUNC,
2194 .v.func = alc_fixup_bass_chmap,
Takashi Iwai1f0bbf02013-11-28 15:21:21 +01002195 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02002196};
2197
2198static const struct snd_pci_quirk alc882_fixup_tbl[] = {
Takashi Iwai8812c4f2011-11-09 17:39:15 +01002199 SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_FIXUP_ACER_EAPD),
2200 SND_PCI_QUIRK(0x1025, 0x0090, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
2201 SND_PCI_QUIRK(0x1025, 0x010a, "Acer Ferrari 5000", ALC883_FIXUP_ACER_EAPD),
2202 SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
2203 SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_FIXUP_ACER_EAPD),
2204 SND_PCI_QUIRK(0x1025, 0x0121, "Acer Aspire 5920G", ALC883_FIXUP_ACER_EAPD),
Takashi Iwaic3e837b2011-11-10 16:01:47 +01002205 SND_PCI_QUIRK(0x1025, 0x013e, "Acer Aspire 4930G",
2206 ALC882_FIXUP_ACER_ASPIRE_4930G),
2207 SND_PCI_QUIRK(0x1025, 0x013f, "Acer Aspire 5930G",
2208 ALC882_FIXUP_ACER_ASPIRE_4930G),
2209 SND_PCI_QUIRK(0x1025, 0x0145, "Acer Aspire 8930G",
2210 ALC882_FIXUP_ACER_ASPIRE_8930G),
2211 SND_PCI_QUIRK(0x1025, 0x0146, "Acer Aspire 6935G",
2212 ALC882_FIXUP_ACER_ASPIRE_8930G),
2213 SND_PCI_QUIRK(0x1025, 0x015e, "Acer Aspire 6930G",
2214 ALC882_FIXUP_ACER_ASPIRE_4930G),
2215 SND_PCI_QUIRK(0x1025, 0x0166, "Acer Aspire 6530G",
2216 ALC882_FIXUP_ACER_ASPIRE_4930G),
2217 SND_PCI_QUIRK(0x1025, 0x0142, "Acer Aspire 7730G",
2218 ALC882_FIXUP_ACER_ASPIRE_4930G),
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01002219 SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", ALC882_FIXUP_PB_M5210),
Takashi Iwaif5c53d82012-05-07 10:07:33 +02002220 SND_PCI_QUIRK(0x1025, 0x021e, "Acer Aspire 5739G",
2221 ALC882_FIXUP_ACER_ASPIRE_4930G),
Takashi Iwai02a237b2012-02-13 15:25:07 +01002222 SND_PCI_QUIRK(0x1025, 0x0259, "Acer Aspire 5935", ALC889_FIXUP_DAC_ROUTE),
Takashi Iwaife97da12012-04-12 08:00:19 +02002223 SND_PCI_QUIRK(0x1025, 0x026b, "Acer Aspire 8940G", ALC882_FIXUP_ACER_ASPIRE_8930G),
Takashi Iwaiac9b1cd2011-11-09 17:45:55 +01002224 SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", ALC882_FIXUP_ACER_ASPIRE_7736),
Takashi Iwai177943a2011-11-09 12:55:18 +01002225 SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_FIXUP_EAPD),
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01002226 SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", ALC882_FIXUP_ASUS_W90V),
Takashi Iwai68ef0562011-11-09 18:24:44 +01002227 SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_FIXUP_ASUS_W2JC),
Takashi Iwai0e7cc2e2011-11-09 12:42:48 +01002228 SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_FIXUP_EEE1601),
Takashi Iwai1f0bbf02013-11-28 15:21:21 +01002229 SND_PCI_QUIRK(0x1043, 0x84bc, "ASUS ET2700", ALC887_FIXUP_ASUS_BASS),
Takashi Iwaiac9b1cd2011-11-09 17:45:55 +01002230 SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT),
Takashi Iwaie427c232012-07-29 10:04:08 +02002231 SND_PCI_QUIRK(0x104d, 0x905a, "Sony Vaio Z", ALC882_FIXUP_NO_PRIMARY_HP),
Fernando Luis Vázquez Cao12e31a72013-02-12 16:47:44 +09002232 SND_PCI_QUIRK(0x104d, 0x9043, "Sony Vaio VGC-LN51JGB", ALC882_FIXUP_NO_PRIMARY_HP),
Takashi Iwai56710872011-11-14 17:42:11 +01002233
2234 /* All Apple entries are in codec SSIDs */
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01002235 SND_PCI_QUIRK(0x106b, 0x00a0, "MacBookPro 3,1", ALC889_FIXUP_MBP_VREF),
2236 SND_PCI_QUIRK(0x106b, 0x00a1, "Macbook", ALC889_FIXUP_MBP_VREF),
2237 SND_PCI_QUIRK(0x106b, 0x00a4, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
Takashi Iwai56710872011-11-14 17:42:11 +01002238 SND_PCI_QUIRK(0x106b, 0x0c00, "Mac Pro", ALC885_FIXUP_MACPRO_GPIO),
2239 SND_PCI_QUIRK(0x106b, 0x1000, "iMac 24", ALC885_FIXUP_MACPRO_GPIO),
2240 SND_PCI_QUIRK(0x106b, 0x2800, "AppleTV", ALC885_FIXUP_MACPRO_GPIO),
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01002241 SND_PCI_QUIRK(0x106b, 0x2c00, "MacbookPro rev3", ALC889_FIXUP_MBP_VREF),
2242 SND_PCI_QUIRK(0x106b, 0x3000, "iMac", ALC889_FIXUP_MBP_VREF),
Takashi Iwai56710872011-11-14 17:42:11 +01002243 SND_PCI_QUIRK(0x106b, 0x3200, "iMac 7,1 Aluminum", ALC882_FIXUP_EAPD),
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01002244 SND_PCI_QUIRK(0x106b, 0x3400, "MacBookAir 1,1", ALC889_FIXUP_MBP_VREF),
Takashi Iwai0756f092013-12-04 13:59:45 +01002245 SND_PCI_QUIRK(0x106b, 0x3500, "MacBookAir 2,1", ALC889_FIXUP_MBA21_VREF),
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01002246 SND_PCI_QUIRK(0x106b, 0x3600, "Macbook 3,1", ALC889_FIXUP_MBP_VREF),
2247 SND_PCI_QUIRK(0x106b, 0x3800, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
Takashi Iwai56710872011-11-14 17:42:11 +01002248 SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_FIXUP_MACPRO_GPIO),
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01002249 SND_PCI_QUIRK(0x106b, 0x3f00, "Macbook 5,1", ALC889_FIXUP_IMAC91_VREF),
2250 SND_PCI_QUIRK(0x106b, 0x4000, "MacbookPro 5,1", ALC889_FIXUP_IMAC91_VREF),
2251 SND_PCI_QUIRK(0x106b, 0x4100, "Macmini 3,1", ALC889_FIXUP_IMAC91_VREF),
Josh Boyer29ebe402012-04-12 13:55:36 -04002252 SND_PCI_QUIRK(0x106b, 0x4200, "Mac Pro 5,1", ALC885_FIXUP_MACPRO_GPIO),
Takashi Iwai05193632012-11-12 10:07:36 +01002253 SND_PCI_QUIRK(0x106b, 0x4300, "iMac 9,1", ALC889_FIXUP_IMAC91_VREF),
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01002254 SND_PCI_QUIRK(0x106b, 0x4600, "MacbookPro 5,2", ALC889_FIXUP_IMAC91_VREF),
2255 SND_PCI_QUIRK(0x106b, 0x4900, "iMac 9,1 Aluminum", ALC889_FIXUP_IMAC91_VREF),
2256 SND_PCI_QUIRK(0x106b, 0x4a00, "Macbook 5,2", ALC889_FIXUP_IMAC91_VREF),
Takashi Iwai56710872011-11-14 17:42:11 +01002257
Takashi Iwai7a6069b2011-11-09 15:22:01 +01002258 SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC882_FIXUP_EAPD),
Takashi Iwaibca40132012-05-07 11:13:14 +02002259 SND_PCI_QUIRK(0x1462, 0x7350, "MSI-7350", ALC889_FIXUP_CD),
Takashi Iwaieb844d52011-11-09 18:03:07 +01002260 SND_PCI_QUIRK_VENDOR(0x1462, "MSI", ALC882_FIXUP_GPIO3),
Marton Balint8f239212012-03-05 21:33:23 +01002261 SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte EP45-DS3", ALC889_FIXUP_CD),
Takashi Iwai5c0ebfb2011-11-07 17:59:13 +01002262 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", ALC882_FIXUP_ABIT_AW9D_MAX),
Takashi Iwai7a6069b2011-11-09 15:22:01 +01002263 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC882_FIXUP_EAPD),
2264 SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_FIXUP_EAPD),
Takashi Iwaiac9b1cd2011-11-09 17:45:55 +01002265 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530),
Takashi Iwai68ef0562011-11-09 18:24:44 +01002266 SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC889_FIXUP_COEF),
Takashi Iwai1d045db2011-07-07 18:23:21 +02002267 {}
2268};
2269
Takashi Iwai1727a772013-01-10 09:52:52 +01002270static const struct hda_model_fixup alc882_fixup_models[] = {
Takashi Iwai912093b2012-04-11 14:03:41 +02002271 {.id = ALC882_FIXUP_ACER_ASPIRE_4930G, .name = "acer-aspire-4930g"},
2272 {.id = ALC882_FIXUP_ACER_ASPIRE_8930G, .name = "acer-aspire-8930g"},
2273 {.id = ALC883_FIXUP_ACER_EAPD, .name = "acer-aspire"},
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002274 {.id = ALC882_FIXUP_INV_DMIC, .name = "inv-dmic"},
Takashi Iwaie427c232012-07-29 10:04:08 +02002275 {.id = ALC882_FIXUP_NO_PRIMARY_HP, .name = "no-primary-hp"},
Takashi Iwai912093b2012-04-11 14:03:41 +02002276 {}
2277};
2278
Takashi Iwai1d045db2011-07-07 18:23:21 +02002279/*
2280 * BIOS auto configuration
2281 */
2282/* almost identical with ALC880 parser... */
2283static int alc882_parse_auto_config(struct hda_codec *codec)
2284{
Takashi Iwai1d045db2011-07-07 18:23:21 +02002285 static const hda_nid_t alc882_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02002286 static const hda_nid_t alc882_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2287 return alc_parse_auto_config(codec, alc882_ignore, alc882_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02002288}
2289
Takashi Iwai1d045db2011-07-07 18:23:21 +02002290/*
2291 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02002292static int patch_alc882(struct hda_codec *codec)
2293{
2294 struct alc_spec *spec;
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01002295 int err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002296
Takashi Iwai3de95172012-05-07 18:03:15 +02002297 err = alc_alloc_spec(codec, 0x0b);
2298 if (err < 0)
2299 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002300
Takashi Iwai3de95172012-05-07 18:03:15 +02002301 spec = codec->spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002302
2303 switch (codec->vendor_id) {
2304 case 0x10ec0882:
2305 case 0x10ec0885:
2306 break;
2307 default:
2308 /* ALC883 and variants */
2309 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2310 break;
2311 }
2312
Takashi Iwai1727a772013-01-10 09:52:52 +01002313 snd_hda_pick_fixup(codec, alc882_fixup_models, alc882_fixup_tbl,
Takashi Iwai912093b2012-04-11 14:03:41 +02002314 alc882_fixups);
Takashi Iwai1727a772013-01-10 09:52:52 +01002315 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02002316
2317 alc_auto_parse_customize_define(codec);
2318
Takashi Iwai7504b6c2013-03-18 11:25:51 +01002319 if (has_cdefine_beep(codec))
2320 spec->gen.beep_nid = 0x01;
2321
Takashi Iwai1a97b7f2012-02-21 11:11:48 +01002322 /* automatic parse from the BIOS config */
2323 err = alc882_parse_auto_config(codec);
2324 if (err < 0)
2325 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002326
Takashi Iwai7504b6c2013-03-18 11:25:51 +01002327 if (!spec->gen.no_analog && spec->gen.beep_nid)
Takashi Iwai1d045db2011-07-07 18:23:21 +02002328 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
2329
Takashi Iwai1d045db2011-07-07 18:23:21 +02002330 codec->patch_ops = alc_patch_ops;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002331
Takashi Iwai1727a772013-01-10 09:52:52 +01002332 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
Takashi Iwai589876e2012-02-20 15:47:55 +01002333
Takashi Iwai1d045db2011-07-07 18:23:21 +02002334 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002335
2336 error:
2337 alc_free(codec);
2338 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002339}
2340
2341
2342/*
2343 * ALC262 support
2344 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02002345static int alc262_parse_auto_config(struct hda_codec *codec)
2346{
Takashi Iwai1d045db2011-07-07 18:23:21 +02002347 static const hda_nid_t alc262_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02002348 static const hda_nid_t alc262_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2349 return alc_parse_auto_config(codec, alc262_ignore, alc262_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02002350}
2351
2352/*
2353 * Pin config fixes
2354 */
2355enum {
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01002356 ALC262_FIXUP_FSC_H270,
Takashi Iwai7513e6d2013-01-18 15:41:34 +01002357 ALC262_FIXUP_FSC_S7110,
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01002358 ALC262_FIXUP_HP_Z200,
2359 ALC262_FIXUP_TYAN,
Takashi Iwaic4701502011-11-07 14:20:07 +01002360 ALC262_FIXUP_LENOVO_3000,
Takashi Iwaib42590b2011-11-07 14:41:01 +01002361 ALC262_FIXUP_BENQ,
2362 ALC262_FIXUP_BENQ_T31,
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002363 ALC262_FIXUP_INV_DMIC,
Mengdong Linb5c66112013-11-29 00:35:35 -05002364 ALC262_FIXUP_INTEL_BAYLEYBAY,
Takashi Iwai1d045db2011-07-07 18:23:21 +02002365};
2366
Takashi Iwai1727a772013-01-10 09:52:52 +01002367static const struct hda_fixup alc262_fixups[] = {
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01002368 [ALC262_FIXUP_FSC_H270] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002369 .type = HDA_FIXUP_PINS,
2370 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02002371 { 0x14, 0x99130110 }, /* speaker */
2372 { 0x15, 0x0221142f }, /* front HP */
2373 { 0x1b, 0x0121141f }, /* rear HP */
2374 { }
2375 }
2376 },
Takashi Iwai7513e6d2013-01-18 15:41:34 +01002377 [ALC262_FIXUP_FSC_S7110] = {
2378 .type = HDA_FIXUP_PINS,
2379 .v.pins = (const struct hda_pintbl[]) {
2380 { 0x15, 0x90170110 }, /* speaker */
2381 { }
2382 },
2383 .chained = true,
2384 .chain_id = ALC262_FIXUP_BENQ,
2385 },
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01002386 [ALC262_FIXUP_HP_Z200] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002387 .type = HDA_FIXUP_PINS,
2388 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02002389 { 0x16, 0x99130120 }, /* internal speaker */
2390 { }
2391 }
2392 },
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01002393 [ALC262_FIXUP_TYAN] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002394 .type = HDA_FIXUP_PINS,
2395 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01002396 { 0x14, 0x1993e1f0 }, /* int AUX */
2397 { }
2398 }
2399 },
Takashi Iwaic4701502011-11-07 14:20:07 +01002400 [ALC262_FIXUP_LENOVO_3000] = {
Takashi Iwaifd108212013-01-10 10:18:14 +01002401 .type = HDA_FIXUP_PINCTLS,
2402 .v.pins = (const struct hda_pintbl[]) {
2403 { 0x19, PIN_VREF50 },
Takashi Iwaib42590b2011-11-07 14:41:01 +01002404 {}
2405 },
2406 .chained = true,
2407 .chain_id = ALC262_FIXUP_BENQ,
2408 },
2409 [ALC262_FIXUP_BENQ] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002410 .type = HDA_FIXUP_VERBS,
Takashi Iwaib42590b2011-11-07 14:41:01 +01002411 .v.verbs = (const struct hda_verb[]) {
Takashi Iwaic4701502011-11-07 14:20:07 +01002412 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2413 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
2414 {}
2415 }
2416 },
Takashi Iwaib42590b2011-11-07 14:41:01 +01002417 [ALC262_FIXUP_BENQ_T31] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002418 .type = HDA_FIXUP_VERBS,
Takashi Iwaib42590b2011-11-07 14:41:01 +01002419 .v.verbs = (const struct hda_verb[]) {
2420 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2421 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2422 {}
2423 }
2424 },
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002425 [ALC262_FIXUP_INV_DMIC] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002426 .type = HDA_FIXUP_FUNC,
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002427 .v.func = alc_fixup_inv_dmic_0x12,
2428 },
Mengdong Linb5c66112013-11-29 00:35:35 -05002429 [ALC262_FIXUP_INTEL_BAYLEYBAY] = {
2430 .type = HDA_FIXUP_FUNC,
2431 .v.func = alc_fixup_no_depop_delay,
2432 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02002433};
2434
2435static const struct snd_pci_quirk alc262_fixup_tbl[] = {
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01002436 SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", ALC262_FIXUP_HP_Z200),
Takashi Iwai7513e6d2013-01-18 15:41:34 +01002437 SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu Lifebook S7110", ALC262_FIXUP_FSC_S7110),
Takashi Iwai3dcd3be2011-11-07 14:59:40 +01002438 SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FIXUP_BENQ),
Takashi Iwaiea4e7af2011-11-07 12:23:55 +01002439 SND_PCI_QUIRK(0x10f1, 0x2915, "Tyan Thunder n6650W", ALC262_FIXUP_TYAN),
2440 SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", ALC262_FIXUP_FSC_H270),
Takashi Iwaic4701502011-11-07 14:20:07 +01002441 SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000", ALC262_FIXUP_LENOVO_3000),
Takashi Iwaib42590b2011-11-07 14:41:01 +01002442 SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_FIXUP_BENQ),
2443 SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_FIXUP_BENQ_T31),
Mengdong Linb5c66112013-11-29 00:35:35 -05002444 SND_PCI_QUIRK(0x8086, 0x7270, "BayleyBay", ALC262_FIXUP_INTEL_BAYLEYBAY),
Takashi Iwai1d045db2011-07-07 18:23:21 +02002445 {}
2446};
2447
Takashi Iwai1727a772013-01-10 09:52:52 +01002448static const struct hda_model_fixup alc262_fixup_models[] = {
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002449 {.id = ALC262_FIXUP_INV_DMIC, .name = "inv-dmic"},
2450 {}
2451};
Takashi Iwai1d045db2011-07-07 18:23:21 +02002452
Takashi Iwai1d045db2011-07-07 18:23:21 +02002453/*
2454 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02002455static int patch_alc262(struct hda_codec *codec)
2456{
2457 struct alc_spec *spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002458 int err;
2459
Takashi Iwai3de95172012-05-07 18:03:15 +02002460 err = alc_alloc_spec(codec, 0x0b);
2461 if (err < 0)
2462 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002463
Takashi Iwai3de95172012-05-07 18:03:15 +02002464 spec = codec->spec;
Takashi Iwai08c189f2012-12-19 15:22:24 +01002465 spec->gen.shared_mic_vref_pin = 0x18;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002466
2467#if 0
2468 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
2469 * under-run
2470 */
2471 {
2472 int tmp;
2473 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
2474 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
2475 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
2476 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PROC_COEF, tmp | 0x80);
2477 }
2478#endif
Takashi Iwai1d045db2011-07-07 18:23:21 +02002479 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2480
Takashi Iwai1727a772013-01-10 09:52:52 +01002481 snd_hda_pick_fixup(codec, alc262_fixup_models, alc262_fixup_tbl,
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002482 alc262_fixups);
Takashi Iwai1727a772013-01-10 09:52:52 +01002483 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02002484
Takashi Iwaiaf741c12012-05-07 18:09:48 +02002485 alc_auto_parse_customize_define(codec);
2486
Takashi Iwai7504b6c2013-03-18 11:25:51 +01002487 if (has_cdefine_beep(codec))
2488 spec->gen.beep_nid = 0x01;
2489
Takashi Iwai42399f72011-11-07 17:18:44 +01002490 /* automatic parse from the BIOS config */
2491 err = alc262_parse_auto_config(codec);
2492 if (err < 0)
2493 goto error;
Takashi Iwai3e6179b2011-07-08 16:55:13 +02002494
Takashi Iwai7504b6c2013-03-18 11:25:51 +01002495 if (!spec->gen.no_analog && spec->gen.beep_nid)
Takashi Iwai1d045db2011-07-07 18:23:21 +02002496 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
2497
Takashi Iwai1d045db2011-07-07 18:23:21 +02002498 codec->patch_ops = alc_patch_ops;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002499 spec->shutup = alc_eapd_shutup;
2500
Takashi Iwai1727a772013-01-10 09:52:52 +01002501 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
Takashi Iwai589876e2012-02-20 15:47:55 +01002502
Takashi Iwai1d045db2011-07-07 18:23:21 +02002503 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002504
2505 error:
2506 alc_free(codec);
2507 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002508}
2509
2510/*
2511 * ALC268
2512 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02002513/* bind Beep switches of both NID 0x0f and 0x10 */
2514static const struct hda_bind_ctls alc268_bind_beep_sw = {
2515 .ops = &snd_hda_bind_sw,
2516 .values = {
2517 HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT),
2518 HDA_COMPOSE_AMP_VAL(0x10, 3, 1, HDA_INPUT),
2519 0
2520 },
2521};
2522
2523static const struct snd_kcontrol_new alc268_beep_mixer[] = {
2524 HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT),
2525 HDA_BIND_SW("Beep Playback Switch", &alc268_bind_beep_sw),
2526 { }
2527};
2528
2529/* set PCBEEP vol = 0, mute connections */
2530static const struct hda_verb alc268_beep_init_verbs[] = {
2531 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2532 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2533 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2534 { }
2535};
2536
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002537enum {
2538 ALC268_FIXUP_INV_DMIC,
Takashi Iwaicb766402012-10-20 10:55:21 +02002539 ALC268_FIXUP_HP_EAPD,
Takashi Iwai24eff322013-11-04 18:21:08 +01002540 ALC268_FIXUP_SPDIF,
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002541};
2542
Takashi Iwai1727a772013-01-10 09:52:52 +01002543static const struct hda_fixup alc268_fixups[] = {
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002544 [ALC268_FIXUP_INV_DMIC] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002545 .type = HDA_FIXUP_FUNC,
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002546 .v.func = alc_fixup_inv_dmic_0x12,
2547 },
Takashi Iwaicb766402012-10-20 10:55:21 +02002548 [ALC268_FIXUP_HP_EAPD] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01002549 .type = HDA_FIXUP_VERBS,
Takashi Iwaicb766402012-10-20 10:55:21 +02002550 .v.verbs = (const struct hda_verb[]) {
2551 {0x15, AC_VERB_SET_EAPD_BTLENABLE, 0},
2552 {}
2553 }
2554 },
Takashi Iwai24eff322013-11-04 18:21:08 +01002555 [ALC268_FIXUP_SPDIF] = {
2556 .type = HDA_FIXUP_PINS,
2557 .v.pins = (const struct hda_pintbl[]) {
2558 { 0x1e, 0x014b1180 }, /* enable SPDIF out */
2559 {}
2560 }
2561 },
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002562};
2563
Takashi Iwai1727a772013-01-10 09:52:52 +01002564static const struct hda_model_fixup alc268_fixup_models[] = {
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002565 {.id = ALC268_FIXUP_INV_DMIC, .name = "inv-dmic"},
Takashi Iwaicb766402012-10-20 10:55:21 +02002566 {.id = ALC268_FIXUP_HP_EAPD, .name = "hp-eapd"},
2567 {}
2568};
2569
2570static const struct snd_pci_quirk alc268_fixup_tbl[] = {
Takashi Iwai24eff322013-11-04 18:21:08 +01002571 SND_PCI_QUIRK(0x1025, 0x0139, "Acer TravelMate 6293", ALC268_FIXUP_SPDIF),
David Henningssonfcd8f3b2013-01-28 05:45:47 +01002572 SND_PCI_QUIRK(0x1025, 0x015b, "Acer AOA 150 (ZG5)", ALC268_FIXUP_INV_DMIC),
Takashi Iwaicb766402012-10-20 10:55:21 +02002573 /* below is codec SSID since multiple Toshiba laptops have the
2574 * same PCI SSID 1179:ff00
2575 */
2576 SND_PCI_QUIRK(0x1179, 0xff06, "Toshiba P200", ALC268_FIXUP_HP_EAPD),
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002577 {}
2578};
2579
Takashi Iwai1d045db2011-07-07 18:23:21 +02002580/*
2581 * BIOS auto configuration
2582 */
2583static int alc268_parse_auto_config(struct hda_codec *codec)
2584{
Takashi Iwai3e6179b2011-07-08 16:55:13 +02002585 static const hda_nid_t alc268_ssids[] = { 0x15, 0x1b, 0x14, 0 };
Takashi Iwai7504b6c2013-03-18 11:25:51 +01002586 return alc_parse_auto_config(codec, NULL, alc268_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02002587}
2588
Takashi Iwai1d045db2011-07-07 18:23:21 +02002589/*
2590 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02002591static int patch_alc268(struct hda_codec *codec)
2592{
2593 struct alc_spec *spec;
Takashi Iwai7504b6c2013-03-18 11:25:51 +01002594 int err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002595
Takashi Iwai1d045db2011-07-07 18:23:21 +02002596 /* ALC268 has no aa-loopback mixer */
Takashi Iwai3de95172012-05-07 18:03:15 +02002597 err = alc_alloc_spec(codec, 0);
2598 if (err < 0)
2599 return err;
2600
2601 spec = codec->spec;
Takashi Iwai7504b6c2013-03-18 11:25:51 +01002602 spec->gen.beep_nid = 0x01;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002603
Takashi Iwai1727a772013-01-10 09:52:52 +01002604 snd_hda_pick_fixup(codec, alc268_fixup_models, alc268_fixup_tbl, alc268_fixups);
2605 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002606
Takashi Iwai6ebb8052011-08-16 15:15:40 +02002607 /* automatic parse from the BIOS config */
2608 err = alc268_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002609 if (err < 0)
2610 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002611
Takashi Iwai7504b6c2013-03-18 11:25:51 +01002612 if (err > 0 && !spec->gen.no_analog &&
2613 spec->gen.autocfg.speaker_pins[0] != 0x1d) {
2614 add_mixer(spec, alc268_beep_mixer);
2615 snd_hda_add_verbs(codec, alc268_beep_init_verbs);
Takashi Iwai1d045db2011-07-07 18:23:21 +02002616 if (!query_amp_caps(codec, 0x1d, HDA_INPUT))
2617 /* override the amp caps for beep generator */
2618 snd_hda_override_amp_caps(codec, 0x1d, HDA_INPUT,
2619 (0x0c << AC_AMPCAP_OFFSET_SHIFT) |
2620 (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT) |
2621 (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT) |
2622 (0 << AC_AMPCAP_MUTE_SHIFT));
2623 }
2624
Takashi Iwai1d045db2011-07-07 18:23:21 +02002625 codec->patch_ops = alc_patch_ops;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002626 spec->shutup = alc_eapd_shutup;
2627
Takashi Iwai1727a772013-01-10 09:52:52 +01002628 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
Takashi Iwai6e72aa52012-06-25 10:52:25 +02002629
Takashi Iwai1d045db2011-07-07 18:23:21 +02002630 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02002631
2632 error:
2633 alc_free(codec);
2634 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02002635}
2636
2637/*
2638 * ALC269
2639 */
Takashi Iwai08c189f2012-12-19 15:22:24 +01002640
2641static int playback_pcm_open(struct hda_pcm_stream *hinfo,
2642 struct hda_codec *codec,
2643 struct snd_pcm_substream *substream)
2644{
2645 struct hda_gen_spec *spec = codec->spec;
2646 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
2647 hinfo);
2648}
2649
2650static int playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2651 struct hda_codec *codec,
2652 unsigned int stream_tag,
2653 unsigned int format,
2654 struct snd_pcm_substream *substream)
2655{
2656 struct hda_gen_spec *spec = codec->spec;
2657 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
2658 stream_tag, format, substream);
2659}
2660
2661static int playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2662 struct hda_codec *codec,
2663 struct snd_pcm_substream *substream)
2664{
2665 struct hda_gen_spec *spec = codec->spec;
2666 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
2667}
2668
Takashi Iwai1d045db2011-07-07 18:23:21 +02002669static const struct hda_pcm_stream alc269_44k_pcm_analog_playback = {
2670 .substreams = 1,
2671 .channels_min = 2,
2672 .channels_max = 8,
2673 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
2674 /* NID is set in alc_build_pcms */
2675 .ops = {
Takashi Iwai08c189f2012-12-19 15:22:24 +01002676 .open = playback_pcm_open,
2677 .prepare = playback_pcm_prepare,
2678 .cleanup = playback_pcm_cleanup
Takashi Iwai1d045db2011-07-07 18:23:21 +02002679 },
2680};
2681
2682static const struct hda_pcm_stream alc269_44k_pcm_analog_capture = {
2683 .substreams = 1,
2684 .channels_min = 2,
2685 .channels_max = 2,
2686 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
2687 /* NID is set in alc_build_pcms */
2688};
2689
Takashi Iwai1d045db2011-07-07 18:23:21 +02002690/* different alc269-variants */
2691enum {
2692 ALC269_TYPE_ALC269VA,
2693 ALC269_TYPE_ALC269VB,
2694 ALC269_TYPE_ALC269VC,
Kailang Yangadcc70b2012-05-25 08:08:38 +02002695 ALC269_TYPE_ALC269VD,
Kailang Yang065380f2013-01-10 10:25:48 +01002696 ALC269_TYPE_ALC280,
2697 ALC269_TYPE_ALC282,
Kailang Yang2af02be2013-08-22 10:03:50 +02002698 ALC269_TYPE_ALC283,
Kailang Yang065380f2013-01-10 10:25:48 +01002699 ALC269_TYPE_ALC284,
Kailang Yang161ebf22013-10-24 11:36:33 +02002700 ALC269_TYPE_ALC285,
Kailang Yang7fc7d042013-04-25 11:04:43 +02002701 ALC269_TYPE_ALC286,
Kailang Yang1d04c9d2013-10-24 11:35:18 +02002702 ALC269_TYPE_ALC255,
Takashi Iwai1d045db2011-07-07 18:23:21 +02002703};
2704
2705/*
2706 * BIOS auto configuration
2707 */
2708static int alc269_parse_auto_config(struct hda_codec *codec)
2709{
Takashi Iwai1d045db2011-07-07 18:23:21 +02002710 static const hda_nid_t alc269_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02002711 static const hda_nid_t alc269_ssids[] = { 0, 0x1b, 0x14, 0x21 };
2712 static const hda_nid_t alc269va_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2713 struct alc_spec *spec = codec->spec;
Kailang Yangadcc70b2012-05-25 08:08:38 +02002714 const hda_nid_t *ssids;
2715
2716 switch (spec->codec_variant) {
2717 case ALC269_TYPE_ALC269VA:
2718 case ALC269_TYPE_ALC269VC:
Kailang Yang065380f2013-01-10 10:25:48 +01002719 case ALC269_TYPE_ALC280:
2720 case ALC269_TYPE_ALC284:
Kailang Yang161ebf22013-10-24 11:36:33 +02002721 case ALC269_TYPE_ALC285:
Kailang Yangadcc70b2012-05-25 08:08:38 +02002722 ssids = alc269va_ssids;
2723 break;
2724 case ALC269_TYPE_ALC269VB:
2725 case ALC269_TYPE_ALC269VD:
Kailang Yang065380f2013-01-10 10:25:48 +01002726 case ALC269_TYPE_ALC282:
Kailang Yang2af02be2013-08-22 10:03:50 +02002727 case ALC269_TYPE_ALC283:
Kailang Yang7fc7d042013-04-25 11:04:43 +02002728 case ALC269_TYPE_ALC286:
Kailang Yang1d04c9d2013-10-24 11:35:18 +02002729 case ALC269_TYPE_ALC255:
Kailang Yangadcc70b2012-05-25 08:08:38 +02002730 ssids = alc269_ssids;
2731 break;
2732 default:
2733 ssids = alc269_ssids;
2734 break;
2735 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02002736
Takashi Iwai3e6179b2011-07-08 16:55:13 +02002737 return alc_parse_auto_config(codec, alc269_ignore, ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02002738}
2739
Kailang Yang1387e2d2012-11-08 10:23:18 +01002740static void alc269vb_toggle_power_output(struct hda_codec *codec, int power_up)
Takashi Iwai1d045db2011-07-07 18:23:21 +02002741{
2742 int val = alc_read_coef_idx(codec, 0x04);
2743 if (power_up)
2744 val |= 1 << 11;
2745 else
2746 val &= ~(1 << 11);
2747 alc_write_coef_idx(codec, 0x04, val);
2748}
2749
2750static void alc269_shutup(struct hda_codec *codec)
2751{
Kailang Yangadcc70b2012-05-25 08:08:38 +02002752 struct alc_spec *spec = codec->spec;
2753
Kailang Yang1387e2d2012-11-08 10:23:18 +01002754 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
2755 alc269vb_toggle_power_output(codec, 0);
2756 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
2757 (alc_get_coef0(codec) & 0x00ff) == 0x018) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02002758 msleep(150);
2759 }
Takashi Iwai9bfb2842013-07-24 14:31:50 +02002760 snd_hda_shutup_pins(codec);
Takashi Iwai1d045db2011-07-07 18:23:21 +02002761}
2762
Kailang Yang2af02be2013-08-22 10:03:50 +02002763static void alc283_init(struct hda_codec *codec)
2764{
2765 struct alc_spec *spec = codec->spec;
2766 hda_nid_t hp_pin = spec->gen.autocfg.hp_pins[0];
2767 bool hp_pin_sense;
2768 int val;
2769
2770 if (!hp_pin)
2771 return;
2772 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
2773
2774 /* Index 0x43 Direct Drive HP AMP LPM Control 1 */
2775 /* Headphone capless set to high power mode */
2776 alc_write_coef_idx(codec, 0x43, 0x9004);
2777
2778 snd_hda_codec_write(codec, hp_pin, 0,
2779 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
2780
2781 if (hp_pin_sense)
2782 msleep(85);
2783
2784 snd_hda_codec_write(codec, hp_pin, 0,
2785 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
2786
2787 if (hp_pin_sense)
2788 msleep(85);
2789 /* Index 0x46 Combo jack auto switch control 2 */
2790 /* 3k pull low control for Headset jack. */
2791 val = alc_read_coef_idx(codec, 0x46);
2792 alc_write_coef_idx(codec, 0x46, val & ~(3 << 12));
2793 /* Headphone capless set to normal mode */
2794 alc_write_coef_idx(codec, 0x43, 0x9614);
2795}
2796
2797static void alc283_shutup(struct hda_codec *codec)
2798{
2799 struct alc_spec *spec = codec->spec;
2800 hda_nid_t hp_pin = spec->gen.autocfg.hp_pins[0];
2801 bool hp_pin_sense;
2802 int val;
2803
2804 if (!hp_pin) {
2805 alc269_shutup(codec);
2806 return;
2807 }
2808
2809 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
2810
2811 alc_write_coef_idx(codec, 0x43, 0x9004);
2812
2813 snd_hda_codec_write(codec, hp_pin, 0,
2814 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
2815
2816 if (hp_pin_sense)
Kailang Yang88011c092013-10-24 15:45:24 +02002817 msleep(100);
Kailang Yang2af02be2013-08-22 10:03:50 +02002818
2819 snd_hda_codec_write(codec, hp_pin, 0,
2820 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
2821
2822 val = alc_read_coef_idx(codec, 0x46);
2823 alc_write_coef_idx(codec, 0x46, val | (3 << 12));
2824
2825 if (hp_pin_sense)
Kailang Yang88011c092013-10-24 15:45:24 +02002826 msleep(100);
Kailang Yang2af02be2013-08-22 10:03:50 +02002827 snd_hda_shutup_pins(codec);
2828 alc_write_coef_idx(codec, 0x43, 0x9614);
2829}
2830
Kailang Yangad60d502013-06-28 12:03:01 +02002831static void alc5505_coef_set(struct hda_codec *codec, unsigned int index_reg,
2832 unsigned int val)
2833{
2834 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1);
2835 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val & 0xffff); /* LSB */
2836 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val >> 16); /* MSB */
2837}
2838
2839static int alc5505_coef_get(struct hda_codec *codec, unsigned int index_reg)
2840{
2841 unsigned int val;
2842
2843 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1);
2844 val = snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0)
2845 & 0xffff;
2846 val |= snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0)
2847 << 16;
2848 return val;
2849}
2850
2851static void alc5505_dsp_halt(struct hda_codec *codec)
2852{
2853 unsigned int val;
2854
2855 alc5505_coef_set(codec, 0x3000, 0x000c); /* DSP CPU stop */
2856 alc5505_coef_set(codec, 0x880c, 0x0008); /* DDR enter self refresh */
2857 alc5505_coef_set(codec, 0x61c0, 0x11110080); /* Clock control for PLL and CPU */
2858 alc5505_coef_set(codec, 0x6230, 0xfc0d4011); /* Disable Input OP */
2859 alc5505_coef_set(codec, 0x61b4, 0x040a2b03); /* Stop PLL2 */
2860 alc5505_coef_set(codec, 0x61b0, 0x00005b17); /* Stop PLL1 */
2861 alc5505_coef_set(codec, 0x61b8, 0x04133303); /* Stop PLL3 */
2862 val = alc5505_coef_get(codec, 0x6220);
2863 alc5505_coef_set(codec, 0x6220, (val | 0x3000)); /* switch Ringbuffer clock to DBUS clock */
2864}
2865
2866static void alc5505_dsp_back_from_halt(struct hda_codec *codec)
2867{
2868 alc5505_coef_set(codec, 0x61b8, 0x04133302);
2869 alc5505_coef_set(codec, 0x61b0, 0x00005b16);
2870 alc5505_coef_set(codec, 0x61b4, 0x040a2b02);
2871 alc5505_coef_set(codec, 0x6230, 0xf80d4011);
2872 alc5505_coef_set(codec, 0x6220, 0x2002010f);
2873 alc5505_coef_set(codec, 0x880c, 0x00000004);
2874}
2875
2876static void alc5505_dsp_init(struct hda_codec *codec)
2877{
2878 unsigned int val;
2879
2880 alc5505_dsp_halt(codec);
2881 alc5505_dsp_back_from_halt(codec);
2882 alc5505_coef_set(codec, 0x61b0, 0x5b14); /* PLL1 control */
2883 alc5505_coef_set(codec, 0x61b0, 0x5b16);
2884 alc5505_coef_set(codec, 0x61b4, 0x04132b00); /* PLL2 control */
2885 alc5505_coef_set(codec, 0x61b4, 0x04132b02);
2886 alc5505_coef_set(codec, 0x61b8, 0x041f3300); /* PLL3 control*/
2887 alc5505_coef_set(codec, 0x61b8, 0x041f3302);
2888 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_CODEC_RESET, 0); /* Function reset */
2889 alc5505_coef_set(codec, 0x61b8, 0x041b3302);
2890 alc5505_coef_set(codec, 0x61b8, 0x04173302);
2891 alc5505_coef_set(codec, 0x61b8, 0x04163302);
2892 alc5505_coef_set(codec, 0x8800, 0x348b328b); /* DRAM control */
2893 alc5505_coef_set(codec, 0x8808, 0x00020022); /* DRAM control */
2894 alc5505_coef_set(codec, 0x8818, 0x00000400); /* DRAM control */
2895
2896 val = alc5505_coef_get(codec, 0x6200) >> 16; /* Read revision ID */
2897 if (val <= 3)
2898 alc5505_coef_set(codec, 0x6220, 0x2002010f); /* I/O PAD Configuration */
2899 else
2900 alc5505_coef_set(codec, 0x6220, 0x6002018f);
2901
2902 alc5505_coef_set(codec, 0x61ac, 0x055525f0); /**/
2903 alc5505_coef_set(codec, 0x61c0, 0x12230080); /* Clock control */
2904 alc5505_coef_set(codec, 0x61b4, 0x040e2b02); /* PLL2 control */
2905 alc5505_coef_set(codec, 0x61bc, 0x010234f8); /* OSC Control */
2906 alc5505_coef_set(codec, 0x880c, 0x00000004); /* DRAM Function control */
2907 alc5505_coef_set(codec, 0x880c, 0x00000003);
2908 alc5505_coef_set(codec, 0x880c, 0x00000010);
Takashi Iwaicd63a5f2013-07-05 12:13:59 +02002909
2910#ifdef HALT_REALTEK_ALC5505
2911 alc5505_dsp_halt(codec);
2912#endif
Kailang Yangad60d502013-06-28 12:03:01 +02002913}
2914
Takashi Iwaicd63a5f2013-07-05 12:13:59 +02002915#ifdef HALT_REALTEK_ALC5505
2916#define alc5505_dsp_suspend(codec) /* NOP */
2917#define alc5505_dsp_resume(codec) /* NOP */
2918#else
2919#define alc5505_dsp_suspend(codec) alc5505_dsp_halt(codec)
2920#define alc5505_dsp_resume(codec) alc5505_dsp_back_from_halt(codec)
2921#endif
2922
Takashi Iwai2a439522011-07-26 09:52:50 +02002923#ifdef CONFIG_PM
Kailang Yangad60d502013-06-28 12:03:01 +02002924static int alc269_suspend(struct hda_codec *codec)
2925{
2926 struct alc_spec *spec = codec->spec;
2927
2928 if (spec->has_alc5505_dsp)
Takashi Iwaicd63a5f2013-07-05 12:13:59 +02002929 alc5505_dsp_suspend(codec);
Kailang Yangad60d502013-06-28 12:03:01 +02002930 return alc_suspend(codec);
2931}
2932
Takashi Iwai1d045db2011-07-07 18:23:21 +02002933static int alc269_resume(struct hda_codec *codec)
2934{
Kailang Yangadcc70b2012-05-25 08:08:38 +02002935 struct alc_spec *spec = codec->spec;
2936
Kailang Yang1387e2d2012-11-08 10:23:18 +01002937 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
2938 alc269vb_toggle_power_output(codec, 0);
2939 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
Kailang Yangadcc70b2012-05-25 08:08:38 +02002940 (alc_get_coef0(codec) & 0x00ff) == 0x018) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02002941 msleep(150);
2942 }
2943
2944 codec->patch_ops.init(codec);
2945
Kailang Yang1387e2d2012-11-08 10:23:18 +01002946 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
2947 alc269vb_toggle_power_output(codec, 1);
2948 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
Kailang Yangadcc70b2012-05-25 08:08:38 +02002949 (alc_get_coef0(codec) & 0x00ff) == 0x017) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02002950 msleep(200);
2951 }
2952
Takashi Iwai1d045db2011-07-07 18:23:21 +02002953 snd_hda_codec_resume_amp(codec);
2954 snd_hda_codec_resume_cache(codec);
Takashi Iwai0623a882013-06-25 09:28:40 +02002955 alc_inv_dmic_sync(codec, true);
Takashi Iwai1d045db2011-07-07 18:23:21 +02002956 hda_call_check_power_status(codec, 0x01);
Kailang Yangad60d502013-06-28 12:03:01 +02002957 if (spec->has_alc5505_dsp)
Takashi Iwaicd63a5f2013-07-05 12:13:59 +02002958 alc5505_dsp_resume(codec);
Kailang Yangc5177c82013-07-24 14:39:49 +02002959
Takashi Iwai1d045db2011-07-07 18:23:21 +02002960 return 0;
2961}
Takashi Iwai2a439522011-07-26 09:52:50 +02002962#endif /* CONFIG_PM */
Takashi Iwai1d045db2011-07-07 18:23:21 +02002963
David Henningsson108cc102012-07-20 10:37:25 +02002964static void alc269_fixup_pincfg_no_hp_to_lineout(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +01002965 const struct hda_fixup *fix, int action)
David Henningsson108cc102012-07-20 10:37:25 +02002966{
2967 struct alc_spec *spec = codec->spec;
2968
Takashi Iwai1727a772013-01-10 09:52:52 +01002969 if (action == HDA_FIXUP_ACT_PRE_PROBE)
David Henningsson108cc102012-07-20 10:37:25 +02002970 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
2971}
2972
Takashi Iwai1d045db2011-07-07 18:23:21 +02002973static void alc269_fixup_hweq(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +01002974 const struct hda_fixup *fix, int action)
Takashi Iwai1d045db2011-07-07 18:23:21 +02002975{
2976 int coef;
2977
Takashi Iwai1727a772013-01-10 09:52:52 +01002978 if (action != HDA_FIXUP_ACT_INIT)
Takashi Iwai1d045db2011-07-07 18:23:21 +02002979 return;
2980 coef = alc_read_coef_idx(codec, 0x1e);
2981 alc_write_coef_idx(codec, 0x1e, coef | 0x80);
2982}
2983
David Henningsson7c478f02013-10-11 10:18:46 +02002984static void alc269_fixup_headset_mic(struct hda_codec *codec,
2985 const struct hda_fixup *fix, int action)
2986{
2987 struct alc_spec *spec = codec->spec;
2988
2989 if (action == HDA_FIXUP_ACT_PRE_PROBE)
2990 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
2991}
2992
Takashi Iwai1d045db2011-07-07 18:23:21 +02002993static void alc271_fixup_dmic(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +01002994 const struct hda_fixup *fix, int action)
Takashi Iwai1d045db2011-07-07 18:23:21 +02002995{
2996 static const struct hda_verb verbs[] = {
2997 {0x20, AC_VERB_SET_COEF_INDEX, 0x0d},
2998 {0x20, AC_VERB_SET_PROC_COEF, 0x4000},
2999 {}
3000 };
3001 unsigned int cfg;
3002
Dylan Reid42397002013-04-05 14:58:22 -07003003 if (strcmp(codec->chip_name, "ALC271X") &&
3004 strcmp(codec->chip_name, "ALC269VB"))
Takashi Iwai1d045db2011-07-07 18:23:21 +02003005 return;
3006 cfg = snd_hda_codec_get_pincfg(codec, 0x12);
3007 if (get_defcfg_connect(cfg) == AC_JACK_PORT_FIXED)
3008 snd_hda_sequence_write(codec, verbs);
3009}
3010
Takashi Iwai017f2a12011-07-09 14:42:25 +02003011static void alc269_fixup_pcm_44k(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +01003012 const struct hda_fixup *fix, int action)
Takashi Iwai017f2a12011-07-09 14:42:25 +02003013{
3014 struct alc_spec *spec = codec->spec;
3015
Takashi Iwai1727a772013-01-10 09:52:52 +01003016 if (action != HDA_FIXUP_ACT_PROBE)
Takashi Iwai017f2a12011-07-09 14:42:25 +02003017 return;
3018
3019 /* Due to a hardware problem on Lenovo Ideadpad, we need to
3020 * fix the sample rate of analog I/O to 44.1kHz
3021 */
Takashi Iwai08c189f2012-12-19 15:22:24 +01003022 spec->gen.stream_analog_playback = &alc269_44k_pcm_analog_playback;
3023 spec->gen.stream_analog_capture = &alc269_44k_pcm_analog_capture;
Takashi Iwai017f2a12011-07-09 14:42:25 +02003024}
3025
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02003026static void alc269_fixup_stereo_dmic(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +01003027 const struct hda_fixup *fix, int action)
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02003028{
3029 int coef;
3030
Takashi Iwai1727a772013-01-10 09:52:52 +01003031 if (action != HDA_FIXUP_ACT_INIT)
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02003032 return;
3033 /* The digital-mic unit sends PDM (differential signal) instead of
3034 * the standard PCM, thus you can't record a valid mono stream as is.
3035 * Below is a workaround specific to ALC269 to control the dmic
3036 * signal source as mono.
3037 */
3038 coef = alc_read_coef_idx(codec, 0x07);
3039 alc_write_coef_idx(codec, 0x07, coef | 0x80);
3040}
3041
Takashi Iwai24519912011-08-16 15:08:49 +02003042static void alc269_quanta_automute(struct hda_codec *codec)
3043{
Takashi Iwai08c189f2012-12-19 15:22:24 +01003044 snd_hda_gen_update_outputs(codec);
Takashi Iwai24519912011-08-16 15:08:49 +02003045
3046 snd_hda_codec_write(codec, 0x20, 0,
3047 AC_VERB_SET_COEF_INDEX, 0x0c);
3048 snd_hda_codec_write(codec, 0x20, 0,
3049 AC_VERB_SET_PROC_COEF, 0x680);
3050
3051 snd_hda_codec_write(codec, 0x20, 0,
3052 AC_VERB_SET_COEF_INDEX, 0x0c);
3053 snd_hda_codec_write(codec, 0x20, 0,
3054 AC_VERB_SET_PROC_COEF, 0x480);
3055}
3056
3057static void alc269_fixup_quanta_mute(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +01003058 const struct hda_fixup *fix, int action)
Takashi Iwai24519912011-08-16 15:08:49 +02003059{
3060 struct alc_spec *spec = codec->spec;
Takashi Iwai1727a772013-01-10 09:52:52 +01003061 if (action != HDA_FIXUP_ACT_PROBE)
Takashi Iwai24519912011-08-16 15:08:49 +02003062 return;
Takashi Iwai08c189f2012-12-19 15:22:24 +01003063 spec->gen.automute_hook = alc269_quanta_automute;
Takashi Iwai24519912011-08-16 15:08:49 +02003064}
3065
David Henningssond240d1d2013-04-15 12:50:02 +02003066static void alc269_x101_hp_automute_hook(struct hda_codec *codec,
3067 struct hda_jack_tbl *jack)
3068{
3069 struct alc_spec *spec = codec->spec;
3070 int vref;
3071 msleep(200);
3072 snd_hda_gen_hp_automute(codec, jack);
3073
3074 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
3075 msleep(100);
3076 snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
3077 vref);
3078 msleep(500);
3079 snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
3080 vref);
3081}
3082
3083static void alc269_fixup_x101_headset_mic(struct hda_codec *codec,
3084 const struct hda_fixup *fix, int action)
3085{
3086 struct alc_spec *spec = codec->spec;
3087 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3088 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
3089 spec->gen.hp_automute_hook = alc269_x101_hp_automute_hook;
3090 }
3091}
3092
3093
Takashi Iwai08fb0d02013-01-10 17:33:58 +01003094/* update mute-LED according to the speaker mute state via mic VREF pin */
3095static void alc269_fixup_mic_mute_hook(void *private_data, int enabled)
David Henningsson6d3cd5d2013-01-07 12:03:47 +01003096{
3097 struct hda_codec *codec = private_data;
Takashi Iwai08fb0d02013-01-10 17:33:58 +01003098 struct alc_spec *spec = codec->spec;
3099 unsigned int pinval;
3100
3101 if (spec->mute_led_polarity)
3102 enabled = !enabled;
3103 pinval = AC_PINCTL_IN_EN |
3104 (enabled ? AC_PINCTL_VREF_HIZ : AC_PINCTL_VREF_80);
3105 if (spec->mute_led_nid)
3106 snd_hda_set_pin_ctl_cache(codec, spec->mute_led_nid, pinval);
David Henningsson6d3cd5d2013-01-07 12:03:47 +01003107}
3108
David Henningssond5b6b652013-11-06 10:50:44 +01003109/* Make sure the led works even in runtime suspend */
3110static unsigned int led_power_filter(struct hda_codec *codec,
3111 hda_nid_t nid,
3112 unsigned int power_state)
3113{
3114 struct alc_spec *spec = codec->spec;
3115
3116 if (power_state != AC_PWRST_D3 || nid != spec->mute_led_nid)
3117 return power_state;
3118
3119 /* Set pin ctl again, it might have just been set to 0 */
3120 snd_hda_set_pin_ctl(codec, nid,
3121 snd_hda_codec_get_pin_target(codec, nid));
3122
3123 return AC_PWRST_D0;
3124}
3125
Takashi Iwai08fb0d02013-01-10 17:33:58 +01003126static void alc269_fixup_hp_mute_led(struct hda_codec *codec,
3127 const struct hda_fixup *fix, int action)
David Henningsson6d3cd5d2013-01-07 12:03:47 +01003128{
3129 struct alc_spec *spec = codec->spec;
Takashi Iwai08fb0d02013-01-10 17:33:58 +01003130 const struct dmi_device *dev = NULL;
3131
3132 if (action != HDA_FIXUP_ACT_PRE_PROBE)
3133 return;
3134
3135 while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
3136 int pol, pin;
3137 if (sscanf(dev->name, "HP_Mute_LED_%d_%x", &pol, &pin) != 2)
3138 continue;
3139 if (pin < 0x0a || pin >= 0x10)
3140 break;
3141 spec->mute_led_polarity = pol;
3142 spec->mute_led_nid = pin - 0x0a + 0x18;
3143 spec->gen.vmaster_mute.hook = alc269_fixup_mic_mute_hook;
Takashi Iwaifd25a972012-12-20 14:57:18 +01003144 spec->gen.vmaster_mute_enum = 1;
David Henningssond5b6b652013-11-06 10:50:44 +01003145 codec->power_filter = led_power_filter;
Takashi Iwai08fb0d02013-01-10 17:33:58 +01003146 snd_printd("Detected mute LED for %x:%d\n", spec->mute_led_nid,
3147 spec->mute_led_polarity);
David Henningsson6d3cd5d2013-01-07 12:03:47 +01003148 break;
3149 }
3150}
3151
David Henningssond06ac142013-02-18 11:41:55 +01003152static void alc269_fixup_hp_mute_led_mic1(struct hda_codec *codec,
3153 const struct hda_fixup *fix, int action)
3154{
3155 struct alc_spec *spec = codec->spec;
3156 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3157 spec->mute_led_polarity = 0;
3158 spec->mute_led_nid = 0x18;
3159 spec->gen.vmaster_mute.hook = alc269_fixup_mic_mute_hook;
3160 spec->gen.vmaster_mute_enum = 1;
David Henningssond5b6b652013-11-06 10:50:44 +01003161 codec->power_filter = led_power_filter;
David Henningssond06ac142013-02-18 11:41:55 +01003162 }
3163}
3164
Takashi Iwai08fb0d02013-01-10 17:33:58 +01003165static void alc269_fixup_hp_mute_led_mic2(struct hda_codec *codec,
3166 const struct hda_fixup *fix, int action)
Takashi Iwai420b0fe2012-03-12 12:35:27 +01003167{
3168 struct alc_spec *spec = codec->spec;
Takashi Iwai9bb1f062013-01-10 17:14:29 +01003169 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
Takashi Iwai08fb0d02013-01-10 17:33:58 +01003170 spec->mute_led_polarity = 0;
3171 spec->mute_led_nid = 0x19;
3172 spec->gen.vmaster_mute.hook = alc269_fixup_mic_mute_hook;
Takashi Iwaifd25a972012-12-20 14:57:18 +01003173 spec->gen.vmaster_mute_enum = 1;
David Henningssond5b6b652013-11-06 10:50:44 +01003174 codec->power_filter = led_power_filter;
Takashi Iwai420b0fe2012-03-12 12:35:27 +01003175 }
3176}
3177
Takashi Iwai9f5c6fa2013-03-18 14:15:58 +01003178/* turn on/off mute LED per vmaster hook */
3179static void alc269_fixup_hp_gpio_mute_hook(void *private_data, int enabled)
3180{
3181 struct hda_codec *codec = private_data;
3182 struct alc_spec *spec = codec->spec;
3183 unsigned int oldval = spec->gpio_led;
3184
3185 if (enabled)
3186 spec->gpio_led &= ~0x08;
3187 else
3188 spec->gpio_led |= 0x08;
3189 if (spec->gpio_led != oldval)
3190 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
3191 spec->gpio_led);
3192}
3193
3194/* turn on/off mic-mute LED per capture hook */
3195static void alc269_fixup_hp_gpio_mic_mute_hook(struct hda_codec *codec,
3196 struct snd_ctl_elem_value *ucontrol)
3197{
3198 struct alc_spec *spec = codec->spec;
3199 unsigned int oldval = spec->gpio_led;
3200
3201 if (!ucontrol)
3202 return;
3203
3204 if (ucontrol->value.integer.value[0] ||
3205 ucontrol->value.integer.value[1])
3206 spec->gpio_led &= ~0x10;
3207 else
3208 spec->gpio_led |= 0x10;
3209 if (spec->gpio_led != oldval)
3210 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
3211 spec->gpio_led);
3212}
3213
3214static void alc269_fixup_hp_gpio_led(struct hda_codec *codec,
3215 const struct hda_fixup *fix, int action)
3216{
3217 struct alc_spec *spec = codec->spec;
3218 static const struct hda_verb gpio_init[] = {
3219 { 0x01, AC_VERB_SET_GPIO_MASK, 0x18 },
3220 { 0x01, AC_VERB_SET_GPIO_DIRECTION, 0x18 },
3221 {}
3222 };
3223
3224 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3225 spec->gen.vmaster_mute.hook = alc269_fixup_hp_gpio_mute_hook;
3226 spec->gen.cap_sync_hook = alc269_fixup_hp_gpio_mic_mute_hook;
3227 spec->gpio_led = 0;
3228 snd_hda_add_verbs(codec, gpio_init);
3229 }
3230}
3231
David Henningsson73bdd592013-04-15 15:44:14 +02003232static void alc_headset_mode_unplugged(struct hda_codec *codec)
3233{
3234 int val;
3235
3236 switch (codec->vendor_id) {
Kailang Yang9a22a8f2013-11-08 15:54:49 +08003237 case 0x10ec0255:
3238 /* LDO and MISC control */
3239 alc_write_coef_idx(codec, 0x1b, 0x0c0b);
3240 /* UAJ function set to menual mode */
3241 alc_write_coef_idx(codec, 0x45, 0xd089);
3242 /* Direct Drive HP Amp control(Set to verb control)*/
3243 val = alc_read_coefex_idx(codec, 0x57, 0x05);
3244 alc_write_coefex_idx(codec, 0x57, 0x05, val & ~(1<<14));
3245 /* Set MIC2 Vref gate with HP */
3246 alc_write_coef_idx(codec, 0x06, 0x6104);
3247 /* Direct Drive HP Amp control */
3248 alc_write_coefex_idx(codec, 0x57, 0x03, 0x8aa6);
3249 break;
David Henningsson73bdd592013-04-15 15:44:14 +02003250 case 0x10ec0283:
3251 alc_write_coef_idx(codec, 0x1b, 0x0c0b);
3252 alc_write_coef_idx(codec, 0x45, 0xc429);
3253 val = alc_read_coef_idx(codec, 0x35);
3254 alc_write_coef_idx(codec, 0x35, val & 0xbfff);
3255 alc_write_coef_idx(codec, 0x06, 0x2104);
3256 alc_write_coef_idx(codec, 0x1a, 0x0001);
3257 alc_write_coef_idx(codec, 0x26, 0x0004);
3258 alc_write_coef_idx(codec, 0x32, 0x42a3);
3259 break;
3260 case 0x10ec0292:
3261 alc_write_coef_idx(codec, 0x76, 0x000e);
3262 alc_write_coef_idx(codec, 0x6c, 0x2400);
3263 alc_write_coef_idx(codec, 0x18, 0x7308);
3264 alc_write_coef_idx(codec, 0x6b, 0xc429);
3265 break;
3266 case 0x10ec0668:
3267 alc_write_coef_idx(codec, 0x15, 0x0d40);
3268 alc_write_coef_idx(codec, 0xb7, 0x802b);
3269 break;
3270 }
3271 snd_printdd("Headset jack set to unplugged mode.\n");
3272}
3273
3274
3275static void alc_headset_mode_mic_in(struct hda_codec *codec, hda_nid_t hp_pin,
3276 hda_nid_t mic_pin)
3277{
3278 int val;
3279
3280 switch (codec->vendor_id) {
Kailang Yang9a22a8f2013-11-08 15:54:49 +08003281 case 0x10ec0255:
3282 alc_write_coef_idx(codec, 0x45, 0xc489);
3283 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
3284 alc_write_coefex_idx(codec, 0x57, 0x03, 0x8aa6);
3285 /* Set MIC2 Vref gate to normal */
3286 alc_write_coef_idx(codec, 0x06, 0x6100);
3287 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
3288 break;
David Henningsson73bdd592013-04-15 15:44:14 +02003289 case 0x10ec0283:
3290 alc_write_coef_idx(codec, 0x45, 0xc429);
3291 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
3292 val = alc_read_coef_idx(codec, 0x35);
3293 alc_write_coef_idx(codec, 0x35, val | 1<<14);
3294 alc_write_coef_idx(codec, 0x06, 0x2100);
3295 alc_write_coef_idx(codec, 0x1a, 0x0021);
3296 alc_write_coef_idx(codec, 0x26, 0x008c);
3297 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
3298 break;
3299 case 0x10ec0292:
3300 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
3301 alc_write_coef_idx(codec, 0x19, 0xa208);
3302 alc_write_coef_idx(codec, 0x2e, 0xacf0);
3303 break;
3304 case 0x10ec0668:
3305 alc_write_coef_idx(codec, 0x11, 0x0001);
3306 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
3307 alc_write_coef_idx(codec, 0xb7, 0x802b);
3308 alc_write_coef_idx(codec, 0xb5, 0x1040);
3309 val = alc_read_coef_idx(codec, 0xc3);
3310 alc_write_coef_idx(codec, 0xc3, val | 1<<12);
3311 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
3312 break;
3313 }
3314 snd_printdd("Headset jack set to mic-in mode.\n");
3315}
3316
3317static void alc_headset_mode_default(struct hda_codec *codec)
3318{
3319 switch (codec->vendor_id) {
Kailang Yang9a22a8f2013-11-08 15:54:49 +08003320 case 0x10ec0255:
3321 alc_write_coef_idx(codec, 0x45, 0xc089);
3322 alc_write_coef_idx(codec, 0x45, 0xc489);
3323 alc_write_coefex_idx(codec, 0x57, 0x03, 0x8ea6);
3324 alc_write_coef_idx(codec, 0x49, 0x0049);
3325 break;
David Henningsson73bdd592013-04-15 15:44:14 +02003326 case 0x10ec0283:
3327 alc_write_coef_idx(codec, 0x06, 0x2100);
3328 alc_write_coef_idx(codec, 0x32, 0x4ea3);
3329 break;
3330 case 0x10ec0292:
3331 alc_write_coef_idx(codec, 0x76, 0x000e);
3332 alc_write_coef_idx(codec, 0x6c, 0x2400);
3333 alc_write_coef_idx(codec, 0x6b, 0xc429);
3334 alc_write_coef_idx(codec, 0x18, 0x7308);
3335 break;
3336 case 0x10ec0668:
3337 alc_write_coef_idx(codec, 0x11, 0x0041);
3338 alc_write_coef_idx(codec, 0x15, 0x0d40);
3339 alc_write_coef_idx(codec, 0xb7, 0x802b);
3340 break;
3341 }
3342 snd_printdd("Headset jack set to headphone (default) mode.\n");
3343}
3344
3345/* Iphone type */
3346static void alc_headset_mode_ctia(struct hda_codec *codec)
3347{
3348 switch (codec->vendor_id) {
Kailang Yang9a22a8f2013-11-08 15:54:49 +08003349 case 0x10ec0255:
3350 /* Set to CTIA type */
3351 alc_write_coef_idx(codec, 0x45, 0xd489);
3352 alc_write_coef_idx(codec, 0x1b, 0x0c2b);
3353 alc_write_coefex_idx(codec, 0x57, 0x03, 0x8ea6);
3354 break;
David Henningsson73bdd592013-04-15 15:44:14 +02003355 case 0x10ec0283:
3356 alc_write_coef_idx(codec, 0x45, 0xd429);
3357 alc_write_coef_idx(codec, 0x1b, 0x0c2b);
3358 alc_write_coef_idx(codec, 0x32, 0x4ea3);
3359 break;
3360 case 0x10ec0292:
3361 alc_write_coef_idx(codec, 0x6b, 0xd429);
3362 alc_write_coef_idx(codec, 0x76, 0x0008);
3363 alc_write_coef_idx(codec, 0x18, 0x7388);
3364 break;
3365 case 0x10ec0668:
David Henningssond59915d2013-12-02 18:06:20 +08003366 alc_write_coef_idx(codec, 0x11, 0x0001);
David Henningsson73bdd592013-04-15 15:44:14 +02003367 alc_write_coef_idx(codec, 0x15, 0x0d60);
3368 alc_write_coef_idx(codec, 0xc3, 0x0000);
3369 break;
3370 }
3371 snd_printdd("Headset jack set to iPhone-style headset mode.\n");
3372}
3373
3374/* Nokia type */
3375static void alc_headset_mode_omtp(struct hda_codec *codec)
3376{
3377 switch (codec->vendor_id) {
Kailang Yang9a22a8f2013-11-08 15:54:49 +08003378 case 0x10ec0255:
3379 /* Set to OMTP Type */
3380 alc_write_coef_idx(codec, 0x45, 0xe489);
3381 alc_write_coef_idx(codec, 0x1b, 0x0c2b);
3382 alc_write_coefex_idx(codec, 0x57, 0x03, 0x8ea6);
3383 break;
David Henningsson73bdd592013-04-15 15:44:14 +02003384 case 0x10ec0283:
3385 alc_write_coef_idx(codec, 0x45, 0xe429);
3386 alc_write_coef_idx(codec, 0x1b, 0x0c2b);
3387 alc_write_coef_idx(codec, 0x32, 0x4ea3);
3388 break;
3389 case 0x10ec0292:
3390 alc_write_coef_idx(codec, 0x6b, 0xe429);
3391 alc_write_coef_idx(codec, 0x76, 0x0008);
3392 alc_write_coef_idx(codec, 0x18, 0x7388);
3393 break;
3394 case 0x10ec0668:
David Henningssond59915d2013-12-02 18:06:20 +08003395 alc_write_coef_idx(codec, 0x11, 0x0001);
David Henningsson73bdd592013-04-15 15:44:14 +02003396 alc_write_coef_idx(codec, 0x15, 0x0d50);
3397 alc_write_coef_idx(codec, 0xc3, 0x0000);
3398 break;
3399 }
3400 snd_printdd("Headset jack set to Nokia-style headset mode.\n");
3401}
3402
3403static void alc_determine_headset_type(struct hda_codec *codec)
3404{
3405 int val;
3406 bool is_ctia = false;
3407 struct alc_spec *spec = codec->spec;
3408
3409 switch (codec->vendor_id) {
Kailang Yang9a22a8f2013-11-08 15:54:49 +08003410 case 0x10ec0255:
3411 /* combo jack auto switch control(Check type)*/
3412 alc_write_coef_idx(codec, 0x45, 0xd089);
3413 /* combo jack auto switch control(Vref conteol) */
3414 alc_write_coef_idx(codec, 0x49, 0x0149);
3415 msleep(300);
3416 val = alc_read_coef_idx(codec, 0x46);
3417 is_ctia = (val & 0x0070) == 0x0070;
3418 break;
David Henningsson73bdd592013-04-15 15:44:14 +02003419 case 0x10ec0283:
3420 alc_write_coef_idx(codec, 0x45, 0xd029);
3421 msleep(300);
3422 val = alc_read_coef_idx(codec, 0x46);
3423 is_ctia = (val & 0x0070) == 0x0070;
3424 break;
3425 case 0x10ec0292:
3426 alc_write_coef_idx(codec, 0x6b, 0xd429);
3427 msleep(300);
3428 val = alc_read_coef_idx(codec, 0x6c);
3429 is_ctia = (val & 0x001c) == 0x001c;
3430 break;
3431 case 0x10ec0668:
3432 alc_write_coef_idx(codec, 0x11, 0x0001);
3433 alc_write_coef_idx(codec, 0xb7, 0x802b);
3434 alc_write_coef_idx(codec, 0x15, 0x0d60);
3435 alc_write_coef_idx(codec, 0xc3, 0x0c00);
3436 msleep(300);
3437 val = alc_read_coef_idx(codec, 0xbe);
3438 is_ctia = (val & 0x1c02) == 0x1c02;
3439 break;
3440 }
3441
3442 snd_printdd("Headset jack detected iPhone-style headset: %s\n",
3443 is_ctia ? "yes" : "no");
3444 spec->current_headset_type = is_ctia ? ALC_HEADSET_TYPE_CTIA : ALC_HEADSET_TYPE_OMTP;
3445}
3446
3447static void alc_update_headset_mode(struct hda_codec *codec)
3448{
3449 struct alc_spec *spec = codec->spec;
3450
3451 hda_nid_t mux_pin = spec->gen.imux_pins[spec->gen.cur_mux[0]];
3452 hda_nid_t hp_pin = spec->gen.autocfg.hp_pins[0];
3453
3454 int new_headset_mode;
3455
3456 if (!snd_hda_jack_detect(codec, hp_pin))
3457 new_headset_mode = ALC_HEADSET_MODE_UNPLUGGED;
3458 else if (mux_pin == spec->headset_mic_pin)
3459 new_headset_mode = ALC_HEADSET_MODE_HEADSET;
3460 else if (mux_pin == spec->headphone_mic_pin)
3461 new_headset_mode = ALC_HEADSET_MODE_MIC;
3462 else
3463 new_headset_mode = ALC_HEADSET_MODE_HEADPHONE;
3464
David Henningsson5959a6b2013-11-12 11:10:57 +01003465 if (new_headset_mode == spec->current_headset_mode) {
3466 snd_hda_gen_update_outputs(codec);
David Henningsson73bdd592013-04-15 15:44:14 +02003467 return;
David Henningsson5959a6b2013-11-12 11:10:57 +01003468 }
David Henningsson73bdd592013-04-15 15:44:14 +02003469
3470 switch (new_headset_mode) {
3471 case ALC_HEADSET_MODE_UNPLUGGED:
3472 alc_headset_mode_unplugged(codec);
3473 spec->gen.hp_jack_present = false;
3474 break;
3475 case ALC_HEADSET_MODE_HEADSET:
3476 if (spec->current_headset_type == ALC_HEADSET_TYPE_UNKNOWN)
3477 alc_determine_headset_type(codec);
3478 if (spec->current_headset_type == ALC_HEADSET_TYPE_CTIA)
3479 alc_headset_mode_ctia(codec);
3480 else if (spec->current_headset_type == ALC_HEADSET_TYPE_OMTP)
3481 alc_headset_mode_omtp(codec);
3482 spec->gen.hp_jack_present = true;
3483 break;
3484 case ALC_HEADSET_MODE_MIC:
3485 alc_headset_mode_mic_in(codec, hp_pin, spec->headphone_mic_pin);
3486 spec->gen.hp_jack_present = false;
3487 break;
3488 case ALC_HEADSET_MODE_HEADPHONE:
3489 alc_headset_mode_default(codec);
3490 spec->gen.hp_jack_present = true;
3491 break;
3492 }
3493 if (new_headset_mode != ALC_HEADSET_MODE_MIC) {
3494 snd_hda_set_pin_ctl_cache(codec, hp_pin,
3495 AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN);
3496 if (spec->headphone_mic_pin)
3497 snd_hda_set_pin_ctl_cache(codec, spec->headphone_mic_pin,
3498 PIN_VREFHIZ);
3499 }
3500 spec->current_headset_mode = new_headset_mode;
3501
3502 snd_hda_gen_update_outputs(codec);
3503}
3504
3505static void alc_update_headset_mode_hook(struct hda_codec *codec,
3506 struct snd_ctl_elem_value *ucontrol)
3507{
3508 alc_update_headset_mode(codec);
3509}
3510
3511static void alc_update_headset_jack_cb(struct hda_codec *codec, struct hda_jack_tbl *jack)
3512{
3513 struct alc_spec *spec = codec->spec;
David Henningsson5db4d342013-11-22 12:17:06 +01003514 spec->current_headset_type = ALC_HEADSET_TYPE_UNKNOWN;
David Henningsson73bdd592013-04-15 15:44:14 +02003515 snd_hda_gen_hp_automute(codec, jack);
3516}
3517
3518static void alc_probe_headset_mode(struct hda_codec *codec)
3519{
3520 int i;
3521 struct alc_spec *spec = codec->spec;
3522 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
3523
3524 /* Find mic pins */
3525 for (i = 0; i < cfg->num_inputs; i++) {
3526 if (cfg->inputs[i].is_headset_mic && !spec->headset_mic_pin)
3527 spec->headset_mic_pin = cfg->inputs[i].pin;
3528 if (cfg->inputs[i].is_headphone_mic && !spec->headphone_mic_pin)
3529 spec->headphone_mic_pin = cfg->inputs[i].pin;
3530 }
3531
3532 spec->gen.cap_sync_hook = alc_update_headset_mode_hook;
3533 spec->gen.automute_hook = alc_update_headset_mode;
3534 spec->gen.hp_automute_hook = alc_update_headset_jack_cb;
3535}
3536
3537static void alc_fixup_headset_mode(struct hda_codec *codec,
3538 const struct hda_fixup *fix, int action)
3539{
3540 struct alc_spec *spec = codec->spec;
3541
3542 switch (action) {
3543 case HDA_FIXUP_ACT_PRE_PROBE:
3544 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC | HDA_PINCFG_HEADPHONE_MIC;
3545 break;
3546 case HDA_FIXUP_ACT_PROBE:
3547 alc_probe_headset_mode(codec);
3548 break;
3549 case HDA_FIXUP_ACT_INIT:
3550 spec->current_headset_mode = 0;
3551 alc_update_headset_mode(codec);
3552 break;
3553 }
3554}
3555
3556static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec *codec,
3557 const struct hda_fixup *fix, int action)
3558{
3559 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3560 struct alc_spec *spec = codec->spec;
3561 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
3562 }
3563 else
3564 alc_fixup_headset_mode(codec, fix, action);
3565}
3566
Kailang Yang9a22a8f2013-11-08 15:54:49 +08003567static void alc_fixup_headset_mode_alc255(struct hda_codec *codec,
3568 const struct hda_fixup *fix, int action)
3569{
3570 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3571 /* Set to iphone type */
3572 alc_write_coef_idx(codec, 0x1b, 0x880b);
3573 alc_write_coef_idx(codec, 0x45, 0xd089);
3574 alc_write_coef_idx(codec, 0x1b, 0x080b);
3575 alc_write_coef_idx(codec, 0x46, 0x0004);
3576 alc_write_coef_idx(codec, 0x1b, 0x0c0b);
3577 msleep(30);
3578 }
3579 alc_fixup_headset_mode(codec, fix, action);
3580}
3581
David Henningsson73bdd592013-04-15 15:44:14 +02003582static void alc_fixup_headset_mode_alc668(struct hda_codec *codec,
3583 const struct hda_fixup *fix, int action)
3584{
3585 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3586 int val;
3587 alc_write_coef_idx(codec, 0xc4, 0x8000);
3588 val = alc_read_coef_idx(codec, 0xc2);
3589 alc_write_coef_idx(codec, 0xc2, val & 0xfe);
3590 snd_hda_set_pin_ctl_cache(codec, 0x18, 0);
3591 }
3592 alc_fixup_headset_mode(codec, fix, action);
3593}
3594
Chih-Chung Changbde7bc62013-08-05 16:38:42 +08003595/* Returns the nid of the external mic input pin, or 0 if it cannot be found. */
3596static int find_ext_mic_pin(struct hda_codec *codec)
3597{
3598 struct alc_spec *spec = codec->spec;
3599 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
3600 hda_nid_t nid;
3601 unsigned int defcfg;
3602 int i;
3603
3604 for (i = 0; i < cfg->num_inputs; i++) {
3605 if (cfg->inputs[i].type != AUTO_PIN_MIC)
3606 continue;
3607 nid = cfg->inputs[i].pin;
3608 defcfg = snd_hda_codec_get_pincfg(codec, nid);
3609 if (snd_hda_get_input_pin_attr(defcfg) == INPUT_PIN_ATTR_INT)
3610 continue;
3611 return nid;
3612 }
3613
3614 return 0;
3615}
3616
Dylan Reid08a978d2012-11-18 22:56:40 -08003617static void alc271_hp_gate_mic_jack(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +01003618 const struct hda_fixup *fix,
Dylan Reid08a978d2012-11-18 22:56:40 -08003619 int action)
3620{
3621 struct alc_spec *spec = codec->spec;
3622
Takashi Iwai0db75792013-01-23 13:57:20 +01003623 if (action == HDA_FIXUP_ACT_PROBE) {
Chih-Chung Changbde7bc62013-08-05 16:38:42 +08003624 int mic_pin = find_ext_mic_pin(codec);
3625 int hp_pin = spec->gen.autocfg.hp_pins[0];
3626
3627 if (snd_BUG_ON(!mic_pin || !hp_pin))
Takashi Iwai0db75792013-01-23 13:57:20 +01003628 return;
Chih-Chung Changbde7bc62013-08-05 16:38:42 +08003629 snd_hda_jack_set_gating_jack(codec, mic_pin, hp_pin);
Takashi Iwai0db75792013-01-23 13:57:20 +01003630 }
Dylan Reid08a978d2012-11-18 22:56:40 -08003631}
David Henningsson693b6132012-06-22 19:12:10 +02003632
David Henningsson3e0d6112013-04-22 14:30:14 +02003633static void alc269_fixup_limit_int_mic_boost(struct hda_codec *codec,
3634 const struct hda_fixup *fix,
3635 int action)
3636{
3637 struct alc_spec *spec = codec->spec;
3638 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
3639 int i;
3640
3641 /* The mic boosts on level 2 and 3 are too noisy
3642 on the internal mic input.
3643 Therefore limit the boost to 0 or 1. */
3644
3645 if (action != HDA_FIXUP_ACT_PROBE)
3646 return;
3647
3648 for (i = 0; i < cfg->num_inputs; i++) {
3649 hda_nid_t nid = cfg->inputs[i].pin;
3650 unsigned int defcfg;
3651 if (cfg->inputs[i].type != AUTO_PIN_MIC)
3652 continue;
3653 defcfg = snd_hda_codec_get_pincfg(codec, nid);
3654 if (snd_hda_get_input_pin_attr(defcfg) != INPUT_PIN_ATTR_INT)
3655 continue;
3656
3657 snd_hda_override_amp_caps(codec, nid, HDA_INPUT,
3658 (0x00 << AC_AMPCAP_OFFSET_SHIFT) |
3659 (0x01 << AC_AMPCAP_NUM_STEPS_SHIFT) |
3660 (0x2f << AC_AMPCAP_STEP_SIZE_SHIFT) |
3661 (0 << AC_AMPCAP_MUTE_SHIFT));
3662 }
3663}
3664
Kailang Yangcd217a62013-08-22 10:15:24 +02003665static void alc283_hp_automute_hook(struct hda_codec *codec,
3666 struct hda_jack_tbl *jack)
3667{
3668 struct alc_spec *spec = codec->spec;
3669 int vref;
3670
3671 msleep(200);
3672 snd_hda_gen_hp_automute(codec, jack);
3673
3674 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
3675
3676 msleep(600);
3677 snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
3678 vref);
3679}
3680
Kailang Yangcd217a62013-08-22 10:15:24 +02003681static void alc283_fixup_chromebook(struct hda_codec *codec,
3682 const struct hda_fixup *fix, int action)
3683{
3684 struct alc_spec *spec = codec->spec;
3685 int val;
3686
3687 switch (action) {
3688 case HDA_FIXUP_ACT_PRE_PROBE:
Kailang Yang0202e992013-12-02 15:20:15 +08003689 snd_hda_override_wcaps(codec, 0x03, 0);
Takashi Iwaid2e92702013-10-30 07:50:53 +01003690 /* Disable AA-loopback as it causes white noise */
3691 spec->gen.mixer_nid = 0;
Kailang Yang38070212013-11-01 15:57:35 +08003692 break;
3693 case HDA_FIXUP_ACT_INIT:
Kailang Yang0202e992013-12-02 15:20:15 +08003694 /* Enable Line1 input control by verb */
3695 val = alc_read_coef_idx(codec, 0x1a);
3696 alc_write_coef_idx(codec, 0x1a, val | (1 << 4));
3697 break;
3698 }
3699}
3700
3701static void alc283_fixup_sense_combo_jack(struct hda_codec *codec,
3702 const struct hda_fixup *fix, int action)
3703{
3704 struct alc_spec *spec = codec->spec;
3705 int val;
3706
3707 switch (action) {
3708 case HDA_FIXUP_ACT_PRE_PROBE:
Kailang Yangcd217a62013-08-22 10:15:24 +02003709 spec->gen.hp_automute_hook = alc283_hp_automute_hook;
3710 break;
3711 case HDA_FIXUP_ACT_INIT:
3712 /* MIC2-VREF control */
3713 /* Set to manual mode */
Kailang Yang068fd3a2013-09-27 14:02:28 +02003714 val = alc_read_coef_idx(codec, 0x06);
3715 alc_write_coef_idx(codec, 0x06, val & ~0x000c);
Kailang Yangcd217a62013-08-22 10:15:24 +02003716 break;
3717 }
3718}
3719
Takashi Iwai7bba2152013-09-06 15:45:38 +02003720/* mute tablet speaker pin (0x14) via dock plugging in addition */
3721static void asus_tx300_automute(struct hda_codec *codec)
3722{
3723 struct alc_spec *spec = codec->spec;
3724 snd_hda_gen_update_outputs(codec);
3725 if (snd_hda_jack_detect(codec, 0x1b))
3726 spec->gen.mute_bits |= (1ULL << 0x14);
3727}
3728
3729static void alc282_fixup_asus_tx300(struct hda_codec *codec,
3730 const struct hda_fixup *fix, int action)
3731{
3732 struct alc_spec *spec = codec->spec;
3733 /* TX300 needs to set up GPIO2 for the speaker amp */
3734 static const struct hda_verb gpio2_verbs[] = {
3735 { 0x01, AC_VERB_SET_GPIO_MASK, 0x04 },
3736 { 0x01, AC_VERB_SET_GPIO_DIRECTION, 0x04 },
3737 { 0x01, AC_VERB_SET_GPIO_DATA, 0x04 },
3738 {}
3739 };
3740 static const struct hda_pintbl dock_pins[] = {
3741 { 0x1b, 0x21114000 }, /* dock speaker pin */
3742 {}
3743 };
3744 struct snd_kcontrol *kctl;
3745
3746 switch (action) {
3747 case HDA_FIXUP_ACT_PRE_PROBE:
3748 snd_hda_add_verbs(codec, gpio2_verbs);
3749 snd_hda_apply_pincfgs(codec, dock_pins);
3750 spec->gen.auto_mute_via_amp = 1;
3751 spec->gen.automute_hook = asus_tx300_automute;
3752 snd_hda_jack_detect_enable_callback(codec, 0x1b,
3753 HDA_GEN_HP_EVENT,
3754 snd_hda_gen_hp_automute);
3755 break;
3756 case HDA_FIXUP_ACT_BUILD:
3757 /* this is a bit tricky; give more sane names for the main
3758 * (tablet) speaker and the dock speaker, respectively
3759 */
3760 kctl = snd_hda_find_mixer_ctl(codec, "Speaker Playback Switch");
3761 if (kctl)
3762 strcpy(kctl->id.name, "Dock Speaker Playback Switch");
3763 kctl = snd_hda_find_mixer_ctl(codec, "Bass Speaker Playback Switch");
3764 if (kctl)
3765 strcpy(kctl->id.name, "Speaker Playback Switch");
3766 break;
3767 }
3768}
3769
David Henningsson338cae52013-10-07 10:39:59 +02003770static void alc290_fixup_mono_speakers(struct hda_codec *codec,
3771 const struct hda_fixup *fix, int action)
3772{
David Henningsson0f4881d2013-12-20 16:08:13 +01003773 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3774 /* DAC node 0x03 is giving mono output. We therefore want to
3775 make sure 0x14 (front speaker) and 0x15 (headphones) use the
3776 stereo DAC, while leaving 0x17 (bass speaker) for node 0x03. */
3777 hda_nid_t conn1[2] = { 0x0c };
3778 snd_hda_override_conn_list(codec, 0x14, 1, conn1);
3779 snd_hda_override_conn_list(codec, 0x15, 1, conn1);
3780 }
David Henningsson338cae52013-10-07 10:39:59 +02003781}
3782
David Henningssonb67ae3f2013-11-05 13:11:37 +01003783#if IS_ENABLED(CONFIG_THINKPAD_ACPI)
3784
3785#include <linux/thinkpad_acpi.h>
Lv Zhengd171ebc2013-12-20 16:30:42 +08003786#include <linux/acpi.h>
David Henningssonb67ae3f2013-11-05 13:11:37 +01003787
3788static int (*led_set_func)(int, bool);
3789
David Henningsson27937692013-11-18 11:51:47 +01003790static acpi_status acpi_check_cb(acpi_handle handle, u32 lvl, void *context,
3791 void **rv)
3792{
3793 bool *found = context;
3794 *found = true;
3795 return AE_OK;
3796}
3797
3798static bool is_thinkpad(struct hda_codec *codec)
3799{
3800 bool found = false;
3801 if (codec->subsystem_id >> 16 != 0x17aa)
3802 return false;
3803 if (ACPI_SUCCESS(acpi_get_devices("LEN0068", acpi_check_cb, &found, NULL)) && found)
3804 return true;
3805 found = false;
3806 return ACPI_SUCCESS(acpi_get_devices("IBM0068", acpi_check_cb, &found, NULL)) && found;
3807}
3808
David Henningssonb67ae3f2013-11-05 13:11:37 +01003809static void update_tpacpi_mute_led(void *private_data, int enabled)
3810{
3811 if (led_set_func)
3812 led_set_func(TPACPI_LED_MUTE, !enabled);
3813}
3814
3815static void update_tpacpi_micmute_led(struct hda_codec *codec,
3816 struct snd_ctl_elem_value *ucontrol)
3817{
3818 if (!ucontrol || !led_set_func)
3819 return;
3820 if (strcmp("Capture Switch", ucontrol->id.name) == 0 && ucontrol->id.index == 0) {
3821 /* TODO: How do I verify if it's a mono or stereo here? */
3822 bool val = ucontrol->value.integer.value[0] || ucontrol->value.integer.value[1];
3823 led_set_func(TPACPI_LED_MICMUTE, !val);
3824 }
3825}
3826
3827static void alc_fixup_thinkpad_acpi(struct hda_codec *codec,
3828 const struct hda_fixup *fix, int action)
3829{
3830 struct alc_spec *spec = codec->spec;
3831 bool removefunc = false;
3832
3833 if (action == HDA_FIXUP_ACT_PROBE) {
David Henningsson27937692013-11-18 11:51:47 +01003834 if (!is_thinkpad(codec))
3835 return;
David Henningssonb67ae3f2013-11-05 13:11:37 +01003836 if (!led_set_func)
3837 led_set_func = symbol_request(tpacpi_led_set);
3838 if (!led_set_func) {
3839 snd_printk(KERN_WARNING "Failed to find thinkpad-acpi symbol tpacpi_led_set\n");
3840 return;
3841 }
3842
3843 removefunc = true;
3844 if (led_set_func(TPACPI_LED_MUTE, false) >= 0) {
3845 spec->gen.vmaster_mute.hook = update_tpacpi_mute_led;
3846 removefunc = false;
3847 }
3848 if (led_set_func(TPACPI_LED_MICMUTE, false) >= 0) {
3849 if (spec->gen.num_adc_nids > 1)
3850 snd_printdd("Skipping micmute LED control due to several ADCs");
3851 else {
3852 spec->gen.cap_sync_hook = update_tpacpi_micmute_led;
3853 removefunc = false;
3854 }
3855 }
3856 }
3857
3858 if (led_set_func && (action == HDA_FIXUP_ACT_FREE || removefunc)) {
3859 symbol_put(tpacpi_led_set);
3860 led_set_func = NULL;
3861 }
3862}
3863
3864#else
3865
3866static void alc_fixup_thinkpad_acpi(struct hda_codec *codec,
3867 const struct hda_fixup *fix, int action)
3868{
3869}
3870
3871#endif
3872
Takashi Iwai1d045db2011-07-07 18:23:21 +02003873enum {
3874 ALC269_FIXUP_SONY_VAIO,
3875 ALC275_FIXUP_SONY_VAIO_GPIO2,
3876 ALC269_FIXUP_DELL_M101Z,
3877 ALC269_FIXUP_SKU_IGNORE,
3878 ALC269_FIXUP_ASUS_G73JW,
3879 ALC269_FIXUP_LENOVO_EAPD,
3880 ALC275_FIXUP_SONY_HWEQ,
3881 ALC271_FIXUP_DMIC,
Takashi Iwai017f2a12011-07-09 14:42:25 +02003882 ALC269_FIXUP_PCM_44K,
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02003883 ALC269_FIXUP_STEREO_DMIC,
David Henningsson7c478f02013-10-11 10:18:46 +02003884 ALC269_FIXUP_HEADSET_MIC,
Takashi Iwai24519912011-08-16 15:08:49 +02003885 ALC269_FIXUP_QUANTA_MUTE,
3886 ALC269_FIXUP_LIFEBOOK,
Takashi Iwaia4297b52011-08-23 18:40:12 +02003887 ALC269_FIXUP_AMIC,
3888 ALC269_FIXUP_DMIC,
3889 ALC269VB_FIXUP_AMIC,
3890 ALC269VB_FIXUP_DMIC,
Takashi Iwai08fb0d02013-01-10 17:33:58 +01003891 ALC269_FIXUP_HP_MUTE_LED,
David Henningssond06ac142013-02-18 11:41:55 +01003892 ALC269_FIXUP_HP_MUTE_LED_MIC1,
Takashi Iwai08fb0d02013-01-10 17:33:58 +01003893 ALC269_FIXUP_HP_MUTE_LED_MIC2,
Takashi Iwai9f5c6fa2013-03-18 14:15:58 +01003894 ALC269_FIXUP_HP_GPIO_LED,
David Henningsson693b6132012-06-22 19:12:10 +02003895 ALC269_FIXUP_INV_DMIC,
David Henningsson108cc102012-07-20 10:37:25 +02003896 ALC269_FIXUP_LENOVO_DOCK,
David Henningsson88cfcf82013-10-11 10:18:45 +02003897 ALC286_FIXUP_SONY_MIC_NO_PRESENCE,
David Henningsson108cc102012-07-20 10:37:25 +02003898 ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT,
David Henningsson73bdd592013-04-15 15:44:14 +02003899 ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
3900 ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
David Henningsson338cae52013-10-07 10:39:59 +02003901 ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
David Henningsson73bdd592013-04-15 15:44:14 +02003902 ALC269_FIXUP_HEADSET_MODE,
3903 ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC,
David Henningssond240d1d2013-04-15 12:50:02 +02003904 ALC269_FIXUP_ASUS_X101_FUNC,
3905 ALC269_FIXUP_ASUS_X101_VERB,
3906 ALC269_FIXUP_ASUS_X101,
Dylan Reid08a978d2012-11-18 22:56:40 -08003907 ALC271_FIXUP_AMIC_MIC2,
3908 ALC271_FIXUP_HP_GATE_MIC_JACK,
Oleksij Rempelb1e89722013-12-04 20:50:53 +01003909 ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572,
Dylan Reid42397002013-04-05 14:58:22 -07003910 ALC269_FIXUP_ACER_AC700,
David Henningsson3e0d6112013-04-22 14:30:14 +02003911 ALC269_FIXUP_LIMIT_INT_MIC_BOOST,
Oleksij Rempel2cede302013-11-27 17:12:03 +01003912 ALC269VB_FIXUP_ASUS_ZENBOOK,
David Henningsson8e35cd42013-11-06 11:20:01 +01003913 ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED,
Anisse Astier02b504d2013-06-03 11:53:10 +02003914 ALC269VB_FIXUP_ORDISSIMO_EVE2,
Kailang Yangcd217a62013-08-22 10:15:24 +02003915 ALC283_FIXUP_CHROME_BOOK,
Kailang Yang0202e992013-12-02 15:20:15 +08003916 ALC283_FIXUP_SENSE_COMBO_JACK,
Takashi Iwai7bba2152013-09-06 15:45:38 +02003917 ALC282_FIXUP_ASUS_TX300,
Kailang Yang1bb3e062013-09-27 13:10:25 +02003918 ALC283_FIXUP_INT_MIC,
David Henningsson338cae52013-10-07 10:39:59 +02003919 ALC290_FIXUP_MONO_SPEAKERS,
David Henningsson0f4881d2013-12-20 16:08:13 +01003920 ALC290_FIXUP_MONO_SPEAKERS_HSJACK,
3921 ALC290_FIXUP_SUBWOOFER,
3922 ALC290_FIXUP_SUBWOOFER_HSJACK,
David Henningssonb67ae3f2013-11-05 13:11:37 +01003923 ALC269_FIXUP_THINKPAD_ACPI,
Kailang Yang9a22a8f2013-11-08 15:54:49 +08003924 ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
3925 ALC255_FIXUP_HEADSET_MODE,
Takashi Iwai1d045db2011-07-07 18:23:21 +02003926};
3927
Takashi Iwai1727a772013-01-10 09:52:52 +01003928static const struct hda_fixup alc269_fixups[] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02003929 [ALC269_FIXUP_SONY_VAIO] = {
Takashi Iwaifd108212013-01-10 10:18:14 +01003930 .type = HDA_FIXUP_PINCTLS,
3931 .v.pins = (const struct hda_pintbl[]) {
3932 {0x19, PIN_VREFGRD},
Takashi Iwai1d045db2011-07-07 18:23:21 +02003933 {}
3934 }
3935 },
3936 [ALC275_FIXUP_SONY_VAIO_GPIO2] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01003937 .type = HDA_FIXUP_VERBS,
Takashi Iwai1d045db2011-07-07 18:23:21 +02003938 .v.verbs = (const struct hda_verb[]) {
3939 {0x01, AC_VERB_SET_GPIO_MASK, 0x04},
3940 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x04},
3941 {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
3942 { }
3943 },
3944 .chained = true,
3945 .chain_id = ALC269_FIXUP_SONY_VAIO
3946 },
3947 [ALC269_FIXUP_DELL_M101Z] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01003948 .type = HDA_FIXUP_VERBS,
Takashi Iwai1d045db2011-07-07 18:23:21 +02003949 .v.verbs = (const struct hda_verb[]) {
3950 /* Enables internal speaker */
3951 {0x20, AC_VERB_SET_COEF_INDEX, 13},
3952 {0x20, AC_VERB_SET_PROC_COEF, 0x4040},
3953 {}
3954 }
3955 },
3956 [ALC269_FIXUP_SKU_IGNORE] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01003957 .type = HDA_FIXUP_FUNC,
Takashi Iwai23d30f22012-05-07 17:17:32 +02003958 .v.func = alc_fixup_sku_ignore,
Takashi Iwai1d045db2011-07-07 18:23:21 +02003959 },
3960 [ALC269_FIXUP_ASUS_G73JW] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01003961 .type = HDA_FIXUP_PINS,
3962 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02003963 { 0x17, 0x99130111 }, /* subwoofer */
3964 { }
3965 }
3966 },
3967 [ALC269_FIXUP_LENOVO_EAPD] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01003968 .type = HDA_FIXUP_VERBS,
Takashi Iwai1d045db2011-07-07 18:23:21 +02003969 .v.verbs = (const struct hda_verb[]) {
3970 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
3971 {}
3972 }
3973 },
3974 [ALC275_FIXUP_SONY_HWEQ] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01003975 .type = HDA_FIXUP_FUNC,
Takashi Iwai1d045db2011-07-07 18:23:21 +02003976 .v.func = alc269_fixup_hweq,
3977 .chained = true,
3978 .chain_id = ALC275_FIXUP_SONY_VAIO_GPIO2
3979 },
3980 [ALC271_FIXUP_DMIC] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01003981 .type = HDA_FIXUP_FUNC,
Takashi Iwai1d045db2011-07-07 18:23:21 +02003982 .v.func = alc271_fixup_dmic,
3983 },
Takashi Iwai017f2a12011-07-09 14:42:25 +02003984 [ALC269_FIXUP_PCM_44K] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01003985 .type = HDA_FIXUP_FUNC,
Takashi Iwai017f2a12011-07-09 14:42:25 +02003986 .v.func = alc269_fixup_pcm_44k,
David Henningsson012e7eb2012-08-08 08:43:37 +02003987 .chained = true,
3988 .chain_id = ALC269_FIXUP_QUANTA_MUTE
Takashi Iwai017f2a12011-07-09 14:42:25 +02003989 },
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02003990 [ALC269_FIXUP_STEREO_DMIC] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01003991 .type = HDA_FIXUP_FUNC,
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02003992 .v.func = alc269_fixup_stereo_dmic,
3993 },
David Henningsson7c478f02013-10-11 10:18:46 +02003994 [ALC269_FIXUP_HEADSET_MIC] = {
3995 .type = HDA_FIXUP_FUNC,
3996 .v.func = alc269_fixup_headset_mic,
3997 },
Takashi Iwai24519912011-08-16 15:08:49 +02003998 [ALC269_FIXUP_QUANTA_MUTE] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01003999 .type = HDA_FIXUP_FUNC,
Takashi Iwai24519912011-08-16 15:08:49 +02004000 .v.func = alc269_fixup_quanta_mute,
4001 },
4002 [ALC269_FIXUP_LIFEBOOK] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01004003 .type = HDA_FIXUP_PINS,
4004 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai24519912011-08-16 15:08:49 +02004005 { 0x1a, 0x2101103f }, /* dock line-out */
4006 { 0x1b, 0x23a11040 }, /* dock mic-in */
4007 { }
4008 },
4009 .chained = true,
4010 .chain_id = ALC269_FIXUP_QUANTA_MUTE
4011 },
Takashi Iwaia4297b52011-08-23 18:40:12 +02004012 [ALC269_FIXUP_AMIC] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01004013 .type = HDA_FIXUP_PINS,
4014 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwaia4297b52011-08-23 18:40:12 +02004015 { 0x14, 0x99130110 }, /* speaker */
4016 { 0x15, 0x0121401f }, /* HP out */
4017 { 0x18, 0x01a19c20 }, /* mic */
4018 { 0x19, 0x99a3092f }, /* int-mic */
4019 { }
4020 },
4021 },
4022 [ALC269_FIXUP_DMIC] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01004023 .type = HDA_FIXUP_PINS,
4024 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwaia4297b52011-08-23 18:40:12 +02004025 { 0x12, 0x99a3092f }, /* int-mic */
4026 { 0x14, 0x99130110 }, /* speaker */
4027 { 0x15, 0x0121401f }, /* HP out */
4028 { 0x18, 0x01a19c20 }, /* mic */
4029 { }
4030 },
4031 },
4032 [ALC269VB_FIXUP_AMIC] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01004033 .type = HDA_FIXUP_PINS,
4034 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwaia4297b52011-08-23 18:40:12 +02004035 { 0x14, 0x99130110 }, /* speaker */
4036 { 0x18, 0x01a19c20 }, /* mic */
4037 { 0x19, 0x99a3092f }, /* int-mic */
4038 { 0x21, 0x0121401f }, /* HP out */
4039 { }
4040 },
4041 },
David Henningsson2267ea92012-01-03 08:45:56 +01004042 [ALC269VB_FIXUP_DMIC] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01004043 .type = HDA_FIXUP_PINS,
4044 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwaia4297b52011-08-23 18:40:12 +02004045 { 0x12, 0x99a3092f }, /* int-mic */
4046 { 0x14, 0x99130110 }, /* speaker */
4047 { 0x18, 0x01a19c20 }, /* mic */
4048 { 0x21, 0x0121401f }, /* HP out */
4049 { }
4050 },
4051 },
Takashi Iwai08fb0d02013-01-10 17:33:58 +01004052 [ALC269_FIXUP_HP_MUTE_LED] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01004053 .type = HDA_FIXUP_FUNC,
Takashi Iwai08fb0d02013-01-10 17:33:58 +01004054 .v.func = alc269_fixup_hp_mute_led,
David Henningsson6d3cd5d2013-01-07 12:03:47 +01004055 },
David Henningssond06ac142013-02-18 11:41:55 +01004056 [ALC269_FIXUP_HP_MUTE_LED_MIC1] = {
4057 .type = HDA_FIXUP_FUNC,
4058 .v.func = alc269_fixup_hp_mute_led_mic1,
4059 },
Takashi Iwai08fb0d02013-01-10 17:33:58 +01004060 [ALC269_FIXUP_HP_MUTE_LED_MIC2] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01004061 .type = HDA_FIXUP_FUNC,
Takashi Iwai08fb0d02013-01-10 17:33:58 +01004062 .v.func = alc269_fixup_hp_mute_led_mic2,
Takashi Iwai420b0fe2012-03-12 12:35:27 +01004063 },
Takashi Iwai9f5c6fa2013-03-18 14:15:58 +01004064 [ALC269_FIXUP_HP_GPIO_LED] = {
4065 .type = HDA_FIXUP_FUNC,
4066 .v.func = alc269_fixup_hp_gpio_led,
4067 },
David Henningsson693b6132012-06-22 19:12:10 +02004068 [ALC269_FIXUP_INV_DMIC] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01004069 .type = HDA_FIXUP_FUNC,
Takashi Iwai6e72aa52012-06-25 10:52:25 +02004070 .v.func = alc_fixup_inv_dmic_0x12,
David Henningsson693b6132012-06-22 19:12:10 +02004071 },
David Henningsson108cc102012-07-20 10:37:25 +02004072 [ALC269_FIXUP_LENOVO_DOCK] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01004073 .type = HDA_FIXUP_PINS,
4074 .v.pins = (const struct hda_pintbl[]) {
David Henningsson108cc102012-07-20 10:37:25 +02004075 { 0x19, 0x23a11040 }, /* dock mic */
4076 { 0x1b, 0x2121103f }, /* dock headphone */
4077 { }
4078 },
4079 .chained = true,
4080 .chain_id = ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT
4081 },
4082 [ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01004083 .type = HDA_FIXUP_FUNC,
David Henningsson108cc102012-07-20 10:37:25 +02004084 .v.func = alc269_fixup_pincfg_no_hp_to_lineout,
David Henningsson52129002013-11-19 10:25:53 +01004085 .chained = true,
4086 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
David Henningsson108cc102012-07-20 10:37:25 +02004087 },
David Henningsson73bdd592013-04-15 15:44:14 +02004088 [ALC269_FIXUP_DELL1_MIC_NO_PRESENCE] = {
4089 .type = HDA_FIXUP_PINS,
4090 .v.pins = (const struct hda_pintbl[]) {
4091 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
4092 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
4093 { }
4094 },
4095 .chained = true,
4096 .chain_id = ALC269_FIXUP_HEADSET_MODE
4097 },
4098 [ALC269_FIXUP_DELL2_MIC_NO_PRESENCE] = {
4099 .type = HDA_FIXUP_PINS,
4100 .v.pins = (const struct hda_pintbl[]) {
4101 { 0x16, 0x21014020 }, /* dock line out */
4102 { 0x19, 0x21a19030 }, /* dock mic */
4103 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
4104 { }
4105 },
4106 .chained = true,
4107 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
4108 },
David Henningsson338cae52013-10-07 10:39:59 +02004109 [ALC269_FIXUP_DELL3_MIC_NO_PRESENCE] = {
4110 .type = HDA_FIXUP_PINS,
4111 .v.pins = (const struct hda_pintbl[]) {
4112 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
4113 { }
4114 },
4115 .chained = true,
4116 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
4117 },
David Henningsson73bdd592013-04-15 15:44:14 +02004118 [ALC269_FIXUP_HEADSET_MODE] = {
4119 .type = HDA_FIXUP_FUNC,
4120 .v.func = alc_fixup_headset_mode,
4121 },
4122 [ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC] = {
4123 .type = HDA_FIXUP_FUNC,
4124 .v.func = alc_fixup_headset_mode_no_hp_mic,
4125 },
David Henningsson88cfcf82013-10-11 10:18:45 +02004126 [ALC286_FIXUP_SONY_MIC_NO_PRESENCE] = {
4127 .type = HDA_FIXUP_PINS,
4128 .v.pins = (const struct hda_pintbl[]) {
4129 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
4130 { }
4131 },
David Henningssonfbc78ad2013-10-11 13:46:04 +02004132 .chained = true,
4133 .chain_id = ALC269_FIXUP_HEADSET_MIC
David Henningsson88cfcf82013-10-11 10:18:45 +02004134 },
David Henningssond240d1d2013-04-15 12:50:02 +02004135 [ALC269_FIXUP_ASUS_X101_FUNC] = {
4136 .type = HDA_FIXUP_FUNC,
4137 .v.func = alc269_fixup_x101_headset_mic,
4138 },
4139 [ALC269_FIXUP_ASUS_X101_VERB] = {
4140 .type = HDA_FIXUP_VERBS,
4141 .v.verbs = (const struct hda_verb[]) {
4142 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
4143 {0x20, AC_VERB_SET_COEF_INDEX, 0x08},
4144 {0x20, AC_VERB_SET_PROC_COEF, 0x0310},
4145 { }
4146 },
4147 .chained = true,
4148 .chain_id = ALC269_FIXUP_ASUS_X101_FUNC
4149 },
4150 [ALC269_FIXUP_ASUS_X101] = {
4151 .type = HDA_FIXUP_PINS,
4152 .v.pins = (const struct hda_pintbl[]) {
4153 { 0x18, 0x04a1182c }, /* Headset mic */
4154 { }
4155 },
4156 .chained = true,
4157 .chain_id = ALC269_FIXUP_ASUS_X101_VERB
4158 },
Dylan Reid08a978d2012-11-18 22:56:40 -08004159 [ALC271_FIXUP_AMIC_MIC2] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01004160 .type = HDA_FIXUP_PINS,
4161 .v.pins = (const struct hda_pintbl[]) {
Dylan Reid08a978d2012-11-18 22:56:40 -08004162 { 0x14, 0x99130110 }, /* speaker */
4163 { 0x19, 0x01a19c20 }, /* mic */
4164 { 0x1b, 0x99a7012f }, /* int-mic */
4165 { 0x21, 0x0121401f }, /* HP out */
4166 { }
4167 },
4168 },
4169 [ALC271_FIXUP_HP_GATE_MIC_JACK] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01004170 .type = HDA_FIXUP_FUNC,
Dylan Reid08a978d2012-11-18 22:56:40 -08004171 .v.func = alc271_hp_gate_mic_jack,
4172 .chained = true,
4173 .chain_id = ALC271_FIXUP_AMIC_MIC2,
4174 },
Oleksij Rempelb1e89722013-12-04 20:50:53 +01004175 [ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572] = {
4176 .type = HDA_FIXUP_FUNC,
4177 .v.func = alc269_fixup_limit_int_mic_boost,
4178 .chained = true,
4179 .chain_id = ALC271_FIXUP_HP_GATE_MIC_JACK,
4180 },
Dylan Reid42397002013-04-05 14:58:22 -07004181 [ALC269_FIXUP_ACER_AC700] = {
4182 .type = HDA_FIXUP_PINS,
4183 .v.pins = (const struct hda_pintbl[]) {
4184 { 0x12, 0x99a3092f }, /* int-mic */
4185 { 0x14, 0x99130110 }, /* speaker */
4186 { 0x18, 0x03a11c20 }, /* mic */
4187 { 0x1e, 0x0346101e }, /* SPDIF1 */
4188 { 0x21, 0x0321101f }, /* HP out */
4189 { }
4190 },
4191 .chained = true,
4192 .chain_id = ALC271_FIXUP_DMIC,
4193 },
David Henningsson3e0d6112013-04-22 14:30:14 +02004194 [ALC269_FIXUP_LIMIT_INT_MIC_BOOST] = {
4195 .type = HDA_FIXUP_FUNC,
4196 .v.func = alc269_fixup_limit_int_mic_boost,
David Henningsson27937692013-11-18 11:51:47 +01004197 .chained = true,
4198 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
David Henningsson3e0d6112013-04-22 14:30:14 +02004199 },
Oleksij Rempel2cede302013-11-27 17:12:03 +01004200 [ALC269VB_FIXUP_ASUS_ZENBOOK] = {
4201 .type = HDA_FIXUP_FUNC,
4202 .v.func = alc269_fixup_limit_int_mic_boost,
4203 .chained = true,
4204 .chain_id = ALC269VB_FIXUP_DMIC,
4205 },
David Henningsson8e35cd42013-11-06 11:20:01 +01004206 [ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED] = {
4207 .type = HDA_FIXUP_FUNC,
4208 .v.func = alc269_fixup_limit_int_mic_boost,
4209 .chained = true,
4210 .chain_id = ALC269_FIXUP_HP_MUTE_LED_MIC1,
4211 },
Anisse Astier02b504d2013-06-03 11:53:10 +02004212 [ALC269VB_FIXUP_ORDISSIMO_EVE2] = {
4213 .type = HDA_FIXUP_PINS,
4214 .v.pins = (const struct hda_pintbl[]) {
4215 { 0x12, 0x99a3092f }, /* int-mic */
4216 { 0x18, 0x03a11d20 }, /* mic */
4217 { 0x19, 0x411111f0 }, /* Unused bogus pin */
4218 { }
4219 },
4220 },
Kailang Yangcd217a62013-08-22 10:15:24 +02004221 [ALC283_FIXUP_CHROME_BOOK] = {
4222 .type = HDA_FIXUP_FUNC,
4223 .v.func = alc283_fixup_chromebook,
4224 },
Kailang Yang0202e992013-12-02 15:20:15 +08004225 [ALC283_FIXUP_SENSE_COMBO_JACK] = {
4226 .type = HDA_FIXUP_FUNC,
4227 .v.func = alc283_fixup_sense_combo_jack,
4228 .chained = true,
4229 .chain_id = ALC283_FIXUP_CHROME_BOOK,
4230 },
Takashi Iwai7bba2152013-09-06 15:45:38 +02004231 [ALC282_FIXUP_ASUS_TX300] = {
4232 .type = HDA_FIXUP_FUNC,
4233 .v.func = alc282_fixup_asus_tx300,
4234 },
Kailang Yang1bb3e062013-09-27 13:10:25 +02004235 [ALC283_FIXUP_INT_MIC] = {
4236 .type = HDA_FIXUP_VERBS,
4237 .v.verbs = (const struct hda_verb[]) {
4238 {0x20, AC_VERB_SET_COEF_INDEX, 0x1a},
4239 {0x20, AC_VERB_SET_PROC_COEF, 0x0011},
4240 { }
4241 },
4242 .chained = true,
4243 .chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST
4244 },
David Henningsson0f4881d2013-12-20 16:08:13 +01004245 [ALC290_FIXUP_SUBWOOFER_HSJACK] = {
4246 .type = HDA_FIXUP_PINS,
4247 .v.pins = (const struct hda_pintbl[]) {
4248 { 0x17, 0x90170112 }, /* subwoofer */
4249 { }
4250 },
4251 .chained = true,
4252 .chain_id = ALC290_FIXUP_MONO_SPEAKERS_HSJACK,
4253 },
4254 [ALC290_FIXUP_SUBWOOFER] = {
4255 .type = HDA_FIXUP_PINS,
4256 .v.pins = (const struct hda_pintbl[]) {
4257 { 0x17, 0x90170112 }, /* subwoofer */
4258 { }
4259 },
4260 .chained = true,
4261 .chain_id = ALC290_FIXUP_MONO_SPEAKERS,
4262 },
David Henningsson338cae52013-10-07 10:39:59 +02004263 [ALC290_FIXUP_MONO_SPEAKERS] = {
4264 .type = HDA_FIXUP_FUNC,
4265 .v.func = alc290_fixup_mono_speakers,
David Henningsson0f4881d2013-12-20 16:08:13 +01004266 },
4267 [ALC290_FIXUP_MONO_SPEAKERS_HSJACK] = {
4268 .type = HDA_FIXUP_FUNC,
4269 .v.func = alc290_fixup_mono_speakers,
David Henningsson338cae52013-10-07 10:39:59 +02004270 .chained = true,
4271 .chain_id = ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
4272 },
David Henningssonb67ae3f2013-11-05 13:11:37 +01004273 [ALC269_FIXUP_THINKPAD_ACPI] = {
4274 .type = HDA_FIXUP_FUNC,
4275 .v.func = alc_fixup_thinkpad_acpi,
David Henningssonb67ae3f2013-11-05 13:11:37 +01004276 },
Kailang Yang9a22a8f2013-11-08 15:54:49 +08004277 [ALC255_FIXUP_DELL1_MIC_NO_PRESENCE] = {
4278 .type = HDA_FIXUP_PINS,
4279 .v.pins = (const struct hda_pintbl[]) {
4280 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
4281 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
4282 { }
4283 },
4284 .chained = true,
4285 .chain_id = ALC255_FIXUP_HEADSET_MODE
4286 },
4287 [ALC255_FIXUP_HEADSET_MODE] = {
4288 .type = HDA_FIXUP_FUNC,
4289 .v.func = alc_fixup_headset_mode_alc255,
4290 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02004291};
4292
4293static const struct snd_pci_quirk alc269_fixup_tbl[] = {
David Henningsson693b6132012-06-22 19:12:10 +02004294 SND_PCI_QUIRK(0x1025, 0x029b, "Acer 1810TZ", ALC269_FIXUP_INV_DMIC),
4295 SND_PCI_QUIRK(0x1025, 0x0349, "Acer AOD260", ALC269_FIXUP_INV_DMIC),
David Henningssonaaedfb42013-08-16 14:09:02 +02004296 SND_PCI_QUIRK(0x1025, 0x047c, "Acer AC700", ALC269_FIXUP_ACER_AC700),
4297 SND_PCI_QUIRK(0x1025, 0x0740, "Acer AO725", ALC271_FIXUP_HP_GATE_MIC_JACK),
4298 SND_PCI_QUIRK(0x1025, 0x0742, "Acer AO756", ALC271_FIXUP_HP_GATE_MIC_JACK),
4299 SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC),
Oleksij Rempelb1e89722013-12-04 20:50:53 +01004300 SND_PCI_QUIRK(0x1025, 0x0775, "Acer Aspire E1-572", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572),
David Henningssonaaedfb42013-08-16 14:09:02 +02004301 SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
David Henningsson73bdd592013-04-15 15:44:14 +02004302 SND_PCI_QUIRK(0x1028, 0x05bd, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE),
4303 SND_PCI_QUIRK(0x1028, 0x05be, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE),
4304 SND_PCI_QUIRK(0x1028, 0x05c4, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4305 SND_PCI_QUIRK(0x1028, 0x05c5, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4306 SND_PCI_QUIRK(0x1028, 0x05c6, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4307 SND_PCI_QUIRK(0x1028, 0x05c7, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4308 SND_PCI_QUIRK(0x1028, 0x05c8, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4309 SND_PCI_QUIRK(0x1028, 0x05c9, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4310 SND_PCI_QUIRK(0x1028, 0x05ca, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE),
4311 SND_PCI_QUIRK(0x1028, 0x05cb, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE),
Kailang Yang05843c02013-07-01 11:27:16 +02004312 SND_PCI_QUIRK(0x1028, 0x05cc, "Dell X5 Precision", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE),
4313 SND_PCI_QUIRK(0x1028, 0x05cd, "Dell X5 Precision", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE),
David Henningsson0f4881d2013-12-20 16:08:13 +01004314 SND_PCI_QUIRK(0x1028, 0x05da, "Dell Vostro 5460", ALC290_FIXUP_SUBWOOFER),
David Henningsson436c4a02013-05-15 13:56:00 +02004315 SND_PCI_QUIRK(0x1028, 0x05de, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE),
David Henningssond81bf8c2013-06-11 11:06:48 +02004316 SND_PCI_QUIRK(0x1028, 0x05e0, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE),
David Henningsson73bdd592013-04-15 15:44:14 +02004317 SND_PCI_QUIRK(0x1028, 0x05e9, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4318 SND_PCI_QUIRK(0x1028, 0x05ea, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4319 SND_PCI_QUIRK(0x1028, 0x05eb, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4320 SND_PCI_QUIRK(0x1028, 0x05ec, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4321 SND_PCI_QUIRK(0x1028, 0x05ed, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4322 SND_PCI_QUIRK(0x1028, 0x05ee, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4323 SND_PCI_QUIRK(0x1028, 0x05f3, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4324 SND_PCI_QUIRK(0x1028, 0x05f4, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4325 SND_PCI_QUIRK(0x1028, 0x05f5, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4326 SND_PCI_QUIRK(0x1028, 0x05f6, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
David Henningsson3ee21022013-05-31 10:41:04 +02004327 SND_PCI_QUIRK(0x1028, 0x05f8, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
David Henningssoncd6fb672013-06-28 11:09:56 +02004328 SND_PCI_QUIRK(0x1028, 0x05f9, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4329 SND_PCI_QUIRK(0x1028, 0x05fb, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
David Henningssond81bf8c2013-06-11 11:06:48 +02004330 SND_PCI_QUIRK(0x1028, 0x0606, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4331 SND_PCI_QUIRK(0x1028, 0x0608, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
David Henningsson3ee21022013-05-31 10:41:04 +02004332 SND_PCI_QUIRK(0x1028, 0x0609, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
Hui Wangc29cb5e2013-12-13 11:57:05 +08004333 SND_PCI_QUIRK(0x1028, 0x0610, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
David Henningsson6c29d682013-06-28 08:53:34 +02004334 SND_PCI_QUIRK(0x1028, 0x0613, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
David Henningssonb8362e72013-11-21 14:12:59 +01004335 SND_PCI_QUIRK(0x1028, 0x0614, "Dell Inspiron 3135", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
David Henningsson0f4881d2013-12-20 16:08:13 +01004336 SND_PCI_QUIRK(0x1028, 0x0615, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK),
4337 SND_PCI_QUIRK(0x1028, 0x0616, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK),
Kailang Yang9a22a8f2013-11-08 15:54:49 +08004338 SND_PCI_QUIRK(0x1028, 0x061f, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE),
Hui Wangc29cb5e2013-12-13 11:57:05 +08004339 SND_PCI_QUIRK(0x1028, 0x0629, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
David Henningsson0f4881d2013-12-20 16:08:13 +01004340 SND_PCI_QUIRK(0x1028, 0x0638, "Dell Inspiron 5439", ALC290_FIXUP_MONO_SPEAKERS_HSJACK),
Hui Wangc29cb5e2013-12-13 11:57:05 +08004341 SND_PCI_QUIRK(0x1028, 0x063e, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
Kailang Yang9a22a8f2013-11-08 15:54:49 +08004342 SND_PCI_QUIRK(0x1028, 0x063f, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE),
Kailang Yang05843c02013-07-01 11:27:16 +02004343 SND_PCI_QUIRK(0x1028, 0x15cc, "Dell X5 Precision", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE),
4344 SND_PCI_QUIRK(0x1028, 0x15cd, "Dell X5 Precision", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE),
Takashi Iwai08fb0d02013-01-10 17:33:58 +01004345 SND_PCI_QUIRK(0x103c, 0x1586, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC2),
Takashi Iwai9f5c6fa2013-03-18 14:15:58 +01004346 SND_PCI_QUIRK(0x103c, 0x18e6, "HP", ALC269_FIXUP_HP_GPIO_LED),
David Henningssond06ac142013-02-18 11:41:55 +01004347 SND_PCI_QUIRK(0x103c, 0x1973, "HP Pavilion", ALC269_FIXUP_HP_MUTE_LED_MIC1),
4348 SND_PCI_QUIRK(0x103c, 0x1983, "HP Pavilion", ALC269_FIXUP_HP_MUTE_LED_MIC1),
David Henningsson8e35cd42013-11-06 11:20:01 +01004349 SND_PCI_QUIRK(0x103c, 0x218b, "HP", ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED),
Takashi Iwai08fb0d02013-01-10 17:33:58 +01004350 SND_PCI_QUIRK_VENDOR(0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED),
Takashi Iwai7bba2152013-09-06 15:45:38 +02004351 SND_PCI_QUIRK(0x1043, 0x103f, "ASUS TX300", ALC282_FIXUP_ASUS_TX300),
David Henningsson3e0d6112013-04-22 14:30:14 +02004352 SND_PCI_QUIRK(0x1043, 0x106d, "Asus K53BE", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
4353 SND_PCI_QUIRK(0x1043, 0x115d, "Asus 1015E", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
Oleksij Rempel2cede302013-11-27 17:12:03 +01004354 SND_PCI_QUIRK(0x1043, 0x1427, "Asus Zenbook UX31E", ALC269VB_FIXUP_ASUS_ZENBOOK),
4355 SND_PCI_QUIRK(0x1043, 0x1517, "Asus Zenbook UX31A", ALC269VB_FIXUP_ASUS_ZENBOOK),
David Henningsson3e0d6112013-04-22 14:30:14 +02004356 SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC),
Takashi Iwai017f2a12011-07-09 14:42:25 +02004357 SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW),
David Henningsson693b6132012-06-22 19:12:10 +02004358 SND_PCI_QUIRK(0x1043, 0x1b13, "Asus U41SV", ALC269_FIXUP_INV_DMIC),
David Henningsson3e0d6112013-04-22 14:30:14 +02004359 SND_PCI_QUIRK(0x1043, 0x1c23, "Asus X55U", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
Takashi Iwaiadabb3e2011-08-03 07:48:37 +02004360 SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC),
4361 SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC),
4362 SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
4363 SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
David Henningssond240d1d2013-04-15 12:50:02 +02004364 SND_PCI_QUIRK(0x1043, 0x8516, "ASUS X101CH", ALC269_FIXUP_ASUS_X101),
David Henningsson88cfcf82013-10-11 10:18:45 +02004365 SND_PCI_QUIRK(0x104d, 0x90b6, "Sony VAIO Pro 13", ALC286_FIXUP_SONY_MIC_NO_PRESENCE),
Takashi Iwai1d045db2011-07-07 18:23:21 +02004366 SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2),
4367 SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
4368 SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
4369 SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO),
Takashi Iwai24519912011-08-16 15:08:49 +02004370 SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook", ALC269_FIXUP_LIFEBOOK),
Takashi Iwai1d045db2011-07-07 18:23:21 +02004371 SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE),
4372 SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE),
4373 SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE),
4374 SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE),
4375 SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE),
Takashi Iwai707fba32012-08-02 09:04:39 +02004376 SND_PCI_QUIRK(0x17aa, 0x21f6, "Thinkpad T530", ALC269_FIXUP_LENOVO_DOCK),
Felix Kaechelec8415a42012-08-06 23:02:01 +02004377 SND_PCI_QUIRK(0x17aa, 0x21fa, "Thinkpad X230", ALC269_FIXUP_LENOVO_DOCK),
Stefán Freyr84f98fd2012-10-19 22:46:00 +02004378 SND_PCI_QUIRK(0x17aa, 0x21f3, "Thinkpad T430", ALC269_FIXUP_LENOVO_DOCK),
Philipp A. Mohrenweiser4407be62012-08-06 13:14:18 +02004379 SND_PCI_QUIRK(0x17aa, 0x21fb, "Thinkpad T430s", ALC269_FIXUP_LENOVO_DOCK),
David Henningsson108cc102012-07-20 10:37:25 +02004380 SND_PCI_QUIRK(0x17aa, 0x2203, "Thinkpad X230 Tablet", ALC269_FIXUP_LENOVO_DOCK),
David Henningssonaaedfb42013-08-16 14:09:02 +02004381 SND_PCI_QUIRK(0x17aa, 0x2208, "Thinkpad T431s", ALC269_FIXUP_LENOVO_DOCK),
David Henningssoncd5302c2013-08-19 12:22:33 +02004382 SND_PCI_QUIRK(0x17aa, 0x220c, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
4383 SND_PCI_QUIRK(0x17aa, 0x2212, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
David Henningsson27937692013-11-18 11:51:47 +01004384 SND_PCI_QUIRK(0x17aa, 0x2214, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
David Henningssona4a9e082013-08-16 14:09:01 +02004385 SND_PCI_QUIRK(0x17aa, 0x2215, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
4386 SND_PCI_QUIRK(0x17aa, 0x5013, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
Kailang Yang1bb3e062013-09-27 13:10:25 +02004387 SND_PCI_QUIRK(0x17aa, 0x501a, "Thinkpad", ALC283_FIXUP_INT_MIC),
David Henningssoncd5302c2013-08-19 12:22:33 +02004388 SND_PCI_QUIRK(0x17aa, 0x5026, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
4389 SND_PCI_QUIRK(0x17aa, 0x5109, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
David Henningsson012e7eb2012-08-08 08:43:37 +02004390 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_PCM_44K),
Takashi Iwai1d045db2011-07-07 18:23:21 +02004391 SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD),
David Henningsson27937692013-11-18 11:51:47 +01004392 SND_PCI_QUIRK_VENDOR(0x17aa, "Thinkpad", ALC269_FIXUP_THINKPAD_ACPI),
Anisse Astier02b504d2013-06-03 11:53:10 +02004393 SND_PCI_QUIRK(0x1b7d, 0xa831, "Ordissimo EVE2 ", ALC269VB_FIXUP_ORDISSIMO_EVE2), /* Also known as Malata PC-B1303 */
Takashi Iwaia4297b52011-08-23 18:40:12 +02004394
Takashi Iwaia7f3eed2012-02-16 13:03:18 +01004395#if 0
Takashi Iwaia4297b52011-08-23 18:40:12 +02004396 /* Below is a quirk table taken from the old code.
4397 * Basically the device should work as is without the fixup table.
4398 * If BIOS doesn't give a proper info, enable the corresponding
4399 * fixup entry.
Jesper Juhl7d7eb9e2012-04-12 22:11:25 +02004400 */
Takashi Iwaia4297b52011-08-23 18:40:12 +02004401 SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
4402 ALC269_FIXUP_AMIC),
4403 SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC),
Takashi Iwaia4297b52011-08-23 18:40:12 +02004404 SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC),
4405 SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC),
4406 SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC),
4407 SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269_FIXUP_AMIC),
4408 SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269_FIXUP_AMIC),
4409 SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269_FIXUP_AMIC),
4410 SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_FIXUP_AMIC),
4411 SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269_FIXUP_AMIC),
4412 SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_FIXUP_AMIC),
4413 SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_FIXUP_AMIC),
4414 SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_FIXUP_AMIC),
4415 SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_FIXUP_AMIC),
4416 SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_FIXUP_AMIC),
4417 SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_FIXUP_AMIC),
4418 SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_FIXUP_AMIC),
4419 SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_FIXUP_AMIC),
4420 SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_FIXUP_AMIC),
4421 SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_FIXUP_AMIC),
4422 SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_FIXUP_AMIC),
4423 SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_FIXUP_AMIC),
4424 SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_FIXUP_AMIC),
4425 SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_FIXUP_AMIC),
4426 SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_FIXUP_AMIC),
4427 SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_FIXUP_AMIC),
4428 SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_FIXUP_AMIC),
4429 SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_FIXUP_AMIC),
4430 SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_FIXUP_AMIC),
4431 SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_FIXUP_AMIC),
4432 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_FIXUP_AMIC),
4433 SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_FIXUP_AMIC),
4434 SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_FIXUP_AMIC),
4435 SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_FIXUP_AMIC),
4436 SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_FIXUP_AMIC),
4437 SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_FIXUP_DMIC),
4438 SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_FIXUP_AMIC),
4439 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_AMIC),
4440 SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_FIXUP_DMIC),
4441 SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_FIXUP_DMIC),
4442#endif
4443 {}
4444};
4445
Takashi Iwai1727a772013-01-10 09:52:52 +01004446static const struct hda_model_fixup alc269_fixup_models[] = {
Takashi Iwaia4297b52011-08-23 18:40:12 +02004447 {.id = ALC269_FIXUP_AMIC, .name = "laptop-amic"},
4448 {.id = ALC269_FIXUP_DMIC, .name = "laptop-dmic"},
Takashi Iwai6e72aa52012-06-25 10:52:25 +02004449 {.id = ALC269_FIXUP_STEREO_DMIC, .name = "alc269-dmic"},
4450 {.id = ALC271_FIXUP_DMIC, .name = "alc271-dmic"},
4451 {.id = ALC269_FIXUP_INV_DMIC, .name = "inv-dmic"},
David Henningsson7c478f02013-10-11 10:18:46 +02004452 {.id = ALC269_FIXUP_HEADSET_MIC, .name = "headset-mic"},
David Henningsson108cc102012-07-20 10:37:25 +02004453 {.id = ALC269_FIXUP_LENOVO_DOCK, .name = "lenovo-dock"},
Takashi Iwai9f5c6fa2013-03-18 14:15:58 +01004454 {.id = ALC269_FIXUP_HP_GPIO_LED, .name = "hp-gpio-led"},
David Henningssone32aa852013-06-17 11:04:02 +02004455 {.id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "dell-headset-multi"},
4456 {.id = ALC269_FIXUP_DELL2_MIC_NO_PRESENCE, .name = "dell-headset-dock"},
Kailang Yang0202e992013-12-02 15:20:15 +08004457 {.id = ALC283_FIXUP_CHROME_BOOK, .name = "alc283-chrome"},
4458 {.id = ALC283_FIXUP_SENSE_COMBO_JACK, .name = "alc283-sense-combo"},
Takashi Iwai1d045db2011-07-07 18:23:21 +02004459 {}
4460};
4461
4462
Takashi Iwai546bb672012-03-07 08:37:19 +01004463static void alc269_fill_coef(struct hda_codec *codec)
Takashi Iwai1d045db2011-07-07 18:23:21 +02004464{
Kailang Yang526af6e2012-03-07 08:25:20 +01004465 struct alc_spec *spec = codec->spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004466 int val;
4467
Kailang Yang526af6e2012-03-07 08:25:20 +01004468 if (spec->codec_variant != ALC269_TYPE_ALC269VB)
Takashi Iwai546bb672012-03-07 08:37:19 +01004469 return;
Kailang Yang526af6e2012-03-07 08:25:20 +01004470
Takashi Iwai1bb7e432011-10-17 16:50:59 +02004471 if ((alc_get_coef0(codec) & 0x00ff) < 0x015) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004472 alc_write_coef_idx(codec, 0xf, 0x960b);
4473 alc_write_coef_idx(codec, 0xe, 0x8817);
4474 }
4475
Takashi Iwai1bb7e432011-10-17 16:50:59 +02004476 if ((alc_get_coef0(codec) & 0x00ff) == 0x016) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004477 alc_write_coef_idx(codec, 0xf, 0x960b);
4478 alc_write_coef_idx(codec, 0xe, 0x8814);
4479 }
4480
Takashi Iwai1bb7e432011-10-17 16:50:59 +02004481 if ((alc_get_coef0(codec) & 0x00ff) == 0x017) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004482 val = alc_read_coef_idx(codec, 0x04);
4483 /* Power up output pin */
4484 alc_write_coef_idx(codec, 0x04, val | (1<<11));
4485 }
4486
Takashi Iwai1bb7e432011-10-17 16:50:59 +02004487 if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004488 val = alc_read_coef_idx(codec, 0xd);
4489 if ((val & 0x0c00) >> 10 != 0x1) {
4490 /* Capless ramp up clock control */
4491 alc_write_coef_idx(codec, 0xd, val | (1<<10));
4492 }
4493 val = alc_read_coef_idx(codec, 0x17);
4494 if ((val & 0x01c0) >> 6 != 0x4) {
4495 /* Class D power on reset */
4496 alc_write_coef_idx(codec, 0x17, val | (1<<7));
4497 }
4498 }
4499
4500 val = alc_read_coef_idx(codec, 0xd); /* Class D */
4501 alc_write_coef_idx(codec, 0xd, val | (1<<14));
4502
4503 val = alc_read_coef_idx(codec, 0x4); /* HP */
4504 alc_write_coef_idx(codec, 0x4, val | (1<<11));
Takashi Iwai1d045db2011-07-07 18:23:21 +02004505}
4506
4507/*
4508 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02004509static int patch_alc269(struct hda_codec *codec)
4510{
4511 struct alc_spec *spec;
Takashi Iwai3de95172012-05-07 18:03:15 +02004512 int err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004513
Takashi Iwai3de95172012-05-07 18:03:15 +02004514 err = alc_alloc_spec(codec, 0x0b);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004515 if (err < 0)
Takashi Iwai3de95172012-05-07 18:03:15 +02004516 return err;
4517
4518 spec = codec->spec;
Takashi Iwai08c189f2012-12-19 15:22:24 +01004519 spec->gen.shared_mic_vref_pin = 0x18;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004520
Takashi Iwai1727a772013-01-10 09:52:52 +01004521 snd_hda_pick_fixup(codec, alc269_fixup_models,
Herton Ronaldo Krzesinski9f720bb2012-09-27 10:38:14 -03004522 alc269_fixup_tbl, alc269_fixups);
Takashi Iwai1727a772013-01-10 09:52:52 +01004523 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
Herton Ronaldo Krzesinski9f720bb2012-09-27 10:38:14 -03004524
4525 alc_auto_parse_customize_define(codec);
4526
Takashi Iwai7504b6c2013-03-18 11:25:51 +01004527 if (has_cdefine_beep(codec))
4528 spec->gen.beep_nid = 0x01;
4529
Kailang Yang065380f2013-01-10 10:25:48 +01004530 switch (codec->vendor_id) {
4531 case 0x10ec0269:
Takashi Iwai1d045db2011-07-07 18:23:21 +02004532 spec->codec_variant = ALC269_TYPE_ALC269VA;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02004533 switch (alc_get_coef0(codec) & 0x00f0) {
4534 case 0x0010:
Takashi Iwai1d045db2011-07-07 18:23:21 +02004535 if (codec->bus->pci->subsystem_vendor == 0x1025 &&
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004536 spec->cdefine.platform_type == 1)
Takashi Iwai20ca0c32011-10-17 16:00:35 +02004537 err = alc_codec_rename(codec, "ALC271X");
Takashi Iwai1d045db2011-07-07 18:23:21 +02004538 spec->codec_variant = ALC269_TYPE_ALC269VB;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02004539 break;
4540 case 0x0020:
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004541 if (codec->bus->pci->subsystem_vendor == 0x17aa &&
4542 codec->bus->pci->subsystem_device == 0x21f3)
Takashi Iwai20ca0c32011-10-17 16:00:35 +02004543 err = alc_codec_rename(codec, "ALC3202");
Takashi Iwai1d045db2011-07-07 18:23:21 +02004544 spec->codec_variant = ALC269_TYPE_ALC269VC;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02004545 break;
Kailang Yangadcc70b2012-05-25 08:08:38 +02004546 case 0x0030:
4547 spec->codec_variant = ALC269_TYPE_ALC269VD;
4548 break;
Takashi Iwai1bb7e432011-10-17 16:50:59 +02004549 default:
Takashi Iwai1d045db2011-07-07 18:23:21 +02004550 alc_fix_pll_init(codec, 0x20, 0x04, 15);
Takashi Iwai1bb7e432011-10-17 16:50:59 +02004551 }
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004552 if (err < 0)
4553 goto error;
Takashi Iwai546bb672012-03-07 08:37:19 +01004554 spec->init_hook = alc269_fill_coef;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004555 alc269_fill_coef(codec);
Kailang Yang065380f2013-01-10 10:25:48 +01004556 break;
4557
4558 case 0x10ec0280:
4559 case 0x10ec0290:
4560 spec->codec_variant = ALC269_TYPE_ALC280;
4561 break;
4562 case 0x10ec0282:
Kailang Yang065380f2013-01-10 10:25:48 +01004563 spec->codec_variant = ALC269_TYPE_ALC282;
4564 break;
Kailang Yang2af02be2013-08-22 10:03:50 +02004565 case 0x10ec0233:
4566 case 0x10ec0283:
4567 spec->codec_variant = ALC269_TYPE_ALC283;
4568 spec->shutup = alc283_shutup;
4569 spec->init_hook = alc283_init;
4570 break;
Kailang Yang065380f2013-01-10 10:25:48 +01004571 case 0x10ec0284:
4572 case 0x10ec0292:
4573 spec->codec_variant = ALC269_TYPE_ALC284;
4574 break;
Kailang Yang161ebf22013-10-24 11:36:33 +02004575 case 0x10ec0285:
4576 case 0x10ec0293:
4577 spec->codec_variant = ALC269_TYPE_ALC285;
4578 break;
Kailang Yang7fc7d042013-04-25 11:04:43 +02004579 case 0x10ec0286:
4580 spec->codec_variant = ALC269_TYPE_ALC286;
4581 break;
Kailang Yang1d04c9d2013-10-24 11:35:18 +02004582 case 0x10ec0255:
4583 spec->codec_variant = ALC269_TYPE_ALC255;
4584 break;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004585 }
4586
Kailang Yangad60d502013-06-28 12:03:01 +02004587 if (snd_hda_codec_read(codec, 0x51, 0, AC_VERB_PARAMETERS, 0) == 0x10ec5505) {
Kailang Yang97a26572013-11-29 00:35:26 -05004588 spec->has_alc5505_dsp = 1;
Kailang Yangad60d502013-06-28 12:03:01 +02004589 spec->init_hook = alc5505_dsp_init;
4590 }
4591
Takashi Iwaia4297b52011-08-23 18:40:12 +02004592 /* automatic parse from the BIOS config */
4593 err = alc269_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004594 if (err < 0)
4595 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004596
Takashi Iwai7504b6c2013-03-18 11:25:51 +01004597 if (!spec->gen.no_analog && spec->gen.beep_nid)
Takashi Iwai1d045db2011-07-07 18:23:21 +02004598 set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
4599
Takashi Iwai1d045db2011-07-07 18:23:21 +02004600 codec->patch_ops = alc_patch_ops;
Takashi Iwai2a439522011-07-26 09:52:50 +02004601#ifdef CONFIG_PM
Kailang Yangad60d502013-06-28 12:03:01 +02004602 codec->patch_ops.suspend = alc269_suspend;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004603 codec->patch_ops.resume = alc269_resume;
4604#endif
Kailang Yangc5177c82013-07-24 14:39:49 +02004605 if (!spec->shutup)
4606 spec->shutup = alc269_shutup;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004607
Takashi Iwai1727a772013-01-10 09:52:52 +01004608 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
Takashi Iwai589876e2012-02-20 15:47:55 +01004609
Takashi Iwai1d045db2011-07-07 18:23:21 +02004610 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004611
4612 error:
4613 alc_free(codec);
4614 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004615}
4616
4617/*
4618 * ALC861
4619 */
4620
Takashi Iwai1d045db2011-07-07 18:23:21 +02004621static int alc861_parse_auto_config(struct hda_codec *codec)
4622{
Takashi Iwai1d045db2011-07-07 18:23:21 +02004623 static const hda_nid_t alc861_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004624 static const hda_nid_t alc861_ssids[] = { 0x0e, 0x0f, 0x0b, 0 };
4625 return alc_parse_auto_config(codec, alc861_ignore, alc861_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004626}
4627
Takashi Iwai1d045db2011-07-07 18:23:21 +02004628/* Pin config fixes */
4629enum {
Takashi Iwaie652f4c2012-02-13 11:56:25 +01004630 ALC861_FIXUP_FSC_AMILO_PI1505,
4631 ALC861_FIXUP_AMP_VREF_0F,
4632 ALC861_FIXUP_NO_JACK_DETECT,
4633 ALC861_FIXUP_ASUS_A6RP,
Takashi Iwai6ddf0fd2013-11-29 12:47:34 +01004634 ALC660_FIXUP_ASUS_W7J,
Takashi Iwai1d045db2011-07-07 18:23:21 +02004635};
4636
Takashi Iwai31150f22012-01-30 10:54:08 +01004637/* On some laptops, VREF of pin 0x0f is abused for controlling the main amp */
4638static void alc861_fixup_asus_amp_vref_0f(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +01004639 const struct hda_fixup *fix, int action)
Takashi Iwai31150f22012-01-30 10:54:08 +01004640{
4641 struct alc_spec *spec = codec->spec;
4642 unsigned int val;
4643
Takashi Iwai1727a772013-01-10 09:52:52 +01004644 if (action != HDA_FIXUP_ACT_INIT)
Takashi Iwai31150f22012-01-30 10:54:08 +01004645 return;
Takashi Iwaid3f02d62013-01-10 10:12:22 +01004646 val = snd_hda_codec_get_pin_target(codec, 0x0f);
Takashi Iwai31150f22012-01-30 10:54:08 +01004647 if (!(val & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN)))
4648 val |= AC_PINCTL_IN_EN;
4649 val |= AC_PINCTL_VREF_50;
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02004650 snd_hda_set_pin_ctl(codec, 0x0f, val);
Takashi Iwai08c189f2012-12-19 15:22:24 +01004651 spec->gen.keep_vref_in_automute = 1;
Takashi Iwai31150f22012-01-30 10:54:08 +01004652}
4653
Takashi Iwaie652f4c2012-02-13 11:56:25 +01004654/* suppress the jack-detection */
4655static void alc_fixup_no_jack_detect(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +01004656 const struct hda_fixup *fix, int action)
Takashi Iwaie652f4c2012-02-13 11:56:25 +01004657{
Takashi Iwai1727a772013-01-10 09:52:52 +01004658 if (action == HDA_FIXUP_ACT_PRE_PROBE)
Takashi Iwaie652f4c2012-02-13 11:56:25 +01004659 codec->no_jack_detect = 1;
Jesper Juhl7d7eb9e2012-04-12 22:11:25 +02004660}
Takashi Iwaie652f4c2012-02-13 11:56:25 +01004661
Takashi Iwai1727a772013-01-10 09:52:52 +01004662static const struct hda_fixup alc861_fixups[] = {
Takashi Iwaie652f4c2012-02-13 11:56:25 +01004663 [ALC861_FIXUP_FSC_AMILO_PI1505] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01004664 .type = HDA_FIXUP_PINS,
4665 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004666 { 0x0b, 0x0221101f }, /* HP */
4667 { 0x0f, 0x90170310 }, /* speaker */
4668 { }
4669 }
4670 },
Takashi Iwaie652f4c2012-02-13 11:56:25 +01004671 [ALC861_FIXUP_AMP_VREF_0F] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01004672 .type = HDA_FIXUP_FUNC,
Takashi Iwai31150f22012-01-30 10:54:08 +01004673 .v.func = alc861_fixup_asus_amp_vref_0f,
Takashi Iwai3b25eb62012-01-25 09:55:46 +01004674 },
Takashi Iwaie652f4c2012-02-13 11:56:25 +01004675 [ALC861_FIXUP_NO_JACK_DETECT] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01004676 .type = HDA_FIXUP_FUNC,
Takashi Iwaie652f4c2012-02-13 11:56:25 +01004677 .v.func = alc_fixup_no_jack_detect,
4678 },
4679 [ALC861_FIXUP_ASUS_A6RP] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01004680 .type = HDA_FIXUP_FUNC,
Takashi Iwaie652f4c2012-02-13 11:56:25 +01004681 .v.func = alc861_fixup_asus_amp_vref_0f,
4682 .chained = true,
4683 .chain_id = ALC861_FIXUP_NO_JACK_DETECT,
Takashi Iwai6ddf0fd2013-11-29 12:47:34 +01004684 },
4685 [ALC660_FIXUP_ASUS_W7J] = {
4686 .type = HDA_FIXUP_VERBS,
4687 .v.verbs = (const struct hda_verb[]) {
4688 /* ASUS W7J needs a magic pin setup on unused NID 0x10
4689 * for enabling outputs
4690 */
4691 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
4692 { }
4693 },
Takashi Iwaie652f4c2012-02-13 11:56:25 +01004694 }
Takashi Iwai1d045db2011-07-07 18:23:21 +02004695};
4696
4697static const struct snd_pci_quirk alc861_fixup_tbl[] = {
Takashi Iwai6ddf0fd2013-11-29 12:47:34 +01004698 SND_PCI_QUIRK(0x1043, 0x1253, "ASUS W7J", ALC660_FIXUP_ASUS_W7J),
Takashi Iwaie7ca2372013-12-02 15:27:19 +01004699 SND_PCI_QUIRK(0x1043, 0x1263, "ASUS Z35HL", ALC660_FIXUP_ASUS_W7J),
Takashi Iwaie652f4c2012-02-13 11:56:25 +01004700 SND_PCI_QUIRK(0x1043, 0x1393, "ASUS A6Rp", ALC861_FIXUP_ASUS_A6RP),
4701 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS laptop", ALC861_FIXUP_AMP_VREF_0F),
4702 SND_PCI_QUIRK(0x1462, 0x7254, "HP DX2200", ALC861_FIXUP_NO_JACK_DETECT),
4703 SND_PCI_QUIRK(0x1584, 0x2b01, "Haier W18", ALC861_FIXUP_AMP_VREF_0F),
4704 SND_PCI_QUIRK(0x1584, 0x0000, "Uniwill ECS M31EI", ALC861_FIXUP_AMP_VREF_0F),
4705 SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", ALC861_FIXUP_FSC_AMILO_PI1505),
Takashi Iwai1d045db2011-07-07 18:23:21 +02004706 {}
4707};
4708
4709/*
4710 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02004711static int patch_alc861(struct hda_codec *codec)
4712{
4713 struct alc_spec *spec;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004714 int err;
4715
Takashi Iwai3de95172012-05-07 18:03:15 +02004716 err = alc_alloc_spec(codec, 0x15);
4717 if (err < 0)
4718 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004719
Takashi Iwai3de95172012-05-07 18:03:15 +02004720 spec = codec->spec;
Takashi Iwai7504b6c2013-03-18 11:25:51 +01004721 spec->gen.beep_nid = 0x23;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004722
Takashi Iwai1727a772013-01-10 09:52:52 +01004723 snd_hda_pick_fixup(codec, NULL, alc861_fixup_tbl, alc861_fixups);
4724 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004725
Takashi Iwaicb4e4822011-08-23 17:34:25 +02004726 /* automatic parse from the BIOS config */
4727 err = alc861_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004728 if (err < 0)
4729 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004730
Takashi Iwai7504b6c2013-03-18 11:25:51 +01004731 if (!spec->gen.no_analog)
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004732 set_beep_amp(spec, 0x23, 0, HDA_OUTPUT);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004733
Takashi Iwai1d045db2011-07-07 18:23:21 +02004734 codec->patch_ops = alc_patch_ops;
Takashi Iwai83012a72012-08-24 18:38:08 +02004735#ifdef CONFIG_PM
Takashi Iwaicb4e4822011-08-23 17:34:25 +02004736 spec->power_hook = alc_power_eapd;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004737#endif
4738
Takashi Iwai1727a772013-01-10 09:52:52 +01004739 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
Takashi Iwai589876e2012-02-20 15:47:55 +01004740
Takashi Iwai1d045db2011-07-07 18:23:21 +02004741 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004742
4743 error:
4744 alc_free(codec);
4745 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004746}
4747
4748/*
4749 * ALC861-VD support
4750 *
4751 * Based on ALC882
4752 *
4753 * In addition, an independent DAC
4754 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02004755static int alc861vd_parse_auto_config(struct hda_codec *codec)
4756{
Takashi Iwai1d045db2011-07-07 18:23:21 +02004757 static const hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004758 static const hda_nid_t alc861vd_ssids[] = { 0x15, 0x1b, 0x14, 0 };
4759 return alc_parse_auto_config(codec, alc861vd_ignore, alc861vd_ssids);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004760}
4761
Takashi Iwai1d045db2011-07-07 18:23:21 +02004762enum {
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02004763 ALC660VD_FIX_ASUS_GPIO1,
4764 ALC861VD_FIX_DALLAS,
Takashi Iwai1d045db2011-07-07 18:23:21 +02004765};
4766
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02004767/* exclude VREF80 */
4768static void alc861vd_fixup_dallas(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +01004769 const struct hda_fixup *fix, int action)
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02004770{
Takashi Iwai1727a772013-01-10 09:52:52 +01004771 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
Takashi Iwaib78562b2012-12-17 20:06:49 +01004772 snd_hda_override_pin_caps(codec, 0x18, 0x00000734);
4773 snd_hda_override_pin_caps(codec, 0x19, 0x0000073c);
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02004774 }
4775}
4776
Takashi Iwai1727a772013-01-10 09:52:52 +01004777static const struct hda_fixup alc861vd_fixups[] = {
Takashi Iwai1d045db2011-07-07 18:23:21 +02004778 [ALC660VD_FIX_ASUS_GPIO1] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01004779 .type = HDA_FIXUP_VERBS,
Takashi Iwai1d045db2011-07-07 18:23:21 +02004780 .v.verbs = (const struct hda_verb[]) {
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02004781 /* reset GPIO1 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02004782 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
4783 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
4784 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
4785 { }
4786 }
4787 },
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02004788 [ALC861VD_FIX_DALLAS] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01004789 .type = HDA_FIXUP_FUNC,
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02004790 .v.func = alc861vd_fixup_dallas,
4791 },
Takashi Iwai1d045db2011-07-07 18:23:21 +02004792};
4793
4794static const struct snd_pci_quirk alc861vd_fixup_tbl[] = {
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02004795 SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_FIX_DALLAS),
Takashi Iwai1d045db2011-07-07 18:23:21 +02004796 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1),
Takashi Iwai8fdcb6f2011-08-23 17:28:55 +02004797 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_FIX_DALLAS),
Takashi Iwai1d045db2011-07-07 18:23:21 +02004798 {}
4799};
4800
Takashi Iwai1d045db2011-07-07 18:23:21 +02004801/*
4802 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02004803static int patch_alc861vd(struct hda_codec *codec)
4804{
4805 struct alc_spec *spec;
Takashi Iwaicb4e4822011-08-23 17:34:25 +02004806 int err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004807
Takashi Iwai3de95172012-05-07 18:03:15 +02004808 err = alc_alloc_spec(codec, 0x0b);
4809 if (err < 0)
4810 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004811
Takashi Iwai3de95172012-05-07 18:03:15 +02004812 spec = codec->spec;
Takashi Iwai7504b6c2013-03-18 11:25:51 +01004813 spec->gen.beep_nid = 0x23;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004814
Takashi Iwai1727a772013-01-10 09:52:52 +01004815 snd_hda_pick_fixup(codec, NULL, alc861vd_fixup_tbl, alc861vd_fixups);
4816 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004817
Takashi Iwaicb4e4822011-08-23 17:34:25 +02004818 /* automatic parse from the BIOS config */
4819 err = alc861vd_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004820 if (err < 0)
4821 goto error;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004822
Takashi Iwai7504b6c2013-03-18 11:25:51 +01004823 if (!spec->gen.no_analog)
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004824 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
Takashi Iwai1d045db2011-07-07 18:23:21 +02004825
Takashi Iwai1d045db2011-07-07 18:23:21 +02004826 codec->patch_ops = alc_patch_ops;
4827
Takashi Iwai1d045db2011-07-07 18:23:21 +02004828 spec->shutup = alc_eapd_shutup;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004829
Takashi Iwai1727a772013-01-10 09:52:52 +01004830 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
Takashi Iwai589876e2012-02-20 15:47:55 +01004831
Takashi Iwai1d045db2011-07-07 18:23:21 +02004832 return 0;
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02004833
4834 error:
4835 alc_free(codec);
4836 return err;
Takashi Iwai1d045db2011-07-07 18:23:21 +02004837}
4838
4839/*
4840 * ALC662 support
4841 *
4842 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
4843 * configuration. Each pin widget can choose any input DACs and a mixer.
4844 * Each ADC is connected from a mixer of all inputs. This makes possible
4845 * 6-channel independent captures.
4846 *
4847 * In addition, an independent DAC for the multi-playback (not used in this
4848 * driver yet).
4849 */
Takashi Iwai1d045db2011-07-07 18:23:21 +02004850
4851/*
4852 * BIOS auto configuration
4853 */
4854
Kailang Yangbc9f98a2007-04-12 13:06:07 +02004855static int alc662_parse_auto_config(struct hda_codec *codec)
4856{
Takashi Iwai4c6d72d2011-05-02 11:30:18 +02004857 static const hda_nid_t alc662_ignore[] = { 0x1d, 0 };
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004858 static const hda_nid_t alc663_ssids[] = { 0x15, 0x1b, 0x14, 0x21 };
4859 static const hda_nid_t alc662_ssids[] = { 0x15, 0x1b, 0x14, 0 };
4860 const hda_nid_t *ssids;
Takashi Iwaiee979a142008-09-02 15:42:20 +02004861
Kailang Yang6227cdc2010-02-25 08:36:52 +01004862 if (codec->vendor_id == 0x10ec0272 || codec->vendor_id == 0x10ec0663 ||
Rainer Koenig1d87caa2013-04-04 08:40:38 +02004863 codec->vendor_id == 0x10ec0665 || codec->vendor_id == 0x10ec0670 ||
4864 codec->vendor_id == 0x10ec0671)
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004865 ssids = alc663_ssids;
Kailang Yang6227cdc2010-02-25 08:36:52 +01004866 else
Takashi Iwai3e6179b2011-07-08 16:55:13 +02004867 ssids = alc662_ssids;
4868 return alc_parse_auto_config(codec, alc662_ignore, ssids);
Kailang Yangbc9f98a2007-04-12 13:06:07 +02004869}
4870
Todd Broch6be79482010-12-07 16:51:05 -08004871static void alc272_fixup_mario(struct hda_codec *codec,
Takashi Iwai1727a772013-01-10 09:52:52 +01004872 const struct hda_fixup *fix, int action)
Takashi Iwai6fc398c2011-01-13 14:36:37 +01004873{
Takashi Iwai9bb1f062013-01-10 17:14:29 +01004874 if (action != HDA_FIXUP_ACT_PRE_PROBE)
Takashi Iwai6fc398c2011-01-13 14:36:37 +01004875 return;
Todd Broch6be79482010-12-07 16:51:05 -08004876 if (snd_hda_override_amp_caps(codec, 0x2, HDA_OUTPUT,
4877 (0x3b << AC_AMPCAP_OFFSET_SHIFT) |
4878 (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT) |
4879 (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT) |
4880 (0 << AC_AMPCAP_MUTE_SHIFT)))
4881 printk(KERN_WARNING
4882 "hda_codec: failed to override amp caps for NID 0x2\n");
4883}
4884
Takashi Iwai8e383952013-10-30 17:41:12 +01004885static const struct snd_pcm_chmap_elem asus_pcm_2_1_chmaps[] = {
4886 { .channels = 2,
4887 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } },
4888 { .channels = 4,
4889 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
4890 SNDRV_CHMAP_NA, SNDRV_CHMAP_LFE } }, /* LFE only on right */
4891 { }
4892};
4893
4894/* override the 2.1 chmap */
Takashi Iwaieb9ca3a2013-11-28 15:24:34 +01004895static void alc_fixup_bass_chmap(struct hda_codec *codec,
Takashi Iwai8e383952013-10-30 17:41:12 +01004896 const struct hda_fixup *fix, int action)
4897{
4898 if (action == HDA_FIXUP_ACT_BUILD) {
4899 struct alc_spec *spec = codec->spec;
4900 spec->gen.pcm_rec[0].stream[0].chmap = asus_pcm_2_1_chmaps;
4901 }
4902}
4903
David Henningsson6cb3b702010-09-09 08:51:44 +02004904enum {
Daniel T Chen2df03512010-10-10 22:39:28 -04004905 ALC662_FIXUP_ASPIRE,
David Henningsson6cb3b702010-09-09 08:51:44 +02004906 ALC662_FIXUP_IDEAPAD,
Todd Broch6be79482010-12-07 16:51:05 -08004907 ALC272_FIXUP_MARIO,
Anisse Astierd2ebd472011-01-20 12:36:21 +01004908 ALC662_FIXUP_CZC_P10T,
David Henningsson94024cd2011-04-29 14:10:55 +02004909 ALC662_FIXUP_SKU_IGNORE,
Takashi Iwaie59ea3e2011-06-29 17:21:00 +02004910 ALC662_FIXUP_HP_RP5800,
Takashi Iwai53c334a2011-08-23 18:27:14 +02004911 ALC662_FIXUP_ASUS_MODE1,
4912 ALC662_FIXUP_ASUS_MODE2,
4913 ALC662_FIXUP_ASUS_MODE3,
4914 ALC662_FIXUP_ASUS_MODE4,
4915 ALC662_FIXUP_ASUS_MODE5,
4916 ALC662_FIXUP_ASUS_MODE6,
4917 ALC662_FIXUP_ASUS_MODE7,
4918 ALC662_FIXUP_ASUS_MODE8,
Takashi Iwai1565cc32012-02-13 12:03:25 +01004919 ALC662_FIXUP_NO_JACK_DETECT,
David Henningssonedfe3bf2012-06-12 13:15:12 +02004920 ALC662_FIXUP_ZOTAC_Z68,
Takashi Iwai125821a2012-06-22 14:30:29 +02004921 ALC662_FIXUP_INV_DMIC,
David Henningsson73bdd592013-04-15 15:44:14 +02004922 ALC668_FIXUP_DELL_MIC_NO_PRESENCE,
4923 ALC668_FIXUP_HEADSET_MODE,
Takashi Iwai8e383952013-10-30 17:41:12 +01004924 ALC662_FIXUP_BASS_CHMAP,
Takashi Iwaia30c9aa2013-11-21 08:00:20 +01004925 ALC662_FIXUP_BASS_1A,
4926 ALC662_FIXUP_BASS_1A_CHMAP,
David Henningsson6cb3b702010-09-09 08:51:44 +02004927};
4928
Takashi Iwai1727a772013-01-10 09:52:52 +01004929static const struct hda_fixup alc662_fixups[] = {
Daniel T Chen2df03512010-10-10 22:39:28 -04004930 [ALC662_FIXUP_ASPIRE] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01004931 .type = HDA_FIXUP_PINS,
4932 .v.pins = (const struct hda_pintbl[]) {
Daniel T Chen2df03512010-10-10 22:39:28 -04004933 { 0x15, 0x99130112 }, /* subwoofer */
4934 { }
4935 }
4936 },
David Henningsson6cb3b702010-09-09 08:51:44 +02004937 [ALC662_FIXUP_IDEAPAD] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01004938 .type = HDA_FIXUP_PINS,
4939 .v.pins = (const struct hda_pintbl[]) {
David Henningsson6cb3b702010-09-09 08:51:44 +02004940 { 0x17, 0x99130112 }, /* subwoofer */
4941 { }
4942 }
4943 },
Todd Broch6be79482010-12-07 16:51:05 -08004944 [ALC272_FIXUP_MARIO] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01004945 .type = HDA_FIXUP_FUNC,
Takashi Iwaib5bfbc62011-01-13 14:22:32 +01004946 .v.func = alc272_fixup_mario,
Anisse Astierd2ebd472011-01-20 12:36:21 +01004947 },
4948 [ALC662_FIXUP_CZC_P10T] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01004949 .type = HDA_FIXUP_VERBS,
Anisse Astierd2ebd472011-01-20 12:36:21 +01004950 .v.verbs = (const struct hda_verb[]) {
4951 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
4952 {}
4953 }
4954 },
David Henningsson94024cd2011-04-29 14:10:55 +02004955 [ALC662_FIXUP_SKU_IGNORE] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01004956 .type = HDA_FIXUP_FUNC,
Takashi Iwai23d30f22012-05-07 17:17:32 +02004957 .v.func = alc_fixup_sku_ignore,
Takashi Iwaic6b35872011-03-28 12:05:31 +02004958 },
Takashi Iwaie59ea3e2011-06-29 17:21:00 +02004959 [ALC662_FIXUP_HP_RP5800] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01004960 .type = HDA_FIXUP_PINS,
4961 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwaie59ea3e2011-06-29 17:21:00 +02004962 { 0x14, 0x0221201f }, /* HP out */
4963 { }
4964 },
4965 .chained = true,
4966 .chain_id = ALC662_FIXUP_SKU_IGNORE
4967 },
Takashi Iwai53c334a2011-08-23 18:27:14 +02004968 [ALC662_FIXUP_ASUS_MODE1] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01004969 .type = HDA_FIXUP_PINS,
4970 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai53c334a2011-08-23 18:27:14 +02004971 { 0x14, 0x99130110 }, /* speaker */
4972 { 0x18, 0x01a19c20 }, /* mic */
4973 { 0x19, 0x99a3092f }, /* int-mic */
4974 { 0x21, 0x0121401f }, /* HP out */
4975 { }
4976 },
4977 .chained = true,
4978 .chain_id = ALC662_FIXUP_SKU_IGNORE
4979 },
4980 [ALC662_FIXUP_ASUS_MODE2] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01004981 .type = HDA_FIXUP_PINS,
4982 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai2996bdb2011-08-18 16:02:24 +02004983 { 0x14, 0x99130110 }, /* speaker */
4984 { 0x18, 0x01a19820 }, /* mic */
4985 { 0x19, 0x99a3092f }, /* int-mic */
4986 { 0x1b, 0x0121401f }, /* HP out */
4987 { }
4988 },
Takashi Iwai53c334a2011-08-23 18:27:14 +02004989 .chained = true,
4990 .chain_id = ALC662_FIXUP_SKU_IGNORE
4991 },
4992 [ALC662_FIXUP_ASUS_MODE3] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01004993 .type = HDA_FIXUP_PINS,
4994 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai53c334a2011-08-23 18:27:14 +02004995 { 0x14, 0x99130110 }, /* speaker */
4996 { 0x15, 0x0121441f }, /* HP */
4997 { 0x18, 0x01a19840 }, /* mic */
4998 { 0x19, 0x99a3094f }, /* int-mic */
4999 { 0x21, 0x01211420 }, /* HP2 */
5000 { }
5001 },
5002 .chained = true,
5003 .chain_id = ALC662_FIXUP_SKU_IGNORE
5004 },
5005 [ALC662_FIXUP_ASUS_MODE4] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01005006 .type = HDA_FIXUP_PINS,
5007 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai53c334a2011-08-23 18:27:14 +02005008 { 0x14, 0x99130110 }, /* speaker */
5009 { 0x16, 0x99130111 }, /* speaker */
5010 { 0x18, 0x01a19840 }, /* mic */
5011 { 0x19, 0x99a3094f }, /* int-mic */
5012 { 0x21, 0x0121441f }, /* HP */
5013 { }
5014 },
5015 .chained = true,
5016 .chain_id = ALC662_FIXUP_SKU_IGNORE
5017 },
5018 [ALC662_FIXUP_ASUS_MODE5] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01005019 .type = HDA_FIXUP_PINS,
5020 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai53c334a2011-08-23 18:27:14 +02005021 { 0x14, 0x99130110 }, /* speaker */
5022 { 0x15, 0x0121441f }, /* HP */
5023 { 0x16, 0x99130111 }, /* speaker */
5024 { 0x18, 0x01a19840 }, /* mic */
5025 { 0x19, 0x99a3094f }, /* int-mic */
5026 { }
5027 },
5028 .chained = true,
5029 .chain_id = ALC662_FIXUP_SKU_IGNORE
5030 },
5031 [ALC662_FIXUP_ASUS_MODE6] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01005032 .type = HDA_FIXUP_PINS,
5033 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai53c334a2011-08-23 18:27:14 +02005034 { 0x14, 0x99130110 }, /* speaker */
5035 { 0x15, 0x01211420 }, /* HP2 */
5036 { 0x18, 0x01a19840 }, /* mic */
5037 { 0x19, 0x99a3094f }, /* int-mic */
5038 { 0x1b, 0x0121441f }, /* HP */
5039 { }
5040 },
5041 .chained = true,
5042 .chain_id = ALC662_FIXUP_SKU_IGNORE
5043 },
5044 [ALC662_FIXUP_ASUS_MODE7] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01005045 .type = HDA_FIXUP_PINS,
5046 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai53c334a2011-08-23 18:27:14 +02005047 { 0x14, 0x99130110 }, /* speaker */
5048 { 0x17, 0x99130111 }, /* speaker */
5049 { 0x18, 0x01a19840 }, /* mic */
5050 { 0x19, 0x99a3094f }, /* int-mic */
5051 { 0x1b, 0x01214020 }, /* HP */
5052 { 0x21, 0x0121401f }, /* HP */
5053 { }
5054 },
5055 .chained = true,
5056 .chain_id = ALC662_FIXUP_SKU_IGNORE
5057 },
5058 [ALC662_FIXUP_ASUS_MODE8] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01005059 .type = HDA_FIXUP_PINS,
5060 .v.pins = (const struct hda_pintbl[]) {
Takashi Iwai53c334a2011-08-23 18:27:14 +02005061 { 0x14, 0x99130110 }, /* speaker */
5062 { 0x12, 0x99a30970 }, /* int-mic */
5063 { 0x15, 0x01214020 }, /* HP */
5064 { 0x17, 0x99130111 }, /* speaker */
5065 { 0x18, 0x01a19840 }, /* mic */
5066 { 0x21, 0x0121401f }, /* HP */
5067 { }
5068 },
5069 .chained = true,
5070 .chain_id = ALC662_FIXUP_SKU_IGNORE
Takashi Iwai2996bdb2011-08-18 16:02:24 +02005071 },
Takashi Iwai1565cc32012-02-13 12:03:25 +01005072 [ALC662_FIXUP_NO_JACK_DETECT] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01005073 .type = HDA_FIXUP_FUNC,
Takashi Iwai1565cc32012-02-13 12:03:25 +01005074 .v.func = alc_fixup_no_jack_detect,
5075 },
David Henningssonedfe3bf2012-06-12 13:15:12 +02005076 [ALC662_FIXUP_ZOTAC_Z68] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01005077 .type = HDA_FIXUP_PINS,
5078 .v.pins = (const struct hda_pintbl[]) {
David Henningssonedfe3bf2012-06-12 13:15:12 +02005079 { 0x1b, 0x02214020 }, /* Front HP */
5080 { }
5081 }
5082 },
Takashi Iwai125821a2012-06-22 14:30:29 +02005083 [ALC662_FIXUP_INV_DMIC] = {
Takashi Iwai1727a772013-01-10 09:52:52 +01005084 .type = HDA_FIXUP_FUNC,
Takashi Iwai6e72aa52012-06-25 10:52:25 +02005085 .v.func = alc_fixup_inv_dmic_0x12,
Takashi Iwai125821a2012-06-22 14:30:29 +02005086 },
David Henningsson73bdd592013-04-15 15:44:14 +02005087 [ALC668_FIXUP_DELL_MIC_NO_PRESENCE] = {
5088 .type = HDA_FIXUP_PINS,
5089 .v.pins = (const struct hda_pintbl[]) {
5090 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
5091 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
5092 { }
5093 },
5094 .chained = true,
5095 .chain_id = ALC668_FIXUP_HEADSET_MODE
5096 },
5097 [ALC668_FIXUP_HEADSET_MODE] = {
5098 .type = HDA_FIXUP_FUNC,
5099 .v.func = alc_fixup_headset_mode_alc668,
5100 },
Takashi Iwai8e383952013-10-30 17:41:12 +01005101 [ALC662_FIXUP_BASS_CHMAP] = {
5102 .type = HDA_FIXUP_FUNC,
Takashi Iwaieb9ca3a2013-11-28 15:24:34 +01005103 .v.func = alc_fixup_bass_chmap,
Takashi Iwai8e383952013-10-30 17:41:12 +01005104 .chained = true,
5105 .chain_id = ALC662_FIXUP_ASUS_MODE4
5106 },
Takashi Iwaia30c9aa2013-11-21 08:00:20 +01005107 [ALC662_FIXUP_BASS_1A] = {
5108 .type = HDA_FIXUP_PINS,
5109 .v.pins = (const struct hda_pintbl[]) {
5110 {0x1a, 0x80106111}, /* bass speaker */
5111 {}
5112 },
5113 },
5114 [ALC662_FIXUP_BASS_1A_CHMAP] = {
5115 .type = HDA_FIXUP_FUNC,
Takashi Iwaieb9ca3a2013-11-28 15:24:34 +01005116 .v.func = alc_fixup_bass_chmap,
Takashi Iwaia30c9aa2013-11-21 08:00:20 +01005117 .chained = true,
5118 .chain_id = ALC662_FIXUP_BASS_1A,
5119 },
David Henningsson6cb3b702010-09-09 08:51:44 +02005120};
5121
Takashi Iwaia9111322011-05-02 11:30:18 +02005122static const struct snd_pci_quirk alc662_fixup_tbl[] = {
Takashi Iwai53c334a2011-08-23 18:27:14 +02005123 SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2),
Takashi Iwaid3d38352013-08-19 20:05:50 +02005124 SND_PCI_QUIRK(0x1025, 0x022f, "Acer Aspire One", ALC662_FIXUP_INV_DMIC),
David Henningssona6c47a82011-02-10 15:39:19 +01005125 SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE),
David Henningsson94024cd2011-04-29 14:10:55 +02005126 SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE),
Takashi Iwai125821a2012-06-22 14:30:29 +02005127 SND_PCI_QUIRK(0x1025, 0x0349, "eMachines eM250", ALC662_FIXUP_INV_DMIC),
Takashi Iwai18019282013-08-16 08:17:05 +02005128 SND_PCI_QUIRK(0x1025, 0x034a, "Gateway LT27", ALC662_FIXUP_INV_DMIC),
Daniel T Chen2df03512010-10-10 22:39:28 -04005129 SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE),
David Henningsson73bdd592013-04-15 15:44:14 +02005130 SND_PCI_QUIRK(0x1028, 0x05d8, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
5131 SND_PCI_QUIRK(0x1028, 0x05db, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
Hui Wang6c6eb422013-12-10 15:57:20 +08005132 SND_PCI_QUIRK(0x1028, 0x0623, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
Hui Wang7dca4bc2013-12-11 11:41:31 +08005133 SND_PCI_QUIRK(0x1028, 0x0624, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
David Henningsson09d20142013-11-20 11:43:30 +01005134 SND_PCI_QUIRK(0x1028, 0x0625, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
David Henningssonad8ff992013-11-07 09:28:59 +01005135 SND_PCI_QUIRK(0x1028, 0x0626, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
Hui Wang0dfb9802013-12-10 15:57:21 +08005136 SND_PCI_QUIRK(0x1028, 0x0628, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
Takashi Iwaie59ea3e2011-06-29 17:21:00 +02005137 SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800),
Takashi Iwaia30c9aa2013-11-21 08:00:20 +01005138 SND_PCI_QUIRK(0x1043, 0x11cd, "Asus N550", ALC662_FIXUP_BASS_1A_CHMAP),
Takashi Iwai8e383952013-10-30 17:41:12 +01005139 SND_PCI_QUIRK(0x1043, 0x1477, "ASUS N56VZ", ALC662_FIXUP_BASS_CHMAP),
5140 SND_PCI_QUIRK(0x1043, 0x1bf3, "ASUS N76VZ", ALC662_FIXUP_BASS_CHMAP),
Takashi Iwai1565cc32012-02-13 12:03:25 +01005141 SND_PCI_QUIRK(0x1043, 0x8469, "ASUS mobo", ALC662_FIXUP_NO_JACK_DETECT),
Takashi Iwai53c334a2011-08-23 18:27:14 +02005142 SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2),
Daniel T Chena0e90ac2010-11-20 10:20:35 -05005143 SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD),
Valentine Sinitsynd4118582010-10-01 22:24:08 +06005144 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD),
David Henningsson6cb3b702010-09-09 08:51:44 +02005145 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD),
David Henningssonedfe3bf2012-06-12 13:15:12 +02005146 SND_PCI_QUIRK(0x19da, 0xa130, "Zotac Z68", ALC662_FIXUP_ZOTAC_Z68),
Anisse Astierd2ebd472011-01-20 12:36:21 +01005147 SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T),
Takashi Iwai53c334a2011-08-23 18:27:14 +02005148
5149#if 0
5150 /* Below is a quirk table taken from the old code.
5151 * Basically the device should work as is without the fixup table.
5152 * If BIOS doesn't give a proper info, enable the corresponding
5153 * fixup entry.
Jesper Juhl7d7eb9e2012-04-12 22:11:25 +02005154 */
Takashi Iwai53c334a2011-08-23 18:27:14 +02005155 SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC662_FIXUP_ASUS_MODE1),
5156 SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC662_FIXUP_ASUS_MODE3),
5157 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC662_FIXUP_ASUS_MODE1),
5158 SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC662_FIXUP_ASUS_MODE3),
5159 SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
5160 SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5161 SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
5162 SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC662_FIXUP_ASUS_MODE1),
5163 SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC662_FIXUP_ASUS_MODE1),
5164 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5165 SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC662_FIXUP_ASUS_MODE7),
5166 SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC662_FIXUP_ASUS_MODE7),
5167 SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC662_FIXUP_ASUS_MODE8),
5168 SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC662_FIXUP_ASUS_MODE3),
5169 SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC662_FIXUP_ASUS_MODE1),
5170 SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5171 SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_FIXUP_ASUS_MODE2),
5172 SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC662_FIXUP_ASUS_MODE1),
5173 SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5174 SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
5175 SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
5176 SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5177 SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC662_FIXUP_ASUS_MODE1),
5178 SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC662_FIXUP_ASUS_MODE3),
5179 SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_FIXUP_ASUS_MODE2),
5180 SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5181 SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC662_FIXUP_ASUS_MODE5),
5182 SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
5183 SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5184 SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC662_FIXUP_ASUS_MODE1),
5185 SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5186 SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5187 SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC662_FIXUP_ASUS_MODE3),
5188 SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC662_FIXUP_ASUS_MODE3),
5189 SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC662_FIXUP_ASUS_MODE1),
5190 SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC662_FIXUP_ASUS_MODE1),
5191 SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC662_FIXUP_ASUS_MODE1),
5192 SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC662_FIXUP_ASUS_MODE1),
5193 SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC662_FIXUP_ASUS_MODE1),
5194 SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5195 SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_FIXUP_ASUS_MODE2),
5196 SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC662_FIXUP_ASUS_MODE1),
5197 SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
5198 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC662_FIXUP_ASUS_MODE3),
5199 SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC662_FIXUP_ASUS_MODE1),
5200 SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC662_FIXUP_ASUS_MODE1),
5201 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC662_FIXUP_ASUS_MODE1),
5202 SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_FIXUP_ASUS_MODE2),
5203 SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
5204 SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE4),
5205#endif
David Henningsson6cb3b702010-09-09 08:51:44 +02005206 {}
5207};
5208
Takashi Iwai1727a772013-01-10 09:52:52 +01005209static const struct hda_model_fixup alc662_fixup_models[] = {
Todd Broch6be79482010-12-07 16:51:05 -08005210 {.id = ALC272_FIXUP_MARIO, .name = "mario"},
Takashi Iwai53c334a2011-08-23 18:27:14 +02005211 {.id = ALC662_FIXUP_ASUS_MODE1, .name = "asus-mode1"},
5212 {.id = ALC662_FIXUP_ASUS_MODE2, .name = "asus-mode2"},
5213 {.id = ALC662_FIXUP_ASUS_MODE3, .name = "asus-mode3"},
5214 {.id = ALC662_FIXUP_ASUS_MODE4, .name = "asus-mode4"},
5215 {.id = ALC662_FIXUP_ASUS_MODE5, .name = "asus-mode5"},
5216 {.id = ALC662_FIXUP_ASUS_MODE6, .name = "asus-mode6"},
5217 {.id = ALC662_FIXUP_ASUS_MODE7, .name = "asus-mode7"},
5218 {.id = ALC662_FIXUP_ASUS_MODE8, .name = "asus-mode8"},
Takashi Iwai6e72aa52012-06-25 10:52:25 +02005219 {.id = ALC662_FIXUP_INV_DMIC, .name = "inv-dmic"},
David Henningssone32aa852013-06-17 11:04:02 +02005220 {.id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE, .name = "dell-headset-multi"},
Todd Broch6be79482010-12-07 16:51:05 -08005221 {}
5222};
David Henningsson6cb3b702010-09-09 08:51:44 +02005223
Kailang Yang8663ff72012-06-29 09:35:52 +02005224static void alc662_fill_coef(struct hda_codec *codec)
5225{
5226 int val, coef;
5227
5228 coef = alc_get_coef0(codec);
5229
5230 switch (codec->vendor_id) {
5231 case 0x10ec0662:
5232 if ((coef & 0x00f0) == 0x0030) {
5233 val = alc_read_coef_idx(codec, 0x4); /* EAPD Ctrl */
5234 alc_write_coef_idx(codec, 0x4, val & ~(1<<10));
5235 }
5236 break;
5237 case 0x10ec0272:
5238 case 0x10ec0273:
5239 case 0x10ec0663:
5240 case 0x10ec0665:
5241 case 0x10ec0670:
5242 case 0x10ec0671:
5243 case 0x10ec0672:
5244 val = alc_read_coef_idx(codec, 0xd); /* EAPD Ctrl */
5245 alc_write_coef_idx(codec, 0xd, val | (1<<14));
5246 break;
5247 }
5248}
David Henningsson6cb3b702010-09-09 08:51:44 +02005249
Takashi Iwai1d045db2011-07-07 18:23:21 +02005250/*
5251 */
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005252static int patch_alc662(struct hda_codec *codec)
5253{
5254 struct alc_spec *spec;
Takashi Iwai3de95172012-05-07 18:03:15 +02005255 int err;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005256
Takashi Iwai3de95172012-05-07 18:03:15 +02005257 err = alc_alloc_spec(codec, 0x0b);
5258 if (err < 0)
5259 return err;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005260
Takashi Iwai3de95172012-05-07 18:03:15 +02005261 spec = codec->spec;
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02005262
Takashi Iwai53c334a2011-08-23 18:27:14 +02005263 /* handle multiple HPs as is */
5264 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
5265
Takashi Iwai2c3bf9a2008-06-04 12:39:38 +02005266 alc_fix_pll_init(codec, 0x20, 0x04, 15);
5267
Kailang Yang8663ff72012-06-29 09:35:52 +02005268 spec->init_hook = alc662_fill_coef;
5269 alc662_fill_coef(codec);
5270
Takashi Iwai1727a772013-01-10 09:52:52 +01005271 snd_hda_pick_fixup(codec, alc662_fixup_models,
Takashi Iwai8e5a0502012-06-21 15:49:33 +02005272 alc662_fixup_tbl, alc662_fixups);
Takashi Iwai1727a772013-01-10 09:52:52 +01005273 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
Takashi Iwai8e5a0502012-06-21 15:49:33 +02005274
5275 alc_auto_parse_customize_define(codec);
5276
Takashi Iwai7504b6c2013-03-18 11:25:51 +01005277 if (has_cdefine_beep(codec))
5278 spec->gen.beep_nid = 0x01;
5279
Takashi Iwai1bb7e432011-10-17 16:50:59 +02005280 if ((alc_get_coef0(codec) & (1 << 14)) &&
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005281 codec->bus->pci->subsystem_vendor == 0x1025 &&
5282 spec->cdefine.platform_type == 1) {
Wei Yongjun6134b1a2013-04-18 11:12:59 +08005283 err = alc_codec_rename(codec, "ALC272X");
5284 if (err < 0)
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005285 goto error;
Takashi Iwai20ca0c32011-10-17 16:00:35 +02005286 }
Kailang Yang274693f2009-12-03 10:07:50 +01005287
Takashi Iwaib9c51062011-08-24 18:08:07 +02005288 /* automatic parse from the BIOS config */
5289 err = alc662_parse_auto_config(codec);
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005290 if (err < 0)
5291 goto error;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005292
Takashi Iwai7504b6c2013-03-18 11:25:51 +01005293 if (!spec->gen.no_analog && spec->gen.beep_nid) {
Kailang Yangda00c242010-03-19 11:23:45 +01005294 switch (codec->vendor_id) {
5295 case 0x10ec0662:
5296 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
5297 break;
5298 case 0x10ec0272:
5299 case 0x10ec0663:
5300 case 0x10ec0665:
Kailang Yang9ad54542013-11-26 15:41:40 +08005301 case 0x10ec0668:
Kailang Yangda00c242010-03-19 11:23:45 +01005302 set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
5303 break;
5304 case 0x10ec0273:
5305 set_beep_amp(spec, 0x0b, 0x03, HDA_INPUT);
5306 break;
5307 }
Kailang Yangcec27c82010-02-04 14:18:18 +01005308 }
Takashi Iwai2134ea42008-01-10 16:53:55 +01005309
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005310 codec->patch_ops = alc_patch_ops;
Takashi Iwai1c716152011-04-07 10:37:16 +02005311 spec->shutup = alc_eapd_shutup;
David Henningsson6cb3b702010-09-09 08:51:44 +02005312
Takashi Iwai1727a772013-01-10 09:52:52 +01005313 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
Takashi Iwai589876e2012-02-20 15:47:55 +01005314
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005315 return 0;
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005316
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005317 error:
5318 alc_free(codec);
5319 return err;
Kailang Yangb478b992011-05-18 11:51:15 +02005320}
5321
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005322/*
Kailang Yangd1eb57f2010-06-23 16:25:26 +02005323 * ALC680 support
5324 */
Kailang Yangd1eb57f2010-06-23 16:25:26 +02005325
Kailang Yangd1eb57f2010-06-23 16:25:26 +02005326static int alc680_parse_auto_config(struct hda_codec *codec)
5327{
Takashi Iwai3e6179b2011-07-08 16:55:13 +02005328 return alc_parse_auto_config(codec, NULL, NULL);
Kailang Yangd1eb57f2010-06-23 16:25:26 +02005329}
5330
Kailang Yangd1eb57f2010-06-23 16:25:26 +02005331/*
Kailang Yangd1eb57f2010-06-23 16:25:26 +02005332 */
Kailang Yangd1eb57f2010-06-23 16:25:26 +02005333static int patch_alc680(struct hda_codec *codec)
5334{
Kailang Yangd1eb57f2010-06-23 16:25:26 +02005335 int err;
5336
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02005337 /* ALC680 has no aa-loopback mixer */
Takashi Iwai3de95172012-05-07 18:03:15 +02005338 err = alc_alloc_spec(codec, 0);
5339 if (err < 0)
5340 return err;
Takashi Iwai1f0f4b82011-06-27 10:52:59 +02005341
Takashi Iwai1ebec5f2011-08-15 13:21:48 +02005342 /* automatic parse from the BIOS config */
5343 err = alc680_parse_auto_config(codec);
5344 if (err < 0) {
5345 alc_free(codec);
5346 return err;
Kailang Yangd1eb57f2010-06-23 16:25:26 +02005347 }
5348
Kailang Yangd1eb57f2010-06-23 16:25:26 +02005349 codec->patch_ops = alc_patch_ops;
Kailang Yangd1eb57f2010-06-23 16:25:26 +02005350
5351 return 0;
5352}
5353
5354/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005355 * patch entries
5356 */
Takashi Iwaia9111322011-05-02 11:30:18 +02005357static const struct hda_codec_preset snd_hda_preset_realtek[] = {
Kailang Yang296f0332011-05-18 11:52:36 +02005358 { .id = 0x10ec0221, .name = "ALC221", .patch = patch_alc269 },
Kailang Yangba4c4d02013-11-26 15:17:50 +08005359 { .id = 0x10ec0231, .name = "ALC231", .patch = patch_alc269 },
Kailang Yang84dfd0a2013-03-07 09:19:38 +01005360 { .id = 0x10ec0233, .name = "ALC233", .patch = patch_alc269 },
Kailang Yang1d04c9d2013-10-24 11:35:18 +02005361 { .id = 0x10ec0255, .name = "ALC255", .patch = patch_alc269 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07005362 { .id = 0x10ec0260, .name = "ALC260", .patch = patch_alc260 },
Kailang Yangdf694da2005-12-05 19:42:22 +01005363 { .id = 0x10ec0262, .name = "ALC262", .patch = patch_alc262 },
Kailang Yangf6a92242007-12-13 16:52:54 +01005364 { .id = 0x10ec0267, .name = "ALC267", .patch = patch_alc268 },
Kailang Yanga361d842007-06-05 12:30:55 +02005365 { .id = 0x10ec0268, .name = "ALC268", .patch = patch_alc268 },
Kailang Yangf6a92242007-12-13 16:52:54 +01005366 { .id = 0x10ec0269, .name = "ALC269", .patch = patch_alc269 },
Kailang Yangebb83ee2009-12-17 12:23:00 +01005367 { .id = 0x10ec0270, .name = "ALC270", .patch = patch_alc269 },
Kailang Yang01afd412008-10-15 11:22:09 +02005368 { .id = 0x10ec0272, .name = "ALC272", .patch = patch_alc662 },
Kailang Yangebb83ee2009-12-17 12:23:00 +01005369 { .id = 0x10ec0275, .name = "ALC275", .patch = patch_alc269 },
Kailang Yang296f0332011-05-18 11:52:36 +02005370 { .id = 0x10ec0276, .name = "ALC276", .patch = patch_alc269 },
David Henningssonbefae822012-06-25 19:49:28 +02005371 { .id = 0x10ec0280, .name = "ALC280", .patch = patch_alc269 },
David Henningsson4e01ec62012-07-18 07:38:46 +02005372 { .id = 0x10ec0282, .name = "ALC282", .patch = patch_alc269 },
Kailang Yang7ff34ad2012-10-06 17:02:30 +02005373 { .id = 0x10ec0283, .name = "ALC283", .patch = patch_alc269 },
Kailang Yang065380f2013-01-10 10:25:48 +01005374 { .id = 0x10ec0284, .name = "ALC284", .patch = patch_alc269 },
Kailang Yang161ebf22013-10-24 11:36:33 +02005375 { .id = 0x10ec0285, .name = "ALC285", .patch = patch_alc269 },
Kailang Yang7fc7d042013-04-25 11:04:43 +02005376 { .id = 0x10ec0286, .name = "ALC286", .patch = patch_alc269 },
Kailang Yang7ff34ad2012-10-06 17:02:30 +02005377 { .id = 0x10ec0290, .name = "ALC290", .patch = patch_alc269 },
David Henningssonaf02dde2012-11-21 08:57:58 +01005378 { .id = 0x10ec0292, .name = "ALC292", .patch = patch_alc269 },
Kailang Yang161ebf22013-10-24 11:36:33 +02005379 { .id = 0x10ec0293, .name = "ALC293", .patch = patch_alc269 },
Jakub Schmidtkef32610e2007-02-02 18:17:27 +01005380 { .id = 0x10ec0861, .rev = 0x100340, .name = "ALC660",
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005381 .patch = patch_alc861 },
Jakub Schmidtkef32610e2007-02-02 18:17:27 +01005382 { .id = 0x10ec0660, .name = "ALC660-VD", .patch = patch_alc861vd },
5383 { .id = 0x10ec0861, .name = "ALC861", .patch = patch_alc861 },
5384 { .id = 0x10ec0862, .name = "ALC861-VD", .patch = patch_alc861vd },
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005385 { .id = 0x10ec0662, .rev = 0x100002, .name = "ALC662 rev2",
Takashi Iwai4953550a2009-06-30 15:28:30 +02005386 .patch = patch_alc882 },
Kailang Yangbc9f98a2007-04-12 13:06:07 +02005387 { .id = 0x10ec0662, .rev = 0x100101, .name = "ALC662 rev1",
5388 .patch = patch_alc662 },
David Henningssoncc667a72011-10-18 14:07:51 +02005389 { .id = 0x10ec0662, .rev = 0x100300, .name = "ALC662 rev3",
5390 .patch = patch_alc662 },
Kailang Yang6dda9f42008-05-27 12:05:31 +02005391 { .id = 0x10ec0663, .name = "ALC663", .patch = patch_alc662 },
Kailang Yangcec27c82010-02-04 14:18:18 +01005392 { .id = 0x10ec0665, .name = "ALC665", .patch = patch_alc662 },
Kailang Yang19a62822012-11-08 10:25:37 +01005393 { .id = 0x10ec0668, .name = "ALC668", .patch = patch_alc662 },
Kailang Yang6227cdc2010-02-25 08:36:52 +01005394 { .id = 0x10ec0670, .name = "ALC670", .patch = patch_alc662 },
Rainer Koenig1d87caa2013-04-04 08:40:38 +02005395 { .id = 0x10ec0671, .name = "ALC671", .patch = patch_alc662 },
Kailang Yangd1eb57f2010-06-23 16:25:26 +02005396 { .id = 0x10ec0680, .name = "ALC680", .patch = patch_alc680 },
Jakub Schmidtkef32610e2007-02-02 18:17:27 +01005397 { .id = 0x10ec0880, .name = "ALC880", .patch = patch_alc880 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07005398 { .id = 0x10ec0882, .name = "ALC882", .patch = patch_alc882 },
Takashi Iwai4953550a2009-06-30 15:28:30 +02005399 { .id = 0x10ec0883, .name = "ALC883", .patch = patch_alc882 },
Clive Messer669faba2008-09-30 15:49:13 +02005400 { .id = 0x10ec0885, .rev = 0x100101, .name = "ALC889A",
Takashi Iwai4953550a2009-06-30 15:28:30 +02005401 .patch = patch_alc882 },
Takashi Iwaicb308f92008-04-16 14:13:29 +02005402 { .id = 0x10ec0885, .rev = 0x100103, .name = "ALC889A",
Takashi Iwai4953550a2009-06-30 15:28:30 +02005403 .patch = patch_alc882 },
Kailang Yangdf694da2005-12-05 19:42:22 +01005404 { .id = 0x10ec0885, .name = "ALC885", .patch = patch_alc882 },
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005405 { .id = 0x10ec0887, .name = "ALC887", .patch = patch_alc882 },
Kailang Yang44426082008-10-15 11:18:05 +02005406 { .id = 0x10ec0888, .rev = 0x100101, .name = "ALC1200",
Takashi Iwai4953550a2009-06-30 15:28:30 +02005407 .patch = patch_alc882 },
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005408 { .id = 0x10ec0888, .name = "ALC888", .patch = patch_alc882 },
Takashi Iwai4953550a2009-06-30 15:28:30 +02005409 { .id = 0x10ec0889, .name = "ALC889", .patch = patch_alc882 },
Kailang Yang274693f2009-12-03 10:07:50 +01005410 { .id = 0x10ec0892, .name = "ALC892", .patch = patch_alc662 },
Takashi Iwaie16fb6d2011-10-17 16:39:09 +02005411 { .id = 0x10ec0899, .name = "ALC898", .patch = patch_alc882 },
Kailang Yang19a62822012-11-08 10:25:37 +01005412 { .id = 0x10ec0900, .name = "ALC1150", .patch = patch_alc882 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07005413 {} /* terminator */
5414};
Takashi Iwai1289e9e2008-11-27 15:47:11 +01005415
5416MODULE_ALIAS("snd-hda-codec-id:10ec*");
5417
5418MODULE_LICENSE("GPL");
5419MODULE_DESCRIPTION("Realtek HD-audio codec");
5420
5421static struct hda_codec_preset_list realtek_list = {
5422 .preset = snd_hda_preset_realtek,
5423 .owner = THIS_MODULE,
5424};
5425
5426static int __init patch_realtek_init(void)
5427{
5428 return snd_hda_add_codec_preset(&realtek_list);
5429}
5430
5431static void __exit patch_realtek_exit(void)
5432{
5433 snd_hda_delete_codec_preset(&realtek_list);
5434}
5435
5436module_init(patch_realtek_init)
5437module_exit(patch_realtek_exit)