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