Loading...
1/*
2 * Universal Interface for Intel High Definition Audio Codec
3 *
4 * HD audio interface patch for Realtek ALC codecs
5 *
6 * Copyright (c) 2004 Kailang Yang <kailang@realtek.com.tw>
7 * PeiSen Hou <pshou@realtek.com.tw>
8 * Takashi Iwai <tiwai@suse.de>
9 * Jonathan Woithe <jwoithe@physics.adelaide.edu.au>
10 *
11 * This driver is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This driver is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 */
25
26#include <linux/init.h>
27#include <linux/delay.h>
28#include <linux/slab.h>
29#include <linux/pci.h>
30#include <sound/core.h>
31#include <sound/jack.h>
32#include "hda_codec.h"
33#include "hda_local.h"
34#include "hda_beep.h"
35
36/* unsol event tags */
37#define ALC_FRONT_EVENT 0x01
38#define ALC_DCVOL_EVENT 0x02
39#define ALC_HP_EVENT 0x04
40#define ALC_MIC_EVENT 0x08
41
42/* for GPIO Poll */
43#define GPIO_MASK 0x03
44
45/* extra amp-initialization sequence types */
46enum {
47 ALC_INIT_NONE,
48 ALC_INIT_DEFAULT,
49 ALC_INIT_GPIO1,
50 ALC_INIT_GPIO2,
51 ALC_INIT_GPIO3,
52};
53
54struct alc_customize_define {
55 unsigned int sku_cfg;
56 unsigned char port_connectivity;
57 unsigned char check_sum;
58 unsigned char customization;
59 unsigned char external_amp;
60 unsigned int enable_pcbeep:1;
61 unsigned int platform_type:1;
62 unsigned int swap:1;
63 unsigned int override:1;
64 unsigned int fixup:1; /* Means that this sku is set by driver, not read from hw */
65};
66
67struct alc_fixup;
68
69struct alc_multi_io {
70 hda_nid_t pin; /* multi-io widget pin NID */
71 hda_nid_t dac; /* DAC to be connected */
72 unsigned int ctl_in; /* cached input-pin control value */
73};
74
75enum {
76 ALC_AUTOMUTE_PIN, /* change the pin control */
77 ALC_AUTOMUTE_AMP, /* mute/unmute the pin AMP */
78 ALC_AUTOMUTE_MIXER, /* mute/unmute mixer widget AMP */
79};
80
81struct alc_spec {
82 /* codec parameterization */
83 const struct snd_kcontrol_new *mixers[5]; /* mixer arrays */
84 unsigned int num_mixers;
85 const struct snd_kcontrol_new *cap_mixer; /* capture mixer */
86 unsigned int beep_amp; /* beep amp value, set via set_beep_amp() */
87
88 const struct hda_verb *init_verbs[10]; /* initialization verbs
89 * don't forget NULL
90 * termination!
91 */
92 unsigned int num_init_verbs;
93
94 char stream_name_analog[32]; /* analog PCM stream */
95 const struct hda_pcm_stream *stream_analog_playback;
96 const struct hda_pcm_stream *stream_analog_capture;
97 const struct hda_pcm_stream *stream_analog_alt_playback;
98 const struct hda_pcm_stream *stream_analog_alt_capture;
99
100 char stream_name_digital[32]; /* digital PCM stream */
101 const struct hda_pcm_stream *stream_digital_playback;
102 const struct hda_pcm_stream *stream_digital_capture;
103
104 /* playback */
105 struct hda_multi_out multiout; /* playback set-up
106 * max_channels, dacs must be set
107 * dig_out_nid and hp_nid are optional
108 */
109 hda_nid_t alt_dac_nid;
110 hda_nid_t slave_dig_outs[3]; /* optional - for auto-parsing */
111 int dig_out_type;
112
113 /* capture */
114 unsigned int num_adc_nids;
115 const hda_nid_t *adc_nids;
116 const hda_nid_t *capsrc_nids;
117 hda_nid_t dig_in_nid; /* digital-in NID; optional */
118 hda_nid_t mixer_nid; /* analog-mixer NID */
119
120 /* capture setup for dynamic dual-adc switch */
121 hda_nid_t cur_adc;
122 unsigned int cur_adc_stream_tag;
123 unsigned int cur_adc_format;
124
125 /* capture source */
126 unsigned int num_mux_defs;
127 const struct hda_input_mux *input_mux;
128 unsigned int cur_mux[3];
129 hda_nid_t ext_mic_pin;
130 hda_nid_t dock_mic_pin;
131 hda_nid_t int_mic_pin;
132
133 /* channel model */
134 const struct hda_channel_mode *channel_mode;
135 int num_channel_mode;
136 int need_dac_fix;
137 int const_channel_count;
138 int ext_channel_count;
139
140 /* PCM information */
141 struct hda_pcm pcm_rec[3]; /* used in alc_build_pcms() */
142
143 /* dynamic controls, init_verbs and input_mux */
144 struct auto_pin_cfg autocfg;
145 struct alc_customize_define cdefine;
146 struct snd_array kctls;
147 struct hda_input_mux private_imux[3];
148 hda_nid_t private_dac_nids[AUTO_CFG_MAX_OUTS];
149 hda_nid_t private_adc_nids[AUTO_CFG_MAX_OUTS];
150 hda_nid_t private_capsrc_nids[AUTO_CFG_MAX_OUTS];
151 hda_nid_t imux_pins[HDA_MAX_NUM_INPUTS];
152 unsigned int dyn_adc_idx[HDA_MAX_NUM_INPUTS];
153 int int_mic_idx, ext_mic_idx, dock_mic_idx; /* for auto-mic */
154
155 /* hooks */
156 void (*init_hook)(struct hda_codec *codec);
157 void (*unsol_event)(struct hda_codec *codec, unsigned int res);
158#ifdef CONFIG_SND_HDA_POWER_SAVE
159 void (*power_hook)(struct hda_codec *codec);
160#endif
161 void (*shutup)(struct hda_codec *codec);
162
163 /* for pin sensing */
164 unsigned int jack_present: 1;
165 unsigned int line_jack_present:1;
166 unsigned int master_mute:1;
167 unsigned int auto_mic:1;
168 unsigned int auto_mic_valid_imux:1; /* valid imux for auto-mic */
169 unsigned int automute:1; /* HP automute enabled */
170 unsigned int detect_line:1; /* Line-out detection enabled */
171 unsigned int automute_lines:1; /* automute line-out as well; NOP when automute_hp_lo isn't set */
172 unsigned int automute_hp_lo:1; /* both HP and LO available */
173
174 /* other flags */
175 unsigned int no_analog :1; /* digital I/O only */
176 unsigned int dyn_adc_switch:1; /* switch ADCs (for ALC275) */
177 unsigned int single_input_src:1;
178 unsigned int vol_in_capsrc:1; /* use capsrc volume (ADC has no vol) */
179
180 /* auto-mute control */
181 int automute_mode;
182 hda_nid_t automute_mixer_nid[AUTO_CFG_MAX_OUTS];
183
184 int init_amp;
185 int codec_variant; /* flag for other variants */
186
187 /* for virtual master */
188 hda_nid_t vmaster_nid;
189#ifdef CONFIG_SND_HDA_POWER_SAVE
190 struct hda_loopback_check loopback;
191#endif
192
193 /* for PLL fix */
194 hda_nid_t pll_nid;
195 unsigned int pll_coef_idx, pll_coef_bit;
196
197 /* fix-up list */
198 int fixup_id;
199 const struct alc_fixup *fixup_list;
200 const char *fixup_name;
201
202 /* multi-io */
203 int multi_ios;
204 struct alc_multi_io multi_io[4];
205};
206
207#define ALC_MODEL_AUTO 0 /* common for all chips */
208
209static bool check_amp_caps(struct hda_codec *codec, hda_nid_t nid,
210 int dir, unsigned int bits)
211{
212 if (!nid)
213 return false;
214 if (get_wcaps(codec, nid) & (1 << (dir + 1)))
215 if (query_amp_caps(codec, nid, dir) & bits)
216 return true;
217 return false;
218}
219
220#define nid_has_mute(codec, nid, dir) \
221 check_amp_caps(codec, nid, dir, AC_AMPCAP_MUTE)
222#define nid_has_volume(codec, nid, dir) \
223 check_amp_caps(codec, nid, dir, AC_AMPCAP_NUM_STEPS)
224
225/*
226 * input MUX handling
227 */
228static int alc_mux_enum_info(struct snd_kcontrol *kcontrol,
229 struct snd_ctl_elem_info *uinfo)
230{
231 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
232 struct alc_spec *spec = codec->spec;
233 unsigned int mux_idx = snd_ctl_get_ioffidx(kcontrol, &uinfo->id);
234 if (mux_idx >= spec->num_mux_defs)
235 mux_idx = 0;
236 if (!spec->input_mux[mux_idx].num_items && mux_idx > 0)
237 mux_idx = 0;
238 return snd_hda_input_mux_info(&spec->input_mux[mux_idx], uinfo);
239}
240
241static int alc_mux_enum_get(struct snd_kcontrol *kcontrol,
242 struct snd_ctl_elem_value *ucontrol)
243{
244 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
245 struct alc_spec *spec = codec->spec;
246 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
247
248 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
249 return 0;
250}
251
252static bool alc_dyn_adc_pcm_resetup(struct hda_codec *codec, int cur)
253{
254 struct alc_spec *spec = codec->spec;
255 hda_nid_t new_adc = spec->adc_nids[spec->dyn_adc_idx[cur]];
256
257 if (spec->cur_adc && spec->cur_adc != new_adc) {
258 /* stream is running, let's swap the current ADC */
259 __snd_hda_codec_cleanup_stream(codec, spec->cur_adc, 1);
260 spec->cur_adc = new_adc;
261 snd_hda_codec_setup_stream(codec, new_adc,
262 spec->cur_adc_stream_tag, 0,
263 spec->cur_adc_format);
264 return true;
265 }
266 return false;
267}
268
269/* select the given imux item; either unmute exclusively or select the route */
270static int alc_mux_select(struct hda_codec *codec, unsigned int adc_idx,
271 unsigned int idx, bool force)
272{
273 struct alc_spec *spec = codec->spec;
274 const struct hda_input_mux *imux;
275 unsigned int mux_idx;
276 int i, type;
277 hda_nid_t nid;
278
279 mux_idx = adc_idx >= spec->num_mux_defs ? 0 : adc_idx;
280 imux = &spec->input_mux[mux_idx];
281 if (!imux->num_items && mux_idx > 0)
282 imux = &spec->input_mux[0];
283
284 if (idx >= imux->num_items)
285 idx = imux->num_items - 1;
286 if (spec->cur_mux[adc_idx] == idx && !force)
287 return 0;
288 spec->cur_mux[adc_idx] = idx;
289
290 if (spec->dyn_adc_switch) {
291 alc_dyn_adc_pcm_resetup(codec, idx);
292 adc_idx = spec->dyn_adc_idx[idx];
293 }
294
295 nid = spec->capsrc_nids ?
296 spec->capsrc_nids[adc_idx] : spec->adc_nids[adc_idx];
297
298 /* no selection? */
299 if (snd_hda_get_conn_list(codec, nid, NULL) <= 1)
300 return 1;
301
302 type = get_wcaps_type(get_wcaps(codec, nid));
303 if (type == AC_WID_AUD_MIX) {
304 /* Matrix-mixer style (e.g. ALC882) */
305 for (i = 0; i < imux->num_items; i++) {
306 unsigned int v = (i == idx) ? 0 : HDA_AMP_MUTE;
307 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT,
308 imux->items[i].index,
309 HDA_AMP_MUTE, v);
310 }
311 } else {
312 /* MUX style (e.g. ALC880) */
313 snd_hda_codec_write_cache(codec, nid, 0,
314 AC_VERB_SET_CONNECT_SEL,
315 imux->items[idx].index);
316 }
317 return 1;
318}
319
320static int alc_mux_enum_put(struct snd_kcontrol *kcontrol,
321 struct snd_ctl_elem_value *ucontrol)
322{
323 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
324 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
325 return alc_mux_select(codec, adc_idx,
326 ucontrol->value.enumerated.item[0], false);
327}
328
329/*
330 * set up the input pin config (depending on the given auto-pin type)
331 */
332static void alc_set_input_pin(struct hda_codec *codec, hda_nid_t nid,
333 int auto_pin_type)
334{
335 unsigned int val = PIN_IN;
336
337 if (auto_pin_type == AUTO_PIN_MIC) {
338 unsigned int pincap;
339 unsigned int oldval;
340 oldval = snd_hda_codec_read(codec, nid, 0,
341 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
342 pincap = snd_hda_query_pin_caps(codec, nid);
343 pincap = (pincap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
344 /* if the default pin setup is vref50, we give it priority */
345 if ((pincap & AC_PINCAP_VREF_80) && oldval != PIN_VREF50)
346 val = PIN_VREF80;
347 else if (pincap & AC_PINCAP_VREF_50)
348 val = PIN_VREF50;
349 else if (pincap & AC_PINCAP_VREF_100)
350 val = PIN_VREF100;
351 else if (pincap & AC_PINCAP_VREF_GRD)
352 val = PIN_VREFGRD;
353 }
354 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, val);
355}
356
357/*
358 * Append the given mixer and verb elements for the later use
359 * The mixer array is referred in build_controls(), and init_verbs are
360 * called in init().
361 */
362static void add_mixer(struct alc_spec *spec, const struct snd_kcontrol_new *mix)
363{
364 if (snd_BUG_ON(spec->num_mixers >= ARRAY_SIZE(spec->mixers)))
365 return;
366 spec->mixers[spec->num_mixers++] = mix;
367}
368
369static void add_verb(struct alc_spec *spec, const struct hda_verb *verb)
370{
371 if (snd_BUG_ON(spec->num_init_verbs >= ARRAY_SIZE(spec->init_verbs)))
372 return;
373 spec->init_verbs[spec->num_init_verbs++] = verb;
374}
375
376/*
377 * GPIO setup tables, used in initialization
378 */
379/* Enable GPIO mask and set output */
380static const struct hda_verb alc_gpio1_init_verbs[] = {
381 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
382 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
383 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
384 { }
385};
386
387static const struct hda_verb alc_gpio2_init_verbs[] = {
388 {0x01, AC_VERB_SET_GPIO_MASK, 0x02},
389 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x02},
390 {0x01, AC_VERB_SET_GPIO_DATA, 0x02},
391 { }
392};
393
394static const struct hda_verb alc_gpio3_init_verbs[] = {
395 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
396 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
397 {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
398 { }
399};
400
401/*
402 * Fix hardware PLL issue
403 * On some codecs, the analog PLL gating control must be off while
404 * the default value is 1.
405 */
406static void alc_fix_pll(struct hda_codec *codec)
407{
408 struct alc_spec *spec = codec->spec;
409 unsigned int val;
410
411 if (!spec->pll_nid)
412 return;
413 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_COEF_INDEX,
414 spec->pll_coef_idx);
415 val = snd_hda_codec_read(codec, spec->pll_nid, 0,
416 AC_VERB_GET_PROC_COEF, 0);
417 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_COEF_INDEX,
418 spec->pll_coef_idx);
419 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_PROC_COEF,
420 val & ~(1 << spec->pll_coef_bit));
421}
422
423static void alc_fix_pll_init(struct hda_codec *codec, hda_nid_t nid,
424 unsigned int coef_idx, unsigned int coef_bit)
425{
426 struct alc_spec *spec = codec->spec;
427 spec->pll_nid = nid;
428 spec->pll_coef_idx = coef_idx;
429 spec->pll_coef_bit = coef_bit;
430 alc_fix_pll(codec);
431}
432
433/*
434 * Jack-reporting via input-jack layer
435 */
436
437/* initialization of jacks; currently checks only a few known pins */
438static int alc_init_jacks(struct hda_codec *codec)
439{
440#ifdef CONFIG_SND_HDA_INPUT_JACK
441 struct alc_spec *spec = codec->spec;
442 int err;
443 unsigned int hp_nid = spec->autocfg.hp_pins[0];
444 unsigned int mic_nid = spec->ext_mic_pin;
445 unsigned int dock_nid = spec->dock_mic_pin;
446
447 if (hp_nid) {
448 err = snd_hda_input_jack_add(codec, hp_nid,
449 SND_JACK_HEADPHONE, NULL);
450 if (err < 0)
451 return err;
452 snd_hda_input_jack_report(codec, hp_nid);
453 }
454
455 if (mic_nid) {
456 err = snd_hda_input_jack_add(codec, mic_nid,
457 SND_JACK_MICROPHONE, NULL);
458 if (err < 0)
459 return err;
460 snd_hda_input_jack_report(codec, mic_nid);
461 }
462 if (dock_nid) {
463 err = snd_hda_input_jack_add(codec, dock_nid,
464 SND_JACK_MICROPHONE, NULL);
465 if (err < 0)
466 return err;
467 snd_hda_input_jack_report(codec, dock_nid);
468 }
469#endif /* CONFIG_SND_HDA_INPUT_JACK */
470 return 0;
471}
472
473/*
474 * Jack detections for HP auto-mute and mic-switch
475 */
476
477/* check each pin in the given array; returns true if any of them is plugged */
478static bool detect_jacks(struct hda_codec *codec, int num_pins, hda_nid_t *pins)
479{
480 int i, present = 0;
481
482 for (i = 0; i < num_pins; i++) {
483 hda_nid_t nid = pins[i];
484 if (!nid)
485 break;
486 snd_hda_input_jack_report(codec, nid);
487 present |= snd_hda_jack_detect(codec, nid);
488 }
489 return present;
490}
491
492/* standard HP/line-out auto-mute helper */
493static void do_automute(struct hda_codec *codec, int num_pins, hda_nid_t *pins,
494 bool mute, bool hp_out)
495{
496 struct alc_spec *spec = codec->spec;
497 unsigned int mute_bits = mute ? HDA_AMP_MUTE : 0;
498 unsigned int pin_bits = mute ? 0 : (hp_out ? PIN_HP : PIN_OUT);
499 int i;
500
501 for (i = 0; i < num_pins; i++) {
502 hda_nid_t nid = pins[i];
503 if (!nid)
504 break;
505 switch (spec->automute_mode) {
506 case ALC_AUTOMUTE_PIN:
507 snd_hda_codec_write(codec, nid, 0,
508 AC_VERB_SET_PIN_WIDGET_CONTROL,
509 pin_bits);
510 break;
511 case ALC_AUTOMUTE_AMP:
512 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
513 HDA_AMP_MUTE, mute_bits);
514 break;
515 case ALC_AUTOMUTE_MIXER:
516 nid = spec->automute_mixer_nid[i];
517 if (!nid)
518 break;
519 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT, 0,
520 HDA_AMP_MUTE, mute_bits);
521 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT, 1,
522 HDA_AMP_MUTE, mute_bits);
523 break;
524 }
525 }
526}
527
528/* Toggle internal speakers muting */
529static void update_speakers(struct hda_codec *codec)
530{
531 struct alc_spec *spec = codec->spec;
532 int on;
533
534 /* Control HP pins/amps depending on master_mute state;
535 * in general, HP pins/amps control should be enabled in all cases,
536 * but currently set only for master_mute, just to be safe
537 */
538 do_automute(codec, ARRAY_SIZE(spec->autocfg.hp_pins),
539 spec->autocfg.hp_pins, spec->master_mute, true);
540
541 if (!spec->automute)
542 on = 0;
543 else
544 on = spec->jack_present | spec->line_jack_present;
545 on |= spec->master_mute;
546 do_automute(codec, ARRAY_SIZE(spec->autocfg.speaker_pins),
547 spec->autocfg.speaker_pins, on, false);
548
549 /* toggle line-out mutes if needed, too */
550 /* if LO is a copy of either HP or Speaker, don't need to handle it */
551 if (spec->autocfg.line_out_pins[0] == spec->autocfg.hp_pins[0] ||
552 spec->autocfg.line_out_pins[0] == spec->autocfg.speaker_pins[0])
553 return;
554 if (!spec->automute || (spec->automute_hp_lo && !spec->automute_lines))
555 on = 0;
556 else
557 on = spec->jack_present;
558 on |= spec->master_mute;
559 do_automute(codec, ARRAY_SIZE(spec->autocfg.line_out_pins),
560 spec->autocfg.line_out_pins, on, false);
561}
562
563/* standard HP-automute helper */
564static void alc_hp_automute(struct hda_codec *codec)
565{
566 struct alc_spec *spec = codec->spec;
567
568 spec->jack_present =
569 detect_jacks(codec, ARRAY_SIZE(spec->autocfg.hp_pins),
570 spec->autocfg.hp_pins);
571 if (!spec->automute)
572 return;
573 update_speakers(codec);
574}
575
576/* standard line-out-automute helper */
577static void alc_line_automute(struct hda_codec *codec)
578{
579 struct alc_spec *spec = codec->spec;
580
581 /* check LO jack only when it's different from HP */
582 if (spec->autocfg.line_out_pins[0] == spec->autocfg.hp_pins[0])
583 return;
584
585 spec->line_jack_present =
586 detect_jacks(codec, ARRAY_SIZE(spec->autocfg.line_out_pins),
587 spec->autocfg.line_out_pins);
588 if (!spec->automute || !spec->detect_line)
589 return;
590 update_speakers(codec);
591}
592
593#define get_connection_index(codec, mux, nid) \
594 snd_hda_get_conn_index(codec, mux, nid, 0)
595
596/* standard mic auto-switch helper */
597static void alc_mic_automute(struct hda_codec *codec)
598{
599 struct alc_spec *spec = codec->spec;
600 hda_nid_t *pins = spec->imux_pins;
601
602 if (!spec->auto_mic || !spec->auto_mic_valid_imux)
603 return;
604 if (snd_BUG_ON(!spec->adc_nids))
605 return;
606 if (snd_BUG_ON(spec->int_mic_idx < 0 || spec->ext_mic_idx < 0))
607 return;
608
609 if (snd_hda_jack_detect(codec, pins[spec->ext_mic_idx]))
610 alc_mux_select(codec, 0, spec->ext_mic_idx, false);
611 else if (spec->dock_mic_idx >= 0 &&
612 snd_hda_jack_detect(codec, pins[spec->dock_mic_idx]))
613 alc_mux_select(codec, 0, spec->dock_mic_idx, false);
614 else
615 alc_mux_select(codec, 0, spec->int_mic_idx, false);
616
617 snd_hda_input_jack_report(codec, pins[spec->ext_mic_idx]);
618 if (spec->dock_mic_idx >= 0)
619 snd_hda_input_jack_report(codec, pins[spec->dock_mic_idx]);
620}
621
622/* unsolicited event for HP jack sensing */
623static void alc_sku_unsol_event(struct hda_codec *codec, unsigned int res)
624{
625 if (codec->vendor_id == 0x10ec0880)
626 res >>= 28;
627 else
628 res >>= 26;
629 switch (res) {
630 case ALC_HP_EVENT:
631 alc_hp_automute(codec);
632 break;
633 case ALC_FRONT_EVENT:
634 alc_line_automute(codec);
635 break;
636 case ALC_MIC_EVENT:
637 alc_mic_automute(codec);
638 break;
639 }
640}
641
642/* call init functions of standard auto-mute helpers */
643static void alc_inithook(struct hda_codec *codec)
644{
645 alc_hp_automute(codec);
646 alc_line_automute(codec);
647 alc_mic_automute(codec);
648}
649
650/* additional initialization for ALC888 variants */
651static void alc888_coef_init(struct hda_codec *codec)
652{
653 unsigned int tmp;
654
655 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0);
656 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
657 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
658 if ((tmp & 0xf0) == 0x20)
659 /* alc888S-VC */
660 snd_hda_codec_read(codec, 0x20, 0,
661 AC_VERB_SET_PROC_COEF, 0x830);
662 else
663 /* alc888-VB */
664 snd_hda_codec_read(codec, 0x20, 0,
665 AC_VERB_SET_PROC_COEF, 0x3030);
666}
667
668/* additional initialization for ALC889 variants */
669static void alc889_coef_init(struct hda_codec *codec)
670{
671 unsigned int tmp;
672
673 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
674 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
675 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
676 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, tmp|0x2010);
677}
678
679/* turn on/off EAPD control (only if available) */
680static void set_eapd(struct hda_codec *codec, hda_nid_t nid, int on)
681{
682 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
683 return;
684 if (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)
685 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
686 on ? 2 : 0);
687}
688
689/* turn on/off EAPD controls of the codec */
690static void alc_auto_setup_eapd(struct hda_codec *codec, bool on)
691{
692 /* We currently only handle front, HP */
693 static hda_nid_t pins[] = {
694 0x0f, 0x10, 0x14, 0x15, 0
695 };
696 hda_nid_t *p;
697 for (p = pins; *p; p++)
698 set_eapd(codec, *p, on);
699}
700
701/* generic shutup callback;
702 * just turning off EPAD and a little pause for avoiding pop-noise
703 */
704static void alc_eapd_shutup(struct hda_codec *codec)
705{
706 alc_auto_setup_eapd(codec, false);
707 msleep(200);
708}
709
710/* generic EAPD initialization */
711static void alc_auto_init_amp(struct hda_codec *codec, int type)
712{
713 unsigned int tmp;
714
715 alc_auto_setup_eapd(codec, true);
716 switch (type) {
717 case ALC_INIT_GPIO1:
718 snd_hda_sequence_write(codec, alc_gpio1_init_verbs);
719 break;
720 case ALC_INIT_GPIO2:
721 snd_hda_sequence_write(codec, alc_gpio2_init_verbs);
722 break;
723 case ALC_INIT_GPIO3:
724 snd_hda_sequence_write(codec, alc_gpio3_init_verbs);
725 break;
726 case ALC_INIT_DEFAULT:
727 switch (codec->vendor_id) {
728 case 0x10ec0260:
729 snd_hda_codec_write(codec, 0x1a, 0,
730 AC_VERB_SET_COEF_INDEX, 7);
731 tmp = snd_hda_codec_read(codec, 0x1a, 0,
732 AC_VERB_GET_PROC_COEF, 0);
733 snd_hda_codec_write(codec, 0x1a, 0,
734 AC_VERB_SET_COEF_INDEX, 7);
735 snd_hda_codec_write(codec, 0x1a, 0,
736 AC_VERB_SET_PROC_COEF,
737 tmp | 0x2010);
738 break;
739 case 0x10ec0262:
740 case 0x10ec0880:
741 case 0x10ec0882:
742 case 0x10ec0883:
743 case 0x10ec0885:
744 case 0x10ec0887:
745 /*case 0x10ec0889:*/ /* this causes an SPDIF problem */
746 alc889_coef_init(codec);
747 break;
748 case 0x10ec0888:
749 alc888_coef_init(codec);
750 break;
751#if 0 /* XXX: This may cause the silent output on speaker on some machines */
752 case 0x10ec0267:
753 case 0x10ec0268:
754 snd_hda_codec_write(codec, 0x20, 0,
755 AC_VERB_SET_COEF_INDEX, 7);
756 tmp = snd_hda_codec_read(codec, 0x20, 0,
757 AC_VERB_GET_PROC_COEF, 0);
758 snd_hda_codec_write(codec, 0x20, 0,
759 AC_VERB_SET_COEF_INDEX, 7);
760 snd_hda_codec_write(codec, 0x20, 0,
761 AC_VERB_SET_PROC_COEF,
762 tmp | 0x3000);
763 break;
764#endif /* XXX */
765 }
766 break;
767 }
768}
769
770/*
771 * Auto-Mute mode mixer enum support
772 */
773static int alc_automute_mode_info(struct snd_kcontrol *kcontrol,
774 struct snd_ctl_elem_info *uinfo)
775{
776 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
777 struct alc_spec *spec = codec->spec;
778 static const char * const texts2[] = {
779 "Disabled", "Enabled"
780 };
781 static const char * const texts3[] = {
782 "Disabled", "Speaker Only", "Line-Out+Speaker"
783 };
784 const char * const *texts;
785
786 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
787 uinfo->count = 1;
788 if (spec->automute_hp_lo) {
789 uinfo->value.enumerated.items = 3;
790 texts = texts3;
791 } else {
792 uinfo->value.enumerated.items = 2;
793 texts = texts2;
794 }
795 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
796 uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1;
797 strcpy(uinfo->value.enumerated.name,
798 texts[uinfo->value.enumerated.item]);
799 return 0;
800}
801
802static int alc_automute_mode_get(struct snd_kcontrol *kcontrol,
803 struct snd_ctl_elem_value *ucontrol)
804{
805 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
806 struct alc_spec *spec = codec->spec;
807 unsigned int val;
808 if (!spec->automute)
809 val = 0;
810 else if (!spec->automute_hp_lo || !spec->automute_lines)
811 val = 1;
812 else
813 val = 2;
814 ucontrol->value.enumerated.item[0] = val;
815 return 0;
816}
817
818static int alc_automute_mode_put(struct snd_kcontrol *kcontrol,
819 struct snd_ctl_elem_value *ucontrol)
820{
821 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
822 struct alc_spec *spec = codec->spec;
823
824 switch (ucontrol->value.enumerated.item[0]) {
825 case 0:
826 if (!spec->automute)
827 return 0;
828 spec->automute = 0;
829 break;
830 case 1:
831 if (spec->automute &&
832 (!spec->automute_hp_lo || !spec->automute_lines))
833 return 0;
834 spec->automute = 1;
835 spec->automute_lines = 0;
836 break;
837 case 2:
838 if (!spec->automute_hp_lo)
839 return -EINVAL;
840 if (spec->automute && spec->automute_lines)
841 return 0;
842 spec->automute = 1;
843 spec->automute_lines = 1;
844 break;
845 default:
846 return -EINVAL;
847 }
848 update_speakers(codec);
849 return 1;
850}
851
852static const struct snd_kcontrol_new alc_automute_mode_enum = {
853 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
854 .name = "Auto-Mute Mode",
855 .info = alc_automute_mode_info,
856 .get = alc_automute_mode_get,
857 .put = alc_automute_mode_put,
858};
859
860static struct snd_kcontrol_new *alc_kcontrol_new(struct alc_spec *spec)
861{
862 snd_array_init(&spec->kctls, sizeof(struct snd_kcontrol_new), 32);
863 return snd_array_new(&spec->kctls);
864}
865
866static int alc_add_automute_mode_enum(struct hda_codec *codec)
867{
868 struct alc_spec *spec = codec->spec;
869 struct snd_kcontrol_new *knew;
870
871 knew = alc_kcontrol_new(spec);
872 if (!knew)
873 return -ENOMEM;
874 *knew = alc_automute_mode_enum;
875 knew->name = kstrdup("Auto-Mute Mode", GFP_KERNEL);
876 if (!knew->name)
877 return -ENOMEM;
878 return 0;
879}
880
881/*
882 * Check the availability of HP/line-out auto-mute;
883 * Set up appropriately if really supported
884 */
885static void alc_init_auto_hp(struct hda_codec *codec)
886{
887 struct alc_spec *spec = codec->spec;
888 struct auto_pin_cfg *cfg = &spec->autocfg;
889 int present = 0;
890 int i;
891
892 if (cfg->hp_pins[0])
893 present++;
894 if (cfg->line_out_pins[0])
895 present++;
896 if (cfg->speaker_pins[0])
897 present++;
898 if (present < 2) /* need two different output types */
899 return;
900 if (present == 3)
901 spec->automute_hp_lo = 1; /* both HP and LO automute */
902
903 if (!cfg->speaker_pins[0] &&
904 cfg->line_out_type == AUTO_PIN_SPEAKER_OUT) {
905 memcpy(cfg->speaker_pins, cfg->line_out_pins,
906 sizeof(cfg->speaker_pins));
907 cfg->speaker_outs = cfg->line_outs;
908 }
909
910 if (!cfg->hp_pins[0] &&
911 cfg->line_out_type == AUTO_PIN_HP_OUT) {
912 memcpy(cfg->hp_pins, cfg->line_out_pins,
913 sizeof(cfg->hp_pins));
914 cfg->hp_outs = cfg->line_outs;
915 }
916
917 for (i = 0; i < cfg->hp_outs; i++) {
918 hda_nid_t nid = cfg->hp_pins[i];
919 if (!is_jack_detectable(codec, nid))
920 continue;
921 snd_printdd("realtek: Enable HP auto-muting on NID 0x%x\n",
922 nid);
923 snd_hda_codec_write_cache(codec, nid, 0,
924 AC_VERB_SET_UNSOLICITED_ENABLE,
925 AC_USRSP_EN | ALC_HP_EVENT);
926 spec->automute = 1;
927 spec->automute_mode = ALC_AUTOMUTE_PIN;
928 }
929 if (spec->automute && cfg->line_out_pins[0] &&
930 cfg->speaker_pins[0] &&
931 cfg->line_out_pins[0] != cfg->hp_pins[0] &&
932 cfg->line_out_pins[0] != cfg->speaker_pins[0]) {
933 for (i = 0; i < cfg->line_outs; i++) {
934 hda_nid_t nid = cfg->line_out_pins[i];
935 if (!is_jack_detectable(codec, nid))
936 continue;
937 snd_printdd("realtek: Enable Line-Out auto-muting "
938 "on NID 0x%x\n", nid);
939 snd_hda_codec_write_cache(codec, nid, 0,
940 AC_VERB_SET_UNSOLICITED_ENABLE,
941 AC_USRSP_EN | ALC_FRONT_EVENT);
942 spec->detect_line = 1;
943 }
944 spec->automute_lines = spec->detect_line;
945 }
946
947 if (spec->automute) {
948 /* create a control for automute mode */
949 alc_add_automute_mode_enum(codec);
950 spec->unsol_event = alc_sku_unsol_event;
951 }
952}
953
954/* return the position of NID in the list, or -1 if not found */
955static int find_idx_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
956{
957 int i;
958 for (i = 0; i < nums; i++)
959 if (list[i] == nid)
960 return i;
961 return -1;
962}
963
964/* check whether dynamic ADC-switching is available */
965static bool alc_check_dyn_adc_switch(struct hda_codec *codec)
966{
967 struct alc_spec *spec = codec->spec;
968 struct hda_input_mux *imux = &spec->private_imux[0];
969 int i, n, idx;
970 hda_nid_t cap, pin;
971
972 if (imux != spec->input_mux) /* no dynamic imux? */
973 return false;
974
975 for (n = 0; n < spec->num_adc_nids; n++) {
976 cap = spec->private_capsrc_nids[n];
977 for (i = 0; i < imux->num_items; i++) {
978 pin = spec->imux_pins[i];
979 if (!pin)
980 return false;
981 if (get_connection_index(codec, cap, pin) < 0)
982 break;
983 }
984 if (i >= imux->num_items)
985 return true; /* no ADC-switch is needed */
986 }
987
988 for (i = 0; i < imux->num_items; i++) {
989 pin = spec->imux_pins[i];
990 for (n = 0; n < spec->num_adc_nids; n++) {
991 cap = spec->private_capsrc_nids[n];
992 idx = get_connection_index(codec, cap, pin);
993 if (idx >= 0) {
994 imux->items[i].index = idx;
995 spec->dyn_adc_idx[i] = n;
996 break;
997 }
998 }
999 }
1000
1001 snd_printdd("realtek: enabling ADC switching\n");
1002 spec->dyn_adc_switch = 1;
1003 return true;
1004}
1005
1006/* rebuild imux for matching with the given auto-mic pins (if not yet) */
1007static bool alc_rebuild_imux_for_auto_mic(struct hda_codec *codec)
1008{
1009 struct alc_spec *spec = codec->spec;
1010 struct hda_input_mux *imux;
1011 static char * const texts[3] = {
1012 "Mic", "Internal Mic", "Dock Mic"
1013 };
1014 int i;
1015
1016 if (!spec->auto_mic)
1017 return false;
1018 imux = &spec->private_imux[0];
1019 if (spec->input_mux == imux)
1020 return true;
1021 spec->imux_pins[0] = spec->ext_mic_pin;
1022 spec->imux_pins[1] = spec->int_mic_pin;
1023 spec->imux_pins[2] = spec->dock_mic_pin;
1024 for (i = 0; i < 3; i++) {
1025 strcpy(imux->items[i].label, texts[i]);
1026 if (spec->imux_pins[i])
1027 imux->num_items = i + 1;
1028 }
1029 spec->num_mux_defs = 1;
1030 spec->input_mux = imux;
1031 return true;
1032}
1033
1034/* check whether all auto-mic pins are valid; setup indices if OK */
1035static bool alc_auto_mic_check_imux(struct hda_codec *codec)
1036{
1037 struct alc_spec *spec = codec->spec;
1038 const struct hda_input_mux *imux;
1039
1040 if (!spec->auto_mic)
1041 return false;
1042 if (spec->auto_mic_valid_imux)
1043 return true; /* already checked */
1044
1045 /* fill up imux indices */
1046 if (!alc_check_dyn_adc_switch(codec)) {
1047 spec->auto_mic = 0;
1048 return false;
1049 }
1050
1051 imux = spec->input_mux;
1052 spec->ext_mic_idx = find_idx_in_nid_list(spec->ext_mic_pin,
1053 spec->imux_pins, imux->num_items);
1054 spec->int_mic_idx = find_idx_in_nid_list(spec->int_mic_pin,
1055 spec->imux_pins, imux->num_items);
1056 spec->dock_mic_idx = find_idx_in_nid_list(spec->dock_mic_pin,
1057 spec->imux_pins, imux->num_items);
1058 if (spec->ext_mic_idx < 0 || spec->int_mic_idx < 0) {
1059 spec->auto_mic = 0;
1060 return false; /* no corresponding imux */
1061 }
1062
1063 snd_hda_codec_write_cache(codec, spec->ext_mic_pin, 0,
1064 AC_VERB_SET_UNSOLICITED_ENABLE,
1065 AC_USRSP_EN | ALC_MIC_EVENT);
1066 if (spec->dock_mic_pin)
1067 snd_hda_codec_write_cache(codec, spec->dock_mic_pin, 0,
1068 AC_VERB_SET_UNSOLICITED_ENABLE,
1069 AC_USRSP_EN | ALC_MIC_EVENT);
1070
1071 spec->auto_mic_valid_imux = 1;
1072 spec->auto_mic = 1;
1073 return true;
1074}
1075
1076/*
1077 * Check the availability of auto-mic switch;
1078 * Set up if really supported
1079 */
1080static void alc_init_auto_mic(struct hda_codec *codec)
1081{
1082 struct alc_spec *spec = codec->spec;
1083 struct auto_pin_cfg *cfg = &spec->autocfg;
1084 hda_nid_t fixed, ext, dock;
1085 int i;
1086
1087 spec->ext_mic_idx = spec->int_mic_idx = spec->dock_mic_idx = -1;
1088
1089 fixed = ext = dock = 0;
1090 for (i = 0; i < cfg->num_inputs; i++) {
1091 hda_nid_t nid = cfg->inputs[i].pin;
1092 unsigned int defcfg;
1093 defcfg = snd_hda_codec_get_pincfg(codec, nid);
1094 switch (snd_hda_get_input_pin_attr(defcfg)) {
1095 case INPUT_PIN_ATTR_INT:
1096 if (fixed)
1097 return; /* already occupied */
1098 if (cfg->inputs[i].type != AUTO_PIN_MIC)
1099 return; /* invalid type */
1100 fixed = nid;
1101 break;
1102 case INPUT_PIN_ATTR_UNUSED:
1103 return; /* invalid entry */
1104 case INPUT_PIN_ATTR_DOCK:
1105 if (dock)
1106 return; /* already occupied */
1107 if (cfg->inputs[i].type > AUTO_PIN_LINE_IN)
1108 return; /* invalid type */
1109 dock = nid;
1110 break;
1111 default:
1112 if (ext)
1113 return; /* already occupied */
1114 if (cfg->inputs[i].type != AUTO_PIN_MIC)
1115 return; /* invalid type */
1116 ext = nid;
1117 break;
1118 }
1119 }
1120 if (!ext && dock) {
1121 ext = dock;
1122 dock = 0;
1123 }
1124 if (!ext || !fixed)
1125 return;
1126 if (!is_jack_detectable(codec, ext))
1127 return; /* no unsol support */
1128 if (dock && !is_jack_detectable(codec, dock))
1129 return; /* no unsol support */
1130
1131 /* check imux indices */
1132 spec->ext_mic_pin = ext;
1133 spec->int_mic_pin = fixed;
1134 spec->dock_mic_pin = dock;
1135
1136 spec->auto_mic = 1;
1137 if (!alc_auto_mic_check_imux(codec))
1138 return;
1139
1140 snd_printdd("realtek: Enable auto-mic switch on NID 0x%x/0x%x/0x%x\n",
1141 ext, fixed, dock);
1142 spec->unsol_event = alc_sku_unsol_event;
1143}
1144
1145/* check the availabilities of auto-mute and auto-mic switches */
1146static void alc_auto_check_switches(struct hda_codec *codec)
1147{
1148 alc_init_auto_hp(codec);
1149 alc_init_auto_mic(codec);
1150}
1151
1152/*
1153 * Realtek SSID verification
1154 */
1155
1156/* Could be any non-zero and even value. When used as fixup, tells
1157 * the driver to ignore any present sku defines.
1158 */
1159#define ALC_FIXUP_SKU_IGNORE (2)
1160
1161static int alc_auto_parse_customize_define(struct hda_codec *codec)
1162{
1163 unsigned int ass, tmp, i;
1164 unsigned nid = 0;
1165 struct alc_spec *spec = codec->spec;
1166
1167 spec->cdefine.enable_pcbeep = 1; /* assume always enabled */
1168
1169 if (spec->cdefine.fixup) {
1170 ass = spec->cdefine.sku_cfg;
1171 if (ass == ALC_FIXUP_SKU_IGNORE)
1172 return -1;
1173 goto do_sku;
1174 }
1175
1176 ass = codec->subsystem_id & 0xffff;
1177 if (ass != codec->bus->pci->subsystem_device && (ass & 1))
1178 goto do_sku;
1179
1180 nid = 0x1d;
1181 if (codec->vendor_id == 0x10ec0260)
1182 nid = 0x17;
1183 ass = snd_hda_codec_get_pincfg(codec, nid);
1184
1185 if (!(ass & 1)) {
1186 printk(KERN_INFO "hda_codec: %s: SKU not ready 0x%08x\n",
1187 codec->chip_name, ass);
1188 return -1;
1189 }
1190
1191 /* check sum */
1192 tmp = 0;
1193 for (i = 1; i < 16; i++) {
1194 if ((ass >> i) & 1)
1195 tmp++;
1196 }
1197 if (((ass >> 16) & 0xf) != tmp)
1198 return -1;
1199
1200 spec->cdefine.port_connectivity = ass >> 30;
1201 spec->cdefine.enable_pcbeep = (ass & 0x100000) >> 20;
1202 spec->cdefine.check_sum = (ass >> 16) & 0xf;
1203 spec->cdefine.customization = ass >> 8;
1204do_sku:
1205 spec->cdefine.sku_cfg = ass;
1206 spec->cdefine.external_amp = (ass & 0x38) >> 3;
1207 spec->cdefine.platform_type = (ass & 0x4) >> 2;
1208 spec->cdefine.swap = (ass & 0x2) >> 1;
1209 spec->cdefine.override = ass & 0x1;
1210
1211 snd_printd("SKU: Nid=0x%x sku_cfg=0x%08x\n",
1212 nid, spec->cdefine.sku_cfg);
1213 snd_printd("SKU: port_connectivity=0x%x\n",
1214 spec->cdefine.port_connectivity);
1215 snd_printd("SKU: enable_pcbeep=0x%x\n", spec->cdefine.enable_pcbeep);
1216 snd_printd("SKU: check_sum=0x%08x\n", spec->cdefine.check_sum);
1217 snd_printd("SKU: customization=0x%08x\n", spec->cdefine.customization);
1218 snd_printd("SKU: external_amp=0x%x\n", spec->cdefine.external_amp);
1219 snd_printd("SKU: platform_type=0x%x\n", spec->cdefine.platform_type);
1220 snd_printd("SKU: swap=0x%x\n", spec->cdefine.swap);
1221 snd_printd("SKU: override=0x%x\n", spec->cdefine.override);
1222
1223 return 0;
1224}
1225
1226/* return true if the given NID is found in the list */
1227static bool found_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
1228{
1229 return find_idx_in_nid_list(nid, list, nums) >= 0;
1230}
1231
1232/* check subsystem ID and set up device-specific initialization;
1233 * return 1 if initialized, 0 if invalid SSID
1234 */
1235/* 32-bit subsystem ID for BIOS loading in HD Audio codec.
1236 * 31 ~ 16 : Manufacture ID
1237 * 15 ~ 8 : SKU ID
1238 * 7 ~ 0 : Assembly ID
1239 * port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
1240 */
1241static int alc_subsystem_id(struct hda_codec *codec,
1242 hda_nid_t porta, hda_nid_t porte,
1243 hda_nid_t portd, hda_nid_t porti)
1244{
1245 unsigned int ass, tmp, i;
1246 unsigned nid;
1247 struct alc_spec *spec = codec->spec;
1248
1249 if (spec->cdefine.fixup) {
1250 ass = spec->cdefine.sku_cfg;
1251 if (ass == ALC_FIXUP_SKU_IGNORE)
1252 return 0;
1253 goto do_sku;
1254 }
1255
1256 ass = codec->subsystem_id & 0xffff;
1257 if ((ass != codec->bus->pci->subsystem_device) && (ass & 1))
1258 goto do_sku;
1259
1260 /* invalid SSID, check the special NID pin defcfg instead */
1261 /*
1262 * 31~30 : port connectivity
1263 * 29~21 : reserve
1264 * 20 : PCBEEP input
1265 * 19~16 : Check sum (15:1)
1266 * 15~1 : Custom
1267 * 0 : override
1268 */
1269 nid = 0x1d;
1270 if (codec->vendor_id == 0x10ec0260)
1271 nid = 0x17;
1272 ass = snd_hda_codec_get_pincfg(codec, nid);
1273 snd_printd("realtek: No valid SSID, "
1274 "checking pincfg 0x%08x for NID 0x%x\n",
1275 ass, nid);
1276 if (!(ass & 1))
1277 return 0;
1278 if ((ass >> 30) != 1) /* no physical connection */
1279 return 0;
1280
1281 /* check sum */
1282 tmp = 0;
1283 for (i = 1; i < 16; i++) {
1284 if ((ass >> i) & 1)
1285 tmp++;
1286 }
1287 if (((ass >> 16) & 0xf) != tmp)
1288 return 0;
1289do_sku:
1290 snd_printd("realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n",
1291 ass & 0xffff, codec->vendor_id);
1292 /*
1293 * 0 : override
1294 * 1 : Swap Jack
1295 * 2 : 0 --> Desktop, 1 --> Laptop
1296 * 3~5 : External Amplifier control
1297 * 7~6 : Reserved
1298 */
1299 tmp = (ass & 0x38) >> 3; /* external Amp control */
1300 switch (tmp) {
1301 case 1:
1302 spec->init_amp = ALC_INIT_GPIO1;
1303 break;
1304 case 3:
1305 spec->init_amp = ALC_INIT_GPIO2;
1306 break;
1307 case 7:
1308 spec->init_amp = ALC_INIT_GPIO3;
1309 break;
1310 case 5:
1311 default:
1312 spec->init_amp = ALC_INIT_DEFAULT;
1313 break;
1314 }
1315
1316 /* is laptop or Desktop and enable the function "Mute internal speaker
1317 * when the external headphone out jack is plugged"
1318 */
1319 if (!(ass & 0x8000))
1320 return 1;
1321 /*
1322 * 10~8 : Jack location
1323 * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered
1324 * 14~13: Resvered
1325 * 15 : 1 --> enable the function "Mute internal speaker
1326 * when the external headphone out jack is plugged"
1327 */
1328 if (!spec->autocfg.hp_pins[0] &&
1329 !(spec->autocfg.line_out_pins[0] &&
1330 spec->autocfg.line_out_type == AUTO_PIN_HP_OUT)) {
1331 hda_nid_t nid;
1332 tmp = (ass >> 11) & 0x3; /* HP to chassis */
1333 if (tmp == 0)
1334 nid = porta;
1335 else if (tmp == 1)
1336 nid = porte;
1337 else if (tmp == 2)
1338 nid = portd;
1339 else if (tmp == 3)
1340 nid = porti;
1341 else
1342 return 1;
1343 if (found_in_nid_list(nid, spec->autocfg.line_out_pins,
1344 spec->autocfg.line_outs))
1345 return 1;
1346 spec->autocfg.hp_pins[0] = nid;
1347 }
1348 return 1;
1349}
1350
1351/* Check the validity of ALC subsystem-id
1352 * ports contains an array of 4 pin NIDs for port-A, E, D and I */
1353static void alc_ssid_check(struct hda_codec *codec, const hda_nid_t *ports)
1354{
1355 if (!alc_subsystem_id(codec, ports[0], ports[1], ports[2], ports[3])) {
1356 struct alc_spec *spec = codec->spec;
1357 snd_printd("realtek: "
1358 "Enable default setup for auto mode as fallback\n");
1359 spec->init_amp = ALC_INIT_DEFAULT;
1360 }
1361}
1362
1363/*
1364 * Fix-up pin default configurations and add default verbs
1365 */
1366
1367struct alc_pincfg {
1368 hda_nid_t nid;
1369 u32 val;
1370};
1371
1372struct alc_model_fixup {
1373 const int id;
1374 const char *name;
1375};
1376
1377struct alc_fixup {
1378 int type;
1379 bool chained;
1380 int chain_id;
1381 union {
1382 unsigned int sku;
1383 const struct alc_pincfg *pins;
1384 const struct hda_verb *verbs;
1385 void (*func)(struct hda_codec *codec,
1386 const struct alc_fixup *fix,
1387 int action);
1388 } v;
1389};
1390
1391enum {
1392 ALC_FIXUP_INVALID,
1393 ALC_FIXUP_SKU,
1394 ALC_FIXUP_PINS,
1395 ALC_FIXUP_VERBS,
1396 ALC_FIXUP_FUNC,
1397};
1398
1399enum {
1400 ALC_FIXUP_ACT_PRE_PROBE,
1401 ALC_FIXUP_ACT_PROBE,
1402 ALC_FIXUP_ACT_INIT,
1403};
1404
1405static void alc_apply_fixup(struct hda_codec *codec, int action)
1406{
1407 struct alc_spec *spec = codec->spec;
1408 int id = spec->fixup_id;
1409#ifdef CONFIG_SND_DEBUG_VERBOSE
1410 const char *modelname = spec->fixup_name;
1411#endif
1412 int depth = 0;
1413
1414 if (!spec->fixup_list)
1415 return;
1416
1417 while (id >= 0) {
1418 const struct alc_fixup *fix = spec->fixup_list + id;
1419 const struct alc_pincfg *cfg;
1420
1421 switch (fix->type) {
1422 case ALC_FIXUP_SKU:
1423 if (action != ALC_FIXUP_ACT_PRE_PROBE || !fix->v.sku)
1424 break;;
1425 snd_printdd(KERN_INFO "hda_codec: %s: "
1426 "Apply sku override for %s\n",
1427 codec->chip_name, modelname);
1428 spec->cdefine.sku_cfg = fix->v.sku;
1429 spec->cdefine.fixup = 1;
1430 break;
1431 case ALC_FIXUP_PINS:
1432 cfg = fix->v.pins;
1433 if (action != ALC_FIXUP_ACT_PRE_PROBE || !cfg)
1434 break;
1435 snd_printdd(KERN_INFO "hda_codec: %s: "
1436 "Apply pincfg for %s\n",
1437 codec->chip_name, modelname);
1438 for (; cfg->nid; cfg++)
1439 snd_hda_codec_set_pincfg(codec, cfg->nid,
1440 cfg->val);
1441 break;
1442 case ALC_FIXUP_VERBS:
1443 if (action != ALC_FIXUP_ACT_PROBE || !fix->v.verbs)
1444 break;
1445 snd_printdd(KERN_INFO "hda_codec: %s: "
1446 "Apply fix-verbs for %s\n",
1447 codec->chip_name, modelname);
1448 add_verb(codec->spec, fix->v.verbs);
1449 break;
1450 case ALC_FIXUP_FUNC:
1451 if (!fix->v.func)
1452 break;
1453 snd_printdd(KERN_INFO "hda_codec: %s: "
1454 "Apply fix-func for %s\n",
1455 codec->chip_name, modelname);
1456 fix->v.func(codec, fix, action);
1457 break;
1458 default:
1459 snd_printk(KERN_ERR "hda_codec: %s: "
1460 "Invalid fixup type %d\n",
1461 codec->chip_name, fix->type);
1462 break;
1463 }
1464 if (!fix->chained)
1465 break;
1466 if (++depth > 10)
1467 break;
1468 id = fix->chain_id;
1469 }
1470}
1471
1472static void alc_pick_fixup(struct hda_codec *codec,
1473 const struct alc_model_fixup *models,
1474 const struct snd_pci_quirk *quirk,
1475 const struct alc_fixup *fixlist)
1476{
1477 struct alc_spec *spec = codec->spec;
1478 int id = -1;
1479 const char *name = NULL;
1480
1481 if (codec->modelname && models) {
1482 while (models->name) {
1483 if (!strcmp(codec->modelname, models->name)) {
1484 id = models->id;
1485 name = models->name;
1486 break;
1487 }
1488 models++;
1489 }
1490 }
1491 if (id < 0) {
1492 quirk = snd_pci_quirk_lookup(codec->bus->pci, quirk);
1493 if (quirk) {
1494 id = quirk->value;
1495#ifdef CONFIG_SND_DEBUG_VERBOSE
1496 name = quirk->name;
1497#endif
1498 }
1499 }
1500
1501 spec->fixup_id = id;
1502 if (id >= 0) {
1503 spec->fixup_list = fixlist;
1504 spec->fixup_name = name;
1505 }
1506}
1507
1508/*
1509 * COEF access helper functions
1510 */
1511static int alc_read_coef_idx(struct hda_codec *codec,
1512 unsigned int coef_idx)
1513{
1514 unsigned int val;
1515 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX,
1516 coef_idx);
1517 val = snd_hda_codec_read(codec, 0x20, 0,
1518 AC_VERB_GET_PROC_COEF, 0);
1519 return val;
1520}
1521
1522static void alc_write_coef_idx(struct hda_codec *codec, unsigned int coef_idx,
1523 unsigned int coef_val)
1524{
1525 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX,
1526 coef_idx);
1527 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF,
1528 coef_val);
1529}
1530
1531/*
1532 * Digital I/O handling
1533 */
1534
1535/* set right pin controls for digital I/O */
1536static void alc_auto_init_digital(struct hda_codec *codec)
1537{
1538 struct alc_spec *spec = codec->spec;
1539 int i;
1540 hda_nid_t pin, dac;
1541
1542 for (i = 0; i < spec->autocfg.dig_outs; i++) {
1543 pin = spec->autocfg.dig_out_pins[i];
1544 if (!pin)
1545 continue;
1546 snd_hda_codec_write(codec, pin, 0,
1547 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
1548 if (!i)
1549 dac = spec->multiout.dig_out_nid;
1550 else
1551 dac = spec->slave_dig_outs[i - 1];
1552 if (!dac || !(get_wcaps(codec, dac) & AC_WCAP_OUT_AMP))
1553 continue;
1554 snd_hda_codec_write(codec, dac, 0,
1555 AC_VERB_SET_AMP_GAIN_MUTE,
1556 AMP_OUT_UNMUTE);
1557 }
1558 pin = spec->autocfg.dig_in_pin;
1559 if (pin)
1560 snd_hda_codec_write(codec, pin, 0,
1561 AC_VERB_SET_PIN_WIDGET_CONTROL,
1562 PIN_IN);
1563}
1564
1565/* parse digital I/Os and set up NIDs in BIOS auto-parse mode */
1566static void alc_auto_parse_digital(struct hda_codec *codec)
1567{
1568 struct alc_spec *spec = codec->spec;
1569 int i, err;
1570 hda_nid_t dig_nid;
1571
1572 /* support multiple SPDIFs; the secondary is set up as a slave */
1573 for (i = 0; i < spec->autocfg.dig_outs; i++) {
1574 hda_nid_t conn[4];
1575 err = snd_hda_get_connections(codec,
1576 spec->autocfg.dig_out_pins[i],
1577 conn, ARRAY_SIZE(conn));
1578 if (err < 0)
1579 continue;
1580 dig_nid = conn[0]; /* assume the first element is audio-out */
1581 if (!i) {
1582 spec->multiout.dig_out_nid = dig_nid;
1583 spec->dig_out_type = spec->autocfg.dig_out_type[0];
1584 } else {
1585 spec->multiout.slave_dig_outs = spec->slave_dig_outs;
1586 if (i >= ARRAY_SIZE(spec->slave_dig_outs) - 1)
1587 break;
1588 spec->slave_dig_outs[i - 1] = dig_nid;
1589 }
1590 }
1591
1592 if (spec->autocfg.dig_in_pin) {
1593 dig_nid = codec->start_nid;
1594 for (i = 0; i < codec->num_nodes; i++, dig_nid++) {
1595 unsigned int wcaps = get_wcaps(codec, dig_nid);
1596 if (get_wcaps_type(wcaps) != AC_WID_AUD_IN)
1597 continue;
1598 if (!(wcaps & AC_WCAP_DIGITAL))
1599 continue;
1600 if (!(wcaps & AC_WCAP_CONN_LIST))
1601 continue;
1602 err = get_connection_index(codec, dig_nid,
1603 spec->autocfg.dig_in_pin);
1604 if (err >= 0) {
1605 spec->dig_in_nid = dig_nid;
1606 break;
1607 }
1608 }
1609 }
1610}
1611
1612/*
1613 * capture mixer elements
1614 */
1615static int alc_cap_vol_info(struct snd_kcontrol *kcontrol,
1616 struct snd_ctl_elem_info *uinfo)
1617{
1618 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1619 struct alc_spec *spec = codec->spec;
1620 unsigned long val;
1621 int err;
1622
1623 mutex_lock(&codec->control_mutex);
1624 if (spec->vol_in_capsrc)
1625 val = HDA_COMPOSE_AMP_VAL(spec->capsrc_nids[0], 3, 0, HDA_OUTPUT);
1626 else
1627 val = HDA_COMPOSE_AMP_VAL(spec->adc_nids[0], 3, 0, HDA_INPUT);
1628 kcontrol->private_value = val;
1629 err = snd_hda_mixer_amp_volume_info(kcontrol, uinfo);
1630 mutex_unlock(&codec->control_mutex);
1631 return err;
1632}
1633
1634static int alc_cap_vol_tlv(struct snd_kcontrol *kcontrol, int op_flag,
1635 unsigned int size, unsigned int __user *tlv)
1636{
1637 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1638 struct alc_spec *spec = codec->spec;
1639 unsigned long val;
1640 int err;
1641
1642 mutex_lock(&codec->control_mutex);
1643 if (spec->vol_in_capsrc)
1644 val = HDA_COMPOSE_AMP_VAL(spec->capsrc_nids[0], 3, 0, HDA_OUTPUT);
1645 else
1646 val = HDA_COMPOSE_AMP_VAL(spec->adc_nids[0], 3, 0, HDA_INPUT);
1647 kcontrol->private_value = val;
1648 err = snd_hda_mixer_amp_tlv(kcontrol, op_flag, size, tlv);
1649 mutex_unlock(&codec->control_mutex);
1650 return err;
1651}
1652
1653typedef int (*getput_call_t)(struct snd_kcontrol *kcontrol,
1654 struct snd_ctl_elem_value *ucontrol);
1655
1656static int alc_cap_getput_caller(struct snd_kcontrol *kcontrol,
1657 struct snd_ctl_elem_value *ucontrol,
1658 getput_call_t func, bool check_adc_switch)
1659{
1660 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1661 struct alc_spec *spec = codec->spec;
1662 int i, err = 0;
1663
1664 mutex_lock(&codec->control_mutex);
1665 if (check_adc_switch && spec->dyn_adc_switch) {
1666 for (i = 0; i < spec->num_adc_nids; i++) {
1667 kcontrol->private_value =
1668 HDA_COMPOSE_AMP_VAL(spec->adc_nids[i],
1669 3, 0, HDA_INPUT);
1670 err = func(kcontrol, ucontrol);
1671 if (err < 0)
1672 goto error;
1673 }
1674 } else {
1675 i = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
1676 if (spec->vol_in_capsrc)
1677 kcontrol->private_value =
1678 HDA_COMPOSE_AMP_VAL(spec->capsrc_nids[i],
1679 3, 0, HDA_OUTPUT);
1680 else
1681 kcontrol->private_value =
1682 HDA_COMPOSE_AMP_VAL(spec->adc_nids[i],
1683 3, 0, HDA_INPUT);
1684 err = func(kcontrol, ucontrol);
1685 }
1686 error:
1687 mutex_unlock(&codec->control_mutex);
1688 return err;
1689}
1690
1691static int alc_cap_vol_get(struct snd_kcontrol *kcontrol,
1692 struct snd_ctl_elem_value *ucontrol)
1693{
1694 return alc_cap_getput_caller(kcontrol, ucontrol,
1695 snd_hda_mixer_amp_volume_get, false);
1696}
1697
1698static int alc_cap_vol_put(struct snd_kcontrol *kcontrol,
1699 struct snd_ctl_elem_value *ucontrol)
1700{
1701 return alc_cap_getput_caller(kcontrol, ucontrol,
1702 snd_hda_mixer_amp_volume_put, true);
1703}
1704
1705/* capture mixer elements */
1706#define alc_cap_sw_info snd_ctl_boolean_stereo_info
1707
1708static int alc_cap_sw_get(struct snd_kcontrol *kcontrol,
1709 struct snd_ctl_elem_value *ucontrol)
1710{
1711 return alc_cap_getput_caller(kcontrol, ucontrol,
1712 snd_hda_mixer_amp_switch_get, false);
1713}
1714
1715static int alc_cap_sw_put(struct snd_kcontrol *kcontrol,
1716 struct snd_ctl_elem_value *ucontrol)
1717{
1718 return alc_cap_getput_caller(kcontrol, ucontrol,
1719 snd_hda_mixer_amp_switch_put, true);
1720}
1721
1722#define _DEFINE_CAPMIX(num) \
1723 { \
1724 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1725 .name = "Capture Switch", \
1726 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, \
1727 .count = num, \
1728 .info = alc_cap_sw_info, \
1729 .get = alc_cap_sw_get, \
1730 .put = alc_cap_sw_put, \
1731 }, \
1732 { \
1733 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1734 .name = "Capture Volume", \
1735 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | \
1736 SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
1737 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK), \
1738 .count = num, \
1739 .info = alc_cap_vol_info, \
1740 .get = alc_cap_vol_get, \
1741 .put = alc_cap_vol_put, \
1742 .tlv = { .c = alc_cap_vol_tlv }, \
1743 }
1744
1745#define _DEFINE_CAPSRC(num) \
1746 { \
1747 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1748 /* .name = "Capture Source", */ \
1749 .name = "Input Source", \
1750 .count = num, \
1751 .info = alc_mux_enum_info, \
1752 .get = alc_mux_enum_get, \
1753 .put = alc_mux_enum_put, \
1754 }
1755
1756#define DEFINE_CAPMIX(num) \
1757static const struct snd_kcontrol_new alc_capture_mixer ## num[] = { \
1758 _DEFINE_CAPMIX(num), \
1759 _DEFINE_CAPSRC(num), \
1760 { } /* end */ \
1761}
1762
1763#define DEFINE_CAPMIX_NOSRC(num) \
1764static const struct snd_kcontrol_new alc_capture_mixer_nosrc ## num[] = { \
1765 _DEFINE_CAPMIX(num), \
1766 { } /* end */ \
1767}
1768
1769/* up to three ADCs */
1770DEFINE_CAPMIX(1);
1771DEFINE_CAPMIX(2);
1772DEFINE_CAPMIX(3);
1773DEFINE_CAPMIX_NOSRC(1);
1774DEFINE_CAPMIX_NOSRC(2);
1775DEFINE_CAPMIX_NOSRC(3);
1776
1777/*
1778 * virtual master controls
1779 */
1780
1781/*
1782 * slave controls for virtual master
1783 */
1784static const char * const alc_slave_vols[] = {
1785 "Front Playback Volume",
1786 "Surround Playback Volume",
1787 "Center Playback Volume",
1788 "LFE Playback Volume",
1789 "Side Playback Volume",
1790 "Headphone Playback Volume",
1791 "Speaker Playback Volume",
1792 "Mono Playback Volume",
1793 "Line-Out Playback Volume",
1794 "PCM Playback Volume",
1795 NULL,
1796};
1797
1798static const char * const alc_slave_sws[] = {
1799 "Front Playback Switch",
1800 "Surround Playback Switch",
1801 "Center Playback Switch",
1802 "LFE Playback Switch",
1803 "Side Playback Switch",
1804 "Headphone Playback Switch",
1805 "Speaker Playback Switch",
1806 "Mono Playback Switch",
1807 "IEC958 Playback Switch",
1808 "Line-Out Playback Switch",
1809 "PCM Playback Switch",
1810 NULL,
1811};
1812
1813/*
1814 * build control elements
1815 */
1816
1817#define NID_MAPPING (-1)
1818
1819#define SUBDEV_SPEAKER_ (0 << 6)
1820#define SUBDEV_HP_ (1 << 6)
1821#define SUBDEV_LINE_ (2 << 6)
1822#define SUBDEV_SPEAKER(x) (SUBDEV_SPEAKER_ | ((x) & 0x3f))
1823#define SUBDEV_HP(x) (SUBDEV_HP_ | ((x) & 0x3f))
1824#define SUBDEV_LINE(x) (SUBDEV_LINE_ | ((x) & 0x3f))
1825
1826static void alc_free_kctls(struct hda_codec *codec);
1827
1828#ifdef CONFIG_SND_HDA_INPUT_BEEP
1829/* additional beep mixers; the actual parameters are overwritten at build */
1830static const struct snd_kcontrol_new alc_beep_mixer[] = {
1831 HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT),
1832 HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_INPUT),
1833 { } /* end */
1834};
1835#endif
1836
1837static int alc_build_controls(struct hda_codec *codec)
1838{
1839 struct alc_spec *spec = codec->spec;
1840 struct snd_kcontrol *kctl = NULL;
1841 const struct snd_kcontrol_new *knew;
1842 int i, j, err;
1843 unsigned int u;
1844 hda_nid_t nid;
1845
1846 for (i = 0; i < spec->num_mixers; i++) {
1847 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
1848 if (err < 0)
1849 return err;
1850 }
1851 if (spec->cap_mixer) {
1852 err = snd_hda_add_new_ctls(codec, spec->cap_mixer);
1853 if (err < 0)
1854 return err;
1855 }
1856 if (spec->multiout.dig_out_nid) {
1857 err = snd_hda_create_spdif_out_ctls(codec,
1858 spec->multiout.dig_out_nid,
1859 spec->multiout.dig_out_nid);
1860 if (err < 0)
1861 return err;
1862 if (!spec->no_analog) {
1863 err = snd_hda_create_spdif_share_sw(codec,
1864 &spec->multiout);
1865 if (err < 0)
1866 return err;
1867 spec->multiout.share_spdif = 1;
1868 }
1869 }
1870 if (spec->dig_in_nid) {
1871 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
1872 if (err < 0)
1873 return err;
1874 }
1875
1876#ifdef CONFIG_SND_HDA_INPUT_BEEP
1877 /* create beep controls if needed */
1878 if (spec->beep_amp) {
1879 const struct snd_kcontrol_new *knew;
1880 for (knew = alc_beep_mixer; knew->name; knew++) {
1881 struct snd_kcontrol *kctl;
1882 kctl = snd_ctl_new1(knew, codec);
1883 if (!kctl)
1884 return -ENOMEM;
1885 kctl->private_value = spec->beep_amp;
1886 err = snd_hda_ctl_add(codec, 0, kctl);
1887 if (err < 0)
1888 return err;
1889 }
1890 }
1891#endif
1892
1893 /* if we have no master control, let's create it */
1894 if (!spec->no_analog &&
1895 !snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) {
1896 unsigned int vmaster_tlv[4];
1897 snd_hda_set_vmaster_tlv(codec, spec->vmaster_nid,
1898 HDA_OUTPUT, vmaster_tlv);
1899 err = snd_hda_add_vmaster(codec, "Master Playback Volume",
1900 vmaster_tlv, alc_slave_vols);
1901 if (err < 0)
1902 return err;
1903 }
1904 if (!spec->no_analog &&
1905 !snd_hda_find_mixer_ctl(codec, "Master Playback Switch")) {
1906 err = snd_hda_add_vmaster(codec, "Master Playback Switch",
1907 NULL, alc_slave_sws);
1908 if (err < 0)
1909 return err;
1910 }
1911
1912 /* assign Capture Source enums to NID */
1913 if (spec->capsrc_nids || spec->adc_nids) {
1914 kctl = snd_hda_find_mixer_ctl(codec, "Capture Source");
1915 if (!kctl)
1916 kctl = snd_hda_find_mixer_ctl(codec, "Input Source");
1917 for (i = 0; kctl && i < kctl->count; i++) {
1918 const hda_nid_t *nids = spec->capsrc_nids;
1919 if (!nids)
1920 nids = spec->adc_nids;
1921 err = snd_hda_add_nid(codec, kctl, i, nids[i]);
1922 if (err < 0)
1923 return err;
1924 }
1925 }
1926 if (spec->cap_mixer && spec->adc_nids) {
1927 const char *kname = kctl ? kctl->id.name : NULL;
1928 for (knew = spec->cap_mixer; knew->name; knew++) {
1929 if (kname && strcmp(knew->name, kname) == 0)
1930 continue;
1931 kctl = snd_hda_find_mixer_ctl(codec, knew->name);
1932 for (i = 0; kctl && i < kctl->count; i++) {
1933 err = snd_hda_add_nid(codec, kctl, i,
1934 spec->adc_nids[i]);
1935 if (err < 0)
1936 return err;
1937 }
1938 }
1939 }
1940
1941 /* other nid->control mapping */
1942 for (i = 0; i < spec->num_mixers; i++) {
1943 for (knew = spec->mixers[i]; knew->name; knew++) {
1944 if (knew->iface != NID_MAPPING)
1945 continue;
1946 kctl = snd_hda_find_mixer_ctl(codec, knew->name);
1947 if (kctl == NULL)
1948 continue;
1949 u = knew->subdevice;
1950 for (j = 0; j < 4; j++, u >>= 8) {
1951 nid = u & 0x3f;
1952 if (nid == 0)
1953 continue;
1954 switch (u & 0xc0) {
1955 case SUBDEV_SPEAKER_:
1956 nid = spec->autocfg.speaker_pins[nid];
1957 break;
1958 case SUBDEV_LINE_:
1959 nid = spec->autocfg.line_out_pins[nid];
1960 break;
1961 case SUBDEV_HP_:
1962 nid = spec->autocfg.hp_pins[nid];
1963 break;
1964 default:
1965 continue;
1966 }
1967 err = snd_hda_add_nid(codec, kctl, 0, nid);
1968 if (err < 0)
1969 return err;
1970 }
1971 u = knew->private_value;
1972 for (j = 0; j < 4; j++, u >>= 8) {
1973 nid = u & 0xff;
1974 if (nid == 0)
1975 continue;
1976 err = snd_hda_add_nid(codec, kctl, 0, nid);
1977 if (err < 0)
1978 return err;
1979 }
1980 }
1981 }
1982
1983 alc_free_kctls(codec); /* no longer needed */
1984
1985 return 0;
1986}
1987
1988
1989/*
1990 * Common callbacks
1991 */
1992
1993static void alc_init_special_input_src(struct hda_codec *codec);
1994
1995static int alc_init(struct hda_codec *codec)
1996{
1997 struct alc_spec *spec = codec->spec;
1998 unsigned int i;
1999
2000 alc_fix_pll(codec);
2001 alc_auto_init_amp(codec, spec->init_amp);
2002
2003 for (i = 0; i < spec->num_init_verbs; i++)
2004 snd_hda_sequence_write(codec, spec->init_verbs[i]);
2005 alc_init_special_input_src(codec);
2006
2007 if (spec->init_hook)
2008 spec->init_hook(codec);
2009
2010 alc_apply_fixup(codec, ALC_FIXUP_ACT_INIT);
2011
2012 hda_call_check_power_status(codec, 0x01);
2013 return 0;
2014}
2015
2016static void alc_unsol_event(struct hda_codec *codec, unsigned int res)
2017{
2018 struct alc_spec *spec = codec->spec;
2019
2020 if (spec->unsol_event)
2021 spec->unsol_event(codec, res);
2022}
2023
2024#ifdef CONFIG_SND_HDA_POWER_SAVE
2025static int alc_check_power_status(struct hda_codec *codec, hda_nid_t nid)
2026{
2027 struct alc_spec *spec = codec->spec;
2028 return snd_hda_check_amp_list_power(codec, &spec->loopback, nid);
2029}
2030#endif
2031
2032/*
2033 * Analog playback callbacks
2034 */
2035static int alc_playback_pcm_open(struct hda_pcm_stream *hinfo,
2036 struct hda_codec *codec,
2037 struct snd_pcm_substream *substream)
2038{
2039 struct alc_spec *spec = codec->spec;
2040 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
2041 hinfo);
2042}
2043
2044static int alc_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2045 struct hda_codec *codec,
2046 unsigned int stream_tag,
2047 unsigned int format,
2048 struct snd_pcm_substream *substream)
2049{
2050 struct alc_spec *spec = codec->spec;
2051 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
2052 stream_tag, format, substream);
2053}
2054
2055static int alc_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2056 struct hda_codec *codec,
2057 struct snd_pcm_substream *substream)
2058{
2059 struct alc_spec *spec = codec->spec;
2060 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
2061}
2062
2063/*
2064 * Digital out
2065 */
2066static int alc_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
2067 struct hda_codec *codec,
2068 struct snd_pcm_substream *substream)
2069{
2070 struct alc_spec *spec = codec->spec;
2071 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
2072}
2073
2074static int alc_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2075 struct hda_codec *codec,
2076 unsigned int stream_tag,
2077 unsigned int format,
2078 struct snd_pcm_substream *substream)
2079{
2080 struct alc_spec *spec = codec->spec;
2081 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
2082 stream_tag, format, substream);
2083}
2084
2085static int alc_dig_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2086 struct hda_codec *codec,
2087 struct snd_pcm_substream *substream)
2088{
2089 struct alc_spec *spec = codec->spec;
2090 return snd_hda_multi_out_dig_cleanup(codec, &spec->multiout);
2091}
2092
2093static int alc_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
2094 struct hda_codec *codec,
2095 struct snd_pcm_substream *substream)
2096{
2097 struct alc_spec *spec = codec->spec;
2098 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
2099}
2100
2101/*
2102 * Analog capture
2103 */
2104static int alc_alt_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
2105 struct hda_codec *codec,
2106 unsigned int stream_tag,
2107 unsigned int format,
2108 struct snd_pcm_substream *substream)
2109{
2110 struct alc_spec *spec = codec->spec;
2111
2112 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number + 1],
2113 stream_tag, 0, format);
2114 return 0;
2115}
2116
2117static int alc_alt_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
2118 struct hda_codec *codec,
2119 struct snd_pcm_substream *substream)
2120{
2121 struct alc_spec *spec = codec->spec;
2122
2123 snd_hda_codec_cleanup_stream(codec,
2124 spec->adc_nids[substream->number + 1]);
2125 return 0;
2126}
2127
2128/* analog capture with dynamic dual-adc changes */
2129static int dyn_adc_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
2130 struct hda_codec *codec,
2131 unsigned int stream_tag,
2132 unsigned int format,
2133 struct snd_pcm_substream *substream)
2134{
2135 struct alc_spec *spec = codec->spec;
2136 spec->cur_adc = spec->adc_nids[spec->dyn_adc_idx[spec->cur_mux[0]]];
2137 spec->cur_adc_stream_tag = stream_tag;
2138 spec->cur_adc_format = format;
2139 snd_hda_codec_setup_stream(codec, spec->cur_adc, stream_tag, 0, format);
2140 return 0;
2141}
2142
2143static int dyn_adc_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
2144 struct hda_codec *codec,
2145 struct snd_pcm_substream *substream)
2146{
2147 struct alc_spec *spec = codec->spec;
2148 snd_hda_codec_cleanup_stream(codec, spec->cur_adc);
2149 spec->cur_adc = 0;
2150 return 0;
2151}
2152
2153static const struct hda_pcm_stream dyn_adc_pcm_analog_capture = {
2154 .substreams = 1,
2155 .channels_min = 2,
2156 .channels_max = 2,
2157 .nid = 0, /* fill later */
2158 .ops = {
2159 .prepare = dyn_adc_capture_pcm_prepare,
2160 .cleanup = dyn_adc_capture_pcm_cleanup
2161 },
2162};
2163
2164/*
2165 */
2166static const struct hda_pcm_stream alc_pcm_analog_playback = {
2167 .substreams = 1,
2168 .channels_min = 2,
2169 .channels_max = 8,
2170 /* NID is set in alc_build_pcms */
2171 .ops = {
2172 .open = alc_playback_pcm_open,
2173 .prepare = alc_playback_pcm_prepare,
2174 .cleanup = alc_playback_pcm_cleanup
2175 },
2176};
2177
2178static const struct hda_pcm_stream alc_pcm_analog_capture = {
2179 .substreams = 1,
2180 .channels_min = 2,
2181 .channels_max = 2,
2182 /* NID is set in alc_build_pcms */
2183};
2184
2185static const struct hda_pcm_stream alc_pcm_analog_alt_playback = {
2186 .substreams = 1,
2187 .channels_min = 2,
2188 .channels_max = 2,
2189 /* NID is set in alc_build_pcms */
2190};
2191
2192static const struct hda_pcm_stream alc_pcm_analog_alt_capture = {
2193 .substreams = 2, /* can be overridden */
2194 .channels_min = 2,
2195 .channels_max = 2,
2196 /* NID is set in alc_build_pcms */
2197 .ops = {
2198 .prepare = alc_alt_capture_pcm_prepare,
2199 .cleanup = alc_alt_capture_pcm_cleanup
2200 },
2201};
2202
2203static const struct hda_pcm_stream alc_pcm_digital_playback = {
2204 .substreams = 1,
2205 .channels_min = 2,
2206 .channels_max = 2,
2207 /* NID is set in alc_build_pcms */
2208 .ops = {
2209 .open = alc_dig_playback_pcm_open,
2210 .close = alc_dig_playback_pcm_close,
2211 .prepare = alc_dig_playback_pcm_prepare,
2212 .cleanup = alc_dig_playback_pcm_cleanup
2213 },
2214};
2215
2216static const struct hda_pcm_stream alc_pcm_digital_capture = {
2217 .substreams = 1,
2218 .channels_min = 2,
2219 .channels_max = 2,
2220 /* NID is set in alc_build_pcms */
2221};
2222
2223/* Used by alc_build_pcms to flag that a PCM has no playback stream */
2224static const struct hda_pcm_stream alc_pcm_null_stream = {
2225 .substreams = 0,
2226 .channels_min = 0,
2227 .channels_max = 0,
2228};
2229
2230static int alc_build_pcms(struct hda_codec *codec)
2231{
2232 struct alc_spec *spec = codec->spec;
2233 struct hda_pcm *info = spec->pcm_rec;
2234 const struct hda_pcm_stream *p;
2235 int i;
2236
2237 codec->num_pcms = 1;
2238 codec->pcm_info = info;
2239
2240 if (spec->no_analog)
2241 goto skip_analog;
2242
2243 snprintf(spec->stream_name_analog, sizeof(spec->stream_name_analog),
2244 "%s Analog", codec->chip_name);
2245 info->name = spec->stream_name_analog;
2246
2247 if (spec->multiout.dac_nids > 0) {
2248 p = spec->stream_analog_playback;
2249 if (!p)
2250 p = &alc_pcm_analog_playback;
2251 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *p;
2252 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dac_nids[0];
2253 }
2254 if (spec->adc_nids) {
2255 p = spec->stream_analog_capture;
2256 if (!p) {
2257 if (spec->dyn_adc_switch)
2258 p = &dyn_adc_pcm_analog_capture;
2259 else
2260 p = &alc_pcm_analog_capture;
2261 }
2262 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *p;
2263 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
2264 }
2265
2266 if (spec->channel_mode) {
2267 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = 0;
2268 for (i = 0; i < spec->num_channel_mode; i++) {
2269 if (spec->channel_mode[i].channels > info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max) {
2270 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = spec->channel_mode[i].channels;
2271 }
2272 }
2273 }
2274
2275 skip_analog:
2276 /* SPDIF for stream index #1 */
2277 if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
2278 snprintf(spec->stream_name_digital,
2279 sizeof(spec->stream_name_digital),
2280 "%s Digital", codec->chip_name);
2281 codec->num_pcms = 2;
2282 codec->slave_dig_outs = spec->multiout.slave_dig_outs;
2283 info = spec->pcm_rec + 1;
2284 info->name = spec->stream_name_digital;
2285 if (spec->dig_out_type)
2286 info->pcm_type = spec->dig_out_type;
2287 else
2288 info->pcm_type = HDA_PCM_TYPE_SPDIF;
2289 if (spec->multiout.dig_out_nid) {
2290 p = spec->stream_digital_playback;
2291 if (!p)
2292 p = &alc_pcm_digital_playback;
2293 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *p;
2294 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
2295 }
2296 if (spec->dig_in_nid) {
2297 p = spec->stream_digital_capture;
2298 if (!p)
2299 p = &alc_pcm_digital_capture;
2300 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *p;
2301 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
2302 }
2303 /* FIXME: do we need this for all Realtek codec models? */
2304 codec->spdif_status_reset = 1;
2305 }
2306
2307 if (spec->no_analog)
2308 return 0;
2309
2310 /* If the use of more than one ADC is requested for the current
2311 * model, configure a second analog capture-only PCM.
2312 */
2313 /* Additional Analaog capture for index #2 */
2314 if (spec->alt_dac_nid || spec->num_adc_nids > 1) {
2315 codec->num_pcms = 3;
2316 info = spec->pcm_rec + 2;
2317 info->name = spec->stream_name_analog;
2318 if (spec->alt_dac_nid) {
2319 p = spec->stream_analog_alt_playback;
2320 if (!p)
2321 p = &alc_pcm_analog_alt_playback;
2322 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *p;
2323 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
2324 spec->alt_dac_nid;
2325 } else {
2326 info->stream[SNDRV_PCM_STREAM_PLAYBACK] =
2327 alc_pcm_null_stream;
2328 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = 0;
2329 }
2330 if (spec->num_adc_nids > 1) {
2331 p = spec->stream_analog_alt_capture;
2332 if (!p)
2333 p = &alc_pcm_analog_alt_capture;
2334 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *p;
2335 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid =
2336 spec->adc_nids[1];
2337 info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams =
2338 spec->num_adc_nids - 1;
2339 } else {
2340 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
2341 alc_pcm_null_stream;
2342 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = 0;
2343 }
2344 }
2345
2346 return 0;
2347}
2348
2349static inline void alc_shutup(struct hda_codec *codec)
2350{
2351 struct alc_spec *spec = codec->spec;
2352
2353 if (spec && spec->shutup)
2354 spec->shutup(codec);
2355 snd_hda_shutup_pins(codec);
2356}
2357
2358static void alc_free_kctls(struct hda_codec *codec)
2359{
2360 struct alc_spec *spec = codec->spec;
2361
2362 if (spec->kctls.list) {
2363 struct snd_kcontrol_new *kctl = spec->kctls.list;
2364 int i;
2365 for (i = 0; i < spec->kctls.used; i++)
2366 kfree(kctl[i].name);
2367 }
2368 snd_array_free(&spec->kctls);
2369}
2370
2371static void alc_free(struct hda_codec *codec)
2372{
2373 struct alc_spec *spec = codec->spec;
2374
2375 if (!spec)
2376 return;
2377
2378 alc_shutup(codec);
2379 snd_hda_input_jack_free(codec);
2380 alc_free_kctls(codec);
2381 kfree(spec);
2382 snd_hda_detach_beep_device(codec);
2383}
2384
2385#ifdef CONFIG_SND_HDA_POWER_SAVE
2386static void alc_power_eapd(struct hda_codec *codec)
2387{
2388 alc_auto_setup_eapd(codec, false);
2389}
2390
2391static int alc_suspend(struct hda_codec *codec, pm_message_t state)
2392{
2393 struct alc_spec *spec = codec->spec;
2394 alc_shutup(codec);
2395 if (spec && spec->power_hook)
2396 spec->power_hook(codec);
2397 return 0;
2398}
2399#endif
2400
2401#ifdef CONFIG_PM
2402static int alc_resume(struct hda_codec *codec)
2403{
2404 msleep(150); /* to avoid pop noise */
2405 codec->patch_ops.init(codec);
2406 snd_hda_codec_resume_amp(codec);
2407 snd_hda_codec_resume_cache(codec);
2408 hda_call_check_power_status(codec, 0x01);
2409 return 0;
2410}
2411#endif
2412
2413/*
2414 */
2415static const struct hda_codec_ops alc_patch_ops = {
2416 .build_controls = alc_build_controls,
2417 .build_pcms = alc_build_pcms,
2418 .init = alc_init,
2419 .free = alc_free,
2420 .unsol_event = alc_unsol_event,
2421#ifdef CONFIG_PM
2422 .resume = alc_resume,
2423#endif
2424#ifdef CONFIG_SND_HDA_POWER_SAVE
2425 .suspend = alc_suspend,
2426 .check_power_status = alc_check_power_status,
2427#endif
2428 .reboot_notify = alc_shutup,
2429};
2430
2431/* replace the codec chip_name with the given string */
2432static int alc_codec_rename(struct hda_codec *codec, const char *name)
2433{
2434 kfree(codec->chip_name);
2435 codec->chip_name = kstrdup(name, GFP_KERNEL);
2436 if (!codec->chip_name) {
2437 alc_free(codec);
2438 return -ENOMEM;
2439 }
2440 return 0;
2441}
2442
2443/*
2444 * Automatic parse of I/O pins from the BIOS configuration
2445 */
2446
2447enum {
2448 ALC_CTL_WIDGET_VOL,
2449 ALC_CTL_WIDGET_MUTE,
2450 ALC_CTL_BIND_MUTE,
2451};
2452static const struct snd_kcontrol_new alc_control_templates[] = {
2453 HDA_CODEC_VOLUME(NULL, 0, 0, 0),
2454 HDA_CODEC_MUTE(NULL, 0, 0, 0),
2455 HDA_BIND_MUTE(NULL, 0, 0, 0),
2456};
2457
2458/* add dynamic controls */
2459static int add_control(struct alc_spec *spec, int type, const char *name,
2460 int cidx, unsigned long val)
2461{
2462 struct snd_kcontrol_new *knew;
2463
2464 knew = alc_kcontrol_new(spec);
2465 if (!knew)
2466 return -ENOMEM;
2467 *knew = alc_control_templates[type];
2468 knew->name = kstrdup(name, GFP_KERNEL);
2469 if (!knew->name)
2470 return -ENOMEM;
2471 knew->index = cidx;
2472 if (get_amp_nid_(val))
2473 knew->subdevice = HDA_SUBDEV_AMP_FLAG;
2474 knew->private_value = val;
2475 return 0;
2476}
2477
2478static int add_control_with_pfx(struct alc_spec *spec, int type,
2479 const char *pfx, const char *dir,
2480 const char *sfx, int cidx, unsigned long val)
2481{
2482 char name[32];
2483 snprintf(name, sizeof(name), "%s %s %s", pfx, dir, sfx);
2484 return add_control(spec, type, name, cidx, val);
2485}
2486
2487#define add_pb_vol_ctrl(spec, type, pfx, val) \
2488 add_control_with_pfx(spec, type, pfx, "Playback", "Volume", 0, val)
2489#define add_pb_sw_ctrl(spec, type, pfx, val) \
2490 add_control_with_pfx(spec, type, pfx, "Playback", "Switch", 0, val)
2491#define __add_pb_vol_ctrl(spec, type, pfx, cidx, val) \
2492 add_control_with_pfx(spec, type, pfx, "Playback", "Volume", cidx, val)
2493#define __add_pb_sw_ctrl(spec, type, pfx, cidx, val) \
2494 add_control_with_pfx(spec, type, pfx, "Playback", "Switch", cidx, val)
2495
2496static const char *alc_get_line_out_pfx(struct alc_spec *spec, int ch,
2497 bool can_be_master, int *index)
2498{
2499 struct auto_pin_cfg *cfg = &spec->autocfg;
2500 static const char * const chname[4] = {
2501 "Front", "Surround", NULL /*CLFE*/, "Side"
2502 };
2503
2504 *index = 0;
2505 if (cfg->line_outs == 1 && !spec->multi_ios &&
2506 !cfg->hp_outs && !cfg->speaker_outs && can_be_master)
2507 return "Master";
2508
2509 switch (cfg->line_out_type) {
2510 case AUTO_PIN_SPEAKER_OUT:
2511 if (cfg->line_outs == 1)
2512 return "Speaker";
2513 break;
2514 case AUTO_PIN_HP_OUT:
2515 /* for multi-io case, only the primary out */
2516 if (ch && spec->multi_ios)
2517 break;
2518 *index = ch;
2519 return "Headphone";
2520 default:
2521 if (cfg->line_outs == 1 && !spec->multi_ios)
2522 return "PCM";
2523 break;
2524 }
2525 return chname[ch];
2526}
2527
2528/* create input playback/capture controls for the given pin */
2529static int new_analog_input(struct alc_spec *spec, hda_nid_t pin,
2530 const char *ctlname, int ctlidx,
2531 int idx, hda_nid_t mix_nid)
2532{
2533 int err;
2534
2535 err = __add_pb_vol_ctrl(spec, ALC_CTL_WIDGET_VOL, ctlname, ctlidx,
2536 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
2537 if (err < 0)
2538 return err;
2539 err = __add_pb_sw_ctrl(spec, ALC_CTL_WIDGET_MUTE, ctlname, ctlidx,
2540 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
2541 if (err < 0)
2542 return err;
2543 return 0;
2544}
2545
2546static int alc_is_input_pin(struct hda_codec *codec, hda_nid_t nid)
2547{
2548 unsigned int pincap = snd_hda_query_pin_caps(codec, nid);
2549 return (pincap & AC_PINCAP_IN) != 0;
2550}
2551
2552/* Parse the codec tree and retrieve ADCs and corresponding capsrc MUXs */
2553static int alc_auto_fill_adc_caps(struct hda_codec *codec)
2554{
2555 struct alc_spec *spec = codec->spec;
2556 hda_nid_t nid;
2557 hda_nid_t *adc_nids = spec->private_adc_nids;
2558 hda_nid_t *cap_nids = spec->private_capsrc_nids;
2559 int max_nums = ARRAY_SIZE(spec->private_adc_nids);
2560 bool indep_capsrc = false;
2561 int i, nums = 0;
2562
2563 nid = codec->start_nid;
2564 for (i = 0; i < codec->num_nodes; i++, nid++) {
2565 hda_nid_t src;
2566 const hda_nid_t *list;
2567 unsigned int caps = get_wcaps(codec, nid);
2568 int type = get_wcaps_type(caps);
2569
2570 if (type != AC_WID_AUD_IN || (caps & AC_WCAP_DIGITAL))
2571 continue;
2572 adc_nids[nums] = nid;
2573 cap_nids[nums] = nid;
2574 src = nid;
2575 for (;;) {
2576 int n;
2577 type = get_wcaps_type(get_wcaps(codec, src));
2578 if (type == AC_WID_PIN)
2579 break;
2580 if (type == AC_WID_AUD_SEL) {
2581 cap_nids[nums] = src;
2582 indep_capsrc = true;
2583 break;
2584 }
2585 n = snd_hda_get_conn_list(codec, src, &list);
2586 if (n > 1) {
2587 cap_nids[nums] = src;
2588 indep_capsrc = true;
2589 break;
2590 } else if (n != 1)
2591 break;
2592 src = *list;
2593 }
2594 if (++nums >= max_nums)
2595 break;
2596 }
2597 spec->adc_nids = spec->private_adc_nids;
2598 spec->capsrc_nids = spec->private_capsrc_nids;
2599 spec->num_adc_nids = nums;
2600 return nums;
2601}
2602
2603/* create playback/capture controls for input pins */
2604static int alc_auto_create_input_ctls(struct hda_codec *codec)
2605{
2606 struct alc_spec *spec = codec->spec;
2607 const struct auto_pin_cfg *cfg = &spec->autocfg;
2608 hda_nid_t mixer = spec->mixer_nid;
2609 struct hda_input_mux *imux = &spec->private_imux[0];
2610 int num_adcs;
2611 int i, c, err, idx, type_idx = 0;
2612 const char *prev_label = NULL;
2613
2614 num_adcs = alc_auto_fill_adc_caps(codec);
2615 if (num_adcs < 0)
2616 return 0;
2617
2618 for (i = 0; i < cfg->num_inputs; i++) {
2619 hda_nid_t pin;
2620 const char *label;
2621
2622 pin = cfg->inputs[i].pin;
2623 if (!alc_is_input_pin(codec, pin))
2624 continue;
2625
2626 label = hda_get_autocfg_input_label(codec, cfg, i);
2627 if (prev_label && !strcmp(label, prev_label))
2628 type_idx++;
2629 else
2630 type_idx = 0;
2631 prev_label = label;
2632
2633 if (mixer) {
2634 idx = get_connection_index(codec, mixer, pin);
2635 if (idx >= 0) {
2636 err = new_analog_input(spec, pin,
2637 label, type_idx,
2638 idx, mixer);
2639 if (err < 0)
2640 return err;
2641 }
2642 }
2643
2644 for (c = 0; c < num_adcs; c++) {
2645 hda_nid_t cap = spec->capsrc_nids ?
2646 spec->capsrc_nids[c] : spec->adc_nids[c];
2647 idx = get_connection_index(codec, cap, pin);
2648 if (idx >= 0) {
2649 spec->imux_pins[imux->num_items] = pin;
2650 snd_hda_add_imux_item(imux, label, idx, NULL);
2651 break;
2652 }
2653 }
2654 }
2655
2656 spec->num_mux_defs = 1;
2657 spec->input_mux = imux;
2658
2659 return 0;
2660}
2661
2662static void alc_set_pin_output(struct hda_codec *codec, hda_nid_t nid,
2663 unsigned int pin_type)
2664{
2665 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
2666 pin_type);
2667 /* unmute pin */
2668 if (nid_has_mute(codec, nid, HDA_OUTPUT))
2669 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
2670 AMP_OUT_UNMUTE);
2671}
2672
2673static int get_pin_type(int line_out_type)
2674{
2675 if (line_out_type == AUTO_PIN_HP_OUT)
2676 return PIN_HP;
2677 else
2678 return PIN_OUT;
2679}
2680
2681static void alc_auto_init_analog_input(struct hda_codec *codec)
2682{
2683 struct alc_spec *spec = codec->spec;
2684 struct auto_pin_cfg *cfg = &spec->autocfg;
2685 int i;
2686
2687 for (i = 0; i < cfg->num_inputs; i++) {
2688 hda_nid_t nid = cfg->inputs[i].pin;
2689 if (alc_is_input_pin(codec, nid)) {
2690 alc_set_input_pin(codec, nid, cfg->inputs[i].type);
2691 if (get_wcaps(codec, nid) & AC_WCAP_OUT_AMP)
2692 snd_hda_codec_write(codec, nid, 0,
2693 AC_VERB_SET_AMP_GAIN_MUTE,
2694 AMP_OUT_MUTE);
2695 }
2696 }
2697
2698 /* mute all loopback inputs */
2699 if (spec->mixer_nid) {
2700 int nums = snd_hda_get_conn_list(codec, spec->mixer_nid, NULL);
2701 for (i = 0; i < nums; i++)
2702 snd_hda_codec_write(codec, spec->mixer_nid, 0,
2703 AC_VERB_SET_AMP_GAIN_MUTE,
2704 AMP_IN_MUTE(i));
2705 }
2706}
2707
2708/* convert from MIX nid to DAC */
2709static hda_nid_t alc_auto_mix_to_dac(struct hda_codec *codec, hda_nid_t nid)
2710{
2711 hda_nid_t list[5];
2712 int i, num;
2713
2714 if (get_wcaps_type(get_wcaps(codec, nid)) == AC_WID_AUD_OUT)
2715 return nid;
2716 num = snd_hda_get_connections(codec, nid, list, ARRAY_SIZE(list));
2717 for (i = 0; i < num; i++) {
2718 if (get_wcaps_type(get_wcaps(codec, list[i])) == AC_WID_AUD_OUT)
2719 return list[i];
2720 }
2721 return 0;
2722}
2723
2724/* go down to the selector widget before the mixer */
2725static hda_nid_t alc_go_down_to_selector(struct hda_codec *codec, hda_nid_t pin)
2726{
2727 hda_nid_t srcs[5];
2728 int num = snd_hda_get_connections(codec, pin, srcs,
2729 ARRAY_SIZE(srcs));
2730 if (num != 1 ||
2731 get_wcaps_type(get_wcaps(codec, srcs[0])) != AC_WID_AUD_SEL)
2732 return pin;
2733 return srcs[0];
2734}
2735
2736/* get MIX nid connected to the given pin targeted to DAC */
2737static hda_nid_t alc_auto_dac_to_mix(struct hda_codec *codec, hda_nid_t pin,
2738 hda_nid_t dac)
2739{
2740 hda_nid_t mix[5];
2741 int i, num;
2742
2743 pin = alc_go_down_to_selector(codec, pin);
2744 num = snd_hda_get_connections(codec, pin, mix, ARRAY_SIZE(mix));
2745 for (i = 0; i < num; i++) {
2746 if (alc_auto_mix_to_dac(codec, mix[i]) == dac)
2747 return mix[i];
2748 }
2749 return 0;
2750}
2751
2752/* select the connection from pin to DAC if needed */
2753static int alc_auto_select_dac(struct hda_codec *codec, hda_nid_t pin,
2754 hda_nid_t dac)
2755{
2756 hda_nid_t mix[5];
2757 int i, num;
2758
2759 pin = alc_go_down_to_selector(codec, pin);
2760 num = snd_hda_get_connections(codec, pin, mix, ARRAY_SIZE(mix));
2761 if (num < 2)
2762 return 0;
2763 for (i = 0; i < num; i++) {
2764 if (alc_auto_mix_to_dac(codec, mix[i]) == dac) {
2765 snd_hda_codec_update_cache(codec, pin, 0,
2766 AC_VERB_SET_CONNECT_SEL, i);
2767 return 0;
2768 }
2769 }
2770 return 0;
2771}
2772
2773/* look for an empty DAC slot */
2774static hda_nid_t alc_auto_look_for_dac(struct hda_codec *codec, hda_nid_t pin)
2775{
2776 struct alc_spec *spec = codec->spec;
2777 hda_nid_t srcs[5];
2778 int i, num;
2779
2780 pin = alc_go_down_to_selector(codec, pin);
2781 num = snd_hda_get_connections(codec, pin, srcs, ARRAY_SIZE(srcs));
2782 for (i = 0; i < num; i++) {
2783 hda_nid_t nid = alc_auto_mix_to_dac(codec, srcs[i]);
2784 if (!nid)
2785 continue;
2786 if (found_in_nid_list(nid, spec->multiout.dac_nids,
2787 spec->multiout.num_dacs))
2788 continue;
2789 if (spec->multiout.hp_nid == nid)
2790 continue;
2791 if (found_in_nid_list(nid, spec->multiout.extra_out_nid,
2792 ARRAY_SIZE(spec->multiout.extra_out_nid)))
2793 continue;
2794 return nid;
2795 }
2796 return 0;
2797}
2798
2799static hda_nid_t get_dac_if_single(struct hda_codec *codec, hda_nid_t pin)
2800{
2801 hda_nid_t sel = alc_go_down_to_selector(codec, pin);
2802 if (snd_hda_get_conn_list(codec, sel, NULL) == 1)
2803 return alc_auto_look_for_dac(codec, pin);
2804 return 0;
2805}
2806
2807/* fill in the dac_nids table from the parsed pin configuration */
2808static int alc_auto_fill_dac_nids(struct hda_codec *codec)
2809{
2810 struct alc_spec *spec = codec->spec;
2811 const struct auto_pin_cfg *cfg = &spec->autocfg;
2812 bool redone = false;
2813 int i;
2814
2815 again:
2816 /* set num_dacs once to full for alc_auto_look_for_dac() */
2817 spec->multiout.num_dacs = cfg->line_outs;
2818 spec->multiout.hp_nid = 0;
2819 spec->multiout.extra_out_nid[0] = 0;
2820 memset(spec->private_dac_nids, 0, sizeof(spec->private_dac_nids));
2821 spec->multiout.dac_nids = spec->private_dac_nids;
2822
2823 /* fill hard-wired DACs first */
2824 if (!redone) {
2825 for (i = 0; i < cfg->line_outs; i++)
2826 spec->private_dac_nids[i] =
2827 get_dac_if_single(codec, cfg->line_out_pins[i]);
2828 if (cfg->hp_outs)
2829 spec->multiout.hp_nid =
2830 get_dac_if_single(codec, cfg->hp_pins[0]);
2831 if (cfg->speaker_outs)
2832 spec->multiout.extra_out_nid[0] =
2833 get_dac_if_single(codec, cfg->speaker_pins[0]);
2834 }
2835
2836 for (i = 0; i < cfg->line_outs; i++) {
2837 hda_nid_t pin = cfg->line_out_pins[i];
2838 if (spec->private_dac_nids[i])
2839 continue;
2840 spec->private_dac_nids[i] = alc_auto_look_for_dac(codec, pin);
2841 if (!spec->private_dac_nids[i] && !redone) {
2842 /* if we can't find primary DACs, re-probe without
2843 * checking the hard-wired DACs
2844 */
2845 redone = true;
2846 goto again;
2847 }
2848 }
2849
2850 /* re-count num_dacs and squash invalid entries */
2851 spec->multiout.num_dacs = 0;
2852 for (i = 0; i < cfg->line_outs; i++) {
2853 if (spec->private_dac_nids[i])
2854 spec->multiout.num_dacs++;
2855 else
2856 memmove(spec->private_dac_nids + i,
2857 spec->private_dac_nids + i + 1,
2858 sizeof(hda_nid_t) * (cfg->line_outs - i - 1));
2859 }
2860
2861 if (cfg->hp_outs && !spec->multiout.hp_nid)
2862 spec->multiout.hp_nid =
2863 alc_auto_look_for_dac(codec, cfg->hp_pins[0]);
2864 if (cfg->speaker_outs && !spec->multiout.extra_out_nid[0])
2865 spec->multiout.extra_out_nid[0] =
2866 alc_auto_look_for_dac(codec, cfg->speaker_pins[0]);
2867
2868 return 0;
2869}
2870
2871static int alc_auto_add_vol_ctl(struct hda_codec *codec,
2872 const char *pfx, int cidx,
2873 hda_nid_t nid, unsigned int chs)
2874{
2875 if (!nid)
2876 return 0;
2877 return __add_pb_vol_ctrl(codec->spec, ALC_CTL_WIDGET_VOL, pfx, cidx,
2878 HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT));
2879}
2880
2881#define alc_auto_add_stereo_vol(codec, pfx, cidx, nid) \
2882 alc_auto_add_vol_ctl(codec, pfx, cidx, nid, 3)
2883
2884/* create a mute-switch for the given mixer widget;
2885 * if it has multiple sources (e.g. DAC and loopback), create a bind-mute
2886 */
2887static int alc_auto_add_sw_ctl(struct hda_codec *codec,
2888 const char *pfx, int cidx,
2889 hda_nid_t nid, unsigned int chs)
2890{
2891 int wid_type;
2892 int type;
2893 unsigned long val;
2894 if (!nid)
2895 return 0;
2896 wid_type = get_wcaps_type(get_wcaps(codec, nid));
2897 if (wid_type == AC_WID_PIN || wid_type == AC_WID_AUD_OUT) {
2898 type = ALC_CTL_WIDGET_MUTE;
2899 val = HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT);
2900 } else if (snd_hda_get_conn_list(codec, nid, NULL) == 1) {
2901 type = ALC_CTL_WIDGET_MUTE;
2902 val = HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_INPUT);
2903 } else {
2904 type = ALC_CTL_BIND_MUTE;
2905 val = HDA_COMPOSE_AMP_VAL(nid, chs, 2, HDA_INPUT);
2906 }
2907 return __add_pb_sw_ctrl(codec->spec, type, pfx, cidx, val);
2908}
2909
2910#define alc_auto_add_stereo_sw(codec, pfx, cidx, nid) \
2911 alc_auto_add_sw_ctl(codec, pfx, cidx, nid, 3)
2912
2913static hda_nid_t alc_look_for_out_mute_nid(struct hda_codec *codec,
2914 hda_nid_t pin, hda_nid_t dac)
2915{
2916 hda_nid_t mix = alc_auto_dac_to_mix(codec, pin, dac);
2917 if (nid_has_mute(codec, pin, HDA_OUTPUT))
2918 return pin;
2919 else if (mix && nid_has_mute(codec, mix, HDA_INPUT))
2920 return mix;
2921 else if (nid_has_mute(codec, dac, HDA_OUTPUT))
2922 return dac;
2923 return 0;
2924}
2925
2926static hda_nid_t alc_look_for_out_vol_nid(struct hda_codec *codec,
2927 hda_nid_t pin, hda_nid_t dac)
2928{
2929 hda_nid_t mix = alc_auto_dac_to_mix(codec, pin, dac);
2930 if (nid_has_volume(codec, dac, HDA_OUTPUT))
2931 return dac;
2932 else if (nid_has_volume(codec, mix, HDA_OUTPUT))
2933 return mix;
2934 else if (nid_has_volume(codec, pin, HDA_OUTPUT))
2935 return pin;
2936 return 0;
2937}
2938
2939/* add playback controls from the parsed DAC table */
2940static int alc_auto_create_multi_out_ctls(struct hda_codec *codec,
2941 const struct auto_pin_cfg *cfg)
2942{
2943 struct alc_spec *spec = codec->spec;
2944 int i, err, noutputs;
2945
2946 noutputs = cfg->line_outs;
2947 if (spec->multi_ios > 0)
2948 noutputs += spec->multi_ios;
2949
2950 for (i = 0; i < noutputs; i++) {
2951 const char *name;
2952 int index;
2953 hda_nid_t dac, pin;
2954 hda_nid_t sw, vol;
2955
2956 dac = spec->multiout.dac_nids[i];
2957 if (!dac)
2958 continue;
2959 if (i >= cfg->line_outs)
2960 pin = spec->multi_io[i - 1].pin;
2961 else
2962 pin = cfg->line_out_pins[i];
2963
2964 sw = alc_look_for_out_mute_nid(codec, pin, dac);
2965 vol = alc_look_for_out_vol_nid(codec, pin, dac);
2966 name = alc_get_line_out_pfx(spec, i, true, &index);
2967 if (!name) {
2968 /* Center/LFE */
2969 err = alc_auto_add_vol_ctl(codec, "Center", 0, vol, 1);
2970 if (err < 0)
2971 return err;
2972 err = alc_auto_add_vol_ctl(codec, "LFE", 0, vol, 2);
2973 if (err < 0)
2974 return err;
2975 err = alc_auto_add_sw_ctl(codec, "Center", 0, sw, 1);
2976 if (err < 0)
2977 return err;
2978 err = alc_auto_add_sw_ctl(codec, "LFE", 0, sw, 2);
2979 if (err < 0)
2980 return err;
2981 } else {
2982 err = alc_auto_add_stereo_vol(codec, name, index, vol);
2983 if (err < 0)
2984 return err;
2985 err = alc_auto_add_stereo_sw(codec, name, index, sw);
2986 if (err < 0)
2987 return err;
2988 }
2989 }
2990 return 0;
2991}
2992
2993/* add playback controls for speaker and HP outputs */
2994static int alc_auto_create_extra_out(struct hda_codec *codec, hda_nid_t pin,
2995 hda_nid_t dac, const char *pfx)
2996{
2997 struct alc_spec *spec = codec->spec;
2998 hda_nid_t sw, vol;
2999 int err;
3000
3001 if (!pin)
3002 return 0;
3003 if (!dac) {
3004 /* the corresponding DAC is already occupied */
3005 if (!(get_wcaps(codec, pin) & AC_WCAP_OUT_AMP))
3006 return 0; /* no way */
3007 /* create a switch only */
3008 return add_pb_sw_ctrl(spec, ALC_CTL_WIDGET_MUTE, pfx,
3009 HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
3010 }
3011
3012 sw = alc_look_for_out_mute_nid(codec, pin, dac);
3013 vol = alc_look_for_out_vol_nid(codec, pin, dac);
3014 err = alc_auto_add_stereo_vol(codec, pfx, 0, vol);
3015 if (err < 0)
3016 return err;
3017 err = alc_auto_add_stereo_sw(codec, pfx, 0, sw);
3018 if (err < 0)
3019 return err;
3020 return 0;
3021}
3022
3023static int alc_auto_create_hp_out(struct hda_codec *codec)
3024{
3025 struct alc_spec *spec = codec->spec;
3026 return alc_auto_create_extra_out(codec, spec->autocfg.hp_pins[0],
3027 spec->multiout.hp_nid,
3028 "Headphone");
3029}
3030
3031static int alc_auto_create_speaker_out(struct hda_codec *codec)
3032{
3033 struct alc_spec *spec = codec->spec;
3034 return alc_auto_create_extra_out(codec, spec->autocfg.speaker_pins[0],
3035 spec->multiout.extra_out_nid[0],
3036 "Speaker");
3037}
3038
3039static void alc_auto_set_output_and_unmute(struct hda_codec *codec,
3040 hda_nid_t pin, int pin_type,
3041 hda_nid_t dac)
3042{
3043 int i, num;
3044 hda_nid_t nid, mix = 0;
3045 hda_nid_t srcs[HDA_MAX_CONNECTIONS];
3046
3047 alc_set_pin_output(codec, pin, pin_type);
3048 nid = alc_go_down_to_selector(codec, pin);
3049 num = snd_hda_get_connections(codec, nid, srcs, ARRAY_SIZE(srcs));
3050 for (i = 0; i < num; i++) {
3051 if (alc_auto_mix_to_dac(codec, srcs[i]) != dac)
3052 continue;
3053 mix = srcs[i];
3054 break;
3055 }
3056 if (!mix)
3057 return;
3058
3059 /* need the manual connection? */
3060 if (num > 1)
3061 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, i);
3062 /* unmute mixer widget inputs */
3063 if (nid_has_mute(codec, mix, HDA_INPUT)) {
3064 snd_hda_codec_write(codec, mix, 0, AC_VERB_SET_AMP_GAIN_MUTE,
3065 AMP_IN_UNMUTE(0));
3066 snd_hda_codec_write(codec, mix, 0, AC_VERB_SET_AMP_GAIN_MUTE,
3067 AMP_IN_UNMUTE(1));
3068 }
3069 /* initialize volume */
3070 nid = alc_look_for_out_vol_nid(codec, pin, dac);
3071 if (nid)
3072 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
3073 AMP_OUT_ZERO);
3074}
3075
3076static void alc_auto_init_multi_out(struct hda_codec *codec)
3077{
3078 struct alc_spec *spec = codec->spec;
3079 int pin_type = get_pin_type(spec->autocfg.line_out_type);
3080 int i;
3081
3082 for (i = 0; i <= HDA_SIDE; i++) {
3083 hda_nid_t nid = spec->autocfg.line_out_pins[i];
3084 if (nid)
3085 alc_auto_set_output_and_unmute(codec, nid, pin_type,
3086 spec->multiout.dac_nids[i]);
3087 }
3088}
3089
3090static void alc_auto_init_extra_out(struct hda_codec *codec)
3091{
3092 struct alc_spec *spec = codec->spec;
3093 hda_nid_t pin, dac;
3094
3095 pin = spec->autocfg.hp_pins[0];
3096 if (pin) {
3097 dac = spec->multiout.hp_nid;
3098 if (!dac)
3099 dac = spec->multiout.dac_nids[0];
3100 alc_auto_set_output_and_unmute(codec, pin, PIN_HP, dac);
3101 }
3102 pin = spec->autocfg.speaker_pins[0];
3103 if (pin) {
3104 dac = spec->multiout.extra_out_nid[0];
3105 if (!dac)
3106 dac = spec->multiout.dac_nids[0];
3107 alc_auto_set_output_and_unmute(codec, pin, PIN_OUT, dac);
3108 }
3109}
3110
3111/*
3112 * multi-io helper
3113 */
3114static int alc_auto_fill_multi_ios(struct hda_codec *codec,
3115 unsigned int location)
3116{
3117 struct alc_spec *spec = codec->spec;
3118 struct auto_pin_cfg *cfg = &spec->autocfg;
3119 int type, i, num_pins = 0;
3120
3121 for (type = AUTO_PIN_LINE_IN; type >= AUTO_PIN_MIC; type--) {
3122 for (i = 0; i < cfg->num_inputs; i++) {
3123 hda_nid_t nid = cfg->inputs[i].pin;
3124 hda_nid_t dac;
3125 unsigned int defcfg, caps;
3126 if (cfg->inputs[i].type != type)
3127 continue;
3128 defcfg = snd_hda_codec_get_pincfg(codec, nid);
3129 if (get_defcfg_connect(defcfg) != AC_JACK_PORT_COMPLEX)
3130 continue;
3131 if (location && get_defcfg_location(defcfg) != location)
3132 continue;
3133 caps = snd_hda_query_pin_caps(codec, nid);
3134 if (!(caps & AC_PINCAP_OUT))
3135 continue;
3136 dac = alc_auto_look_for_dac(codec, nid);
3137 if (!dac)
3138 continue;
3139 spec->multi_io[num_pins].pin = nid;
3140 spec->multi_io[num_pins].dac = dac;
3141 num_pins++;
3142 spec->private_dac_nids[spec->multiout.num_dacs++] = dac;
3143 }
3144 }
3145 spec->multiout.num_dacs = 1;
3146 if (num_pins < 2)
3147 return 0;
3148 return num_pins;
3149}
3150
3151static int alc_auto_ch_mode_info(struct snd_kcontrol *kcontrol,
3152 struct snd_ctl_elem_info *uinfo)
3153{
3154 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3155 struct alc_spec *spec = codec->spec;
3156
3157 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
3158 uinfo->count = 1;
3159 uinfo->value.enumerated.items = spec->multi_ios + 1;
3160 if (uinfo->value.enumerated.item > spec->multi_ios)
3161 uinfo->value.enumerated.item = spec->multi_ios;
3162 sprintf(uinfo->value.enumerated.name, "%dch",
3163 (uinfo->value.enumerated.item + 1) * 2);
3164 return 0;
3165}
3166
3167static int alc_auto_ch_mode_get(struct snd_kcontrol *kcontrol,
3168 struct snd_ctl_elem_value *ucontrol)
3169{
3170 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3171 struct alc_spec *spec = codec->spec;
3172 ucontrol->value.enumerated.item[0] = (spec->ext_channel_count - 1) / 2;
3173 return 0;
3174}
3175
3176static int alc_set_multi_io(struct hda_codec *codec, int idx, bool output)
3177{
3178 struct alc_spec *spec = codec->spec;
3179 hda_nid_t nid = spec->multi_io[idx].pin;
3180
3181 if (!spec->multi_io[idx].ctl_in)
3182 spec->multi_io[idx].ctl_in =
3183 snd_hda_codec_read(codec, nid, 0,
3184 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
3185 if (output) {
3186 snd_hda_codec_update_cache(codec, nid, 0,
3187 AC_VERB_SET_PIN_WIDGET_CONTROL,
3188 PIN_OUT);
3189 if (get_wcaps(codec, nid) & AC_WCAP_OUT_AMP)
3190 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
3191 HDA_AMP_MUTE, 0);
3192 alc_auto_select_dac(codec, nid, spec->multi_io[idx].dac);
3193 } else {
3194 if (get_wcaps(codec, nid) & AC_WCAP_OUT_AMP)
3195 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
3196 HDA_AMP_MUTE, HDA_AMP_MUTE);
3197 snd_hda_codec_update_cache(codec, nid, 0,
3198 AC_VERB_SET_PIN_WIDGET_CONTROL,
3199 spec->multi_io[idx].ctl_in);
3200 }
3201 return 0;
3202}
3203
3204static int alc_auto_ch_mode_put(struct snd_kcontrol *kcontrol,
3205 struct snd_ctl_elem_value *ucontrol)
3206{
3207 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3208 struct alc_spec *spec = codec->spec;
3209 int i, ch;
3210
3211 ch = ucontrol->value.enumerated.item[0];
3212 if (ch < 0 || ch > spec->multi_ios)
3213 return -EINVAL;
3214 if (ch == (spec->ext_channel_count - 1) / 2)
3215 return 0;
3216 spec->ext_channel_count = (ch + 1) * 2;
3217 for (i = 0; i < spec->multi_ios; i++)
3218 alc_set_multi_io(codec, i, i < ch);
3219 spec->multiout.max_channels = spec->ext_channel_count;
3220 if (spec->need_dac_fix && !spec->const_channel_count)
3221 spec->multiout.num_dacs = spec->multiout.max_channels / 2;
3222 return 1;
3223}
3224
3225static const struct snd_kcontrol_new alc_auto_channel_mode_enum = {
3226 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3227 .name = "Channel Mode",
3228 .info = alc_auto_ch_mode_info,
3229 .get = alc_auto_ch_mode_get,
3230 .put = alc_auto_ch_mode_put,
3231};
3232
3233static int alc_auto_add_multi_channel_mode(struct hda_codec *codec,
3234 int (*fill_dac)(struct hda_codec *))
3235{
3236 struct alc_spec *spec = codec->spec;
3237 struct auto_pin_cfg *cfg = &spec->autocfg;
3238 unsigned int location, defcfg;
3239 int num_pins;
3240
3241 if (cfg->line_out_type == AUTO_PIN_SPEAKER_OUT && cfg->hp_outs == 1) {
3242 /* use HP as primary out */
3243 cfg->speaker_outs = cfg->line_outs;
3244 memcpy(cfg->speaker_pins, cfg->line_out_pins,
3245 sizeof(cfg->speaker_pins));
3246 cfg->line_outs = cfg->hp_outs;
3247 memcpy(cfg->line_out_pins, cfg->hp_pins, sizeof(cfg->hp_pins));
3248 cfg->hp_outs = 0;
3249 memset(cfg->hp_pins, 0, sizeof(cfg->hp_pins));
3250 cfg->line_out_type = AUTO_PIN_HP_OUT;
3251 if (fill_dac)
3252 fill_dac(codec);
3253 }
3254 if (cfg->line_outs != 1 ||
3255 cfg->line_out_type == AUTO_PIN_SPEAKER_OUT)
3256 return 0;
3257
3258 defcfg = snd_hda_codec_get_pincfg(codec, cfg->line_out_pins[0]);
3259 location = get_defcfg_location(defcfg);
3260
3261 num_pins = alc_auto_fill_multi_ios(codec, location);
3262 if (num_pins > 0) {
3263 struct snd_kcontrol_new *knew;
3264
3265 knew = alc_kcontrol_new(spec);
3266 if (!knew)
3267 return -ENOMEM;
3268 *knew = alc_auto_channel_mode_enum;
3269 knew->name = kstrdup("Channel Mode", GFP_KERNEL);
3270 if (!knew->name)
3271 return -ENOMEM;
3272
3273 spec->multi_ios = num_pins;
3274 spec->ext_channel_count = 2;
3275 spec->multiout.num_dacs = num_pins + 1;
3276 }
3277 return 0;
3278}
3279
3280/* filter out invalid adc_nids (and capsrc_nids) that don't give all
3281 * active input pins
3282 */
3283static void alc_remove_invalid_adc_nids(struct hda_codec *codec)
3284{
3285 struct alc_spec *spec = codec->spec;
3286 const struct hda_input_mux *imux;
3287 hda_nid_t adc_nids[ARRAY_SIZE(spec->private_adc_nids)];
3288 hda_nid_t capsrc_nids[ARRAY_SIZE(spec->private_adc_nids)];
3289 int i, n, nums;
3290
3291 imux = spec->input_mux;
3292 if (!imux)
3293 return;
3294 if (spec->dyn_adc_switch)
3295 return;
3296
3297 nums = 0;
3298 for (n = 0; n < spec->num_adc_nids; n++) {
3299 hda_nid_t cap = spec->private_capsrc_nids[n];
3300 int num_conns = snd_hda_get_conn_list(codec, cap, NULL);
3301 for (i = 0; i < imux->num_items; i++) {
3302 hda_nid_t pin = spec->imux_pins[i];
3303 if (pin) {
3304 if (get_connection_index(codec, cap, pin) < 0)
3305 break;
3306 } else if (num_conns <= imux->items[i].index)
3307 break;
3308 }
3309 if (i >= imux->num_items) {
3310 adc_nids[nums] = spec->private_adc_nids[n];
3311 capsrc_nids[nums++] = cap;
3312 }
3313 }
3314 if (!nums) {
3315 /* check whether ADC-switch is possible */
3316 if (!alc_check_dyn_adc_switch(codec)) {
3317 printk(KERN_WARNING "hda_codec: %s: no valid ADC found;"
3318 " using fallback 0x%x\n",
3319 codec->chip_name, spec->private_adc_nids[0]);
3320 spec->num_adc_nids = 1;
3321 spec->auto_mic = 0;
3322 return;
3323 }
3324 } else if (nums != spec->num_adc_nids) {
3325 memcpy(spec->private_adc_nids, adc_nids,
3326 nums * sizeof(hda_nid_t));
3327 memcpy(spec->private_capsrc_nids, capsrc_nids,
3328 nums * sizeof(hda_nid_t));
3329 spec->num_adc_nids = nums;
3330 }
3331
3332 if (spec->auto_mic)
3333 alc_auto_mic_check_imux(codec); /* check auto-mic setups */
3334 else if (spec->input_mux->num_items == 1)
3335 spec->num_adc_nids = 1; /* reduce to a single ADC */
3336}
3337
3338/*
3339 * initialize ADC paths
3340 */
3341static void alc_auto_init_adc(struct hda_codec *codec, int adc_idx)
3342{
3343 struct alc_spec *spec = codec->spec;
3344 hda_nid_t nid;
3345
3346 nid = spec->adc_nids[adc_idx];
3347 /* mute ADC */
3348 if (nid_has_mute(codec, nid, HDA_INPUT)) {
3349 snd_hda_codec_write(codec, nid, 0,
3350 AC_VERB_SET_AMP_GAIN_MUTE,
3351 AMP_IN_MUTE(0));
3352 return;
3353 }
3354 if (!spec->capsrc_nids)
3355 return;
3356 nid = spec->capsrc_nids[adc_idx];
3357 if (nid_has_mute(codec, nid, HDA_OUTPUT))
3358 snd_hda_codec_write(codec, nid, 0,
3359 AC_VERB_SET_AMP_GAIN_MUTE,
3360 AMP_OUT_MUTE);
3361}
3362
3363static void alc_auto_init_input_src(struct hda_codec *codec)
3364{
3365 struct alc_spec *spec = codec->spec;
3366 int c, nums;
3367
3368 for (c = 0; c < spec->num_adc_nids; c++)
3369 alc_auto_init_adc(codec, c);
3370 if (spec->dyn_adc_switch)
3371 nums = 1;
3372 else
3373 nums = spec->num_adc_nids;
3374 for (c = 0; c < nums; c++)
3375 alc_mux_select(codec, 0, spec->cur_mux[c], true);
3376}
3377
3378/* add mic boosts if needed */
3379static int alc_auto_add_mic_boost(struct hda_codec *codec)
3380{
3381 struct alc_spec *spec = codec->spec;
3382 struct auto_pin_cfg *cfg = &spec->autocfg;
3383 int i, err;
3384 int type_idx = 0;
3385 hda_nid_t nid;
3386 const char *prev_label = NULL;
3387
3388 for (i = 0; i < cfg->num_inputs; i++) {
3389 if (cfg->inputs[i].type > AUTO_PIN_MIC)
3390 break;
3391 nid = cfg->inputs[i].pin;
3392 if (get_wcaps(codec, nid) & AC_WCAP_IN_AMP) {
3393 const char *label;
3394 char boost_label[32];
3395
3396 label = hda_get_autocfg_input_label(codec, cfg, i);
3397 if (prev_label && !strcmp(label, prev_label))
3398 type_idx++;
3399 else
3400 type_idx = 0;
3401 prev_label = label;
3402
3403 snprintf(boost_label, sizeof(boost_label),
3404 "%s Boost Volume", label);
3405 err = add_control(spec, ALC_CTL_WIDGET_VOL,
3406 boost_label, type_idx,
3407 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_INPUT));
3408 if (err < 0)
3409 return err;
3410 }
3411 }
3412 return 0;
3413}
3414
3415/* select or unmute the given capsrc route */
3416static void select_or_unmute_capsrc(struct hda_codec *codec, hda_nid_t cap,
3417 int idx)
3418{
3419 if (get_wcaps_type(get_wcaps(codec, cap)) == AC_WID_AUD_MIX) {
3420 snd_hda_codec_amp_stereo(codec, cap, HDA_INPUT, idx,
3421 HDA_AMP_MUTE, 0);
3422 } else if (snd_hda_get_conn_list(codec, cap, NULL) > 1) {
3423 snd_hda_codec_write_cache(codec, cap, 0,
3424 AC_VERB_SET_CONNECT_SEL, idx);
3425 }
3426}
3427
3428/* set the default connection to that pin */
3429static int init_capsrc_for_pin(struct hda_codec *codec, hda_nid_t pin)
3430{
3431 struct alc_spec *spec = codec->spec;
3432 int i;
3433
3434 if (!pin)
3435 return 0;
3436 for (i = 0; i < spec->num_adc_nids; i++) {
3437 hda_nid_t cap = spec->capsrc_nids ?
3438 spec->capsrc_nids[i] : spec->adc_nids[i];
3439 int idx;
3440
3441 idx = get_connection_index(codec, cap, pin);
3442 if (idx < 0)
3443 continue;
3444 select_or_unmute_capsrc(codec, cap, idx);
3445 return i; /* return the found index */
3446 }
3447 return -1; /* not found */
3448}
3449
3450/* initialize some special cases for input sources */
3451static void alc_init_special_input_src(struct hda_codec *codec)
3452{
3453 struct alc_spec *spec = codec->spec;
3454 int i;
3455
3456 for (i = 0; i < spec->autocfg.num_inputs; i++)
3457 init_capsrc_for_pin(codec, spec->autocfg.inputs[i].pin);
3458}
3459
3460/* assign appropriate capture mixers */
3461static void set_capture_mixer(struct hda_codec *codec)
3462{
3463 struct alc_spec *spec = codec->spec;
3464 static const struct snd_kcontrol_new *caps[2][3] = {
3465 { alc_capture_mixer_nosrc1,
3466 alc_capture_mixer_nosrc2,
3467 alc_capture_mixer_nosrc3 },
3468 { alc_capture_mixer1,
3469 alc_capture_mixer2,
3470 alc_capture_mixer3 },
3471 };
3472
3473 /* check whether either of ADC or MUX has a volume control */
3474 if (!nid_has_volume(codec, spec->adc_nids[0], HDA_INPUT)) {
3475 if (!spec->capsrc_nids)
3476 return; /* no volume */
3477 if (!nid_has_volume(codec, spec->capsrc_nids[0], HDA_OUTPUT))
3478 return; /* no volume in capsrc, too */
3479 spec->vol_in_capsrc = 1;
3480 }
3481
3482 if (spec->num_adc_nids > 0) {
3483 int mux = 0;
3484 int num_adcs = 0;
3485
3486 if (spec->input_mux && spec->input_mux->num_items > 1)
3487 mux = 1;
3488 if (spec->auto_mic) {
3489 num_adcs = 1;
3490 mux = 0;
3491 } else if (spec->dyn_adc_switch)
3492 num_adcs = 1;
3493 if (!num_adcs) {
3494 if (spec->num_adc_nids > 3)
3495 spec->num_adc_nids = 3;
3496 else if (!spec->num_adc_nids)
3497 return;
3498 num_adcs = spec->num_adc_nids;
3499 }
3500 spec->cap_mixer = caps[mux][num_adcs - 1];
3501 }
3502}
3503
3504/*
3505 * standard auto-parser initializations
3506 */
3507static void alc_auto_init_std(struct hda_codec *codec)
3508{
3509 struct alc_spec *spec = codec->spec;
3510 alc_auto_init_multi_out(codec);
3511 alc_auto_init_extra_out(codec);
3512 alc_auto_init_analog_input(codec);
3513 alc_auto_init_input_src(codec);
3514 alc_auto_init_digital(codec);
3515 if (spec->unsol_event)
3516 alc_inithook(codec);
3517}
3518
3519/*
3520 * Digital-beep handlers
3521 */
3522#ifdef CONFIG_SND_HDA_INPUT_BEEP
3523#define set_beep_amp(spec, nid, idx, dir) \
3524 ((spec)->beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir))
3525
3526static const struct snd_pci_quirk beep_white_list[] = {
3527 SND_PCI_QUIRK(0x1043, 0x829f, "ASUS", 1),
3528 SND_PCI_QUIRK(0x1043, 0x83ce, "EeePC", 1),
3529 SND_PCI_QUIRK(0x1043, 0x831a, "EeePC", 1),
3530 SND_PCI_QUIRK(0x1043, 0x834a, "EeePC", 1),
3531 SND_PCI_QUIRK(0x8086, 0xd613, "Intel", 1),
3532 {}
3533};
3534
3535static inline int has_cdefine_beep(struct hda_codec *codec)
3536{
3537 struct alc_spec *spec = codec->spec;
3538 const struct snd_pci_quirk *q;
3539 q = snd_pci_quirk_lookup(codec->bus->pci, beep_white_list);
3540 if (q)
3541 return q->value;
3542 return spec->cdefine.enable_pcbeep;
3543}
3544#else
3545#define set_beep_amp(spec, nid, idx, dir) /* NOP */
3546#define has_cdefine_beep(codec) 0
3547#endif
3548
3549/* parse the BIOS configuration and set up the alc_spec */
3550/* return 1 if successful, 0 if the proper config is not found,
3551 * or a negative error code
3552 */
3553static int alc_parse_auto_config(struct hda_codec *codec,
3554 const hda_nid_t *ignore_nids,
3555 const hda_nid_t *ssid_nids)
3556{
3557 struct alc_spec *spec = codec->spec;
3558 int err;
3559
3560 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
3561 ignore_nids);
3562 if (err < 0)
3563 return err;
3564 if (!spec->autocfg.line_outs) {
3565 if (spec->autocfg.dig_outs || spec->autocfg.dig_in_pin) {
3566 spec->multiout.max_channels = 2;
3567 spec->no_analog = 1;
3568 goto dig_only;
3569 }
3570 return 0; /* can't find valid BIOS pin config */
3571 }
3572 err = alc_auto_fill_dac_nids(codec);
3573 if (err < 0)
3574 return err;
3575 err = alc_auto_add_multi_channel_mode(codec, alc_auto_fill_dac_nids);
3576 if (err < 0)
3577 return err;
3578 err = alc_auto_create_multi_out_ctls(codec, &spec->autocfg);
3579 if (err < 0)
3580 return err;
3581 err = alc_auto_create_hp_out(codec);
3582 if (err < 0)
3583 return err;
3584 err = alc_auto_create_speaker_out(codec);
3585 if (err < 0)
3586 return err;
3587 err = alc_auto_create_input_ctls(codec);
3588 if (err < 0)
3589 return err;
3590
3591 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
3592
3593 dig_only:
3594 alc_auto_parse_digital(codec);
3595
3596 if (!spec->no_analog)
3597 alc_remove_invalid_adc_nids(codec);
3598
3599 if (ssid_nids)
3600 alc_ssid_check(codec, ssid_nids);
3601
3602 if (!spec->no_analog) {
3603 alc_auto_check_switches(codec);
3604 err = alc_auto_add_mic_boost(codec);
3605 if (err < 0)
3606 return err;
3607 }
3608
3609 if (spec->kctls.list)
3610 add_mixer(spec, spec->kctls.list);
3611
3612 return 1;
3613}
3614
3615static int alc880_parse_auto_config(struct hda_codec *codec)
3616{
3617 static const hda_nid_t alc880_ignore[] = { 0x1d, 0 };
3618 static const hda_nid_t alc880_ssids[] = { 0x15, 0x1b, 0x14, 0 };
3619 return alc_parse_auto_config(codec, alc880_ignore, alc880_ssids);
3620}
3621
3622#ifdef CONFIG_SND_HDA_POWER_SAVE
3623static const struct hda_amp_list alc880_loopbacks[] = {
3624 { 0x0b, HDA_INPUT, 0 },
3625 { 0x0b, HDA_INPUT, 1 },
3626 { 0x0b, HDA_INPUT, 2 },
3627 { 0x0b, HDA_INPUT, 3 },
3628 { 0x0b, HDA_INPUT, 4 },
3629 { } /* end */
3630};
3631#endif
3632
3633/*
3634 * board setups
3635 */
3636#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
3637#define alc_board_config \
3638 snd_hda_check_board_config
3639#define alc_board_codec_sid_config \
3640 snd_hda_check_board_codec_sid_config
3641#include "alc_quirks.c"
3642#else
3643#define alc_board_config(codec, nums, models, tbl) -1
3644#define alc_board_codec_sid_config(codec, nums, models, tbl) -1
3645#define setup_preset(codec, x) /* NOP */
3646#endif
3647
3648/*
3649 * OK, here we have finally the patch for ALC880
3650 */
3651#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
3652#include "alc880_quirks.c"
3653#endif
3654
3655static int patch_alc880(struct hda_codec *codec)
3656{
3657 struct alc_spec *spec;
3658 int board_config;
3659 int err;
3660
3661 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
3662 if (spec == NULL)
3663 return -ENOMEM;
3664
3665 codec->spec = spec;
3666
3667 spec->mixer_nid = 0x0b;
3668 spec->need_dac_fix = 1;
3669
3670 board_config = alc_board_config(codec, ALC880_MODEL_LAST,
3671 alc880_models, alc880_cfg_tbl);
3672 if (board_config < 0) {
3673 printk(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
3674 codec->chip_name);
3675 board_config = ALC_MODEL_AUTO;
3676 }
3677
3678 if (board_config == ALC_MODEL_AUTO) {
3679 /* automatic parse from the BIOS config */
3680 err = alc880_parse_auto_config(codec);
3681 if (err < 0) {
3682 alc_free(codec);
3683 return err;
3684 }
3685#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
3686 else if (!err) {
3687 printk(KERN_INFO
3688 "hda_codec: Cannot set up configuration "
3689 "from BIOS. Using 3-stack mode...\n");
3690 board_config = ALC880_3ST;
3691 }
3692#endif
3693 }
3694
3695 if (board_config != ALC_MODEL_AUTO)
3696 setup_preset(codec, &alc880_presets[board_config]);
3697
3698 if (!spec->no_analog && !spec->adc_nids) {
3699 alc_auto_fill_adc_caps(codec);
3700 alc_rebuild_imux_for_auto_mic(codec);
3701 alc_remove_invalid_adc_nids(codec);
3702 }
3703
3704 if (!spec->no_analog && !spec->cap_mixer)
3705 set_capture_mixer(codec);
3706
3707 if (!spec->no_analog) {
3708 err = snd_hda_attach_beep_device(codec, 0x1);
3709 if (err < 0) {
3710 alc_free(codec);
3711 return err;
3712 }
3713 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
3714 }
3715
3716 spec->vmaster_nid = 0x0c;
3717
3718 codec->patch_ops = alc_patch_ops;
3719 if (board_config == ALC_MODEL_AUTO)
3720 spec->init_hook = alc_auto_init_std;
3721#ifdef CONFIG_SND_HDA_POWER_SAVE
3722 if (!spec->loopback.amplist)
3723 spec->loopback.amplist = alc880_loopbacks;
3724#endif
3725
3726 return 0;
3727}
3728
3729
3730/*
3731 * ALC260 support
3732 */
3733static int alc260_parse_auto_config(struct hda_codec *codec)
3734{
3735 static const hda_nid_t alc260_ignore[] = { 0x17, 0 };
3736 static const hda_nid_t alc260_ssids[] = { 0x10, 0x15, 0x0f, 0 };
3737 return alc_parse_auto_config(codec, alc260_ignore, alc260_ssids);
3738}
3739
3740#ifdef CONFIG_SND_HDA_POWER_SAVE
3741static const struct hda_amp_list alc260_loopbacks[] = {
3742 { 0x07, HDA_INPUT, 0 },
3743 { 0x07, HDA_INPUT, 1 },
3744 { 0x07, HDA_INPUT, 2 },
3745 { 0x07, HDA_INPUT, 3 },
3746 { 0x07, HDA_INPUT, 4 },
3747 { } /* end */
3748};
3749#endif
3750
3751/*
3752 * Pin config fixes
3753 */
3754enum {
3755 PINFIX_HP_DC5750,
3756};
3757
3758static const struct alc_fixup alc260_fixups[] = {
3759 [PINFIX_HP_DC5750] = {
3760 .type = ALC_FIXUP_PINS,
3761 .v.pins = (const struct alc_pincfg[]) {
3762 { 0x11, 0x90130110 }, /* speaker */
3763 { }
3764 }
3765 },
3766};
3767
3768static const struct snd_pci_quirk alc260_fixup_tbl[] = {
3769 SND_PCI_QUIRK(0x103c, 0x280a, "HP dc5750", PINFIX_HP_DC5750),
3770 {}
3771};
3772
3773/*
3774 */
3775#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
3776#include "alc260_quirks.c"
3777#endif
3778
3779static int patch_alc260(struct hda_codec *codec)
3780{
3781 struct alc_spec *spec;
3782 int err, board_config;
3783
3784 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
3785 if (spec == NULL)
3786 return -ENOMEM;
3787
3788 codec->spec = spec;
3789
3790 spec->mixer_nid = 0x07;
3791
3792 board_config = alc_board_config(codec, ALC260_MODEL_LAST,
3793 alc260_models, alc260_cfg_tbl);
3794 if (board_config < 0) {
3795 snd_printd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
3796 codec->chip_name);
3797 board_config = ALC_MODEL_AUTO;
3798 }
3799
3800 if (board_config == ALC_MODEL_AUTO) {
3801 alc_pick_fixup(codec, NULL, alc260_fixup_tbl, alc260_fixups);
3802 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
3803 }
3804
3805 if (board_config == ALC_MODEL_AUTO) {
3806 /* automatic parse from the BIOS config */
3807 err = alc260_parse_auto_config(codec);
3808 if (err < 0) {
3809 alc_free(codec);
3810 return err;
3811 }
3812#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
3813 else if (!err) {
3814 printk(KERN_INFO
3815 "hda_codec: Cannot set up configuration "
3816 "from BIOS. Using base mode...\n");
3817 board_config = ALC260_BASIC;
3818 }
3819#endif
3820 }
3821
3822 if (board_config != ALC_MODEL_AUTO)
3823 setup_preset(codec, &alc260_presets[board_config]);
3824
3825 if (!spec->no_analog && !spec->adc_nids) {
3826 alc_auto_fill_adc_caps(codec);
3827 alc_rebuild_imux_for_auto_mic(codec);
3828 alc_remove_invalid_adc_nids(codec);
3829 }
3830
3831 if (!spec->no_analog && !spec->cap_mixer)
3832 set_capture_mixer(codec);
3833
3834 if (!spec->no_analog) {
3835 err = snd_hda_attach_beep_device(codec, 0x1);
3836 if (err < 0) {
3837 alc_free(codec);
3838 return err;
3839 }
3840 set_beep_amp(spec, 0x07, 0x05, HDA_INPUT);
3841 }
3842
3843 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
3844
3845 spec->vmaster_nid = 0x08;
3846
3847 codec->patch_ops = alc_patch_ops;
3848 if (board_config == ALC_MODEL_AUTO)
3849 spec->init_hook = alc_auto_init_std;
3850 spec->shutup = alc_eapd_shutup;
3851#ifdef CONFIG_SND_HDA_POWER_SAVE
3852 if (!spec->loopback.amplist)
3853 spec->loopback.amplist = alc260_loopbacks;
3854#endif
3855
3856 return 0;
3857}
3858
3859
3860/*
3861 * ALC882/883/885/888/889 support
3862 *
3863 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
3864 * configuration. Each pin widget can choose any input DACs and a mixer.
3865 * Each ADC is connected from a mixer of all inputs. This makes possible
3866 * 6-channel independent captures.
3867 *
3868 * In addition, an independent DAC for the multi-playback (not used in this
3869 * driver yet).
3870 */
3871#ifdef CONFIG_SND_HDA_POWER_SAVE
3872#define alc882_loopbacks alc880_loopbacks
3873#endif
3874
3875/*
3876 * Pin config fixes
3877 */
3878enum {
3879 PINFIX_ABIT_AW9D_MAX,
3880 PINFIX_LENOVO_Y530,
3881 PINFIX_PB_M5210,
3882 PINFIX_ACER_ASPIRE_7736,
3883};
3884
3885static const struct alc_fixup alc882_fixups[] = {
3886 [PINFIX_ABIT_AW9D_MAX] = {
3887 .type = ALC_FIXUP_PINS,
3888 .v.pins = (const struct alc_pincfg[]) {
3889 { 0x15, 0x01080104 }, /* side */
3890 { 0x16, 0x01011012 }, /* rear */
3891 { 0x17, 0x01016011 }, /* clfe */
3892 { }
3893 }
3894 },
3895 [PINFIX_LENOVO_Y530] = {
3896 .type = ALC_FIXUP_PINS,
3897 .v.pins = (const struct alc_pincfg[]) {
3898 { 0x15, 0x99130112 }, /* rear int speakers */
3899 { 0x16, 0x99130111 }, /* subwoofer */
3900 { }
3901 }
3902 },
3903 [PINFIX_PB_M5210] = {
3904 .type = ALC_FIXUP_VERBS,
3905 .v.verbs = (const struct hda_verb[]) {
3906 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50 },
3907 {}
3908 }
3909 },
3910 [PINFIX_ACER_ASPIRE_7736] = {
3911 .type = ALC_FIXUP_SKU,
3912 .v.sku = ALC_FIXUP_SKU_IGNORE,
3913 },
3914};
3915
3916static const struct snd_pci_quirk alc882_fixup_tbl[] = {
3917 SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", PINFIX_PB_M5210),
3918 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", PINFIX_LENOVO_Y530),
3919 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", PINFIX_ABIT_AW9D_MAX),
3920 SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", PINFIX_ACER_ASPIRE_7736),
3921 {}
3922};
3923
3924/*
3925 * BIOS auto configuration
3926 */
3927/* almost identical with ALC880 parser... */
3928static int alc882_parse_auto_config(struct hda_codec *codec)
3929{
3930 static const hda_nid_t alc882_ignore[] = { 0x1d, 0 };
3931 static const hda_nid_t alc882_ssids[] = { 0x15, 0x1b, 0x14, 0 };
3932 return alc_parse_auto_config(codec, alc882_ignore, alc882_ssids);
3933}
3934
3935/*
3936 */
3937#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
3938#include "alc882_quirks.c"
3939#endif
3940
3941static int patch_alc882(struct hda_codec *codec)
3942{
3943 struct alc_spec *spec;
3944 int err, board_config;
3945
3946 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
3947 if (spec == NULL)
3948 return -ENOMEM;
3949
3950 codec->spec = spec;
3951
3952 spec->mixer_nid = 0x0b;
3953
3954 switch (codec->vendor_id) {
3955 case 0x10ec0882:
3956 case 0x10ec0885:
3957 break;
3958 default:
3959 /* ALC883 and variants */
3960 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
3961 break;
3962 }
3963
3964 board_config = alc_board_config(codec, ALC882_MODEL_LAST,
3965 alc882_models, alc882_cfg_tbl);
3966
3967 if (board_config < 0)
3968 board_config = alc_board_codec_sid_config(codec,
3969 ALC882_MODEL_LAST, alc882_models, alc882_ssid_cfg_tbl);
3970
3971 if (board_config < 0) {
3972 printk(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
3973 codec->chip_name);
3974 board_config = ALC_MODEL_AUTO;
3975 }
3976
3977 if (board_config == ALC_MODEL_AUTO) {
3978 alc_pick_fixup(codec, NULL, alc882_fixup_tbl, alc882_fixups);
3979 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
3980 }
3981
3982 alc_auto_parse_customize_define(codec);
3983
3984 if (board_config == ALC_MODEL_AUTO) {
3985 /* automatic parse from the BIOS config */
3986 err = alc882_parse_auto_config(codec);
3987 if (err < 0) {
3988 alc_free(codec);
3989 return err;
3990 }
3991#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
3992 else if (!err) {
3993 printk(KERN_INFO
3994 "hda_codec: Cannot set up configuration "
3995 "from BIOS. Using base mode...\n");
3996 board_config = ALC882_3ST_DIG;
3997 }
3998#endif
3999 }
4000
4001 if (board_config != ALC_MODEL_AUTO)
4002 setup_preset(codec, &alc882_presets[board_config]);
4003
4004 if (!spec->no_analog && !spec->adc_nids) {
4005 alc_auto_fill_adc_caps(codec);
4006 alc_rebuild_imux_for_auto_mic(codec);
4007 alc_remove_invalid_adc_nids(codec);
4008 }
4009
4010 if (!spec->no_analog && !spec->cap_mixer)
4011 set_capture_mixer(codec);
4012
4013 if (!spec->no_analog && has_cdefine_beep(codec)) {
4014 err = snd_hda_attach_beep_device(codec, 0x1);
4015 if (err < 0) {
4016 alc_free(codec);
4017 return err;
4018 }
4019 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
4020 }
4021
4022 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
4023
4024 spec->vmaster_nid = 0x0c;
4025
4026 codec->patch_ops = alc_patch_ops;
4027 if (board_config == ALC_MODEL_AUTO)
4028 spec->init_hook = alc_auto_init_std;
4029
4030 alc_init_jacks(codec);
4031#ifdef CONFIG_SND_HDA_POWER_SAVE
4032 if (!spec->loopback.amplist)
4033 spec->loopback.amplist = alc882_loopbacks;
4034#endif
4035
4036 return 0;
4037}
4038
4039
4040/*
4041 * ALC262 support
4042 */
4043static int alc262_parse_auto_config(struct hda_codec *codec)
4044{
4045 static const hda_nid_t alc262_ignore[] = { 0x1d, 0 };
4046 static const hda_nid_t alc262_ssids[] = { 0x15, 0x1b, 0x14, 0 };
4047 return alc_parse_auto_config(codec, alc262_ignore, alc262_ssids);
4048}
4049
4050/*
4051 * Pin config fixes
4052 */
4053enum {
4054 PINFIX_FSC_H270,
4055 PINFIX_HP_Z200,
4056};
4057
4058static const struct alc_fixup alc262_fixups[] = {
4059 [PINFIX_FSC_H270] = {
4060 .type = ALC_FIXUP_PINS,
4061 .v.pins = (const struct alc_pincfg[]) {
4062 { 0x14, 0x99130110 }, /* speaker */
4063 { 0x15, 0x0221142f }, /* front HP */
4064 { 0x1b, 0x0121141f }, /* rear HP */
4065 { }
4066 }
4067 },
4068 [PINFIX_HP_Z200] = {
4069 .type = ALC_FIXUP_PINS,
4070 .v.pins = (const struct alc_pincfg[]) {
4071 { 0x16, 0x99130120 }, /* internal speaker */
4072 { }
4073 }
4074 },
4075};
4076
4077static const struct snd_pci_quirk alc262_fixup_tbl[] = {
4078 SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", PINFIX_HP_Z200),
4079 SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", PINFIX_FSC_H270),
4080 {}
4081};
4082
4083
4084#ifdef CONFIG_SND_HDA_POWER_SAVE
4085#define alc262_loopbacks alc880_loopbacks
4086#endif
4087
4088/*
4089 */
4090#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4091#include "alc262_quirks.c"
4092#endif
4093
4094static int patch_alc262(struct hda_codec *codec)
4095{
4096 struct alc_spec *spec;
4097 int board_config;
4098 int err;
4099
4100 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4101 if (spec == NULL)
4102 return -ENOMEM;
4103
4104 codec->spec = spec;
4105
4106 spec->mixer_nid = 0x0b;
4107
4108#if 0
4109 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
4110 * under-run
4111 */
4112 {
4113 int tmp;
4114 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
4115 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
4116 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
4117 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PROC_COEF, tmp | 0x80);
4118 }
4119#endif
4120 alc_auto_parse_customize_define(codec);
4121
4122 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
4123
4124 board_config = alc_board_config(codec, ALC262_MODEL_LAST,
4125 alc262_models, alc262_cfg_tbl);
4126
4127 if (board_config < 0) {
4128 printk(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
4129 codec->chip_name);
4130 board_config = ALC_MODEL_AUTO;
4131 }
4132
4133 if (board_config == ALC_MODEL_AUTO) {
4134 alc_pick_fixup(codec, NULL, alc262_fixup_tbl, alc262_fixups);
4135 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
4136 }
4137
4138 if (board_config == ALC_MODEL_AUTO) {
4139 /* automatic parse from the BIOS config */
4140 err = alc262_parse_auto_config(codec);
4141 if (err < 0) {
4142 alc_free(codec);
4143 return err;
4144 }
4145#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4146 else if (!err) {
4147 printk(KERN_INFO
4148 "hda_codec: Cannot set up configuration "
4149 "from BIOS. Using base mode...\n");
4150 board_config = ALC262_BASIC;
4151 }
4152#endif
4153 }
4154
4155 if (board_config != ALC_MODEL_AUTO)
4156 setup_preset(codec, &alc262_presets[board_config]);
4157
4158 if (!spec->no_analog && !spec->adc_nids) {
4159 alc_auto_fill_adc_caps(codec);
4160 alc_rebuild_imux_for_auto_mic(codec);
4161 alc_remove_invalid_adc_nids(codec);
4162 }
4163
4164 if (!spec->no_analog && !spec->cap_mixer)
4165 set_capture_mixer(codec);
4166
4167 if (!spec->no_analog && has_cdefine_beep(codec)) {
4168 err = snd_hda_attach_beep_device(codec, 0x1);
4169 if (err < 0) {
4170 alc_free(codec);
4171 return err;
4172 }
4173 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
4174 }
4175
4176 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
4177
4178 spec->vmaster_nid = 0x0c;
4179
4180 codec->patch_ops = alc_patch_ops;
4181 if (board_config == ALC_MODEL_AUTO)
4182 spec->init_hook = alc_auto_init_std;
4183 spec->shutup = alc_eapd_shutup;
4184
4185 alc_init_jacks(codec);
4186#ifdef CONFIG_SND_HDA_POWER_SAVE
4187 if (!spec->loopback.amplist)
4188 spec->loopback.amplist = alc262_loopbacks;
4189#endif
4190
4191 return 0;
4192}
4193
4194/*
4195 * ALC268
4196 */
4197/* bind Beep switches of both NID 0x0f and 0x10 */
4198static const struct hda_bind_ctls alc268_bind_beep_sw = {
4199 .ops = &snd_hda_bind_sw,
4200 .values = {
4201 HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT),
4202 HDA_COMPOSE_AMP_VAL(0x10, 3, 1, HDA_INPUT),
4203 0
4204 },
4205};
4206
4207static const struct snd_kcontrol_new alc268_beep_mixer[] = {
4208 HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT),
4209 HDA_BIND_SW("Beep Playback Switch", &alc268_bind_beep_sw),
4210 { }
4211};
4212
4213/* set PCBEEP vol = 0, mute connections */
4214static const struct hda_verb alc268_beep_init_verbs[] = {
4215 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4216 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4217 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4218 { }
4219};
4220
4221/*
4222 * BIOS auto configuration
4223 */
4224static int alc268_parse_auto_config(struct hda_codec *codec)
4225{
4226 static const hda_nid_t alc268_ssids[] = { 0x15, 0x1b, 0x14, 0 };
4227 struct alc_spec *spec = codec->spec;
4228 int err = alc_parse_auto_config(codec, NULL, alc268_ssids);
4229 if (err > 0) {
4230 if (!spec->no_analog && spec->autocfg.speaker_pins[0] != 0x1d) {
4231 add_mixer(spec, alc268_beep_mixer);
4232 add_verb(spec, alc268_beep_init_verbs);
4233 }
4234 }
4235 return err;
4236}
4237
4238/*
4239 */
4240#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4241#include "alc268_quirks.c"
4242#endif
4243
4244static int patch_alc268(struct hda_codec *codec)
4245{
4246 struct alc_spec *spec;
4247 int board_config;
4248 int i, has_beep, err;
4249
4250 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4251 if (spec == NULL)
4252 return -ENOMEM;
4253
4254 codec->spec = spec;
4255
4256 /* ALC268 has no aa-loopback mixer */
4257
4258 board_config = alc_board_config(codec, ALC268_MODEL_LAST,
4259 alc268_models, alc268_cfg_tbl);
4260
4261 if (board_config < 0)
4262 board_config = alc_board_codec_sid_config(codec,
4263 ALC268_MODEL_LAST, alc268_models, alc268_ssid_cfg_tbl);
4264
4265 if (board_config < 0) {
4266 printk(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
4267 codec->chip_name);
4268 board_config = ALC_MODEL_AUTO;
4269 }
4270
4271 if (board_config == ALC_MODEL_AUTO) {
4272 /* automatic parse from the BIOS config */
4273 err = alc268_parse_auto_config(codec);
4274 if (err < 0) {
4275 alc_free(codec);
4276 return err;
4277 }
4278#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4279 else if (!err) {
4280 printk(KERN_INFO
4281 "hda_codec: Cannot set up configuration "
4282 "from BIOS. Using base mode...\n");
4283 board_config = ALC268_3ST;
4284 }
4285#endif
4286 }
4287
4288 if (board_config != ALC_MODEL_AUTO)
4289 setup_preset(codec, &alc268_presets[board_config]);
4290
4291 has_beep = 0;
4292 for (i = 0; i < spec->num_mixers; i++) {
4293 if (spec->mixers[i] == alc268_beep_mixer) {
4294 has_beep = 1;
4295 break;
4296 }
4297 }
4298
4299 if (has_beep) {
4300 err = snd_hda_attach_beep_device(codec, 0x1);
4301 if (err < 0) {
4302 alc_free(codec);
4303 return err;
4304 }
4305 if (!query_amp_caps(codec, 0x1d, HDA_INPUT))
4306 /* override the amp caps for beep generator */
4307 snd_hda_override_amp_caps(codec, 0x1d, HDA_INPUT,
4308 (0x0c << AC_AMPCAP_OFFSET_SHIFT) |
4309 (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT) |
4310 (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT) |
4311 (0 << AC_AMPCAP_MUTE_SHIFT));
4312 }
4313
4314 if (!spec->no_analog && !spec->adc_nids) {
4315 alc_auto_fill_adc_caps(codec);
4316 alc_rebuild_imux_for_auto_mic(codec);
4317 alc_remove_invalid_adc_nids(codec);
4318 }
4319
4320 if (!spec->no_analog && !spec->cap_mixer)
4321 set_capture_mixer(codec);
4322
4323 spec->vmaster_nid = 0x02;
4324
4325 codec->patch_ops = alc_patch_ops;
4326 if (board_config == ALC_MODEL_AUTO)
4327 spec->init_hook = alc_auto_init_std;
4328 spec->shutup = alc_eapd_shutup;
4329
4330 alc_init_jacks(codec);
4331
4332 return 0;
4333}
4334
4335/*
4336 * ALC269
4337 */
4338#ifdef CONFIG_SND_HDA_POWER_SAVE
4339#define alc269_loopbacks alc880_loopbacks
4340#endif
4341
4342static const struct hda_pcm_stream alc269_44k_pcm_analog_playback = {
4343 .substreams = 1,
4344 .channels_min = 2,
4345 .channels_max = 8,
4346 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
4347 /* NID is set in alc_build_pcms */
4348 .ops = {
4349 .open = alc_playback_pcm_open,
4350 .prepare = alc_playback_pcm_prepare,
4351 .cleanup = alc_playback_pcm_cleanup
4352 },
4353};
4354
4355static const struct hda_pcm_stream alc269_44k_pcm_analog_capture = {
4356 .substreams = 1,
4357 .channels_min = 2,
4358 .channels_max = 2,
4359 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
4360 /* NID is set in alc_build_pcms */
4361};
4362
4363#ifdef CONFIG_SND_HDA_POWER_SAVE
4364static int alc269_mic2_for_mute_led(struct hda_codec *codec)
4365{
4366 switch (codec->subsystem_id) {
4367 case 0x103c1586:
4368 return 1;
4369 }
4370 return 0;
4371}
4372
4373static int alc269_mic2_mute_check_ps(struct hda_codec *codec, hda_nid_t nid)
4374{
4375 /* update mute-LED according to the speaker mute state */
4376 if (nid == 0x01 || nid == 0x14) {
4377 int pinval;
4378 if (snd_hda_codec_amp_read(codec, 0x14, 0, HDA_OUTPUT, 0) &
4379 HDA_AMP_MUTE)
4380 pinval = 0x24;
4381 else
4382 pinval = 0x20;
4383 /* mic2 vref pin is used for mute LED control */
4384 snd_hda_codec_update_cache(codec, 0x19, 0,
4385 AC_VERB_SET_PIN_WIDGET_CONTROL,
4386 pinval);
4387 }
4388 return alc_check_power_status(codec, nid);
4389}
4390#endif /* CONFIG_SND_HDA_POWER_SAVE */
4391
4392/* different alc269-variants */
4393enum {
4394 ALC269_TYPE_ALC269VA,
4395 ALC269_TYPE_ALC269VB,
4396 ALC269_TYPE_ALC269VC,
4397};
4398
4399/*
4400 * BIOS auto configuration
4401 */
4402static int alc269_parse_auto_config(struct hda_codec *codec)
4403{
4404 static const hda_nid_t alc269_ignore[] = { 0x1d, 0 };
4405 static const hda_nid_t alc269_ssids[] = { 0, 0x1b, 0x14, 0x21 };
4406 static const hda_nid_t alc269va_ssids[] = { 0x15, 0x1b, 0x14, 0 };
4407 struct alc_spec *spec = codec->spec;
4408 const hda_nid_t *ssids = spec->codec_variant == ALC269_TYPE_ALC269VA ?
4409 alc269va_ssids : alc269_ssids;
4410
4411 return alc_parse_auto_config(codec, alc269_ignore, ssids);
4412}
4413
4414static void alc269_toggle_power_output(struct hda_codec *codec, int power_up)
4415{
4416 int val = alc_read_coef_idx(codec, 0x04);
4417 if (power_up)
4418 val |= 1 << 11;
4419 else
4420 val &= ~(1 << 11);
4421 alc_write_coef_idx(codec, 0x04, val);
4422}
4423
4424static void alc269_shutup(struct hda_codec *codec)
4425{
4426 if ((alc_read_coef_idx(codec, 0) & 0x00ff) == 0x017)
4427 alc269_toggle_power_output(codec, 0);
4428 if ((alc_read_coef_idx(codec, 0) & 0x00ff) == 0x018) {
4429 alc269_toggle_power_output(codec, 0);
4430 msleep(150);
4431 }
4432}
4433
4434#ifdef CONFIG_PM
4435static int alc269_resume(struct hda_codec *codec)
4436{
4437 if ((alc_read_coef_idx(codec, 0) & 0x00ff) == 0x018) {
4438 alc269_toggle_power_output(codec, 0);
4439 msleep(150);
4440 }
4441
4442 codec->patch_ops.init(codec);
4443
4444 if ((alc_read_coef_idx(codec, 0) & 0x00ff) == 0x017) {
4445 alc269_toggle_power_output(codec, 1);
4446 msleep(200);
4447 }
4448
4449 if ((alc_read_coef_idx(codec, 0) & 0x00ff) == 0x018)
4450 alc269_toggle_power_output(codec, 1);
4451
4452 snd_hda_codec_resume_amp(codec);
4453 snd_hda_codec_resume_cache(codec);
4454 hda_call_check_power_status(codec, 0x01);
4455 return 0;
4456}
4457#endif /* CONFIG_PM */
4458
4459static void alc269_fixup_hweq(struct hda_codec *codec,
4460 const struct alc_fixup *fix, int action)
4461{
4462 int coef;
4463
4464 if (action != ALC_FIXUP_ACT_INIT)
4465 return;
4466 coef = alc_read_coef_idx(codec, 0x1e);
4467 alc_write_coef_idx(codec, 0x1e, coef | 0x80);
4468}
4469
4470static void alc271_fixup_dmic(struct hda_codec *codec,
4471 const struct alc_fixup *fix, int action)
4472{
4473 static const struct hda_verb verbs[] = {
4474 {0x20, AC_VERB_SET_COEF_INDEX, 0x0d},
4475 {0x20, AC_VERB_SET_PROC_COEF, 0x4000},
4476 {}
4477 };
4478 unsigned int cfg;
4479
4480 if (strcmp(codec->chip_name, "ALC271X"))
4481 return;
4482 cfg = snd_hda_codec_get_pincfg(codec, 0x12);
4483 if (get_defcfg_connect(cfg) == AC_JACK_PORT_FIXED)
4484 snd_hda_sequence_write(codec, verbs);
4485}
4486
4487static void alc269_fixup_pcm_44k(struct hda_codec *codec,
4488 const struct alc_fixup *fix, int action)
4489{
4490 struct alc_spec *spec = codec->spec;
4491
4492 if (action != ALC_FIXUP_ACT_PROBE)
4493 return;
4494
4495 /* Due to a hardware problem on Lenovo Ideadpad, we need to
4496 * fix the sample rate of analog I/O to 44.1kHz
4497 */
4498 spec->stream_analog_playback = &alc269_44k_pcm_analog_playback;
4499 spec->stream_analog_capture = &alc269_44k_pcm_analog_capture;
4500}
4501
4502static void alc269_fixup_stereo_dmic(struct hda_codec *codec,
4503 const struct alc_fixup *fix, int action)
4504{
4505 int coef;
4506
4507 if (action != ALC_FIXUP_ACT_INIT)
4508 return;
4509 /* The digital-mic unit sends PDM (differential signal) instead of
4510 * the standard PCM, thus you can't record a valid mono stream as is.
4511 * Below is a workaround specific to ALC269 to control the dmic
4512 * signal source as mono.
4513 */
4514 coef = alc_read_coef_idx(codec, 0x07);
4515 alc_write_coef_idx(codec, 0x07, coef | 0x80);
4516}
4517
4518enum {
4519 ALC269_FIXUP_SONY_VAIO,
4520 ALC275_FIXUP_SONY_VAIO_GPIO2,
4521 ALC269_FIXUP_DELL_M101Z,
4522 ALC269_FIXUP_SKU_IGNORE,
4523 ALC269_FIXUP_ASUS_G73JW,
4524 ALC269_FIXUP_LENOVO_EAPD,
4525 ALC275_FIXUP_SONY_HWEQ,
4526 ALC271_FIXUP_DMIC,
4527 ALC269_FIXUP_PCM_44K,
4528 ALC269_FIXUP_STEREO_DMIC,
4529};
4530
4531static const struct alc_fixup alc269_fixups[] = {
4532 [ALC269_FIXUP_SONY_VAIO] = {
4533 .type = ALC_FIXUP_VERBS,
4534 .v.verbs = (const struct hda_verb[]) {
4535 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREFGRD},
4536 {}
4537 }
4538 },
4539 [ALC275_FIXUP_SONY_VAIO_GPIO2] = {
4540 .type = ALC_FIXUP_VERBS,
4541 .v.verbs = (const struct hda_verb[]) {
4542 {0x01, AC_VERB_SET_GPIO_MASK, 0x04},
4543 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x04},
4544 {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
4545 { }
4546 },
4547 .chained = true,
4548 .chain_id = ALC269_FIXUP_SONY_VAIO
4549 },
4550 [ALC269_FIXUP_DELL_M101Z] = {
4551 .type = ALC_FIXUP_VERBS,
4552 .v.verbs = (const struct hda_verb[]) {
4553 /* Enables internal speaker */
4554 {0x20, AC_VERB_SET_COEF_INDEX, 13},
4555 {0x20, AC_VERB_SET_PROC_COEF, 0x4040},
4556 {}
4557 }
4558 },
4559 [ALC269_FIXUP_SKU_IGNORE] = {
4560 .type = ALC_FIXUP_SKU,
4561 .v.sku = ALC_FIXUP_SKU_IGNORE,
4562 },
4563 [ALC269_FIXUP_ASUS_G73JW] = {
4564 .type = ALC_FIXUP_PINS,
4565 .v.pins = (const struct alc_pincfg[]) {
4566 { 0x17, 0x99130111 }, /* subwoofer */
4567 { }
4568 }
4569 },
4570 [ALC269_FIXUP_LENOVO_EAPD] = {
4571 .type = ALC_FIXUP_VERBS,
4572 .v.verbs = (const struct hda_verb[]) {
4573 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
4574 {}
4575 }
4576 },
4577 [ALC275_FIXUP_SONY_HWEQ] = {
4578 .type = ALC_FIXUP_FUNC,
4579 .v.func = alc269_fixup_hweq,
4580 .chained = true,
4581 .chain_id = ALC275_FIXUP_SONY_VAIO_GPIO2
4582 },
4583 [ALC271_FIXUP_DMIC] = {
4584 .type = ALC_FIXUP_FUNC,
4585 .v.func = alc271_fixup_dmic,
4586 },
4587 [ALC269_FIXUP_PCM_44K] = {
4588 .type = ALC_FIXUP_FUNC,
4589 .v.func = alc269_fixup_pcm_44k,
4590 },
4591 [ALC269_FIXUP_STEREO_DMIC] = {
4592 .type = ALC_FIXUP_FUNC,
4593 .v.func = alc269_fixup_stereo_dmic,
4594 },
4595};
4596
4597static const struct snd_pci_quirk alc269_fixup_tbl[] = {
4598 SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW),
4599 SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC),
4600 SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC),
4601 SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC),
4602 SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
4603 SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
4604 SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2),
4605 SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
4606 SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
4607 SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO),
4608 SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
4609 SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC),
4610 SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE),
4611 SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE),
4612 SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE),
4613 SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE),
4614 SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE),
4615 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Lenovo Ideapd", ALC269_FIXUP_PCM_44K),
4616 SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD),
4617 {}
4618};
4619
4620
4621static int alc269_fill_coef(struct hda_codec *codec)
4622{
4623 int val;
4624
4625 if ((alc_read_coef_idx(codec, 0) & 0x00ff) < 0x015) {
4626 alc_write_coef_idx(codec, 0xf, 0x960b);
4627 alc_write_coef_idx(codec, 0xe, 0x8817);
4628 }
4629
4630 if ((alc_read_coef_idx(codec, 0) & 0x00ff) == 0x016) {
4631 alc_write_coef_idx(codec, 0xf, 0x960b);
4632 alc_write_coef_idx(codec, 0xe, 0x8814);
4633 }
4634
4635 if ((alc_read_coef_idx(codec, 0) & 0x00ff) == 0x017) {
4636 val = alc_read_coef_idx(codec, 0x04);
4637 /* Power up output pin */
4638 alc_write_coef_idx(codec, 0x04, val | (1<<11));
4639 }
4640
4641 if ((alc_read_coef_idx(codec, 0) & 0x00ff) == 0x018) {
4642 val = alc_read_coef_idx(codec, 0xd);
4643 if ((val & 0x0c00) >> 10 != 0x1) {
4644 /* Capless ramp up clock control */
4645 alc_write_coef_idx(codec, 0xd, val | (1<<10));
4646 }
4647 val = alc_read_coef_idx(codec, 0x17);
4648 if ((val & 0x01c0) >> 6 != 0x4) {
4649 /* Class D power on reset */
4650 alc_write_coef_idx(codec, 0x17, val | (1<<7));
4651 }
4652 }
4653
4654 val = alc_read_coef_idx(codec, 0xd); /* Class D */
4655 alc_write_coef_idx(codec, 0xd, val | (1<<14));
4656
4657 val = alc_read_coef_idx(codec, 0x4); /* HP */
4658 alc_write_coef_idx(codec, 0x4, val | (1<<11));
4659
4660 return 0;
4661}
4662
4663/*
4664 */
4665#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4666#include "alc269_quirks.c"
4667#endif
4668
4669static int patch_alc269(struct hda_codec *codec)
4670{
4671 struct alc_spec *spec;
4672 int board_config, coef;
4673 int err;
4674
4675 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4676 if (spec == NULL)
4677 return -ENOMEM;
4678
4679 codec->spec = spec;
4680
4681 spec->mixer_nid = 0x0b;
4682
4683 alc_auto_parse_customize_define(codec);
4684
4685 if (codec->vendor_id == 0x10ec0269) {
4686 spec->codec_variant = ALC269_TYPE_ALC269VA;
4687 coef = alc_read_coef_idx(codec, 0);
4688 if ((coef & 0x00f0) == 0x0010) {
4689 if (codec->bus->pci->subsystem_vendor == 0x1025 &&
4690 spec->cdefine.platform_type == 1) {
4691 alc_codec_rename(codec, "ALC271X");
4692 } else if ((coef & 0xf000) == 0x2000) {
4693 alc_codec_rename(codec, "ALC259");
4694 } else if ((coef & 0xf000) == 0x3000) {
4695 alc_codec_rename(codec, "ALC258");
4696 } else if ((coef & 0xfff0) == 0x3010) {
4697 alc_codec_rename(codec, "ALC277");
4698 } else {
4699 alc_codec_rename(codec, "ALC269VB");
4700 }
4701 spec->codec_variant = ALC269_TYPE_ALC269VB;
4702 } else if ((coef & 0x00f0) == 0x0020) {
4703 if (coef == 0xa023)
4704 alc_codec_rename(codec, "ALC259");
4705 else if (coef == 0x6023)
4706 alc_codec_rename(codec, "ALC281X");
4707 else if (codec->bus->pci->subsystem_vendor == 0x17aa &&
4708 codec->bus->pci->subsystem_device == 0x21f3)
4709 alc_codec_rename(codec, "ALC3202");
4710 else
4711 alc_codec_rename(codec, "ALC269VC");
4712 spec->codec_variant = ALC269_TYPE_ALC269VC;
4713 } else
4714 alc_fix_pll_init(codec, 0x20, 0x04, 15);
4715 alc269_fill_coef(codec);
4716 }
4717
4718 board_config = alc_board_config(codec, ALC269_MODEL_LAST,
4719 alc269_models, alc269_cfg_tbl);
4720
4721 if (board_config < 0) {
4722 printk(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
4723 codec->chip_name);
4724 board_config = ALC_MODEL_AUTO;
4725 }
4726
4727 if (board_config == ALC_MODEL_AUTO) {
4728 alc_pick_fixup(codec, NULL, alc269_fixup_tbl, alc269_fixups);
4729 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
4730 }
4731
4732 if (board_config == ALC_MODEL_AUTO) {
4733 /* automatic parse from the BIOS config */
4734 err = alc269_parse_auto_config(codec);
4735 if (err < 0) {
4736 alc_free(codec);
4737 return err;
4738 }
4739#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4740 else if (!err) {
4741 printk(KERN_INFO
4742 "hda_codec: Cannot set up configuration "
4743 "from BIOS. Using base mode...\n");
4744 board_config = ALC269_BASIC;
4745 }
4746#endif
4747 }
4748
4749 if (board_config != ALC_MODEL_AUTO)
4750 setup_preset(codec, &alc269_presets[board_config]);
4751
4752 if (!spec->no_analog && !spec->adc_nids) {
4753 alc_auto_fill_adc_caps(codec);
4754 alc_rebuild_imux_for_auto_mic(codec);
4755 alc_remove_invalid_adc_nids(codec);
4756 }
4757
4758 if (!spec->no_analog && !spec->cap_mixer)
4759 set_capture_mixer(codec);
4760
4761 if (!spec->no_analog && has_cdefine_beep(codec)) {
4762 err = snd_hda_attach_beep_device(codec, 0x1);
4763 if (err < 0) {
4764 alc_free(codec);
4765 return err;
4766 }
4767 set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
4768 }
4769
4770 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
4771
4772 spec->vmaster_nid = 0x02;
4773
4774 codec->patch_ops = alc_patch_ops;
4775#ifdef CONFIG_PM
4776 codec->patch_ops.resume = alc269_resume;
4777#endif
4778 if (board_config == ALC_MODEL_AUTO)
4779 spec->init_hook = alc_auto_init_std;
4780 spec->shutup = alc269_shutup;
4781
4782 alc_init_jacks(codec);
4783#ifdef CONFIG_SND_HDA_POWER_SAVE
4784 if (!spec->loopback.amplist)
4785 spec->loopback.amplist = alc269_loopbacks;
4786 if (alc269_mic2_for_mute_led(codec))
4787 codec->patch_ops.check_power_status = alc269_mic2_mute_check_ps;
4788#endif
4789
4790 return 0;
4791}
4792
4793/*
4794 * ALC861
4795 */
4796
4797static int alc861_parse_auto_config(struct hda_codec *codec)
4798{
4799 static const hda_nid_t alc861_ignore[] = { 0x1d, 0 };
4800 static const hda_nid_t alc861_ssids[] = { 0x0e, 0x0f, 0x0b, 0 };
4801 return alc_parse_auto_config(codec, alc861_ignore, alc861_ssids);
4802}
4803
4804#ifdef CONFIG_SND_HDA_POWER_SAVE
4805static const struct hda_amp_list alc861_loopbacks[] = {
4806 { 0x15, HDA_INPUT, 0 },
4807 { 0x15, HDA_INPUT, 1 },
4808 { 0x15, HDA_INPUT, 2 },
4809 { 0x15, HDA_INPUT, 3 },
4810 { } /* end */
4811};
4812#endif
4813
4814
4815/* Pin config fixes */
4816enum {
4817 PINFIX_FSC_AMILO_PI1505,
4818};
4819
4820static const struct alc_fixup alc861_fixups[] = {
4821 [PINFIX_FSC_AMILO_PI1505] = {
4822 .type = ALC_FIXUP_PINS,
4823 .v.pins = (const struct alc_pincfg[]) {
4824 { 0x0b, 0x0221101f }, /* HP */
4825 { 0x0f, 0x90170310 }, /* speaker */
4826 { }
4827 }
4828 },
4829};
4830
4831static const struct snd_pci_quirk alc861_fixup_tbl[] = {
4832 SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", PINFIX_FSC_AMILO_PI1505),
4833 {}
4834};
4835
4836/*
4837 */
4838#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4839#include "alc861_quirks.c"
4840#endif
4841
4842static int patch_alc861(struct hda_codec *codec)
4843{
4844 struct alc_spec *spec;
4845 int board_config;
4846 int err;
4847
4848 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4849 if (spec == NULL)
4850 return -ENOMEM;
4851
4852 codec->spec = spec;
4853
4854 spec->mixer_nid = 0x15;
4855
4856 board_config = alc_board_config(codec, ALC861_MODEL_LAST,
4857 alc861_models, alc861_cfg_tbl);
4858
4859 if (board_config < 0) {
4860 printk(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
4861 codec->chip_name);
4862 board_config = ALC_MODEL_AUTO;
4863 }
4864
4865 if (board_config == ALC_MODEL_AUTO) {
4866 alc_pick_fixup(codec, NULL, alc861_fixup_tbl, alc861_fixups);
4867 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
4868 }
4869
4870 if (board_config == ALC_MODEL_AUTO) {
4871 /* automatic parse from the BIOS config */
4872 err = alc861_parse_auto_config(codec);
4873 if (err < 0) {
4874 alc_free(codec);
4875 return err;
4876 }
4877#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4878 else if (!err) {
4879 printk(KERN_INFO
4880 "hda_codec: Cannot set up configuration "
4881 "from BIOS. Using base mode...\n");
4882 board_config = ALC861_3ST_DIG;
4883 }
4884#endif
4885 }
4886
4887 if (board_config != ALC_MODEL_AUTO)
4888 setup_preset(codec, &alc861_presets[board_config]);
4889
4890 if (!spec->no_analog && !spec->adc_nids) {
4891 alc_auto_fill_adc_caps(codec);
4892 alc_rebuild_imux_for_auto_mic(codec);
4893 alc_remove_invalid_adc_nids(codec);
4894 }
4895
4896 if (!spec->no_analog && !spec->cap_mixer)
4897 set_capture_mixer(codec);
4898
4899 if (!spec->no_analog) {
4900 err = snd_hda_attach_beep_device(codec, 0x23);
4901 if (err < 0) {
4902 alc_free(codec);
4903 return err;
4904 }
4905 set_beep_amp(spec, 0x23, 0, HDA_OUTPUT);
4906 }
4907
4908 spec->vmaster_nid = 0x03;
4909
4910 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
4911
4912 codec->patch_ops = alc_patch_ops;
4913 if (board_config == ALC_MODEL_AUTO) {
4914 spec->init_hook = alc_auto_init_std;
4915#ifdef CONFIG_SND_HDA_POWER_SAVE
4916 spec->power_hook = alc_power_eapd;
4917#endif
4918 }
4919#ifdef CONFIG_SND_HDA_POWER_SAVE
4920 if (!spec->loopback.amplist)
4921 spec->loopback.amplist = alc861_loopbacks;
4922#endif
4923
4924 return 0;
4925}
4926
4927/*
4928 * ALC861-VD support
4929 *
4930 * Based on ALC882
4931 *
4932 * In addition, an independent DAC
4933 */
4934#ifdef CONFIG_SND_HDA_POWER_SAVE
4935#define alc861vd_loopbacks alc880_loopbacks
4936#endif
4937
4938static int alc861vd_parse_auto_config(struct hda_codec *codec)
4939{
4940 static const hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
4941 static const hda_nid_t alc861vd_ssids[] = { 0x15, 0x1b, 0x14, 0 };
4942 return alc_parse_auto_config(codec, alc861vd_ignore, alc861vd_ssids);
4943}
4944
4945enum {
4946 ALC660VD_FIX_ASUS_GPIO1
4947};
4948
4949/* reset GPIO1 */
4950static const struct alc_fixup alc861vd_fixups[] = {
4951 [ALC660VD_FIX_ASUS_GPIO1] = {
4952 .type = ALC_FIXUP_VERBS,
4953 .v.verbs = (const struct hda_verb[]) {
4954 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
4955 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
4956 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
4957 { }
4958 }
4959 },
4960};
4961
4962static const struct snd_pci_quirk alc861vd_fixup_tbl[] = {
4963 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1),
4964 {}
4965};
4966
4967static const struct hda_verb alc660vd_eapd_verbs[] = {
4968 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 2},
4969 {0x15, AC_VERB_SET_EAPD_BTLENABLE, 2},
4970 { }
4971};
4972
4973/*
4974 */
4975#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4976#include "alc861vd_quirks.c"
4977#endif
4978
4979static int patch_alc861vd(struct hda_codec *codec)
4980{
4981 struct alc_spec *spec;
4982 int err, board_config;
4983
4984 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4985 if (spec == NULL)
4986 return -ENOMEM;
4987
4988 codec->spec = spec;
4989
4990 spec->mixer_nid = 0x0b;
4991
4992 board_config = alc_board_config(codec, ALC861VD_MODEL_LAST,
4993 alc861vd_models, alc861vd_cfg_tbl);
4994
4995 if (board_config < 0) {
4996 printk(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
4997 codec->chip_name);
4998 board_config = ALC_MODEL_AUTO;
4999 }
5000
5001 if (board_config == ALC_MODEL_AUTO) {
5002 alc_pick_fixup(codec, NULL, alc861vd_fixup_tbl, alc861vd_fixups);
5003 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
5004 }
5005
5006 if (board_config == ALC_MODEL_AUTO) {
5007 /* automatic parse from the BIOS config */
5008 err = alc861vd_parse_auto_config(codec);
5009 if (err < 0) {
5010 alc_free(codec);
5011 return err;
5012 }
5013#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
5014 else if (!err) {
5015 printk(KERN_INFO
5016 "hda_codec: Cannot set up configuration "
5017 "from BIOS. Using base mode...\n");
5018 board_config = ALC861VD_3ST;
5019 }
5020#endif
5021 }
5022
5023 if (board_config != ALC_MODEL_AUTO)
5024 setup_preset(codec, &alc861vd_presets[board_config]);
5025
5026 if (codec->vendor_id == 0x10ec0660) {
5027 /* always turn on EAPD */
5028 add_verb(spec, alc660vd_eapd_verbs);
5029 }
5030
5031 if (!spec->no_analog && !spec->adc_nids) {
5032 alc_auto_fill_adc_caps(codec);
5033 alc_rebuild_imux_for_auto_mic(codec);
5034 alc_remove_invalid_adc_nids(codec);
5035 }
5036
5037 if (!spec->no_analog && !spec->cap_mixer)
5038 set_capture_mixer(codec);
5039
5040 if (!spec->no_analog) {
5041 err = snd_hda_attach_beep_device(codec, 0x23);
5042 if (err < 0) {
5043 alc_free(codec);
5044 return err;
5045 }
5046 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
5047 }
5048
5049 spec->vmaster_nid = 0x02;
5050
5051 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
5052
5053 codec->patch_ops = alc_patch_ops;
5054
5055 if (board_config == ALC_MODEL_AUTO)
5056 spec->init_hook = alc_auto_init_std;
5057 spec->shutup = alc_eapd_shutup;
5058#ifdef CONFIG_SND_HDA_POWER_SAVE
5059 if (!spec->loopback.amplist)
5060 spec->loopback.amplist = alc861vd_loopbacks;
5061#endif
5062
5063 return 0;
5064}
5065
5066/*
5067 * ALC662 support
5068 *
5069 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
5070 * configuration. Each pin widget can choose any input DACs and a mixer.
5071 * Each ADC is connected from a mixer of all inputs. This makes possible
5072 * 6-channel independent captures.
5073 *
5074 * In addition, an independent DAC for the multi-playback (not used in this
5075 * driver yet).
5076 */
5077#ifdef CONFIG_SND_HDA_POWER_SAVE
5078#define alc662_loopbacks alc880_loopbacks
5079#endif
5080
5081/*
5082 * BIOS auto configuration
5083 */
5084
5085static int alc662_parse_auto_config(struct hda_codec *codec)
5086{
5087 static const hda_nid_t alc662_ignore[] = { 0x1d, 0 };
5088 static const hda_nid_t alc663_ssids[] = { 0x15, 0x1b, 0x14, 0x21 };
5089 static const hda_nid_t alc662_ssids[] = { 0x15, 0x1b, 0x14, 0 };
5090 const hda_nid_t *ssids;
5091
5092 if (codec->vendor_id == 0x10ec0272 || codec->vendor_id == 0x10ec0663 ||
5093 codec->vendor_id == 0x10ec0665 || codec->vendor_id == 0x10ec0670)
5094 ssids = alc663_ssids;
5095 else
5096 ssids = alc662_ssids;
5097 return alc_parse_auto_config(codec, alc662_ignore, ssids);
5098}
5099
5100static void alc272_fixup_mario(struct hda_codec *codec,
5101 const struct alc_fixup *fix, int action)
5102{
5103 if (action != ALC_FIXUP_ACT_PROBE)
5104 return;
5105 if (snd_hda_override_amp_caps(codec, 0x2, HDA_OUTPUT,
5106 (0x3b << AC_AMPCAP_OFFSET_SHIFT) |
5107 (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT) |
5108 (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT) |
5109 (0 << AC_AMPCAP_MUTE_SHIFT)))
5110 printk(KERN_WARNING
5111 "hda_codec: failed to override amp caps for NID 0x2\n");
5112}
5113
5114enum {
5115 ALC662_FIXUP_ASPIRE,
5116 ALC662_FIXUP_IDEAPAD,
5117 ALC272_FIXUP_MARIO,
5118 ALC662_FIXUP_CZC_P10T,
5119 ALC662_FIXUP_SKU_IGNORE,
5120 ALC662_FIXUP_HP_RP5800,
5121};
5122
5123static const struct alc_fixup alc662_fixups[] = {
5124 [ALC662_FIXUP_ASPIRE] = {
5125 .type = ALC_FIXUP_PINS,
5126 .v.pins = (const struct alc_pincfg[]) {
5127 { 0x15, 0x99130112 }, /* subwoofer */
5128 { }
5129 }
5130 },
5131 [ALC662_FIXUP_IDEAPAD] = {
5132 .type = ALC_FIXUP_PINS,
5133 .v.pins = (const struct alc_pincfg[]) {
5134 { 0x17, 0x99130112 }, /* subwoofer */
5135 { }
5136 }
5137 },
5138 [ALC272_FIXUP_MARIO] = {
5139 .type = ALC_FIXUP_FUNC,
5140 .v.func = alc272_fixup_mario,
5141 },
5142 [ALC662_FIXUP_CZC_P10T] = {
5143 .type = ALC_FIXUP_VERBS,
5144 .v.verbs = (const struct hda_verb[]) {
5145 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
5146 {}
5147 }
5148 },
5149 [ALC662_FIXUP_SKU_IGNORE] = {
5150 .type = ALC_FIXUP_SKU,
5151 .v.sku = ALC_FIXUP_SKU_IGNORE,
5152 },
5153 [ALC662_FIXUP_HP_RP5800] = {
5154 .type = ALC_FIXUP_PINS,
5155 .v.pins = (const struct alc_pincfg[]) {
5156 { 0x14, 0x0221201f }, /* HP out */
5157 { }
5158 },
5159 .chained = true,
5160 .chain_id = ALC662_FIXUP_SKU_IGNORE
5161 },
5162};
5163
5164static const struct snd_pci_quirk alc662_fixup_tbl[] = {
5165 SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE),
5166 SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE),
5167 SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE),
5168 SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800),
5169 SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD),
5170 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD),
5171 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD),
5172 SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T),
5173 {}
5174};
5175
5176static const struct alc_model_fixup alc662_fixup_models[] = {
5177 {.id = ALC272_FIXUP_MARIO, .name = "mario"},
5178 {}
5179};
5180
5181
5182/*
5183 */
5184#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
5185#include "alc662_quirks.c"
5186#endif
5187
5188static int patch_alc662(struct hda_codec *codec)
5189{
5190 struct alc_spec *spec;
5191 int err, board_config;
5192 int coef;
5193
5194 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5195 if (!spec)
5196 return -ENOMEM;
5197
5198 codec->spec = spec;
5199
5200 spec->mixer_nid = 0x0b;
5201
5202 alc_auto_parse_customize_define(codec);
5203
5204 alc_fix_pll_init(codec, 0x20, 0x04, 15);
5205
5206 coef = alc_read_coef_idx(codec, 0);
5207 if (coef == 0x8020 || coef == 0x8011)
5208 alc_codec_rename(codec, "ALC661");
5209 else if (coef & (1 << 14) &&
5210 codec->bus->pci->subsystem_vendor == 0x1025 &&
5211 spec->cdefine.platform_type == 1)
5212 alc_codec_rename(codec, "ALC272X");
5213 else if (coef == 0x4011)
5214 alc_codec_rename(codec, "ALC656");
5215
5216 board_config = alc_board_config(codec, ALC662_MODEL_LAST,
5217 alc662_models, alc662_cfg_tbl);
5218 if (board_config < 0) {
5219 printk(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
5220 codec->chip_name);
5221 board_config = ALC_MODEL_AUTO;
5222 }
5223
5224 if (board_config == ALC_MODEL_AUTO) {
5225 alc_pick_fixup(codec, alc662_fixup_models,
5226 alc662_fixup_tbl, alc662_fixups);
5227 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
5228 /* automatic parse from the BIOS config */
5229 err = alc662_parse_auto_config(codec);
5230 if (err < 0) {
5231 alc_free(codec);
5232 return err;
5233 }
5234#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
5235 else if (!err) {
5236 printk(KERN_INFO
5237 "hda_codec: Cannot set up configuration "
5238 "from BIOS. Using base mode...\n");
5239 board_config = ALC662_3ST_2ch_DIG;
5240 }
5241#endif
5242 }
5243
5244 if (board_config != ALC_MODEL_AUTO)
5245 setup_preset(codec, &alc662_presets[board_config]);
5246
5247 if (!spec->no_analog && !spec->adc_nids) {
5248 alc_auto_fill_adc_caps(codec);
5249 alc_rebuild_imux_for_auto_mic(codec);
5250 alc_remove_invalid_adc_nids(codec);
5251 }
5252
5253 if (!spec->no_analog && !spec->cap_mixer)
5254 set_capture_mixer(codec);
5255
5256 if (!spec->no_analog && has_cdefine_beep(codec)) {
5257 err = snd_hda_attach_beep_device(codec, 0x1);
5258 if (err < 0) {
5259 alc_free(codec);
5260 return err;
5261 }
5262 switch (codec->vendor_id) {
5263 case 0x10ec0662:
5264 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
5265 break;
5266 case 0x10ec0272:
5267 case 0x10ec0663:
5268 case 0x10ec0665:
5269 set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
5270 break;
5271 case 0x10ec0273:
5272 set_beep_amp(spec, 0x0b, 0x03, HDA_INPUT);
5273 break;
5274 }
5275 }
5276 spec->vmaster_nid = 0x02;
5277
5278 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
5279
5280 codec->patch_ops = alc_patch_ops;
5281 if (board_config == ALC_MODEL_AUTO)
5282 spec->init_hook = alc_auto_init_std;
5283 spec->shutup = alc_eapd_shutup;
5284
5285 alc_init_jacks(codec);
5286
5287#ifdef CONFIG_SND_HDA_POWER_SAVE
5288 if (!spec->loopback.amplist)
5289 spec->loopback.amplist = alc662_loopbacks;
5290#endif
5291
5292 return 0;
5293}
5294
5295static int patch_alc888(struct hda_codec *codec)
5296{
5297 if ((alc_read_coef_idx(codec, 0) & 0x00f0)==0x0030){
5298 kfree(codec->chip_name);
5299 if (codec->vendor_id == 0x10ec0887)
5300 codec->chip_name = kstrdup("ALC887-VD", GFP_KERNEL);
5301 else
5302 codec->chip_name = kstrdup("ALC888-VD", GFP_KERNEL);
5303 if (!codec->chip_name) {
5304 alc_free(codec);
5305 return -ENOMEM;
5306 }
5307 return patch_alc662(codec);
5308 }
5309 return patch_alc882(codec);
5310}
5311
5312static int patch_alc899(struct hda_codec *codec)
5313{
5314 if ((alc_read_coef_idx(codec, 0) & 0x2000) != 0x2000) {
5315 kfree(codec->chip_name);
5316 codec->chip_name = kstrdup("ALC898", GFP_KERNEL);
5317 }
5318 return patch_alc882(codec);
5319}
5320
5321/*
5322 * ALC680 support
5323 */
5324
5325static int alc680_parse_auto_config(struct hda_codec *codec)
5326{
5327 return alc_parse_auto_config(codec, NULL, NULL);
5328}
5329
5330/*
5331 */
5332#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
5333#include "alc680_quirks.c"
5334#endif
5335
5336static int patch_alc680(struct hda_codec *codec)
5337{
5338 struct alc_spec *spec;
5339 int board_config;
5340 int err;
5341
5342 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5343 if (spec == NULL)
5344 return -ENOMEM;
5345
5346 codec->spec = spec;
5347
5348 /* ALC680 has no aa-loopback mixer */
5349
5350 board_config = alc_board_config(codec, ALC680_MODEL_LAST,
5351 alc680_models, alc680_cfg_tbl);
5352
5353 if (board_config < 0) {
5354 printk(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
5355 codec->chip_name);
5356 board_config = ALC_MODEL_AUTO;
5357 }
5358
5359 if (board_config == ALC_MODEL_AUTO) {
5360 /* automatic parse from the BIOS config */
5361 err = alc680_parse_auto_config(codec);
5362 if (err < 0) {
5363 alc_free(codec);
5364 return err;
5365 }
5366#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
5367 else if (!err) {
5368 printk(KERN_INFO
5369 "hda_codec: Cannot set up configuration "
5370 "from BIOS. Using base mode...\n");
5371 board_config = ALC680_BASE;
5372 }
5373#endif
5374 }
5375
5376 if (board_config != ALC_MODEL_AUTO) {
5377 setup_preset(codec, &alc680_presets[board_config]);
5378#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
5379 spec->stream_analog_capture = &alc680_pcm_analog_auto_capture;
5380#endif
5381 }
5382
5383 if (!spec->no_analog && !spec->adc_nids) {
5384 alc_auto_fill_adc_caps(codec);
5385 alc_rebuild_imux_for_auto_mic(codec);
5386 alc_remove_invalid_adc_nids(codec);
5387 }
5388
5389 if (!spec->no_analog && !spec->cap_mixer)
5390 set_capture_mixer(codec);
5391
5392 spec->vmaster_nid = 0x02;
5393
5394 codec->patch_ops = alc_patch_ops;
5395 if (board_config == ALC_MODEL_AUTO)
5396 spec->init_hook = alc_auto_init_std;
5397
5398 return 0;
5399}
5400
5401/*
5402 * patch entries
5403 */
5404static const struct hda_codec_preset snd_hda_preset_realtek[] = {
5405 { .id = 0x10ec0221, .name = "ALC221", .patch = patch_alc269 },
5406 { .id = 0x10ec0260, .name = "ALC260", .patch = patch_alc260 },
5407 { .id = 0x10ec0262, .name = "ALC262", .patch = patch_alc262 },
5408 { .id = 0x10ec0267, .name = "ALC267", .patch = patch_alc268 },
5409 { .id = 0x10ec0268, .name = "ALC268", .patch = patch_alc268 },
5410 { .id = 0x10ec0269, .name = "ALC269", .patch = patch_alc269 },
5411 { .id = 0x10ec0270, .name = "ALC270", .patch = patch_alc269 },
5412 { .id = 0x10ec0272, .name = "ALC272", .patch = patch_alc662 },
5413 { .id = 0x10ec0275, .name = "ALC275", .patch = patch_alc269 },
5414 { .id = 0x10ec0276, .name = "ALC276", .patch = patch_alc269 },
5415 { .id = 0x10ec0861, .rev = 0x100340, .name = "ALC660",
5416 .patch = patch_alc861 },
5417 { .id = 0x10ec0660, .name = "ALC660-VD", .patch = patch_alc861vd },
5418 { .id = 0x10ec0861, .name = "ALC861", .patch = patch_alc861 },
5419 { .id = 0x10ec0862, .name = "ALC861-VD", .patch = patch_alc861vd },
5420 { .id = 0x10ec0662, .rev = 0x100002, .name = "ALC662 rev2",
5421 .patch = patch_alc882 },
5422 { .id = 0x10ec0662, .rev = 0x100101, .name = "ALC662 rev1",
5423 .patch = patch_alc662 },
5424 { .id = 0x10ec0663, .name = "ALC663", .patch = patch_alc662 },
5425 { .id = 0x10ec0665, .name = "ALC665", .patch = patch_alc662 },
5426 { .id = 0x10ec0670, .name = "ALC670", .patch = patch_alc662 },
5427 { .id = 0x10ec0680, .name = "ALC680", .patch = patch_alc680 },
5428 { .id = 0x10ec0880, .name = "ALC880", .patch = patch_alc880 },
5429 { .id = 0x10ec0882, .name = "ALC882", .patch = patch_alc882 },
5430 { .id = 0x10ec0883, .name = "ALC883", .patch = patch_alc882 },
5431 { .id = 0x10ec0885, .rev = 0x100101, .name = "ALC889A",
5432 .patch = patch_alc882 },
5433 { .id = 0x10ec0885, .rev = 0x100103, .name = "ALC889A",
5434 .patch = patch_alc882 },
5435 { .id = 0x10ec0885, .name = "ALC885", .patch = patch_alc882 },
5436 { .id = 0x10ec0887, .name = "ALC887", .patch = patch_alc888 },
5437 { .id = 0x10ec0888, .rev = 0x100101, .name = "ALC1200",
5438 .patch = patch_alc882 },
5439 { .id = 0x10ec0888, .name = "ALC888", .patch = patch_alc888 },
5440 { .id = 0x10ec0889, .name = "ALC889", .patch = patch_alc882 },
5441 { .id = 0x10ec0892, .name = "ALC892", .patch = patch_alc662 },
5442 { .id = 0x10ec0899, .name = "ALC899", .patch = patch_alc899 },
5443 {} /* terminator */
5444};
5445
5446MODULE_ALIAS("snd-hda-codec-id:10ec*");
5447
5448MODULE_LICENSE("GPL");
5449MODULE_DESCRIPTION("Realtek HD-audio codec");
5450
5451static struct hda_codec_preset_list realtek_list = {
5452 .preset = snd_hda_preset_realtek,
5453 .owner = THIS_MODULE,
5454};
5455
5456static int __init patch_realtek_init(void)
5457{
5458 return snd_hda_add_codec_preset(&realtek_list);
5459}
5460
5461static void __exit patch_realtek_exit(void)
5462{
5463 snd_hda_delete_codec_preset(&realtek_list);
5464}
5465
5466module_init(patch_realtek_init)
5467module_exit(patch_realtek_exit)
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * Universal Interface for Intel High Definition Audio Codec
4 *
5 * HD audio interface patch for Realtek ALC codecs
6 *
7 * Copyright (c) 2004 Kailang Yang <kailang@realtek.com.tw>
8 * PeiSen Hou <pshou@realtek.com.tw>
9 * Takashi Iwai <tiwai@suse.de>
10 * Jonathan Woithe <jwoithe@just42.net>
11 */
12
13#include <linux/acpi.h>
14#include <linux/init.h>
15#include <linux/delay.h>
16#include <linux/slab.h>
17#include <linux/pci.h>
18#include <linux/dmi.h>
19#include <linux/module.h>
20#include <linux/input.h>
21#include <linux/leds.h>
22#include <linux/ctype.h>
23#include <sound/core.h>
24#include <sound/jack.h>
25#include <sound/hda_codec.h>
26#include "hda_local.h"
27#include "hda_auto_parser.h"
28#include "hda_jack.h"
29#include "hda_generic.h"
30#include "hda_component.h"
31
32/* keep halting ALC5505 DSP, for power saving */
33#define HALT_REALTEK_ALC5505
34
35/* extra amp-initialization sequence types */
36enum {
37 ALC_INIT_UNDEFINED,
38 ALC_INIT_NONE,
39 ALC_INIT_DEFAULT,
40};
41
42enum {
43 ALC_HEADSET_MODE_UNKNOWN,
44 ALC_HEADSET_MODE_UNPLUGGED,
45 ALC_HEADSET_MODE_HEADSET,
46 ALC_HEADSET_MODE_MIC,
47 ALC_HEADSET_MODE_HEADPHONE,
48};
49
50enum {
51 ALC_HEADSET_TYPE_UNKNOWN,
52 ALC_HEADSET_TYPE_CTIA,
53 ALC_HEADSET_TYPE_OMTP,
54};
55
56enum {
57 ALC_KEY_MICMUTE_INDEX,
58};
59
60struct alc_customize_define {
61 unsigned int sku_cfg;
62 unsigned char port_connectivity;
63 unsigned char check_sum;
64 unsigned char customization;
65 unsigned char external_amp;
66 unsigned int enable_pcbeep:1;
67 unsigned int platform_type:1;
68 unsigned int swap:1;
69 unsigned int override:1;
70 unsigned int fixup:1; /* Means that this sku is set by driver, not read from hw */
71};
72
73struct alc_coef_led {
74 unsigned int idx;
75 unsigned int mask;
76 unsigned int on;
77 unsigned int off;
78};
79
80struct alc_spec {
81 struct hda_gen_spec gen; /* must be at head */
82
83 /* codec parameterization */
84 struct alc_customize_define cdefine;
85 unsigned int parse_flags; /* flag for snd_hda_parse_pin_defcfg() */
86
87 /* GPIO bits */
88 unsigned int gpio_mask;
89 unsigned int gpio_dir;
90 unsigned int gpio_data;
91 bool gpio_write_delay; /* add a delay before writing gpio_data */
92
93 /* mute LED for HP laptops, see vref_mute_led_set() */
94 int mute_led_polarity;
95 int micmute_led_polarity;
96 hda_nid_t mute_led_nid;
97 hda_nid_t cap_mute_led_nid;
98
99 unsigned int gpio_mute_led_mask;
100 unsigned int gpio_mic_led_mask;
101 struct alc_coef_led mute_led_coef;
102 struct alc_coef_led mic_led_coef;
103 struct mutex coef_mutex;
104
105 hda_nid_t headset_mic_pin;
106 hda_nid_t headphone_mic_pin;
107 int current_headset_mode;
108 int current_headset_type;
109
110 /* hooks */
111 void (*init_hook)(struct hda_codec *codec);
112#ifdef CONFIG_PM
113 void (*power_hook)(struct hda_codec *codec);
114#endif
115 void (*shutup)(struct hda_codec *codec);
116
117 int init_amp;
118 int codec_variant; /* flag for other variants */
119 unsigned int has_alc5505_dsp:1;
120 unsigned int no_depop_delay:1;
121 unsigned int done_hp_init:1;
122 unsigned int no_shutup_pins:1;
123 unsigned int ultra_low_power:1;
124 unsigned int has_hs_key:1;
125 unsigned int no_internal_mic_pin:1;
126 unsigned int en_3kpull_low:1;
127
128 /* for PLL fix */
129 hda_nid_t pll_nid;
130 unsigned int pll_coef_idx, pll_coef_bit;
131 unsigned int coef0;
132 struct input_dev *kb_dev;
133 u8 alc_mute_keycode_map[1];
134
135 /* component binding */
136 struct component_match *match;
137 struct hda_component comps[HDA_MAX_COMPONENTS];
138};
139
140/*
141 * COEF access helper functions
142 */
143
144static void coef_mutex_lock(struct hda_codec *codec)
145{
146 struct alc_spec *spec = codec->spec;
147
148 snd_hda_power_up_pm(codec);
149 mutex_lock(&spec->coef_mutex);
150}
151
152static void coef_mutex_unlock(struct hda_codec *codec)
153{
154 struct alc_spec *spec = codec->spec;
155
156 mutex_unlock(&spec->coef_mutex);
157 snd_hda_power_down_pm(codec);
158}
159
160static int __alc_read_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
161 unsigned int coef_idx)
162{
163 unsigned int val;
164
165 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_COEF_INDEX, coef_idx);
166 val = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_PROC_COEF, 0);
167 return val;
168}
169
170static int alc_read_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
171 unsigned int coef_idx)
172{
173 unsigned int val;
174
175 coef_mutex_lock(codec);
176 val = __alc_read_coefex_idx(codec, nid, coef_idx);
177 coef_mutex_unlock(codec);
178 return val;
179}
180
181#define alc_read_coef_idx(codec, coef_idx) \
182 alc_read_coefex_idx(codec, 0x20, coef_idx)
183
184static void __alc_write_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
185 unsigned int coef_idx, unsigned int coef_val)
186{
187 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_COEF_INDEX, coef_idx);
188 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PROC_COEF, coef_val);
189}
190
191static void alc_write_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
192 unsigned int coef_idx, unsigned int coef_val)
193{
194 coef_mutex_lock(codec);
195 __alc_write_coefex_idx(codec, nid, coef_idx, coef_val);
196 coef_mutex_unlock(codec);
197}
198
199#define alc_write_coef_idx(codec, coef_idx, coef_val) \
200 alc_write_coefex_idx(codec, 0x20, coef_idx, coef_val)
201
202static void __alc_update_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
203 unsigned int coef_idx, unsigned int mask,
204 unsigned int bits_set)
205{
206 unsigned int val = __alc_read_coefex_idx(codec, nid, coef_idx);
207
208 if (val != -1)
209 __alc_write_coefex_idx(codec, nid, coef_idx,
210 (val & ~mask) | bits_set);
211}
212
213static void alc_update_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
214 unsigned int coef_idx, unsigned int mask,
215 unsigned int bits_set)
216{
217 coef_mutex_lock(codec);
218 __alc_update_coefex_idx(codec, nid, coef_idx, mask, bits_set);
219 coef_mutex_unlock(codec);
220}
221
222#define alc_update_coef_idx(codec, coef_idx, mask, bits_set) \
223 alc_update_coefex_idx(codec, 0x20, coef_idx, mask, bits_set)
224
225/* a special bypass for COEF 0; read the cached value at the second time */
226static unsigned int alc_get_coef0(struct hda_codec *codec)
227{
228 struct alc_spec *spec = codec->spec;
229
230 if (!spec->coef0)
231 spec->coef0 = alc_read_coef_idx(codec, 0);
232 return spec->coef0;
233}
234
235/* coef writes/updates batch */
236struct coef_fw {
237 unsigned char nid;
238 unsigned char idx;
239 unsigned short mask;
240 unsigned short val;
241};
242
243#define UPDATE_COEFEX(_nid, _idx, _mask, _val) \
244 { .nid = (_nid), .idx = (_idx), .mask = (_mask), .val = (_val) }
245#define WRITE_COEFEX(_nid, _idx, _val) UPDATE_COEFEX(_nid, _idx, -1, _val)
246#define WRITE_COEF(_idx, _val) WRITE_COEFEX(0x20, _idx, _val)
247#define UPDATE_COEF(_idx, _mask, _val) UPDATE_COEFEX(0x20, _idx, _mask, _val)
248
249static void alc_process_coef_fw(struct hda_codec *codec,
250 const struct coef_fw *fw)
251{
252 coef_mutex_lock(codec);
253 for (; fw->nid; fw++) {
254 if (fw->mask == (unsigned short)-1)
255 __alc_write_coefex_idx(codec, fw->nid, fw->idx, fw->val);
256 else
257 __alc_update_coefex_idx(codec, fw->nid, fw->idx,
258 fw->mask, fw->val);
259 }
260 coef_mutex_unlock(codec);
261}
262
263/*
264 * GPIO setup tables, used in initialization
265 */
266
267/* Enable GPIO mask and set output */
268static void alc_setup_gpio(struct hda_codec *codec, unsigned int mask)
269{
270 struct alc_spec *spec = codec->spec;
271
272 spec->gpio_mask |= mask;
273 spec->gpio_dir |= mask;
274 spec->gpio_data |= mask;
275}
276
277static void alc_write_gpio_data(struct hda_codec *codec)
278{
279 struct alc_spec *spec = codec->spec;
280
281 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
282 spec->gpio_data);
283}
284
285static void alc_update_gpio_data(struct hda_codec *codec, unsigned int mask,
286 bool on)
287{
288 struct alc_spec *spec = codec->spec;
289 unsigned int oldval = spec->gpio_data;
290
291 if (on)
292 spec->gpio_data |= mask;
293 else
294 spec->gpio_data &= ~mask;
295 if (oldval != spec->gpio_data)
296 alc_write_gpio_data(codec);
297}
298
299static void alc_write_gpio(struct hda_codec *codec)
300{
301 struct alc_spec *spec = codec->spec;
302
303 if (!spec->gpio_mask)
304 return;
305
306 snd_hda_codec_write(codec, codec->core.afg, 0,
307 AC_VERB_SET_GPIO_MASK, spec->gpio_mask);
308 snd_hda_codec_write(codec, codec->core.afg, 0,
309 AC_VERB_SET_GPIO_DIRECTION, spec->gpio_dir);
310 if (spec->gpio_write_delay)
311 msleep(1);
312 alc_write_gpio_data(codec);
313}
314
315static void alc_fixup_gpio(struct hda_codec *codec, int action,
316 unsigned int mask)
317{
318 if (action == HDA_FIXUP_ACT_PRE_PROBE)
319 alc_setup_gpio(codec, mask);
320}
321
322static void alc_fixup_gpio1(struct hda_codec *codec,
323 const struct hda_fixup *fix, int action)
324{
325 alc_fixup_gpio(codec, action, 0x01);
326}
327
328static void alc_fixup_gpio2(struct hda_codec *codec,
329 const struct hda_fixup *fix, int action)
330{
331 alc_fixup_gpio(codec, action, 0x02);
332}
333
334static void alc_fixup_gpio3(struct hda_codec *codec,
335 const struct hda_fixup *fix, int action)
336{
337 alc_fixup_gpio(codec, action, 0x03);
338}
339
340static void alc_fixup_gpio4(struct hda_codec *codec,
341 const struct hda_fixup *fix, int action)
342{
343 alc_fixup_gpio(codec, action, 0x04);
344}
345
346static void alc_fixup_micmute_led(struct hda_codec *codec,
347 const struct hda_fixup *fix, int action)
348{
349 if (action == HDA_FIXUP_ACT_PRE_PROBE)
350 snd_hda_gen_add_micmute_led_cdev(codec, NULL);
351}
352
353/*
354 * Fix hardware PLL issue
355 * On some codecs, the analog PLL gating control must be off while
356 * the default value is 1.
357 */
358static void alc_fix_pll(struct hda_codec *codec)
359{
360 struct alc_spec *spec = codec->spec;
361
362 if (spec->pll_nid)
363 alc_update_coefex_idx(codec, spec->pll_nid, spec->pll_coef_idx,
364 1 << spec->pll_coef_bit, 0);
365}
366
367static void alc_fix_pll_init(struct hda_codec *codec, hda_nid_t nid,
368 unsigned int coef_idx, unsigned int coef_bit)
369{
370 struct alc_spec *spec = codec->spec;
371 spec->pll_nid = nid;
372 spec->pll_coef_idx = coef_idx;
373 spec->pll_coef_bit = coef_bit;
374 alc_fix_pll(codec);
375}
376
377/* update the master volume per volume-knob's unsol event */
378static void alc_update_knob_master(struct hda_codec *codec,
379 struct hda_jack_callback *jack)
380{
381 unsigned int val;
382 struct snd_kcontrol *kctl;
383 struct snd_ctl_elem_value *uctl;
384
385 kctl = snd_hda_find_mixer_ctl(codec, "Master Playback Volume");
386 if (!kctl)
387 return;
388 uctl = kzalloc(sizeof(*uctl), GFP_KERNEL);
389 if (!uctl)
390 return;
391 val = snd_hda_codec_read(codec, jack->nid, 0,
392 AC_VERB_GET_VOLUME_KNOB_CONTROL, 0);
393 val &= HDA_AMP_VOLMASK;
394 uctl->value.integer.value[0] = val;
395 uctl->value.integer.value[1] = val;
396 kctl->put(kctl, uctl);
397 kfree(uctl);
398}
399
400static void alc880_unsol_event(struct hda_codec *codec, unsigned int res)
401{
402 /* For some reason, the res given from ALC880 is broken.
403 Here we adjust it properly. */
404 snd_hda_jack_unsol_event(codec, res >> 2);
405}
406
407/* Change EAPD to verb control */
408static void alc_fill_eapd_coef(struct hda_codec *codec)
409{
410 int coef;
411
412 coef = alc_get_coef0(codec);
413
414 switch (codec->core.vendor_id) {
415 case 0x10ec0262:
416 alc_update_coef_idx(codec, 0x7, 0, 1<<5);
417 break;
418 case 0x10ec0267:
419 case 0x10ec0268:
420 alc_update_coef_idx(codec, 0x7, 0, 1<<13);
421 break;
422 case 0x10ec0269:
423 if ((coef & 0x00f0) == 0x0010)
424 alc_update_coef_idx(codec, 0xd, 0, 1<<14);
425 if ((coef & 0x00f0) == 0x0020)
426 alc_update_coef_idx(codec, 0x4, 1<<15, 0);
427 if ((coef & 0x00f0) == 0x0030)
428 alc_update_coef_idx(codec, 0x10, 1<<9, 0);
429 break;
430 case 0x10ec0280:
431 case 0x10ec0284:
432 case 0x10ec0290:
433 case 0x10ec0292:
434 alc_update_coef_idx(codec, 0x4, 1<<15, 0);
435 break;
436 case 0x10ec0225:
437 case 0x10ec0295:
438 case 0x10ec0299:
439 alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000);
440 fallthrough;
441 case 0x10ec0215:
442 case 0x10ec0285:
443 case 0x10ec0289:
444 alc_update_coef_idx(codec, 0x36, 1<<13, 0);
445 fallthrough;
446 case 0x10ec0230:
447 case 0x10ec0233:
448 case 0x10ec0235:
449 case 0x10ec0236:
450 case 0x10ec0245:
451 case 0x10ec0255:
452 case 0x10ec0256:
453 case 0x19e58326:
454 case 0x10ec0257:
455 case 0x10ec0282:
456 case 0x10ec0283:
457 case 0x10ec0286:
458 case 0x10ec0288:
459 case 0x10ec0298:
460 case 0x10ec0300:
461 alc_update_coef_idx(codec, 0x10, 1<<9, 0);
462 break;
463 case 0x10ec0275:
464 alc_update_coef_idx(codec, 0xe, 0, 1<<0);
465 break;
466 case 0x10ec0287:
467 alc_update_coef_idx(codec, 0x10, 1<<9, 0);
468 alc_write_coef_idx(codec, 0x8, 0x4ab7);
469 break;
470 case 0x10ec0293:
471 alc_update_coef_idx(codec, 0xa, 1<<13, 0);
472 break;
473 case 0x10ec0234:
474 case 0x10ec0274:
475 case 0x10ec0294:
476 case 0x10ec0700:
477 case 0x10ec0701:
478 case 0x10ec0703:
479 case 0x10ec0711:
480 alc_update_coef_idx(codec, 0x10, 1<<15, 0);
481 break;
482 case 0x10ec0662:
483 if ((coef & 0x00f0) == 0x0030)
484 alc_update_coef_idx(codec, 0x4, 1<<10, 0); /* EAPD Ctrl */
485 break;
486 case 0x10ec0272:
487 case 0x10ec0273:
488 case 0x10ec0663:
489 case 0x10ec0665:
490 case 0x10ec0670:
491 case 0x10ec0671:
492 case 0x10ec0672:
493 alc_update_coef_idx(codec, 0xd, 0, 1<<14); /* EAPD Ctrl */
494 break;
495 case 0x10ec0222:
496 case 0x10ec0623:
497 alc_update_coef_idx(codec, 0x19, 1<<13, 0);
498 break;
499 case 0x10ec0668:
500 alc_update_coef_idx(codec, 0x7, 3<<13, 0);
501 break;
502 case 0x10ec0867:
503 alc_update_coef_idx(codec, 0x4, 1<<10, 0);
504 break;
505 case 0x10ec0888:
506 if ((coef & 0x00f0) == 0x0020 || (coef & 0x00f0) == 0x0030)
507 alc_update_coef_idx(codec, 0x7, 1<<5, 0);
508 break;
509 case 0x10ec0892:
510 case 0x10ec0897:
511 alc_update_coef_idx(codec, 0x7, 1<<5, 0);
512 break;
513 case 0x10ec0899:
514 case 0x10ec0900:
515 case 0x10ec0b00:
516 case 0x10ec1168:
517 case 0x10ec1220:
518 alc_update_coef_idx(codec, 0x7, 1<<1, 0);
519 break;
520 }
521}
522
523/* additional initialization for ALC888 variants */
524static void alc888_coef_init(struct hda_codec *codec)
525{
526 switch (alc_get_coef0(codec) & 0x00f0) {
527 /* alc888-VA */
528 case 0x00:
529 /* alc888-VB */
530 case 0x10:
531 alc_update_coef_idx(codec, 7, 0, 0x2030); /* Turn EAPD to High */
532 break;
533 }
534}
535
536/* turn on/off EAPD control (only if available) */
537static void set_eapd(struct hda_codec *codec, hda_nid_t nid, int on)
538{
539 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
540 return;
541 if (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)
542 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
543 on ? 2 : 0);
544}
545
546/* turn on/off EAPD controls of the codec */
547static void alc_auto_setup_eapd(struct hda_codec *codec, bool on)
548{
549 /* We currently only handle front, HP */
550 static const hda_nid_t pins[] = {
551 0x0f, 0x10, 0x14, 0x15, 0x17, 0
552 };
553 const hda_nid_t *p;
554 for (p = pins; *p; p++)
555 set_eapd(codec, *p, on);
556}
557
558static int find_ext_mic_pin(struct hda_codec *codec);
559
560static void alc_headset_mic_no_shutup(struct hda_codec *codec)
561{
562 const struct hda_pincfg *pin;
563 int mic_pin = find_ext_mic_pin(codec);
564 int i;
565
566 /* don't shut up pins when unloading the driver; otherwise it breaks
567 * the default pin setup at the next load of the driver
568 */
569 if (codec->bus->shutdown)
570 return;
571
572 snd_array_for_each(&codec->init_pins, i, pin) {
573 /* use read here for syncing after issuing each verb */
574 if (pin->nid != mic_pin)
575 snd_hda_codec_read(codec, pin->nid, 0,
576 AC_VERB_SET_PIN_WIDGET_CONTROL, 0);
577 }
578
579 codec->pins_shutup = 1;
580}
581
582static void alc_shutup_pins(struct hda_codec *codec)
583{
584 struct alc_spec *spec = codec->spec;
585
586 switch (codec->core.vendor_id) {
587 case 0x10ec0236:
588 case 0x10ec0256:
589 case 0x19e58326:
590 case 0x10ec0283:
591 case 0x10ec0286:
592 case 0x10ec0288:
593 case 0x10ec0298:
594 alc_headset_mic_no_shutup(codec);
595 break;
596 default:
597 if (!spec->no_shutup_pins)
598 snd_hda_shutup_pins(codec);
599 break;
600 }
601}
602
603/* generic shutup callback;
604 * just turning off EAPD and a little pause for avoiding pop-noise
605 */
606static void alc_eapd_shutup(struct hda_codec *codec)
607{
608 struct alc_spec *spec = codec->spec;
609
610 alc_auto_setup_eapd(codec, false);
611 if (!spec->no_depop_delay)
612 msleep(200);
613 alc_shutup_pins(codec);
614}
615
616/* generic EAPD initialization */
617static void alc_auto_init_amp(struct hda_codec *codec, int type)
618{
619 alc_auto_setup_eapd(codec, true);
620 alc_write_gpio(codec);
621 switch (type) {
622 case ALC_INIT_DEFAULT:
623 switch (codec->core.vendor_id) {
624 case 0x10ec0260:
625 alc_update_coefex_idx(codec, 0x1a, 7, 0, 0x2010);
626 break;
627 case 0x10ec0880:
628 case 0x10ec0882:
629 case 0x10ec0883:
630 case 0x10ec0885:
631 alc_update_coef_idx(codec, 7, 0, 0x2030);
632 break;
633 case 0x10ec0888:
634 alc888_coef_init(codec);
635 break;
636 }
637 break;
638 }
639}
640
641/* get a primary headphone pin if available */
642static hda_nid_t alc_get_hp_pin(struct alc_spec *spec)
643{
644 if (spec->gen.autocfg.hp_pins[0])
645 return spec->gen.autocfg.hp_pins[0];
646 if (spec->gen.autocfg.line_out_type == AC_JACK_HP_OUT)
647 return spec->gen.autocfg.line_out_pins[0];
648 return 0;
649}
650
651/*
652 * Realtek SSID verification
653 */
654
655/* Could be any non-zero and even value. When used as fixup, tells
656 * the driver to ignore any present sku defines.
657 */
658#define ALC_FIXUP_SKU_IGNORE (2)
659
660static void alc_fixup_sku_ignore(struct hda_codec *codec,
661 const struct hda_fixup *fix, int action)
662{
663 struct alc_spec *spec = codec->spec;
664 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
665 spec->cdefine.fixup = 1;
666 spec->cdefine.sku_cfg = ALC_FIXUP_SKU_IGNORE;
667 }
668}
669
670static void alc_fixup_no_depop_delay(struct hda_codec *codec,
671 const struct hda_fixup *fix, int action)
672{
673 struct alc_spec *spec = codec->spec;
674
675 if (action == HDA_FIXUP_ACT_PROBE) {
676 spec->no_depop_delay = 1;
677 codec->depop_delay = 0;
678 }
679}
680
681static int alc_auto_parse_customize_define(struct hda_codec *codec)
682{
683 unsigned int ass, tmp, i;
684 unsigned nid = 0;
685 struct alc_spec *spec = codec->spec;
686
687 spec->cdefine.enable_pcbeep = 1; /* assume always enabled */
688
689 if (spec->cdefine.fixup) {
690 ass = spec->cdefine.sku_cfg;
691 if (ass == ALC_FIXUP_SKU_IGNORE)
692 return -1;
693 goto do_sku;
694 }
695
696 if (!codec->bus->pci)
697 return -1;
698 ass = codec->core.subsystem_id & 0xffff;
699 if (ass != codec->bus->pci->subsystem_device && (ass & 1))
700 goto do_sku;
701
702 nid = 0x1d;
703 if (codec->core.vendor_id == 0x10ec0260)
704 nid = 0x17;
705 ass = snd_hda_codec_get_pincfg(codec, nid);
706
707 if (!(ass & 1)) {
708 codec_info(codec, "%s: SKU not ready 0x%08x\n",
709 codec->core.chip_name, ass);
710 return -1;
711 }
712
713 /* check sum */
714 tmp = 0;
715 for (i = 1; i < 16; i++) {
716 if ((ass >> i) & 1)
717 tmp++;
718 }
719 if (((ass >> 16) & 0xf) != tmp)
720 return -1;
721
722 spec->cdefine.port_connectivity = ass >> 30;
723 spec->cdefine.enable_pcbeep = (ass & 0x100000) >> 20;
724 spec->cdefine.check_sum = (ass >> 16) & 0xf;
725 spec->cdefine.customization = ass >> 8;
726do_sku:
727 spec->cdefine.sku_cfg = ass;
728 spec->cdefine.external_amp = (ass & 0x38) >> 3;
729 spec->cdefine.platform_type = (ass & 0x4) >> 2;
730 spec->cdefine.swap = (ass & 0x2) >> 1;
731 spec->cdefine.override = ass & 0x1;
732
733 codec_dbg(codec, "SKU: Nid=0x%x sku_cfg=0x%08x\n",
734 nid, spec->cdefine.sku_cfg);
735 codec_dbg(codec, "SKU: port_connectivity=0x%x\n",
736 spec->cdefine.port_connectivity);
737 codec_dbg(codec, "SKU: enable_pcbeep=0x%x\n", spec->cdefine.enable_pcbeep);
738 codec_dbg(codec, "SKU: check_sum=0x%08x\n", spec->cdefine.check_sum);
739 codec_dbg(codec, "SKU: customization=0x%08x\n", spec->cdefine.customization);
740 codec_dbg(codec, "SKU: external_amp=0x%x\n", spec->cdefine.external_amp);
741 codec_dbg(codec, "SKU: platform_type=0x%x\n", spec->cdefine.platform_type);
742 codec_dbg(codec, "SKU: swap=0x%x\n", spec->cdefine.swap);
743 codec_dbg(codec, "SKU: override=0x%x\n", spec->cdefine.override);
744
745 return 0;
746}
747
748/* return the position of NID in the list, or -1 if not found */
749static int find_idx_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
750{
751 int i;
752 for (i = 0; i < nums; i++)
753 if (list[i] == nid)
754 return i;
755 return -1;
756}
757/* return true if the given NID is found in the list */
758static bool found_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
759{
760 return find_idx_in_nid_list(nid, list, nums) >= 0;
761}
762
763/* check subsystem ID and set up device-specific initialization;
764 * return 1 if initialized, 0 if invalid SSID
765 */
766/* 32-bit subsystem ID for BIOS loading in HD Audio codec.
767 * 31 ~ 16 : Manufacture ID
768 * 15 ~ 8 : SKU ID
769 * 7 ~ 0 : Assembly ID
770 * port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
771 */
772static int alc_subsystem_id(struct hda_codec *codec, const hda_nid_t *ports)
773{
774 unsigned int ass, tmp, i;
775 unsigned nid;
776 struct alc_spec *spec = codec->spec;
777
778 if (spec->cdefine.fixup) {
779 ass = spec->cdefine.sku_cfg;
780 if (ass == ALC_FIXUP_SKU_IGNORE)
781 return 0;
782 goto do_sku;
783 }
784
785 ass = codec->core.subsystem_id & 0xffff;
786 if (codec->bus->pci &&
787 ass != codec->bus->pci->subsystem_device && (ass & 1))
788 goto do_sku;
789
790 /* invalid SSID, check the special NID pin defcfg instead */
791 /*
792 * 31~30 : port connectivity
793 * 29~21 : reserve
794 * 20 : PCBEEP input
795 * 19~16 : Check sum (15:1)
796 * 15~1 : Custom
797 * 0 : override
798 */
799 nid = 0x1d;
800 if (codec->core.vendor_id == 0x10ec0260)
801 nid = 0x17;
802 ass = snd_hda_codec_get_pincfg(codec, nid);
803 codec_dbg(codec,
804 "realtek: No valid SSID, checking pincfg 0x%08x for NID 0x%x\n",
805 ass, nid);
806 if (!(ass & 1))
807 return 0;
808 if ((ass >> 30) != 1) /* no physical connection */
809 return 0;
810
811 /* check sum */
812 tmp = 0;
813 for (i = 1; i < 16; i++) {
814 if ((ass >> i) & 1)
815 tmp++;
816 }
817 if (((ass >> 16) & 0xf) != tmp)
818 return 0;
819do_sku:
820 codec_dbg(codec, "realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n",
821 ass & 0xffff, codec->core.vendor_id);
822 /*
823 * 0 : override
824 * 1 : Swap Jack
825 * 2 : 0 --> Desktop, 1 --> Laptop
826 * 3~5 : External Amplifier control
827 * 7~6 : Reserved
828 */
829 tmp = (ass & 0x38) >> 3; /* external Amp control */
830 if (spec->init_amp == ALC_INIT_UNDEFINED) {
831 switch (tmp) {
832 case 1:
833 alc_setup_gpio(codec, 0x01);
834 break;
835 case 3:
836 alc_setup_gpio(codec, 0x02);
837 break;
838 case 7:
839 alc_setup_gpio(codec, 0x04);
840 break;
841 case 5:
842 default:
843 spec->init_amp = ALC_INIT_DEFAULT;
844 break;
845 }
846 }
847
848 /* is laptop or Desktop and enable the function "Mute internal speaker
849 * when the external headphone out jack is plugged"
850 */
851 if (!(ass & 0x8000))
852 return 1;
853 /*
854 * 10~8 : Jack location
855 * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered
856 * 14~13: Resvered
857 * 15 : 1 --> enable the function "Mute internal speaker
858 * when the external headphone out jack is plugged"
859 */
860 if (!alc_get_hp_pin(spec)) {
861 hda_nid_t nid;
862 tmp = (ass >> 11) & 0x3; /* HP to chassis */
863 nid = ports[tmp];
864 if (found_in_nid_list(nid, spec->gen.autocfg.line_out_pins,
865 spec->gen.autocfg.line_outs))
866 return 1;
867 spec->gen.autocfg.hp_pins[0] = nid;
868 }
869 return 1;
870}
871
872/* Check the validity of ALC subsystem-id
873 * ports contains an array of 4 pin NIDs for port-A, E, D and I */
874static void alc_ssid_check(struct hda_codec *codec, const hda_nid_t *ports)
875{
876 if (!alc_subsystem_id(codec, ports)) {
877 struct alc_spec *spec = codec->spec;
878 if (spec->init_amp == ALC_INIT_UNDEFINED) {
879 codec_dbg(codec,
880 "realtek: Enable default setup for auto mode as fallback\n");
881 spec->init_amp = ALC_INIT_DEFAULT;
882 }
883 }
884}
885
886/*
887 */
888
889static void alc_fixup_inv_dmic(struct hda_codec *codec,
890 const struct hda_fixup *fix, int action)
891{
892 struct alc_spec *spec = codec->spec;
893
894 spec->gen.inv_dmic_split = 1;
895}
896
897
898static int alc_build_controls(struct hda_codec *codec)
899{
900 int err;
901
902 err = snd_hda_gen_build_controls(codec);
903 if (err < 0)
904 return err;
905
906 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_BUILD);
907 return 0;
908}
909
910
911/*
912 * Common callbacks
913 */
914
915static void alc_pre_init(struct hda_codec *codec)
916{
917 alc_fill_eapd_coef(codec);
918}
919
920#define is_s3_resume(codec) \
921 ((codec)->core.dev.power.power_state.event == PM_EVENT_RESUME)
922#define is_s4_resume(codec) \
923 ((codec)->core.dev.power.power_state.event == PM_EVENT_RESTORE)
924
925static int alc_init(struct hda_codec *codec)
926{
927 struct alc_spec *spec = codec->spec;
928
929 /* hibernation resume needs the full chip initialization */
930 if (is_s4_resume(codec))
931 alc_pre_init(codec);
932
933 if (spec->init_hook)
934 spec->init_hook(codec);
935
936 spec->gen.skip_verbs = 1; /* applied in below */
937 snd_hda_gen_init(codec);
938 alc_fix_pll(codec);
939 alc_auto_init_amp(codec, spec->init_amp);
940 snd_hda_apply_verbs(codec); /* apply verbs here after own init */
941
942 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_INIT);
943
944 return 0;
945}
946
947#define alc_free snd_hda_gen_free
948
949#ifdef CONFIG_PM
950static inline void alc_shutup(struct hda_codec *codec)
951{
952 struct alc_spec *spec = codec->spec;
953
954 if (!snd_hda_get_bool_hint(codec, "shutup"))
955 return; /* disabled explicitly by hints */
956
957 if (spec && spec->shutup)
958 spec->shutup(codec);
959 else
960 alc_shutup_pins(codec);
961}
962
963static void alc_power_eapd(struct hda_codec *codec)
964{
965 alc_auto_setup_eapd(codec, false);
966}
967
968static int alc_suspend(struct hda_codec *codec)
969{
970 struct alc_spec *spec = codec->spec;
971 alc_shutup(codec);
972 if (spec && spec->power_hook)
973 spec->power_hook(codec);
974 return 0;
975}
976
977static int alc_resume(struct hda_codec *codec)
978{
979 struct alc_spec *spec = codec->spec;
980
981 if (!spec->no_depop_delay)
982 msleep(150); /* to avoid pop noise */
983 codec->patch_ops.init(codec);
984 snd_hda_regmap_sync(codec);
985 hda_call_check_power_status(codec, 0x01);
986 return 0;
987}
988#endif
989
990/*
991 */
992static const struct hda_codec_ops alc_patch_ops = {
993 .build_controls = alc_build_controls,
994 .build_pcms = snd_hda_gen_build_pcms,
995 .init = alc_init,
996 .free = alc_free,
997 .unsol_event = snd_hda_jack_unsol_event,
998#ifdef CONFIG_PM
999 .resume = alc_resume,
1000 .suspend = alc_suspend,
1001 .check_power_status = snd_hda_gen_check_power_status,
1002#endif
1003};
1004
1005
1006#define alc_codec_rename(codec, name) snd_hda_codec_set_name(codec, name)
1007
1008/*
1009 * Rename codecs appropriately from COEF value or subvendor id
1010 */
1011struct alc_codec_rename_table {
1012 unsigned int vendor_id;
1013 unsigned short coef_mask;
1014 unsigned short coef_bits;
1015 const char *name;
1016};
1017
1018struct alc_codec_rename_pci_table {
1019 unsigned int codec_vendor_id;
1020 unsigned short pci_subvendor;
1021 unsigned short pci_subdevice;
1022 const char *name;
1023};
1024
1025static const struct alc_codec_rename_table rename_tbl[] = {
1026 { 0x10ec0221, 0xf00f, 0x1003, "ALC231" },
1027 { 0x10ec0269, 0xfff0, 0x3010, "ALC277" },
1028 { 0x10ec0269, 0xf0f0, 0x2010, "ALC259" },
1029 { 0x10ec0269, 0xf0f0, 0x3010, "ALC258" },
1030 { 0x10ec0269, 0x00f0, 0x0010, "ALC269VB" },
1031 { 0x10ec0269, 0xffff, 0xa023, "ALC259" },
1032 { 0x10ec0269, 0xffff, 0x6023, "ALC281X" },
1033 { 0x10ec0269, 0x00f0, 0x0020, "ALC269VC" },
1034 { 0x10ec0269, 0x00f0, 0x0030, "ALC269VD" },
1035 { 0x10ec0662, 0xffff, 0x4020, "ALC656" },
1036 { 0x10ec0887, 0x00f0, 0x0030, "ALC887-VD" },
1037 { 0x10ec0888, 0x00f0, 0x0030, "ALC888-VD" },
1038 { 0x10ec0888, 0xf0f0, 0x3020, "ALC886" },
1039 { 0x10ec0899, 0x2000, 0x2000, "ALC899" },
1040 { 0x10ec0892, 0xffff, 0x8020, "ALC661" },
1041 { 0x10ec0892, 0xffff, 0x8011, "ALC661" },
1042 { 0x10ec0892, 0xffff, 0x4011, "ALC656" },
1043 { } /* terminator */
1044};
1045
1046static const struct alc_codec_rename_pci_table rename_pci_tbl[] = {
1047 { 0x10ec0280, 0x1028, 0, "ALC3220" },
1048 { 0x10ec0282, 0x1028, 0, "ALC3221" },
1049 { 0x10ec0283, 0x1028, 0, "ALC3223" },
1050 { 0x10ec0288, 0x1028, 0, "ALC3263" },
1051 { 0x10ec0292, 0x1028, 0, "ALC3226" },
1052 { 0x10ec0293, 0x1028, 0, "ALC3235" },
1053 { 0x10ec0255, 0x1028, 0, "ALC3234" },
1054 { 0x10ec0668, 0x1028, 0, "ALC3661" },
1055 { 0x10ec0275, 0x1028, 0, "ALC3260" },
1056 { 0x10ec0899, 0x1028, 0, "ALC3861" },
1057 { 0x10ec0298, 0x1028, 0, "ALC3266" },
1058 { 0x10ec0236, 0x1028, 0, "ALC3204" },
1059 { 0x10ec0256, 0x1028, 0, "ALC3246" },
1060 { 0x10ec0225, 0x1028, 0, "ALC3253" },
1061 { 0x10ec0295, 0x1028, 0, "ALC3254" },
1062 { 0x10ec0299, 0x1028, 0, "ALC3271" },
1063 { 0x10ec0670, 0x1025, 0, "ALC669X" },
1064 { 0x10ec0676, 0x1025, 0, "ALC679X" },
1065 { 0x10ec0282, 0x1043, 0, "ALC3229" },
1066 { 0x10ec0233, 0x1043, 0, "ALC3236" },
1067 { 0x10ec0280, 0x103c, 0, "ALC3228" },
1068 { 0x10ec0282, 0x103c, 0, "ALC3227" },
1069 { 0x10ec0286, 0x103c, 0, "ALC3242" },
1070 { 0x10ec0290, 0x103c, 0, "ALC3241" },
1071 { 0x10ec0668, 0x103c, 0, "ALC3662" },
1072 { 0x10ec0283, 0x17aa, 0, "ALC3239" },
1073 { 0x10ec0292, 0x17aa, 0, "ALC3232" },
1074 { } /* terminator */
1075};
1076
1077static int alc_codec_rename_from_preset(struct hda_codec *codec)
1078{
1079 const struct alc_codec_rename_table *p;
1080 const struct alc_codec_rename_pci_table *q;
1081
1082 for (p = rename_tbl; p->vendor_id; p++) {
1083 if (p->vendor_id != codec->core.vendor_id)
1084 continue;
1085 if ((alc_get_coef0(codec) & p->coef_mask) == p->coef_bits)
1086 return alc_codec_rename(codec, p->name);
1087 }
1088
1089 if (!codec->bus->pci)
1090 return 0;
1091 for (q = rename_pci_tbl; q->codec_vendor_id; q++) {
1092 if (q->codec_vendor_id != codec->core.vendor_id)
1093 continue;
1094 if (q->pci_subvendor != codec->bus->pci->subsystem_vendor)
1095 continue;
1096 if (!q->pci_subdevice ||
1097 q->pci_subdevice == codec->bus->pci->subsystem_device)
1098 return alc_codec_rename(codec, q->name);
1099 }
1100
1101 return 0;
1102}
1103
1104
1105/*
1106 * Digital-beep handlers
1107 */
1108#ifdef CONFIG_SND_HDA_INPUT_BEEP
1109
1110/* additional beep mixers; private_value will be overwritten */
1111static const struct snd_kcontrol_new alc_beep_mixer[] = {
1112 HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT),
1113 HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_INPUT),
1114};
1115
1116/* set up and create beep controls */
1117static int set_beep_amp(struct alc_spec *spec, hda_nid_t nid,
1118 int idx, int dir)
1119{
1120 struct snd_kcontrol_new *knew;
1121 unsigned int beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir);
1122 int i;
1123
1124 for (i = 0; i < ARRAY_SIZE(alc_beep_mixer); i++) {
1125 knew = snd_hda_gen_add_kctl(&spec->gen, NULL,
1126 &alc_beep_mixer[i]);
1127 if (!knew)
1128 return -ENOMEM;
1129 knew->private_value = beep_amp;
1130 }
1131 return 0;
1132}
1133
1134static const struct snd_pci_quirk beep_allow_list[] = {
1135 SND_PCI_QUIRK(0x1043, 0x103c, "ASUS", 1),
1136 SND_PCI_QUIRK(0x1043, 0x115d, "ASUS", 1),
1137 SND_PCI_QUIRK(0x1043, 0x829f, "ASUS", 1),
1138 SND_PCI_QUIRK(0x1043, 0x8376, "EeePC", 1),
1139 SND_PCI_QUIRK(0x1043, 0x83ce, "EeePC", 1),
1140 SND_PCI_QUIRK(0x1043, 0x831a, "EeePC", 1),
1141 SND_PCI_QUIRK(0x1043, 0x834a, "EeePC", 1),
1142 SND_PCI_QUIRK(0x1458, 0xa002, "GA-MA790X", 1),
1143 SND_PCI_QUIRK(0x8086, 0xd613, "Intel", 1),
1144 /* denylist -- no beep available */
1145 SND_PCI_QUIRK(0x17aa, 0x309e, "Lenovo ThinkCentre M73", 0),
1146 SND_PCI_QUIRK(0x17aa, 0x30a3, "Lenovo ThinkCentre M93", 0),
1147 {}
1148};
1149
1150static inline int has_cdefine_beep(struct hda_codec *codec)
1151{
1152 struct alc_spec *spec = codec->spec;
1153 const struct snd_pci_quirk *q;
1154 q = snd_pci_quirk_lookup(codec->bus->pci, beep_allow_list);
1155 if (q)
1156 return q->value;
1157 return spec->cdefine.enable_pcbeep;
1158}
1159#else
1160#define set_beep_amp(spec, nid, idx, dir) 0
1161#define has_cdefine_beep(codec) 0
1162#endif
1163
1164/* parse the BIOS configuration and set up the alc_spec */
1165/* return 1 if successful, 0 if the proper config is not found,
1166 * or a negative error code
1167 */
1168static int alc_parse_auto_config(struct hda_codec *codec,
1169 const hda_nid_t *ignore_nids,
1170 const hda_nid_t *ssid_nids)
1171{
1172 struct alc_spec *spec = codec->spec;
1173 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
1174 int err;
1175
1176 err = snd_hda_parse_pin_defcfg(codec, cfg, ignore_nids,
1177 spec->parse_flags);
1178 if (err < 0)
1179 return err;
1180
1181 if (ssid_nids)
1182 alc_ssid_check(codec, ssid_nids);
1183
1184 err = snd_hda_gen_parse_auto_config(codec, cfg);
1185 if (err < 0)
1186 return err;
1187
1188 return 1;
1189}
1190
1191/* common preparation job for alc_spec */
1192static int alc_alloc_spec(struct hda_codec *codec, hda_nid_t mixer_nid)
1193{
1194 struct alc_spec *spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1195 int err;
1196
1197 if (!spec)
1198 return -ENOMEM;
1199 codec->spec = spec;
1200 snd_hda_gen_spec_init(&spec->gen);
1201 spec->gen.mixer_nid = mixer_nid;
1202 spec->gen.own_eapd_ctl = 1;
1203 codec->single_adc_amp = 1;
1204 /* FIXME: do we need this for all Realtek codec models? */
1205 codec->spdif_status_reset = 1;
1206 codec->forced_resume = 1;
1207 codec->patch_ops = alc_patch_ops;
1208 mutex_init(&spec->coef_mutex);
1209
1210 err = alc_codec_rename_from_preset(codec);
1211 if (err < 0) {
1212 kfree(spec);
1213 return err;
1214 }
1215 return 0;
1216}
1217
1218static int alc880_parse_auto_config(struct hda_codec *codec)
1219{
1220 static const hda_nid_t alc880_ignore[] = { 0x1d, 0 };
1221 static const hda_nid_t alc880_ssids[] = { 0x15, 0x1b, 0x14, 0 };
1222 return alc_parse_auto_config(codec, alc880_ignore, alc880_ssids);
1223}
1224
1225/*
1226 * ALC880 fix-ups
1227 */
1228enum {
1229 ALC880_FIXUP_GPIO1,
1230 ALC880_FIXUP_GPIO2,
1231 ALC880_FIXUP_MEDION_RIM,
1232 ALC880_FIXUP_LG,
1233 ALC880_FIXUP_LG_LW25,
1234 ALC880_FIXUP_W810,
1235 ALC880_FIXUP_EAPD_COEF,
1236 ALC880_FIXUP_TCL_S700,
1237 ALC880_FIXUP_VOL_KNOB,
1238 ALC880_FIXUP_FUJITSU,
1239 ALC880_FIXUP_F1734,
1240 ALC880_FIXUP_UNIWILL,
1241 ALC880_FIXUP_UNIWILL_DIG,
1242 ALC880_FIXUP_Z71V,
1243 ALC880_FIXUP_ASUS_W5A,
1244 ALC880_FIXUP_3ST_BASE,
1245 ALC880_FIXUP_3ST,
1246 ALC880_FIXUP_3ST_DIG,
1247 ALC880_FIXUP_5ST_BASE,
1248 ALC880_FIXUP_5ST,
1249 ALC880_FIXUP_5ST_DIG,
1250 ALC880_FIXUP_6ST_BASE,
1251 ALC880_FIXUP_6ST,
1252 ALC880_FIXUP_6ST_DIG,
1253 ALC880_FIXUP_6ST_AUTOMUTE,
1254};
1255
1256/* enable the volume-knob widget support on NID 0x21 */
1257static void alc880_fixup_vol_knob(struct hda_codec *codec,
1258 const struct hda_fixup *fix, int action)
1259{
1260 if (action == HDA_FIXUP_ACT_PROBE)
1261 snd_hda_jack_detect_enable_callback(codec, 0x21,
1262 alc_update_knob_master);
1263}
1264
1265static const struct hda_fixup alc880_fixups[] = {
1266 [ALC880_FIXUP_GPIO1] = {
1267 .type = HDA_FIXUP_FUNC,
1268 .v.func = alc_fixup_gpio1,
1269 },
1270 [ALC880_FIXUP_GPIO2] = {
1271 .type = HDA_FIXUP_FUNC,
1272 .v.func = alc_fixup_gpio2,
1273 },
1274 [ALC880_FIXUP_MEDION_RIM] = {
1275 .type = HDA_FIXUP_VERBS,
1276 .v.verbs = (const struct hda_verb[]) {
1277 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1278 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
1279 { }
1280 },
1281 .chained = true,
1282 .chain_id = ALC880_FIXUP_GPIO2,
1283 },
1284 [ALC880_FIXUP_LG] = {
1285 .type = HDA_FIXUP_PINS,
1286 .v.pins = (const struct hda_pintbl[]) {
1287 /* disable bogus unused pins */
1288 { 0x16, 0x411111f0 },
1289 { 0x18, 0x411111f0 },
1290 { 0x1a, 0x411111f0 },
1291 { }
1292 }
1293 },
1294 [ALC880_FIXUP_LG_LW25] = {
1295 .type = HDA_FIXUP_PINS,
1296 .v.pins = (const struct hda_pintbl[]) {
1297 { 0x1a, 0x0181344f }, /* line-in */
1298 { 0x1b, 0x0321403f }, /* headphone */
1299 { }
1300 }
1301 },
1302 [ALC880_FIXUP_W810] = {
1303 .type = HDA_FIXUP_PINS,
1304 .v.pins = (const struct hda_pintbl[]) {
1305 /* disable bogus unused pins */
1306 { 0x17, 0x411111f0 },
1307 { }
1308 },
1309 .chained = true,
1310 .chain_id = ALC880_FIXUP_GPIO2,
1311 },
1312 [ALC880_FIXUP_EAPD_COEF] = {
1313 .type = HDA_FIXUP_VERBS,
1314 .v.verbs = (const struct hda_verb[]) {
1315 /* change to EAPD mode */
1316 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1317 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
1318 {}
1319 },
1320 },
1321 [ALC880_FIXUP_TCL_S700] = {
1322 .type = HDA_FIXUP_VERBS,
1323 .v.verbs = (const struct hda_verb[]) {
1324 /* change to EAPD mode */
1325 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1326 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
1327 {}
1328 },
1329 .chained = true,
1330 .chain_id = ALC880_FIXUP_GPIO2,
1331 },
1332 [ALC880_FIXUP_VOL_KNOB] = {
1333 .type = HDA_FIXUP_FUNC,
1334 .v.func = alc880_fixup_vol_knob,
1335 },
1336 [ALC880_FIXUP_FUJITSU] = {
1337 /* override all pins as BIOS on old Amilo is broken */
1338 .type = HDA_FIXUP_PINS,
1339 .v.pins = (const struct hda_pintbl[]) {
1340 { 0x14, 0x0121401f }, /* HP */
1341 { 0x15, 0x99030120 }, /* speaker */
1342 { 0x16, 0x99030130 }, /* bass speaker */
1343 { 0x17, 0x411111f0 }, /* N/A */
1344 { 0x18, 0x411111f0 }, /* N/A */
1345 { 0x19, 0x01a19950 }, /* mic-in */
1346 { 0x1a, 0x411111f0 }, /* N/A */
1347 { 0x1b, 0x411111f0 }, /* N/A */
1348 { 0x1c, 0x411111f0 }, /* N/A */
1349 { 0x1d, 0x411111f0 }, /* N/A */
1350 { 0x1e, 0x01454140 }, /* SPDIF out */
1351 { }
1352 },
1353 .chained = true,
1354 .chain_id = ALC880_FIXUP_VOL_KNOB,
1355 },
1356 [ALC880_FIXUP_F1734] = {
1357 /* almost compatible with FUJITSU, but no bass and SPDIF */
1358 .type = HDA_FIXUP_PINS,
1359 .v.pins = (const struct hda_pintbl[]) {
1360 { 0x14, 0x0121401f }, /* HP */
1361 { 0x15, 0x99030120 }, /* speaker */
1362 { 0x16, 0x411111f0 }, /* N/A */
1363 { 0x17, 0x411111f0 }, /* N/A */
1364 { 0x18, 0x411111f0 }, /* N/A */
1365 { 0x19, 0x01a19950 }, /* mic-in */
1366 { 0x1a, 0x411111f0 }, /* N/A */
1367 { 0x1b, 0x411111f0 }, /* N/A */
1368 { 0x1c, 0x411111f0 }, /* N/A */
1369 { 0x1d, 0x411111f0 }, /* N/A */
1370 { 0x1e, 0x411111f0 }, /* N/A */
1371 { }
1372 },
1373 .chained = true,
1374 .chain_id = ALC880_FIXUP_VOL_KNOB,
1375 },
1376 [ALC880_FIXUP_UNIWILL] = {
1377 /* need to fix HP and speaker pins to be parsed correctly */
1378 .type = HDA_FIXUP_PINS,
1379 .v.pins = (const struct hda_pintbl[]) {
1380 { 0x14, 0x0121411f }, /* HP */
1381 { 0x15, 0x99030120 }, /* speaker */
1382 { 0x16, 0x99030130 }, /* bass speaker */
1383 { }
1384 },
1385 },
1386 [ALC880_FIXUP_UNIWILL_DIG] = {
1387 .type = HDA_FIXUP_PINS,
1388 .v.pins = (const struct hda_pintbl[]) {
1389 /* disable bogus unused pins */
1390 { 0x17, 0x411111f0 },
1391 { 0x19, 0x411111f0 },
1392 { 0x1b, 0x411111f0 },
1393 { 0x1f, 0x411111f0 },
1394 { }
1395 }
1396 },
1397 [ALC880_FIXUP_Z71V] = {
1398 .type = HDA_FIXUP_PINS,
1399 .v.pins = (const struct hda_pintbl[]) {
1400 /* set up the whole pins as BIOS is utterly broken */
1401 { 0x14, 0x99030120 }, /* speaker */
1402 { 0x15, 0x0121411f }, /* HP */
1403 { 0x16, 0x411111f0 }, /* N/A */
1404 { 0x17, 0x411111f0 }, /* N/A */
1405 { 0x18, 0x01a19950 }, /* mic-in */
1406 { 0x19, 0x411111f0 }, /* N/A */
1407 { 0x1a, 0x01813031 }, /* line-in */
1408 { 0x1b, 0x411111f0 }, /* N/A */
1409 { 0x1c, 0x411111f0 }, /* N/A */
1410 { 0x1d, 0x411111f0 }, /* N/A */
1411 { 0x1e, 0x0144111e }, /* SPDIF */
1412 { }
1413 }
1414 },
1415 [ALC880_FIXUP_ASUS_W5A] = {
1416 .type = HDA_FIXUP_PINS,
1417 .v.pins = (const struct hda_pintbl[]) {
1418 /* set up the whole pins as BIOS is utterly broken */
1419 { 0x14, 0x0121411f }, /* HP */
1420 { 0x15, 0x411111f0 }, /* N/A */
1421 { 0x16, 0x411111f0 }, /* N/A */
1422 { 0x17, 0x411111f0 }, /* N/A */
1423 { 0x18, 0x90a60160 }, /* mic */
1424 { 0x19, 0x411111f0 }, /* N/A */
1425 { 0x1a, 0x411111f0 }, /* N/A */
1426 { 0x1b, 0x411111f0 }, /* N/A */
1427 { 0x1c, 0x411111f0 }, /* N/A */
1428 { 0x1d, 0x411111f0 }, /* N/A */
1429 { 0x1e, 0xb743111e }, /* SPDIF out */
1430 { }
1431 },
1432 .chained = true,
1433 .chain_id = ALC880_FIXUP_GPIO1,
1434 },
1435 [ALC880_FIXUP_3ST_BASE] = {
1436 .type = HDA_FIXUP_PINS,
1437 .v.pins = (const struct hda_pintbl[]) {
1438 { 0x14, 0x01014010 }, /* line-out */
1439 { 0x15, 0x411111f0 }, /* N/A */
1440 { 0x16, 0x411111f0 }, /* N/A */
1441 { 0x17, 0x411111f0 }, /* N/A */
1442 { 0x18, 0x01a19c30 }, /* mic-in */
1443 { 0x19, 0x0121411f }, /* HP */
1444 { 0x1a, 0x01813031 }, /* line-in */
1445 { 0x1b, 0x02a19c40 }, /* front-mic */
1446 { 0x1c, 0x411111f0 }, /* N/A */
1447 { 0x1d, 0x411111f0 }, /* N/A */
1448 /* 0x1e is filled in below */
1449 { 0x1f, 0x411111f0 }, /* N/A */
1450 { }
1451 }
1452 },
1453 [ALC880_FIXUP_3ST] = {
1454 .type = HDA_FIXUP_PINS,
1455 .v.pins = (const struct hda_pintbl[]) {
1456 { 0x1e, 0x411111f0 }, /* N/A */
1457 { }
1458 },
1459 .chained = true,
1460 .chain_id = ALC880_FIXUP_3ST_BASE,
1461 },
1462 [ALC880_FIXUP_3ST_DIG] = {
1463 .type = HDA_FIXUP_PINS,
1464 .v.pins = (const struct hda_pintbl[]) {
1465 { 0x1e, 0x0144111e }, /* SPDIF */
1466 { }
1467 },
1468 .chained = true,
1469 .chain_id = ALC880_FIXUP_3ST_BASE,
1470 },
1471 [ALC880_FIXUP_5ST_BASE] = {
1472 .type = HDA_FIXUP_PINS,
1473 .v.pins = (const struct hda_pintbl[]) {
1474 { 0x14, 0x01014010 }, /* front */
1475 { 0x15, 0x411111f0 }, /* N/A */
1476 { 0x16, 0x01011411 }, /* CLFE */
1477 { 0x17, 0x01016412 }, /* surr */
1478 { 0x18, 0x01a19c30 }, /* mic-in */
1479 { 0x19, 0x0121411f }, /* HP */
1480 { 0x1a, 0x01813031 }, /* line-in */
1481 { 0x1b, 0x02a19c40 }, /* front-mic */
1482 { 0x1c, 0x411111f0 }, /* N/A */
1483 { 0x1d, 0x411111f0 }, /* N/A */
1484 /* 0x1e is filled in below */
1485 { 0x1f, 0x411111f0 }, /* N/A */
1486 { }
1487 }
1488 },
1489 [ALC880_FIXUP_5ST] = {
1490 .type = HDA_FIXUP_PINS,
1491 .v.pins = (const struct hda_pintbl[]) {
1492 { 0x1e, 0x411111f0 }, /* N/A */
1493 { }
1494 },
1495 .chained = true,
1496 .chain_id = ALC880_FIXUP_5ST_BASE,
1497 },
1498 [ALC880_FIXUP_5ST_DIG] = {
1499 .type = HDA_FIXUP_PINS,
1500 .v.pins = (const struct hda_pintbl[]) {
1501 { 0x1e, 0x0144111e }, /* SPDIF */
1502 { }
1503 },
1504 .chained = true,
1505 .chain_id = ALC880_FIXUP_5ST_BASE,
1506 },
1507 [ALC880_FIXUP_6ST_BASE] = {
1508 .type = HDA_FIXUP_PINS,
1509 .v.pins = (const struct hda_pintbl[]) {
1510 { 0x14, 0x01014010 }, /* front */
1511 { 0x15, 0x01016412 }, /* surr */
1512 { 0x16, 0x01011411 }, /* CLFE */
1513 { 0x17, 0x01012414 }, /* side */
1514 { 0x18, 0x01a19c30 }, /* mic-in */
1515 { 0x19, 0x02a19c40 }, /* front-mic */
1516 { 0x1a, 0x01813031 }, /* line-in */
1517 { 0x1b, 0x0121411f }, /* HP */
1518 { 0x1c, 0x411111f0 }, /* N/A */
1519 { 0x1d, 0x411111f0 }, /* N/A */
1520 /* 0x1e is filled in below */
1521 { 0x1f, 0x411111f0 }, /* N/A */
1522 { }
1523 }
1524 },
1525 [ALC880_FIXUP_6ST] = {
1526 .type = HDA_FIXUP_PINS,
1527 .v.pins = (const struct hda_pintbl[]) {
1528 { 0x1e, 0x411111f0 }, /* N/A */
1529 { }
1530 },
1531 .chained = true,
1532 .chain_id = ALC880_FIXUP_6ST_BASE,
1533 },
1534 [ALC880_FIXUP_6ST_DIG] = {
1535 .type = HDA_FIXUP_PINS,
1536 .v.pins = (const struct hda_pintbl[]) {
1537 { 0x1e, 0x0144111e }, /* SPDIF */
1538 { }
1539 },
1540 .chained = true,
1541 .chain_id = ALC880_FIXUP_6ST_BASE,
1542 },
1543 [ALC880_FIXUP_6ST_AUTOMUTE] = {
1544 .type = HDA_FIXUP_PINS,
1545 .v.pins = (const struct hda_pintbl[]) {
1546 { 0x1b, 0x0121401f }, /* HP with jack detect */
1547 { }
1548 },
1549 .chained_before = true,
1550 .chain_id = ALC880_FIXUP_6ST_BASE,
1551 },
1552};
1553
1554static const struct snd_pci_quirk alc880_fixup_tbl[] = {
1555 SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_FIXUP_W810),
1556 SND_PCI_QUIRK(0x1043, 0x10c3, "ASUS W5A", ALC880_FIXUP_ASUS_W5A),
1557 SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_FIXUP_Z71V),
1558 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS", ALC880_FIXUP_GPIO1),
1559 SND_PCI_QUIRK(0x147b, 0x1045, "ABit AA8XE", ALC880_FIXUP_6ST_AUTOMUTE),
1560 SND_PCI_QUIRK(0x1558, 0x5401, "Clevo GPIO2", ALC880_FIXUP_GPIO2),
1561 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo", ALC880_FIXUP_EAPD_COEF),
1562 SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_FIXUP_UNIWILL_DIG),
1563 SND_PCI_QUIRK(0x1584, 0x9054, "Uniwill", ALC880_FIXUP_F1734),
1564 SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_FIXUP_UNIWILL),
1565 SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_FIXUP_VOL_KNOB),
1566 SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_FIXUP_W810),
1567 SND_PCI_QUIRK(0x161f, 0x205d, "Medion Rim 2150", ALC880_FIXUP_MEDION_RIM),
1568 SND_PCI_QUIRK(0x1631, 0xe011, "PB 13201056", ALC880_FIXUP_6ST_AUTOMUTE),
1569 SND_PCI_QUIRK(0x1734, 0x107c, "FSC Amilo M1437", ALC880_FIXUP_FUJITSU),
1570 SND_PCI_QUIRK(0x1734, 0x1094, "FSC Amilo M1451G", ALC880_FIXUP_FUJITSU),
1571 SND_PCI_QUIRK(0x1734, 0x10ac, "FSC AMILO Xi 1526", ALC880_FIXUP_F1734),
1572 SND_PCI_QUIRK(0x1734, 0x10b0, "FSC Amilo Pi1556", ALC880_FIXUP_FUJITSU),
1573 SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_FIXUP_LG),
1574 SND_PCI_QUIRK(0x1854, 0x005f, "LG P1 Express", ALC880_FIXUP_LG),
1575 SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_FIXUP_LG),
1576 SND_PCI_QUIRK(0x1854, 0x0077, "LG LW25", ALC880_FIXUP_LG_LW25),
1577 SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_FIXUP_TCL_S700),
1578
1579 /* Below is the copied entries from alc880_quirks.c.
1580 * It's not quite sure whether BIOS sets the correct pin-config table
1581 * on these machines, thus they are kept to be compatible with
1582 * the old static quirks. Once when it's confirmed to work without
1583 * these overrides, it'd be better to remove.
1584 */
1585 SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_FIXUP_5ST_DIG),
1586 SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_FIXUP_6ST),
1587 SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_FIXUP_3ST_DIG),
1588 SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_FIXUP_6ST_DIG),
1589 SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_FIXUP_6ST_DIG),
1590 SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_FIXUP_6ST_DIG),
1591 SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_FIXUP_3ST_DIG),
1592 SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_FIXUP_3ST),
1593 SND_PCI_QUIRK(0x1039, 0x1234, NULL, ALC880_FIXUP_6ST_DIG),
1594 SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_FIXUP_3ST),
1595 SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_FIXUP_3ST),
1596 SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_FIXUP_5ST),
1597 SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_FIXUP_5ST),
1598 SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_FIXUP_5ST),
1599 SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_FIXUP_6ST_DIG),
1600 SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_FIXUP_6ST_DIG),
1601 SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_FIXUP_6ST_DIG),
1602 SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_FIXUP_6ST_DIG),
1603 SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_FIXUP_5ST_DIG),
1604 SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_FIXUP_5ST_DIG),
1605 SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_FIXUP_5ST_DIG),
1606 SND_PCI_QUIRK(0x2668, 0x8086, NULL, ALC880_FIXUP_6ST_DIG), /* broken BIOS */
1607 SND_PCI_QUIRK(0x8086, 0x2668, NULL, ALC880_FIXUP_6ST_DIG),
1608 SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1609 SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1610 SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1611 SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1612 SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1613 SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1614 SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1615 SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1616 SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1617 SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1618 /* default Intel */
1619 SND_PCI_QUIRK_VENDOR(0x8086, "Intel mobo", ALC880_FIXUP_3ST),
1620 SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_FIXUP_5ST_DIG),
1621 SND_PCI_QUIRK(0xe803, 0x1019, NULL, ALC880_FIXUP_6ST_DIG),
1622 {}
1623};
1624
1625static const struct hda_model_fixup alc880_fixup_models[] = {
1626 {.id = ALC880_FIXUP_3ST, .name = "3stack"},
1627 {.id = ALC880_FIXUP_3ST_DIG, .name = "3stack-digout"},
1628 {.id = ALC880_FIXUP_5ST, .name = "5stack"},
1629 {.id = ALC880_FIXUP_5ST_DIG, .name = "5stack-digout"},
1630 {.id = ALC880_FIXUP_6ST, .name = "6stack"},
1631 {.id = ALC880_FIXUP_6ST_DIG, .name = "6stack-digout"},
1632 {.id = ALC880_FIXUP_6ST_AUTOMUTE, .name = "6stack-automute"},
1633 {}
1634};
1635
1636
1637/*
1638 * OK, here we have finally the patch for ALC880
1639 */
1640static int patch_alc880(struct hda_codec *codec)
1641{
1642 struct alc_spec *spec;
1643 int err;
1644
1645 err = alc_alloc_spec(codec, 0x0b);
1646 if (err < 0)
1647 return err;
1648
1649 spec = codec->spec;
1650 spec->gen.need_dac_fix = 1;
1651 spec->gen.beep_nid = 0x01;
1652
1653 codec->patch_ops.unsol_event = alc880_unsol_event;
1654
1655 alc_pre_init(codec);
1656
1657 snd_hda_pick_fixup(codec, alc880_fixup_models, alc880_fixup_tbl,
1658 alc880_fixups);
1659 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
1660
1661 /* automatic parse from the BIOS config */
1662 err = alc880_parse_auto_config(codec);
1663 if (err < 0)
1664 goto error;
1665
1666 if (!spec->gen.no_analog) {
1667 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
1668 if (err < 0)
1669 goto error;
1670 }
1671
1672 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
1673
1674 return 0;
1675
1676 error:
1677 alc_free(codec);
1678 return err;
1679}
1680
1681
1682/*
1683 * ALC260 support
1684 */
1685static int alc260_parse_auto_config(struct hda_codec *codec)
1686{
1687 static const hda_nid_t alc260_ignore[] = { 0x17, 0 };
1688 static const hda_nid_t alc260_ssids[] = { 0x10, 0x15, 0x0f, 0 };
1689 return alc_parse_auto_config(codec, alc260_ignore, alc260_ssids);
1690}
1691
1692/*
1693 * Pin config fixes
1694 */
1695enum {
1696 ALC260_FIXUP_HP_DC5750,
1697 ALC260_FIXUP_HP_PIN_0F,
1698 ALC260_FIXUP_COEF,
1699 ALC260_FIXUP_GPIO1,
1700 ALC260_FIXUP_GPIO1_TOGGLE,
1701 ALC260_FIXUP_REPLACER,
1702 ALC260_FIXUP_HP_B1900,
1703 ALC260_FIXUP_KN1,
1704 ALC260_FIXUP_FSC_S7020,
1705 ALC260_FIXUP_FSC_S7020_JWSE,
1706 ALC260_FIXUP_VAIO_PINS,
1707};
1708
1709static void alc260_gpio1_automute(struct hda_codec *codec)
1710{
1711 struct alc_spec *spec = codec->spec;
1712
1713 alc_update_gpio_data(codec, 0x01, spec->gen.hp_jack_present);
1714}
1715
1716static void alc260_fixup_gpio1_toggle(struct hda_codec *codec,
1717 const struct hda_fixup *fix, int action)
1718{
1719 struct alc_spec *spec = codec->spec;
1720 if (action == HDA_FIXUP_ACT_PROBE) {
1721 /* although the machine has only one output pin, we need to
1722 * toggle GPIO1 according to the jack state
1723 */
1724 spec->gen.automute_hook = alc260_gpio1_automute;
1725 spec->gen.detect_hp = 1;
1726 spec->gen.automute_speaker = 1;
1727 spec->gen.autocfg.hp_pins[0] = 0x0f; /* copy it for automute */
1728 snd_hda_jack_detect_enable_callback(codec, 0x0f,
1729 snd_hda_gen_hp_automute);
1730 alc_setup_gpio(codec, 0x01);
1731 }
1732}
1733
1734static void alc260_fixup_kn1(struct hda_codec *codec,
1735 const struct hda_fixup *fix, int action)
1736{
1737 struct alc_spec *spec = codec->spec;
1738 static const struct hda_pintbl pincfgs[] = {
1739 { 0x0f, 0x02214000 }, /* HP/speaker */
1740 { 0x12, 0x90a60160 }, /* int mic */
1741 { 0x13, 0x02a19000 }, /* ext mic */
1742 { 0x18, 0x01446000 }, /* SPDIF out */
1743 /* disable bogus I/O pins */
1744 { 0x10, 0x411111f0 },
1745 { 0x11, 0x411111f0 },
1746 { 0x14, 0x411111f0 },
1747 { 0x15, 0x411111f0 },
1748 { 0x16, 0x411111f0 },
1749 { 0x17, 0x411111f0 },
1750 { 0x19, 0x411111f0 },
1751 { }
1752 };
1753
1754 switch (action) {
1755 case HDA_FIXUP_ACT_PRE_PROBE:
1756 snd_hda_apply_pincfgs(codec, pincfgs);
1757 spec->init_amp = ALC_INIT_NONE;
1758 break;
1759 }
1760}
1761
1762static void alc260_fixup_fsc_s7020(struct hda_codec *codec,
1763 const struct hda_fixup *fix, int action)
1764{
1765 struct alc_spec *spec = codec->spec;
1766 if (action == HDA_FIXUP_ACT_PRE_PROBE)
1767 spec->init_amp = ALC_INIT_NONE;
1768}
1769
1770static void alc260_fixup_fsc_s7020_jwse(struct hda_codec *codec,
1771 const struct hda_fixup *fix, int action)
1772{
1773 struct alc_spec *spec = codec->spec;
1774 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
1775 spec->gen.add_jack_modes = 1;
1776 spec->gen.hp_mic = 1;
1777 }
1778}
1779
1780static const struct hda_fixup alc260_fixups[] = {
1781 [ALC260_FIXUP_HP_DC5750] = {
1782 .type = HDA_FIXUP_PINS,
1783 .v.pins = (const struct hda_pintbl[]) {
1784 { 0x11, 0x90130110 }, /* speaker */
1785 { }
1786 }
1787 },
1788 [ALC260_FIXUP_HP_PIN_0F] = {
1789 .type = HDA_FIXUP_PINS,
1790 .v.pins = (const struct hda_pintbl[]) {
1791 { 0x0f, 0x01214000 }, /* HP */
1792 { }
1793 }
1794 },
1795 [ALC260_FIXUP_COEF] = {
1796 .type = HDA_FIXUP_VERBS,
1797 .v.verbs = (const struct hda_verb[]) {
1798 { 0x1a, AC_VERB_SET_COEF_INDEX, 0x07 },
1799 { 0x1a, AC_VERB_SET_PROC_COEF, 0x3040 },
1800 { }
1801 },
1802 },
1803 [ALC260_FIXUP_GPIO1] = {
1804 .type = HDA_FIXUP_FUNC,
1805 .v.func = alc_fixup_gpio1,
1806 },
1807 [ALC260_FIXUP_GPIO1_TOGGLE] = {
1808 .type = HDA_FIXUP_FUNC,
1809 .v.func = alc260_fixup_gpio1_toggle,
1810 .chained = true,
1811 .chain_id = ALC260_FIXUP_HP_PIN_0F,
1812 },
1813 [ALC260_FIXUP_REPLACER] = {
1814 .type = HDA_FIXUP_VERBS,
1815 .v.verbs = (const struct hda_verb[]) {
1816 { 0x1a, AC_VERB_SET_COEF_INDEX, 0x07 },
1817 { 0x1a, AC_VERB_SET_PROC_COEF, 0x3050 },
1818 { }
1819 },
1820 .chained = true,
1821 .chain_id = ALC260_FIXUP_GPIO1_TOGGLE,
1822 },
1823 [ALC260_FIXUP_HP_B1900] = {
1824 .type = HDA_FIXUP_FUNC,
1825 .v.func = alc260_fixup_gpio1_toggle,
1826 .chained = true,
1827 .chain_id = ALC260_FIXUP_COEF,
1828 },
1829 [ALC260_FIXUP_KN1] = {
1830 .type = HDA_FIXUP_FUNC,
1831 .v.func = alc260_fixup_kn1,
1832 },
1833 [ALC260_FIXUP_FSC_S7020] = {
1834 .type = HDA_FIXUP_FUNC,
1835 .v.func = alc260_fixup_fsc_s7020,
1836 },
1837 [ALC260_FIXUP_FSC_S7020_JWSE] = {
1838 .type = HDA_FIXUP_FUNC,
1839 .v.func = alc260_fixup_fsc_s7020_jwse,
1840 .chained = true,
1841 .chain_id = ALC260_FIXUP_FSC_S7020,
1842 },
1843 [ALC260_FIXUP_VAIO_PINS] = {
1844 .type = HDA_FIXUP_PINS,
1845 .v.pins = (const struct hda_pintbl[]) {
1846 /* Pin configs are missing completely on some VAIOs */
1847 { 0x0f, 0x01211020 },
1848 { 0x10, 0x0001003f },
1849 { 0x11, 0x411111f0 },
1850 { 0x12, 0x01a15930 },
1851 { 0x13, 0x411111f0 },
1852 { 0x14, 0x411111f0 },
1853 { 0x15, 0x411111f0 },
1854 { 0x16, 0x411111f0 },
1855 { 0x17, 0x411111f0 },
1856 { 0x18, 0x411111f0 },
1857 { 0x19, 0x411111f0 },
1858 { }
1859 }
1860 },
1861};
1862
1863static const struct snd_pci_quirk alc260_fixup_tbl[] = {
1864 SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_FIXUP_GPIO1),
1865 SND_PCI_QUIRK(0x1025, 0x007f, "Acer Aspire 9500", ALC260_FIXUP_COEF),
1866 SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_FIXUP_GPIO1),
1867 SND_PCI_QUIRK(0x103c, 0x280a, "HP dc5750", ALC260_FIXUP_HP_DC5750),
1868 SND_PCI_QUIRK(0x103c, 0x30ba, "HP Presario B1900", ALC260_FIXUP_HP_B1900),
1869 SND_PCI_QUIRK(0x104d, 0x81bb, "Sony VAIO", ALC260_FIXUP_VAIO_PINS),
1870 SND_PCI_QUIRK(0x104d, 0x81e2, "Sony VAIO TX", ALC260_FIXUP_HP_PIN_0F),
1871 SND_PCI_QUIRK(0x10cf, 0x1326, "FSC LifeBook S7020", ALC260_FIXUP_FSC_S7020),
1872 SND_PCI_QUIRK(0x1509, 0x4540, "Favorit 100XS", ALC260_FIXUP_GPIO1),
1873 SND_PCI_QUIRK(0x152d, 0x0729, "Quanta KN1", ALC260_FIXUP_KN1),
1874 SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_FIXUP_REPLACER),
1875 SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_FIXUP_COEF),
1876 {}
1877};
1878
1879static const struct hda_model_fixup alc260_fixup_models[] = {
1880 {.id = ALC260_FIXUP_GPIO1, .name = "gpio1"},
1881 {.id = ALC260_FIXUP_COEF, .name = "coef"},
1882 {.id = ALC260_FIXUP_FSC_S7020, .name = "fujitsu"},
1883 {.id = ALC260_FIXUP_FSC_S7020_JWSE, .name = "fujitsu-jwse"},
1884 {}
1885};
1886
1887/*
1888 */
1889static int patch_alc260(struct hda_codec *codec)
1890{
1891 struct alc_spec *spec;
1892 int err;
1893
1894 err = alc_alloc_spec(codec, 0x07);
1895 if (err < 0)
1896 return err;
1897
1898 spec = codec->spec;
1899 /* as quite a few machines require HP amp for speaker outputs,
1900 * it's easier to enable it unconditionally; even if it's unneeded,
1901 * it's almost harmless.
1902 */
1903 spec->gen.prefer_hp_amp = 1;
1904 spec->gen.beep_nid = 0x01;
1905
1906 spec->shutup = alc_eapd_shutup;
1907
1908 alc_pre_init(codec);
1909
1910 snd_hda_pick_fixup(codec, alc260_fixup_models, alc260_fixup_tbl,
1911 alc260_fixups);
1912 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
1913
1914 /* automatic parse from the BIOS config */
1915 err = alc260_parse_auto_config(codec);
1916 if (err < 0)
1917 goto error;
1918
1919 if (!spec->gen.no_analog) {
1920 err = set_beep_amp(spec, 0x07, 0x05, HDA_INPUT);
1921 if (err < 0)
1922 goto error;
1923 }
1924
1925 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
1926
1927 return 0;
1928
1929 error:
1930 alc_free(codec);
1931 return err;
1932}
1933
1934
1935/*
1936 * ALC882/883/885/888/889 support
1937 *
1938 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
1939 * configuration. Each pin widget can choose any input DACs and a mixer.
1940 * Each ADC is connected from a mixer of all inputs. This makes possible
1941 * 6-channel independent captures.
1942 *
1943 * In addition, an independent DAC for the multi-playback (not used in this
1944 * driver yet).
1945 */
1946
1947/*
1948 * Pin config fixes
1949 */
1950enum {
1951 ALC882_FIXUP_ABIT_AW9D_MAX,
1952 ALC882_FIXUP_LENOVO_Y530,
1953 ALC882_FIXUP_PB_M5210,
1954 ALC882_FIXUP_ACER_ASPIRE_7736,
1955 ALC882_FIXUP_ASUS_W90V,
1956 ALC889_FIXUP_CD,
1957 ALC889_FIXUP_FRONT_HP_NO_PRESENCE,
1958 ALC889_FIXUP_VAIO_TT,
1959 ALC888_FIXUP_EEE1601,
1960 ALC886_FIXUP_EAPD,
1961 ALC882_FIXUP_EAPD,
1962 ALC883_FIXUP_EAPD,
1963 ALC883_FIXUP_ACER_EAPD,
1964 ALC882_FIXUP_GPIO1,
1965 ALC882_FIXUP_GPIO2,
1966 ALC882_FIXUP_GPIO3,
1967 ALC889_FIXUP_COEF,
1968 ALC882_FIXUP_ASUS_W2JC,
1969 ALC882_FIXUP_ACER_ASPIRE_4930G,
1970 ALC882_FIXUP_ACER_ASPIRE_8930G,
1971 ALC882_FIXUP_ASPIRE_8930G_VERBS,
1972 ALC885_FIXUP_MACPRO_GPIO,
1973 ALC889_FIXUP_DAC_ROUTE,
1974 ALC889_FIXUP_MBP_VREF,
1975 ALC889_FIXUP_IMAC91_VREF,
1976 ALC889_FIXUP_MBA11_VREF,
1977 ALC889_FIXUP_MBA21_VREF,
1978 ALC889_FIXUP_MP11_VREF,
1979 ALC889_FIXUP_MP41_VREF,
1980 ALC882_FIXUP_INV_DMIC,
1981 ALC882_FIXUP_NO_PRIMARY_HP,
1982 ALC887_FIXUP_ASUS_BASS,
1983 ALC887_FIXUP_BASS_CHMAP,
1984 ALC1220_FIXUP_GB_DUAL_CODECS,
1985 ALC1220_FIXUP_GB_X570,
1986 ALC1220_FIXUP_CLEVO_P950,
1987 ALC1220_FIXUP_CLEVO_PB51ED,
1988 ALC1220_FIXUP_CLEVO_PB51ED_PINS,
1989 ALC887_FIXUP_ASUS_AUDIO,
1990 ALC887_FIXUP_ASUS_HMIC,
1991 ALCS1200A_FIXUP_MIC_VREF,
1992 ALC888VD_FIXUP_MIC_100VREF,
1993};
1994
1995static void alc889_fixup_coef(struct hda_codec *codec,
1996 const struct hda_fixup *fix, int action)
1997{
1998 if (action != HDA_FIXUP_ACT_INIT)
1999 return;
2000 alc_update_coef_idx(codec, 7, 0, 0x2030);
2001}
2002
2003/* set up GPIO at initialization */
2004static void alc885_fixup_macpro_gpio(struct hda_codec *codec,
2005 const struct hda_fixup *fix, int action)
2006{
2007 struct alc_spec *spec = codec->spec;
2008
2009 spec->gpio_write_delay = true;
2010 alc_fixup_gpio3(codec, fix, action);
2011}
2012
2013/* Fix the connection of some pins for ALC889:
2014 * At least, Acer Aspire 5935 shows the connections to DAC3/4 don't
2015 * work correctly (bko#42740)
2016 */
2017static void alc889_fixup_dac_route(struct hda_codec *codec,
2018 const struct hda_fixup *fix, int action)
2019{
2020 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
2021 /* fake the connections during parsing the tree */
2022 static const hda_nid_t conn1[] = { 0x0c, 0x0d };
2023 static const hda_nid_t conn2[] = { 0x0e, 0x0f };
2024 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn1), conn1);
2025 snd_hda_override_conn_list(codec, 0x15, ARRAY_SIZE(conn1), conn1);
2026 snd_hda_override_conn_list(codec, 0x18, ARRAY_SIZE(conn2), conn2);
2027 snd_hda_override_conn_list(codec, 0x1a, ARRAY_SIZE(conn2), conn2);
2028 } else if (action == HDA_FIXUP_ACT_PROBE) {
2029 /* restore the connections */
2030 static const hda_nid_t conn[] = { 0x0c, 0x0d, 0x0e, 0x0f, 0x26 };
2031 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn), conn);
2032 snd_hda_override_conn_list(codec, 0x15, ARRAY_SIZE(conn), conn);
2033 snd_hda_override_conn_list(codec, 0x18, ARRAY_SIZE(conn), conn);
2034 snd_hda_override_conn_list(codec, 0x1a, ARRAY_SIZE(conn), conn);
2035 }
2036}
2037
2038/* Set VREF on HP pin */
2039static void alc889_fixup_mbp_vref(struct hda_codec *codec,
2040 const struct hda_fixup *fix, int action)
2041{
2042 static const hda_nid_t nids[] = { 0x14, 0x15, 0x19 };
2043 struct alc_spec *spec = codec->spec;
2044 int i;
2045
2046 if (action != HDA_FIXUP_ACT_INIT)
2047 return;
2048 for (i = 0; i < ARRAY_SIZE(nids); i++) {
2049 unsigned int val = snd_hda_codec_get_pincfg(codec, nids[i]);
2050 if (get_defcfg_device(val) != AC_JACK_HP_OUT)
2051 continue;
2052 val = snd_hda_codec_get_pin_target(codec, nids[i]);
2053 val |= AC_PINCTL_VREF_80;
2054 snd_hda_set_pin_ctl(codec, nids[i], val);
2055 spec->gen.keep_vref_in_automute = 1;
2056 break;
2057 }
2058}
2059
2060static void alc889_fixup_mac_pins(struct hda_codec *codec,
2061 const hda_nid_t *nids, int num_nids)
2062{
2063 struct alc_spec *spec = codec->spec;
2064 int i;
2065
2066 for (i = 0; i < num_nids; i++) {
2067 unsigned int val;
2068 val = snd_hda_codec_get_pin_target(codec, nids[i]);
2069 val |= AC_PINCTL_VREF_50;
2070 snd_hda_set_pin_ctl(codec, nids[i], val);
2071 }
2072 spec->gen.keep_vref_in_automute = 1;
2073}
2074
2075/* Set VREF on speaker pins on imac91 */
2076static void alc889_fixup_imac91_vref(struct hda_codec *codec,
2077 const struct hda_fixup *fix, int action)
2078{
2079 static const hda_nid_t nids[] = { 0x18, 0x1a };
2080
2081 if (action == HDA_FIXUP_ACT_INIT)
2082 alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids));
2083}
2084
2085/* Set VREF on speaker pins on mba11 */
2086static void alc889_fixup_mba11_vref(struct hda_codec *codec,
2087 const struct hda_fixup *fix, int action)
2088{
2089 static const hda_nid_t nids[] = { 0x18 };
2090
2091 if (action == HDA_FIXUP_ACT_INIT)
2092 alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids));
2093}
2094
2095/* Set VREF on speaker pins on mba21 */
2096static void alc889_fixup_mba21_vref(struct hda_codec *codec,
2097 const struct hda_fixup *fix, int action)
2098{
2099 static const hda_nid_t nids[] = { 0x18, 0x19 };
2100
2101 if (action == HDA_FIXUP_ACT_INIT)
2102 alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids));
2103}
2104
2105/* Don't take HP output as primary
2106 * Strangely, the speaker output doesn't work on Vaio Z and some Vaio
2107 * all-in-one desktop PCs (for example VGC-LN51JGB) through DAC 0x05
2108 */
2109static void alc882_fixup_no_primary_hp(struct hda_codec *codec,
2110 const struct hda_fixup *fix, int action)
2111{
2112 struct alc_spec *spec = codec->spec;
2113 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
2114 spec->gen.no_primary_hp = 1;
2115 spec->gen.no_multi_io = 1;
2116 }
2117}
2118
2119static void alc_fixup_bass_chmap(struct hda_codec *codec,
2120 const struct hda_fixup *fix, int action);
2121
2122/* For dual-codec configuration, we need to disable some features to avoid
2123 * conflicts of kctls and PCM streams
2124 */
2125static void alc_fixup_dual_codecs(struct hda_codec *codec,
2126 const struct hda_fixup *fix, int action)
2127{
2128 struct alc_spec *spec = codec->spec;
2129
2130 if (action != HDA_FIXUP_ACT_PRE_PROBE)
2131 return;
2132 /* disable vmaster */
2133 spec->gen.suppress_vmaster = 1;
2134 /* auto-mute and auto-mic switch don't work with multiple codecs */
2135 spec->gen.suppress_auto_mute = 1;
2136 spec->gen.suppress_auto_mic = 1;
2137 /* disable aamix as well */
2138 spec->gen.mixer_nid = 0;
2139 /* add location prefix to avoid conflicts */
2140 codec->force_pin_prefix = 1;
2141}
2142
2143static void rename_ctl(struct hda_codec *codec, const char *oldname,
2144 const char *newname)
2145{
2146 struct snd_kcontrol *kctl;
2147
2148 kctl = snd_hda_find_mixer_ctl(codec, oldname);
2149 if (kctl)
2150 snd_ctl_rename(codec->card, kctl, newname);
2151}
2152
2153static void alc1220_fixup_gb_dual_codecs(struct hda_codec *codec,
2154 const struct hda_fixup *fix,
2155 int action)
2156{
2157 alc_fixup_dual_codecs(codec, fix, action);
2158 switch (action) {
2159 case HDA_FIXUP_ACT_PRE_PROBE:
2160 /* override card longname to provide a unique UCM profile */
2161 strcpy(codec->card->longname, "HDAudio-Gigabyte-ALC1220DualCodecs");
2162 break;
2163 case HDA_FIXUP_ACT_BUILD:
2164 /* rename Capture controls depending on the codec */
2165 rename_ctl(codec, "Capture Volume",
2166 codec->addr == 0 ?
2167 "Rear-Panel Capture Volume" :
2168 "Front-Panel Capture Volume");
2169 rename_ctl(codec, "Capture Switch",
2170 codec->addr == 0 ?
2171 "Rear-Panel Capture Switch" :
2172 "Front-Panel Capture Switch");
2173 break;
2174 }
2175}
2176
2177static void alc1220_fixup_gb_x570(struct hda_codec *codec,
2178 const struct hda_fixup *fix,
2179 int action)
2180{
2181 static const hda_nid_t conn1[] = { 0x0c };
2182 static const struct coef_fw gb_x570_coefs[] = {
2183 WRITE_COEF(0x07, 0x03c0),
2184 WRITE_COEF(0x1a, 0x01c1),
2185 WRITE_COEF(0x1b, 0x0202),
2186 WRITE_COEF(0x43, 0x3005),
2187 {}
2188 };
2189
2190 switch (action) {
2191 case HDA_FIXUP_ACT_PRE_PROBE:
2192 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn1), conn1);
2193 snd_hda_override_conn_list(codec, 0x1b, ARRAY_SIZE(conn1), conn1);
2194 break;
2195 case HDA_FIXUP_ACT_INIT:
2196 alc_process_coef_fw(codec, gb_x570_coefs);
2197 break;
2198 }
2199}
2200
2201static void alc1220_fixup_clevo_p950(struct hda_codec *codec,
2202 const struct hda_fixup *fix,
2203 int action)
2204{
2205 static const hda_nid_t conn1[] = { 0x0c };
2206
2207 if (action != HDA_FIXUP_ACT_PRE_PROBE)
2208 return;
2209
2210 alc_update_coef_idx(codec, 0x7, 0, 0x3c3);
2211 /* We therefore want to make sure 0x14 (front headphone) and
2212 * 0x1b (speakers) use the stereo DAC 0x02
2213 */
2214 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn1), conn1);
2215 snd_hda_override_conn_list(codec, 0x1b, ARRAY_SIZE(conn1), conn1);
2216}
2217
2218static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec *codec,
2219 const struct hda_fixup *fix, int action);
2220
2221static void alc1220_fixup_clevo_pb51ed(struct hda_codec *codec,
2222 const struct hda_fixup *fix,
2223 int action)
2224{
2225 alc1220_fixup_clevo_p950(codec, fix, action);
2226 alc_fixup_headset_mode_no_hp_mic(codec, fix, action);
2227}
2228
2229static void alc887_asus_hp_automute_hook(struct hda_codec *codec,
2230 struct hda_jack_callback *jack)
2231{
2232 struct alc_spec *spec = codec->spec;
2233 unsigned int vref;
2234
2235 snd_hda_gen_hp_automute(codec, jack);
2236
2237 if (spec->gen.hp_jack_present)
2238 vref = AC_PINCTL_VREF_80;
2239 else
2240 vref = AC_PINCTL_VREF_HIZ;
2241 snd_hda_set_pin_ctl(codec, 0x19, PIN_HP | vref);
2242}
2243
2244static void alc887_fixup_asus_jack(struct hda_codec *codec,
2245 const struct hda_fixup *fix, int action)
2246{
2247 struct alc_spec *spec = codec->spec;
2248 if (action != HDA_FIXUP_ACT_PROBE)
2249 return;
2250 snd_hda_set_pin_ctl_cache(codec, 0x1b, PIN_HP);
2251 spec->gen.hp_automute_hook = alc887_asus_hp_automute_hook;
2252}
2253
2254static const struct hda_fixup alc882_fixups[] = {
2255 [ALC882_FIXUP_ABIT_AW9D_MAX] = {
2256 .type = HDA_FIXUP_PINS,
2257 .v.pins = (const struct hda_pintbl[]) {
2258 { 0x15, 0x01080104 }, /* side */
2259 { 0x16, 0x01011012 }, /* rear */
2260 { 0x17, 0x01016011 }, /* clfe */
2261 { }
2262 }
2263 },
2264 [ALC882_FIXUP_LENOVO_Y530] = {
2265 .type = HDA_FIXUP_PINS,
2266 .v.pins = (const struct hda_pintbl[]) {
2267 { 0x15, 0x99130112 }, /* rear int speakers */
2268 { 0x16, 0x99130111 }, /* subwoofer */
2269 { }
2270 }
2271 },
2272 [ALC882_FIXUP_PB_M5210] = {
2273 .type = HDA_FIXUP_PINCTLS,
2274 .v.pins = (const struct hda_pintbl[]) {
2275 { 0x19, PIN_VREF50 },
2276 {}
2277 }
2278 },
2279 [ALC882_FIXUP_ACER_ASPIRE_7736] = {
2280 .type = HDA_FIXUP_FUNC,
2281 .v.func = alc_fixup_sku_ignore,
2282 },
2283 [ALC882_FIXUP_ASUS_W90V] = {
2284 .type = HDA_FIXUP_PINS,
2285 .v.pins = (const struct hda_pintbl[]) {
2286 { 0x16, 0x99130110 }, /* fix sequence for CLFE */
2287 { }
2288 }
2289 },
2290 [ALC889_FIXUP_CD] = {
2291 .type = HDA_FIXUP_PINS,
2292 .v.pins = (const struct hda_pintbl[]) {
2293 { 0x1c, 0x993301f0 }, /* CD */
2294 { }
2295 }
2296 },
2297 [ALC889_FIXUP_FRONT_HP_NO_PRESENCE] = {
2298 .type = HDA_FIXUP_PINS,
2299 .v.pins = (const struct hda_pintbl[]) {
2300 { 0x1b, 0x02214120 }, /* Front HP jack is flaky, disable jack detect */
2301 { }
2302 },
2303 .chained = true,
2304 .chain_id = ALC889_FIXUP_CD,
2305 },
2306 [ALC889_FIXUP_VAIO_TT] = {
2307 .type = HDA_FIXUP_PINS,
2308 .v.pins = (const struct hda_pintbl[]) {
2309 { 0x17, 0x90170111 }, /* hidden surround speaker */
2310 { }
2311 }
2312 },
2313 [ALC888_FIXUP_EEE1601] = {
2314 .type = HDA_FIXUP_VERBS,
2315 .v.verbs = (const struct hda_verb[]) {
2316 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
2317 { 0x20, AC_VERB_SET_PROC_COEF, 0x0838 },
2318 { }
2319 }
2320 },
2321 [ALC886_FIXUP_EAPD] = {
2322 .type = HDA_FIXUP_VERBS,
2323 .v.verbs = (const struct hda_verb[]) {
2324 /* change to EAPD mode */
2325 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2326 { 0x20, AC_VERB_SET_PROC_COEF, 0x0068 },
2327 { }
2328 }
2329 },
2330 [ALC882_FIXUP_EAPD] = {
2331 .type = HDA_FIXUP_VERBS,
2332 .v.verbs = (const struct hda_verb[]) {
2333 /* change to EAPD mode */
2334 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2335 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
2336 { }
2337 }
2338 },
2339 [ALC883_FIXUP_EAPD] = {
2340 .type = HDA_FIXUP_VERBS,
2341 .v.verbs = (const struct hda_verb[]) {
2342 /* change to EAPD mode */
2343 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2344 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
2345 { }
2346 }
2347 },
2348 [ALC883_FIXUP_ACER_EAPD] = {
2349 .type = HDA_FIXUP_VERBS,
2350 .v.verbs = (const struct hda_verb[]) {
2351 /* eanable EAPD on Acer laptops */
2352 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2353 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2354 { }
2355 }
2356 },
2357 [ALC882_FIXUP_GPIO1] = {
2358 .type = HDA_FIXUP_FUNC,
2359 .v.func = alc_fixup_gpio1,
2360 },
2361 [ALC882_FIXUP_GPIO2] = {
2362 .type = HDA_FIXUP_FUNC,
2363 .v.func = alc_fixup_gpio2,
2364 },
2365 [ALC882_FIXUP_GPIO3] = {
2366 .type = HDA_FIXUP_FUNC,
2367 .v.func = alc_fixup_gpio3,
2368 },
2369 [ALC882_FIXUP_ASUS_W2JC] = {
2370 .type = HDA_FIXUP_FUNC,
2371 .v.func = alc_fixup_gpio1,
2372 .chained = true,
2373 .chain_id = ALC882_FIXUP_EAPD,
2374 },
2375 [ALC889_FIXUP_COEF] = {
2376 .type = HDA_FIXUP_FUNC,
2377 .v.func = alc889_fixup_coef,
2378 },
2379 [ALC882_FIXUP_ACER_ASPIRE_4930G] = {
2380 .type = HDA_FIXUP_PINS,
2381 .v.pins = (const struct hda_pintbl[]) {
2382 { 0x16, 0x99130111 }, /* CLFE speaker */
2383 { 0x17, 0x99130112 }, /* surround speaker */
2384 { }
2385 },
2386 .chained = true,
2387 .chain_id = ALC882_FIXUP_GPIO1,
2388 },
2389 [ALC882_FIXUP_ACER_ASPIRE_8930G] = {
2390 .type = HDA_FIXUP_PINS,
2391 .v.pins = (const struct hda_pintbl[]) {
2392 { 0x16, 0x99130111 }, /* CLFE speaker */
2393 { 0x1b, 0x99130112 }, /* surround speaker */
2394 { }
2395 },
2396 .chained = true,
2397 .chain_id = ALC882_FIXUP_ASPIRE_8930G_VERBS,
2398 },
2399 [ALC882_FIXUP_ASPIRE_8930G_VERBS] = {
2400 /* additional init verbs for Acer Aspire 8930G */
2401 .type = HDA_FIXUP_VERBS,
2402 .v.verbs = (const struct hda_verb[]) {
2403 /* Enable all DACs */
2404 /* DAC DISABLE/MUTE 1? */
2405 /* setting bits 1-5 disables DAC nids 0x02-0x06
2406 * apparently. Init=0x38 */
2407 { 0x20, AC_VERB_SET_COEF_INDEX, 0x03 },
2408 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
2409 /* DAC DISABLE/MUTE 2? */
2410 /* some bit here disables the other DACs.
2411 * Init=0x4900 */
2412 { 0x20, AC_VERB_SET_COEF_INDEX, 0x08 },
2413 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
2414 /* DMIC fix
2415 * This laptop has a stereo digital microphone.
2416 * The mics are only 1cm apart which makes the stereo
2417 * useless. However, either the mic or the ALC889
2418 * makes the signal become a difference/sum signal
2419 * instead of standard stereo, which is annoying.
2420 * So instead we flip this bit which makes the
2421 * codec replicate the sum signal to both channels,
2422 * turning it into a normal mono mic.
2423 */
2424 /* DMIC_CONTROL? Init value = 0x0001 */
2425 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
2426 { 0x20, AC_VERB_SET_PROC_COEF, 0x0003 },
2427 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2428 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2429 { }
2430 },
2431 .chained = true,
2432 .chain_id = ALC882_FIXUP_GPIO1,
2433 },
2434 [ALC885_FIXUP_MACPRO_GPIO] = {
2435 .type = HDA_FIXUP_FUNC,
2436 .v.func = alc885_fixup_macpro_gpio,
2437 },
2438 [ALC889_FIXUP_DAC_ROUTE] = {
2439 .type = HDA_FIXUP_FUNC,
2440 .v.func = alc889_fixup_dac_route,
2441 },
2442 [ALC889_FIXUP_MBP_VREF] = {
2443 .type = HDA_FIXUP_FUNC,
2444 .v.func = alc889_fixup_mbp_vref,
2445 .chained = true,
2446 .chain_id = ALC882_FIXUP_GPIO1,
2447 },
2448 [ALC889_FIXUP_IMAC91_VREF] = {
2449 .type = HDA_FIXUP_FUNC,
2450 .v.func = alc889_fixup_imac91_vref,
2451 .chained = true,
2452 .chain_id = ALC882_FIXUP_GPIO1,
2453 },
2454 [ALC889_FIXUP_MBA11_VREF] = {
2455 .type = HDA_FIXUP_FUNC,
2456 .v.func = alc889_fixup_mba11_vref,
2457 .chained = true,
2458 .chain_id = ALC889_FIXUP_MBP_VREF,
2459 },
2460 [ALC889_FIXUP_MBA21_VREF] = {
2461 .type = HDA_FIXUP_FUNC,
2462 .v.func = alc889_fixup_mba21_vref,
2463 .chained = true,
2464 .chain_id = ALC889_FIXUP_MBP_VREF,
2465 },
2466 [ALC889_FIXUP_MP11_VREF] = {
2467 .type = HDA_FIXUP_FUNC,
2468 .v.func = alc889_fixup_mba11_vref,
2469 .chained = true,
2470 .chain_id = ALC885_FIXUP_MACPRO_GPIO,
2471 },
2472 [ALC889_FIXUP_MP41_VREF] = {
2473 .type = HDA_FIXUP_FUNC,
2474 .v.func = alc889_fixup_mbp_vref,
2475 .chained = true,
2476 .chain_id = ALC885_FIXUP_MACPRO_GPIO,
2477 },
2478 [ALC882_FIXUP_INV_DMIC] = {
2479 .type = HDA_FIXUP_FUNC,
2480 .v.func = alc_fixup_inv_dmic,
2481 },
2482 [ALC882_FIXUP_NO_PRIMARY_HP] = {
2483 .type = HDA_FIXUP_FUNC,
2484 .v.func = alc882_fixup_no_primary_hp,
2485 },
2486 [ALC887_FIXUP_ASUS_BASS] = {
2487 .type = HDA_FIXUP_PINS,
2488 .v.pins = (const struct hda_pintbl[]) {
2489 {0x16, 0x99130130}, /* bass speaker */
2490 {}
2491 },
2492 .chained = true,
2493 .chain_id = ALC887_FIXUP_BASS_CHMAP,
2494 },
2495 [ALC887_FIXUP_BASS_CHMAP] = {
2496 .type = HDA_FIXUP_FUNC,
2497 .v.func = alc_fixup_bass_chmap,
2498 },
2499 [ALC1220_FIXUP_GB_DUAL_CODECS] = {
2500 .type = HDA_FIXUP_FUNC,
2501 .v.func = alc1220_fixup_gb_dual_codecs,
2502 },
2503 [ALC1220_FIXUP_GB_X570] = {
2504 .type = HDA_FIXUP_FUNC,
2505 .v.func = alc1220_fixup_gb_x570,
2506 },
2507 [ALC1220_FIXUP_CLEVO_P950] = {
2508 .type = HDA_FIXUP_FUNC,
2509 .v.func = alc1220_fixup_clevo_p950,
2510 },
2511 [ALC1220_FIXUP_CLEVO_PB51ED] = {
2512 .type = HDA_FIXUP_FUNC,
2513 .v.func = alc1220_fixup_clevo_pb51ed,
2514 },
2515 [ALC1220_FIXUP_CLEVO_PB51ED_PINS] = {
2516 .type = HDA_FIXUP_PINS,
2517 .v.pins = (const struct hda_pintbl[]) {
2518 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
2519 {}
2520 },
2521 .chained = true,
2522 .chain_id = ALC1220_FIXUP_CLEVO_PB51ED,
2523 },
2524 [ALC887_FIXUP_ASUS_AUDIO] = {
2525 .type = HDA_FIXUP_PINS,
2526 .v.pins = (const struct hda_pintbl[]) {
2527 { 0x15, 0x02a14150 }, /* use as headset mic, without its own jack detect */
2528 { 0x19, 0x22219420 },
2529 {}
2530 },
2531 },
2532 [ALC887_FIXUP_ASUS_HMIC] = {
2533 .type = HDA_FIXUP_FUNC,
2534 .v.func = alc887_fixup_asus_jack,
2535 .chained = true,
2536 .chain_id = ALC887_FIXUP_ASUS_AUDIO,
2537 },
2538 [ALCS1200A_FIXUP_MIC_VREF] = {
2539 .type = HDA_FIXUP_PINCTLS,
2540 .v.pins = (const struct hda_pintbl[]) {
2541 { 0x18, PIN_VREF50 }, /* rear mic */
2542 { 0x19, PIN_VREF50 }, /* front mic */
2543 {}
2544 }
2545 },
2546 [ALC888VD_FIXUP_MIC_100VREF] = {
2547 .type = HDA_FIXUP_PINCTLS,
2548 .v.pins = (const struct hda_pintbl[]) {
2549 { 0x18, PIN_VREF100 }, /* headset mic */
2550 {}
2551 }
2552 },
2553};
2554
2555static const struct snd_pci_quirk alc882_fixup_tbl[] = {
2556 SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_FIXUP_ACER_EAPD),
2557 SND_PCI_QUIRK(0x1025, 0x0090, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
2558 SND_PCI_QUIRK(0x1025, 0x0107, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
2559 SND_PCI_QUIRK(0x1025, 0x010a, "Acer Ferrari 5000", ALC883_FIXUP_ACER_EAPD),
2560 SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
2561 SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_FIXUP_ACER_EAPD),
2562 SND_PCI_QUIRK(0x1025, 0x0121, "Acer Aspire 5920G", ALC883_FIXUP_ACER_EAPD),
2563 SND_PCI_QUIRK(0x1025, 0x013e, "Acer Aspire 4930G",
2564 ALC882_FIXUP_ACER_ASPIRE_4930G),
2565 SND_PCI_QUIRK(0x1025, 0x013f, "Acer Aspire 5930G",
2566 ALC882_FIXUP_ACER_ASPIRE_4930G),
2567 SND_PCI_QUIRK(0x1025, 0x0145, "Acer Aspire 8930G",
2568 ALC882_FIXUP_ACER_ASPIRE_8930G),
2569 SND_PCI_QUIRK(0x1025, 0x0146, "Acer Aspire 6935G",
2570 ALC882_FIXUP_ACER_ASPIRE_8930G),
2571 SND_PCI_QUIRK(0x1025, 0x0142, "Acer Aspire 7730G",
2572 ALC882_FIXUP_ACER_ASPIRE_4930G),
2573 SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", ALC882_FIXUP_PB_M5210),
2574 SND_PCI_QUIRK(0x1025, 0x015e, "Acer Aspire 6930G",
2575 ALC882_FIXUP_ACER_ASPIRE_4930G),
2576 SND_PCI_QUIRK(0x1025, 0x0166, "Acer Aspire 6530G",
2577 ALC882_FIXUP_ACER_ASPIRE_4930G),
2578 SND_PCI_QUIRK(0x1025, 0x021e, "Acer Aspire 5739G",
2579 ALC882_FIXUP_ACER_ASPIRE_4930G),
2580 SND_PCI_QUIRK(0x1025, 0x0259, "Acer Aspire 5935", ALC889_FIXUP_DAC_ROUTE),
2581 SND_PCI_QUIRK(0x1025, 0x026b, "Acer Aspire 8940G", ALC882_FIXUP_ACER_ASPIRE_8930G),
2582 SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", ALC882_FIXUP_ACER_ASPIRE_7736),
2583 SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_FIXUP_EAPD),
2584 SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", ALC882_FIXUP_ASUS_W90V),
2585 SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_FIXUP_ASUS_W2JC),
2586 SND_PCI_QUIRK(0x1043, 0x2390, "Asus D700SA", ALC887_FIXUP_ASUS_HMIC),
2587 SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_FIXUP_EEE1601),
2588 SND_PCI_QUIRK(0x1043, 0x84bc, "ASUS ET2700", ALC887_FIXUP_ASUS_BASS),
2589 SND_PCI_QUIRK(0x1043, 0x8691, "ASUS ROG Ranger VIII", ALC882_FIXUP_GPIO3),
2590 SND_PCI_QUIRK(0x1043, 0x8797, "ASUS TUF B550M-PLUS", ALCS1200A_FIXUP_MIC_VREF),
2591 SND_PCI_QUIRK(0x104d, 0x9043, "Sony Vaio VGC-LN51JGB", ALC882_FIXUP_NO_PRIMARY_HP),
2592 SND_PCI_QUIRK(0x104d, 0x9044, "Sony VAIO AiO", ALC882_FIXUP_NO_PRIMARY_HP),
2593 SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT),
2594 SND_PCI_QUIRK(0x104d, 0x905a, "Sony Vaio Z", ALC882_FIXUP_NO_PRIMARY_HP),
2595 SND_PCI_QUIRK(0x104d, 0x9060, "Sony Vaio VPCL14M1R", ALC882_FIXUP_NO_PRIMARY_HP),
2596
2597 /* All Apple entries are in codec SSIDs */
2598 SND_PCI_QUIRK(0x106b, 0x00a0, "MacBookPro 3,1", ALC889_FIXUP_MBP_VREF),
2599 SND_PCI_QUIRK(0x106b, 0x00a1, "Macbook", ALC889_FIXUP_MBP_VREF),
2600 SND_PCI_QUIRK(0x106b, 0x00a4, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
2601 SND_PCI_QUIRK(0x106b, 0x0c00, "Mac Pro", ALC889_FIXUP_MP11_VREF),
2602 SND_PCI_QUIRK(0x106b, 0x1000, "iMac 24", ALC885_FIXUP_MACPRO_GPIO),
2603 SND_PCI_QUIRK(0x106b, 0x2800, "AppleTV", ALC885_FIXUP_MACPRO_GPIO),
2604 SND_PCI_QUIRK(0x106b, 0x2c00, "MacbookPro rev3", ALC889_FIXUP_MBP_VREF),
2605 SND_PCI_QUIRK(0x106b, 0x3000, "iMac", ALC889_FIXUP_MBP_VREF),
2606 SND_PCI_QUIRK(0x106b, 0x3200, "iMac 7,1 Aluminum", ALC882_FIXUP_EAPD),
2607 SND_PCI_QUIRK(0x106b, 0x3400, "MacBookAir 1,1", ALC889_FIXUP_MBA11_VREF),
2608 SND_PCI_QUIRK(0x106b, 0x3500, "MacBookAir 2,1", ALC889_FIXUP_MBA21_VREF),
2609 SND_PCI_QUIRK(0x106b, 0x3600, "Macbook 3,1", ALC889_FIXUP_MBP_VREF),
2610 SND_PCI_QUIRK(0x106b, 0x3800, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
2611 SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_FIXUP_MACPRO_GPIO),
2612 SND_PCI_QUIRK(0x106b, 0x3f00, "Macbook 5,1", ALC889_FIXUP_IMAC91_VREF),
2613 SND_PCI_QUIRK(0x106b, 0x4000, "MacbookPro 5,1", ALC889_FIXUP_IMAC91_VREF),
2614 SND_PCI_QUIRK(0x106b, 0x4100, "Macmini 3,1", ALC889_FIXUP_IMAC91_VREF),
2615 SND_PCI_QUIRK(0x106b, 0x4200, "Mac Pro 4,1/5,1", ALC889_FIXUP_MP41_VREF),
2616 SND_PCI_QUIRK(0x106b, 0x4300, "iMac 9,1", ALC889_FIXUP_IMAC91_VREF),
2617 SND_PCI_QUIRK(0x106b, 0x4600, "MacbookPro 5,2", ALC889_FIXUP_IMAC91_VREF),
2618 SND_PCI_QUIRK(0x106b, 0x4900, "iMac 9,1 Aluminum", ALC889_FIXUP_IMAC91_VREF),
2619 SND_PCI_QUIRK(0x106b, 0x4a00, "Macbook 5,2", ALC889_FIXUP_MBA11_VREF),
2620
2621 SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC882_FIXUP_EAPD),
2622 SND_PCI_QUIRK(0x10ec, 0x12d8, "iBase Elo Touch", ALC888VD_FIXUP_MIC_100VREF),
2623 SND_PCI_QUIRK(0x13fe, 0x1009, "Advantech MIT-W101", ALC886_FIXUP_EAPD),
2624 SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte EP45-DS3/Z87X-UD3H", ALC889_FIXUP_FRONT_HP_NO_PRESENCE),
2625 SND_PCI_QUIRK(0x1458, 0xa0b8, "Gigabyte AZ370-Gaming", ALC1220_FIXUP_GB_DUAL_CODECS),
2626 SND_PCI_QUIRK(0x1458, 0xa0cd, "Gigabyte X570 Aorus Master", ALC1220_FIXUP_GB_X570),
2627 SND_PCI_QUIRK(0x1458, 0xa0ce, "Gigabyte X570 Aorus Xtreme", ALC1220_FIXUP_GB_X570),
2628 SND_PCI_QUIRK(0x1458, 0xa0d5, "Gigabyte X570S Aorus Master", ALC1220_FIXUP_GB_X570),
2629 SND_PCI_QUIRK(0x1462, 0x11f7, "MSI-GE63", ALC1220_FIXUP_CLEVO_P950),
2630 SND_PCI_QUIRK(0x1462, 0x1228, "MSI-GP63", ALC1220_FIXUP_CLEVO_P950),
2631 SND_PCI_QUIRK(0x1462, 0x1229, "MSI-GP73", ALC1220_FIXUP_CLEVO_P950),
2632 SND_PCI_QUIRK(0x1462, 0x1275, "MSI-GL63", ALC1220_FIXUP_CLEVO_P950),
2633 SND_PCI_QUIRK(0x1462, 0x1276, "MSI-GL73", ALC1220_FIXUP_CLEVO_P950),
2634 SND_PCI_QUIRK(0x1462, 0x1293, "MSI-GP65", ALC1220_FIXUP_CLEVO_P950),
2635 SND_PCI_QUIRK(0x1462, 0x7350, "MSI-7350", ALC889_FIXUP_CD),
2636 SND_PCI_QUIRK(0x1462, 0xcc34, "MSI Godlike X570", ALC1220_FIXUP_GB_DUAL_CODECS),
2637 SND_PCI_QUIRK(0x1462, 0xda57, "MSI Z270-Gaming", ALC1220_FIXUP_GB_DUAL_CODECS),
2638 SND_PCI_QUIRK_VENDOR(0x1462, "MSI", ALC882_FIXUP_GPIO3),
2639 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", ALC882_FIXUP_ABIT_AW9D_MAX),
2640 SND_PCI_QUIRK(0x1558, 0x3702, "Clevo X370SN[VW]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2641 SND_PCI_QUIRK(0x1558, 0x50d3, "Clevo PC50[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2642 SND_PCI_QUIRK(0x1558, 0x65d1, "Clevo PB51[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2643 SND_PCI_QUIRK(0x1558, 0x65d2, "Clevo PB51R[CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2644 SND_PCI_QUIRK(0x1558, 0x65e1, "Clevo PB51[ED][DF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2645 SND_PCI_QUIRK(0x1558, 0x65e5, "Clevo PC50D[PRS](?:-D|-G)?", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2646 SND_PCI_QUIRK(0x1558, 0x65f1, "Clevo PC50HS", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2647 SND_PCI_QUIRK(0x1558, 0x65f5, "Clevo PD50PN[NRT]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2648 SND_PCI_QUIRK(0x1558, 0x66a2, "Clevo PE60RNE", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2649 SND_PCI_QUIRK(0x1558, 0x67d1, "Clevo PB71[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2650 SND_PCI_QUIRK(0x1558, 0x67e1, "Clevo PB71[DE][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2651 SND_PCI_QUIRK(0x1558, 0x67e5, "Clevo PC70D[PRS](?:-D|-G)?", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2652 SND_PCI_QUIRK(0x1558, 0x67f1, "Clevo PC70H[PRS]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2653 SND_PCI_QUIRK(0x1558, 0x67f5, "Clevo PD70PN[NRT]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2654 SND_PCI_QUIRK(0x1558, 0x70d1, "Clevo PC70[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2655 SND_PCI_QUIRK(0x1558, 0x7714, "Clevo X170SM", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2656 SND_PCI_QUIRK(0x1558, 0x7715, "Clevo X170KM-G", ALC1220_FIXUP_CLEVO_PB51ED),
2657 SND_PCI_QUIRK(0x1558, 0x9501, "Clevo P950HR", ALC1220_FIXUP_CLEVO_P950),
2658 SND_PCI_QUIRK(0x1558, 0x9506, "Clevo P955HQ", ALC1220_FIXUP_CLEVO_P950),
2659 SND_PCI_QUIRK(0x1558, 0x950a, "Clevo P955H[PR]", ALC1220_FIXUP_CLEVO_P950),
2660 SND_PCI_QUIRK(0x1558, 0x95e1, "Clevo P95xER", ALC1220_FIXUP_CLEVO_P950),
2661 SND_PCI_QUIRK(0x1558, 0x95e2, "Clevo P950ER", ALC1220_FIXUP_CLEVO_P950),
2662 SND_PCI_QUIRK(0x1558, 0x95e3, "Clevo P955[ER]T", ALC1220_FIXUP_CLEVO_P950),
2663 SND_PCI_QUIRK(0x1558, 0x95e4, "Clevo P955ER", ALC1220_FIXUP_CLEVO_P950),
2664 SND_PCI_QUIRK(0x1558, 0x95e5, "Clevo P955EE6", ALC1220_FIXUP_CLEVO_P950),
2665 SND_PCI_QUIRK(0x1558, 0x95e6, "Clevo P950R[CDF]", ALC1220_FIXUP_CLEVO_P950),
2666 SND_PCI_QUIRK(0x1558, 0x96e1, "Clevo P960[ER][CDFN]-K", ALC1220_FIXUP_CLEVO_P950),
2667 SND_PCI_QUIRK(0x1558, 0x97e1, "Clevo P970[ER][CDFN]", ALC1220_FIXUP_CLEVO_P950),
2668 SND_PCI_QUIRK(0x1558, 0x97e2, "Clevo P970RC-M", ALC1220_FIXUP_CLEVO_P950),
2669 SND_PCI_QUIRK(0x1558, 0xd502, "Clevo PD50SNE", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2670 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC882_FIXUP_EAPD),
2671 SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_FIXUP_EAPD),
2672 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530),
2673 SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC889_FIXUP_COEF),
2674 {}
2675};
2676
2677static const struct hda_model_fixup alc882_fixup_models[] = {
2678 {.id = ALC882_FIXUP_ABIT_AW9D_MAX, .name = "abit-aw9d"},
2679 {.id = ALC882_FIXUP_LENOVO_Y530, .name = "lenovo-y530"},
2680 {.id = ALC882_FIXUP_ACER_ASPIRE_7736, .name = "acer-aspire-7736"},
2681 {.id = ALC882_FIXUP_ASUS_W90V, .name = "asus-w90v"},
2682 {.id = ALC889_FIXUP_CD, .name = "cd"},
2683 {.id = ALC889_FIXUP_FRONT_HP_NO_PRESENCE, .name = "no-front-hp"},
2684 {.id = ALC889_FIXUP_VAIO_TT, .name = "vaio-tt"},
2685 {.id = ALC888_FIXUP_EEE1601, .name = "eee1601"},
2686 {.id = ALC882_FIXUP_EAPD, .name = "alc882-eapd"},
2687 {.id = ALC883_FIXUP_EAPD, .name = "alc883-eapd"},
2688 {.id = ALC882_FIXUP_GPIO1, .name = "gpio1"},
2689 {.id = ALC882_FIXUP_GPIO2, .name = "gpio2"},
2690 {.id = ALC882_FIXUP_GPIO3, .name = "gpio3"},
2691 {.id = ALC889_FIXUP_COEF, .name = "alc889-coef"},
2692 {.id = ALC882_FIXUP_ASUS_W2JC, .name = "asus-w2jc"},
2693 {.id = ALC882_FIXUP_ACER_ASPIRE_4930G, .name = "acer-aspire-4930g"},
2694 {.id = ALC882_FIXUP_ACER_ASPIRE_8930G, .name = "acer-aspire-8930g"},
2695 {.id = ALC883_FIXUP_ACER_EAPD, .name = "acer-aspire"},
2696 {.id = ALC885_FIXUP_MACPRO_GPIO, .name = "macpro-gpio"},
2697 {.id = ALC889_FIXUP_DAC_ROUTE, .name = "dac-route"},
2698 {.id = ALC889_FIXUP_MBP_VREF, .name = "mbp-vref"},
2699 {.id = ALC889_FIXUP_IMAC91_VREF, .name = "imac91-vref"},
2700 {.id = ALC889_FIXUP_MBA11_VREF, .name = "mba11-vref"},
2701 {.id = ALC889_FIXUP_MBA21_VREF, .name = "mba21-vref"},
2702 {.id = ALC889_FIXUP_MP11_VREF, .name = "mp11-vref"},
2703 {.id = ALC889_FIXUP_MP41_VREF, .name = "mp41-vref"},
2704 {.id = ALC882_FIXUP_INV_DMIC, .name = "inv-dmic"},
2705 {.id = ALC882_FIXUP_NO_PRIMARY_HP, .name = "no-primary-hp"},
2706 {.id = ALC887_FIXUP_ASUS_BASS, .name = "asus-bass"},
2707 {.id = ALC1220_FIXUP_GB_DUAL_CODECS, .name = "dual-codecs"},
2708 {.id = ALC1220_FIXUP_GB_X570, .name = "gb-x570"},
2709 {.id = ALC1220_FIXUP_CLEVO_P950, .name = "clevo-p950"},
2710 {}
2711};
2712
2713static const struct snd_hda_pin_quirk alc882_pin_fixup_tbl[] = {
2714 SND_HDA_PIN_QUIRK(0x10ec1220, 0x1043, "ASUS", ALC1220_FIXUP_CLEVO_P950,
2715 {0x14, 0x01014010},
2716 {0x15, 0x01011012},
2717 {0x16, 0x01016011},
2718 {0x18, 0x01a19040},
2719 {0x19, 0x02a19050},
2720 {0x1a, 0x0181304f},
2721 {0x1b, 0x0221401f},
2722 {0x1e, 0x01456130}),
2723 SND_HDA_PIN_QUIRK(0x10ec1220, 0x1462, "MS-7C35", ALC1220_FIXUP_CLEVO_P950,
2724 {0x14, 0x01015010},
2725 {0x15, 0x01011012},
2726 {0x16, 0x01011011},
2727 {0x18, 0x01a11040},
2728 {0x19, 0x02a19050},
2729 {0x1a, 0x0181104f},
2730 {0x1b, 0x0221401f},
2731 {0x1e, 0x01451130}),
2732 {}
2733};
2734
2735/*
2736 * BIOS auto configuration
2737 */
2738/* almost identical with ALC880 parser... */
2739static int alc882_parse_auto_config(struct hda_codec *codec)
2740{
2741 static const hda_nid_t alc882_ignore[] = { 0x1d, 0 };
2742 static const hda_nid_t alc882_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2743 return alc_parse_auto_config(codec, alc882_ignore, alc882_ssids);
2744}
2745
2746/*
2747 */
2748static int patch_alc882(struct hda_codec *codec)
2749{
2750 struct alc_spec *spec;
2751 int err;
2752
2753 err = alc_alloc_spec(codec, 0x0b);
2754 if (err < 0)
2755 return err;
2756
2757 spec = codec->spec;
2758
2759 switch (codec->core.vendor_id) {
2760 case 0x10ec0882:
2761 case 0x10ec0885:
2762 case 0x10ec0900:
2763 case 0x10ec0b00:
2764 case 0x10ec1220:
2765 break;
2766 default:
2767 /* ALC883 and variants */
2768 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2769 break;
2770 }
2771
2772 alc_pre_init(codec);
2773
2774 snd_hda_pick_fixup(codec, alc882_fixup_models, alc882_fixup_tbl,
2775 alc882_fixups);
2776 snd_hda_pick_pin_fixup(codec, alc882_pin_fixup_tbl, alc882_fixups, true);
2777 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
2778
2779 alc_auto_parse_customize_define(codec);
2780
2781 if (has_cdefine_beep(codec))
2782 spec->gen.beep_nid = 0x01;
2783
2784 /* automatic parse from the BIOS config */
2785 err = alc882_parse_auto_config(codec);
2786 if (err < 0)
2787 goto error;
2788
2789 if (!spec->gen.no_analog && spec->gen.beep_nid) {
2790 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
2791 if (err < 0)
2792 goto error;
2793 }
2794
2795 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
2796
2797 return 0;
2798
2799 error:
2800 alc_free(codec);
2801 return err;
2802}
2803
2804
2805/*
2806 * ALC262 support
2807 */
2808static int alc262_parse_auto_config(struct hda_codec *codec)
2809{
2810 static const hda_nid_t alc262_ignore[] = { 0x1d, 0 };
2811 static const hda_nid_t alc262_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2812 return alc_parse_auto_config(codec, alc262_ignore, alc262_ssids);
2813}
2814
2815/*
2816 * Pin config fixes
2817 */
2818enum {
2819 ALC262_FIXUP_FSC_H270,
2820 ALC262_FIXUP_FSC_S7110,
2821 ALC262_FIXUP_HP_Z200,
2822 ALC262_FIXUP_TYAN,
2823 ALC262_FIXUP_LENOVO_3000,
2824 ALC262_FIXUP_BENQ,
2825 ALC262_FIXUP_BENQ_T31,
2826 ALC262_FIXUP_INV_DMIC,
2827 ALC262_FIXUP_INTEL_BAYLEYBAY,
2828};
2829
2830static const struct hda_fixup alc262_fixups[] = {
2831 [ALC262_FIXUP_FSC_H270] = {
2832 .type = HDA_FIXUP_PINS,
2833 .v.pins = (const struct hda_pintbl[]) {
2834 { 0x14, 0x99130110 }, /* speaker */
2835 { 0x15, 0x0221142f }, /* front HP */
2836 { 0x1b, 0x0121141f }, /* rear HP */
2837 { }
2838 }
2839 },
2840 [ALC262_FIXUP_FSC_S7110] = {
2841 .type = HDA_FIXUP_PINS,
2842 .v.pins = (const struct hda_pintbl[]) {
2843 { 0x15, 0x90170110 }, /* speaker */
2844 { }
2845 },
2846 .chained = true,
2847 .chain_id = ALC262_FIXUP_BENQ,
2848 },
2849 [ALC262_FIXUP_HP_Z200] = {
2850 .type = HDA_FIXUP_PINS,
2851 .v.pins = (const struct hda_pintbl[]) {
2852 { 0x16, 0x99130120 }, /* internal speaker */
2853 { }
2854 }
2855 },
2856 [ALC262_FIXUP_TYAN] = {
2857 .type = HDA_FIXUP_PINS,
2858 .v.pins = (const struct hda_pintbl[]) {
2859 { 0x14, 0x1993e1f0 }, /* int AUX */
2860 { }
2861 }
2862 },
2863 [ALC262_FIXUP_LENOVO_3000] = {
2864 .type = HDA_FIXUP_PINCTLS,
2865 .v.pins = (const struct hda_pintbl[]) {
2866 { 0x19, PIN_VREF50 },
2867 {}
2868 },
2869 .chained = true,
2870 .chain_id = ALC262_FIXUP_BENQ,
2871 },
2872 [ALC262_FIXUP_BENQ] = {
2873 .type = HDA_FIXUP_VERBS,
2874 .v.verbs = (const struct hda_verb[]) {
2875 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2876 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
2877 {}
2878 }
2879 },
2880 [ALC262_FIXUP_BENQ_T31] = {
2881 .type = HDA_FIXUP_VERBS,
2882 .v.verbs = (const struct hda_verb[]) {
2883 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2884 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2885 {}
2886 }
2887 },
2888 [ALC262_FIXUP_INV_DMIC] = {
2889 .type = HDA_FIXUP_FUNC,
2890 .v.func = alc_fixup_inv_dmic,
2891 },
2892 [ALC262_FIXUP_INTEL_BAYLEYBAY] = {
2893 .type = HDA_FIXUP_FUNC,
2894 .v.func = alc_fixup_no_depop_delay,
2895 },
2896};
2897
2898static const struct snd_pci_quirk alc262_fixup_tbl[] = {
2899 SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", ALC262_FIXUP_HP_Z200),
2900 SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu Lifebook S7110", ALC262_FIXUP_FSC_S7110),
2901 SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FIXUP_BENQ),
2902 SND_PCI_QUIRK(0x10f1, 0x2915, "Tyan Thunder n6650W", ALC262_FIXUP_TYAN),
2903 SND_PCI_QUIRK(0x1734, 0x1141, "FSC ESPRIMO U9210", ALC262_FIXUP_FSC_H270),
2904 SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", ALC262_FIXUP_FSC_H270),
2905 SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000", ALC262_FIXUP_LENOVO_3000),
2906 SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_FIXUP_BENQ),
2907 SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_FIXUP_BENQ_T31),
2908 SND_PCI_QUIRK(0x8086, 0x7270, "BayleyBay", ALC262_FIXUP_INTEL_BAYLEYBAY),
2909 {}
2910};
2911
2912static const struct hda_model_fixup alc262_fixup_models[] = {
2913 {.id = ALC262_FIXUP_INV_DMIC, .name = "inv-dmic"},
2914 {.id = ALC262_FIXUP_FSC_H270, .name = "fsc-h270"},
2915 {.id = ALC262_FIXUP_FSC_S7110, .name = "fsc-s7110"},
2916 {.id = ALC262_FIXUP_HP_Z200, .name = "hp-z200"},
2917 {.id = ALC262_FIXUP_TYAN, .name = "tyan"},
2918 {.id = ALC262_FIXUP_LENOVO_3000, .name = "lenovo-3000"},
2919 {.id = ALC262_FIXUP_BENQ, .name = "benq"},
2920 {.id = ALC262_FIXUP_BENQ_T31, .name = "benq-t31"},
2921 {.id = ALC262_FIXUP_INTEL_BAYLEYBAY, .name = "bayleybay"},
2922 {}
2923};
2924
2925/*
2926 */
2927static int patch_alc262(struct hda_codec *codec)
2928{
2929 struct alc_spec *spec;
2930 int err;
2931
2932 err = alc_alloc_spec(codec, 0x0b);
2933 if (err < 0)
2934 return err;
2935
2936 spec = codec->spec;
2937 spec->gen.shared_mic_vref_pin = 0x18;
2938
2939 spec->shutup = alc_eapd_shutup;
2940
2941#if 0
2942 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
2943 * under-run
2944 */
2945 alc_update_coefex_idx(codec, 0x1a, 7, 0, 0x80);
2946#endif
2947 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2948
2949 alc_pre_init(codec);
2950
2951 snd_hda_pick_fixup(codec, alc262_fixup_models, alc262_fixup_tbl,
2952 alc262_fixups);
2953 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
2954
2955 alc_auto_parse_customize_define(codec);
2956
2957 if (has_cdefine_beep(codec))
2958 spec->gen.beep_nid = 0x01;
2959
2960 /* automatic parse from the BIOS config */
2961 err = alc262_parse_auto_config(codec);
2962 if (err < 0)
2963 goto error;
2964
2965 if (!spec->gen.no_analog && spec->gen.beep_nid) {
2966 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
2967 if (err < 0)
2968 goto error;
2969 }
2970
2971 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
2972
2973 return 0;
2974
2975 error:
2976 alc_free(codec);
2977 return err;
2978}
2979
2980/*
2981 * ALC268
2982 */
2983/* bind Beep switches of both NID 0x0f and 0x10 */
2984static int alc268_beep_switch_put(struct snd_kcontrol *kcontrol,
2985 struct snd_ctl_elem_value *ucontrol)
2986{
2987 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2988 unsigned long pval;
2989 int err;
2990
2991 mutex_lock(&codec->control_mutex);
2992 pval = kcontrol->private_value;
2993 kcontrol->private_value = (pval & ~0xff) | 0x0f;
2994 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
2995 if (err >= 0) {
2996 kcontrol->private_value = (pval & ~0xff) | 0x10;
2997 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
2998 }
2999 kcontrol->private_value = pval;
3000 mutex_unlock(&codec->control_mutex);
3001 return err;
3002}
3003
3004static const struct snd_kcontrol_new alc268_beep_mixer[] = {
3005 HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT),
3006 {
3007 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3008 .name = "Beep Playback Switch",
3009 .subdevice = HDA_SUBDEV_AMP_FLAG,
3010 .info = snd_hda_mixer_amp_switch_info,
3011 .get = snd_hda_mixer_amp_switch_get,
3012 .put = alc268_beep_switch_put,
3013 .private_value = HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT)
3014 },
3015};
3016
3017/* set PCBEEP vol = 0, mute connections */
3018static const struct hda_verb alc268_beep_init_verbs[] = {
3019 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3020 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3021 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3022 { }
3023};
3024
3025enum {
3026 ALC268_FIXUP_INV_DMIC,
3027 ALC268_FIXUP_HP_EAPD,
3028 ALC268_FIXUP_SPDIF,
3029};
3030
3031static const struct hda_fixup alc268_fixups[] = {
3032 [ALC268_FIXUP_INV_DMIC] = {
3033 .type = HDA_FIXUP_FUNC,
3034 .v.func = alc_fixup_inv_dmic,
3035 },
3036 [ALC268_FIXUP_HP_EAPD] = {
3037 .type = HDA_FIXUP_VERBS,
3038 .v.verbs = (const struct hda_verb[]) {
3039 {0x15, AC_VERB_SET_EAPD_BTLENABLE, 0},
3040 {}
3041 }
3042 },
3043 [ALC268_FIXUP_SPDIF] = {
3044 .type = HDA_FIXUP_PINS,
3045 .v.pins = (const struct hda_pintbl[]) {
3046 { 0x1e, 0x014b1180 }, /* enable SPDIF out */
3047 {}
3048 }
3049 },
3050};
3051
3052static const struct hda_model_fixup alc268_fixup_models[] = {
3053 {.id = ALC268_FIXUP_INV_DMIC, .name = "inv-dmic"},
3054 {.id = ALC268_FIXUP_HP_EAPD, .name = "hp-eapd"},
3055 {.id = ALC268_FIXUP_SPDIF, .name = "spdif"},
3056 {}
3057};
3058
3059static const struct snd_pci_quirk alc268_fixup_tbl[] = {
3060 SND_PCI_QUIRK(0x1025, 0x0139, "Acer TravelMate 6293", ALC268_FIXUP_SPDIF),
3061 SND_PCI_QUIRK(0x1025, 0x015b, "Acer AOA 150 (ZG5)", ALC268_FIXUP_INV_DMIC),
3062 /* below is codec SSID since multiple Toshiba laptops have the
3063 * same PCI SSID 1179:ff00
3064 */
3065 SND_PCI_QUIRK(0x1179, 0xff06, "Toshiba P200", ALC268_FIXUP_HP_EAPD),
3066 {}
3067};
3068
3069/*
3070 * BIOS auto configuration
3071 */
3072static int alc268_parse_auto_config(struct hda_codec *codec)
3073{
3074 static const hda_nid_t alc268_ssids[] = { 0x15, 0x1b, 0x14, 0 };
3075 return alc_parse_auto_config(codec, NULL, alc268_ssids);
3076}
3077
3078/*
3079 */
3080static int patch_alc268(struct hda_codec *codec)
3081{
3082 struct alc_spec *spec;
3083 int i, err;
3084
3085 /* ALC268 has no aa-loopback mixer */
3086 err = alc_alloc_spec(codec, 0);
3087 if (err < 0)
3088 return err;
3089
3090 spec = codec->spec;
3091 if (has_cdefine_beep(codec))
3092 spec->gen.beep_nid = 0x01;
3093
3094 spec->shutup = alc_eapd_shutup;
3095
3096 alc_pre_init(codec);
3097
3098 snd_hda_pick_fixup(codec, alc268_fixup_models, alc268_fixup_tbl, alc268_fixups);
3099 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
3100
3101 /* automatic parse from the BIOS config */
3102 err = alc268_parse_auto_config(codec);
3103 if (err < 0)
3104 goto error;
3105
3106 if (err > 0 && !spec->gen.no_analog &&
3107 spec->gen.autocfg.speaker_pins[0] != 0x1d) {
3108 for (i = 0; i < ARRAY_SIZE(alc268_beep_mixer); i++) {
3109 if (!snd_hda_gen_add_kctl(&spec->gen, NULL,
3110 &alc268_beep_mixer[i])) {
3111 err = -ENOMEM;
3112 goto error;
3113 }
3114 }
3115 snd_hda_add_verbs(codec, alc268_beep_init_verbs);
3116 if (!query_amp_caps(codec, 0x1d, HDA_INPUT))
3117 /* override the amp caps for beep generator */
3118 snd_hda_override_amp_caps(codec, 0x1d, HDA_INPUT,
3119 (0x0c << AC_AMPCAP_OFFSET_SHIFT) |
3120 (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT) |
3121 (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT) |
3122 (0 << AC_AMPCAP_MUTE_SHIFT));
3123 }
3124
3125 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
3126
3127 return 0;
3128
3129 error:
3130 alc_free(codec);
3131 return err;
3132}
3133
3134/*
3135 * ALC269
3136 */
3137
3138static const struct hda_pcm_stream alc269_44k_pcm_analog_playback = {
3139 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
3140};
3141
3142static const struct hda_pcm_stream alc269_44k_pcm_analog_capture = {
3143 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
3144};
3145
3146/* different alc269-variants */
3147enum {
3148 ALC269_TYPE_ALC269VA,
3149 ALC269_TYPE_ALC269VB,
3150 ALC269_TYPE_ALC269VC,
3151 ALC269_TYPE_ALC269VD,
3152 ALC269_TYPE_ALC280,
3153 ALC269_TYPE_ALC282,
3154 ALC269_TYPE_ALC283,
3155 ALC269_TYPE_ALC284,
3156 ALC269_TYPE_ALC293,
3157 ALC269_TYPE_ALC286,
3158 ALC269_TYPE_ALC298,
3159 ALC269_TYPE_ALC255,
3160 ALC269_TYPE_ALC256,
3161 ALC269_TYPE_ALC257,
3162 ALC269_TYPE_ALC215,
3163 ALC269_TYPE_ALC225,
3164 ALC269_TYPE_ALC245,
3165 ALC269_TYPE_ALC287,
3166 ALC269_TYPE_ALC294,
3167 ALC269_TYPE_ALC300,
3168 ALC269_TYPE_ALC623,
3169 ALC269_TYPE_ALC700,
3170};
3171
3172/*
3173 * BIOS auto configuration
3174 */
3175static int alc269_parse_auto_config(struct hda_codec *codec)
3176{
3177 static const hda_nid_t alc269_ignore[] = { 0x1d, 0 };
3178 static const hda_nid_t alc269_ssids[] = { 0, 0x1b, 0x14, 0x21 };
3179 static const hda_nid_t alc269va_ssids[] = { 0x15, 0x1b, 0x14, 0 };
3180 struct alc_spec *spec = codec->spec;
3181 const hda_nid_t *ssids;
3182
3183 switch (spec->codec_variant) {
3184 case ALC269_TYPE_ALC269VA:
3185 case ALC269_TYPE_ALC269VC:
3186 case ALC269_TYPE_ALC280:
3187 case ALC269_TYPE_ALC284:
3188 case ALC269_TYPE_ALC293:
3189 ssids = alc269va_ssids;
3190 break;
3191 case ALC269_TYPE_ALC269VB:
3192 case ALC269_TYPE_ALC269VD:
3193 case ALC269_TYPE_ALC282:
3194 case ALC269_TYPE_ALC283:
3195 case ALC269_TYPE_ALC286:
3196 case ALC269_TYPE_ALC298:
3197 case ALC269_TYPE_ALC255:
3198 case ALC269_TYPE_ALC256:
3199 case ALC269_TYPE_ALC257:
3200 case ALC269_TYPE_ALC215:
3201 case ALC269_TYPE_ALC225:
3202 case ALC269_TYPE_ALC245:
3203 case ALC269_TYPE_ALC287:
3204 case ALC269_TYPE_ALC294:
3205 case ALC269_TYPE_ALC300:
3206 case ALC269_TYPE_ALC623:
3207 case ALC269_TYPE_ALC700:
3208 ssids = alc269_ssids;
3209 break;
3210 default:
3211 ssids = alc269_ssids;
3212 break;
3213 }
3214
3215 return alc_parse_auto_config(codec, alc269_ignore, ssids);
3216}
3217
3218static const struct hda_jack_keymap alc_headset_btn_keymap[] = {
3219 { SND_JACK_BTN_0, KEY_PLAYPAUSE },
3220 { SND_JACK_BTN_1, KEY_VOICECOMMAND },
3221 { SND_JACK_BTN_2, KEY_VOLUMEUP },
3222 { SND_JACK_BTN_3, KEY_VOLUMEDOWN },
3223 {}
3224};
3225
3226static void alc_headset_btn_callback(struct hda_codec *codec,
3227 struct hda_jack_callback *jack)
3228{
3229 int report = 0;
3230
3231 if (jack->unsol_res & (7 << 13))
3232 report |= SND_JACK_BTN_0;
3233
3234 if (jack->unsol_res & (1 << 16 | 3 << 8))
3235 report |= SND_JACK_BTN_1;
3236
3237 /* Volume up key */
3238 if (jack->unsol_res & (7 << 23))
3239 report |= SND_JACK_BTN_2;
3240
3241 /* Volume down key */
3242 if (jack->unsol_res & (7 << 10))
3243 report |= SND_JACK_BTN_3;
3244
3245 snd_hda_jack_set_button_state(codec, jack->nid, report);
3246}
3247
3248static void alc_disable_headset_jack_key(struct hda_codec *codec)
3249{
3250 struct alc_spec *spec = codec->spec;
3251
3252 if (!spec->has_hs_key)
3253 return;
3254
3255 switch (codec->core.vendor_id) {
3256 case 0x10ec0215:
3257 case 0x10ec0225:
3258 case 0x10ec0285:
3259 case 0x10ec0287:
3260 case 0x10ec0295:
3261 case 0x10ec0289:
3262 case 0x10ec0299:
3263 alc_write_coef_idx(codec, 0x48, 0x0);
3264 alc_update_coef_idx(codec, 0x49, 0x0045, 0x0);
3265 alc_update_coef_idx(codec, 0x44, 0x0045 << 8, 0x0);
3266 break;
3267 case 0x10ec0230:
3268 case 0x10ec0236:
3269 case 0x10ec0256:
3270 case 0x10ec0257:
3271 case 0x19e58326:
3272 alc_write_coef_idx(codec, 0x48, 0x0);
3273 alc_update_coef_idx(codec, 0x49, 0x0045, 0x0);
3274 break;
3275 }
3276}
3277
3278static void alc_enable_headset_jack_key(struct hda_codec *codec)
3279{
3280 struct alc_spec *spec = codec->spec;
3281
3282 if (!spec->has_hs_key)
3283 return;
3284
3285 switch (codec->core.vendor_id) {
3286 case 0x10ec0215:
3287 case 0x10ec0225:
3288 case 0x10ec0285:
3289 case 0x10ec0287:
3290 case 0x10ec0295:
3291 case 0x10ec0289:
3292 case 0x10ec0299:
3293 alc_write_coef_idx(codec, 0x48, 0xd011);
3294 alc_update_coef_idx(codec, 0x49, 0x007f, 0x0045);
3295 alc_update_coef_idx(codec, 0x44, 0x007f << 8, 0x0045 << 8);
3296 break;
3297 case 0x10ec0230:
3298 case 0x10ec0236:
3299 case 0x10ec0256:
3300 case 0x10ec0257:
3301 case 0x19e58326:
3302 alc_write_coef_idx(codec, 0x48, 0xd011);
3303 alc_update_coef_idx(codec, 0x49, 0x007f, 0x0045);
3304 break;
3305 }
3306}
3307
3308static void alc_fixup_headset_jack(struct hda_codec *codec,
3309 const struct hda_fixup *fix, int action)
3310{
3311 struct alc_spec *spec = codec->spec;
3312 hda_nid_t hp_pin;
3313
3314 switch (action) {
3315 case HDA_FIXUP_ACT_PRE_PROBE:
3316 spec->has_hs_key = 1;
3317 snd_hda_jack_detect_enable_callback(codec, 0x55,
3318 alc_headset_btn_callback);
3319 break;
3320 case HDA_FIXUP_ACT_BUILD:
3321 hp_pin = alc_get_hp_pin(spec);
3322 if (!hp_pin || snd_hda_jack_bind_keymap(codec, 0x55,
3323 alc_headset_btn_keymap,
3324 hp_pin))
3325 snd_hda_jack_add_kctl(codec, 0x55, "Headset Jack",
3326 false, SND_JACK_HEADSET,
3327 alc_headset_btn_keymap);
3328
3329 alc_enable_headset_jack_key(codec);
3330 break;
3331 }
3332}
3333
3334static void alc269vb_toggle_power_output(struct hda_codec *codec, int power_up)
3335{
3336 alc_update_coef_idx(codec, 0x04, 1 << 11, power_up ? (1 << 11) : 0);
3337}
3338
3339static void alc269_shutup(struct hda_codec *codec)
3340{
3341 struct alc_spec *spec = codec->spec;
3342
3343 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
3344 alc269vb_toggle_power_output(codec, 0);
3345 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
3346 (alc_get_coef0(codec) & 0x00ff) == 0x018) {
3347 msleep(150);
3348 }
3349 alc_shutup_pins(codec);
3350}
3351
3352static const struct coef_fw alc282_coefs[] = {
3353 WRITE_COEF(0x03, 0x0002), /* Power Down Control */
3354 UPDATE_COEF(0x05, 0xff3f, 0x0700), /* FIFO and filter clock */
3355 WRITE_COEF(0x07, 0x0200), /* DMIC control */
3356 UPDATE_COEF(0x06, 0x00f0, 0), /* Analog clock */
3357 UPDATE_COEF(0x08, 0xfffc, 0x0c2c), /* JD */
3358 WRITE_COEF(0x0a, 0xcccc), /* JD offset1 */
3359 WRITE_COEF(0x0b, 0xcccc), /* JD offset2 */
3360 WRITE_COEF(0x0e, 0x6e00), /* LDO1/2/3, DAC/ADC */
3361 UPDATE_COEF(0x0f, 0xf800, 0x1000), /* JD */
3362 UPDATE_COEF(0x10, 0xfc00, 0x0c00), /* Capless */
3363 WRITE_COEF(0x6f, 0x0), /* Class D test 4 */
3364 UPDATE_COEF(0x0c, 0xfe00, 0), /* IO power down directly */
3365 WRITE_COEF(0x34, 0xa0c0), /* ANC */
3366 UPDATE_COEF(0x16, 0x0008, 0), /* AGC MUX */
3367 UPDATE_COEF(0x1d, 0x00e0, 0), /* DAC simple content protection */
3368 UPDATE_COEF(0x1f, 0x00e0, 0), /* ADC simple content protection */
3369 WRITE_COEF(0x21, 0x8804), /* DAC ADC Zero Detection */
3370 WRITE_COEF(0x63, 0x2902), /* PLL */
3371 WRITE_COEF(0x68, 0xa080), /* capless control 2 */
3372 WRITE_COEF(0x69, 0x3400), /* capless control 3 */
3373 WRITE_COEF(0x6a, 0x2f3e), /* capless control 4 */
3374 WRITE_COEF(0x6b, 0x0), /* capless control 5 */
3375 UPDATE_COEF(0x6d, 0x0fff, 0x0900), /* class D test 2 */
3376 WRITE_COEF(0x6e, 0x110a), /* class D test 3 */
3377 UPDATE_COEF(0x70, 0x00f8, 0x00d8), /* class D test 5 */
3378 WRITE_COEF(0x71, 0x0014), /* class D test 6 */
3379 WRITE_COEF(0x72, 0xc2ba), /* classD OCP */
3380 UPDATE_COEF(0x77, 0x0f80, 0), /* classD pure DC test */
3381 WRITE_COEF(0x6c, 0xfc06), /* Class D amp control */
3382 {}
3383};
3384
3385static void alc282_restore_default_value(struct hda_codec *codec)
3386{
3387 alc_process_coef_fw(codec, alc282_coefs);
3388}
3389
3390static void alc282_init(struct hda_codec *codec)
3391{
3392 struct alc_spec *spec = codec->spec;
3393 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3394 bool hp_pin_sense;
3395 int coef78;
3396
3397 alc282_restore_default_value(codec);
3398
3399 if (!hp_pin)
3400 return;
3401 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3402 coef78 = alc_read_coef_idx(codec, 0x78);
3403
3404 /* Index 0x78 Direct Drive HP AMP LPM Control 1 */
3405 /* Headphone capless set to high power mode */
3406 alc_write_coef_idx(codec, 0x78, 0x9004);
3407
3408 if (hp_pin_sense)
3409 msleep(2);
3410
3411 snd_hda_codec_write(codec, hp_pin, 0,
3412 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3413
3414 if (hp_pin_sense)
3415 msleep(85);
3416
3417 snd_hda_codec_write(codec, hp_pin, 0,
3418 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3419
3420 if (hp_pin_sense)
3421 msleep(100);
3422
3423 /* Headphone capless set to normal mode */
3424 alc_write_coef_idx(codec, 0x78, coef78);
3425}
3426
3427static void alc282_shutup(struct hda_codec *codec)
3428{
3429 struct alc_spec *spec = codec->spec;
3430 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3431 bool hp_pin_sense;
3432 int coef78;
3433
3434 if (!hp_pin) {
3435 alc269_shutup(codec);
3436 return;
3437 }
3438
3439 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3440 coef78 = alc_read_coef_idx(codec, 0x78);
3441 alc_write_coef_idx(codec, 0x78, 0x9004);
3442
3443 if (hp_pin_sense)
3444 msleep(2);
3445
3446 snd_hda_codec_write(codec, hp_pin, 0,
3447 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3448
3449 if (hp_pin_sense)
3450 msleep(85);
3451
3452 if (!spec->no_shutup_pins)
3453 snd_hda_codec_write(codec, hp_pin, 0,
3454 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3455
3456 if (hp_pin_sense)
3457 msleep(100);
3458
3459 alc_auto_setup_eapd(codec, false);
3460 alc_shutup_pins(codec);
3461 alc_write_coef_idx(codec, 0x78, coef78);
3462}
3463
3464static const struct coef_fw alc283_coefs[] = {
3465 WRITE_COEF(0x03, 0x0002), /* Power Down Control */
3466 UPDATE_COEF(0x05, 0xff3f, 0x0700), /* FIFO and filter clock */
3467 WRITE_COEF(0x07, 0x0200), /* DMIC control */
3468 UPDATE_COEF(0x06, 0x00f0, 0), /* Analog clock */
3469 UPDATE_COEF(0x08, 0xfffc, 0x0c2c), /* JD */
3470 WRITE_COEF(0x0a, 0xcccc), /* JD offset1 */
3471 WRITE_COEF(0x0b, 0xcccc), /* JD offset2 */
3472 WRITE_COEF(0x0e, 0x6fc0), /* LDO1/2/3, DAC/ADC */
3473 UPDATE_COEF(0x0f, 0xf800, 0x1000), /* JD */
3474 UPDATE_COEF(0x10, 0xfc00, 0x0c00), /* Capless */
3475 WRITE_COEF(0x3a, 0x0), /* Class D test 4 */
3476 UPDATE_COEF(0x0c, 0xfe00, 0x0), /* IO power down directly */
3477 WRITE_COEF(0x22, 0xa0c0), /* ANC */
3478 UPDATE_COEFEX(0x53, 0x01, 0x000f, 0x0008), /* AGC MUX */
3479 UPDATE_COEF(0x1d, 0x00e0, 0), /* DAC simple content protection */
3480 UPDATE_COEF(0x1f, 0x00e0, 0), /* ADC simple content protection */
3481 WRITE_COEF(0x21, 0x8804), /* DAC ADC Zero Detection */
3482 WRITE_COEF(0x2e, 0x2902), /* PLL */
3483 WRITE_COEF(0x33, 0xa080), /* capless control 2 */
3484 WRITE_COEF(0x34, 0x3400), /* capless control 3 */
3485 WRITE_COEF(0x35, 0x2f3e), /* capless control 4 */
3486 WRITE_COEF(0x36, 0x0), /* capless control 5 */
3487 UPDATE_COEF(0x38, 0x0fff, 0x0900), /* class D test 2 */
3488 WRITE_COEF(0x39, 0x110a), /* class D test 3 */
3489 UPDATE_COEF(0x3b, 0x00f8, 0x00d8), /* class D test 5 */
3490 WRITE_COEF(0x3c, 0x0014), /* class D test 6 */
3491 WRITE_COEF(0x3d, 0xc2ba), /* classD OCP */
3492 UPDATE_COEF(0x42, 0x0f80, 0x0), /* classD pure DC test */
3493 WRITE_COEF(0x49, 0x0), /* test mode */
3494 UPDATE_COEF(0x40, 0xf800, 0x9800), /* Class D DC enable */
3495 UPDATE_COEF(0x42, 0xf000, 0x2000), /* DC offset */
3496 WRITE_COEF(0x37, 0xfc06), /* Class D amp control */
3497 UPDATE_COEF(0x1b, 0x8000, 0), /* HP JD control */
3498 {}
3499};
3500
3501static void alc283_restore_default_value(struct hda_codec *codec)
3502{
3503 alc_process_coef_fw(codec, alc283_coefs);
3504}
3505
3506static void alc283_init(struct hda_codec *codec)
3507{
3508 struct alc_spec *spec = codec->spec;
3509 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3510 bool hp_pin_sense;
3511
3512 alc283_restore_default_value(codec);
3513
3514 if (!hp_pin)
3515 return;
3516
3517 msleep(30);
3518 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3519
3520 /* Index 0x43 Direct Drive HP AMP LPM Control 1 */
3521 /* Headphone capless set to high power mode */
3522 alc_write_coef_idx(codec, 0x43, 0x9004);
3523
3524 snd_hda_codec_write(codec, hp_pin, 0,
3525 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3526
3527 if (hp_pin_sense)
3528 msleep(85);
3529
3530 snd_hda_codec_write(codec, hp_pin, 0,
3531 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3532
3533 if (hp_pin_sense)
3534 msleep(85);
3535 /* Index 0x46 Combo jack auto switch control 2 */
3536 /* 3k pull low control for Headset jack. */
3537 alc_update_coef_idx(codec, 0x46, 3 << 12, 0);
3538 /* Headphone capless set to normal mode */
3539 alc_write_coef_idx(codec, 0x43, 0x9614);
3540}
3541
3542static void alc283_shutup(struct hda_codec *codec)
3543{
3544 struct alc_spec *spec = codec->spec;
3545 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3546 bool hp_pin_sense;
3547
3548 if (!hp_pin) {
3549 alc269_shutup(codec);
3550 return;
3551 }
3552
3553 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3554
3555 alc_write_coef_idx(codec, 0x43, 0x9004);
3556
3557 /*depop hp during suspend*/
3558 alc_write_coef_idx(codec, 0x06, 0x2100);
3559
3560 snd_hda_codec_write(codec, hp_pin, 0,
3561 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3562
3563 if (hp_pin_sense)
3564 msleep(100);
3565
3566 if (!spec->no_shutup_pins)
3567 snd_hda_codec_write(codec, hp_pin, 0,
3568 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3569
3570 alc_update_coef_idx(codec, 0x46, 0, 3 << 12);
3571
3572 if (hp_pin_sense)
3573 msleep(100);
3574 alc_auto_setup_eapd(codec, false);
3575 alc_shutup_pins(codec);
3576 alc_write_coef_idx(codec, 0x43, 0x9614);
3577}
3578
3579static void alc256_init(struct hda_codec *codec)
3580{
3581 struct alc_spec *spec = codec->spec;
3582 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3583 bool hp_pin_sense;
3584
3585 if (spec->ultra_low_power) {
3586 alc_update_coef_idx(codec, 0x03, 1<<1, 1<<1);
3587 alc_update_coef_idx(codec, 0x08, 3<<2, 3<<2);
3588 alc_update_coef_idx(codec, 0x08, 7<<4, 0);
3589 alc_update_coef_idx(codec, 0x3b, 1<<15, 0);
3590 alc_update_coef_idx(codec, 0x0e, 7<<6, 7<<6);
3591 msleep(30);
3592 }
3593
3594 if (!hp_pin)
3595 hp_pin = 0x21;
3596
3597 msleep(30);
3598
3599 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3600
3601 if (hp_pin_sense)
3602 msleep(2);
3603
3604 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x1); /* Low power */
3605
3606 snd_hda_codec_write(codec, hp_pin, 0,
3607 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3608
3609 if (hp_pin_sense || spec->ultra_low_power)
3610 msleep(85);
3611
3612 snd_hda_codec_write(codec, hp_pin, 0,
3613 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3614
3615 if (hp_pin_sense || spec->ultra_low_power)
3616 msleep(100);
3617
3618 alc_update_coef_idx(codec, 0x46, 3 << 12, 0);
3619 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x4); /* Hight power */
3620 alc_update_coefex_idx(codec, 0x53, 0x02, 0x8000, 1 << 15); /* Clear bit */
3621 alc_update_coefex_idx(codec, 0x53, 0x02, 0x8000, 0 << 15);
3622 /*
3623 * Expose headphone mic (or possibly Line In on some machines) instead
3624 * of PC Beep on 1Ah, and disable 1Ah loopback for all outputs. See
3625 * Documentation/sound/hd-audio/realtek-pc-beep.rst for details of
3626 * this register.
3627 */
3628 alc_write_coef_idx(codec, 0x36, 0x5757);
3629}
3630
3631static void alc256_shutup(struct hda_codec *codec)
3632{
3633 struct alc_spec *spec = codec->spec;
3634 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3635 bool hp_pin_sense;
3636
3637 if (!hp_pin)
3638 hp_pin = 0x21;
3639
3640 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x1); /* Low power */
3641 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3642
3643 if (hp_pin_sense)
3644 msleep(2);
3645
3646 snd_hda_codec_write(codec, hp_pin, 0,
3647 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3648
3649 if (hp_pin_sense || spec->ultra_low_power)
3650 msleep(85);
3651
3652 /* 3k pull low control for Headset jack. */
3653 /* NOTE: call this before clearing the pin, otherwise codec stalls */
3654 /* If disable 3k pulldown control for alc257, the Mic detection will not work correctly
3655 * when booting with headset plugged. So skip setting it for the codec alc257
3656 */
3657 if (spec->en_3kpull_low)
3658 alc_update_coef_idx(codec, 0x46, 0, 3 << 12);
3659
3660 if (!spec->no_shutup_pins)
3661 snd_hda_codec_write(codec, hp_pin, 0,
3662 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3663
3664 if (hp_pin_sense || spec->ultra_low_power)
3665 msleep(100);
3666
3667 alc_auto_setup_eapd(codec, false);
3668 alc_shutup_pins(codec);
3669 if (spec->ultra_low_power) {
3670 msleep(50);
3671 alc_update_coef_idx(codec, 0x03, 1<<1, 0);
3672 alc_update_coef_idx(codec, 0x08, 7<<4, 7<<4);
3673 alc_update_coef_idx(codec, 0x08, 3<<2, 0);
3674 alc_update_coef_idx(codec, 0x3b, 1<<15, 1<<15);
3675 alc_update_coef_idx(codec, 0x0e, 7<<6, 0);
3676 msleep(30);
3677 }
3678}
3679
3680static void alc285_hp_init(struct hda_codec *codec)
3681{
3682 struct alc_spec *spec = codec->spec;
3683 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3684 int i, val;
3685 int coef38, coef0d, coef36;
3686
3687 alc_write_coefex_idx(codec, 0x58, 0x00, 0x1888); /* write default value */
3688 alc_update_coef_idx(codec, 0x4a, 1<<15, 1<<15); /* Reset HP JD */
3689 coef38 = alc_read_coef_idx(codec, 0x38); /* Amp control */
3690 coef0d = alc_read_coef_idx(codec, 0x0d); /* Digital Misc control */
3691 coef36 = alc_read_coef_idx(codec, 0x36); /* Passthrough Control */
3692 alc_update_coef_idx(codec, 0x38, 1<<4, 0x0);
3693 alc_update_coef_idx(codec, 0x0d, 0x110, 0x0);
3694
3695 alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000);
3696
3697 if (hp_pin)
3698 snd_hda_codec_write(codec, hp_pin, 0,
3699 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3700
3701 msleep(130);
3702 alc_update_coef_idx(codec, 0x36, 1<<14, 1<<14);
3703 alc_update_coef_idx(codec, 0x36, 1<<13, 0x0);
3704
3705 if (hp_pin)
3706 snd_hda_codec_write(codec, hp_pin, 0,
3707 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3708 msleep(10);
3709 alc_write_coef_idx(codec, 0x67, 0x0); /* Set HP depop to manual mode */
3710 alc_write_coefex_idx(codec, 0x58, 0x00, 0x7880);
3711 alc_write_coefex_idx(codec, 0x58, 0x0f, 0xf049);
3712 alc_update_coefex_idx(codec, 0x58, 0x03, 0x00f0, 0x00c0);
3713
3714 alc_write_coefex_idx(codec, 0x58, 0x00, 0xf888); /* HP depop procedure start */
3715 val = alc_read_coefex_idx(codec, 0x58, 0x00);
3716 for (i = 0; i < 20 && val & 0x8000; i++) {
3717 msleep(50);
3718 val = alc_read_coefex_idx(codec, 0x58, 0x00);
3719 } /* Wait for depop procedure finish */
3720
3721 alc_write_coefex_idx(codec, 0x58, 0x00, val); /* write back the result */
3722 alc_update_coef_idx(codec, 0x38, 1<<4, coef38);
3723 alc_update_coef_idx(codec, 0x0d, 0x110, coef0d);
3724 alc_update_coef_idx(codec, 0x36, 3<<13, coef36);
3725
3726 msleep(50);
3727 alc_update_coef_idx(codec, 0x4a, 1<<15, 0);
3728}
3729
3730static void alc225_init(struct hda_codec *codec)
3731{
3732 struct alc_spec *spec = codec->spec;
3733 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3734 bool hp1_pin_sense, hp2_pin_sense;
3735
3736 if (spec->ultra_low_power) {
3737 alc_update_coef_idx(codec, 0x08, 0x0f << 2, 3<<2);
3738 alc_update_coef_idx(codec, 0x0e, 7<<6, 7<<6);
3739 alc_update_coef_idx(codec, 0x33, 1<<11, 0);
3740 msleep(30);
3741 }
3742
3743 if (spec->codec_variant != ALC269_TYPE_ALC287 &&
3744 spec->codec_variant != ALC269_TYPE_ALC245)
3745 /* required only at boot or S3 and S4 resume time */
3746 if (!spec->done_hp_init ||
3747 is_s3_resume(codec) ||
3748 is_s4_resume(codec)) {
3749 alc285_hp_init(codec);
3750 spec->done_hp_init = true;
3751 }
3752
3753 if (!hp_pin)
3754 hp_pin = 0x21;
3755 msleep(30);
3756
3757 hp1_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3758 hp2_pin_sense = snd_hda_jack_detect(codec, 0x16);
3759
3760 if (hp1_pin_sense || hp2_pin_sense)
3761 msleep(2);
3762
3763 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x1); /* Low power */
3764
3765 if (hp1_pin_sense || spec->ultra_low_power)
3766 snd_hda_codec_write(codec, hp_pin, 0,
3767 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3768 if (hp2_pin_sense)
3769 snd_hda_codec_write(codec, 0x16, 0,
3770 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3771
3772 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
3773 msleep(85);
3774
3775 if (hp1_pin_sense || spec->ultra_low_power)
3776 snd_hda_codec_write(codec, hp_pin, 0,
3777 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3778 if (hp2_pin_sense)
3779 snd_hda_codec_write(codec, 0x16, 0,
3780 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3781
3782 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
3783 msleep(100);
3784
3785 alc_update_coef_idx(codec, 0x4a, 3 << 10, 0);
3786 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x4); /* Hight power */
3787}
3788
3789static void alc225_shutup(struct hda_codec *codec)
3790{
3791 struct alc_spec *spec = codec->spec;
3792 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3793 bool hp1_pin_sense, hp2_pin_sense;
3794
3795 if (!hp_pin)
3796 hp_pin = 0x21;
3797
3798 alc_disable_headset_jack_key(codec);
3799 /* 3k pull low control for Headset jack. */
3800 alc_update_coef_idx(codec, 0x4a, 0, 3 << 10);
3801
3802 hp1_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3803 hp2_pin_sense = snd_hda_jack_detect(codec, 0x16);
3804
3805 if (hp1_pin_sense || hp2_pin_sense)
3806 msleep(2);
3807
3808 if (hp1_pin_sense || spec->ultra_low_power)
3809 snd_hda_codec_write(codec, hp_pin, 0,
3810 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3811 if (hp2_pin_sense)
3812 snd_hda_codec_write(codec, 0x16, 0,
3813 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3814
3815 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
3816 msleep(85);
3817
3818 if (hp1_pin_sense || spec->ultra_low_power)
3819 snd_hda_codec_write(codec, hp_pin, 0,
3820 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3821 if (hp2_pin_sense)
3822 snd_hda_codec_write(codec, 0x16, 0,
3823 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3824
3825 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
3826 msleep(100);
3827
3828 alc_auto_setup_eapd(codec, false);
3829 alc_shutup_pins(codec);
3830 if (spec->ultra_low_power) {
3831 msleep(50);
3832 alc_update_coef_idx(codec, 0x08, 0x0f << 2, 0x0c << 2);
3833 alc_update_coef_idx(codec, 0x0e, 7<<6, 0);
3834 alc_update_coef_idx(codec, 0x33, 1<<11, 1<<11);
3835 alc_update_coef_idx(codec, 0x4a, 3<<4, 2<<4);
3836 msleep(30);
3837 }
3838
3839 alc_update_coef_idx(codec, 0x4a, 3 << 10, 0);
3840 alc_enable_headset_jack_key(codec);
3841}
3842
3843static void alc_default_init(struct hda_codec *codec)
3844{
3845 struct alc_spec *spec = codec->spec;
3846 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3847 bool hp_pin_sense;
3848
3849 if (!hp_pin)
3850 return;
3851
3852 msleep(30);
3853
3854 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3855
3856 if (hp_pin_sense)
3857 msleep(2);
3858
3859 snd_hda_codec_write(codec, hp_pin, 0,
3860 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3861
3862 if (hp_pin_sense)
3863 msleep(85);
3864
3865 snd_hda_codec_write(codec, hp_pin, 0,
3866 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3867
3868 if (hp_pin_sense)
3869 msleep(100);
3870}
3871
3872static void alc_default_shutup(struct hda_codec *codec)
3873{
3874 struct alc_spec *spec = codec->spec;
3875 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3876 bool hp_pin_sense;
3877
3878 if (!hp_pin) {
3879 alc269_shutup(codec);
3880 return;
3881 }
3882
3883 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3884
3885 if (hp_pin_sense)
3886 msleep(2);
3887
3888 snd_hda_codec_write(codec, hp_pin, 0,
3889 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3890
3891 if (hp_pin_sense)
3892 msleep(85);
3893
3894 if (!spec->no_shutup_pins)
3895 snd_hda_codec_write(codec, hp_pin, 0,
3896 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3897
3898 if (hp_pin_sense)
3899 msleep(100);
3900
3901 alc_auto_setup_eapd(codec, false);
3902 alc_shutup_pins(codec);
3903}
3904
3905static void alc294_hp_init(struct hda_codec *codec)
3906{
3907 struct alc_spec *spec = codec->spec;
3908 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3909 int i, val;
3910
3911 if (!hp_pin)
3912 return;
3913
3914 snd_hda_codec_write(codec, hp_pin, 0,
3915 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3916
3917 msleep(100);
3918
3919 if (!spec->no_shutup_pins)
3920 snd_hda_codec_write(codec, hp_pin, 0,
3921 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3922
3923 alc_update_coef_idx(codec, 0x6f, 0x000f, 0);/* Set HP depop to manual mode */
3924 alc_update_coefex_idx(codec, 0x58, 0x00, 0x8000, 0x8000); /* HP depop procedure start */
3925
3926 /* Wait for depop procedure finish */
3927 val = alc_read_coefex_idx(codec, 0x58, 0x01);
3928 for (i = 0; i < 20 && val & 0x0080; i++) {
3929 msleep(50);
3930 val = alc_read_coefex_idx(codec, 0x58, 0x01);
3931 }
3932 /* Set HP depop to auto mode */
3933 alc_update_coef_idx(codec, 0x6f, 0x000f, 0x000b);
3934 msleep(50);
3935}
3936
3937static void alc294_init(struct hda_codec *codec)
3938{
3939 struct alc_spec *spec = codec->spec;
3940
3941 /* required only at boot or S4 resume time */
3942 if (!spec->done_hp_init ||
3943 codec->core.dev.power.power_state.event == PM_EVENT_RESTORE) {
3944 alc294_hp_init(codec);
3945 spec->done_hp_init = true;
3946 }
3947 alc_default_init(codec);
3948}
3949
3950static void alc5505_coef_set(struct hda_codec *codec, unsigned int index_reg,
3951 unsigned int val)
3952{
3953 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1);
3954 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val & 0xffff); /* LSB */
3955 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val >> 16); /* MSB */
3956}
3957
3958static int alc5505_coef_get(struct hda_codec *codec, unsigned int index_reg)
3959{
3960 unsigned int val;
3961
3962 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1);
3963 val = snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0)
3964 & 0xffff;
3965 val |= snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0)
3966 << 16;
3967 return val;
3968}
3969
3970static void alc5505_dsp_halt(struct hda_codec *codec)
3971{
3972 unsigned int val;
3973
3974 alc5505_coef_set(codec, 0x3000, 0x000c); /* DSP CPU stop */
3975 alc5505_coef_set(codec, 0x880c, 0x0008); /* DDR enter self refresh */
3976 alc5505_coef_set(codec, 0x61c0, 0x11110080); /* Clock control for PLL and CPU */
3977 alc5505_coef_set(codec, 0x6230, 0xfc0d4011); /* Disable Input OP */
3978 alc5505_coef_set(codec, 0x61b4, 0x040a2b03); /* Stop PLL2 */
3979 alc5505_coef_set(codec, 0x61b0, 0x00005b17); /* Stop PLL1 */
3980 alc5505_coef_set(codec, 0x61b8, 0x04133303); /* Stop PLL3 */
3981 val = alc5505_coef_get(codec, 0x6220);
3982 alc5505_coef_set(codec, 0x6220, (val | 0x3000)); /* switch Ringbuffer clock to DBUS clock */
3983}
3984
3985static void alc5505_dsp_back_from_halt(struct hda_codec *codec)
3986{
3987 alc5505_coef_set(codec, 0x61b8, 0x04133302);
3988 alc5505_coef_set(codec, 0x61b0, 0x00005b16);
3989 alc5505_coef_set(codec, 0x61b4, 0x040a2b02);
3990 alc5505_coef_set(codec, 0x6230, 0xf80d4011);
3991 alc5505_coef_set(codec, 0x6220, 0x2002010f);
3992 alc5505_coef_set(codec, 0x880c, 0x00000004);
3993}
3994
3995static void alc5505_dsp_init(struct hda_codec *codec)
3996{
3997 unsigned int val;
3998
3999 alc5505_dsp_halt(codec);
4000 alc5505_dsp_back_from_halt(codec);
4001 alc5505_coef_set(codec, 0x61b0, 0x5b14); /* PLL1 control */
4002 alc5505_coef_set(codec, 0x61b0, 0x5b16);
4003 alc5505_coef_set(codec, 0x61b4, 0x04132b00); /* PLL2 control */
4004 alc5505_coef_set(codec, 0x61b4, 0x04132b02);
4005 alc5505_coef_set(codec, 0x61b8, 0x041f3300); /* PLL3 control*/
4006 alc5505_coef_set(codec, 0x61b8, 0x041f3302);
4007 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_CODEC_RESET, 0); /* Function reset */
4008 alc5505_coef_set(codec, 0x61b8, 0x041b3302);
4009 alc5505_coef_set(codec, 0x61b8, 0x04173302);
4010 alc5505_coef_set(codec, 0x61b8, 0x04163302);
4011 alc5505_coef_set(codec, 0x8800, 0x348b328b); /* DRAM control */
4012 alc5505_coef_set(codec, 0x8808, 0x00020022); /* DRAM control */
4013 alc5505_coef_set(codec, 0x8818, 0x00000400); /* DRAM control */
4014
4015 val = alc5505_coef_get(codec, 0x6200) >> 16; /* Read revision ID */
4016 if (val <= 3)
4017 alc5505_coef_set(codec, 0x6220, 0x2002010f); /* I/O PAD Configuration */
4018 else
4019 alc5505_coef_set(codec, 0x6220, 0x6002018f);
4020
4021 alc5505_coef_set(codec, 0x61ac, 0x055525f0); /**/
4022 alc5505_coef_set(codec, 0x61c0, 0x12230080); /* Clock control */
4023 alc5505_coef_set(codec, 0x61b4, 0x040e2b02); /* PLL2 control */
4024 alc5505_coef_set(codec, 0x61bc, 0x010234f8); /* OSC Control */
4025 alc5505_coef_set(codec, 0x880c, 0x00000004); /* DRAM Function control */
4026 alc5505_coef_set(codec, 0x880c, 0x00000003);
4027 alc5505_coef_set(codec, 0x880c, 0x00000010);
4028
4029#ifdef HALT_REALTEK_ALC5505
4030 alc5505_dsp_halt(codec);
4031#endif
4032}
4033
4034#ifdef HALT_REALTEK_ALC5505
4035#define alc5505_dsp_suspend(codec) do { } while (0) /* NOP */
4036#define alc5505_dsp_resume(codec) do { } while (0) /* NOP */
4037#else
4038#define alc5505_dsp_suspend(codec) alc5505_dsp_halt(codec)
4039#define alc5505_dsp_resume(codec) alc5505_dsp_back_from_halt(codec)
4040#endif
4041
4042#ifdef CONFIG_PM
4043static int alc269_suspend(struct hda_codec *codec)
4044{
4045 struct alc_spec *spec = codec->spec;
4046
4047 if (spec->has_alc5505_dsp)
4048 alc5505_dsp_suspend(codec);
4049
4050 return alc_suspend(codec);
4051}
4052
4053static int alc269_resume(struct hda_codec *codec)
4054{
4055 struct alc_spec *spec = codec->spec;
4056
4057 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
4058 alc269vb_toggle_power_output(codec, 0);
4059 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
4060 (alc_get_coef0(codec) & 0x00ff) == 0x018) {
4061 msleep(150);
4062 }
4063
4064 codec->patch_ops.init(codec);
4065
4066 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
4067 alc269vb_toggle_power_output(codec, 1);
4068 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
4069 (alc_get_coef0(codec) & 0x00ff) == 0x017) {
4070 msleep(200);
4071 }
4072
4073 snd_hda_regmap_sync(codec);
4074 hda_call_check_power_status(codec, 0x01);
4075
4076 /* on some machine, the BIOS will clear the codec gpio data when enter
4077 * suspend, and won't restore the data after resume, so we restore it
4078 * in the driver.
4079 */
4080 if (spec->gpio_data)
4081 alc_write_gpio_data(codec);
4082
4083 if (spec->has_alc5505_dsp)
4084 alc5505_dsp_resume(codec);
4085
4086 return 0;
4087}
4088#endif /* CONFIG_PM */
4089
4090static void alc269_fixup_pincfg_no_hp_to_lineout(struct hda_codec *codec,
4091 const struct hda_fixup *fix, int action)
4092{
4093 struct alc_spec *spec = codec->spec;
4094
4095 if (action == HDA_FIXUP_ACT_PRE_PROBE)
4096 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
4097}
4098
4099static void alc269_fixup_pincfg_U7x7_headset_mic(struct hda_codec *codec,
4100 const struct hda_fixup *fix,
4101 int action)
4102{
4103 unsigned int cfg_headphone = snd_hda_codec_get_pincfg(codec, 0x21);
4104 unsigned int cfg_headset_mic = snd_hda_codec_get_pincfg(codec, 0x19);
4105
4106 if (cfg_headphone && cfg_headset_mic == 0x411111f0)
4107 snd_hda_codec_set_pincfg(codec, 0x19,
4108 (cfg_headphone & ~AC_DEFCFG_DEVICE) |
4109 (AC_JACK_MIC_IN << AC_DEFCFG_DEVICE_SHIFT));
4110}
4111
4112static void alc269_fixup_hweq(struct hda_codec *codec,
4113 const struct hda_fixup *fix, int action)
4114{
4115 if (action == HDA_FIXUP_ACT_INIT)
4116 alc_update_coef_idx(codec, 0x1e, 0, 0x80);
4117}
4118
4119static void alc269_fixup_headset_mic(struct hda_codec *codec,
4120 const struct hda_fixup *fix, int action)
4121{
4122 struct alc_spec *spec = codec->spec;
4123
4124 if (action == HDA_FIXUP_ACT_PRE_PROBE)
4125 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
4126}
4127
4128static void alc271_fixup_dmic(struct hda_codec *codec,
4129 const struct hda_fixup *fix, int action)
4130{
4131 static const struct hda_verb verbs[] = {
4132 {0x20, AC_VERB_SET_COEF_INDEX, 0x0d},
4133 {0x20, AC_VERB_SET_PROC_COEF, 0x4000},
4134 {}
4135 };
4136 unsigned int cfg;
4137
4138 if (strcmp(codec->core.chip_name, "ALC271X") &&
4139 strcmp(codec->core.chip_name, "ALC269VB"))
4140 return;
4141 cfg = snd_hda_codec_get_pincfg(codec, 0x12);
4142 if (get_defcfg_connect(cfg) == AC_JACK_PORT_FIXED)
4143 snd_hda_sequence_write(codec, verbs);
4144}
4145
4146/* Fix the speaker amp after resume, etc */
4147static void alc269vb_fixup_aspire_e1_coef(struct hda_codec *codec,
4148 const struct hda_fixup *fix,
4149 int action)
4150{
4151 if (action == HDA_FIXUP_ACT_INIT)
4152 alc_update_coef_idx(codec, 0x0d, 0x6000, 0x6000);
4153}
4154
4155static void alc269_fixup_pcm_44k(struct hda_codec *codec,
4156 const struct hda_fixup *fix, int action)
4157{
4158 struct alc_spec *spec = codec->spec;
4159
4160 if (action != HDA_FIXUP_ACT_PROBE)
4161 return;
4162
4163 /* Due to a hardware problem on Lenovo Ideadpad, we need to
4164 * fix the sample rate of analog I/O to 44.1kHz
4165 */
4166 spec->gen.stream_analog_playback = &alc269_44k_pcm_analog_playback;
4167 spec->gen.stream_analog_capture = &alc269_44k_pcm_analog_capture;
4168}
4169
4170static void alc269_fixup_stereo_dmic(struct hda_codec *codec,
4171 const struct hda_fixup *fix, int action)
4172{
4173 /* The digital-mic unit sends PDM (differential signal) instead of
4174 * the standard PCM, thus you can't record a valid mono stream as is.
4175 * Below is a workaround specific to ALC269 to control the dmic
4176 * signal source as mono.
4177 */
4178 if (action == HDA_FIXUP_ACT_INIT)
4179 alc_update_coef_idx(codec, 0x07, 0, 0x80);
4180}
4181
4182static void alc269_quanta_automute(struct hda_codec *codec)
4183{
4184 snd_hda_gen_update_outputs(codec);
4185
4186 alc_write_coef_idx(codec, 0x0c, 0x680);
4187 alc_write_coef_idx(codec, 0x0c, 0x480);
4188}
4189
4190static void alc269_fixup_quanta_mute(struct hda_codec *codec,
4191 const struct hda_fixup *fix, int action)
4192{
4193 struct alc_spec *spec = codec->spec;
4194 if (action != HDA_FIXUP_ACT_PROBE)
4195 return;
4196 spec->gen.automute_hook = alc269_quanta_automute;
4197}
4198
4199static void alc269_x101_hp_automute_hook(struct hda_codec *codec,
4200 struct hda_jack_callback *jack)
4201{
4202 struct alc_spec *spec = codec->spec;
4203 int vref;
4204 msleep(200);
4205 snd_hda_gen_hp_automute(codec, jack);
4206
4207 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
4208 msleep(100);
4209 snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
4210 vref);
4211 msleep(500);
4212 snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
4213 vref);
4214}
4215
4216/*
4217 * Magic sequence to make Huawei Matebook X right speaker working (bko#197801)
4218 */
4219struct hda_alc298_mbxinit {
4220 unsigned char value_0x23;
4221 unsigned char value_0x25;
4222};
4223
4224static void alc298_huawei_mbx_stereo_seq(struct hda_codec *codec,
4225 const struct hda_alc298_mbxinit *initval,
4226 bool first)
4227{
4228 snd_hda_codec_write(codec, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x0);
4229 alc_write_coef_idx(codec, 0x26, 0xb000);
4230
4231 if (first)
4232 snd_hda_codec_write(codec, 0x21, 0, AC_VERB_GET_PIN_SENSE, 0x0);
4233
4234 snd_hda_codec_write(codec, 0x6, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x80);
4235 alc_write_coef_idx(codec, 0x26, 0xf000);
4236 alc_write_coef_idx(codec, 0x23, initval->value_0x23);
4237
4238 if (initval->value_0x23 != 0x1e)
4239 alc_write_coef_idx(codec, 0x25, initval->value_0x25);
4240
4241 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0x26);
4242 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, 0xb010);
4243}
4244
4245static void alc298_fixup_huawei_mbx_stereo(struct hda_codec *codec,
4246 const struct hda_fixup *fix,
4247 int action)
4248{
4249 /* Initialization magic */
4250 static const struct hda_alc298_mbxinit dac_init[] = {
4251 {0x0c, 0x00}, {0x0d, 0x00}, {0x0e, 0x00}, {0x0f, 0x00},
4252 {0x10, 0x00}, {0x1a, 0x40}, {0x1b, 0x82}, {0x1c, 0x00},
4253 {0x1d, 0x00}, {0x1e, 0x00}, {0x1f, 0x00},
4254 {0x20, 0xc2}, {0x21, 0xc8}, {0x22, 0x26}, {0x23, 0x24},
4255 {0x27, 0xff}, {0x28, 0xff}, {0x29, 0xff}, {0x2a, 0x8f},
4256 {0x2b, 0x02}, {0x2c, 0x48}, {0x2d, 0x34}, {0x2e, 0x00},
4257 {0x2f, 0x00},
4258 {0x30, 0x00}, {0x31, 0x00}, {0x32, 0x00}, {0x33, 0x00},
4259 {0x34, 0x00}, {0x35, 0x01}, {0x36, 0x93}, {0x37, 0x0c},
4260 {0x38, 0x00}, {0x39, 0x00}, {0x3a, 0xf8}, {0x38, 0x80},
4261 {}
4262 };
4263 const struct hda_alc298_mbxinit *seq;
4264
4265 if (action != HDA_FIXUP_ACT_INIT)
4266 return;
4267
4268 /* Start */
4269 snd_hda_codec_write(codec, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x00);
4270 snd_hda_codec_write(codec, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x80);
4271 alc_write_coef_idx(codec, 0x26, 0xf000);
4272 alc_write_coef_idx(codec, 0x22, 0x31);
4273 alc_write_coef_idx(codec, 0x23, 0x0b);
4274 alc_write_coef_idx(codec, 0x25, 0x00);
4275 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0x26);
4276 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, 0xb010);
4277
4278 for (seq = dac_init; seq->value_0x23; seq++)
4279 alc298_huawei_mbx_stereo_seq(codec, seq, seq == dac_init);
4280}
4281
4282static void alc269_fixup_x101_headset_mic(struct hda_codec *codec,
4283 const struct hda_fixup *fix, int action)
4284{
4285 struct alc_spec *spec = codec->spec;
4286 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4287 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
4288 spec->gen.hp_automute_hook = alc269_x101_hp_automute_hook;
4289 }
4290}
4291
4292static void alc_update_vref_led(struct hda_codec *codec, hda_nid_t pin,
4293 bool polarity, bool on)
4294{
4295 unsigned int pinval;
4296
4297 if (!pin)
4298 return;
4299 if (polarity)
4300 on = !on;
4301 pinval = snd_hda_codec_get_pin_target(codec, pin);
4302 pinval &= ~AC_PINCTL_VREFEN;
4303 pinval |= on ? AC_PINCTL_VREF_80 : AC_PINCTL_VREF_HIZ;
4304 /* temporarily power up/down for setting VREF */
4305 snd_hda_power_up_pm(codec);
4306 snd_hda_set_pin_ctl_cache(codec, pin, pinval);
4307 snd_hda_power_down_pm(codec);
4308}
4309
4310/* update mute-LED according to the speaker mute state via mic VREF pin */
4311static int vref_mute_led_set(struct led_classdev *led_cdev,
4312 enum led_brightness brightness)
4313{
4314 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
4315 struct alc_spec *spec = codec->spec;
4316
4317 alc_update_vref_led(codec, spec->mute_led_nid,
4318 spec->mute_led_polarity, brightness);
4319 return 0;
4320}
4321
4322/* Make sure the led works even in runtime suspend */
4323static unsigned int led_power_filter(struct hda_codec *codec,
4324 hda_nid_t nid,
4325 unsigned int power_state)
4326{
4327 struct alc_spec *spec = codec->spec;
4328
4329 if (power_state != AC_PWRST_D3 || nid == 0 ||
4330 (nid != spec->mute_led_nid && nid != spec->cap_mute_led_nid))
4331 return power_state;
4332
4333 /* Set pin ctl again, it might have just been set to 0 */
4334 snd_hda_set_pin_ctl(codec, nid,
4335 snd_hda_codec_get_pin_target(codec, nid));
4336
4337 return snd_hda_gen_path_power_filter(codec, nid, power_state);
4338}
4339
4340static void alc269_fixup_hp_mute_led(struct hda_codec *codec,
4341 const struct hda_fixup *fix, int action)
4342{
4343 struct alc_spec *spec = codec->spec;
4344 const struct dmi_device *dev = NULL;
4345
4346 if (action != HDA_FIXUP_ACT_PRE_PROBE)
4347 return;
4348
4349 while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
4350 int pol, pin;
4351 if (sscanf(dev->name, "HP_Mute_LED_%d_%x", &pol, &pin) != 2)
4352 continue;
4353 if (pin < 0x0a || pin >= 0x10)
4354 break;
4355 spec->mute_led_polarity = pol;
4356 spec->mute_led_nid = pin - 0x0a + 0x18;
4357 snd_hda_gen_add_mute_led_cdev(codec, vref_mute_led_set);
4358 codec->power_filter = led_power_filter;
4359 codec_dbg(codec,
4360 "Detected mute LED for %x:%d\n", spec->mute_led_nid,
4361 spec->mute_led_polarity);
4362 break;
4363 }
4364}
4365
4366static void alc269_fixup_hp_mute_led_micx(struct hda_codec *codec,
4367 const struct hda_fixup *fix,
4368 int action, hda_nid_t pin)
4369{
4370 struct alc_spec *spec = codec->spec;
4371
4372 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4373 spec->mute_led_polarity = 0;
4374 spec->mute_led_nid = pin;
4375 snd_hda_gen_add_mute_led_cdev(codec, vref_mute_led_set);
4376 codec->power_filter = led_power_filter;
4377 }
4378}
4379
4380static void alc269_fixup_hp_mute_led_mic1(struct hda_codec *codec,
4381 const struct hda_fixup *fix, int action)
4382{
4383 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x18);
4384}
4385
4386static void alc269_fixup_hp_mute_led_mic2(struct hda_codec *codec,
4387 const struct hda_fixup *fix, int action)
4388{
4389 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x19);
4390}
4391
4392static void alc269_fixup_hp_mute_led_mic3(struct hda_codec *codec,
4393 const struct hda_fixup *fix, int action)
4394{
4395 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x1b);
4396}
4397
4398/* update LED status via GPIO */
4399static void alc_update_gpio_led(struct hda_codec *codec, unsigned int mask,
4400 int polarity, bool enabled)
4401{
4402 if (polarity)
4403 enabled = !enabled;
4404 alc_update_gpio_data(codec, mask, !enabled); /* muted -> LED on */
4405}
4406
4407/* turn on/off mute LED via GPIO per vmaster hook */
4408static int gpio_mute_led_set(struct led_classdev *led_cdev,
4409 enum led_brightness brightness)
4410{
4411 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
4412 struct alc_spec *spec = codec->spec;
4413
4414 alc_update_gpio_led(codec, spec->gpio_mute_led_mask,
4415 spec->mute_led_polarity, !brightness);
4416 return 0;
4417}
4418
4419/* turn on/off mic-mute LED via GPIO per capture hook */
4420static int micmute_led_set(struct led_classdev *led_cdev,
4421 enum led_brightness brightness)
4422{
4423 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
4424 struct alc_spec *spec = codec->spec;
4425
4426 alc_update_gpio_led(codec, spec->gpio_mic_led_mask,
4427 spec->micmute_led_polarity, !brightness);
4428 return 0;
4429}
4430
4431/* setup mute and mic-mute GPIO bits, add hooks appropriately */
4432static void alc_fixup_hp_gpio_led(struct hda_codec *codec,
4433 int action,
4434 unsigned int mute_mask,
4435 unsigned int micmute_mask)
4436{
4437 struct alc_spec *spec = codec->spec;
4438
4439 alc_fixup_gpio(codec, action, mute_mask | micmute_mask);
4440
4441 if (action != HDA_FIXUP_ACT_PRE_PROBE)
4442 return;
4443 if (mute_mask) {
4444 spec->gpio_mute_led_mask = mute_mask;
4445 snd_hda_gen_add_mute_led_cdev(codec, gpio_mute_led_set);
4446 }
4447 if (micmute_mask) {
4448 spec->gpio_mic_led_mask = micmute_mask;
4449 snd_hda_gen_add_micmute_led_cdev(codec, micmute_led_set);
4450 }
4451}
4452
4453static void alc236_fixup_hp_gpio_led(struct hda_codec *codec,
4454 const struct hda_fixup *fix, int action)
4455{
4456 alc_fixup_hp_gpio_led(codec, action, 0x02, 0x01);
4457}
4458
4459static void alc269_fixup_hp_gpio_led(struct hda_codec *codec,
4460 const struct hda_fixup *fix, int action)
4461{
4462 alc_fixup_hp_gpio_led(codec, action, 0x08, 0x10);
4463}
4464
4465static void alc285_fixup_hp_gpio_led(struct hda_codec *codec,
4466 const struct hda_fixup *fix, int action)
4467{
4468 alc_fixup_hp_gpio_led(codec, action, 0x04, 0x01);
4469}
4470
4471static void alc286_fixup_hp_gpio_led(struct hda_codec *codec,
4472 const struct hda_fixup *fix, int action)
4473{
4474 alc_fixup_hp_gpio_led(codec, action, 0x02, 0x20);
4475}
4476
4477static void alc287_fixup_hp_gpio_led(struct hda_codec *codec,
4478 const struct hda_fixup *fix, int action)
4479{
4480 alc_fixup_hp_gpio_led(codec, action, 0x10, 0);
4481}
4482
4483static void alc245_fixup_hp_gpio_led(struct hda_codec *codec,
4484 const struct hda_fixup *fix, int action)
4485{
4486 struct alc_spec *spec = codec->spec;
4487
4488 if (action == HDA_FIXUP_ACT_PRE_PROBE)
4489 spec->micmute_led_polarity = 1;
4490 alc_fixup_hp_gpio_led(codec, action, 0, 0x04);
4491}
4492
4493/* turn on/off mic-mute LED per capture hook via VREF change */
4494static int vref_micmute_led_set(struct led_classdev *led_cdev,
4495 enum led_brightness brightness)
4496{
4497 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
4498 struct alc_spec *spec = codec->spec;
4499
4500 alc_update_vref_led(codec, spec->cap_mute_led_nid,
4501 spec->micmute_led_polarity, brightness);
4502 return 0;
4503}
4504
4505static void alc269_fixup_hp_gpio_mic1_led(struct hda_codec *codec,
4506 const struct hda_fixup *fix, int action)
4507{
4508 struct alc_spec *spec = codec->spec;
4509
4510 alc_fixup_hp_gpio_led(codec, action, 0x08, 0);
4511 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4512 /* Like hp_gpio_mic1_led, but also needs GPIO4 low to
4513 * enable headphone amp
4514 */
4515 spec->gpio_mask |= 0x10;
4516 spec->gpio_dir |= 0x10;
4517 spec->cap_mute_led_nid = 0x18;
4518 snd_hda_gen_add_micmute_led_cdev(codec, vref_micmute_led_set);
4519 codec->power_filter = led_power_filter;
4520 }
4521}
4522
4523static void alc280_fixup_hp_gpio4(struct hda_codec *codec,
4524 const struct hda_fixup *fix, int action)
4525{
4526 struct alc_spec *spec = codec->spec;
4527
4528 alc_fixup_hp_gpio_led(codec, action, 0x08, 0);
4529 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4530 spec->cap_mute_led_nid = 0x18;
4531 snd_hda_gen_add_micmute_led_cdev(codec, vref_micmute_led_set);
4532 codec->power_filter = led_power_filter;
4533 }
4534}
4535
4536/* HP Spectre x360 14 model needs a unique workaround for enabling the amp;
4537 * it needs to toggle the GPIO0 once on and off at each time (bko#210633)
4538 */
4539static void alc245_fixup_hp_x360_amp(struct hda_codec *codec,
4540 const struct hda_fixup *fix, int action)
4541{
4542 struct alc_spec *spec = codec->spec;
4543
4544 switch (action) {
4545 case HDA_FIXUP_ACT_PRE_PROBE:
4546 spec->gpio_mask |= 0x01;
4547 spec->gpio_dir |= 0x01;
4548 break;
4549 case HDA_FIXUP_ACT_INIT:
4550 /* need to toggle GPIO to enable the amp */
4551 alc_update_gpio_data(codec, 0x01, true);
4552 msleep(100);
4553 alc_update_gpio_data(codec, 0x01, false);
4554 break;
4555 }
4556}
4557
4558/* toggle GPIO2 at each time stream is started; we use PREPARE state instead */
4559static void alc274_hp_envy_pcm_hook(struct hda_pcm_stream *hinfo,
4560 struct hda_codec *codec,
4561 struct snd_pcm_substream *substream,
4562 int action)
4563{
4564 switch (action) {
4565 case HDA_GEN_PCM_ACT_PREPARE:
4566 alc_update_gpio_data(codec, 0x04, true);
4567 break;
4568 case HDA_GEN_PCM_ACT_CLEANUP:
4569 alc_update_gpio_data(codec, 0x04, false);
4570 break;
4571 }
4572}
4573
4574static void alc274_fixup_hp_envy_gpio(struct hda_codec *codec,
4575 const struct hda_fixup *fix,
4576 int action)
4577{
4578 struct alc_spec *spec = codec->spec;
4579
4580 if (action == HDA_FIXUP_ACT_PROBE) {
4581 spec->gpio_mask |= 0x04;
4582 spec->gpio_dir |= 0x04;
4583 spec->gen.pcm_playback_hook = alc274_hp_envy_pcm_hook;
4584 }
4585}
4586
4587static void alc_update_coef_led(struct hda_codec *codec,
4588 struct alc_coef_led *led,
4589 bool polarity, bool on)
4590{
4591 if (polarity)
4592 on = !on;
4593 /* temporarily power up/down for setting COEF bit */
4594 alc_update_coef_idx(codec, led->idx, led->mask,
4595 on ? led->on : led->off);
4596}
4597
4598/* update mute-LED according to the speaker mute state via COEF bit */
4599static int coef_mute_led_set(struct led_classdev *led_cdev,
4600 enum led_brightness brightness)
4601{
4602 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
4603 struct alc_spec *spec = codec->spec;
4604
4605 alc_update_coef_led(codec, &spec->mute_led_coef,
4606 spec->mute_led_polarity, brightness);
4607 return 0;
4608}
4609
4610static void alc285_fixup_hp_mute_led_coefbit(struct hda_codec *codec,
4611 const struct hda_fixup *fix,
4612 int action)
4613{
4614 struct alc_spec *spec = codec->spec;
4615
4616 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4617 spec->mute_led_polarity = 0;
4618 spec->mute_led_coef.idx = 0x0b;
4619 spec->mute_led_coef.mask = 1 << 3;
4620 spec->mute_led_coef.on = 1 << 3;
4621 spec->mute_led_coef.off = 0;
4622 snd_hda_gen_add_mute_led_cdev(codec, coef_mute_led_set);
4623 }
4624}
4625
4626static void alc236_fixup_hp_mute_led_coefbit(struct hda_codec *codec,
4627 const struct hda_fixup *fix,
4628 int action)
4629{
4630 struct alc_spec *spec = codec->spec;
4631
4632 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4633 spec->mute_led_polarity = 0;
4634 spec->mute_led_coef.idx = 0x34;
4635 spec->mute_led_coef.mask = 1 << 5;
4636 spec->mute_led_coef.on = 0;
4637 spec->mute_led_coef.off = 1 << 5;
4638 snd_hda_gen_add_mute_led_cdev(codec, coef_mute_led_set);
4639 }
4640}
4641
4642static void alc236_fixup_hp_mute_led_coefbit2(struct hda_codec *codec,
4643 const struct hda_fixup *fix, int action)
4644{
4645 struct alc_spec *spec = codec->spec;
4646
4647 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4648 spec->mute_led_polarity = 0;
4649 spec->mute_led_coef.idx = 0x07;
4650 spec->mute_led_coef.mask = 1;
4651 spec->mute_led_coef.on = 1;
4652 spec->mute_led_coef.off = 0;
4653 snd_hda_gen_add_mute_led_cdev(codec, coef_mute_led_set);
4654 }
4655}
4656
4657static void alc245_fixup_hp_mute_led_coefbit(struct hda_codec *codec,
4658 const struct hda_fixup *fix,
4659 int action)
4660{
4661 struct alc_spec *spec = codec->spec;
4662
4663 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4664 spec->mute_led_polarity = 0;
4665 spec->mute_led_coef.idx = 0x0b;
4666 spec->mute_led_coef.mask = 3 << 2;
4667 spec->mute_led_coef.on = 2 << 2;
4668 spec->mute_led_coef.off = 1 << 2;
4669 snd_hda_gen_add_mute_led_cdev(codec, coef_mute_led_set);
4670 }
4671}
4672
4673/* turn on/off mic-mute LED per capture hook by coef bit */
4674static int coef_micmute_led_set(struct led_classdev *led_cdev,
4675 enum led_brightness brightness)
4676{
4677 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
4678 struct alc_spec *spec = codec->spec;
4679
4680 alc_update_coef_led(codec, &spec->mic_led_coef,
4681 spec->micmute_led_polarity, brightness);
4682 return 0;
4683}
4684
4685static void alc285_fixup_hp_coef_micmute_led(struct hda_codec *codec,
4686 const struct hda_fixup *fix, int action)
4687{
4688 struct alc_spec *spec = codec->spec;
4689
4690 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4691 spec->mic_led_coef.idx = 0x19;
4692 spec->mic_led_coef.mask = 1 << 13;
4693 spec->mic_led_coef.on = 1 << 13;
4694 spec->mic_led_coef.off = 0;
4695 snd_hda_gen_add_micmute_led_cdev(codec, coef_micmute_led_set);
4696 }
4697}
4698
4699static void alc285_fixup_hp_gpio_micmute_led(struct hda_codec *codec,
4700 const struct hda_fixup *fix, int action)
4701{
4702 struct alc_spec *spec = codec->spec;
4703
4704 if (action == HDA_FIXUP_ACT_PRE_PROBE)
4705 spec->micmute_led_polarity = 1;
4706 alc_fixup_hp_gpio_led(codec, action, 0, 0x04);
4707}
4708
4709static void alc236_fixup_hp_coef_micmute_led(struct hda_codec *codec,
4710 const struct hda_fixup *fix, int action)
4711{
4712 struct alc_spec *spec = codec->spec;
4713
4714 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4715 spec->mic_led_coef.idx = 0x35;
4716 spec->mic_led_coef.mask = 3 << 2;
4717 spec->mic_led_coef.on = 2 << 2;
4718 spec->mic_led_coef.off = 1 << 2;
4719 snd_hda_gen_add_micmute_led_cdev(codec, coef_micmute_led_set);
4720 }
4721}
4722
4723static void alc285_fixup_hp_mute_led(struct hda_codec *codec,
4724 const struct hda_fixup *fix, int action)
4725{
4726 alc285_fixup_hp_mute_led_coefbit(codec, fix, action);
4727 alc285_fixup_hp_coef_micmute_led(codec, fix, action);
4728}
4729
4730static void alc285_fixup_hp_spectre_x360_mute_led(struct hda_codec *codec,
4731 const struct hda_fixup *fix, int action)
4732{
4733 alc285_fixup_hp_mute_led_coefbit(codec, fix, action);
4734 alc285_fixup_hp_gpio_micmute_led(codec, fix, action);
4735}
4736
4737static void alc236_fixup_hp_mute_led(struct hda_codec *codec,
4738 const struct hda_fixup *fix, int action)
4739{
4740 alc236_fixup_hp_mute_led_coefbit(codec, fix, action);
4741 alc236_fixup_hp_coef_micmute_led(codec, fix, action);
4742}
4743
4744static void alc236_fixup_hp_micmute_led_vref(struct hda_codec *codec,
4745 const struct hda_fixup *fix, int action)
4746{
4747 struct alc_spec *spec = codec->spec;
4748
4749 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4750 spec->cap_mute_led_nid = 0x1a;
4751 snd_hda_gen_add_micmute_led_cdev(codec, vref_micmute_led_set);
4752 codec->power_filter = led_power_filter;
4753 }
4754}
4755
4756static void alc236_fixup_hp_mute_led_micmute_vref(struct hda_codec *codec,
4757 const struct hda_fixup *fix, int action)
4758{
4759 alc236_fixup_hp_mute_led_coefbit(codec, fix, action);
4760 alc236_fixup_hp_micmute_led_vref(codec, fix, action);
4761}
4762
4763static inline void alc298_samsung_write_coef_pack(struct hda_codec *codec,
4764 const unsigned short coefs[2])
4765{
4766 alc_write_coef_idx(codec, 0x23, coefs[0]);
4767 alc_write_coef_idx(codec, 0x25, coefs[1]);
4768 alc_write_coef_idx(codec, 0x26, 0xb011);
4769}
4770
4771struct alc298_samsung_amp_desc {
4772 unsigned char nid;
4773 unsigned short init_seq[2][2];
4774};
4775
4776static void alc298_fixup_samsung_amp(struct hda_codec *codec,
4777 const struct hda_fixup *fix, int action)
4778{
4779 int i, j;
4780 static const unsigned short init_seq[][2] = {
4781 { 0x19, 0x00 }, { 0x20, 0xc0 }, { 0x22, 0x44 }, { 0x23, 0x08 },
4782 { 0x24, 0x85 }, { 0x25, 0x41 }, { 0x35, 0x40 }, { 0x36, 0x01 },
4783 { 0x38, 0x81 }, { 0x3a, 0x03 }, { 0x3b, 0x81 }, { 0x40, 0x3e },
4784 { 0x41, 0x07 }, { 0x400, 0x1 }
4785 };
4786 static const struct alc298_samsung_amp_desc amps[] = {
4787 { 0x3a, { { 0x18, 0x1 }, { 0x26, 0x0 } } },
4788 { 0x39, { { 0x18, 0x2 }, { 0x26, 0x1 } } }
4789 };
4790
4791 if (action != HDA_FIXUP_ACT_INIT)
4792 return;
4793
4794 for (i = 0; i < ARRAY_SIZE(amps); i++) {
4795 alc_write_coef_idx(codec, 0x22, amps[i].nid);
4796
4797 for (j = 0; j < ARRAY_SIZE(amps[i].init_seq); j++)
4798 alc298_samsung_write_coef_pack(codec, amps[i].init_seq[j]);
4799
4800 for (j = 0; j < ARRAY_SIZE(init_seq); j++)
4801 alc298_samsung_write_coef_pack(codec, init_seq[j]);
4802 }
4803}
4804
4805#if IS_REACHABLE(CONFIG_INPUT)
4806static void gpio2_mic_hotkey_event(struct hda_codec *codec,
4807 struct hda_jack_callback *event)
4808{
4809 struct alc_spec *spec = codec->spec;
4810
4811 /* GPIO2 just toggles on a keypress/keyrelease cycle. Therefore
4812 send both key on and key off event for every interrupt. */
4813 input_report_key(spec->kb_dev, spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX], 1);
4814 input_sync(spec->kb_dev);
4815 input_report_key(spec->kb_dev, spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX], 0);
4816 input_sync(spec->kb_dev);
4817}
4818
4819static int alc_register_micmute_input_device(struct hda_codec *codec)
4820{
4821 struct alc_spec *spec = codec->spec;
4822 int i;
4823
4824 spec->kb_dev = input_allocate_device();
4825 if (!spec->kb_dev) {
4826 codec_err(codec, "Out of memory (input_allocate_device)\n");
4827 return -ENOMEM;
4828 }
4829
4830 spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX] = KEY_MICMUTE;
4831
4832 spec->kb_dev->name = "Microphone Mute Button";
4833 spec->kb_dev->evbit[0] = BIT_MASK(EV_KEY);
4834 spec->kb_dev->keycodesize = sizeof(spec->alc_mute_keycode_map[0]);
4835 spec->kb_dev->keycodemax = ARRAY_SIZE(spec->alc_mute_keycode_map);
4836 spec->kb_dev->keycode = spec->alc_mute_keycode_map;
4837 for (i = 0; i < ARRAY_SIZE(spec->alc_mute_keycode_map); i++)
4838 set_bit(spec->alc_mute_keycode_map[i], spec->kb_dev->keybit);
4839
4840 if (input_register_device(spec->kb_dev)) {
4841 codec_err(codec, "input_register_device failed\n");
4842 input_free_device(spec->kb_dev);
4843 spec->kb_dev = NULL;
4844 return -ENOMEM;
4845 }
4846
4847 return 0;
4848}
4849
4850/* GPIO1 = set according to SKU external amp
4851 * GPIO2 = mic mute hotkey
4852 * GPIO3 = mute LED
4853 * GPIO4 = mic mute LED
4854 */
4855static void alc280_fixup_hp_gpio2_mic_hotkey(struct hda_codec *codec,
4856 const struct hda_fixup *fix, int action)
4857{
4858 struct alc_spec *spec = codec->spec;
4859
4860 alc_fixup_hp_gpio_led(codec, action, 0x08, 0x10);
4861 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4862 spec->init_amp = ALC_INIT_DEFAULT;
4863 if (alc_register_micmute_input_device(codec) != 0)
4864 return;
4865
4866 spec->gpio_mask |= 0x06;
4867 spec->gpio_dir |= 0x02;
4868 spec->gpio_data |= 0x02;
4869 snd_hda_codec_write_cache(codec, codec->core.afg, 0,
4870 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x04);
4871 snd_hda_jack_detect_enable_callback(codec, codec->core.afg,
4872 gpio2_mic_hotkey_event);
4873 return;
4874 }
4875
4876 if (!spec->kb_dev)
4877 return;
4878
4879 switch (action) {
4880 case HDA_FIXUP_ACT_FREE:
4881 input_unregister_device(spec->kb_dev);
4882 spec->kb_dev = NULL;
4883 }
4884}
4885
4886/* Line2 = mic mute hotkey
4887 * GPIO2 = mic mute LED
4888 */
4889static void alc233_fixup_lenovo_line2_mic_hotkey(struct hda_codec *codec,
4890 const struct hda_fixup *fix, int action)
4891{
4892 struct alc_spec *spec = codec->spec;
4893
4894 alc_fixup_hp_gpio_led(codec, action, 0, 0x04);
4895 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4896 spec->init_amp = ALC_INIT_DEFAULT;
4897 if (alc_register_micmute_input_device(codec) != 0)
4898 return;
4899
4900 snd_hda_jack_detect_enable_callback(codec, 0x1b,
4901 gpio2_mic_hotkey_event);
4902 return;
4903 }
4904
4905 if (!spec->kb_dev)
4906 return;
4907
4908 switch (action) {
4909 case HDA_FIXUP_ACT_FREE:
4910 input_unregister_device(spec->kb_dev);
4911 spec->kb_dev = NULL;
4912 }
4913}
4914#else /* INPUT */
4915#define alc280_fixup_hp_gpio2_mic_hotkey NULL
4916#define alc233_fixup_lenovo_line2_mic_hotkey NULL
4917#endif /* INPUT */
4918
4919static void alc269_fixup_hp_line1_mic1_led(struct hda_codec *codec,
4920 const struct hda_fixup *fix, int action)
4921{
4922 struct alc_spec *spec = codec->spec;
4923
4924 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x1a);
4925 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4926 spec->cap_mute_led_nid = 0x18;
4927 snd_hda_gen_add_micmute_led_cdev(codec, vref_micmute_led_set);
4928 }
4929}
4930
4931static const struct coef_fw alc225_pre_hsmode[] = {
4932 UPDATE_COEF(0x4a, 1<<8, 0),
4933 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0),
4934 UPDATE_COEF(0x63, 3<<14, 3<<14),
4935 UPDATE_COEF(0x4a, 3<<4, 2<<4),
4936 UPDATE_COEF(0x4a, 3<<10, 3<<10),
4937 UPDATE_COEF(0x45, 0x3f<<10, 0x34<<10),
4938 UPDATE_COEF(0x4a, 3<<10, 0),
4939 {}
4940};
4941
4942static void alc_headset_mode_unplugged(struct hda_codec *codec)
4943{
4944 struct alc_spec *spec = codec->spec;
4945 static const struct coef_fw coef0255[] = {
4946 WRITE_COEF(0x1b, 0x0c0b), /* LDO and MISC control */
4947 WRITE_COEF(0x45, 0xd089), /* UAJ function set to menual mode */
4948 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/
4949 WRITE_COEF(0x06, 0x6104), /* Set MIC2 Vref gate with HP */
4950 WRITE_COEFEX(0x57, 0x03, 0x8aa6), /* Direct Drive HP Amp control */
4951 {}
4952 };
4953 static const struct coef_fw coef0256[] = {
4954 WRITE_COEF(0x1b, 0x0c4b), /* LDO and MISC control */
4955 WRITE_COEF(0x45, 0xd089), /* UAJ function set to menual mode */
4956 WRITE_COEF(0x06, 0x6104), /* Set MIC2 Vref gate with HP */
4957 WRITE_COEFEX(0x57, 0x03, 0x09a3), /* Direct Drive HP Amp control */
4958 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/
4959 {}
4960 };
4961 static const struct coef_fw coef0233[] = {
4962 WRITE_COEF(0x1b, 0x0c0b),
4963 WRITE_COEF(0x45, 0xc429),
4964 UPDATE_COEF(0x35, 0x4000, 0),
4965 WRITE_COEF(0x06, 0x2104),
4966 WRITE_COEF(0x1a, 0x0001),
4967 WRITE_COEF(0x26, 0x0004),
4968 WRITE_COEF(0x32, 0x42a3),
4969 {}
4970 };
4971 static const struct coef_fw coef0288[] = {
4972 UPDATE_COEF(0x4f, 0xfcc0, 0xc400),
4973 UPDATE_COEF(0x50, 0x2000, 0x2000),
4974 UPDATE_COEF(0x56, 0x0006, 0x0006),
4975 UPDATE_COEF(0x66, 0x0008, 0),
4976 UPDATE_COEF(0x67, 0x2000, 0),
4977 {}
4978 };
4979 static const struct coef_fw coef0298[] = {
4980 UPDATE_COEF(0x19, 0x1300, 0x0300),
4981 {}
4982 };
4983 static const struct coef_fw coef0292[] = {
4984 WRITE_COEF(0x76, 0x000e),
4985 WRITE_COEF(0x6c, 0x2400),
4986 WRITE_COEF(0x18, 0x7308),
4987 WRITE_COEF(0x6b, 0xc429),
4988 {}
4989 };
4990 static const struct coef_fw coef0293[] = {
4991 UPDATE_COEF(0x10, 7<<8, 6<<8), /* SET Line1 JD to 0 */
4992 UPDATE_COEFEX(0x57, 0x05, 1<<15|1<<13, 0x0), /* SET charge pump by verb */
4993 UPDATE_COEFEX(0x57, 0x03, 1<<10, 1<<10), /* SET EN_OSW to 1 */
4994 UPDATE_COEF(0x1a, 1<<3, 1<<3), /* Combo JD gating with LINE1-VREFO */
4995 WRITE_COEF(0x45, 0xc429), /* Set to TRS type */
4996 UPDATE_COEF(0x4a, 0x000f, 0x000e), /* Combo Jack auto detect */
4997 {}
4998 };
4999 static const struct coef_fw coef0668[] = {
5000 WRITE_COEF(0x15, 0x0d40),
5001 WRITE_COEF(0xb7, 0x802b),
5002 {}
5003 };
5004 static const struct coef_fw coef0225[] = {
5005 UPDATE_COEF(0x63, 3<<14, 0),
5006 {}
5007 };
5008 static const struct coef_fw coef0274[] = {
5009 UPDATE_COEF(0x4a, 0x0100, 0),
5010 UPDATE_COEFEX(0x57, 0x05, 0x4000, 0),
5011 UPDATE_COEF(0x6b, 0xf000, 0x5000),
5012 UPDATE_COEF(0x4a, 0x0010, 0),
5013 UPDATE_COEF(0x4a, 0x0c00, 0x0c00),
5014 WRITE_COEF(0x45, 0x5289),
5015 UPDATE_COEF(0x4a, 0x0c00, 0),
5016 {}
5017 };
5018
5019 if (spec->no_internal_mic_pin) {
5020 alc_update_coef_idx(codec, 0x45, 0xf<<12 | 1<<10, 5<<12);
5021 return;
5022 }
5023
5024 switch (codec->core.vendor_id) {
5025 case 0x10ec0255:
5026 alc_process_coef_fw(codec, coef0255);
5027 break;
5028 case 0x10ec0230:
5029 case 0x10ec0236:
5030 case 0x10ec0256:
5031 case 0x19e58326:
5032 alc_process_coef_fw(codec, coef0256);
5033 break;
5034 case 0x10ec0234:
5035 case 0x10ec0274:
5036 case 0x10ec0294:
5037 alc_process_coef_fw(codec, coef0274);
5038 break;
5039 case 0x10ec0233:
5040 case 0x10ec0283:
5041 alc_process_coef_fw(codec, coef0233);
5042 break;
5043 case 0x10ec0286:
5044 case 0x10ec0288:
5045 alc_process_coef_fw(codec, coef0288);
5046 break;
5047 case 0x10ec0298:
5048 alc_process_coef_fw(codec, coef0298);
5049 alc_process_coef_fw(codec, coef0288);
5050 break;
5051 case 0x10ec0292:
5052 alc_process_coef_fw(codec, coef0292);
5053 break;
5054 case 0x10ec0293:
5055 alc_process_coef_fw(codec, coef0293);
5056 break;
5057 case 0x10ec0668:
5058 alc_process_coef_fw(codec, coef0668);
5059 break;
5060 case 0x10ec0215:
5061 case 0x10ec0225:
5062 case 0x10ec0285:
5063 case 0x10ec0295:
5064 case 0x10ec0289:
5065 case 0x10ec0299:
5066 alc_process_coef_fw(codec, alc225_pre_hsmode);
5067 alc_process_coef_fw(codec, coef0225);
5068 break;
5069 case 0x10ec0867:
5070 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
5071 break;
5072 }
5073 codec_dbg(codec, "Headset jack set to unplugged mode.\n");
5074}
5075
5076
5077static void alc_headset_mode_mic_in(struct hda_codec *codec, hda_nid_t hp_pin,
5078 hda_nid_t mic_pin)
5079{
5080 static const struct coef_fw coef0255[] = {
5081 WRITE_COEFEX(0x57, 0x03, 0x8aa6),
5082 WRITE_COEF(0x06, 0x6100), /* Set MIC2 Vref gate to normal */
5083 {}
5084 };
5085 static const struct coef_fw coef0256[] = {
5086 UPDATE_COEFEX(0x57, 0x05, 1<<14, 1<<14), /* Direct Drive HP Amp control(Set to verb control)*/
5087 WRITE_COEFEX(0x57, 0x03, 0x09a3),
5088 WRITE_COEF(0x06, 0x6100), /* Set MIC2 Vref gate to normal */
5089 {}
5090 };
5091 static const struct coef_fw coef0233[] = {
5092 UPDATE_COEF(0x35, 0, 1<<14),
5093 WRITE_COEF(0x06, 0x2100),
5094 WRITE_COEF(0x1a, 0x0021),
5095 WRITE_COEF(0x26, 0x008c),
5096 {}
5097 };
5098 static const struct coef_fw coef0288[] = {
5099 UPDATE_COEF(0x4f, 0x00c0, 0),
5100 UPDATE_COEF(0x50, 0x2000, 0),
5101 UPDATE_COEF(0x56, 0x0006, 0),
5102 UPDATE_COEF(0x4f, 0xfcc0, 0xc400),
5103 UPDATE_COEF(0x66, 0x0008, 0x0008),
5104 UPDATE_COEF(0x67, 0x2000, 0x2000),
5105 {}
5106 };
5107 static const struct coef_fw coef0292[] = {
5108 WRITE_COEF(0x19, 0xa208),
5109 WRITE_COEF(0x2e, 0xacf0),
5110 {}
5111 };
5112 static const struct coef_fw coef0293[] = {
5113 UPDATE_COEFEX(0x57, 0x05, 0, 1<<15|1<<13), /* SET charge pump by verb */
5114 UPDATE_COEFEX(0x57, 0x03, 1<<10, 0), /* SET EN_OSW to 0 */
5115 UPDATE_COEF(0x1a, 1<<3, 0), /* Combo JD gating without LINE1-VREFO */
5116 {}
5117 };
5118 static const struct coef_fw coef0688[] = {
5119 WRITE_COEF(0xb7, 0x802b),
5120 WRITE_COEF(0xb5, 0x1040),
5121 UPDATE_COEF(0xc3, 0, 1<<12),
5122 {}
5123 };
5124 static const struct coef_fw coef0225[] = {
5125 UPDATE_COEFEX(0x57, 0x05, 1<<14, 1<<14),
5126 UPDATE_COEF(0x4a, 3<<4, 2<<4),
5127 UPDATE_COEF(0x63, 3<<14, 0),
5128 {}
5129 };
5130 static const struct coef_fw coef0274[] = {
5131 UPDATE_COEFEX(0x57, 0x05, 0x4000, 0x4000),
5132 UPDATE_COEF(0x4a, 0x0010, 0),
5133 UPDATE_COEF(0x6b, 0xf000, 0),
5134 {}
5135 };
5136
5137 switch (codec->core.vendor_id) {
5138 case 0x10ec0255:
5139 alc_write_coef_idx(codec, 0x45, 0xc489);
5140 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5141 alc_process_coef_fw(codec, coef0255);
5142 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5143 break;
5144 case 0x10ec0230:
5145 case 0x10ec0236:
5146 case 0x10ec0256:
5147 case 0x19e58326:
5148 alc_write_coef_idx(codec, 0x45, 0xc489);
5149 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5150 alc_process_coef_fw(codec, coef0256);
5151 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5152 break;
5153 case 0x10ec0234:
5154 case 0x10ec0274:
5155 case 0x10ec0294:
5156 alc_write_coef_idx(codec, 0x45, 0x4689);
5157 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5158 alc_process_coef_fw(codec, coef0274);
5159 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5160 break;
5161 case 0x10ec0233:
5162 case 0x10ec0283:
5163 alc_write_coef_idx(codec, 0x45, 0xc429);
5164 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5165 alc_process_coef_fw(codec, coef0233);
5166 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5167 break;
5168 case 0x10ec0286:
5169 case 0x10ec0288:
5170 case 0x10ec0298:
5171 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5172 alc_process_coef_fw(codec, coef0288);
5173 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5174 break;
5175 case 0x10ec0292:
5176 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5177 alc_process_coef_fw(codec, coef0292);
5178 break;
5179 case 0x10ec0293:
5180 /* Set to TRS mode */
5181 alc_write_coef_idx(codec, 0x45, 0xc429);
5182 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5183 alc_process_coef_fw(codec, coef0293);
5184 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5185 break;
5186 case 0x10ec0867:
5187 alc_update_coefex_idx(codec, 0x57, 0x5, 0, 1<<14);
5188 fallthrough;
5189 case 0x10ec0221:
5190 case 0x10ec0662:
5191 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5192 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5193 break;
5194 case 0x10ec0668:
5195 alc_write_coef_idx(codec, 0x11, 0x0001);
5196 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5197 alc_process_coef_fw(codec, coef0688);
5198 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5199 break;
5200 case 0x10ec0215:
5201 case 0x10ec0225:
5202 case 0x10ec0285:
5203 case 0x10ec0295:
5204 case 0x10ec0289:
5205 case 0x10ec0299:
5206 alc_process_coef_fw(codec, alc225_pre_hsmode);
5207 alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x31<<10);
5208 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5209 alc_process_coef_fw(codec, coef0225);
5210 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5211 break;
5212 }
5213 codec_dbg(codec, "Headset jack set to mic-in mode.\n");
5214}
5215
5216static void alc_headset_mode_default(struct hda_codec *codec)
5217{
5218 static const struct coef_fw coef0225[] = {
5219 UPDATE_COEF(0x45, 0x3f<<10, 0x30<<10),
5220 UPDATE_COEF(0x45, 0x3f<<10, 0x31<<10),
5221 UPDATE_COEF(0x49, 3<<8, 0<<8),
5222 UPDATE_COEF(0x4a, 3<<4, 3<<4),
5223 UPDATE_COEF(0x63, 3<<14, 0),
5224 UPDATE_COEF(0x67, 0xf000, 0x3000),
5225 {}
5226 };
5227 static const struct coef_fw coef0255[] = {
5228 WRITE_COEF(0x45, 0xc089),
5229 WRITE_COEF(0x45, 0xc489),
5230 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
5231 WRITE_COEF(0x49, 0x0049),
5232 {}
5233 };
5234 static const struct coef_fw coef0256[] = {
5235 WRITE_COEF(0x45, 0xc489),
5236 WRITE_COEFEX(0x57, 0x03, 0x0da3),
5237 WRITE_COEF(0x49, 0x0049),
5238 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/
5239 WRITE_COEF(0x06, 0x6100),
5240 {}
5241 };
5242 static const struct coef_fw coef0233[] = {
5243 WRITE_COEF(0x06, 0x2100),
5244 WRITE_COEF(0x32, 0x4ea3),
5245 {}
5246 };
5247 static const struct coef_fw coef0288[] = {
5248 UPDATE_COEF(0x4f, 0xfcc0, 0xc400), /* Set to TRS type */
5249 UPDATE_COEF(0x50, 0x2000, 0x2000),
5250 UPDATE_COEF(0x56, 0x0006, 0x0006),
5251 UPDATE_COEF(0x66, 0x0008, 0),
5252 UPDATE_COEF(0x67, 0x2000, 0),
5253 {}
5254 };
5255 static const struct coef_fw coef0292[] = {
5256 WRITE_COEF(0x76, 0x000e),
5257 WRITE_COEF(0x6c, 0x2400),
5258 WRITE_COEF(0x6b, 0xc429),
5259 WRITE_COEF(0x18, 0x7308),
5260 {}
5261 };
5262 static const struct coef_fw coef0293[] = {
5263 UPDATE_COEF(0x4a, 0x000f, 0x000e), /* Combo Jack auto detect */
5264 WRITE_COEF(0x45, 0xC429), /* Set to TRS type */
5265 UPDATE_COEF(0x1a, 1<<3, 0), /* Combo JD gating without LINE1-VREFO */
5266 {}
5267 };
5268 static const struct coef_fw coef0688[] = {
5269 WRITE_COEF(0x11, 0x0041),
5270 WRITE_COEF(0x15, 0x0d40),
5271 WRITE_COEF(0xb7, 0x802b),
5272 {}
5273 };
5274 static const struct coef_fw coef0274[] = {
5275 WRITE_COEF(0x45, 0x4289),
5276 UPDATE_COEF(0x4a, 0x0010, 0x0010),
5277 UPDATE_COEF(0x6b, 0x0f00, 0),
5278 UPDATE_COEF(0x49, 0x0300, 0x0300),
5279 {}
5280 };
5281
5282 switch (codec->core.vendor_id) {
5283 case 0x10ec0215:
5284 case 0x10ec0225:
5285 case 0x10ec0285:
5286 case 0x10ec0295:
5287 case 0x10ec0289:
5288 case 0x10ec0299:
5289 alc_process_coef_fw(codec, alc225_pre_hsmode);
5290 alc_process_coef_fw(codec, coef0225);
5291 break;
5292 case 0x10ec0255:
5293 alc_process_coef_fw(codec, coef0255);
5294 break;
5295 case 0x10ec0230:
5296 case 0x10ec0236:
5297 case 0x10ec0256:
5298 case 0x19e58326:
5299 alc_write_coef_idx(codec, 0x1b, 0x0e4b);
5300 alc_write_coef_idx(codec, 0x45, 0xc089);
5301 msleep(50);
5302 alc_process_coef_fw(codec, coef0256);
5303 break;
5304 case 0x10ec0234:
5305 case 0x10ec0274:
5306 case 0x10ec0294:
5307 alc_process_coef_fw(codec, coef0274);
5308 break;
5309 case 0x10ec0233:
5310 case 0x10ec0283:
5311 alc_process_coef_fw(codec, coef0233);
5312 break;
5313 case 0x10ec0286:
5314 case 0x10ec0288:
5315 case 0x10ec0298:
5316 alc_process_coef_fw(codec, coef0288);
5317 break;
5318 case 0x10ec0292:
5319 alc_process_coef_fw(codec, coef0292);
5320 break;
5321 case 0x10ec0293:
5322 alc_process_coef_fw(codec, coef0293);
5323 break;
5324 case 0x10ec0668:
5325 alc_process_coef_fw(codec, coef0688);
5326 break;
5327 case 0x10ec0867:
5328 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
5329 break;
5330 }
5331 codec_dbg(codec, "Headset jack set to headphone (default) mode.\n");
5332}
5333
5334/* Iphone type */
5335static void alc_headset_mode_ctia(struct hda_codec *codec)
5336{
5337 int val;
5338
5339 static const struct coef_fw coef0255[] = {
5340 WRITE_COEF(0x45, 0xd489), /* Set to CTIA type */
5341 WRITE_COEF(0x1b, 0x0c2b),
5342 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
5343 {}
5344 };
5345 static const struct coef_fw coef0256[] = {
5346 WRITE_COEF(0x45, 0xd489), /* Set to CTIA type */
5347 WRITE_COEF(0x1b, 0x0e6b),
5348 {}
5349 };
5350 static const struct coef_fw coef0233[] = {
5351 WRITE_COEF(0x45, 0xd429),
5352 WRITE_COEF(0x1b, 0x0c2b),
5353 WRITE_COEF(0x32, 0x4ea3),
5354 {}
5355 };
5356 static const struct coef_fw coef0288[] = {
5357 UPDATE_COEF(0x50, 0x2000, 0x2000),
5358 UPDATE_COEF(0x56, 0x0006, 0x0006),
5359 UPDATE_COEF(0x66, 0x0008, 0),
5360 UPDATE_COEF(0x67, 0x2000, 0),
5361 {}
5362 };
5363 static const struct coef_fw coef0292[] = {
5364 WRITE_COEF(0x6b, 0xd429),
5365 WRITE_COEF(0x76, 0x0008),
5366 WRITE_COEF(0x18, 0x7388),
5367 {}
5368 };
5369 static const struct coef_fw coef0293[] = {
5370 WRITE_COEF(0x45, 0xd429), /* Set to ctia type */
5371 UPDATE_COEF(0x10, 7<<8, 7<<8), /* SET Line1 JD to 1 */
5372 {}
5373 };
5374 static const struct coef_fw coef0688[] = {
5375 WRITE_COEF(0x11, 0x0001),
5376 WRITE_COEF(0x15, 0x0d60),
5377 WRITE_COEF(0xc3, 0x0000),
5378 {}
5379 };
5380 static const struct coef_fw coef0225_1[] = {
5381 UPDATE_COEF(0x45, 0x3f<<10, 0x35<<10),
5382 UPDATE_COEF(0x63, 3<<14, 2<<14),
5383 {}
5384 };
5385 static const struct coef_fw coef0225_2[] = {
5386 UPDATE_COEF(0x45, 0x3f<<10, 0x35<<10),
5387 UPDATE_COEF(0x63, 3<<14, 1<<14),
5388 {}
5389 };
5390
5391 switch (codec->core.vendor_id) {
5392 case 0x10ec0255:
5393 alc_process_coef_fw(codec, coef0255);
5394 break;
5395 case 0x10ec0230:
5396 case 0x10ec0236:
5397 case 0x10ec0256:
5398 case 0x19e58326:
5399 alc_process_coef_fw(codec, coef0256);
5400 break;
5401 case 0x10ec0234:
5402 case 0x10ec0274:
5403 case 0x10ec0294:
5404 alc_write_coef_idx(codec, 0x45, 0xd689);
5405 break;
5406 case 0x10ec0233:
5407 case 0x10ec0283:
5408 alc_process_coef_fw(codec, coef0233);
5409 break;
5410 case 0x10ec0298:
5411 val = alc_read_coef_idx(codec, 0x50);
5412 if (val & (1 << 12)) {
5413 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0020);
5414 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400);
5415 msleep(300);
5416 } else {
5417 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);
5418 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400);
5419 msleep(300);
5420 }
5421 break;
5422 case 0x10ec0286:
5423 case 0x10ec0288:
5424 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400);
5425 msleep(300);
5426 alc_process_coef_fw(codec, coef0288);
5427 break;
5428 case 0x10ec0292:
5429 alc_process_coef_fw(codec, coef0292);
5430 break;
5431 case 0x10ec0293:
5432 alc_process_coef_fw(codec, coef0293);
5433 break;
5434 case 0x10ec0668:
5435 alc_process_coef_fw(codec, coef0688);
5436 break;
5437 case 0x10ec0215:
5438 case 0x10ec0225:
5439 case 0x10ec0285:
5440 case 0x10ec0295:
5441 case 0x10ec0289:
5442 case 0x10ec0299:
5443 val = alc_read_coef_idx(codec, 0x45);
5444 if (val & (1 << 9))
5445 alc_process_coef_fw(codec, coef0225_2);
5446 else
5447 alc_process_coef_fw(codec, coef0225_1);
5448 break;
5449 case 0x10ec0867:
5450 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
5451 break;
5452 }
5453 codec_dbg(codec, "Headset jack set to iPhone-style headset mode.\n");
5454}
5455
5456/* Nokia type */
5457static void alc_headset_mode_omtp(struct hda_codec *codec)
5458{
5459 static const struct coef_fw coef0255[] = {
5460 WRITE_COEF(0x45, 0xe489), /* Set to OMTP Type */
5461 WRITE_COEF(0x1b, 0x0c2b),
5462 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
5463 {}
5464 };
5465 static const struct coef_fw coef0256[] = {
5466 WRITE_COEF(0x45, 0xe489), /* Set to OMTP Type */
5467 WRITE_COEF(0x1b, 0x0e6b),
5468 {}
5469 };
5470 static const struct coef_fw coef0233[] = {
5471 WRITE_COEF(0x45, 0xe429),
5472 WRITE_COEF(0x1b, 0x0c2b),
5473 WRITE_COEF(0x32, 0x4ea3),
5474 {}
5475 };
5476 static const struct coef_fw coef0288[] = {
5477 UPDATE_COEF(0x50, 0x2000, 0x2000),
5478 UPDATE_COEF(0x56, 0x0006, 0x0006),
5479 UPDATE_COEF(0x66, 0x0008, 0),
5480 UPDATE_COEF(0x67, 0x2000, 0),
5481 {}
5482 };
5483 static const struct coef_fw coef0292[] = {
5484 WRITE_COEF(0x6b, 0xe429),
5485 WRITE_COEF(0x76, 0x0008),
5486 WRITE_COEF(0x18, 0x7388),
5487 {}
5488 };
5489 static const struct coef_fw coef0293[] = {
5490 WRITE_COEF(0x45, 0xe429), /* Set to omtp type */
5491 UPDATE_COEF(0x10, 7<<8, 7<<8), /* SET Line1 JD to 1 */
5492 {}
5493 };
5494 static const struct coef_fw coef0688[] = {
5495 WRITE_COEF(0x11, 0x0001),
5496 WRITE_COEF(0x15, 0x0d50),
5497 WRITE_COEF(0xc3, 0x0000),
5498 {}
5499 };
5500 static const struct coef_fw coef0225[] = {
5501 UPDATE_COEF(0x45, 0x3f<<10, 0x39<<10),
5502 UPDATE_COEF(0x63, 3<<14, 2<<14),
5503 {}
5504 };
5505
5506 switch (codec->core.vendor_id) {
5507 case 0x10ec0255:
5508 alc_process_coef_fw(codec, coef0255);
5509 break;
5510 case 0x10ec0230:
5511 case 0x10ec0236:
5512 case 0x10ec0256:
5513 case 0x19e58326:
5514 alc_process_coef_fw(codec, coef0256);
5515 break;
5516 case 0x10ec0234:
5517 case 0x10ec0274:
5518 case 0x10ec0294:
5519 alc_write_coef_idx(codec, 0x45, 0xe689);
5520 break;
5521 case 0x10ec0233:
5522 case 0x10ec0283:
5523 alc_process_coef_fw(codec, coef0233);
5524 break;
5525 case 0x10ec0298:
5526 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);/* Headset output enable */
5527 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xe400);
5528 msleep(300);
5529 break;
5530 case 0x10ec0286:
5531 case 0x10ec0288:
5532 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xe400);
5533 msleep(300);
5534 alc_process_coef_fw(codec, coef0288);
5535 break;
5536 case 0x10ec0292:
5537 alc_process_coef_fw(codec, coef0292);
5538 break;
5539 case 0x10ec0293:
5540 alc_process_coef_fw(codec, coef0293);
5541 break;
5542 case 0x10ec0668:
5543 alc_process_coef_fw(codec, coef0688);
5544 break;
5545 case 0x10ec0215:
5546 case 0x10ec0225:
5547 case 0x10ec0285:
5548 case 0x10ec0295:
5549 case 0x10ec0289:
5550 case 0x10ec0299:
5551 alc_process_coef_fw(codec, coef0225);
5552 break;
5553 }
5554 codec_dbg(codec, "Headset jack set to Nokia-style headset mode.\n");
5555}
5556
5557static void alc_determine_headset_type(struct hda_codec *codec)
5558{
5559 int val;
5560 bool is_ctia = false;
5561 struct alc_spec *spec = codec->spec;
5562 static const struct coef_fw coef0255[] = {
5563 WRITE_COEF(0x45, 0xd089), /* combo jack auto switch control(Check type)*/
5564 WRITE_COEF(0x49, 0x0149), /* combo jack auto switch control(Vref
5565 conteol) */
5566 {}
5567 };
5568 static const struct coef_fw coef0288[] = {
5569 UPDATE_COEF(0x4f, 0xfcc0, 0xd400), /* Check Type */
5570 {}
5571 };
5572 static const struct coef_fw coef0298[] = {
5573 UPDATE_COEF(0x50, 0x2000, 0x2000),
5574 UPDATE_COEF(0x56, 0x0006, 0x0006),
5575 UPDATE_COEF(0x66, 0x0008, 0),
5576 UPDATE_COEF(0x67, 0x2000, 0),
5577 UPDATE_COEF(0x19, 0x1300, 0x1300),
5578 {}
5579 };
5580 static const struct coef_fw coef0293[] = {
5581 UPDATE_COEF(0x4a, 0x000f, 0x0008), /* Combo Jack auto detect */
5582 WRITE_COEF(0x45, 0xD429), /* Set to ctia type */
5583 {}
5584 };
5585 static const struct coef_fw coef0688[] = {
5586 WRITE_COEF(0x11, 0x0001),
5587 WRITE_COEF(0xb7, 0x802b),
5588 WRITE_COEF(0x15, 0x0d60),
5589 WRITE_COEF(0xc3, 0x0c00),
5590 {}
5591 };
5592 static const struct coef_fw coef0274[] = {
5593 UPDATE_COEF(0x4a, 0x0010, 0),
5594 UPDATE_COEF(0x4a, 0x8000, 0),
5595 WRITE_COEF(0x45, 0xd289),
5596 UPDATE_COEF(0x49, 0x0300, 0x0300),
5597 {}
5598 };
5599
5600 if (spec->no_internal_mic_pin) {
5601 alc_update_coef_idx(codec, 0x45, 0xf<<12 | 1<<10, 5<<12);
5602 return;
5603 }
5604
5605 switch (codec->core.vendor_id) {
5606 case 0x10ec0255:
5607 alc_process_coef_fw(codec, coef0255);
5608 msleep(300);
5609 val = alc_read_coef_idx(codec, 0x46);
5610 is_ctia = (val & 0x0070) == 0x0070;
5611 break;
5612 case 0x10ec0230:
5613 case 0x10ec0236:
5614 case 0x10ec0256:
5615 case 0x19e58326:
5616 alc_write_coef_idx(codec, 0x1b, 0x0e4b);
5617 alc_write_coef_idx(codec, 0x06, 0x6104);
5618 alc_write_coefex_idx(codec, 0x57, 0x3, 0x09a3);
5619
5620 snd_hda_codec_write(codec, 0x21, 0,
5621 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
5622 msleep(80);
5623 snd_hda_codec_write(codec, 0x21, 0,
5624 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
5625
5626 alc_process_coef_fw(codec, coef0255);
5627 msleep(300);
5628 val = alc_read_coef_idx(codec, 0x46);
5629 is_ctia = (val & 0x0070) == 0x0070;
5630
5631 alc_write_coefex_idx(codec, 0x57, 0x3, 0x0da3);
5632 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
5633
5634 snd_hda_codec_write(codec, 0x21, 0,
5635 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
5636 msleep(80);
5637 snd_hda_codec_write(codec, 0x21, 0,
5638 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
5639 break;
5640 case 0x10ec0234:
5641 case 0x10ec0274:
5642 case 0x10ec0294:
5643 alc_process_coef_fw(codec, coef0274);
5644 msleep(850);
5645 val = alc_read_coef_idx(codec, 0x46);
5646 is_ctia = (val & 0x00f0) == 0x00f0;
5647 break;
5648 case 0x10ec0233:
5649 case 0x10ec0283:
5650 alc_write_coef_idx(codec, 0x45, 0xd029);
5651 msleep(300);
5652 val = alc_read_coef_idx(codec, 0x46);
5653 is_ctia = (val & 0x0070) == 0x0070;
5654 break;
5655 case 0x10ec0298:
5656 snd_hda_codec_write(codec, 0x21, 0,
5657 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
5658 msleep(100);
5659 snd_hda_codec_write(codec, 0x21, 0,
5660 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
5661 msleep(200);
5662
5663 val = alc_read_coef_idx(codec, 0x50);
5664 if (val & (1 << 12)) {
5665 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0020);
5666 alc_process_coef_fw(codec, coef0288);
5667 msleep(350);
5668 val = alc_read_coef_idx(codec, 0x50);
5669 is_ctia = (val & 0x0070) == 0x0070;
5670 } else {
5671 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);
5672 alc_process_coef_fw(codec, coef0288);
5673 msleep(350);
5674 val = alc_read_coef_idx(codec, 0x50);
5675 is_ctia = (val & 0x0070) == 0x0070;
5676 }
5677 alc_process_coef_fw(codec, coef0298);
5678 snd_hda_codec_write(codec, 0x21, 0,
5679 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP);
5680 msleep(75);
5681 snd_hda_codec_write(codec, 0x21, 0,
5682 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
5683 break;
5684 case 0x10ec0286:
5685 case 0x10ec0288:
5686 alc_process_coef_fw(codec, coef0288);
5687 msleep(350);
5688 val = alc_read_coef_idx(codec, 0x50);
5689 is_ctia = (val & 0x0070) == 0x0070;
5690 break;
5691 case 0x10ec0292:
5692 alc_write_coef_idx(codec, 0x6b, 0xd429);
5693 msleep(300);
5694 val = alc_read_coef_idx(codec, 0x6c);
5695 is_ctia = (val & 0x001c) == 0x001c;
5696 break;
5697 case 0x10ec0293:
5698 alc_process_coef_fw(codec, coef0293);
5699 msleep(300);
5700 val = alc_read_coef_idx(codec, 0x46);
5701 is_ctia = (val & 0x0070) == 0x0070;
5702 break;
5703 case 0x10ec0668:
5704 alc_process_coef_fw(codec, coef0688);
5705 msleep(300);
5706 val = alc_read_coef_idx(codec, 0xbe);
5707 is_ctia = (val & 0x1c02) == 0x1c02;
5708 break;
5709 case 0x10ec0215:
5710 case 0x10ec0225:
5711 case 0x10ec0285:
5712 case 0x10ec0295:
5713 case 0x10ec0289:
5714 case 0x10ec0299:
5715 snd_hda_codec_write(codec, 0x21, 0,
5716 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
5717 msleep(80);
5718 snd_hda_codec_write(codec, 0x21, 0,
5719 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
5720
5721 alc_process_coef_fw(codec, alc225_pre_hsmode);
5722 alc_update_coef_idx(codec, 0x67, 0xf000, 0x1000);
5723 val = alc_read_coef_idx(codec, 0x45);
5724 if (val & (1 << 9)) {
5725 alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x34<<10);
5726 alc_update_coef_idx(codec, 0x49, 3<<8, 2<<8);
5727 msleep(800);
5728 val = alc_read_coef_idx(codec, 0x46);
5729 is_ctia = (val & 0x00f0) == 0x00f0;
5730 } else {
5731 alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x34<<10);
5732 alc_update_coef_idx(codec, 0x49, 3<<8, 1<<8);
5733 msleep(800);
5734 val = alc_read_coef_idx(codec, 0x46);
5735 is_ctia = (val & 0x00f0) == 0x00f0;
5736 }
5737 alc_update_coef_idx(codec, 0x4a, 7<<6, 7<<6);
5738 alc_update_coef_idx(codec, 0x4a, 3<<4, 3<<4);
5739 alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000);
5740
5741 snd_hda_codec_write(codec, 0x21, 0,
5742 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
5743 msleep(80);
5744 snd_hda_codec_write(codec, 0x21, 0,
5745 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
5746 break;
5747 case 0x10ec0867:
5748 is_ctia = true;
5749 break;
5750 }
5751
5752 codec_dbg(codec, "Headset jack detected iPhone-style headset: %s\n",
5753 is_ctia ? "yes" : "no");
5754 spec->current_headset_type = is_ctia ? ALC_HEADSET_TYPE_CTIA : ALC_HEADSET_TYPE_OMTP;
5755}
5756
5757static void alc_update_headset_mode(struct hda_codec *codec)
5758{
5759 struct alc_spec *spec = codec->spec;
5760
5761 hda_nid_t mux_pin = spec->gen.imux_pins[spec->gen.cur_mux[0]];
5762 hda_nid_t hp_pin = alc_get_hp_pin(spec);
5763
5764 int new_headset_mode;
5765
5766 if (!snd_hda_jack_detect(codec, hp_pin))
5767 new_headset_mode = ALC_HEADSET_MODE_UNPLUGGED;
5768 else if (mux_pin == spec->headset_mic_pin)
5769 new_headset_mode = ALC_HEADSET_MODE_HEADSET;
5770 else if (mux_pin == spec->headphone_mic_pin)
5771 new_headset_mode = ALC_HEADSET_MODE_MIC;
5772 else
5773 new_headset_mode = ALC_HEADSET_MODE_HEADPHONE;
5774
5775 if (new_headset_mode == spec->current_headset_mode) {
5776 snd_hda_gen_update_outputs(codec);
5777 return;
5778 }
5779
5780 switch (new_headset_mode) {
5781 case ALC_HEADSET_MODE_UNPLUGGED:
5782 alc_headset_mode_unplugged(codec);
5783 spec->current_headset_mode = ALC_HEADSET_MODE_UNKNOWN;
5784 spec->current_headset_type = ALC_HEADSET_TYPE_UNKNOWN;
5785 spec->gen.hp_jack_present = false;
5786 break;
5787 case ALC_HEADSET_MODE_HEADSET:
5788 if (spec->current_headset_type == ALC_HEADSET_TYPE_UNKNOWN)
5789 alc_determine_headset_type(codec);
5790 if (spec->current_headset_type == ALC_HEADSET_TYPE_CTIA)
5791 alc_headset_mode_ctia(codec);
5792 else if (spec->current_headset_type == ALC_HEADSET_TYPE_OMTP)
5793 alc_headset_mode_omtp(codec);
5794 spec->gen.hp_jack_present = true;
5795 break;
5796 case ALC_HEADSET_MODE_MIC:
5797 alc_headset_mode_mic_in(codec, hp_pin, spec->headphone_mic_pin);
5798 spec->gen.hp_jack_present = false;
5799 break;
5800 case ALC_HEADSET_MODE_HEADPHONE:
5801 alc_headset_mode_default(codec);
5802 spec->gen.hp_jack_present = true;
5803 break;
5804 }
5805 if (new_headset_mode != ALC_HEADSET_MODE_MIC) {
5806 snd_hda_set_pin_ctl_cache(codec, hp_pin,
5807 AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN);
5808 if (spec->headphone_mic_pin && spec->headphone_mic_pin != hp_pin)
5809 snd_hda_set_pin_ctl_cache(codec, spec->headphone_mic_pin,
5810 PIN_VREFHIZ);
5811 }
5812 spec->current_headset_mode = new_headset_mode;
5813
5814 snd_hda_gen_update_outputs(codec);
5815}
5816
5817static void alc_update_headset_mode_hook(struct hda_codec *codec,
5818 struct snd_kcontrol *kcontrol,
5819 struct snd_ctl_elem_value *ucontrol)
5820{
5821 alc_update_headset_mode(codec);
5822}
5823
5824static void alc_update_headset_jack_cb(struct hda_codec *codec,
5825 struct hda_jack_callback *jack)
5826{
5827 snd_hda_gen_hp_automute(codec, jack);
5828 alc_update_headset_mode(codec);
5829}
5830
5831static void alc_probe_headset_mode(struct hda_codec *codec)
5832{
5833 int i;
5834 struct alc_spec *spec = codec->spec;
5835 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
5836
5837 /* Find mic pins */
5838 for (i = 0; i < cfg->num_inputs; i++) {
5839 if (cfg->inputs[i].is_headset_mic && !spec->headset_mic_pin)
5840 spec->headset_mic_pin = cfg->inputs[i].pin;
5841 if (cfg->inputs[i].is_headphone_mic && !spec->headphone_mic_pin)
5842 spec->headphone_mic_pin = cfg->inputs[i].pin;
5843 }
5844
5845 WARN_ON(spec->gen.cap_sync_hook);
5846 spec->gen.cap_sync_hook = alc_update_headset_mode_hook;
5847 spec->gen.automute_hook = alc_update_headset_mode;
5848 spec->gen.hp_automute_hook = alc_update_headset_jack_cb;
5849}
5850
5851static void alc_fixup_headset_mode(struct hda_codec *codec,
5852 const struct hda_fixup *fix, int action)
5853{
5854 struct alc_spec *spec = codec->spec;
5855
5856 switch (action) {
5857 case HDA_FIXUP_ACT_PRE_PROBE:
5858 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC | HDA_PINCFG_HEADPHONE_MIC;
5859 break;
5860 case HDA_FIXUP_ACT_PROBE:
5861 alc_probe_headset_mode(codec);
5862 break;
5863 case HDA_FIXUP_ACT_INIT:
5864 if (is_s3_resume(codec) || is_s4_resume(codec)) {
5865 spec->current_headset_mode = ALC_HEADSET_MODE_UNKNOWN;
5866 spec->current_headset_type = ALC_HEADSET_TYPE_UNKNOWN;
5867 }
5868 alc_update_headset_mode(codec);
5869 break;
5870 }
5871}
5872
5873static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec *codec,
5874 const struct hda_fixup *fix, int action)
5875{
5876 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5877 struct alc_spec *spec = codec->spec;
5878 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
5879 }
5880 else
5881 alc_fixup_headset_mode(codec, fix, action);
5882}
5883
5884static void alc255_set_default_jack_type(struct hda_codec *codec)
5885{
5886 /* Set to iphone type */
5887 static const struct coef_fw alc255fw[] = {
5888 WRITE_COEF(0x1b, 0x880b),
5889 WRITE_COEF(0x45, 0xd089),
5890 WRITE_COEF(0x1b, 0x080b),
5891 WRITE_COEF(0x46, 0x0004),
5892 WRITE_COEF(0x1b, 0x0c0b),
5893 {}
5894 };
5895 static const struct coef_fw alc256fw[] = {
5896 WRITE_COEF(0x1b, 0x884b),
5897 WRITE_COEF(0x45, 0xd089),
5898 WRITE_COEF(0x1b, 0x084b),
5899 WRITE_COEF(0x46, 0x0004),
5900 WRITE_COEF(0x1b, 0x0c4b),
5901 {}
5902 };
5903 switch (codec->core.vendor_id) {
5904 case 0x10ec0255:
5905 alc_process_coef_fw(codec, alc255fw);
5906 break;
5907 case 0x10ec0230:
5908 case 0x10ec0236:
5909 case 0x10ec0256:
5910 case 0x19e58326:
5911 alc_process_coef_fw(codec, alc256fw);
5912 break;
5913 }
5914 msleep(30);
5915}
5916
5917static void alc_fixup_headset_mode_alc255(struct hda_codec *codec,
5918 const struct hda_fixup *fix, int action)
5919{
5920 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5921 alc255_set_default_jack_type(codec);
5922 }
5923 alc_fixup_headset_mode(codec, fix, action);
5924}
5925
5926static void alc_fixup_headset_mode_alc255_no_hp_mic(struct hda_codec *codec,
5927 const struct hda_fixup *fix, int action)
5928{
5929 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5930 struct alc_spec *spec = codec->spec;
5931 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
5932 alc255_set_default_jack_type(codec);
5933 }
5934 else
5935 alc_fixup_headset_mode(codec, fix, action);
5936}
5937
5938static void alc288_update_headset_jack_cb(struct hda_codec *codec,
5939 struct hda_jack_callback *jack)
5940{
5941 struct alc_spec *spec = codec->spec;
5942
5943 alc_update_headset_jack_cb(codec, jack);
5944 /* Headset Mic enable or disable, only for Dell Dino */
5945 alc_update_gpio_data(codec, 0x40, spec->gen.hp_jack_present);
5946}
5947
5948static void alc_fixup_headset_mode_dell_alc288(struct hda_codec *codec,
5949 const struct hda_fixup *fix, int action)
5950{
5951 alc_fixup_headset_mode(codec, fix, action);
5952 if (action == HDA_FIXUP_ACT_PROBE) {
5953 struct alc_spec *spec = codec->spec;
5954 /* toggled via hp_automute_hook */
5955 spec->gpio_mask |= 0x40;
5956 spec->gpio_dir |= 0x40;
5957 spec->gen.hp_automute_hook = alc288_update_headset_jack_cb;
5958 }
5959}
5960
5961static void alc_fixup_auto_mute_via_amp(struct hda_codec *codec,
5962 const struct hda_fixup *fix, int action)
5963{
5964 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5965 struct alc_spec *spec = codec->spec;
5966 spec->gen.auto_mute_via_amp = 1;
5967 }
5968}
5969
5970static void alc_fixup_no_shutup(struct hda_codec *codec,
5971 const struct hda_fixup *fix, int action)
5972{
5973 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5974 struct alc_spec *spec = codec->spec;
5975 spec->no_shutup_pins = 1;
5976 }
5977}
5978
5979static void alc_fixup_disable_aamix(struct hda_codec *codec,
5980 const struct hda_fixup *fix, int action)
5981{
5982 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5983 struct alc_spec *spec = codec->spec;
5984 /* Disable AA-loopback as it causes white noise */
5985 spec->gen.mixer_nid = 0;
5986 }
5987}
5988
5989/* fixup for Thinkpad docks: add dock pins, avoid HP parser fixup */
5990static void alc_fixup_tpt440_dock(struct hda_codec *codec,
5991 const struct hda_fixup *fix, int action)
5992{
5993 static const struct hda_pintbl pincfgs[] = {
5994 { 0x16, 0x21211010 }, /* dock headphone */
5995 { 0x19, 0x21a11010 }, /* dock mic */
5996 { }
5997 };
5998 struct alc_spec *spec = codec->spec;
5999
6000 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6001 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
6002 codec->power_save_node = 0; /* avoid click noises */
6003 snd_hda_apply_pincfgs(codec, pincfgs);
6004 }
6005}
6006
6007static void alc_fixup_tpt470_dock(struct hda_codec *codec,
6008 const struct hda_fixup *fix, int action)
6009{
6010 static const struct hda_pintbl pincfgs[] = {
6011 { 0x17, 0x21211010 }, /* dock headphone */
6012 { 0x19, 0x21a11010 }, /* dock mic */
6013 { }
6014 };
6015 struct alc_spec *spec = codec->spec;
6016
6017 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6018 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
6019 snd_hda_apply_pincfgs(codec, pincfgs);
6020 } else if (action == HDA_FIXUP_ACT_INIT) {
6021 /* Enable DOCK device */
6022 snd_hda_codec_write(codec, 0x17, 0,
6023 AC_VERB_SET_CONFIG_DEFAULT_BYTES_3, 0);
6024 /* Enable DOCK device */
6025 snd_hda_codec_write(codec, 0x19, 0,
6026 AC_VERB_SET_CONFIG_DEFAULT_BYTES_3, 0);
6027 }
6028}
6029
6030static void alc_fixup_tpt470_dacs(struct hda_codec *codec,
6031 const struct hda_fixup *fix, int action)
6032{
6033 /* Assure the speaker pin to be coupled with DAC NID 0x03; otherwise
6034 * the speaker output becomes too low by some reason on Thinkpads with
6035 * ALC298 codec
6036 */
6037 static const hda_nid_t preferred_pairs[] = {
6038 0x14, 0x03, 0x17, 0x02, 0x21, 0x02,
6039 0
6040 };
6041 struct alc_spec *spec = codec->spec;
6042
6043 if (action == HDA_FIXUP_ACT_PRE_PROBE)
6044 spec->gen.preferred_dacs = preferred_pairs;
6045}
6046
6047static void alc295_fixup_asus_dacs(struct hda_codec *codec,
6048 const struct hda_fixup *fix, int action)
6049{
6050 static const hda_nid_t preferred_pairs[] = {
6051 0x17, 0x02, 0x21, 0x03, 0
6052 };
6053 struct alc_spec *spec = codec->spec;
6054
6055 if (action == HDA_FIXUP_ACT_PRE_PROBE)
6056 spec->gen.preferred_dacs = preferred_pairs;
6057}
6058
6059static void alc_shutup_dell_xps13(struct hda_codec *codec)
6060{
6061 struct alc_spec *spec = codec->spec;
6062 int hp_pin = alc_get_hp_pin(spec);
6063
6064 /* Prevent pop noises when headphones are plugged in */
6065 snd_hda_codec_write(codec, hp_pin, 0,
6066 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
6067 msleep(20);
6068}
6069
6070static void alc_fixup_dell_xps13(struct hda_codec *codec,
6071 const struct hda_fixup *fix, int action)
6072{
6073 struct alc_spec *spec = codec->spec;
6074 struct hda_input_mux *imux = &spec->gen.input_mux;
6075 int i;
6076
6077 switch (action) {
6078 case HDA_FIXUP_ACT_PRE_PROBE:
6079 /* mic pin 0x19 must be initialized with Vref Hi-Z, otherwise
6080 * it causes a click noise at start up
6081 */
6082 snd_hda_codec_set_pin_target(codec, 0x19, PIN_VREFHIZ);
6083 spec->shutup = alc_shutup_dell_xps13;
6084 break;
6085 case HDA_FIXUP_ACT_PROBE:
6086 /* Make the internal mic the default input source. */
6087 for (i = 0; i < imux->num_items; i++) {
6088 if (spec->gen.imux_pins[i] == 0x12) {
6089 spec->gen.cur_mux[0] = i;
6090 break;
6091 }
6092 }
6093 break;
6094 }
6095}
6096
6097static void alc_fixup_headset_mode_alc662(struct hda_codec *codec,
6098 const struct hda_fixup *fix, int action)
6099{
6100 struct alc_spec *spec = codec->spec;
6101
6102 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6103 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
6104 spec->gen.hp_mic = 1; /* Mic-in is same pin as headphone */
6105
6106 /* Disable boost for mic-in permanently. (This code is only called
6107 from quirks that guarantee that the headphone is at NID 0x1b.) */
6108 snd_hda_codec_write(codec, 0x1b, 0, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000);
6109 snd_hda_override_wcaps(codec, 0x1b, get_wcaps(codec, 0x1b) & ~AC_WCAP_IN_AMP);
6110 } else
6111 alc_fixup_headset_mode(codec, fix, action);
6112}
6113
6114static void alc_fixup_headset_mode_alc668(struct hda_codec *codec,
6115 const struct hda_fixup *fix, int action)
6116{
6117 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6118 alc_write_coef_idx(codec, 0xc4, 0x8000);
6119 alc_update_coef_idx(codec, 0xc2, ~0xfe, 0);
6120 snd_hda_set_pin_ctl_cache(codec, 0x18, 0);
6121 }
6122 alc_fixup_headset_mode(codec, fix, action);
6123}
6124
6125/* Returns the nid of the external mic input pin, or 0 if it cannot be found. */
6126static int find_ext_mic_pin(struct hda_codec *codec)
6127{
6128 struct alc_spec *spec = codec->spec;
6129 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
6130 hda_nid_t nid;
6131 unsigned int defcfg;
6132 int i;
6133
6134 for (i = 0; i < cfg->num_inputs; i++) {
6135 if (cfg->inputs[i].type != AUTO_PIN_MIC)
6136 continue;
6137 nid = cfg->inputs[i].pin;
6138 defcfg = snd_hda_codec_get_pincfg(codec, nid);
6139 if (snd_hda_get_input_pin_attr(defcfg) == INPUT_PIN_ATTR_INT)
6140 continue;
6141 return nid;
6142 }
6143
6144 return 0;
6145}
6146
6147static void alc271_hp_gate_mic_jack(struct hda_codec *codec,
6148 const struct hda_fixup *fix,
6149 int action)
6150{
6151 struct alc_spec *spec = codec->spec;
6152
6153 if (action == HDA_FIXUP_ACT_PROBE) {
6154 int mic_pin = find_ext_mic_pin(codec);
6155 int hp_pin = alc_get_hp_pin(spec);
6156
6157 if (snd_BUG_ON(!mic_pin || !hp_pin))
6158 return;
6159 snd_hda_jack_set_gating_jack(codec, mic_pin, hp_pin);
6160 }
6161}
6162
6163static void alc269_fixup_limit_int_mic_boost(struct hda_codec *codec,
6164 const struct hda_fixup *fix,
6165 int action)
6166{
6167 struct alc_spec *spec = codec->spec;
6168 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
6169 int i;
6170
6171 /* The mic boosts on level 2 and 3 are too noisy
6172 on the internal mic input.
6173 Therefore limit the boost to 0 or 1. */
6174
6175 if (action != HDA_FIXUP_ACT_PROBE)
6176 return;
6177
6178 for (i = 0; i < cfg->num_inputs; i++) {
6179 hda_nid_t nid = cfg->inputs[i].pin;
6180 unsigned int defcfg;
6181 if (cfg->inputs[i].type != AUTO_PIN_MIC)
6182 continue;
6183 defcfg = snd_hda_codec_get_pincfg(codec, nid);
6184 if (snd_hda_get_input_pin_attr(defcfg) != INPUT_PIN_ATTR_INT)
6185 continue;
6186
6187 snd_hda_override_amp_caps(codec, nid, HDA_INPUT,
6188 (0x00 << AC_AMPCAP_OFFSET_SHIFT) |
6189 (0x01 << AC_AMPCAP_NUM_STEPS_SHIFT) |
6190 (0x2f << AC_AMPCAP_STEP_SIZE_SHIFT) |
6191 (0 << AC_AMPCAP_MUTE_SHIFT));
6192 }
6193}
6194
6195static void alc283_hp_automute_hook(struct hda_codec *codec,
6196 struct hda_jack_callback *jack)
6197{
6198 struct alc_spec *spec = codec->spec;
6199 int vref;
6200
6201 msleep(200);
6202 snd_hda_gen_hp_automute(codec, jack);
6203
6204 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
6205
6206 msleep(600);
6207 snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
6208 vref);
6209}
6210
6211static void alc283_fixup_chromebook(struct hda_codec *codec,
6212 const struct hda_fixup *fix, int action)
6213{
6214 struct alc_spec *spec = codec->spec;
6215
6216 switch (action) {
6217 case HDA_FIXUP_ACT_PRE_PROBE:
6218 snd_hda_override_wcaps(codec, 0x03, 0);
6219 /* Disable AA-loopback as it causes white noise */
6220 spec->gen.mixer_nid = 0;
6221 break;
6222 case HDA_FIXUP_ACT_INIT:
6223 /* MIC2-VREF control */
6224 /* Set to manual mode */
6225 alc_update_coef_idx(codec, 0x06, 0x000c, 0);
6226 /* Enable Line1 input control by verb */
6227 alc_update_coef_idx(codec, 0x1a, 0, 1 << 4);
6228 break;
6229 }
6230}
6231
6232static void alc283_fixup_sense_combo_jack(struct hda_codec *codec,
6233 const struct hda_fixup *fix, int action)
6234{
6235 struct alc_spec *spec = codec->spec;
6236
6237 switch (action) {
6238 case HDA_FIXUP_ACT_PRE_PROBE:
6239 spec->gen.hp_automute_hook = alc283_hp_automute_hook;
6240 break;
6241 case HDA_FIXUP_ACT_INIT:
6242 /* MIC2-VREF control */
6243 /* Set to manual mode */
6244 alc_update_coef_idx(codec, 0x06, 0x000c, 0);
6245 break;
6246 }
6247}
6248
6249/* mute tablet speaker pin (0x14) via dock plugging in addition */
6250static void asus_tx300_automute(struct hda_codec *codec)
6251{
6252 struct alc_spec *spec = codec->spec;
6253 snd_hda_gen_update_outputs(codec);
6254 if (snd_hda_jack_detect(codec, 0x1b))
6255 spec->gen.mute_bits |= (1ULL << 0x14);
6256}
6257
6258static void alc282_fixup_asus_tx300(struct hda_codec *codec,
6259 const struct hda_fixup *fix, int action)
6260{
6261 struct alc_spec *spec = codec->spec;
6262 static const struct hda_pintbl dock_pins[] = {
6263 { 0x1b, 0x21114000 }, /* dock speaker pin */
6264 {}
6265 };
6266
6267 switch (action) {
6268 case HDA_FIXUP_ACT_PRE_PROBE:
6269 spec->init_amp = ALC_INIT_DEFAULT;
6270 /* TX300 needs to set up GPIO2 for the speaker amp */
6271 alc_setup_gpio(codec, 0x04);
6272 snd_hda_apply_pincfgs(codec, dock_pins);
6273 spec->gen.auto_mute_via_amp = 1;
6274 spec->gen.automute_hook = asus_tx300_automute;
6275 snd_hda_jack_detect_enable_callback(codec, 0x1b,
6276 snd_hda_gen_hp_automute);
6277 break;
6278 case HDA_FIXUP_ACT_PROBE:
6279 spec->init_amp = ALC_INIT_DEFAULT;
6280 break;
6281 case HDA_FIXUP_ACT_BUILD:
6282 /* this is a bit tricky; give more sane names for the main
6283 * (tablet) speaker and the dock speaker, respectively
6284 */
6285 rename_ctl(codec, "Speaker Playback Switch",
6286 "Dock Speaker Playback Switch");
6287 rename_ctl(codec, "Bass Speaker Playback Switch",
6288 "Speaker Playback Switch");
6289 break;
6290 }
6291}
6292
6293static void alc290_fixup_mono_speakers(struct hda_codec *codec,
6294 const struct hda_fixup *fix, int action)
6295{
6296 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6297 /* DAC node 0x03 is giving mono output. We therefore want to
6298 make sure 0x14 (front speaker) and 0x15 (headphones) use the
6299 stereo DAC, while leaving 0x17 (bass speaker) for node 0x03. */
6300 static const hda_nid_t conn1[] = { 0x0c };
6301 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn1), conn1);
6302 snd_hda_override_conn_list(codec, 0x15, ARRAY_SIZE(conn1), conn1);
6303 }
6304}
6305
6306static void alc298_fixup_speaker_volume(struct hda_codec *codec,
6307 const struct hda_fixup *fix, int action)
6308{
6309 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6310 /* The speaker is routed to the Node 0x06 by a mistake, as a result
6311 we can't adjust the speaker's volume since this node does not has
6312 Amp-out capability. we change the speaker's route to:
6313 Node 0x02 (Audio Output) -> Node 0x0c (Audio Mixer) -> Node 0x17 (
6314 Pin Complex), since Node 0x02 has Amp-out caps, we can adjust
6315 speaker's volume now. */
6316
6317 static const hda_nid_t conn1[] = { 0x0c };
6318 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn1), conn1);
6319 }
6320}
6321
6322/* disable DAC3 (0x06) selection on NID 0x17 as it has no volume amp control */
6323static void alc295_fixup_disable_dac3(struct hda_codec *codec,
6324 const struct hda_fixup *fix, int action)
6325{
6326 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6327 static const hda_nid_t conn[] = { 0x02, 0x03 };
6328 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
6329 }
6330}
6331
6332/* force NID 0x17 (Bass Speaker) to DAC1 to share it with the main speaker */
6333static void alc285_fixup_speaker2_to_dac1(struct hda_codec *codec,
6334 const struct hda_fixup *fix, int action)
6335{
6336 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6337 static const hda_nid_t conn[] = { 0x02 };
6338 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
6339 }
6340}
6341
6342/* Hook to update amp GPIO4 for automute */
6343static void alc280_hp_gpio4_automute_hook(struct hda_codec *codec,
6344 struct hda_jack_callback *jack)
6345{
6346 struct alc_spec *spec = codec->spec;
6347
6348 snd_hda_gen_hp_automute(codec, jack);
6349 /* mute_led_polarity is set to 0, so we pass inverted value here */
6350 alc_update_gpio_led(codec, 0x10, spec->mute_led_polarity,
6351 !spec->gen.hp_jack_present);
6352}
6353
6354/* Manage GPIOs for HP EliteBook Folio 9480m.
6355 *
6356 * GPIO4 is the headphone amplifier power control
6357 * GPIO3 is the audio output mute indicator LED
6358 */
6359
6360static void alc280_fixup_hp_9480m(struct hda_codec *codec,
6361 const struct hda_fixup *fix,
6362 int action)
6363{
6364 struct alc_spec *spec = codec->spec;
6365
6366 alc_fixup_hp_gpio_led(codec, action, 0x08, 0);
6367 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6368 /* amp at GPIO4; toggled via alc280_hp_gpio4_automute_hook() */
6369 spec->gpio_mask |= 0x10;
6370 spec->gpio_dir |= 0x10;
6371 spec->gen.hp_automute_hook = alc280_hp_gpio4_automute_hook;
6372 }
6373}
6374
6375static void alc275_fixup_gpio4_off(struct hda_codec *codec,
6376 const struct hda_fixup *fix,
6377 int action)
6378{
6379 struct alc_spec *spec = codec->spec;
6380
6381 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6382 spec->gpio_mask |= 0x04;
6383 spec->gpio_dir |= 0x04;
6384 /* set data bit low */
6385 }
6386}
6387
6388/* Quirk for Thinkpad X1 7th and 8th Gen
6389 * The following fixed routing needed
6390 * DAC1 (NID 0x02) -> Speaker (NID 0x14); some eq applied secretly
6391 * DAC2 (NID 0x03) -> Bass (NID 0x17) & Headphone (NID 0x21); sharing a DAC
6392 * DAC3 (NID 0x06) -> Unused, due to the lack of volume amp
6393 */
6394static void alc285_fixup_thinkpad_x1_gen7(struct hda_codec *codec,
6395 const struct hda_fixup *fix, int action)
6396{
6397 static const hda_nid_t conn[] = { 0x02, 0x03 }; /* exclude 0x06 */
6398 static const hda_nid_t preferred_pairs[] = {
6399 0x14, 0x02, 0x17, 0x03, 0x21, 0x03, 0
6400 };
6401 struct alc_spec *spec = codec->spec;
6402
6403 switch (action) {
6404 case HDA_FIXUP_ACT_PRE_PROBE:
6405 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
6406 spec->gen.preferred_dacs = preferred_pairs;
6407 break;
6408 case HDA_FIXUP_ACT_BUILD:
6409 /* The generic parser creates somewhat unintuitive volume ctls
6410 * with the fixed routing above, and the shared DAC2 may be
6411 * confusing for PA.
6412 * Rename those to unique names so that PA doesn't touch them
6413 * and use only Master volume.
6414 */
6415 rename_ctl(codec, "Front Playback Volume", "DAC1 Playback Volume");
6416 rename_ctl(codec, "Bass Speaker Playback Volume", "DAC2 Playback Volume");
6417 break;
6418 }
6419}
6420
6421static void alc233_alc662_fixup_lenovo_dual_codecs(struct hda_codec *codec,
6422 const struct hda_fixup *fix,
6423 int action)
6424{
6425 alc_fixup_dual_codecs(codec, fix, action);
6426 switch (action) {
6427 case HDA_FIXUP_ACT_PRE_PROBE:
6428 /* override card longname to provide a unique UCM profile */
6429 strcpy(codec->card->longname, "HDAudio-Lenovo-DualCodecs");
6430 break;
6431 case HDA_FIXUP_ACT_BUILD:
6432 /* rename Capture controls depending on the codec */
6433 rename_ctl(codec, "Capture Volume",
6434 codec->addr == 0 ?
6435 "Rear-Panel Capture Volume" :
6436 "Front-Panel Capture Volume");
6437 rename_ctl(codec, "Capture Switch",
6438 codec->addr == 0 ?
6439 "Rear-Panel Capture Switch" :
6440 "Front-Panel Capture Switch");
6441 break;
6442 }
6443}
6444
6445static void alc225_fixup_s3_pop_noise(struct hda_codec *codec,
6446 const struct hda_fixup *fix, int action)
6447{
6448 if (action != HDA_FIXUP_ACT_PRE_PROBE)
6449 return;
6450
6451 codec->power_save_node = 1;
6452}
6453
6454/* Forcibly assign NID 0x03 to HP/LO while NID 0x02 to SPK for EQ */
6455static void alc274_fixup_bind_dacs(struct hda_codec *codec,
6456 const struct hda_fixup *fix, int action)
6457{
6458 struct alc_spec *spec = codec->spec;
6459 static const hda_nid_t preferred_pairs[] = {
6460 0x21, 0x03, 0x1b, 0x03, 0x16, 0x02,
6461 0
6462 };
6463
6464 if (action != HDA_FIXUP_ACT_PRE_PROBE)
6465 return;
6466
6467 spec->gen.preferred_dacs = preferred_pairs;
6468 spec->gen.auto_mute_via_amp = 1;
6469 codec->power_save_node = 0;
6470}
6471
6472/* avoid DAC 0x06 for bass speaker 0x17; it has no volume control */
6473static void alc289_fixup_asus_ga401(struct hda_codec *codec,
6474 const struct hda_fixup *fix, int action)
6475{
6476 static const hda_nid_t preferred_pairs[] = {
6477 0x14, 0x02, 0x17, 0x02, 0x21, 0x03, 0
6478 };
6479 struct alc_spec *spec = codec->spec;
6480
6481 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6482 spec->gen.preferred_dacs = preferred_pairs;
6483 spec->gen.obey_preferred_dacs = 1;
6484 }
6485}
6486
6487/* The DAC of NID 0x3 will introduce click/pop noise on headphones, so invalidate it */
6488static void alc285_fixup_invalidate_dacs(struct hda_codec *codec,
6489 const struct hda_fixup *fix, int action)
6490{
6491 if (action != HDA_FIXUP_ACT_PRE_PROBE)
6492 return;
6493
6494 snd_hda_override_wcaps(codec, 0x03, 0);
6495}
6496
6497static void alc_combo_jack_hp_jd_restart(struct hda_codec *codec)
6498{
6499 switch (codec->core.vendor_id) {
6500 case 0x10ec0274:
6501 case 0x10ec0294:
6502 case 0x10ec0225:
6503 case 0x10ec0295:
6504 case 0x10ec0299:
6505 alc_update_coef_idx(codec, 0x4a, 0x8000, 1 << 15); /* Reset HP JD */
6506 alc_update_coef_idx(codec, 0x4a, 0x8000, 0 << 15);
6507 break;
6508 case 0x10ec0230:
6509 case 0x10ec0235:
6510 case 0x10ec0236:
6511 case 0x10ec0255:
6512 case 0x10ec0256:
6513 case 0x10ec0257:
6514 case 0x19e58326:
6515 alc_update_coef_idx(codec, 0x1b, 0x8000, 1 << 15); /* Reset HP JD */
6516 alc_update_coef_idx(codec, 0x1b, 0x8000, 0 << 15);
6517 break;
6518 }
6519}
6520
6521static void alc295_fixup_chromebook(struct hda_codec *codec,
6522 const struct hda_fixup *fix, int action)
6523{
6524 struct alc_spec *spec = codec->spec;
6525
6526 switch (action) {
6527 case HDA_FIXUP_ACT_PRE_PROBE:
6528 spec->ultra_low_power = true;
6529 break;
6530 case HDA_FIXUP_ACT_INIT:
6531 alc_combo_jack_hp_jd_restart(codec);
6532 break;
6533 }
6534}
6535
6536static void alc_fixup_disable_mic_vref(struct hda_codec *codec,
6537 const struct hda_fixup *fix, int action)
6538{
6539 if (action == HDA_FIXUP_ACT_PRE_PROBE)
6540 snd_hda_codec_set_pin_target(codec, 0x19, PIN_VREFHIZ);
6541}
6542
6543
6544static void alc294_gx502_toggle_output(struct hda_codec *codec,
6545 struct hda_jack_callback *cb)
6546{
6547 /* The Windows driver sets the codec up in a very different way where
6548 * it appears to leave 0x10 = 0x8a20 set. For Linux we need to toggle it
6549 */
6550 if (snd_hda_jack_detect_state(codec, 0x21) == HDA_JACK_PRESENT)
6551 alc_write_coef_idx(codec, 0x10, 0x8a20);
6552 else
6553 alc_write_coef_idx(codec, 0x10, 0x0a20);
6554}
6555
6556static void alc294_fixup_gx502_hp(struct hda_codec *codec,
6557 const struct hda_fixup *fix, int action)
6558{
6559 /* Pin 0x21: headphones/headset mic */
6560 if (!is_jack_detectable(codec, 0x21))
6561 return;
6562
6563 switch (action) {
6564 case HDA_FIXUP_ACT_PRE_PROBE:
6565 snd_hda_jack_detect_enable_callback(codec, 0x21,
6566 alc294_gx502_toggle_output);
6567 break;
6568 case HDA_FIXUP_ACT_INIT:
6569 /* Make sure to start in a correct state, i.e. if
6570 * headphones have been plugged in before powering up the system
6571 */
6572 alc294_gx502_toggle_output(codec, NULL);
6573 break;
6574 }
6575}
6576
6577static void alc294_gu502_toggle_output(struct hda_codec *codec,
6578 struct hda_jack_callback *cb)
6579{
6580 /* Windows sets 0x10 to 0x8420 for Node 0x20 which is
6581 * responsible from changes between speakers and headphones
6582 */
6583 if (snd_hda_jack_detect_state(codec, 0x21) == HDA_JACK_PRESENT)
6584 alc_write_coef_idx(codec, 0x10, 0x8420);
6585 else
6586 alc_write_coef_idx(codec, 0x10, 0x0a20);
6587}
6588
6589static void alc294_fixup_gu502_hp(struct hda_codec *codec,
6590 const struct hda_fixup *fix, int action)
6591{
6592 if (!is_jack_detectable(codec, 0x21))
6593 return;
6594
6595 switch (action) {
6596 case HDA_FIXUP_ACT_PRE_PROBE:
6597 snd_hda_jack_detect_enable_callback(codec, 0x21,
6598 alc294_gu502_toggle_output);
6599 break;
6600 case HDA_FIXUP_ACT_INIT:
6601 alc294_gu502_toggle_output(codec, NULL);
6602 break;
6603 }
6604}
6605
6606static void alc285_fixup_hp_gpio_amp_init(struct hda_codec *codec,
6607 const struct hda_fixup *fix, int action)
6608{
6609 if (action != HDA_FIXUP_ACT_INIT)
6610 return;
6611
6612 msleep(100);
6613 alc_write_coef_idx(codec, 0x65, 0x0);
6614}
6615
6616static void alc274_fixup_hp_headset_mic(struct hda_codec *codec,
6617 const struct hda_fixup *fix, int action)
6618{
6619 switch (action) {
6620 case HDA_FIXUP_ACT_INIT:
6621 alc_combo_jack_hp_jd_restart(codec);
6622 break;
6623 }
6624}
6625
6626static void alc_fixup_no_int_mic(struct hda_codec *codec,
6627 const struct hda_fixup *fix, int action)
6628{
6629 struct alc_spec *spec = codec->spec;
6630
6631 switch (action) {
6632 case HDA_FIXUP_ACT_PRE_PROBE:
6633 /* Mic RING SLEEVE swap for combo jack */
6634 alc_update_coef_idx(codec, 0x45, 0xf<<12 | 1<<10, 5<<12);
6635 spec->no_internal_mic_pin = true;
6636 break;
6637 case HDA_FIXUP_ACT_INIT:
6638 alc_combo_jack_hp_jd_restart(codec);
6639 break;
6640 }
6641}
6642
6643/* GPIO1 = amplifier on/off
6644 * GPIO3 = mic mute LED
6645 */
6646static void alc285_fixup_hp_spectre_x360_eb1(struct hda_codec *codec,
6647 const struct hda_fixup *fix, int action)
6648{
6649 static const hda_nid_t conn[] = { 0x02 };
6650
6651 struct alc_spec *spec = codec->spec;
6652 static const struct hda_pintbl pincfgs[] = {
6653 { 0x14, 0x90170110 }, /* front/high speakers */
6654 { 0x17, 0x90170130 }, /* back/bass speakers */
6655 { }
6656 };
6657
6658 //enable micmute led
6659 alc_fixup_hp_gpio_led(codec, action, 0x00, 0x04);
6660
6661 switch (action) {
6662 case HDA_FIXUP_ACT_PRE_PROBE:
6663 spec->micmute_led_polarity = 1;
6664 /* needed for amp of back speakers */
6665 spec->gpio_mask |= 0x01;
6666 spec->gpio_dir |= 0x01;
6667 snd_hda_apply_pincfgs(codec, pincfgs);
6668 /* share DAC to have unified volume control */
6669 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn), conn);
6670 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
6671 break;
6672 case HDA_FIXUP_ACT_INIT:
6673 /* need to toggle GPIO to enable the amp of back speakers */
6674 alc_update_gpio_data(codec, 0x01, true);
6675 msleep(100);
6676 alc_update_gpio_data(codec, 0x01, false);
6677 break;
6678 }
6679}
6680
6681static void alc285_fixup_hp_spectre_x360(struct hda_codec *codec,
6682 const struct hda_fixup *fix, int action)
6683{
6684 static const hda_nid_t conn[] = { 0x02 };
6685 static const struct hda_pintbl pincfgs[] = {
6686 { 0x14, 0x90170110 }, /* rear speaker */
6687 { }
6688 };
6689
6690 switch (action) {
6691 case HDA_FIXUP_ACT_PRE_PROBE:
6692 snd_hda_apply_pincfgs(codec, pincfgs);
6693 /* force front speaker to DAC1 */
6694 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
6695 break;
6696 }
6697}
6698
6699/* for hda_fixup_thinkpad_acpi() */
6700#include "thinkpad_helper.c"
6701
6702static void alc_fixup_thinkpad_acpi(struct hda_codec *codec,
6703 const struct hda_fixup *fix, int action)
6704{
6705 alc_fixup_no_shutup(codec, fix, action); /* reduce click noise */
6706 hda_fixup_thinkpad_acpi(codec, fix, action);
6707}
6708
6709/* Fixup for Lenovo Legion 15IMHg05 speaker output on headset removal. */
6710static void alc287_fixup_legion_15imhg05_speakers(struct hda_codec *codec,
6711 const struct hda_fixup *fix,
6712 int action)
6713{
6714 struct alc_spec *spec = codec->spec;
6715
6716 switch (action) {
6717 case HDA_FIXUP_ACT_PRE_PROBE:
6718 spec->gen.suppress_auto_mute = 1;
6719 break;
6720 }
6721}
6722
6723#ifdef CONFIG_ACPI
6724static void comp_acpi_device_notify(acpi_handle handle, u32 event, void *data)
6725{
6726 struct hda_codec *cdc = data;
6727 struct alc_spec *spec = cdc->spec;
6728 int i;
6729
6730 codec_info(cdc, "ACPI Notification %d\n", event);
6731
6732 for (i = 0; i < HDA_MAX_COMPONENTS; i++) {
6733 if (spec->comps[i].dev && spec->comps[i].acpi_notify)
6734 spec->comps[i].acpi_notify(acpi_device_handle(spec->comps[i].adev), event,
6735 spec->comps[i].dev);
6736 }
6737}
6738
6739static int comp_bind_acpi(struct device *dev)
6740{
6741 struct hda_codec *cdc = dev_to_hda_codec(dev);
6742 struct alc_spec *spec = cdc->spec;
6743 bool support_notifications = false;
6744 struct acpi_device *adev;
6745 int ret;
6746 int i;
6747
6748 adev = spec->comps[0].adev;
6749 if (!acpi_device_handle(adev))
6750 return 0;
6751
6752 for (i = 0; i < HDA_MAX_COMPONENTS; i++)
6753 support_notifications = support_notifications ||
6754 spec->comps[i].acpi_notifications_supported;
6755
6756 if (support_notifications) {
6757 ret = acpi_install_notify_handler(adev->handle, ACPI_DEVICE_NOTIFY,
6758 comp_acpi_device_notify, cdc);
6759 if (ret < 0) {
6760 codec_warn(cdc, "Failed to install notify handler: %d\n", ret);
6761 return 0;
6762 }
6763
6764 codec_dbg(cdc, "Notify handler installed\n");
6765 }
6766
6767 return 0;
6768}
6769
6770static void comp_unbind_acpi(struct device *dev)
6771{
6772 struct hda_codec *cdc = dev_to_hda_codec(dev);
6773 struct alc_spec *spec = cdc->spec;
6774 struct acpi_device *adev;
6775 int ret;
6776
6777 adev = spec->comps[0].adev;
6778 if (!acpi_device_handle(adev))
6779 return;
6780
6781 ret = acpi_remove_notify_handler(adev->handle, ACPI_DEVICE_NOTIFY,
6782 comp_acpi_device_notify);
6783 if (ret < 0)
6784 codec_warn(cdc, "Failed to uninstall notify handler: %d\n", ret);
6785}
6786#else
6787static int comp_bind_acpi(struct device *dev)
6788{
6789 return 0;
6790}
6791
6792static void comp_unbind_acpi(struct device *dev)
6793{
6794}
6795#endif
6796
6797static int comp_bind(struct device *dev)
6798{
6799 struct hda_codec *cdc = dev_to_hda_codec(dev);
6800 struct alc_spec *spec = cdc->spec;
6801 int ret;
6802
6803 ret = component_bind_all(dev, spec->comps);
6804 if (ret)
6805 return ret;
6806
6807 return comp_bind_acpi(dev);
6808}
6809
6810static void comp_unbind(struct device *dev)
6811{
6812 struct hda_codec *cdc = dev_to_hda_codec(dev);
6813 struct alc_spec *spec = cdc->spec;
6814
6815 comp_unbind_acpi(dev);
6816 component_unbind_all(dev, spec->comps);
6817}
6818
6819static const struct component_master_ops comp_master_ops = {
6820 .bind = comp_bind,
6821 .unbind = comp_unbind,
6822};
6823
6824static void comp_generic_playback_hook(struct hda_pcm_stream *hinfo, struct hda_codec *cdc,
6825 struct snd_pcm_substream *sub, int action)
6826{
6827 struct alc_spec *spec = cdc->spec;
6828 int i;
6829
6830 for (i = 0; i < HDA_MAX_COMPONENTS; i++) {
6831 if (spec->comps[i].dev && spec->comps[i].pre_playback_hook)
6832 spec->comps[i].pre_playback_hook(spec->comps[i].dev, action);
6833 }
6834 for (i = 0; i < HDA_MAX_COMPONENTS; i++) {
6835 if (spec->comps[i].dev && spec->comps[i].playback_hook)
6836 spec->comps[i].playback_hook(spec->comps[i].dev, action);
6837 }
6838 for (i = 0; i < HDA_MAX_COMPONENTS; i++) {
6839 if (spec->comps[i].dev && spec->comps[i].post_playback_hook)
6840 spec->comps[i].post_playback_hook(spec->comps[i].dev, action);
6841 }
6842}
6843
6844struct scodec_dev_name {
6845 const char *bus;
6846 const char *hid;
6847 int index;
6848};
6849
6850/* match the device name in a slightly relaxed manner */
6851static int comp_match_cs35l41_dev_name(struct device *dev, void *data)
6852{
6853 struct scodec_dev_name *p = data;
6854 const char *d = dev_name(dev);
6855 int n = strlen(p->bus);
6856 char tmp[32];
6857
6858 /* check the bus name */
6859 if (strncmp(d, p->bus, n))
6860 return 0;
6861 /* skip the bus number */
6862 if (isdigit(d[n]))
6863 n++;
6864 /* the rest must be exact matching */
6865 snprintf(tmp, sizeof(tmp), "-%s:00-cs35l41-hda.%d", p->hid, p->index);
6866 return !strcmp(d + n, tmp);
6867}
6868
6869static int comp_match_tas2781_dev_name(struct device *dev,
6870 void *data)
6871{
6872 struct scodec_dev_name *p = data;
6873 const char *d = dev_name(dev);
6874 int n = strlen(p->bus);
6875 char tmp[32];
6876
6877 /* check the bus name */
6878 if (strncmp(d, p->bus, n))
6879 return 0;
6880 /* skip the bus number */
6881 if (isdigit(d[n]))
6882 n++;
6883 /* the rest must be exact matching */
6884 snprintf(tmp, sizeof(tmp), "-%s:00", p->hid);
6885
6886 return !strcmp(d + n, tmp);
6887}
6888
6889static void cs35l41_generic_fixup(struct hda_codec *cdc, int action, const char *bus,
6890 const char *hid, int count)
6891{
6892 struct device *dev = hda_codec_dev(cdc);
6893 struct alc_spec *spec = cdc->spec;
6894 struct scodec_dev_name *rec;
6895 int ret, i;
6896
6897 switch (action) {
6898 case HDA_FIXUP_ACT_PRE_PROBE:
6899 for (i = 0; i < count; i++) {
6900 rec = devm_kmalloc(dev, sizeof(*rec), GFP_KERNEL);
6901 if (!rec)
6902 return;
6903 rec->bus = bus;
6904 rec->hid = hid;
6905 rec->index = i;
6906 spec->comps[i].codec = cdc;
6907 component_match_add(dev, &spec->match,
6908 comp_match_cs35l41_dev_name, rec);
6909 }
6910 ret = component_master_add_with_match(dev, &comp_master_ops, spec->match);
6911 if (ret)
6912 codec_err(cdc, "Fail to register component aggregator %d\n", ret);
6913 else
6914 spec->gen.pcm_playback_hook = comp_generic_playback_hook;
6915 break;
6916 case HDA_FIXUP_ACT_FREE:
6917 component_master_del(dev, &comp_master_ops);
6918 break;
6919 }
6920}
6921
6922static void tas2781_generic_fixup(struct hda_codec *cdc, int action,
6923 const char *bus, const char *hid)
6924{
6925 struct device *dev = hda_codec_dev(cdc);
6926 struct alc_spec *spec = cdc->spec;
6927 struct scodec_dev_name *rec;
6928 int ret;
6929
6930 switch (action) {
6931 case HDA_FIXUP_ACT_PRE_PROBE:
6932 rec = devm_kmalloc(dev, sizeof(*rec), GFP_KERNEL);
6933 if (!rec)
6934 return;
6935 rec->bus = bus;
6936 rec->hid = hid;
6937 rec->index = 0;
6938 spec->comps[0].codec = cdc;
6939 component_match_add(dev, &spec->match,
6940 comp_match_tas2781_dev_name, rec);
6941 ret = component_master_add_with_match(dev, &comp_master_ops,
6942 spec->match);
6943 if (ret)
6944 codec_err(cdc,
6945 "Fail to register component aggregator %d\n",
6946 ret);
6947 else
6948 spec->gen.pcm_playback_hook =
6949 comp_generic_playback_hook;
6950 break;
6951 case HDA_FIXUP_ACT_FREE:
6952 component_master_del(dev, &comp_master_ops);
6953 break;
6954 }
6955}
6956
6957static void cs35l41_fixup_i2c_two(struct hda_codec *cdc, const struct hda_fixup *fix, int action)
6958{
6959 cs35l41_generic_fixup(cdc, action, "i2c", "CSC3551", 2);
6960}
6961
6962static void cs35l41_fixup_i2c_four(struct hda_codec *cdc, const struct hda_fixup *fix, int action)
6963{
6964 cs35l41_generic_fixup(cdc, action, "i2c", "CSC3551", 4);
6965}
6966
6967static void cs35l41_fixup_spi_two(struct hda_codec *codec, const struct hda_fixup *fix, int action)
6968{
6969 cs35l41_generic_fixup(codec, action, "spi", "CSC3551", 2);
6970}
6971
6972static void cs35l41_fixup_spi_four(struct hda_codec *codec, const struct hda_fixup *fix, int action)
6973{
6974 cs35l41_generic_fixup(codec, action, "spi", "CSC3551", 4);
6975}
6976
6977static void alc287_fixup_legion_16achg6_speakers(struct hda_codec *cdc, const struct hda_fixup *fix,
6978 int action)
6979{
6980 cs35l41_generic_fixup(cdc, action, "i2c", "CLSA0100", 2);
6981}
6982
6983static void alc287_fixup_legion_16ithg6_speakers(struct hda_codec *cdc, const struct hda_fixup *fix,
6984 int action)
6985{
6986 cs35l41_generic_fixup(cdc, action, "i2c", "CLSA0101", 2);
6987}
6988
6989static void tas2781_fixup_i2c(struct hda_codec *cdc,
6990 const struct hda_fixup *fix, int action)
6991{
6992 tas2781_generic_fixup(cdc, action, "i2c", "TIAS2781");
6993}
6994
6995static void yoga7_14arb7_fixup_i2c(struct hda_codec *cdc,
6996 const struct hda_fixup *fix, int action)
6997{
6998 tas2781_generic_fixup(cdc, action, "i2c", "INT8866");
6999}
7000
7001/* for alc295_fixup_hp_top_speakers */
7002#include "hp_x360_helper.c"
7003
7004/* for alc285_fixup_ideapad_s740_coef() */
7005#include "ideapad_s740_helper.c"
7006
7007static const struct coef_fw alc256_fixup_set_coef_defaults_coefs[] = {
7008 WRITE_COEF(0x10, 0x0020), WRITE_COEF(0x24, 0x0000),
7009 WRITE_COEF(0x26, 0x0000), WRITE_COEF(0x29, 0x3000),
7010 WRITE_COEF(0x37, 0xfe05), WRITE_COEF(0x45, 0x5089),
7011 {}
7012};
7013
7014static void alc256_fixup_set_coef_defaults(struct hda_codec *codec,
7015 const struct hda_fixup *fix,
7016 int action)
7017{
7018 /*
7019 * A certain other OS sets these coeffs to different values. On at least
7020 * one TongFang barebone these settings might survive even a cold
7021 * reboot. So to restore a clean slate the values are explicitly reset
7022 * to default here. Without this, the external microphone is always in a
7023 * plugged-in state, while the internal microphone is always in an
7024 * unplugged state, breaking the ability to use the internal microphone.
7025 */
7026 alc_process_coef_fw(codec, alc256_fixup_set_coef_defaults_coefs);
7027}
7028
7029static const struct coef_fw alc233_fixup_no_audio_jack_coefs[] = {
7030 WRITE_COEF(0x1a, 0x9003), WRITE_COEF(0x1b, 0x0e2b), WRITE_COEF(0x37, 0xfe06),
7031 WRITE_COEF(0x38, 0x4981), WRITE_COEF(0x45, 0xd489), WRITE_COEF(0x46, 0x0074),
7032 WRITE_COEF(0x49, 0x0149),
7033 {}
7034};
7035
7036static void alc233_fixup_no_audio_jack(struct hda_codec *codec,
7037 const struct hda_fixup *fix,
7038 int action)
7039{
7040 /*
7041 * The audio jack input and output is not detected on the ASRock NUC Box
7042 * 1100 series when cold booting without this fix. Warm rebooting from a
7043 * certain other OS makes the audio functional, as COEF settings are
7044 * preserved in this case. This fix sets these altered COEF values as
7045 * the default.
7046 */
7047 alc_process_coef_fw(codec, alc233_fixup_no_audio_jack_coefs);
7048}
7049
7050static void alc256_fixup_mic_no_presence_and_resume(struct hda_codec *codec,
7051 const struct hda_fixup *fix,
7052 int action)
7053{
7054 /*
7055 * The Clevo NJ51CU comes either with the ALC293 or the ALC256 codec,
7056 * but uses the 0x8686 subproduct id in both cases. The ALC256 codec
7057 * needs an additional quirk for sound working after suspend and resume.
7058 */
7059 if (codec->core.vendor_id == 0x10ec0256) {
7060 alc_update_coef_idx(codec, 0x10, 1<<9, 0);
7061 snd_hda_codec_set_pincfg(codec, 0x19, 0x04a11120);
7062 } else {
7063 snd_hda_codec_set_pincfg(codec, 0x1a, 0x04a1113c);
7064 }
7065}
7066
7067static void alc_fixup_dell4_mic_no_presence_quiet(struct hda_codec *codec,
7068 const struct hda_fixup *fix,
7069 int action)
7070{
7071 struct alc_spec *spec = codec->spec;
7072 struct hda_input_mux *imux = &spec->gen.input_mux;
7073 int i;
7074
7075 alc269_fixup_limit_int_mic_boost(codec, fix, action);
7076
7077 switch (action) {
7078 case HDA_FIXUP_ACT_PRE_PROBE:
7079 /**
7080 * Set the vref of pin 0x19 (Headset Mic) and pin 0x1b (Headphone Mic)
7081 * to Hi-Z to avoid pop noises at startup and when plugging and
7082 * unplugging headphones.
7083 */
7084 snd_hda_codec_set_pin_target(codec, 0x19, PIN_VREFHIZ);
7085 snd_hda_codec_set_pin_target(codec, 0x1b, PIN_VREFHIZ);
7086 break;
7087 case HDA_FIXUP_ACT_PROBE:
7088 /**
7089 * Make the internal mic (0x12) the default input source to
7090 * prevent pop noises on cold boot.
7091 */
7092 for (i = 0; i < imux->num_items; i++) {
7093 if (spec->gen.imux_pins[i] == 0x12) {
7094 spec->gen.cur_mux[0] = i;
7095 break;
7096 }
7097 }
7098 break;
7099 }
7100}
7101
7102static void alc287_fixup_yoga9_14iap7_bass_spk_pin(struct hda_codec *codec,
7103 const struct hda_fixup *fix, int action)
7104{
7105 /*
7106 * The Pin Complex 0x17 for the bass speakers is wrongly reported as
7107 * unconnected.
7108 */
7109 static const struct hda_pintbl pincfgs[] = {
7110 { 0x17, 0x90170121 },
7111 { }
7112 };
7113 /*
7114 * Avoid DAC 0x06 and 0x08, as they have no volume controls.
7115 * DAC 0x02 and 0x03 would be fine.
7116 */
7117 static const hda_nid_t conn[] = { 0x02, 0x03 };
7118 /*
7119 * Prefer both speakerbar (0x14) and bass speakers (0x17) connected to DAC 0x02.
7120 * Headphones (0x21) are connected to DAC 0x03.
7121 */
7122 static const hda_nid_t preferred_pairs[] = {
7123 0x14, 0x02,
7124 0x17, 0x02,
7125 0x21, 0x03,
7126 0
7127 };
7128 struct alc_spec *spec = codec->spec;
7129
7130 switch (action) {
7131 case HDA_FIXUP_ACT_PRE_PROBE:
7132 snd_hda_apply_pincfgs(codec, pincfgs);
7133 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
7134 spec->gen.preferred_dacs = preferred_pairs;
7135 break;
7136 }
7137}
7138
7139static void alc295_fixup_dell_inspiron_top_speakers(struct hda_codec *codec,
7140 const struct hda_fixup *fix, int action)
7141{
7142 static const struct hda_pintbl pincfgs[] = {
7143 { 0x14, 0x90170151 },
7144 { 0x17, 0x90170150 },
7145 { }
7146 };
7147 static const hda_nid_t conn[] = { 0x02, 0x03 };
7148 static const hda_nid_t preferred_pairs[] = {
7149 0x14, 0x02,
7150 0x17, 0x03,
7151 0x21, 0x02,
7152 0
7153 };
7154 struct alc_spec *spec = codec->spec;
7155
7156 alc_fixup_no_shutup(codec, fix, action);
7157
7158 switch (action) {
7159 case HDA_FIXUP_ACT_PRE_PROBE:
7160 snd_hda_apply_pincfgs(codec, pincfgs);
7161 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
7162 spec->gen.preferred_dacs = preferred_pairs;
7163 break;
7164 }
7165}
7166
7167/* Forcibly assign NID 0x03 to HP while NID 0x02 to SPK */
7168static void alc287_fixup_bind_dacs(struct hda_codec *codec,
7169 const struct hda_fixup *fix, int action)
7170{
7171 struct alc_spec *spec = codec->spec;
7172 static const hda_nid_t conn[] = { 0x02, 0x03 }; /* exclude 0x06 */
7173 static const hda_nid_t preferred_pairs[] = {
7174 0x17, 0x02, 0x21, 0x03, 0
7175 };
7176
7177 if (action != HDA_FIXUP_ACT_PRE_PROBE)
7178 return;
7179
7180 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
7181 spec->gen.preferred_dacs = preferred_pairs;
7182 spec->gen.auto_mute_via_amp = 1;
7183 if (spec->gen.autocfg.speaker_pins[0] != 0x14) {
7184 snd_hda_codec_write_cache(codec, 0x14, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
7185 0x0); /* Make sure 0x14 was disable */
7186 }
7187}
7188/* Fix none verb table of Headset Mic pin */
7189static void alc_fixup_headset_mic(struct hda_codec *codec,
7190 const struct hda_fixup *fix, int action)
7191{
7192 struct alc_spec *spec = codec->spec;
7193 static const struct hda_pintbl pincfgs[] = {
7194 { 0x19, 0x03a1103c },
7195 { }
7196 };
7197
7198 switch (action) {
7199 case HDA_FIXUP_ACT_PRE_PROBE:
7200 snd_hda_apply_pincfgs(codec, pincfgs);
7201 alc_update_coef_idx(codec, 0x45, 0xf<<12 | 1<<10, 5<<12);
7202 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
7203 break;
7204 }
7205}
7206
7207
7208enum {
7209 ALC269_FIXUP_GPIO2,
7210 ALC269_FIXUP_SONY_VAIO,
7211 ALC275_FIXUP_SONY_VAIO_GPIO2,
7212 ALC269_FIXUP_DELL_M101Z,
7213 ALC269_FIXUP_SKU_IGNORE,
7214 ALC269_FIXUP_ASUS_G73JW,
7215 ALC269_FIXUP_ASUS_N7601ZM_PINS,
7216 ALC269_FIXUP_ASUS_N7601ZM,
7217 ALC269_FIXUP_LENOVO_EAPD,
7218 ALC275_FIXUP_SONY_HWEQ,
7219 ALC275_FIXUP_SONY_DISABLE_AAMIX,
7220 ALC271_FIXUP_DMIC,
7221 ALC269_FIXUP_PCM_44K,
7222 ALC269_FIXUP_STEREO_DMIC,
7223 ALC269_FIXUP_HEADSET_MIC,
7224 ALC269_FIXUP_QUANTA_MUTE,
7225 ALC269_FIXUP_LIFEBOOK,
7226 ALC269_FIXUP_LIFEBOOK_EXTMIC,
7227 ALC269_FIXUP_LIFEBOOK_HP_PIN,
7228 ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT,
7229 ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC,
7230 ALC269_FIXUP_AMIC,
7231 ALC269_FIXUP_DMIC,
7232 ALC269VB_FIXUP_AMIC,
7233 ALC269VB_FIXUP_DMIC,
7234 ALC269_FIXUP_HP_MUTE_LED,
7235 ALC269_FIXUP_HP_MUTE_LED_MIC1,
7236 ALC269_FIXUP_HP_MUTE_LED_MIC2,
7237 ALC269_FIXUP_HP_MUTE_LED_MIC3,
7238 ALC269_FIXUP_HP_GPIO_LED,
7239 ALC269_FIXUP_HP_GPIO_MIC1_LED,
7240 ALC269_FIXUP_HP_LINE1_MIC1_LED,
7241 ALC269_FIXUP_INV_DMIC,
7242 ALC269_FIXUP_LENOVO_DOCK,
7243 ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST,
7244 ALC269_FIXUP_NO_SHUTUP,
7245 ALC286_FIXUP_SONY_MIC_NO_PRESENCE,
7246 ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT,
7247 ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
7248 ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
7249 ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
7250 ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
7251 ALC269_FIXUP_DELL4_MIC_NO_PRESENCE_QUIET,
7252 ALC269_FIXUP_HEADSET_MODE,
7253 ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC,
7254 ALC269_FIXUP_ASPIRE_HEADSET_MIC,
7255 ALC269_FIXUP_ASUS_X101_FUNC,
7256 ALC269_FIXUP_ASUS_X101_VERB,
7257 ALC269_FIXUP_ASUS_X101,
7258 ALC271_FIXUP_AMIC_MIC2,
7259 ALC271_FIXUP_HP_GATE_MIC_JACK,
7260 ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572,
7261 ALC269_FIXUP_ACER_AC700,
7262 ALC269_FIXUP_LIMIT_INT_MIC_BOOST,
7263 ALC269VB_FIXUP_ASUS_ZENBOOK,
7264 ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A,
7265 ALC269VB_FIXUP_ASUS_MIC_NO_PRESENCE,
7266 ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED,
7267 ALC269VB_FIXUP_ORDISSIMO_EVE2,
7268 ALC283_FIXUP_CHROME_BOOK,
7269 ALC283_FIXUP_SENSE_COMBO_JACK,
7270 ALC282_FIXUP_ASUS_TX300,
7271 ALC283_FIXUP_INT_MIC,
7272 ALC290_FIXUP_MONO_SPEAKERS,
7273 ALC290_FIXUP_MONO_SPEAKERS_HSJACK,
7274 ALC290_FIXUP_SUBWOOFER,
7275 ALC290_FIXUP_SUBWOOFER_HSJACK,
7276 ALC269_FIXUP_THINKPAD_ACPI,
7277 ALC269_FIXUP_DMIC_THINKPAD_ACPI,
7278 ALC269VB_FIXUP_CHUWI_COREBOOK_XPRO,
7279 ALC255_FIXUP_ACER_MIC_NO_PRESENCE,
7280 ALC255_FIXUP_ASUS_MIC_NO_PRESENCE,
7281 ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7282 ALC255_FIXUP_DELL2_MIC_NO_PRESENCE,
7283 ALC255_FIXUP_HEADSET_MODE,
7284 ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC,
7285 ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
7286 ALC292_FIXUP_TPT440_DOCK,
7287 ALC292_FIXUP_TPT440,
7288 ALC283_FIXUP_HEADSET_MIC,
7289 ALC255_FIXUP_MIC_MUTE_LED,
7290 ALC282_FIXUP_ASPIRE_V5_PINS,
7291 ALC269VB_FIXUP_ASPIRE_E1_COEF,
7292 ALC280_FIXUP_HP_GPIO4,
7293 ALC286_FIXUP_HP_GPIO_LED,
7294 ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY,
7295 ALC280_FIXUP_HP_DOCK_PINS,
7296 ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED,
7297 ALC280_FIXUP_HP_9480M,
7298 ALC245_FIXUP_HP_X360_AMP,
7299 ALC285_FIXUP_HP_SPECTRE_X360_EB1,
7300 ALC288_FIXUP_DELL_HEADSET_MODE,
7301 ALC288_FIXUP_DELL1_MIC_NO_PRESENCE,
7302 ALC288_FIXUP_DELL_XPS_13,
7303 ALC288_FIXUP_DISABLE_AAMIX,
7304 ALC292_FIXUP_DELL_E7X_AAMIX,
7305 ALC292_FIXUP_DELL_E7X,
7306 ALC292_FIXUP_DISABLE_AAMIX,
7307 ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK,
7308 ALC298_FIXUP_ALIENWARE_MIC_NO_PRESENCE,
7309 ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
7310 ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE,
7311 ALC275_FIXUP_DELL_XPS,
7312 ALC293_FIXUP_LENOVO_SPK_NOISE,
7313 ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY,
7314 ALC255_FIXUP_DELL_SPK_NOISE,
7315 ALC225_FIXUP_DISABLE_MIC_VREF,
7316 ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
7317 ALC295_FIXUP_DISABLE_DAC3,
7318 ALC285_FIXUP_SPEAKER2_TO_DAC1,
7319 ALC285_FIXUP_ASUS_SPEAKER2_TO_DAC1,
7320 ALC285_FIXUP_ASUS_HEADSET_MIC,
7321 ALC285_FIXUP_ASUS_SPI_REAR_SPEAKERS,
7322 ALC285_FIXUP_ASUS_I2C_SPEAKER2_TO_DAC1,
7323 ALC285_FIXUP_ASUS_I2C_HEADSET_MIC,
7324 ALC280_FIXUP_HP_HEADSET_MIC,
7325 ALC221_FIXUP_HP_FRONT_MIC,
7326 ALC292_FIXUP_TPT460,
7327 ALC298_FIXUP_SPK_VOLUME,
7328 ALC298_FIXUP_LENOVO_SPK_VOLUME,
7329 ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER,
7330 ALC269_FIXUP_ATIV_BOOK_8,
7331 ALC221_FIXUP_HP_288PRO_MIC_NO_PRESENCE,
7332 ALC221_FIXUP_HP_MIC_NO_PRESENCE,
7333 ALC256_FIXUP_ASUS_HEADSET_MODE,
7334 ALC256_FIXUP_ASUS_MIC,
7335 ALC256_FIXUP_ASUS_AIO_GPIO2,
7336 ALC233_FIXUP_ASUS_MIC_NO_PRESENCE,
7337 ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE,
7338 ALC233_FIXUP_LENOVO_MULTI_CODECS,
7339 ALC233_FIXUP_ACER_HEADSET_MIC,
7340 ALC294_FIXUP_LENOVO_MIC_LOCATION,
7341 ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE,
7342 ALC225_FIXUP_S3_POP_NOISE,
7343 ALC700_FIXUP_INTEL_REFERENCE,
7344 ALC274_FIXUP_DELL_BIND_DACS,
7345 ALC274_FIXUP_DELL_AIO_LINEOUT_VERB,
7346 ALC298_FIXUP_TPT470_DOCK_FIX,
7347 ALC298_FIXUP_TPT470_DOCK,
7348 ALC255_FIXUP_DUMMY_LINEOUT_VERB,
7349 ALC255_FIXUP_DELL_HEADSET_MIC,
7350 ALC256_FIXUP_HUAWEI_MACH_WX9_PINS,
7351 ALC298_FIXUP_HUAWEI_MBX_STEREO,
7352 ALC295_FIXUP_HP_X360,
7353 ALC221_FIXUP_HP_HEADSET_MIC,
7354 ALC285_FIXUP_LENOVO_HEADPHONE_NOISE,
7355 ALC295_FIXUP_HP_AUTO_MUTE,
7356 ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE,
7357 ALC294_FIXUP_ASUS_MIC,
7358 ALC294_FIXUP_ASUS_HEADSET_MIC,
7359 ALC294_FIXUP_ASUS_SPK,
7360 ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE,
7361 ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE,
7362 ALC255_FIXUP_ACER_HEADSET_MIC,
7363 ALC295_FIXUP_CHROME_BOOK,
7364 ALC225_FIXUP_HEADSET_JACK,
7365 ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE,
7366 ALC225_FIXUP_WYSE_AUTO_MUTE,
7367 ALC225_FIXUP_WYSE_DISABLE_MIC_VREF,
7368 ALC286_FIXUP_ACER_AIO_HEADSET_MIC,
7369 ALC256_FIXUP_ASUS_HEADSET_MIC,
7370 ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
7371 ALC299_FIXUP_PREDATOR_SPK,
7372 ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE,
7373 ALC289_FIXUP_DELL_SPK1,
7374 ALC289_FIXUP_DELL_SPK2,
7375 ALC289_FIXUP_DUAL_SPK,
7376 ALC289_FIXUP_RTK_AMP_DUAL_SPK,
7377 ALC294_FIXUP_SPK2_TO_DAC1,
7378 ALC294_FIXUP_ASUS_DUAL_SPK,
7379 ALC285_FIXUP_THINKPAD_X1_GEN7,
7380 ALC285_FIXUP_THINKPAD_HEADSET_JACK,
7381 ALC294_FIXUP_ASUS_ALLY,
7382 ALC294_FIXUP_ASUS_ALLY_PINS,
7383 ALC294_FIXUP_ASUS_ALLY_VERBS,
7384 ALC294_FIXUP_ASUS_ALLY_SPEAKER,
7385 ALC294_FIXUP_ASUS_HPE,
7386 ALC294_FIXUP_ASUS_COEF_1B,
7387 ALC294_FIXUP_ASUS_GX502_HP,
7388 ALC294_FIXUP_ASUS_GX502_PINS,
7389 ALC294_FIXUP_ASUS_GX502_VERBS,
7390 ALC294_FIXUP_ASUS_GU502_HP,
7391 ALC294_FIXUP_ASUS_GU502_PINS,
7392 ALC294_FIXUP_ASUS_GU502_VERBS,
7393 ALC294_FIXUP_ASUS_G513_PINS,
7394 ALC285_FIXUP_ASUS_G533Z_PINS,
7395 ALC285_FIXUP_HP_GPIO_LED,
7396 ALC285_FIXUP_HP_MUTE_LED,
7397 ALC285_FIXUP_HP_SPECTRE_X360_MUTE_LED,
7398 ALC236_FIXUP_HP_MUTE_LED_COEFBIT2,
7399 ALC236_FIXUP_HP_GPIO_LED,
7400 ALC236_FIXUP_HP_MUTE_LED,
7401 ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF,
7402 ALC298_FIXUP_SAMSUNG_AMP,
7403 ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET,
7404 ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET,
7405 ALC295_FIXUP_ASUS_MIC_NO_PRESENCE,
7406 ALC269VC_FIXUP_ACER_VCOPPERBOX_PINS,
7407 ALC269VC_FIXUP_ACER_HEADSET_MIC,
7408 ALC269VC_FIXUP_ACER_MIC_NO_PRESENCE,
7409 ALC289_FIXUP_ASUS_GA401,
7410 ALC289_FIXUP_ASUS_GA502,
7411 ALC256_FIXUP_ACER_MIC_NO_PRESENCE,
7412 ALC285_FIXUP_HP_GPIO_AMP_INIT,
7413 ALC269_FIXUP_CZC_B20,
7414 ALC269_FIXUP_CZC_TMI,
7415 ALC269_FIXUP_CZC_L101,
7416 ALC269_FIXUP_LEMOTE_A1802,
7417 ALC269_FIXUP_LEMOTE_A190X,
7418 ALC256_FIXUP_INTEL_NUC8_RUGGED,
7419 ALC233_FIXUP_INTEL_NUC8_DMIC,
7420 ALC233_FIXUP_INTEL_NUC8_BOOST,
7421 ALC256_FIXUP_INTEL_NUC10,
7422 ALC255_FIXUP_XIAOMI_HEADSET_MIC,
7423 ALC274_FIXUP_HP_MIC,
7424 ALC274_FIXUP_HP_HEADSET_MIC,
7425 ALC274_FIXUP_HP_ENVY_GPIO,
7426 ALC256_FIXUP_ASUS_HPE,
7427 ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK,
7428 ALC287_FIXUP_HP_GPIO_LED,
7429 ALC256_FIXUP_HP_HEADSET_MIC,
7430 ALC245_FIXUP_HP_GPIO_LED,
7431 ALC236_FIXUP_DELL_AIO_HEADSET_MIC,
7432 ALC282_FIXUP_ACER_DISABLE_LINEOUT,
7433 ALC255_FIXUP_ACER_LIMIT_INT_MIC_BOOST,
7434 ALC256_FIXUP_ACER_HEADSET_MIC,
7435 ALC285_FIXUP_IDEAPAD_S740_COEF,
7436 ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST,
7437 ALC295_FIXUP_ASUS_DACS,
7438 ALC295_FIXUP_HP_OMEN,
7439 ALC285_FIXUP_HP_SPECTRE_X360,
7440 ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP,
7441 ALC623_FIXUP_LENOVO_THINKSTATION_P340,
7442 ALC255_FIXUP_ACER_HEADPHONE_AND_MIC,
7443 ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST,
7444 ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS,
7445 ALC287_FIXUP_LEGION_15IMHG05_AUTOMUTE,
7446 ALC287_FIXUP_YOGA7_14ITL_SPEAKERS,
7447 ALC298_FIXUP_LENOVO_C940_DUET7,
7448 ALC287_FIXUP_LENOVO_14IRP8_DUETITL,
7449 ALC287_FIXUP_13S_GEN2_SPEAKERS,
7450 ALC256_FIXUP_SET_COEF_DEFAULTS,
7451 ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE,
7452 ALC233_FIXUP_NO_AUDIO_JACK,
7453 ALC256_FIXUP_MIC_NO_PRESENCE_AND_RESUME,
7454 ALC285_FIXUP_LEGION_Y9000X_SPEAKERS,
7455 ALC285_FIXUP_LEGION_Y9000X_AUTOMUTE,
7456 ALC287_FIXUP_LEGION_16ACHG6,
7457 ALC287_FIXUP_CS35L41_I2C_2,
7458 ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED,
7459 ALC287_FIXUP_CS35L41_I2C_4,
7460 ALC245_FIXUP_CS35L41_SPI_2,
7461 ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED,
7462 ALC245_FIXUP_CS35L41_SPI_4,
7463 ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED,
7464 ALC285_FIXUP_HP_SPEAKERS_MICMUTE_LED,
7465 ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE,
7466 ALC287_FIXUP_LEGION_16ITHG6,
7467 ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK,
7468 ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN,
7469 ALC295_FIXUP_DELL_INSPIRON_TOP_SPEAKERS,
7470 ALC236_FIXUP_DELL_DUAL_CODECS,
7471 ALC287_FIXUP_CS35L41_I2C_2_THINKPAD_ACPI,
7472 ALC287_FIXUP_TAS2781_I2C,
7473 ALC287_FIXUP_YOGA7_14ARB7_I2C,
7474 ALC245_FIXUP_HP_MUTE_LED_COEFBIT,
7475 ALC245_FIXUP_HP_X360_MUTE_LEDS,
7476 ALC287_FIXUP_THINKPAD_I2S_SPK,
7477 ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD,
7478 ALC2XX_FIXUP_HEADSET_MIC,
7479 ALC289_FIXUP_DELL_CS35L41_SPI_2,
7480 ALC294_FIXUP_CS35L41_I2C_2,
7481};
7482
7483/* A special fixup for Lenovo C940 and Yoga Duet 7;
7484 * both have the very same PCI SSID, and we need to apply different fixups
7485 * depending on the codec ID
7486 */
7487static void alc298_fixup_lenovo_c940_duet7(struct hda_codec *codec,
7488 const struct hda_fixup *fix,
7489 int action)
7490{
7491 int id;
7492
7493 if (codec->core.vendor_id == 0x10ec0298)
7494 id = ALC298_FIXUP_LENOVO_SPK_VOLUME; /* C940 */
7495 else
7496 id = ALC287_FIXUP_YOGA7_14ITL_SPEAKERS; /* Duet 7 */
7497 __snd_hda_apply_fixup(codec, id, action, 0);
7498}
7499
7500/* A special fixup for Lenovo Slim/Yoga Pro 9 14IRP8 and Yoga DuetITL 2021;
7501 * 14IRP8 PCI SSID will mistakenly be matched with the DuetITL codec SSID,
7502 * so we need to apply a different fixup in this case. The only DuetITL codec
7503 * SSID reported so far is the 17aa:3802 while the 14IRP8 has the 17aa:38be
7504 * and 17aa:38bf. If it weren't for the PCI SSID, the 14IRP8 models would
7505 * have matched correctly by their codecs.
7506 */
7507static void alc287_fixup_lenovo_14irp8_duetitl(struct hda_codec *codec,
7508 const struct hda_fixup *fix,
7509 int action)
7510{
7511 int id;
7512
7513 if (codec->core.subsystem_id == 0x17aa3802)
7514 id = ALC287_FIXUP_YOGA7_14ITL_SPEAKERS; /* DuetITL */
7515 else
7516 id = ALC287_FIXUP_TAS2781_I2C; /* 14IRP8 */
7517 __snd_hda_apply_fixup(codec, id, action, 0);
7518}
7519
7520static const struct hda_fixup alc269_fixups[] = {
7521 [ALC269_FIXUP_GPIO2] = {
7522 .type = HDA_FIXUP_FUNC,
7523 .v.func = alc_fixup_gpio2,
7524 },
7525 [ALC269_FIXUP_SONY_VAIO] = {
7526 .type = HDA_FIXUP_PINCTLS,
7527 .v.pins = (const struct hda_pintbl[]) {
7528 {0x19, PIN_VREFGRD},
7529 {}
7530 }
7531 },
7532 [ALC275_FIXUP_SONY_VAIO_GPIO2] = {
7533 .type = HDA_FIXUP_FUNC,
7534 .v.func = alc275_fixup_gpio4_off,
7535 .chained = true,
7536 .chain_id = ALC269_FIXUP_SONY_VAIO
7537 },
7538 [ALC269_FIXUP_DELL_M101Z] = {
7539 .type = HDA_FIXUP_VERBS,
7540 .v.verbs = (const struct hda_verb[]) {
7541 /* Enables internal speaker */
7542 {0x20, AC_VERB_SET_COEF_INDEX, 13},
7543 {0x20, AC_VERB_SET_PROC_COEF, 0x4040},
7544 {}
7545 }
7546 },
7547 [ALC269_FIXUP_SKU_IGNORE] = {
7548 .type = HDA_FIXUP_FUNC,
7549 .v.func = alc_fixup_sku_ignore,
7550 },
7551 [ALC269_FIXUP_ASUS_G73JW] = {
7552 .type = HDA_FIXUP_PINS,
7553 .v.pins = (const struct hda_pintbl[]) {
7554 { 0x17, 0x99130111 }, /* subwoofer */
7555 { }
7556 }
7557 },
7558 [ALC269_FIXUP_ASUS_N7601ZM_PINS] = {
7559 .type = HDA_FIXUP_PINS,
7560 .v.pins = (const struct hda_pintbl[]) {
7561 { 0x19, 0x03A11050 },
7562 { 0x1a, 0x03A11C30 },
7563 { 0x21, 0x03211420 },
7564 { }
7565 }
7566 },
7567 [ALC269_FIXUP_ASUS_N7601ZM] = {
7568 .type = HDA_FIXUP_VERBS,
7569 .v.verbs = (const struct hda_verb[]) {
7570 {0x20, AC_VERB_SET_COEF_INDEX, 0x62},
7571 {0x20, AC_VERB_SET_PROC_COEF, 0xa007},
7572 {0x20, AC_VERB_SET_COEF_INDEX, 0x10},
7573 {0x20, AC_VERB_SET_PROC_COEF, 0x8420},
7574 {0x20, AC_VERB_SET_COEF_INDEX, 0x0f},
7575 {0x20, AC_VERB_SET_PROC_COEF, 0x7774},
7576 { }
7577 },
7578 .chained = true,
7579 .chain_id = ALC269_FIXUP_ASUS_N7601ZM_PINS,
7580 },
7581 [ALC269_FIXUP_LENOVO_EAPD] = {
7582 .type = HDA_FIXUP_VERBS,
7583 .v.verbs = (const struct hda_verb[]) {
7584 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
7585 {}
7586 }
7587 },
7588 [ALC275_FIXUP_SONY_HWEQ] = {
7589 .type = HDA_FIXUP_FUNC,
7590 .v.func = alc269_fixup_hweq,
7591 .chained = true,
7592 .chain_id = ALC275_FIXUP_SONY_VAIO_GPIO2
7593 },
7594 [ALC275_FIXUP_SONY_DISABLE_AAMIX] = {
7595 .type = HDA_FIXUP_FUNC,
7596 .v.func = alc_fixup_disable_aamix,
7597 .chained = true,
7598 .chain_id = ALC269_FIXUP_SONY_VAIO
7599 },
7600 [ALC271_FIXUP_DMIC] = {
7601 .type = HDA_FIXUP_FUNC,
7602 .v.func = alc271_fixup_dmic,
7603 },
7604 [ALC269_FIXUP_PCM_44K] = {
7605 .type = HDA_FIXUP_FUNC,
7606 .v.func = alc269_fixup_pcm_44k,
7607 .chained = true,
7608 .chain_id = ALC269_FIXUP_QUANTA_MUTE
7609 },
7610 [ALC269_FIXUP_STEREO_DMIC] = {
7611 .type = HDA_FIXUP_FUNC,
7612 .v.func = alc269_fixup_stereo_dmic,
7613 },
7614 [ALC269_FIXUP_HEADSET_MIC] = {
7615 .type = HDA_FIXUP_FUNC,
7616 .v.func = alc269_fixup_headset_mic,
7617 },
7618 [ALC269_FIXUP_QUANTA_MUTE] = {
7619 .type = HDA_FIXUP_FUNC,
7620 .v.func = alc269_fixup_quanta_mute,
7621 },
7622 [ALC269_FIXUP_LIFEBOOK] = {
7623 .type = HDA_FIXUP_PINS,
7624 .v.pins = (const struct hda_pintbl[]) {
7625 { 0x1a, 0x2101103f }, /* dock line-out */
7626 { 0x1b, 0x23a11040 }, /* dock mic-in */
7627 { }
7628 },
7629 .chained = true,
7630 .chain_id = ALC269_FIXUP_QUANTA_MUTE
7631 },
7632 [ALC269_FIXUP_LIFEBOOK_EXTMIC] = {
7633 .type = HDA_FIXUP_PINS,
7634 .v.pins = (const struct hda_pintbl[]) {
7635 { 0x19, 0x01a1903c }, /* headset mic, with jack detect */
7636 { }
7637 },
7638 },
7639 [ALC269_FIXUP_LIFEBOOK_HP_PIN] = {
7640 .type = HDA_FIXUP_PINS,
7641 .v.pins = (const struct hda_pintbl[]) {
7642 { 0x21, 0x0221102f }, /* HP out */
7643 { }
7644 },
7645 },
7646 [ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT] = {
7647 .type = HDA_FIXUP_FUNC,
7648 .v.func = alc269_fixup_pincfg_no_hp_to_lineout,
7649 },
7650 [ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC] = {
7651 .type = HDA_FIXUP_FUNC,
7652 .v.func = alc269_fixup_pincfg_U7x7_headset_mic,
7653 },
7654 [ALC269VB_FIXUP_CHUWI_COREBOOK_XPRO] = {
7655 .type = HDA_FIXUP_PINS,
7656 .v.pins = (const struct hda_pintbl[]) {
7657 { 0x18, 0x03a19020 }, /* headset mic */
7658 { 0x1b, 0x90170150 }, /* speaker */
7659 { }
7660 },
7661 },
7662 [ALC269_FIXUP_AMIC] = {
7663 .type = HDA_FIXUP_PINS,
7664 .v.pins = (const struct hda_pintbl[]) {
7665 { 0x14, 0x99130110 }, /* speaker */
7666 { 0x15, 0x0121401f }, /* HP out */
7667 { 0x18, 0x01a19c20 }, /* mic */
7668 { 0x19, 0x99a3092f }, /* int-mic */
7669 { }
7670 },
7671 },
7672 [ALC269_FIXUP_DMIC] = {
7673 .type = HDA_FIXUP_PINS,
7674 .v.pins = (const struct hda_pintbl[]) {
7675 { 0x12, 0x99a3092f }, /* int-mic */
7676 { 0x14, 0x99130110 }, /* speaker */
7677 { 0x15, 0x0121401f }, /* HP out */
7678 { 0x18, 0x01a19c20 }, /* mic */
7679 { }
7680 },
7681 },
7682 [ALC269VB_FIXUP_AMIC] = {
7683 .type = HDA_FIXUP_PINS,
7684 .v.pins = (const struct hda_pintbl[]) {
7685 { 0x14, 0x99130110 }, /* speaker */
7686 { 0x18, 0x01a19c20 }, /* mic */
7687 { 0x19, 0x99a3092f }, /* int-mic */
7688 { 0x21, 0x0121401f }, /* HP out */
7689 { }
7690 },
7691 },
7692 [ALC269VB_FIXUP_DMIC] = {
7693 .type = HDA_FIXUP_PINS,
7694 .v.pins = (const struct hda_pintbl[]) {
7695 { 0x12, 0x99a3092f }, /* int-mic */
7696 { 0x14, 0x99130110 }, /* speaker */
7697 { 0x18, 0x01a19c20 }, /* mic */
7698 { 0x21, 0x0121401f }, /* HP out */
7699 { }
7700 },
7701 },
7702 [ALC269_FIXUP_HP_MUTE_LED] = {
7703 .type = HDA_FIXUP_FUNC,
7704 .v.func = alc269_fixup_hp_mute_led,
7705 },
7706 [ALC269_FIXUP_HP_MUTE_LED_MIC1] = {
7707 .type = HDA_FIXUP_FUNC,
7708 .v.func = alc269_fixup_hp_mute_led_mic1,
7709 },
7710 [ALC269_FIXUP_HP_MUTE_LED_MIC2] = {
7711 .type = HDA_FIXUP_FUNC,
7712 .v.func = alc269_fixup_hp_mute_led_mic2,
7713 },
7714 [ALC269_FIXUP_HP_MUTE_LED_MIC3] = {
7715 .type = HDA_FIXUP_FUNC,
7716 .v.func = alc269_fixup_hp_mute_led_mic3,
7717 .chained = true,
7718 .chain_id = ALC295_FIXUP_HP_AUTO_MUTE
7719 },
7720 [ALC269_FIXUP_HP_GPIO_LED] = {
7721 .type = HDA_FIXUP_FUNC,
7722 .v.func = alc269_fixup_hp_gpio_led,
7723 },
7724 [ALC269_FIXUP_HP_GPIO_MIC1_LED] = {
7725 .type = HDA_FIXUP_FUNC,
7726 .v.func = alc269_fixup_hp_gpio_mic1_led,
7727 },
7728 [ALC269_FIXUP_HP_LINE1_MIC1_LED] = {
7729 .type = HDA_FIXUP_FUNC,
7730 .v.func = alc269_fixup_hp_line1_mic1_led,
7731 },
7732 [ALC269_FIXUP_INV_DMIC] = {
7733 .type = HDA_FIXUP_FUNC,
7734 .v.func = alc_fixup_inv_dmic,
7735 },
7736 [ALC269_FIXUP_NO_SHUTUP] = {
7737 .type = HDA_FIXUP_FUNC,
7738 .v.func = alc_fixup_no_shutup,
7739 },
7740 [ALC269_FIXUP_LENOVO_DOCK] = {
7741 .type = HDA_FIXUP_PINS,
7742 .v.pins = (const struct hda_pintbl[]) {
7743 { 0x19, 0x23a11040 }, /* dock mic */
7744 { 0x1b, 0x2121103f }, /* dock headphone */
7745 { }
7746 },
7747 .chained = true,
7748 .chain_id = ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT
7749 },
7750 [ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST] = {
7751 .type = HDA_FIXUP_FUNC,
7752 .v.func = alc269_fixup_limit_int_mic_boost,
7753 .chained = true,
7754 .chain_id = ALC269_FIXUP_LENOVO_DOCK,
7755 },
7756 [ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT] = {
7757 .type = HDA_FIXUP_FUNC,
7758 .v.func = alc269_fixup_pincfg_no_hp_to_lineout,
7759 .chained = true,
7760 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
7761 },
7762 [ALC269_FIXUP_DELL1_MIC_NO_PRESENCE] = {
7763 .type = HDA_FIXUP_PINS,
7764 .v.pins = (const struct hda_pintbl[]) {
7765 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7766 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
7767 { }
7768 },
7769 .chained = true,
7770 .chain_id = ALC269_FIXUP_HEADSET_MODE
7771 },
7772 [ALC269_FIXUP_DELL2_MIC_NO_PRESENCE] = {
7773 .type = HDA_FIXUP_PINS,
7774 .v.pins = (const struct hda_pintbl[]) {
7775 { 0x16, 0x21014020 }, /* dock line out */
7776 { 0x19, 0x21a19030 }, /* dock mic */
7777 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7778 { }
7779 },
7780 .chained = true,
7781 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
7782 },
7783 [ALC269_FIXUP_DELL3_MIC_NO_PRESENCE] = {
7784 .type = HDA_FIXUP_PINS,
7785 .v.pins = (const struct hda_pintbl[]) {
7786 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7787 { }
7788 },
7789 .chained = true,
7790 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
7791 },
7792 [ALC269_FIXUP_DELL4_MIC_NO_PRESENCE] = {
7793 .type = HDA_FIXUP_PINS,
7794 .v.pins = (const struct hda_pintbl[]) {
7795 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7796 { 0x1b, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
7797 { }
7798 },
7799 .chained = true,
7800 .chain_id = ALC269_FIXUP_HEADSET_MODE
7801 },
7802 [ALC269_FIXUP_HEADSET_MODE] = {
7803 .type = HDA_FIXUP_FUNC,
7804 .v.func = alc_fixup_headset_mode,
7805 .chained = true,
7806 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
7807 },
7808 [ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC] = {
7809 .type = HDA_FIXUP_FUNC,
7810 .v.func = alc_fixup_headset_mode_no_hp_mic,
7811 },
7812 [ALC269_FIXUP_ASPIRE_HEADSET_MIC] = {
7813 .type = HDA_FIXUP_PINS,
7814 .v.pins = (const struct hda_pintbl[]) {
7815 { 0x19, 0x01a1913c }, /* headset mic w/o jack detect */
7816 { }
7817 },
7818 .chained = true,
7819 .chain_id = ALC269_FIXUP_HEADSET_MODE,
7820 },
7821 [ALC286_FIXUP_SONY_MIC_NO_PRESENCE] = {
7822 .type = HDA_FIXUP_PINS,
7823 .v.pins = (const struct hda_pintbl[]) {
7824 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7825 { }
7826 },
7827 .chained = true,
7828 .chain_id = ALC269_FIXUP_HEADSET_MIC
7829 },
7830 [ALC256_FIXUP_HUAWEI_MACH_WX9_PINS] = {
7831 .type = HDA_FIXUP_PINS,
7832 .v.pins = (const struct hda_pintbl[]) {
7833 {0x12, 0x90a60130},
7834 {0x13, 0x40000000},
7835 {0x14, 0x90170110},
7836 {0x18, 0x411111f0},
7837 {0x19, 0x04a11040},
7838 {0x1a, 0x411111f0},
7839 {0x1b, 0x90170112},
7840 {0x1d, 0x40759a05},
7841 {0x1e, 0x411111f0},
7842 {0x21, 0x04211020},
7843 { }
7844 },
7845 .chained = true,
7846 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
7847 },
7848 [ALC298_FIXUP_HUAWEI_MBX_STEREO] = {
7849 .type = HDA_FIXUP_FUNC,
7850 .v.func = alc298_fixup_huawei_mbx_stereo,
7851 .chained = true,
7852 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
7853 },
7854 [ALC269_FIXUP_ASUS_X101_FUNC] = {
7855 .type = HDA_FIXUP_FUNC,
7856 .v.func = alc269_fixup_x101_headset_mic,
7857 },
7858 [ALC269_FIXUP_ASUS_X101_VERB] = {
7859 .type = HDA_FIXUP_VERBS,
7860 .v.verbs = (const struct hda_verb[]) {
7861 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
7862 {0x20, AC_VERB_SET_COEF_INDEX, 0x08},
7863 {0x20, AC_VERB_SET_PROC_COEF, 0x0310},
7864 { }
7865 },
7866 .chained = true,
7867 .chain_id = ALC269_FIXUP_ASUS_X101_FUNC
7868 },
7869 [ALC269_FIXUP_ASUS_X101] = {
7870 .type = HDA_FIXUP_PINS,
7871 .v.pins = (const struct hda_pintbl[]) {
7872 { 0x18, 0x04a1182c }, /* Headset mic */
7873 { }
7874 },
7875 .chained = true,
7876 .chain_id = ALC269_FIXUP_ASUS_X101_VERB
7877 },
7878 [ALC271_FIXUP_AMIC_MIC2] = {
7879 .type = HDA_FIXUP_PINS,
7880 .v.pins = (const struct hda_pintbl[]) {
7881 { 0x14, 0x99130110 }, /* speaker */
7882 { 0x19, 0x01a19c20 }, /* mic */
7883 { 0x1b, 0x99a7012f }, /* int-mic */
7884 { 0x21, 0x0121401f }, /* HP out */
7885 { }
7886 },
7887 },
7888 [ALC271_FIXUP_HP_GATE_MIC_JACK] = {
7889 .type = HDA_FIXUP_FUNC,
7890 .v.func = alc271_hp_gate_mic_jack,
7891 .chained = true,
7892 .chain_id = ALC271_FIXUP_AMIC_MIC2,
7893 },
7894 [ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572] = {
7895 .type = HDA_FIXUP_FUNC,
7896 .v.func = alc269_fixup_limit_int_mic_boost,
7897 .chained = true,
7898 .chain_id = ALC271_FIXUP_HP_GATE_MIC_JACK,
7899 },
7900 [ALC269_FIXUP_ACER_AC700] = {
7901 .type = HDA_FIXUP_PINS,
7902 .v.pins = (const struct hda_pintbl[]) {
7903 { 0x12, 0x99a3092f }, /* int-mic */
7904 { 0x14, 0x99130110 }, /* speaker */
7905 { 0x18, 0x03a11c20 }, /* mic */
7906 { 0x1e, 0x0346101e }, /* SPDIF1 */
7907 { 0x21, 0x0321101f }, /* HP out */
7908 { }
7909 },
7910 .chained = true,
7911 .chain_id = ALC271_FIXUP_DMIC,
7912 },
7913 [ALC269_FIXUP_LIMIT_INT_MIC_BOOST] = {
7914 .type = HDA_FIXUP_FUNC,
7915 .v.func = alc269_fixup_limit_int_mic_boost,
7916 .chained = true,
7917 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
7918 },
7919 [ALC269VB_FIXUP_ASUS_ZENBOOK] = {
7920 .type = HDA_FIXUP_FUNC,
7921 .v.func = alc269_fixup_limit_int_mic_boost,
7922 .chained = true,
7923 .chain_id = ALC269VB_FIXUP_DMIC,
7924 },
7925 [ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A] = {
7926 .type = HDA_FIXUP_VERBS,
7927 .v.verbs = (const struct hda_verb[]) {
7928 /* class-D output amp +5dB */
7929 { 0x20, AC_VERB_SET_COEF_INDEX, 0x12 },
7930 { 0x20, AC_VERB_SET_PROC_COEF, 0x2800 },
7931 {}
7932 },
7933 .chained = true,
7934 .chain_id = ALC269VB_FIXUP_ASUS_ZENBOOK,
7935 },
7936 [ALC269VB_FIXUP_ASUS_MIC_NO_PRESENCE] = {
7937 .type = HDA_FIXUP_PINS,
7938 .v.pins = (const struct hda_pintbl[]) {
7939 { 0x18, 0x01a110f0 }, /* use as headset mic */
7940 { }
7941 },
7942 .chained = true,
7943 .chain_id = ALC269_FIXUP_HEADSET_MIC
7944 },
7945 [ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED] = {
7946 .type = HDA_FIXUP_FUNC,
7947 .v.func = alc269_fixup_limit_int_mic_boost,
7948 .chained = true,
7949 .chain_id = ALC269_FIXUP_HP_MUTE_LED_MIC1,
7950 },
7951 [ALC269VB_FIXUP_ORDISSIMO_EVE2] = {
7952 .type = HDA_FIXUP_PINS,
7953 .v.pins = (const struct hda_pintbl[]) {
7954 { 0x12, 0x99a3092f }, /* int-mic */
7955 { 0x18, 0x03a11d20 }, /* mic */
7956 { 0x19, 0x411111f0 }, /* Unused bogus pin */
7957 { }
7958 },
7959 },
7960 [ALC283_FIXUP_CHROME_BOOK] = {
7961 .type = HDA_FIXUP_FUNC,
7962 .v.func = alc283_fixup_chromebook,
7963 },
7964 [ALC283_FIXUP_SENSE_COMBO_JACK] = {
7965 .type = HDA_FIXUP_FUNC,
7966 .v.func = alc283_fixup_sense_combo_jack,
7967 .chained = true,
7968 .chain_id = ALC283_FIXUP_CHROME_BOOK,
7969 },
7970 [ALC282_FIXUP_ASUS_TX300] = {
7971 .type = HDA_FIXUP_FUNC,
7972 .v.func = alc282_fixup_asus_tx300,
7973 },
7974 [ALC283_FIXUP_INT_MIC] = {
7975 .type = HDA_FIXUP_VERBS,
7976 .v.verbs = (const struct hda_verb[]) {
7977 {0x20, AC_VERB_SET_COEF_INDEX, 0x1a},
7978 {0x20, AC_VERB_SET_PROC_COEF, 0x0011},
7979 { }
7980 },
7981 .chained = true,
7982 .chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST
7983 },
7984 [ALC290_FIXUP_SUBWOOFER_HSJACK] = {
7985 .type = HDA_FIXUP_PINS,
7986 .v.pins = (const struct hda_pintbl[]) {
7987 { 0x17, 0x90170112 }, /* subwoofer */
7988 { }
7989 },
7990 .chained = true,
7991 .chain_id = ALC290_FIXUP_MONO_SPEAKERS_HSJACK,
7992 },
7993 [ALC290_FIXUP_SUBWOOFER] = {
7994 .type = HDA_FIXUP_PINS,
7995 .v.pins = (const struct hda_pintbl[]) {
7996 { 0x17, 0x90170112 }, /* subwoofer */
7997 { }
7998 },
7999 .chained = true,
8000 .chain_id = ALC290_FIXUP_MONO_SPEAKERS,
8001 },
8002 [ALC290_FIXUP_MONO_SPEAKERS] = {
8003 .type = HDA_FIXUP_FUNC,
8004 .v.func = alc290_fixup_mono_speakers,
8005 },
8006 [ALC290_FIXUP_MONO_SPEAKERS_HSJACK] = {
8007 .type = HDA_FIXUP_FUNC,
8008 .v.func = alc290_fixup_mono_speakers,
8009 .chained = true,
8010 .chain_id = ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
8011 },
8012 [ALC269_FIXUP_THINKPAD_ACPI] = {
8013 .type = HDA_FIXUP_FUNC,
8014 .v.func = alc_fixup_thinkpad_acpi,
8015 .chained = true,
8016 .chain_id = ALC269_FIXUP_SKU_IGNORE,
8017 },
8018 [ALC269_FIXUP_DMIC_THINKPAD_ACPI] = {
8019 .type = HDA_FIXUP_FUNC,
8020 .v.func = alc_fixup_inv_dmic,
8021 .chained = true,
8022 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
8023 },
8024 [ALC255_FIXUP_ACER_MIC_NO_PRESENCE] = {
8025 .type = HDA_FIXUP_PINS,
8026 .v.pins = (const struct hda_pintbl[]) {
8027 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8028 { }
8029 },
8030 .chained = true,
8031 .chain_id = ALC255_FIXUP_HEADSET_MODE
8032 },
8033 [ALC255_FIXUP_ASUS_MIC_NO_PRESENCE] = {
8034 .type = HDA_FIXUP_PINS,
8035 .v.pins = (const struct hda_pintbl[]) {
8036 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8037 { }
8038 },
8039 .chained = true,
8040 .chain_id = ALC255_FIXUP_HEADSET_MODE
8041 },
8042 [ALC255_FIXUP_DELL1_MIC_NO_PRESENCE] = {
8043 .type = HDA_FIXUP_PINS,
8044 .v.pins = (const struct hda_pintbl[]) {
8045 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8046 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
8047 { }
8048 },
8049 .chained = true,
8050 .chain_id = ALC255_FIXUP_HEADSET_MODE
8051 },
8052 [ALC255_FIXUP_DELL2_MIC_NO_PRESENCE] = {
8053 .type = HDA_FIXUP_PINS,
8054 .v.pins = (const struct hda_pintbl[]) {
8055 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8056 { }
8057 },
8058 .chained = true,
8059 .chain_id = ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC
8060 },
8061 [ALC255_FIXUP_HEADSET_MODE] = {
8062 .type = HDA_FIXUP_FUNC,
8063 .v.func = alc_fixup_headset_mode_alc255,
8064 .chained = true,
8065 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
8066 },
8067 [ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC] = {
8068 .type = HDA_FIXUP_FUNC,
8069 .v.func = alc_fixup_headset_mode_alc255_no_hp_mic,
8070 },
8071 [ALC293_FIXUP_DELL1_MIC_NO_PRESENCE] = {
8072 .type = HDA_FIXUP_PINS,
8073 .v.pins = (const struct hda_pintbl[]) {
8074 { 0x18, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
8075 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8076 { }
8077 },
8078 .chained = true,
8079 .chain_id = ALC269_FIXUP_HEADSET_MODE
8080 },
8081 [ALC292_FIXUP_TPT440_DOCK] = {
8082 .type = HDA_FIXUP_FUNC,
8083 .v.func = alc_fixup_tpt440_dock,
8084 .chained = true,
8085 .chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST
8086 },
8087 [ALC292_FIXUP_TPT440] = {
8088 .type = HDA_FIXUP_FUNC,
8089 .v.func = alc_fixup_disable_aamix,
8090 .chained = true,
8091 .chain_id = ALC292_FIXUP_TPT440_DOCK,
8092 },
8093 [ALC283_FIXUP_HEADSET_MIC] = {
8094 .type = HDA_FIXUP_PINS,
8095 .v.pins = (const struct hda_pintbl[]) {
8096 { 0x19, 0x04a110f0 },
8097 { },
8098 },
8099 },
8100 [ALC255_FIXUP_MIC_MUTE_LED] = {
8101 .type = HDA_FIXUP_FUNC,
8102 .v.func = alc_fixup_micmute_led,
8103 },
8104 [ALC282_FIXUP_ASPIRE_V5_PINS] = {
8105 .type = HDA_FIXUP_PINS,
8106 .v.pins = (const struct hda_pintbl[]) {
8107 { 0x12, 0x90a60130 },
8108 { 0x14, 0x90170110 },
8109 { 0x17, 0x40000008 },
8110 { 0x18, 0x411111f0 },
8111 { 0x19, 0x01a1913c },
8112 { 0x1a, 0x411111f0 },
8113 { 0x1b, 0x411111f0 },
8114 { 0x1d, 0x40f89b2d },
8115 { 0x1e, 0x411111f0 },
8116 { 0x21, 0x0321101f },
8117 { },
8118 },
8119 },
8120 [ALC269VB_FIXUP_ASPIRE_E1_COEF] = {
8121 .type = HDA_FIXUP_FUNC,
8122 .v.func = alc269vb_fixup_aspire_e1_coef,
8123 },
8124 [ALC280_FIXUP_HP_GPIO4] = {
8125 .type = HDA_FIXUP_FUNC,
8126 .v.func = alc280_fixup_hp_gpio4,
8127 },
8128 [ALC286_FIXUP_HP_GPIO_LED] = {
8129 .type = HDA_FIXUP_FUNC,
8130 .v.func = alc286_fixup_hp_gpio_led,
8131 },
8132 [ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY] = {
8133 .type = HDA_FIXUP_FUNC,
8134 .v.func = alc280_fixup_hp_gpio2_mic_hotkey,
8135 },
8136 [ALC280_FIXUP_HP_DOCK_PINS] = {
8137 .type = HDA_FIXUP_PINS,
8138 .v.pins = (const struct hda_pintbl[]) {
8139 { 0x1b, 0x21011020 }, /* line-out */
8140 { 0x1a, 0x01a1903c }, /* headset mic */
8141 { 0x18, 0x2181103f }, /* line-in */
8142 { },
8143 },
8144 .chained = true,
8145 .chain_id = ALC280_FIXUP_HP_GPIO4
8146 },
8147 [ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED] = {
8148 .type = HDA_FIXUP_PINS,
8149 .v.pins = (const struct hda_pintbl[]) {
8150 { 0x1b, 0x21011020 }, /* line-out */
8151 { 0x18, 0x2181103f }, /* line-in */
8152 { },
8153 },
8154 .chained = true,
8155 .chain_id = ALC269_FIXUP_HP_GPIO_MIC1_LED
8156 },
8157 [ALC280_FIXUP_HP_9480M] = {
8158 .type = HDA_FIXUP_FUNC,
8159 .v.func = alc280_fixup_hp_9480m,
8160 },
8161 [ALC245_FIXUP_HP_X360_AMP] = {
8162 .type = HDA_FIXUP_FUNC,
8163 .v.func = alc245_fixup_hp_x360_amp,
8164 .chained = true,
8165 .chain_id = ALC245_FIXUP_HP_GPIO_LED
8166 },
8167 [ALC288_FIXUP_DELL_HEADSET_MODE] = {
8168 .type = HDA_FIXUP_FUNC,
8169 .v.func = alc_fixup_headset_mode_dell_alc288,
8170 .chained = true,
8171 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
8172 },
8173 [ALC288_FIXUP_DELL1_MIC_NO_PRESENCE] = {
8174 .type = HDA_FIXUP_PINS,
8175 .v.pins = (const struct hda_pintbl[]) {
8176 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8177 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
8178 { }
8179 },
8180 .chained = true,
8181 .chain_id = ALC288_FIXUP_DELL_HEADSET_MODE
8182 },
8183 [ALC288_FIXUP_DISABLE_AAMIX] = {
8184 .type = HDA_FIXUP_FUNC,
8185 .v.func = alc_fixup_disable_aamix,
8186 .chained = true,
8187 .chain_id = ALC288_FIXUP_DELL1_MIC_NO_PRESENCE
8188 },
8189 [ALC288_FIXUP_DELL_XPS_13] = {
8190 .type = HDA_FIXUP_FUNC,
8191 .v.func = alc_fixup_dell_xps13,
8192 .chained = true,
8193 .chain_id = ALC288_FIXUP_DISABLE_AAMIX
8194 },
8195 [ALC292_FIXUP_DISABLE_AAMIX] = {
8196 .type = HDA_FIXUP_FUNC,
8197 .v.func = alc_fixup_disable_aamix,
8198 .chained = true,
8199 .chain_id = ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
8200 },
8201 [ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK] = {
8202 .type = HDA_FIXUP_FUNC,
8203 .v.func = alc_fixup_disable_aamix,
8204 .chained = true,
8205 .chain_id = ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
8206 },
8207 [ALC292_FIXUP_DELL_E7X_AAMIX] = {
8208 .type = HDA_FIXUP_FUNC,
8209 .v.func = alc_fixup_dell_xps13,
8210 .chained = true,
8211 .chain_id = ALC292_FIXUP_DISABLE_AAMIX
8212 },
8213 [ALC292_FIXUP_DELL_E7X] = {
8214 .type = HDA_FIXUP_FUNC,
8215 .v.func = alc_fixup_micmute_led,
8216 /* micmute fixup must be applied at last */
8217 .chained_before = true,
8218 .chain_id = ALC292_FIXUP_DELL_E7X_AAMIX,
8219 },
8220 [ALC298_FIXUP_ALIENWARE_MIC_NO_PRESENCE] = {
8221 .type = HDA_FIXUP_PINS,
8222 .v.pins = (const struct hda_pintbl[]) {
8223 { 0x18, 0x01a1913c }, /* headset mic w/o jack detect */
8224 { }
8225 },
8226 .chained_before = true,
8227 .chain_id = ALC269_FIXUP_HEADSET_MODE,
8228 },
8229 [ALC298_FIXUP_DELL1_MIC_NO_PRESENCE] = {
8230 .type = HDA_FIXUP_PINS,
8231 .v.pins = (const struct hda_pintbl[]) {
8232 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8233 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
8234 { }
8235 },
8236 .chained = true,
8237 .chain_id = ALC269_FIXUP_HEADSET_MODE
8238 },
8239 [ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE] = {
8240 .type = HDA_FIXUP_PINS,
8241 .v.pins = (const struct hda_pintbl[]) {
8242 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8243 { }
8244 },
8245 .chained = true,
8246 .chain_id = ALC269_FIXUP_HEADSET_MODE
8247 },
8248 [ALC275_FIXUP_DELL_XPS] = {
8249 .type = HDA_FIXUP_VERBS,
8250 .v.verbs = (const struct hda_verb[]) {
8251 /* Enables internal speaker */
8252 {0x20, AC_VERB_SET_COEF_INDEX, 0x1f},
8253 {0x20, AC_VERB_SET_PROC_COEF, 0x00c0},
8254 {0x20, AC_VERB_SET_COEF_INDEX, 0x30},
8255 {0x20, AC_VERB_SET_PROC_COEF, 0x00b1},
8256 {}
8257 }
8258 },
8259 [ALC293_FIXUP_LENOVO_SPK_NOISE] = {
8260 .type = HDA_FIXUP_FUNC,
8261 .v.func = alc_fixup_disable_aamix,
8262 .chained = true,
8263 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
8264 },
8265 [ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY] = {
8266 .type = HDA_FIXUP_FUNC,
8267 .v.func = alc233_fixup_lenovo_line2_mic_hotkey,
8268 },
8269 [ALC233_FIXUP_INTEL_NUC8_DMIC] = {
8270 .type = HDA_FIXUP_FUNC,
8271 .v.func = alc_fixup_inv_dmic,
8272 .chained = true,
8273 .chain_id = ALC233_FIXUP_INTEL_NUC8_BOOST,
8274 },
8275 [ALC233_FIXUP_INTEL_NUC8_BOOST] = {
8276 .type = HDA_FIXUP_FUNC,
8277 .v.func = alc269_fixup_limit_int_mic_boost
8278 },
8279 [ALC255_FIXUP_DELL_SPK_NOISE] = {
8280 .type = HDA_FIXUP_FUNC,
8281 .v.func = alc_fixup_disable_aamix,
8282 .chained = true,
8283 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
8284 },
8285 [ALC225_FIXUP_DISABLE_MIC_VREF] = {
8286 .type = HDA_FIXUP_FUNC,
8287 .v.func = alc_fixup_disable_mic_vref,
8288 .chained = true,
8289 .chain_id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
8290 },
8291 [ALC225_FIXUP_DELL1_MIC_NO_PRESENCE] = {
8292 .type = HDA_FIXUP_VERBS,
8293 .v.verbs = (const struct hda_verb[]) {
8294 /* Disable pass-through path for FRONT 14h */
8295 { 0x20, AC_VERB_SET_COEF_INDEX, 0x36 },
8296 { 0x20, AC_VERB_SET_PROC_COEF, 0x57d7 },
8297 {}
8298 },
8299 .chained = true,
8300 .chain_id = ALC225_FIXUP_DISABLE_MIC_VREF
8301 },
8302 [ALC280_FIXUP_HP_HEADSET_MIC] = {
8303 .type = HDA_FIXUP_FUNC,
8304 .v.func = alc_fixup_disable_aamix,
8305 .chained = true,
8306 .chain_id = ALC269_FIXUP_HEADSET_MIC,
8307 },
8308 [ALC221_FIXUP_HP_FRONT_MIC] = {
8309 .type = HDA_FIXUP_PINS,
8310 .v.pins = (const struct hda_pintbl[]) {
8311 { 0x19, 0x02a19020 }, /* Front Mic */
8312 { }
8313 },
8314 },
8315 [ALC292_FIXUP_TPT460] = {
8316 .type = HDA_FIXUP_FUNC,
8317 .v.func = alc_fixup_tpt440_dock,
8318 .chained = true,
8319 .chain_id = ALC293_FIXUP_LENOVO_SPK_NOISE,
8320 },
8321 [ALC298_FIXUP_SPK_VOLUME] = {
8322 .type = HDA_FIXUP_FUNC,
8323 .v.func = alc298_fixup_speaker_volume,
8324 .chained = true,
8325 .chain_id = ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE,
8326 },
8327 [ALC298_FIXUP_LENOVO_SPK_VOLUME] = {
8328 .type = HDA_FIXUP_FUNC,
8329 .v.func = alc298_fixup_speaker_volume,
8330 },
8331 [ALC295_FIXUP_DISABLE_DAC3] = {
8332 .type = HDA_FIXUP_FUNC,
8333 .v.func = alc295_fixup_disable_dac3,
8334 },
8335 [ALC285_FIXUP_SPEAKER2_TO_DAC1] = {
8336 .type = HDA_FIXUP_FUNC,
8337 .v.func = alc285_fixup_speaker2_to_dac1,
8338 .chained = true,
8339 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
8340 },
8341 [ALC285_FIXUP_ASUS_SPEAKER2_TO_DAC1] = {
8342 .type = HDA_FIXUP_FUNC,
8343 .v.func = alc285_fixup_speaker2_to_dac1,
8344 .chained = true,
8345 .chain_id = ALC245_FIXUP_CS35L41_SPI_2
8346 },
8347 [ALC285_FIXUP_ASUS_HEADSET_MIC] = {
8348 .type = HDA_FIXUP_PINS,
8349 .v.pins = (const struct hda_pintbl[]) {
8350 { 0x19, 0x03a11050 },
8351 { 0x1b, 0x03a11c30 },
8352 { }
8353 },
8354 .chained = true,
8355 .chain_id = ALC285_FIXUP_ASUS_SPEAKER2_TO_DAC1
8356 },
8357 [ALC285_FIXUP_ASUS_SPI_REAR_SPEAKERS] = {
8358 .type = HDA_FIXUP_PINS,
8359 .v.pins = (const struct hda_pintbl[]) {
8360 { 0x14, 0x90170120 },
8361 { }
8362 },
8363 .chained = true,
8364 .chain_id = ALC285_FIXUP_ASUS_HEADSET_MIC
8365 },
8366 [ALC285_FIXUP_ASUS_I2C_SPEAKER2_TO_DAC1] = {
8367 .type = HDA_FIXUP_FUNC,
8368 .v.func = alc285_fixup_speaker2_to_dac1,
8369 .chained = true,
8370 .chain_id = ALC287_FIXUP_CS35L41_I2C_2
8371 },
8372 [ALC285_FIXUP_ASUS_I2C_HEADSET_MIC] = {
8373 .type = HDA_FIXUP_PINS,
8374 .v.pins = (const struct hda_pintbl[]) {
8375 { 0x19, 0x03a11050 },
8376 { 0x1b, 0x03a11c30 },
8377 { }
8378 },
8379 .chained = true,
8380 .chain_id = ALC285_FIXUP_ASUS_I2C_SPEAKER2_TO_DAC1
8381 },
8382 [ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER] = {
8383 .type = HDA_FIXUP_PINS,
8384 .v.pins = (const struct hda_pintbl[]) {
8385 { 0x1b, 0x90170151 },
8386 { }
8387 },
8388 .chained = true,
8389 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
8390 },
8391 [ALC269_FIXUP_ATIV_BOOK_8] = {
8392 .type = HDA_FIXUP_FUNC,
8393 .v.func = alc_fixup_auto_mute_via_amp,
8394 .chained = true,
8395 .chain_id = ALC269_FIXUP_NO_SHUTUP
8396 },
8397 [ALC221_FIXUP_HP_288PRO_MIC_NO_PRESENCE] = {
8398 .type = HDA_FIXUP_PINS,
8399 .v.pins = (const struct hda_pintbl[]) {
8400 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8401 { 0x1a, 0x01813030 }, /* use as headphone mic, without its own jack detect */
8402 { }
8403 },
8404 .chained = true,
8405 .chain_id = ALC269_FIXUP_HEADSET_MODE
8406 },
8407 [ALC221_FIXUP_HP_MIC_NO_PRESENCE] = {
8408 .type = HDA_FIXUP_PINS,
8409 .v.pins = (const struct hda_pintbl[]) {
8410 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8411 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
8412 { }
8413 },
8414 .chained = true,
8415 .chain_id = ALC269_FIXUP_HEADSET_MODE
8416 },
8417 [ALC256_FIXUP_ASUS_HEADSET_MODE] = {
8418 .type = HDA_FIXUP_FUNC,
8419 .v.func = alc_fixup_headset_mode,
8420 },
8421 [ALC256_FIXUP_ASUS_MIC] = {
8422 .type = HDA_FIXUP_PINS,
8423 .v.pins = (const struct hda_pintbl[]) {
8424 { 0x13, 0x90a60160 }, /* use as internal mic */
8425 { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
8426 { }
8427 },
8428 .chained = true,
8429 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
8430 },
8431 [ALC256_FIXUP_ASUS_AIO_GPIO2] = {
8432 .type = HDA_FIXUP_FUNC,
8433 /* Set up GPIO2 for the speaker amp */
8434 .v.func = alc_fixup_gpio4,
8435 },
8436 [ALC233_FIXUP_ASUS_MIC_NO_PRESENCE] = {
8437 .type = HDA_FIXUP_PINS,
8438 .v.pins = (const struct hda_pintbl[]) {
8439 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8440 { }
8441 },
8442 .chained = true,
8443 .chain_id = ALC269_FIXUP_HEADSET_MIC
8444 },
8445 [ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE] = {
8446 .type = HDA_FIXUP_VERBS,
8447 .v.verbs = (const struct hda_verb[]) {
8448 /* Enables internal speaker */
8449 {0x20, AC_VERB_SET_COEF_INDEX, 0x40},
8450 {0x20, AC_VERB_SET_PROC_COEF, 0x8800},
8451 {}
8452 },
8453 .chained = true,
8454 .chain_id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE
8455 },
8456 [ALC233_FIXUP_LENOVO_MULTI_CODECS] = {
8457 .type = HDA_FIXUP_FUNC,
8458 .v.func = alc233_alc662_fixup_lenovo_dual_codecs,
8459 .chained = true,
8460 .chain_id = ALC269_FIXUP_GPIO2
8461 },
8462 [ALC233_FIXUP_ACER_HEADSET_MIC] = {
8463 .type = HDA_FIXUP_VERBS,
8464 .v.verbs = (const struct hda_verb[]) {
8465 { 0x20, AC_VERB_SET_COEF_INDEX, 0x45 },
8466 { 0x20, AC_VERB_SET_PROC_COEF, 0x5089 },
8467 { }
8468 },
8469 .chained = true,
8470 .chain_id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE
8471 },
8472 [ALC294_FIXUP_LENOVO_MIC_LOCATION] = {
8473 .type = HDA_FIXUP_PINS,
8474 .v.pins = (const struct hda_pintbl[]) {
8475 /* Change the mic location from front to right, otherwise there are
8476 two front mics with the same name, pulseaudio can't handle them.
8477 This is just a temporary workaround, after applying this fixup,
8478 there will be one "Front Mic" and one "Mic" in this machine.
8479 */
8480 { 0x1a, 0x04a19040 },
8481 { }
8482 },
8483 },
8484 [ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE] = {
8485 .type = HDA_FIXUP_PINS,
8486 .v.pins = (const struct hda_pintbl[]) {
8487 { 0x16, 0x0101102f }, /* Rear Headset HP */
8488 { 0x19, 0x02a1913c }, /* use as Front headset mic, without its own jack detect */
8489 { 0x1a, 0x01a19030 }, /* Rear Headset MIC */
8490 { 0x1b, 0x02011020 },
8491 { }
8492 },
8493 .chained = true,
8494 .chain_id = ALC225_FIXUP_S3_POP_NOISE
8495 },
8496 [ALC225_FIXUP_S3_POP_NOISE] = {
8497 .type = HDA_FIXUP_FUNC,
8498 .v.func = alc225_fixup_s3_pop_noise,
8499 .chained = true,
8500 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
8501 },
8502 [ALC700_FIXUP_INTEL_REFERENCE] = {
8503 .type = HDA_FIXUP_VERBS,
8504 .v.verbs = (const struct hda_verb[]) {
8505 /* Enables internal speaker */
8506 {0x20, AC_VERB_SET_COEF_INDEX, 0x45},
8507 {0x20, AC_VERB_SET_PROC_COEF, 0x5289},
8508 {0x20, AC_VERB_SET_COEF_INDEX, 0x4A},
8509 {0x20, AC_VERB_SET_PROC_COEF, 0x001b},
8510 {0x58, AC_VERB_SET_COEF_INDEX, 0x00},
8511 {0x58, AC_VERB_SET_PROC_COEF, 0x3888},
8512 {0x20, AC_VERB_SET_COEF_INDEX, 0x6f},
8513 {0x20, AC_VERB_SET_PROC_COEF, 0x2c0b},
8514 {}
8515 }
8516 },
8517 [ALC274_FIXUP_DELL_BIND_DACS] = {
8518 .type = HDA_FIXUP_FUNC,
8519 .v.func = alc274_fixup_bind_dacs,
8520 .chained = true,
8521 .chain_id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
8522 },
8523 [ALC274_FIXUP_DELL_AIO_LINEOUT_VERB] = {
8524 .type = HDA_FIXUP_PINS,
8525 .v.pins = (const struct hda_pintbl[]) {
8526 { 0x1b, 0x0401102f },
8527 { }
8528 },
8529 .chained = true,
8530 .chain_id = ALC274_FIXUP_DELL_BIND_DACS
8531 },
8532 [ALC298_FIXUP_TPT470_DOCK_FIX] = {
8533 .type = HDA_FIXUP_FUNC,
8534 .v.func = alc_fixup_tpt470_dock,
8535 .chained = true,
8536 .chain_id = ALC293_FIXUP_LENOVO_SPK_NOISE
8537 },
8538 [ALC298_FIXUP_TPT470_DOCK] = {
8539 .type = HDA_FIXUP_FUNC,
8540 .v.func = alc_fixup_tpt470_dacs,
8541 .chained = true,
8542 .chain_id = ALC298_FIXUP_TPT470_DOCK_FIX
8543 },
8544 [ALC255_FIXUP_DUMMY_LINEOUT_VERB] = {
8545 .type = HDA_FIXUP_PINS,
8546 .v.pins = (const struct hda_pintbl[]) {
8547 { 0x14, 0x0201101f },
8548 { }
8549 },
8550 .chained = true,
8551 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
8552 },
8553 [ALC255_FIXUP_DELL_HEADSET_MIC] = {
8554 .type = HDA_FIXUP_PINS,
8555 .v.pins = (const struct hda_pintbl[]) {
8556 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8557 { }
8558 },
8559 .chained = true,
8560 .chain_id = ALC269_FIXUP_HEADSET_MIC
8561 },
8562 [ALC295_FIXUP_HP_X360] = {
8563 .type = HDA_FIXUP_FUNC,
8564 .v.func = alc295_fixup_hp_top_speakers,
8565 .chained = true,
8566 .chain_id = ALC269_FIXUP_HP_MUTE_LED_MIC3
8567 },
8568 [ALC221_FIXUP_HP_HEADSET_MIC] = {
8569 .type = HDA_FIXUP_PINS,
8570 .v.pins = (const struct hda_pintbl[]) {
8571 { 0x19, 0x0181313f},
8572 { }
8573 },
8574 .chained = true,
8575 .chain_id = ALC269_FIXUP_HEADSET_MIC
8576 },
8577 [ALC285_FIXUP_LENOVO_HEADPHONE_NOISE] = {
8578 .type = HDA_FIXUP_FUNC,
8579 .v.func = alc285_fixup_invalidate_dacs,
8580 .chained = true,
8581 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
8582 },
8583 [ALC295_FIXUP_HP_AUTO_MUTE] = {
8584 .type = HDA_FIXUP_FUNC,
8585 .v.func = alc_fixup_auto_mute_via_amp,
8586 },
8587 [ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE] = {
8588 .type = HDA_FIXUP_PINS,
8589 .v.pins = (const struct hda_pintbl[]) {
8590 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8591 { }
8592 },
8593 .chained = true,
8594 .chain_id = ALC269_FIXUP_HEADSET_MIC
8595 },
8596 [ALC294_FIXUP_ASUS_MIC] = {
8597 .type = HDA_FIXUP_PINS,
8598 .v.pins = (const struct hda_pintbl[]) {
8599 { 0x13, 0x90a60160 }, /* use as internal mic */
8600 { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
8601 { }
8602 },
8603 .chained = true,
8604 .chain_id = ALC269_FIXUP_HEADSET_MIC
8605 },
8606 [ALC294_FIXUP_ASUS_HEADSET_MIC] = {
8607 .type = HDA_FIXUP_PINS,
8608 .v.pins = (const struct hda_pintbl[]) {
8609 { 0x19, 0x01a1103c }, /* use as headset mic */
8610 { }
8611 },
8612 .chained = true,
8613 .chain_id = ALC269_FIXUP_HEADSET_MIC
8614 },
8615 [ALC294_FIXUP_ASUS_SPK] = {
8616 .type = HDA_FIXUP_VERBS,
8617 .v.verbs = (const struct hda_verb[]) {
8618 /* Set EAPD high */
8619 { 0x20, AC_VERB_SET_COEF_INDEX, 0x40 },
8620 { 0x20, AC_VERB_SET_PROC_COEF, 0x8800 },
8621 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0f },
8622 { 0x20, AC_VERB_SET_PROC_COEF, 0x7774 },
8623 { }
8624 },
8625 .chained = true,
8626 .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC
8627 },
8628 [ALC295_FIXUP_CHROME_BOOK] = {
8629 .type = HDA_FIXUP_FUNC,
8630 .v.func = alc295_fixup_chromebook,
8631 .chained = true,
8632 .chain_id = ALC225_FIXUP_HEADSET_JACK
8633 },
8634 [ALC225_FIXUP_HEADSET_JACK] = {
8635 .type = HDA_FIXUP_FUNC,
8636 .v.func = alc_fixup_headset_jack,
8637 },
8638 [ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE] = {
8639 .type = HDA_FIXUP_PINS,
8640 .v.pins = (const struct hda_pintbl[]) {
8641 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8642 { }
8643 },
8644 .chained = true,
8645 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
8646 },
8647 [ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE] = {
8648 .type = HDA_FIXUP_VERBS,
8649 .v.verbs = (const struct hda_verb[]) {
8650 /* Disable PCBEEP-IN passthrough */
8651 { 0x20, AC_VERB_SET_COEF_INDEX, 0x36 },
8652 { 0x20, AC_VERB_SET_PROC_COEF, 0x57d7 },
8653 { }
8654 },
8655 .chained = true,
8656 .chain_id = ALC285_FIXUP_LENOVO_HEADPHONE_NOISE
8657 },
8658 [ALC255_FIXUP_ACER_HEADSET_MIC] = {
8659 .type = HDA_FIXUP_PINS,
8660 .v.pins = (const struct hda_pintbl[]) {
8661 { 0x19, 0x03a11130 },
8662 { 0x1a, 0x90a60140 }, /* use as internal mic */
8663 { }
8664 },
8665 .chained = true,
8666 .chain_id = ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC
8667 },
8668 [ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE] = {
8669 .type = HDA_FIXUP_PINS,
8670 .v.pins = (const struct hda_pintbl[]) {
8671 { 0x16, 0x01011020 }, /* Rear Line out */
8672 { 0x19, 0x01a1913c }, /* use as Front headset mic, without its own jack detect */
8673 { }
8674 },
8675 .chained = true,
8676 .chain_id = ALC225_FIXUP_WYSE_AUTO_MUTE
8677 },
8678 [ALC225_FIXUP_WYSE_AUTO_MUTE] = {
8679 .type = HDA_FIXUP_FUNC,
8680 .v.func = alc_fixup_auto_mute_via_amp,
8681 .chained = true,
8682 .chain_id = ALC225_FIXUP_WYSE_DISABLE_MIC_VREF
8683 },
8684 [ALC225_FIXUP_WYSE_DISABLE_MIC_VREF] = {
8685 .type = HDA_FIXUP_FUNC,
8686 .v.func = alc_fixup_disable_mic_vref,
8687 .chained = true,
8688 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
8689 },
8690 [ALC286_FIXUP_ACER_AIO_HEADSET_MIC] = {
8691 .type = HDA_FIXUP_VERBS,
8692 .v.verbs = (const struct hda_verb[]) {
8693 { 0x20, AC_VERB_SET_COEF_INDEX, 0x4f },
8694 { 0x20, AC_VERB_SET_PROC_COEF, 0x5029 },
8695 { }
8696 },
8697 .chained = true,
8698 .chain_id = ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE
8699 },
8700 [ALC256_FIXUP_ASUS_HEADSET_MIC] = {
8701 .type = HDA_FIXUP_PINS,
8702 .v.pins = (const struct hda_pintbl[]) {
8703 { 0x19, 0x03a11020 }, /* headset mic with jack detect */
8704 { }
8705 },
8706 .chained = true,
8707 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
8708 },
8709 [ALC256_FIXUP_ASUS_MIC_NO_PRESENCE] = {
8710 .type = HDA_FIXUP_PINS,
8711 .v.pins = (const struct hda_pintbl[]) {
8712 { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
8713 { }
8714 },
8715 .chained = true,
8716 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
8717 },
8718 [ALC299_FIXUP_PREDATOR_SPK] = {
8719 .type = HDA_FIXUP_PINS,
8720 .v.pins = (const struct hda_pintbl[]) {
8721 { 0x21, 0x90170150 }, /* use as headset mic, without its own jack detect */
8722 { }
8723 }
8724 },
8725 [ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE] = {
8726 .type = HDA_FIXUP_PINS,
8727 .v.pins = (const struct hda_pintbl[]) {
8728 { 0x19, 0x04a11040 },
8729 { 0x21, 0x04211020 },
8730 { }
8731 },
8732 .chained = true,
8733 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
8734 },
8735 [ALC289_FIXUP_DELL_SPK1] = {
8736 .type = HDA_FIXUP_PINS,
8737 .v.pins = (const struct hda_pintbl[]) {
8738 { 0x14, 0x90170140 },
8739 { }
8740 },
8741 .chained = true,
8742 .chain_id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE
8743 },
8744 [ALC289_FIXUP_DELL_SPK2] = {
8745 .type = HDA_FIXUP_PINS,
8746 .v.pins = (const struct hda_pintbl[]) {
8747 { 0x17, 0x90170130 }, /* bass spk */
8748 { }
8749 },
8750 .chained = true,
8751 .chain_id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE
8752 },
8753 [ALC289_FIXUP_DUAL_SPK] = {
8754 .type = HDA_FIXUP_FUNC,
8755 .v.func = alc285_fixup_speaker2_to_dac1,
8756 .chained = true,
8757 .chain_id = ALC289_FIXUP_DELL_SPK2
8758 },
8759 [ALC289_FIXUP_RTK_AMP_DUAL_SPK] = {
8760 .type = HDA_FIXUP_FUNC,
8761 .v.func = alc285_fixup_speaker2_to_dac1,
8762 .chained = true,
8763 .chain_id = ALC289_FIXUP_DELL_SPK1
8764 },
8765 [ALC294_FIXUP_SPK2_TO_DAC1] = {
8766 .type = HDA_FIXUP_FUNC,
8767 .v.func = alc285_fixup_speaker2_to_dac1,
8768 .chained = true,
8769 .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC
8770 },
8771 [ALC294_FIXUP_ASUS_DUAL_SPK] = {
8772 .type = HDA_FIXUP_FUNC,
8773 /* The GPIO must be pulled to initialize the AMP */
8774 .v.func = alc_fixup_gpio4,
8775 .chained = true,
8776 .chain_id = ALC294_FIXUP_SPK2_TO_DAC1
8777 },
8778 [ALC294_FIXUP_ASUS_ALLY] = {
8779 .type = HDA_FIXUP_FUNC,
8780 .v.func = cs35l41_fixup_i2c_two,
8781 .chained = true,
8782 .chain_id = ALC294_FIXUP_ASUS_ALLY_PINS
8783 },
8784 [ALC294_FIXUP_ASUS_ALLY_PINS] = {
8785 .type = HDA_FIXUP_PINS,
8786 .v.pins = (const struct hda_pintbl[]) {
8787 { 0x19, 0x03a11050 },
8788 { 0x1a, 0x03a11c30 },
8789 { 0x21, 0x03211420 },
8790 { }
8791 },
8792 .chained = true,
8793 .chain_id = ALC294_FIXUP_ASUS_ALLY_VERBS
8794 },
8795 [ALC294_FIXUP_ASUS_ALLY_VERBS] = {
8796 .type = HDA_FIXUP_VERBS,
8797 .v.verbs = (const struct hda_verb[]) {
8798 { 0x20, AC_VERB_SET_COEF_INDEX, 0x45 },
8799 { 0x20, AC_VERB_SET_PROC_COEF, 0x5089 },
8800 { 0x20, AC_VERB_SET_COEF_INDEX, 0x46 },
8801 { 0x20, AC_VERB_SET_PROC_COEF, 0x0004 },
8802 { 0x20, AC_VERB_SET_COEF_INDEX, 0x47 },
8803 { 0x20, AC_VERB_SET_PROC_COEF, 0xa47a },
8804 { 0x20, AC_VERB_SET_COEF_INDEX, 0x49 },
8805 { 0x20, AC_VERB_SET_PROC_COEF, 0x0049},
8806 { 0x20, AC_VERB_SET_COEF_INDEX, 0x4a },
8807 { 0x20, AC_VERB_SET_PROC_COEF, 0x201b },
8808 { 0x20, AC_VERB_SET_COEF_INDEX, 0x6b },
8809 { 0x20, AC_VERB_SET_PROC_COEF, 0x4278},
8810 { }
8811 },
8812 .chained = true,
8813 .chain_id = ALC294_FIXUP_ASUS_ALLY_SPEAKER
8814 },
8815 [ALC294_FIXUP_ASUS_ALLY_SPEAKER] = {
8816 .type = HDA_FIXUP_FUNC,
8817 .v.func = alc285_fixup_speaker2_to_dac1,
8818 },
8819 [ALC285_FIXUP_THINKPAD_X1_GEN7] = {
8820 .type = HDA_FIXUP_FUNC,
8821 .v.func = alc285_fixup_thinkpad_x1_gen7,
8822 .chained = true,
8823 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
8824 },
8825 [ALC285_FIXUP_THINKPAD_HEADSET_JACK] = {
8826 .type = HDA_FIXUP_FUNC,
8827 .v.func = alc_fixup_headset_jack,
8828 .chained = true,
8829 .chain_id = ALC285_FIXUP_THINKPAD_X1_GEN7
8830 },
8831 [ALC294_FIXUP_ASUS_HPE] = {
8832 .type = HDA_FIXUP_VERBS,
8833 .v.verbs = (const struct hda_verb[]) {
8834 /* Set EAPD high */
8835 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0f },
8836 { 0x20, AC_VERB_SET_PROC_COEF, 0x7774 },
8837 { }
8838 },
8839 .chained = true,
8840 .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC
8841 },
8842 [ALC294_FIXUP_ASUS_GX502_PINS] = {
8843 .type = HDA_FIXUP_PINS,
8844 .v.pins = (const struct hda_pintbl[]) {
8845 { 0x19, 0x03a11050 }, /* front HP mic */
8846 { 0x1a, 0x01a11830 }, /* rear external mic */
8847 { 0x21, 0x03211020 }, /* front HP out */
8848 { }
8849 },
8850 .chained = true,
8851 .chain_id = ALC294_FIXUP_ASUS_GX502_VERBS
8852 },
8853 [ALC294_FIXUP_ASUS_GX502_VERBS] = {
8854 .type = HDA_FIXUP_VERBS,
8855 .v.verbs = (const struct hda_verb[]) {
8856 /* set 0x15 to HP-OUT ctrl */
8857 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
8858 /* unmute the 0x15 amp */
8859 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000 },
8860 { }
8861 },
8862 .chained = true,
8863 .chain_id = ALC294_FIXUP_ASUS_GX502_HP
8864 },
8865 [ALC294_FIXUP_ASUS_GX502_HP] = {
8866 .type = HDA_FIXUP_FUNC,
8867 .v.func = alc294_fixup_gx502_hp,
8868 },
8869 [ALC294_FIXUP_ASUS_GU502_PINS] = {
8870 .type = HDA_FIXUP_PINS,
8871 .v.pins = (const struct hda_pintbl[]) {
8872 { 0x19, 0x01a11050 }, /* rear HP mic */
8873 { 0x1a, 0x01a11830 }, /* rear external mic */
8874 { 0x21, 0x012110f0 }, /* rear HP out */
8875 { }
8876 },
8877 .chained = true,
8878 .chain_id = ALC294_FIXUP_ASUS_GU502_VERBS
8879 },
8880 [ALC294_FIXUP_ASUS_GU502_VERBS] = {
8881 .type = HDA_FIXUP_VERBS,
8882 .v.verbs = (const struct hda_verb[]) {
8883 /* set 0x15 to HP-OUT ctrl */
8884 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
8885 /* unmute the 0x15 amp */
8886 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000 },
8887 /* set 0x1b to HP-OUT */
8888 { 0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
8889 { }
8890 },
8891 .chained = true,
8892 .chain_id = ALC294_FIXUP_ASUS_GU502_HP
8893 },
8894 [ALC294_FIXUP_ASUS_GU502_HP] = {
8895 .type = HDA_FIXUP_FUNC,
8896 .v.func = alc294_fixup_gu502_hp,
8897 },
8898 [ALC294_FIXUP_ASUS_G513_PINS] = {
8899 .type = HDA_FIXUP_PINS,
8900 .v.pins = (const struct hda_pintbl[]) {
8901 { 0x19, 0x03a11050 }, /* front HP mic */
8902 { 0x1a, 0x03a11c30 }, /* rear external mic */
8903 { 0x21, 0x03211420 }, /* front HP out */
8904 { }
8905 },
8906 },
8907 [ALC285_FIXUP_ASUS_G533Z_PINS] = {
8908 .type = HDA_FIXUP_PINS,
8909 .v.pins = (const struct hda_pintbl[]) {
8910 { 0x14, 0x90170152 }, /* Speaker Surround Playback Switch */
8911 { 0x19, 0x03a19020 }, /* Mic Boost Volume */
8912 { 0x1a, 0x03a11c30 }, /* Mic Boost Volume */
8913 { 0x1e, 0x90170151 }, /* Rear jack, IN OUT EAPD Detect */
8914 { 0x21, 0x03211420 },
8915 { }
8916 },
8917 },
8918 [ALC294_FIXUP_ASUS_COEF_1B] = {
8919 .type = HDA_FIXUP_VERBS,
8920 .v.verbs = (const struct hda_verb[]) {
8921 /* Set bit 10 to correct noisy output after reboot from
8922 * Windows 10 (due to pop noise reduction?)
8923 */
8924 { 0x20, AC_VERB_SET_COEF_INDEX, 0x1b },
8925 { 0x20, AC_VERB_SET_PROC_COEF, 0x4e4b },
8926 { }
8927 },
8928 .chained = true,
8929 .chain_id = ALC289_FIXUP_ASUS_GA401,
8930 },
8931 [ALC285_FIXUP_HP_GPIO_LED] = {
8932 .type = HDA_FIXUP_FUNC,
8933 .v.func = alc285_fixup_hp_gpio_led,
8934 },
8935 [ALC285_FIXUP_HP_MUTE_LED] = {
8936 .type = HDA_FIXUP_FUNC,
8937 .v.func = alc285_fixup_hp_mute_led,
8938 },
8939 [ALC285_FIXUP_HP_SPECTRE_X360_MUTE_LED] = {
8940 .type = HDA_FIXUP_FUNC,
8941 .v.func = alc285_fixup_hp_spectre_x360_mute_led,
8942 },
8943 [ALC236_FIXUP_HP_MUTE_LED_COEFBIT2] = {
8944 .type = HDA_FIXUP_FUNC,
8945 .v.func = alc236_fixup_hp_mute_led_coefbit2,
8946 },
8947 [ALC236_FIXUP_HP_GPIO_LED] = {
8948 .type = HDA_FIXUP_FUNC,
8949 .v.func = alc236_fixup_hp_gpio_led,
8950 },
8951 [ALC236_FIXUP_HP_MUTE_LED] = {
8952 .type = HDA_FIXUP_FUNC,
8953 .v.func = alc236_fixup_hp_mute_led,
8954 },
8955 [ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF] = {
8956 .type = HDA_FIXUP_FUNC,
8957 .v.func = alc236_fixup_hp_mute_led_micmute_vref,
8958 },
8959 [ALC298_FIXUP_SAMSUNG_AMP] = {
8960 .type = HDA_FIXUP_FUNC,
8961 .v.func = alc298_fixup_samsung_amp,
8962 .chained = true,
8963 .chain_id = ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET
8964 },
8965 [ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET] = {
8966 .type = HDA_FIXUP_VERBS,
8967 .v.verbs = (const struct hda_verb[]) {
8968 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc5 },
8969 { }
8970 },
8971 },
8972 [ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET] = {
8973 .type = HDA_FIXUP_VERBS,
8974 .v.verbs = (const struct hda_verb[]) {
8975 { 0x20, AC_VERB_SET_COEF_INDEX, 0x08},
8976 { 0x20, AC_VERB_SET_PROC_COEF, 0x2fcf},
8977 { }
8978 },
8979 },
8980 [ALC295_FIXUP_ASUS_MIC_NO_PRESENCE] = {
8981 .type = HDA_FIXUP_PINS,
8982 .v.pins = (const struct hda_pintbl[]) {
8983 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8984 { }
8985 },
8986 .chained = true,
8987 .chain_id = ALC269_FIXUP_HEADSET_MODE
8988 },
8989 [ALC269VC_FIXUP_ACER_VCOPPERBOX_PINS] = {
8990 .type = HDA_FIXUP_PINS,
8991 .v.pins = (const struct hda_pintbl[]) {
8992 { 0x14, 0x90100120 }, /* use as internal speaker */
8993 { 0x18, 0x02a111f0 }, /* use as headset mic, without its own jack detect */
8994 { 0x1a, 0x01011020 }, /* use as line out */
8995 { },
8996 },
8997 .chained = true,
8998 .chain_id = ALC269_FIXUP_HEADSET_MIC
8999 },
9000 [ALC269VC_FIXUP_ACER_HEADSET_MIC] = {
9001 .type = HDA_FIXUP_PINS,
9002 .v.pins = (const struct hda_pintbl[]) {
9003 { 0x18, 0x02a11030 }, /* use as headset mic */
9004 { }
9005 },
9006 .chained = true,
9007 .chain_id = ALC269_FIXUP_HEADSET_MIC
9008 },
9009 [ALC269VC_FIXUP_ACER_MIC_NO_PRESENCE] = {
9010 .type = HDA_FIXUP_PINS,
9011 .v.pins = (const struct hda_pintbl[]) {
9012 { 0x18, 0x01a11130 }, /* use as headset mic, without its own jack detect */
9013 { }
9014 },
9015 .chained = true,
9016 .chain_id = ALC269_FIXUP_HEADSET_MIC
9017 },
9018 [ALC289_FIXUP_ASUS_GA401] = {
9019 .type = HDA_FIXUP_FUNC,
9020 .v.func = alc289_fixup_asus_ga401,
9021 .chained = true,
9022 .chain_id = ALC289_FIXUP_ASUS_GA502,
9023 },
9024 [ALC289_FIXUP_ASUS_GA502] = {
9025 .type = HDA_FIXUP_PINS,
9026 .v.pins = (const struct hda_pintbl[]) {
9027 { 0x19, 0x03a11020 }, /* headset mic with jack detect */
9028 { }
9029 },
9030 },
9031 [ALC256_FIXUP_ACER_MIC_NO_PRESENCE] = {
9032 .type = HDA_FIXUP_PINS,
9033 .v.pins = (const struct hda_pintbl[]) {
9034 { 0x19, 0x02a11120 }, /* use as headset mic, without its own jack detect */
9035 { }
9036 },
9037 .chained = true,
9038 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
9039 },
9040 [ALC285_FIXUP_HP_GPIO_AMP_INIT] = {
9041 .type = HDA_FIXUP_FUNC,
9042 .v.func = alc285_fixup_hp_gpio_amp_init,
9043 .chained = true,
9044 .chain_id = ALC285_FIXUP_HP_GPIO_LED
9045 },
9046 [ALC269_FIXUP_CZC_B20] = {
9047 .type = HDA_FIXUP_PINS,
9048 .v.pins = (const struct hda_pintbl[]) {
9049 { 0x12, 0x411111f0 },
9050 { 0x14, 0x90170110 }, /* speaker */
9051 { 0x15, 0x032f1020 }, /* HP out */
9052 { 0x17, 0x411111f0 },
9053 { 0x18, 0x03ab1040 }, /* mic */
9054 { 0x19, 0xb7a7013f },
9055 { 0x1a, 0x0181305f },
9056 { 0x1b, 0x411111f0 },
9057 { 0x1d, 0x411111f0 },
9058 { 0x1e, 0x411111f0 },
9059 { }
9060 },
9061 .chain_id = ALC269_FIXUP_DMIC,
9062 },
9063 [ALC269_FIXUP_CZC_TMI] = {
9064 .type = HDA_FIXUP_PINS,
9065 .v.pins = (const struct hda_pintbl[]) {
9066 { 0x12, 0x4000c000 },
9067 { 0x14, 0x90170110 }, /* speaker */
9068 { 0x15, 0x0421401f }, /* HP out */
9069 { 0x17, 0x411111f0 },
9070 { 0x18, 0x04a19020 }, /* mic */
9071 { 0x19, 0x411111f0 },
9072 { 0x1a, 0x411111f0 },
9073 { 0x1b, 0x411111f0 },
9074 { 0x1d, 0x40448505 },
9075 { 0x1e, 0x411111f0 },
9076 { 0x20, 0x8000ffff },
9077 { }
9078 },
9079 .chain_id = ALC269_FIXUP_DMIC,
9080 },
9081 [ALC269_FIXUP_CZC_L101] = {
9082 .type = HDA_FIXUP_PINS,
9083 .v.pins = (const struct hda_pintbl[]) {
9084 { 0x12, 0x40000000 },
9085 { 0x14, 0x01014010 }, /* speaker */
9086 { 0x15, 0x411111f0 }, /* HP out */
9087 { 0x16, 0x411111f0 },
9088 { 0x18, 0x01a19020 }, /* mic */
9089 { 0x19, 0x02a19021 },
9090 { 0x1a, 0x0181302f },
9091 { 0x1b, 0x0221401f },
9092 { 0x1c, 0x411111f0 },
9093 { 0x1d, 0x4044c601 },
9094 { 0x1e, 0x411111f0 },
9095 { }
9096 },
9097 .chain_id = ALC269_FIXUP_DMIC,
9098 },
9099 [ALC269_FIXUP_LEMOTE_A1802] = {
9100 .type = HDA_FIXUP_PINS,
9101 .v.pins = (const struct hda_pintbl[]) {
9102 { 0x12, 0x40000000 },
9103 { 0x14, 0x90170110 }, /* speaker */
9104 { 0x17, 0x411111f0 },
9105 { 0x18, 0x03a19040 }, /* mic1 */
9106 { 0x19, 0x90a70130 }, /* mic2 */
9107 { 0x1a, 0x411111f0 },
9108 { 0x1b, 0x411111f0 },
9109 { 0x1d, 0x40489d2d },
9110 { 0x1e, 0x411111f0 },
9111 { 0x20, 0x0003ffff },
9112 { 0x21, 0x03214020 },
9113 { }
9114 },
9115 .chain_id = ALC269_FIXUP_DMIC,
9116 },
9117 [ALC269_FIXUP_LEMOTE_A190X] = {
9118 .type = HDA_FIXUP_PINS,
9119 .v.pins = (const struct hda_pintbl[]) {
9120 { 0x14, 0x99130110 }, /* speaker */
9121 { 0x15, 0x0121401f }, /* HP out */
9122 { 0x18, 0x01a19c20 }, /* rear mic */
9123 { 0x19, 0x99a3092f }, /* front mic */
9124 { 0x1b, 0x0201401f }, /* front lineout */
9125 { }
9126 },
9127 .chain_id = ALC269_FIXUP_DMIC,
9128 },
9129 [ALC256_FIXUP_INTEL_NUC8_RUGGED] = {
9130 .type = HDA_FIXUP_PINS,
9131 .v.pins = (const struct hda_pintbl[]) {
9132 { 0x1b, 0x01a1913c }, /* use as headset mic, without its own jack detect */
9133 { }
9134 },
9135 .chained = true,
9136 .chain_id = ALC269_FIXUP_HEADSET_MODE
9137 },
9138 [ALC256_FIXUP_INTEL_NUC10] = {
9139 .type = HDA_FIXUP_PINS,
9140 .v.pins = (const struct hda_pintbl[]) {
9141 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
9142 { }
9143 },
9144 .chained = true,
9145 .chain_id = ALC269_FIXUP_HEADSET_MODE
9146 },
9147 [ALC255_FIXUP_XIAOMI_HEADSET_MIC] = {
9148 .type = HDA_FIXUP_VERBS,
9149 .v.verbs = (const struct hda_verb[]) {
9150 { 0x20, AC_VERB_SET_COEF_INDEX, 0x45 },
9151 { 0x20, AC_VERB_SET_PROC_COEF, 0x5089 },
9152 { }
9153 },
9154 .chained = true,
9155 .chain_id = ALC289_FIXUP_ASUS_GA502
9156 },
9157 [ALC274_FIXUP_HP_MIC] = {
9158 .type = HDA_FIXUP_VERBS,
9159 .v.verbs = (const struct hda_verb[]) {
9160 { 0x20, AC_VERB_SET_COEF_INDEX, 0x45 },
9161 { 0x20, AC_VERB_SET_PROC_COEF, 0x5089 },
9162 { }
9163 },
9164 },
9165 [ALC274_FIXUP_HP_HEADSET_MIC] = {
9166 .type = HDA_FIXUP_FUNC,
9167 .v.func = alc274_fixup_hp_headset_mic,
9168 .chained = true,
9169 .chain_id = ALC274_FIXUP_HP_MIC
9170 },
9171 [ALC274_FIXUP_HP_ENVY_GPIO] = {
9172 .type = HDA_FIXUP_FUNC,
9173 .v.func = alc274_fixup_hp_envy_gpio,
9174 },
9175 [ALC256_FIXUP_ASUS_HPE] = {
9176 .type = HDA_FIXUP_VERBS,
9177 .v.verbs = (const struct hda_verb[]) {
9178 /* Set EAPD high */
9179 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0f },
9180 { 0x20, AC_VERB_SET_PROC_COEF, 0x7778 },
9181 { }
9182 },
9183 .chained = true,
9184 .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC
9185 },
9186 [ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK] = {
9187 .type = HDA_FIXUP_FUNC,
9188 .v.func = alc_fixup_headset_jack,
9189 .chained = true,
9190 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
9191 },
9192 [ALC287_FIXUP_HP_GPIO_LED] = {
9193 .type = HDA_FIXUP_FUNC,
9194 .v.func = alc287_fixup_hp_gpio_led,
9195 },
9196 [ALC256_FIXUP_HP_HEADSET_MIC] = {
9197 .type = HDA_FIXUP_FUNC,
9198 .v.func = alc274_fixup_hp_headset_mic,
9199 },
9200 [ALC236_FIXUP_DELL_AIO_HEADSET_MIC] = {
9201 .type = HDA_FIXUP_FUNC,
9202 .v.func = alc_fixup_no_int_mic,
9203 .chained = true,
9204 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
9205 },
9206 [ALC282_FIXUP_ACER_DISABLE_LINEOUT] = {
9207 .type = HDA_FIXUP_PINS,
9208 .v.pins = (const struct hda_pintbl[]) {
9209 { 0x1b, 0x411111f0 },
9210 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
9211 { },
9212 },
9213 .chained = true,
9214 .chain_id = ALC269_FIXUP_HEADSET_MODE
9215 },
9216 [ALC255_FIXUP_ACER_LIMIT_INT_MIC_BOOST] = {
9217 .type = HDA_FIXUP_FUNC,
9218 .v.func = alc269_fixup_limit_int_mic_boost,
9219 .chained = true,
9220 .chain_id = ALC255_FIXUP_ACER_MIC_NO_PRESENCE,
9221 },
9222 [ALC256_FIXUP_ACER_HEADSET_MIC] = {
9223 .type = HDA_FIXUP_PINS,
9224 .v.pins = (const struct hda_pintbl[]) {
9225 { 0x19, 0x02a1113c }, /* use as headset mic, without its own jack detect */
9226 { 0x1a, 0x90a1092f }, /* use as internal mic */
9227 { }
9228 },
9229 .chained = true,
9230 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
9231 },
9232 [ALC285_FIXUP_IDEAPAD_S740_COEF] = {
9233 .type = HDA_FIXUP_FUNC,
9234 .v.func = alc285_fixup_ideapad_s740_coef,
9235 .chained = true,
9236 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
9237 },
9238 [ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST] = {
9239 .type = HDA_FIXUP_FUNC,
9240 .v.func = alc269_fixup_limit_int_mic_boost,
9241 .chained = true,
9242 .chain_id = ALC285_FIXUP_HP_MUTE_LED,
9243 },
9244 [ALC295_FIXUP_ASUS_DACS] = {
9245 .type = HDA_FIXUP_FUNC,
9246 .v.func = alc295_fixup_asus_dacs,
9247 },
9248 [ALC295_FIXUP_HP_OMEN] = {
9249 .type = HDA_FIXUP_PINS,
9250 .v.pins = (const struct hda_pintbl[]) {
9251 { 0x12, 0xb7a60130 },
9252 { 0x13, 0x40000000 },
9253 { 0x14, 0x411111f0 },
9254 { 0x16, 0x411111f0 },
9255 { 0x17, 0x90170110 },
9256 { 0x18, 0x411111f0 },
9257 { 0x19, 0x02a11030 },
9258 { 0x1a, 0x411111f0 },
9259 { 0x1b, 0x04a19030 },
9260 { 0x1d, 0x40600001 },
9261 { 0x1e, 0x411111f0 },
9262 { 0x21, 0x03211020 },
9263 {}
9264 },
9265 .chained = true,
9266 .chain_id = ALC269_FIXUP_HP_LINE1_MIC1_LED,
9267 },
9268 [ALC285_FIXUP_HP_SPECTRE_X360] = {
9269 .type = HDA_FIXUP_FUNC,
9270 .v.func = alc285_fixup_hp_spectre_x360,
9271 },
9272 [ALC285_FIXUP_HP_SPECTRE_X360_EB1] = {
9273 .type = HDA_FIXUP_FUNC,
9274 .v.func = alc285_fixup_hp_spectre_x360_eb1
9275 },
9276 [ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP] = {
9277 .type = HDA_FIXUP_FUNC,
9278 .v.func = alc285_fixup_ideapad_s740_coef,
9279 .chained = true,
9280 .chain_id = ALC285_FIXUP_THINKPAD_HEADSET_JACK,
9281 },
9282 [ALC623_FIXUP_LENOVO_THINKSTATION_P340] = {
9283 .type = HDA_FIXUP_FUNC,
9284 .v.func = alc_fixup_no_shutup,
9285 .chained = true,
9286 .chain_id = ALC283_FIXUP_HEADSET_MIC,
9287 },
9288 [ALC255_FIXUP_ACER_HEADPHONE_AND_MIC] = {
9289 .type = HDA_FIXUP_PINS,
9290 .v.pins = (const struct hda_pintbl[]) {
9291 { 0x21, 0x03211030 }, /* Change the Headphone location to Left */
9292 { }
9293 },
9294 .chained = true,
9295 .chain_id = ALC255_FIXUP_XIAOMI_HEADSET_MIC
9296 },
9297 [ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST] = {
9298 .type = HDA_FIXUP_FUNC,
9299 .v.func = alc269_fixup_limit_int_mic_boost,
9300 .chained = true,
9301 .chain_id = ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF,
9302 },
9303 [ALC285_FIXUP_LEGION_Y9000X_SPEAKERS] = {
9304 .type = HDA_FIXUP_FUNC,
9305 .v.func = alc285_fixup_ideapad_s740_coef,
9306 .chained = true,
9307 .chain_id = ALC285_FIXUP_LEGION_Y9000X_AUTOMUTE,
9308 },
9309 [ALC285_FIXUP_LEGION_Y9000X_AUTOMUTE] = {
9310 .type = HDA_FIXUP_FUNC,
9311 .v.func = alc287_fixup_legion_15imhg05_speakers,
9312 .chained = true,
9313 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
9314 },
9315 [ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS] = {
9316 .type = HDA_FIXUP_VERBS,
9317 //.v.verbs = legion_15imhg05_coefs,
9318 .v.verbs = (const struct hda_verb[]) {
9319 // set left speaker Legion 7i.
9320 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9321 { 0x20, AC_VERB_SET_PROC_COEF, 0x41 },
9322
9323 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9324 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
9325 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9326 { 0x20, AC_VERB_SET_PROC_COEF, 0x1a },
9327 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9328
9329 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9330 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9331 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9332 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9333 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9334
9335 // set right speaker Legion 7i.
9336 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9337 { 0x20, AC_VERB_SET_PROC_COEF, 0x42 },
9338
9339 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9340 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
9341 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9342 { 0x20, AC_VERB_SET_PROC_COEF, 0x2a },
9343 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9344
9345 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9346 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9347 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9348 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9349 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9350 {}
9351 },
9352 .chained = true,
9353 .chain_id = ALC287_FIXUP_LEGION_15IMHG05_AUTOMUTE,
9354 },
9355 [ALC287_FIXUP_LEGION_15IMHG05_AUTOMUTE] = {
9356 .type = HDA_FIXUP_FUNC,
9357 .v.func = alc287_fixup_legion_15imhg05_speakers,
9358 .chained = true,
9359 .chain_id = ALC269_FIXUP_HEADSET_MODE,
9360 },
9361 [ALC287_FIXUP_YOGA7_14ITL_SPEAKERS] = {
9362 .type = HDA_FIXUP_VERBS,
9363 .v.verbs = (const struct hda_verb[]) {
9364 // set left speaker Yoga 7i.
9365 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9366 { 0x20, AC_VERB_SET_PROC_COEF, 0x41 },
9367
9368 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9369 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
9370 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9371 { 0x20, AC_VERB_SET_PROC_COEF, 0x1a },
9372 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9373
9374 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9375 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9376 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9377 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9378 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9379
9380 // set right speaker Yoga 7i.
9381 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9382 { 0x20, AC_VERB_SET_PROC_COEF, 0x46 },
9383
9384 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9385 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
9386 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9387 { 0x20, AC_VERB_SET_PROC_COEF, 0x2a },
9388 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9389
9390 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9391 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9392 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9393 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9394 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9395 {}
9396 },
9397 .chained = true,
9398 .chain_id = ALC269_FIXUP_HEADSET_MODE,
9399 },
9400 [ALC298_FIXUP_LENOVO_C940_DUET7] = {
9401 .type = HDA_FIXUP_FUNC,
9402 .v.func = alc298_fixup_lenovo_c940_duet7,
9403 },
9404 [ALC287_FIXUP_LENOVO_14IRP8_DUETITL] = {
9405 .type = HDA_FIXUP_FUNC,
9406 .v.func = alc287_fixup_lenovo_14irp8_duetitl,
9407 },
9408 [ALC287_FIXUP_13S_GEN2_SPEAKERS] = {
9409 .type = HDA_FIXUP_VERBS,
9410 .v.verbs = (const struct hda_verb[]) {
9411 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9412 { 0x20, AC_VERB_SET_PROC_COEF, 0x41 },
9413 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9414 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9415 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9416 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9417 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9418 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9419 { 0x20, AC_VERB_SET_PROC_COEF, 0x42 },
9420 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9421 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9422 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9423 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9424 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9425 {}
9426 },
9427 .chained = true,
9428 .chain_id = ALC269_FIXUP_HEADSET_MODE,
9429 },
9430 [ALC256_FIXUP_SET_COEF_DEFAULTS] = {
9431 .type = HDA_FIXUP_FUNC,
9432 .v.func = alc256_fixup_set_coef_defaults,
9433 },
9434 [ALC245_FIXUP_HP_GPIO_LED] = {
9435 .type = HDA_FIXUP_FUNC,
9436 .v.func = alc245_fixup_hp_gpio_led,
9437 },
9438 [ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE] = {
9439 .type = HDA_FIXUP_PINS,
9440 .v.pins = (const struct hda_pintbl[]) {
9441 { 0x19, 0x03a11120 }, /* use as headset mic, without its own jack detect */
9442 { }
9443 },
9444 .chained = true,
9445 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC,
9446 },
9447 [ALC233_FIXUP_NO_AUDIO_JACK] = {
9448 .type = HDA_FIXUP_FUNC,
9449 .v.func = alc233_fixup_no_audio_jack,
9450 },
9451 [ALC256_FIXUP_MIC_NO_PRESENCE_AND_RESUME] = {
9452 .type = HDA_FIXUP_FUNC,
9453 .v.func = alc256_fixup_mic_no_presence_and_resume,
9454 .chained = true,
9455 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
9456 },
9457 [ALC287_FIXUP_LEGION_16ACHG6] = {
9458 .type = HDA_FIXUP_FUNC,
9459 .v.func = alc287_fixup_legion_16achg6_speakers,
9460 },
9461 [ALC287_FIXUP_CS35L41_I2C_2] = {
9462 .type = HDA_FIXUP_FUNC,
9463 .v.func = cs35l41_fixup_i2c_two,
9464 },
9465 [ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED] = {
9466 .type = HDA_FIXUP_FUNC,
9467 .v.func = cs35l41_fixup_i2c_two,
9468 .chained = true,
9469 .chain_id = ALC285_FIXUP_HP_MUTE_LED,
9470 },
9471 [ALC287_FIXUP_CS35L41_I2C_4] = {
9472 .type = HDA_FIXUP_FUNC,
9473 .v.func = cs35l41_fixup_i2c_four,
9474 },
9475 [ALC245_FIXUP_CS35L41_SPI_2] = {
9476 .type = HDA_FIXUP_FUNC,
9477 .v.func = cs35l41_fixup_spi_two,
9478 },
9479 [ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED] = {
9480 .type = HDA_FIXUP_FUNC,
9481 .v.func = cs35l41_fixup_spi_two,
9482 .chained = true,
9483 .chain_id = ALC285_FIXUP_HP_GPIO_LED,
9484 },
9485 [ALC245_FIXUP_CS35L41_SPI_4] = {
9486 .type = HDA_FIXUP_FUNC,
9487 .v.func = cs35l41_fixup_spi_four,
9488 },
9489 [ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED] = {
9490 .type = HDA_FIXUP_FUNC,
9491 .v.func = cs35l41_fixup_spi_four,
9492 .chained = true,
9493 .chain_id = ALC285_FIXUP_HP_GPIO_LED,
9494 },
9495 [ALC285_FIXUP_HP_SPEAKERS_MICMUTE_LED] = {
9496 .type = HDA_FIXUP_VERBS,
9497 .v.verbs = (const struct hda_verb[]) {
9498 { 0x20, AC_VERB_SET_COEF_INDEX, 0x19 },
9499 { 0x20, AC_VERB_SET_PROC_COEF, 0x8e11 },
9500 { }
9501 },
9502 .chained = true,
9503 .chain_id = ALC285_FIXUP_HP_MUTE_LED,
9504 },
9505 [ALC269_FIXUP_DELL4_MIC_NO_PRESENCE_QUIET] = {
9506 .type = HDA_FIXUP_FUNC,
9507 .v.func = alc_fixup_dell4_mic_no_presence_quiet,
9508 .chained = true,
9509 .chain_id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
9510 },
9511 [ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE] = {
9512 .type = HDA_FIXUP_PINS,
9513 .v.pins = (const struct hda_pintbl[]) {
9514 { 0x19, 0x02a1112c }, /* use as headset mic, without its own jack detect */
9515 { }
9516 },
9517 .chained = true,
9518 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
9519 },
9520 [ALC287_FIXUP_LEGION_16ITHG6] = {
9521 .type = HDA_FIXUP_FUNC,
9522 .v.func = alc287_fixup_legion_16ithg6_speakers,
9523 },
9524 [ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK] = {
9525 .type = HDA_FIXUP_VERBS,
9526 .v.verbs = (const struct hda_verb[]) {
9527 // enable left speaker
9528 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9529 { 0x20, AC_VERB_SET_PROC_COEF, 0x41 },
9530
9531 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9532 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
9533 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9534 { 0x20, AC_VERB_SET_PROC_COEF, 0x1a },
9535 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9536
9537 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9538 { 0x20, AC_VERB_SET_PROC_COEF, 0xf },
9539 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9540 { 0x20, AC_VERB_SET_PROC_COEF, 0x42 },
9541 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9542
9543 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9544 { 0x20, AC_VERB_SET_PROC_COEF, 0x10 },
9545 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9546 { 0x20, AC_VERB_SET_PROC_COEF, 0x40 },
9547 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9548
9549 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9550 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9551 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9552 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9553 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9554
9555 // enable right speaker
9556 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9557 { 0x20, AC_VERB_SET_PROC_COEF, 0x46 },
9558
9559 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9560 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
9561 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9562 { 0x20, AC_VERB_SET_PROC_COEF, 0x2a },
9563 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9564
9565 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9566 { 0x20, AC_VERB_SET_PROC_COEF, 0xf },
9567 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9568 { 0x20, AC_VERB_SET_PROC_COEF, 0x46 },
9569 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9570
9571 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9572 { 0x20, AC_VERB_SET_PROC_COEF, 0x10 },
9573 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9574 { 0x20, AC_VERB_SET_PROC_COEF, 0x44 },
9575 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9576
9577 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9578 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9579 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9580 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9581 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9582
9583 { },
9584 },
9585 },
9586 [ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN] = {
9587 .type = HDA_FIXUP_FUNC,
9588 .v.func = alc287_fixup_yoga9_14iap7_bass_spk_pin,
9589 .chained = true,
9590 .chain_id = ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK,
9591 },
9592 [ALC295_FIXUP_DELL_INSPIRON_TOP_SPEAKERS] = {
9593 .type = HDA_FIXUP_FUNC,
9594 .v.func = alc295_fixup_dell_inspiron_top_speakers,
9595 .chained = true,
9596 .chain_id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
9597 },
9598 [ALC236_FIXUP_DELL_DUAL_CODECS] = {
9599 .type = HDA_FIXUP_PINS,
9600 .v.func = alc1220_fixup_gb_dual_codecs,
9601 .chained = true,
9602 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9603 },
9604 [ALC287_FIXUP_CS35L41_I2C_2_THINKPAD_ACPI] = {
9605 .type = HDA_FIXUP_FUNC,
9606 .v.func = cs35l41_fixup_i2c_two,
9607 .chained = true,
9608 .chain_id = ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK,
9609 },
9610 [ALC287_FIXUP_TAS2781_I2C] = {
9611 .type = HDA_FIXUP_FUNC,
9612 .v.func = tas2781_fixup_i2c,
9613 .chained = true,
9614 .chain_id = ALC285_FIXUP_THINKPAD_HEADSET_JACK,
9615 },
9616 [ALC287_FIXUP_YOGA7_14ARB7_I2C] = {
9617 .type = HDA_FIXUP_FUNC,
9618 .v.func = yoga7_14arb7_fixup_i2c,
9619 .chained = true,
9620 .chain_id = ALC285_FIXUP_THINKPAD_HEADSET_JACK,
9621 },
9622 [ALC245_FIXUP_HP_MUTE_LED_COEFBIT] = {
9623 .type = HDA_FIXUP_FUNC,
9624 .v.func = alc245_fixup_hp_mute_led_coefbit,
9625 },
9626 [ALC245_FIXUP_HP_X360_MUTE_LEDS] = {
9627 .type = HDA_FIXUP_FUNC,
9628 .v.func = alc245_fixup_hp_mute_led_coefbit,
9629 .chained = true,
9630 .chain_id = ALC245_FIXUP_HP_GPIO_LED
9631 },
9632 [ALC287_FIXUP_THINKPAD_I2S_SPK] = {
9633 .type = HDA_FIXUP_FUNC,
9634 .v.func = alc287_fixup_bind_dacs,
9635 .chained = true,
9636 .chain_id = ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK,
9637 },
9638 [ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD] = {
9639 .type = HDA_FIXUP_FUNC,
9640 .v.func = alc287_fixup_bind_dacs,
9641 .chained = true,
9642 .chain_id = ALC287_FIXUP_CS35L41_I2C_2_THINKPAD_ACPI,
9643 },
9644 [ALC2XX_FIXUP_HEADSET_MIC] = {
9645 .type = HDA_FIXUP_FUNC,
9646 .v.func = alc_fixup_headset_mic,
9647 },
9648 [ALC289_FIXUP_DELL_CS35L41_SPI_2] = {
9649 .type = HDA_FIXUP_FUNC,
9650 .v.func = cs35l41_fixup_spi_two,
9651 .chained = true,
9652 .chain_id = ALC289_FIXUP_DUAL_SPK
9653 },
9654 [ALC294_FIXUP_CS35L41_I2C_2] = {
9655 .type = HDA_FIXUP_FUNC,
9656 .v.func = cs35l41_fixup_i2c_two,
9657 },
9658};
9659
9660static const struct snd_pci_quirk alc269_fixup_tbl[] = {
9661 SND_PCI_QUIRK(0x1025, 0x0283, "Acer TravelMate 8371", ALC269_FIXUP_INV_DMIC),
9662 SND_PCI_QUIRK(0x1025, 0x029b, "Acer 1810TZ", ALC269_FIXUP_INV_DMIC),
9663 SND_PCI_QUIRK(0x1025, 0x0349, "Acer AOD260", ALC269_FIXUP_INV_DMIC),
9664 SND_PCI_QUIRK(0x1025, 0x047c, "Acer AC700", ALC269_FIXUP_ACER_AC700),
9665 SND_PCI_QUIRK(0x1025, 0x072d, "Acer Aspire V5-571G", ALC269_FIXUP_ASPIRE_HEADSET_MIC),
9666 SND_PCI_QUIRK(0x1025, 0x0740, "Acer AO725", ALC271_FIXUP_HP_GATE_MIC_JACK),
9667 SND_PCI_QUIRK(0x1025, 0x0742, "Acer AO756", ALC271_FIXUP_HP_GATE_MIC_JACK),
9668 SND_PCI_QUIRK(0x1025, 0x0762, "Acer Aspire E1-472", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572),
9669 SND_PCI_QUIRK(0x1025, 0x0775, "Acer Aspire E1-572", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572),
9670 SND_PCI_QUIRK(0x1025, 0x079b, "Acer Aspire V5-573G", ALC282_FIXUP_ASPIRE_V5_PINS),
9671 SND_PCI_QUIRK(0x1025, 0x080d, "Acer Aspire V5-122P", ALC269_FIXUP_ASPIRE_HEADSET_MIC),
9672 SND_PCI_QUIRK(0x1025, 0x0840, "Acer Aspire E1", ALC269VB_FIXUP_ASPIRE_E1_COEF),
9673 SND_PCI_QUIRK(0x1025, 0x101c, "Acer Veriton N2510G", ALC269_FIXUP_LIFEBOOK),
9674 SND_PCI_QUIRK(0x1025, 0x102b, "Acer Aspire C24-860", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE),
9675 SND_PCI_QUIRK(0x1025, 0x1065, "Acer Aspire C20-820", ALC269VC_FIXUP_ACER_HEADSET_MIC),
9676 SND_PCI_QUIRK(0x1025, 0x106d, "Acer Cloudbook 14", ALC283_FIXUP_CHROME_BOOK),
9677 SND_PCI_QUIRK(0x1025, 0x1094, "Acer Aspire E5-575T", ALC255_FIXUP_ACER_LIMIT_INT_MIC_BOOST),
9678 SND_PCI_QUIRK(0x1025, 0x1099, "Acer Aspire E5-523G", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
9679 SND_PCI_QUIRK(0x1025, 0x110e, "Acer Aspire ES1-432", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
9680 SND_PCI_QUIRK(0x1025, 0x1166, "Acer Veriton N4640G", ALC269_FIXUP_LIFEBOOK),
9681 SND_PCI_QUIRK(0x1025, 0x1167, "Acer Veriton N6640G", ALC269_FIXUP_LIFEBOOK),
9682 SND_PCI_QUIRK(0x1025, 0x1246, "Acer Predator Helios 500", ALC299_FIXUP_PREDATOR_SPK),
9683 SND_PCI_QUIRK(0x1025, 0x1247, "Acer vCopperbox", ALC269VC_FIXUP_ACER_VCOPPERBOX_PINS),
9684 SND_PCI_QUIRK(0x1025, 0x1248, "Acer Veriton N4660G", ALC269VC_FIXUP_ACER_MIC_NO_PRESENCE),
9685 SND_PCI_QUIRK(0x1025, 0x1269, "Acer SWIFT SF314-54", ALC256_FIXUP_ACER_HEADSET_MIC),
9686 SND_PCI_QUIRK(0x1025, 0x126a, "Acer Swift SF114-32", ALC256_FIXUP_ACER_MIC_NO_PRESENCE),
9687 SND_PCI_QUIRK(0x1025, 0x128f, "Acer Veriton Z6860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
9688 SND_PCI_QUIRK(0x1025, 0x1290, "Acer Veriton Z4860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
9689 SND_PCI_QUIRK(0x1025, 0x1291, "Acer Veriton Z4660G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
9690 SND_PCI_QUIRK(0x1025, 0x129c, "Acer SWIFT SF314-55", ALC256_FIXUP_ACER_HEADSET_MIC),
9691 SND_PCI_QUIRK(0x1025, 0x129d, "Acer SWIFT SF313-51", ALC256_FIXUP_ACER_MIC_NO_PRESENCE),
9692 SND_PCI_QUIRK(0x1025, 0x1300, "Acer SWIFT SF314-56", ALC256_FIXUP_ACER_MIC_NO_PRESENCE),
9693 SND_PCI_QUIRK(0x1025, 0x1308, "Acer Aspire Z24-890", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
9694 SND_PCI_QUIRK(0x1025, 0x132a, "Acer TravelMate B114-21", ALC233_FIXUP_ACER_HEADSET_MIC),
9695 SND_PCI_QUIRK(0x1025, 0x1330, "Acer TravelMate X514-51T", ALC255_FIXUP_ACER_HEADSET_MIC),
9696 SND_PCI_QUIRK(0x1025, 0x141f, "Acer Spin SP513-54N", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
9697 SND_PCI_QUIRK(0x1025, 0x142b, "Acer Swift SF314-42", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
9698 SND_PCI_QUIRK(0x1025, 0x1430, "Acer TravelMate B311R-31", ALC256_FIXUP_ACER_MIC_NO_PRESENCE),
9699 SND_PCI_QUIRK(0x1025, 0x1466, "Acer Aspire A515-56", ALC255_FIXUP_ACER_HEADPHONE_AND_MIC),
9700 SND_PCI_QUIRK(0x1025, 0x1534, "Acer Predator PH315-54", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
9701 SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
9702 SND_PCI_QUIRK(0x1028, 0x053c, "Dell Latitude E5430", ALC292_FIXUP_DELL_E7X),
9703 SND_PCI_QUIRK(0x1028, 0x054b, "Dell XPS one 2710", ALC275_FIXUP_DELL_XPS),
9704 SND_PCI_QUIRK(0x1028, 0x05bd, "Dell Latitude E6440", ALC292_FIXUP_DELL_E7X),
9705 SND_PCI_QUIRK(0x1028, 0x05be, "Dell Latitude E6540", ALC292_FIXUP_DELL_E7X),
9706 SND_PCI_QUIRK(0x1028, 0x05ca, "Dell Latitude E7240", ALC292_FIXUP_DELL_E7X),
9707 SND_PCI_QUIRK(0x1028, 0x05cb, "Dell Latitude E7440", ALC292_FIXUP_DELL_E7X),
9708 SND_PCI_QUIRK(0x1028, 0x05da, "Dell Vostro 5460", ALC290_FIXUP_SUBWOOFER),
9709 SND_PCI_QUIRK(0x1028, 0x05f4, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
9710 SND_PCI_QUIRK(0x1028, 0x05f5, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
9711 SND_PCI_QUIRK(0x1028, 0x05f6, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
9712 SND_PCI_QUIRK(0x1028, 0x0615, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK),
9713 SND_PCI_QUIRK(0x1028, 0x0616, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK),
9714 SND_PCI_QUIRK(0x1028, 0x062c, "Dell Latitude E5550", ALC292_FIXUP_DELL_E7X),
9715 SND_PCI_QUIRK(0x1028, 0x062e, "Dell Latitude E7450", ALC292_FIXUP_DELL_E7X),
9716 SND_PCI_QUIRK(0x1028, 0x0638, "Dell Inspiron 5439", ALC290_FIXUP_MONO_SPEAKERS_HSJACK),
9717 SND_PCI_QUIRK(0x1028, 0x064a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
9718 SND_PCI_QUIRK(0x1028, 0x064b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
9719 SND_PCI_QUIRK(0x1028, 0x0665, "Dell XPS 13", ALC288_FIXUP_DELL_XPS_13),
9720 SND_PCI_QUIRK(0x1028, 0x0669, "Dell Optiplex 9020m", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE),
9721 SND_PCI_QUIRK(0x1028, 0x069a, "Dell Vostro 5480", ALC290_FIXUP_SUBWOOFER_HSJACK),
9722 SND_PCI_QUIRK(0x1028, 0x06c7, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE),
9723 SND_PCI_QUIRK(0x1028, 0x06d9, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
9724 SND_PCI_QUIRK(0x1028, 0x06da, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
9725 SND_PCI_QUIRK(0x1028, 0x06db, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
9726 SND_PCI_QUIRK(0x1028, 0x06dd, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
9727 SND_PCI_QUIRK(0x1028, 0x06de, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
9728 SND_PCI_QUIRK(0x1028, 0x06df, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
9729 SND_PCI_QUIRK(0x1028, 0x06e0, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
9730 SND_PCI_QUIRK(0x1028, 0x0706, "Dell Inspiron 7559", ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER),
9731 SND_PCI_QUIRK(0x1028, 0x0725, "Dell Inspiron 3162", ALC255_FIXUP_DELL_SPK_NOISE),
9732 SND_PCI_QUIRK(0x1028, 0x0738, "Dell Precision 5820", ALC269_FIXUP_NO_SHUTUP),
9733 SND_PCI_QUIRK(0x1028, 0x075c, "Dell XPS 27 7760", ALC298_FIXUP_SPK_VOLUME),
9734 SND_PCI_QUIRK(0x1028, 0x075d, "Dell AIO", ALC298_FIXUP_SPK_VOLUME),
9735 SND_PCI_QUIRK(0x1028, 0x0798, "Dell Inspiron 17 7000 Gaming", ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER),
9736 SND_PCI_QUIRK(0x1028, 0x07b0, "Dell Precision 7520", ALC295_FIXUP_DISABLE_DAC3),
9737 SND_PCI_QUIRK(0x1028, 0x080c, "Dell WYSE", ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE),
9738 SND_PCI_QUIRK(0x1028, 0x084b, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB),
9739 SND_PCI_QUIRK(0x1028, 0x084e, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB),
9740 SND_PCI_QUIRK(0x1028, 0x0871, "Dell Precision 3630", ALC255_FIXUP_DELL_HEADSET_MIC),
9741 SND_PCI_QUIRK(0x1028, 0x0872, "Dell Precision 3630", ALC255_FIXUP_DELL_HEADSET_MIC),
9742 SND_PCI_QUIRK(0x1028, 0x0873, "Dell Precision 3930", ALC255_FIXUP_DUMMY_LINEOUT_VERB),
9743 SND_PCI_QUIRK(0x1028, 0x08ad, "Dell WYSE AIO", ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE),
9744 SND_PCI_QUIRK(0x1028, 0x08ae, "Dell WYSE NB", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE),
9745 SND_PCI_QUIRK(0x1028, 0x0935, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB),
9746 SND_PCI_QUIRK(0x1028, 0x097d, "Dell Precision", ALC289_FIXUP_DUAL_SPK),
9747 SND_PCI_QUIRK(0x1028, 0x097e, "Dell Precision", ALC289_FIXUP_DUAL_SPK),
9748 SND_PCI_QUIRK(0x1028, 0x098d, "Dell Precision", ALC233_FIXUP_ASUS_MIC_NO_PRESENCE),
9749 SND_PCI_QUIRK(0x1028, 0x09bf, "Dell Precision", ALC233_FIXUP_ASUS_MIC_NO_PRESENCE),
9750 SND_PCI_QUIRK(0x1028, 0x0a2e, "Dell", ALC236_FIXUP_DELL_AIO_HEADSET_MIC),
9751 SND_PCI_QUIRK(0x1028, 0x0a30, "Dell", ALC236_FIXUP_DELL_AIO_HEADSET_MIC),
9752 SND_PCI_QUIRK(0x1028, 0x0a38, "Dell Latitude 7520", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE_QUIET),
9753 SND_PCI_QUIRK(0x1028, 0x0a58, "Dell", ALC255_FIXUP_DELL_HEADSET_MIC),
9754 SND_PCI_QUIRK(0x1028, 0x0a61, "Dell XPS 15 9510", ALC289_FIXUP_DUAL_SPK),
9755 SND_PCI_QUIRK(0x1028, 0x0a62, "Dell Precision 5560", ALC289_FIXUP_DUAL_SPK),
9756 SND_PCI_QUIRK(0x1028, 0x0a9d, "Dell Latitude 5430", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE),
9757 SND_PCI_QUIRK(0x1028, 0x0a9e, "Dell Latitude 5430", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE),
9758 SND_PCI_QUIRK(0x1028, 0x0b19, "Dell XPS 15 9520", ALC289_FIXUP_DUAL_SPK),
9759 SND_PCI_QUIRK(0x1028, 0x0b1a, "Dell Precision 5570", ALC289_FIXUP_DUAL_SPK),
9760 SND_PCI_QUIRK(0x1028, 0x0b27, "Dell", ALC245_FIXUP_CS35L41_SPI_2),
9761 SND_PCI_QUIRK(0x1028, 0x0b28, "Dell", ALC245_FIXUP_CS35L41_SPI_2),
9762 SND_PCI_QUIRK(0x1028, 0x0b37, "Dell Inspiron 16 Plus 7620 2-in-1", ALC295_FIXUP_DELL_INSPIRON_TOP_SPEAKERS),
9763 SND_PCI_QUIRK(0x1028, 0x0b71, "Dell Inspiron 16 Plus 7620", ALC295_FIXUP_DELL_INSPIRON_TOP_SPEAKERS),
9764 SND_PCI_QUIRK(0x1028, 0x0beb, "Dell XPS 15 9530 (2023)", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9765 SND_PCI_QUIRK(0x1028, 0x0c03, "Dell Precision 5340", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE),
9766 SND_PCI_QUIRK(0x1028, 0x0c0b, "Dell Oasis 14 RPL-P", ALC289_FIXUP_RTK_AMP_DUAL_SPK),
9767 SND_PCI_QUIRK(0x1028, 0x0c0d, "Dell Oasis", ALC289_FIXUP_RTK_AMP_DUAL_SPK),
9768 SND_PCI_QUIRK(0x1028, 0x0c0e, "Dell Oasis 16", ALC289_FIXUP_RTK_AMP_DUAL_SPK),
9769 SND_PCI_QUIRK(0x1028, 0x0c19, "Dell Precision 3340", ALC236_FIXUP_DELL_DUAL_CODECS),
9770 SND_PCI_QUIRK(0x1028, 0x0c1a, "Dell Precision 3340", ALC236_FIXUP_DELL_DUAL_CODECS),
9771 SND_PCI_QUIRK(0x1028, 0x0c1b, "Dell Precision 3440", ALC236_FIXUP_DELL_DUAL_CODECS),
9772 SND_PCI_QUIRK(0x1028, 0x0c1c, "Dell Precision 3540", ALC236_FIXUP_DELL_DUAL_CODECS),
9773 SND_PCI_QUIRK(0x1028, 0x0c1d, "Dell Precision 3440", ALC236_FIXUP_DELL_DUAL_CODECS),
9774 SND_PCI_QUIRK(0x1028, 0x0c1e, "Dell Precision 3540", ALC236_FIXUP_DELL_DUAL_CODECS),
9775 SND_PCI_QUIRK(0x1028, 0x0c28, "Dell Inspiron 16 Plus 7630", ALC295_FIXUP_DELL_INSPIRON_TOP_SPEAKERS),
9776 SND_PCI_QUIRK(0x1028, 0x0c4d, "Dell", ALC287_FIXUP_CS35L41_I2C_4),
9777 SND_PCI_QUIRK(0x1028, 0x0cbd, "Dell Oasis 13 CS MTL-U", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9778 SND_PCI_QUIRK(0x1028, 0x0cbe, "Dell Oasis 13 2-IN-1 MTL-U", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9779 SND_PCI_QUIRK(0x1028, 0x0cbf, "Dell Oasis 13 Low Weight MTU-L", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9780 SND_PCI_QUIRK(0x1028, 0x0cc0, "Dell Oasis 13", ALC289_FIXUP_RTK_AMP_DUAL_SPK),
9781 SND_PCI_QUIRK(0x1028, 0x0cc1, "Dell Oasis 14 MTL-H/U", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9782 SND_PCI_QUIRK(0x1028, 0x0cc2, "Dell Oasis 14 2-in-1 MTL-H/U", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9783 SND_PCI_QUIRK(0x1028, 0x0cc3, "Dell Oasis 14 Low Weight MTL-U", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9784 SND_PCI_QUIRK(0x1028, 0x0cc4, "Dell Oasis 16 MTL-H/U", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9785 SND_PCI_QUIRK(0x1028, 0x0cc5, "Dell Oasis 14", ALC289_FIXUP_RTK_AMP_DUAL_SPK),
9786 SND_PCI_QUIRK(0x1028, 0x164a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
9787 SND_PCI_QUIRK(0x1028, 0x164b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
9788 SND_PCI_QUIRK(0x103c, 0x1586, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC2),
9789 SND_PCI_QUIRK(0x103c, 0x18e6, "HP", ALC269_FIXUP_HP_GPIO_LED),
9790 SND_PCI_QUIRK(0x103c, 0x218b, "HP", ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED),
9791 SND_PCI_QUIRK(0x103c, 0x21f9, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9792 SND_PCI_QUIRK(0x103c, 0x2210, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9793 SND_PCI_QUIRK(0x103c, 0x2214, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9794 SND_PCI_QUIRK(0x103c, 0x221b, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9795 SND_PCI_QUIRK(0x103c, 0x221c, "HP EliteBook 755 G2", ALC280_FIXUP_HP_HEADSET_MIC),
9796 SND_PCI_QUIRK(0x103c, 0x2221, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9797 SND_PCI_QUIRK(0x103c, 0x2225, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9798 SND_PCI_QUIRK(0x103c, 0x2236, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
9799 SND_PCI_QUIRK(0x103c, 0x2237, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
9800 SND_PCI_QUIRK(0x103c, 0x2238, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
9801 SND_PCI_QUIRK(0x103c, 0x2239, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
9802 SND_PCI_QUIRK(0x103c, 0x224b, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
9803 SND_PCI_QUIRK(0x103c, 0x2253, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9804 SND_PCI_QUIRK(0x103c, 0x2254, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9805 SND_PCI_QUIRK(0x103c, 0x2255, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9806 SND_PCI_QUIRK(0x103c, 0x2256, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9807 SND_PCI_QUIRK(0x103c, 0x2257, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9808 SND_PCI_QUIRK(0x103c, 0x2259, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9809 SND_PCI_QUIRK(0x103c, 0x225a, "HP", ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED),
9810 SND_PCI_QUIRK(0x103c, 0x225f, "HP", ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY),
9811 SND_PCI_QUIRK(0x103c, 0x2260, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9812 SND_PCI_QUIRK(0x103c, 0x2263, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9813 SND_PCI_QUIRK(0x103c, 0x2264, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9814 SND_PCI_QUIRK(0x103c, 0x2265, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9815 SND_PCI_QUIRK(0x103c, 0x2268, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9816 SND_PCI_QUIRK(0x103c, 0x226a, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9817 SND_PCI_QUIRK(0x103c, 0x226b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9818 SND_PCI_QUIRK(0x103c, 0x226e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9819 SND_PCI_QUIRK(0x103c, 0x2271, "HP", ALC286_FIXUP_HP_GPIO_LED),
9820 SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9821 SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC280_FIXUP_HP_DOCK_PINS),
9822 SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9823 SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC280_FIXUP_HP_DOCK_PINS),
9824 SND_PCI_QUIRK(0x103c, 0x2278, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9825 SND_PCI_QUIRK(0x103c, 0x227f, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9826 SND_PCI_QUIRK(0x103c, 0x2282, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9827 SND_PCI_QUIRK(0x103c, 0x228b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9828 SND_PCI_QUIRK(0x103c, 0x228e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9829 SND_PCI_QUIRK(0x103c, 0x229e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9830 SND_PCI_QUIRK(0x103c, 0x22b2, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9831 SND_PCI_QUIRK(0x103c, 0x22b7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9832 SND_PCI_QUIRK(0x103c, 0x22bf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9833 SND_PCI_QUIRK(0x103c, 0x22c4, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9834 SND_PCI_QUIRK(0x103c, 0x22c5, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9835 SND_PCI_QUIRK(0x103c, 0x22c7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9836 SND_PCI_QUIRK(0x103c, 0x22c8, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9837 SND_PCI_QUIRK(0x103c, 0x22cf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9838 SND_PCI_QUIRK(0x103c, 0x22db, "HP", ALC280_FIXUP_HP_9480M),
9839 SND_PCI_QUIRK(0x103c, 0x22dc, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9840 SND_PCI_QUIRK(0x103c, 0x22fb, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9841 SND_PCI_QUIRK(0x103c, 0x2334, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9842 SND_PCI_QUIRK(0x103c, 0x2335, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9843 SND_PCI_QUIRK(0x103c, 0x2336, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9844 SND_PCI_QUIRK(0x103c, 0x2337, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9845 SND_PCI_QUIRK(0x103c, 0x2b5e, "HP 288 Pro G2 MT", ALC221_FIXUP_HP_288PRO_MIC_NO_PRESENCE),
9846 SND_PCI_QUIRK(0x103c, 0x802e, "HP Z240 SFF", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
9847 SND_PCI_QUIRK(0x103c, 0x802f, "HP Z240", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
9848 SND_PCI_QUIRK(0x103c, 0x8077, "HP", ALC256_FIXUP_HP_HEADSET_MIC),
9849 SND_PCI_QUIRK(0x103c, 0x8158, "HP", ALC256_FIXUP_HP_HEADSET_MIC),
9850 SND_PCI_QUIRK(0x103c, 0x820d, "HP Pavilion 15", ALC295_FIXUP_HP_X360),
9851 SND_PCI_QUIRK(0x103c, 0x8256, "HP", ALC221_FIXUP_HP_FRONT_MIC),
9852 SND_PCI_QUIRK(0x103c, 0x827e, "HP x360", ALC295_FIXUP_HP_X360),
9853 SND_PCI_QUIRK(0x103c, 0x827f, "HP x360", ALC269_FIXUP_HP_MUTE_LED_MIC3),
9854 SND_PCI_QUIRK(0x103c, 0x82bf, "HP G3 mini", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
9855 SND_PCI_QUIRK(0x103c, 0x82c0, "HP G3 mini premium", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
9856 SND_PCI_QUIRK(0x103c, 0x83b9, "HP Spectre x360", ALC269_FIXUP_HP_MUTE_LED_MIC3),
9857 SND_PCI_QUIRK(0x103c, 0x841c, "HP Pavilion 15-CK0xx", ALC269_FIXUP_HP_MUTE_LED_MIC3),
9858 SND_PCI_QUIRK(0x103c, 0x8497, "HP Envy x360", ALC269_FIXUP_HP_MUTE_LED_MIC3),
9859 SND_PCI_QUIRK(0x103c, 0x84ae, "HP 15-db0403ng", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
9860 SND_PCI_QUIRK(0x103c, 0x84da, "HP OMEN dc0019-ur", ALC295_FIXUP_HP_OMEN),
9861 SND_PCI_QUIRK(0x103c, 0x84e7, "HP Pavilion 15", ALC269_FIXUP_HP_MUTE_LED_MIC3),
9862 SND_PCI_QUIRK(0x103c, 0x8519, "HP Spectre x360 15-df0xxx", ALC285_FIXUP_HP_SPECTRE_X360),
9863 SND_PCI_QUIRK(0x103c, 0x8537, "HP ProBook 440 G6", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9864 SND_PCI_QUIRK(0x103c, 0x860f, "HP ZBook 15 G6", ALC285_FIXUP_HP_GPIO_AMP_INIT),
9865 SND_PCI_QUIRK(0x103c, 0x861f, "HP Elite Dragonfly G1", ALC285_FIXUP_HP_GPIO_AMP_INIT),
9866 SND_PCI_QUIRK(0x103c, 0x869d, "HP", ALC236_FIXUP_HP_MUTE_LED),
9867 SND_PCI_QUIRK(0x103c, 0x86c7, "HP Envy AiO 32", ALC274_FIXUP_HP_ENVY_GPIO),
9868 SND_PCI_QUIRK(0x103c, 0x86e7, "HP Spectre x360 15-eb0xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1),
9869 SND_PCI_QUIRK(0x103c, 0x86e8, "HP Spectre x360 15-eb0xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1),
9870 SND_PCI_QUIRK(0x103c, 0x86f9, "HP Spectre x360 13-aw0xxx", ALC285_FIXUP_HP_SPECTRE_X360_MUTE_LED),
9871 SND_PCI_QUIRK(0x103c, 0x8716, "HP Elite Dragonfly G2 Notebook PC", ALC285_FIXUP_HP_GPIO_AMP_INIT),
9872 SND_PCI_QUIRK(0x103c, 0x8720, "HP EliteBook x360 1040 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_AMP_INIT),
9873 SND_PCI_QUIRK(0x103c, 0x8724, "HP EliteBook 850 G7", ALC285_FIXUP_HP_GPIO_LED),
9874 SND_PCI_QUIRK(0x103c, 0x8728, "HP EliteBook 840 G7", ALC285_FIXUP_HP_GPIO_LED),
9875 SND_PCI_QUIRK(0x103c, 0x8729, "HP", ALC285_FIXUP_HP_GPIO_LED),
9876 SND_PCI_QUIRK(0x103c, 0x8730, "HP ProBook 445 G7", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9877 SND_PCI_QUIRK(0x103c, 0x8735, "HP ProBook 435 G7", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9878 SND_PCI_QUIRK(0x103c, 0x8736, "HP", ALC285_FIXUP_HP_GPIO_AMP_INIT),
9879 SND_PCI_QUIRK(0x103c, 0x8760, "HP", ALC285_FIXUP_HP_MUTE_LED),
9880 SND_PCI_QUIRK(0x103c, 0x876e, "HP ENVY x360 Convertible 13-ay0xxx", ALC245_FIXUP_HP_X360_MUTE_LEDS),
9881 SND_PCI_QUIRK(0x103c, 0x877a, "HP", ALC285_FIXUP_HP_MUTE_LED),
9882 SND_PCI_QUIRK(0x103c, 0x877d, "HP", ALC236_FIXUP_HP_MUTE_LED),
9883 SND_PCI_QUIRK(0x103c, 0x8780, "HP ZBook Fury 17 G7 Mobile Workstation",
9884 ALC285_FIXUP_HP_GPIO_AMP_INIT),
9885 SND_PCI_QUIRK(0x103c, 0x8783, "HP ZBook Fury 15 G7 Mobile Workstation",
9886 ALC285_FIXUP_HP_GPIO_AMP_INIT),
9887 SND_PCI_QUIRK(0x103c, 0x8786, "HP OMEN 15", ALC285_FIXUP_HP_MUTE_LED),
9888 SND_PCI_QUIRK(0x103c, 0x8787, "HP OMEN 15", ALC285_FIXUP_HP_MUTE_LED),
9889 SND_PCI_QUIRK(0x103c, 0x8788, "HP OMEN 15", ALC285_FIXUP_HP_MUTE_LED),
9890 SND_PCI_QUIRK(0x103c, 0x87b7, "HP Laptop 14-fq0xxx", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
9891 SND_PCI_QUIRK(0x103c, 0x87c8, "HP", ALC287_FIXUP_HP_GPIO_LED),
9892 SND_PCI_QUIRK(0x103c, 0x87e5, "HP ProBook 440 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),
9893 SND_PCI_QUIRK(0x103c, 0x87e7, "HP ProBook 450 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),
9894 SND_PCI_QUIRK(0x103c, 0x87f1, "HP ProBook 630 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),
9895 SND_PCI_QUIRK(0x103c, 0x87f2, "HP ProBook 640 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),
9896 SND_PCI_QUIRK(0x103c, 0x87f4, "HP", ALC287_FIXUP_HP_GPIO_LED),
9897 SND_PCI_QUIRK(0x103c, 0x87f5, "HP", ALC287_FIXUP_HP_GPIO_LED),
9898 SND_PCI_QUIRK(0x103c, 0x87f6, "HP Spectre x360 14", ALC245_FIXUP_HP_X360_AMP),
9899 SND_PCI_QUIRK(0x103c, 0x87f7, "HP Spectre x360 14", ALC245_FIXUP_HP_X360_AMP),
9900 SND_PCI_QUIRK(0x103c, 0x87fe, "HP Laptop 15s-fq2xxx", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
9901 SND_PCI_QUIRK(0x103c, 0x8805, "HP ProBook 650 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),
9902 SND_PCI_QUIRK(0x103c, 0x880d, "HP EliteBook 830 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),
9903 SND_PCI_QUIRK(0x103c, 0x8811, "HP Spectre x360 15-eb1xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1),
9904 SND_PCI_QUIRK(0x103c, 0x8812, "HP Spectre x360 15-eb1xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1),
9905 SND_PCI_QUIRK(0x103c, 0x881d, "HP 250 G8 Notebook PC", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
9906 SND_PCI_QUIRK(0x103c, 0x8846, "HP EliteBook 850 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),
9907 SND_PCI_QUIRK(0x103c, 0x8847, "HP EliteBook x360 830 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),
9908 SND_PCI_QUIRK(0x103c, 0x884b, "HP EliteBook 840 Aero G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),
9909 SND_PCI_QUIRK(0x103c, 0x884c, "HP EliteBook 840 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),
9910 SND_PCI_QUIRK(0x103c, 0x8862, "HP ProBook 445 G8 Notebook PC", ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST),
9911 SND_PCI_QUIRK(0x103c, 0x8863, "HP ProBook 445 G8 Notebook PC", ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST),
9912 SND_PCI_QUIRK(0x103c, 0x886d, "HP ZBook Fury 17.3 Inch G8 Mobile Workstation PC", ALC285_FIXUP_HP_GPIO_AMP_INIT),
9913 SND_PCI_QUIRK(0x103c, 0x8870, "HP ZBook Fury 15.6 Inch G8 Mobile Workstation PC", ALC285_FIXUP_HP_GPIO_AMP_INIT),
9914 SND_PCI_QUIRK(0x103c, 0x8873, "HP ZBook Studio 15.6 Inch G8 Mobile Workstation PC", ALC285_FIXUP_HP_GPIO_AMP_INIT),
9915 SND_PCI_QUIRK(0x103c, 0x887a, "HP Laptop 15s-eq2xxx", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
9916 SND_PCI_QUIRK(0x103c, 0x888a, "HP ENVY x360 Convertible 15-eu0xxx", ALC245_FIXUP_HP_X360_MUTE_LEDS),
9917 SND_PCI_QUIRK(0x103c, 0x888d, "HP ZBook Power 15.6 inch G8 Mobile Workstation PC", ALC236_FIXUP_HP_GPIO_LED),
9918 SND_PCI_QUIRK(0x103c, 0x8895, "HP EliteBook 855 G8 Notebook PC", ALC285_FIXUP_HP_SPEAKERS_MICMUTE_LED),
9919 SND_PCI_QUIRK(0x103c, 0x8896, "HP EliteBook 855 G8 Notebook PC", ALC285_FIXUP_HP_MUTE_LED),
9920 SND_PCI_QUIRK(0x103c, 0x8898, "HP EliteBook 845 G8 Notebook PC", ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST),
9921 SND_PCI_QUIRK(0x103c, 0x88d0, "HP Pavilion 15-eh1xxx (mainboard 88D0)", ALC287_FIXUP_HP_GPIO_LED),
9922 SND_PCI_QUIRK(0x103c, 0x8902, "HP OMEN 16", ALC285_FIXUP_HP_MUTE_LED),
9923 SND_PCI_QUIRK(0x103c, 0x890e, "HP 255 G8 Notebook PC", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
9924 SND_PCI_QUIRK(0x103c, 0x8919, "HP Pavilion Aero Laptop 13-be0xxx", ALC287_FIXUP_HP_GPIO_LED),
9925 SND_PCI_QUIRK(0x103c, 0x896d, "HP ZBook Firefly 16 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9926 SND_PCI_QUIRK(0x103c, 0x896e, "HP EliteBook x360 830 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9927 SND_PCI_QUIRK(0x103c, 0x8971, "HP EliteBook 830 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9928 SND_PCI_QUIRK(0x103c, 0x8972, "HP EliteBook 840 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9929 SND_PCI_QUIRK(0x103c, 0x8973, "HP EliteBook 860 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9930 SND_PCI_QUIRK(0x103c, 0x8974, "HP EliteBook 840 Aero G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9931 SND_PCI_QUIRK(0x103c, 0x8975, "HP EliteBook x360 840 Aero G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9932 SND_PCI_QUIRK(0x103c, 0x897d, "HP mt440 Mobile Thin Client U74", ALC236_FIXUP_HP_GPIO_LED),
9933 SND_PCI_QUIRK(0x103c, 0x8981, "HP Elite Dragonfly G3", ALC245_FIXUP_CS35L41_SPI_4),
9934 SND_PCI_QUIRK(0x103c, 0x898e, "HP EliteBook 835 G9", ALC287_FIXUP_CS35L41_I2C_2),
9935 SND_PCI_QUIRK(0x103c, 0x898f, "HP EliteBook 835 G9", ALC287_FIXUP_CS35L41_I2C_2),
9936 SND_PCI_QUIRK(0x103c, 0x8991, "HP EliteBook 845 G9", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
9937 SND_PCI_QUIRK(0x103c, 0x8992, "HP EliteBook 845 G9", ALC287_FIXUP_CS35L41_I2C_2),
9938 SND_PCI_QUIRK(0x103c, 0x8994, "HP EliteBook 855 G9", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
9939 SND_PCI_QUIRK(0x103c, 0x8995, "HP EliteBook 855 G9", ALC287_FIXUP_CS35L41_I2C_2),
9940 SND_PCI_QUIRK(0x103c, 0x89a4, "HP ProBook 440 G9", ALC236_FIXUP_HP_GPIO_LED),
9941 SND_PCI_QUIRK(0x103c, 0x89a6, "HP ProBook 450 G9", ALC236_FIXUP_HP_GPIO_LED),
9942 SND_PCI_QUIRK(0x103c, 0x89aa, "HP EliteBook 630 G9", ALC236_FIXUP_HP_GPIO_LED),
9943 SND_PCI_QUIRK(0x103c, 0x89ac, "HP EliteBook 640 G9", ALC236_FIXUP_HP_GPIO_LED),
9944 SND_PCI_QUIRK(0x103c, 0x89ae, "HP EliteBook 650 G9", ALC236_FIXUP_HP_GPIO_LED),
9945 SND_PCI_QUIRK(0x103c, 0x89c0, "HP ZBook Power 15.6 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9946 SND_PCI_QUIRK(0x103c, 0x89c3, "Zbook Studio G9", ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED),
9947 SND_PCI_QUIRK(0x103c, 0x89c6, "Zbook Fury 17 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9948 SND_PCI_QUIRK(0x103c, 0x89ca, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9949 SND_PCI_QUIRK(0x103c, 0x89d3, "HP EliteBook 645 G9 (MB 89D2)", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9950 SND_PCI_QUIRK(0x103c, 0x8a0f, "HP Pavilion 14-ec1xxx", ALC287_FIXUP_HP_GPIO_LED),
9951 SND_PCI_QUIRK(0x103c, 0x8a20, "HP Laptop 15s-fq5xxx", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
9952 SND_PCI_QUIRK(0x103c, 0x8a25, "HP Victus 16-d1xxx (MB 8A25)", ALC245_FIXUP_HP_MUTE_LED_COEFBIT),
9953 SND_PCI_QUIRK(0x103c, 0x8a78, "HP Dev One", ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST),
9954 SND_PCI_QUIRK(0x103c, 0x8aa0, "HP ProBook 440 G9 (MB 8A9E)", ALC236_FIXUP_HP_GPIO_LED),
9955 SND_PCI_QUIRK(0x103c, 0x8aa3, "HP ProBook 450 G9 (MB 8AA1)", ALC236_FIXUP_HP_GPIO_LED),
9956 SND_PCI_QUIRK(0x103c, 0x8aa8, "HP EliteBook 640 G9 (MB 8AA6)", ALC236_FIXUP_HP_GPIO_LED),
9957 SND_PCI_QUIRK(0x103c, 0x8aab, "HP EliteBook 650 G9 (MB 8AA9)", ALC236_FIXUP_HP_GPIO_LED),
9958 SND_PCI_QUIRK(0x103c, 0x8ab9, "HP EliteBook 840 G8 (MB 8AB8)", ALC285_FIXUP_HP_GPIO_LED),
9959 SND_PCI_QUIRK(0x103c, 0x8abb, "HP ZBook Firefly 14 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9960 SND_PCI_QUIRK(0x103c, 0x8ad1, "HP EliteBook 840 14 inch G9 Notebook PC", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9961 SND_PCI_QUIRK(0x103c, 0x8ad2, "HP EliteBook 860 16 inch G9 Notebook PC", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9962 SND_PCI_QUIRK(0x103c, 0x8b0f, "HP Elite mt645 G7 Mobile Thin Client U81", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9963 SND_PCI_QUIRK(0x103c, 0x8b2f, "HP 255 15.6 inch G10 Notebook PC", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
9964 SND_PCI_QUIRK(0x103c, 0x8b3f, "HP mt440 Mobile Thin Client U91", ALC236_FIXUP_HP_GPIO_LED),
9965 SND_PCI_QUIRK(0x103c, 0x8b42, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9966 SND_PCI_QUIRK(0x103c, 0x8b43, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9967 SND_PCI_QUIRK(0x103c, 0x8b44, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9968 SND_PCI_QUIRK(0x103c, 0x8b45, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9969 SND_PCI_QUIRK(0x103c, 0x8b46, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9970 SND_PCI_QUIRK(0x103c, 0x8b47, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9971 SND_PCI_QUIRK(0x103c, 0x8b59, "HP Elite mt645 G7 Mobile Thin Client U89", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9972 SND_PCI_QUIRK(0x103c, 0x8b5d, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9973 SND_PCI_QUIRK(0x103c, 0x8b5e, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9974 SND_PCI_QUIRK(0x103c, 0x8b63, "HP Elite Dragonfly 13.5 inch G4", ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED),
9975 SND_PCI_QUIRK(0x103c, 0x8b65, "HP ProBook 455 15.6 inch G10 Notebook PC", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9976 SND_PCI_QUIRK(0x103c, 0x8b66, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9977 SND_PCI_QUIRK(0x103c, 0x8b70, "HP EliteBook 835 G10", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
9978 SND_PCI_QUIRK(0x103c, 0x8b72, "HP EliteBook 845 G10", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
9979 SND_PCI_QUIRK(0x103c, 0x8b74, "HP EliteBook 845W G10", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
9980 SND_PCI_QUIRK(0x103c, 0x8b77, "HP ElieBook 865 G10", ALC287_FIXUP_CS35L41_I2C_2),
9981 SND_PCI_QUIRK(0x103c, 0x8b7a, "HP", ALC236_FIXUP_HP_GPIO_LED),
9982 SND_PCI_QUIRK(0x103c, 0x8b7d, "HP", ALC236_FIXUP_HP_GPIO_LED),
9983 SND_PCI_QUIRK(0x103c, 0x8b87, "HP", ALC236_FIXUP_HP_GPIO_LED),
9984 SND_PCI_QUIRK(0x103c, 0x8b8a, "HP", ALC236_FIXUP_HP_GPIO_LED),
9985 SND_PCI_QUIRK(0x103c, 0x8b8b, "HP", ALC236_FIXUP_HP_GPIO_LED),
9986 SND_PCI_QUIRK(0x103c, 0x8b8d, "HP", ALC236_FIXUP_HP_GPIO_LED),
9987 SND_PCI_QUIRK(0x103c, 0x8b8f, "HP", ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED),
9988 SND_PCI_QUIRK(0x103c, 0x8b92, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9989 SND_PCI_QUIRK(0x103c, 0x8b96, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9990 SND_PCI_QUIRK(0x103c, 0x8b97, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9991 SND_PCI_QUIRK(0x103c, 0x8bf0, "HP", ALC236_FIXUP_HP_GPIO_LED),
9992 SND_PCI_QUIRK(0x103c, 0x8c46, "HP EliteBook 830 G11", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9993 SND_PCI_QUIRK(0x103c, 0x8c47, "HP EliteBook 840 G11", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9994 SND_PCI_QUIRK(0x103c, 0x8c48, "HP EliteBook 860 G11", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9995 SND_PCI_QUIRK(0x103c, 0x8c49, "HP Elite x360 830 2-in-1 G11", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9996 SND_PCI_QUIRK(0x103c, 0x8c70, "HP EliteBook 835 G11", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
9997 SND_PCI_QUIRK(0x103c, 0x8c71, "HP EliteBook 845 G11", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
9998 SND_PCI_QUIRK(0x103c, 0x8c72, "HP EliteBook 865 G11", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
9999 SND_PCI_QUIRK(0x103c, 0x8c8a, "HP EliteBook 630", ALC236_FIXUP_HP_GPIO_LED),
10000 SND_PCI_QUIRK(0x103c, 0x8c8c, "HP EliteBook 660", ALC236_FIXUP_HP_GPIO_LED),
10001 SND_PCI_QUIRK(0x103c, 0x8c90, "HP EliteBook 640", ALC236_FIXUP_HP_GPIO_LED),
10002 SND_PCI_QUIRK(0x103c, 0x8c91, "HP EliteBook 660", ALC236_FIXUP_HP_GPIO_LED),
10003 SND_PCI_QUIRK(0x103c, 0x8c96, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
10004 SND_PCI_QUIRK(0x103c, 0x8c97, "HP ZBook", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
10005 SND_PCI_QUIRK(0x103c, 0x8ca1, "HP ZBook Power", ALC236_FIXUP_HP_GPIO_LED),
10006 SND_PCI_QUIRK(0x103c, 0x8ca2, "HP ZBook Power", ALC236_FIXUP_HP_GPIO_LED),
10007 SND_PCI_QUIRK(0x103c, 0x8ca4, "HP ZBook Fury", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
10008 SND_PCI_QUIRK(0x103c, 0x8ca7, "HP ZBook Fury", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
10009 SND_PCI_QUIRK(0x103c, 0x8cf5, "HP ZBook Studio 16", ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED),
10010 SND_PCI_QUIRK(0x1043, 0x103e, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC),
10011 SND_PCI_QUIRK(0x1043, 0x103f, "ASUS TX300", ALC282_FIXUP_ASUS_TX300),
10012 SND_PCI_QUIRK(0x1043, 0x106d, "Asus K53BE", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
10013 SND_PCI_QUIRK(0x1043, 0x10a1, "ASUS UX391UA", ALC294_FIXUP_ASUS_SPK),
10014 SND_PCI_QUIRK(0x1043, 0x10c0, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC),
10015 SND_PCI_QUIRK(0x1043, 0x10d0, "ASUS X540LA/X540LJ", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
10016 SND_PCI_QUIRK(0x1043, 0x10d3, "ASUS K6500ZC", ALC294_FIXUP_ASUS_SPK),
10017 SND_PCI_QUIRK(0x1043, 0x115d, "Asus 1015E", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
10018 SND_PCI_QUIRK(0x1043, 0x11c0, "ASUS X556UR", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
10019 SND_PCI_QUIRK(0x1043, 0x125e, "ASUS Q524UQK", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
10020 SND_PCI_QUIRK(0x1043, 0x1271, "ASUS X430UN", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE),
10021 SND_PCI_QUIRK(0x1043, 0x1290, "ASUS X441SA", ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE),
10022 SND_PCI_QUIRK(0x1043, 0x12a0, "ASUS X441UV", ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE),
10023 SND_PCI_QUIRK(0x1043, 0x12a3, "Asus N7691ZM", ALC269_FIXUP_ASUS_N7601ZM),
10024 SND_PCI_QUIRK(0x1043, 0x12af, "ASUS UX582ZS", ALC245_FIXUP_CS35L41_SPI_2),
10025 SND_PCI_QUIRK(0x1043, 0x12e0, "ASUS X541SA", ALC256_FIXUP_ASUS_MIC),
10026 SND_PCI_QUIRK(0x1043, 0x12f0, "ASUS X541UV", ALC256_FIXUP_ASUS_MIC),
10027 SND_PCI_QUIRK(0x1043, 0x1313, "Asus K42JZ", ALC269VB_FIXUP_ASUS_MIC_NO_PRESENCE),
10028 SND_PCI_QUIRK(0x1043, 0x13b0, "ASUS Z550SA", ALC256_FIXUP_ASUS_MIC),
10029 SND_PCI_QUIRK(0x1043, 0x1427, "Asus Zenbook UX31E", ALC269VB_FIXUP_ASUS_ZENBOOK),
10030 SND_PCI_QUIRK(0x1043, 0x1433, "ASUS GX650PY/PZ/PV/PU/PYV/PZV/PIV/PVV", ALC285_FIXUP_ASUS_I2C_HEADSET_MIC),
10031 SND_PCI_QUIRK(0x1043, 0x1463, "Asus GA402X/GA402N", ALC285_FIXUP_ASUS_I2C_HEADSET_MIC),
10032 SND_PCI_QUIRK(0x1043, 0x1473, "ASUS GU604VI/VC/VE/VG/VJ/VQ/VU/VV/VY/VZ", ALC285_FIXUP_ASUS_HEADSET_MIC),
10033 SND_PCI_QUIRK(0x1043, 0x1483, "ASUS GU603VQ/VU/VV/VJ/VI", ALC285_FIXUP_ASUS_HEADSET_MIC),
10034 SND_PCI_QUIRK(0x1043, 0x1493, "ASUS GV601VV/VU/VJ/VQ/VI", ALC285_FIXUP_ASUS_HEADSET_MIC),
10035 SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G614JY/JZ/JG", ALC245_FIXUP_CS35L41_SPI_2),
10036 SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS G513PI/PU/PV", ALC287_FIXUP_CS35L41_I2C_2),
10037 SND_PCI_QUIRK(0x1043, 0x1503, "ASUS G733PY/PZ/PZV/PYV", ALC287_FIXUP_CS35L41_I2C_2),
10038 SND_PCI_QUIRK(0x1043, 0x1517, "Asus Zenbook UX31A", ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A),
10039 SND_PCI_QUIRK(0x1043, 0x1533, "ASUS GV302XA/XJ/XQ/XU/XV/XI", ALC287_FIXUP_CS35L41_I2C_2),
10040 SND_PCI_QUIRK(0x1043, 0x1573, "ASUS GZ301VV/VQ/VU/VJ/VA/VC/VE/VVC/VQC/VUC/VJC/VEC/VCC", ALC285_FIXUP_ASUS_HEADSET_MIC),
10041 SND_PCI_QUIRK(0x1043, 0x1662, "ASUS GV301QH", ALC294_FIXUP_ASUS_DUAL_SPK),
10042 SND_PCI_QUIRK(0x1043, 0x1663, "ASUS GU603ZI/ZJ/ZQ/ZU/ZV", ALC285_FIXUP_ASUS_HEADSET_MIC),
10043 SND_PCI_QUIRK(0x1043, 0x1683, "ASUS UM3402YAR", ALC287_FIXUP_CS35L41_I2C_2),
10044 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS UX3402VA", ALC245_FIXUP_CS35L41_SPI_2),
10045 SND_PCI_QUIRK(0x1043, 0x16b2, "ASUS GU603", ALC289_FIXUP_ASUS_GA401),
10046 SND_PCI_QUIRK(0x1043, 0x16d3, "ASUS UX5304VA", ALC245_FIXUP_CS35L41_SPI_2),
10047 SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC),
10048 SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS UX7602VI/BZ", ALC245_FIXUP_CS35L41_SPI_2),
10049 SND_PCI_QUIRK(0x1043, 0x1740, "ASUS UX430UA", ALC295_FIXUP_ASUS_DACS),
10050 SND_PCI_QUIRK(0x1043, 0x17d1, "ASUS UX431FL", ALC294_FIXUP_ASUS_DUAL_SPK),
10051 SND_PCI_QUIRK(0x1043, 0x17f3, "ROG Ally NR2301L/X", ALC294_FIXUP_ASUS_ALLY),
10052 SND_PCI_QUIRK(0x1043, 0x1863, "ASUS UX6404VI/VV", ALC245_FIXUP_CS35L41_SPI_2),
10053 SND_PCI_QUIRK(0x1043, 0x1881, "ASUS Zephyrus S/M", ALC294_FIXUP_ASUS_GX502_PINS),
10054 SND_PCI_QUIRK(0x1043, 0x18b1, "Asus MJ401TA", ALC256_FIXUP_ASUS_HEADSET_MIC),
10055 SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS UM3504DA", ALC294_FIXUP_CS35L41_I2C_2),
10056 SND_PCI_QUIRK(0x1043, 0x18f1, "Asus FX505DT", ALC256_FIXUP_ASUS_HEADSET_MIC),
10057 SND_PCI_QUIRK(0x1043, 0x194e, "ASUS UX563FD", ALC294_FIXUP_ASUS_HPE),
10058 SND_PCI_QUIRK(0x1043, 0x1970, "ASUS UX550VE", ALC289_FIXUP_ASUS_GA401),
10059 SND_PCI_QUIRK(0x1043, 0x1982, "ASUS B1400CEPE", ALC256_FIXUP_ASUS_HPE),
10060 SND_PCI_QUIRK(0x1043, 0x19ce, "ASUS B9450FA", ALC294_FIXUP_ASUS_HPE),
10061 SND_PCI_QUIRK(0x1043, 0x19e1, "ASUS UX581LV", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE),
10062 SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW),
10063 SND_PCI_QUIRK(0x1043, 0x1a30, "ASUS X705UD", ALC256_FIXUP_ASUS_MIC),
10064 SND_PCI_QUIRK(0x1043, 0x1a63, "ASUS UX3405MA", ALC245_FIXUP_CS35L41_SPI_2),
10065 SND_PCI_QUIRK(0x1043, 0x1a83, "ASUS UM5302LA", ALC294_FIXUP_CS35L41_I2C_2),
10066 SND_PCI_QUIRK(0x1043, 0x1a8f, "ASUS UX582ZS", ALC245_FIXUP_CS35L41_SPI_2),
10067 SND_PCI_QUIRK(0x1043, 0x1b11, "ASUS UX431DA", ALC294_FIXUP_ASUS_COEF_1B),
10068 SND_PCI_QUIRK(0x1043, 0x1b13, "Asus U41SV", ALC269_FIXUP_INV_DMIC),
10069 SND_PCI_QUIRK(0x1043, 0x1b93, "ASUS G614JVR/JIR", ALC245_FIXUP_CS35L41_SPI_2),
10070 SND_PCI_QUIRK(0x1043, 0x1bbd, "ASUS Z550MA", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
10071 SND_PCI_QUIRK(0x1043, 0x1c03, "ASUS UM3406HA", ALC287_FIXUP_CS35L41_I2C_2),
10072 SND_PCI_QUIRK(0x1043, 0x1c23, "Asus X55U", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
10073 SND_PCI_QUIRK(0x1043, 0x1c33, "ASUS UX5304MA", ALC245_FIXUP_CS35L41_SPI_2),
10074 SND_PCI_QUIRK(0x1043, 0x1c43, "ASUS UX8406MA", ALC245_FIXUP_CS35L41_SPI_2),
10075 SND_PCI_QUIRK(0x1043, 0x1c62, "ASUS GU603", ALC289_FIXUP_ASUS_GA401),
10076 SND_PCI_QUIRK(0x1043, 0x1c92, "ASUS ROG Strix G15", ALC285_FIXUP_ASUS_G533Z_PINS),
10077 SND_PCI_QUIRK(0x1043, 0x1c9f, "ASUS G614JU/JV/JI", ALC285_FIXUP_ASUS_HEADSET_MIC),
10078 SND_PCI_QUIRK(0x1043, 0x1caf, "ASUS G634JY/JZ/JI/JG", ALC285_FIXUP_ASUS_SPI_REAR_SPEAKERS),
10079 SND_PCI_QUIRK(0x1043, 0x1ccd, "ASUS X555UB", ALC256_FIXUP_ASUS_MIC),
10080 SND_PCI_QUIRK(0x1043, 0x1ccf, "ASUS G814JU/JV/JI", ALC245_FIXUP_CS35L41_SPI_2),
10081 SND_PCI_QUIRK(0x1043, 0x1cdf, "ASUS G814JY/JZ/JG", ALC245_FIXUP_CS35L41_SPI_2),
10082 SND_PCI_QUIRK(0x1043, 0x1cef, "ASUS G834JY/JZ/JI/JG", ALC285_FIXUP_ASUS_HEADSET_MIC),
10083 SND_PCI_QUIRK(0x1043, 0x1d1f, "ASUS G713PI/PU/PV/PVN", ALC287_FIXUP_CS35L41_I2C_2),
10084 SND_PCI_QUIRK(0x1043, 0x1d42, "ASUS Zephyrus G14 2022", ALC289_FIXUP_ASUS_GA401),
10085 SND_PCI_QUIRK(0x1043, 0x1d4e, "ASUS TM420", ALC256_FIXUP_ASUS_HPE),
10086 SND_PCI_QUIRK(0x1043, 0x1da2, "ASUS UP6502ZA/ZD", ALC245_FIXUP_CS35L41_SPI_2),
10087 SND_PCI_QUIRK(0x1043, 0x1e02, "ASUS UX3402ZA", ALC245_FIXUP_CS35L41_SPI_2),
10088 SND_PCI_QUIRK(0x1043, 0x1e11, "ASUS Zephyrus G15", ALC289_FIXUP_ASUS_GA502),
10089 SND_PCI_QUIRK(0x1043, 0x1e12, "ASUS UM3402", ALC287_FIXUP_CS35L41_I2C_2),
10090 SND_PCI_QUIRK(0x1043, 0x1e51, "ASUS Zephyrus M15", ALC294_FIXUP_ASUS_GU502_PINS),
10091 SND_PCI_QUIRK(0x1043, 0x1e5e, "ASUS ROG Strix G513", ALC294_FIXUP_ASUS_G513_PINS),
10092 SND_PCI_QUIRK(0x1043, 0x1e8e, "ASUS Zephyrus G15", ALC289_FIXUP_ASUS_GA401),
10093 SND_PCI_QUIRK(0x1043, 0x1ee2, "ASUS UM6702RA/RC", ALC287_FIXUP_CS35L41_I2C_2),
10094 SND_PCI_QUIRK(0x1043, 0x1c52, "ASUS Zephyrus G15 2022", ALC289_FIXUP_ASUS_GA401),
10095 SND_PCI_QUIRK(0x1043, 0x1f11, "ASUS Zephyrus G14", ALC289_FIXUP_ASUS_GA401),
10096 SND_PCI_QUIRK(0x1043, 0x1f12, "ASUS UM5302", ALC287_FIXUP_CS35L41_I2C_2),
10097 SND_PCI_QUIRK(0x1043, 0x1f1f, "ASUS H7604JI/JV/J3D", ALC245_FIXUP_CS35L41_SPI_2),
10098 SND_PCI_QUIRK(0x1043, 0x1f62, "ASUS UX7602ZM", ALC245_FIXUP_CS35L41_SPI_2),
10099 SND_PCI_QUIRK(0x1043, 0x1f92, "ASUS ROG Flow X16", ALC289_FIXUP_ASUS_GA401),
10100 SND_PCI_QUIRK(0x1043, 0x3030, "ASUS ZN270IE", ALC256_FIXUP_ASUS_AIO_GPIO2),
10101 SND_PCI_QUIRK(0x1043, 0x3a20, "ASUS G614JZR", ALC245_FIXUP_CS35L41_SPI_2),
10102 SND_PCI_QUIRK(0x1043, 0x3a30, "ASUS G814JVR/JIR", ALC245_FIXUP_CS35L41_SPI_2),
10103 SND_PCI_QUIRK(0x1043, 0x3a40, "ASUS G814JZR", ALC245_FIXUP_CS35L41_SPI_2),
10104 SND_PCI_QUIRK(0x1043, 0x3a50, "ASUS G834JYR/JZR", ALC245_FIXUP_CS35L41_SPI_2),
10105 SND_PCI_QUIRK(0x1043, 0x3a60, "ASUS G634JYR/JZR", ALC245_FIXUP_CS35L41_SPI_2),
10106 SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC),
10107 SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC),
10108 SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
10109 SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
10110 SND_PCI_QUIRK(0x1043, 0x8516, "ASUS X101CH", ALC269_FIXUP_ASUS_X101),
10111 SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2),
10112 SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
10113 SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
10114 SND_PCI_QUIRK(0x104d, 0x9099, "Sony VAIO S13", ALC275_FIXUP_SONY_DISABLE_AAMIX),
10115 SND_PCI_QUIRK(0x104d, 0x90b5, "Sony VAIO Pro 11", ALC286_FIXUP_SONY_MIC_NO_PRESENCE),
10116 SND_PCI_QUIRK(0x104d, 0x90b6, "Sony VAIO Pro 13", ALC286_FIXUP_SONY_MIC_NO_PRESENCE),
10117 SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook", ALC269_FIXUP_LIFEBOOK),
10118 SND_PCI_QUIRK(0x10cf, 0x159f, "Lifebook E780", ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT),
10119 SND_PCI_QUIRK(0x10cf, 0x15dc, "Lifebook T731", ALC269_FIXUP_LIFEBOOK_HP_PIN),
10120 SND_PCI_QUIRK(0x10cf, 0x1629, "Lifebook U7x7", ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC),
10121 SND_PCI_QUIRK(0x10cf, 0x1757, "Lifebook E752", ALC269_FIXUP_LIFEBOOK_HP_PIN),
10122 SND_PCI_QUIRK(0x10cf, 0x1845, "Lifebook U904", ALC269_FIXUP_LIFEBOOK_EXTMIC),
10123 SND_PCI_QUIRK(0x10ec, 0x10f2, "Intel Reference board", ALC700_FIXUP_INTEL_REFERENCE),
10124 SND_PCI_QUIRK(0x10ec, 0x118c, "Medion EE4254 MD62100", ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE),
10125 SND_PCI_QUIRK(0x10ec, 0x1230, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK),
10126 SND_PCI_QUIRK(0x10ec, 0x124c, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK),
10127 SND_PCI_QUIRK(0x10ec, 0x1252, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK),
10128 SND_PCI_QUIRK(0x10ec, 0x1254, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK),
10129 SND_PCI_QUIRK(0x10ec, 0x12cc, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK),
10130 SND_PCI_QUIRK(0x10f7, 0x8338, "Panasonic CF-SZ6", ALC269_FIXUP_HEADSET_MODE),
10131 SND_PCI_QUIRK(0x144d, 0xc109, "Samsung Ativ book 9 (NP900X3G)", ALC269_FIXUP_INV_DMIC),
10132 SND_PCI_QUIRK(0x144d, 0xc169, "Samsung Notebook 9 Pen (NP930SBE-K01US)", ALC298_FIXUP_SAMSUNG_AMP),
10133 SND_PCI_QUIRK(0x144d, 0xc176, "Samsung Notebook 9 Pro (NP930MBE-K04US)", ALC298_FIXUP_SAMSUNG_AMP),
10134 SND_PCI_QUIRK(0x144d, 0xc189, "Samsung Galaxy Flex Book (NT950QCG-X716)", ALC298_FIXUP_SAMSUNG_AMP),
10135 SND_PCI_QUIRK(0x144d, 0xc18a, "Samsung Galaxy Book Ion (NP930XCJ-K01US)", ALC298_FIXUP_SAMSUNG_AMP),
10136 SND_PCI_QUIRK(0x144d, 0xc1a3, "Samsung Galaxy Book Pro (NP935XDB-KC1SE)", ALC298_FIXUP_SAMSUNG_AMP),
10137 SND_PCI_QUIRK(0x144d, 0xc1a6, "Samsung Galaxy Book Pro 360 (NP930QBD)", ALC298_FIXUP_SAMSUNG_AMP),
10138 SND_PCI_QUIRK(0x144d, 0xc740, "Samsung Ativ book 8 (NP870Z5G)", ALC269_FIXUP_ATIV_BOOK_8),
10139 SND_PCI_QUIRK(0x144d, 0xc812, "Samsung Notebook Pen S (NT950SBE-X58)", ALC298_FIXUP_SAMSUNG_AMP),
10140 SND_PCI_QUIRK(0x144d, 0xc830, "Samsung Galaxy Book Ion (NT950XCJ-X716A)", ALC298_FIXUP_SAMSUNG_AMP),
10141 SND_PCI_QUIRK(0x144d, 0xc832, "Samsung Galaxy Book Flex Alpha (NP730QCJ)", ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET),
10142 SND_PCI_QUIRK(0x144d, 0xca03, "Samsung Galaxy Book2 Pro 360 (NP930QED)", ALC298_FIXUP_SAMSUNG_AMP),
10143 SND_PCI_QUIRK(0x144d, 0xc868, "Samsung Galaxy Book2 Pro (NP930XED)", ALC298_FIXUP_SAMSUNG_AMP),
10144 SND_PCI_QUIRK(0x1458, 0xfa53, "Gigabyte BXBT-2807", ALC283_FIXUP_HEADSET_MIC),
10145 SND_PCI_QUIRK(0x1462, 0xb120, "MSI Cubi MS-B120", ALC283_FIXUP_HEADSET_MIC),
10146 SND_PCI_QUIRK(0x1462, 0xb171, "Cubi N 8GL (MS-B171)", ALC283_FIXUP_HEADSET_MIC),
10147 SND_PCI_QUIRK(0x152d, 0x1082, "Quanta NL3", ALC269_FIXUP_LIFEBOOK),
10148 SND_PCI_QUIRK(0x1558, 0x1323, "Clevo N130ZU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10149 SND_PCI_QUIRK(0x1558, 0x1325, "Clevo N15[01][CW]U", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10150 SND_PCI_QUIRK(0x1558, 0x1401, "Clevo L140[CZ]U", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10151 SND_PCI_QUIRK(0x1558, 0x1403, "Clevo N140CU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10152 SND_PCI_QUIRK(0x1558, 0x1404, "Clevo N150CU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10153 SND_PCI_QUIRK(0x1558, 0x14a1, "Clevo L141MU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10154 SND_PCI_QUIRK(0x1558, 0x4018, "Clevo NV40M[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10155 SND_PCI_QUIRK(0x1558, 0x4019, "Clevo NV40MZ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10156 SND_PCI_QUIRK(0x1558, 0x4020, "Clevo NV40MB", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10157 SND_PCI_QUIRK(0x1558, 0x4041, "Clevo NV4[15]PZ", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10158 SND_PCI_QUIRK(0x1558, 0x40a1, "Clevo NL40GU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10159 SND_PCI_QUIRK(0x1558, 0x40c1, "Clevo NL40[CZ]U", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10160 SND_PCI_QUIRK(0x1558, 0x40d1, "Clevo NL41DU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10161 SND_PCI_QUIRK(0x1558, 0x5015, "Clevo NH5[58]H[HJK]Q", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10162 SND_PCI_QUIRK(0x1558, 0x5017, "Clevo NH7[79]H[HJK]Q", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10163 SND_PCI_QUIRK(0x1558, 0x50a3, "Clevo NJ51GU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10164 SND_PCI_QUIRK(0x1558, 0x50b3, "Clevo NK50S[BEZ]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10165 SND_PCI_QUIRK(0x1558, 0x50b6, "Clevo NK50S5", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10166 SND_PCI_QUIRK(0x1558, 0x50b8, "Clevo NK50SZ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10167 SND_PCI_QUIRK(0x1558, 0x50d5, "Clevo NP50D5", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10168 SND_PCI_QUIRK(0x1558, 0x50e1, "Clevo NH5[58]HPQ", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10169 SND_PCI_QUIRK(0x1558, 0x50e2, "Clevo NH7[79]HPQ", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10170 SND_PCI_QUIRK(0x1558, 0x50f0, "Clevo NH50A[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10171 SND_PCI_QUIRK(0x1558, 0x50f2, "Clevo NH50E[PR]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10172 SND_PCI_QUIRK(0x1558, 0x50f3, "Clevo NH58DPQ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10173 SND_PCI_QUIRK(0x1558, 0x50f5, "Clevo NH55EPY", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10174 SND_PCI_QUIRK(0x1558, 0x50f6, "Clevo NH55DPQ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10175 SND_PCI_QUIRK(0x1558, 0x5101, "Clevo S510WU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10176 SND_PCI_QUIRK(0x1558, 0x5157, "Clevo W517GU1", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10177 SND_PCI_QUIRK(0x1558, 0x51a1, "Clevo NS50MU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10178 SND_PCI_QUIRK(0x1558, 0x51b1, "Clevo NS50AU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10179 SND_PCI_QUIRK(0x1558, 0x51b3, "Clevo NS70AU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10180 SND_PCI_QUIRK(0x1558, 0x5630, "Clevo NP50RNJS", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10181 SND_PCI_QUIRK(0x1558, 0x70a1, "Clevo NB70T[HJK]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10182 SND_PCI_QUIRK(0x1558, 0x70b3, "Clevo NK70SB", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10183 SND_PCI_QUIRK(0x1558, 0x70f2, "Clevo NH79EPY", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10184 SND_PCI_QUIRK(0x1558, 0x70f3, "Clevo NH77DPQ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10185 SND_PCI_QUIRK(0x1558, 0x70f4, "Clevo NH77EPY", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10186 SND_PCI_QUIRK(0x1558, 0x70f6, "Clevo NH77DPQ-Y", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10187 SND_PCI_QUIRK(0x1558, 0x7716, "Clevo NS50PU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10188 SND_PCI_QUIRK(0x1558, 0x7717, "Clevo NS70PU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10189 SND_PCI_QUIRK(0x1558, 0x7718, "Clevo L140PU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10190 SND_PCI_QUIRK(0x1558, 0x7724, "Clevo L140AU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10191 SND_PCI_QUIRK(0x1558, 0x8228, "Clevo NR40BU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10192 SND_PCI_QUIRK(0x1558, 0x8520, "Clevo NH50D[CD]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10193 SND_PCI_QUIRK(0x1558, 0x8521, "Clevo NH77D[CD]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10194 SND_PCI_QUIRK(0x1558, 0x8535, "Clevo NH50D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10195 SND_PCI_QUIRK(0x1558, 0x8536, "Clevo NH79D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10196 SND_PCI_QUIRK(0x1558, 0x8550, "Clevo NH[57][0-9][ER][ACDH]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10197 SND_PCI_QUIRK(0x1558, 0x8551, "Clevo NH[57][0-9][ER][ACDH]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10198 SND_PCI_QUIRK(0x1558, 0x8560, "Clevo NH[57][0-9][ER][ACDH]Q", ALC269_FIXUP_HEADSET_MIC),
10199 SND_PCI_QUIRK(0x1558, 0x8561, "Clevo NH[57][0-9][ER][ACDH]Q", ALC269_FIXUP_HEADSET_MIC),
10200 SND_PCI_QUIRK(0x1558, 0x8562, "Clevo NH[57][0-9]RZ[Q]", ALC269_FIXUP_DMIC),
10201 SND_PCI_QUIRK(0x1558, 0x8668, "Clevo NP50B[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10202 SND_PCI_QUIRK(0x1558, 0x866d, "Clevo NP5[05]PN[HJK]", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10203 SND_PCI_QUIRK(0x1558, 0x867c, "Clevo NP7[01]PNP", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10204 SND_PCI_QUIRK(0x1558, 0x867d, "Clevo NP7[01]PN[HJK]", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10205 SND_PCI_QUIRK(0x1558, 0x8680, "Clevo NJ50LU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10206 SND_PCI_QUIRK(0x1558, 0x8686, "Clevo NH50[CZ]U", ALC256_FIXUP_MIC_NO_PRESENCE_AND_RESUME),
10207 SND_PCI_QUIRK(0x1558, 0x8a20, "Clevo NH55DCQ-Y", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10208 SND_PCI_QUIRK(0x1558, 0x8a51, "Clevo NH70RCQ-Y", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10209 SND_PCI_QUIRK(0x1558, 0x8d50, "Clevo NH55RCQ-M", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10210 SND_PCI_QUIRK(0x1558, 0x951d, "Clevo N950T[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10211 SND_PCI_QUIRK(0x1558, 0x9600, "Clevo N960K[PR]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10212 SND_PCI_QUIRK(0x1558, 0x961d, "Clevo N960S[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10213 SND_PCI_QUIRK(0x1558, 0x971d, "Clevo N970T[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10214 SND_PCI_QUIRK(0x1558, 0xa500, "Clevo NL5[03]RU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10215 SND_PCI_QUIRK(0x1558, 0xa600, "Clevo NL50NU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10216 SND_PCI_QUIRK(0x1558, 0xa650, "Clevo NP[567]0SN[CD]", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10217 SND_PCI_QUIRK(0x1558, 0xa671, "Clevo NP70SN[CDE]", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10218 SND_PCI_QUIRK(0x1558, 0xb018, "Clevo NP50D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10219 SND_PCI_QUIRK(0x1558, 0xb019, "Clevo NH77D[BE]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10220 SND_PCI_QUIRK(0x1558, 0xb022, "Clevo NH77D[DC][QW]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10221 SND_PCI_QUIRK(0x1558, 0xc018, "Clevo NP50D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10222 SND_PCI_QUIRK(0x1558, 0xc019, "Clevo NH77D[BE]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10223 SND_PCI_QUIRK(0x1558, 0xc022, "Clevo NH77[DC][QW]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10224 SND_PCI_QUIRK(0x17aa, 0x1036, "Lenovo P520", ALC233_FIXUP_LENOVO_MULTI_CODECS),
10225 SND_PCI_QUIRK(0x17aa, 0x1048, "ThinkCentre Station", ALC623_FIXUP_LENOVO_THINKSTATION_P340),
10226 SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE),
10227 SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE),
10228 SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE),
10229 SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE),
10230 SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE),
10231 SND_PCI_QUIRK(0x17aa, 0x21f3, "Thinkpad T430", ALC269_FIXUP_LENOVO_DOCK),
10232 SND_PCI_QUIRK(0x17aa, 0x21f6, "Thinkpad T530", ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST),
10233 SND_PCI_QUIRK(0x17aa, 0x21fa, "Thinkpad X230", ALC269_FIXUP_LENOVO_DOCK),
10234 SND_PCI_QUIRK(0x17aa, 0x21fb, "Thinkpad T430s", ALC269_FIXUP_LENOVO_DOCK),
10235 SND_PCI_QUIRK(0x17aa, 0x2203, "Thinkpad X230 Tablet", ALC269_FIXUP_LENOVO_DOCK),
10236 SND_PCI_QUIRK(0x17aa, 0x2208, "Thinkpad T431s", ALC269_FIXUP_LENOVO_DOCK),
10237 SND_PCI_QUIRK(0x17aa, 0x220c, "Thinkpad T440s", ALC292_FIXUP_TPT440),
10238 SND_PCI_QUIRK(0x17aa, 0x220e, "Thinkpad T440p", ALC292_FIXUP_TPT440_DOCK),
10239 SND_PCI_QUIRK(0x17aa, 0x2210, "Thinkpad T540p", ALC292_FIXUP_TPT440_DOCK),
10240 SND_PCI_QUIRK(0x17aa, 0x2211, "Thinkpad W541", ALC292_FIXUP_TPT440_DOCK),
10241 SND_PCI_QUIRK(0x17aa, 0x2212, "Thinkpad T440", ALC292_FIXUP_TPT440_DOCK),
10242 SND_PCI_QUIRK(0x17aa, 0x2214, "Thinkpad X240", ALC292_FIXUP_TPT440_DOCK),
10243 SND_PCI_QUIRK(0x17aa, 0x2215, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
10244 SND_PCI_QUIRK(0x17aa, 0x2218, "Thinkpad X1 Carbon 2nd", ALC292_FIXUP_TPT440_DOCK),
10245 SND_PCI_QUIRK(0x17aa, 0x2223, "ThinkPad T550", ALC292_FIXUP_TPT440_DOCK),
10246 SND_PCI_QUIRK(0x17aa, 0x2226, "ThinkPad X250", ALC292_FIXUP_TPT440_DOCK),
10247 SND_PCI_QUIRK(0x17aa, 0x222d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10248 SND_PCI_QUIRK(0x17aa, 0x222e, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10249 SND_PCI_QUIRK(0x17aa, 0x2231, "Thinkpad T560", ALC292_FIXUP_TPT460),
10250 SND_PCI_QUIRK(0x17aa, 0x2233, "Thinkpad", ALC292_FIXUP_TPT460),
10251 SND_PCI_QUIRK(0x17aa, 0x2245, "Thinkpad T470", ALC298_FIXUP_TPT470_DOCK),
10252 SND_PCI_QUIRK(0x17aa, 0x2246, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10253 SND_PCI_QUIRK(0x17aa, 0x2247, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10254 SND_PCI_QUIRK(0x17aa, 0x2249, "Thinkpad", ALC292_FIXUP_TPT460),
10255 SND_PCI_QUIRK(0x17aa, 0x224b, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10256 SND_PCI_QUIRK(0x17aa, 0x224c, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10257 SND_PCI_QUIRK(0x17aa, 0x224d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10258 SND_PCI_QUIRK(0x17aa, 0x225d, "Thinkpad T480", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
10259 SND_PCI_QUIRK(0x17aa, 0x2292, "Thinkpad X1 Carbon 7th", ALC285_FIXUP_THINKPAD_HEADSET_JACK),
10260 SND_PCI_QUIRK(0x17aa, 0x22be, "Thinkpad X1 Carbon 8th", ALC285_FIXUP_THINKPAD_HEADSET_JACK),
10261 SND_PCI_QUIRK(0x17aa, 0x22c1, "Thinkpad P1 Gen 3", ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK),
10262 SND_PCI_QUIRK(0x17aa, 0x22c2, "Thinkpad X1 Extreme Gen 3", ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK),
10263 SND_PCI_QUIRK(0x17aa, 0x22f1, "Thinkpad", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10264 SND_PCI_QUIRK(0x17aa, 0x22f2, "Thinkpad", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10265 SND_PCI_QUIRK(0x17aa, 0x22f3, "Thinkpad", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10266 SND_PCI_QUIRK(0x17aa, 0x2316, "Thinkpad P1 Gen 6", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10267 SND_PCI_QUIRK(0x17aa, 0x2317, "Thinkpad P1 Gen 6", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10268 SND_PCI_QUIRK(0x17aa, 0x2318, "Thinkpad Z13 Gen2", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10269 SND_PCI_QUIRK(0x17aa, 0x2319, "Thinkpad Z16 Gen2", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10270 SND_PCI_QUIRK(0x17aa, 0x231a, "Thinkpad Z16 Gen2", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10271 SND_PCI_QUIRK(0x17aa, 0x30bb, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY),
10272 SND_PCI_QUIRK(0x17aa, 0x30e2, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY),
10273 SND_PCI_QUIRK(0x17aa, 0x310c, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
10274 SND_PCI_QUIRK(0x17aa, 0x3111, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
10275 SND_PCI_QUIRK(0x17aa, 0x312a, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
10276 SND_PCI_QUIRK(0x17aa, 0x312f, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
10277 SND_PCI_QUIRK(0x17aa, 0x313c, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
10278 SND_PCI_QUIRK(0x17aa, 0x3151, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC),
10279 SND_PCI_QUIRK(0x17aa, 0x3176, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC),
10280 SND_PCI_QUIRK(0x17aa, 0x3178, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC),
10281 SND_PCI_QUIRK(0x17aa, 0x31af, "ThinkCentre Station", ALC623_FIXUP_LENOVO_THINKSTATION_P340),
10282 SND_PCI_QUIRK(0x17aa, 0x334b, "Lenovo ThinkCentre M70 Gen5", ALC283_FIXUP_HEADSET_MIC),
10283 SND_PCI_QUIRK(0x17aa, 0x3801, "Lenovo Yoga9 14IAP7", ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN),
10284 SND_PCI_QUIRK(0x17aa, 0x3802, "Lenovo Yoga Pro 9 14IRP8 / DuetITL 2021", ALC287_FIXUP_LENOVO_14IRP8_DUETITL),
10285 SND_PCI_QUIRK(0x17aa, 0x3813, "Legion 7i 15IMHG05", ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS),
10286 SND_PCI_QUIRK(0x17aa, 0x3818, "Lenovo C940 / Yoga Duet 7", ALC298_FIXUP_LENOVO_C940_DUET7),
10287 SND_PCI_QUIRK(0x17aa, 0x3819, "Lenovo 13s Gen2 ITL", ALC287_FIXUP_13S_GEN2_SPEAKERS),
10288 SND_PCI_QUIRK(0x17aa, 0x3820, "Yoga Duet 7 13ITL6", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
10289 SND_PCI_QUIRK(0x17aa, 0x3824, "Legion Y9000X 2020", ALC285_FIXUP_LEGION_Y9000X_SPEAKERS),
10290 SND_PCI_QUIRK(0x17aa, 0x3827, "Ideapad S740", ALC285_FIXUP_IDEAPAD_S740_COEF),
10291 SND_PCI_QUIRK(0x17aa, 0x3834, "Lenovo IdeaPad Slim 9i 14ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
10292 SND_PCI_QUIRK(0x17aa, 0x383d, "Legion Y9000X 2019", ALC285_FIXUP_LEGION_Y9000X_SPEAKERS),
10293 SND_PCI_QUIRK(0x17aa, 0x3843, "Yoga 9i", ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP),
10294 SND_PCI_QUIRK(0x17aa, 0x3847, "Legion 7 16ACHG6", ALC287_FIXUP_LEGION_16ACHG6),
10295 SND_PCI_QUIRK(0x17aa, 0x384a, "Lenovo Yoga 7 15ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
10296 SND_PCI_QUIRK(0x17aa, 0x3852, "Lenovo Yoga 7 14ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
10297 SND_PCI_QUIRK(0x17aa, 0x3853, "Lenovo Yoga 7 15ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
10298 SND_PCI_QUIRK(0x17aa, 0x3855, "Legion 7 16ITHG6", ALC287_FIXUP_LEGION_16ITHG6),
10299 SND_PCI_QUIRK(0x17aa, 0x3869, "Lenovo Yoga7 14IAL7", ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN),
10300 SND_PCI_QUIRK(0x17aa, 0x386f, "Legion 7i 16IAX7", ALC287_FIXUP_CS35L41_I2C_2),
10301 SND_PCI_QUIRK(0x17aa, 0x3870, "Lenovo Yoga 7 14ARB7", ALC287_FIXUP_YOGA7_14ARB7_I2C),
10302 SND_PCI_QUIRK(0x17aa, 0x387d, "Yoga S780-16 pro Quad AAC", ALC287_FIXUP_TAS2781_I2C),
10303 SND_PCI_QUIRK(0x17aa, 0x387e, "Yoga S780-16 pro Quad YC", ALC287_FIXUP_TAS2781_I2C),
10304 SND_PCI_QUIRK(0x17aa, 0x3881, "YB9 dual power mode2 YC", ALC287_FIXUP_TAS2781_I2C),
10305 SND_PCI_QUIRK(0x17aa, 0x3882, "Lenovo Yoga Pro 7 14APH8", ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN),
10306 SND_PCI_QUIRK(0x17aa, 0x3884, "Y780 YG DUAL", ALC287_FIXUP_TAS2781_I2C),
10307 SND_PCI_QUIRK(0x17aa, 0x3886, "Y780 VECO DUAL", ALC287_FIXUP_TAS2781_I2C),
10308 SND_PCI_QUIRK(0x17aa, 0x38a7, "Y780P AMD YG dual", ALC287_FIXUP_TAS2781_I2C),
10309 SND_PCI_QUIRK(0x17aa, 0x38a8, "Y780P AMD VECO dual", ALC287_FIXUP_TAS2781_I2C),
10310 SND_PCI_QUIRK(0x17aa, 0x38a9, "Thinkbook 16P", ALC287_FIXUP_CS35L41_I2C_2),
10311 SND_PCI_QUIRK(0x17aa, 0x38ab, "Thinkbook 16P", ALC287_FIXUP_CS35L41_I2C_2),
10312 SND_PCI_QUIRK(0x17aa, 0x38b4, "Legion Slim 7 16IRH8", ALC287_FIXUP_CS35L41_I2C_2),
10313 SND_PCI_QUIRK(0x17aa, 0x38b5, "Legion Slim 7 16IRH8", ALC287_FIXUP_CS35L41_I2C_2),
10314 SND_PCI_QUIRK(0x17aa, 0x38b6, "Legion Slim 7 16APH8", ALC287_FIXUP_CS35L41_I2C_2),
10315 SND_PCI_QUIRK(0x17aa, 0x38b7, "Legion Slim 7 16APH8", ALC287_FIXUP_CS35L41_I2C_2),
10316 SND_PCI_QUIRK(0x17aa, 0x38ba, "Yoga S780-14.5 Air AMD quad YC", ALC287_FIXUP_TAS2781_I2C),
10317 SND_PCI_QUIRK(0x17aa, 0x38bb, "Yoga S780-14.5 Air AMD quad AAC", ALC287_FIXUP_TAS2781_I2C),
10318 SND_PCI_QUIRK(0x17aa, 0x38be, "Yoga S980-14.5 proX YC Dual", ALC287_FIXUP_TAS2781_I2C),
10319 SND_PCI_QUIRK(0x17aa, 0x38bf, "Yoga S980-14.5 proX LX Dual", ALC287_FIXUP_TAS2781_I2C),
10320 SND_PCI_QUIRK(0x17aa, 0x38c3, "Y980 DUAL", ALC287_FIXUP_TAS2781_I2C),
10321 SND_PCI_QUIRK(0x17aa, 0x38cb, "Y790 YG DUAL", ALC287_FIXUP_TAS2781_I2C),
10322 SND_PCI_QUIRK(0x17aa, 0x38cd, "Y790 VECO DUAL", ALC287_FIXUP_TAS2781_I2C),
10323 SND_PCI_QUIRK(0x17aa, 0x3902, "Lenovo E50-80", ALC269_FIXUP_DMIC_THINKPAD_ACPI),
10324 SND_PCI_QUIRK(0x17aa, 0x3977, "IdeaPad S210", ALC283_FIXUP_INT_MIC),
10325 SND_PCI_QUIRK(0x17aa, 0x3978, "Lenovo B50-70", ALC269_FIXUP_DMIC_THINKPAD_ACPI),
10326 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_PCM_44K),
10327 SND_PCI_QUIRK(0x17aa, 0x5013, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
10328 SND_PCI_QUIRK(0x17aa, 0x501a, "Thinkpad", ALC283_FIXUP_INT_MIC),
10329 SND_PCI_QUIRK(0x17aa, 0x501e, "Thinkpad L440", ALC292_FIXUP_TPT440_DOCK),
10330 SND_PCI_QUIRK(0x17aa, 0x5026, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
10331 SND_PCI_QUIRK(0x17aa, 0x5034, "Thinkpad T450", ALC292_FIXUP_TPT440_DOCK),
10332 SND_PCI_QUIRK(0x17aa, 0x5036, "Thinkpad T450s", ALC292_FIXUP_TPT440_DOCK),
10333 SND_PCI_QUIRK(0x17aa, 0x503c, "Thinkpad L450", ALC292_FIXUP_TPT440_DOCK),
10334 SND_PCI_QUIRK(0x17aa, 0x504a, "ThinkPad X260", ALC292_FIXUP_TPT440_DOCK),
10335 SND_PCI_QUIRK(0x17aa, 0x504b, "Thinkpad", ALC293_FIXUP_LENOVO_SPK_NOISE),
10336 SND_PCI_QUIRK(0x17aa, 0x5050, "Thinkpad T560p", ALC292_FIXUP_TPT460),
10337 SND_PCI_QUIRK(0x17aa, 0x5051, "Thinkpad L460", ALC292_FIXUP_TPT460),
10338 SND_PCI_QUIRK(0x17aa, 0x5053, "Thinkpad T460", ALC292_FIXUP_TPT460),
10339 SND_PCI_QUIRK(0x17aa, 0x505d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10340 SND_PCI_QUIRK(0x17aa, 0x505f, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10341 SND_PCI_QUIRK(0x17aa, 0x5062, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10342 SND_PCI_QUIRK(0x17aa, 0x508b, "Thinkpad X12 Gen 1", ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS),
10343 SND_PCI_QUIRK(0x17aa, 0x5109, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
10344 SND_PCI_QUIRK(0x17aa, 0x511e, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10345 SND_PCI_QUIRK(0x17aa, 0x511f, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10346 SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD),
10347 SND_PCI_QUIRK(0x17aa, 0x9e56, "Lenovo ZhaoYang CF4620Z", ALC286_FIXUP_SONY_MIC_NO_PRESENCE),
10348 SND_PCI_QUIRK(0x1849, 0x1233, "ASRock NUC Box 1100", ALC233_FIXUP_NO_AUDIO_JACK),
10349 SND_PCI_QUIRK(0x1849, 0xa233, "Positivo Master C6300", ALC269_FIXUP_HEADSET_MIC),
10350 SND_PCI_QUIRK(0x19e5, 0x3204, "Huawei MACH-WX9", ALC256_FIXUP_HUAWEI_MACH_WX9_PINS),
10351 SND_PCI_QUIRK(0x19e5, 0x320f, "Huawei WRT-WX9 ", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE),
10352 SND_PCI_QUIRK(0x1b35, 0x1235, "CZC B20", ALC269_FIXUP_CZC_B20),
10353 SND_PCI_QUIRK(0x1b35, 0x1236, "CZC TMI", ALC269_FIXUP_CZC_TMI),
10354 SND_PCI_QUIRK(0x1b35, 0x1237, "CZC L101", ALC269_FIXUP_CZC_L101),
10355 SND_PCI_QUIRK(0x1b7d, 0xa831, "Ordissimo EVE2 ", ALC269VB_FIXUP_ORDISSIMO_EVE2), /* Also known as Malata PC-B1303 */
10356 SND_PCI_QUIRK(0x1c06, 0x2013, "Lemote A1802", ALC269_FIXUP_LEMOTE_A1802),
10357 SND_PCI_QUIRK(0x1c06, 0x2015, "Lemote A190X", ALC269_FIXUP_LEMOTE_A190X),
10358 SND_PCI_QUIRK(0x1c6c, 0x1251, "Positivo N14KP6-TG", ALC288_FIXUP_DELL1_MIC_NO_PRESENCE),
10359 SND_PCI_QUIRK(0x1d05, 0x1132, "TongFang PHxTxX1", ALC256_FIXUP_SET_COEF_DEFAULTS),
10360 SND_PCI_QUIRK(0x1d05, 0x1096, "TongFang GMxMRxx", ALC269_FIXUP_NO_SHUTUP),
10361 SND_PCI_QUIRK(0x1d05, 0x1100, "TongFang GKxNRxx", ALC269_FIXUP_NO_SHUTUP),
10362 SND_PCI_QUIRK(0x1d05, 0x1111, "TongFang GMxZGxx", ALC269_FIXUP_NO_SHUTUP),
10363 SND_PCI_QUIRK(0x1d05, 0x1119, "TongFang GMxZGxx", ALC269_FIXUP_NO_SHUTUP),
10364 SND_PCI_QUIRK(0x1d05, 0x1129, "TongFang GMxZGxx", ALC269_FIXUP_NO_SHUTUP),
10365 SND_PCI_QUIRK(0x1d05, 0x1147, "TongFang GMxTGxx", ALC269_FIXUP_NO_SHUTUP),
10366 SND_PCI_QUIRK(0x1d05, 0x115c, "TongFang GMxTGxx", ALC269_FIXUP_NO_SHUTUP),
10367 SND_PCI_QUIRK(0x1d05, 0x121b, "TongFang GMxAGxx", ALC269_FIXUP_NO_SHUTUP),
10368 SND_PCI_QUIRK(0x1d72, 0x1602, "RedmiBook", ALC255_FIXUP_XIAOMI_HEADSET_MIC),
10369 SND_PCI_QUIRK(0x1d72, 0x1701, "XiaomiNotebook Pro", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE),
10370 SND_PCI_QUIRK(0x1d72, 0x1901, "RedmiBook 14", ALC256_FIXUP_ASUS_HEADSET_MIC),
10371 SND_PCI_QUIRK(0x1d72, 0x1945, "Redmi G", ALC256_FIXUP_ASUS_HEADSET_MIC),
10372 SND_PCI_QUIRK(0x1d72, 0x1947, "RedmiBook Air", ALC255_FIXUP_XIAOMI_HEADSET_MIC),
10373 SND_PCI_QUIRK(0x2782, 0x0232, "CHUWI CoreBook XPro", ALC269VB_FIXUP_CHUWI_COREBOOK_XPRO),
10374 SND_PCI_QUIRK(0x2782, 0x1707, "Vaio VJFE-ADL", ALC298_FIXUP_SPK_VOLUME),
10375 SND_PCI_QUIRK(0x8086, 0x2074, "Intel NUC 8", ALC233_FIXUP_INTEL_NUC8_DMIC),
10376 SND_PCI_QUIRK(0x8086, 0x2080, "Intel NUC 8 Rugged", ALC256_FIXUP_INTEL_NUC8_RUGGED),
10377 SND_PCI_QUIRK(0x8086, 0x2081, "Intel NUC 10", ALC256_FIXUP_INTEL_NUC10),
10378 SND_PCI_QUIRK(0x8086, 0x3038, "Intel NUC 13", ALC295_FIXUP_CHROME_BOOK),
10379 SND_PCI_QUIRK(0xf111, 0x0001, "Framework Laptop", ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE),
10380 SND_PCI_QUIRK(0xf111, 0x0005, "Framework Laptop", ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE),
10381 SND_PCI_QUIRK(0xf111, 0x0006, "Framework Laptop", ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE),
10382
10383#if 0
10384 /* Below is a quirk table taken from the old code.
10385 * Basically the device should work as is without the fixup table.
10386 * If BIOS doesn't give a proper info, enable the corresponding
10387 * fixup entry.
10388 */
10389 SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
10390 ALC269_FIXUP_AMIC),
10391 SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC),
10392 SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC),
10393 SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC),
10394 SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC),
10395 SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269_FIXUP_AMIC),
10396 SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269_FIXUP_AMIC),
10397 SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269_FIXUP_AMIC),
10398 SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_FIXUP_AMIC),
10399 SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269_FIXUP_AMIC),
10400 SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_FIXUP_AMIC),
10401 SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_FIXUP_AMIC),
10402 SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_FIXUP_AMIC),
10403 SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_FIXUP_AMIC),
10404 SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_FIXUP_AMIC),
10405 SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_FIXUP_AMIC),
10406 SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_FIXUP_AMIC),
10407 SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_FIXUP_AMIC),
10408 SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_FIXUP_AMIC),
10409 SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_FIXUP_AMIC),
10410 SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_FIXUP_AMIC),
10411 SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_FIXUP_AMIC),
10412 SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_FIXUP_AMIC),
10413 SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_FIXUP_AMIC),
10414 SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_FIXUP_AMIC),
10415 SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_FIXUP_AMIC),
10416 SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_FIXUP_AMIC),
10417 SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_FIXUP_AMIC),
10418 SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_FIXUP_AMIC),
10419 SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_FIXUP_AMIC),
10420 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_FIXUP_AMIC),
10421 SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_FIXUP_AMIC),
10422 SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_FIXUP_AMIC),
10423 SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_FIXUP_AMIC),
10424 SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_FIXUP_AMIC),
10425 SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_FIXUP_DMIC),
10426 SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_FIXUP_AMIC),
10427 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_AMIC),
10428 SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_FIXUP_DMIC),
10429 SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_FIXUP_DMIC),
10430#endif
10431 {}
10432};
10433
10434static const struct snd_pci_quirk alc269_fixup_vendor_tbl[] = {
10435 SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC),
10436 SND_PCI_QUIRK_VENDOR(0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED),
10437 SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO),
10438 SND_PCI_QUIRK_VENDOR(0x17aa, "Thinkpad", ALC269_FIXUP_THINKPAD_ACPI),
10439 SND_PCI_QUIRK_VENDOR(0x19e5, "Huawei Matebook", ALC255_FIXUP_MIC_MUTE_LED),
10440 {}
10441};
10442
10443static const struct hda_model_fixup alc269_fixup_models[] = {
10444 {.id = ALC269_FIXUP_AMIC, .name = "laptop-amic"},
10445 {.id = ALC269_FIXUP_DMIC, .name = "laptop-dmic"},
10446 {.id = ALC269_FIXUP_STEREO_DMIC, .name = "alc269-dmic"},
10447 {.id = ALC271_FIXUP_DMIC, .name = "alc271-dmic"},
10448 {.id = ALC269_FIXUP_INV_DMIC, .name = "inv-dmic"},
10449 {.id = ALC269_FIXUP_HEADSET_MIC, .name = "headset-mic"},
10450 {.id = ALC269_FIXUP_HEADSET_MODE, .name = "headset-mode"},
10451 {.id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC, .name = "headset-mode-no-hp-mic"},
10452 {.id = ALC269_FIXUP_LENOVO_DOCK, .name = "lenovo-dock"},
10453 {.id = ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST, .name = "lenovo-dock-limit-boost"},
10454 {.id = ALC269_FIXUP_HP_GPIO_LED, .name = "hp-gpio-led"},
10455 {.id = ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED, .name = "hp-dock-gpio-mic1-led"},
10456 {.id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "dell-headset-multi"},
10457 {.id = ALC269_FIXUP_DELL2_MIC_NO_PRESENCE, .name = "dell-headset-dock"},
10458 {.id = ALC269_FIXUP_DELL3_MIC_NO_PRESENCE, .name = "dell-headset3"},
10459 {.id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE, .name = "dell-headset4"},
10460 {.id = ALC283_FIXUP_CHROME_BOOK, .name = "alc283-dac-wcaps"},
10461 {.id = ALC283_FIXUP_SENSE_COMBO_JACK, .name = "alc283-sense-combo"},
10462 {.id = ALC292_FIXUP_TPT440_DOCK, .name = "tpt440-dock"},
10463 {.id = ALC292_FIXUP_TPT440, .name = "tpt440"},
10464 {.id = ALC292_FIXUP_TPT460, .name = "tpt460"},
10465 {.id = ALC298_FIXUP_TPT470_DOCK_FIX, .name = "tpt470-dock-fix"},
10466 {.id = ALC298_FIXUP_TPT470_DOCK, .name = "tpt470-dock"},
10467 {.id = ALC233_FIXUP_LENOVO_MULTI_CODECS, .name = "dual-codecs"},
10468 {.id = ALC700_FIXUP_INTEL_REFERENCE, .name = "alc700-ref"},
10469 {.id = ALC269_FIXUP_SONY_VAIO, .name = "vaio"},
10470 {.id = ALC269_FIXUP_DELL_M101Z, .name = "dell-m101z"},
10471 {.id = ALC269_FIXUP_ASUS_G73JW, .name = "asus-g73jw"},
10472 {.id = ALC269_FIXUP_LENOVO_EAPD, .name = "lenovo-eapd"},
10473 {.id = ALC275_FIXUP_SONY_HWEQ, .name = "sony-hweq"},
10474 {.id = ALC269_FIXUP_PCM_44K, .name = "pcm44k"},
10475 {.id = ALC269_FIXUP_LIFEBOOK, .name = "lifebook"},
10476 {.id = ALC269_FIXUP_LIFEBOOK_EXTMIC, .name = "lifebook-extmic"},
10477 {.id = ALC269_FIXUP_LIFEBOOK_HP_PIN, .name = "lifebook-hp-pin"},
10478 {.id = ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC, .name = "lifebook-u7x7"},
10479 {.id = ALC269VB_FIXUP_AMIC, .name = "alc269vb-amic"},
10480 {.id = ALC269VB_FIXUP_DMIC, .name = "alc269vb-dmic"},
10481 {.id = ALC269_FIXUP_HP_MUTE_LED_MIC1, .name = "hp-mute-led-mic1"},
10482 {.id = ALC269_FIXUP_HP_MUTE_LED_MIC2, .name = "hp-mute-led-mic2"},
10483 {.id = ALC269_FIXUP_HP_MUTE_LED_MIC3, .name = "hp-mute-led-mic3"},
10484 {.id = ALC269_FIXUP_HP_GPIO_MIC1_LED, .name = "hp-gpio-mic1"},
10485 {.id = ALC269_FIXUP_HP_LINE1_MIC1_LED, .name = "hp-line1-mic1"},
10486 {.id = ALC269_FIXUP_NO_SHUTUP, .name = "noshutup"},
10487 {.id = ALC286_FIXUP_SONY_MIC_NO_PRESENCE, .name = "sony-nomic"},
10488 {.id = ALC269_FIXUP_ASPIRE_HEADSET_MIC, .name = "aspire-headset-mic"},
10489 {.id = ALC269_FIXUP_ASUS_X101, .name = "asus-x101"},
10490 {.id = ALC271_FIXUP_HP_GATE_MIC_JACK, .name = "acer-ao7xx"},
10491 {.id = ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572, .name = "acer-aspire-e1"},
10492 {.id = ALC269_FIXUP_ACER_AC700, .name = "acer-ac700"},
10493 {.id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST, .name = "limit-mic-boost"},
10494 {.id = ALC269VB_FIXUP_ASUS_ZENBOOK, .name = "asus-zenbook"},
10495 {.id = ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A, .name = "asus-zenbook-ux31a"},
10496 {.id = ALC269VB_FIXUP_ORDISSIMO_EVE2, .name = "ordissimo"},
10497 {.id = ALC282_FIXUP_ASUS_TX300, .name = "asus-tx300"},
10498 {.id = ALC283_FIXUP_INT_MIC, .name = "alc283-int-mic"},
10499 {.id = ALC290_FIXUP_MONO_SPEAKERS_HSJACK, .name = "mono-speakers"},
10500 {.id = ALC290_FIXUP_SUBWOOFER_HSJACK, .name = "alc290-subwoofer"},
10501 {.id = ALC269_FIXUP_THINKPAD_ACPI, .name = "thinkpad"},
10502 {.id = ALC269_FIXUP_DMIC_THINKPAD_ACPI, .name = "dmic-thinkpad"},
10503 {.id = ALC255_FIXUP_ACER_MIC_NO_PRESENCE, .name = "alc255-acer"},
10504 {.id = ALC255_FIXUP_ASUS_MIC_NO_PRESENCE, .name = "alc255-asus"},
10505 {.id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc255-dell1"},
10506 {.id = ALC255_FIXUP_DELL2_MIC_NO_PRESENCE, .name = "alc255-dell2"},
10507 {.id = ALC293_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc293-dell1"},
10508 {.id = ALC283_FIXUP_HEADSET_MIC, .name = "alc283-headset"},
10509 {.id = ALC255_FIXUP_MIC_MUTE_LED, .name = "alc255-dell-mute"},
10510 {.id = ALC282_FIXUP_ASPIRE_V5_PINS, .name = "aspire-v5"},
10511 {.id = ALC269VB_FIXUP_ASPIRE_E1_COEF, .name = "aspire-e1-coef"},
10512 {.id = ALC280_FIXUP_HP_GPIO4, .name = "hp-gpio4"},
10513 {.id = ALC286_FIXUP_HP_GPIO_LED, .name = "hp-gpio-led"},
10514 {.id = ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY, .name = "hp-gpio2-hotkey"},
10515 {.id = ALC280_FIXUP_HP_DOCK_PINS, .name = "hp-dock-pins"},
10516 {.id = ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED, .name = "hp-dock-gpio-mic"},
10517 {.id = ALC280_FIXUP_HP_9480M, .name = "hp-9480m"},
10518 {.id = ALC288_FIXUP_DELL_HEADSET_MODE, .name = "alc288-dell-headset"},
10519 {.id = ALC288_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc288-dell1"},
10520 {.id = ALC288_FIXUP_DELL_XPS_13, .name = "alc288-dell-xps13"},
10521 {.id = ALC292_FIXUP_DELL_E7X, .name = "dell-e7x"},
10522 {.id = ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK, .name = "alc293-dell"},
10523 {.id = ALC298_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc298-dell1"},
10524 {.id = ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE, .name = "alc298-dell-aio"},
10525 {.id = ALC275_FIXUP_DELL_XPS, .name = "alc275-dell-xps"},
10526 {.id = ALC293_FIXUP_LENOVO_SPK_NOISE, .name = "lenovo-spk-noise"},
10527 {.id = ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY, .name = "lenovo-hotkey"},
10528 {.id = ALC255_FIXUP_DELL_SPK_NOISE, .name = "dell-spk-noise"},
10529 {.id = ALC225_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc225-dell1"},
10530 {.id = ALC295_FIXUP_DISABLE_DAC3, .name = "alc295-disable-dac3"},
10531 {.id = ALC285_FIXUP_SPEAKER2_TO_DAC1, .name = "alc285-speaker2-to-dac1"},
10532 {.id = ALC280_FIXUP_HP_HEADSET_MIC, .name = "alc280-hp-headset"},
10533 {.id = ALC221_FIXUP_HP_FRONT_MIC, .name = "alc221-hp-mic"},
10534 {.id = ALC298_FIXUP_SPK_VOLUME, .name = "alc298-spk-volume"},
10535 {.id = ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER, .name = "dell-inspiron-7559"},
10536 {.id = ALC269_FIXUP_ATIV_BOOK_8, .name = "ativ-book"},
10537 {.id = ALC221_FIXUP_HP_MIC_NO_PRESENCE, .name = "alc221-hp-mic"},
10538 {.id = ALC256_FIXUP_ASUS_HEADSET_MODE, .name = "alc256-asus-headset"},
10539 {.id = ALC256_FIXUP_ASUS_MIC, .name = "alc256-asus-mic"},
10540 {.id = ALC256_FIXUP_ASUS_AIO_GPIO2, .name = "alc256-asus-aio"},
10541 {.id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE, .name = "alc233-asus"},
10542 {.id = ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE, .name = "alc233-eapd"},
10543 {.id = ALC294_FIXUP_LENOVO_MIC_LOCATION, .name = "alc294-lenovo-mic"},
10544 {.id = ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE, .name = "alc225-wyse"},
10545 {.id = ALC274_FIXUP_DELL_AIO_LINEOUT_VERB, .name = "alc274-dell-aio"},
10546 {.id = ALC255_FIXUP_DUMMY_LINEOUT_VERB, .name = "alc255-dummy-lineout"},
10547 {.id = ALC255_FIXUP_DELL_HEADSET_MIC, .name = "alc255-dell-headset"},
10548 {.id = ALC295_FIXUP_HP_X360, .name = "alc295-hp-x360"},
10549 {.id = ALC225_FIXUP_HEADSET_JACK, .name = "alc-headset-jack"},
10550 {.id = ALC295_FIXUP_CHROME_BOOK, .name = "alc-chrome-book"},
10551 {.id = ALC299_FIXUP_PREDATOR_SPK, .name = "predator-spk"},
10552 {.id = ALC298_FIXUP_HUAWEI_MBX_STEREO, .name = "huawei-mbx-stereo"},
10553 {.id = ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE, .name = "alc256-medion-headset"},
10554 {.id = ALC298_FIXUP_SAMSUNG_AMP, .name = "alc298-samsung-amp"},
10555 {.id = ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET, .name = "alc256-samsung-headphone"},
10556 {.id = ALC255_FIXUP_XIAOMI_HEADSET_MIC, .name = "alc255-xiaomi-headset"},
10557 {.id = ALC274_FIXUP_HP_MIC, .name = "alc274-hp-mic-detect"},
10558 {.id = ALC245_FIXUP_HP_X360_AMP, .name = "alc245-hp-x360-amp"},
10559 {.id = ALC295_FIXUP_HP_OMEN, .name = "alc295-hp-omen"},
10560 {.id = ALC285_FIXUP_HP_SPECTRE_X360, .name = "alc285-hp-spectre-x360"},
10561 {.id = ALC285_FIXUP_HP_SPECTRE_X360_EB1, .name = "alc285-hp-spectre-x360-eb1"},
10562 {.id = ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP, .name = "alc287-ideapad-bass-spk-amp"},
10563 {.id = ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN, .name = "alc287-yoga9-bass-spk-pin"},
10564 {.id = ALC623_FIXUP_LENOVO_THINKSTATION_P340, .name = "alc623-lenovo-thinkstation-p340"},
10565 {.id = ALC255_FIXUP_ACER_HEADPHONE_AND_MIC, .name = "alc255-acer-headphone-and-mic"},
10566 {.id = ALC285_FIXUP_HP_GPIO_AMP_INIT, .name = "alc285-hp-amp-init"},
10567 {}
10568};
10569#define ALC225_STANDARD_PINS \
10570 {0x21, 0x04211020}
10571
10572#define ALC256_STANDARD_PINS \
10573 {0x12, 0x90a60140}, \
10574 {0x14, 0x90170110}, \
10575 {0x21, 0x02211020}
10576
10577#define ALC282_STANDARD_PINS \
10578 {0x14, 0x90170110}
10579
10580#define ALC290_STANDARD_PINS \
10581 {0x12, 0x99a30130}
10582
10583#define ALC292_STANDARD_PINS \
10584 {0x14, 0x90170110}, \
10585 {0x15, 0x0221401f}
10586
10587#define ALC295_STANDARD_PINS \
10588 {0x12, 0xb7a60130}, \
10589 {0x14, 0x90170110}, \
10590 {0x21, 0x04211020}
10591
10592#define ALC298_STANDARD_PINS \
10593 {0x12, 0x90a60130}, \
10594 {0x21, 0x03211020}
10595
10596static const struct snd_hda_pin_quirk alc269_pin_fixup_tbl[] = {
10597 SND_HDA_PIN_QUIRK(0x10ec0221, 0x103c, "HP Workstation", ALC221_FIXUP_HP_HEADSET_MIC,
10598 {0x14, 0x01014020},
10599 {0x17, 0x90170110},
10600 {0x18, 0x02a11030},
10601 {0x19, 0x0181303F},
10602 {0x21, 0x0221102f}),
10603 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1025, "Acer", ALC255_FIXUP_ACER_MIC_NO_PRESENCE,
10604 {0x12, 0x90a601c0},
10605 {0x14, 0x90171120},
10606 {0x21, 0x02211030}),
10607 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1043, "ASUS", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE,
10608 {0x14, 0x90170110},
10609 {0x1b, 0x90a70130},
10610 {0x21, 0x03211020}),
10611 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1043, "ASUS", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE,
10612 {0x1a, 0x90a70130},
10613 {0x1b, 0x90170110},
10614 {0x21, 0x03211020}),
10615 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
10616 ALC225_STANDARD_PINS,
10617 {0x12, 0xb7a60130},
10618 {0x14, 0x901701a0}),
10619 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
10620 ALC225_STANDARD_PINS,
10621 {0x12, 0xb7a60130},
10622 {0x14, 0x901701b0}),
10623 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
10624 ALC225_STANDARD_PINS,
10625 {0x12, 0xb7a60150},
10626 {0x14, 0x901701a0}),
10627 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
10628 ALC225_STANDARD_PINS,
10629 {0x12, 0xb7a60150},
10630 {0x14, 0x901701b0}),
10631 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
10632 ALC225_STANDARD_PINS,
10633 {0x12, 0xb7a60130},
10634 {0x1b, 0x90170110}),
10635 SND_HDA_PIN_QUIRK(0x10ec0233, 0x8086, "Intel NUC Skull Canyon", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
10636 {0x1b, 0x01111010},
10637 {0x1e, 0x01451130},
10638 {0x21, 0x02211020}),
10639 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY,
10640 {0x12, 0x90a60140},
10641 {0x14, 0x90170110},
10642 {0x19, 0x02a11030},
10643 {0x21, 0x02211020}),
10644 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION,
10645 {0x14, 0x90170110},
10646 {0x19, 0x02a11030},
10647 {0x1a, 0x02a11040},
10648 {0x1b, 0x01014020},
10649 {0x21, 0x0221101f}),
10650 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION,
10651 {0x14, 0x90170110},
10652 {0x19, 0x02a11030},
10653 {0x1a, 0x02a11040},
10654 {0x1b, 0x01011020},
10655 {0x21, 0x0221101f}),
10656 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION,
10657 {0x14, 0x90170110},
10658 {0x19, 0x02a11020},
10659 {0x1a, 0x02a11030},
10660 {0x21, 0x0221101f}),
10661 SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC236_FIXUP_DELL_AIO_HEADSET_MIC,
10662 {0x21, 0x02211010}),
10663 SND_HDA_PIN_QUIRK(0x10ec0236, 0x103c, "HP", ALC256_FIXUP_HP_HEADSET_MIC,
10664 {0x14, 0x90170110},
10665 {0x19, 0x02a11020},
10666 {0x21, 0x02211030}),
10667 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL2_MIC_NO_PRESENCE,
10668 {0x14, 0x90170110},
10669 {0x21, 0x02211020}),
10670 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10671 {0x14, 0x90170130},
10672 {0x21, 0x02211040}),
10673 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10674 {0x12, 0x90a60140},
10675 {0x14, 0x90170110},
10676 {0x21, 0x02211020}),
10677 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10678 {0x12, 0x90a60160},
10679 {0x14, 0x90170120},
10680 {0x21, 0x02211030}),
10681 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10682 {0x14, 0x90170110},
10683 {0x1b, 0x02011020},
10684 {0x21, 0x0221101f}),
10685 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10686 {0x14, 0x90170110},
10687 {0x1b, 0x01011020},
10688 {0x21, 0x0221101f}),
10689 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10690 {0x14, 0x90170130},
10691 {0x1b, 0x01014020},
10692 {0x21, 0x0221103f}),
10693 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10694 {0x14, 0x90170130},
10695 {0x1b, 0x01011020},
10696 {0x21, 0x0221103f}),
10697 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10698 {0x14, 0x90170130},
10699 {0x1b, 0x02011020},
10700 {0x21, 0x0221103f}),
10701 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10702 {0x14, 0x90170150},
10703 {0x1b, 0x02011020},
10704 {0x21, 0x0221105f}),
10705 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10706 {0x14, 0x90170110},
10707 {0x1b, 0x01014020},
10708 {0x21, 0x0221101f}),
10709 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10710 {0x12, 0x90a60160},
10711 {0x14, 0x90170120},
10712 {0x17, 0x90170140},
10713 {0x21, 0x0321102f}),
10714 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10715 {0x12, 0x90a60160},
10716 {0x14, 0x90170130},
10717 {0x21, 0x02211040}),
10718 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10719 {0x12, 0x90a60160},
10720 {0x14, 0x90170140},
10721 {0x21, 0x02211050}),
10722 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10723 {0x12, 0x90a60170},
10724 {0x14, 0x90170120},
10725 {0x21, 0x02211030}),
10726 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10727 {0x12, 0x90a60170},
10728 {0x14, 0x90170130},
10729 {0x21, 0x02211040}),
10730 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10731 {0x12, 0x90a60170},
10732 {0x14, 0x90171130},
10733 {0x21, 0x02211040}),
10734 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10735 {0x12, 0x90a60170},
10736 {0x14, 0x90170140},
10737 {0x21, 0x02211050}),
10738 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell Inspiron 5548", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10739 {0x12, 0x90a60180},
10740 {0x14, 0x90170130},
10741 {0x21, 0x02211040}),
10742 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell Inspiron 5565", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10743 {0x12, 0x90a60180},
10744 {0x14, 0x90170120},
10745 {0x21, 0x02211030}),
10746 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10747 {0x1b, 0x01011020},
10748 {0x21, 0x02211010}),
10749 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC,
10750 {0x14, 0x90170110},
10751 {0x1b, 0x90a70130},
10752 {0x21, 0x04211020}),
10753 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC,
10754 {0x14, 0x90170110},
10755 {0x1b, 0x90a70130},
10756 {0x21, 0x03211020}),
10757 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
10758 {0x12, 0x90a60130},
10759 {0x14, 0x90170110},
10760 {0x21, 0x03211020}),
10761 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
10762 {0x12, 0x90a60130},
10763 {0x14, 0x90170110},
10764 {0x21, 0x04211020}),
10765 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
10766 {0x1a, 0x90a70130},
10767 {0x1b, 0x90170110},
10768 {0x21, 0x03211020}),
10769 SND_HDA_PIN_QUIRK(0x10ec0256, 0x103c, "HP", ALC256_FIXUP_HP_HEADSET_MIC,
10770 {0x14, 0x90170110},
10771 {0x19, 0x02a11020},
10772 {0x21, 0x0221101f}),
10773 SND_HDA_PIN_QUIRK(0x10ec0274, 0x103c, "HP", ALC274_FIXUP_HP_HEADSET_MIC,
10774 {0x17, 0x90170110},
10775 {0x19, 0x03a11030},
10776 {0x21, 0x03211020}),
10777 SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC280_FIXUP_HP_GPIO4,
10778 {0x12, 0x90a60130},
10779 {0x14, 0x90170110},
10780 {0x15, 0x0421101f},
10781 {0x1a, 0x04a11020}),
10782 SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED,
10783 {0x12, 0x90a60140},
10784 {0x14, 0x90170110},
10785 {0x15, 0x0421101f},
10786 {0x18, 0x02811030},
10787 {0x1a, 0x04a1103f},
10788 {0x1b, 0x02011020}),
10789 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP 15 Touchsmart", ALC269_FIXUP_HP_MUTE_LED_MIC1,
10790 ALC282_STANDARD_PINS,
10791 {0x12, 0x99a30130},
10792 {0x19, 0x03a11020},
10793 {0x21, 0x0321101f}),
10794 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
10795 ALC282_STANDARD_PINS,
10796 {0x12, 0x99a30130},
10797 {0x19, 0x03a11020},
10798 {0x21, 0x03211040}),
10799 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
10800 ALC282_STANDARD_PINS,
10801 {0x12, 0x99a30130},
10802 {0x19, 0x03a11030},
10803 {0x21, 0x03211020}),
10804 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
10805 ALC282_STANDARD_PINS,
10806 {0x12, 0x99a30130},
10807 {0x19, 0x04a11020},
10808 {0x21, 0x0421101f}),
10809 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED,
10810 ALC282_STANDARD_PINS,
10811 {0x12, 0x90a60140},
10812 {0x19, 0x04a11030},
10813 {0x21, 0x04211020}),
10814 SND_HDA_PIN_QUIRK(0x10ec0282, 0x1025, "Acer", ALC282_FIXUP_ACER_DISABLE_LINEOUT,
10815 ALC282_STANDARD_PINS,
10816 {0x12, 0x90a609c0},
10817 {0x18, 0x03a11830},
10818 {0x19, 0x04a19831},
10819 {0x1a, 0x0481303f},
10820 {0x1b, 0x04211020},
10821 {0x21, 0x0321101f}),
10822 SND_HDA_PIN_QUIRK(0x10ec0282, 0x1025, "Acer", ALC282_FIXUP_ACER_DISABLE_LINEOUT,
10823 ALC282_STANDARD_PINS,
10824 {0x12, 0x90a60940},
10825 {0x18, 0x03a11830},
10826 {0x19, 0x04a19831},
10827 {0x1a, 0x0481303f},
10828 {0x1b, 0x04211020},
10829 {0x21, 0x0321101f}),
10830 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
10831 ALC282_STANDARD_PINS,
10832 {0x12, 0x90a60130},
10833 {0x21, 0x0321101f}),
10834 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
10835 {0x12, 0x90a60160},
10836 {0x14, 0x90170120},
10837 {0x21, 0x02211030}),
10838 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
10839 ALC282_STANDARD_PINS,
10840 {0x12, 0x90a60130},
10841 {0x19, 0x03a11020},
10842 {0x21, 0x0321101f}),
10843 SND_HDA_PIN_QUIRK(0x10ec0285, 0x17aa, "Lenovo", ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE,
10844 {0x12, 0x90a60130},
10845 {0x14, 0x90170110},
10846 {0x19, 0x04a11040},
10847 {0x21, 0x04211020}),
10848 SND_HDA_PIN_QUIRK(0x10ec0285, 0x17aa, "Lenovo", ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE,
10849 {0x14, 0x90170110},
10850 {0x19, 0x04a11040},
10851 {0x1d, 0x40600001},
10852 {0x21, 0x04211020}),
10853 SND_HDA_PIN_QUIRK(0x10ec0285, 0x17aa, "Lenovo", ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK,
10854 {0x14, 0x90170110},
10855 {0x19, 0x04a11040},
10856 {0x21, 0x04211020}),
10857 SND_HDA_PIN_QUIRK(0x10ec0287, 0x17aa, "Lenovo", ALC285_FIXUP_THINKPAD_HEADSET_JACK,
10858 {0x14, 0x90170110},
10859 {0x17, 0x90170111},
10860 {0x19, 0x03a11030},
10861 {0x21, 0x03211020}),
10862 SND_HDA_PIN_QUIRK(0x10ec0287, 0x17aa, "Lenovo", ALC287_FIXUP_THINKPAD_I2S_SPK,
10863 {0x17, 0x90170110},
10864 {0x19, 0x03a11030},
10865 {0x21, 0x03211020}),
10866 SND_HDA_PIN_QUIRK(0x10ec0287, 0x17aa, "Lenovo", ALC287_FIXUP_THINKPAD_I2S_SPK,
10867 {0x17, 0x90170110}, /* 0x231f with RTK I2S AMP */
10868 {0x19, 0x04a11040},
10869 {0x21, 0x04211020}),
10870 SND_HDA_PIN_QUIRK(0x10ec0286, 0x1025, "Acer", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE,
10871 {0x12, 0x90a60130},
10872 {0x17, 0x90170110},
10873 {0x21, 0x02211020}),
10874 SND_HDA_PIN_QUIRK(0x10ec0288, 0x1028, "Dell", ALC288_FIXUP_DELL1_MIC_NO_PRESENCE,
10875 {0x12, 0x90a60120},
10876 {0x14, 0x90170110},
10877 {0x21, 0x0321101f}),
10878 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
10879 ALC290_STANDARD_PINS,
10880 {0x15, 0x04211040},
10881 {0x18, 0x90170112},
10882 {0x1a, 0x04a11020}),
10883 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
10884 ALC290_STANDARD_PINS,
10885 {0x15, 0x04211040},
10886 {0x18, 0x90170110},
10887 {0x1a, 0x04a11020}),
10888 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
10889 ALC290_STANDARD_PINS,
10890 {0x15, 0x0421101f},
10891 {0x1a, 0x04a11020}),
10892 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
10893 ALC290_STANDARD_PINS,
10894 {0x15, 0x04211020},
10895 {0x1a, 0x04a11040}),
10896 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
10897 ALC290_STANDARD_PINS,
10898 {0x14, 0x90170110},
10899 {0x15, 0x04211020},
10900 {0x1a, 0x04a11040}),
10901 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
10902 ALC290_STANDARD_PINS,
10903 {0x14, 0x90170110},
10904 {0x15, 0x04211020},
10905 {0x1a, 0x04a11020}),
10906 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
10907 ALC290_STANDARD_PINS,
10908 {0x14, 0x90170110},
10909 {0x15, 0x0421101f},
10910 {0x1a, 0x04a11020}),
10911 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
10912 ALC292_STANDARD_PINS,
10913 {0x12, 0x90a60140},
10914 {0x16, 0x01014020},
10915 {0x19, 0x01a19030}),
10916 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
10917 ALC292_STANDARD_PINS,
10918 {0x12, 0x90a60140},
10919 {0x16, 0x01014020},
10920 {0x18, 0x02a19031},
10921 {0x19, 0x01a1903e}),
10922 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
10923 ALC292_STANDARD_PINS,
10924 {0x12, 0x90a60140}),
10925 SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
10926 ALC292_STANDARD_PINS,
10927 {0x13, 0x90a60140},
10928 {0x16, 0x21014020},
10929 {0x19, 0x21a19030}),
10930 SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
10931 ALC292_STANDARD_PINS,
10932 {0x13, 0x90a60140}),
10933 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_HPE,
10934 {0x17, 0x90170110},
10935 {0x21, 0x04211020}),
10936 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_MIC,
10937 {0x14, 0x90170110},
10938 {0x1b, 0x90a70130},
10939 {0x21, 0x04211020}),
10940 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK,
10941 {0x12, 0x90a60130},
10942 {0x17, 0x90170110},
10943 {0x21, 0x03211020}),
10944 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK,
10945 {0x12, 0x90a60130},
10946 {0x17, 0x90170110},
10947 {0x21, 0x04211020}),
10948 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK,
10949 {0x12, 0x90a60130},
10950 {0x17, 0x90170110},
10951 {0x21, 0x03211020}),
10952 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE,
10953 {0x12, 0x90a60120},
10954 {0x17, 0x90170110},
10955 {0x21, 0x04211030}),
10956 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE,
10957 {0x12, 0x90a60130},
10958 {0x17, 0x90170110},
10959 {0x21, 0x03211020}),
10960 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE,
10961 {0x12, 0x90a60130},
10962 {0x17, 0x90170110},
10963 {0x21, 0x03211020}),
10964 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
10965 ALC298_STANDARD_PINS,
10966 {0x17, 0x90170110}),
10967 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
10968 ALC298_STANDARD_PINS,
10969 {0x17, 0x90170140}),
10970 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
10971 ALC298_STANDARD_PINS,
10972 {0x17, 0x90170150}),
10973 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_SPK_VOLUME,
10974 {0x12, 0xb7a60140},
10975 {0x13, 0xb7a60150},
10976 {0x17, 0x90170110},
10977 {0x1a, 0x03011020},
10978 {0x21, 0x03211030}),
10979 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_ALIENWARE_MIC_NO_PRESENCE,
10980 {0x12, 0xb7a60140},
10981 {0x17, 0x90170110},
10982 {0x1a, 0x03a11030},
10983 {0x21, 0x03211020}),
10984 SND_HDA_PIN_QUIRK(0x10ec0299, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
10985 ALC225_STANDARD_PINS,
10986 {0x12, 0xb7a60130},
10987 {0x17, 0x90170110}),
10988 SND_HDA_PIN_QUIRK(0x10ec0623, 0x17aa, "Lenovo", ALC283_FIXUP_HEADSET_MIC,
10989 {0x14, 0x01014010},
10990 {0x17, 0x90170120},
10991 {0x18, 0x02a11030},
10992 {0x19, 0x02a1103f},
10993 {0x21, 0x0221101f}),
10994 {}
10995};
10996
10997/* This is the fallback pin_fixup_tbl for alc269 family, to make the tbl match
10998 * more machines, don't need to match all valid pins, just need to match
10999 * all the pins defined in the tbl. Just because of this reason, it is possible
11000 * that a single machine matches multiple tbls, so there is one limitation:
11001 * at most one tbl is allowed to define for the same vendor and same codec
11002 */
11003static const struct snd_hda_pin_quirk alc269_fallback_pin_fixup_tbl[] = {
11004 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1025, "Acer", ALC2XX_FIXUP_HEADSET_MIC,
11005 {0x19, 0x40000000}),
11006 SND_HDA_PIN_QUIRK(0x10ec0289, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
11007 {0x19, 0x40000000},
11008 {0x1b, 0x40000000}),
11009 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
11010 {0x19, 0x40000000},
11011 {0x1b, 0x40000000}),
11012 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
11013 {0x19, 0x40000000},
11014 {0x1a, 0x40000000}),
11015 SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
11016 {0x19, 0x40000000},
11017 {0x1a, 0x40000000}),
11018 SND_HDA_PIN_QUIRK(0x10ec0274, 0x1028, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB,
11019 {0x19, 0x40000000},
11020 {0x1a, 0x40000000}),
11021 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC2XX_FIXUP_HEADSET_MIC,
11022 {0x19, 0x40000000}),
11023 {}
11024};
11025
11026static void alc269_fill_coef(struct hda_codec *codec)
11027{
11028 struct alc_spec *spec = codec->spec;
11029 int val;
11030
11031 if (spec->codec_variant != ALC269_TYPE_ALC269VB)
11032 return;
11033
11034 if ((alc_get_coef0(codec) & 0x00ff) < 0x015) {
11035 alc_write_coef_idx(codec, 0xf, 0x960b);
11036 alc_write_coef_idx(codec, 0xe, 0x8817);
11037 }
11038
11039 if ((alc_get_coef0(codec) & 0x00ff) == 0x016) {
11040 alc_write_coef_idx(codec, 0xf, 0x960b);
11041 alc_write_coef_idx(codec, 0xe, 0x8814);
11042 }
11043
11044 if ((alc_get_coef0(codec) & 0x00ff) == 0x017) {
11045 /* Power up output pin */
11046 alc_update_coef_idx(codec, 0x04, 0, 1<<11);
11047 }
11048
11049 if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
11050 val = alc_read_coef_idx(codec, 0xd);
11051 if (val != -1 && (val & 0x0c00) >> 10 != 0x1) {
11052 /* Capless ramp up clock control */
11053 alc_write_coef_idx(codec, 0xd, val | (1<<10));
11054 }
11055 val = alc_read_coef_idx(codec, 0x17);
11056 if (val != -1 && (val & 0x01c0) >> 6 != 0x4) {
11057 /* Class D power on reset */
11058 alc_write_coef_idx(codec, 0x17, val | (1<<7));
11059 }
11060 }
11061
11062 /* HP */
11063 alc_update_coef_idx(codec, 0x4, 0, 1<<11);
11064}
11065
11066/*
11067 */
11068static int patch_alc269(struct hda_codec *codec)
11069{
11070 struct alc_spec *spec;
11071 int err;
11072
11073 err = alc_alloc_spec(codec, 0x0b);
11074 if (err < 0)
11075 return err;
11076
11077 spec = codec->spec;
11078 spec->gen.shared_mic_vref_pin = 0x18;
11079 codec->power_save_node = 0;
11080 spec->en_3kpull_low = true;
11081
11082#ifdef CONFIG_PM
11083 codec->patch_ops.suspend = alc269_suspend;
11084 codec->patch_ops.resume = alc269_resume;
11085#endif
11086 spec->shutup = alc_default_shutup;
11087 spec->init_hook = alc_default_init;
11088
11089 switch (codec->core.vendor_id) {
11090 case 0x10ec0269:
11091 spec->codec_variant = ALC269_TYPE_ALC269VA;
11092 switch (alc_get_coef0(codec) & 0x00f0) {
11093 case 0x0010:
11094 if (codec->bus->pci &&
11095 codec->bus->pci->subsystem_vendor == 0x1025 &&
11096 spec->cdefine.platform_type == 1)
11097 err = alc_codec_rename(codec, "ALC271X");
11098 spec->codec_variant = ALC269_TYPE_ALC269VB;
11099 break;
11100 case 0x0020:
11101 if (codec->bus->pci &&
11102 codec->bus->pci->subsystem_vendor == 0x17aa &&
11103 codec->bus->pci->subsystem_device == 0x21f3)
11104 err = alc_codec_rename(codec, "ALC3202");
11105 spec->codec_variant = ALC269_TYPE_ALC269VC;
11106 break;
11107 case 0x0030:
11108 spec->codec_variant = ALC269_TYPE_ALC269VD;
11109 break;
11110 default:
11111 alc_fix_pll_init(codec, 0x20, 0x04, 15);
11112 }
11113 if (err < 0)
11114 goto error;
11115 spec->shutup = alc269_shutup;
11116 spec->init_hook = alc269_fill_coef;
11117 alc269_fill_coef(codec);
11118 break;
11119
11120 case 0x10ec0280:
11121 case 0x10ec0290:
11122 spec->codec_variant = ALC269_TYPE_ALC280;
11123 break;
11124 case 0x10ec0282:
11125 spec->codec_variant = ALC269_TYPE_ALC282;
11126 spec->shutup = alc282_shutup;
11127 spec->init_hook = alc282_init;
11128 break;
11129 case 0x10ec0233:
11130 case 0x10ec0283:
11131 spec->codec_variant = ALC269_TYPE_ALC283;
11132 spec->shutup = alc283_shutup;
11133 spec->init_hook = alc283_init;
11134 break;
11135 case 0x10ec0284:
11136 case 0x10ec0292:
11137 spec->codec_variant = ALC269_TYPE_ALC284;
11138 break;
11139 case 0x10ec0293:
11140 spec->codec_variant = ALC269_TYPE_ALC293;
11141 break;
11142 case 0x10ec0286:
11143 case 0x10ec0288:
11144 spec->codec_variant = ALC269_TYPE_ALC286;
11145 break;
11146 case 0x10ec0298:
11147 spec->codec_variant = ALC269_TYPE_ALC298;
11148 break;
11149 case 0x10ec0235:
11150 case 0x10ec0255:
11151 spec->codec_variant = ALC269_TYPE_ALC255;
11152 spec->shutup = alc256_shutup;
11153 spec->init_hook = alc256_init;
11154 break;
11155 case 0x10ec0230:
11156 case 0x10ec0236:
11157 case 0x10ec0256:
11158 case 0x19e58326:
11159 spec->codec_variant = ALC269_TYPE_ALC256;
11160 spec->shutup = alc256_shutup;
11161 spec->init_hook = alc256_init;
11162 spec->gen.mixer_nid = 0; /* ALC256 does not have any loopback mixer path */
11163 if (codec->core.vendor_id == 0x10ec0236 &&
11164 codec->bus->pci->vendor != PCI_VENDOR_ID_AMD)
11165 spec->en_3kpull_low = false;
11166 break;
11167 case 0x10ec0257:
11168 spec->codec_variant = ALC269_TYPE_ALC257;
11169 spec->shutup = alc256_shutup;
11170 spec->init_hook = alc256_init;
11171 spec->gen.mixer_nid = 0;
11172 spec->en_3kpull_low = false;
11173 break;
11174 case 0x10ec0215:
11175 case 0x10ec0245:
11176 case 0x10ec0285:
11177 case 0x10ec0289:
11178 if (alc_get_coef0(codec) & 0x0010)
11179 spec->codec_variant = ALC269_TYPE_ALC245;
11180 else
11181 spec->codec_variant = ALC269_TYPE_ALC215;
11182 spec->shutup = alc225_shutup;
11183 spec->init_hook = alc225_init;
11184 spec->gen.mixer_nid = 0;
11185 break;
11186 case 0x10ec0225:
11187 case 0x10ec0295:
11188 case 0x10ec0299:
11189 spec->codec_variant = ALC269_TYPE_ALC225;
11190 spec->shutup = alc225_shutup;
11191 spec->init_hook = alc225_init;
11192 spec->gen.mixer_nid = 0; /* no loopback on ALC225, ALC295 and ALC299 */
11193 break;
11194 case 0x10ec0287:
11195 spec->codec_variant = ALC269_TYPE_ALC287;
11196 spec->shutup = alc225_shutup;
11197 spec->init_hook = alc225_init;
11198 spec->gen.mixer_nid = 0; /* no loopback on ALC287 */
11199 break;
11200 case 0x10ec0234:
11201 case 0x10ec0274:
11202 case 0x10ec0294:
11203 spec->codec_variant = ALC269_TYPE_ALC294;
11204 spec->gen.mixer_nid = 0; /* ALC2x4 does not have any loopback mixer path */
11205 alc_update_coef_idx(codec, 0x6b, 0x0018, (1<<4) | (1<<3)); /* UAJ MIC Vref control by verb */
11206 spec->init_hook = alc294_init;
11207 break;
11208 case 0x10ec0300:
11209 spec->codec_variant = ALC269_TYPE_ALC300;
11210 spec->gen.mixer_nid = 0; /* no loopback on ALC300 */
11211 break;
11212 case 0x10ec0623:
11213 spec->codec_variant = ALC269_TYPE_ALC623;
11214 break;
11215 case 0x10ec0700:
11216 case 0x10ec0701:
11217 case 0x10ec0703:
11218 case 0x10ec0711:
11219 spec->codec_variant = ALC269_TYPE_ALC700;
11220 spec->gen.mixer_nid = 0; /* ALC700 does not have any loopback mixer path */
11221 alc_update_coef_idx(codec, 0x4a, 1 << 15, 0); /* Combo jack auto trigger control */
11222 spec->init_hook = alc294_init;
11223 break;
11224
11225 }
11226
11227 if (snd_hda_codec_read(codec, 0x51, 0, AC_VERB_PARAMETERS, 0) == 0x10ec5505) {
11228 spec->has_alc5505_dsp = 1;
11229 spec->init_hook = alc5505_dsp_init;
11230 }
11231
11232 alc_pre_init(codec);
11233
11234 snd_hda_pick_fixup(codec, alc269_fixup_models,
11235 alc269_fixup_tbl, alc269_fixups);
11236 /* FIXME: both TX300 and ROG Strix G17 have the same SSID, and
11237 * the quirk breaks the latter (bko#214101).
11238 * Clear the wrong entry.
11239 */
11240 if (codec->fixup_id == ALC282_FIXUP_ASUS_TX300 &&
11241 codec->core.vendor_id == 0x10ec0294) {
11242 codec_dbg(codec, "Clear wrong fixup for ASUS ROG Strix G17\n");
11243 codec->fixup_id = HDA_FIXUP_ID_NOT_SET;
11244 }
11245
11246 snd_hda_pick_pin_fixup(codec, alc269_pin_fixup_tbl, alc269_fixups, true);
11247 snd_hda_pick_pin_fixup(codec, alc269_fallback_pin_fixup_tbl, alc269_fixups, false);
11248 snd_hda_pick_fixup(codec, NULL, alc269_fixup_vendor_tbl,
11249 alc269_fixups);
11250 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
11251
11252 alc_auto_parse_customize_define(codec);
11253
11254 if (has_cdefine_beep(codec))
11255 spec->gen.beep_nid = 0x01;
11256
11257 /* automatic parse from the BIOS config */
11258 err = alc269_parse_auto_config(codec);
11259 if (err < 0)
11260 goto error;
11261
11262 if (!spec->gen.no_analog && spec->gen.beep_nid && spec->gen.mixer_nid) {
11263 err = set_beep_amp(spec, spec->gen.mixer_nid, 0x04, HDA_INPUT);
11264 if (err < 0)
11265 goto error;
11266 }
11267
11268 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
11269
11270 return 0;
11271
11272 error:
11273 alc_free(codec);
11274 return err;
11275}
11276
11277/*
11278 * ALC861
11279 */
11280
11281static int alc861_parse_auto_config(struct hda_codec *codec)
11282{
11283 static const hda_nid_t alc861_ignore[] = { 0x1d, 0 };
11284 static const hda_nid_t alc861_ssids[] = { 0x0e, 0x0f, 0x0b, 0 };
11285 return alc_parse_auto_config(codec, alc861_ignore, alc861_ssids);
11286}
11287
11288/* Pin config fixes */
11289enum {
11290 ALC861_FIXUP_FSC_AMILO_PI1505,
11291 ALC861_FIXUP_AMP_VREF_0F,
11292 ALC861_FIXUP_NO_JACK_DETECT,
11293 ALC861_FIXUP_ASUS_A6RP,
11294 ALC660_FIXUP_ASUS_W7J,
11295};
11296
11297/* On some laptops, VREF of pin 0x0f is abused for controlling the main amp */
11298static void alc861_fixup_asus_amp_vref_0f(struct hda_codec *codec,
11299 const struct hda_fixup *fix, int action)
11300{
11301 struct alc_spec *spec = codec->spec;
11302 unsigned int val;
11303
11304 if (action != HDA_FIXUP_ACT_INIT)
11305 return;
11306 val = snd_hda_codec_get_pin_target(codec, 0x0f);
11307 if (!(val & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN)))
11308 val |= AC_PINCTL_IN_EN;
11309 val |= AC_PINCTL_VREF_50;
11310 snd_hda_set_pin_ctl(codec, 0x0f, val);
11311 spec->gen.keep_vref_in_automute = 1;
11312}
11313
11314/* suppress the jack-detection */
11315static void alc_fixup_no_jack_detect(struct hda_codec *codec,
11316 const struct hda_fixup *fix, int action)
11317{
11318 if (action == HDA_FIXUP_ACT_PRE_PROBE)
11319 codec->no_jack_detect = 1;
11320}
11321
11322static const struct hda_fixup alc861_fixups[] = {
11323 [ALC861_FIXUP_FSC_AMILO_PI1505] = {
11324 .type = HDA_FIXUP_PINS,
11325 .v.pins = (const struct hda_pintbl[]) {
11326 { 0x0b, 0x0221101f }, /* HP */
11327 { 0x0f, 0x90170310 }, /* speaker */
11328 { }
11329 }
11330 },
11331 [ALC861_FIXUP_AMP_VREF_0F] = {
11332 .type = HDA_FIXUP_FUNC,
11333 .v.func = alc861_fixup_asus_amp_vref_0f,
11334 },
11335 [ALC861_FIXUP_NO_JACK_DETECT] = {
11336 .type = HDA_FIXUP_FUNC,
11337 .v.func = alc_fixup_no_jack_detect,
11338 },
11339 [ALC861_FIXUP_ASUS_A6RP] = {
11340 .type = HDA_FIXUP_FUNC,
11341 .v.func = alc861_fixup_asus_amp_vref_0f,
11342 .chained = true,
11343 .chain_id = ALC861_FIXUP_NO_JACK_DETECT,
11344 },
11345 [ALC660_FIXUP_ASUS_W7J] = {
11346 .type = HDA_FIXUP_VERBS,
11347 .v.verbs = (const struct hda_verb[]) {
11348 /* ASUS W7J needs a magic pin setup on unused NID 0x10
11349 * for enabling outputs
11350 */
11351 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
11352 { }
11353 },
11354 }
11355};
11356
11357static const struct snd_pci_quirk alc861_fixup_tbl[] = {
11358 SND_PCI_QUIRK(0x1043, 0x1253, "ASUS W7J", ALC660_FIXUP_ASUS_W7J),
11359 SND_PCI_QUIRK(0x1043, 0x1263, "ASUS Z35HL", ALC660_FIXUP_ASUS_W7J),
11360 SND_PCI_QUIRK(0x1043, 0x1393, "ASUS A6Rp", ALC861_FIXUP_ASUS_A6RP),
11361 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS laptop", ALC861_FIXUP_AMP_VREF_0F),
11362 SND_PCI_QUIRK(0x1462, 0x7254, "HP DX2200", ALC861_FIXUP_NO_JACK_DETECT),
11363 SND_PCI_QUIRK_VENDOR(0x1584, "Haier/Uniwill", ALC861_FIXUP_AMP_VREF_0F),
11364 SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", ALC861_FIXUP_FSC_AMILO_PI1505),
11365 {}
11366};
11367
11368/*
11369 */
11370static int patch_alc861(struct hda_codec *codec)
11371{
11372 struct alc_spec *spec;
11373 int err;
11374
11375 err = alc_alloc_spec(codec, 0x15);
11376 if (err < 0)
11377 return err;
11378
11379 spec = codec->spec;
11380 if (has_cdefine_beep(codec))
11381 spec->gen.beep_nid = 0x23;
11382
11383#ifdef CONFIG_PM
11384 spec->power_hook = alc_power_eapd;
11385#endif
11386
11387 alc_pre_init(codec);
11388
11389 snd_hda_pick_fixup(codec, NULL, alc861_fixup_tbl, alc861_fixups);
11390 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
11391
11392 /* automatic parse from the BIOS config */
11393 err = alc861_parse_auto_config(codec);
11394 if (err < 0)
11395 goto error;
11396
11397 if (!spec->gen.no_analog) {
11398 err = set_beep_amp(spec, 0x23, 0, HDA_OUTPUT);
11399 if (err < 0)
11400 goto error;
11401 }
11402
11403 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
11404
11405 return 0;
11406
11407 error:
11408 alc_free(codec);
11409 return err;
11410}
11411
11412/*
11413 * ALC861-VD support
11414 *
11415 * Based on ALC882
11416 *
11417 * In addition, an independent DAC
11418 */
11419static int alc861vd_parse_auto_config(struct hda_codec *codec)
11420{
11421 static const hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
11422 static const hda_nid_t alc861vd_ssids[] = { 0x15, 0x1b, 0x14, 0 };
11423 return alc_parse_auto_config(codec, alc861vd_ignore, alc861vd_ssids);
11424}
11425
11426enum {
11427 ALC660VD_FIX_ASUS_GPIO1,
11428 ALC861VD_FIX_DALLAS,
11429};
11430
11431/* exclude VREF80 */
11432static void alc861vd_fixup_dallas(struct hda_codec *codec,
11433 const struct hda_fixup *fix, int action)
11434{
11435 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
11436 snd_hda_override_pin_caps(codec, 0x18, 0x00000734);
11437 snd_hda_override_pin_caps(codec, 0x19, 0x0000073c);
11438 }
11439}
11440
11441/* reset GPIO1 */
11442static void alc660vd_fixup_asus_gpio1(struct hda_codec *codec,
11443 const struct hda_fixup *fix, int action)
11444{
11445 struct alc_spec *spec = codec->spec;
11446
11447 if (action == HDA_FIXUP_ACT_PRE_PROBE)
11448 spec->gpio_mask |= 0x02;
11449 alc_fixup_gpio(codec, action, 0x01);
11450}
11451
11452static const struct hda_fixup alc861vd_fixups[] = {
11453 [ALC660VD_FIX_ASUS_GPIO1] = {
11454 .type = HDA_FIXUP_FUNC,
11455 .v.func = alc660vd_fixup_asus_gpio1,
11456 },
11457 [ALC861VD_FIX_DALLAS] = {
11458 .type = HDA_FIXUP_FUNC,
11459 .v.func = alc861vd_fixup_dallas,
11460 },
11461};
11462
11463static const struct snd_pci_quirk alc861vd_fixup_tbl[] = {
11464 SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_FIX_DALLAS),
11465 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1),
11466 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_FIX_DALLAS),
11467 {}
11468};
11469
11470/*
11471 */
11472static int patch_alc861vd(struct hda_codec *codec)
11473{
11474 struct alc_spec *spec;
11475 int err;
11476
11477 err = alc_alloc_spec(codec, 0x0b);
11478 if (err < 0)
11479 return err;
11480
11481 spec = codec->spec;
11482 if (has_cdefine_beep(codec))
11483 spec->gen.beep_nid = 0x23;
11484
11485 spec->shutup = alc_eapd_shutup;
11486
11487 alc_pre_init(codec);
11488
11489 snd_hda_pick_fixup(codec, NULL, alc861vd_fixup_tbl, alc861vd_fixups);
11490 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
11491
11492 /* automatic parse from the BIOS config */
11493 err = alc861vd_parse_auto_config(codec);
11494 if (err < 0)
11495 goto error;
11496
11497 if (!spec->gen.no_analog) {
11498 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
11499 if (err < 0)
11500 goto error;
11501 }
11502
11503 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
11504
11505 return 0;
11506
11507 error:
11508 alc_free(codec);
11509 return err;
11510}
11511
11512/*
11513 * ALC662 support
11514 *
11515 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
11516 * configuration. Each pin widget can choose any input DACs and a mixer.
11517 * Each ADC is connected from a mixer of all inputs. This makes possible
11518 * 6-channel independent captures.
11519 *
11520 * In addition, an independent DAC for the multi-playback (not used in this
11521 * driver yet).
11522 */
11523
11524/*
11525 * BIOS auto configuration
11526 */
11527
11528static int alc662_parse_auto_config(struct hda_codec *codec)
11529{
11530 static const hda_nid_t alc662_ignore[] = { 0x1d, 0 };
11531 static const hda_nid_t alc663_ssids[] = { 0x15, 0x1b, 0x14, 0x21 };
11532 static const hda_nid_t alc662_ssids[] = { 0x15, 0x1b, 0x14, 0 };
11533 const hda_nid_t *ssids;
11534
11535 if (codec->core.vendor_id == 0x10ec0272 || codec->core.vendor_id == 0x10ec0663 ||
11536 codec->core.vendor_id == 0x10ec0665 || codec->core.vendor_id == 0x10ec0670 ||
11537 codec->core.vendor_id == 0x10ec0671)
11538 ssids = alc663_ssids;
11539 else
11540 ssids = alc662_ssids;
11541 return alc_parse_auto_config(codec, alc662_ignore, ssids);
11542}
11543
11544static void alc272_fixup_mario(struct hda_codec *codec,
11545 const struct hda_fixup *fix, int action)
11546{
11547 if (action != HDA_FIXUP_ACT_PRE_PROBE)
11548 return;
11549 if (snd_hda_override_amp_caps(codec, 0x2, HDA_OUTPUT,
11550 (0x3b << AC_AMPCAP_OFFSET_SHIFT) |
11551 (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT) |
11552 (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT) |
11553 (0 << AC_AMPCAP_MUTE_SHIFT)))
11554 codec_warn(codec, "failed to override amp caps for NID 0x2\n");
11555}
11556
11557static const struct snd_pcm_chmap_elem asus_pcm_2_1_chmaps[] = {
11558 { .channels = 2,
11559 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } },
11560 { .channels = 4,
11561 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
11562 SNDRV_CHMAP_NA, SNDRV_CHMAP_LFE } }, /* LFE only on right */
11563 { }
11564};
11565
11566/* override the 2.1 chmap */
11567static void alc_fixup_bass_chmap(struct hda_codec *codec,
11568 const struct hda_fixup *fix, int action)
11569{
11570 if (action == HDA_FIXUP_ACT_BUILD) {
11571 struct alc_spec *spec = codec->spec;
11572 spec->gen.pcm_rec[0]->stream[0].chmap = asus_pcm_2_1_chmaps;
11573 }
11574}
11575
11576/* avoid D3 for keeping GPIO up */
11577static unsigned int gpio_led_power_filter(struct hda_codec *codec,
11578 hda_nid_t nid,
11579 unsigned int power_state)
11580{
11581 struct alc_spec *spec = codec->spec;
11582 if (nid == codec->core.afg && power_state == AC_PWRST_D3 && spec->gpio_data)
11583 return AC_PWRST_D0;
11584 return power_state;
11585}
11586
11587static void alc662_fixup_led_gpio1(struct hda_codec *codec,
11588 const struct hda_fixup *fix, int action)
11589{
11590 struct alc_spec *spec = codec->spec;
11591
11592 alc_fixup_hp_gpio_led(codec, action, 0x01, 0);
11593 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
11594 spec->mute_led_polarity = 1;
11595 codec->power_filter = gpio_led_power_filter;
11596 }
11597}
11598
11599static void alc662_usi_automute_hook(struct hda_codec *codec,
11600 struct hda_jack_callback *jack)
11601{
11602 struct alc_spec *spec = codec->spec;
11603 int vref;
11604 msleep(200);
11605 snd_hda_gen_hp_automute(codec, jack);
11606
11607 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
11608 msleep(100);
11609 snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
11610 vref);
11611}
11612
11613static void alc662_fixup_usi_headset_mic(struct hda_codec *codec,
11614 const struct hda_fixup *fix, int action)
11615{
11616 struct alc_spec *spec = codec->spec;
11617 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
11618 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
11619 spec->gen.hp_automute_hook = alc662_usi_automute_hook;
11620 }
11621}
11622
11623static void alc662_aspire_ethos_mute_speakers(struct hda_codec *codec,
11624 struct hda_jack_callback *cb)
11625{
11626 /* surround speakers at 0x1b already get muted automatically when
11627 * headphones are plugged in, but we have to mute/unmute the remaining
11628 * channels manually:
11629 * 0x15 - front left/front right
11630 * 0x18 - front center/ LFE
11631 */
11632 if (snd_hda_jack_detect_state(codec, 0x1b) == HDA_JACK_PRESENT) {
11633 snd_hda_set_pin_ctl_cache(codec, 0x15, 0);
11634 snd_hda_set_pin_ctl_cache(codec, 0x18, 0);
11635 } else {
11636 snd_hda_set_pin_ctl_cache(codec, 0x15, PIN_OUT);
11637 snd_hda_set_pin_ctl_cache(codec, 0x18, PIN_OUT);
11638 }
11639}
11640
11641static void alc662_fixup_aspire_ethos_hp(struct hda_codec *codec,
11642 const struct hda_fixup *fix, int action)
11643{
11644 /* Pin 0x1b: shared headphones jack and surround speakers */
11645 if (!is_jack_detectable(codec, 0x1b))
11646 return;
11647
11648 switch (action) {
11649 case HDA_FIXUP_ACT_PRE_PROBE:
11650 snd_hda_jack_detect_enable_callback(codec, 0x1b,
11651 alc662_aspire_ethos_mute_speakers);
11652 /* subwoofer needs an extra GPIO setting to become audible */
11653 alc_setup_gpio(codec, 0x02);
11654 break;
11655 case HDA_FIXUP_ACT_INIT:
11656 /* Make sure to start in a correct state, i.e. if
11657 * headphones have been plugged in before powering up the system
11658 */
11659 alc662_aspire_ethos_mute_speakers(codec, NULL);
11660 break;
11661 }
11662}
11663
11664static void alc671_fixup_hp_headset_mic2(struct hda_codec *codec,
11665 const struct hda_fixup *fix, int action)
11666{
11667 struct alc_spec *spec = codec->spec;
11668
11669 static const struct hda_pintbl pincfgs[] = {
11670 { 0x19, 0x02a11040 }, /* use as headset mic, with its own jack detect */
11671 { 0x1b, 0x0181304f },
11672 { }
11673 };
11674
11675 switch (action) {
11676 case HDA_FIXUP_ACT_PRE_PROBE:
11677 spec->gen.mixer_nid = 0;
11678 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
11679 snd_hda_apply_pincfgs(codec, pincfgs);
11680 break;
11681 case HDA_FIXUP_ACT_INIT:
11682 alc_write_coef_idx(codec, 0x19, 0xa054);
11683 break;
11684 }
11685}
11686
11687static void alc897_hp_automute_hook(struct hda_codec *codec,
11688 struct hda_jack_callback *jack)
11689{
11690 struct alc_spec *spec = codec->spec;
11691 int vref;
11692
11693 snd_hda_gen_hp_automute(codec, jack);
11694 vref = spec->gen.hp_jack_present ? (PIN_HP | AC_PINCTL_VREF_100) : PIN_HP;
11695 snd_hda_set_pin_ctl(codec, 0x1b, vref);
11696}
11697
11698static void alc897_fixup_lenovo_headset_mic(struct hda_codec *codec,
11699 const struct hda_fixup *fix, int action)
11700{
11701 struct alc_spec *spec = codec->spec;
11702 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
11703 spec->gen.hp_automute_hook = alc897_hp_automute_hook;
11704 spec->no_shutup_pins = 1;
11705 }
11706 if (action == HDA_FIXUP_ACT_PROBE) {
11707 snd_hda_set_pin_ctl_cache(codec, 0x1a, PIN_IN | AC_PINCTL_VREF_100);
11708 }
11709}
11710
11711static void alc897_fixup_lenovo_headset_mode(struct hda_codec *codec,
11712 const struct hda_fixup *fix, int action)
11713{
11714 struct alc_spec *spec = codec->spec;
11715
11716 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
11717 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
11718 spec->gen.hp_automute_hook = alc897_hp_automute_hook;
11719 }
11720}
11721
11722static const struct coef_fw alc668_coefs[] = {
11723 WRITE_COEF(0x01, 0xbebe), WRITE_COEF(0x02, 0xaaaa), WRITE_COEF(0x03, 0x0),
11724 WRITE_COEF(0x04, 0x0180), WRITE_COEF(0x06, 0x0), WRITE_COEF(0x07, 0x0f80),
11725 WRITE_COEF(0x08, 0x0031), WRITE_COEF(0x0a, 0x0060), WRITE_COEF(0x0b, 0x0),
11726 WRITE_COEF(0x0c, 0x7cf7), WRITE_COEF(0x0d, 0x1080), WRITE_COEF(0x0e, 0x7f7f),
11727 WRITE_COEF(0x0f, 0xcccc), WRITE_COEF(0x10, 0xddcc), WRITE_COEF(0x11, 0x0001),
11728 WRITE_COEF(0x13, 0x0), WRITE_COEF(0x14, 0x2aa0), WRITE_COEF(0x17, 0xa940),
11729 WRITE_COEF(0x19, 0x0), WRITE_COEF(0x1a, 0x0), WRITE_COEF(0x1b, 0x0),
11730 WRITE_COEF(0x1c, 0x0), WRITE_COEF(0x1d, 0x0), WRITE_COEF(0x1e, 0x7418),
11731 WRITE_COEF(0x1f, 0x0804), WRITE_COEF(0x20, 0x4200), WRITE_COEF(0x21, 0x0468),
11732 WRITE_COEF(0x22, 0x8ccc), WRITE_COEF(0x23, 0x0250), WRITE_COEF(0x24, 0x7418),
11733 WRITE_COEF(0x27, 0x0), WRITE_COEF(0x28, 0x8ccc), WRITE_COEF(0x2a, 0xff00),
11734 WRITE_COEF(0x2b, 0x8000), WRITE_COEF(0xa7, 0xff00), WRITE_COEF(0xa8, 0x8000),
11735 WRITE_COEF(0xaa, 0x2e17), WRITE_COEF(0xab, 0xa0c0), WRITE_COEF(0xac, 0x0),
11736 WRITE_COEF(0xad, 0x0), WRITE_COEF(0xae, 0x2ac6), WRITE_COEF(0xaf, 0xa480),
11737 WRITE_COEF(0xb0, 0x0), WRITE_COEF(0xb1, 0x0), WRITE_COEF(0xb2, 0x0),
11738 WRITE_COEF(0xb3, 0x0), WRITE_COEF(0xb4, 0x0), WRITE_COEF(0xb5, 0x1040),
11739 WRITE_COEF(0xb6, 0xd697), WRITE_COEF(0xb7, 0x902b), WRITE_COEF(0xb8, 0xd697),
11740 WRITE_COEF(0xb9, 0x902b), WRITE_COEF(0xba, 0xb8ba), WRITE_COEF(0xbb, 0xaaab),
11741 WRITE_COEF(0xbc, 0xaaaf), WRITE_COEF(0xbd, 0x6aaa), WRITE_COEF(0xbe, 0x1c02),
11742 WRITE_COEF(0xc0, 0x00ff), WRITE_COEF(0xc1, 0x0fa6),
11743 {}
11744};
11745
11746static void alc668_restore_default_value(struct hda_codec *codec)
11747{
11748 alc_process_coef_fw(codec, alc668_coefs);
11749}
11750
11751enum {
11752 ALC662_FIXUP_ASPIRE,
11753 ALC662_FIXUP_LED_GPIO1,
11754 ALC662_FIXUP_IDEAPAD,
11755 ALC272_FIXUP_MARIO,
11756 ALC662_FIXUP_CZC_ET26,
11757 ALC662_FIXUP_CZC_P10T,
11758 ALC662_FIXUP_SKU_IGNORE,
11759 ALC662_FIXUP_HP_RP5800,
11760 ALC662_FIXUP_ASUS_MODE1,
11761 ALC662_FIXUP_ASUS_MODE2,
11762 ALC662_FIXUP_ASUS_MODE3,
11763 ALC662_FIXUP_ASUS_MODE4,
11764 ALC662_FIXUP_ASUS_MODE5,
11765 ALC662_FIXUP_ASUS_MODE6,
11766 ALC662_FIXUP_ASUS_MODE7,
11767 ALC662_FIXUP_ASUS_MODE8,
11768 ALC662_FIXUP_NO_JACK_DETECT,
11769 ALC662_FIXUP_ZOTAC_Z68,
11770 ALC662_FIXUP_INV_DMIC,
11771 ALC662_FIXUP_DELL_MIC_NO_PRESENCE,
11772 ALC668_FIXUP_DELL_MIC_NO_PRESENCE,
11773 ALC662_FIXUP_HEADSET_MODE,
11774 ALC668_FIXUP_HEADSET_MODE,
11775 ALC662_FIXUP_BASS_MODE4_CHMAP,
11776 ALC662_FIXUP_BASS_16,
11777 ALC662_FIXUP_BASS_1A,
11778 ALC662_FIXUP_BASS_CHMAP,
11779 ALC668_FIXUP_AUTO_MUTE,
11780 ALC668_FIXUP_DELL_DISABLE_AAMIX,
11781 ALC668_FIXUP_DELL_XPS13,
11782 ALC662_FIXUP_ASUS_Nx50,
11783 ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE,
11784 ALC668_FIXUP_ASUS_Nx51,
11785 ALC668_FIXUP_MIC_COEF,
11786 ALC668_FIXUP_ASUS_G751,
11787 ALC891_FIXUP_HEADSET_MODE,
11788 ALC891_FIXUP_DELL_MIC_NO_PRESENCE,
11789 ALC662_FIXUP_ACER_VERITON,
11790 ALC892_FIXUP_ASROCK_MOBO,
11791 ALC662_FIXUP_USI_FUNC,
11792 ALC662_FIXUP_USI_HEADSET_MODE,
11793 ALC662_FIXUP_LENOVO_MULTI_CODECS,
11794 ALC669_FIXUP_ACER_ASPIRE_ETHOS,
11795 ALC669_FIXUP_ACER_ASPIRE_ETHOS_HEADSET,
11796 ALC671_FIXUP_HP_HEADSET_MIC2,
11797 ALC662_FIXUP_ACER_X2660G_HEADSET_MODE,
11798 ALC662_FIXUP_ACER_NITRO_HEADSET_MODE,
11799 ALC668_FIXUP_ASUS_NO_HEADSET_MIC,
11800 ALC668_FIXUP_HEADSET_MIC,
11801 ALC668_FIXUP_MIC_DET_COEF,
11802 ALC897_FIXUP_LENOVO_HEADSET_MIC,
11803 ALC897_FIXUP_HEADSET_MIC_PIN,
11804 ALC897_FIXUP_HP_HSMIC_VERB,
11805 ALC897_FIXUP_LENOVO_HEADSET_MODE,
11806 ALC897_FIXUP_HEADSET_MIC_PIN2,
11807 ALC897_FIXUP_UNIS_H3C_X500S,
11808};
11809
11810static const struct hda_fixup alc662_fixups[] = {
11811 [ALC662_FIXUP_ASPIRE] = {
11812 .type = HDA_FIXUP_PINS,
11813 .v.pins = (const struct hda_pintbl[]) {
11814 { 0x15, 0x99130112 }, /* subwoofer */
11815 { }
11816 }
11817 },
11818 [ALC662_FIXUP_LED_GPIO1] = {
11819 .type = HDA_FIXUP_FUNC,
11820 .v.func = alc662_fixup_led_gpio1,
11821 },
11822 [ALC662_FIXUP_IDEAPAD] = {
11823 .type = HDA_FIXUP_PINS,
11824 .v.pins = (const struct hda_pintbl[]) {
11825 { 0x17, 0x99130112 }, /* subwoofer */
11826 { }
11827 },
11828 .chained = true,
11829 .chain_id = ALC662_FIXUP_LED_GPIO1,
11830 },
11831 [ALC272_FIXUP_MARIO] = {
11832 .type = HDA_FIXUP_FUNC,
11833 .v.func = alc272_fixup_mario,
11834 },
11835 [ALC662_FIXUP_CZC_ET26] = {
11836 .type = HDA_FIXUP_PINS,
11837 .v.pins = (const struct hda_pintbl[]) {
11838 {0x12, 0x403cc000},
11839 {0x14, 0x90170110}, /* speaker */
11840 {0x15, 0x411111f0},
11841 {0x16, 0x411111f0},
11842 {0x18, 0x01a19030}, /* mic */
11843 {0x19, 0x90a7013f}, /* int-mic */
11844 {0x1a, 0x01014020},
11845 {0x1b, 0x0121401f},
11846 {0x1c, 0x411111f0},
11847 {0x1d, 0x411111f0},
11848 {0x1e, 0x40478e35},
11849 {}
11850 },
11851 .chained = true,
11852 .chain_id = ALC662_FIXUP_SKU_IGNORE
11853 },
11854 [ALC662_FIXUP_CZC_P10T] = {
11855 .type = HDA_FIXUP_VERBS,
11856 .v.verbs = (const struct hda_verb[]) {
11857 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
11858 {}
11859 }
11860 },
11861 [ALC662_FIXUP_SKU_IGNORE] = {
11862 .type = HDA_FIXUP_FUNC,
11863 .v.func = alc_fixup_sku_ignore,
11864 },
11865 [ALC662_FIXUP_HP_RP5800] = {
11866 .type = HDA_FIXUP_PINS,
11867 .v.pins = (const struct hda_pintbl[]) {
11868 { 0x14, 0x0221201f }, /* HP out */
11869 { }
11870 },
11871 .chained = true,
11872 .chain_id = ALC662_FIXUP_SKU_IGNORE
11873 },
11874 [ALC662_FIXUP_ASUS_MODE1] = {
11875 .type = HDA_FIXUP_PINS,
11876 .v.pins = (const struct hda_pintbl[]) {
11877 { 0x14, 0x99130110 }, /* speaker */
11878 { 0x18, 0x01a19c20 }, /* mic */
11879 { 0x19, 0x99a3092f }, /* int-mic */
11880 { 0x21, 0x0121401f }, /* HP out */
11881 { }
11882 },
11883 .chained = true,
11884 .chain_id = ALC662_FIXUP_SKU_IGNORE
11885 },
11886 [ALC662_FIXUP_ASUS_MODE2] = {
11887 .type = HDA_FIXUP_PINS,
11888 .v.pins = (const struct hda_pintbl[]) {
11889 { 0x14, 0x99130110 }, /* speaker */
11890 { 0x18, 0x01a19820 }, /* mic */
11891 { 0x19, 0x99a3092f }, /* int-mic */
11892 { 0x1b, 0x0121401f }, /* HP out */
11893 { }
11894 },
11895 .chained = true,
11896 .chain_id = ALC662_FIXUP_SKU_IGNORE
11897 },
11898 [ALC662_FIXUP_ASUS_MODE3] = {
11899 .type = HDA_FIXUP_PINS,
11900 .v.pins = (const struct hda_pintbl[]) {
11901 { 0x14, 0x99130110 }, /* speaker */
11902 { 0x15, 0x0121441f }, /* HP */
11903 { 0x18, 0x01a19840 }, /* mic */
11904 { 0x19, 0x99a3094f }, /* int-mic */
11905 { 0x21, 0x01211420 }, /* HP2 */
11906 { }
11907 },
11908 .chained = true,
11909 .chain_id = ALC662_FIXUP_SKU_IGNORE
11910 },
11911 [ALC662_FIXUP_ASUS_MODE4] = {
11912 .type = HDA_FIXUP_PINS,
11913 .v.pins = (const struct hda_pintbl[]) {
11914 { 0x14, 0x99130110 }, /* speaker */
11915 { 0x16, 0x99130111 }, /* speaker */
11916 { 0x18, 0x01a19840 }, /* mic */
11917 { 0x19, 0x99a3094f }, /* int-mic */
11918 { 0x21, 0x0121441f }, /* HP */
11919 { }
11920 },
11921 .chained = true,
11922 .chain_id = ALC662_FIXUP_SKU_IGNORE
11923 },
11924 [ALC662_FIXUP_ASUS_MODE5] = {
11925 .type = HDA_FIXUP_PINS,
11926 .v.pins = (const struct hda_pintbl[]) {
11927 { 0x14, 0x99130110 }, /* speaker */
11928 { 0x15, 0x0121441f }, /* HP */
11929 { 0x16, 0x99130111 }, /* speaker */
11930 { 0x18, 0x01a19840 }, /* mic */
11931 { 0x19, 0x99a3094f }, /* int-mic */
11932 { }
11933 },
11934 .chained = true,
11935 .chain_id = ALC662_FIXUP_SKU_IGNORE
11936 },
11937 [ALC662_FIXUP_ASUS_MODE6] = {
11938 .type = HDA_FIXUP_PINS,
11939 .v.pins = (const struct hda_pintbl[]) {
11940 { 0x14, 0x99130110 }, /* speaker */
11941 { 0x15, 0x01211420 }, /* HP2 */
11942 { 0x18, 0x01a19840 }, /* mic */
11943 { 0x19, 0x99a3094f }, /* int-mic */
11944 { 0x1b, 0x0121441f }, /* HP */
11945 { }
11946 },
11947 .chained = true,
11948 .chain_id = ALC662_FIXUP_SKU_IGNORE
11949 },
11950 [ALC662_FIXUP_ASUS_MODE7] = {
11951 .type = HDA_FIXUP_PINS,
11952 .v.pins = (const struct hda_pintbl[]) {
11953 { 0x14, 0x99130110 }, /* speaker */
11954 { 0x17, 0x99130111 }, /* speaker */
11955 { 0x18, 0x01a19840 }, /* mic */
11956 { 0x19, 0x99a3094f }, /* int-mic */
11957 { 0x1b, 0x01214020 }, /* HP */
11958 { 0x21, 0x0121401f }, /* HP */
11959 { }
11960 },
11961 .chained = true,
11962 .chain_id = ALC662_FIXUP_SKU_IGNORE
11963 },
11964 [ALC662_FIXUP_ASUS_MODE8] = {
11965 .type = HDA_FIXUP_PINS,
11966 .v.pins = (const struct hda_pintbl[]) {
11967 { 0x14, 0x99130110 }, /* speaker */
11968 { 0x12, 0x99a30970 }, /* int-mic */
11969 { 0x15, 0x01214020 }, /* HP */
11970 { 0x17, 0x99130111 }, /* speaker */
11971 { 0x18, 0x01a19840 }, /* mic */
11972 { 0x21, 0x0121401f }, /* HP */
11973 { }
11974 },
11975 .chained = true,
11976 .chain_id = ALC662_FIXUP_SKU_IGNORE
11977 },
11978 [ALC662_FIXUP_NO_JACK_DETECT] = {
11979 .type = HDA_FIXUP_FUNC,
11980 .v.func = alc_fixup_no_jack_detect,
11981 },
11982 [ALC662_FIXUP_ZOTAC_Z68] = {
11983 .type = HDA_FIXUP_PINS,
11984 .v.pins = (const struct hda_pintbl[]) {
11985 { 0x1b, 0x02214020 }, /* Front HP */
11986 { }
11987 }
11988 },
11989 [ALC662_FIXUP_INV_DMIC] = {
11990 .type = HDA_FIXUP_FUNC,
11991 .v.func = alc_fixup_inv_dmic,
11992 },
11993 [ALC668_FIXUP_DELL_XPS13] = {
11994 .type = HDA_FIXUP_FUNC,
11995 .v.func = alc_fixup_dell_xps13,
11996 .chained = true,
11997 .chain_id = ALC668_FIXUP_DELL_DISABLE_AAMIX
11998 },
11999 [ALC668_FIXUP_DELL_DISABLE_AAMIX] = {
12000 .type = HDA_FIXUP_FUNC,
12001 .v.func = alc_fixup_disable_aamix,
12002 .chained = true,
12003 .chain_id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE
12004 },
12005 [ALC668_FIXUP_AUTO_MUTE] = {
12006 .type = HDA_FIXUP_FUNC,
12007 .v.func = alc_fixup_auto_mute_via_amp,
12008 .chained = true,
12009 .chain_id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE
12010 },
12011 [ALC662_FIXUP_DELL_MIC_NO_PRESENCE] = {
12012 .type = HDA_FIXUP_PINS,
12013 .v.pins = (const struct hda_pintbl[]) {
12014 { 0x19, 0x03a1113c }, /* use as headset mic, without its own jack detect */
12015 /* headphone mic by setting pin control of 0x1b (headphone out) to in + vref_50 */
12016 { }
12017 },
12018 .chained = true,
12019 .chain_id = ALC662_FIXUP_HEADSET_MODE
12020 },
12021 [ALC662_FIXUP_HEADSET_MODE] = {
12022 .type = HDA_FIXUP_FUNC,
12023 .v.func = alc_fixup_headset_mode_alc662,
12024 },
12025 [ALC668_FIXUP_DELL_MIC_NO_PRESENCE] = {
12026 .type = HDA_FIXUP_PINS,
12027 .v.pins = (const struct hda_pintbl[]) {
12028 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
12029 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
12030 { }
12031 },
12032 .chained = true,
12033 .chain_id = ALC668_FIXUP_HEADSET_MODE
12034 },
12035 [ALC668_FIXUP_HEADSET_MODE] = {
12036 .type = HDA_FIXUP_FUNC,
12037 .v.func = alc_fixup_headset_mode_alc668,
12038 },
12039 [ALC662_FIXUP_BASS_MODE4_CHMAP] = {
12040 .type = HDA_FIXUP_FUNC,
12041 .v.func = alc_fixup_bass_chmap,
12042 .chained = true,
12043 .chain_id = ALC662_FIXUP_ASUS_MODE4
12044 },
12045 [ALC662_FIXUP_BASS_16] = {
12046 .type = HDA_FIXUP_PINS,
12047 .v.pins = (const struct hda_pintbl[]) {
12048 {0x16, 0x80106111}, /* bass speaker */
12049 {}
12050 },
12051 .chained = true,
12052 .chain_id = ALC662_FIXUP_BASS_CHMAP,
12053 },
12054 [ALC662_FIXUP_BASS_1A] = {
12055 .type = HDA_FIXUP_PINS,
12056 .v.pins = (const struct hda_pintbl[]) {
12057 {0x1a, 0x80106111}, /* bass speaker */
12058 {}
12059 },
12060 .chained = true,
12061 .chain_id = ALC662_FIXUP_BASS_CHMAP,
12062 },
12063 [ALC662_FIXUP_BASS_CHMAP] = {
12064 .type = HDA_FIXUP_FUNC,
12065 .v.func = alc_fixup_bass_chmap,
12066 },
12067 [ALC662_FIXUP_ASUS_Nx50] = {
12068 .type = HDA_FIXUP_FUNC,
12069 .v.func = alc_fixup_auto_mute_via_amp,
12070 .chained = true,
12071 .chain_id = ALC662_FIXUP_BASS_1A
12072 },
12073 [ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE] = {
12074 .type = HDA_FIXUP_FUNC,
12075 .v.func = alc_fixup_headset_mode_alc668,
12076 .chain_id = ALC662_FIXUP_BASS_CHMAP
12077 },
12078 [ALC668_FIXUP_ASUS_Nx51] = {
12079 .type = HDA_FIXUP_PINS,
12080 .v.pins = (const struct hda_pintbl[]) {
12081 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
12082 { 0x1a, 0x90170151 }, /* bass speaker */
12083 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
12084 {}
12085 },
12086 .chained = true,
12087 .chain_id = ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE,
12088 },
12089 [ALC668_FIXUP_MIC_COEF] = {
12090 .type = HDA_FIXUP_VERBS,
12091 .v.verbs = (const struct hda_verb[]) {
12092 { 0x20, AC_VERB_SET_COEF_INDEX, 0xc3 },
12093 { 0x20, AC_VERB_SET_PROC_COEF, 0x4000 },
12094 {}
12095 },
12096 },
12097 [ALC668_FIXUP_ASUS_G751] = {
12098 .type = HDA_FIXUP_PINS,
12099 .v.pins = (const struct hda_pintbl[]) {
12100 { 0x16, 0x0421101f }, /* HP */
12101 {}
12102 },
12103 .chained = true,
12104 .chain_id = ALC668_FIXUP_MIC_COEF
12105 },
12106 [ALC891_FIXUP_HEADSET_MODE] = {
12107 .type = HDA_FIXUP_FUNC,
12108 .v.func = alc_fixup_headset_mode,
12109 },
12110 [ALC891_FIXUP_DELL_MIC_NO_PRESENCE] = {
12111 .type = HDA_FIXUP_PINS,
12112 .v.pins = (const struct hda_pintbl[]) {
12113 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
12114 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
12115 { }
12116 },
12117 .chained = true,
12118 .chain_id = ALC891_FIXUP_HEADSET_MODE
12119 },
12120 [ALC662_FIXUP_ACER_VERITON] = {
12121 .type = HDA_FIXUP_PINS,
12122 .v.pins = (const struct hda_pintbl[]) {
12123 { 0x15, 0x50170120 }, /* no internal speaker */
12124 { }
12125 }
12126 },
12127 [ALC892_FIXUP_ASROCK_MOBO] = {
12128 .type = HDA_FIXUP_PINS,
12129 .v.pins = (const struct hda_pintbl[]) {
12130 { 0x15, 0x40f000f0 }, /* disabled */
12131 { 0x16, 0x40f000f0 }, /* disabled */
12132 { }
12133 }
12134 },
12135 [ALC662_FIXUP_USI_FUNC] = {
12136 .type = HDA_FIXUP_FUNC,
12137 .v.func = alc662_fixup_usi_headset_mic,
12138 },
12139 [ALC662_FIXUP_USI_HEADSET_MODE] = {
12140 .type = HDA_FIXUP_PINS,
12141 .v.pins = (const struct hda_pintbl[]) {
12142 { 0x19, 0x02a1913c }, /* use as headset mic, without its own jack detect */
12143 { 0x18, 0x01a1903d },
12144 { }
12145 },
12146 .chained = true,
12147 .chain_id = ALC662_FIXUP_USI_FUNC
12148 },
12149 [ALC662_FIXUP_LENOVO_MULTI_CODECS] = {
12150 .type = HDA_FIXUP_FUNC,
12151 .v.func = alc233_alc662_fixup_lenovo_dual_codecs,
12152 },
12153 [ALC669_FIXUP_ACER_ASPIRE_ETHOS_HEADSET] = {
12154 .type = HDA_FIXUP_FUNC,
12155 .v.func = alc662_fixup_aspire_ethos_hp,
12156 },
12157 [ALC669_FIXUP_ACER_ASPIRE_ETHOS] = {
12158 .type = HDA_FIXUP_PINS,
12159 .v.pins = (const struct hda_pintbl[]) {
12160 { 0x15, 0x92130110 }, /* front speakers */
12161 { 0x18, 0x99130111 }, /* center/subwoofer */
12162 { 0x1b, 0x11130012 }, /* surround plus jack for HP */
12163 { }
12164 },
12165 .chained = true,
12166 .chain_id = ALC669_FIXUP_ACER_ASPIRE_ETHOS_HEADSET
12167 },
12168 [ALC671_FIXUP_HP_HEADSET_MIC2] = {
12169 .type = HDA_FIXUP_FUNC,
12170 .v.func = alc671_fixup_hp_headset_mic2,
12171 },
12172 [ALC662_FIXUP_ACER_X2660G_HEADSET_MODE] = {
12173 .type = HDA_FIXUP_PINS,
12174 .v.pins = (const struct hda_pintbl[]) {
12175 { 0x1a, 0x02a1113c }, /* use as headset mic, without its own jack detect */
12176 { }
12177 },
12178 .chained = true,
12179 .chain_id = ALC662_FIXUP_USI_FUNC
12180 },
12181 [ALC662_FIXUP_ACER_NITRO_HEADSET_MODE] = {
12182 .type = HDA_FIXUP_PINS,
12183 .v.pins = (const struct hda_pintbl[]) {
12184 { 0x1a, 0x01a11140 }, /* use as headset mic, without its own jack detect */
12185 { 0x1b, 0x0221144f },
12186 { }
12187 },
12188 .chained = true,
12189 .chain_id = ALC662_FIXUP_USI_FUNC
12190 },
12191 [ALC668_FIXUP_ASUS_NO_HEADSET_MIC] = {
12192 .type = HDA_FIXUP_PINS,
12193 .v.pins = (const struct hda_pintbl[]) {
12194 { 0x1b, 0x04a1112c },
12195 { }
12196 },
12197 .chained = true,
12198 .chain_id = ALC668_FIXUP_HEADSET_MIC
12199 },
12200 [ALC668_FIXUP_HEADSET_MIC] = {
12201 .type = HDA_FIXUP_FUNC,
12202 .v.func = alc269_fixup_headset_mic,
12203 .chained = true,
12204 .chain_id = ALC668_FIXUP_MIC_DET_COEF
12205 },
12206 [ALC668_FIXUP_MIC_DET_COEF] = {
12207 .type = HDA_FIXUP_VERBS,
12208 .v.verbs = (const struct hda_verb[]) {
12209 { 0x20, AC_VERB_SET_COEF_INDEX, 0x15 },
12210 { 0x20, AC_VERB_SET_PROC_COEF, 0x0d60 },
12211 {}
12212 },
12213 },
12214 [ALC897_FIXUP_LENOVO_HEADSET_MIC] = {
12215 .type = HDA_FIXUP_FUNC,
12216 .v.func = alc897_fixup_lenovo_headset_mic,
12217 },
12218 [ALC897_FIXUP_HEADSET_MIC_PIN] = {
12219 .type = HDA_FIXUP_PINS,
12220 .v.pins = (const struct hda_pintbl[]) {
12221 { 0x1a, 0x03a11050 },
12222 { }
12223 },
12224 .chained = true,
12225 .chain_id = ALC897_FIXUP_LENOVO_HEADSET_MIC
12226 },
12227 [ALC897_FIXUP_HP_HSMIC_VERB] = {
12228 .type = HDA_FIXUP_PINS,
12229 .v.pins = (const struct hda_pintbl[]) {
12230 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
12231 { }
12232 },
12233 },
12234 [ALC897_FIXUP_LENOVO_HEADSET_MODE] = {
12235 .type = HDA_FIXUP_FUNC,
12236 .v.func = alc897_fixup_lenovo_headset_mode,
12237 },
12238 [ALC897_FIXUP_HEADSET_MIC_PIN2] = {
12239 .type = HDA_FIXUP_PINS,
12240 .v.pins = (const struct hda_pintbl[]) {
12241 { 0x1a, 0x01a11140 }, /* use as headset mic, without its own jack detect */
12242 { }
12243 },
12244 .chained = true,
12245 .chain_id = ALC897_FIXUP_LENOVO_HEADSET_MODE
12246 },
12247 [ALC897_FIXUP_UNIS_H3C_X500S] = {
12248 .type = HDA_FIXUP_VERBS,
12249 .v.verbs = (const struct hda_verb[]) {
12250 { 0x14, AC_VERB_SET_EAPD_BTLENABLE, 0 },
12251 {}
12252 },
12253 },
12254};
12255
12256static const struct snd_pci_quirk alc662_fixup_tbl[] = {
12257 SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2),
12258 SND_PCI_QUIRK(0x1025, 0x022f, "Acer Aspire One", ALC662_FIXUP_INV_DMIC),
12259 SND_PCI_QUIRK(0x1025, 0x0241, "Packard Bell DOTS", ALC662_FIXUP_INV_DMIC),
12260 SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE),
12261 SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE),
12262 SND_PCI_QUIRK(0x1025, 0x0349, "eMachines eM250", ALC662_FIXUP_INV_DMIC),
12263 SND_PCI_QUIRK(0x1025, 0x034a, "Gateway LT27", ALC662_FIXUP_INV_DMIC),
12264 SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE),
12265 SND_PCI_QUIRK(0x1025, 0x0566, "Acer Aspire Ethos 8951G", ALC669_FIXUP_ACER_ASPIRE_ETHOS),
12266 SND_PCI_QUIRK(0x1025, 0x123c, "Acer Nitro N50-600", ALC662_FIXUP_ACER_NITRO_HEADSET_MODE),
12267 SND_PCI_QUIRK(0x1025, 0x124e, "Acer 2660G", ALC662_FIXUP_ACER_X2660G_HEADSET_MODE),
12268 SND_PCI_QUIRK(0x1028, 0x05d8, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
12269 SND_PCI_QUIRK(0x1028, 0x05db, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
12270 SND_PCI_QUIRK(0x1028, 0x05fe, "Dell XPS 15", ALC668_FIXUP_DELL_XPS13),
12271 SND_PCI_QUIRK(0x1028, 0x060a, "Dell XPS 13", ALC668_FIXUP_DELL_XPS13),
12272 SND_PCI_QUIRK(0x1028, 0x060d, "Dell M3800", ALC668_FIXUP_DELL_XPS13),
12273 SND_PCI_QUIRK(0x1028, 0x0625, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
12274 SND_PCI_QUIRK(0x1028, 0x0626, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
12275 SND_PCI_QUIRK(0x1028, 0x0696, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
12276 SND_PCI_QUIRK(0x1028, 0x0698, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
12277 SND_PCI_QUIRK(0x1028, 0x069f, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
12278 SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800),
12279 SND_PCI_QUIRK(0x103c, 0x870c, "HP", ALC897_FIXUP_HP_HSMIC_VERB),
12280 SND_PCI_QUIRK(0x103c, 0x8719, "HP", ALC897_FIXUP_HP_HSMIC_VERB),
12281 SND_PCI_QUIRK(0x103c, 0x872b, "HP", ALC897_FIXUP_HP_HSMIC_VERB),
12282 SND_PCI_QUIRK(0x103c, 0x873e, "HP", ALC671_FIXUP_HP_HEADSET_MIC2),
12283 SND_PCI_QUIRK(0x103c, 0x8768, "HP Slim Desktop S01", ALC671_FIXUP_HP_HEADSET_MIC2),
12284 SND_PCI_QUIRK(0x103c, 0x877e, "HP 288 Pro G6", ALC671_FIXUP_HP_HEADSET_MIC2),
12285 SND_PCI_QUIRK(0x103c, 0x885f, "HP 288 Pro G8", ALC671_FIXUP_HP_HEADSET_MIC2),
12286 SND_PCI_QUIRK(0x1043, 0x1080, "Asus UX501VW", ALC668_FIXUP_HEADSET_MODE),
12287 SND_PCI_QUIRK(0x1043, 0x11cd, "Asus N550", ALC662_FIXUP_ASUS_Nx50),
12288 SND_PCI_QUIRK(0x1043, 0x129d, "Asus N750", ALC662_FIXUP_ASUS_Nx50),
12289 SND_PCI_QUIRK(0x1043, 0x12ff, "ASUS G751", ALC668_FIXUP_ASUS_G751),
12290 SND_PCI_QUIRK(0x1043, 0x13df, "Asus N550JX", ALC662_FIXUP_BASS_1A),
12291 SND_PCI_QUIRK(0x1043, 0x1477, "ASUS N56VZ", ALC662_FIXUP_BASS_MODE4_CHMAP),
12292 SND_PCI_QUIRK(0x1043, 0x15a7, "ASUS UX51VZH", ALC662_FIXUP_BASS_16),
12293 SND_PCI_QUIRK(0x1043, 0x177d, "ASUS N551", ALC668_FIXUP_ASUS_Nx51),
12294 SND_PCI_QUIRK(0x1043, 0x17bd, "ASUS N751", ALC668_FIXUP_ASUS_Nx51),
12295 SND_PCI_QUIRK(0x1043, 0x185d, "ASUS G551JW", ALC668_FIXUP_ASUS_NO_HEADSET_MIC),
12296 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71SL", ALC662_FIXUP_ASUS_MODE8),
12297 SND_PCI_QUIRK(0x1043, 0x1b73, "ASUS N55SF", ALC662_FIXUP_BASS_16),
12298 SND_PCI_QUIRK(0x1043, 0x1bf3, "ASUS N76VZ", ALC662_FIXUP_BASS_MODE4_CHMAP),
12299 SND_PCI_QUIRK(0x1043, 0x8469, "ASUS mobo", ALC662_FIXUP_NO_JACK_DETECT),
12300 SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2),
12301 SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD),
12302 SND_PCI_QUIRK(0x14cd, 0x5003, "USI", ALC662_FIXUP_USI_HEADSET_MODE),
12303 SND_PCI_QUIRK(0x17aa, 0x1036, "Lenovo P520", ALC662_FIXUP_LENOVO_MULTI_CODECS),
12304 SND_PCI_QUIRK(0x17aa, 0x1057, "Lenovo P360", ALC897_FIXUP_HEADSET_MIC_PIN),
12305 SND_PCI_QUIRK(0x17aa, 0x1064, "Lenovo P3 Tower", ALC897_FIXUP_HEADSET_MIC_PIN),
12306 SND_PCI_QUIRK(0x17aa, 0x32ca, "Lenovo ThinkCentre M80", ALC897_FIXUP_HEADSET_MIC_PIN),
12307 SND_PCI_QUIRK(0x17aa, 0x32cb, "Lenovo ThinkCentre M70", ALC897_FIXUP_HEADSET_MIC_PIN),
12308 SND_PCI_QUIRK(0x17aa, 0x32cf, "Lenovo ThinkCentre M950", ALC897_FIXUP_HEADSET_MIC_PIN),
12309 SND_PCI_QUIRK(0x17aa, 0x32f7, "Lenovo ThinkCentre M90", ALC897_FIXUP_HEADSET_MIC_PIN),
12310 SND_PCI_QUIRK(0x17aa, 0x3321, "Lenovo ThinkCentre M70 Gen4", ALC897_FIXUP_HEADSET_MIC_PIN),
12311 SND_PCI_QUIRK(0x17aa, 0x331b, "Lenovo ThinkCentre M90 Gen4", ALC897_FIXUP_HEADSET_MIC_PIN),
12312 SND_PCI_QUIRK(0x17aa, 0x3364, "Lenovo ThinkCentre M90 Gen5", ALC897_FIXUP_HEADSET_MIC_PIN),
12313 SND_PCI_QUIRK(0x17aa, 0x3742, "Lenovo TianYi510Pro-14IOB", ALC897_FIXUP_HEADSET_MIC_PIN2),
12314 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD),
12315 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD),
12316 SND_PCI_QUIRK(0x1849, 0x5892, "ASRock B150M", ALC892_FIXUP_ASROCK_MOBO),
12317 SND_PCI_QUIRK(0x19da, 0xa130, "Zotac Z68", ALC662_FIXUP_ZOTAC_Z68),
12318 SND_PCI_QUIRK(0x1b0a, 0x01b8, "ACER Veriton", ALC662_FIXUP_ACER_VERITON),
12319 SND_PCI_QUIRK(0x1b35, 0x1234, "CZC ET26", ALC662_FIXUP_CZC_ET26),
12320 SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T),
12321 SND_PCI_QUIRK(0x1c6c, 0x1239, "Compaq N14JP6-V2", ALC897_FIXUP_HP_HSMIC_VERB),
12322
12323#if 0
12324 /* Below is a quirk table taken from the old code.
12325 * Basically the device should work as is without the fixup table.
12326 * If BIOS doesn't give a proper info, enable the corresponding
12327 * fixup entry.
12328 */
12329 SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC662_FIXUP_ASUS_MODE1),
12330 SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC662_FIXUP_ASUS_MODE3),
12331 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC662_FIXUP_ASUS_MODE1),
12332 SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC662_FIXUP_ASUS_MODE3),
12333 SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
12334 SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12335 SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
12336 SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC662_FIXUP_ASUS_MODE1),
12337 SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC662_FIXUP_ASUS_MODE1),
12338 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12339 SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC662_FIXUP_ASUS_MODE7),
12340 SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC662_FIXUP_ASUS_MODE7),
12341 SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC662_FIXUP_ASUS_MODE8),
12342 SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC662_FIXUP_ASUS_MODE3),
12343 SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC662_FIXUP_ASUS_MODE1),
12344 SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12345 SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_FIXUP_ASUS_MODE2),
12346 SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC662_FIXUP_ASUS_MODE1),
12347 SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12348 SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
12349 SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
12350 SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12351 SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC662_FIXUP_ASUS_MODE1),
12352 SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC662_FIXUP_ASUS_MODE3),
12353 SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_FIXUP_ASUS_MODE2),
12354 SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12355 SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC662_FIXUP_ASUS_MODE5),
12356 SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
12357 SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12358 SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC662_FIXUP_ASUS_MODE1),
12359 SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12360 SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12361 SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC662_FIXUP_ASUS_MODE3),
12362 SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC662_FIXUP_ASUS_MODE3),
12363 SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC662_FIXUP_ASUS_MODE1),
12364 SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC662_FIXUP_ASUS_MODE1),
12365 SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC662_FIXUP_ASUS_MODE1),
12366 SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC662_FIXUP_ASUS_MODE1),
12367 SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC662_FIXUP_ASUS_MODE1),
12368 SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12369 SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_FIXUP_ASUS_MODE2),
12370 SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC662_FIXUP_ASUS_MODE1),
12371 SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
12372 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC662_FIXUP_ASUS_MODE3),
12373 SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC662_FIXUP_ASUS_MODE1),
12374 SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC662_FIXUP_ASUS_MODE1),
12375 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC662_FIXUP_ASUS_MODE1),
12376 SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_FIXUP_ASUS_MODE2),
12377 SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
12378 SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE4),
12379#endif
12380 {}
12381};
12382
12383static const struct hda_model_fixup alc662_fixup_models[] = {
12384 {.id = ALC662_FIXUP_ASPIRE, .name = "aspire"},
12385 {.id = ALC662_FIXUP_IDEAPAD, .name = "ideapad"},
12386 {.id = ALC272_FIXUP_MARIO, .name = "mario"},
12387 {.id = ALC662_FIXUP_HP_RP5800, .name = "hp-rp5800"},
12388 {.id = ALC662_FIXUP_ASUS_MODE1, .name = "asus-mode1"},
12389 {.id = ALC662_FIXUP_ASUS_MODE2, .name = "asus-mode2"},
12390 {.id = ALC662_FIXUP_ASUS_MODE3, .name = "asus-mode3"},
12391 {.id = ALC662_FIXUP_ASUS_MODE4, .name = "asus-mode4"},
12392 {.id = ALC662_FIXUP_ASUS_MODE5, .name = "asus-mode5"},
12393 {.id = ALC662_FIXUP_ASUS_MODE6, .name = "asus-mode6"},
12394 {.id = ALC662_FIXUP_ASUS_MODE7, .name = "asus-mode7"},
12395 {.id = ALC662_FIXUP_ASUS_MODE8, .name = "asus-mode8"},
12396 {.id = ALC662_FIXUP_ZOTAC_Z68, .name = "zotac-z68"},
12397 {.id = ALC662_FIXUP_INV_DMIC, .name = "inv-dmic"},
12398 {.id = ALC662_FIXUP_DELL_MIC_NO_PRESENCE, .name = "alc662-headset-multi"},
12399 {.id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE, .name = "dell-headset-multi"},
12400 {.id = ALC662_FIXUP_HEADSET_MODE, .name = "alc662-headset"},
12401 {.id = ALC668_FIXUP_HEADSET_MODE, .name = "alc668-headset"},
12402 {.id = ALC662_FIXUP_BASS_16, .name = "bass16"},
12403 {.id = ALC662_FIXUP_BASS_1A, .name = "bass1a"},
12404 {.id = ALC668_FIXUP_AUTO_MUTE, .name = "automute"},
12405 {.id = ALC668_FIXUP_DELL_XPS13, .name = "dell-xps13"},
12406 {.id = ALC662_FIXUP_ASUS_Nx50, .name = "asus-nx50"},
12407 {.id = ALC668_FIXUP_ASUS_Nx51, .name = "asus-nx51"},
12408 {.id = ALC668_FIXUP_ASUS_G751, .name = "asus-g751"},
12409 {.id = ALC891_FIXUP_HEADSET_MODE, .name = "alc891-headset"},
12410 {.id = ALC891_FIXUP_DELL_MIC_NO_PRESENCE, .name = "alc891-headset-multi"},
12411 {.id = ALC662_FIXUP_ACER_VERITON, .name = "acer-veriton"},
12412 {.id = ALC892_FIXUP_ASROCK_MOBO, .name = "asrock-mobo"},
12413 {.id = ALC662_FIXUP_USI_HEADSET_MODE, .name = "usi-headset"},
12414 {.id = ALC662_FIXUP_LENOVO_MULTI_CODECS, .name = "dual-codecs"},
12415 {.id = ALC669_FIXUP_ACER_ASPIRE_ETHOS, .name = "aspire-ethos"},
12416 {.id = ALC897_FIXUP_UNIS_H3C_X500S, .name = "unis-h3c-x500s"},
12417 {}
12418};
12419
12420static const struct snd_hda_pin_quirk alc662_pin_fixup_tbl[] = {
12421 SND_HDA_PIN_QUIRK(0x10ec0867, 0x1028, "Dell", ALC891_FIXUP_DELL_MIC_NO_PRESENCE,
12422 {0x17, 0x02211010},
12423 {0x18, 0x01a19030},
12424 {0x1a, 0x01813040},
12425 {0x21, 0x01014020}),
12426 SND_HDA_PIN_QUIRK(0x10ec0867, 0x1028, "Dell", ALC891_FIXUP_DELL_MIC_NO_PRESENCE,
12427 {0x16, 0x01813030},
12428 {0x17, 0x02211010},
12429 {0x18, 0x01a19040},
12430 {0x21, 0x01014020}),
12431 SND_HDA_PIN_QUIRK(0x10ec0662, 0x1028, "Dell", ALC662_FIXUP_DELL_MIC_NO_PRESENCE,
12432 {0x14, 0x01014010},
12433 {0x18, 0x01a19020},
12434 {0x1a, 0x0181302f},
12435 {0x1b, 0x0221401f}),
12436 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
12437 {0x12, 0x99a30130},
12438 {0x14, 0x90170110},
12439 {0x15, 0x0321101f},
12440 {0x16, 0x03011020}),
12441 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
12442 {0x12, 0x99a30140},
12443 {0x14, 0x90170110},
12444 {0x15, 0x0321101f},
12445 {0x16, 0x03011020}),
12446 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
12447 {0x12, 0x99a30150},
12448 {0x14, 0x90170110},
12449 {0x15, 0x0321101f},
12450 {0x16, 0x03011020}),
12451 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
12452 {0x14, 0x90170110},
12453 {0x15, 0x0321101f},
12454 {0x16, 0x03011020}),
12455 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell XPS 15", ALC668_FIXUP_AUTO_MUTE,
12456 {0x12, 0x90a60130},
12457 {0x14, 0x90170110},
12458 {0x15, 0x0321101f}),
12459 SND_HDA_PIN_QUIRK(0x10ec0671, 0x103c, "HP cPC", ALC671_FIXUP_HP_HEADSET_MIC2,
12460 {0x14, 0x01014010},
12461 {0x17, 0x90170150},
12462 {0x19, 0x02a11060},
12463 {0x1b, 0x01813030},
12464 {0x21, 0x02211020}),
12465 SND_HDA_PIN_QUIRK(0x10ec0671, 0x103c, "HP cPC", ALC671_FIXUP_HP_HEADSET_MIC2,
12466 {0x14, 0x01014010},
12467 {0x18, 0x01a19040},
12468 {0x1b, 0x01813030},
12469 {0x21, 0x02211020}),
12470 SND_HDA_PIN_QUIRK(0x10ec0671, 0x103c, "HP cPC", ALC671_FIXUP_HP_HEADSET_MIC2,
12471 {0x14, 0x01014020},
12472 {0x17, 0x90170110},
12473 {0x18, 0x01a19050},
12474 {0x1b, 0x01813040},
12475 {0x21, 0x02211030}),
12476 {}
12477};
12478
12479/*
12480 */
12481static int patch_alc662(struct hda_codec *codec)
12482{
12483 struct alc_spec *spec;
12484 int err;
12485
12486 err = alc_alloc_spec(codec, 0x0b);
12487 if (err < 0)
12488 return err;
12489
12490 spec = codec->spec;
12491
12492 spec->shutup = alc_eapd_shutup;
12493
12494 /* handle multiple HPs as is */
12495 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
12496
12497 alc_fix_pll_init(codec, 0x20, 0x04, 15);
12498
12499 switch (codec->core.vendor_id) {
12500 case 0x10ec0668:
12501 spec->init_hook = alc668_restore_default_value;
12502 break;
12503 }
12504
12505 alc_pre_init(codec);
12506
12507 snd_hda_pick_fixup(codec, alc662_fixup_models,
12508 alc662_fixup_tbl, alc662_fixups);
12509 snd_hda_pick_pin_fixup(codec, alc662_pin_fixup_tbl, alc662_fixups, true);
12510 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
12511
12512 alc_auto_parse_customize_define(codec);
12513
12514 if (has_cdefine_beep(codec))
12515 spec->gen.beep_nid = 0x01;
12516
12517 if ((alc_get_coef0(codec) & (1 << 14)) &&
12518 codec->bus->pci && codec->bus->pci->subsystem_vendor == 0x1025 &&
12519 spec->cdefine.platform_type == 1) {
12520 err = alc_codec_rename(codec, "ALC272X");
12521 if (err < 0)
12522 goto error;
12523 }
12524
12525 /* automatic parse from the BIOS config */
12526 err = alc662_parse_auto_config(codec);
12527 if (err < 0)
12528 goto error;
12529
12530 if (!spec->gen.no_analog && spec->gen.beep_nid) {
12531 switch (codec->core.vendor_id) {
12532 case 0x10ec0662:
12533 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
12534 break;
12535 case 0x10ec0272:
12536 case 0x10ec0663:
12537 case 0x10ec0665:
12538 case 0x10ec0668:
12539 err = set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
12540 break;
12541 case 0x10ec0273:
12542 err = set_beep_amp(spec, 0x0b, 0x03, HDA_INPUT);
12543 break;
12544 }
12545 if (err < 0)
12546 goto error;
12547 }
12548
12549 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
12550
12551 return 0;
12552
12553 error:
12554 alc_free(codec);
12555 return err;
12556}
12557
12558/*
12559 * ALC680 support
12560 */
12561
12562static int alc680_parse_auto_config(struct hda_codec *codec)
12563{
12564 return alc_parse_auto_config(codec, NULL, NULL);
12565}
12566
12567/*
12568 */
12569static int patch_alc680(struct hda_codec *codec)
12570{
12571 int err;
12572
12573 /* ALC680 has no aa-loopback mixer */
12574 err = alc_alloc_spec(codec, 0);
12575 if (err < 0)
12576 return err;
12577
12578 /* automatic parse from the BIOS config */
12579 err = alc680_parse_auto_config(codec);
12580 if (err < 0) {
12581 alc_free(codec);
12582 return err;
12583 }
12584
12585 return 0;
12586}
12587
12588/*
12589 * patch entries
12590 */
12591static const struct hda_device_id snd_hda_id_realtek[] = {
12592 HDA_CODEC_ENTRY(0x10ec0215, "ALC215", patch_alc269),
12593 HDA_CODEC_ENTRY(0x10ec0221, "ALC221", patch_alc269),
12594 HDA_CODEC_ENTRY(0x10ec0222, "ALC222", patch_alc269),
12595 HDA_CODEC_ENTRY(0x10ec0225, "ALC225", patch_alc269),
12596 HDA_CODEC_ENTRY(0x10ec0230, "ALC236", patch_alc269),
12597 HDA_CODEC_ENTRY(0x10ec0231, "ALC231", patch_alc269),
12598 HDA_CODEC_ENTRY(0x10ec0233, "ALC233", patch_alc269),
12599 HDA_CODEC_ENTRY(0x10ec0234, "ALC234", patch_alc269),
12600 HDA_CODEC_ENTRY(0x10ec0235, "ALC233", patch_alc269),
12601 HDA_CODEC_ENTRY(0x10ec0236, "ALC236", patch_alc269),
12602 HDA_CODEC_ENTRY(0x10ec0245, "ALC245", patch_alc269),
12603 HDA_CODEC_ENTRY(0x10ec0255, "ALC255", patch_alc269),
12604 HDA_CODEC_ENTRY(0x10ec0256, "ALC256", patch_alc269),
12605 HDA_CODEC_ENTRY(0x10ec0257, "ALC257", patch_alc269),
12606 HDA_CODEC_ENTRY(0x10ec0260, "ALC260", patch_alc260),
12607 HDA_CODEC_ENTRY(0x10ec0262, "ALC262", patch_alc262),
12608 HDA_CODEC_ENTRY(0x10ec0267, "ALC267", patch_alc268),
12609 HDA_CODEC_ENTRY(0x10ec0268, "ALC268", patch_alc268),
12610 HDA_CODEC_ENTRY(0x10ec0269, "ALC269", patch_alc269),
12611 HDA_CODEC_ENTRY(0x10ec0270, "ALC270", patch_alc269),
12612 HDA_CODEC_ENTRY(0x10ec0272, "ALC272", patch_alc662),
12613 HDA_CODEC_ENTRY(0x10ec0274, "ALC274", patch_alc269),
12614 HDA_CODEC_ENTRY(0x10ec0275, "ALC275", patch_alc269),
12615 HDA_CODEC_ENTRY(0x10ec0276, "ALC276", patch_alc269),
12616 HDA_CODEC_ENTRY(0x10ec0280, "ALC280", patch_alc269),
12617 HDA_CODEC_ENTRY(0x10ec0282, "ALC282", patch_alc269),
12618 HDA_CODEC_ENTRY(0x10ec0283, "ALC283", patch_alc269),
12619 HDA_CODEC_ENTRY(0x10ec0284, "ALC284", patch_alc269),
12620 HDA_CODEC_ENTRY(0x10ec0285, "ALC285", patch_alc269),
12621 HDA_CODEC_ENTRY(0x10ec0286, "ALC286", patch_alc269),
12622 HDA_CODEC_ENTRY(0x10ec0287, "ALC287", patch_alc269),
12623 HDA_CODEC_ENTRY(0x10ec0288, "ALC288", patch_alc269),
12624 HDA_CODEC_ENTRY(0x10ec0289, "ALC289", patch_alc269),
12625 HDA_CODEC_ENTRY(0x10ec0290, "ALC290", patch_alc269),
12626 HDA_CODEC_ENTRY(0x10ec0292, "ALC292", patch_alc269),
12627 HDA_CODEC_ENTRY(0x10ec0293, "ALC293", patch_alc269),
12628 HDA_CODEC_ENTRY(0x10ec0294, "ALC294", patch_alc269),
12629 HDA_CODEC_ENTRY(0x10ec0295, "ALC295", patch_alc269),
12630 HDA_CODEC_ENTRY(0x10ec0298, "ALC298", patch_alc269),
12631 HDA_CODEC_ENTRY(0x10ec0299, "ALC299", patch_alc269),
12632 HDA_CODEC_ENTRY(0x10ec0300, "ALC300", patch_alc269),
12633 HDA_CODEC_ENTRY(0x10ec0623, "ALC623", patch_alc269),
12634 HDA_CODEC_REV_ENTRY(0x10ec0861, 0x100340, "ALC660", patch_alc861),
12635 HDA_CODEC_ENTRY(0x10ec0660, "ALC660-VD", patch_alc861vd),
12636 HDA_CODEC_ENTRY(0x10ec0861, "ALC861", patch_alc861),
12637 HDA_CODEC_ENTRY(0x10ec0862, "ALC861-VD", patch_alc861vd),
12638 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100002, "ALC662 rev2", patch_alc882),
12639 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100101, "ALC662 rev1", patch_alc662),
12640 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100300, "ALC662 rev3", patch_alc662),
12641 HDA_CODEC_ENTRY(0x10ec0663, "ALC663", patch_alc662),
12642 HDA_CODEC_ENTRY(0x10ec0665, "ALC665", patch_alc662),
12643 HDA_CODEC_ENTRY(0x10ec0667, "ALC667", patch_alc662),
12644 HDA_CODEC_ENTRY(0x10ec0668, "ALC668", patch_alc662),
12645 HDA_CODEC_ENTRY(0x10ec0670, "ALC670", patch_alc662),
12646 HDA_CODEC_ENTRY(0x10ec0671, "ALC671", patch_alc662),
12647 HDA_CODEC_ENTRY(0x10ec0680, "ALC680", patch_alc680),
12648 HDA_CODEC_ENTRY(0x10ec0700, "ALC700", patch_alc269),
12649 HDA_CODEC_ENTRY(0x10ec0701, "ALC701", patch_alc269),
12650 HDA_CODEC_ENTRY(0x10ec0703, "ALC703", patch_alc269),
12651 HDA_CODEC_ENTRY(0x10ec0711, "ALC711", patch_alc269),
12652 HDA_CODEC_ENTRY(0x10ec0867, "ALC891", patch_alc662),
12653 HDA_CODEC_ENTRY(0x10ec0880, "ALC880", patch_alc880),
12654 HDA_CODEC_ENTRY(0x10ec0882, "ALC882", patch_alc882),
12655 HDA_CODEC_ENTRY(0x10ec0883, "ALC883", patch_alc882),
12656 HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100101, "ALC889A", patch_alc882),
12657 HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100103, "ALC889A", patch_alc882),
12658 HDA_CODEC_ENTRY(0x10ec0885, "ALC885", patch_alc882),
12659 HDA_CODEC_ENTRY(0x10ec0887, "ALC887", patch_alc882),
12660 HDA_CODEC_REV_ENTRY(0x10ec0888, 0x100101, "ALC1200", patch_alc882),
12661 HDA_CODEC_ENTRY(0x10ec0888, "ALC888", patch_alc882),
12662 HDA_CODEC_ENTRY(0x10ec0889, "ALC889", patch_alc882),
12663 HDA_CODEC_ENTRY(0x10ec0892, "ALC892", patch_alc662),
12664 HDA_CODEC_ENTRY(0x10ec0897, "ALC897", patch_alc662),
12665 HDA_CODEC_ENTRY(0x10ec0899, "ALC898", patch_alc882),
12666 HDA_CODEC_ENTRY(0x10ec0900, "ALC1150", patch_alc882),
12667 HDA_CODEC_ENTRY(0x10ec0b00, "ALCS1200A", patch_alc882),
12668 HDA_CODEC_ENTRY(0x10ec1168, "ALC1220", patch_alc882),
12669 HDA_CODEC_ENTRY(0x10ec1220, "ALC1220", patch_alc882),
12670 HDA_CODEC_ENTRY(0x19e58326, "HW8326", patch_alc269),
12671 {} /* terminator */
12672};
12673MODULE_DEVICE_TABLE(hdaudio, snd_hda_id_realtek);
12674
12675MODULE_LICENSE("GPL");
12676MODULE_DESCRIPTION("Realtek HD-audio codec");
12677
12678static struct hda_codec_driver realtek_driver = {
12679 .id = snd_hda_id_realtek,
12680};
12681
12682module_hda_codec_driver(realtek_driver);