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