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