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/init.h> 14 #include <linux/delay.h> 15 #include <linux/slab.h> 16 #include <linux/pci.h> 17 #include <linux/dmi.h> 18 #include <linux/module.h> 19 #include <linux/input.h> 20 #include <sound/core.h> 21 #include <sound/jack.h> 22 #include <sound/hda_codec.h> 23 #include "hda_local.h" 24 #include "hda_auto_parser.h" 25 #include "hda_jack.h" 26 #include "hda_generic.h" 27 28 /* keep halting ALC5505 DSP, for power saving */ 29 #define HALT_REALTEK_ALC5505 30 31 /* extra amp-initialization sequence types */ 32 enum { 33 ALC_INIT_UNDEFINED, 34 ALC_INIT_NONE, 35 ALC_INIT_DEFAULT, 36 }; 37 38 enum { 39 ALC_HEADSET_MODE_UNKNOWN, 40 ALC_HEADSET_MODE_UNPLUGGED, 41 ALC_HEADSET_MODE_HEADSET, 42 ALC_HEADSET_MODE_MIC, 43 ALC_HEADSET_MODE_HEADPHONE, 44 }; 45 46 enum { 47 ALC_HEADSET_TYPE_UNKNOWN, 48 ALC_HEADSET_TYPE_CTIA, 49 ALC_HEADSET_TYPE_OMTP, 50 }; 51 52 enum { 53 ALC_KEY_MICMUTE_INDEX, 54 }; 55 56 struct alc_customize_define { 57 unsigned int sku_cfg; 58 unsigned char port_connectivity; 59 unsigned char check_sum; 60 unsigned char customization; 61 unsigned char external_amp; 62 unsigned int enable_pcbeep:1; 63 unsigned int platform_type:1; 64 unsigned int swap:1; 65 unsigned int override:1; 66 unsigned int fixup:1; /* Means that this sku is set by driver, not read from hw */ 67 }; 68 69 struct alc_spec { 70 struct hda_gen_spec gen; /* must be at head */ 71 72 /* codec parameterization */ 73 struct alc_customize_define cdefine; 74 unsigned int parse_flags; /* flag for snd_hda_parse_pin_defcfg() */ 75 76 /* GPIO bits */ 77 unsigned int gpio_mask; 78 unsigned int gpio_dir; 79 unsigned int gpio_data; 80 bool gpio_write_delay; /* add a delay before writing gpio_data */ 81 82 /* mute LED for HP laptops, see alc269_fixup_mic_mute_hook() */ 83 int mute_led_polarity; 84 hda_nid_t mute_led_nid; 85 hda_nid_t cap_mute_led_nid; 86 87 unsigned int gpio_mute_led_mask; 88 unsigned int gpio_mic_led_mask; 89 90 hda_nid_t headset_mic_pin; 91 hda_nid_t headphone_mic_pin; 92 int current_headset_mode; 93 int current_headset_type; 94 95 /* hooks */ 96 void (*init_hook)(struct hda_codec *codec); 97 #ifdef CONFIG_PM 98 void (*power_hook)(struct hda_codec *codec); 99 #endif 100 void (*shutup)(struct hda_codec *codec); 101 void (*reboot_notify)(struct hda_codec *codec); 102 103 int init_amp; 104 int codec_variant; /* flag for other variants */ 105 unsigned int has_alc5505_dsp:1; 106 unsigned int no_depop_delay:1; 107 unsigned int done_hp_init:1; 108 unsigned int no_shutup_pins:1; 109 unsigned int ultra_low_power:1; 110 111 /* for PLL fix */ 112 hda_nid_t pll_nid; 113 unsigned int pll_coef_idx, pll_coef_bit; 114 unsigned int coef0; 115 struct input_dev *kb_dev; 116 u8 alc_mute_keycode_map[1]; 117 }; 118 119 /* 120 * COEF access helper functions 121 */ 122 123 static int alc_read_coefex_idx(struct hda_codec *codec, hda_nid_t nid, 124 unsigned int coef_idx) 125 { 126 unsigned int val; 127 128 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_COEF_INDEX, coef_idx); 129 val = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_PROC_COEF, 0); 130 return val; 131 } 132 133 #define alc_read_coef_idx(codec, coef_idx) \ 134 alc_read_coefex_idx(codec, 0x20, coef_idx) 135 136 static void alc_write_coefex_idx(struct hda_codec *codec, hda_nid_t nid, 137 unsigned int coef_idx, unsigned int coef_val) 138 { 139 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_COEF_INDEX, coef_idx); 140 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PROC_COEF, coef_val); 141 } 142 143 #define alc_write_coef_idx(codec, coef_idx, coef_val) \ 144 alc_write_coefex_idx(codec, 0x20, coef_idx, coef_val) 145 146 static void alc_update_coefex_idx(struct hda_codec *codec, hda_nid_t nid, 147 unsigned int coef_idx, unsigned int mask, 148 unsigned int bits_set) 149 { 150 unsigned int val = alc_read_coefex_idx(codec, nid, coef_idx); 151 152 if (val != -1) 153 alc_write_coefex_idx(codec, nid, coef_idx, 154 (val & ~mask) | bits_set); 155 } 156 157 #define alc_update_coef_idx(codec, coef_idx, mask, bits_set) \ 158 alc_update_coefex_idx(codec, 0x20, coef_idx, mask, bits_set) 159 160 /* a special bypass for COEF 0; read the cached value at the second time */ 161 static unsigned int alc_get_coef0(struct hda_codec *codec) 162 { 163 struct alc_spec *spec = codec->spec; 164 165 if (!spec->coef0) 166 spec->coef0 = alc_read_coef_idx(codec, 0); 167 return spec->coef0; 168 } 169 170 /* coef writes/updates batch */ 171 struct coef_fw { 172 unsigned char nid; 173 unsigned char idx; 174 unsigned short mask; 175 unsigned short val; 176 }; 177 178 #define UPDATE_COEFEX(_nid, _idx, _mask, _val) \ 179 { .nid = (_nid), .idx = (_idx), .mask = (_mask), .val = (_val) } 180 #define WRITE_COEFEX(_nid, _idx, _val) UPDATE_COEFEX(_nid, _idx, -1, _val) 181 #define WRITE_COEF(_idx, _val) WRITE_COEFEX(0x20, _idx, _val) 182 #define UPDATE_COEF(_idx, _mask, _val) UPDATE_COEFEX(0x20, _idx, _mask, _val) 183 184 static void alc_process_coef_fw(struct hda_codec *codec, 185 const struct coef_fw *fw) 186 { 187 for (; fw->nid; fw++) { 188 if (fw->mask == (unsigned short)-1) 189 alc_write_coefex_idx(codec, fw->nid, fw->idx, fw->val); 190 else 191 alc_update_coefex_idx(codec, fw->nid, fw->idx, 192 fw->mask, fw->val); 193 } 194 } 195 196 /* 197 * GPIO setup tables, used in initialization 198 */ 199 200 /* Enable GPIO mask and set output */ 201 static void alc_setup_gpio(struct hda_codec *codec, unsigned int mask) 202 { 203 struct alc_spec *spec = codec->spec; 204 205 spec->gpio_mask |= mask; 206 spec->gpio_dir |= mask; 207 spec->gpio_data |= mask; 208 } 209 210 static void alc_write_gpio_data(struct hda_codec *codec) 211 { 212 struct alc_spec *spec = codec->spec; 213 214 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA, 215 spec->gpio_data); 216 } 217 218 static void alc_update_gpio_data(struct hda_codec *codec, unsigned int mask, 219 bool on) 220 { 221 struct alc_spec *spec = codec->spec; 222 unsigned int oldval = spec->gpio_data; 223 224 if (on) 225 spec->gpio_data |= mask; 226 else 227 spec->gpio_data &= ~mask; 228 if (oldval != spec->gpio_data) 229 alc_write_gpio_data(codec); 230 } 231 232 static void alc_write_gpio(struct hda_codec *codec) 233 { 234 struct alc_spec *spec = codec->spec; 235 236 if (!spec->gpio_mask) 237 return; 238 239 snd_hda_codec_write(codec, codec->core.afg, 0, 240 AC_VERB_SET_GPIO_MASK, spec->gpio_mask); 241 snd_hda_codec_write(codec, codec->core.afg, 0, 242 AC_VERB_SET_GPIO_DIRECTION, spec->gpio_dir); 243 if (spec->gpio_write_delay) 244 msleep(1); 245 alc_write_gpio_data(codec); 246 } 247 248 static void alc_fixup_gpio(struct hda_codec *codec, int action, 249 unsigned int mask) 250 { 251 if (action == HDA_FIXUP_ACT_PRE_PROBE) 252 alc_setup_gpio(codec, mask); 253 } 254 255 static void alc_fixup_gpio1(struct hda_codec *codec, 256 const struct hda_fixup *fix, int action) 257 { 258 alc_fixup_gpio(codec, action, 0x01); 259 } 260 261 static void alc_fixup_gpio2(struct hda_codec *codec, 262 const struct hda_fixup *fix, int action) 263 { 264 alc_fixup_gpio(codec, action, 0x02); 265 } 266 267 static void alc_fixup_gpio3(struct hda_codec *codec, 268 const struct hda_fixup *fix, int action) 269 { 270 alc_fixup_gpio(codec, action, 0x03); 271 } 272 273 static void alc_fixup_gpio4(struct hda_codec *codec, 274 const struct hda_fixup *fix, int action) 275 { 276 alc_fixup_gpio(codec, action, 0x04); 277 } 278 279 /* 280 * Fix hardware PLL issue 281 * On some codecs, the analog PLL gating control must be off while 282 * the default value is 1. 283 */ 284 static void alc_fix_pll(struct hda_codec *codec) 285 { 286 struct alc_spec *spec = codec->spec; 287 288 if (spec->pll_nid) 289 alc_update_coefex_idx(codec, spec->pll_nid, spec->pll_coef_idx, 290 1 << spec->pll_coef_bit, 0); 291 } 292 293 static void alc_fix_pll_init(struct hda_codec *codec, hda_nid_t nid, 294 unsigned int coef_idx, unsigned int coef_bit) 295 { 296 struct alc_spec *spec = codec->spec; 297 spec->pll_nid = nid; 298 spec->pll_coef_idx = coef_idx; 299 spec->pll_coef_bit = coef_bit; 300 alc_fix_pll(codec); 301 } 302 303 /* update the master volume per volume-knob's unsol event */ 304 static void alc_update_knob_master(struct hda_codec *codec, 305 struct hda_jack_callback *jack) 306 { 307 unsigned int val; 308 struct snd_kcontrol *kctl; 309 struct snd_ctl_elem_value *uctl; 310 311 kctl = snd_hda_find_mixer_ctl(codec, "Master Playback Volume"); 312 if (!kctl) 313 return; 314 uctl = kzalloc(sizeof(*uctl), GFP_KERNEL); 315 if (!uctl) 316 return; 317 val = snd_hda_codec_read(codec, jack->nid, 0, 318 AC_VERB_GET_VOLUME_KNOB_CONTROL, 0); 319 val &= HDA_AMP_VOLMASK; 320 uctl->value.integer.value[0] = val; 321 uctl->value.integer.value[1] = val; 322 kctl->put(kctl, uctl); 323 kfree(uctl); 324 } 325 326 static void alc880_unsol_event(struct hda_codec *codec, unsigned int res) 327 { 328 /* For some reason, the res given from ALC880 is broken. 329 Here we adjust it properly. */ 330 snd_hda_jack_unsol_event(codec, res >> 2); 331 } 332 333 /* Change EAPD to verb control */ 334 static void alc_fill_eapd_coef(struct hda_codec *codec) 335 { 336 int coef; 337 338 coef = alc_get_coef0(codec); 339 340 switch (codec->core.vendor_id) { 341 case 0x10ec0262: 342 alc_update_coef_idx(codec, 0x7, 0, 1<<5); 343 break; 344 case 0x10ec0267: 345 case 0x10ec0268: 346 alc_update_coef_idx(codec, 0x7, 0, 1<<13); 347 break; 348 case 0x10ec0269: 349 if ((coef & 0x00f0) == 0x0010) 350 alc_update_coef_idx(codec, 0xd, 0, 1<<14); 351 if ((coef & 0x00f0) == 0x0020) 352 alc_update_coef_idx(codec, 0x4, 1<<15, 0); 353 if ((coef & 0x00f0) == 0x0030) 354 alc_update_coef_idx(codec, 0x10, 1<<9, 0); 355 break; 356 case 0x10ec0280: 357 case 0x10ec0284: 358 case 0x10ec0290: 359 case 0x10ec0292: 360 alc_update_coef_idx(codec, 0x4, 1<<15, 0); 361 break; 362 case 0x10ec0225: 363 case 0x10ec0295: 364 case 0x10ec0299: 365 alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000); 366 /* fallthrough */ 367 case 0x10ec0215: 368 case 0x10ec0233: 369 case 0x10ec0235: 370 case 0x10ec0236: 371 case 0x10ec0255: 372 case 0x10ec0256: 373 case 0x10ec0257: 374 case 0x10ec0282: 375 case 0x10ec0283: 376 case 0x10ec0286: 377 case 0x10ec0288: 378 case 0x10ec0285: 379 case 0x10ec0298: 380 case 0x10ec0289: 381 case 0x10ec0300: 382 alc_update_coef_idx(codec, 0x10, 1<<9, 0); 383 break; 384 case 0x10ec0275: 385 alc_update_coef_idx(codec, 0xe, 0, 1<<0); 386 break; 387 case 0x10ec0293: 388 alc_update_coef_idx(codec, 0xa, 1<<13, 0); 389 break; 390 case 0x10ec0234: 391 case 0x10ec0274: 392 case 0x10ec0294: 393 case 0x10ec0700: 394 case 0x10ec0701: 395 case 0x10ec0703: 396 alc_update_coef_idx(codec, 0x10, 1<<15, 0); 397 break; 398 case 0x10ec0662: 399 if ((coef & 0x00f0) == 0x0030) 400 alc_update_coef_idx(codec, 0x4, 1<<10, 0); /* EAPD Ctrl */ 401 break; 402 case 0x10ec0272: 403 case 0x10ec0273: 404 case 0x10ec0663: 405 case 0x10ec0665: 406 case 0x10ec0670: 407 case 0x10ec0671: 408 case 0x10ec0672: 409 alc_update_coef_idx(codec, 0xd, 0, 1<<14); /* EAPD Ctrl */ 410 break; 411 case 0x10ec0668: 412 alc_update_coef_idx(codec, 0x7, 3<<13, 0); 413 break; 414 case 0x10ec0867: 415 alc_update_coef_idx(codec, 0x4, 1<<10, 0); 416 break; 417 case 0x10ec0888: 418 if ((coef & 0x00f0) == 0x0020 || (coef & 0x00f0) == 0x0030) 419 alc_update_coef_idx(codec, 0x7, 1<<5, 0); 420 break; 421 case 0x10ec0892: 422 alc_update_coef_idx(codec, 0x7, 1<<5, 0); 423 break; 424 case 0x10ec0899: 425 case 0x10ec0900: 426 case 0x10ec1168: 427 case 0x10ec1220: 428 alc_update_coef_idx(codec, 0x7, 1<<1, 0); 429 break; 430 } 431 } 432 433 /* additional initialization for ALC888 variants */ 434 static void alc888_coef_init(struct hda_codec *codec) 435 { 436 switch (alc_get_coef0(codec) & 0x00f0) { 437 /* alc888-VA */ 438 case 0x00: 439 /* alc888-VB */ 440 case 0x10: 441 alc_update_coef_idx(codec, 7, 0, 0x2030); /* Turn EAPD to High */ 442 break; 443 } 444 } 445 446 /* turn on/off EAPD control (only if available) */ 447 static void set_eapd(struct hda_codec *codec, hda_nid_t nid, int on) 448 { 449 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN) 450 return; 451 if (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD) 452 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE, 453 on ? 2 : 0); 454 } 455 456 /* turn on/off EAPD controls of the codec */ 457 static void alc_auto_setup_eapd(struct hda_codec *codec, bool on) 458 { 459 /* We currently only handle front, HP */ 460 static hda_nid_t pins[] = { 461 0x0f, 0x10, 0x14, 0x15, 0x17, 0 462 }; 463 hda_nid_t *p; 464 for (p = pins; *p; p++) 465 set_eapd(codec, *p, on); 466 } 467 468 static int find_ext_mic_pin(struct hda_codec *codec); 469 470 static void alc_headset_mic_no_shutup(struct hda_codec *codec) 471 { 472 const struct hda_pincfg *pin; 473 int mic_pin = find_ext_mic_pin(codec); 474 int i; 475 476 /* don't shut up pins when unloading the driver; otherwise it breaks 477 * the default pin setup at the next load of the driver 478 */ 479 if (codec->bus->shutdown) 480 return; 481 482 snd_array_for_each(&codec->init_pins, i, pin) { 483 /* use read here for syncing after issuing each verb */ 484 if (pin->nid != mic_pin) 485 snd_hda_codec_read(codec, pin->nid, 0, 486 AC_VERB_SET_PIN_WIDGET_CONTROL, 0); 487 } 488 489 codec->pins_shutup = 1; 490 } 491 492 static void alc_shutup_pins(struct hda_codec *codec) 493 { 494 struct alc_spec *spec = codec->spec; 495 496 switch (codec->core.vendor_id) { 497 case 0x10ec0286: 498 case 0x10ec0288: 499 case 0x10ec0298: 500 alc_headset_mic_no_shutup(codec); 501 break; 502 default: 503 if (!spec->no_shutup_pins) 504 snd_hda_shutup_pins(codec); 505 break; 506 } 507 } 508 509 /* generic shutup callback; 510 * just turning off EAPD and a little pause for avoiding pop-noise 511 */ 512 static void alc_eapd_shutup(struct hda_codec *codec) 513 { 514 struct alc_spec *spec = codec->spec; 515 516 alc_auto_setup_eapd(codec, false); 517 if (!spec->no_depop_delay) 518 msleep(200); 519 alc_shutup_pins(codec); 520 } 521 522 /* generic EAPD initialization */ 523 static void alc_auto_init_amp(struct hda_codec *codec, int type) 524 { 525 alc_auto_setup_eapd(codec, true); 526 alc_write_gpio(codec); 527 switch (type) { 528 case ALC_INIT_DEFAULT: 529 switch (codec->core.vendor_id) { 530 case 0x10ec0260: 531 alc_update_coefex_idx(codec, 0x1a, 7, 0, 0x2010); 532 break; 533 case 0x10ec0880: 534 case 0x10ec0882: 535 case 0x10ec0883: 536 case 0x10ec0885: 537 alc_update_coef_idx(codec, 7, 0, 0x2030); 538 break; 539 case 0x10ec0888: 540 alc888_coef_init(codec); 541 break; 542 } 543 break; 544 } 545 } 546 547 /* get a primary headphone pin if available */ 548 static hda_nid_t alc_get_hp_pin(struct alc_spec *spec) 549 { 550 if (spec->gen.autocfg.hp_pins[0]) 551 return spec->gen.autocfg.hp_pins[0]; 552 if (spec->gen.autocfg.line_out_type == AC_JACK_HP_OUT) 553 return spec->gen.autocfg.line_out_pins[0]; 554 return 0; 555 } 556 557 /* 558 * Realtek SSID verification 559 */ 560 561 /* Could be any non-zero and even value. When used as fixup, tells 562 * the driver to ignore any present sku defines. 563 */ 564 #define ALC_FIXUP_SKU_IGNORE (2) 565 566 static void alc_fixup_sku_ignore(struct hda_codec *codec, 567 const struct hda_fixup *fix, int action) 568 { 569 struct alc_spec *spec = codec->spec; 570 if (action == HDA_FIXUP_ACT_PRE_PROBE) { 571 spec->cdefine.fixup = 1; 572 spec->cdefine.sku_cfg = ALC_FIXUP_SKU_IGNORE; 573 } 574 } 575 576 static void alc_fixup_no_depop_delay(struct hda_codec *codec, 577 const struct hda_fixup *fix, int action) 578 { 579 struct alc_spec *spec = codec->spec; 580 581 if (action == HDA_FIXUP_ACT_PROBE) { 582 spec->no_depop_delay = 1; 583 codec->depop_delay = 0; 584 } 585 } 586 587 static int alc_auto_parse_customize_define(struct hda_codec *codec) 588 { 589 unsigned int ass, tmp, i; 590 unsigned nid = 0; 591 struct alc_spec *spec = codec->spec; 592 593 spec->cdefine.enable_pcbeep = 1; /* assume always enabled */ 594 595 if (spec->cdefine.fixup) { 596 ass = spec->cdefine.sku_cfg; 597 if (ass == ALC_FIXUP_SKU_IGNORE) 598 return -1; 599 goto do_sku; 600 } 601 602 if (!codec->bus->pci) 603 return -1; 604 ass = codec->core.subsystem_id & 0xffff; 605 if (ass != codec->bus->pci->subsystem_device && (ass & 1)) 606 goto do_sku; 607 608 nid = 0x1d; 609 if (codec->core.vendor_id == 0x10ec0260) 610 nid = 0x17; 611 ass = snd_hda_codec_get_pincfg(codec, nid); 612 613 if (!(ass & 1)) { 614 codec_info(codec, "%s: SKU not ready 0x%08x\n", 615 codec->core.chip_name, ass); 616 return -1; 617 } 618 619 /* check sum */ 620 tmp = 0; 621 for (i = 1; i < 16; i++) { 622 if ((ass >> i) & 1) 623 tmp++; 624 } 625 if (((ass >> 16) & 0xf) != tmp) 626 return -1; 627 628 spec->cdefine.port_connectivity = ass >> 30; 629 spec->cdefine.enable_pcbeep = (ass & 0x100000) >> 20; 630 spec->cdefine.check_sum = (ass >> 16) & 0xf; 631 spec->cdefine.customization = ass >> 8; 632 do_sku: 633 spec->cdefine.sku_cfg = ass; 634 spec->cdefine.external_amp = (ass & 0x38) >> 3; 635 spec->cdefine.platform_type = (ass & 0x4) >> 2; 636 spec->cdefine.swap = (ass & 0x2) >> 1; 637 spec->cdefine.override = ass & 0x1; 638 639 codec_dbg(codec, "SKU: Nid=0x%x sku_cfg=0x%08x\n", 640 nid, spec->cdefine.sku_cfg); 641 codec_dbg(codec, "SKU: port_connectivity=0x%x\n", 642 spec->cdefine.port_connectivity); 643 codec_dbg(codec, "SKU: enable_pcbeep=0x%x\n", spec->cdefine.enable_pcbeep); 644 codec_dbg(codec, "SKU: check_sum=0x%08x\n", spec->cdefine.check_sum); 645 codec_dbg(codec, "SKU: customization=0x%08x\n", spec->cdefine.customization); 646 codec_dbg(codec, "SKU: external_amp=0x%x\n", spec->cdefine.external_amp); 647 codec_dbg(codec, "SKU: platform_type=0x%x\n", spec->cdefine.platform_type); 648 codec_dbg(codec, "SKU: swap=0x%x\n", spec->cdefine.swap); 649 codec_dbg(codec, "SKU: override=0x%x\n", spec->cdefine.override); 650 651 return 0; 652 } 653 654 /* return the position of NID in the list, or -1 if not found */ 655 static int find_idx_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums) 656 { 657 int i; 658 for (i = 0; i < nums; i++) 659 if (list[i] == nid) 660 return i; 661 return -1; 662 } 663 /* return true if the given NID is found in the list */ 664 static bool found_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums) 665 { 666 return find_idx_in_nid_list(nid, list, nums) >= 0; 667 } 668 669 /* check subsystem ID and set up device-specific initialization; 670 * return 1 if initialized, 0 if invalid SSID 671 */ 672 /* 32-bit subsystem ID for BIOS loading in HD Audio codec. 673 * 31 ~ 16 : Manufacture ID 674 * 15 ~ 8 : SKU ID 675 * 7 ~ 0 : Assembly ID 676 * port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36 677 */ 678 static int alc_subsystem_id(struct hda_codec *codec, const hda_nid_t *ports) 679 { 680 unsigned int ass, tmp, i; 681 unsigned nid; 682 struct alc_spec *spec = codec->spec; 683 684 if (spec->cdefine.fixup) { 685 ass = spec->cdefine.sku_cfg; 686 if (ass == ALC_FIXUP_SKU_IGNORE) 687 return 0; 688 goto do_sku; 689 } 690 691 ass = codec->core.subsystem_id & 0xffff; 692 if (codec->bus->pci && 693 ass != codec->bus->pci->subsystem_device && (ass & 1)) 694 goto do_sku; 695 696 /* invalid SSID, check the special NID pin defcfg instead */ 697 /* 698 * 31~30 : port connectivity 699 * 29~21 : reserve 700 * 20 : PCBEEP input 701 * 19~16 : Check sum (15:1) 702 * 15~1 : Custom 703 * 0 : override 704 */ 705 nid = 0x1d; 706 if (codec->core.vendor_id == 0x10ec0260) 707 nid = 0x17; 708 ass = snd_hda_codec_get_pincfg(codec, nid); 709 codec_dbg(codec, 710 "realtek: No valid SSID, checking pincfg 0x%08x for NID 0x%x\n", 711 ass, nid); 712 if (!(ass & 1)) 713 return 0; 714 if ((ass >> 30) != 1) /* no physical connection */ 715 return 0; 716 717 /* check sum */ 718 tmp = 0; 719 for (i = 1; i < 16; i++) { 720 if ((ass >> i) & 1) 721 tmp++; 722 } 723 if (((ass >> 16) & 0xf) != tmp) 724 return 0; 725 do_sku: 726 codec_dbg(codec, "realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n", 727 ass & 0xffff, codec->core.vendor_id); 728 /* 729 * 0 : override 730 * 1 : Swap Jack 731 * 2 : 0 --> Desktop, 1 --> Laptop 732 * 3~5 : External Amplifier control 733 * 7~6 : Reserved 734 */ 735 tmp = (ass & 0x38) >> 3; /* external Amp control */ 736 if (spec->init_amp == ALC_INIT_UNDEFINED) { 737 switch (tmp) { 738 case 1: 739 alc_setup_gpio(codec, 0x01); 740 break; 741 case 3: 742 alc_setup_gpio(codec, 0x02); 743 break; 744 case 7: 745 alc_setup_gpio(codec, 0x03); 746 break; 747 case 5: 748 default: 749 spec->init_amp = ALC_INIT_DEFAULT; 750 break; 751 } 752 } 753 754 /* is laptop or Desktop and enable the function "Mute internal speaker 755 * when the external headphone out jack is plugged" 756 */ 757 if (!(ass & 0x8000)) 758 return 1; 759 /* 760 * 10~8 : Jack location 761 * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered 762 * 14~13: Resvered 763 * 15 : 1 --> enable the function "Mute internal speaker 764 * when the external headphone out jack is plugged" 765 */ 766 if (!alc_get_hp_pin(spec)) { 767 hda_nid_t nid; 768 tmp = (ass >> 11) & 0x3; /* HP to chassis */ 769 nid = ports[tmp]; 770 if (found_in_nid_list(nid, spec->gen.autocfg.line_out_pins, 771 spec->gen.autocfg.line_outs)) 772 return 1; 773 spec->gen.autocfg.hp_pins[0] = nid; 774 } 775 return 1; 776 } 777 778 /* Check the validity of ALC subsystem-id 779 * ports contains an array of 4 pin NIDs for port-A, E, D and I */ 780 static void alc_ssid_check(struct hda_codec *codec, const hda_nid_t *ports) 781 { 782 if (!alc_subsystem_id(codec, ports)) { 783 struct alc_spec *spec = codec->spec; 784 codec_dbg(codec, 785 "realtek: Enable default setup for auto mode as fallback\n"); 786 spec->init_amp = ALC_INIT_DEFAULT; 787 } 788 } 789 790 /* 791 */ 792 793 static void alc_fixup_inv_dmic(struct hda_codec *codec, 794 const struct hda_fixup *fix, int action) 795 { 796 struct alc_spec *spec = codec->spec; 797 798 spec->gen.inv_dmic_split = 1; 799 } 800 801 802 static int alc_build_controls(struct hda_codec *codec) 803 { 804 int err; 805 806 err = snd_hda_gen_build_controls(codec); 807 if (err < 0) 808 return err; 809 810 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_BUILD); 811 return 0; 812 } 813 814 815 /* 816 * Common callbacks 817 */ 818 819 static void alc_pre_init(struct hda_codec *codec) 820 { 821 alc_fill_eapd_coef(codec); 822 } 823 824 #define is_s3_resume(codec) \ 825 ((codec)->core.dev.power.power_state.event == PM_EVENT_RESUME) 826 #define is_s4_resume(codec) \ 827 ((codec)->core.dev.power.power_state.event == PM_EVENT_RESTORE) 828 829 static int alc_init(struct hda_codec *codec) 830 { 831 struct alc_spec *spec = codec->spec; 832 833 /* hibernation resume needs the full chip initialization */ 834 if (is_s4_resume(codec)) 835 alc_pre_init(codec); 836 837 if (spec->init_hook) 838 spec->init_hook(codec); 839 840 snd_hda_gen_init(codec); 841 alc_fix_pll(codec); 842 alc_auto_init_amp(codec, spec->init_amp); 843 844 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_INIT); 845 846 return 0; 847 } 848 849 static inline void alc_shutup(struct hda_codec *codec) 850 { 851 struct alc_spec *spec = codec->spec; 852 853 if (!snd_hda_get_bool_hint(codec, "shutup")) 854 return; /* disabled explicitly by hints */ 855 856 if (spec && spec->shutup) 857 spec->shutup(codec); 858 else 859 alc_shutup_pins(codec); 860 } 861 862 static void alc_reboot_notify(struct hda_codec *codec) 863 { 864 struct alc_spec *spec = codec->spec; 865 866 if (spec && spec->reboot_notify) 867 spec->reboot_notify(codec); 868 else 869 alc_shutup(codec); 870 } 871 872 /* power down codec to D3 at reboot/shutdown; set as reboot_notify ops */ 873 static void alc_d3_at_reboot(struct hda_codec *codec) 874 { 875 snd_hda_codec_set_power_to_all(codec, codec->core.afg, AC_PWRST_D3); 876 snd_hda_codec_write(codec, codec->core.afg, 0, 877 AC_VERB_SET_POWER_STATE, AC_PWRST_D3); 878 msleep(10); 879 } 880 881 #define alc_free snd_hda_gen_free 882 883 #ifdef CONFIG_PM 884 static void alc_power_eapd(struct hda_codec *codec) 885 { 886 alc_auto_setup_eapd(codec, false); 887 } 888 889 static int alc_suspend(struct hda_codec *codec) 890 { 891 struct alc_spec *spec = codec->spec; 892 alc_shutup(codec); 893 if (spec && spec->power_hook) 894 spec->power_hook(codec); 895 return 0; 896 } 897 #endif 898 899 #ifdef CONFIG_PM 900 static int alc_resume(struct hda_codec *codec) 901 { 902 struct alc_spec *spec = codec->spec; 903 904 if (!spec->no_depop_delay) 905 msleep(150); /* to avoid pop noise */ 906 codec->patch_ops.init(codec); 907 regcache_sync(codec->core.regmap); 908 hda_call_check_power_status(codec, 0x01); 909 return 0; 910 } 911 #endif 912 913 /* 914 */ 915 static const struct hda_codec_ops alc_patch_ops = { 916 .build_controls = alc_build_controls, 917 .build_pcms = snd_hda_gen_build_pcms, 918 .init = alc_init, 919 .free = alc_free, 920 .unsol_event = snd_hda_jack_unsol_event, 921 #ifdef CONFIG_PM 922 .resume = alc_resume, 923 .suspend = alc_suspend, 924 .check_power_status = snd_hda_gen_check_power_status, 925 #endif 926 .reboot_notify = alc_reboot_notify, 927 }; 928 929 930 #define alc_codec_rename(codec, name) snd_hda_codec_set_name(codec, name) 931 932 /* 933 * Rename codecs appropriately from COEF value or subvendor id 934 */ 935 struct alc_codec_rename_table { 936 unsigned int vendor_id; 937 unsigned short coef_mask; 938 unsigned short coef_bits; 939 const char *name; 940 }; 941 942 struct alc_codec_rename_pci_table { 943 unsigned int codec_vendor_id; 944 unsigned short pci_subvendor; 945 unsigned short pci_subdevice; 946 const char *name; 947 }; 948 949 static struct alc_codec_rename_table rename_tbl[] = { 950 { 0x10ec0221, 0xf00f, 0x1003, "ALC231" }, 951 { 0x10ec0269, 0xfff0, 0x3010, "ALC277" }, 952 { 0x10ec0269, 0xf0f0, 0x2010, "ALC259" }, 953 { 0x10ec0269, 0xf0f0, 0x3010, "ALC258" }, 954 { 0x10ec0269, 0x00f0, 0x0010, "ALC269VB" }, 955 { 0x10ec0269, 0xffff, 0xa023, "ALC259" }, 956 { 0x10ec0269, 0xffff, 0x6023, "ALC281X" }, 957 { 0x10ec0269, 0x00f0, 0x0020, "ALC269VC" }, 958 { 0x10ec0269, 0x00f0, 0x0030, "ALC269VD" }, 959 { 0x10ec0662, 0xffff, 0x4020, "ALC656" }, 960 { 0x10ec0887, 0x00f0, 0x0030, "ALC887-VD" }, 961 { 0x10ec0888, 0x00f0, 0x0030, "ALC888-VD" }, 962 { 0x10ec0888, 0xf0f0, 0x3020, "ALC886" }, 963 { 0x10ec0899, 0x2000, 0x2000, "ALC899" }, 964 { 0x10ec0892, 0xffff, 0x8020, "ALC661" }, 965 { 0x10ec0892, 0xffff, 0x8011, "ALC661" }, 966 { 0x10ec0892, 0xffff, 0x4011, "ALC656" }, 967 { } /* terminator */ 968 }; 969 970 static struct alc_codec_rename_pci_table rename_pci_tbl[] = { 971 { 0x10ec0280, 0x1028, 0, "ALC3220" }, 972 { 0x10ec0282, 0x1028, 0, "ALC3221" }, 973 { 0x10ec0283, 0x1028, 0, "ALC3223" }, 974 { 0x10ec0288, 0x1028, 0, "ALC3263" }, 975 { 0x10ec0292, 0x1028, 0, "ALC3226" }, 976 { 0x10ec0293, 0x1028, 0, "ALC3235" }, 977 { 0x10ec0255, 0x1028, 0, "ALC3234" }, 978 { 0x10ec0668, 0x1028, 0, "ALC3661" }, 979 { 0x10ec0275, 0x1028, 0, "ALC3260" }, 980 { 0x10ec0899, 0x1028, 0, "ALC3861" }, 981 { 0x10ec0298, 0x1028, 0, "ALC3266" }, 982 { 0x10ec0236, 0x1028, 0, "ALC3204" }, 983 { 0x10ec0256, 0x1028, 0, "ALC3246" }, 984 { 0x10ec0225, 0x1028, 0, "ALC3253" }, 985 { 0x10ec0295, 0x1028, 0, "ALC3254" }, 986 { 0x10ec0299, 0x1028, 0, "ALC3271" }, 987 { 0x10ec0670, 0x1025, 0, "ALC669X" }, 988 { 0x10ec0676, 0x1025, 0, "ALC679X" }, 989 { 0x10ec0282, 0x1043, 0, "ALC3229" }, 990 { 0x10ec0233, 0x1043, 0, "ALC3236" }, 991 { 0x10ec0280, 0x103c, 0, "ALC3228" }, 992 { 0x10ec0282, 0x103c, 0, "ALC3227" }, 993 { 0x10ec0286, 0x103c, 0, "ALC3242" }, 994 { 0x10ec0290, 0x103c, 0, "ALC3241" }, 995 { 0x10ec0668, 0x103c, 0, "ALC3662" }, 996 { 0x10ec0283, 0x17aa, 0, "ALC3239" }, 997 { 0x10ec0292, 0x17aa, 0, "ALC3232" }, 998 { } /* terminator */ 999 }; 1000 1001 static int alc_codec_rename_from_preset(struct hda_codec *codec) 1002 { 1003 const struct alc_codec_rename_table *p; 1004 const struct alc_codec_rename_pci_table *q; 1005 1006 for (p = rename_tbl; p->vendor_id; p++) { 1007 if (p->vendor_id != codec->core.vendor_id) 1008 continue; 1009 if ((alc_get_coef0(codec) & p->coef_mask) == p->coef_bits) 1010 return alc_codec_rename(codec, p->name); 1011 } 1012 1013 if (!codec->bus->pci) 1014 return 0; 1015 for (q = rename_pci_tbl; q->codec_vendor_id; q++) { 1016 if (q->codec_vendor_id != codec->core.vendor_id) 1017 continue; 1018 if (q->pci_subvendor != codec->bus->pci->subsystem_vendor) 1019 continue; 1020 if (!q->pci_subdevice || 1021 q->pci_subdevice == codec->bus->pci->subsystem_device) 1022 return alc_codec_rename(codec, q->name); 1023 } 1024 1025 return 0; 1026 } 1027 1028 1029 /* 1030 * Digital-beep handlers 1031 */ 1032 #ifdef CONFIG_SND_HDA_INPUT_BEEP 1033 1034 /* additional beep mixers; private_value will be overwritten */ 1035 static const struct snd_kcontrol_new alc_beep_mixer[] = { 1036 HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT), 1037 HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_INPUT), 1038 }; 1039 1040 /* set up and create beep controls */ 1041 static int set_beep_amp(struct alc_spec *spec, hda_nid_t nid, 1042 int idx, int dir) 1043 { 1044 struct snd_kcontrol_new *knew; 1045 unsigned int beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir); 1046 int i; 1047 1048 for (i = 0; i < ARRAY_SIZE(alc_beep_mixer); i++) { 1049 knew = snd_hda_gen_add_kctl(&spec->gen, NULL, 1050 &alc_beep_mixer[i]); 1051 if (!knew) 1052 return -ENOMEM; 1053 knew->private_value = beep_amp; 1054 } 1055 return 0; 1056 } 1057 1058 static const struct snd_pci_quirk beep_white_list[] = { 1059 SND_PCI_QUIRK(0x1043, 0x103c, "ASUS", 1), 1060 SND_PCI_QUIRK(0x1043, 0x115d, "ASUS", 1), 1061 SND_PCI_QUIRK(0x1043, 0x829f, "ASUS", 1), 1062 SND_PCI_QUIRK(0x1043, 0x8376, "EeePC", 1), 1063 SND_PCI_QUIRK(0x1043, 0x83ce, "EeePC", 1), 1064 SND_PCI_QUIRK(0x1043, 0x831a, "EeePC", 1), 1065 SND_PCI_QUIRK(0x1043, 0x834a, "EeePC", 1), 1066 SND_PCI_QUIRK(0x1458, 0xa002, "GA-MA790X", 1), 1067 SND_PCI_QUIRK(0x8086, 0xd613, "Intel", 1), 1068 {} 1069 }; 1070 1071 static inline int has_cdefine_beep(struct hda_codec *codec) 1072 { 1073 struct alc_spec *spec = codec->spec; 1074 const struct snd_pci_quirk *q; 1075 q = snd_pci_quirk_lookup(codec->bus->pci, beep_white_list); 1076 if (q) 1077 return q->value; 1078 return spec->cdefine.enable_pcbeep; 1079 } 1080 #else 1081 #define set_beep_amp(spec, nid, idx, dir) 0 1082 #define has_cdefine_beep(codec) 0 1083 #endif 1084 1085 /* parse the BIOS configuration and set up the alc_spec */ 1086 /* return 1 if successful, 0 if the proper config is not found, 1087 * or a negative error code 1088 */ 1089 static int alc_parse_auto_config(struct hda_codec *codec, 1090 const hda_nid_t *ignore_nids, 1091 const hda_nid_t *ssid_nids) 1092 { 1093 struct alc_spec *spec = codec->spec; 1094 struct auto_pin_cfg *cfg = &spec->gen.autocfg; 1095 int err; 1096 1097 err = snd_hda_parse_pin_defcfg(codec, cfg, ignore_nids, 1098 spec->parse_flags); 1099 if (err < 0) 1100 return err; 1101 1102 if (ssid_nids) 1103 alc_ssid_check(codec, ssid_nids); 1104 1105 err = snd_hda_gen_parse_auto_config(codec, cfg); 1106 if (err < 0) 1107 return err; 1108 1109 return 1; 1110 } 1111 1112 /* common preparation job for alc_spec */ 1113 static int alc_alloc_spec(struct hda_codec *codec, hda_nid_t mixer_nid) 1114 { 1115 struct alc_spec *spec = kzalloc(sizeof(*spec), GFP_KERNEL); 1116 int err; 1117 1118 if (!spec) 1119 return -ENOMEM; 1120 codec->spec = spec; 1121 snd_hda_gen_spec_init(&spec->gen); 1122 spec->gen.mixer_nid = mixer_nid; 1123 spec->gen.own_eapd_ctl = 1; 1124 codec->single_adc_amp = 1; 1125 /* FIXME: do we need this for all Realtek codec models? */ 1126 codec->spdif_status_reset = 1; 1127 codec->patch_ops = alc_patch_ops; 1128 1129 err = alc_codec_rename_from_preset(codec); 1130 if (err < 0) { 1131 kfree(spec); 1132 return err; 1133 } 1134 return 0; 1135 } 1136 1137 static int alc880_parse_auto_config(struct hda_codec *codec) 1138 { 1139 static const hda_nid_t alc880_ignore[] = { 0x1d, 0 }; 1140 static const hda_nid_t alc880_ssids[] = { 0x15, 0x1b, 0x14, 0 }; 1141 return alc_parse_auto_config(codec, alc880_ignore, alc880_ssids); 1142 } 1143 1144 /* 1145 * ALC880 fix-ups 1146 */ 1147 enum { 1148 ALC880_FIXUP_GPIO1, 1149 ALC880_FIXUP_GPIO2, 1150 ALC880_FIXUP_MEDION_RIM, 1151 ALC880_FIXUP_LG, 1152 ALC880_FIXUP_LG_LW25, 1153 ALC880_FIXUP_W810, 1154 ALC880_FIXUP_EAPD_COEF, 1155 ALC880_FIXUP_TCL_S700, 1156 ALC880_FIXUP_VOL_KNOB, 1157 ALC880_FIXUP_FUJITSU, 1158 ALC880_FIXUP_F1734, 1159 ALC880_FIXUP_UNIWILL, 1160 ALC880_FIXUP_UNIWILL_DIG, 1161 ALC880_FIXUP_Z71V, 1162 ALC880_FIXUP_ASUS_W5A, 1163 ALC880_FIXUP_3ST_BASE, 1164 ALC880_FIXUP_3ST, 1165 ALC880_FIXUP_3ST_DIG, 1166 ALC880_FIXUP_5ST_BASE, 1167 ALC880_FIXUP_5ST, 1168 ALC880_FIXUP_5ST_DIG, 1169 ALC880_FIXUP_6ST_BASE, 1170 ALC880_FIXUP_6ST, 1171 ALC880_FIXUP_6ST_DIG, 1172 ALC880_FIXUP_6ST_AUTOMUTE, 1173 }; 1174 1175 /* enable the volume-knob widget support on NID 0x21 */ 1176 static void alc880_fixup_vol_knob(struct hda_codec *codec, 1177 const struct hda_fixup *fix, int action) 1178 { 1179 if (action == HDA_FIXUP_ACT_PROBE) 1180 snd_hda_jack_detect_enable_callback(codec, 0x21, 1181 alc_update_knob_master); 1182 } 1183 1184 static const struct hda_fixup alc880_fixups[] = { 1185 [ALC880_FIXUP_GPIO1] = { 1186 .type = HDA_FIXUP_FUNC, 1187 .v.func = alc_fixup_gpio1, 1188 }, 1189 [ALC880_FIXUP_GPIO2] = { 1190 .type = HDA_FIXUP_FUNC, 1191 .v.func = alc_fixup_gpio2, 1192 }, 1193 [ALC880_FIXUP_MEDION_RIM] = { 1194 .type = HDA_FIXUP_VERBS, 1195 .v.verbs = (const struct hda_verb[]) { 1196 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 }, 1197 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 }, 1198 { } 1199 }, 1200 .chained = true, 1201 .chain_id = ALC880_FIXUP_GPIO2, 1202 }, 1203 [ALC880_FIXUP_LG] = { 1204 .type = HDA_FIXUP_PINS, 1205 .v.pins = (const struct hda_pintbl[]) { 1206 /* disable bogus unused pins */ 1207 { 0x16, 0x411111f0 }, 1208 { 0x18, 0x411111f0 }, 1209 { 0x1a, 0x411111f0 }, 1210 { } 1211 } 1212 }, 1213 [ALC880_FIXUP_LG_LW25] = { 1214 .type = HDA_FIXUP_PINS, 1215 .v.pins = (const struct hda_pintbl[]) { 1216 { 0x1a, 0x0181344f }, /* line-in */ 1217 { 0x1b, 0x0321403f }, /* headphone */ 1218 { } 1219 } 1220 }, 1221 [ALC880_FIXUP_W810] = { 1222 .type = HDA_FIXUP_PINS, 1223 .v.pins = (const struct hda_pintbl[]) { 1224 /* disable bogus unused pins */ 1225 { 0x17, 0x411111f0 }, 1226 { } 1227 }, 1228 .chained = true, 1229 .chain_id = ALC880_FIXUP_GPIO2, 1230 }, 1231 [ALC880_FIXUP_EAPD_COEF] = { 1232 .type = HDA_FIXUP_VERBS, 1233 .v.verbs = (const struct hda_verb[]) { 1234 /* change to EAPD mode */ 1235 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 }, 1236 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 }, 1237 {} 1238 }, 1239 }, 1240 [ALC880_FIXUP_TCL_S700] = { 1241 .type = HDA_FIXUP_VERBS, 1242 .v.verbs = (const struct hda_verb[]) { 1243 /* change to EAPD mode */ 1244 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 }, 1245 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 }, 1246 {} 1247 }, 1248 .chained = true, 1249 .chain_id = ALC880_FIXUP_GPIO2, 1250 }, 1251 [ALC880_FIXUP_VOL_KNOB] = { 1252 .type = HDA_FIXUP_FUNC, 1253 .v.func = alc880_fixup_vol_knob, 1254 }, 1255 [ALC880_FIXUP_FUJITSU] = { 1256 /* override all pins as BIOS on old Amilo is broken */ 1257 .type = HDA_FIXUP_PINS, 1258 .v.pins = (const struct hda_pintbl[]) { 1259 { 0x14, 0x0121401f }, /* HP */ 1260 { 0x15, 0x99030120 }, /* speaker */ 1261 { 0x16, 0x99030130 }, /* bass speaker */ 1262 { 0x17, 0x411111f0 }, /* N/A */ 1263 { 0x18, 0x411111f0 }, /* N/A */ 1264 { 0x19, 0x01a19950 }, /* mic-in */ 1265 { 0x1a, 0x411111f0 }, /* N/A */ 1266 { 0x1b, 0x411111f0 }, /* N/A */ 1267 { 0x1c, 0x411111f0 }, /* N/A */ 1268 { 0x1d, 0x411111f0 }, /* N/A */ 1269 { 0x1e, 0x01454140 }, /* SPDIF out */ 1270 { } 1271 }, 1272 .chained = true, 1273 .chain_id = ALC880_FIXUP_VOL_KNOB, 1274 }, 1275 [ALC880_FIXUP_F1734] = { 1276 /* almost compatible with FUJITSU, but no bass and SPDIF */ 1277 .type = HDA_FIXUP_PINS, 1278 .v.pins = (const struct hda_pintbl[]) { 1279 { 0x14, 0x0121401f }, /* HP */ 1280 { 0x15, 0x99030120 }, /* speaker */ 1281 { 0x16, 0x411111f0 }, /* N/A */ 1282 { 0x17, 0x411111f0 }, /* N/A */ 1283 { 0x18, 0x411111f0 }, /* N/A */ 1284 { 0x19, 0x01a19950 }, /* mic-in */ 1285 { 0x1a, 0x411111f0 }, /* N/A */ 1286 { 0x1b, 0x411111f0 }, /* N/A */ 1287 { 0x1c, 0x411111f0 }, /* N/A */ 1288 { 0x1d, 0x411111f0 }, /* N/A */ 1289 { 0x1e, 0x411111f0 }, /* N/A */ 1290 { } 1291 }, 1292 .chained = true, 1293 .chain_id = ALC880_FIXUP_VOL_KNOB, 1294 }, 1295 [ALC880_FIXUP_UNIWILL] = { 1296 /* need to fix HP and speaker pins to be parsed correctly */ 1297 .type = HDA_FIXUP_PINS, 1298 .v.pins = (const struct hda_pintbl[]) { 1299 { 0x14, 0x0121411f }, /* HP */ 1300 { 0x15, 0x99030120 }, /* speaker */ 1301 { 0x16, 0x99030130 }, /* bass speaker */ 1302 { } 1303 }, 1304 }, 1305 [ALC880_FIXUP_UNIWILL_DIG] = { 1306 .type = HDA_FIXUP_PINS, 1307 .v.pins = (const struct hda_pintbl[]) { 1308 /* disable bogus unused pins */ 1309 { 0x17, 0x411111f0 }, 1310 { 0x19, 0x411111f0 }, 1311 { 0x1b, 0x411111f0 }, 1312 { 0x1f, 0x411111f0 }, 1313 { } 1314 } 1315 }, 1316 [ALC880_FIXUP_Z71V] = { 1317 .type = HDA_FIXUP_PINS, 1318 .v.pins = (const struct hda_pintbl[]) { 1319 /* set up the whole pins as BIOS is utterly broken */ 1320 { 0x14, 0x99030120 }, /* speaker */ 1321 { 0x15, 0x0121411f }, /* HP */ 1322 { 0x16, 0x411111f0 }, /* N/A */ 1323 { 0x17, 0x411111f0 }, /* N/A */ 1324 { 0x18, 0x01a19950 }, /* mic-in */ 1325 { 0x19, 0x411111f0 }, /* N/A */ 1326 { 0x1a, 0x01813031 }, /* line-in */ 1327 { 0x1b, 0x411111f0 }, /* N/A */ 1328 { 0x1c, 0x411111f0 }, /* N/A */ 1329 { 0x1d, 0x411111f0 }, /* N/A */ 1330 { 0x1e, 0x0144111e }, /* SPDIF */ 1331 { } 1332 } 1333 }, 1334 [ALC880_FIXUP_ASUS_W5A] = { 1335 .type = HDA_FIXUP_PINS, 1336 .v.pins = (const struct hda_pintbl[]) { 1337 /* set up the whole pins as BIOS is utterly broken */ 1338 { 0x14, 0x0121411f }, /* HP */ 1339 { 0x15, 0x411111f0 }, /* N/A */ 1340 { 0x16, 0x411111f0 }, /* N/A */ 1341 { 0x17, 0x411111f0 }, /* N/A */ 1342 { 0x18, 0x90a60160 }, /* mic */ 1343 { 0x19, 0x411111f0 }, /* N/A */ 1344 { 0x1a, 0x411111f0 }, /* N/A */ 1345 { 0x1b, 0x411111f0 }, /* N/A */ 1346 { 0x1c, 0x411111f0 }, /* N/A */ 1347 { 0x1d, 0x411111f0 }, /* N/A */ 1348 { 0x1e, 0xb743111e }, /* SPDIF out */ 1349 { } 1350 }, 1351 .chained = true, 1352 .chain_id = ALC880_FIXUP_GPIO1, 1353 }, 1354 [ALC880_FIXUP_3ST_BASE] = { 1355 .type = HDA_FIXUP_PINS, 1356 .v.pins = (const struct hda_pintbl[]) { 1357 { 0x14, 0x01014010 }, /* line-out */ 1358 { 0x15, 0x411111f0 }, /* N/A */ 1359 { 0x16, 0x411111f0 }, /* N/A */ 1360 { 0x17, 0x411111f0 }, /* N/A */ 1361 { 0x18, 0x01a19c30 }, /* mic-in */ 1362 { 0x19, 0x0121411f }, /* HP */ 1363 { 0x1a, 0x01813031 }, /* line-in */ 1364 { 0x1b, 0x02a19c40 }, /* front-mic */ 1365 { 0x1c, 0x411111f0 }, /* N/A */ 1366 { 0x1d, 0x411111f0 }, /* N/A */ 1367 /* 0x1e is filled in below */ 1368 { 0x1f, 0x411111f0 }, /* N/A */ 1369 { } 1370 } 1371 }, 1372 [ALC880_FIXUP_3ST] = { 1373 .type = HDA_FIXUP_PINS, 1374 .v.pins = (const struct hda_pintbl[]) { 1375 { 0x1e, 0x411111f0 }, /* N/A */ 1376 { } 1377 }, 1378 .chained = true, 1379 .chain_id = ALC880_FIXUP_3ST_BASE, 1380 }, 1381 [ALC880_FIXUP_3ST_DIG] = { 1382 .type = HDA_FIXUP_PINS, 1383 .v.pins = (const struct hda_pintbl[]) { 1384 { 0x1e, 0x0144111e }, /* SPDIF */ 1385 { } 1386 }, 1387 .chained = true, 1388 .chain_id = ALC880_FIXUP_3ST_BASE, 1389 }, 1390 [ALC880_FIXUP_5ST_BASE] = { 1391 .type = HDA_FIXUP_PINS, 1392 .v.pins = (const struct hda_pintbl[]) { 1393 { 0x14, 0x01014010 }, /* front */ 1394 { 0x15, 0x411111f0 }, /* N/A */ 1395 { 0x16, 0x01011411 }, /* CLFE */ 1396 { 0x17, 0x01016412 }, /* surr */ 1397 { 0x18, 0x01a19c30 }, /* mic-in */ 1398 { 0x19, 0x0121411f }, /* HP */ 1399 { 0x1a, 0x01813031 }, /* line-in */ 1400 { 0x1b, 0x02a19c40 }, /* front-mic */ 1401 { 0x1c, 0x411111f0 }, /* N/A */ 1402 { 0x1d, 0x411111f0 }, /* N/A */ 1403 /* 0x1e is filled in below */ 1404 { 0x1f, 0x411111f0 }, /* N/A */ 1405 { } 1406 } 1407 }, 1408 [ALC880_FIXUP_5ST] = { 1409 .type = HDA_FIXUP_PINS, 1410 .v.pins = (const struct hda_pintbl[]) { 1411 { 0x1e, 0x411111f0 }, /* N/A */ 1412 { } 1413 }, 1414 .chained = true, 1415 .chain_id = ALC880_FIXUP_5ST_BASE, 1416 }, 1417 [ALC880_FIXUP_5ST_DIG] = { 1418 .type = HDA_FIXUP_PINS, 1419 .v.pins = (const struct hda_pintbl[]) { 1420 { 0x1e, 0x0144111e }, /* SPDIF */ 1421 { } 1422 }, 1423 .chained = true, 1424 .chain_id = ALC880_FIXUP_5ST_BASE, 1425 }, 1426 [ALC880_FIXUP_6ST_BASE] = { 1427 .type = HDA_FIXUP_PINS, 1428 .v.pins = (const struct hda_pintbl[]) { 1429 { 0x14, 0x01014010 }, /* front */ 1430 { 0x15, 0x01016412 }, /* surr */ 1431 { 0x16, 0x01011411 }, /* CLFE */ 1432 { 0x17, 0x01012414 }, /* side */ 1433 { 0x18, 0x01a19c30 }, /* mic-in */ 1434 { 0x19, 0x02a19c40 }, /* front-mic */ 1435 { 0x1a, 0x01813031 }, /* line-in */ 1436 { 0x1b, 0x0121411f }, /* HP */ 1437 { 0x1c, 0x411111f0 }, /* N/A */ 1438 { 0x1d, 0x411111f0 }, /* N/A */ 1439 /* 0x1e is filled in below */ 1440 { 0x1f, 0x411111f0 }, /* N/A */ 1441 { } 1442 } 1443 }, 1444 [ALC880_FIXUP_6ST] = { 1445 .type = HDA_FIXUP_PINS, 1446 .v.pins = (const struct hda_pintbl[]) { 1447 { 0x1e, 0x411111f0 }, /* N/A */ 1448 { } 1449 }, 1450 .chained = true, 1451 .chain_id = ALC880_FIXUP_6ST_BASE, 1452 }, 1453 [ALC880_FIXUP_6ST_DIG] = { 1454 .type = HDA_FIXUP_PINS, 1455 .v.pins = (const struct hda_pintbl[]) { 1456 { 0x1e, 0x0144111e }, /* SPDIF */ 1457 { } 1458 }, 1459 .chained = true, 1460 .chain_id = ALC880_FIXUP_6ST_BASE, 1461 }, 1462 [ALC880_FIXUP_6ST_AUTOMUTE] = { 1463 .type = HDA_FIXUP_PINS, 1464 .v.pins = (const struct hda_pintbl[]) { 1465 { 0x1b, 0x0121401f }, /* HP with jack detect */ 1466 { } 1467 }, 1468 .chained_before = true, 1469 .chain_id = ALC880_FIXUP_6ST_BASE, 1470 }, 1471 }; 1472 1473 static const struct snd_pci_quirk alc880_fixup_tbl[] = { 1474 SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_FIXUP_W810), 1475 SND_PCI_QUIRK(0x1043, 0x10c3, "ASUS W5A", ALC880_FIXUP_ASUS_W5A), 1476 SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_FIXUP_Z71V), 1477 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS", ALC880_FIXUP_GPIO1), 1478 SND_PCI_QUIRK(0x147b, 0x1045, "ABit AA8XE", ALC880_FIXUP_6ST_AUTOMUTE), 1479 SND_PCI_QUIRK(0x1558, 0x5401, "Clevo GPIO2", ALC880_FIXUP_GPIO2), 1480 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo", ALC880_FIXUP_EAPD_COEF), 1481 SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_FIXUP_UNIWILL_DIG), 1482 SND_PCI_QUIRK(0x1584, 0x9054, "Uniwill", ALC880_FIXUP_F1734), 1483 SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_FIXUP_UNIWILL), 1484 SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_FIXUP_VOL_KNOB), 1485 SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_FIXUP_W810), 1486 SND_PCI_QUIRK(0x161f, 0x205d, "Medion Rim 2150", ALC880_FIXUP_MEDION_RIM), 1487 SND_PCI_QUIRK(0x1631, 0xe011, "PB 13201056", ALC880_FIXUP_6ST_AUTOMUTE), 1488 SND_PCI_QUIRK(0x1734, 0x107c, "FSC Amilo M1437", ALC880_FIXUP_FUJITSU), 1489 SND_PCI_QUIRK(0x1734, 0x1094, "FSC Amilo M1451G", ALC880_FIXUP_FUJITSU), 1490 SND_PCI_QUIRK(0x1734, 0x10ac, "FSC AMILO Xi 1526", ALC880_FIXUP_F1734), 1491 SND_PCI_QUIRK(0x1734, 0x10b0, "FSC Amilo Pi1556", ALC880_FIXUP_FUJITSU), 1492 SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_FIXUP_LG), 1493 SND_PCI_QUIRK(0x1854, 0x005f, "LG P1 Express", ALC880_FIXUP_LG), 1494 SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_FIXUP_LG), 1495 SND_PCI_QUIRK(0x1854, 0x0077, "LG LW25", ALC880_FIXUP_LG_LW25), 1496 SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_FIXUP_TCL_S700), 1497 1498 /* Below is the copied entries from alc880_quirks.c. 1499 * It's not quite sure whether BIOS sets the correct pin-config table 1500 * on these machines, thus they are kept to be compatible with 1501 * the old static quirks. Once when it's confirmed to work without 1502 * these overrides, it'd be better to remove. 1503 */ 1504 SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_FIXUP_5ST_DIG), 1505 SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_FIXUP_6ST), 1506 SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_FIXUP_3ST_DIG), 1507 SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_FIXUP_6ST_DIG), 1508 SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_FIXUP_6ST_DIG), 1509 SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_FIXUP_6ST_DIG), 1510 SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_FIXUP_3ST_DIG), 1511 SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_FIXUP_3ST), 1512 SND_PCI_QUIRK(0x1039, 0x1234, NULL, ALC880_FIXUP_6ST_DIG), 1513 SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_FIXUP_3ST), 1514 SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_FIXUP_3ST), 1515 SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_FIXUP_5ST), 1516 SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_FIXUP_5ST), 1517 SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_FIXUP_5ST), 1518 SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_FIXUP_6ST_DIG), 1519 SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_FIXUP_6ST_DIG), 1520 SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_FIXUP_6ST_DIG), 1521 SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_FIXUP_6ST_DIG), 1522 SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_FIXUP_5ST_DIG), 1523 SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_FIXUP_5ST_DIG), 1524 SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_FIXUP_5ST_DIG), 1525 SND_PCI_QUIRK(0x2668, 0x8086, NULL, ALC880_FIXUP_6ST_DIG), /* broken BIOS */ 1526 SND_PCI_QUIRK(0x8086, 0x2668, NULL, ALC880_FIXUP_6ST_DIG), 1527 SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_FIXUP_5ST_DIG), 1528 SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_FIXUP_5ST_DIG), 1529 SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_FIXUP_5ST_DIG), 1530 SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_FIXUP_3ST_DIG), 1531 SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_FIXUP_5ST_DIG), 1532 SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_FIXUP_3ST_DIG), 1533 SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_FIXUP_3ST_DIG), 1534 SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_FIXUP_5ST_DIG), 1535 SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_FIXUP_5ST_DIG), 1536 SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_FIXUP_5ST_DIG), 1537 /* default Intel */ 1538 SND_PCI_QUIRK_VENDOR(0x8086, "Intel mobo", ALC880_FIXUP_3ST), 1539 SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_FIXUP_5ST_DIG), 1540 SND_PCI_QUIRK(0xe803, 0x1019, NULL, ALC880_FIXUP_6ST_DIG), 1541 {} 1542 }; 1543 1544 static const struct hda_model_fixup alc880_fixup_models[] = { 1545 {.id = ALC880_FIXUP_3ST, .name = "3stack"}, 1546 {.id = ALC880_FIXUP_3ST_DIG, .name = "3stack-digout"}, 1547 {.id = ALC880_FIXUP_5ST, .name = "5stack"}, 1548 {.id = ALC880_FIXUP_5ST_DIG, .name = "5stack-digout"}, 1549 {.id = ALC880_FIXUP_6ST, .name = "6stack"}, 1550 {.id = ALC880_FIXUP_6ST_DIG, .name = "6stack-digout"}, 1551 {.id = ALC880_FIXUP_6ST_AUTOMUTE, .name = "6stack-automute"}, 1552 {} 1553 }; 1554 1555 1556 /* 1557 * OK, here we have finally the patch for ALC880 1558 */ 1559 static int patch_alc880(struct hda_codec *codec) 1560 { 1561 struct alc_spec *spec; 1562 int err; 1563 1564 err = alc_alloc_spec(codec, 0x0b); 1565 if (err < 0) 1566 return err; 1567 1568 spec = codec->spec; 1569 spec->gen.need_dac_fix = 1; 1570 spec->gen.beep_nid = 0x01; 1571 1572 codec->patch_ops.unsol_event = alc880_unsol_event; 1573 1574 alc_pre_init(codec); 1575 1576 snd_hda_pick_fixup(codec, alc880_fixup_models, alc880_fixup_tbl, 1577 alc880_fixups); 1578 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE); 1579 1580 /* automatic parse from the BIOS config */ 1581 err = alc880_parse_auto_config(codec); 1582 if (err < 0) 1583 goto error; 1584 1585 if (!spec->gen.no_analog) { 1586 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT); 1587 if (err < 0) 1588 goto error; 1589 } 1590 1591 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE); 1592 1593 return 0; 1594 1595 error: 1596 alc_free(codec); 1597 return err; 1598 } 1599 1600 1601 /* 1602 * ALC260 support 1603 */ 1604 static int alc260_parse_auto_config(struct hda_codec *codec) 1605 { 1606 static const hda_nid_t alc260_ignore[] = { 0x17, 0 }; 1607 static const hda_nid_t alc260_ssids[] = { 0x10, 0x15, 0x0f, 0 }; 1608 return alc_parse_auto_config(codec, alc260_ignore, alc260_ssids); 1609 } 1610 1611 /* 1612 * Pin config fixes 1613 */ 1614 enum { 1615 ALC260_FIXUP_HP_DC5750, 1616 ALC260_FIXUP_HP_PIN_0F, 1617 ALC260_FIXUP_COEF, 1618 ALC260_FIXUP_GPIO1, 1619 ALC260_FIXUP_GPIO1_TOGGLE, 1620 ALC260_FIXUP_REPLACER, 1621 ALC260_FIXUP_HP_B1900, 1622 ALC260_FIXUP_KN1, 1623 ALC260_FIXUP_FSC_S7020, 1624 ALC260_FIXUP_FSC_S7020_JWSE, 1625 ALC260_FIXUP_VAIO_PINS, 1626 }; 1627 1628 static void alc260_gpio1_automute(struct hda_codec *codec) 1629 { 1630 struct alc_spec *spec = codec->spec; 1631 1632 alc_update_gpio_data(codec, 0x01, spec->gen.hp_jack_present); 1633 } 1634 1635 static void alc260_fixup_gpio1_toggle(struct hda_codec *codec, 1636 const struct hda_fixup *fix, int action) 1637 { 1638 struct alc_spec *spec = codec->spec; 1639 if (action == HDA_FIXUP_ACT_PROBE) { 1640 /* although the machine has only one output pin, we need to 1641 * toggle GPIO1 according to the jack state 1642 */ 1643 spec->gen.automute_hook = alc260_gpio1_automute; 1644 spec->gen.detect_hp = 1; 1645 spec->gen.automute_speaker = 1; 1646 spec->gen.autocfg.hp_pins[0] = 0x0f; /* copy it for automute */ 1647 snd_hda_jack_detect_enable_callback(codec, 0x0f, 1648 snd_hda_gen_hp_automute); 1649 alc_setup_gpio(codec, 0x01); 1650 } 1651 } 1652 1653 static void alc260_fixup_kn1(struct hda_codec *codec, 1654 const struct hda_fixup *fix, int action) 1655 { 1656 struct alc_spec *spec = codec->spec; 1657 static const struct hda_pintbl pincfgs[] = { 1658 { 0x0f, 0x02214000 }, /* HP/speaker */ 1659 { 0x12, 0x90a60160 }, /* int mic */ 1660 { 0x13, 0x02a19000 }, /* ext mic */ 1661 { 0x18, 0x01446000 }, /* SPDIF out */ 1662 /* disable bogus I/O pins */ 1663 { 0x10, 0x411111f0 }, 1664 { 0x11, 0x411111f0 }, 1665 { 0x14, 0x411111f0 }, 1666 { 0x15, 0x411111f0 }, 1667 { 0x16, 0x411111f0 }, 1668 { 0x17, 0x411111f0 }, 1669 { 0x19, 0x411111f0 }, 1670 { } 1671 }; 1672 1673 switch (action) { 1674 case HDA_FIXUP_ACT_PRE_PROBE: 1675 snd_hda_apply_pincfgs(codec, pincfgs); 1676 spec->init_amp = ALC_INIT_NONE; 1677 break; 1678 } 1679 } 1680 1681 static void alc260_fixup_fsc_s7020(struct hda_codec *codec, 1682 const struct hda_fixup *fix, int action) 1683 { 1684 struct alc_spec *spec = codec->spec; 1685 if (action == HDA_FIXUP_ACT_PRE_PROBE) 1686 spec->init_amp = ALC_INIT_NONE; 1687 } 1688 1689 static void alc260_fixup_fsc_s7020_jwse(struct hda_codec *codec, 1690 const struct hda_fixup *fix, int action) 1691 { 1692 struct alc_spec *spec = codec->spec; 1693 if (action == HDA_FIXUP_ACT_PRE_PROBE) { 1694 spec->gen.add_jack_modes = 1; 1695 spec->gen.hp_mic = 1; 1696 } 1697 } 1698 1699 static const struct hda_fixup alc260_fixups[] = { 1700 [ALC260_FIXUP_HP_DC5750] = { 1701 .type = HDA_FIXUP_PINS, 1702 .v.pins = (const struct hda_pintbl[]) { 1703 { 0x11, 0x90130110 }, /* speaker */ 1704 { } 1705 } 1706 }, 1707 [ALC260_FIXUP_HP_PIN_0F] = { 1708 .type = HDA_FIXUP_PINS, 1709 .v.pins = (const struct hda_pintbl[]) { 1710 { 0x0f, 0x01214000 }, /* HP */ 1711 { } 1712 } 1713 }, 1714 [ALC260_FIXUP_COEF] = { 1715 .type = HDA_FIXUP_VERBS, 1716 .v.verbs = (const struct hda_verb[]) { 1717 { 0x1a, AC_VERB_SET_COEF_INDEX, 0x07 }, 1718 { 0x1a, AC_VERB_SET_PROC_COEF, 0x3040 }, 1719 { } 1720 }, 1721 }, 1722 [ALC260_FIXUP_GPIO1] = { 1723 .type = HDA_FIXUP_FUNC, 1724 .v.func = alc_fixup_gpio1, 1725 }, 1726 [ALC260_FIXUP_GPIO1_TOGGLE] = { 1727 .type = HDA_FIXUP_FUNC, 1728 .v.func = alc260_fixup_gpio1_toggle, 1729 .chained = true, 1730 .chain_id = ALC260_FIXUP_HP_PIN_0F, 1731 }, 1732 [ALC260_FIXUP_REPLACER] = { 1733 .type = HDA_FIXUP_VERBS, 1734 .v.verbs = (const struct hda_verb[]) { 1735 { 0x1a, AC_VERB_SET_COEF_INDEX, 0x07 }, 1736 { 0x1a, AC_VERB_SET_PROC_COEF, 0x3050 }, 1737 { } 1738 }, 1739 .chained = true, 1740 .chain_id = ALC260_FIXUP_GPIO1_TOGGLE, 1741 }, 1742 [ALC260_FIXUP_HP_B1900] = { 1743 .type = HDA_FIXUP_FUNC, 1744 .v.func = alc260_fixup_gpio1_toggle, 1745 .chained = true, 1746 .chain_id = ALC260_FIXUP_COEF, 1747 }, 1748 [ALC260_FIXUP_KN1] = { 1749 .type = HDA_FIXUP_FUNC, 1750 .v.func = alc260_fixup_kn1, 1751 }, 1752 [ALC260_FIXUP_FSC_S7020] = { 1753 .type = HDA_FIXUP_FUNC, 1754 .v.func = alc260_fixup_fsc_s7020, 1755 }, 1756 [ALC260_FIXUP_FSC_S7020_JWSE] = { 1757 .type = HDA_FIXUP_FUNC, 1758 .v.func = alc260_fixup_fsc_s7020_jwse, 1759 .chained = true, 1760 .chain_id = ALC260_FIXUP_FSC_S7020, 1761 }, 1762 [ALC260_FIXUP_VAIO_PINS] = { 1763 .type = HDA_FIXUP_PINS, 1764 .v.pins = (const struct hda_pintbl[]) { 1765 /* Pin configs are missing completely on some VAIOs */ 1766 { 0x0f, 0x01211020 }, 1767 { 0x10, 0x0001003f }, 1768 { 0x11, 0x411111f0 }, 1769 { 0x12, 0x01a15930 }, 1770 { 0x13, 0x411111f0 }, 1771 { 0x14, 0x411111f0 }, 1772 { 0x15, 0x411111f0 }, 1773 { 0x16, 0x411111f0 }, 1774 { 0x17, 0x411111f0 }, 1775 { 0x18, 0x411111f0 }, 1776 { 0x19, 0x411111f0 }, 1777 { } 1778 } 1779 }, 1780 }; 1781 1782 static const struct snd_pci_quirk alc260_fixup_tbl[] = { 1783 SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_FIXUP_GPIO1), 1784 SND_PCI_QUIRK(0x1025, 0x007f, "Acer Aspire 9500", ALC260_FIXUP_COEF), 1785 SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_FIXUP_GPIO1), 1786 SND_PCI_QUIRK(0x103c, 0x280a, "HP dc5750", ALC260_FIXUP_HP_DC5750), 1787 SND_PCI_QUIRK(0x103c, 0x30ba, "HP Presario B1900", ALC260_FIXUP_HP_B1900), 1788 SND_PCI_QUIRK(0x104d, 0x81bb, "Sony VAIO", ALC260_FIXUP_VAIO_PINS), 1789 SND_PCI_QUIRK(0x104d, 0x81e2, "Sony VAIO TX", ALC260_FIXUP_HP_PIN_0F), 1790 SND_PCI_QUIRK(0x10cf, 0x1326, "FSC LifeBook S7020", ALC260_FIXUP_FSC_S7020), 1791 SND_PCI_QUIRK(0x1509, 0x4540, "Favorit 100XS", ALC260_FIXUP_GPIO1), 1792 SND_PCI_QUIRK(0x152d, 0x0729, "Quanta KN1", ALC260_FIXUP_KN1), 1793 SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_FIXUP_REPLACER), 1794 SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_FIXUP_COEF), 1795 {} 1796 }; 1797 1798 static const struct hda_model_fixup alc260_fixup_models[] = { 1799 {.id = ALC260_FIXUP_GPIO1, .name = "gpio1"}, 1800 {.id = ALC260_FIXUP_COEF, .name = "coef"}, 1801 {.id = ALC260_FIXUP_FSC_S7020, .name = "fujitsu"}, 1802 {.id = ALC260_FIXUP_FSC_S7020_JWSE, .name = "fujitsu-jwse"}, 1803 {} 1804 }; 1805 1806 /* 1807 */ 1808 static int patch_alc260(struct hda_codec *codec) 1809 { 1810 struct alc_spec *spec; 1811 int err; 1812 1813 err = alc_alloc_spec(codec, 0x07); 1814 if (err < 0) 1815 return err; 1816 1817 spec = codec->spec; 1818 /* as quite a few machines require HP amp for speaker outputs, 1819 * it's easier to enable it unconditionally; even if it's unneeded, 1820 * it's almost harmless. 1821 */ 1822 spec->gen.prefer_hp_amp = 1; 1823 spec->gen.beep_nid = 0x01; 1824 1825 spec->shutup = alc_eapd_shutup; 1826 1827 alc_pre_init(codec); 1828 1829 snd_hda_pick_fixup(codec, alc260_fixup_models, alc260_fixup_tbl, 1830 alc260_fixups); 1831 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE); 1832 1833 /* automatic parse from the BIOS config */ 1834 err = alc260_parse_auto_config(codec); 1835 if (err < 0) 1836 goto error; 1837 1838 if (!spec->gen.no_analog) { 1839 err = set_beep_amp(spec, 0x07, 0x05, HDA_INPUT); 1840 if (err < 0) 1841 goto error; 1842 } 1843 1844 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE); 1845 1846 return 0; 1847 1848 error: 1849 alc_free(codec); 1850 return err; 1851 } 1852 1853 1854 /* 1855 * ALC882/883/885/888/889 support 1856 * 1857 * ALC882 is almost identical with ALC880 but has cleaner and more flexible 1858 * configuration. Each pin widget can choose any input DACs and a mixer. 1859 * Each ADC is connected from a mixer of all inputs. This makes possible 1860 * 6-channel independent captures. 1861 * 1862 * In addition, an independent DAC for the multi-playback (not used in this 1863 * driver yet). 1864 */ 1865 1866 /* 1867 * Pin config fixes 1868 */ 1869 enum { 1870 ALC882_FIXUP_ABIT_AW9D_MAX, 1871 ALC882_FIXUP_LENOVO_Y530, 1872 ALC882_FIXUP_PB_M5210, 1873 ALC882_FIXUP_ACER_ASPIRE_7736, 1874 ALC882_FIXUP_ASUS_W90V, 1875 ALC889_FIXUP_CD, 1876 ALC889_FIXUP_FRONT_HP_NO_PRESENCE, 1877 ALC889_FIXUP_VAIO_TT, 1878 ALC888_FIXUP_EEE1601, 1879 ALC882_FIXUP_EAPD, 1880 ALC883_FIXUP_EAPD, 1881 ALC883_FIXUP_ACER_EAPD, 1882 ALC882_FIXUP_GPIO1, 1883 ALC882_FIXUP_GPIO2, 1884 ALC882_FIXUP_GPIO3, 1885 ALC889_FIXUP_COEF, 1886 ALC882_FIXUP_ASUS_W2JC, 1887 ALC882_FIXUP_ACER_ASPIRE_4930G, 1888 ALC882_FIXUP_ACER_ASPIRE_8930G, 1889 ALC882_FIXUP_ASPIRE_8930G_VERBS, 1890 ALC885_FIXUP_MACPRO_GPIO, 1891 ALC889_FIXUP_DAC_ROUTE, 1892 ALC889_FIXUP_MBP_VREF, 1893 ALC889_FIXUP_IMAC91_VREF, 1894 ALC889_FIXUP_MBA11_VREF, 1895 ALC889_FIXUP_MBA21_VREF, 1896 ALC889_FIXUP_MP11_VREF, 1897 ALC889_FIXUP_MP41_VREF, 1898 ALC882_FIXUP_INV_DMIC, 1899 ALC882_FIXUP_NO_PRIMARY_HP, 1900 ALC887_FIXUP_ASUS_BASS, 1901 ALC887_FIXUP_BASS_CHMAP, 1902 ALC1220_FIXUP_GB_DUAL_CODECS, 1903 ALC1220_FIXUP_CLEVO_P950, 1904 ALC1220_FIXUP_CLEVO_PB51ED, 1905 ALC1220_FIXUP_CLEVO_PB51ED_PINS, 1906 }; 1907 1908 static void alc889_fixup_coef(struct hda_codec *codec, 1909 const struct hda_fixup *fix, int action) 1910 { 1911 if (action != HDA_FIXUP_ACT_INIT) 1912 return; 1913 alc_update_coef_idx(codec, 7, 0, 0x2030); 1914 } 1915 1916 /* set up GPIO at initialization */ 1917 static void alc885_fixup_macpro_gpio(struct hda_codec *codec, 1918 const struct hda_fixup *fix, int action) 1919 { 1920 struct alc_spec *spec = codec->spec; 1921 1922 spec->gpio_write_delay = true; 1923 alc_fixup_gpio3(codec, fix, action); 1924 } 1925 1926 /* Fix the connection of some pins for ALC889: 1927 * At least, Acer Aspire 5935 shows the connections to DAC3/4 don't 1928 * work correctly (bko#42740) 1929 */ 1930 static void alc889_fixup_dac_route(struct hda_codec *codec, 1931 const struct hda_fixup *fix, int action) 1932 { 1933 if (action == HDA_FIXUP_ACT_PRE_PROBE) { 1934 /* fake the connections during parsing the tree */ 1935 hda_nid_t conn1[2] = { 0x0c, 0x0d }; 1936 hda_nid_t conn2[2] = { 0x0e, 0x0f }; 1937 snd_hda_override_conn_list(codec, 0x14, 2, conn1); 1938 snd_hda_override_conn_list(codec, 0x15, 2, conn1); 1939 snd_hda_override_conn_list(codec, 0x18, 2, conn2); 1940 snd_hda_override_conn_list(codec, 0x1a, 2, conn2); 1941 } else if (action == HDA_FIXUP_ACT_PROBE) { 1942 /* restore the connections */ 1943 hda_nid_t conn[5] = { 0x0c, 0x0d, 0x0e, 0x0f, 0x26 }; 1944 snd_hda_override_conn_list(codec, 0x14, 5, conn); 1945 snd_hda_override_conn_list(codec, 0x15, 5, conn); 1946 snd_hda_override_conn_list(codec, 0x18, 5, conn); 1947 snd_hda_override_conn_list(codec, 0x1a, 5, conn); 1948 } 1949 } 1950 1951 /* Set VREF on HP pin */ 1952 static void alc889_fixup_mbp_vref(struct hda_codec *codec, 1953 const struct hda_fixup *fix, int action) 1954 { 1955 struct alc_spec *spec = codec->spec; 1956 static hda_nid_t nids[3] = { 0x14, 0x15, 0x19 }; 1957 int i; 1958 1959 if (action != HDA_FIXUP_ACT_INIT) 1960 return; 1961 for (i = 0; i < ARRAY_SIZE(nids); i++) { 1962 unsigned int val = snd_hda_codec_get_pincfg(codec, nids[i]); 1963 if (get_defcfg_device(val) != AC_JACK_HP_OUT) 1964 continue; 1965 val = snd_hda_codec_get_pin_target(codec, nids[i]); 1966 val |= AC_PINCTL_VREF_80; 1967 snd_hda_set_pin_ctl(codec, nids[i], val); 1968 spec->gen.keep_vref_in_automute = 1; 1969 break; 1970 } 1971 } 1972 1973 static void alc889_fixup_mac_pins(struct hda_codec *codec, 1974 const hda_nid_t *nids, int num_nids) 1975 { 1976 struct alc_spec *spec = codec->spec; 1977 int i; 1978 1979 for (i = 0; i < num_nids; i++) { 1980 unsigned int val; 1981 val = snd_hda_codec_get_pin_target(codec, nids[i]); 1982 val |= AC_PINCTL_VREF_50; 1983 snd_hda_set_pin_ctl(codec, nids[i], val); 1984 } 1985 spec->gen.keep_vref_in_automute = 1; 1986 } 1987 1988 /* Set VREF on speaker pins on imac91 */ 1989 static void alc889_fixup_imac91_vref(struct hda_codec *codec, 1990 const struct hda_fixup *fix, int action) 1991 { 1992 static hda_nid_t nids[2] = { 0x18, 0x1a }; 1993 1994 if (action == HDA_FIXUP_ACT_INIT) 1995 alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids)); 1996 } 1997 1998 /* Set VREF on speaker pins on mba11 */ 1999 static void alc889_fixup_mba11_vref(struct hda_codec *codec, 2000 const struct hda_fixup *fix, int action) 2001 { 2002 static hda_nid_t nids[1] = { 0x18 }; 2003 2004 if (action == HDA_FIXUP_ACT_INIT) 2005 alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids)); 2006 } 2007 2008 /* Set VREF on speaker pins on mba21 */ 2009 static void alc889_fixup_mba21_vref(struct hda_codec *codec, 2010 const struct hda_fixup *fix, int action) 2011 { 2012 static hda_nid_t nids[2] = { 0x18, 0x19 }; 2013 2014 if (action == HDA_FIXUP_ACT_INIT) 2015 alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids)); 2016 } 2017 2018 /* Don't take HP output as primary 2019 * Strangely, the speaker output doesn't work on Vaio Z and some Vaio 2020 * all-in-one desktop PCs (for example VGC-LN51JGB) through DAC 0x05 2021 */ 2022 static void alc882_fixup_no_primary_hp(struct hda_codec *codec, 2023 const struct hda_fixup *fix, int action) 2024 { 2025 struct alc_spec *spec = codec->spec; 2026 if (action == HDA_FIXUP_ACT_PRE_PROBE) { 2027 spec->gen.no_primary_hp = 1; 2028 spec->gen.no_multi_io = 1; 2029 } 2030 } 2031 2032 static void alc_fixup_bass_chmap(struct hda_codec *codec, 2033 const struct hda_fixup *fix, int action); 2034 2035 /* For dual-codec configuration, we need to disable some features to avoid 2036 * conflicts of kctls and PCM streams 2037 */ 2038 static void alc_fixup_dual_codecs(struct hda_codec *codec, 2039 const struct hda_fixup *fix, int action) 2040 { 2041 struct alc_spec *spec = codec->spec; 2042 2043 if (action != HDA_FIXUP_ACT_PRE_PROBE) 2044 return; 2045 /* disable vmaster */ 2046 spec->gen.suppress_vmaster = 1; 2047 /* auto-mute and auto-mic switch don't work with multiple codecs */ 2048 spec->gen.suppress_auto_mute = 1; 2049 spec->gen.suppress_auto_mic = 1; 2050 /* disable aamix as well */ 2051 spec->gen.mixer_nid = 0; 2052 /* add location prefix to avoid conflicts */ 2053 codec->force_pin_prefix = 1; 2054 } 2055 2056 static void rename_ctl(struct hda_codec *codec, const char *oldname, 2057 const char *newname) 2058 { 2059 struct snd_kcontrol *kctl; 2060 2061 kctl = snd_hda_find_mixer_ctl(codec, oldname); 2062 if (kctl) 2063 strcpy(kctl->id.name, newname); 2064 } 2065 2066 static void alc1220_fixup_gb_dual_codecs(struct hda_codec *codec, 2067 const struct hda_fixup *fix, 2068 int action) 2069 { 2070 alc_fixup_dual_codecs(codec, fix, action); 2071 switch (action) { 2072 case HDA_FIXUP_ACT_PRE_PROBE: 2073 /* override card longname to provide a unique UCM profile */ 2074 strcpy(codec->card->longname, "HDAudio-Gigabyte-ALC1220DualCodecs"); 2075 break; 2076 case HDA_FIXUP_ACT_BUILD: 2077 /* rename Capture controls depending on the codec */ 2078 rename_ctl(codec, "Capture Volume", 2079 codec->addr == 0 ? 2080 "Rear-Panel Capture Volume" : 2081 "Front-Panel Capture Volume"); 2082 rename_ctl(codec, "Capture Switch", 2083 codec->addr == 0 ? 2084 "Rear-Panel Capture Switch" : 2085 "Front-Panel Capture Switch"); 2086 break; 2087 } 2088 } 2089 2090 static void alc1220_fixup_clevo_p950(struct hda_codec *codec, 2091 const struct hda_fixup *fix, 2092 int action) 2093 { 2094 hda_nid_t conn1[1] = { 0x0c }; 2095 2096 if (action != HDA_FIXUP_ACT_PRE_PROBE) 2097 return; 2098 2099 alc_update_coef_idx(codec, 0x7, 0, 0x3c3); 2100 /* We therefore want to make sure 0x14 (front headphone) and 2101 * 0x1b (speakers) use the stereo DAC 0x02 2102 */ 2103 snd_hda_override_conn_list(codec, 0x14, 1, conn1); 2104 snd_hda_override_conn_list(codec, 0x1b, 1, conn1); 2105 } 2106 2107 static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec *codec, 2108 const struct hda_fixup *fix, int action); 2109 2110 static void alc1220_fixup_clevo_pb51ed(struct hda_codec *codec, 2111 const struct hda_fixup *fix, 2112 int action) 2113 { 2114 alc1220_fixup_clevo_p950(codec, fix, action); 2115 alc_fixup_headset_mode_no_hp_mic(codec, fix, action); 2116 } 2117 2118 static const struct hda_fixup alc882_fixups[] = { 2119 [ALC882_FIXUP_ABIT_AW9D_MAX] = { 2120 .type = HDA_FIXUP_PINS, 2121 .v.pins = (const struct hda_pintbl[]) { 2122 { 0x15, 0x01080104 }, /* side */ 2123 { 0x16, 0x01011012 }, /* rear */ 2124 { 0x17, 0x01016011 }, /* clfe */ 2125 { } 2126 } 2127 }, 2128 [ALC882_FIXUP_LENOVO_Y530] = { 2129 .type = HDA_FIXUP_PINS, 2130 .v.pins = (const struct hda_pintbl[]) { 2131 { 0x15, 0x99130112 }, /* rear int speakers */ 2132 { 0x16, 0x99130111 }, /* subwoofer */ 2133 { } 2134 } 2135 }, 2136 [ALC882_FIXUP_PB_M5210] = { 2137 .type = HDA_FIXUP_PINCTLS, 2138 .v.pins = (const struct hda_pintbl[]) { 2139 { 0x19, PIN_VREF50 }, 2140 {} 2141 } 2142 }, 2143 [ALC882_FIXUP_ACER_ASPIRE_7736] = { 2144 .type = HDA_FIXUP_FUNC, 2145 .v.func = alc_fixup_sku_ignore, 2146 }, 2147 [ALC882_FIXUP_ASUS_W90V] = { 2148 .type = HDA_FIXUP_PINS, 2149 .v.pins = (const struct hda_pintbl[]) { 2150 { 0x16, 0x99130110 }, /* fix sequence for CLFE */ 2151 { } 2152 } 2153 }, 2154 [ALC889_FIXUP_CD] = { 2155 .type = HDA_FIXUP_PINS, 2156 .v.pins = (const struct hda_pintbl[]) { 2157 { 0x1c, 0x993301f0 }, /* CD */ 2158 { } 2159 } 2160 }, 2161 [ALC889_FIXUP_FRONT_HP_NO_PRESENCE] = { 2162 .type = HDA_FIXUP_PINS, 2163 .v.pins = (const struct hda_pintbl[]) { 2164 { 0x1b, 0x02214120 }, /* Front HP jack is flaky, disable jack detect */ 2165 { } 2166 }, 2167 .chained = true, 2168 .chain_id = ALC889_FIXUP_CD, 2169 }, 2170 [ALC889_FIXUP_VAIO_TT] = { 2171 .type = HDA_FIXUP_PINS, 2172 .v.pins = (const struct hda_pintbl[]) { 2173 { 0x17, 0x90170111 }, /* hidden surround speaker */ 2174 { } 2175 } 2176 }, 2177 [ALC888_FIXUP_EEE1601] = { 2178 .type = HDA_FIXUP_VERBS, 2179 .v.verbs = (const struct hda_verb[]) { 2180 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b }, 2181 { 0x20, AC_VERB_SET_PROC_COEF, 0x0838 }, 2182 { } 2183 } 2184 }, 2185 [ALC882_FIXUP_EAPD] = { 2186 .type = HDA_FIXUP_VERBS, 2187 .v.verbs = (const struct hda_verb[]) { 2188 /* change to EAPD mode */ 2189 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 }, 2190 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 }, 2191 { } 2192 } 2193 }, 2194 [ALC883_FIXUP_EAPD] = { 2195 .type = HDA_FIXUP_VERBS, 2196 .v.verbs = (const struct hda_verb[]) { 2197 /* change to EAPD mode */ 2198 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 }, 2199 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 }, 2200 { } 2201 } 2202 }, 2203 [ALC883_FIXUP_ACER_EAPD] = { 2204 .type = HDA_FIXUP_VERBS, 2205 .v.verbs = (const struct hda_verb[]) { 2206 /* eanable EAPD on Acer laptops */ 2207 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 }, 2208 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 }, 2209 { } 2210 } 2211 }, 2212 [ALC882_FIXUP_GPIO1] = { 2213 .type = HDA_FIXUP_FUNC, 2214 .v.func = alc_fixup_gpio1, 2215 }, 2216 [ALC882_FIXUP_GPIO2] = { 2217 .type = HDA_FIXUP_FUNC, 2218 .v.func = alc_fixup_gpio2, 2219 }, 2220 [ALC882_FIXUP_GPIO3] = { 2221 .type = HDA_FIXUP_FUNC, 2222 .v.func = alc_fixup_gpio3, 2223 }, 2224 [ALC882_FIXUP_ASUS_W2JC] = { 2225 .type = HDA_FIXUP_FUNC, 2226 .v.func = alc_fixup_gpio1, 2227 .chained = true, 2228 .chain_id = ALC882_FIXUP_EAPD, 2229 }, 2230 [ALC889_FIXUP_COEF] = { 2231 .type = HDA_FIXUP_FUNC, 2232 .v.func = alc889_fixup_coef, 2233 }, 2234 [ALC882_FIXUP_ACER_ASPIRE_4930G] = { 2235 .type = HDA_FIXUP_PINS, 2236 .v.pins = (const struct hda_pintbl[]) { 2237 { 0x16, 0x99130111 }, /* CLFE speaker */ 2238 { 0x17, 0x99130112 }, /* surround speaker */ 2239 { } 2240 }, 2241 .chained = true, 2242 .chain_id = ALC882_FIXUP_GPIO1, 2243 }, 2244 [ALC882_FIXUP_ACER_ASPIRE_8930G] = { 2245 .type = HDA_FIXUP_PINS, 2246 .v.pins = (const struct hda_pintbl[]) { 2247 { 0x16, 0x99130111 }, /* CLFE speaker */ 2248 { 0x1b, 0x99130112 }, /* surround speaker */ 2249 { } 2250 }, 2251 .chained = true, 2252 .chain_id = ALC882_FIXUP_ASPIRE_8930G_VERBS, 2253 }, 2254 [ALC882_FIXUP_ASPIRE_8930G_VERBS] = { 2255 /* additional init verbs for Acer Aspire 8930G */ 2256 .type = HDA_FIXUP_VERBS, 2257 .v.verbs = (const struct hda_verb[]) { 2258 /* Enable all DACs */ 2259 /* DAC DISABLE/MUTE 1? */ 2260 /* setting bits 1-5 disables DAC nids 0x02-0x06 2261 * apparently. Init=0x38 */ 2262 { 0x20, AC_VERB_SET_COEF_INDEX, 0x03 }, 2263 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 }, 2264 /* DAC DISABLE/MUTE 2? */ 2265 /* some bit here disables the other DACs. 2266 * Init=0x4900 */ 2267 { 0x20, AC_VERB_SET_COEF_INDEX, 0x08 }, 2268 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 }, 2269 /* DMIC fix 2270 * This laptop has a stereo digital microphone. 2271 * The mics are only 1cm apart which makes the stereo 2272 * useless. However, either the mic or the ALC889 2273 * makes the signal become a difference/sum signal 2274 * instead of standard stereo, which is annoying. 2275 * So instead we flip this bit which makes the 2276 * codec replicate the sum signal to both channels, 2277 * turning it into a normal mono mic. 2278 */ 2279 /* DMIC_CONTROL? Init value = 0x0001 */ 2280 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b }, 2281 { 0x20, AC_VERB_SET_PROC_COEF, 0x0003 }, 2282 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 }, 2283 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 }, 2284 { } 2285 }, 2286 .chained = true, 2287 .chain_id = ALC882_FIXUP_GPIO1, 2288 }, 2289 [ALC885_FIXUP_MACPRO_GPIO] = { 2290 .type = HDA_FIXUP_FUNC, 2291 .v.func = alc885_fixup_macpro_gpio, 2292 }, 2293 [ALC889_FIXUP_DAC_ROUTE] = { 2294 .type = HDA_FIXUP_FUNC, 2295 .v.func = alc889_fixup_dac_route, 2296 }, 2297 [ALC889_FIXUP_MBP_VREF] = { 2298 .type = HDA_FIXUP_FUNC, 2299 .v.func = alc889_fixup_mbp_vref, 2300 .chained = true, 2301 .chain_id = ALC882_FIXUP_GPIO1, 2302 }, 2303 [ALC889_FIXUP_IMAC91_VREF] = { 2304 .type = HDA_FIXUP_FUNC, 2305 .v.func = alc889_fixup_imac91_vref, 2306 .chained = true, 2307 .chain_id = ALC882_FIXUP_GPIO1, 2308 }, 2309 [ALC889_FIXUP_MBA11_VREF] = { 2310 .type = HDA_FIXUP_FUNC, 2311 .v.func = alc889_fixup_mba11_vref, 2312 .chained = true, 2313 .chain_id = ALC889_FIXUP_MBP_VREF, 2314 }, 2315 [ALC889_FIXUP_MBA21_VREF] = { 2316 .type = HDA_FIXUP_FUNC, 2317 .v.func = alc889_fixup_mba21_vref, 2318 .chained = true, 2319 .chain_id = ALC889_FIXUP_MBP_VREF, 2320 }, 2321 [ALC889_FIXUP_MP11_VREF] = { 2322 .type = HDA_FIXUP_FUNC, 2323 .v.func = alc889_fixup_mba11_vref, 2324 .chained = true, 2325 .chain_id = ALC885_FIXUP_MACPRO_GPIO, 2326 }, 2327 [ALC889_FIXUP_MP41_VREF] = { 2328 .type = HDA_FIXUP_FUNC, 2329 .v.func = alc889_fixup_mbp_vref, 2330 .chained = true, 2331 .chain_id = ALC885_FIXUP_MACPRO_GPIO, 2332 }, 2333 [ALC882_FIXUP_INV_DMIC] = { 2334 .type = HDA_FIXUP_FUNC, 2335 .v.func = alc_fixup_inv_dmic, 2336 }, 2337 [ALC882_FIXUP_NO_PRIMARY_HP] = { 2338 .type = HDA_FIXUP_FUNC, 2339 .v.func = alc882_fixup_no_primary_hp, 2340 }, 2341 [ALC887_FIXUP_ASUS_BASS] = { 2342 .type = HDA_FIXUP_PINS, 2343 .v.pins = (const struct hda_pintbl[]) { 2344 {0x16, 0x99130130}, /* bass speaker */ 2345 {} 2346 }, 2347 .chained = true, 2348 .chain_id = ALC887_FIXUP_BASS_CHMAP, 2349 }, 2350 [ALC887_FIXUP_BASS_CHMAP] = { 2351 .type = HDA_FIXUP_FUNC, 2352 .v.func = alc_fixup_bass_chmap, 2353 }, 2354 [ALC1220_FIXUP_GB_DUAL_CODECS] = { 2355 .type = HDA_FIXUP_FUNC, 2356 .v.func = alc1220_fixup_gb_dual_codecs, 2357 }, 2358 [ALC1220_FIXUP_CLEVO_P950] = { 2359 .type = HDA_FIXUP_FUNC, 2360 .v.func = alc1220_fixup_clevo_p950, 2361 }, 2362 [ALC1220_FIXUP_CLEVO_PB51ED] = { 2363 .type = HDA_FIXUP_FUNC, 2364 .v.func = alc1220_fixup_clevo_pb51ed, 2365 }, 2366 [ALC1220_FIXUP_CLEVO_PB51ED_PINS] = { 2367 .type = HDA_FIXUP_PINS, 2368 .v.pins = (const struct hda_pintbl[]) { 2369 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */ 2370 {} 2371 }, 2372 .chained = true, 2373 .chain_id = ALC1220_FIXUP_CLEVO_PB51ED, 2374 }, 2375 }; 2376 2377 static const struct snd_pci_quirk alc882_fixup_tbl[] = { 2378 SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_FIXUP_ACER_EAPD), 2379 SND_PCI_QUIRK(0x1025, 0x0090, "Acer Aspire", ALC883_FIXUP_ACER_EAPD), 2380 SND_PCI_QUIRK(0x1025, 0x0107, "Acer Aspire", ALC883_FIXUP_ACER_EAPD), 2381 SND_PCI_QUIRK(0x1025, 0x010a, "Acer Ferrari 5000", ALC883_FIXUP_ACER_EAPD), 2382 SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_FIXUP_ACER_EAPD), 2383 SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_FIXUP_ACER_EAPD), 2384 SND_PCI_QUIRK(0x1025, 0x0121, "Acer Aspire 5920G", ALC883_FIXUP_ACER_EAPD), 2385 SND_PCI_QUIRK(0x1025, 0x013e, "Acer Aspire 4930G", 2386 ALC882_FIXUP_ACER_ASPIRE_4930G), 2387 SND_PCI_QUIRK(0x1025, 0x013f, "Acer Aspire 5930G", 2388 ALC882_FIXUP_ACER_ASPIRE_4930G), 2389 SND_PCI_QUIRK(0x1025, 0x0145, "Acer Aspire 8930G", 2390 ALC882_FIXUP_ACER_ASPIRE_8930G), 2391 SND_PCI_QUIRK(0x1025, 0x0146, "Acer Aspire 6935G", 2392 ALC882_FIXUP_ACER_ASPIRE_8930G), 2393 SND_PCI_QUIRK(0x1025, 0x015e, "Acer Aspire 6930G", 2394 ALC882_FIXUP_ACER_ASPIRE_4930G), 2395 SND_PCI_QUIRK(0x1025, 0x0166, "Acer Aspire 6530G", 2396 ALC882_FIXUP_ACER_ASPIRE_4930G), 2397 SND_PCI_QUIRK(0x1025, 0x0142, "Acer Aspire 7730G", 2398 ALC882_FIXUP_ACER_ASPIRE_4930G), 2399 SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", ALC882_FIXUP_PB_M5210), 2400 SND_PCI_QUIRK(0x1025, 0x021e, "Acer Aspire 5739G", 2401 ALC882_FIXUP_ACER_ASPIRE_4930G), 2402 SND_PCI_QUIRK(0x1025, 0x0259, "Acer Aspire 5935", ALC889_FIXUP_DAC_ROUTE), 2403 SND_PCI_QUIRK(0x1025, 0x026b, "Acer Aspire 8940G", ALC882_FIXUP_ACER_ASPIRE_8930G), 2404 SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", ALC882_FIXUP_ACER_ASPIRE_7736), 2405 SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_FIXUP_EAPD), 2406 SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", ALC882_FIXUP_ASUS_W90V), 2407 SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_FIXUP_ASUS_W2JC), 2408 SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_FIXUP_EEE1601), 2409 SND_PCI_QUIRK(0x1043, 0x84bc, "ASUS ET2700", ALC887_FIXUP_ASUS_BASS), 2410 SND_PCI_QUIRK(0x1043, 0x8691, "ASUS ROG Ranger VIII", ALC882_FIXUP_GPIO3), 2411 SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT), 2412 SND_PCI_QUIRK(0x104d, 0x905a, "Sony Vaio Z", ALC882_FIXUP_NO_PRIMARY_HP), 2413 SND_PCI_QUIRK(0x104d, 0x9060, "Sony Vaio VPCL14M1R", ALC882_FIXUP_NO_PRIMARY_HP), 2414 SND_PCI_QUIRK(0x104d, 0x9043, "Sony Vaio VGC-LN51JGB", ALC882_FIXUP_NO_PRIMARY_HP), 2415 SND_PCI_QUIRK(0x104d, 0x9044, "Sony VAIO AiO", ALC882_FIXUP_NO_PRIMARY_HP), 2416 2417 /* All Apple entries are in codec SSIDs */ 2418 SND_PCI_QUIRK(0x106b, 0x00a0, "MacBookPro 3,1", ALC889_FIXUP_MBP_VREF), 2419 SND_PCI_QUIRK(0x106b, 0x00a1, "Macbook", ALC889_FIXUP_MBP_VREF), 2420 SND_PCI_QUIRK(0x106b, 0x00a4, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF), 2421 SND_PCI_QUIRK(0x106b, 0x0c00, "Mac Pro", ALC889_FIXUP_MP11_VREF), 2422 SND_PCI_QUIRK(0x106b, 0x1000, "iMac 24", ALC885_FIXUP_MACPRO_GPIO), 2423 SND_PCI_QUIRK(0x106b, 0x2800, "AppleTV", ALC885_FIXUP_MACPRO_GPIO), 2424 SND_PCI_QUIRK(0x106b, 0x2c00, "MacbookPro rev3", ALC889_FIXUP_MBP_VREF), 2425 SND_PCI_QUIRK(0x106b, 0x3000, "iMac", ALC889_FIXUP_MBP_VREF), 2426 SND_PCI_QUIRK(0x106b, 0x3200, "iMac 7,1 Aluminum", ALC882_FIXUP_EAPD), 2427 SND_PCI_QUIRK(0x106b, 0x3400, "MacBookAir 1,1", ALC889_FIXUP_MBA11_VREF), 2428 SND_PCI_QUIRK(0x106b, 0x3500, "MacBookAir 2,1", ALC889_FIXUP_MBA21_VREF), 2429 SND_PCI_QUIRK(0x106b, 0x3600, "Macbook 3,1", ALC889_FIXUP_MBP_VREF), 2430 SND_PCI_QUIRK(0x106b, 0x3800, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF), 2431 SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_FIXUP_MACPRO_GPIO), 2432 SND_PCI_QUIRK(0x106b, 0x3f00, "Macbook 5,1", ALC889_FIXUP_IMAC91_VREF), 2433 SND_PCI_QUIRK(0x106b, 0x4000, "MacbookPro 5,1", ALC889_FIXUP_IMAC91_VREF), 2434 SND_PCI_QUIRK(0x106b, 0x4100, "Macmini 3,1", ALC889_FIXUP_IMAC91_VREF), 2435 SND_PCI_QUIRK(0x106b, 0x4200, "Mac Pro 4,1/5,1", ALC889_FIXUP_MP41_VREF), 2436 SND_PCI_QUIRK(0x106b, 0x4300, "iMac 9,1", ALC889_FIXUP_IMAC91_VREF), 2437 SND_PCI_QUIRK(0x106b, 0x4600, "MacbookPro 5,2", ALC889_FIXUP_IMAC91_VREF), 2438 SND_PCI_QUIRK(0x106b, 0x4900, "iMac 9,1 Aluminum", ALC889_FIXUP_IMAC91_VREF), 2439 SND_PCI_QUIRK(0x106b, 0x4a00, "Macbook 5,2", ALC889_FIXUP_MBA11_VREF), 2440 2441 SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC882_FIXUP_EAPD), 2442 SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte EP45-DS3/Z87X-UD3H", ALC889_FIXUP_FRONT_HP_NO_PRESENCE), 2443 SND_PCI_QUIRK(0x1458, 0xa0b8, "Gigabyte AZ370-Gaming", ALC1220_FIXUP_GB_DUAL_CODECS), 2444 SND_PCI_QUIRK(0x1462, 0x7350, "MSI-7350", ALC889_FIXUP_CD), 2445 SND_PCI_QUIRK(0x1462, 0xda57, "MSI Z270-Gaming", ALC1220_FIXUP_GB_DUAL_CODECS), 2446 SND_PCI_QUIRK_VENDOR(0x1462, "MSI", ALC882_FIXUP_GPIO3), 2447 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", ALC882_FIXUP_ABIT_AW9D_MAX), 2448 SND_PCI_QUIRK(0x1558, 0x9501, "Clevo P950HR", ALC1220_FIXUP_CLEVO_P950), 2449 SND_PCI_QUIRK(0x1558, 0x95e1, "Clevo P95xER", ALC1220_FIXUP_CLEVO_P950), 2450 SND_PCI_QUIRK(0x1558, 0x95e2, "Clevo P950ER", ALC1220_FIXUP_CLEVO_P950), 2451 SND_PCI_QUIRK(0x1558, 0x96e1, "System76 Oryx Pro (oryp5)", ALC1220_FIXUP_CLEVO_PB51ED_PINS), 2452 SND_PCI_QUIRK(0x1558, 0x97e1, "System76 Oryx Pro (oryp5)", ALC1220_FIXUP_CLEVO_PB51ED_PINS), 2453 SND_PCI_QUIRK(0x1558, 0x65d1, "Tuxedo Book XC1509", ALC1220_FIXUP_CLEVO_PB51ED_PINS), 2454 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC882_FIXUP_EAPD), 2455 SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_FIXUP_EAPD), 2456 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530), 2457 SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC889_FIXUP_COEF), 2458 {} 2459 }; 2460 2461 static const struct hda_model_fixup alc882_fixup_models[] = { 2462 {.id = ALC882_FIXUP_ABIT_AW9D_MAX, .name = "abit-aw9d"}, 2463 {.id = ALC882_FIXUP_LENOVO_Y530, .name = "lenovo-y530"}, 2464 {.id = ALC882_FIXUP_ACER_ASPIRE_7736, .name = "acer-aspire-7736"}, 2465 {.id = ALC882_FIXUP_ASUS_W90V, .name = "asus-w90v"}, 2466 {.id = ALC889_FIXUP_CD, .name = "cd"}, 2467 {.id = ALC889_FIXUP_FRONT_HP_NO_PRESENCE, .name = "no-front-hp"}, 2468 {.id = ALC889_FIXUP_VAIO_TT, .name = "vaio-tt"}, 2469 {.id = ALC888_FIXUP_EEE1601, .name = "eee1601"}, 2470 {.id = ALC882_FIXUP_EAPD, .name = "alc882-eapd"}, 2471 {.id = ALC883_FIXUP_EAPD, .name = "alc883-eapd"}, 2472 {.id = ALC882_FIXUP_GPIO1, .name = "gpio1"}, 2473 {.id = ALC882_FIXUP_GPIO2, .name = "gpio2"}, 2474 {.id = ALC882_FIXUP_GPIO3, .name = "gpio3"}, 2475 {.id = ALC889_FIXUP_COEF, .name = "alc889-coef"}, 2476 {.id = ALC882_FIXUP_ASUS_W2JC, .name = "asus-w2jc"}, 2477 {.id = ALC882_FIXUP_ACER_ASPIRE_4930G, .name = "acer-aspire-4930g"}, 2478 {.id = ALC882_FIXUP_ACER_ASPIRE_8930G, .name = "acer-aspire-8930g"}, 2479 {.id = ALC883_FIXUP_ACER_EAPD, .name = "acer-aspire"}, 2480 {.id = ALC885_FIXUP_MACPRO_GPIO, .name = "macpro-gpio"}, 2481 {.id = ALC889_FIXUP_DAC_ROUTE, .name = "dac-route"}, 2482 {.id = ALC889_FIXUP_MBP_VREF, .name = "mbp-vref"}, 2483 {.id = ALC889_FIXUP_IMAC91_VREF, .name = "imac91-vref"}, 2484 {.id = ALC889_FIXUP_MBA11_VREF, .name = "mba11-vref"}, 2485 {.id = ALC889_FIXUP_MBA21_VREF, .name = "mba21-vref"}, 2486 {.id = ALC889_FIXUP_MP11_VREF, .name = "mp11-vref"}, 2487 {.id = ALC889_FIXUP_MP41_VREF, .name = "mp41-vref"}, 2488 {.id = ALC882_FIXUP_INV_DMIC, .name = "inv-dmic"}, 2489 {.id = ALC882_FIXUP_NO_PRIMARY_HP, .name = "no-primary-hp"}, 2490 {.id = ALC887_FIXUP_ASUS_BASS, .name = "asus-bass"}, 2491 {.id = ALC1220_FIXUP_GB_DUAL_CODECS, .name = "dual-codecs"}, 2492 {.id = ALC1220_FIXUP_CLEVO_P950, .name = "clevo-p950"}, 2493 {} 2494 }; 2495 2496 /* 2497 * BIOS auto configuration 2498 */ 2499 /* almost identical with ALC880 parser... */ 2500 static int alc882_parse_auto_config(struct hda_codec *codec) 2501 { 2502 static const hda_nid_t alc882_ignore[] = { 0x1d, 0 }; 2503 static const hda_nid_t alc882_ssids[] = { 0x15, 0x1b, 0x14, 0 }; 2504 return alc_parse_auto_config(codec, alc882_ignore, alc882_ssids); 2505 } 2506 2507 /* 2508 */ 2509 static int patch_alc882(struct hda_codec *codec) 2510 { 2511 struct alc_spec *spec; 2512 int err; 2513 2514 err = alc_alloc_spec(codec, 0x0b); 2515 if (err < 0) 2516 return err; 2517 2518 spec = codec->spec; 2519 2520 switch (codec->core.vendor_id) { 2521 case 0x10ec0882: 2522 case 0x10ec0885: 2523 case 0x10ec0900: 2524 case 0x10ec1220: 2525 break; 2526 default: 2527 /* ALC883 and variants */ 2528 alc_fix_pll_init(codec, 0x20, 0x0a, 10); 2529 break; 2530 } 2531 2532 alc_pre_init(codec); 2533 2534 snd_hda_pick_fixup(codec, alc882_fixup_models, alc882_fixup_tbl, 2535 alc882_fixups); 2536 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE); 2537 2538 alc_auto_parse_customize_define(codec); 2539 2540 if (has_cdefine_beep(codec)) 2541 spec->gen.beep_nid = 0x01; 2542 2543 /* automatic parse from the BIOS config */ 2544 err = alc882_parse_auto_config(codec); 2545 if (err < 0) 2546 goto error; 2547 2548 if (!spec->gen.no_analog && spec->gen.beep_nid) { 2549 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT); 2550 if (err < 0) 2551 goto error; 2552 } 2553 2554 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE); 2555 2556 return 0; 2557 2558 error: 2559 alc_free(codec); 2560 return err; 2561 } 2562 2563 2564 /* 2565 * ALC262 support 2566 */ 2567 static int alc262_parse_auto_config(struct hda_codec *codec) 2568 { 2569 static const hda_nid_t alc262_ignore[] = { 0x1d, 0 }; 2570 static const hda_nid_t alc262_ssids[] = { 0x15, 0x1b, 0x14, 0 }; 2571 return alc_parse_auto_config(codec, alc262_ignore, alc262_ssids); 2572 } 2573 2574 /* 2575 * Pin config fixes 2576 */ 2577 enum { 2578 ALC262_FIXUP_FSC_H270, 2579 ALC262_FIXUP_FSC_S7110, 2580 ALC262_FIXUP_HP_Z200, 2581 ALC262_FIXUP_TYAN, 2582 ALC262_FIXUP_LENOVO_3000, 2583 ALC262_FIXUP_BENQ, 2584 ALC262_FIXUP_BENQ_T31, 2585 ALC262_FIXUP_INV_DMIC, 2586 ALC262_FIXUP_INTEL_BAYLEYBAY, 2587 }; 2588 2589 static const struct hda_fixup alc262_fixups[] = { 2590 [ALC262_FIXUP_FSC_H270] = { 2591 .type = HDA_FIXUP_PINS, 2592 .v.pins = (const struct hda_pintbl[]) { 2593 { 0x14, 0x99130110 }, /* speaker */ 2594 { 0x15, 0x0221142f }, /* front HP */ 2595 { 0x1b, 0x0121141f }, /* rear HP */ 2596 { } 2597 } 2598 }, 2599 [ALC262_FIXUP_FSC_S7110] = { 2600 .type = HDA_FIXUP_PINS, 2601 .v.pins = (const struct hda_pintbl[]) { 2602 { 0x15, 0x90170110 }, /* speaker */ 2603 { } 2604 }, 2605 .chained = true, 2606 .chain_id = ALC262_FIXUP_BENQ, 2607 }, 2608 [ALC262_FIXUP_HP_Z200] = { 2609 .type = HDA_FIXUP_PINS, 2610 .v.pins = (const struct hda_pintbl[]) { 2611 { 0x16, 0x99130120 }, /* internal speaker */ 2612 { } 2613 } 2614 }, 2615 [ALC262_FIXUP_TYAN] = { 2616 .type = HDA_FIXUP_PINS, 2617 .v.pins = (const struct hda_pintbl[]) { 2618 { 0x14, 0x1993e1f0 }, /* int AUX */ 2619 { } 2620 } 2621 }, 2622 [ALC262_FIXUP_LENOVO_3000] = { 2623 .type = HDA_FIXUP_PINCTLS, 2624 .v.pins = (const struct hda_pintbl[]) { 2625 { 0x19, PIN_VREF50 }, 2626 {} 2627 }, 2628 .chained = true, 2629 .chain_id = ALC262_FIXUP_BENQ, 2630 }, 2631 [ALC262_FIXUP_BENQ] = { 2632 .type = HDA_FIXUP_VERBS, 2633 .v.verbs = (const struct hda_verb[]) { 2634 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 }, 2635 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 }, 2636 {} 2637 } 2638 }, 2639 [ALC262_FIXUP_BENQ_T31] = { 2640 .type = HDA_FIXUP_VERBS, 2641 .v.verbs = (const struct hda_verb[]) { 2642 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 }, 2643 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 }, 2644 {} 2645 } 2646 }, 2647 [ALC262_FIXUP_INV_DMIC] = { 2648 .type = HDA_FIXUP_FUNC, 2649 .v.func = alc_fixup_inv_dmic, 2650 }, 2651 [ALC262_FIXUP_INTEL_BAYLEYBAY] = { 2652 .type = HDA_FIXUP_FUNC, 2653 .v.func = alc_fixup_no_depop_delay, 2654 }, 2655 }; 2656 2657 static const struct snd_pci_quirk alc262_fixup_tbl[] = { 2658 SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", ALC262_FIXUP_HP_Z200), 2659 SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu Lifebook S7110", ALC262_FIXUP_FSC_S7110), 2660 SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FIXUP_BENQ), 2661 SND_PCI_QUIRK(0x10f1, 0x2915, "Tyan Thunder n6650W", ALC262_FIXUP_TYAN), 2662 SND_PCI_QUIRK(0x1734, 0x1141, "FSC ESPRIMO U9210", ALC262_FIXUP_FSC_H270), 2663 SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", ALC262_FIXUP_FSC_H270), 2664 SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000", ALC262_FIXUP_LENOVO_3000), 2665 SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_FIXUP_BENQ), 2666 SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_FIXUP_BENQ_T31), 2667 SND_PCI_QUIRK(0x8086, 0x7270, "BayleyBay", ALC262_FIXUP_INTEL_BAYLEYBAY), 2668 {} 2669 }; 2670 2671 static const struct hda_model_fixup alc262_fixup_models[] = { 2672 {.id = ALC262_FIXUP_INV_DMIC, .name = "inv-dmic"}, 2673 {.id = ALC262_FIXUP_FSC_H270, .name = "fsc-h270"}, 2674 {.id = ALC262_FIXUP_FSC_S7110, .name = "fsc-s7110"}, 2675 {.id = ALC262_FIXUP_HP_Z200, .name = "hp-z200"}, 2676 {.id = ALC262_FIXUP_TYAN, .name = "tyan"}, 2677 {.id = ALC262_FIXUP_LENOVO_3000, .name = "lenovo-3000"}, 2678 {.id = ALC262_FIXUP_BENQ, .name = "benq"}, 2679 {.id = ALC262_FIXUP_BENQ_T31, .name = "benq-t31"}, 2680 {.id = ALC262_FIXUP_INTEL_BAYLEYBAY, .name = "bayleybay"}, 2681 {} 2682 }; 2683 2684 /* 2685 */ 2686 static int patch_alc262(struct hda_codec *codec) 2687 { 2688 struct alc_spec *spec; 2689 int err; 2690 2691 err = alc_alloc_spec(codec, 0x0b); 2692 if (err < 0) 2693 return err; 2694 2695 spec = codec->spec; 2696 spec->gen.shared_mic_vref_pin = 0x18; 2697 2698 spec->shutup = alc_eapd_shutup; 2699 2700 #if 0 2701 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is 2702 * under-run 2703 */ 2704 alc_update_coefex_idx(codec, 0x1a, 7, 0, 0x80); 2705 #endif 2706 alc_fix_pll_init(codec, 0x20, 0x0a, 10); 2707 2708 alc_pre_init(codec); 2709 2710 snd_hda_pick_fixup(codec, alc262_fixup_models, alc262_fixup_tbl, 2711 alc262_fixups); 2712 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE); 2713 2714 alc_auto_parse_customize_define(codec); 2715 2716 if (has_cdefine_beep(codec)) 2717 spec->gen.beep_nid = 0x01; 2718 2719 /* automatic parse from the BIOS config */ 2720 err = alc262_parse_auto_config(codec); 2721 if (err < 0) 2722 goto error; 2723 2724 if (!spec->gen.no_analog && spec->gen.beep_nid) { 2725 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT); 2726 if (err < 0) 2727 goto error; 2728 } 2729 2730 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE); 2731 2732 return 0; 2733 2734 error: 2735 alc_free(codec); 2736 return err; 2737 } 2738 2739 /* 2740 * ALC268 2741 */ 2742 /* bind Beep switches of both NID 0x0f and 0x10 */ 2743 static int alc268_beep_switch_put(struct snd_kcontrol *kcontrol, 2744 struct snd_ctl_elem_value *ucontrol) 2745 { 2746 struct hda_codec *codec = snd_kcontrol_chip(kcontrol); 2747 unsigned long pval; 2748 int err; 2749 2750 mutex_lock(&codec->control_mutex); 2751 pval = kcontrol->private_value; 2752 kcontrol->private_value = (pval & ~0xff) | 0x0f; 2753 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol); 2754 if (err >= 0) { 2755 kcontrol->private_value = (pval & ~0xff) | 0x10; 2756 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol); 2757 } 2758 kcontrol->private_value = pval; 2759 mutex_unlock(&codec->control_mutex); 2760 return err; 2761 } 2762 2763 static const struct snd_kcontrol_new alc268_beep_mixer[] = { 2764 HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT), 2765 { 2766 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, 2767 .name = "Beep Playback Switch", 2768 .subdevice = HDA_SUBDEV_AMP_FLAG, 2769 .info = snd_hda_mixer_amp_switch_info, 2770 .get = snd_hda_mixer_amp_switch_get, 2771 .put = alc268_beep_switch_put, 2772 .private_value = HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT) 2773 }, 2774 }; 2775 2776 /* set PCBEEP vol = 0, mute connections */ 2777 static const struct hda_verb alc268_beep_init_verbs[] = { 2778 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, 2779 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, 2780 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, 2781 { } 2782 }; 2783 2784 enum { 2785 ALC268_FIXUP_INV_DMIC, 2786 ALC268_FIXUP_HP_EAPD, 2787 ALC268_FIXUP_SPDIF, 2788 }; 2789 2790 static const struct hda_fixup alc268_fixups[] = { 2791 [ALC268_FIXUP_INV_DMIC] = { 2792 .type = HDA_FIXUP_FUNC, 2793 .v.func = alc_fixup_inv_dmic, 2794 }, 2795 [ALC268_FIXUP_HP_EAPD] = { 2796 .type = HDA_FIXUP_VERBS, 2797 .v.verbs = (const struct hda_verb[]) { 2798 {0x15, AC_VERB_SET_EAPD_BTLENABLE, 0}, 2799 {} 2800 } 2801 }, 2802 [ALC268_FIXUP_SPDIF] = { 2803 .type = HDA_FIXUP_PINS, 2804 .v.pins = (const struct hda_pintbl[]) { 2805 { 0x1e, 0x014b1180 }, /* enable SPDIF out */ 2806 {} 2807 } 2808 }, 2809 }; 2810 2811 static const struct hda_model_fixup alc268_fixup_models[] = { 2812 {.id = ALC268_FIXUP_INV_DMIC, .name = "inv-dmic"}, 2813 {.id = ALC268_FIXUP_HP_EAPD, .name = "hp-eapd"}, 2814 {.id = ALC268_FIXUP_SPDIF, .name = "spdif"}, 2815 {} 2816 }; 2817 2818 static const struct snd_pci_quirk alc268_fixup_tbl[] = { 2819 SND_PCI_QUIRK(0x1025, 0x0139, "Acer TravelMate 6293", ALC268_FIXUP_SPDIF), 2820 SND_PCI_QUIRK(0x1025, 0x015b, "Acer AOA 150 (ZG5)", ALC268_FIXUP_INV_DMIC), 2821 /* below is codec SSID since multiple Toshiba laptops have the 2822 * same PCI SSID 1179:ff00 2823 */ 2824 SND_PCI_QUIRK(0x1179, 0xff06, "Toshiba P200", ALC268_FIXUP_HP_EAPD), 2825 {} 2826 }; 2827 2828 /* 2829 * BIOS auto configuration 2830 */ 2831 static int alc268_parse_auto_config(struct hda_codec *codec) 2832 { 2833 static const hda_nid_t alc268_ssids[] = { 0x15, 0x1b, 0x14, 0 }; 2834 return alc_parse_auto_config(codec, NULL, alc268_ssids); 2835 } 2836 2837 /* 2838 */ 2839 static int patch_alc268(struct hda_codec *codec) 2840 { 2841 struct alc_spec *spec; 2842 int i, err; 2843 2844 /* ALC268 has no aa-loopback mixer */ 2845 err = alc_alloc_spec(codec, 0); 2846 if (err < 0) 2847 return err; 2848 2849 spec = codec->spec; 2850 spec->gen.beep_nid = 0x01; 2851 2852 spec->shutup = alc_eapd_shutup; 2853 2854 alc_pre_init(codec); 2855 2856 snd_hda_pick_fixup(codec, alc268_fixup_models, alc268_fixup_tbl, alc268_fixups); 2857 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE); 2858 2859 /* automatic parse from the BIOS config */ 2860 err = alc268_parse_auto_config(codec); 2861 if (err < 0) 2862 goto error; 2863 2864 if (err > 0 && !spec->gen.no_analog && 2865 spec->gen.autocfg.speaker_pins[0] != 0x1d) { 2866 for (i = 0; i < ARRAY_SIZE(alc268_beep_mixer); i++) { 2867 if (!snd_hda_gen_add_kctl(&spec->gen, NULL, 2868 &alc268_beep_mixer[i])) { 2869 err = -ENOMEM; 2870 goto error; 2871 } 2872 } 2873 snd_hda_add_verbs(codec, alc268_beep_init_verbs); 2874 if (!query_amp_caps(codec, 0x1d, HDA_INPUT)) 2875 /* override the amp caps for beep generator */ 2876 snd_hda_override_amp_caps(codec, 0x1d, HDA_INPUT, 2877 (0x0c << AC_AMPCAP_OFFSET_SHIFT) | 2878 (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT) | 2879 (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT) | 2880 (0 << AC_AMPCAP_MUTE_SHIFT)); 2881 } 2882 2883 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE); 2884 2885 return 0; 2886 2887 error: 2888 alc_free(codec); 2889 return err; 2890 } 2891 2892 /* 2893 * ALC269 2894 */ 2895 2896 static const struct hda_pcm_stream alc269_44k_pcm_analog_playback = { 2897 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */ 2898 }; 2899 2900 static const struct hda_pcm_stream alc269_44k_pcm_analog_capture = { 2901 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */ 2902 }; 2903 2904 /* different alc269-variants */ 2905 enum { 2906 ALC269_TYPE_ALC269VA, 2907 ALC269_TYPE_ALC269VB, 2908 ALC269_TYPE_ALC269VC, 2909 ALC269_TYPE_ALC269VD, 2910 ALC269_TYPE_ALC280, 2911 ALC269_TYPE_ALC282, 2912 ALC269_TYPE_ALC283, 2913 ALC269_TYPE_ALC284, 2914 ALC269_TYPE_ALC293, 2915 ALC269_TYPE_ALC286, 2916 ALC269_TYPE_ALC298, 2917 ALC269_TYPE_ALC255, 2918 ALC269_TYPE_ALC256, 2919 ALC269_TYPE_ALC257, 2920 ALC269_TYPE_ALC215, 2921 ALC269_TYPE_ALC225, 2922 ALC269_TYPE_ALC294, 2923 ALC269_TYPE_ALC300, 2924 ALC269_TYPE_ALC700, 2925 }; 2926 2927 /* 2928 * BIOS auto configuration 2929 */ 2930 static int alc269_parse_auto_config(struct hda_codec *codec) 2931 { 2932 static const hda_nid_t alc269_ignore[] = { 0x1d, 0 }; 2933 static const hda_nid_t alc269_ssids[] = { 0, 0x1b, 0x14, 0x21 }; 2934 static const hda_nid_t alc269va_ssids[] = { 0x15, 0x1b, 0x14, 0 }; 2935 struct alc_spec *spec = codec->spec; 2936 const hda_nid_t *ssids; 2937 2938 switch (spec->codec_variant) { 2939 case ALC269_TYPE_ALC269VA: 2940 case ALC269_TYPE_ALC269VC: 2941 case ALC269_TYPE_ALC280: 2942 case ALC269_TYPE_ALC284: 2943 case ALC269_TYPE_ALC293: 2944 ssids = alc269va_ssids; 2945 break; 2946 case ALC269_TYPE_ALC269VB: 2947 case ALC269_TYPE_ALC269VD: 2948 case ALC269_TYPE_ALC282: 2949 case ALC269_TYPE_ALC283: 2950 case ALC269_TYPE_ALC286: 2951 case ALC269_TYPE_ALC298: 2952 case ALC269_TYPE_ALC255: 2953 case ALC269_TYPE_ALC256: 2954 case ALC269_TYPE_ALC257: 2955 case ALC269_TYPE_ALC215: 2956 case ALC269_TYPE_ALC225: 2957 case ALC269_TYPE_ALC294: 2958 case ALC269_TYPE_ALC300: 2959 case ALC269_TYPE_ALC700: 2960 ssids = alc269_ssids; 2961 break; 2962 default: 2963 ssids = alc269_ssids; 2964 break; 2965 } 2966 2967 return alc_parse_auto_config(codec, alc269_ignore, ssids); 2968 } 2969 2970 static void alc269vb_toggle_power_output(struct hda_codec *codec, int power_up) 2971 { 2972 alc_update_coef_idx(codec, 0x04, 1 << 11, power_up ? (1 << 11) : 0); 2973 } 2974 2975 static void alc269_shutup(struct hda_codec *codec) 2976 { 2977 struct alc_spec *spec = codec->spec; 2978 2979 if (spec->codec_variant == ALC269_TYPE_ALC269VB) 2980 alc269vb_toggle_power_output(codec, 0); 2981 if (spec->codec_variant == ALC269_TYPE_ALC269VB && 2982 (alc_get_coef0(codec) & 0x00ff) == 0x018) { 2983 msleep(150); 2984 } 2985 alc_shutup_pins(codec); 2986 } 2987 2988 static struct coef_fw alc282_coefs[] = { 2989 WRITE_COEF(0x03, 0x0002), /* Power Down Control */ 2990 UPDATE_COEF(0x05, 0xff3f, 0x0700), /* FIFO and filter clock */ 2991 WRITE_COEF(0x07, 0x0200), /* DMIC control */ 2992 UPDATE_COEF(0x06, 0x00f0, 0), /* Analog clock */ 2993 UPDATE_COEF(0x08, 0xfffc, 0x0c2c), /* JD */ 2994 WRITE_COEF(0x0a, 0xcccc), /* JD offset1 */ 2995 WRITE_COEF(0x0b, 0xcccc), /* JD offset2 */ 2996 WRITE_COEF(0x0e, 0x6e00), /* LDO1/2/3, DAC/ADC */ 2997 UPDATE_COEF(0x0f, 0xf800, 0x1000), /* JD */ 2998 UPDATE_COEF(0x10, 0xfc00, 0x0c00), /* Capless */ 2999 WRITE_COEF(0x6f, 0x0), /* Class D test 4 */ 3000 UPDATE_COEF(0x0c, 0xfe00, 0), /* IO power down directly */ 3001 WRITE_COEF(0x34, 0xa0c0), /* ANC */ 3002 UPDATE_COEF(0x16, 0x0008, 0), /* AGC MUX */ 3003 UPDATE_COEF(0x1d, 0x00e0, 0), /* DAC simple content protection */ 3004 UPDATE_COEF(0x1f, 0x00e0, 0), /* ADC simple content protection */ 3005 WRITE_COEF(0x21, 0x8804), /* DAC ADC Zero Detection */ 3006 WRITE_COEF(0x63, 0x2902), /* PLL */ 3007 WRITE_COEF(0x68, 0xa080), /* capless control 2 */ 3008 WRITE_COEF(0x69, 0x3400), /* capless control 3 */ 3009 WRITE_COEF(0x6a, 0x2f3e), /* capless control 4 */ 3010 WRITE_COEF(0x6b, 0x0), /* capless control 5 */ 3011 UPDATE_COEF(0x6d, 0x0fff, 0x0900), /* class D test 2 */ 3012 WRITE_COEF(0x6e, 0x110a), /* class D test 3 */ 3013 UPDATE_COEF(0x70, 0x00f8, 0x00d8), /* class D test 5 */ 3014 WRITE_COEF(0x71, 0x0014), /* class D test 6 */ 3015 WRITE_COEF(0x72, 0xc2ba), /* classD OCP */ 3016 UPDATE_COEF(0x77, 0x0f80, 0), /* classD pure DC test */ 3017 WRITE_COEF(0x6c, 0xfc06), /* Class D amp control */ 3018 {} 3019 }; 3020 3021 static void alc282_restore_default_value(struct hda_codec *codec) 3022 { 3023 alc_process_coef_fw(codec, alc282_coefs); 3024 } 3025 3026 static void alc282_init(struct hda_codec *codec) 3027 { 3028 struct alc_spec *spec = codec->spec; 3029 hda_nid_t hp_pin = alc_get_hp_pin(spec); 3030 bool hp_pin_sense; 3031 int coef78; 3032 3033 alc282_restore_default_value(codec); 3034 3035 if (!hp_pin) 3036 return; 3037 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin); 3038 coef78 = alc_read_coef_idx(codec, 0x78); 3039 3040 /* Index 0x78 Direct Drive HP AMP LPM Control 1 */ 3041 /* Headphone capless set to high power mode */ 3042 alc_write_coef_idx(codec, 0x78, 0x9004); 3043 3044 if (hp_pin_sense) 3045 msleep(2); 3046 3047 snd_hda_codec_write(codec, hp_pin, 0, 3048 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); 3049 3050 if (hp_pin_sense) 3051 msleep(85); 3052 3053 snd_hda_codec_write(codec, hp_pin, 0, 3054 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT); 3055 3056 if (hp_pin_sense) 3057 msleep(100); 3058 3059 /* Headphone capless set to normal mode */ 3060 alc_write_coef_idx(codec, 0x78, coef78); 3061 } 3062 3063 static void alc282_shutup(struct hda_codec *codec) 3064 { 3065 struct alc_spec *spec = codec->spec; 3066 hda_nid_t hp_pin = alc_get_hp_pin(spec); 3067 bool hp_pin_sense; 3068 int coef78; 3069 3070 if (!hp_pin) { 3071 alc269_shutup(codec); 3072 return; 3073 } 3074 3075 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin); 3076 coef78 = alc_read_coef_idx(codec, 0x78); 3077 alc_write_coef_idx(codec, 0x78, 0x9004); 3078 3079 if (hp_pin_sense) 3080 msleep(2); 3081 3082 snd_hda_codec_write(codec, hp_pin, 0, 3083 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); 3084 3085 if (hp_pin_sense) 3086 msleep(85); 3087 3088 if (!spec->no_shutup_pins) 3089 snd_hda_codec_write(codec, hp_pin, 0, 3090 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0); 3091 3092 if (hp_pin_sense) 3093 msleep(100); 3094 3095 alc_auto_setup_eapd(codec, false); 3096 alc_shutup_pins(codec); 3097 alc_write_coef_idx(codec, 0x78, coef78); 3098 } 3099 3100 static struct coef_fw alc283_coefs[] = { 3101 WRITE_COEF(0x03, 0x0002), /* Power Down Control */ 3102 UPDATE_COEF(0x05, 0xff3f, 0x0700), /* FIFO and filter clock */ 3103 WRITE_COEF(0x07, 0x0200), /* DMIC control */ 3104 UPDATE_COEF(0x06, 0x00f0, 0), /* Analog clock */ 3105 UPDATE_COEF(0x08, 0xfffc, 0x0c2c), /* JD */ 3106 WRITE_COEF(0x0a, 0xcccc), /* JD offset1 */ 3107 WRITE_COEF(0x0b, 0xcccc), /* JD offset2 */ 3108 WRITE_COEF(0x0e, 0x6fc0), /* LDO1/2/3, DAC/ADC */ 3109 UPDATE_COEF(0x0f, 0xf800, 0x1000), /* JD */ 3110 UPDATE_COEF(0x10, 0xfc00, 0x0c00), /* Capless */ 3111 WRITE_COEF(0x3a, 0x0), /* Class D test 4 */ 3112 UPDATE_COEF(0x0c, 0xfe00, 0x0), /* IO power down directly */ 3113 WRITE_COEF(0x22, 0xa0c0), /* ANC */ 3114 UPDATE_COEFEX(0x53, 0x01, 0x000f, 0x0008), /* AGC MUX */ 3115 UPDATE_COEF(0x1d, 0x00e0, 0), /* DAC simple content protection */ 3116 UPDATE_COEF(0x1f, 0x00e0, 0), /* ADC simple content protection */ 3117 WRITE_COEF(0x21, 0x8804), /* DAC ADC Zero Detection */ 3118 WRITE_COEF(0x2e, 0x2902), /* PLL */ 3119 WRITE_COEF(0x33, 0xa080), /* capless control 2 */ 3120 WRITE_COEF(0x34, 0x3400), /* capless control 3 */ 3121 WRITE_COEF(0x35, 0x2f3e), /* capless control 4 */ 3122 WRITE_COEF(0x36, 0x0), /* capless control 5 */ 3123 UPDATE_COEF(0x38, 0x0fff, 0x0900), /* class D test 2 */ 3124 WRITE_COEF(0x39, 0x110a), /* class D test 3 */ 3125 UPDATE_COEF(0x3b, 0x00f8, 0x00d8), /* class D test 5 */ 3126 WRITE_COEF(0x3c, 0x0014), /* class D test 6 */ 3127 WRITE_COEF(0x3d, 0xc2ba), /* classD OCP */ 3128 UPDATE_COEF(0x42, 0x0f80, 0x0), /* classD pure DC test */ 3129 WRITE_COEF(0x49, 0x0), /* test mode */ 3130 UPDATE_COEF(0x40, 0xf800, 0x9800), /* Class D DC enable */ 3131 UPDATE_COEF(0x42, 0xf000, 0x2000), /* DC offset */ 3132 WRITE_COEF(0x37, 0xfc06), /* Class D amp control */ 3133 UPDATE_COEF(0x1b, 0x8000, 0), /* HP JD control */ 3134 {} 3135 }; 3136 3137 static void alc283_restore_default_value(struct hda_codec *codec) 3138 { 3139 alc_process_coef_fw(codec, alc283_coefs); 3140 } 3141 3142 static void alc283_init(struct hda_codec *codec) 3143 { 3144 struct alc_spec *spec = codec->spec; 3145 hda_nid_t hp_pin = alc_get_hp_pin(spec); 3146 bool hp_pin_sense; 3147 3148 alc283_restore_default_value(codec); 3149 3150 if (!hp_pin) 3151 return; 3152 3153 msleep(30); 3154 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin); 3155 3156 /* Index 0x43 Direct Drive HP AMP LPM Control 1 */ 3157 /* Headphone capless set to high power mode */ 3158 alc_write_coef_idx(codec, 0x43, 0x9004); 3159 3160 snd_hda_codec_write(codec, hp_pin, 0, 3161 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); 3162 3163 if (hp_pin_sense) 3164 msleep(85); 3165 3166 snd_hda_codec_write(codec, hp_pin, 0, 3167 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT); 3168 3169 if (hp_pin_sense) 3170 msleep(85); 3171 /* Index 0x46 Combo jack auto switch control 2 */ 3172 /* 3k pull low control for Headset jack. */ 3173 alc_update_coef_idx(codec, 0x46, 3 << 12, 0); 3174 /* Headphone capless set to normal mode */ 3175 alc_write_coef_idx(codec, 0x43, 0x9614); 3176 } 3177 3178 static void alc283_shutup(struct hda_codec *codec) 3179 { 3180 struct alc_spec *spec = codec->spec; 3181 hda_nid_t hp_pin = alc_get_hp_pin(spec); 3182 bool hp_pin_sense; 3183 3184 if (!hp_pin) { 3185 alc269_shutup(codec); 3186 return; 3187 } 3188 3189 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin); 3190 3191 alc_write_coef_idx(codec, 0x43, 0x9004); 3192 3193 /*depop hp during suspend*/ 3194 alc_write_coef_idx(codec, 0x06, 0x2100); 3195 3196 snd_hda_codec_write(codec, hp_pin, 0, 3197 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); 3198 3199 if (hp_pin_sense) 3200 msleep(100); 3201 3202 if (!spec->no_shutup_pins) 3203 snd_hda_codec_write(codec, hp_pin, 0, 3204 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0); 3205 3206 alc_update_coef_idx(codec, 0x46, 0, 3 << 12); 3207 3208 if (hp_pin_sense) 3209 msleep(100); 3210 alc_auto_setup_eapd(codec, false); 3211 alc_shutup_pins(codec); 3212 alc_write_coef_idx(codec, 0x43, 0x9614); 3213 } 3214 3215 static void alc256_init(struct hda_codec *codec) 3216 { 3217 struct alc_spec *spec = codec->spec; 3218 hda_nid_t hp_pin = alc_get_hp_pin(spec); 3219 bool hp_pin_sense; 3220 3221 if (!hp_pin) 3222 hp_pin = 0x21; 3223 3224 msleep(30); 3225 3226 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin); 3227 3228 if (hp_pin_sense) 3229 msleep(2); 3230 3231 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x1); /* Low power */ 3232 if (spec->ultra_low_power) { 3233 alc_update_coef_idx(codec, 0x03, 1<<1, 1<<1); 3234 alc_update_coef_idx(codec, 0x08, 3<<2, 3<<2); 3235 alc_update_coef_idx(codec, 0x08, 7<<4, 0); 3236 alc_update_coef_idx(codec, 0x3b, 1<<15, 0); 3237 alc_update_coef_idx(codec, 0x0e, 7<<6, 7<<6); 3238 msleep(30); 3239 } 3240 3241 snd_hda_codec_write(codec, hp_pin, 0, 3242 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); 3243 3244 if (hp_pin_sense || spec->ultra_low_power) 3245 msleep(85); 3246 3247 snd_hda_codec_write(codec, hp_pin, 0, 3248 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT); 3249 3250 if (hp_pin_sense || spec->ultra_low_power) 3251 msleep(100); 3252 3253 alc_update_coef_idx(codec, 0x46, 3 << 12, 0); 3254 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x4); /* Hight power */ 3255 alc_update_coefex_idx(codec, 0x53, 0x02, 0x8000, 1 << 15); /* Clear bit */ 3256 alc_update_coefex_idx(codec, 0x53, 0x02, 0x8000, 0 << 15); 3257 } 3258 3259 static void alc256_shutup(struct hda_codec *codec) 3260 { 3261 struct alc_spec *spec = codec->spec; 3262 hda_nid_t hp_pin = alc_get_hp_pin(spec); 3263 bool hp_pin_sense; 3264 3265 if (!hp_pin) 3266 hp_pin = 0x21; 3267 3268 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin); 3269 3270 if (hp_pin_sense) 3271 msleep(2); 3272 3273 snd_hda_codec_write(codec, hp_pin, 0, 3274 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); 3275 3276 if (hp_pin_sense || spec->ultra_low_power) 3277 msleep(85); 3278 3279 /* 3k pull low control for Headset jack. */ 3280 /* NOTE: call this before clearing the pin, otherwise codec stalls */ 3281 alc_update_coef_idx(codec, 0x46, 0, 3 << 12); 3282 3283 if (!spec->no_shutup_pins) 3284 snd_hda_codec_write(codec, hp_pin, 0, 3285 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0); 3286 3287 if (hp_pin_sense || spec->ultra_low_power) 3288 msleep(100); 3289 3290 alc_auto_setup_eapd(codec, false); 3291 alc_shutup_pins(codec); 3292 if (spec->ultra_low_power) { 3293 msleep(50); 3294 alc_update_coef_idx(codec, 0x03, 1<<1, 0); 3295 alc_update_coef_idx(codec, 0x08, 7<<4, 7<<4); 3296 alc_update_coef_idx(codec, 0x08, 3<<2, 0); 3297 alc_update_coef_idx(codec, 0x3b, 1<<15, 1<<15); 3298 alc_update_coef_idx(codec, 0x0e, 7<<6, 0); 3299 msleep(30); 3300 } 3301 } 3302 3303 static void alc225_init(struct hda_codec *codec) 3304 { 3305 struct alc_spec *spec = codec->spec; 3306 hda_nid_t hp_pin = alc_get_hp_pin(spec); 3307 bool hp1_pin_sense, hp2_pin_sense; 3308 3309 if (!hp_pin) 3310 hp_pin = 0x21; 3311 msleep(30); 3312 3313 hp1_pin_sense = snd_hda_jack_detect(codec, hp_pin); 3314 hp2_pin_sense = snd_hda_jack_detect(codec, 0x16); 3315 3316 if (hp1_pin_sense || hp2_pin_sense) 3317 msleep(2); 3318 3319 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x1); /* Low power */ 3320 if (spec->ultra_low_power) { 3321 alc_update_coef_idx(codec, 0x08, 0x0f << 2, 3<<2); 3322 alc_update_coef_idx(codec, 0x0e, 7<<6, 7<<6); 3323 alc_update_coef_idx(codec, 0x33, 1<<11, 0); 3324 msleep(30); 3325 } 3326 3327 if (hp1_pin_sense || spec->ultra_low_power) 3328 snd_hda_codec_write(codec, hp_pin, 0, 3329 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); 3330 if (hp2_pin_sense) 3331 snd_hda_codec_write(codec, 0x16, 0, 3332 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); 3333 3334 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power) 3335 msleep(85); 3336 3337 if (hp1_pin_sense || spec->ultra_low_power) 3338 snd_hda_codec_write(codec, hp_pin, 0, 3339 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT); 3340 if (hp2_pin_sense) 3341 snd_hda_codec_write(codec, 0x16, 0, 3342 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT); 3343 3344 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power) 3345 msleep(100); 3346 3347 alc_update_coef_idx(codec, 0x4a, 3 << 10, 0); 3348 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x4); /* Hight power */ 3349 } 3350 3351 static void alc225_shutup(struct hda_codec *codec) 3352 { 3353 struct alc_spec *spec = codec->spec; 3354 hda_nid_t hp_pin = alc_get_hp_pin(spec); 3355 bool hp1_pin_sense, hp2_pin_sense; 3356 3357 if (!hp_pin) 3358 hp_pin = 0x21; 3359 /* 3k pull low control for Headset jack. */ 3360 alc_update_coef_idx(codec, 0x4a, 0, 3 << 10); 3361 3362 hp1_pin_sense = snd_hda_jack_detect(codec, hp_pin); 3363 hp2_pin_sense = snd_hda_jack_detect(codec, 0x16); 3364 3365 if (hp1_pin_sense || hp2_pin_sense) 3366 msleep(2); 3367 3368 if (hp1_pin_sense || spec->ultra_low_power) 3369 snd_hda_codec_write(codec, hp_pin, 0, 3370 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); 3371 if (hp2_pin_sense) 3372 snd_hda_codec_write(codec, 0x16, 0, 3373 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); 3374 3375 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power) 3376 msleep(85); 3377 3378 if (hp1_pin_sense || spec->ultra_low_power) 3379 snd_hda_codec_write(codec, hp_pin, 0, 3380 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0); 3381 if (hp2_pin_sense) 3382 snd_hda_codec_write(codec, 0x16, 0, 3383 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0); 3384 3385 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power) 3386 msleep(100); 3387 3388 alc_auto_setup_eapd(codec, false); 3389 alc_shutup_pins(codec); 3390 if (spec->ultra_low_power) { 3391 msleep(50); 3392 alc_update_coef_idx(codec, 0x08, 0x0f << 2, 0x0c << 2); 3393 alc_update_coef_idx(codec, 0x0e, 7<<6, 0); 3394 alc_update_coef_idx(codec, 0x33, 1<<11, 1<<11); 3395 alc_update_coef_idx(codec, 0x4a, 3<<4, 2<<4); 3396 msleep(30); 3397 } 3398 } 3399 3400 static void alc_default_init(struct hda_codec *codec) 3401 { 3402 struct alc_spec *spec = codec->spec; 3403 hda_nid_t hp_pin = alc_get_hp_pin(spec); 3404 bool hp_pin_sense; 3405 3406 if (!hp_pin) 3407 return; 3408 3409 msleep(30); 3410 3411 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin); 3412 3413 if (hp_pin_sense) 3414 msleep(2); 3415 3416 snd_hda_codec_write(codec, hp_pin, 0, 3417 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); 3418 3419 if (hp_pin_sense) 3420 msleep(85); 3421 3422 snd_hda_codec_write(codec, hp_pin, 0, 3423 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT); 3424 3425 if (hp_pin_sense) 3426 msleep(100); 3427 } 3428 3429 static void alc_default_shutup(struct hda_codec *codec) 3430 { 3431 struct alc_spec *spec = codec->spec; 3432 hda_nid_t hp_pin = alc_get_hp_pin(spec); 3433 bool hp_pin_sense; 3434 3435 if (!hp_pin) { 3436 alc269_shutup(codec); 3437 return; 3438 } 3439 3440 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin); 3441 3442 if (hp_pin_sense) 3443 msleep(2); 3444 3445 snd_hda_codec_write(codec, hp_pin, 0, 3446 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); 3447 3448 if (hp_pin_sense) 3449 msleep(85); 3450 3451 if (!spec->no_shutup_pins) 3452 snd_hda_codec_write(codec, hp_pin, 0, 3453 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0); 3454 3455 if (hp_pin_sense) 3456 msleep(100); 3457 3458 alc_auto_setup_eapd(codec, false); 3459 alc_shutup_pins(codec); 3460 } 3461 3462 static void alc294_hp_init(struct hda_codec *codec) 3463 { 3464 struct alc_spec *spec = codec->spec; 3465 hda_nid_t hp_pin = alc_get_hp_pin(spec); 3466 int i, val; 3467 3468 if (!hp_pin) 3469 return; 3470 3471 snd_hda_codec_write(codec, hp_pin, 0, 3472 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); 3473 3474 msleep(100); 3475 3476 if (!spec->no_shutup_pins) 3477 snd_hda_codec_write(codec, hp_pin, 0, 3478 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0); 3479 3480 alc_update_coef_idx(codec, 0x6f, 0x000f, 0);/* Set HP depop to manual mode */ 3481 alc_update_coefex_idx(codec, 0x58, 0x00, 0x8000, 0x8000); /* HP depop procedure start */ 3482 3483 /* Wait for depop procedure finish */ 3484 val = alc_read_coefex_idx(codec, 0x58, 0x01); 3485 for (i = 0; i < 20 && val & 0x0080; i++) { 3486 msleep(50); 3487 val = alc_read_coefex_idx(codec, 0x58, 0x01); 3488 } 3489 /* Set HP depop to auto mode */ 3490 alc_update_coef_idx(codec, 0x6f, 0x000f, 0x000b); 3491 msleep(50); 3492 } 3493 3494 static void alc294_init(struct hda_codec *codec) 3495 { 3496 struct alc_spec *spec = codec->spec; 3497 3498 /* required only at boot or S4 resume time */ 3499 if (!spec->done_hp_init || 3500 codec->core.dev.power.power_state.event == PM_EVENT_RESTORE) { 3501 alc294_hp_init(codec); 3502 spec->done_hp_init = true; 3503 } 3504 alc_default_init(codec); 3505 } 3506 3507 static void alc5505_coef_set(struct hda_codec *codec, unsigned int index_reg, 3508 unsigned int val) 3509 { 3510 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1); 3511 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val & 0xffff); /* LSB */ 3512 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val >> 16); /* MSB */ 3513 } 3514 3515 static int alc5505_coef_get(struct hda_codec *codec, unsigned int index_reg) 3516 { 3517 unsigned int val; 3518 3519 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1); 3520 val = snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0) 3521 & 0xffff; 3522 val |= snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0) 3523 << 16; 3524 return val; 3525 } 3526 3527 static void alc5505_dsp_halt(struct hda_codec *codec) 3528 { 3529 unsigned int val; 3530 3531 alc5505_coef_set(codec, 0x3000, 0x000c); /* DSP CPU stop */ 3532 alc5505_coef_set(codec, 0x880c, 0x0008); /* DDR enter self refresh */ 3533 alc5505_coef_set(codec, 0x61c0, 0x11110080); /* Clock control for PLL and CPU */ 3534 alc5505_coef_set(codec, 0x6230, 0xfc0d4011); /* Disable Input OP */ 3535 alc5505_coef_set(codec, 0x61b4, 0x040a2b03); /* Stop PLL2 */ 3536 alc5505_coef_set(codec, 0x61b0, 0x00005b17); /* Stop PLL1 */ 3537 alc5505_coef_set(codec, 0x61b8, 0x04133303); /* Stop PLL3 */ 3538 val = alc5505_coef_get(codec, 0x6220); 3539 alc5505_coef_set(codec, 0x6220, (val | 0x3000)); /* switch Ringbuffer clock to DBUS clock */ 3540 } 3541 3542 static void alc5505_dsp_back_from_halt(struct hda_codec *codec) 3543 { 3544 alc5505_coef_set(codec, 0x61b8, 0x04133302); 3545 alc5505_coef_set(codec, 0x61b0, 0x00005b16); 3546 alc5505_coef_set(codec, 0x61b4, 0x040a2b02); 3547 alc5505_coef_set(codec, 0x6230, 0xf80d4011); 3548 alc5505_coef_set(codec, 0x6220, 0x2002010f); 3549 alc5505_coef_set(codec, 0x880c, 0x00000004); 3550 } 3551 3552 static void alc5505_dsp_init(struct hda_codec *codec) 3553 { 3554 unsigned int val; 3555 3556 alc5505_dsp_halt(codec); 3557 alc5505_dsp_back_from_halt(codec); 3558 alc5505_coef_set(codec, 0x61b0, 0x5b14); /* PLL1 control */ 3559 alc5505_coef_set(codec, 0x61b0, 0x5b16); 3560 alc5505_coef_set(codec, 0x61b4, 0x04132b00); /* PLL2 control */ 3561 alc5505_coef_set(codec, 0x61b4, 0x04132b02); 3562 alc5505_coef_set(codec, 0x61b8, 0x041f3300); /* PLL3 control*/ 3563 alc5505_coef_set(codec, 0x61b8, 0x041f3302); 3564 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_CODEC_RESET, 0); /* Function reset */ 3565 alc5505_coef_set(codec, 0x61b8, 0x041b3302); 3566 alc5505_coef_set(codec, 0x61b8, 0x04173302); 3567 alc5505_coef_set(codec, 0x61b8, 0x04163302); 3568 alc5505_coef_set(codec, 0x8800, 0x348b328b); /* DRAM control */ 3569 alc5505_coef_set(codec, 0x8808, 0x00020022); /* DRAM control */ 3570 alc5505_coef_set(codec, 0x8818, 0x00000400); /* DRAM control */ 3571 3572 val = alc5505_coef_get(codec, 0x6200) >> 16; /* Read revision ID */ 3573 if (val <= 3) 3574 alc5505_coef_set(codec, 0x6220, 0x2002010f); /* I/O PAD Configuration */ 3575 else 3576 alc5505_coef_set(codec, 0x6220, 0x6002018f); 3577 3578 alc5505_coef_set(codec, 0x61ac, 0x055525f0); /**/ 3579 alc5505_coef_set(codec, 0x61c0, 0x12230080); /* Clock control */ 3580 alc5505_coef_set(codec, 0x61b4, 0x040e2b02); /* PLL2 control */ 3581 alc5505_coef_set(codec, 0x61bc, 0x010234f8); /* OSC Control */ 3582 alc5505_coef_set(codec, 0x880c, 0x00000004); /* DRAM Function control */ 3583 alc5505_coef_set(codec, 0x880c, 0x00000003); 3584 alc5505_coef_set(codec, 0x880c, 0x00000010); 3585 3586 #ifdef HALT_REALTEK_ALC5505 3587 alc5505_dsp_halt(codec); 3588 #endif 3589 } 3590 3591 #ifdef HALT_REALTEK_ALC5505 3592 #define alc5505_dsp_suspend(codec) /* NOP */ 3593 #define alc5505_dsp_resume(codec) /* NOP */ 3594 #else 3595 #define alc5505_dsp_suspend(codec) alc5505_dsp_halt(codec) 3596 #define alc5505_dsp_resume(codec) alc5505_dsp_back_from_halt(codec) 3597 #endif 3598 3599 #ifdef CONFIG_PM 3600 static int alc269_suspend(struct hda_codec *codec) 3601 { 3602 struct alc_spec *spec = codec->spec; 3603 3604 if (spec->has_alc5505_dsp) 3605 alc5505_dsp_suspend(codec); 3606 return alc_suspend(codec); 3607 } 3608 3609 static int alc269_resume(struct hda_codec *codec) 3610 { 3611 struct alc_spec *spec = codec->spec; 3612 3613 if (spec->codec_variant == ALC269_TYPE_ALC269VB) 3614 alc269vb_toggle_power_output(codec, 0); 3615 if (spec->codec_variant == ALC269_TYPE_ALC269VB && 3616 (alc_get_coef0(codec) & 0x00ff) == 0x018) { 3617 msleep(150); 3618 } 3619 3620 codec->patch_ops.init(codec); 3621 3622 if (spec->codec_variant == ALC269_TYPE_ALC269VB) 3623 alc269vb_toggle_power_output(codec, 1); 3624 if (spec->codec_variant == ALC269_TYPE_ALC269VB && 3625 (alc_get_coef0(codec) & 0x00ff) == 0x017) { 3626 msleep(200); 3627 } 3628 3629 regcache_sync(codec->core.regmap); 3630 hda_call_check_power_status(codec, 0x01); 3631 3632 /* on some machine, the BIOS will clear the codec gpio data when enter 3633 * suspend, and won't restore the data after resume, so we restore it 3634 * in the driver. 3635 */ 3636 if (spec->gpio_data) 3637 alc_write_gpio_data(codec); 3638 3639 if (spec->has_alc5505_dsp) 3640 alc5505_dsp_resume(codec); 3641 3642 return 0; 3643 } 3644 #endif /* CONFIG_PM */ 3645 3646 static void alc269_fixup_pincfg_no_hp_to_lineout(struct hda_codec *codec, 3647 const struct hda_fixup *fix, int action) 3648 { 3649 struct alc_spec *spec = codec->spec; 3650 3651 if (action == HDA_FIXUP_ACT_PRE_PROBE) 3652 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP; 3653 } 3654 3655 static void alc269_fixup_pincfg_U7x7_headset_mic(struct hda_codec *codec, 3656 const struct hda_fixup *fix, 3657 int action) 3658 { 3659 unsigned int cfg_headphone = snd_hda_codec_get_pincfg(codec, 0x21); 3660 unsigned int cfg_headset_mic = snd_hda_codec_get_pincfg(codec, 0x19); 3661 3662 if (cfg_headphone && cfg_headset_mic == 0x411111f0) 3663 snd_hda_codec_set_pincfg(codec, 0x19, 3664 (cfg_headphone & ~AC_DEFCFG_DEVICE) | 3665 (AC_JACK_MIC_IN << AC_DEFCFG_DEVICE_SHIFT)); 3666 } 3667 3668 static void alc269_fixup_hweq(struct hda_codec *codec, 3669 const struct hda_fixup *fix, int action) 3670 { 3671 if (action == HDA_FIXUP_ACT_INIT) 3672 alc_update_coef_idx(codec, 0x1e, 0, 0x80); 3673 } 3674 3675 static void alc269_fixup_headset_mic(struct hda_codec *codec, 3676 const struct hda_fixup *fix, int action) 3677 { 3678 struct alc_spec *spec = codec->spec; 3679 3680 if (action == HDA_FIXUP_ACT_PRE_PROBE) 3681 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC; 3682 } 3683 3684 static void alc271_fixup_dmic(struct hda_codec *codec, 3685 const struct hda_fixup *fix, int action) 3686 { 3687 static const struct hda_verb verbs[] = { 3688 {0x20, AC_VERB_SET_COEF_INDEX, 0x0d}, 3689 {0x20, AC_VERB_SET_PROC_COEF, 0x4000}, 3690 {} 3691 }; 3692 unsigned int cfg; 3693 3694 if (strcmp(codec->core.chip_name, "ALC271X") && 3695 strcmp(codec->core.chip_name, "ALC269VB")) 3696 return; 3697 cfg = snd_hda_codec_get_pincfg(codec, 0x12); 3698 if (get_defcfg_connect(cfg) == AC_JACK_PORT_FIXED) 3699 snd_hda_sequence_write(codec, verbs); 3700 } 3701 3702 static void alc269_fixup_pcm_44k(struct hda_codec *codec, 3703 const struct hda_fixup *fix, int action) 3704 { 3705 struct alc_spec *spec = codec->spec; 3706 3707 if (action != HDA_FIXUP_ACT_PROBE) 3708 return; 3709 3710 /* Due to a hardware problem on Lenovo Ideadpad, we need to 3711 * fix the sample rate of analog I/O to 44.1kHz 3712 */ 3713 spec->gen.stream_analog_playback = &alc269_44k_pcm_analog_playback; 3714 spec->gen.stream_analog_capture = &alc269_44k_pcm_analog_capture; 3715 } 3716 3717 static void alc269_fixup_stereo_dmic(struct hda_codec *codec, 3718 const struct hda_fixup *fix, int action) 3719 { 3720 /* The digital-mic unit sends PDM (differential signal) instead of 3721 * the standard PCM, thus you can't record a valid mono stream as is. 3722 * Below is a workaround specific to ALC269 to control the dmic 3723 * signal source as mono. 3724 */ 3725 if (action == HDA_FIXUP_ACT_INIT) 3726 alc_update_coef_idx(codec, 0x07, 0, 0x80); 3727 } 3728 3729 static void alc269_quanta_automute(struct hda_codec *codec) 3730 { 3731 snd_hda_gen_update_outputs(codec); 3732 3733 alc_write_coef_idx(codec, 0x0c, 0x680); 3734 alc_write_coef_idx(codec, 0x0c, 0x480); 3735 } 3736 3737 static void alc269_fixup_quanta_mute(struct hda_codec *codec, 3738 const struct hda_fixup *fix, int action) 3739 { 3740 struct alc_spec *spec = codec->spec; 3741 if (action != HDA_FIXUP_ACT_PROBE) 3742 return; 3743 spec->gen.automute_hook = alc269_quanta_automute; 3744 } 3745 3746 static void alc269_x101_hp_automute_hook(struct hda_codec *codec, 3747 struct hda_jack_callback *jack) 3748 { 3749 struct alc_spec *spec = codec->spec; 3750 int vref; 3751 msleep(200); 3752 snd_hda_gen_hp_automute(codec, jack); 3753 3754 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0; 3755 msleep(100); 3756 snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, 3757 vref); 3758 msleep(500); 3759 snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, 3760 vref); 3761 } 3762 3763 static void alc269_fixup_x101_headset_mic(struct hda_codec *codec, 3764 const struct hda_fixup *fix, int action) 3765 { 3766 struct alc_spec *spec = codec->spec; 3767 if (action == HDA_FIXUP_ACT_PRE_PROBE) { 3768 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC; 3769 spec->gen.hp_automute_hook = alc269_x101_hp_automute_hook; 3770 } 3771 } 3772 3773 3774 /* update mute-LED according to the speaker mute state via mic VREF pin */ 3775 static void alc269_fixup_mic_mute_hook(void *private_data, int enabled) 3776 { 3777 struct hda_codec *codec = private_data; 3778 struct alc_spec *spec = codec->spec; 3779 unsigned int pinval; 3780 3781 if (spec->mute_led_polarity) 3782 enabled = !enabled; 3783 pinval = snd_hda_codec_get_pin_target(codec, spec->mute_led_nid); 3784 pinval &= ~AC_PINCTL_VREFEN; 3785 pinval |= enabled ? AC_PINCTL_VREF_HIZ : AC_PINCTL_VREF_80; 3786 if (spec->mute_led_nid) { 3787 /* temporarily power up/down for setting VREF */ 3788 snd_hda_power_up_pm(codec); 3789 snd_hda_set_pin_ctl_cache(codec, spec->mute_led_nid, pinval); 3790 snd_hda_power_down_pm(codec); 3791 } 3792 } 3793 3794 /* Make sure the led works even in runtime suspend */ 3795 static unsigned int led_power_filter(struct hda_codec *codec, 3796 hda_nid_t nid, 3797 unsigned int power_state) 3798 { 3799 struct alc_spec *spec = codec->spec; 3800 3801 if (power_state != AC_PWRST_D3 || nid == 0 || 3802 (nid != spec->mute_led_nid && nid != spec->cap_mute_led_nid)) 3803 return power_state; 3804 3805 /* Set pin ctl again, it might have just been set to 0 */ 3806 snd_hda_set_pin_ctl(codec, nid, 3807 snd_hda_codec_get_pin_target(codec, nid)); 3808 3809 return snd_hda_gen_path_power_filter(codec, nid, power_state); 3810 } 3811 3812 static void alc269_fixup_hp_mute_led(struct hda_codec *codec, 3813 const struct hda_fixup *fix, int action) 3814 { 3815 struct alc_spec *spec = codec->spec; 3816 const struct dmi_device *dev = NULL; 3817 3818 if (action != HDA_FIXUP_ACT_PRE_PROBE) 3819 return; 3820 3821 while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) { 3822 int pol, pin; 3823 if (sscanf(dev->name, "HP_Mute_LED_%d_%x", &pol, &pin) != 2) 3824 continue; 3825 if (pin < 0x0a || pin >= 0x10) 3826 break; 3827 spec->mute_led_polarity = pol; 3828 spec->mute_led_nid = pin - 0x0a + 0x18; 3829 spec->gen.vmaster_mute.hook = alc269_fixup_mic_mute_hook; 3830 spec->gen.vmaster_mute_enum = 1; 3831 codec->power_filter = led_power_filter; 3832 codec_dbg(codec, 3833 "Detected mute LED for %x:%d\n", spec->mute_led_nid, 3834 spec->mute_led_polarity); 3835 break; 3836 } 3837 } 3838 3839 static void alc269_fixup_hp_mute_led_micx(struct hda_codec *codec, 3840 const struct hda_fixup *fix, 3841 int action, hda_nid_t pin) 3842 { 3843 struct alc_spec *spec = codec->spec; 3844 3845 if (action == HDA_FIXUP_ACT_PRE_PROBE) { 3846 spec->mute_led_polarity = 0; 3847 spec->mute_led_nid = pin; 3848 spec->gen.vmaster_mute.hook = alc269_fixup_mic_mute_hook; 3849 spec->gen.vmaster_mute_enum = 1; 3850 codec->power_filter = led_power_filter; 3851 } 3852 } 3853 3854 static void alc269_fixup_hp_mute_led_mic1(struct hda_codec *codec, 3855 const struct hda_fixup *fix, int action) 3856 { 3857 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x18); 3858 } 3859 3860 static void alc269_fixup_hp_mute_led_mic2(struct hda_codec *codec, 3861 const struct hda_fixup *fix, int action) 3862 { 3863 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x19); 3864 } 3865 3866 static void alc269_fixup_hp_mute_led_mic3(struct hda_codec *codec, 3867 const struct hda_fixup *fix, int action) 3868 { 3869 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x1b); 3870 } 3871 3872 /* update LED status via GPIO */ 3873 static void alc_update_gpio_led(struct hda_codec *codec, unsigned int mask, 3874 bool enabled) 3875 { 3876 struct alc_spec *spec = codec->spec; 3877 3878 if (spec->mute_led_polarity) 3879 enabled = !enabled; 3880 alc_update_gpio_data(codec, mask, !enabled); /* muted -> LED on */ 3881 } 3882 3883 /* turn on/off mute LED via GPIO per vmaster hook */ 3884 static void alc_fixup_gpio_mute_hook(void *private_data, int enabled) 3885 { 3886 struct hda_codec *codec = private_data; 3887 struct alc_spec *spec = codec->spec; 3888 3889 alc_update_gpio_led(codec, spec->gpio_mute_led_mask, enabled); 3890 } 3891 3892 /* turn on/off mic-mute LED via GPIO per capture hook */ 3893 static void alc_gpio_micmute_update(struct hda_codec *codec) 3894 { 3895 struct alc_spec *spec = codec->spec; 3896 3897 alc_update_gpio_led(codec, spec->gpio_mic_led_mask, 3898 spec->gen.micmute_led.led_value); 3899 } 3900 3901 /* setup mute and mic-mute GPIO bits, add hooks appropriately */ 3902 static void alc_fixup_hp_gpio_led(struct hda_codec *codec, 3903 int action, 3904 unsigned int mute_mask, 3905 unsigned int micmute_mask) 3906 { 3907 struct alc_spec *spec = codec->spec; 3908 3909 alc_fixup_gpio(codec, action, mute_mask | micmute_mask); 3910 3911 if (action != HDA_FIXUP_ACT_PRE_PROBE) 3912 return; 3913 if (mute_mask) { 3914 spec->gpio_mute_led_mask = mute_mask; 3915 spec->gen.vmaster_mute.hook = alc_fixup_gpio_mute_hook; 3916 } 3917 if (micmute_mask) { 3918 spec->gpio_mic_led_mask = micmute_mask; 3919 snd_hda_gen_add_micmute_led(codec, alc_gpio_micmute_update); 3920 } 3921 } 3922 3923 static void alc269_fixup_hp_gpio_led(struct hda_codec *codec, 3924 const struct hda_fixup *fix, int action) 3925 { 3926 alc_fixup_hp_gpio_led(codec, action, 0x08, 0x10); 3927 } 3928 3929 static void alc286_fixup_hp_gpio_led(struct hda_codec *codec, 3930 const struct hda_fixup *fix, int action) 3931 { 3932 alc_fixup_hp_gpio_led(codec, action, 0x02, 0x20); 3933 } 3934 3935 /* turn on/off mic-mute LED per capture hook */ 3936 static void alc_cap_micmute_update(struct hda_codec *codec) 3937 { 3938 struct alc_spec *spec = codec->spec; 3939 unsigned int pinval; 3940 3941 if (!spec->cap_mute_led_nid) 3942 return; 3943 pinval = snd_hda_codec_get_pin_target(codec, spec->cap_mute_led_nid); 3944 pinval &= ~AC_PINCTL_VREFEN; 3945 if (spec->gen.micmute_led.led_value) 3946 pinval |= AC_PINCTL_VREF_80; 3947 else 3948 pinval |= AC_PINCTL_VREF_HIZ; 3949 snd_hda_set_pin_ctl_cache(codec, spec->cap_mute_led_nid, pinval); 3950 } 3951 3952 static void alc269_fixup_hp_gpio_mic1_led(struct hda_codec *codec, 3953 const struct hda_fixup *fix, int action) 3954 { 3955 struct alc_spec *spec = codec->spec; 3956 3957 alc_fixup_hp_gpio_led(codec, action, 0x08, 0); 3958 if (action == HDA_FIXUP_ACT_PRE_PROBE) { 3959 /* Like hp_gpio_mic1_led, but also needs GPIO4 low to 3960 * enable headphone amp 3961 */ 3962 spec->gpio_mask |= 0x10; 3963 spec->gpio_dir |= 0x10; 3964 spec->cap_mute_led_nid = 0x18; 3965 snd_hda_gen_add_micmute_led(codec, alc_cap_micmute_update); 3966 codec->power_filter = led_power_filter; 3967 } 3968 } 3969 3970 static void alc280_fixup_hp_gpio4(struct hda_codec *codec, 3971 const struct hda_fixup *fix, int action) 3972 { 3973 struct alc_spec *spec = codec->spec; 3974 3975 alc_fixup_hp_gpio_led(codec, action, 0x08, 0); 3976 if (action == HDA_FIXUP_ACT_PRE_PROBE) { 3977 spec->cap_mute_led_nid = 0x18; 3978 snd_hda_gen_add_micmute_led(codec, alc_cap_micmute_update); 3979 codec->power_filter = led_power_filter; 3980 } 3981 } 3982 3983 #if IS_REACHABLE(CONFIG_INPUT) 3984 static void gpio2_mic_hotkey_event(struct hda_codec *codec, 3985 struct hda_jack_callback *event) 3986 { 3987 struct alc_spec *spec = codec->spec; 3988 3989 /* GPIO2 just toggles on a keypress/keyrelease cycle. Therefore 3990 send both key on and key off event for every interrupt. */ 3991 input_report_key(spec->kb_dev, spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX], 1); 3992 input_sync(spec->kb_dev); 3993 input_report_key(spec->kb_dev, spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX], 0); 3994 input_sync(spec->kb_dev); 3995 } 3996 3997 static int alc_register_micmute_input_device(struct hda_codec *codec) 3998 { 3999 struct alc_spec *spec = codec->spec; 4000 int i; 4001 4002 spec->kb_dev = input_allocate_device(); 4003 if (!spec->kb_dev) { 4004 codec_err(codec, "Out of memory (input_allocate_device)\n"); 4005 return -ENOMEM; 4006 } 4007 4008 spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX] = KEY_MICMUTE; 4009 4010 spec->kb_dev->name = "Microphone Mute Button"; 4011 spec->kb_dev->evbit[0] = BIT_MASK(EV_KEY); 4012 spec->kb_dev->keycodesize = sizeof(spec->alc_mute_keycode_map[0]); 4013 spec->kb_dev->keycodemax = ARRAY_SIZE(spec->alc_mute_keycode_map); 4014 spec->kb_dev->keycode = spec->alc_mute_keycode_map; 4015 for (i = 0; i < ARRAY_SIZE(spec->alc_mute_keycode_map); i++) 4016 set_bit(spec->alc_mute_keycode_map[i], spec->kb_dev->keybit); 4017 4018 if (input_register_device(spec->kb_dev)) { 4019 codec_err(codec, "input_register_device failed\n"); 4020 input_free_device(spec->kb_dev); 4021 spec->kb_dev = NULL; 4022 return -ENOMEM; 4023 } 4024 4025 return 0; 4026 } 4027 4028 /* GPIO1 = set according to SKU external amp 4029 * GPIO2 = mic mute hotkey 4030 * GPIO3 = mute LED 4031 * GPIO4 = mic mute LED 4032 */ 4033 static void alc280_fixup_hp_gpio2_mic_hotkey(struct hda_codec *codec, 4034 const struct hda_fixup *fix, int action) 4035 { 4036 struct alc_spec *spec = codec->spec; 4037 4038 alc_fixup_hp_gpio_led(codec, action, 0x08, 0x10); 4039 if (action == HDA_FIXUP_ACT_PRE_PROBE) { 4040 spec->init_amp = ALC_INIT_DEFAULT; 4041 if (alc_register_micmute_input_device(codec) != 0) 4042 return; 4043 4044 spec->gpio_mask |= 0x06; 4045 spec->gpio_dir |= 0x02; 4046 spec->gpio_data |= 0x02; 4047 snd_hda_codec_write_cache(codec, codec->core.afg, 0, 4048 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x04); 4049 snd_hda_jack_detect_enable_callback(codec, codec->core.afg, 4050 gpio2_mic_hotkey_event); 4051 return; 4052 } 4053 4054 if (!spec->kb_dev) 4055 return; 4056 4057 switch (action) { 4058 case HDA_FIXUP_ACT_FREE: 4059 input_unregister_device(spec->kb_dev); 4060 spec->kb_dev = NULL; 4061 } 4062 } 4063 4064 /* Line2 = mic mute hotkey 4065 * GPIO2 = mic mute LED 4066 */ 4067 static void alc233_fixup_lenovo_line2_mic_hotkey(struct hda_codec *codec, 4068 const struct hda_fixup *fix, int action) 4069 { 4070 struct alc_spec *spec = codec->spec; 4071 4072 alc_fixup_hp_gpio_led(codec, action, 0, 0x04); 4073 if (action == HDA_FIXUP_ACT_PRE_PROBE) { 4074 spec->init_amp = ALC_INIT_DEFAULT; 4075 if (alc_register_micmute_input_device(codec) != 0) 4076 return; 4077 4078 snd_hda_jack_detect_enable_callback(codec, 0x1b, 4079 gpio2_mic_hotkey_event); 4080 return; 4081 } 4082 4083 if (!spec->kb_dev) 4084 return; 4085 4086 switch (action) { 4087 case HDA_FIXUP_ACT_FREE: 4088 input_unregister_device(spec->kb_dev); 4089 spec->kb_dev = NULL; 4090 } 4091 } 4092 #else /* INPUT */ 4093 #define alc280_fixup_hp_gpio2_mic_hotkey NULL 4094 #define alc233_fixup_lenovo_line2_mic_hotkey NULL 4095 #endif /* INPUT */ 4096 4097 static void alc269_fixup_hp_line1_mic1_led(struct hda_codec *codec, 4098 const struct hda_fixup *fix, int action) 4099 { 4100 struct alc_spec *spec = codec->spec; 4101 4102 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x1a); 4103 if (action == HDA_FIXUP_ACT_PRE_PROBE) { 4104 spec->cap_mute_led_nid = 0x18; 4105 snd_hda_gen_add_micmute_led(codec, alc_cap_micmute_update); 4106 } 4107 } 4108 4109 static struct coef_fw alc225_pre_hsmode[] = { 4110 UPDATE_COEF(0x4a, 1<<8, 0), 4111 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), 4112 UPDATE_COEF(0x63, 3<<14, 3<<14), 4113 UPDATE_COEF(0x4a, 3<<4, 2<<4), 4114 UPDATE_COEF(0x4a, 3<<10, 3<<10), 4115 UPDATE_COEF(0x45, 0x3f<<10, 0x34<<10), 4116 UPDATE_COEF(0x4a, 3<<10, 0), 4117 {} 4118 }; 4119 4120 static void alc_headset_mode_unplugged(struct hda_codec *codec) 4121 { 4122 static struct coef_fw coef0255[] = { 4123 WRITE_COEF(0x45, 0xd089), /* UAJ function set to menual mode */ 4124 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/ 4125 WRITE_COEF(0x06, 0x6104), /* Set MIC2 Vref gate with HP */ 4126 WRITE_COEFEX(0x57, 0x03, 0x8aa6), /* Direct Drive HP Amp control */ 4127 {} 4128 }; 4129 static struct coef_fw coef0255_1[] = { 4130 WRITE_COEF(0x1b, 0x0c0b), /* LDO and MISC control */ 4131 {} 4132 }; 4133 static struct coef_fw coef0256[] = { 4134 WRITE_COEF(0x1b, 0x0c4b), /* LDO and MISC control */ 4135 {} 4136 }; 4137 static struct coef_fw coef0233[] = { 4138 WRITE_COEF(0x1b, 0x0c0b), 4139 WRITE_COEF(0x45, 0xc429), 4140 UPDATE_COEF(0x35, 0x4000, 0), 4141 WRITE_COEF(0x06, 0x2104), 4142 WRITE_COEF(0x1a, 0x0001), 4143 WRITE_COEF(0x26, 0x0004), 4144 WRITE_COEF(0x32, 0x42a3), 4145 {} 4146 }; 4147 static struct coef_fw coef0288[] = { 4148 UPDATE_COEF(0x4f, 0xfcc0, 0xc400), 4149 UPDATE_COEF(0x50, 0x2000, 0x2000), 4150 UPDATE_COEF(0x56, 0x0006, 0x0006), 4151 UPDATE_COEF(0x66, 0x0008, 0), 4152 UPDATE_COEF(0x67, 0x2000, 0), 4153 {} 4154 }; 4155 static struct coef_fw coef0298[] = { 4156 UPDATE_COEF(0x19, 0x1300, 0x0300), 4157 {} 4158 }; 4159 static struct coef_fw coef0292[] = { 4160 WRITE_COEF(0x76, 0x000e), 4161 WRITE_COEF(0x6c, 0x2400), 4162 WRITE_COEF(0x18, 0x7308), 4163 WRITE_COEF(0x6b, 0xc429), 4164 {} 4165 }; 4166 static struct coef_fw coef0293[] = { 4167 UPDATE_COEF(0x10, 7<<8, 6<<8), /* SET Line1 JD to 0 */ 4168 UPDATE_COEFEX(0x57, 0x05, 1<<15|1<<13, 0x0), /* SET charge pump by verb */ 4169 UPDATE_COEFEX(0x57, 0x03, 1<<10, 1<<10), /* SET EN_OSW to 1 */ 4170 UPDATE_COEF(0x1a, 1<<3, 1<<3), /* Combo JD gating with LINE1-VREFO */ 4171 WRITE_COEF(0x45, 0xc429), /* Set to TRS type */ 4172 UPDATE_COEF(0x4a, 0x000f, 0x000e), /* Combo Jack auto detect */ 4173 {} 4174 }; 4175 static struct coef_fw coef0668[] = { 4176 WRITE_COEF(0x15, 0x0d40), 4177 WRITE_COEF(0xb7, 0x802b), 4178 {} 4179 }; 4180 static struct coef_fw coef0225[] = { 4181 UPDATE_COEF(0x63, 3<<14, 0), 4182 {} 4183 }; 4184 static struct coef_fw coef0274[] = { 4185 UPDATE_COEF(0x4a, 0x0100, 0), 4186 UPDATE_COEFEX(0x57, 0x05, 0x4000, 0), 4187 UPDATE_COEF(0x6b, 0xf000, 0x5000), 4188 UPDATE_COEF(0x4a, 0x0010, 0), 4189 UPDATE_COEF(0x4a, 0x0c00, 0x0c00), 4190 WRITE_COEF(0x45, 0x5289), 4191 UPDATE_COEF(0x4a, 0x0c00, 0), 4192 {} 4193 }; 4194 4195 switch (codec->core.vendor_id) { 4196 case 0x10ec0255: 4197 alc_process_coef_fw(codec, coef0255_1); 4198 alc_process_coef_fw(codec, coef0255); 4199 break; 4200 case 0x10ec0236: 4201 case 0x10ec0256: 4202 alc_process_coef_fw(codec, coef0256); 4203 alc_process_coef_fw(codec, coef0255); 4204 break; 4205 case 0x10ec0234: 4206 case 0x10ec0274: 4207 case 0x10ec0294: 4208 alc_process_coef_fw(codec, coef0274); 4209 break; 4210 case 0x10ec0233: 4211 case 0x10ec0283: 4212 alc_process_coef_fw(codec, coef0233); 4213 break; 4214 case 0x10ec0286: 4215 case 0x10ec0288: 4216 alc_process_coef_fw(codec, coef0288); 4217 break; 4218 case 0x10ec0298: 4219 alc_process_coef_fw(codec, coef0298); 4220 alc_process_coef_fw(codec, coef0288); 4221 break; 4222 case 0x10ec0292: 4223 alc_process_coef_fw(codec, coef0292); 4224 break; 4225 case 0x10ec0293: 4226 alc_process_coef_fw(codec, coef0293); 4227 break; 4228 case 0x10ec0668: 4229 alc_process_coef_fw(codec, coef0668); 4230 break; 4231 case 0x10ec0215: 4232 case 0x10ec0225: 4233 case 0x10ec0285: 4234 case 0x10ec0295: 4235 case 0x10ec0289: 4236 case 0x10ec0299: 4237 alc_process_coef_fw(codec, alc225_pre_hsmode); 4238 alc_process_coef_fw(codec, coef0225); 4239 break; 4240 case 0x10ec0867: 4241 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0); 4242 break; 4243 } 4244 codec_dbg(codec, "Headset jack set to unplugged mode.\n"); 4245 } 4246 4247 4248 static void alc_headset_mode_mic_in(struct hda_codec *codec, hda_nid_t hp_pin, 4249 hda_nid_t mic_pin) 4250 { 4251 static struct coef_fw coef0255[] = { 4252 WRITE_COEFEX(0x57, 0x03, 0x8aa6), 4253 WRITE_COEF(0x06, 0x6100), /* Set MIC2 Vref gate to normal */ 4254 {} 4255 }; 4256 static struct coef_fw coef0233[] = { 4257 UPDATE_COEF(0x35, 0, 1<<14), 4258 WRITE_COEF(0x06, 0x2100), 4259 WRITE_COEF(0x1a, 0x0021), 4260 WRITE_COEF(0x26, 0x008c), 4261 {} 4262 }; 4263 static struct coef_fw coef0288[] = { 4264 UPDATE_COEF(0x4f, 0x00c0, 0), 4265 UPDATE_COEF(0x50, 0x2000, 0), 4266 UPDATE_COEF(0x56, 0x0006, 0), 4267 UPDATE_COEF(0x4f, 0xfcc0, 0xc400), 4268 UPDATE_COEF(0x66, 0x0008, 0x0008), 4269 UPDATE_COEF(0x67, 0x2000, 0x2000), 4270 {} 4271 }; 4272 static struct coef_fw coef0292[] = { 4273 WRITE_COEF(0x19, 0xa208), 4274 WRITE_COEF(0x2e, 0xacf0), 4275 {} 4276 }; 4277 static struct coef_fw coef0293[] = { 4278 UPDATE_COEFEX(0x57, 0x05, 0, 1<<15|1<<13), /* SET charge pump by verb */ 4279 UPDATE_COEFEX(0x57, 0x03, 1<<10, 0), /* SET EN_OSW to 0 */ 4280 UPDATE_COEF(0x1a, 1<<3, 0), /* Combo JD gating without LINE1-VREFO */ 4281 {} 4282 }; 4283 static struct coef_fw coef0688[] = { 4284 WRITE_COEF(0xb7, 0x802b), 4285 WRITE_COEF(0xb5, 0x1040), 4286 UPDATE_COEF(0xc3, 0, 1<<12), 4287 {} 4288 }; 4289 static struct coef_fw coef0225[] = { 4290 UPDATE_COEFEX(0x57, 0x05, 1<<14, 1<<14), 4291 UPDATE_COEF(0x4a, 3<<4, 2<<4), 4292 UPDATE_COEF(0x63, 3<<14, 0), 4293 {} 4294 }; 4295 static struct coef_fw coef0274[] = { 4296 UPDATE_COEFEX(0x57, 0x05, 0x4000, 0x4000), 4297 UPDATE_COEF(0x4a, 0x0010, 0), 4298 UPDATE_COEF(0x6b, 0xf000, 0), 4299 {} 4300 }; 4301 4302 switch (codec->core.vendor_id) { 4303 case 0x10ec0236: 4304 case 0x10ec0255: 4305 case 0x10ec0256: 4306 alc_write_coef_idx(codec, 0x45, 0xc489); 4307 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0); 4308 alc_process_coef_fw(codec, coef0255); 4309 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50); 4310 break; 4311 case 0x10ec0234: 4312 case 0x10ec0274: 4313 case 0x10ec0294: 4314 alc_write_coef_idx(codec, 0x45, 0x4689); 4315 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0); 4316 alc_process_coef_fw(codec, coef0274); 4317 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50); 4318 break; 4319 case 0x10ec0233: 4320 case 0x10ec0283: 4321 alc_write_coef_idx(codec, 0x45, 0xc429); 4322 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0); 4323 alc_process_coef_fw(codec, coef0233); 4324 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50); 4325 break; 4326 case 0x10ec0286: 4327 case 0x10ec0288: 4328 case 0x10ec0298: 4329 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0); 4330 alc_process_coef_fw(codec, coef0288); 4331 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50); 4332 break; 4333 case 0x10ec0292: 4334 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0); 4335 alc_process_coef_fw(codec, coef0292); 4336 break; 4337 case 0x10ec0293: 4338 /* Set to TRS mode */ 4339 alc_write_coef_idx(codec, 0x45, 0xc429); 4340 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0); 4341 alc_process_coef_fw(codec, coef0293); 4342 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50); 4343 break; 4344 case 0x10ec0867: 4345 alc_update_coefex_idx(codec, 0x57, 0x5, 0, 1<<14); 4346 /* fallthru */ 4347 case 0x10ec0221: 4348 case 0x10ec0662: 4349 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0); 4350 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50); 4351 break; 4352 case 0x10ec0668: 4353 alc_write_coef_idx(codec, 0x11, 0x0001); 4354 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0); 4355 alc_process_coef_fw(codec, coef0688); 4356 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50); 4357 break; 4358 case 0x10ec0215: 4359 case 0x10ec0225: 4360 case 0x10ec0285: 4361 case 0x10ec0295: 4362 case 0x10ec0289: 4363 case 0x10ec0299: 4364 alc_process_coef_fw(codec, alc225_pre_hsmode); 4365 alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x31<<10); 4366 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0); 4367 alc_process_coef_fw(codec, coef0225); 4368 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50); 4369 break; 4370 } 4371 codec_dbg(codec, "Headset jack set to mic-in mode.\n"); 4372 } 4373 4374 static void alc_headset_mode_default(struct hda_codec *codec) 4375 { 4376 static struct coef_fw coef0225[] = { 4377 UPDATE_COEF(0x45, 0x3f<<10, 0x30<<10), 4378 UPDATE_COEF(0x45, 0x3f<<10, 0x31<<10), 4379 UPDATE_COEF(0x49, 3<<8, 0<<8), 4380 UPDATE_COEF(0x4a, 3<<4, 3<<4), 4381 UPDATE_COEF(0x63, 3<<14, 0), 4382 UPDATE_COEF(0x67, 0xf000, 0x3000), 4383 {} 4384 }; 4385 static struct coef_fw coef0255[] = { 4386 WRITE_COEF(0x45, 0xc089), 4387 WRITE_COEF(0x45, 0xc489), 4388 WRITE_COEFEX(0x57, 0x03, 0x8ea6), 4389 WRITE_COEF(0x49, 0x0049), 4390 {} 4391 }; 4392 static struct coef_fw coef0233[] = { 4393 WRITE_COEF(0x06, 0x2100), 4394 WRITE_COEF(0x32, 0x4ea3), 4395 {} 4396 }; 4397 static struct coef_fw coef0288[] = { 4398 UPDATE_COEF(0x4f, 0xfcc0, 0xc400), /* Set to TRS type */ 4399 UPDATE_COEF(0x50, 0x2000, 0x2000), 4400 UPDATE_COEF(0x56, 0x0006, 0x0006), 4401 UPDATE_COEF(0x66, 0x0008, 0), 4402 UPDATE_COEF(0x67, 0x2000, 0), 4403 {} 4404 }; 4405 static struct coef_fw coef0292[] = { 4406 WRITE_COEF(0x76, 0x000e), 4407 WRITE_COEF(0x6c, 0x2400), 4408 WRITE_COEF(0x6b, 0xc429), 4409 WRITE_COEF(0x18, 0x7308), 4410 {} 4411 }; 4412 static struct coef_fw coef0293[] = { 4413 UPDATE_COEF(0x4a, 0x000f, 0x000e), /* Combo Jack auto detect */ 4414 WRITE_COEF(0x45, 0xC429), /* Set to TRS type */ 4415 UPDATE_COEF(0x1a, 1<<3, 0), /* Combo JD gating without LINE1-VREFO */ 4416 {} 4417 }; 4418 static struct coef_fw coef0688[] = { 4419 WRITE_COEF(0x11, 0x0041), 4420 WRITE_COEF(0x15, 0x0d40), 4421 WRITE_COEF(0xb7, 0x802b), 4422 {} 4423 }; 4424 static struct coef_fw coef0274[] = { 4425 WRITE_COEF(0x45, 0x4289), 4426 UPDATE_COEF(0x4a, 0x0010, 0x0010), 4427 UPDATE_COEF(0x6b, 0x0f00, 0), 4428 UPDATE_COEF(0x49, 0x0300, 0x0300), 4429 {} 4430 }; 4431 4432 switch (codec->core.vendor_id) { 4433 case 0x10ec0215: 4434 case 0x10ec0225: 4435 case 0x10ec0285: 4436 case 0x10ec0295: 4437 case 0x10ec0289: 4438 case 0x10ec0299: 4439 alc_process_coef_fw(codec, alc225_pre_hsmode); 4440 alc_process_coef_fw(codec, coef0225); 4441 break; 4442 case 0x10ec0236: 4443 case 0x10ec0255: 4444 case 0x10ec0256: 4445 alc_process_coef_fw(codec, coef0255); 4446 break; 4447 case 0x10ec0234: 4448 case 0x10ec0274: 4449 case 0x10ec0294: 4450 alc_process_coef_fw(codec, coef0274); 4451 break; 4452 case 0x10ec0233: 4453 case 0x10ec0283: 4454 alc_process_coef_fw(codec, coef0233); 4455 break; 4456 case 0x10ec0286: 4457 case 0x10ec0288: 4458 case 0x10ec0298: 4459 alc_process_coef_fw(codec, coef0288); 4460 break; 4461 case 0x10ec0292: 4462 alc_process_coef_fw(codec, coef0292); 4463 break; 4464 case 0x10ec0293: 4465 alc_process_coef_fw(codec, coef0293); 4466 break; 4467 case 0x10ec0668: 4468 alc_process_coef_fw(codec, coef0688); 4469 break; 4470 case 0x10ec0867: 4471 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0); 4472 break; 4473 } 4474 codec_dbg(codec, "Headset jack set to headphone (default) mode.\n"); 4475 } 4476 4477 /* Iphone type */ 4478 static void alc_headset_mode_ctia(struct hda_codec *codec) 4479 { 4480 int val; 4481 4482 static struct coef_fw coef0255[] = { 4483 WRITE_COEF(0x45, 0xd489), /* Set to CTIA type */ 4484 WRITE_COEF(0x1b, 0x0c2b), 4485 WRITE_COEFEX(0x57, 0x03, 0x8ea6), 4486 {} 4487 }; 4488 static struct coef_fw coef0256[] = { 4489 WRITE_COEF(0x45, 0xd489), /* Set to CTIA type */ 4490 WRITE_COEF(0x1b, 0x0c6b), 4491 WRITE_COEFEX(0x57, 0x03, 0x8ea6), 4492 {} 4493 }; 4494 static struct coef_fw coef0233[] = { 4495 WRITE_COEF(0x45, 0xd429), 4496 WRITE_COEF(0x1b, 0x0c2b), 4497 WRITE_COEF(0x32, 0x4ea3), 4498 {} 4499 }; 4500 static struct coef_fw coef0288[] = { 4501 UPDATE_COEF(0x50, 0x2000, 0x2000), 4502 UPDATE_COEF(0x56, 0x0006, 0x0006), 4503 UPDATE_COEF(0x66, 0x0008, 0), 4504 UPDATE_COEF(0x67, 0x2000, 0), 4505 {} 4506 }; 4507 static struct coef_fw coef0292[] = { 4508 WRITE_COEF(0x6b, 0xd429), 4509 WRITE_COEF(0x76, 0x0008), 4510 WRITE_COEF(0x18, 0x7388), 4511 {} 4512 }; 4513 static struct coef_fw coef0293[] = { 4514 WRITE_COEF(0x45, 0xd429), /* Set to ctia type */ 4515 UPDATE_COEF(0x10, 7<<8, 7<<8), /* SET Line1 JD to 1 */ 4516 {} 4517 }; 4518 static struct coef_fw coef0688[] = { 4519 WRITE_COEF(0x11, 0x0001), 4520 WRITE_COEF(0x15, 0x0d60), 4521 WRITE_COEF(0xc3, 0x0000), 4522 {} 4523 }; 4524 static struct coef_fw coef0225_1[] = { 4525 UPDATE_COEF(0x45, 0x3f<<10, 0x35<<10), 4526 UPDATE_COEF(0x63, 3<<14, 2<<14), 4527 {} 4528 }; 4529 static struct coef_fw coef0225_2[] = { 4530 UPDATE_COEF(0x45, 0x3f<<10, 0x35<<10), 4531 UPDATE_COEF(0x63, 3<<14, 1<<14), 4532 {} 4533 }; 4534 4535 switch (codec->core.vendor_id) { 4536 case 0x10ec0255: 4537 alc_process_coef_fw(codec, coef0255); 4538 break; 4539 case 0x10ec0236: 4540 case 0x10ec0256: 4541 alc_process_coef_fw(codec, coef0256); 4542 break; 4543 case 0x10ec0234: 4544 case 0x10ec0274: 4545 case 0x10ec0294: 4546 alc_write_coef_idx(codec, 0x45, 0xd689); 4547 break; 4548 case 0x10ec0233: 4549 case 0x10ec0283: 4550 alc_process_coef_fw(codec, coef0233); 4551 break; 4552 case 0x10ec0298: 4553 val = alc_read_coef_idx(codec, 0x50); 4554 if (val & (1 << 12)) { 4555 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0020); 4556 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400); 4557 msleep(300); 4558 } else { 4559 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010); 4560 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400); 4561 msleep(300); 4562 } 4563 break; 4564 case 0x10ec0286: 4565 case 0x10ec0288: 4566 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400); 4567 msleep(300); 4568 alc_process_coef_fw(codec, coef0288); 4569 break; 4570 case 0x10ec0292: 4571 alc_process_coef_fw(codec, coef0292); 4572 break; 4573 case 0x10ec0293: 4574 alc_process_coef_fw(codec, coef0293); 4575 break; 4576 case 0x10ec0668: 4577 alc_process_coef_fw(codec, coef0688); 4578 break; 4579 case 0x10ec0215: 4580 case 0x10ec0225: 4581 case 0x10ec0285: 4582 case 0x10ec0295: 4583 case 0x10ec0289: 4584 case 0x10ec0299: 4585 val = alc_read_coef_idx(codec, 0x45); 4586 if (val & (1 << 9)) 4587 alc_process_coef_fw(codec, coef0225_2); 4588 else 4589 alc_process_coef_fw(codec, coef0225_1); 4590 break; 4591 case 0x10ec0867: 4592 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0); 4593 break; 4594 } 4595 codec_dbg(codec, "Headset jack set to iPhone-style headset mode.\n"); 4596 } 4597 4598 /* Nokia type */ 4599 static void alc_headset_mode_omtp(struct hda_codec *codec) 4600 { 4601 static struct coef_fw coef0255[] = { 4602 WRITE_COEF(0x45, 0xe489), /* Set to OMTP Type */ 4603 WRITE_COEF(0x1b, 0x0c2b), 4604 WRITE_COEFEX(0x57, 0x03, 0x8ea6), 4605 {} 4606 }; 4607 static struct coef_fw coef0256[] = { 4608 WRITE_COEF(0x45, 0xe489), /* Set to OMTP Type */ 4609 WRITE_COEF(0x1b, 0x0c6b), 4610 WRITE_COEFEX(0x57, 0x03, 0x8ea6), 4611 {} 4612 }; 4613 static struct coef_fw coef0233[] = { 4614 WRITE_COEF(0x45, 0xe429), 4615 WRITE_COEF(0x1b, 0x0c2b), 4616 WRITE_COEF(0x32, 0x4ea3), 4617 {} 4618 }; 4619 static struct coef_fw coef0288[] = { 4620 UPDATE_COEF(0x50, 0x2000, 0x2000), 4621 UPDATE_COEF(0x56, 0x0006, 0x0006), 4622 UPDATE_COEF(0x66, 0x0008, 0), 4623 UPDATE_COEF(0x67, 0x2000, 0), 4624 {} 4625 }; 4626 static struct coef_fw coef0292[] = { 4627 WRITE_COEF(0x6b, 0xe429), 4628 WRITE_COEF(0x76, 0x0008), 4629 WRITE_COEF(0x18, 0x7388), 4630 {} 4631 }; 4632 static struct coef_fw coef0293[] = { 4633 WRITE_COEF(0x45, 0xe429), /* Set to omtp type */ 4634 UPDATE_COEF(0x10, 7<<8, 7<<8), /* SET Line1 JD to 1 */ 4635 {} 4636 }; 4637 static struct coef_fw coef0688[] = { 4638 WRITE_COEF(0x11, 0x0001), 4639 WRITE_COEF(0x15, 0x0d50), 4640 WRITE_COEF(0xc3, 0x0000), 4641 {} 4642 }; 4643 static struct coef_fw coef0225[] = { 4644 UPDATE_COEF(0x45, 0x3f<<10, 0x39<<10), 4645 UPDATE_COEF(0x63, 3<<14, 2<<14), 4646 {} 4647 }; 4648 4649 switch (codec->core.vendor_id) { 4650 case 0x10ec0255: 4651 alc_process_coef_fw(codec, coef0255); 4652 break; 4653 case 0x10ec0236: 4654 case 0x10ec0256: 4655 alc_process_coef_fw(codec, coef0256); 4656 break; 4657 case 0x10ec0234: 4658 case 0x10ec0274: 4659 case 0x10ec0294: 4660 alc_write_coef_idx(codec, 0x45, 0xe689); 4661 break; 4662 case 0x10ec0233: 4663 case 0x10ec0283: 4664 alc_process_coef_fw(codec, coef0233); 4665 break; 4666 case 0x10ec0298: 4667 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);/* Headset output enable */ 4668 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xe400); 4669 msleep(300); 4670 break; 4671 case 0x10ec0286: 4672 case 0x10ec0288: 4673 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xe400); 4674 msleep(300); 4675 alc_process_coef_fw(codec, coef0288); 4676 break; 4677 case 0x10ec0292: 4678 alc_process_coef_fw(codec, coef0292); 4679 break; 4680 case 0x10ec0293: 4681 alc_process_coef_fw(codec, coef0293); 4682 break; 4683 case 0x10ec0668: 4684 alc_process_coef_fw(codec, coef0688); 4685 break; 4686 case 0x10ec0215: 4687 case 0x10ec0225: 4688 case 0x10ec0285: 4689 case 0x10ec0295: 4690 case 0x10ec0289: 4691 case 0x10ec0299: 4692 alc_process_coef_fw(codec, coef0225); 4693 break; 4694 } 4695 codec_dbg(codec, "Headset jack set to Nokia-style headset mode.\n"); 4696 } 4697 4698 static void alc_determine_headset_type(struct hda_codec *codec) 4699 { 4700 int val; 4701 bool is_ctia = false; 4702 struct alc_spec *spec = codec->spec; 4703 static struct coef_fw coef0255[] = { 4704 WRITE_COEF(0x45, 0xd089), /* combo jack auto switch control(Check type)*/ 4705 WRITE_COEF(0x49, 0x0149), /* combo jack auto switch control(Vref 4706 conteol) */ 4707 {} 4708 }; 4709 static struct coef_fw coef0288[] = { 4710 UPDATE_COEF(0x4f, 0xfcc0, 0xd400), /* Check Type */ 4711 {} 4712 }; 4713 static struct coef_fw coef0298[] = { 4714 UPDATE_COEF(0x50, 0x2000, 0x2000), 4715 UPDATE_COEF(0x56, 0x0006, 0x0006), 4716 UPDATE_COEF(0x66, 0x0008, 0), 4717 UPDATE_COEF(0x67, 0x2000, 0), 4718 UPDATE_COEF(0x19, 0x1300, 0x1300), 4719 {} 4720 }; 4721 static struct coef_fw coef0293[] = { 4722 UPDATE_COEF(0x4a, 0x000f, 0x0008), /* Combo Jack auto detect */ 4723 WRITE_COEF(0x45, 0xD429), /* Set to ctia type */ 4724 {} 4725 }; 4726 static struct coef_fw coef0688[] = { 4727 WRITE_COEF(0x11, 0x0001), 4728 WRITE_COEF(0xb7, 0x802b), 4729 WRITE_COEF(0x15, 0x0d60), 4730 WRITE_COEF(0xc3, 0x0c00), 4731 {} 4732 }; 4733 static struct coef_fw coef0274[] = { 4734 UPDATE_COEF(0x4a, 0x0010, 0), 4735 UPDATE_COEF(0x4a, 0x8000, 0), 4736 WRITE_COEF(0x45, 0xd289), 4737 UPDATE_COEF(0x49, 0x0300, 0x0300), 4738 {} 4739 }; 4740 4741 switch (codec->core.vendor_id) { 4742 case 0x10ec0236: 4743 case 0x10ec0255: 4744 case 0x10ec0256: 4745 alc_process_coef_fw(codec, coef0255); 4746 msleep(300); 4747 val = alc_read_coef_idx(codec, 0x46); 4748 is_ctia = (val & 0x0070) == 0x0070; 4749 break; 4750 case 0x10ec0234: 4751 case 0x10ec0274: 4752 case 0x10ec0294: 4753 alc_process_coef_fw(codec, coef0274); 4754 msleep(80); 4755 val = alc_read_coef_idx(codec, 0x46); 4756 is_ctia = (val & 0x00f0) == 0x00f0; 4757 break; 4758 case 0x10ec0233: 4759 case 0x10ec0283: 4760 alc_write_coef_idx(codec, 0x45, 0xd029); 4761 msleep(300); 4762 val = alc_read_coef_idx(codec, 0x46); 4763 is_ctia = (val & 0x0070) == 0x0070; 4764 break; 4765 case 0x10ec0298: 4766 snd_hda_codec_write(codec, 0x21, 0, 4767 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); 4768 msleep(100); 4769 snd_hda_codec_write(codec, 0x21, 0, 4770 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0); 4771 msleep(200); 4772 4773 val = alc_read_coef_idx(codec, 0x50); 4774 if (val & (1 << 12)) { 4775 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0020); 4776 alc_process_coef_fw(codec, coef0288); 4777 msleep(350); 4778 val = alc_read_coef_idx(codec, 0x50); 4779 is_ctia = (val & 0x0070) == 0x0070; 4780 } else { 4781 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010); 4782 alc_process_coef_fw(codec, coef0288); 4783 msleep(350); 4784 val = alc_read_coef_idx(codec, 0x50); 4785 is_ctia = (val & 0x0070) == 0x0070; 4786 } 4787 alc_process_coef_fw(codec, coef0298); 4788 snd_hda_codec_write(codec, 0x21, 0, 4789 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP); 4790 msleep(75); 4791 snd_hda_codec_write(codec, 0x21, 0, 4792 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE); 4793 break; 4794 case 0x10ec0286: 4795 case 0x10ec0288: 4796 alc_process_coef_fw(codec, coef0288); 4797 msleep(350); 4798 val = alc_read_coef_idx(codec, 0x50); 4799 is_ctia = (val & 0x0070) == 0x0070; 4800 break; 4801 case 0x10ec0292: 4802 alc_write_coef_idx(codec, 0x6b, 0xd429); 4803 msleep(300); 4804 val = alc_read_coef_idx(codec, 0x6c); 4805 is_ctia = (val & 0x001c) == 0x001c; 4806 break; 4807 case 0x10ec0293: 4808 alc_process_coef_fw(codec, coef0293); 4809 msleep(300); 4810 val = alc_read_coef_idx(codec, 0x46); 4811 is_ctia = (val & 0x0070) == 0x0070; 4812 break; 4813 case 0x10ec0668: 4814 alc_process_coef_fw(codec, coef0688); 4815 msleep(300); 4816 val = alc_read_coef_idx(codec, 0xbe); 4817 is_ctia = (val & 0x1c02) == 0x1c02; 4818 break; 4819 case 0x10ec0215: 4820 case 0x10ec0225: 4821 case 0x10ec0285: 4822 case 0x10ec0295: 4823 case 0x10ec0289: 4824 case 0x10ec0299: 4825 snd_hda_codec_write(codec, 0x21, 0, 4826 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); 4827 msleep(80); 4828 snd_hda_codec_write(codec, 0x21, 0, 4829 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0); 4830 4831 alc_process_coef_fw(codec, alc225_pre_hsmode); 4832 alc_update_coef_idx(codec, 0x67, 0xf000, 0x1000); 4833 val = alc_read_coef_idx(codec, 0x45); 4834 if (val & (1 << 9)) { 4835 alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x34<<10); 4836 alc_update_coef_idx(codec, 0x49, 3<<8, 2<<8); 4837 msleep(800); 4838 val = alc_read_coef_idx(codec, 0x46); 4839 is_ctia = (val & 0x00f0) == 0x00f0; 4840 } else { 4841 alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x34<<10); 4842 alc_update_coef_idx(codec, 0x49, 3<<8, 1<<8); 4843 msleep(800); 4844 val = alc_read_coef_idx(codec, 0x46); 4845 is_ctia = (val & 0x00f0) == 0x00f0; 4846 } 4847 alc_update_coef_idx(codec, 0x4a, 7<<6, 7<<6); 4848 alc_update_coef_idx(codec, 0x4a, 3<<4, 3<<4); 4849 alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000); 4850 4851 snd_hda_codec_write(codec, 0x21, 0, 4852 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT); 4853 msleep(80); 4854 snd_hda_codec_write(codec, 0x21, 0, 4855 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE); 4856 break; 4857 case 0x10ec0867: 4858 is_ctia = true; 4859 break; 4860 } 4861 4862 codec_dbg(codec, "Headset jack detected iPhone-style headset: %s\n", 4863 is_ctia ? "yes" : "no"); 4864 spec->current_headset_type = is_ctia ? ALC_HEADSET_TYPE_CTIA : ALC_HEADSET_TYPE_OMTP; 4865 } 4866 4867 static void alc_update_headset_mode(struct hda_codec *codec) 4868 { 4869 struct alc_spec *spec = codec->spec; 4870 4871 hda_nid_t mux_pin = spec->gen.imux_pins[spec->gen.cur_mux[0]]; 4872 hda_nid_t hp_pin = alc_get_hp_pin(spec); 4873 4874 int new_headset_mode; 4875 4876 if (!snd_hda_jack_detect(codec, hp_pin)) 4877 new_headset_mode = ALC_HEADSET_MODE_UNPLUGGED; 4878 else if (mux_pin == spec->headset_mic_pin) 4879 new_headset_mode = ALC_HEADSET_MODE_HEADSET; 4880 else if (mux_pin == spec->headphone_mic_pin) 4881 new_headset_mode = ALC_HEADSET_MODE_MIC; 4882 else 4883 new_headset_mode = ALC_HEADSET_MODE_HEADPHONE; 4884 4885 if (new_headset_mode == spec->current_headset_mode) { 4886 snd_hda_gen_update_outputs(codec); 4887 return; 4888 } 4889 4890 switch (new_headset_mode) { 4891 case ALC_HEADSET_MODE_UNPLUGGED: 4892 alc_headset_mode_unplugged(codec); 4893 spec->current_headset_mode = ALC_HEADSET_MODE_UNKNOWN; 4894 spec->current_headset_type = ALC_HEADSET_TYPE_UNKNOWN; 4895 spec->gen.hp_jack_present = false; 4896 break; 4897 case ALC_HEADSET_MODE_HEADSET: 4898 if (spec->current_headset_type == ALC_HEADSET_TYPE_UNKNOWN) 4899 alc_determine_headset_type(codec); 4900 if (spec->current_headset_type == ALC_HEADSET_TYPE_CTIA) 4901 alc_headset_mode_ctia(codec); 4902 else if (spec->current_headset_type == ALC_HEADSET_TYPE_OMTP) 4903 alc_headset_mode_omtp(codec); 4904 spec->gen.hp_jack_present = true; 4905 break; 4906 case ALC_HEADSET_MODE_MIC: 4907 alc_headset_mode_mic_in(codec, hp_pin, spec->headphone_mic_pin); 4908 spec->gen.hp_jack_present = false; 4909 break; 4910 case ALC_HEADSET_MODE_HEADPHONE: 4911 alc_headset_mode_default(codec); 4912 spec->gen.hp_jack_present = true; 4913 break; 4914 } 4915 if (new_headset_mode != ALC_HEADSET_MODE_MIC) { 4916 snd_hda_set_pin_ctl_cache(codec, hp_pin, 4917 AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN); 4918 if (spec->headphone_mic_pin && spec->headphone_mic_pin != hp_pin) 4919 snd_hda_set_pin_ctl_cache(codec, spec->headphone_mic_pin, 4920 PIN_VREFHIZ); 4921 } 4922 spec->current_headset_mode = new_headset_mode; 4923 4924 snd_hda_gen_update_outputs(codec); 4925 } 4926 4927 static void alc_update_headset_mode_hook(struct hda_codec *codec, 4928 struct snd_kcontrol *kcontrol, 4929 struct snd_ctl_elem_value *ucontrol) 4930 { 4931 alc_update_headset_mode(codec); 4932 } 4933 4934 static void alc_update_headset_jack_cb(struct hda_codec *codec, 4935 struct hda_jack_callback *jack) 4936 { 4937 snd_hda_gen_hp_automute(codec, jack); 4938 } 4939 4940 static void alc_probe_headset_mode(struct hda_codec *codec) 4941 { 4942 int i; 4943 struct alc_spec *spec = codec->spec; 4944 struct auto_pin_cfg *cfg = &spec->gen.autocfg; 4945 4946 /* Find mic pins */ 4947 for (i = 0; i < cfg->num_inputs; i++) { 4948 if (cfg->inputs[i].is_headset_mic && !spec->headset_mic_pin) 4949 spec->headset_mic_pin = cfg->inputs[i].pin; 4950 if (cfg->inputs[i].is_headphone_mic && !spec->headphone_mic_pin) 4951 spec->headphone_mic_pin = cfg->inputs[i].pin; 4952 } 4953 4954 WARN_ON(spec->gen.cap_sync_hook); 4955 spec->gen.cap_sync_hook = alc_update_headset_mode_hook; 4956 spec->gen.automute_hook = alc_update_headset_mode; 4957 spec->gen.hp_automute_hook = alc_update_headset_jack_cb; 4958 } 4959 4960 static void alc_fixup_headset_mode(struct hda_codec *codec, 4961 const struct hda_fixup *fix, int action) 4962 { 4963 struct alc_spec *spec = codec->spec; 4964 4965 switch (action) { 4966 case HDA_FIXUP_ACT_PRE_PROBE: 4967 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC | HDA_PINCFG_HEADPHONE_MIC; 4968 break; 4969 case HDA_FIXUP_ACT_PROBE: 4970 alc_probe_headset_mode(codec); 4971 break; 4972 case HDA_FIXUP_ACT_INIT: 4973 if (is_s3_resume(codec) || is_s4_resume(codec)) { 4974 spec->current_headset_mode = ALC_HEADSET_MODE_UNKNOWN; 4975 spec->current_headset_type = ALC_HEADSET_TYPE_UNKNOWN; 4976 } 4977 alc_update_headset_mode(codec); 4978 break; 4979 } 4980 } 4981 4982 static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec *codec, 4983 const struct hda_fixup *fix, int action) 4984 { 4985 if (action == HDA_FIXUP_ACT_PRE_PROBE) { 4986 struct alc_spec *spec = codec->spec; 4987 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC; 4988 } 4989 else 4990 alc_fixup_headset_mode(codec, fix, action); 4991 } 4992 4993 static void alc255_set_default_jack_type(struct hda_codec *codec) 4994 { 4995 /* Set to iphone type */ 4996 static struct coef_fw alc255fw[] = { 4997 WRITE_COEF(0x1b, 0x880b), 4998 WRITE_COEF(0x45, 0xd089), 4999 WRITE_COEF(0x1b, 0x080b), 5000 WRITE_COEF(0x46, 0x0004), 5001 WRITE_COEF(0x1b, 0x0c0b), 5002 {} 5003 }; 5004 static struct coef_fw alc256fw[] = { 5005 WRITE_COEF(0x1b, 0x884b), 5006 WRITE_COEF(0x45, 0xd089), 5007 WRITE_COEF(0x1b, 0x084b), 5008 WRITE_COEF(0x46, 0x0004), 5009 WRITE_COEF(0x1b, 0x0c4b), 5010 {} 5011 }; 5012 switch (codec->core.vendor_id) { 5013 case 0x10ec0255: 5014 alc_process_coef_fw(codec, alc255fw); 5015 break; 5016 case 0x10ec0236: 5017 case 0x10ec0256: 5018 alc_process_coef_fw(codec, alc256fw); 5019 break; 5020 } 5021 msleep(30); 5022 } 5023 5024 static void alc_fixup_headset_mode_alc255(struct hda_codec *codec, 5025 const struct hda_fixup *fix, int action) 5026 { 5027 if (action == HDA_FIXUP_ACT_PRE_PROBE) { 5028 alc255_set_default_jack_type(codec); 5029 } 5030 alc_fixup_headset_mode(codec, fix, action); 5031 } 5032 5033 static void alc_fixup_headset_mode_alc255_no_hp_mic(struct hda_codec *codec, 5034 const struct hda_fixup *fix, int action) 5035 { 5036 if (action == HDA_FIXUP_ACT_PRE_PROBE) { 5037 struct alc_spec *spec = codec->spec; 5038 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC; 5039 alc255_set_default_jack_type(codec); 5040 } 5041 else 5042 alc_fixup_headset_mode(codec, fix, action); 5043 } 5044 5045 static void alc288_update_headset_jack_cb(struct hda_codec *codec, 5046 struct hda_jack_callback *jack) 5047 { 5048 struct alc_spec *spec = codec->spec; 5049 5050 alc_update_headset_jack_cb(codec, jack); 5051 /* Headset Mic enable or disable, only for Dell Dino */ 5052 alc_update_gpio_data(codec, 0x40, spec->gen.hp_jack_present); 5053 } 5054 5055 static void alc_fixup_headset_mode_dell_alc288(struct hda_codec *codec, 5056 const struct hda_fixup *fix, int action) 5057 { 5058 alc_fixup_headset_mode(codec, fix, action); 5059 if (action == HDA_FIXUP_ACT_PROBE) { 5060 struct alc_spec *spec = codec->spec; 5061 /* toggled via hp_automute_hook */ 5062 spec->gpio_mask |= 0x40; 5063 spec->gpio_dir |= 0x40; 5064 spec->gen.hp_automute_hook = alc288_update_headset_jack_cb; 5065 } 5066 } 5067 5068 static void alc_fixup_auto_mute_via_amp(struct hda_codec *codec, 5069 const struct hda_fixup *fix, int action) 5070 { 5071 if (action == HDA_FIXUP_ACT_PRE_PROBE) { 5072 struct alc_spec *spec = codec->spec; 5073 spec->gen.auto_mute_via_amp = 1; 5074 } 5075 } 5076 5077 static void alc_fixup_no_shutup(struct hda_codec *codec, 5078 const struct hda_fixup *fix, int action) 5079 { 5080 if (action == HDA_FIXUP_ACT_PRE_PROBE) { 5081 struct alc_spec *spec = codec->spec; 5082 spec->no_shutup_pins = 1; 5083 } 5084 } 5085 5086 static void alc_fixup_disable_aamix(struct hda_codec *codec, 5087 const struct hda_fixup *fix, int action) 5088 { 5089 if (action == HDA_FIXUP_ACT_PRE_PROBE) { 5090 struct alc_spec *spec = codec->spec; 5091 /* Disable AA-loopback as it causes white noise */ 5092 spec->gen.mixer_nid = 0; 5093 } 5094 } 5095 5096 /* fixup for Thinkpad docks: add dock pins, avoid HP parser fixup */ 5097 static void alc_fixup_tpt440_dock(struct hda_codec *codec, 5098 const struct hda_fixup *fix, int action) 5099 { 5100 static const struct hda_pintbl pincfgs[] = { 5101 { 0x16, 0x21211010 }, /* dock headphone */ 5102 { 0x19, 0x21a11010 }, /* dock mic */ 5103 { } 5104 }; 5105 struct alc_spec *spec = codec->spec; 5106 5107 if (action == HDA_FIXUP_ACT_PRE_PROBE) { 5108 spec->reboot_notify = alc_d3_at_reboot; /* reduce noise */ 5109 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP; 5110 codec->power_save_node = 0; /* avoid click noises */ 5111 snd_hda_apply_pincfgs(codec, pincfgs); 5112 } 5113 } 5114 5115 static void alc_fixup_tpt470_dock(struct hda_codec *codec, 5116 const struct hda_fixup *fix, int action) 5117 { 5118 static const struct hda_pintbl pincfgs[] = { 5119 { 0x17, 0x21211010 }, /* dock headphone */ 5120 { 0x19, 0x21a11010 }, /* dock mic */ 5121 { } 5122 }; 5123 /* Assure the speaker pin to be coupled with DAC NID 0x03; otherwise 5124 * the speaker output becomes too low by some reason on Thinkpads with 5125 * ALC298 codec 5126 */ 5127 static hda_nid_t preferred_pairs[] = { 5128 0x14, 0x03, 0x17, 0x02, 0x21, 0x02, 5129 0 5130 }; 5131 struct alc_spec *spec = codec->spec; 5132 5133 if (action == HDA_FIXUP_ACT_PRE_PROBE) { 5134 spec->gen.preferred_dacs = preferred_pairs; 5135 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP; 5136 snd_hda_apply_pincfgs(codec, pincfgs); 5137 } else if (action == HDA_FIXUP_ACT_INIT) { 5138 /* Enable DOCK device */ 5139 snd_hda_codec_write(codec, 0x17, 0, 5140 AC_VERB_SET_CONFIG_DEFAULT_BYTES_3, 0); 5141 /* Enable DOCK device */ 5142 snd_hda_codec_write(codec, 0x19, 0, 5143 AC_VERB_SET_CONFIG_DEFAULT_BYTES_3, 0); 5144 } 5145 } 5146 5147 static void alc_shutup_dell_xps13(struct hda_codec *codec) 5148 { 5149 struct alc_spec *spec = codec->spec; 5150 int hp_pin = alc_get_hp_pin(spec); 5151 5152 /* Prevent pop noises when headphones are plugged in */ 5153 snd_hda_codec_write(codec, hp_pin, 0, 5154 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE); 5155 msleep(20); 5156 } 5157 5158 static void alc_fixup_dell_xps13(struct hda_codec *codec, 5159 const struct hda_fixup *fix, int action) 5160 { 5161 struct alc_spec *spec = codec->spec; 5162 struct hda_input_mux *imux = &spec->gen.input_mux; 5163 int i; 5164 5165 switch (action) { 5166 case HDA_FIXUP_ACT_PRE_PROBE: 5167 /* mic pin 0x19 must be initialized with Vref Hi-Z, otherwise 5168 * it causes a click noise at start up 5169 */ 5170 snd_hda_codec_set_pin_target(codec, 0x19, PIN_VREFHIZ); 5171 spec->shutup = alc_shutup_dell_xps13; 5172 break; 5173 case HDA_FIXUP_ACT_PROBE: 5174 /* Make the internal mic the default input source. */ 5175 for (i = 0; i < imux->num_items; i++) { 5176 if (spec->gen.imux_pins[i] == 0x12) { 5177 spec->gen.cur_mux[0] = i; 5178 break; 5179 } 5180 } 5181 break; 5182 } 5183 } 5184 5185 static void alc_fixup_headset_mode_alc662(struct hda_codec *codec, 5186 const struct hda_fixup *fix, int action) 5187 { 5188 struct alc_spec *spec = codec->spec; 5189 5190 if (action == HDA_FIXUP_ACT_PRE_PROBE) { 5191 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC; 5192 spec->gen.hp_mic = 1; /* Mic-in is same pin as headphone */ 5193 5194 /* Disable boost for mic-in permanently. (This code is only called 5195 from quirks that guarantee that the headphone is at NID 0x1b.) */ 5196 snd_hda_codec_write(codec, 0x1b, 0, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000); 5197 snd_hda_override_wcaps(codec, 0x1b, get_wcaps(codec, 0x1b) & ~AC_WCAP_IN_AMP); 5198 } else 5199 alc_fixup_headset_mode(codec, fix, action); 5200 } 5201 5202 static void alc_fixup_headset_mode_alc668(struct hda_codec *codec, 5203 const struct hda_fixup *fix, int action) 5204 { 5205 if (action == HDA_FIXUP_ACT_PRE_PROBE) { 5206 alc_write_coef_idx(codec, 0xc4, 0x8000); 5207 alc_update_coef_idx(codec, 0xc2, ~0xfe, 0); 5208 snd_hda_set_pin_ctl_cache(codec, 0x18, 0); 5209 } 5210 alc_fixup_headset_mode(codec, fix, action); 5211 } 5212 5213 /* Returns the nid of the external mic input pin, or 0 if it cannot be found. */ 5214 static int find_ext_mic_pin(struct hda_codec *codec) 5215 { 5216 struct alc_spec *spec = codec->spec; 5217 struct auto_pin_cfg *cfg = &spec->gen.autocfg; 5218 hda_nid_t nid; 5219 unsigned int defcfg; 5220 int i; 5221 5222 for (i = 0; i < cfg->num_inputs; i++) { 5223 if (cfg->inputs[i].type != AUTO_PIN_MIC) 5224 continue; 5225 nid = cfg->inputs[i].pin; 5226 defcfg = snd_hda_codec_get_pincfg(codec, nid); 5227 if (snd_hda_get_input_pin_attr(defcfg) == INPUT_PIN_ATTR_INT) 5228 continue; 5229 return nid; 5230 } 5231 5232 return 0; 5233 } 5234 5235 static void alc271_hp_gate_mic_jack(struct hda_codec *codec, 5236 const struct hda_fixup *fix, 5237 int action) 5238 { 5239 struct alc_spec *spec = codec->spec; 5240 5241 if (action == HDA_FIXUP_ACT_PROBE) { 5242 int mic_pin = find_ext_mic_pin(codec); 5243 int hp_pin = alc_get_hp_pin(spec); 5244 5245 if (snd_BUG_ON(!mic_pin || !hp_pin)) 5246 return; 5247 snd_hda_jack_set_gating_jack(codec, mic_pin, hp_pin); 5248 } 5249 } 5250 5251 static void alc269_fixup_limit_int_mic_boost(struct hda_codec *codec, 5252 const struct hda_fixup *fix, 5253 int action) 5254 { 5255 struct alc_spec *spec = codec->spec; 5256 struct auto_pin_cfg *cfg = &spec->gen.autocfg; 5257 int i; 5258 5259 /* The mic boosts on level 2 and 3 are too noisy 5260 on the internal mic input. 5261 Therefore limit the boost to 0 or 1. */ 5262 5263 if (action != HDA_FIXUP_ACT_PROBE) 5264 return; 5265 5266 for (i = 0; i < cfg->num_inputs; i++) { 5267 hda_nid_t nid = cfg->inputs[i].pin; 5268 unsigned int defcfg; 5269 if (cfg->inputs[i].type != AUTO_PIN_MIC) 5270 continue; 5271 defcfg = snd_hda_codec_get_pincfg(codec, nid); 5272 if (snd_hda_get_input_pin_attr(defcfg) != INPUT_PIN_ATTR_INT) 5273 continue; 5274 5275 snd_hda_override_amp_caps(codec, nid, HDA_INPUT, 5276 (0x00 << AC_AMPCAP_OFFSET_SHIFT) | 5277 (0x01 << AC_AMPCAP_NUM_STEPS_SHIFT) | 5278 (0x2f << AC_AMPCAP_STEP_SIZE_SHIFT) | 5279 (0 << AC_AMPCAP_MUTE_SHIFT)); 5280 } 5281 } 5282 5283 static void alc283_hp_automute_hook(struct hda_codec *codec, 5284 struct hda_jack_callback *jack) 5285 { 5286 struct alc_spec *spec = codec->spec; 5287 int vref; 5288 5289 msleep(200); 5290 snd_hda_gen_hp_automute(codec, jack); 5291 5292 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0; 5293 5294 msleep(600); 5295 snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, 5296 vref); 5297 } 5298 5299 static void alc283_fixup_chromebook(struct hda_codec *codec, 5300 const struct hda_fixup *fix, int action) 5301 { 5302 struct alc_spec *spec = codec->spec; 5303 5304 switch (action) { 5305 case HDA_FIXUP_ACT_PRE_PROBE: 5306 snd_hda_override_wcaps(codec, 0x03, 0); 5307 /* Disable AA-loopback as it causes white noise */ 5308 spec->gen.mixer_nid = 0; 5309 break; 5310 case HDA_FIXUP_ACT_INIT: 5311 /* MIC2-VREF control */ 5312 /* Set to manual mode */ 5313 alc_update_coef_idx(codec, 0x06, 0x000c, 0); 5314 /* Enable Line1 input control by verb */ 5315 alc_update_coef_idx(codec, 0x1a, 0, 1 << 4); 5316 break; 5317 } 5318 } 5319 5320 static void alc283_fixup_sense_combo_jack(struct hda_codec *codec, 5321 const struct hda_fixup *fix, int action) 5322 { 5323 struct alc_spec *spec = codec->spec; 5324 5325 switch (action) { 5326 case HDA_FIXUP_ACT_PRE_PROBE: 5327 spec->gen.hp_automute_hook = alc283_hp_automute_hook; 5328 break; 5329 case HDA_FIXUP_ACT_INIT: 5330 /* MIC2-VREF control */ 5331 /* Set to manual mode */ 5332 alc_update_coef_idx(codec, 0x06, 0x000c, 0); 5333 break; 5334 } 5335 } 5336 5337 /* mute tablet speaker pin (0x14) via dock plugging in addition */ 5338 static void asus_tx300_automute(struct hda_codec *codec) 5339 { 5340 struct alc_spec *spec = codec->spec; 5341 snd_hda_gen_update_outputs(codec); 5342 if (snd_hda_jack_detect(codec, 0x1b)) 5343 spec->gen.mute_bits |= (1ULL << 0x14); 5344 } 5345 5346 static void alc282_fixup_asus_tx300(struct hda_codec *codec, 5347 const struct hda_fixup *fix, int action) 5348 { 5349 struct alc_spec *spec = codec->spec; 5350 static const struct hda_pintbl dock_pins[] = { 5351 { 0x1b, 0x21114000 }, /* dock speaker pin */ 5352 {} 5353 }; 5354 5355 switch (action) { 5356 case HDA_FIXUP_ACT_PRE_PROBE: 5357 spec->init_amp = ALC_INIT_DEFAULT; 5358 /* TX300 needs to set up GPIO2 for the speaker amp */ 5359 alc_setup_gpio(codec, 0x04); 5360 snd_hda_apply_pincfgs(codec, dock_pins); 5361 spec->gen.auto_mute_via_amp = 1; 5362 spec->gen.automute_hook = asus_tx300_automute; 5363 snd_hda_jack_detect_enable_callback(codec, 0x1b, 5364 snd_hda_gen_hp_automute); 5365 break; 5366 case HDA_FIXUP_ACT_PROBE: 5367 spec->init_amp = ALC_INIT_DEFAULT; 5368 break; 5369 case HDA_FIXUP_ACT_BUILD: 5370 /* this is a bit tricky; give more sane names for the main 5371 * (tablet) speaker and the dock speaker, respectively 5372 */ 5373 rename_ctl(codec, "Speaker Playback Switch", 5374 "Dock Speaker Playback Switch"); 5375 rename_ctl(codec, "Bass Speaker Playback Switch", 5376 "Speaker Playback Switch"); 5377 break; 5378 } 5379 } 5380 5381 static void alc290_fixup_mono_speakers(struct hda_codec *codec, 5382 const struct hda_fixup *fix, int action) 5383 { 5384 if (action == HDA_FIXUP_ACT_PRE_PROBE) { 5385 /* DAC node 0x03 is giving mono output. We therefore want to 5386 make sure 0x14 (front speaker) and 0x15 (headphones) use the 5387 stereo DAC, while leaving 0x17 (bass speaker) for node 0x03. */ 5388 hda_nid_t conn1[2] = { 0x0c }; 5389 snd_hda_override_conn_list(codec, 0x14, 1, conn1); 5390 snd_hda_override_conn_list(codec, 0x15, 1, conn1); 5391 } 5392 } 5393 5394 static void alc298_fixup_speaker_volume(struct hda_codec *codec, 5395 const struct hda_fixup *fix, int action) 5396 { 5397 if (action == HDA_FIXUP_ACT_PRE_PROBE) { 5398 /* The speaker is routed to the Node 0x06 by a mistake, as a result 5399 we can't adjust the speaker's volume since this node does not has 5400 Amp-out capability. we change the speaker's route to: 5401 Node 0x02 (Audio Output) -> Node 0x0c (Audio Mixer) -> Node 0x17 ( 5402 Pin Complex), since Node 0x02 has Amp-out caps, we can adjust 5403 speaker's volume now. */ 5404 5405 hda_nid_t conn1[1] = { 0x0c }; 5406 snd_hda_override_conn_list(codec, 0x17, 1, conn1); 5407 } 5408 } 5409 5410 /* disable DAC3 (0x06) selection on NID 0x17 as it has no volume amp control */ 5411 static void alc295_fixup_disable_dac3(struct hda_codec *codec, 5412 const struct hda_fixup *fix, int action) 5413 { 5414 if (action == HDA_FIXUP_ACT_PRE_PROBE) { 5415 hda_nid_t conn[2] = { 0x02, 0x03 }; 5416 snd_hda_override_conn_list(codec, 0x17, 2, conn); 5417 } 5418 } 5419 5420 /* Hook to update amp GPIO4 for automute */ 5421 static void alc280_hp_gpio4_automute_hook(struct hda_codec *codec, 5422 struct hda_jack_callback *jack) 5423 { 5424 struct alc_spec *spec = codec->spec; 5425 5426 snd_hda_gen_hp_automute(codec, jack); 5427 /* mute_led_polarity is set to 0, so we pass inverted value here */ 5428 alc_update_gpio_led(codec, 0x10, !spec->gen.hp_jack_present); 5429 } 5430 5431 /* Manage GPIOs for HP EliteBook Folio 9480m. 5432 * 5433 * GPIO4 is the headphone amplifier power control 5434 * GPIO3 is the audio output mute indicator LED 5435 */ 5436 5437 static void alc280_fixup_hp_9480m(struct hda_codec *codec, 5438 const struct hda_fixup *fix, 5439 int action) 5440 { 5441 struct alc_spec *spec = codec->spec; 5442 5443 alc_fixup_hp_gpio_led(codec, action, 0x08, 0); 5444 if (action == HDA_FIXUP_ACT_PRE_PROBE) { 5445 /* amp at GPIO4; toggled via alc280_hp_gpio4_automute_hook() */ 5446 spec->gpio_mask |= 0x10; 5447 spec->gpio_dir |= 0x10; 5448 spec->gen.hp_automute_hook = alc280_hp_gpio4_automute_hook; 5449 } 5450 } 5451 5452 static void alc275_fixup_gpio4_off(struct hda_codec *codec, 5453 const struct hda_fixup *fix, 5454 int action) 5455 { 5456 struct alc_spec *spec = codec->spec; 5457 5458 if (action == HDA_FIXUP_ACT_PRE_PROBE) { 5459 spec->gpio_mask |= 0x04; 5460 spec->gpio_dir |= 0x04; 5461 /* set data bit low */ 5462 } 5463 } 5464 5465 static void alc233_alc662_fixup_lenovo_dual_codecs(struct hda_codec *codec, 5466 const struct hda_fixup *fix, 5467 int action) 5468 { 5469 alc_fixup_dual_codecs(codec, fix, action); 5470 switch (action) { 5471 case HDA_FIXUP_ACT_PRE_PROBE: 5472 /* override card longname to provide a unique UCM profile */ 5473 strcpy(codec->card->longname, "HDAudio-Lenovo-DualCodecs"); 5474 break; 5475 case HDA_FIXUP_ACT_BUILD: 5476 /* rename Capture controls depending on the codec */ 5477 rename_ctl(codec, "Capture Volume", 5478 codec->addr == 0 ? 5479 "Rear-Panel Capture Volume" : 5480 "Front-Panel Capture Volume"); 5481 rename_ctl(codec, "Capture Switch", 5482 codec->addr == 0 ? 5483 "Rear-Panel Capture Switch" : 5484 "Front-Panel Capture Switch"); 5485 break; 5486 } 5487 } 5488 5489 /* Forcibly assign NID 0x03 to HP/LO while NID 0x02 to SPK for EQ */ 5490 static void alc274_fixup_bind_dacs(struct hda_codec *codec, 5491 const struct hda_fixup *fix, int action) 5492 { 5493 struct alc_spec *spec = codec->spec; 5494 static hda_nid_t preferred_pairs[] = { 5495 0x21, 0x03, 0x1b, 0x03, 0x16, 0x02, 5496 0 5497 }; 5498 5499 if (action != HDA_FIXUP_ACT_PRE_PROBE) 5500 return; 5501 5502 spec->gen.preferred_dacs = preferred_pairs; 5503 spec->gen.auto_mute_via_amp = 1; 5504 codec->power_save_node = 0; 5505 } 5506 5507 /* The DAC of NID 0x3 will introduce click/pop noise on headphones, so invalidate it */ 5508 static void alc285_fixup_invalidate_dacs(struct hda_codec *codec, 5509 const struct hda_fixup *fix, int action) 5510 { 5511 if (action != HDA_FIXUP_ACT_PRE_PROBE) 5512 return; 5513 5514 snd_hda_override_wcaps(codec, 0x03, 0); 5515 } 5516 5517 static const struct hda_jack_keymap alc_headset_btn_keymap[] = { 5518 { SND_JACK_BTN_0, KEY_PLAYPAUSE }, 5519 { SND_JACK_BTN_1, KEY_VOICECOMMAND }, 5520 { SND_JACK_BTN_2, KEY_VOLUMEUP }, 5521 { SND_JACK_BTN_3, KEY_VOLUMEDOWN }, 5522 {} 5523 }; 5524 5525 static void alc_headset_btn_callback(struct hda_codec *codec, 5526 struct hda_jack_callback *jack) 5527 { 5528 int report = 0; 5529 5530 if (jack->unsol_res & (7 << 13)) 5531 report |= SND_JACK_BTN_0; 5532 5533 if (jack->unsol_res & (1 << 16 | 3 << 8)) 5534 report |= SND_JACK_BTN_1; 5535 5536 /* Volume up key */ 5537 if (jack->unsol_res & (7 << 23)) 5538 report |= SND_JACK_BTN_2; 5539 5540 /* Volume down key */ 5541 if (jack->unsol_res & (7 << 10)) 5542 report |= SND_JACK_BTN_3; 5543 5544 jack->jack->button_state = report; 5545 } 5546 5547 static void alc_fixup_headset_jack(struct hda_codec *codec, 5548 const struct hda_fixup *fix, int action) 5549 { 5550 5551 switch (action) { 5552 case HDA_FIXUP_ACT_PRE_PROBE: 5553 snd_hda_jack_detect_enable_callback(codec, 0x55, 5554 alc_headset_btn_callback); 5555 snd_hda_jack_add_kctl(codec, 0x55, "Headset Jack", false, 5556 SND_JACK_HEADSET, alc_headset_btn_keymap); 5557 break; 5558 case HDA_FIXUP_ACT_INIT: 5559 switch (codec->core.vendor_id) { 5560 case 0x10ec0225: 5561 case 0x10ec0295: 5562 case 0x10ec0299: 5563 alc_write_coef_idx(codec, 0x48, 0xd011); 5564 alc_update_coef_idx(codec, 0x49, 0x007f, 0x0045); 5565 alc_update_coef_idx(codec, 0x44, 0x007f << 8, 0x0045 << 8); 5566 break; 5567 case 0x10ec0236: 5568 case 0x10ec0256: 5569 alc_write_coef_idx(codec, 0x48, 0xd011); 5570 alc_update_coef_idx(codec, 0x49, 0x007f, 0x0045); 5571 break; 5572 } 5573 break; 5574 } 5575 } 5576 5577 static void alc295_fixup_chromebook(struct hda_codec *codec, 5578 const struct hda_fixup *fix, int action) 5579 { 5580 struct alc_spec *spec = codec->spec; 5581 5582 switch (action) { 5583 case HDA_FIXUP_ACT_PRE_PROBE: 5584 spec->ultra_low_power = true; 5585 break; 5586 case HDA_FIXUP_ACT_INIT: 5587 switch (codec->core.vendor_id) { 5588 case 0x10ec0295: 5589 alc_update_coef_idx(codec, 0x4a, 0x8000, 1 << 15); /* Reset HP JD */ 5590 alc_update_coef_idx(codec, 0x4a, 0x8000, 0 << 15); 5591 break; 5592 case 0x10ec0236: 5593 alc_update_coef_idx(codec, 0x1b, 0x8000, 1 << 15); /* Reset HP JD */ 5594 alc_update_coef_idx(codec, 0x1b, 0x8000, 0 << 15); 5595 break; 5596 } 5597 break; 5598 } 5599 } 5600 5601 static void alc_fixup_disable_mic_vref(struct hda_codec *codec, 5602 const struct hda_fixup *fix, int action) 5603 { 5604 if (action == HDA_FIXUP_ACT_PRE_PROBE) 5605 snd_hda_codec_set_pin_target(codec, 0x19, PIN_VREFHIZ); 5606 } 5607 5608 /* for hda_fixup_thinkpad_acpi() */ 5609 #include "thinkpad_helper.c" 5610 5611 static void alc_fixup_thinkpad_acpi(struct hda_codec *codec, 5612 const struct hda_fixup *fix, int action) 5613 { 5614 alc_fixup_no_shutup(codec, fix, action); /* reduce click noise */ 5615 hda_fixup_thinkpad_acpi(codec, fix, action); 5616 } 5617 5618 /* for alc295_fixup_hp_top_speakers */ 5619 #include "hp_x360_helper.c" 5620 5621 enum { 5622 ALC269_FIXUP_SONY_VAIO, 5623 ALC275_FIXUP_SONY_VAIO_GPIO2, 5624 ALC269_FIXUP_DELL_M101Z, 5625 ALC269_FIXUP_SKU_IGNORE, 5626 ALC269_FIXUP_ASUS_G73JW, 5627 ALC269_FIXUP_LENOVO_EAPD, 5628 ALC275_FIXUP_SONY_HWEQ, 5629 ALC275_FIXUP_SONY_DISABLE_AAMIX, 5630 ALC271_FIXUP_DMIC, 5631 ALC269_FIXUP_PCM_44K, 5632 ALC269_FIXUP_STEREO_DMIC, 5633 ALC269_FIXUP_HEADSET_MIC, 5634 ALC269_FIXUP_QUANTA_MUTE, 5635 ALC269_FIXUP_LIFEBOOK, 5636 ALC269_FIXUP_LIFEBOOK_EXTMIC, 5637 ALC269_FIXUP_LIFEBOOK_HP_PIN, 5638 ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT, 5639 ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC, 5640 ALC269_FIXUP_AMIC, 5641 ALC269_FIXUP_DMIC, 5642 ALC269VB_FIXUP_AMIC, 5643 ALC269VB_FIXUP_DMIC, 5644 ALC269_FIXUP_HP_MUTE_LED, 5645 ALC269_FIXUP_HP_MUTE_LED_MIC1, 5646 ALC269_FIXUP_HP_MUTE_LED_MIC2, 5647 ALC269_FIXUP_HP_MUTE_LED_MIC3, 5648 ALC269_FIXUP_HP_GPIO_LED, 5649 ALC269_FIXUP_HP_GPIO_MIC1_LED, 5650 ALC269_FIXUP_HP_LINE1_MIC1_LED, 5651 ALC269_FIXUP_INV_DMIC, 5652 ALC269_FIXUP_LENOVO_DOCK, 5653 ALC269_FIXUP_NO_SHUTUP, 5654 ALC286_FIXUP_SONY_MIC_NO_PRESENCE, 5655 ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT, 5656 ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, 5657 ALC269_FIXUP_DELL2_MIC_NO_PRESENCE, 5658 ALC269_FIXUP_DELL3_MIC_NO_PRESENCE, 5659 ALC269_FIXUP_DELL4_MIC_NO_PRESENCE, 5660 ALC269_FIXUP_HEADSET_MODE, 5661 ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC, 5662 ALC269_FIXUP_ASPIRE_HEADSET_MIC, 5663 ALC269_FIXUP_ASUS_X101_FUNC, 5664 ALC269_FIXUP_ASUS_X101_VERB, 5665 ALC269_FIXUP_ASUS_X101, 5666 ALC271_FIXUP_AMIC_MIC2, 5667 ALC271_FIXUP_HP_GATE_MIC_JACK, 5668 ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572, 5669 ALC269_FIXUP_ACER_AC700, 5670 ALC269_FIXUP_LIMIT_INT_MIC_BOOST, 5671 ALC269VB_FIXUP_ASUS_ZENBOOK, 5672 ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A, 5673 ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED, 5674 ALC269VB_FIXUP_ORDISSIMO_EVE2, 5675 ALC283_FIXUP_CHROME_BOOK, 5676 ALC283_FIXUP_SENSE_COMBO_JACK, 5677 ALC282_FIXUP_ASUS_TX300, 5678 ALC283_FIXUP_INT_MIC, 5679 ALC290_FIXUP_MONO_SPEAKERS, 5680 ALC290_FIXUP_MONO_SPEAKERS_HSJACK, 5681 ALC290_FIXUP_SUBWOOFER, 5682 ALC290_FIXUP_SUBWOOFER_HSJACK, 5683 ALC269_FIXUP_THINKPAD_ACPI, 5684 ALC269_FIXUP_DMIC_THINKPAD_ACPI, 5685 ALC255_FIXUP_ACER_MIC_NO_PRESENCE, 5686 ALC255_FIXUP_ASUS_MIC_NO_PRESENCE, 5687 ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, 5688 ALC255_FIXUP_DELL2_MIC_NO_PRESENCE, 5689 ALC255_FIXUP_HEADSET_MODE, 5690 ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC, 5691 ALC293_FIXUP_DELL1_MIC_NO_PRESENCE, 5692 ALC292_FIXUP_TPT440_DOCK, 5693 ALC292_FIXUP_TPT440, 5694 ALC283_FIXUP_HEADSET_MIC, 5695 ALC255_FIXUP_MIC_MUTE_LED, 5696 ALC282_FIXUP_ASPIRE_V5_PINS, 5697 ALC280_FIXUP_HP_GPIO4, 5698 ALC286_FIXUP_HP_GPIO_LED, 5699 ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY, 5700 ALC280_FIXUP_HP_DOCK_PINS, 5701 ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED, 5702 ALC280_FIXUP_HP_9480M, 5703 ALC288_FIXUP_DELL_HEADSET_MODE, 5704 ALC288_FIXUP_DELL1_MIC_NO_PRESENCE, 5705 ALC288_FIXUP_DELL_XPS_13, 5706 ALC288_FIXUP_DISABLE_AAMIX, 5707 ALC292_FIXUP_DELL_E7X, 5708 ALC292_FIXUP_DISABLE_AAMIX, 5709 ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK, 5710 ALC298_FIXUP_DELL1_MIC_NO_PRESENCE, 5711 ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE, 5712 ALC275_FIXUP_DELL_XPS, 5713 ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE, 5714 ALC293_FIXUP_LENOVO_SPK_NOISE, 5715 ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY, 5716 ALC255_FIXUP_DELL_SPK_NOISE, 5717 ALC225_FIXUP_DISABLE_MIC_VREF, 5718 ALC225_FIXUP_DELL1_MIC_NO_PRESENCE, 5719 ALC295_FIXUP_DISABLE_DAC3, 5720 ALC280_FIXUP_HP_HEADSET_MIC, 5721 ALC221_FIXUP_HP_FRONT_MIC, 5722 ALC292_FIXUP_TPT460, 5723 ALC298_FIXUP_SPK_VOLUME, 5724 ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER, 5725 ALC269_FIXUP_ATIV_BOOK_8, 5726 ALC221_FIXUP_HP_MIC_NO_PRESENCE, 5727 ALC256_FIXUP_ASUS_HEADSET_MODE, 5728 ALC256_FIXUP_ASUS_MIC, 5729 ALC256_FIXUP_ASUS_AIO_GPIO2, 5730 ALC233_FIXUP_ASUS_MIC_NO_PRESENCE, 5731 ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE, 5732 ALC233_FIXUP_LENOVO_MULTI_CODECS, 5733 ALC233_FIXUP_ACER_HEADSET_MIC, 5734 ALC294_FIXUP_LENOVO_MIC_LOCATION, 5735 ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE, 5736 ALC700_FIXUP_INTEL_REFERENCE, 5737 ALC274_FIXUP_DELL_BIND_DACS, 5738 ALC274_FIXUP_DELL_AIO_LINEOUT_VERB, 5739 ALC298_FIXUP_TPT470_DOCK, 5740 ALC255_FIXUP_DUMMY_LINEOUT_VERB, 5741 ALC255_FIXUP_DELL_HEADSET_MIC, 5742 ALC256_FIXUP_HUAWEI_MACH_WX9_PINS, 5743 ALC295_FIXUP_HP_X360, 5744 ALC221_FIXUP_HP_HEADSET_MIC, 5745 ALC285_FIXUP_LENOVO_HEADPHONE_NOISE, 5746 ALC295_FIXUP_HP_AUTO_MUTE, 5747 ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE, 5748 ALC294_FIXUP_ASUS_MIC, 5749 ALC294_FIXUP_ASUS_HEADSET_MIC, 5750 ALC294_FIXUP_ASUS_SPK, 5751 ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE, 5752 ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE, 5753 ALC255_FIXUP_ACER_HEADSET_MIC, 5754 ALC295_FIXUP_CHROME_BOOK, 5755 ALC225_FIXUP_HEADSET_JACK, 5756 ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE, 5757 ALC225_FIXUP_WYSE_AUTO_MUTE, 5758 ALC225_FIXUP_WYSE_DISABLE_MIC_VREF, 5759 ALC286_FIXUP_ACER_AIO_HEADSET_MIC, 5760 ALC256_FIXUP_ASUS_MIC_NO_PRESENCE, 5761 ALC299_FIXUP_PREDATOR_SPK, 5762 }; 5763 5764 static const struct hda_fixup alc269_fixups[] = { 5765 [ALC269_FIXUP_SONY_VAIO] = { 5766 .type = HDA_FIXUP_PINCTLS, 5767 .v.pins = (const struct hda_pintbl[]) { 5768 {0x19, PIN_VREFGRD}, 5769 {} 5770 } 5771 }, 5772 [ALC275_FIXUP_SONY_VAIO_GPIO2] = { 5773 .type = HDA_FIXUP_FUNC, 5774 .v.func = alc275_fixup_gpio4_off, 5775 .chained = true, 5776 .chain_id = ALC269_FIXUP_SONY_VAIO 5777 }, 5778 [ALC269_FIXUP_DELL_M101Z] = { 5779 .type = HDA_FIXUP_VERBS, 5780 .v.verbs = (const struct hda_verb[]) { 5781 /* Enables internal speaker */ 5782 {0x20, AC_VERB_SET_COEF_INDEX, 13}, 5783 {0x20, AC_VERB_SET_PROC_COEF, 0x4040}, 5784 {} 5785 } 5786 }, 5787 [ALC269_FIXUP_SKU_IGNORE] = { 5788 .type = HDA_FIXUP_FUNC, 5789 .v.func = alc_fixup_sku_ignore, 5790 }, 5791 [ALC269_FIXUP_ASUS_G73JW] = { 5792 .type = HDA_FIXUP_PINS, 5793 .v.pins = (const struct hda_pintbl[]) { 5794 { 0x17, 0x99130111 }, /* subwoofer */ 5795 { } 5796 } 5797 }, 5798 [ALC269_FIXUP_LENOVO_EAPD] = { 5799 .type = HDA_FIXUP_VERBS, 5800 .v.verbs = (const struct hda_verb[]) { 5801 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0}, 5802 {} 5803 } 5804 }, 5805 [ALC275_FIXUP_SONY_HWEQ] = { 5806 .type = HDA_FIXUP_FUNC, 5807 .v.func = alc269_fixup_hweq, 5808 .chained = true, 5809 .chain_id = ALC275_FIXUP_SONY_VAIO_GPIO2 5810 }, 5811 [ALC275_FIXUP_SONY_DISABLE_AAMIX] = { 5812 .type = HDA_FIXUP_FUNC, 5813 .v.func = alc_fixup_disable_aamix, 5814 .chained = true, 5815 .chain_id = ALC269_FIXUP_SONY_VAIO 5816 }, 5817 [ALC271_FIXUP_DMIC] = { 5818 .type = HDA_FIXUP_FUNC, 5819 .v.func = alc271_fixup_dmic, 5820 }, 5821 [ALC269_FIXUP_PCM_44K] = { 5822 .type = HDA_FIXUP_FUNC, 5823 .v.func = alc269_fixup_pcm_44k, 5824 .chained = true, 5825 .chain_id = ALC269_FIXUP_QUANTA_MUTE 5826 }, 5827 [ALC269_FIXUP_STEREO_DMIC] = { 5828 .type = HDA_FIXUP_FUNC, 5829 .v.func = alc269_fixup_stereo_dmic, 5830 }, 5831 [ALC269_FIXUP_HEADSET_MIC] = { 5832 .type = HDA_FIXUP_FUNC, 5833 .v.func = alc269_fixup_headset_mic, 5834 }, 5835 [ALC269_FIXUP_QUANTA_MUTE] = { 5836 .type = HDA_FIXUP_FUNC, 5837 .v.func = alc269_fixup_quanta_mute, 5838 }, 5839 [ALC269_FIXUP_LIFEBOOK] = { 5840 .type = HDA_FIXUP_PINS, 5841 .v.pins = (const struct hda_pintbl[]) { 5842 { 0x1a, 0x2101103f }, /* dock line-out */ 5843 { 0x1b, 0x23a11040 }, /* dock mic-in */ 5844 { } 5845 }, 5846 .chained = true, 5847 .chain_id = ALC269_FIXUP_QUANTA_MUTE 5848 }, 5849 [ALC269_FIXUP_LIFEBOOK_EXTMIC] = { 5850 .type = HDA_FIXUP_PINS, 5851 .v.pins = (const struct hda_pintbl[]) { 5852 { 0x19, 0x01a1903c }, /* headset mic, with jack detect */ 5853 { } 5854 }, 5855 }, 5856 [ALC269_FIXUP_LIFEBOOK_HP_PIN] = { 5857 .type = HDA_FIXUP_PINS, 5858 .v.pins = (const struct hda_pintbl[]) { 5859 { 0x21, 0x0221102f }, /* HP out */ 5860 { } 5861 }, 5862 }, 5863 [ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT] = { 5864 .type = HDA_FIXUP_FUNC, 5865 .v.func = alc269_fixup_pincfg_no_hp_to_lineout, 5866 }, 5867 [ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC] = { 5868 .type = HDA_FIXUP_FUNC, 5869 .v.func = alc269_fixup_pincfg_U7x7_headset_mic, 5870 }, 5871 [ALC269_FIXUP_AMIC] = { 5872 .type = HDA_FIXUP_PINS, 5873 .v.pins = (const struct hda_pintbl[]) { 5874 { 0x14, 0x99130110 }, /* speaker */ 5875 { 0x15, 0x0121401f }, /* HP out */ 5876 { 0x18, 0x01a19c20 }, /* mic */ 5877 { 0x19, 0x99a3092f }, /* int-mic */ 5878 { } 5879 }, 5880 }, 5881 [ALC269_FIXUP_DMIC] = { 5882 .type = HDA_FIXUP_PINS, 5883 .v.pins = (const struct hda_pintbl[]) { 5884 { 0x12, 0x99a3092f }, /* int-mic */ 5885 { 0x14, 0x99130110 }, /* speaker */ 5886 { 0x15, 0x0121401f }, /* HP out */ 5887 { 0x18, 0x01a19c20 }, /* mic */ 5888 { } 5889 }, 5890 }, 5891 [ALC269VB_FIXUP_AMIC] = { 5892 .type = HDA_FIXUP_PINS, 5893 .v.pins = (const struct hda_pintbl[]) { 5894 { 0x14, 0x99130110 }, /* speaker */ 5895 { 0x18, 0x01a19c20 }, /* mic */ 5896 { 0x19, 0x99a3092f }, /* int-mic */ 5897 { 0x21, 0x0121401f }, /* HP out */ 5898 { } 5899 }, 5900 }, 5901 [ALC269VB_FIXUP_DMIC] = { 5902 .type = HDA_FIXUP_PINS, 5903 .v.pins = (const struct hda_pintbl[]) { 5904 { 0x12, 0x99a3092f }, /* int-mic */ 5905 { 0x14, 0x99130110 }, /* speaker */ 5906 { 0x18, 0x01a19c20 }, /* mic */ 5907 { 0x21, 0x0121401f }, /* HP out */ 5908 { } 5909 }, 5910 }, 5911 [ALC269_FIXUP_HP_MUTE_LED] = { 5912 .type = HDA_FIXUP_FUNC, 5913 .v.func = alc269_fixup_hp_mute_led, 5914 }, 5915 [ALC269_FIXUP_HP_MUTE_LED_MIC1] = { 5916 .type = HDA_FIXUP_FUNC, 5917 .v.func = alc269_fixup_hp_mute_led_mic1, 5918 }, 5919 [ALC269_FIXUP_HP_MUTE_LED_MIC2] = { 5920 .type = HDA_FIXUP_FUNC, 5921 .v.func = alc269_fixup_hp_mute_led_mic2, 5922 }, 5923 [ALC269_FIXUP_HP_MUTE_LED_MIC3] = { 5924 .type = HDA_FIXUP_FUNC, 5925 .v.func = alc269_fixup_hp_mute_led_mic3, 5926 .chained = true, 5927 .chain_id = ALC295_FIXUP_HP_AUTO_MUTE 5928 }, 5929 [ALC269_FIXUP_HP_GPIO_LED] = { 5930 .type = HDA_FIXUP_FUNC, 5931 .v.func = alc269_fixup_hp_gpio_led, 5932 }, 5933 [ALC269_FIXUP_HP_GPIO_MIC1_LED] = { 5934 .type = HDA_FIXUP_FUNC, 5935 .v.func = alc269_fixup_hp_gpio_mic1_led, 5936 }, 5937 [ALC269_FIXUP_HP_LINE1_MIC1_LED] = { 5938 .type = HDA_FIXUP_FUNC, 5939 .v.func = alc269_fixup_hp_line1_mic1_led, 5940 }, 5941 [ALC269_FIXUP_INV_DMIC] = { 5942 .type = HDA_FIXUP_FUNC, 5943 .v.func = alc_fixup_inv_dmic, 5944 }, 5945 [ALC269_FIXUP_NO_SHUTUP] = { 5946 .type = HDA_FIXUP_FUNC, 5947 .v.func = alc_fixup_no_shutup, 5948 }, 5949 [ALC269_FIXUP_LENOVO_DOCK] = { 5950 .type = HDA_FIXUP_PINS, 5951 .v.pins = (const struct hda_pintbl[]) { 5952 { 0x19, 0x23a11040 }, /* dock mic */ 5953 { 0x1b, 0x2121103f }, /* dock headphone */ 5954 { } 5955 }, 5956 .chained = true, 5957 .chain_id = ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT 5958 }, 5959 [ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT] = { 5960 .type = HDA_FIXUP_FUNC, 5961 .v.func = alc269_fixup_pincfg_no_hp_to_lineout, 5962 .chained = true, 5963 .chain_id = ALC269_FIXUP_THINKPAD_ACPI, 5964 }, 5965 [ALC269_FIXUP_DELL1_MIC_NO_PRESENCE] = { 5966 .type = HDA_FIXUP_PINS, 5967 .v.pins = (const struct hda_pintbl[]) { 5968 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */ 5969 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */ 5970 { } 5971 }, 5972 .chained = true, 5973 .chain_id = ALC269_FIXUP_HEADSET_MODE 5974 }, 5975 [ALC269_FIXUP_DELL2_MIC_NO_PRESENCE] = { 5976 .type = HDA_FIXUP_PINS, 5977 .v.pins = (const struct hda_pintbl[]) { 5978 { 0x16, 0x21014020 }, /* dock line out */ 5979 { 0x19, 0x21a19030 }, /* dock mic */ 5980 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */ 5981 { } 5982 }, 5983 .chained = true, 5984 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC 5985 }, 5986 [ALC269_FIXUP_DELL3_MIC_NO_PRESENCE] = { 5987 .type = HDA_FIXUP_PINS, 5988 .v.pins = (const struct hda_pintbl[]) { 5989 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */ 5990 { } 5991 }, 5992 .chained = true, 5993 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC 5994 }, 5995 [ALC269_FIXUP_DELL4_MIC_NO_PRESENCE] = { 5996 .type = HDA_FIXUP_PINS, 5997 .v.pins = (const struct hda_pintbl[]) { 5998 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */ 5999 { 0x1b, 0x01a1913d }, /* use as headphone mic, without its own jack detect */ 6000 { } 6001 }, 6002 .chained = true, 6003 .chain_id = ALC269_FIXUP_HEADSET_MODE 6004 }, 6005 [ALC269_FIXUP_HEADSET_MODE] = { 6006 .type = HDA_FIXUP_FUNC, 6007 .v.func = alc_fixup_headset_mode, 6008 .chained = true, 6009 .chain_id = ALC255_FIXUP_MIC_MUTE_LED 6010 }, 6011 [ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC] = { 6012 .type = HDA_FIXUP_FUNC, 6013 .v.func = alc_fixup_headset_mode_no_hp_mic, 6014 }, 6015 [ALC269_FIXUP_ASPIRE_HEADSET_MIC] = { 6016 .type = HDA_FIXUP_PINS, 6017 .v.pins = (const struct hda_pintbl[]) { 6018 { 0x19, 0x01a1913c }, /* headset mic w/o jack detect */ 6019 { } 6020 }, 6021 .chained = true, 6022 .chain_id = ALC269_FIXUP_HEADSET_MODE, 6023 }, 6024 [ALC286_FIXUP_SONY_MIC_NO_PRESENCE] = { 6025 .type = HDA_FIXUP_PINS, 6026 .v.pins = (const struct hda_pintbl[]) { 6027 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */ 6028 { } 6029 }, 6030 .chained = true, 6031 .chain_id = ALC269_FIXUP_HEADSET_MIC 6032 }, 6033 [ALC256_FIXUP_HUAWEI_MACH_WX9_PINS] = { 6034 .type = HDA_FIXUP_PINS, 6035 .v.pins = (const struct hda_pintbl[]) { 6036 {0x12, 0x90a60130}, 6037 {0x13, 0x40000000}, 6038 {0x14, 0x90170110}, 6039 {0x18, 0x411111f0}, 6040 {0x19, 0x04a11040}, 6041 {0x1a, 0x411111f0}, 6042 {0x1b, 0x90170112}, 6043 {0x1d, 0x40759a05}, 6044 {0x1e, 0x411111f0}, 6045 {0x21, 0x04211020}, 6046 { } 6047 }, 6048 .chained = true, 6049 .chain_id = ALC255_FIXUP_MIC_MUTE_LED 6050 }, 6051 [ALC269_FIXUP_ASUS_X101_FUNC] = { 6052 .type = HDA_FIXUP_FUNC, 6053 .v.func = alc269_fixup_x101_headset_mic, 6054 }, 6055 [ALC269_FIXUP_ASUS_X101_VERB] = { 6056 .type = HDA_FIXUP_VERBS, 6057 .v.verbs = (const struct hda_verb[]) { 6058 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, 6059 {0x20, AC_VERB_SET_COEF_INDEX, 0x08}, 6060 {0x20, AC_VERB_SET_PROC_COEF, 0x0310}, 6061 { } 6062 }, 6063 .chained = true, 6064 .chain_id = ALC269_FIXUP_ASUS_X101_FUNC 6065 }, 6066 [ALC269_FIXUP_ASUS_X101] = { 6067 .type = HDA_FIXUP_PINS, 6068 .v.pins = (const struct hda_pintbl[]) { 6069 { 0x18, 0x04a1182c }, /* Headset mic */ 6070 { } 6071 }, 6072 .chained = true, 6073 .chain_id = ALC269_FIXUP_ASUS_X101_VERB 6074 }, 6075 [ALC271_FIXUP_AMIC_MIC2] = { 6076 .type = HDA_FIXUP_PINS, 6077 .v.pins = (const struct hda_pintbl[]) { 6078 { 0x14, 0x99130110 }, /* speaker */ 6079 { 0x19, 0x01a19c20 }, /* mic */ 6080 { 0x1b, 0x99a7012f }, /* int-mic */ 6081 { 0x21, 0x0121401f }, /* HP out */ 6082 { } 6083 }, 6084 }, 6085 [ALC271_FIXUP_HP_GATE_MIC_JACK] = { 6086 .type = HDA_FIXUP_FUNC, 6087 .v.func = alc271_hp_gate_mic_jack, 6088 .chained = true, 6089 .chain_id = ALC271_FIXUP_AMIC_MIC2, 6090 }, 6091 [ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572] = { 6092 .type = HDA_FIXUP_FUNC, 6093 .v.func = alc269_fixup_limit_int_mic_boost, 6094 .chained = true, 6095 .chain_id = ALC271_FIXUP_HP_GATE_MIC_JACK, 6096 }, 6097 [ALC269_FIXUP_ACER_AC700] = { 6098 .type = HDA_FIXUP_PINS, 6099 .v.pins = (const struct hda_pintbl[]) { 6100 { 0x12, 0x99a3092f }, /* int-mic */ 6101 { 0x14, 0x99130110 }, /* speaker */ 6102 { 0x18, 0x03a11c20 }, /* mic */ 6103 { 0x1e, 0x0346101e }, /* SPDIF1 */ 6104 { 0x21, 0x0321101f }, /* HP out */ 6105 { } 6106 }, 6107 .chained = true, 6108 .chain_id = ALC271_FIXUP_DMIC, 6109 }, 6110 [ALC269_FIXUP_LIMIT_INT_MIC_BOOST] = { 6111 .type = HDA_FIXUP_FUNC, 6112 .v.func = alc269_fixup_limit_int_mic_boost, 6113 .chained = true, 6114 .chain_id = ALC269_FIXUP_THINKPAD_ACPI, 6115 }, 6116 [ALC269VB_FIXUP_ASUS_ZENBOOK] = { 6117 .type = HDA_FIXUP_FUNC, 6118 .v.func = alc269_fixup_limit_int_mic_boost, 6119 .chained = true, 6120 .chain_id = ALC269VB_FIXUP_DMIC, 6121 }, 6122 [ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A] = { 6123 .type = HDA_FIXUP_VERBS, 6124 .v.verbs = (const struct hda_verb[]) { 6125 /* class-D output amp +5dB */ 6126 { 0x20, AC_VERB_SET_COEF_INDEX, 0x12 }, 6127 { 0x20, AC_VERB_SET_PROC_COEF, 0x2800 }, 6128 {} 6129 }, 6130 .chained = true, 6131 .chain_id = ALC269VB_FIXUP_ASUS_ZENBOOK, 6132 }, 6133 [ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED] = { 6134 .type = HDA_FIXUP_FUNC, 6135 .v.func = alc269_fixup_limit_int_mic_boost, 6136 .chained = true, 6137 .chain_id = ALC269_FIXUP_HP_MUTE_LED_MIC1, 6138 }, 6139 [ALC269VB_FIXUP_ORDISSIMO_EVE2] = { 6140 .type = HDA_FIXUP_PINS, 6141 .v.pins = (const struct hda_pintbl[]) { 6142 { 0x12, 0x99a3092f }, /* int-mic */ 6143 { 0x18, 0x03a11d20 }, /* mic */ 6144 { 0x19, 0x411111f0 }, /* Unused bogus pin */ 6145 { } 6146 }, 6147 }, 6148 [ALC283_FIXUP_CHROME_BOOK] = { 6149 .type = HDA_FIXUP_FUNC, 6150 .v.func = alc283_fixup_chromebook, 6151 }, 6152 [ALC283_FIXUP_SENSE_COMBO_JACK] = { 6153 .type = HDA_FIXUP_FUNC, 6154 .v.func = alc283_fixup_sense_combo_jack, 6155 .chained = true, 6156 .chain_id = ALC283_FIXUP_CHROME_BOOK, 6157 }, 6158 [ALC282_FIXUP_ASUS_TX300] = { 6159 .type = HDA_FIXUP_FUNC, 6160 .v.func = alc282_fixup_asus_tx300, 6161 }, 6162 [ALC283_FIXUP_INT_MIC] = { 6163 .type = HDA_FIXUP_VERBS, 6164 .v.verbs = (const struct hda_verb[]) { 6165 {0x20, AC_VERB_SET_COEF_INDEX, 0x1a}, 6166 {0x20, AC_VERB_SET_PROC_COEF, 0x0011}, 6167 { } 6168 }, 6169 .chained = true, 6170 .chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST 6171 }, 6172 [ALC290_FIXUP_SUBWOOFER_HSJACK] = { 6173 .type = HDA_FIXUP_PINS, 6174 .v.pins = (const struct hda_pintbl[]) { 6175 { 0x17, 0x90170112 }, /* subwoofer */ 6176 { } 6177 }, 6178 .chained = true, 6179 .chain_id = ALC290_FIXUP_MONO_SPEAKERS_HSJACK, 6180 }, 6181 [ALC290_FIXUP_SUBWOOFER] = { 6182 .type = HDA_FIXUP_PINS, 6183 .v.pins = (const struct hda_pintbl[]) { 6184 { 0x17, 0x90170112 }, /* subwoofer */ 6185 { } 6186 }, 6187 .chained = true, 6188 .chain_id = ALC290_FIXUP_MONO_SPEAKERS, 6189 }, 6190 [ALC290_FIXUP_MONO_SPEAKERS] = { 6191 .type = HDA_FIXUP_FUNC, 6192 .v.func = alc290_fixup_mono_speakers, 6193 }, 6194 [ALC290_FIXUP_MONO_SPEAKERS_HSJACK] = { 6195 .type = HDA_FIXUP_FUNC, 6196 .v.func = alc290_fixup_mono_speakers, 6197 .chained = true, 6198 .chain_id = ALC269_FIXUP_DELL3_MIC_NO_PRESENCE, 6199 }, 6200 [ALC269_FIXUP_THINKPAD_ACPI] = { 6201 .type = HDA_FIXUP_FUNC, 6202 .v.func = alc_fixup_thinkpad_acpi, 6203 .chained = true, 6204 .chain_id = ALC269_FIXUP_SKU_IGNORE, 6205 }, 6206 [ALC269_FIXUP_DMIC_THINKPAD_ACPI] = { 6207 .type = HDA_FIXUP_FUNC, 6208 .v.func = alc_fixup_inv_dmic, 6209 .chained = true, 6210 .chain_id = ALC269_FIXUP_THINKPAD_ACPI, 6211 }, 6212 [ALC255_FIXUP_ACER_MIC_NO_PRESENCE] = { 6213 .type = HDA_FIXUP_VERBS, 6214 .v.verbs = (const struct hda_verb[]) { 6215 /* Enable the Mic */ 6216 { 0x20, AC_VERB_SET_COEF_INDEX, 0x45 }, 6217 { 0x20, AC_VERB_SET_PROC_COEF, 0x5089 }, 6218 {} 6219 }, 6220 .chained = true, 6221 .chain_id = ALC269_FIXUP_LIFEBOOK_EXTMIC 6222 }, 6223 [ALC255_FIXUP_ASUS_MIC_NO_PRESENCE] = { 6224 .type = HDA_FIXUP_PINS, 6225 .v.pins = (const struct hda_pintbl[]) { 6226 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */ 6227 { } 6228 }, 6229 .chained = true, 6230 .chain_id = ALC255_FIXUP_HEADSET_MODE 6231 }, 6232 [ALC255_FIXUP_DELL1_MIC_NO_PRESENCE] = { 6233 .type = HDA_FIXUP_PINS, 6234 .v.pins = (const struct hda_pintbl[]) { 6235 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */ 6236 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */ 6237 { } 6238 }, 6239 .chained = true, 6240 .chain_id = ALC255_FIXUP_HEADSET_MODE 6241 }, 6242 [ALC255_FIXUP_DELL2_MIC_NO_PRESENCE] = { 6243 .type = HDA_FIXUP_PINS, 6244 .v.pins = (const struct hda_pintbl[]) { 6245 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */ 6246 { } 6247 }, 6248 .chained = true, 6249 .chain_id = ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC 6250 }, 6251 [ALC255_FIXUP_HEADSET_MODE] = { 6252 .type = HDA_FIXUP_FUNC, 6253 .v.func = alc_fixup_headset_mode_alc255, 6254 .chained = true, 6255 .chain_id = ALC255_FIXUP_MIC_MUTE_LED 6256 }, 6257 [ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC] = { 6258 .type = HDA_FIXUP_FUNC, 6259 .v.func = alc_fixup_headset_mode_alc255_no_hp_mic, 6260 }, 6261 [ALC293_FIXUP_DELL1_MIC_NO_PRESENCE] = { 6262 .type = HDA_FIXUP_PINS, 6263 .v.pins = (const struct hda_pintbl[]) { 6264 { 0x18, 0x01a1913d }, /* use as headphone mic, without its own jack detect */ 6265 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */ 6266 { } 6267 }, 6268 .chained = true, 6269 .chain_id = ALC269_FIXUP_HEADSET_MODE 6270 }, 6271 [ALC292_FIXUP_TPT440_DOCK] = { 6272 .type = HDA_FIXUP_FUNC, 6273 .v.func = alc_fixup_tpt440_dock, 6274 .chained = true, 6275 .chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST 6276 }, 6277 [ALC292_FIXUP_TPT440] = { 6278 .type = HDA_FIXUP_FUNC, 6279 .v.func = alc_fixup_disable_aamix, 6280 .chained = true, 6281 .chain_id = ALC292_FIXUP_TPT440_DOCK, 6282 }, 6283 [ALC283_FIXUP_HEADSET_MIC] = { 6284 .type = HDA_FIXUP_PINS, 6285 .v.pins = (const struct hda_pintbl[]) { 6286 { 0x19, 0x04a110f0 }, 6287 { }, 6288 }, 6289 }, 6290 [ALC255_FIXUP_MIC_MUTE_LED] = { 6291 .type = HDA_FIXUP_FUNC, 6292 .v.func = snd_hda_gen_fixup_micmute_led, 6293 }, 6294 [ALC282_FIXUP_ASPIRE_V5_PINS] = { 6295 .type = HDA_FIXUP_PINS, 6296 .v.pins = (const struct hda_pintbl[]) { 6297 { 0x12, 0x90a60130 }, 6298 { 0x14, 0x90170110 }, 6299 { 0x17, 0x40000008 }, 6300 { 0x18, 0x411111f0 }, 6301 { 0x19, 0x01a1913c }, 6302 { 0x1a, 0x411111f0 }, 6303 { 0x1b, 0x411111f0 }, 6304 { 0x1d, 0x40f89b2d }, 6305 { 0x1e, 0x411111f0 }, 6306 { 0x21, 0x0321101f }, 6307 { }, 6308 }, 6309 }, 6310 [ALC280_FIXUP_HP_GPIO4] = { 6311 .type = HDA_FIXUP_FUNC, 6312 .v.func = alc280_fixup_hp_gpio4, 6313 }, 6314 [ALC286_FIXUP_HP_GPIO_LED] = { 6315 .type = HDA_FIXUP_FUNC, 6316 .v.func = alc286_fixup_hp_gpio_led, 6317 }, 6318 [ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY] = { 6319 .type = HDA_FIXUP_FUNC, 6320 .v.func = alc280_fixup_hp_gpio2_mic_hotkey, 6321 }, 6322 [ALC280_FIXUP_HP_DOCK_PINS] = { 6323 .type = HDA_FIXUP_PINS, 6324 .v.pins = (const struct hda_pintbl[]) { 6325 { 0x1b, 0x21011020 }, /* line-out */ 6326 { 0x1a, 0x01a1903c }, /* headset mic */ 6327 { 0x18, 0x2181103f }, /* line-in */ 6328 { }, 6329 }, 6330 .chained = true, 6331 .chain_id = ALC280_FIXUP_HP_GPIO4 6332 }, 6333 [ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED] = { 6334 .type = HDA_FIXUP_PINS, 6335 .v.pins = (const struct hda_pintbl[]) { 6336 { 0x1b, 0x21011020 }, /* line-out */ 6337 { 0x18, 0x2181103f }, /* line-in */ 6338 { }, 6339 }, 6340 .chained = true, 6341 .chain_id = ALC269_FIXUP_HP_GPIO_MIC1_LED 6342 }, 6343 [ALC280_FIXUP_HP_9480M] = { 6344 .type = HDA_FIXUP_FUNC, 6345 .v.func = alc280_fixup_hp_9480m, 6346 }, 6347 [ALC288_FIXUP_DELL_HEADSET_MODE] = { 6348 .type = HDA_FIXUP_FUNC, 6349 .v.func = alc_fixup_headset_mode_dell_alc288, 6350 .chained = true, 6351 .chain_id = ALC255_FIXUP_MIC_MUTE_LED 6352 }, 6353 [ALC288_FIXUP_DELL1_MIC_NO_PRESENCE] = { 6354 .type = HDA_FIXUP_PINS, 6355 .v.pins = (const struct hda_pintbl[]) { 6356 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */ 6357 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */ 6358 { } 6359 }, 6360 .chained = true, 6361 .chain_id = ALC288_FIXUP_DELL_HEADSET_MODE 6362 }, 6363 [ALC288_FIXUP_DISABLE_AAMIX] = { 6364 .type = HDA_FIXUP_FUNC, 6365 .v.func = alc_fixup_disable_aamix, 6366 .chained = true, 6367 .chain_id = ALC288_FIXUP_DELL1_MIC_NO_PRESENCE 6368 }, 6369 [ALC288_FIXUP_DELL_XPS_13] = { 6370 .type = HDA_FIXUP_FUNC, 6371 .v.func = alc_fixup_dell_xps13, 6372 .chained = true, 6373 .chain_id = ALC288_FIXUP_DISABLE_AAMIX 6374 }, 6375 [ALC292_FIXUP_DISABLE_AAMIX] = { 6376 .type = HDA_FIXUP_FUNC, 6377 .v.func = alc_fixup_disable_aamix, 6378 .chained = true, 6379 .chain_id = ALC269_FIXUP_DELL2_MIC_NO_PRESENCE 6380 }, 6381 [ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK] = { 6382 .type = HDA_FIXUP_FUNC, 6383 .v.func = alc_fixup_disable_aamix, 6384 .chained = true, 6385 .chain_id = ALC293_FIXUP_DELL1_MIC_NO_PRESENCE 6386 }, 6387 [ALC292_FIXUP_DELL_E7X] = { 6388 .type = HDA_FIXUP_FUNC, 6389 .v.func = alc_fixup_dell_xps13, 6390 .chained = true, 6391 .chain_id = ALC292_FIXUP_DISABLE_AAMIX 6392 }, 6393 [ALC298_FIXUP_DELL1_MIC_NO_PRESENCE] = { 6394 .type = HDA_FIXUP_PINS, 6395 .v.pins = (const struct hda_pintbl[]) { 6396 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */ 6397 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */ 6398 { } 6399 }, 6400 .chained = true, 6401 .chain_id = ALC269_FIXUP_HEADSET_MODE 6402 }, 6403 [ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE] = { 6404 .type = HDA_FIXUP_PINS, 6405 .v.pins = (const struct hda_pintbl[]) { 6406 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */ 6407 { } 6408 }, 6409 .chained = true, 6410 .chain_id = ALC269_FIXUP_HEADSET_MODE 6411 }, 6412 [ALC275_FIXUP_DELL_XPS] = { 6413 .type = HDA_FIXUP_VERBS, 6414 .v.verbs = (const struct hda_verb[]) { 6415 /* Enables internal speaker */ 6416 {0x20, AC_VERB_SET_COEF_INDEX, 0x1f}, 6417 {0x20, AC_VERB_SET_PROC_COEF, 0x00c0}, 6418 {0x20, AC_VERB_SET_COEF_INDEX, 0x30}, 6419 {0x20, AC_VERB_SET_PROC_COEF, 0x00b1}, 6420 {} 6421 } 6422 }, 6423 [ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE] = { 6424 .type = HDA_FIXUP_VERBS, 6425 .v.verbs = (const struct hda_verb[]) { 6426 /* Disable pass-through path for FRONT 14h */ 6427 {0x20, AC_VERB_SET_COEF_INDEX, 0x36}, 6428 {0x20, AC_VERB_SET_PROC_COEF, 0x1737}, 6429 {} 6430 }, 6431 .chained = true, 6432 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE 6433 }, 6434 [ALC293_FIXUP_LENOVO_SPK_NOISE] = { 6435 .type = HDA_FIXUP_FUNC, 6436 .v.func = alc_fixup_disable_aamix, 6437 .chained = true, 6438 .chain_id = ALC269_FIXUP_THINKPAD_ACPI 6439 }, 6440 [ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY] = { 6441 .type = HDA_FIXUP_FUNC, 6442 .v.func = alc233_fixup_lenovo_line2_mic_hotkey, 6443 }, 6444 [ALC255_FIXUP_DELL_SPK_NOISE] = { 6445 .type = HDA_FIXUP_FUNC, 6446 .v.func = alc_fixup_disable_aamix, 6447 .chained = true, 6448 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE 6449 }, 6450 [ALC225_FIXUP_DISABLE_MIC_VREF] = { 6451 .type = HDA_FIXUP_FUNC, 6452 .v.func = alc_fixup_disable_mic_vref, 6453 .chained = true, 6454 .chain_id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE 6455 }, 6456 [ALC225_FIXUP_DELL1_MIC_NO_PRESENCE] = { 6457 .type = HDA_FIXUP_VERBS, 6458 .v.verbs = (const struct hda_verb[]) { 6459 /* Disable pass-through path for FRONT 14h */ 6460 { 0x20, AC_VERB_SET_COEF_INDEX, 0x36 }, 6461 { 0x20, AC_VERB_SET_PROC_COEF, 0x57d7 }, 6462 {} 6463 }, 6464 .chained = true, 6465 .chain_id = ALC225_FIXUP_DISABLE_MIC_VREF 6466 }, 6467 [ALC280_FIXUP_HP_HEADSET_MIC] = { 6468 .type = HDA_FIXUP_FUNC, 6469 .v.func = alc_fixup_disable_aamix, 6470 .chained = true, 6471 .chain_id = ALC269_FIXUP_HEADSET_MIC, 6472 }, 6473 [ALC221_FIXUP_HP_FRONT_MIC] = { 6474 .type = HDA_FIXUP_PINS, 6475 .v.pins = (const struct hda_pintbl[]) { 6476 { 0x19, 0x02a19020 }, /* Front Mic */ 6477 { } 6478 }, 6479 }, 6480 [ALC292_FIXUP_TPT460] = { 6481 .type = HDA_FIXUP_FUNC, 6482 .v.func = alc_fixup_tpt440_dock, 6483 .chained = true, 6484 .chain_id = ALC293_FIXUP_LENOVO_SPK_NOISE, 6485 }, 6486 [ALC298_FIXUP_SPK_VOLUME] = { 6487 .type = HDA_FIXUP_FUNC, 6488 .v.func = alc298_fixup_speaker_volume, 6489 .chained = true, 6490 .chain_id = ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE, 6491 }, 6492 [ALC295_FIXUP_DISABLE_DAC3] = { 6493 .type = HDA_FIXUP_FUNC, 6494 .v.func = alc295_fixup_disable_dac3, 6495 }, 6496 [ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER] = { 6497 .type = HDA_FIXUP_PINS, 6498 .v.pins = (const struct hda_pintbl[]) { 6499 { 0x1b, 0x90170151 }, 6500 { } 6501 }, 6502 .chained = true, 6503 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE 6504 }, 6505 [ALC269_FIXUP_ATIV_BOOK_8] = { 6506 .type = HDA_FIXUP_FUNC, 6507 .v.func = alc_fixup_auto_mute_via_amp, 6508 .chained = true, 6509 .chain_id = ALC269_FIXUP_NO_SHUTUP 6510 }, 6511 [ALC221_FIXUP_HP_MIC_NO_PRESENCE] = { 6512 .type = HDA_FIXUP_PINS, 6513 .v.pins = (const struct hda_pintbl[]) { 6514 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */ 6515 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */ 6516 { } 6517 }, 6518 .chained = true, 6519 .chain_id = ALC269_FIXUP_HEADSET_MODE 6520 }, 6521 [ALC256_FIXUP_ASUS_HEADSET_MODE] = { 6522 .type = HDA_FIXUP_FUNC, 6523 .v.func = alc_fixup_headset_mode, 6524 }, 6525 [ALC256_FIXUP_ASUS_MIC] = { 6526 .type = HDA_FIXUP_PINS, 6527 .v.pins = (const struct hda_pintbl[]) { 6528 { 0x13, 0x90a60160 }, /* use as internal mic */ 6529 { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */ 6530 { } 6531 }, 6532 .chained = true, 6533 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE 6534 }, 6535 [ALC256_FIXUP_ASUS_AIO_GPIO2] = { 6536 .type = HDA_FIXUP_FUNC, 6537 /* Set up GPIO2 for the speaker amp */ 6538 .v.func = alc_fixup_gpio4, 6539 }, 6540 [ALC233_FIXUP_ASUS_MIC_NO_PRESENCE] = { 6541 .type = HDA_FIXUP_PINS, 6542 .v.pins = (const struct hda_pintbl[]) { 6543 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */ 6544 { } 6545 }, 6546 .chained = true, 6547 .chain_id = ALC269_FIXUP_HEADSET_MIC 6548 }, 6549 [ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE] = { 6550 .type = HDA_FIXUP_VERBS, 6551 .v.verbs = (const struct hda_verb[]) { 6552 /* Enables internal speaker */ 6553 {0x20, AC_VERB_SET_COEF_INDEX, 0x40}, 6554 {0x20, AC_VERB_SET_PROC_COEF, 0x8800}, 6555 {} 6556 }, 6557 .chained = true, 6558 .chain_id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE 6559 }, 6560 [ALC233_FIXUP_LENOVO_MULTI_CODECS] = { 6561 .type = HDA_FIXUP_FUNC, 6562 .v.func = alc233_alc662_fixup_lenovo_dual_codecs, 6563 }, 6564 [ALC233_FIXUP_ACER_HEADSET_MIC] = { 6565 .type = HDA_FIXUP_VERBS, 6566 .v.verbs = (const struct hda_verb[]) { 6567 { 0x20, AC_VERB_SET_COEF_INDEX, 0x45 }, 6568 { 0x20, AC_VERB_SET_PROC_COEF, 0x5089 }, 6569 { } 6570 }, 6571 .chained = true, 6572 .chain_id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE 6573 }, 6574 [ALC294_FIXUP_LENOVO_MIC_LOCATION] = { 6575 .type = HDA_FIXUP_PINS, 6576 .v.pins = (const struct hda_pintbl[]) { 6577 /* Change the mic location from front to right, otherwise there are 6578 two front mics with the same name, pulseaudio can't handle them. 6579 This is just a temporary workaround, after applying this fixup, 6580 there will be one "Front Mic" and one "Mic" in this machine. 6581 */ 6582 { 0x1a, 0x04a19040 }, 6583 { } 6584 }, 6585 }, 6586 [ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE] = { 6587 .type = HDA_FIXUP_PINS, 6588 .v.pins = (const struct hda_pintbl[]) { 6589 { 0x16, 0x0101102f }, /* Rear Headset HP */ 6590 { 0x19, 0x02a1913c }, /* use as Front headset mic, without its own jack detect */ 6591 { 0x1a, 0x01a19030 }, /* Rear Headset MIC */ 6592 { 0x1b, 0x02011020 }, 6593 { } 6594 }, 6595 .chained = true, 6596 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC 6597 }, 6598 [ALC700_FIXUP_INTEL_REFERENCE] = { 6599 .type = HDA_FIXUP_VERBS, 6600 .v.verbs = (const struct hda_verb[]) { 6601 /* Enables internal speaker */ 6602 {0x20, AC_VERB_SET_COEF_INDEX, 0x45}, 6603 {0x20, AC_VERB_SET_PROC_COEF, 0x5289}, 6604 {0x20, AC_VERB_SET_COEF_INDEX, 0x4A}, 6605 {0x20, AC_VERB_SET_PROC_COEF, 0x001b}, 6606 {0x58, AC_VERB_SET_COEF_INDEX, 0x00}, 6607 {0x58, AC_VERB_SET_PROC_COEF, 0x3888}, 6608 {0x20, AC_VERB_SET_COEF_INDEX, 0x6f}, 6609 {0x20, AC_VERB_SET_PROC_COEF, 0x2c0b}, 6610 {} 6611 } 6612 }, 6613 [ALC274_FIXUP_DELL_BIND_DACS] = { 6614 .type = HDA_FIXUP_FUNC, 6615 .v.func = alc274_fixup_bind_dacs, 6616 .chained = true, 6617 .chain_id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE 6618 }, 6619 [ALC274_FIXUP_DELL_AIO_LINEOUT_VERB] = { 6620 .type = HDA_FIXUP_PINS, 6621 .v.pins = (const struct hda_pintbl[]) { 6622 { 0x1b, 0x0401102f }, 6623 { } 6624 }, 6625 .chained = true, 6626 .chain_id = ALC274_FIXUP_DELL_BIND_DACS 6627 }, 6628 [ALC298_FIXUP_TPT470_DOCK] = { 6629 .type = HDA_FIXUP_FUNC, 6630 .v.func = alc_fixup_tpt470_dock, 6631 .chained = true, 6632 .chain_id = ALC293_FIXUP_LENOVO_SPK_NOISE 6633 }, 6634 [ALC255_FIXUP_DUMMY_LINEOUT_VERB] = { 6635 .type = HDA_FIXUP_PINS, 6636 .v.pins = (const struct hda_pintbl[]) { 6637 { 0x14, 0x0201101f }, 6638 { } 6639 }, 6640 .chained = true, 6641 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE 6642 }, 6643 [ALC255_FIXUP_DELL_HEADSET_MIC] = { 6644 .type = HDA_FIXUP_PINS, 6645 .v.pins = (const struct hda_pintbl[]) { 6646 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */ 6647 { } 6648 }, 6649 .chained = true, 6650 .chain_id = ALC269_FIXUP_HEADSET_MIC 6651 }, 6652 [ALC295_FIXUP_HP_X360] = { 6653 .type = HDA_FIXUP_FUNC, 6654 .v.func = alc295_fixup_hp_top_speakers, 6655 .chained = true, 6656 .chain_id = ALC269_FIXUP_HP_MUTE_LED_MIC3 6657 }, 6658 [ALC221_FIXUP_HP_HEADSET_MIC] = { 6659 .type = HDA_FIXUP_PINS, 6660 .v.pins = (const struct hda_pintbl[]) { 6661 { 0x19, 0x0181313f}, 6662 { } 6663 }, 6664 .chained = true, 6665 .chain_id = ALC269_FIXUP_HEADSET_MIC 6666 }, 6667 [ALC285_FIXUP_LENOVO_HEADPHONE_NOISE] = { 6668 .type = HDA_FIXUP_FUNC, 6669 .v.func = alc285_fixup_invalidate_dacs, 6670 .chained = true, 6671 .chain_id = ALC269_FIXUP_THINKPAD_ACPI 6672 }, 6673 [ALC295_FIXUP_HP_AUTO_MUTE] = { 6674 .type = HDA_FIXUP_FUNC, 6675 .v.func = alc_fixup_auto_mute_via_amp, 6676 }, 6677 [ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE] = { 6678 .type = HDA_FIXUP_PINS, 6679 .v.pins = (const struct hda_pintbl[]) { 6680 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */ 6681 { } 6682 }, 6683 .chained = true, 6684 .chain_id = ALC269_FIXUP_HEADSET_MIC 6685 }, 6686 [ALC294_FIXUP_ASUS_MIC] = { 6687 .type = HDA_FIXUP_PINS, 6688 .v.pins = (const struct hda_pintbl[]) { 6689 { 0x13, 0x90a60160 }, /* use as internal mic */ 6690 { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */ 6691 { } 6692 }, 6693 .chained = true, 6694 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC 6695 }, 6696 [ALC294_FIXUP_ASUS_HEADSET_MIC] = { 6697 .type = HDA_FIXUP_PINS, 6698 .v.pins = (const struct hda_pintbl[]) { 6699 { 0x19, 0x01a1103c }, /* use as headset mic */ 6700 { } 6701 }, 6702 .chained = true, 6703 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC 6704 }, 6705 [ALC294_FIXUP_ASUS_SPK] = { 6706 .type = HDA_FIXUP_VERBS, 6707 .v.verbs = (const struct hda_verb[]) { 6708 /* Set EAPD high */ 6709 { 0x20, AC_VERB_SET_COEF_INDEX, 0x40 }, 6710 { 0x20, AC_VERB_SET_PROC_COEF, 0x8800 }, 6711 { } 6712 }, 6713 .chained = true, 6714 .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC 6715 }, 6716 [ALC295_FIXUP_CHROME_BOOK] = { 6717 .type = HDA_FIXUP_FUNC, 6718 .v.func = alc295_fixup_chromebook, 6719 .chained = true, 6720 .chain_id = ALC225_FIXUP_HEADSET_JACK 6721 }, 6722 [ALC225_FIXUP_HEADSET_JACK] = { 6723 .type = HDA_FIXUP_FUNC, 6724 .v.func = alc_fixup_headset_jack, 6725 }, 6726 [ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE] = { 6727 .type = HDA_FIXUP_PINS, 6728 .v.pins = (const struct hda_pintbl[]) { 6729 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */ 6730 { } 6731 }, 6732 .chained = true, 6733 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC 6734 }, 6735 [ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE] = { 6736 .type = HDA_FIXUP_VERBS, 6737 .v.verbs = (const struct hda_verb[]) { 6738 /* Disable PCBEEP-IN passthrough */ 6739 { 0x20, AC_VERB_SET_COEF_INDEX, 0x36 }, 6740 { 0x20, AC_VERB_SET_PROC_COEF, 0x57d7 }, 6741 { } 6742 }, 6743 .chained = true, 6744 .chain_id = ALC285_FIXUP_LENOVO_HEADPHONE_NOISE 6745 }, 6746 [ALC255_FIXUP_ACER_HEADSET_MIC] = { 6747 .type = HDA_FIXUP_PINS, 6748 .v.pins = (const struct hda_pintbl[]) { 6749 { 0x19, 0x03a11130 }, 6750 { 0x1a, 0x90a60140 }, /* use as internal mic */ 6751 { } 6752 }, 6753 .chained = true, 6754 .chain_id = ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC 6755 }, 6756 [ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE] = { 6757 .type = HDA_FIXUP_PINS, 6758 .v.pins = (const struct hda_pintbl[]) { 6759 { 0x16, 0x01011020 }, /* Rear Line out */ 6760 { 0x19, 0x01a1913c }, /* use as Front headset mic, without its own jack detect */ 6761 { } 6762 }, 6763 .chained = true, 6764 .chain_id = ALC225_FIXUP_WYSE_AUTO_MUTE 6765 }, 6766 [ALC225_FIXUP_WYSE_AUTO_MUTE] = { 6767 .type = HDA_FIXUP_FUNC, 6768 .v.func = alc_fixup_auto_mute_via_amp, 6769 .chained = true, 6770 .chain_id = ALC225_FIXUP_WYSE_DISABLE_MIC_VREF 6771 }, 6772 [ALC225_FIXUP_WYSE_DISABLE_MIC_VREF] = { 6773 .type = HDA_FIXUP_FUNC, 6774 .v.func = alc_fixup_disable_mic_vref, 6775 .chained = true, 6776 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC 6777 }, 6778 [ALC286_FIXUP_ACER_AIO_HEADSET_MIC] = { 6779 .type = HDA_FIXUP_VERBS, 6780 .v.verbs = (const struct hda_verb[]) { 6781 { 0x20, AC_VERB_SET_COEF_INDEX, 0x4f }, 6782 { 0x20, AC_VERB_SET_PROC_COEF, 0x5029 }, 6783 { } 6784 }, 6785 .chained = true, 6786 .chain_id = ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE 6787 }, 6788 [ALC256_FIXUP_ASUS_MIC_NO_PRESENCE] = { 6789 .type = HDA_FIXUP_PINS, 6790 .v.pins = (const struct hda_pintbl[]) { 6791 { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */ 6792 { } 6793 }, 6794 .chained = true, 6795 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE 6796 }, 6797 [ALC299_FIXUP_PREDATOR_SPK] = { 6798 .type = HDA_FIXUP_PINS, 6799 .v.pins = (const struct hda_pintbl[]) { 6800 { 0x21, 0x90170150 }, /* use as headset mic, without its own jack detect */ 6801 { } 6802 } 6803 }, 6804 }; 6805 6806 static const struct snd_pci_quirk alc269_fixup_tbl[] = { 6807 SND_PCI_QUIRK(0x1025, 0x0283, "Acer TravelMate 8371", ALC269_FIXUP_INV_DMIC), 6808 SND_PCI_QUIRK(0x1025, 0x029b, "Acer 1810TZ", ALC269_FIXUP_INV_DMIC), 6809 SND_PCI_QUIRK(0x1025, 0x0349, "Acer AOD260", ALC269_FIXUP_INV_DMIC), 6810 SND_PCI_QUIRK(0x1025, 0x047c, "Acer AC700", ALC269_FIXUP_ACER_AC700), 6811 SND_PCI_QUIRK(0x1025, 0x072d, "Acer Aspire V5-571G", ALC269_FIXUP_ASPIRE_HEADSET_MIC), 6812 SND_PCI_QUIRK(0x1025, 0x080d, "Acer Aspire V5-122P", ALC269_FIXUP_ASPIRE_HEADSET_MIC), 6813 SND_PCI_QUIRK(0x1025, 0x0740, "Acer AO725", ALC271_FIXUP_HP_GATE_MIC_JACK), 6814 SND_PCI_QUIRK(0x1025, 0x0742, "Acer AO756", ALC271_FIXUP_HP_GATE_MIC_JACK), 6815 SND_PCI_QUIRK(0x1025, 0x0762, "Acer Aspire E1-472", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572), 6816 SND_PCI_QUIRK(0x1025, 0x0775, "Acer Aspire E1-572", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572), 6817 SND_PCI_QUIRK(0x1025, 0x079b, "Acer Aspire V5-573G", ALC282_FIXUP_ASPIRE_V5_PINS), 6818 SND_PCI_QUIRK(0x1025, 0x102b, "Acer Aspire C24-860", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE), 6819 SND_PCI_QUIRK(0x1025, 0x106d, "Acer Cloudbook 14", ALC283_FIXUP_CHROME_BOOK), 6820 SND_PCI_QUIRK(0x1025, 0x1099, "Acer Aspire E5-523G", ALC255_FIXUP_ACER_MIC_NO_PRESENCE), 6821 SND_PCI_QUIRK(0x1025, 0x110e, "Acer Aspire ES1-432", ALC255_FIXUP_ACER_MIC_NO_PRESENCE), 6822 SND_PCI_QUIRK(0x1025, 0x1246, "Acer Predator Helios 500", ALC299_FIXUP_PREDATOR_SPK), 6823 SND_PCI_QUIRK(0x1025, 0x128f, "Acer Veriton Z6860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC), 6824 SND_PCI_QUIRK(0x1025, 0x1290, "Acer Veriton Z4860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC), 6825 SND_PCI_QUIRK(0x1025, 0x1291, "Acer Veriton Z4660G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC), 6826 SND_PCI_QUIRK(0x1025, 0x1308, "Acer Aspire Z24-890", ALC286_FIXUP_ACER_AIO_HEADSET_MIC), 6827 SND_PCI_QUIRK(0x1025, 0x132a, "Acer TravelMate B114-21", ALC233_FIXUP_ACER_HEADSET_MIC), 6828 SND_PCI_QUIRK(0x1025, 0x1330, "Acer TravelMate X514-51T", ALC255_FIXUP_ACER_HEADSET_MIC), 6829 SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z), 6830 SND_PCI_QUIRK(0x1028, 0x054b, "Dell XPS one 2710", ALC275_FIXUP_DELL_XPS), 6831 SND_PCI_QUIRK(0x1028, 0x05bd, "Dell Latitude E6440", ALC292_FIXUP_DELL_E7X), 6832 SND_PCI_QUIRK(0x1028, 0x05be, "Dell Latitude E6540", ALC292_FIXUP_DELL_E7X), 6833 SND_PCI_QUIRK(0x1028, 0x05ca, "Dell Latitude E7240", ALC292_FIXUP_DELL_E7X), 6834 SND_PCI_QUIRK(0x1028, 0x05cb, "Dell Latitude E7440", ALC292_FIXUP_DELL_E7X), 6835 SND_PCI_QUIRK(0x1028, 0x05da, "Dell Vostro 5460", ALC290_FIXUP_SUBWOOFER), 6836 SND_PCI_QUIRK(0x1028, 0x05f4, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE), 6837 SND_PCI_QUIRK(0x1028, 0x05f5, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE), 6838 SND_PCI_QUIRK(0x1028, 0x05f6, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE), 6839 SND_PCI_QUIRK(0x1028, 0x0615, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK), 6840 SND_PCI_QUIRK(0x1028, 0x0616, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK), 6841 SND_PCI_QUIRK(0x1028, 0x062c, "Dell Latitude E5550", ALC292_FIXUP_DELL_E7X), 6842 SND_PCI_QUIRK(0x1028, 0x062e, "Dell Latitude E7450", ALC292_FIXUP_DELL_E7X), 6843 SND_PCI_QUIRK(0x1028, 0x0638, "Dell Inspiron 5439", ALC290_FIXUP_MONO_SPEAKERS_HSJACK), 6844 SND_PCI_QUIRK(0x1028, 0x064a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE), 6845 SND_PCI_QUIRK(0x1028, 0x064b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE), 6846 SND_PCI_QUIRK(0x1028, 0x0665, "Dell XPS 13", ALC288_FIXUP_DELL_XPS_13), 6847 SND_PCI_QUIRK(0x1028, 0x0669, "Dell Optiplex 9020m", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE), 6848 SND_PCI_QUIRK(0x1028, 0x069a, "Dell Vostro 5480", ALC290_FIXUP_SUBWOOFER_HSJACK), 6849 SND_PCI_QUIRK(0x1028, 0x06c7, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE), 6850 SND_PCI_QUIRK(0x1028, 0x06d9, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE), 6851 SND_PCI_QUIRK(0x1028, 0x06da, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE), 6852 SND_PCI_QUIRK(0x1028, 0x06db, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK), 6853 SND_PCI_QUIRK(0x1028, 0x06dd, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK), 6854 SND_PCI_QUIRK(0x1028, 0x06de, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK), 6855 SND_PCI_QUIRK(0x1028, 0x06df, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK), 6856 SND_PCI_QUIRK(0x1028, 0x06e0, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK), 6857 SND_PCI_QUIRK(0x1028, 0x0704, "Dell XPS 13 9350", ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE), 6858 SND_PCI_QUIRK(0x1028, 0x0706, "Dell Inspiron 7559", ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER), 6859 SND_PCI_QUIRK(0x1028, 0x0725, "Dell Inspiron 3162", ALC255_FIXUP_DELL_SPK_NOISE), 6860 SND_PCI_QUIRK(0x1028, 0x0738, "Dell Precision 5820", ALC269_FIXUP_NO_SHUTUP), 6861 SND_PCI_QUIRK(0x1028, 0x075b, "Dell XPS 13 9360", ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE), 6862 SND_PCI_QUIRK(0x1028, 0x075c, "Dell XPS 27 7760", ALC298_FIXUP_SPK_VOLUME), 6863 SND_PCI_QUIRK(0x1028, 0x075d, "Dell AIO", ALC298_FIXUP_SPK_VOLUME), 6864 SND_PCI_QUIRK(0x1028, 0x07b0, "Dell Precision 7520", ALC295_FIXUP_DISABLE_DAC3), 6865 SND_PCI_QUIRK(0x1028, 0x0798, "Dell Inspiron 17 7000 Gaming", ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER), 6866 SND_PCI_QUIRK(0x1028, 0x080c, "Dell WYSE", ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE), 6867 SND_PCI_QUIRK(0x1028, 0x082a, "Dell XPS 13 9360", ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE), 6868 SND_PCI_QUIRK(0x1028, 0x084b, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB), 6869 SND_PCI_QUIRK(0x1028, 0x084e, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB), 6870 SND_PCI_QUIRK(0x1028, 0x0871, "Dell Precision 3630", ALC255_FIXUP_DELL_HEADSET_MIC), 6871 SND_PCI_QUIRK(0x1028, 0x0872, "Dell Precision 3630", ALC255_FIXUP_DELL_HEADSET_MIC), 6872 SND_PCI_QUIRK(0x1028, 0x0873, "Dell Precision 3930", ALC255_FIXUP_DUMMY_LINEOUT_VERB), 6873 SND_PCI_QUIRK(0x1028, 0x08ad, "Dell WYSE AIO", ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE), 6874 SND_PCI_QUIRK(0x1028, 0x08ae, "Dell WYSE NB", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE), 6875 SND_PCI_QUIRK(0x1028, 0x0935, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB), 6876 SND_PCI_QUIRK(0x1028, 0x164a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE), 6877 SND_PCI_QUIRK(0x1028, 0x164b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE), 6878 SND_PCI_QUIRK(0x103c, 0x1586, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC2), 6879 SND_PCI_QUIRK(0x103c, 0x18e6, "HP", ALC269_FIXUP_HP_GPIO_LED), 6880 SND_PCI_QUIRK(0x103c, 0x218b, "HP", ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED), 6881 SND_PCI_QUIRK(0x103c, 0x225f, "HP", ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY), 6882 /* ALC282 */ 6883 SND_PCI_QUIRK(0x103c, 0x21f9, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), 6884 SND_PCI_QUIRK(0x103c, 0x2210, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), 6885 SND_PCI_QUIRK(0x103c, 0x2214, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), 6886 SND_PCI_QUIRK(0x103c, 0x2236, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED), 6887 SND_PCI_QUIRK(0x103c, 0x2237, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED), 6888 SND_PCI_QUIRK(0x103c, 0x2238, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED), 6889 SND_PCI_QUIRK(0x103c, 0x2239, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED), 6890 SND_PCI_QUIRK(0x103c, 0x224b, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED), 6891 SND_PCI_QUIRK(0x103c, 0x2268, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), 6892 SND_PCI_QUIRK(0x103c, 0x226a, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), 6893 SND_PCI_QUIRK(0x103c, 0x226b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), 6894 SND_PCI_QUIRK(0x103c, 0x226e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), 6895 SND_PCI_QUIRK(0x103c, 0x2271, "HP", ALC286_FIXUP_HP_GPIO_LED), 6896 SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC280_FIXUP_HP_DOCK_PINS), 6897 SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC280_FIXUP_HP_DOCK_PINS), 6898 SND_PCI_QUIRK(0x103c, 0x229e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), 6899 SND_PCI_QUIRK(0x103c, 0x22b2, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), 6900 SND_PCI_QUIRK(0x103c, 0x22b7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), 6901 SND_PCI_QUIRK(0x103c, 0x22bf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), 6902 SND_PCI_QUIRK(0x103c, 0x22cf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), 6903 SND_PCI_QUIRK(0x103c, 0x22db, "HP", ALC280_FIXUP_HP_9480M), 6904 SND_PCI_QUIRK(0x103c, 0x22dc, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), 6905 SND_PCI_QUIRK(0x103c, 0x22fb, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), 6906 /* ALC290 */ 6907 SND_PCI_QUIRK(0x103c, 0x221b, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), 6908 SND_PCI_QUIRK(0x103c, 0x2221, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), 6909 SND_PCI_QUIRK(0x103c, 0x2225, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), 6910 SND_PCI_QUIRK(0x103c, 0x2253, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), 6911 SND_PCI_QUIRK(0x103c, 0x2254, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), 6912 SND_PCI_QUIRK(0x103c, 0x2255, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), 6913 SND_PCI_QUIRK(0x103c, 0x2256, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), 6914 SND_PCI_QUIRK(0x103c, 0x2257, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), 6915 SND_PCI_QUIRK(0x103c, 0x2259, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), 6916 SND_PCI_QUIRK(0x103c, 0x225a, "HP", ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED), 6917 SND_PCI_QUIRK(0x103c, 0x2260, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), 6918 SND_PCI_QUIRK(0x103c, 0x2263, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), 6919 SND_PCI_QUIRK(0x103c, 0x2264, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), 6920 SND_PCI_QUIRK(0x103c, 0x2265, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), 6921 SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), 6922 SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), 6923 SND_PCI_QUIRK(0x103c, 0x2278, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED), 6924 SND_PCI_QUIRK(0x103c, 0x227f, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), 6925 SND_PCI_QUIRK(0x103c, 0x2282, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), 6926 SND_PCI_QUIRK(0x103c, 0x228b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), 6927 SND_PCI_QUIRK(0x103c, 0x228e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), 6928 SND_PCI_QUIRK(0x103c, 0x22c5, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), 6929 SND_PCI_QUIRK(0x103c, 0x22c7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), 6930 SND_PCI_QUIRK(0x103c, 0x22c8, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), 6931 SND_PCI_QUIRK(0x103c, 0x22c4, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), 6932 SND_PCI_QUIRK(0x103c, 0x2334, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), 6933 SND_PCI_QUIRK(0x103c, 0x2335, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), 6934 SND_PCI_QUIRK(0x103c, 0x2336, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), 6935 SND_PCI_QUIRK(0x103c, 0x2337, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1), 6936 SND_PCI_QUIRK(0x103c, 0x221c, "HP EliteBook 755 G2", ALC280_FIXUP_HP_HEADSET_MIC), 6937 SND_PCI_QUIRK(0x103c, 0x802e, "HP Z240 SFF", ALC221_FIXUP_HP_MIC_NO_PRESENCE), 6938 SND_PCI_QUIRK(0x103c, 0x802f, "HP Z240", ALC221_FIXUP_HP_MIC_NO_PRESENCE), 6939 SND_PCI_QUIRK(0x103c, 0x820d, "HP Pavilion 15", ALC269_FIXUP_HP_MUTE_LED_MIC3), 6940 SND_PCI_QUIRK(0x103c, 0x8256, "HP", ALC221_FIXUP_HP_FRONT_MIC), 6941 SND_PCI_QUIRK(0x103c, 0x827e, "HP x360", ALC295_FIXUP_HP_X360), 6942 SND_PCI_QUIRK(0x103c, 0x82bf, "HP G3 mini", ALC221_FIXUP_HP_MIC_NO_PRESENCE), 6943 SND_PCI_QUIRK(0x103c, 0x82c0, "HP G3 mini premium", ALC221_FIXUP_HP_MIC_NO_PRESENCE), 6944 SND_PCI_QUIRK(0x103c, 0x83b9, "HP Spectre x360", ALC269_FIXUP_HP_MUTE_LED_MIC3), 6945 SND_PCI_QUIRK(0x1043, 0x103e, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC), 6946 SND_PCI_QUIRK(0x1043, 0x103f, "ASUS TX300", ALC282_FIXUP_ASUS_TX300), 6947 SND_PCI_QUIRK(0x1043, 0x106d, "Asus K53BE", ALC269_FIXUP_LIMIT_INT_MIC_BOOST), 6948 SND_PCI_QUIRK(0x1043, 0x10a1, "ASUS UX391UA", ALC294_FIXUP_ASUS_SPK), 6949 SND_PCI_QUIRK(0x1043, 0x10c0, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC), 6950 SND_PCI_QUIRK(0x1043, 0x10d0, "ASUS X540LA/X540LJ", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE), 6951 SND_PCI_QUIRK(0x1043, 0x115d, "Asus 1015E", ALC269_FIXUP_LIMIT_INT_MIC_BOOST), 6952 SND_PCI_QUIRK(0x1043, 0x11c0, "ASUS X556UR", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE), 6953 SND_PCI_QUIRK(0x1043, 0x1290, "ASUS X441SA", ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE), 6954 SND_PCI_QUIRK(0x1043, 0x12a0, "ASUS X441UV", ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE), 6955 SND_PCI_QUIRK(0x1043, 0x12f0, "ASUS X541UV", ALC256_FIXUP_ASUS_MIC), 6956 SND_PCI_QUIRK(0x1043, 0x12e0, "ASUS X541SA", ALC256_FIXUP_ASUS_MIC), 6957 SND_PCI_QUIRK(0x1043, 0x13b0, "ASUS Z550SA", ALC256_FIXUP_ASUS_MIC), 6958 SND_PCI_QUIRK(0x1043, 0x1427, "Asus Zenbook UX31E", ALC269VB_FIXUP_ASUS_ZENBOOK), 6959 SND_PCI_QUIRK(0x1043, 0x1517, "Asus Zenbook UX31A", ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A), 6960 SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC), 6961 SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW), 6962 SND_PCI_QUIRK(0x1043, 0x1a30, "ASUS X705UD", ALC256_FIXUP_ASUS_MIC), 6963 SND_PCI_QUIRK(0x1043, 0x1b13, "Asus U41SV", ALC269_FIXUP_INV_DMIC), 6964 SND_PCI_QUIRK(0x1043, 0x1bbd, "ASUS Z550MA", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE), 6965 SND_PCI_QUIRK(0x1043, 0x1c23, "Asus X55U", ALC269_FIXUP_LIMIT_INT_MIC_BOOST), 6966 SND_PCI_QUIRK(0x1043, 0x1ccd, "ASUS X555UB", ALC256_FIXUP_ASUS_MIC), 6967 SND_PCI_QUIRK(0x1043, 0x3030, "ASUS ZN270IE", ALC256_FIXUP_ASUS_AIO_GPIO2), 6968 SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC), 6969 SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC), 6970 SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC), 6971 SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC), 6972 SND_PCI_QUIRK(0x1043, 0x8516, "ASUS X101CH", ALC269_FIXUP_ASUS_X101), 6973 SND_PCI_QUIRK(0x104d, 0x90b5, "Sony VAIO Pro 11", ALC286_FIXUP_SONY_MIC_NO_PRESENCE), 6974 SND_PCI_QUIRK(0x104d, 0x90b6, "Sony VAIO Pro 13", ALC286_FIXUP_SONY_MIC_NO_PRESENCE), 6975 SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2), 6976 SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ), 6977 SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ), 6978 SND_PCI_QUIRK(0x104d, 0x9099, "Sony VAIO S13", ALC275_FIXUP_SONY_DISABLE_AAMIX), 6979 SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook", ALC269_FIXUP_LIFEBOOK), 6980 SND_PCI_QUIRK(0x10cf, 0x159f, "Lifebook E780", ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT), 6981 SND_PCI_QUIRK(0x10cf, 0x15dc, "Lifebook T731", ALC269_FIXUP_LIFEBOOK_HP_PIN), 6982 SND_PCI_QUIRK(0x10cf, 0x1757, "Lifebook E752", ALC269_FIXUP_LIFEBOOK_HP_PIN), 6983 SND_PCI_QUIRK(0x10cf, 0x1629, "Lifebook U7x7", ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC), 6984 SND_PCI_QUIRK(0x10cf, 0x1845, "Lifebook U904", ALC269_FIXUP_LIFEBOOK_EXTMIC), 6985 SND_PCI_QUIRK(0x10ec, 0x10f2, "Intel Reference board", ALC700_FIXUP_INTEL_REFERENCE), 6986 SND_PCI_QUIRK(0x10f7, 0x8338, "Panasonic CF-SZ6", ALC269_FIXUP_HEADSET_MODE), 6987 SND_PCI_QUIRK(0x144d, 0xc109, "Samsung Ativ book 9 (NP900X3G)", ALC269_FIXUP_INV_DMIC), 6988 SND_PCI_QUIRK(0x144d, 0xc740, "Samsung Ativ book 8 (NP870Z5G)", ALC269_FIXUP_ATIV_BOOK_8), 6989 SND_PCI_QUIRK(0x1458, 0xfa53, "Gigabyte BXBT-2807", ALC283_FIXUP_HEADSET_MIC), 6990 SND_PCI_QUIRK(0x1462, 0xb120, "MSI Cubi MS-B120", ALC283_FIXUP_HEADSET_MIC), 6991 SND_PCI_QUIRK(0x1462, 0xb171, "Cubi N 8GL (MS-B171)", ALC283_FIXUP_HEADSET_MIC), 6992 SND_PCI_QUIRK(0x1558, 0x1325, "System76 Darter Pro (darp5)", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), 6993 SND_PCI_QUIRK(0x1558, 0x8550, "System76 Gazelle (gaze14)", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), 6994 SND_PCI_QUIRK(0x1558, 0x8551, "System76 Gazelle (gaze14)", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE), 6995 SND_PCI_QUIRK(0x1558, 0x8560, "System76 Gazelle (gaze14)", ALC269_FIXUP_HEADSET_MIC), 6996 SND_PCI_QUIRK(0x1558, 0x8561, "System76 Gazelle (gaze14)", ALC269_FIXUP_HEADSET_MIC), 6997 SND_PCI_QUIRK(0x17aa, 0x1036, "Lenovo P520", ALC233_FIXUP_LENOVO_MULTI_CODECS), 6998 SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE), 6999 SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE), 7000 SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE), 7001 SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE), 7002 SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE), 7003 SND_PCI_QUIRK(0x17aa, 0x21f6, "Thinkpad T530", ALC269_FIXUP_LENOVO_DOCK), 7004 SND_PCI_QUIRK(0x17aa, 0x21fa, "Thinkpad X230", ALC269_FIXUP_LENOVO_DOCK), 7005 SND_PCI_QUIRK(0x17aa, 0x21f3, "Thinkpad T430", ALC269_FIXUP_LENOVO_DOCK), 7006 SND_PCI_QUIRK(0x17aa, 0x21fb, "Thinkpad T430s", ALC269_FIXUP_LENOVO_DOCK), 7007 SND_PCI_QUIRK(0x17aa, 0x2203, "Thinkpad X230 Tablet", ALC269_FIXUP_LENOVO_DOCK), 7008 SND_PCI_QUIRK(0x17aa, 0x2208, "Thinkpad T431s", ALC269_FIXUP_LENOVO_DOCK), 7009 SND_PCI_QUIRK(0x17aa, 0x220c, "Thinkpad T440s", ALC292_FIXUP_TPT440), 7010 SND_PCI_QUIRK(0x17aa, 0x220e, "Thinkpad T440p", ALC292_FIXUP_TPT440_DOCK), 7011 SND_PCI_QUIRK(0x17aa, 0x2210, "Thinkpad T540p", ALC292_FIXUP_TPT440_DOCK), 7012 SND_PCI_QUIRK(0x17aa, 0x2211, "Thinkpad W541", ALC292_FIXUP_TPT440_DOCK), 7013 SND_PCI_QUIRK(0x17aa, 0x2212, "Thinkpad T440", ALC292_FIXUP_TPT440_DOCK), 7014 SND_PCI_QUIRK(0x17aa, 0x2214, "Thinkpad X240", ALC292_FIXUP_TPT440_DOCK), 7015 SND_PCI_QUIRK(0x17aa, 0x2215, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST), 7016 SND_PCI_QUIRK(0x17aa, 0x2218, "Thinkpad X1 Carbon 2nd", ALC292_FIXUP_TPT440_DOCK), 7017 SND_PCI_QUIRK(0x17aa, 0x2223, "ThinkPad T550", ALC292_FIXUP_TPT440_DOCK), 7018 SND_PCI_QUIRK(0x17aa, 0x2226, "ThinkPad X250", ALC292_FIXUP_TPT440_DOCK), 7019 SND_PCI_QUIRK(0x17aa, 0x222d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK), 7020 SND_PCI_QUIRK(0x17aa, 0x222e, "Thinkpad", ALC298_FIXUP_TPT470_DOCK), 7021 SND_PCI_QUIRK(0x17aa, 0x2231, "Thinkpad T560", ALC292_FIXUP_TPT460), 7022 SND_PCI_QUIRK(0x17aa, 0x2233, "Thinkpad", ALC292_FIXUP_TPT460), 7023 SND_PCI_QUIRK(0x17aa, 0x2245, "Thinkpad T470", ALC298_FIXUP_TPT470_DOCK), 7024 SND_PCI_QUIRK(0x17aa, 0x2246, "Thinkpad", ALC298_FIXUP_TPT470_DOCK), 7025 SND_PCI_QUIRK(0x17aa, 0x2247, "Thinkpad", ALC298_FIXUP_TPT470_DOCK), 7026 SND_PCI_QUIRK(0x17aa, 0x2249, "Thinkpad", ALC292_FIXUP_TPT460), 7027 SND_PCI_QUIRK(0x17aa, 0x224b, "Thinkpad", ALC298_FIXUP_TPT470_DOCK), 7028 SND_PCI_QUIRK(0x17aa, 0x224c, "Thinkpad", ALC298_FIXUP_TPT470_DOCK), 7029 SND_PCI_QUIRK(0x17aa, 0x224d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK), 7030 SND_PCI_QUIRK(0x17aa, 0x225d, "Thinkpad T480", ALC269_FIXUP_LIMIT_INT_MIC_BOOST), 7031 SND_PCI_QUIRK(0x17aa, 0x30bb, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY), 7032 SND_PCI_QUIRK(0x17aa, 0x30e2, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY), 7033 SND_PCI_QUIRK(0x17aa, 0x310c, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION), 7034 SND_PCI_QUIRK(0x17aa, 0x312a, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION), 7035 SND_PCI_QUIRK(0x17aa, 0x312f, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION), 7036 SND_PCI_QUIRK(0x17aa, 0x313c, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION), 7037 SND_PCI_QUIRK(0x17aa, 0x3902, "Lenovo E50-80", ALC269_FIXUP_DMIC_THINKPAD_ACPI), 7038 SND_PCI_QUIRK(0x17aa, 0x3977, "IdeaPad S210", ALC283_FIXUP_INT_MIC), 7039 SND_PCI_QUIRK(0x17aa, 0x3978, "Lenovo B50-70", ALC269_FIXUP_DMIC_THINKPAD_ACPI), 7040 SND_PCI_QUIRK(0x17aa, 0x5013, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST), 7041 SND_PCI_QUIRK(0x17aa, 0x501a, "Thinkpad", ALC283_FIXUP_INT_MIC), 7042 SND_PCI_QUIRK(0x17aa, 0x501e, "Thinkpad L440", ALC292_FIXUP_TPT440_DOCK), 7043 SND_PCI_QUIRK(0x17aa, 0x5026, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST), 7044 SND_PCI_QUIRK(0x17aa, 0x5034, "Thinkpad T450", ALC292_FIXUP_TPT440_DOCK), 7045 SND_PCI_QUIRK(0x17aa, 0x5036, "Thinkpad T450s", ALC292_FIXUP_TPT440_DOCK), 7046 SND_PCI_QUIRK(0x17aa, 0x503c, "Thinkpad L450", ALC292_FIXUP_TPT440_DOCK), 7047 SND_PCI_QUIRK(0x17aa, 0x504a, "ThinkPad X260", ALC292_FIXUP_TPT440_DOCK), 7048 SND_PCI_QUIRK(0x17aa, 0x504b, "Thinkpad", ALC293_FIXUP_LENOVO_SPK_NOISE), 7049 SND_PCI_QUIRK(0x17aa, 0x5050, "Thinkpad T560p", ALC292_FIXUP_TPT460), 7050 SND_PCI_QUIRK(0x17aa, 0x5051, "Thinkpad L460", ALC292_FIXUP_TPT460), 7051 SND_PCI_QUIRK(0x17aa, 0x5053, "Thinkpad T460", ALC292_FIXUP_TPT460), 7052 SND_PCI_QUIRK(0x17aa, 0x505d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK), 7053 SND_PCI_QUIRK(0x17aa, 0x505f, "Thinkpad", ALC298_FIXUP_TPT470_DOCK), 7054 SND_PCI_QUIRK(0x17aa, 0x5062, "Thinkpad", ALC298_FIXUP_TPT470_DOCK), 7055 SND_PCI_QUIRK(0x17aa, 0x5109, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST), 7056 SND_PCI_QUIRK(0x17aa, 0x511e, "Thinkpad", ALC298_FIXUP_TPT470_DOCK), 7057 SND_PCI_QUIRK(0x17aa, 0x511f, "Thinkpad", ALC298_FIXUP_TPT470_DOCK), 7058 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_PCM_44K), 7059 SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD), 7060 SND_PCI_QUIRK(0x19e5, 0x3204, "Huawei MACH-WX9", ALC256_FIXUP_HUAWEI_MACH_WX9_PINS), 7061 SND_PCI_QUIRK(0x1b7d, 0xa831, "Ordissimo EVE2 ", ALC269VB_FIXUP_ORDISSIMO_EVE2), /* Also known as Malata PC-B1303 */ 7062 7063 #if 0 7064 /* Below is a quirk table taken from the old code. 7065 * Basically the device should work as is without the fixup table. 7066 * If BIOS doesn't give a proper info, enable the corresponding 7067 * fixup entry. 7068 */ 7069 SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A", 7070 ALC269_FIXUP_AMIC), 7071 SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC), 7072 SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC), 7073 SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC), 7074 SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC), 7075 SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269_FIXUP_AMIC), 7076 SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269_FIXUP_AMIC), 7077 SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269_FIXUP_AMIC), 7078 SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_FIXUP_AMIC), 7079 SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269_FIXUP_AMIC), 7080 SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_FIXUP_AMIC), 7081 SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_FIXUP_AMIC), 7082 SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_FIXUP_AMIC), 7083 SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_FIXUP_AMIC), 7084 SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_FIXUP_AMIC), 7085 SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_FIXUP_AMIC), 7086 SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_FIXUP_AMIC), 7087 SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_FIXUP_AMIC), 7088 SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_FIXUP_AMIC), 7089 SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_FIXUP_AMIC), 7090 SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_FIXUP_AMIC), 7091 SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_FIXUP_AMIC), 7092 SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_FIXUP_AMIC), 7093 SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_FIXUP_AMIC), 7094 SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_FIXUP_AMIC), 7095 SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_FIXUP_AMIC), 7096 SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_FIXUP_AMIC), 7097 SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_FIXUP_AMIC), 7098 SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_FIXUP_AMIC), 7099 SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_FIXUP_AMIC), 7100 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_FIXUP_AMIC), 7101 SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_FIXUP_AMIC), 7102 SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_FIXUP_AMIC), 7103 SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_FIXUP_AMIC), 7104 SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_FIXUP_AMIC), 7105 SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_FIXUP_DMIC), 7106 SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_FIXUP_AMIC), 7107 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_AMIC), 7108 SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_FIXUP_DMIC), 7109 SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_FIXUP_DMIC), 7110 #endif 7111 {} 7112 }; 7113 7114 static const struct snd_pci_quirk alc269_fixup_vendor_tbl[] = { 7115 SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC), 7116 SND_PCI_QUIRK_VENDOR(0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED), 7117 SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO), 7118 SND_PCI_QUIRK_VENDOR(0x17aa, "Thinkpad", ALC269_FIXUP_THINKPAD_ACPI), 7119 SND_PCI_QUIRK_VENDOR(0x19e5, "Huawei Matebook", ALC255_FIXUP_MIC_MUTE_LED), 7120 {} 7121 }; 7122 7123 static const struct hda_model_fixup alc269_fixup_models[] = { 7124 {.id = ALC269_FIXUP_AMIC, .name = "laptop-amic"}, 7125 {.id = ALC269_FIXUP_DMIC, .name = "laptop-dmic"}, 7126 {.id = ALC269_FIXUP_STEREO_DMIC, .name = "alc269-dmic"}, 7127 {.id = ALC271_FIXUP_DMIC, .name = "alc271-dmic"}, 7128 {.id = ALC269_FIXUP_INV_DMIC, .name = "inv-dmic"}, 7129 {.id = ALC269_FIXUP_HEADSET_MIC, .name = "headset-mic"}, 7130 {.id = ALC269_FIXUP_HEADSET_MODE, .name = "headset-mode"}, 7131 {.id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC, .name = "headset-mode-no-hp-mic"}, 7132 {.id = ALC269_FIXUP_LENOVO_DOCK, .name = "lenovo-dock"}, 7133 {.id = ALC269_FIXUP_HP_GPIO_LED, .name = "hp-gpio-led"}, 7134 {.id = ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED, .name = "hp-dock-gpio-mic1-led"}, 7135 {.id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "dell-headset-multi"}, 7136 {.id = ALC269_FIXUP_DELL2_MIC_NO_PRESENCE, .name = "dell-headset-dock"}, 7137 {.id = ALC269_FIXUP_DELL3_MIC_NO_PRESENCE, .name = "dell-headset3"}, 7138 {.id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE, .name = "dell-headset4"}, 7139 {.id = ALC283_FIXUP_CHROME_BOOK, .name = "alc283-dac-wcaps"}, 7140 {.id = ALC283_FIXUP_SENSE_COMBO_JACK, .name = "alc283-sense-combo"}, 7141 {.id = ALC292_FIXUP_TPT440_DOCK, .name = "tpt440-dock"}, 7142 {.id = ALC292_FIXUP_TPT440, .name = "tpt440"}, 7143 {.id = ALC292_FIXUP_TPT460, .name = "tpt460"}, 7144 {.id = ALC298_FIXUP_TPT470_DOCK, .name = "tpt470-dock"}, 7145 {.id = ALC233_FIXUP_LENOVO_MULTI_CODECS, .name = "dual-codecs"}, 7146 {.id = ALC700_FIXUP_INTEL_REFERENCE, .name = "alc700-ref"}, 7147 {.id = ALC269_FIXUP_SONY_VAIO, .name = "vaio"}, 7148 {.id = ALC269_FIXUP_DELL_M101Z, .name = "dell-m101z"}, 7149 {.id = ALC269_FIXUP_ASUS_G73JW, .name = "asus-g73jw"}, 7150 {.id = ALC269_FIXUP_LENOVO_EAPD, .name = "lenovo-eapd"}, 7151 {.id = ALC275_FIXUP_SONY_HWEQ, .name = "sony-hweq"}, 7152 {.id = ALC269_FIXUP_PCM_44K, .name = "pcm44k"}, 7153 {.id = ALC269_FIXUP_LIFEBOOK, .name = "lifebook"}, 7154 {.id = ALC269_FIXUP_LIFEBOOK_EXTMIC, .name = "lifebook-extmic"}, 7155 {.id = ALC269_FIXUP_LIFEBOOK_HP_PIN, .name = "lifebook-hp-pin"}, 7156 {.id = ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC, .name = "lifebook-u7x7"}, 7157 {.id = ALC269VB_FIXUP_AMIC, .name = "alc269vb-amic"}, 7158 {.id = ALC269VB_FIXUP_DMIC, .name = "alc269vb-dmic"}, 7159 {.id = ALC269_FIXUP_HP_MUTE_LED_MIC1, .name = "hp-mute-led-mic1"}, 7160 {.id = ALC269_FIXUP_HP_MUTE_LED_MIC2, .name = "hp-mute-led-mic2"}, 7161 {.id = ALC269_FIXUP_HP_MUTE_LED_MIC3, .name = "hp-mute-led-mic3"}, 7162 {.id = ALC269_FIXUP_HP_GPIO_MIC1_LED, .name = "hp-gpio-mic1"}, 7163 {.id = ALC269_FIXUP_HP_LINE1_MIC1_LED, .name = "hp-line1-mic1"}, 7164 {.id = ALC269_FIXUP_NO_SHUTUP, .name = "noshutup"}, 7165 {.id = ALC286_FIXUP_SONY_MIC_NO_PRESENCE, .name = "sony-nomic"}, 7166 {.id = ALC269_FIXUP_ASPIRE_HEADSET_MIC, .name = "aspire-headset-mic"}, 7167 {.id = ALC269_FIXUP_ASUS_X101, .name = "asus-x101"}, 7168 {.id = ALC271_FIXUP_HP_GATE_MIC_JACK, .name = "acer-ao7xx"}, 7169 {.id = ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572, .name = "acer-aspire-e1"}, 7170 {.id = ALC269_FIXUP_ACER_AC700, .name = "acer-ac700"}, 7171 {.id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST, .name = "limit-mic-boost"}, 7172 {.id = ALC269VB_FIXUP_ASUS_ZENBOOK, .name = "asus-zenbook"}, 7173 {.id = ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A, .name = "asus-zenbook-ux31a"}, 7174 {.id = ALC269VB_FIXUP_ORDISSIMO_EVE2, .name = "ordissimo"}, 7175 {.id = ALC282_FIXUP_ASUS_TX300, .name = "asus-tx300"}, 7176 {.id = ALC283_FIXUP_INT_MIC, .name = "alc283-int-mic"}, 7177 {.id = ALC290_FIXUP_MONO_SPEAKERS_HSJACK, .name = "mono-speakers"}, 7178 {.id = ALC290_FIXUP_SUBWOOFER_HSJACK, .name = "alc290-subwoofer"}, 7179 {.id = ALC269_FIXUP_THINKPAD_ACPI, .name = "thinkpad"}, 7180 {.id = ALC269_FIXUP_DMIC_THINKPAD_ACPI, .name = "dmic-thinkpad"}, 7181 {.id = ALC255_FIXUP_ACER_MIC_NO_PRESENCE, .name = "alc255-acer"}, 7182 {.id = ALC255_FIXUP_ASUS_MIC_NO_PRESENCE, .name = "alc255-asus"}, 7183 {.id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc255-dell1"}, 7184 {.id = ALC255_FIXUP_DELL2_MIC_NO_PRESENCE, .name = "alc255-dell2"}, 7185 {.id = ALC293_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc293-dell1"}, 7186 {.id = ALC283_FIXUP_HEADSET_MIC, .name = "alc283-headset"}, 7187 {.id = ALC255_FIXUP_MIC_MUTE_LED, .name = "alc255-dell-mute"}, 7188 {.id = ALC282_FIXUP_ASPIRE_V5_PINS, .name = "aspire-v5"}, 7189 {.id = ALC280_FIXUP_HP_GPIO4, .name = "hp-gpio4"}, 7190 {.id = ALC286_FIXUP_HP_GPIO_LED, .name = "hp-gpio-led"}, 7191 {.id = ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY, .name = "hp-gpio2-hotkey"}, 7192 {.id = ALC280_FIXUP_HP_DOCK_PINS, .name = "hp-dock-pins"}, 7193 {.id = ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED, .name = "hp-dock-gpio-mic"}, 7194 {.id = ALC280_FIXUP_HP_9480M, .name = "hp-9480m"}, 7195 {.id = ALC288_FIXUP_DELL_HEADSET_MODE, .name = "alc288-dell-headset"}, 7196 {.id = ALC288_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc288-dell1"}, 7197 {.id = ALC288_FIXUP_DELL_XPS_13, .name = "alc288-dell-xps13"}, 7198 {.id = ALC292_FIXUP_DELL_E7X, .name = "dell-e7x"}, 7199 {.id = ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK, .name = "alc293-dell"}, 7200 {.id = ALC298_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc298-dell1"}, 7201 {.id = ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE, .name = "alc298-dell-aio"}, 7202 {.id = ALC275_FIXUP_DELL_XPS, .name = "alc275-dell-xps"}, 7203 {.id = ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE, .name = "alc256-dell-xps13"}, 7204 {.id = ALC293_FIXUP_LENOVO_SPK_NOISE, .name = "lenovo-spk-noise"}, 7205 {.id = ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY, .name = "lenovo-hotkey"}, 7206 {.id = ALC255_FIXUP_DELL_SPK_NOISE, .name = "dell-spk-noise"}, 7207 {.id = ALC225_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc225-dell1"}, 7208 {.id = ALC295_FIXUP_DISABLE_DAC3, .name = "alc295-disable-dac3"}, 7209 {.id = ALC280_FIXUP_HP_HEADSET_MIC, .name = "alc280-hp-headset"}, 7210 {.id = ALC221_FIXUP_HP_FRONT_MIC, .name = "alc221-hp-mic"}, 7211 {.id = ALC298_FIXUP_SPK_VOLUME, .name = "alc298-spk-volume"}, 7212 {.id = ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER, .name = "dell-inspiron-7559"}, 7213 {.id = ALC269_FIXUP_ATIV_BOOK_8, .name = "ativ-book"}, 7214 {.id = ALC221_FIXUP_HP_MIC_NO_PRESENCE, .name = "alc221-hp-mic"}, 7215 {.id = ALC256_FIXUP_ASUS_HEADSET_MODE, .name = "alc256-asus-headset"}, 7216 {.id = ALC256_FIXUP_ASUS_MIC, .name = "alc256-asus-mic"}, 7217 {.id = ALC256_FIXUP_ASUS_AIO_GPIO2, .name = "alc256-asus-aio"}, 7218 {.id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE, .name = "alc233-asus"}, 7219 {.id = ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE, .name = "alc233-eapd"}, 7220 {.id = ALC294_FIXUP_LENOVO_MIC_LOCATION, .name = "alc294-lenovo-mic"}, 7221 {.id = ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE, .name = "alc225-wyse"}, 7222 {.id = ALC274_FIXUP_DELL_AIO_LINEOUT_VERB, .name = "alc274-dell-aio"}, 7223 {.id = ALC255_FIXUP_DUMMY_LINEOUT_VERB, .name = "alc255-dummy-lineout"}, 7224 {.id = ALC255_FIXUP_DELL_HEADSET_MIC, .name = "alc255-dell-headset"}, 7225 {.id = ALC295_FIXUP_HP_X360, .name = "alc295-hp-x360"}, 7226 {.id = ALC225_FIXUP_HEADSET_JACK, .name = "alc-headset-jack"}, 7227 {.id = ALC295_FIXUP_CHROME_BOOK, .name = "alc-chrome-book"}, 7228 {.id = ALC299_FIXUP_PREDATOR_SPK, .name = "predator-spk"}, 7229 {} 7230 }; 7231 #define ALC225_STANDARD_PINS \ 7232 {0x21, 0x04211020} 7233 7234 #define ALC256_STANDARD_PINS \ 7235 {0x12, 0x90a60140}, \ 7236 {0x14, 0x90170110}, \ 7237 {0x21, 0x02211020} 7238 7239 #define ALC282_STANDARD_PINS \ 7240 {0x14, 0x90170110} 7241 7242 #define ALC290_STANDARD_PINS \ 7243 {0x12, 0x99a30130} 7244 7245 #define ALC292_STANDARD_PINS \ 7246 {0x14, 0x90170110}, \ 7247 {0x15, 0x0221401f} 7248 7249 #define ALC295_STANDARD_PINS \ 7250 {0x12, 0xb7a60130}, \ 7251 {0x14, 0x90170110}, \ 7252 {0x21, 0x04211020} 7253 7254 #define ALC298_STANDARD_PINS \ 7255 {0x12, 0x90a60130}, \ 7256 {0x21, 0x03211020} 7257 7258 static const struct snd_hda_pin_quirk alc269_pin_fixup_tbl[] = { 7259 SND_HDA_PIN_QUIRK(0x10ec0221, 0x103c, "HP Workstation", ALC221_FIXUP_HP_HEADSET_MIC, 7260 {0x14, 0x01014020}, 7261 {0x17, 0x90170110}, 7262 {0x18, 0x02a11030}, 7263 {0x19, 0x0181303F}, 7264 {0x21, 0x0221102f}), 7265 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1025, "Acer", ALC255_FIXUP_ACER_MIC_NO_PRESENCE, 7266 {0x12, 0x90a60140}, 7267 {0x14, 0x90170120}, 7268 {0x21, 0x02211030}), 7269 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1025, "Acer", ALC255_FIXUP_ACER_MIC_NO_PRESENCE, 7270 {0x12, 0x90a601c0}, 7271 {0x14, 0x90171120}, 7272 {0x21, 0x02211030}), 7273 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1043, "ASUS", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE, 7274 {0x14, 0x90170110}, 7275 {0x1b, 0x90a70130}, 7276 {0x21, 0x03211020}), 7277 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1043, "ASUS", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE, 7278 {0x1a, 0x90a70130}, 7279 {0x1b, 0x90170110}, 7280 {0x21, 0x03211020}), 7281 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE, 7282 ALC225_STANDARD_PINS, 7283 {0x12, 0xb7a60130}, 7284 {0x14, 0x901701a0}), 7285 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE, 7286 ALC225_STANDARD_PINS, 7287 {0x12, 0xb7a60130}, 7288 {0x14, 0x901701b0}), 7289 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE, 7290 ALC225_STANDARD_PINS, 7291 {0x12, 0xb7a60150}, 7292 {0x14, 0x901701a0}), 7293 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE, 7294 ALC225_STANDARD_PINS, 7295 {0x12, 0xb7a60150}, 7296 {0x14, 0x901701b0}), 7297 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE, 7298 ALC225_STANDARD_PINS, 7299 {0x12, 0xb7a60130}, 7300 {0x1b, 0x90170110}), 7301 SND_HDA_PIN_QUIRK(0x10ec0233, 0x8086, "Intel NUC Skull Canyon", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, 7302 {0x1b, 0x01111010}, 7303 {0x1e, 0x01451130}, 7304 {0x21, 0x02211020}), 7305 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY, 7306 {0x12, 0x90a60140}, 7307 {0x14, 0x90170110}, 7308 {0x19, 0x02a11030}, 7309 {0x21, 0x02211020}), 7310 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION, 7311 {0x14, 0x90170110}, 7312 {0x19, 0x02a11030}, 7313 {0x1a, 0x02a11040}, 7314 {0x1b, 0x01014020}, 7315 {0x21, 0x0221101f}), 7316 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION, 7317 {0x14, 0x90170110}, 7318 {0x19, 0x02a11030}, 7319 {0x1a, 0x02a11040}, 7320 {0x1b, 0x01011020}, 7321 {0x21, 0x0221101f}), 7322 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION, 7323 {0x14, 0x90170110}, 7324 {0x19, 0x02a11020}, 7325 {0x1a, 0x02a11030}, 7326 {0x21, 0x0221101f}), 7327 SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, 7328 {0x12, 0x90a60140}, 7329 {0x14, 0x90170110}, 7330 {0x21, 0x02211020}), 7331 SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, 7332 {0x12, 0x90a60140}, 7333 {0x14, 0x90170150}, 7334 {0x21, 0x02211020}), 7335 SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, 7336 {0x21, 0x02211020}), 7337 SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, 7338 {0x12, 0x40000000}, 7339 {0x14, 0x90170110}, 7340 {0x21, 0x02211020}), 7341 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL2_MIC_NO_PRESENCE, 7342 {0x14, 0x90170110}, 7343 {0x21, 0x02211020}), 7344 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, 7345 {0x14, 0x90170130}, 7346 {0x21, 0x02211040}), 7347 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, 7348 {0x12, 0x90a60140}, 7349 {0x14, 0x90170110}, 7350 {0x21, 0x02211020}), 7351 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, 7352 {0x12, 0x90a60160}, 7353 {0x14, 0x90170120}, 7354 {0x21, 0x02211030}), 7355 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, 7356 {0x14, 0x90170110}, 7357 {0x1b, 0x02011020}, 7358 {0x21, 0x0221101f}), 7359 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, 7360 {0x14, 0x90170110}, 7361 {0x1b, 0x01011020}, 7362 {0x21, 0x0221101f}), 7363 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, 7364 {0x14, 0x90170130}, 7365 {0x1b, 0x01014020}, 7366 {0x21, 0x0221103f}), 7367 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, 7368 {0x14, 0x90170130}, 7369 {0x1b, 0x01011020}, 7370 {0x21, 0x0221103f}), 7371 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, 7372 {0x14, 0x90170130}, 7373 {0x1b, 0x02011020}, 7374 {0x21, 0x0221103f}), 7375 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, 7376 {0x14, 0x90170150}, 7377 {0x1b, 0x02011020}, 7378 {0x21, 0x0221105f}), 7379 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, 7380 {0x14, 0x90170110}, 7381 {0x1b, 0x01014020}, 7382 {0x21, 0x0221101f}), 7383 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, 7384 {0x12, 0x90a60160}, 7385 {0x14, 0x90170120}, 7386 {0x17, 0x90170140}, 7387 {0x21, 0x0321102f}), 7388 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, 7389 {0x12, 0x90a60160}, 7390 {0x14, 0x90170130}, 7391 {0x21, 0x02211040}), 7392 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, 7393 {0x12, 0x90a60160}, 7394 {0x14, 0x90170140}, 7395 {0x21, 0x02211050}), 7396 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, 7397 {0x12, 0x90a60170}, 7398 {0x14, 0x90170120}, 7399 {0x21, 0x02211030}), 7400 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, 7401 {0x12, 0x90a60170}, 7402 {0x14, 0x90170130}, 7403 {0x21, 0x02211040}), 7404 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, 7405 {0x12, 0x90a60170}, 7406 {0x14, 0x90171130}, 7407 {0x21, 0x02211040}), 7408 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, 7409 {0x12, 0x90a60170}, 7410 {0x14, 0x90170140}, 7411 {0x21, 0x02211050}), 7412 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell Inspiron 5548", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, 7413 {0x12, 0x90a60180}, 7414 {0x14, 0x90170130}, 7415 {0x21, 0x02211040}), 7416 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell Inspiron 5565", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, 7417 {0x12, 0x90a60180}, 7418 {0x14, 0x90170120}, 7419 {0x21, 0x02211030}), 7420 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, 7421 {0x1b, 0x01011020}, 7422 {0x21, 0x02211010}), 7423 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, 7424 {0x12, 0x90a60130}, 7425 {0x14, 0x90170110}, 7426 {0x1b, 0x01011020}, 7427 {0x21, 0x0221101f}), 7428 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, 7429 {0x12, 0x90a60160}, 7430 {0x14, 0x90170120}, 7431 {0x21, 0x02211030}), 7432 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, 7433 {0x12, 0x90a60170}, 7434 {0x14, 0x90170120}, 7435 {0x21, 0x02211030}), 7436 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell Inspiron 5468", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, 7437 {0x12, 0x90a60180}, 7438 {0x14, 0x90170120}, 7439 {0x21, 0x02211030}), 7440 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, 7441 {0x12, 0xb7a60130}, 7442 {0x14, 0x90170110}, 7443 {0x21, 0x02211020}), 7444 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, 7445 {0x12, 0x90a60130}, 7446 {0x14, 0x90170110}, 7447 {0x14, 0x01011020}, 7448 {0x21, 0x0221101f}), 7449 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, 7450 ALC256_STANDARD_PINS), 7451 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, 7452 {0x14, 0x90170110}, 7453 {0x1b, 0x01011020}, 7454 {0x21, 0x0221101f}), 7455 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC, 7456 {0x14, 0x90170110}, 7457 {0x1b, 0x90a70130}, 7458 {0x21, 0x04211020}), 7459 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC, 7460 {0x14, 0x90170110}, 7461 {0x1b, 0x90a70130}, 7462 {0x21, 0x03211020}), 7463 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE, 7464 {0x12, 0x90a60130}, 7465 {0x14, 0x90170110}, 7466 {0x21, 0x03211020}), 7467 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE, 7468 {0x12, 0x90a60130}, 7469 {0x14, 0x90170110}, 7470 {0x21, 0x04211020}), 7471 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE, 7472 {0x1a, 0x90a70130}, 7473 {0x1b, 0x90170110}, 7474 {0x21, 0x03211020}), 7475 SND_HDA_PIN_QUIRK(0x10ec0274, 0x1028, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB, 7476 {0x12, 0xb7a60130}, 7477 {0x13, 0xb8a61140}, 7478 {0x16, 0x90170110}, 7479 {0x21, 0x04211020}), 7480 SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC280_FIXUP_HP_GPIO4, 7481 {0x12, 0x90a60130}, 7482 {0x14, 0x90170110}, 7483 {0x15, 0x0421101f}, 7484 {0x1a, 0x04a11020}), 7485 SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED, 7486 {0x12, 0x90a60140}, 7487 {0x14, 0x90170110}, 7488 {0x15, 0x0421101f}, 7489 {0x18, 0x02811030}, 7490 {0x1a, 0x04a1103f}, 7491 {0x1b, 0x02011020}), 7492 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP 15 Touchsmart", ALC269_FIXUP_HP_MUTE_LED_MIC1, 7493 ALC282_STANDARD_PINS, 7494 {0x12, 0x99a30130}, 7495 {0x19, 0x03a11020}, 7496 {0x21, 0x0321101f}), 7497 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1, 7498 ALC282_STANDARD_PINS, 7499 {0x12, 0x99a30130}, 7500 {0x19, 0x03a11020}, 7501 {0x21, 0x03211040}), 7502 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1, 7503 ALC282_STANDARD_PINS, 7504 {0x12, 0x99a30130}, 7505 {0x19, 0x03a11030}, 7506 {0x21, 0x03211020}), 7507 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1, 7508 ALC282_STANDARD_PINS, 7509 {0x12, 0x99a30130}, 7510 {0x19, 0x04a11020}, 7511 {0x21, 0x0421101f}), 7512 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED, 7513 ALC282_STANDARD_PINS, 7514 {0x12, 0x90a60140}, 7515 {0x19, 0x04a11030}, 7516 {0x21, 0x04211020}), 7517 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, 7518 ALC282_STANDARD_PINS, 7519 {0x12, 0x90a60130}, 7520 {0x21, 0x0321101f}), 7521 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, 7522 {0x12, 0x90a60160}, 7523 {0x14, 0x90170120}, 7524 {0x21, 0x02211030}), 7525 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, 7526 ALC282_STANDARD_PINS, 7527 {0x12, 0x90a60130}, 7528 {0x19, 0x03a11020}, 7529 {0x21, 0x0321101f}), 7530 SND_HDA_PIN_QUIRK(0x10ec0285, 0x17aa, "Lenovo", ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE, 7531 {0x12, 0x90a60130}, 7532 {0x14, 0x90170110}, 7533 {0x19, 0x04a11040}, 7534 {0x21, 0x04211020}), 7535 SND_HDA_PIN_QUIRK(0x10ec0286, 0x1025, "Acer", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE, 7536 {0x12, 0x90a60130}, 7537 {0x17, 0x90170110}, 7538 {0x21, 0x02211020}), 7539 SND_HDA_PIN_QUIRK(0x10ec0288, 0x1028, "Dell", ALC288_FIXUP_DELL1_MIC_NO_PRESENCE, 7540 {0x12, 0x90a60120}, 7541 {0x14, 0x90170110}, 7542 {0x21, 0x0321101f}), 7543 SND_HDA_PIN_QUIRK(0x10ec0289, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE, 7544 {0x12, 0xb7a60130}, 7545 {0x14, 0x90170110}, 7546 {0x21, 0x04211020}), 7547 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1, 7548 ALC290_STANDARD_PINS, 7549 {0x15, 0x04211040}, 7550 {0x18, 0x90170112}, 7551 {0x1a, 0x04a11020}), 7552 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1, 7553 ALC290_STANDARD_PINS, 7554 {0x15, 0x04211040}, 7555 {0x18, 0x90170110}, 7556 {0x1a, 0x04a11020}), 7557 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1, 7558 ALC290_STANDARD_PINS, 7559 {0x15, 0x0421101f}, 7560 {0x1a, 0x04a11020}), 7561 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1, 7562 ALC290_STANDARD_PINS, 7563 {0x15, 0x04211020}, 7564 {0x1a, 0x04a11040}), 7565 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1, 7566 ALC290_STANDARD_PINS, 7567 {0x14, 0x90170110}, 7568 {0x15, 0x04211020}, 7569 {0x1a, 0x04a11040}), 7570 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1, 7571 ALC290_STANDARD_PINS, 7572 {0x14, 0x90170110}, 7573 {0x15, 0x04211020}, 7574 {0x1a, 0x04a11020}), 7575 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1, 7576 ALC290_STANDARD_PINS, 7577 {0x14, 0x90170110}, 7578 {0x15, 0x0421101f}, 7579 {0x1a, 0x04a11020}), 7580 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE, 7581 ALC292_STANDARD_PINS, 7582 {0x12, 0x90a60140}, 7583 {0x16, 0x01014020}, 7584 {0x19, 0x01a19030}), 7585 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE, 7586 ALC292_STANDARD_PINS, 7587 {0x12, 0x90a60140}, 7588 {0x16, 0x01014020}, 7589 {0x18, 0x02a19031}, 7590 {0x19, 0x01a1903e}), 7591 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL3_MIC_NO_PRESENCE, 7592 ALC292_STANDARD_PINS, 7593 {0x12, 0x90a60140}), 7594 SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE, 7595 ALC292_STANDARD_PINS, 7596 {0x13, 0x90a60140}, 7597 {0x16, 0x21014020}, 7598 {0x19, 0x21a19030}), 7599 SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE, 7600 ALC292_STANDARD_PINS, 7601 {0x13, 0x90a60140}), 7602 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_MIC, 7603 {0x14, 0x90170110}, 7604 {0x1b, 0x90a70130}, 7605 {0x21, 0x04211020}), 7606 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK, 7607 {0x12, 0x90a60130}, 7608 {0x17, 0x90170110}, 7609 {0x21, 0x03211020}), 7610 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK, 7611 {0x12, 0x90a60130}, 7612 {0x17, 0x90170110}, 7613 {0x21, 0x04211020}), 7614 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK, 7615 {0x12, 0x90a60130}, 7616 {0x17, 0x90170110}, 7617 {0x21, 0x03211020}), 7618 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, 7619 {0x14, 0x90170110}, 7620 {0x21, 0x04211020}), 7621 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, 7622 ALC295_STANDARD_PINS, 7623 {0x17, 0x21014020}, 7624 {0x18, 0x21a19030}), 7625 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, 7626 ALC295_STANDARD_PINS, 7627 {0x17, 0x21014040}, 7628 {0x18, 0x21a19050}), 7629 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, 7630 ALC295_STANDARD_PINS), 7631 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE, 7632 ALC298_STANDARD_PINS, 7633 {0x17, 0x90170110}), 7634 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE, 7635 ALC298_STANDARD_PINS, 7636 {0x17, 0x90170140}), 7637 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE, 7638 ALC298_STANDARD_PINS, 7639 {0x17, 0x90170150}), 7640 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_SPK_VOLUME, 7641 {0x12, 0xb7a60140}, 7642 {0x13, 0xb7a60150}, 7643 {0x17, 0x90170110}, 7644 {0x1a, 0x03011020}, 7645 {0x21, 0x03211030}), 7646 SND_HDA_PIN_QUIRK(0x10ec0299, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE, 7647 ALC225_STANDARD_PINS, 7648 {0x12, 0xb7a60130}, 7649 {0x17, 0x90170110}), 7650 {} 7651 }; 7652 7653 static void alc269_fill_coef(struct hda_codec *codec) 7654 { 7655 struct alc_spec *spec = codec->spec; 7656 int val; 7657 7658 if (spec->codec_variant != ALC269_TYPE_ALC269VB) 7659 return; 7660 7661 if ((alc_get_coef0(codec) & 0x00ff) < 0x015) { 7662 alc_write_coef_idx(codec, 0xf, 0x960b); 7663 alc_write_coef_idx(codec, 0xe, 0x8817); 7664 } 7665 7666 if ((alc_get_coef0(codec) & 0x00ff) == 0x016) { 7667 alc_write_coef_idx(codec, 0xf, 0x960b); 7668 alc_write_coef_idx(codec, 0xe, 0x8814); 7669 } 7670 7671 if ((alc_get_coef0(codec) & 0x00ff) == 0x017) { 7672 /* Power up output pin */ 7673 alc_update_coef_idx(codec, 0x04, 0, 1<<11); 7674 } 7675 7676 if ((alc_get_coef0(codec) & 0x00ff) == 0x018) { 7677 val = alc_read_coef_idx(codec, 0xd); 7678 if (val != -1 && (val & 0x0c00) >> 10 != 0x1) { 7679 /* Capless ramp up clock control */ 7680 alc_write_coef_idx(codec, 0xd, val | (1<<10)); 7681 } 7682 val = alc_read_coef_idx(codec, 0x17); 7683 if (val != -1 && (val & 0x01c0) >> 6 != 0x4) { 7684 /* Class D power on reset */ 7685 alc_write_coef_idx(codec, 0x17, val | (1<<7)); 7686 } 7687 } 7688 7689 /* HP */ 7690 alc_update_coef_idx(codec, 0x4, 0, 1<<11); 7691 } 7692 7693 /* 7694 */ 7695 static int patch_alc269(struct hda_codec *codec) 7696 { 7697 struct alc_spec *spec; 7698 int err; 7699 7700 err = alc_alloc_spec(codec, 0x0b); 7701 if (err < 0) 7702 return err; 7703 7704 spec = codec->spec; 7705 spec->gen.shared_mic_vref_pin = 0x18; 7706 codec->power_save_node = 0; 7707 7708 #ifdef CONFIG_PM 7709 codec->patch_ops.suspend = alc269_suspend; 7710 codec->patch_ops.resume = alc269_resume; 7711 #endif 7712 spec->shutup = alc_default_shutup; 7713 spec->init_hook = alc_default_init; 7714 7715 switch (codec->core.vendor_id) { 7716 case 0x10ec0269: 7717 spec->codec_variant = ALC269_TYPE_ALC269VA; 7718 switch (alc_get_coef0(codec) & 0x00f0) { 7719 case 0x0010: 7720 if (codec->bus->pci && 7721 codec->bus->pci->subsystem_vendor == 0x1025 && 7722 spec->cdefine.platform_type == 1) 7723 err = alc_codec_rename(codec, "ALC271X"); 7724 spec->codec_variant = ALC269_TYPE_ALC269VB; 7725 break; 7726 case 0x0020: 7727 if (codec->bus->pci && 7728 codec->bus->pci->subsystem_vendor == 0x17aa && 7729 codec->bus->pci->subsystem_device == 0x21f3) 7730 err = alc_codec_rename(codec, "ALC3202"); 7731 spec->codec_variant = ALC269_TYPE_ALC269VC; 7732 break; 7733 case 0x0030: 7734 spec->codec_variant = ALC269_TYPE_ALC269VD; 7735 break; 7736 default: 7737 alc_fix_pll_init(codec, 0x20, 0x04, 15); 7738 } 7739 if (err < 0) 7740 goto error; 7741 spec->shutup = alc269_shutup; 7742 spec->init_hook = alc269_fill_coef; 7743 alc269_fill_coef(codec); 7744 break; 7745 7746 case 0x10ec0280: 7747 case 0x10ec0290: 7748 spec->codec_variant = ALC269_TYPE_ALC280; 7749 break; 7750 case 0x10ec0282: 7751 spec->codec_variant = ALC269_TYPE_ALC282; 7752 spec->shutup = alc282_shutup; 7753 spec->init_hook = alc282_init; 7754 break; 7755 case 0x10ec0233: 7756 case 0x10ec0283: 7757 spec->codec_variant = ALC269_TYPE_ALC283; 7758 spec->shutup = alc283_shutup; 7759 spec->init_hook = alc283_init; 7760 break; 7761 case 0x10ec0284: 7762 case 0x10ec0292: 7763 spec->codec_variant = ALC269_TYPE_ALC284; 7764 break; 7765 case 0x10ec0293: 7766 spec->codec_variant = ALC269_TYPE_ALC293; 7767 break; 7768 case 0x10ec0286: 7769 case 0x10ec0288: 7770 spec->codec_variant = ALC269_TYPE_ALC286; 7771 break; 7772 case 0x10ec0298: 7773 spec->codec_variant = ALC269_TYPE_ALC298; 7774 break; 7775 case 0x10ec0235: 7776 case 0x10ec0255: 7777 spec->codec_variant = ALC269_TYPE_ALC255; 7778 spec->shutup = alc256_shutup; 7779 spec->init_hook = alc256_init; 7780 break; 7781 case 0x10ec0236: 7782 case 0x10ec0256: 7783 spec->codec_variant = ALC269_TYPE_ALC256; 7784 spec->shutup = alc256_shutup; 7785 spec->init_hook = alc256_init; 7786 spec->gen.mixer_nid = 0; /* ALC256 does not have any loopback mixer path */ 7787 alc_update_coef_idx(codec, 0x36, 1 << 13, 1 << 5); /* Switch pcbeep path to Line in path*/ 7788 break; 7789 case 0x10ec0257: 7790 spec->codec_variant = ALC269_TYPE_ALC257; 7791 spec->shutup = alc256_shutup; 7792 spec->init_hook = alc256_init; 7793 spec->gen.mixer_nid = 0; 7794 break; 7795 case 0x10ec0215: 7796 case 0x10ec0285: 7797 case 0x10ec0289: 7798 spec->codec_variant = ALC269_TYPE_ALC215; 7799 spec->shutup = alc225_shutup; 7800 spec->init_hook = alc225_init; 7801 spec->gen.mixer_nid = 0; 7802 break; 7803 case 0x10ec0225: 7804 case 0x10ec0295: 7805 case 0x10ec0299: 7806 spec->codec_variant = ALC269_TYPE_ALC225; 7807 spec->shutup = alc225_shutup; 7808 spec->init_hook = alc225_init; 7809 spec->gen.mixer_nid = 0; /* no loopback on ALC225, ALC295 and ALC299 */ 7810 break; 7811 case 0x10ec0234: 7812 case 0x10ec0274: 7813 case 0x10ec0294: 7814 spec->codec_variant = ALC269_TYPE_ALC294; 7815 spec->gen.mixer_nid = 0; /* ALC2x4 does not have any loopback mixer path */ 7816 alc_update_coef_idx(codec, 0x6b, 0x0018, (1<<4) | (1<<3)); /* UAJ MIC Vref control by verb */ 7817 spec->init_hook = alc294_init; 7818 break; 7819 case 0x10ec0300: 7820 spec->codec_variant = ALC269_TYPE_ALC300; 7821 spec->gen.mixer_nid = 0; /* no loopback on ALC300 */ 7822 break; 7823 case 0x10ec0700: 7824 case 0x10ec0701: 7825 case 0x10ec0703: 7826 spec->codec_variant = ALC269_TYPE_ALC700; 7827 spec->gen.mixer_nid = 0; /* ALC700 does not have any loopback mixer path */ 7828 alc_update_coef_idx(codec, 0x4a, 1 << 15, 0); /* Combo jack auto trigger control */ 7829 spec->init_hook = alc294_init; 7830 break; 7831 7832 } 7833 7834 if (snd_hda_codec_read(codec, 0x51, 0, AC_VERB_PARAMETERS, 0) == 0x10ec5505) { 7835 spec->has_alc5505_dsp = 1; 7836 spec->init_hook = alc5505_dsp_init; 7837 } 7838 7839 alc_pre_init(codec); 7840 7841 snd_hda_pick_fixup(codec, alc269_fixup_models, 7842 alc269_fixup_tbl, alc269_fixups); 7843 snd_hda_pick_pin_fixup(codec, alc269_pin_fixup_tbl, alc269_fixups); 7844 snd_hda_pick_fixup(codec, NULL, alc269_fixup_vendor_tbl, 7845 alc269_fixups); 7846 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE); 7847 7848 alc_auto_parse_customize_define(codec); 7849 7850 if (has_cdefine_beep(codec)) 7851 spec->gen.beep_nid = 0x01; 7852 7853 /* automatic parse from the BIOS config */ 7854 err = alc269_parse_auto_config(codec); 7855 if (err < 0) 7856 goto error; 7857 7858 if (!spec->gen.no_analog && spec->gen.beep_nid && spec->gen.mixer_nid) { 7859 err = set_beep_amp(spec, spec->gen.mixer_nid, 0x04, HDA_INPUT); 7860 if (err < 0) 7861 goto error; 7862 } 7863 7864 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE); 7865 7866 return 0; 7867 7868 error: 7869 alc_free(codec); 7870 return err; 7871 } 7872 7873 /* 7874 * ALC861 7875 */ 7876 7877 static int alc861_parse_auto_config(struct hda_codec *codec) 7878 { 7879 static const hda_nid_t alc861_ignore[] = { 0x1d, 0 }; 7880 static const hda_nid_t alc861_ssids[] = { 0x0e, 0x0f, 0x0b, 0 }; 7881 return alc_parse_auto_config(codec, alc861_ignore, alc861_ssids); 7882 } 7883 7884 /* Pin config fixes */ 7885 enum { 7886 ALC861_FIXUP_FSC_AMILO_PI1505, 7887 ALC861_FIXUP_AMP_VREF_0F, 7888 ALC861_FIXUP_NO_JACK_DETECT, 7889 ALC861_FIXUP_ASUS_A6RP, 7890 ALC660_FIXUP_ASUS_W7J, 7891 }; 7892 7893 /* On some laptops, VREF of pin 0x0f is abused for controlling the main amp */ 7894 static void alc861_fixup_asus_amp_vref_0f(struct hda_codec *codec, 7895 const struct hda_fixup *fix, int action) 7896 { 7897 struct alc_spec *spec = codec->spec; 7898 unsigned int val; 7899 7900 if (action != HDA_FIXUP_ACT_INIT) 7901 return; 7902 val = snd_hda_codec_get_pin_target(codec, 0x0f); 7903 if (!(val & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN))) 7904 val |= AC_PINCTL_IN_EN; 7905 val |= AC_PINCTL_VREF_50; 7906 snd_hda_set_pin_ctl(codec, 0x0f, val); 7907 spec->gen.keep_vref_in_automute = 1; 7908 } 7909 7910 /* suppress the jack-detection */ 7911 static void alc_fixup_no_jack_detect(struct hda_codec *codec, 7912 const struct hda_fixup *fix, int action) 7913 { 7914 if (action == HDA_FIXUP_ACT_PRE_PROBE) 7915 codec->no_jack_detect = 1; 7916 } 7917 7918 static const struct hda_fixup alc861_fixups[] = { 7919 [ALC861_FIXUP_FSC_AMILO_PI1505] = { 7920 .type = HDA_FIXUP_PINS, 7921 .v.pins = (const struct hda_pintbl[]) { 7922 { 0x0b, 0x0221101f }, /* HP */ 7923 { 0x0f, 0x90170310 }, /* speaker */ 7924 { } 7925 } 7926 }, 7927 [ALC861_FIXUP_AMP_VREF_0F] = { 7928 .type = HDA_FIXUP_FUNC, 7929 .v.func = alc861_fixup_asus_amp_vref_0f, 7930 }, 7931 [ALC861_FIXUP_NO_JACK_DETECT] = { 7932 .type = HDA_FIXUP_FUNC, 7933 .v.func = alc_fixup_no_jack_detect, 7934 }, 7935 [ALC861_FIXUP_ASUS_A6RP] = { 7936 .type = HDA_FIXUP_FUNC, 7937 .v.func = alc861_fixup_asus_amp_vref_0f, 7938 .chained = true, 7939 .chain_id = ALC861_FIXUP_NO_JACK_DETECT, 7940 }, 7941 [ALC660_FIXUP_ASUS_W7J] = { 7942 .type = HDA_FIXUP_VERBS, 7943 .v.verbs = (const struct hda_verb[]) { 7944 /* ASUS W7J needs a magic pin setup on unused NID 0x10 7945 * for enabling outputs 7946 */ 7947 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24}, 7948 { } 7949 }, 7950 } 7951 }; 7952 7953 static const struct snd_pci_quirk alc861_fixup_tbl[] = { 7954 SND_PCI_QUIRK(0x1043, 0x1253, "ASUS W7J", ALC660_FIXUP_ASUS_W7J), 7955 SND_PCI_QUIRK(0x1043, 0x1263, "ASUS Z35HL", ALC660_FIXUP_ASUS_W7J), 7956 SND_PCI_QUIRK(0x1043, 0x1393, "ASUS A6Rp", ALC861_FIXUP_ASUS_A6RP), 7957 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS laptop", ALC861_FIXUP_AMP_VREF_0F), 7958 SND_PCI_QUIRK(0x1462, 0x7254, "HP DX2200", ALC861_FIXUP_NO_JACK_DETECT), 7959 SND_PCI_QUIRK(0x1584, 0x2b01, "Haier W18", ALC861_FIXUP_AMP_VREF_0F), 7960 SND_PCI_QUIRK(0x1584, 0x0000, "Uniwill ECS M31EI", ALC861_FIXUP_AMP_VREF_0F), 7961 SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", ALC861_FIXUP_FSC_AMILO_PI1505), 7962 {} 7963 }; 7964 7965 /* 7966 */ 7967 static int patch_alc861(struct hda_codec *codec) 7968 { 7969 struct alc_spec *spec; 7970 int err; 7971 7972 err = alc_alloc_spec(codec, 0x15); 7973 if (err < 0) 7974 return err; 7975 7976 spec = codec->spec; 7977 spec->gen.beep_nid = 0x23; 7978 7979 #ifdef CONFIG_PM 7980 spec->power_hook = alc_power_eapd; 7981 #endif 7982 7983 alc_pre_init(codec); 7984 7985 snd_hda_pick_fixup(codec, NULL, alc861_fixup_tbl, alc861_fixups); 7986 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE); 7987 7988 /* automatic parse from the BIOS config */ 7989 err = alc861_parse_auto_config(codec); 7990 if (err < 0) 7991 goto error; 7992 7993 if (!spec->gen.no_analog) { 7994 err = set_beep_amp(spec, 0x23, 0, HDA_OUTPUT); 7995 if (err < 0) 7996 goto error; 7997 } 7998 7999 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE); 8000 8001 return 0; 8002 8003 error: 8004 alc_free(codec); 8005 return err; 8006 } 8007 8008 /* 8009 * ALC861-VD support 8010 * 8011 * Based on ALC882 8012 * 8013 * In addition, an independent DAC 8014 */ 8015 static int alc861vd_parse_auto_config(struct hda_codec *codec) 8016 { 8017 static const hda_nid_t alc861vd_ignore[] = { 0x1d, 0 }; 8018 static const hda_nid_t alc861vd_ssids[] = { 0x15, 0x1b, 0x14, 0 }; 8019 return alc_parse_auto_config(codec, alc861vd_ignore, alc861vd_ssids); 8020 } 8021 8022 enum { 8023 ALC660VD_FIX_ASUS_GPIO1, 8024 ALC861VD_FIX_DALLAS, 8025 }; 8026 8027 /* exclude VREF80 */ 8028 static void alc861vd_fixup_dallas(struct hda_codec *codec, 8029 const struct hda_fixup *fix, int action) 8030 { 8031 if (action == HDA_FIXUP_ACT_PRE_PROBE) { 8032 snd_hda_override_pin_caps(codec, 0x18, 0x00000734); 8033 snd_hda_override_pin_caps(codec, 0x19, 0x0000073c); 8034 } 8035 } 8036 8037 /* reset GPIO1 */ 8038 static void alc660vd_fixup_asus_gpio1(struct hda_codec *codec, 8039 const struct hda_fixup *fix, int action) 8040 { 8041 struct alc_spec *spec = codec->spec; 8042 8043 if (action == HDA_FIXUP_ACT_PRE_PROBE) 8044 spec->gpio_mask |= 0x02; 8045 alc_fixup_gpio(codec, action, 0x01); 8046 } 8047 8048 static const struct hda_fixup alc861vd_fixups[] = { 8049 [ALC660VD_FIX_ASUS_GPIO1] = { 8050 .type = HDA_FIXUP_FUNC, 8051 .v.func = alc660vd_fixup_asus_gpio1, 8052 }, 8053 [ALC861VD_FIX_DALLAS] = { 8054 .type = HDA_FIXUP_FUNC, 8055 .v.func = alc861vd_fixup_dallas, 8056 }, 8057 }; 8058 8059 static const struct snd_pci_quirk alc861vd_fixup_tbl[] = { 8060 SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_FIX_DALLAS), 8061 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1), 8062 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_FIX_DALLAS), 8063 {} 8064 }; 8065 8066 /* 8067 */ 8068 static int patch_alc861vd(struct hda_codec *codec) 8069 { 8070 struct alc_spec *spec; 8071 int err; 8072 8073 err = alc_alloc_spec(codec, 0x0b); 8074 if (err < 0) 8075 return err; 8076 8077 spec = codec->spec; 8078 spec->gen.beep_nid = 0x23; 8079 8080 spec->shutup = alc_eapd_shutup; 8081 8082 alc_pre_init(codec); 8083 8084 snd_hda_pick_fixup(codec, NULL, alc861vd_fixup_tbl, alc861vd_fixups); 8085 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE); 8086 8087 /* automatic parse from the BIOS config */ 8088 err = alc861vd_parse_auto_config(codec); 8089 if (err < 0) 8090 goto error; 8091 8092 if (!spec->gen.no_analog) { 8093 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT); 8094 if (err < 0) 8095 goto error; 8096 } 8097 8098 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE); 8099 8100 return 0; 8101 8102 error: 8103 alc_free(codec); 8104 return err; 8105 } 8106 8107 /* 8108 * ALC662 support 8109 * 8110 * ALC662 is almost identical with ALC880 but has cleaner and more flexible 8111 * configuration. Each pin widget can choose any input DACs and a mixer. 8112 * Each ADC is connected from a mixer of all inputs. This makes possible 8113 * 6-channel independent captures. 8114 * 8115 * In addition, an independent DAC for the multi-playback (not used in this 8116 * driver yet). 8117 */ 8118 8119 /* 8120 * BIOS auto configuration 8121 */ 8122 8123 static int alc662_parse_auto_config(struct hda_codec *codec) 8124 { 8125 static const hda_nid_t alc662_ignore[] = { 0x1d, 0 }; 8126 static const hda_nid_t alc663_ssids[] = { 0x15, 0x1b, 0x14, 0x21 }; 8127 static const hda_nid_t alc662_ssids[] = { 0x15, 0x1b, 0x14, 0 }; 8128 const hda_nid_t *ssids; 8129 8130 if (codec->core.vendor_id == 0x10ec0272 || codec->core.vendor_id == 0x10ec0663 || 8131 codec->core.vendor_id == 0x10ec0665 || codec->core.vendor_id == 0x10ec0670 || 8132 codec->core.vendor_id == 0x10ec0671) 8133 ssids = alc663_ssids; 8134 else 8135 ssids = alc662_ssids; 8136 return alc_parse_auto_config(codec, alc662_ignore, ssids); 8137 } 8138 8139 static void alc272_fixup_mario(struct hda_codec *codec, 8140 const struct hda_fixup *fix, int action) 8141 { 8142 if (action != HDA_FIXUP_ACT_PRE_PROBE) 8143 return; 8144 if (snd_hda_override_amp_caps(codec, 0x2, HDA_OUTPUT, 8145 (0x3b << AC_AMPCAP_OFFSET_SHIFT) | 8146 (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT) | 8147 (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT) | 8148 (0 << AC_AMPCAP_MUTE_SHIFT))) 8149 codec_warn(codec, "failed to override amp caps for NID 0x2\n"); 8150 } 8151 8152 static const struct snd_pcm_chmap_elem asus_pcm_2_1_chmaps[] = { 8153 { .channels = 2, 8154 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } }, 8155 { .channels = 4, 8156 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR, 8157 SNDRV_CHMAP_NA, SNDRV_CHMAP_LFE } }, /* LFE only on right */ 8158 { } 8159 }; 8160 8161 /* override the 2.1 chmap */ 8162 static void alc_fixup_bass_chmap(struct hda_codec *codec, 8163 const struct hda_fixup *fix, int action) 8164 { 8165 if (action == HDA_FIXUP_ACT_BUILD) { 8166 struct alc_spec *spec = codec->spec; 8167 spec->gen.pcm_rec[0]->stream[0].chmap = asus_pcm_2_1_chmaps; 8168 } 8169 } 8170 8171 /* avoid D3 for keeping GPIO up */ 8172 static unsigned int gpio_led_power_filter(struct hda_codec *codec, 8173 hda_nid_t nid, 8174 unsigned int power_state) 8175 { 8176 struct alc_spec *spec = codec->spec; 8177 if (nid == codec->core.afg && power_state == AC_PWRST_D3 && spec->gpio_data) 8178 return AC_PWRST_D0; 8179 return power_state; 8180 } 8181 8182 static void alc662_fixup_led_gpio1(struct hda_codec *codec, 8183 const struct hda_fixup *fix, int action) 8184 { 8185 struct alc_spec *spec = codec->spec; 8186 8187 alc_fixup_hp_gpio_led(codec, action, 0x01, 0); 8188 if (action == HDA_FIXUP_ACT_PRE_PROBE) { 8189 spec->mute_led_polarity = 1; 8190 codec->power_filter = gpio_led_power_filter; 8191 } 8192 } 8193 8194 static void alc662_usi_automute_hook(struct hda_codec *codec, 8195 struct hda_jack_callback *jack) 8196 { 8197 struct alc_spec *spec = codec->spec; 8198 int vref; 8199 msleep(200); 8200 snd_hda_gen_hp_automute(codec, jack); 8201 8202 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0; 8203 msleep(100); 8204 snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, 8205 vref); 8206 } 8207 8208 static void alc662_fixup_usi_headset_mic(struct hda_codec *codec, 8209 const struct hda_fixup *fix, int action) 8210 { 8211 struct alc_spec *spec = codec->spec; 8212 if (action == HDA_FIXUP_ACT_PRE_PROBE) { 8213 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC; 8214 spec->gen.hp_automute_hook = alc662_usi_automute_hook; 8215 } 8216 } 8217 8218 static struct coef_fw alc668_coefs[] = { 8219 WRITE_COEF(0x01, 0xbebe), WRITE_COEF(0x02, 0xaaaa), WRITE_COEF(0x03, 0x0), 8220 WRITE_COEF(0x04, 0x0180), WRITE_COEF(0x06, 0x0), WRITE_COEF(0x07, 0x0f80), 8221 WRITE_COEF(0x08, 0x0031), WRITE_COEF(0x0a, 0x0060), WRITE_COEF(0x0b, 0x0), 8222 WRITE_COEF(0x0c, 0x7cf7), WRITE_COEF(0x0d, 0x1080), WRITE_COEF(0x0e, 0x7f7f), 8223 WRITE_COEF(0x0f, 0xcccc), WRITE_COEF(0x10, 0xddcc), WRITE_COEF(0x11, 0x0001), 8224 WRITE_COEF(0x13, 0x0), WRITE_COEF(0x14, 0x2aa0), WRITE_COEF(0x17, 0xa940), 8225 WRITE_COEF(0x19, 0x0), WRITE_COEF(0x1a, 0x0), WRITE_COEF(0x1b, 0x0), 8226 WRITE_COEF(0x1c, 0x0), WRITE_COEF(0x1d, 0x0), WRITE_COEF(0x1e, 0x7418), 8227 WRITE_COEF(0x1f, 0x0804), WRITE_COEF(0x20, 0x4200), WRITE_COEF(0x21, 0x0468), 8228 WRITE_COEF(0x22, 0x8ccc), WRITE_COEF(0x23, 0x0250), WRITE_COEF(0x24, 0x7418), 8229 WRITE_COEF(0x27, 0x0), WRITE_COEF(0x28, 0x8ccc), WRITE_COEF(0x2a, 0xff00), 8230 WRITE_COEF(0x2b, 0x8000), WRITE_COEF(0xa7, 0xff00), WRITE_COEF(0xa8, 0x8000), 8231 WRITE_COEF(0xaa, 0x2e17), WRITE_COEF(0xab, 0xa0c0), WRITE_COEF(0xac, 0x0), 8232 WRITE_COEF(0xad, 0x0), WRITE_COEF(0xae, 0x2ac6), WRITE_COEF(0xaf, 0xa480), 8233 WRITE_COEF(0xb0, 0x0), WRITE_COEF(0xb1, 0x0), WRITE_COEF(0xb2, 0x0), 8234 WRITE_COEF(0xb3, 0x0), WRITE_COEF(0xb4, 0x0), WRITE_COEF(0xb5, 0x1040), 8235 WRITE_COEF(0xb6, 0xd697), WRITE_COEF(0xb7, 0x902b), WRITE_COEF(0xb8, 0xd697), 8236 WRITE_COEF(0xb9, 0x902b), WRITE_COEF(0xba, 0xb8ba), WRITE_COEF(0xbb, 0xaaab), 8237 WRITE_COEF(0xbc, 0xaaaf), WRITE_COEF(0xbd, 0x6aaa), WRITE_COEF(0xbe, 0x1c02), 8238 WRITE_COEF(0xc0, 0x00ff), WRITE_COEF(0xc1, 0x0fa6), 8239 {} 8240 }; 8241 8242 static void alc668_restore_default_value(struct hda_codec *codec) 8243 { 8244 alc_process_coef_fw(codec, alc668_coefs); 8245 } 8246 8247 enum { 8248 ALC662_FIXUP_ASPIRE, 8249 ALC662_FIXUP_LED_GPIO1, 8250 ALC662_FIXUP_IDEAPAD, 8251 ALC272_FIXUP_MARIO, 8252 ALC662_FIXUP_CZC_P10T, 8253 ALC662_FIXUP_SKU_IGNORE, 8254 ALC662_FIXUP_HP_RP5800, 8255 ALC662_FIXUP_ASUS_MODE1, 8256 ALC662_FIXUP_ASUS_MODE2, 8257 ALC662_FIXUP_ASUS_MODE3, 8258 ALC662_FIXUP_ASUS_MODE4, 8259 ALC662_FIXUP_ASUS_MODE5, 8260 ALC662_FIXUP_ASUS_MODE6, 8261 ALC662_FIXUP_ASUS_MODE7, 8262 ALC662_FIXUP_ASUS_MODE8, 8263 ALC662_FIXUP_NO_JACK_DETECT, 8264 ALC662_FIXUP_ZOTAC_Z68, 8265 ALC662_FIXUP_INV_DMIC, 8266 ALC662_FIXUP_DELL_MIC_NO_PRESENCE, 8267 ALC668_FIXUP_DELL_MIC_NO_PRESENCE, 8268 ALC662_FIXUP_HEADSET_MODE, 8269 ALC668_FIXUP_HEADSET_MODE, 8270 ALC662_FIXUP_BASS_MODE4_CHMAP, 8271 ALC662_FIXUP_BASS_16, 8272 ALC662_FIXUP_BASS_1A, 8273 ALC662_FIXUP_BASS_CHMAP, 8274 ALC668_FIXUP_AUTO_MUTE, 8275 ALC668_FIXUP_DELL_DISABLE_AAMIX, 8276 ALC668_FIXUP_DELL_XPS13, 8277 ALC662_FIXUP_ASUS_Nx50, 8278 ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE, 8279 ALC668_FIXUP_ASUS_Nx51, 8280 ALC668_FIXUP_MIC_COEF, 8281 ALC668_FIXUP_ASUS_G751, 8282 ALC891_FIXUP_HEADSET_MODE, 8283 ALC891_FIXUP_DELL_MIC_NO_PRESENCE, 8284 ALC662_FIXUP_ACER_VERITON, 8285 ALC892_FIXUP_ASROCK_MOBO, 8286 ALC662_FIXUP_USI_FUNC, 8287 ALC662_FIXUP_USI_HEADSET_MODE, 8288 ALC662_FIXUP_LENOVO_MULTI_CODECS, 8289 }; 8290 8291 static const struct hda_fixup alc662_fixups[] = { 8292 [ALC662_FIXUP_ASPIRE] = { 8293 .type = HDA_FIXUP_PINS, 8294 .v.pins = (const struct hda_pintbl[]) { 8295 { 0x15, 0x99130112 }, /* subwoofer */ 8296 { } 8297 } 8298 }, 8299 [ALC662_FIXUP_LED_GPIO1] = { 8300 .type = HDA_FIXUP_FUNC, 8301 .v.func = alc662_fixup_led_gpio1, 8302 }, 8303 [ALC662_FIXUP_IDEAPAD] = { 8304 .type = HDA_FIXUP_PINS, 8305 .v.pins = (const struct hda_pintbl[]) { 8306 { 0x17, 0x99130112 }, /* subwoofer */ 8307 { } 8308 }, 8309 .chained = true, 8310 .chain_id = ALC662_FIXUP_LED_GPIO1, 8311 }, 8312 [ALC272_FIXUP_MARIO] = { 8313 .type = HDA_FIXUP_FUNC, 8314 .v.func = alc272_fixup_mario, 8315 }, 8316 [ALC662_FIXUP_CZC_P10T] = { 8317 .type = HDA_FIXUP_VERBS, 8318 .v.verbs = (const struct hda_verb[]) { 8319 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0}, 8320 {} 8321 } 8322 }, 8323 [ALC662_FIXUP_SKU_IGNORE] = { 8324 .type = HDA_FIXUP_FUNC, 8325 .v.func = alc_fixup_sku_ignore, 8326 }, 8327 [ALC662_FIXUP_HP_RP5800] = { 8328 .type = HDA_FIXUP_PINS, 8329 .v.pins = (const struct hda_pintbl[]) { 8330 { 0x14, 0x0221201f }, /* HP out */ 8331 { } 8332 }, 8333 .chained = true, 8334 .chain_id = ALC662_FIXUP_SKU_IGNORE 8335 }, 8336 [ALC662_FIXUP_ASUS_MODE1] = { 8337 .type = HDA_FIXUP_PINS, 8338 .v.pins = (const struct hda_pintbl[]) { 8339 { 0x14, 0x99130110 }, /* speaker */ 8340 { 0x18, 0x01a19c20 }, /* mic */ 8341 { 0x19, 0x99a3092f }, /* int-mic */ 8342 { 0x21, 0x0121401f }, /* HP out */ 8343 { } 8344 }, 8345 .chained = true, 8346 .chain_id = ALC662_FIXUP_SKU_IGNORE 8347 }, 8348 [ALC662_FIXUP_ASUS_MODE2] = { 8349 .type = HDA_FIXUP_PINS, 8350 .v.pins = (const struct hda_pintbl[]) { 8351 { 0x14, 0x99130110 }, /* speaker */ 8352 { 0x18, 0x01a19820 }, /* mic */ 8353 { 0x19, 0x99a3092f }, /* int-mic */ 8354 { 0x1b, 0x0121401f }, /* HP out */ 8355 { } 8356 }, 8357 .chained = true, 8358 .chain_id = ALC662_FIXUP_SKU_IGNORE 8359 }, 8360 [ALC662_FIXUP_ASUS_MODE3] = { 8361 .type = HDA_FIXUP_PINS, 8362 .v.pins = (const struct hda_pintbl[]) { 8363 { 0x14, 0x99130110 }, /* speaker */ 8364 { 0x15, 0x0121441f }, /* HP */ 8365 { 0x18, 0x01a19840 }, /* mic */ 8366 { 0x19, 0x99a3094f }, /* int-mic */ 8367 { 0x21, 0x01211420 }, /* HP2 */ 8368 { } 8369 }, 8370 .chained = true, 8371 .chain_id = ALC662_FIXUP_SKU_IGNORE 8372 }, 8373 [ALC662_FIXUP_ASUS_MODE4] = { 8374 .type = HDA_FIXUP_PINS, 8375 .v.pins = (const struct hda_pintbl[]) { 8376 { 0x14, 0x99130110 }, /* speaker */ 8377 { 0x16, 0x99130111 }, /* speaker */ 8378 { 0x18, 0x01a19840 }, /* mic */ 8379 { 0x19, 0x99a3094f }, /* int-mic */ 8380 { 0x21, 0x0121441f }, /* HP */ 8381 { } 8382 }, 8383 .chained = true, 8384 .chain_id = ALC662_FIXUP_SKU_IGNORE 8385 }, 8386 [ALC662_FIXUP_ASUS_MODE5] = { 8387 .type = HDA_FIXUP_PINS, 8388 .v.pins = (const struct hda_pintbl[]) { 8389 { 0x14, 0x99130110 }, /* speaker */ 8390 { 0x15, 0x0121441f }, /* HP */ 8391 { 0x16, 0x99130111 }, /* speaker */ 8392 { 0x18, 0x01a19840 }, /* mic */ 8393 { 0x19, 0x99a3094f }, /* int-mic */ 8394 { } 8395 }, 8396 .chained = true, 8397 .chain_id = ALC662_FIXUP_SKU_IGNORE 8398 }, 8399 [ALC662_FIXUP_ASUS_MODE6] = { 8400 .type = HDA_FIXUP_PINS, 8401 .v.pins = (const struct hda_pintbl[]) { 8402 { 0x14, 0x99130110 }, /* speaker */ 8403 { 0x15, 0x01211420 }, /* HP2 */ 8404 { 0x18, 0x01a19840 }, /* mic */ 8405 { 0x19, 0x99a3094f }, /* int-mic */ 8406 { 0x1b, 0x0121441f }, /* HP */ 8407 { } 8408 }, 8409 .chained = true, 8410 .chain_id = ALC662_FIXUP_SKU_IGNORE 8411 }, 8412 [ALC662_FIXUP_ASUS_MODE7] = { 8413 .type = HDA_FIXUP_PINS, 8414 .v.pins = (const struct hda_pintbl[]) { 8415 { 0x14, 0x99130110 }, /* speaker */ 8416 { 0x17, 0x99130111 }, /* speaker */ 8417 { 0x18, 0x01a19840 }, /* mic */ 8418 { 0x19, 0x99a3094f }, /* int-mic */ 8419 { 0x1b, 0x01214020 }, /* HP */ 8420 { 0x21, 0x0121401f }, /* HP */ 8421 { } 8422 }, 8423 .chained = true, 8424 .chain_id = ALC662_FIXUP_SKU_IGNORE 8425 }, 8426 [ALC662_FIXUP_ASUS_MODE8] = { 8427 .type = HDA_FIXUP_PINS, 8428 .v.pins = (const struct hda_pintbl[]) { 8429 { 0x14, 0x99130110 }, /* speaker */ 8430 { 0x12, 0x99a30970 }, /* int-mic */ 8431 { 0x15, 0x01214020 }, /* HP */ 8432 { 0x17, 0x99130111 }, /* speaker */ 8433 { 0x18, 0x01a19840 }, /* mic */ 8434 { 0x21, 0x0121401f }, /* HP */ 8435 { } 8436 }, 8437 .chained = true, 8438 .chain_id = ALC662_FIXUP_SKU_IGNORE 8439 }, 8440 [ALC662_FIXUP_NO_JACK_DETECT] = { 8441 .type = HDA_FIXUP_FUNC, 8442 .v.func = alc_fixup_no_jack_detect, 8443 }, 8444 [ALC662_FIXUP_ZOTAC_Z68] = { 8445 .type = HDA_FIXUP_PINS, 8446 .v.pins = (const struct hda_pintbl[]) { 8447 { 0x1b, 0x02214020 }, /* Front HP */ 8448 { } 8449 } 8450 }, 8451 [ALC662_FIXUP_INV_DMIC] = { 8452 .type = HDA_FIXUP_FUNC, 8453 .v.func = alc_fixup_inv_dmic, 8454 }, 8455 [ALC668_FIXUP_DELL_XPS13] = { 8456 .type = HDA_FIXUP_FUNC, 8457 .v.func = alc_fixup_dell_xps13, 8458 .chained = true, 8459 .chain_id = ALC668_FIXUP_DELL_DISABLE_AAMIX 8460 }, 8461 [ALC668_FIXUP_DELL_DISABLE_AAMIX] = { 8462 .type = HDA_FIXUP_FUNC, 8463 .v.func = alc_fixup_disable_aamix, 8464 .chained = true, 8465 .chain_id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE 8466 }, 8467 [ALC668_FIXUP_AUTO_MUTE] = { 8468 .type = HDA_FIXUP_FUNC, 8469 .v.func = alc_fixup_auto_mute_via_amp, 8470 .chained = true, 8471 .chain_id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE 8472 }, 8473 [ALC662_FIXUP_DELL_MIC_NO_PRESENCE] = { 8474 .type = HDA_FIXUP_PINS, 8475 .v.pins = (const struct hda_pintbl[]) { 8476 { 0x19, 0x03a1113c }, /* use as headset mic, without its own jack detect */ 8477 /* headphone mic by setting pin control of 0x1b (headphone out) to in + vref_50 */ 8478 { } 8479 }, 8480 .chained = true, 8481 .chain_id = ALC662_FIXUP_HEADSET_MODE 8482 }, 8483 [ALC662_FIXUP_HEADSET_MODE] = { 8484 .type = HDA_FIXUP_FUNC, 8485 .v.func = alc_fixup_headset_mode_alc662, 8486 }, 8487 [ALC668_FIXUP_DELL_MIC_NO_PRESENCE] = { 8488 .type = HDA_FIXUP_PINS, 8489 .v.pins = (const struct hda_pintbl[]) { 8490 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */ 8491 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */ 8492 { } 8493 }, 8494 .chained = true, 8495 .chain_id = ALC668_FIXUP_HEADSET_MODE 8496 }, 8497 [ALC668_FIXUP_HEADSET_MODE] = { 8498 .type = HDA_FIXUP_FUNC, 8499 .v.func = alc_fixup_headset_mode_alc668, 8500 }, 8501 [ALC662_FIXUP_BASS_MODE4_CHMAP] = { 8502 .type = HDA_FIXUP_FUNC, 8503 .v.func = alc_fixup_bass_chmap, 8504 .chained = true, 8505 .chain_id = ALC662_FIXUP_ASUS_MODE4 8506 }, 8507 [ALC662_FIXUP_BASS_16] = { 8508 .type = HDA_FIXUP_PINS, 8509 .v.pins = (const struct hda_pintbl[]) { 8510 {0x16, 0x80106111}, /* bass speaker */ 8511 {} 8512 }, 8513 .chained = true, 8514 .chain_id = ALC662_FIXUP_BASS_CHMAP, 8515 }, 8516 [ALC662_FIXUP_BASS_1A] = { 8517 .type = HDA_FIXUP_PINS, 8518 .v.pins = (const struct hda_pintbl[]) { 8519 {0x1a, 0x80106111}, /* bass speaker */ 8520 {} 8521 }, 8522 .chained = true, 8523 .chain_id = ALC662_FIXUP_BASS_CHMAP, 8524 }, 8525 [ALC662_FIXUP_BASS_CHMAP] = { 8526 .type = HDA_FIXUP_FUNC, 8527 .v.func = alc_fixup_bass_chmap, 8528 }, 8529 [ALC662_FIXUP_ASUS_Nx50] = { 8530 .type = HDA_FIXUP_FUNC, 8531 .v.func = alc_fixup_auto_mute_via_amp, 8532 .chained = true, 8533 .chain_id = ALC662_FIXUP_BASS_1A 8534 }, 8535 [ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE] = { 8536 .type = HDA_FIXUP_FUNC, 8537 .v.func = alc_fixup_headset_mode_alc668, 8538 .chain_id = ALC662_FIXUP_BASS_CHMAP 8539 }, 8540 [ALC668_FIXUP_ASUS_Nx51] = { 8541 .type = HDA_FIXUP_PINS, 8542 .v.pins = (const struct hda_pintbl[]) { 8543 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */ 8544 { 0x1a, 0x90170151 }, /* bass speaker */ 8545 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */ 8546 {} 8547 }, 8548 .chained = true, 8549 .chain_id = ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE, 8550 }, 8551 [ALC668_FIXUP_MIC_COEF] = { 8552 .type = HDA_FIXUP_VERBS, 8553 .v.verbs = (const struct hda_verb[]) { 8554 { 0x20, AC_VERB_SET_COEF_INDEX, 0xc3 }, 8555 { 0x20, AC_VERB_SET_PROC_COEF, 0x4000 }, 8556 {} 8557 }, 8558 }, 8559 [ALC668_FIXUP_ASUS_G751] = { 8560 .type = HDA_FIXUP_PINS, 8561 .v.pins = (const struct hda_pintbl[]) { 8562 { 0x16, 0x0421101f }, /* HP */ 8563 {} 8564 }, 8565 .chained = true, 8566 .chain_id = ALC668_FIXUP_MIC_COEF 8567 }, 8568 [ALC891_FIXUP_HEADSET_MODE] = { 8569 .type = HDA_FIXUP_FUNC, 8570 .v.func = alc_fixup_headset_mode, 8571 }, 8572 [ALC891_FIXUP_DELL_MIC_NO_PRESENCE] = { 8573 .type = HDA_FIXUP_PINS, 8574 .v.pins = (const struct hda_pintbl[]) { 8575 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */ 8576 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */ 8577 { } 8578 }, 8579 .chained = true, 8580 .chain_id = ALC891_FIXUP_HEADSET_MODE 8581 }, 8582 [ALC662_FIXUP_ACER_VERITON] = { 8583 .type = HDA_FIXUP_PINS, 8584 .v.pins = (const struct hda_pintbl[]) { 8585 { 0x15, 0x50170120 }, /* no internal speaker */ 8586 { } 8587 } 8588 }, 8589 [ALC892_FIXUP_ASROCK_MOBO] = { 8590 .type = HDA_FIXUP_PINS, 8591 .v.pins = (const struct hda_pintbl[]) { 8592 { 0x15, 0x40f000f0 }, /* disabled */ 8593 { 0x16, 0x40f000f0 }, /* disabled */ 8594 { } 8595 } 8596 }, 8597 [ALC662_FIXUP_USI_FUNC] = { 8598 .type = HDA_FIXUP_FUNC, 8599 .v.func = alc662_fixup_usi_headset_mic, 8600 }, 8601 [ALC662_FIXUP_USI_HEADSET_MODE] = { 8602 .type = HDA_FIXUP_PINS, 8603 .v.pins = (const struct hda_pintbl[]) { 8604 { 0x19, 0x02a1913c }, /* use as headset mic, without its own jack detect */ 8605 { 0x18, 0x01a1903d }, 8606 { } 8607 }, 8608 .chained = true, 8609 .chain_id = ALC662_FIXUP_USI_FUNC 8610 }, 8611 [ALC662_FIXUP_LENOVO_MULTI_CODECS] = { 8612 .type = HDA_FIXUP_FUNC, 8613 .v.func = alc233_alc662_fixup_lenovo_dual_codecs, 8614 }, 8615 }; 8616 8617 static const struct snd_pci_quirk alc662_fixup_tbl[] = { 8618 SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2), 8619 SND_PCI_QUIRK(0x1025, 0x022f, "Acer Aspire One", ALC662_FIXUP_INV_DMIC), 8620 SND_PCI_QUIRK(0x1025, 0x0241, "Packard Bell DOTS", ALC662_FIXUP_INV_DMIC), 8621 SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE), 8622 SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE), 8623 SND_PCI_QUIRK(0x1025, 0x0349, "eMachines eM250", ALC662_FIXUP_INV_DMIC), 8624 SND_PCI_QUIRK(0x1025, 0x034a, "Gateway LT27", ALC662_FIXUP_INV_DMIC), 8625 SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE), 8626 SND_PCI_QUIRK(0x1028, 0x05d8, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE), 8627 SND_PCI_QUIRK(0x1028, 0x05db, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE), 8628 SND_PCI_QUIRK(0x1028, 0x05fe, "Dell XPS 15", ALC668_FIXUP_DELL_XPS13), 8629 SND_PCI_QUIRK(0x1028, 0x060a, "Dell XPS 13", ALC668_FIXUP_DELL_XPS13), 8630 SND_PCI_QUIRK(0x1028, 0x060d, "Dell M3800", ALC668_FIXUP_DELL_XPS13), 8631 SND_PCI_QUIRK(0x1028, 0x0625, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE), 8632 SND_PCI_QUIRK(0x1028, 0x0626, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE), 8633 SND_PCI_QUIRK(0x1028, 0x0696, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE), 8634 SND_PCI_QUIRK(0x1028, 0x0698, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE), 8635 SND_PCI_QUIRK(0x1028, 0x069f, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE), 8636 SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800), 8637 SND_PCI_QUIRK(0x1043, 0x1080, "Asus UX501VW", ALC668_FIXUP_HEADSET_MODE), 8638 SND_PCI_QUIRK(0x1043, 0x11cd, "Asus N550", ALC662_FIXUP_ASUS_Nx50), 8639 SND_PCI_QUIRK(0x1043, 0x13df, "Asus N550JX", ALC662_FIXUP_BASS_1A), 8640 SND_PCI_QUIRK(0x1043, 0x129d, "Asus N750", ALC662_FIXUP_ASUS_Nx50), 8641 SND_PCI_QUIRK(0x1043, 0x12ff, "ASUS G751", ALC668_FIXUP_ASUS_G751), 8642 SND_PCI_QUIRK(0x1043, 0x1477, "ASUS N56VZ", ALC662_FIXUP_BASS_MODE4_CHMAP), 8643 SND_PCI_QUIRK(0x1043, 0x15a7, "ASUS UX51VZH", ALC662_FIXUP_BASS_16), 8644 SND_PCI_QUIRK(0x1043, 0x177d, "ASUS N551", ALC668_FIXUP_ASUS_Nx51), 8645 SND_PCI_QUIRK(0x1043, 0x17bd, "ASUS N751", ALC668_FIXUP_ASUS_Nx51), 8646 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71SL", ALC662_FIXUP_ASUS_MODE8), 8647 SND_PCI_QUIRK(0x1043, 0x1b73, "ASUS N55SF", ALC662_FIXUP_BASS_16), 8648 SND_PCI_QUIRK(0x1043, 0x1bf3, "ASUS N76VZ", ALC662_FIXUP_BASS_MODE4_CHMAP), 8649 SND_PCI_QUIRK(0x1043, 0x8469, "ASUS mobo", ALC662_FIXUP_NO_JACK_DETECT), 8650 SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2), 8651 SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD), 8652 SND_PCI_QUIRK(0x14cd, 0x5003, "USI", ALC662_FIXUP_USI_HEADSET_MODE), 8653 SND_PCI_QUIRK(0x17aa, 0x1036, "Lenovo P520", ALC662_FIXUP_LENOVO_MULTI_CODECS), 8654 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD), 8655 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD), 8656 SND_PCI_QUIRK(0x1849, 0x5892, "ASRock B150M", ALC892_FIXUP_ASROCK_MOBO), 8657 SND_PCI_QUIRK(0x19da, 0xa130, "Zotac Z68", ALC662_FIXUP_ZOTAC_Z68), 8658 SND_PCI_QUIRK(0x1b0a, 0x01b8, "ACER Veriton", ALC662_FIXUP_ACER_VERITON), 8659 SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T), 8660 8661 #if 0 8662 /* Below is a quirk table taken from the old code. 8663 * Basically the device should work as is without the fixup table. 8664 * If BIOS doesn't give a proper info, enable the corresponding 8665 * fixup entry. 8666 */ 8667 SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC662_FIXUP_ASUS_MODE1), 8668 SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC662_FIXUP_ASUS_MODE3), 8669 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC662_FIXUP_ASUS_MODE1), 8670 SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC662_FIXUP_ASUS_MODE3), 8671 SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1), 8672 SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2), 8673 SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC662_FIXUP_ASUS_MODE1), 8674 SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC662_FIXUP_ASUS_MODE1), 8675 SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC662_FIXUP_ASUS_MODE1), 8676 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_FIXUP_ASUS_MODE2), 8677 SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC662_FIXUP_ASUS_MODE7), 8678 SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC662_FIXUP_ASUS_MODE7), 8679 SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC662_FIXUP_ASUS_MODE8), 8680 SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC662_FIXUP_ASUS_MODE3), 8681 SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC662_FIXUP_ASUS_MODE1), 8682 SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2), 8683 SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_FIXUP_ASUS_MODE2), 8684 SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC662_FIXUP_ASUS_MODE1), 8685 SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_FIXUP_ASUS_MODE2), 8686 SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC662_FIXUP_ASUS_MODE6), 8687 SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC662_FIXUP_ASUS_MODE6), 8688 SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_FIXUP_ASUS_MODE2), 8689 SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC662_FIXUP_ASUS_MODE1), 8690 SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC662_FIXUP_ASUS_MODE3), 8691 SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_FIXUP_ASUS_MODE2), 8692 SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_FIXUP_ASUS_MODE2), 8693 SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC662_FIXUP_ASUS_MODE5), 8694 SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC662_FIXUP_ASUS_MODE6), 8695 SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_FIXUP_ASUS_MODE2), 8696 SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC662_FIXUP_ASUS_MODE1), 8697 SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_FIXUP_ASUS_MODE2), 8698 SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_FIXUP_ASUS_MODE2), 8699 SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC662_FIXUP_ASUS_MODE3), 8700 SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC662_FIXUP_ASUS_MODE3), 8701 SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC662_FIXUP_ASUS_MODE1), 8702 SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC662_FIXUP_ASUS_MODE1), 8703 SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC662_FIXUP_ASUS_MODE1), 8704 SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC662_FIXUP_ASUS_MODE1), 8705 SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC662_FIXUP_ASUS_MODE1), 8706 SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_FIXUP_ASUS_MODE2), 8707 SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_FIXUP_ASUS_MODE2), 8708 SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC662_FIXUP_ASUS_MODE1), 8709 SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC662_FIXUP_ASUS_MODE1), 8710 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC662_FIXUP_ASUS_MODE3), 8711 SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC662_FIXUP_ASUS_MODE1), 8712 SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC662_FIXUP_ASUS_MODE1), 8713 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC662_FIXUP_ASUS_MODE1), 8714 SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_FIXUP_ASUS_MODE2), 8715 SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1), 8716 SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE4), 8717 #endif 8718 {} 8719 }; 8720 8721 static const struct hda_model_fixup alc662_fixup_models[] = { 8722 {.id = ALC662_FIXUP_ASPIRE, .name = "aspire"}, 8723 {.id = ALC662_FIXUP_IDEAPAD, .name = "ideapad"}, 8724 {.id = ALC272_FIXUP_MARIO, .name = "mario"}, 8725 {.id = ALC662_FIXUP_HP_RP5800, .name = "hp-rp5800"}, 8726 {.id = ALC662_FIXUP_ASUS_MODE1, .name = "asus-mode1"}, 8727 {.id = ALC662_FIXUP_ASUS_MODE2, .name = "asus-mode2"}, 8728 {.id = ALC662_FIXUP_ASUS_MODE3, .name = "asus-mode3"}, 8729 {.id = ALC662_FIXUP_ASUS_MODE4, .name = "asus-mode4"}, 8730 {.id = ALC662_FIXUP_ASUS_MODE5, .name = "asus-mode5"}, 8731 {.id = ALC662_FIXUP_ASUS_MODE6, .name = "asus-mode6"}, 8732 {.id = ALC662_FIXUP_ASUS_MODE7, .name = "asus-mode7"}, 8733 {.id = ALC662_FIXUP_ASUS_MODE8, .name = "asus-mode8"}, 8734 {.id = ALC662_FIXUP_ZOTAC_Z68, .name = "zotac-z68"}, 8735 {.id = ALC662_FIXUP_INV_DMIC, .name = "inv-dmic"}, 8736 {.id = ALC662_FIXUP_DELL_MIC_NO_PRESENCE, .name = "alc662-headset-multi"}, 8737 {.id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE, .name = "dell-headset-multi"}, 8738 {.id = ALC662_FIXUP_HEADSET_MODE, .name = "alc662-headset"}, 8739 {.id = ALC668_FIXUP_HEADSET_MODE, .name = "alc668-headset"}, 8740 {.id = ALC662_FIXUP_BASS_16, .name = "bass16"}, 8741 {.id = ALC662_FIXUP_BASS_1A, .name = "bass1a"}, 8742 {.id = ALC668_FIXUP_AUTO_MUTE, .name = "automute"}, 8743 {.id = ALC668_FIXUP_DELL_XPS13, .name = "dell-xps13"}, 8744 {.id = ALC662_FIXUP_ASUS_Nx50, .name = "asus-nx50"}, 8745 {.id = ALC668_FIXUP_ASUS_Nx51, .name = "asus-nx51"}, 8746 {.id = ALC668_FIXUP_ASUS_G751, .name = "asus-g751"}, 8747 {.id = ALC891_FIXUP_HEADSET_MODE, .name = "alc891-headset"}, 8748 {.id = ALC891_FIXUP_DELL_MIC_NO_PRESENCE, .name = "alc891-headset-multi"}, 8749 {.id = ALC662_FIXUP_ACER_VERITON, .name = "acer-veriton"}, 8750 {.id = ALC892_FIXUP_ASROCK_MOBO, .name = "asrock-mobo"}, 8751 {.id = ALC662_FIXUP_USI_HEADSET_MODE, .name = "usi-headset"}, 8752 {.id = ALC662_FIXUP_LENOVO_MULTI_CODECS, .name = "dual-codecs"}, 8753 {} 8754 }; 8755 8756 static const struct snd_hda_pin_quirk alc662_pin_fixup_tbl[] = { 8757 SND_HDA_PIN_QUIRK(0x10ec0867, 0x1028, "Dell", ALC891_FIXUP_DELL_MIC_NO_PRESENCE, 8758 {0x17, 0x02211010}, 8759 {0x18, 0x01a19030}, 8760 {0x1a, 0x01813040}, 8761 {0x21, 0x01014020}), 8762 SND_HDA_PIN_QUIRK(0x10ec0662, 0x1028, "Dell", ALC662_FIXUP_DELL_MIC_NO_PRESENCE, 8763 {0x14, 0x01014010}, 8764 {0x18, 0x01a19020}, 8765 {0x1a, 0x0181302f}, 8766 {0x1b, 0x0221401f}), 8767 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE, 8768 {0x12, 0x99a30130}, 8769 {0x14, 0x90170110}, 8770 {0x15, 0x0321101f}, 8771 {0x16, 0x03011020}), 8772 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE, 8773 {0x12, 0x99a30140}, 8774 {0x14, 0x90170110}, 8775 {0x15, 0x0321101f}, 8776 {0x16, 0x03011020}), 8777 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE, 8778 {0x12, 0x99a30150}, 8779 {0x14, 0x90170110}, 8780 {0x15, 0x0321101f}, 8781 {0x16, 0x03011020}), 8782 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE, 8783 {0x14, 0x90170110}, 8784 {0x15, 0x0321101f}, 8785 {0x16, 0x03011020}), 8786 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell XPS 15", ALC668_FIXUP_AUTO_MUTE, 8787 {0x12, 0x90a60130}, 8788 {0x14, 0x90170110}, 8789 {0x15, 0x0321101f}), 8790 {} 8791 }; 8792 8793 /* 8794 */ 8795 static int patch_alc662(struct hda_codec *codec) 8796 { 8797 struct alc_spec *spec; 8798 int err; 8799 8800 err = alc_alloc_spec(codec, 0x0b); 8801 if (err < 0) 8802 return err; 8803 8804 spec = codec->spec; 8805 8806 spec->shutup = alc_eapd_shutup; 8807 8808 /* handle multiple HPs as is */ 8809 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP; 8810 8811 alc_fix_pll_init(codec, 0x20, 0x04, 15); 8812 8813 switch (codec->core.vendor_id) { 8814 case 0x10ec0668: 8815 spec->init_hook = alc668_restore_default_value; 8816 break; 8817 } 8818 8819 alc_pre_init(codec); 8820 8821 snd_hda_pick_fixup(codec, alc662_fixup_models, 8822 alc662_fixup_tbl, alc662_fixups); 8823 snd_hda_pick_pin_fixup(codec, alc662_pin_fixup_tbl, alc662_fixups); 8824 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE); 8825 8826 alc_auto_parse_customize_define(codec); 8827 8828 if (has_cdefine_beep(codec)) 8829 spec->gen.beep_nid = 0x01; 8830 8831 if ((alc_get_coef0(codec) & (1 << 14)) && 8832 codec->bus->pci && codec->bus->pci->subsystem_vendor == 0x1025 && 8833 spec->cdefine.platform_type == 1) { 8834 err = alc_codec_rename(codec, "ALC272X"); 8835 if (err < 0) 8836 goto error; 8837 } 8838 8839 /* automatic parse from the BIOS config */ 8840 err = alc662_parse_auto_config(codec); 8841 if (err < 0) 8842 goto error; 8843 8844 if (!spec->gen.no_analog && spec->gen.beep_nid) { 8845 switch (codec->core.vendor_id) { 8846 case 0x10ec0662: 8847 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT); 8848 break; 8849 case 0x10ec0272: 8850 case 0x10ec0663: 8851 case 0x10ec0665: 8852 case 0x10ec0668: 8853 err = set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT); 8854 break; 8855 case 0x10ec0273: 8856 err = set_beep_amp(spec, 0x0b, 0x03, HDA_INPUT); 8857 break; 8858 } 8859 if (err < 0) 8860 goto error; 8861 } 8862 8863 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE); 8864 8865 return 0; 8866 8867 error: 8868 alc_free(codec); 8869 return err; 8870 } 8871 8872 /* 8873 * ALC680 support 8874 */ 8875 8876 static int alc680_parse_auto_config(struct hda_codec *codec) 8877 { 8878 return alc_parse_auto_config(codec, NULL, NULL); 8879 } 8880 8881 /* 8882 */ 8883 static int patch_alc680(struct hda_codec *codec) 8884 { 8885 int err; 8886 8887 /* ALC680 has no aa-loopback mixer */ 8888 err = alc_alloc_spec(codec, 0); 8889 if (err < 0) 8890 return err; 8891 8892 /* automatic parse from the BIOS config */ 8893 err = alc680_parse_auto_config(codec); 8894 if (err < 0) { 8895 alc_free(codec); 8896 return err; 8897 } 8898 8899 return 0; 8900 } 8901 8902 /* 8903 * patch entries 8904 */ 8905 static const struct hda_device_id snd_hda_id_realtek[] = { 8906 HDA_CODEC_ENTRY(0x10ec0215, "ALC215", patch_alc269), 8907 HDA_CODEC_ENTRY(0x10ec0221, "ALC221", patch_alc269), 8908 HDA_CODEC_ENTRY(0x10ec0225, "ALC225", patch_alc269), 8909 HDA_CODEC_ENTRY(0x10ec0231, "ALC231", patch_alc269), 8910 HDA_CODEC_ENTRY(0x10ec0233, "ALC233", patch_alc269), 8911 HDA_CODEC_ENTRY(0x10ec0234, "ALC234", patch_alc269), 8912 HDA_CODEC_ENTRY(0x10ec0235, "ALC233", patch_alc269), 8913 HDA_CODEC_ENTRY(0x10ec0236, "ALC236", patch_alc269), 8914 HDA_CODEC_ENTRY(0x10ec0255, "ALC255", patch_alc269), 8915 HDA_CODEC_ENTRY(0x10ec0256, "ALC256", patch_alc269), 8916 HDA_CODEC_ENTRY(0x10ec0257, "ALC257", patch_alc269), 8917 HDA_CODEC_ENTRY(0x10ec0260, "ALC260", patch_alc260), 8918 HDA_CODEC_ENTRY(0x10ec0262, "ALC262", patch_alc262), 8919 HDA_CODEC_ENTRY(0x10ec0267, "ALC267", patch_alc268), 8920 HDA_CODEC_ENTRY(0x10ec0268, "ALC268", patch_alc268), 8921 HDA_CODEC_ENTRY(0x10ec0269, "ALC269", patch_alc269), 8922 HDA_CODEC_ENTRY(0x10ec0270, "ALC270", patch_alc269), 8923 HDA_CODEC_ENTRY(0x10ec0272, "ALC272", patch_alc662), 8924 HDA_CODEC_ENTRY(0x10ec0274, "ALC274", patch_alc269), 8925 HDA_CODEC_ENTRY(0x10ec0275, "ALC275", patch_alc269), 8926 HDA_CODEC_ENTRY(0x10ec0276, "ALC276", patch_alc269), 8927 HDA_CODEC_ENTRY(0x10ec0280, "ALC280", patch_alc269), 8928 HDA_CODEC_ENTRY(0x10ec0282, "ALC282", patch_alc269), 8929 HDA_CODEC_ENTRY(0x10ec0283, "ALC283", patch_alc269), 8930 HDA_CODEC_ENTRY(0x10ec0284, "ALC284", patch_alc269), 8931 HDA_CODEC_ENTRY(0x10ec0285, "ALC285", patch_alc269), 8932 HDA_CODEC_ENTRY(0x10ec0286, "ALC286", patch_alc269), 8933 HDA_CODEC_ENTRY(0x10ec0288, "ALC288", patch_alc269), 8934 HDA_CODEC_ENTRY(0x10ec0289, "ALC289", patch_alc269), 8935 HDA_CODEC_ENTRY(0x10ec0290, "ALC290", patch_alc269), 8936 HDA_CODEC_ENTRY(0x10ec0292, "ALC292", patch_alc269), 8937 HDA_CODEC_ENTRY(0x10ec0293, "ALC293", patch_alc269), 8938 HDA_CODEC_ENTRY(0x10ec0294, "ALC294", patch_alc269), 8939 HDA_CODEC_ENTRY(0x10ec0295, "ALC295", patch_alc269), 8940 HDA_CODEC_ENTRY(0x10ec0298, "ALC298", patch_alc269), 8941 HDA_CODEC_ENTRY(0x10ec0299, "ALC299", patch_alc269), 8942 HDA_CODEC_ENTRY(0x10ec0300, "ALC300", patch_alc269), 8943 HDA_CODEC_REV_ENTRY(0x10ec0861, 0x100340, "ALC660", patch_alc861), 8944 HDA_CODEC_ENTRY(0x10ec0660, "ALC660-VD", patch_alc861vd), 8945 HDA_CODEC_ENTRY(0x10ec0861, "ALC861", patch_alc861), 8946 HDA_CODEC_ENTRY(0x10ec0862, "ALC861-VD", patch_alc861vd), 8947 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100002, "ALC662 rev2", patch_alc882), 8948 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100101, "ALC662 rev1", patch_alc662), 8949 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100300, "ALC662 rev3", patch_alc662), 8950 HDA_CODEC_ENTRY(0x10ec0663, "ALC663", patch_alc662), 8951 HDA_CODEC_ENTRY(0x10ec0665, "ALC665", patch_alc662), 8952 HDA_CODEC_ENTRY(0x10ec0667, "ALC667", patch_alc662), 8953 HDA_CODEC_ENTRY(0x10ec0668, "ALC668", patch_alc662), 8954 HDA_CODEC_ENTRY(0x10ec0670, "ALC670", patch_alc662), 8955 HDA_CODEC_ENTRY(0x10ec0671, "ALC671", patch_alc662), 8956 HDA_CODEC_ENTRY(0x10ec0680, "ALC680", patch_alc680), 8957 HDA_CODEC_ENTRY(0x10ec0700, "ALC700", patch_alc269), 8958 HDA_CODEC_ENTRY(0x10ec0701, "ALC701", patch_alc269), 8959 HDA_CODEC_ENTRY(0x10ec0703, "ALC703", patch_alc269), 8960 HDA_CODEC_ENTRY(0x10ec0867, "ALC891", patch_alc662), 8961 HDA_CODEC_ENTRY(0x10ec0880, "ALC880", patch_alc880), 8962 HDA_CODEC_ENTRY(0x10ec0882, "ALC882", patch_alc882), 8963 HDA_CODEC_ENTRY(0x10ec0883, "ALC883", patch_alc882), 8964 HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100101, "ALC889A", patch_alc882), 8965 HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100103, "ALC889A", patch_alc882), 8966 HDA_CODEC_ENTRY(0x10ec0885, "ALC885", patch_alc882), 8967 HDA_CODEC_ENTRY(0x10ec0887, "ALC887", patch_alc882), 8968 HDA_CODEC_REV_ENTRY(0x10ec0888, 0x100101, "ALC1200", patch_alc882), 8969 HDA_CODEC_ENTRY(0x10ec0888, "ALC888", patch_alc882), 8970 HDA_CODEC_ENTRY(0x10ec0889, "ALC889", patch_alc882), 8971 HDA_CODEC_ENTRY(0x10ec0892, "ALC892", patch_alc662), 8972 HDA_CODEC_ENTRY(0x10ec0899, "ALC898", patch_alc882), 8973 HDA_CODEC_ENTRY(0x10ec0900, "ALC1150", patch_alc882), 8974 HDA_CODEC_ENTRY(0x10ec1168, "ALC1220", patch_alc882), 8975 HDA_CODEC_ENTRY(0x10ec1220, "ALC1220", patch_alc882), 8976 {} /* terminator */ 8977 }; 8978 MODULE_DEVICE_TABLE(hdaudio, snd_hda_id_realtek); 8979 8980 MODULE_LICENSE("GPL"); 8981 MODULE_DESCRIPTION("Realtek HD-audio codec"); 8982 8983 static struct hda_codec_driver realtek_driver = { 8984 .id = snd_hda_id_realtek, 8985 }; 8986 8987 module_hda_codec_driver(realtek_driver); 8988