1 /*
2 * Universal Interface for Intel High Definition Audio Codec
3 *
4 * HD audio interface patch for SigmaTel STAC92xx
5 *
6 * Copyright (c) 2005 Embedded Alley Solutions, Inc.
7 * Matt Porter <mporter@embeddedalley.com>
8 *
9 * Based on patch_cmedia.c and patch_realtek.c
10 * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de>
11 *
12 * This driver is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This driver is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 */
26
27 #include <linux/init.h>
28 #include <linux/delay.h>
29 #include <linux/slab.h>
30 #include <linux/pci.h>
31 #include <linux/dmi.h>
32 #include <linux/module.h>
33 #include <sound/core.h>
34 #include <sound/jack.h>
35 #include "hda_codec.h"
36 #include "hda_local.h"
37 #include "hda_auto_parser.h"
38 #include "hda_beep.h"
39 #include "hda_jack.h"
40 #include "hda_generic.h"
41
42 enum {
43 STAC_REF,
44 STAC_9200_OQO,
45 STAC_9200_DELL_D21,
46 STAC_9200_DELL_D22,
47 STAC_9200_DELL_D23,
48 STAC_9200_DELL_M21,
49 STAC_9200_DELL_M22,
50 STAC_9200_DELL_M23,
51 STAC_9200_DELL_M24,
52 STAC_9200_DELL_M25,
53 STAC_9200_DELL_M26,
54 STAC_9200_DELL_M27,
55 STAC_9200_M4,
56 STAC_9200_M4_2,
57 STAC_9200_PANASONIC,
58 STAC_9200_EAPD_INIT,
59 STAC_9200_MODELS
60 };
61
62 enum {
63 STAC_9205_REF,
64 STAC_9205_DELL_M42,
65 STAC_9205_DELL_M43,
66 STAC_9205_DELL_M44,
67 STAC_9205_EAPD,
68 STAC_9205_MODELS
69 };
70
71 enum {
72 STAC_92HD73XX_NO_JD, /* no jack-detection */
73 STAC_92HD73XX_REF,
74 STAC_92HD73XX_INTEL,
75 STAC_DELL_M6_AMIC,
76 STAC_DELL_M6_DMIC,
77 STAC_DELL_M6_BOTH,
78 STAC_DELL_EQ,
79 STAC_ALIENWARE_M17X,
80 STAC_92HD89XX_HP_FRONT_JACK,
81 STAC_92HD89XX_HP_Z1_G2_RIGHT_MIC_JACK,
82 STAC_92HD73XX_ASUS_MOBO,
83 STAC_92HD73XX_MODELS
84 };
85
86 enum {
87 STAC_92HD83XXX_REF,
88 STAC_92HD83XXX_PWR_REF,
89 STAC_DELL_S14,
90 STAC_DELL_VOSTRO_3500,
91 STAC_92HD83XXX_HP_cNB11_INTQUAD,
92 STAC_HP_DV7_4000,
93 STAC_HP_ZEPHYR,
94 STAC_92HD83XXX_HP_LED,
95 STAC_92HD83XXX_HP_INV_LED,
96 STAC_92HD83XXX_HP_MIC_LED,
97 STAC_HP_LED_GPIO10,
98 STAC_92HD83XXX_HEADSET_JACK,
99 STAC_92HD83XXX_HP,
100 STAC_HP_ENVY_BASS,
101 STAC_HP_BNB13_EQ,
102 STAC_HP_ENVY_TS_BASS,
103 STAC_HP_ENVY_TS_DAC_BIND,
104 STAC_92HD83XXX_GPIO10_EAPD,
105 STAC_92HD83XXX_MODELS
106 };
107
108 enum {
109 STAC_92HD71BXX_REF,
110 STAC_DELL_M4_1,
111 STAC_DELL_M4_2,
112 STAC_DELL_M4_3,
113 STAC_HP_M4,
114 STAC_HP_DV4,
115 STAC_HP_DV5,
116 STAC_HP_HDX,
117 STAC_92HD71BXX_HP,
118 STAC_92HD71BXX_NO_DMIC,
119 STAC_92HD71BXX_NO_SMUX,
120 STAC_92HD71BXX_MODELS
121 };
122
123 enum {
124 STAC_92HD95_HP_LED,
125 STAC_92HD95_HP_BASS,
126 STAC_92HD95_MODELS
127 };
128
129 enum {
130 STAC_925x_REF,
131 STAC_M1,
132 STAC_M1_2,
133 STAC_M2,
134 STAC_M2_2,
135 STAC_M3,
136 STAC_M5,
137 STAC_M6,
138 STAC_925x_MODELS
139 };
140
141 enum {
142 STAC_D945_REF,
143 STAC_D945GTP3,
144 STAC_D945GTP5,
145 STAC_INTEL_MAC_V1,
146 STAC_INTEL_MAC_V2,
147 STAC_INTEL_MAC_V3,
148 STAC_INTEL_MAC_V4,
149 STAC_INTEL_MAC_V5,
150 STAC_INTEL_MAC_AUTO,
151 STAC_ECS_202,
152 STAC_922X_DELL_D81,
153 STAC_922X_DELL_D82,
154 STAC_922X_DELL_M81,
155 STAC_922X_DELL_M82,
156 STAC_922X_INTEL_MAC_GPIO,
157 STAC_922X_MODELS
158 };
159
160 enum {
161 STAC_D965_REF_NO_JD, /* no jack-detection */
162 STAC_D965_REF,
163 STAC_D965_3ST,
164 STAC_D965_5ST,
165 STAC_D965_5ST_NO_FP,
166 STAC_D965_VERBS,
167 STAC_DELL_3ST,
168 STAC_DELL_BIOS,
169 STAC_DELL_BIOS_AMIC,
170 STAC_DELL_BIOS_SPDIF,
171 STAC_927X_DELL_DMIC,
172 STAC_927X_VOLKNOB,
173 STAC_927X_MODELS
174 };
175
176 enum {
177 STAC_9872_VAIO,
178 STAC_9872_MODELS
179 };
180
181 struct sigmatel_spec {
182 struct hda_gen_spec gen;
183
184 unsigned int eapd_switch: 1;
185 unsigned int linear_tone_beep:1;
186 unsigned int headset_jack:1; /* 4-pin headset jack (hp + mono mic) */
187 unsigned int volknob_init:1; /* special volume-knob initialization */
188 unsigned int powerdown_adcs:1;
189 unsigned int have_spdif_mux:1;
190
191 /* gpio lines */
192 unsigned int eapd_mask;
193 unsigned int gpio_mask;
194 unsigned int gpio_dir;
195 unsigned int gpio_data;
196 unsigned int gpio_mute;
197 unsigned int gpio_led;
198 unsigned int gpio_led_polarity;
199 unsigned int vref_mute_led_nid; /* pin NID for mute-LED vref control */
200 unsigned int vref_led;
201 int default_polarity;
202
203 unsigned int mic_mute_led_gpio; /* capture mute LED GPIO */
204 unsigned int mic_enabled; /* current mic mute state (bitmask) */
205
206 /* stream */
207 unsigned int stream_delay;
208
209 /* analog loopback */
210 const struct snd_kcontrol_new *aloopback_ctl;
211 unsigned int aloopback;
212 unsigned char aloopback_mask;
213 unsigned char aloopback_shift;
214
215 /* power management */
216 unsigned int power_map_bits;
217 unsigned int num_pwrs;
218 const hda_nid_t *pwr_nids;
219 unsigned int active_adcs;
220
221 /* beep widgets */
222 hda_nid_t anabeep_nid;
223
224 /* SPDIF-out mux */
225 const char * const *spdif_labels;
226 struct hda_input_mux spdif_mux;
227 unsigned int cur_smux[2];
228 };
229
230 #define AC_VERB_IDT_SET_POWER_MAP 0x7ec
231 #define AC_VERB_IDT_GET_POWER_MAP 0xfec
232
233 static const hda_nid_t stac92hd73xx_pwr_nids[8] = {
234 0x0a, 0x0b, 0x0c, 0xd, 0x0e,
235 0x0f, 0x10, 0x11
236 };
237
238 static const hda_nid_t stac92hd83xxx_pwr_nids[7] = {
239 0x0a, 0x0b, 0x0c, 0xd, 0x0e,
240 0x0f, 0x10
241 };
242
243 static const hda_nid_t stac92hd71bxx_pwr_nids[3] = {
244 0x0a, 0x0d, 0x0f
245 };
246
247
248 /*
249 * PCM hooks
250 */
stac_playback_pcm_hook(struct hda_pcm_stream * hinfo,struct hda_codec * codec,struct snd_pcm_substream * substream,int action)251 static void stac_playback_pcm_hook(struct hda_pcm_stream *hinfo,
252 struct hda_codec *codec,
253 struct snd_pcm_substream *substream,
254 int action)
255 {
256 struct sigmatel_spec *spec = codec->spec;
257 if (action == HDA_GEN_PCM_ACT_OPEN && spec->stream_delay)
258 msleep(spec->stream_delay);
259 }
260
stac_capture_pcm_hook(struct hda_pcm_stream * hinfo,struct hda_codec * codec,struct snd_pcm_substream * substream,int action)261 static void stac_capture_pcm_hook(struct hda_pcm_stream *hinfo,
262 struct hda_codec *codec,
263 struct snd_pcm_substream *substream,
264 int action)
265 {
266 struct sigmatel_spec *spec = codec->spec;
267 int i, idx = 0;
268
269 if (!spec->powerdown_adcs)
270 return;
271
272 for (i = 0; i < spec->gen.num_all_adcs; i++) {
273 if (spec->gen.all_adcs[i] == hinfo->nid) {
274 idx = i;
275 break;
276 }
277 }
278
279 switch (action) {
280 case HDA_GEN_PCM_ACT_OPEN:
281 msleep(40);
282 snd_hda_codec_write(codec, hinfo->nid, 0,
283 AC_VERB_SET_POWER_STATE, AC_PWRST_D0);
284 spec->active_adcs |= (1 << idx);
285 break;
286 case HDA_GEN_PCM_ACT_CLOSE:
287 snd_hda_codec_write(codec, hinfo->nid, 0,
288 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
289 spec->active_adcs &= ~(1 << idx);
290 break;
291 }
292 }
293
294 /*
295 * Early 2006 Intel Macintoshes with STAC9220X5 codecs seem to have a
296 * funky external mute control using GPIO pins.
297 */
298
stac_gpio_set(struct hda_codec * codec,unsigned int mask,unsigned int dir_mask,unsigned int data)299 static void stac_gpio_set(struct hda_codec *codec, unsigned int mask,
300 unsigned int dir_mask, unsigned int data)
301 {
302 unsigned int gpiostate, gpiomask, gpiodir;
303
304 codec_dbg(codec, "%s msk %x dir %x gpio %x\n", __func__, mask, dir_mask, data);
305
306 gpiostate = snd_hda_codec_read(codec, codec->afg, 0,
307 AC_VERB_GET_GPIO_DATA, 0);
308 gpiostate = (gpiostate & ~dir_mask) | (data & dir_mask);
309
310 gpiomask = snd_hda_codec_read(codec, codec->afg, 0,
311 AC_VERB_GET_GPIO_MASK, 0);
312 gpiomask |= mask;
313
314 gpiodir = snd_hda_codec_read(codec, codec->afg, 0,
315 AC_VERB_GET_GPIO_DIRECTION, 0);
316 gpiodir |= dir_mask;
317
318 /* Configure GPIOx as CMOS */
319 snd_hda_codec_write(codec, codec->afg, 0, 0x7e7, 0);
320
321 snd_hda_codec_write(codec, codec->afg, 0,
322 AC_VERB_SET_GPIO_MASK, gpiomask);
323 snd_hda_codec_read(codec, codec->afg, 0,
324 AC_VERB_SET_GPIO_DIRECTION, gpiodir); /* sync */
325
326 msleep(1);
327
328 snd_hda_codec_read(codec, codec->afg, 0,
329 AC_VERB_SET_GPIO_DATA, gpiostate); /* sync */
330 }
331
332 /* hook for controlling mic-mute LED GPIO */
stac_capture_led_hook(struct hda_codec * codec,struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)333 static void stac_capture_led_hook(struct hda_codec *codec,
334 struct snd_kcontrol *kcontrol,
335 struct snd_ctl_elem_value *ucontrol)
336 {
337 struct sigmatel_spec *spec = codec->spec;
338 unsigned int mask;
339 bool cur_mute, prev_mute;
340
341 if (!kcontrol || !ucontrol)
342 return;
343
344 mask = 1U << snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
345 prev_mute = !spec->mic_enabled;
346 if (ucontrol->value.integer.value[0] ||
347 ucontrol->value.integer.value[1])
348 spec->mic_enabled |= mask;
349 else
350 spec->mic_enabled &= ~mask;
351 cur_mute = !spec->mic_enabled;
352 if (cur_mute != prev_mute) {
353 if (cur_mute)
354 spec->gpio_data |= spec->mic_mute_led_gpio;
355 else
356 spec->gpio_data &= ~spec->mic_mute_led_gpio;
357 stac_gpio_set(codec, spec->gpio_mask,
358 spec->gpio_dir, spec->gpio_data);
359 }
360 }
361
stac_vrefout_set(struct hda_codec * codec,hda_nid_t nid,unsigned int new_vref)362 static int stac_vrefout_set(struct hda_codec *codec,
363 hda_nid_t nid, unsigned int new_vref)
364 {
365 int error, pinctl;
366
367 codec_dbg(codec, "%s, nid %x ctl %x\n", __func__, nid, new_vref);
368 pinctl = snd_hda_codec_read(codec, nid, 0,
369 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
370
371 if (pinctl < 0)
372 return pinctl;
373
374 pinctl &= 0xff;
375 pinctl &= ~AC_PINCTL_VREFEN;
376 pinctl |= (new_vref & AC_PINCTL_VREFEN);
377
378 error = snd_hda_set_pin_ctl_cache(codec, nid, pinctl);
379 if (error < 0)
380 return error;
381
382 return 1;
383 }
384
385 /* prevent codec AFG to D3 state when vref-out pin is used for mute LED */
386 /* this hook is set in stac_setup_gpio() */
stac_vref_led_power_filter(struct hda_codec * codec,hda_nid_t nid,unsigned int power_state)387 static unsigned int stac_vref_led_power_filter(struct hda_codec *codec,
388 hda_nid_t nid,
389 unsigned int power_state)
390 {
391 if (nid == codec->afg && power_state == AC_PWRST_D3)
392 return AC_PWRST_D1;
393 return snd_hda_gen_path_power_filter(codec, nid, power_state);
394 }
395
396 /* update mute-LED accoring to the master switch */
stac_update_led_status(struct hda_codec * codec,int enabled)397 static void stac_update_led_status(struct hda_codec *codec, int enabled)
398 {
399 struct sigmatel_spec *spec = codec->spec;
400 int muted = !enabled;
401
402 if (!spec->gpio_led)
403 return;
404
405 /* LED state is inverted on these systems */
406 if (spec->gpio_led_polarity)
407 muted = !muted;
408
409 if (!spec->vref_mute_led_nid) {
410 if (muted)
411 spec->gpio_data |= spec->gpio_led;
412 else
413 spec->gpio_data &= ~spec->gpio_led;
414 stac_gpio_set(codec, spec->gpio_mask,
415 spec->gpio_dir, spec->gpio_data);
416 } else {
417 spec->vref_led = muted ? AC_PINCTL_VREF_50 : AC_PINCTL_VREF_GRD;
418 stac_vrefout_set(codec, spec->vref_mute_led_nid,
419 spec->vref_led);
420 }
421 }
422
423 /* vmaster hook to update mute LED */
stac_vmaster_hook(void * private_data,int val)424 static void stac_vmaster_hook(void *private_data, int val)
425 {
426 stac_update_led_status(private_data, val);
427 }
428
429 /* automute hook to handle GPIO mute and EAPD updates */
stac_update_outputs(struct hda_codec * codec)430 static void stac_update_outputs(struct hda_codec *codec)
431 {
432 struct sigmatel_spec *spec = codec->spec;
433
434 if (spec->gpio_mute)
435 spec->gen.master_mute =
436 !(snd_hda_codec_read(codec, codec->afg, 0,
437 AC_VERB_GET_GPIO_DATA, 0) & spec->gpio_mute);
438
439 snd_hda_gen_update_outputs(codec);
440
441 if (spec->eapd_mask && spec->eapd_switch) {
442 unsigned int val = spec->gpio_data;
443 if (spec->gen.speaker_muted)
444 val &= ~spec->eapd_mask;
445 else
446 val |= spec->eapd_mask;
447 if (spec->gpio_data != val) {
448 spec->gpio_data = val;
449 stac_gpio_set(codec, spec->gpio_mask, spec->gpio_dir,
450 val);
451 }
452 }
453 }
454
stac_toggle_power_map(struct hda_codec * codec,hda_nid_t nid,bool enable,bool do_write)455 static void stac_toggle_power_map(struct hda_codec *codec, hda_nid_t nid,
456 bool enable, bool do_write)
457 {
458 struct sigmatel_spec *spec = codec->spec;
459 unsigned int idx, val;
460
461 for (idx = 0; idx < spec->num_pwrs; idx++) {
462 if (spec->pwr_nids[idx] == nid)
463 break;
464 }
465 if (idx >= spec->num_pwrs)
466 return;
467
468 idx = 1 << idx;
469
470 val = spec->power_map_bits;
471 if (enable)
472 val &= ~idx;
473 else
474 val |= idx;
475
476 /* power down unused output ports */
477 if (val != spec->power_map_bits) {
478 spec->power_map_bits = val;
479 if (do_write)
480 snd_hda_codec_write(codec, codec->afg, 0,
481 AC_VERB_IDT_SET_POWER_MAP, val);
482 }
483 }
484
485 /* update power bit per jack plug/unplug */
jack_update_power(struct hda_codec * codec,struct hda_jack_callback * jack)486 static void jack_update_power(struct hda_codec *codec,
487 struct hda_jack_callback *jack)
488 {
489 struct sigmatel_spec *spec = codec->spec;
490 int i;
491
492 if (!spec->num_pwrs)
493 return;
494
495 if (jack && jack->tbl->nid) {
496 stac_toggle_power_map(codec, jack->tbl->nid,
497 snd_hda_jack_detect(codec, jack->tbl->nid),
498 true);
499 return;
500 }
501
502 /* update all jacks */
503 for (i = 0; i < spec->num_pwrs; i++) {
504 hda_nid_t nid = spec->pwr_nids[i];
505 if (!snd_hda_jack_tbl_get(codec, nid))
506 continue;
507 stac_toggle_power_map(codec, nid,
508 snd_hda_jack_detect(codec, nid),
509 false);
510 }
511
512 snd_hda_codec_write(codec, codec->afg, 0, AC_VERB_IDT_SET_POWER_MAP,
513 spec->power_map_bits);
514 }
515
stac_vref_event(struct hda_codec * codec,struct hda_jack_callback * event)516 static void stac_vref_event(struct hda_codec *codec,
517 struct hda_jack_callback *event)
518 {
519 unsigned int data;
520
521 data = snd_hda_codec_read(codec, codec->afg, 0,
522 AC_VERB_GET_GPIO_DATA, 0);
523 /* toggle VREF state based on GPIOx status */
524 snd_hda_codec_write(codec, codec->afg, 0, 0x7e0,
525 !!(data & (1 << event->private_data)));
526 }
527
528 /* initialize the power map and enable the power event to jacks that
529 * haven't been assigned to automute
530 */
stac_init_power_map(struct hda_codec * codec)531 static void stac_init_power_map(struct hda_codec *codec)
532 {
533 struct sigmatel_spec *spec = codec->spec;
534 int i;
535
536 for (i = 0; i < spec->num_pwrs; i++) {
537 hda_nid_t nid = spec->pwr_nids[i];
538 unsigned int def_conf = snd_hda_codec_get_pincfg(codec, nid);
539 def_conf = get_defcfg_connect(def_conf);
540 if (def_conf == AC_JACK_PORT_COMPLEX &&
541 spec->vref_mute_led_nid != nid &&
542 is_jack_detectable(codec, nid)) {
543 snd_hda_jack_detect_enable_callback(codec, nid,
544 jack_update_power);
545 } else {
546 if (def_conf == AC_JACK_PORT_NONE)
547 stac_toggle_power_map(codec, nid, false, false);
548 else
549 stac_toggle_power_map(codec, nid, true, false);
550 }
551 }
552 }
553
554 /*
555 */
556
get_int_hint(struct hda_codec * codec,const char * key,int * valp)557 static inline bool get_int_hint(struct hda_codec *codec, const char *key,
558 int *valp)
559 {
560 return !snd_hda_get_int_hint(codec, key, valp);
561 }
562
563 /* override some hints from the hwdep entry */
stac_store_hints(struct hda_codec * codec)564 static void stac_store_hints(struct hda_codec *codec)
565 {
566 struct sigmatel_spec *spec = codec->spec;
567 int val;
568
569 if (get_int_hint(codec, "gpio_mask", &spec->gpio_mask)) {
570 spec->eapd_mask = spec->gpio_dir = spec->gpio_data =
571 spec->gpio_mask;
572 }
573 if (get_int_hint(codec, "gpio_dir", &spec->gpio_dir))
574 spec->gpio_dir &= spec->gpio_mask;
575 if (get_int_hint(codec, "gpio_data", &spec->gpio_data))
576 spec->gpio_data &= spec->gpio_mask;
577 if (get_int_hint(codec, "eapd_mask", &spec->eapd_mask))
578 spec->eapd_mask &= spec->gpio_mask;
579 if (get_int_hint(codec, "gpio_mute", &spec->gpio_mute))
580 spec->gpio_mute &= spec->gpio_mask;
581 val = snd_hda_get_bool_hint(codec, "eapd_switch");
582 if (val >= 0)
583 spec->eapd_switch = val;
584 }
585
586 /*
587 * loopback controls
588 */
589
590 #define stac_aloopback_info snd_ctl_boolean_mono_info
591
stac_aloopback_get(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)592 static int stac_aloopback_get(struct snd_kcontrol *kcontrol,
593 struct snd_ctl_elem_value *ucontrol)
594 {
595 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
596 unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
597 struct sigmatel_spec *spec = codec->spec;
598
599 ucontrol->value.integer.value[0] = !!(spec->aloopback &
600 (spec->aloopback_mask << idx));
601 return 0;
602 }
603
stac_aloopback_put(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)604 static int stac_aloopback_put(struct snd_kcontrol *kcontrol,
605 struct snd_ctl_elem_value *ucontrol)
606 {
607 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
608 struct sigmatel_spec *spec = codec->spec;
609 unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
610 unsigned int dac_mode;
611 unsigned int val, idx_val;
612
613 idx_val = spec->aloopback_mask << idx;
614 if (ucontrol->value.integer.value[0])
615 val = spec->aloopback | idx_val;
616 else
617 val = spec->aloopback & ~idx_val;
618 if (spec->aloopback == val)
619 return 0;
620
621 spec->aloopback = val;
622
623 /* Only return the bits defined by the shift value of the
624 * first two bytes of the mask
625 */
626 dac_mode = snd_hda_codec_read(codec, codec->afg, 0,
627 kcontrol->private_value & 0xFFFF, 0x0);
628 dac_mode >>= spec->aloopback_shift;
629
630 if (spec->aloopback & idx_val) {
631 snd_hda_power_up(codec);
632 dac_mode |= idx_val;
633 } else {
634 snd_hda_power_down(codec);
635 dac_mode &= ~idx_val;
636 }
637
638 snd_hda_codec_write_cache(codec, codec->afg, 0,
639 kcontrol->private_value >> 16, dac_mode);
640
641 return 1;
642 }
643
644 #define STAC_ANALOG_LOOPBACK(verb_read, verb_write, cnt) \
645 { \
646 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
647 .name = "Analog Loopback", \
648 .count = cnt, \
649 .info = stac_aloopback_info, \
650 .get = stac_aloopback_get, \
651 .put = stac_aloopback_put, \
652 .private_value = verb_read | (verb_write << 16), \
653 }
654
655 /*
656 * Mute LED handling on HP laptops
657 */
658
659 /* check whether it's a HP laptop with a docking port */
hp_bnb2011_with_dock(struct hda_codec * codec)660 static bool hp_bnb2011_with_dock(struct hda_codec *codec)
661 {
662 if (codec->vendor_id != 0x111d7605 &&
663 codec->vendor_id != 0x111d76d1)
664 return false;
665
666 switch (codec->subsystem_id) {
667 case 0x103c1618:
668 case 0x103c1619:
669 case 0x103c161a:
670 case 0x103c161b:
671 case 0x103c161c:
672 case 0x103c161d:
673 case 0x103c161e:
674 case 0x103c161f:
675
676 case 0x103c162a:
677 case 0x103c162b:
678
679 case 0x103c1630:
680 case 0x103c1631:
681
682 case 0x103c1633:
683 case 0x103c1634:
684 case 0x103c1635:
685
686 case 0x103c3587:
687 case 0x103c3588:
688 case 0x103c3589:
689 case 0x103c358a:
690
691 case 0x103c3667:
692 case 0x103c3668:
693 case 0x103c3669:
694
695 return true;
696 }
697 return false;
698 }
699
hp_blike_system(u32 subsystem_id)700 static bool hp_blike_system(u32 subsystem_id)
701 {
702 switch (subsystem_id) {
703 case 0x103c1520:
704 case 0x103c1521:
705 case 0x103c1523:
706 case 0x103c1524:
707 case 0x103c1525:
708 case 0x103c1722:
709 case 0x103c1723:
710 case 0x103c1724:
711 case 0x103c1725:
712 case 0x103c1726:
713 case 0x103c1727:
714 case 0x103c1728:
715 case 0x103c1729:
716 case 0x103c172a:
717 case 0x103c172b:
718 case 0x103c307e:
719 case 0x103c307f:
720 case 0x103c3080:
721 case 0x103c3081:
722 case 0x103c7007:
723 case 0x103c7008:
724 return true;
725 }
726 return false;
727 }
728
set_hp_led_gpio(struct hda_codec * codec)729 static void set_hp_led_gpio(struct hda_codec *codec)
730 {
731 struct sigmatel_spec *spec = codec->spec;
732 unsigned int gpio;
733
734 if (spec->gpio_led)
735 return;
736
737 gpio = snd_hda_param_read(codec, codec->afg, AC_PAR_GPIO_CAP);
738 gpio &= AC_GPIO_IO_COUNT;
739 if (gpio > 3)
740 spec->gpio_led = 0x08; /* GPIO 3 */
741 else
742 spec->gpio_led = 0x01; /* GPIO 0 */
743 }
744
745 /*
746 * This method searches for the mute LED GPIO configuration
747 * provided as OEM string in SMBIOS. The format of that string
748 * is HP_Mute_LED_P_G or HP_Mute_LED_P
749 * where P can be 0 or 1 and defines mute LED GPIO control state (low/high)
750 * that corresponds to the NOT muted state of the master volume
751 * and G is the index of the GPIO to use as the mute LED control (0..9)
752 * If _G portion is missing it is assigned based on the codec ID
753 *
754 * So, HP B-series like systems may have HP_Mute_LED_0 (current models)
755 * or HP_Mute_LED_0_3 (future models) OEM SMBIOS strings
756 *
757 *
758 * The dv-series laptops don't seem to have the HP_Mute_LED* strings in
759 * SMBIOS - at least the ones I have seen do not have them - which include
760 * my own system (HP Pavilion dv6-1110ax) and my cousin's
761 * HP Pavilion dv9500t CTO.
762 * Need more information on whether it is true across the entire series.
763 * -- kunal
764 */
find_mute_led_cfg(struct hda_codec * codec,int default_polarity)765 static int find_mute_led_cfg(struct hda_codec *codec, int default_polarity)
766 {
767 struct sigmatel_spec *spec = codec->spec;
768 const struct dmi_device *dev = NULL;
769
770 if (get_int_hint(codec, "gpio_led", &spec->gpio_led)) {
771 get_int_hint(codec, "gpio_led_polarity",
772 &spec->gpio_led_polarity);
773 return 1;
774 }
775
776 while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
777 if (sscanf(dev->name, "HP_Mute_LED_%u_%x",
778 &spec->gpio_led_polarity,
779 &spec->gpio_led) == 2) {
780 unsigned int max_gpio;
781 max_gpio = snd_hda_param_read(codec, codec->afg,
782 AC_PAR_GPIO_CAP);
783 max_gpio &= AC_GPIO_IO_COUNT;
784 if (spec->gpio_led < max_gpio)
785 spec->gpio_led = 1 << spec->gpio_led;
786 else
787 spec->vref_mute_led_nid = spec->gpio_led;
788 return 1;
789 }
790 if (sscanf(dev->name, "HP_Mute_LED_%u",
791 &spec->gpio_led_polarity) == 1) {
792 set_hp_led_gpio(codec);
793 return 1;
794 }
795 /* BIOS bug: unfilled OEM string */
796 if (strstr(dev->name, "HP_Mute_LED_P_G")) {
797 set_hp_led_gpio(codec);
798 if (default_polarity >= 0)
799 spec->gpio_led_polarity = default_polarity;
800 else
801 spec->gpio_led_polarity = 1;
802 return 1;
803 }
804 }
805
806 /*
807 * Fallback case - if we don't find the DMI strings,
808 * we statically set the GPIO - if not a B-series system
809 * and default polarity is provided
810 */
811 if (!hp_blike_system(codec->subsystem_id) &&
812 (default_polarity == 0 || default_polarity == 1)) {
813 set_hp_led_gpio(codec);
814 spec->gpio_led_polarity = default_polarity;
815 return 1;
816 }
817 return 0;
818 }
819
820 /* check whether a built-in speaker is included in parsed pins */
has_builtin_speaker(struct hda_codec * codec)821 static bool has_builtin_speaker(struct hda_codec *codec)
822 {
823 struct sigmatel_spec *spec = codec->spec;
824 hda_nid_t *nid_pin;
825 int nids, i;
826
827 if (spec->gen.autocfg.line_out_type == AUTO_PIN_SPEAKER_OUT) {
828 nid_pin = spec->gen.autocfg.line_out_pins;
829 nids = spec->gen.autocfg.line_outs;
830 } else {
831 nid_pin = spec->gen.autocfg.speaker_pins;
832 nids = spec->gen.autocfg.speaker_outs;
833 }
834
835 for (i = 0; i < nids; i++) {
836 unsigned int def_conf = snd_hda_codec_get_pincfg(codec, nid_pin[i]);
837 if (snd_hda_get_input_pin_attr(def_conf) == INPUT_PIN_ATTR_INT)
838 return true;
839 }
840 return false;
841 }
842
843 /*
844 * PC beep controls
845 */
846
847 /* create PC beep volume controls */
stac_auto_create_beep_ctls(struct hda_codec * codec,hda_nid_t nid)848 static int stac_auto_create_beep_ctls(struct hda_codec *codec,
849 hda_nid_t nid)
850 {
851 struct sigmatel_spec *spec = codec->spec;
852 u32 caps = query_amp_caps(codec, nid, HDA_OUTPUT);
853 struct snd_kcontrol_new *knew;
854 static struct snd_kcontrol_new abeep_mute_ctl =
855 HDA_CODEC_MUTE(NULL, 0, 0, 0);
856 static struct snd_kcontrol_new dbeep_mute_ctl =
857 HDA_CODEC_MUTE_BEEP(NULL, 0, 0, 0);
858 static struct snd_kcontrol_new beep_vol_ctl =
859 HDA_CODEC_VOLUME(NULL, 0, 0, 0);
860
861 /* check for mute support for the the amp */
862 if ((caps & AC_AMPCAP_MUTE) >> AC_AMPCAP_MUTE_SHIFT) {
863 const struct snd_kcontrol_new *temp;
864 if (spec->anabeep_nid == nid)
865 temp = &abeep_mute_ctl;
866 else
867 temp = &dbeep_mute_ctl;
868 knew = snd_hda_gen_add_kctl(&spec->gen,
869 "Beep Playback Switch", temp);
870 if (!knew)
871 return -ENOMEM;
872 knew->private_value =
873 HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT);
874 }
875
876 /* check to see if there is volume support for the amp */
877 if ((caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT) {
878 knew = snd_hda_gen_add_kctl(&spec->gen,
879 "Beep Playback Volume",
880 &beep_vol_ctl);
881 if (!knew)
882 return -ENOMEM;
883 knew->private_value =
884 HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT);
885 }
886 return 0;
887 }
888
889 #ifdef CONFIG_SND_HDA_INPUT_BEEP
890 #define stac_dig_beep_switch_info snd_ctl_boolean_mono_info
891
stac_dig_beep_switch_get(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)892 static int stac_dig_beep_switch_get(struct snd_kcontrol *kcontrol,
893 struct snd_ctl_elem_value *ucontrol)
894 {
895 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
896 ucontrol->value.integer.value[0] = codec->beep->enabled;
897 return 0;
898 }
899
stac_dig_beep_switch_put(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)900 static int stac_dig_beep_switch_put(struct snd_kcontrol *kcontrol,
901 struct snd_ctl_elem_value *ucontrol)
902 {
903 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
904 return snd_hda_enable_beep_device(codec, ucontrol->value.integer.value[0]);
905 }
906
907 static const struct snd_kcontrol_new stac_dig_beep_ctrl = {
908 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
909 .name = "Beep Playback Switch",
910 .info = stac_dig_beep_switch_info,
911 .get = stac_dig_beep_switch_get,
912 .put = stac_dig_beep_switch_put,
913 };
914
stac_beep_switch_ctl(struct hda_codec * codec)915 static int stac_beep_switch_ctl(struct hda_codec *codec)
916 {
917 struct sigmatel_spec *spec = codec->spec;
918
919 if (!snd_hda_gen_add_kctl(&spec->gen, NULL, &stac_dig_beep_ctrl))
920 return -ENOMEM;
921 return 0;
922 }
923 #endif
924
925 /*
926 * SPDIF-out mux controls
927 */
928
stac_smux_enum_info(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_info * uinfo)929 static int stac_smux_enum_info(struct snd_kcontrol *kcontrol,
930 struct snd_ctl_elem_info *uinfo)
931 {
932 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
933 struct sigmatel_spec *spec = codec->spec;
934 return snd_hda_input_mux_info(&spec->spdif_mux, uinfo);
935 }
936
stac_smux_enum_get(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)937 static int stac_smux_enum_get(struct snd_kcontrol *kcontrol,
938 struct snd_ctl_elem_value *ucontrol)
939 {
940 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
941 struct sigmatel_spec *spec = codec->spec;
942 unsigned int smux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
943
944 ucontrol->value.enumerated.item[0] = spec->cur_smux[smux_idx];
945 return 0;
946 }
947
stac_smux_enum_put(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)948 static int stac_smux_enum_put(struct snd_kcontrol *kcontrol,
949 struct snd_ctl_elem_value *ucontrol)
950 {
951 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
952 struct sigmatel_spec *spec = codec->spec;
953 unsigned int smux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
954
955 return snd_hda_input_mux_put(codec, &spec->spdif_mux, ucontrol,
956 spec->gen.autocfg.dig_out_pins[smux_idx],
957 &spec->cur_smux[smux_idx]);
958 }
959
960 static struct snd_kcontrol_new stac_smux_mixer = {
961 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
962 .name = "IEC958 Playback Source",
963 /* count set later */
964 .info = stac_smux_enum_info,
965 .get = stac_smux_enum_get,
966 .put = stac_smux_enum_put,
967 };
968
969 static const char * const stac_spdif_labels[] = {
970 "Digital Playback", "Analog Mux 1", "Analog Mux 2", NULL
971 };
972
stac_create_spdif_mux_ctls(struct hda_codec * codec)973 static int stac_create_spdif_mux_ctls(struct hda_codec *codec)
974 {
975 struct sigmatel_spec *spec = codec->spec;
976 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
977 const char * const *labels = spec->spdif_labels;
978 struct snd_kcontrol_new *kctl;
979 int i, num_cons;
980
981 if (cfg->dig_outs < 1)
982 return 0;
983
984 num_cons = snd_hda_get_num_conns(codec, cfg->dig_out_pins[0]);
985 if (num_cons <= 1)
986 return 0;
987
988 if (!labels)
989 labels = stac_spdif_labels;
990 for (i = 0; i < num_cons; i++) {
991 if (snd_BUG_ON(!labels[i]))
992 return -EINVAL;
993 snd_hda_add_imux_item(codec, &spec->spdif_mux, labels[i], i, NULL);
994 }
995
996 kctl = snd_hda_gen_add_kctl(&spec->gen, NULL, &stac_smux_mixer);
997 if (!kctl)
998 return -ENOMEM;
999 kctl->count = cfg->dig_outs;
1000
1001 return 0;
1002 }
1003
1004 /*
1005 */
1006
1007 static const struct hda_verb stac9200_core_init[] = {
1008 /* set dac0mux for dac converter */
1009 { 0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
1010 {}
1011 };
1012
1013 static const struct hda_verb stac9200_eapd_init[] = {
1014 /* set dac0mux for dac converter */
1015 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
1016 {0x08, AC_VERB_SET_EAPD_BTLENABLE, 0x02},
1017 {}
1018 };
1019
1020 static const struct hda_verb dell_eq_core_init[] = {
1021 /* set master volume to max value without distortion
1022 * and direct control */
1023 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xec},
1024 {}
1025 };
1026
1027 static const struct hda_verb stac92hd73xx_core_init[] = {
1028 /* set master volume and direct control */
1029 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
1030 {}
1031 };
1032
1033 static const struct hda_verb stac92hd83xxx_core_init[] = {
1034 /* power state controls amps */
1035 { 0x01, AC_VERB_SET_EAPD, 1 << 2},
1036 {}
1037 };
1038
1039 static const struct hda_verb stac92hd83xxx_hp_zephyr_init[] = {
1040 { 0x22, 0x785, 0x43 },
1041 { 0x22, 0x782, 0xe0 },
1042 { 0x22, 0x795, 0x00 },
1043 {}
1044 };
1045
1046 static const struct hda_verb stac92hd71bxx_core_init[] = {
1047 /* set master volume and direct control */
1048 { 0x28, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
1049 {}
1050 };
1051
1052 static const struct hda_verb stac92hd71bxx_unmute_core_init[] = {
1053 /* unmute right and left channels for nodes 0x0f, 0xa, 0x0d */
1054 { 0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1055 { 0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1056 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1057 {}
1058 };
1059
1060 static const struct hda_verb stac925x_core_init[] = {
1061 /* set dac0mux for dac converter */
1062 { 0x06, AC_VERB_SET_CONNECT_SEL, 0x00},
1063 /* mute the master volume */
1064 { 0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
1065 {}
1066 };
1067
1068 static const struct hda_verb stac922x_core_init[] = {
1069 /* set master volume and direct control */
1070 { 0x16, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
1071 {}
1072 };
1073
1074 static const struct hda_verb d965_core_init[] = {
1075 /* unmute node 0x1b */
1076 { 0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
1077 /* select node 0x03 as DAC */
1078 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x01},
1079 {}
1080 };
1081
1082 static const struct hda_verb dell_3st_core_init[] = {
1083 /* don't set delta bit */
1084 {0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0x7f},
1085 /* unmute node 0x1b */
1086 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
1087 /* select node 0x03 as DAC */
1088 {0x0b, AC_VERB_SET_CONNECT_SEL, 0x01},
1089 {}
1090 };
1091
1092 static const struct hda_verb stac927x_core_init[] = {
1093 /* set master volume and direct control */
1094 { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
1095 /* enable analog pc beep path */
1096 { 0x01, AC_VERB_SET_DIGI_CONVERT_2, 1 << 5},
1097 {}
1098 };
1099
1100 static const struct hda_verb stac927x_volknob_core_init[] = {
1101 /* don't set delta bit */
1102 {0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0x7f},
1103 /* enable analog pc beep path */
1104 {0x01, AC_VERB_SET_DIGI_CONVERT_2, 1 << 5},
1105 {}
1106 };
1107
1108 static const struct hda_verb stac9205_core_init[] = {
1109 /* set master volume and direct control */
1110 { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
1111 /* enable analog pc beep path */
1112 { 0x01, AC_VERB_SET_DIGI_CONVERT_2, 1 << 5},
1113 {}
1114 };
1115
1116 static const struct snd_kcontrol_new stac92hd73xx_6ch_loopback =
1117 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 3);
1118
1119 static const struct snd_kcontrol_new stac92hd73xx_8ch_loopback =
1120 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 4);
1121
1122 static const struct snd_kcontrol_new stac92hd73xx_10ch_loopback =
1123 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 5);
1124
1125 static const struct snd_kcontrol_new stac92hd71bxx_loopback =
1126 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A0, 2);
1127
1128 static const struct snd_kcontrol_new stac9205_loopback =
1129 STAC_ANALOG_LOOPBACK(0xFE0, 0x7E0, 1);
1130
1131 static const struct snd_kcontrol_new stac927x_loopback =
1132 STAC_ANALOG_LOOPBACK(0xFEB, 0x7EB, 1);
1133
1134 static const struct hda_pintbl ref9200_pin_configs[] = {
1135 { 0x08, 0x01c47010 },
1136 { 0x09, 0x01447010 },
1137 { 0x0d, 0x0221401f },
1138 { 0x0e, 0x01114010 },
1139 { 0x0f, 0x02a19020 },
1140 { 0x10, 0x01a19021 },
1141 { 0x11, 0x90100140 },
1142 { 0x12, 0x01813122 },
1143 {}
1144 };
1145
1146 static const struct hda_pintbl gateway9200_m4_pin_configs[] = {
1147 { 0x08, 0x400000fe },
1148 { 0x09, 0x404500f4 },
1149 { 0x0d, 0x400100f0 },
1150 { 0x0e, 0x90110010 },
1151 { 0x0f, 0x400100f1 },
1152 { 0x10, 0x02a1902e },
1153 { 0x11, 0x500000f2 },
1154 { 0x12, 0x500000f3 },
1155 {}
1156 };
1157
1158 static const struct hda_pintbl gateway9200_m4_2_pin_configs[] = {
1159 { 0x08, 0x400000fe },
1160 { 0x09, 0x404500f4 },
1161 { 0x0d, 0x400100f0 },
1162 { 0x0e, 0x90110010 },
1163 { 0x0f, 0x400100f1 },
1164 { 0x10, 0x02a1902e },
1165 { 0x11, 0x500000f2 },
1166 { 0x12, 0x500000f3 },
1167 {}
1168 };
1169
1170 /*
1171 STAC 9200 pin configs for
1172 102801A8
1173 102801DE
1174 102801E8
1175 */
1176 static const struct hda_pintbl dell9200_d21_pin_configs[] = {
1177 { 0x08, 0x400001f0 },
1178 { 0x09, 0x400001f1 },
1179 { 0x0d, 0x02214030 },
1180 { 0x0e, 0x01014010 },
1181 { 0x0f, 0x02a19020 },
1182 { 0x10, 0x01a19021 },
1183 { 0x11, 0x90100140 },
1184 { 0x12, 0x01813122 },
1185 {}
1186 };
1187
1188 /*
1189 STAC 9200 pin configs for
1190 102801C0
1191 102801C1
1192 */
1193 static const struct hda_pintbl dell9200_d22_pin_configs[] = {
1194 { 0x08, 0x400001f0 },
1195 { 0x09, 0x400001f1 },
1196 { 0x0d, 0x0221401f },
1197 { 0x0e, 0x01014010 },
1198 { 0x0f, 0x01813020 },
1199 { 0x10, 0x02a19021 },
1200 { 0x11, 0x90100140 },
1201 { 0x12, 0x400001f2 },
1202 {}
1203 };
1204
1205 /*
1206 STAC 9200 pin configs for
1207 102801C4 (Dell Dimension E310)
1208 102801C5
1209 102801C7
1210 102801D9
1211 102801DA
1212 102801E3
1213 */
1214 static const struct hda_pintbl dell9200_d23_pin_configs[] = {
1215 { 0x08, 0x400001f0 },
1216 { 0x09, 0x400001f1 },
1217 { 0x0d, 0x0221401f },
1218 { 0x0e, 0x01014010 },
1219 { 0x0f, 0x01813020 },
1220 { 0x10, 0x01a19021 },
1221 { 0x11, 0x90100140 },
1222 { 0x12, 0x400001f2 },
1223 {}
1224 };
1225
1226
1227 /*
1228 STAC 9200-32 pin configs for
1229 102801B5 (Dell Inspiron 630m)
1230 102801D8 (Dell Inspiron 640m)
1231 */
1232 static const struct hda_pintbl dell9200_m21_pin_configs[] = {
1233 { 0x08, 0x40c003fa },
1234 { 0x09, 0x03441340 },
1235 { 0x0d, 0x0321121f },
1236 { 0x0e, 0x90170310 },
1237 { 0x0f, 0x408003fb },
1238 { 0x10, 0x03a11020 },
1239 { 0x11, 0x401003fc },
1240 { 0x12, 0x403003fd },
1241 {}
1242 };
1243
1244 /*
1245 STAC 9200-32 pin configs for
1246 102801C2 (Dell Latitude D620)
1247 102801C8
1248 102801CC (Dell Latitude D820)
1249 102801D4
1250 102801D6
1251 */
1252 static const struct hda_pintbl dell9200_m22_pin_configs[] = {
1253 { 0x08, 0x40c003fa },
1254 { 0x09, 0x0144131f },
1255 { 0x0d, 0x0321121f },
1256 { 0x0e, 0x90170310 },
1257 { 0x0f, 0x90a70321 },
1258 { 0x10, 0x03a11020 },
1259 { 0x11, 0x401003fb },
1260 { 0x12, 0x40f000fc },
1261 {}
1262 };
1263
1264 /*
1265 STAC 9200-32 pin configs for
1266 102801CE (Dell XPS M1710)
1267 102801CF (Dell Precision M90)
1268 */
1269 static const struct hda_pintbl dell9200_m23_pin_configs[] = {
1270 { 0x08, 0x40c003fa },
1271 { 0x09, 0x01441340 },
1272 { 0x0d, 0x0421421f },
1273 { 0x0e, 0x90170310 },
1274 { 0x0f, 0x408003fb },
1275 { 0x10, 0x04a1102e },
1276 { 0x11, 0x90170311 },
1277 { 0x12, 0x403003fc },
1278 {}
1279 };
1280
1281 /*
1282 STAC 9200-32 pin configs for
1283 102801C9
1284 102801CA
1285 102801CB (Dell Latitude 120L)
1286 102801D3
1287 */
1288 static const struct hda_pintbl dell9200_m24_pin_configs[] = {
1289 { 0x08, 0x40c003fa },
1290 { 0x09, 0x404003fb },
1291 { 0x0d, 0x0321121f },
1292 { 0x0e, 0x90170310 },
1293 { 0x0f, 0x408003fc },
1294 { 0x10, 0x03a11020 },
1295 { 0x11, 0x401003fd },
1296 { 0x12, 0x403003fe },
1297 {}
1298 };
1299
1300 /*
1301 STAC 9200-32 pin configs for
1302 102801BD (Dell Inspiron E1505n)
1303 102801EE
1304 102801EF
1305 */
1306 static const struct hda_pintbl dell9200_m25_pin_configs[] = {
1307 { 0x08, 0x40c003fa },
1308 { 0x09, 0x01441340 },
1309 { 0x0d, 0x0421121f },
1310 { 0x0e, 0x90170310 },
1311 { 0x0f, 0x408003fb },
1312 { 0x10, 0x04a11020 },
1313 { 0x11, 0x401003fc },
1314 { 0x12, 0x403003fd },
1315 {}
1316 };
1317
1318 /*
1319 STAC 9200-32 pin configs for
1320 102801F5 (Dell Inspiron 1501)
1321 102801F6
1322 */
1323 static const struct hda_pintbl dell9200_m26_pin_configs[] = {
1324 { 0x08, 0x40c003fa },
1325 { 0x09, 0x404003fb },
1326 { 0x0d, 0x0421121f },
1327 { 0x0e, 0x90170310 },
1328 { 0x0f, 0x408003fc },
1329 { 0x10, 0x04a11020 },
1330 { 0x11, 0x401003fd },
1331 { 0x12, 0x403003fe },
1332 {}
1333 };
1334
1335 /*
1336 STAC 9200-32
1337 102801CD (Dell Inspiron E1705/9400)
1338 */
1339 static const struct hda_pintbl dell9200_m27_pin_configs[] = {
1340 { 0x08, 0x40c003fa },
1341 { 0x09, 0x01441340 },
1342 { 0x0d, 0x0421121f },
1343 { 0x0e, 0x90170310 },
1344 { 0x0f, 0x90170310 },
1345 { 0x10, 0x04a11020 },
1346 { 0x11, 0x90170310 },
1347 { 0x12, 0x40f003fc },
1348 {}
1349 };
1350
1351 static const struct hda_pintbl oqo9200_pin_configs[] = {
1352 { 0x08, 0x40c000f0 },
1353 { 0x09, 0x404000f1 },
1354 { 0x0d, 0x0221121f },
1355 { 0x0e, 0x02211210 },
1356 { 0x0f, 0x90170111 },
1357 { 0x10, 0x90a70120 },
1358 { 0x11, 0x400000f2 },
1359 { 0x12, 0x400000f3 },
1360 {}
1361 };
1362
1363
stac9200_fixup_panasonic(struct hda_codec * codec,const struct hda_fixup * fix,int action)1364 static void stac9200_fixup_panasonic(struct hda_codec *codec,
1365 const struct hda_fixup *fix, int action)
1366 {
1367 struct sigmatel_spec *spec = codec->spec;
1368
1369 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
1370 spec->gpio_mask = spec->gpio_dir = 0x09;
1371 spec->gpio_data = 0x00;
1372 /* CF-74 has no headphone detection, and the driver should *NOT*
1373 * do detection and HP/speaker toggle because the hardware does it.
1374 */
1375 spec->gen.suppress_auto_mute = 1;
1376 }
1377 }
1378
1379
1380 static const struct hda_fixup stac9200_fixups[] = {
1381 [STAC_REF] = {
1382 .type = HDA_FIXUP_PINS,
1383 .v.pins = ref9200_pin_configs,
1384 },
1385 [STAC_9200_OQO] = {
1386 .type = HDA_FIXUP_PINS,
1387 .v.pins = oqo9200_pin_configs,
1388 .chained = true,
1389 .chain_id = STAC_9200_EAPD_INIT,
1390 },
1391 [STAC_9200_DELL_D21] = {
1392 .type = HDA_FIXUP_PINS,
1393 .v.pins = dell9200_d21_pin_configs,
1394 },
1395 [STAC_9200_DELL_D22] = {
1396 .type = HDA_FIXUP_PINS,
1397 .v.pins = dell9200_d22_pin_configs,
1398 },
1399 [STAC_9200_DELL_D23] = {
1400 .type = HDA_FIXUP_PINS,
1401 .v.pins = dell9200_d23_pin_configs,
1402 },
1403 [STAC_9200_DELL_M21] = {
1404 .type = HDA_FIXUP_PINS,
1405 .v.pins = dell9200_m21_pin_configs,
1406 },
1407 [STAC_9200_DELL_M22] = {
1408 .type = HDA_FIXUP_PINS,
1409 .v.pins = dell9200_m22_pin_configs,
1410 },
1411 [STAC_9200_DELL_M23] = {
1412 .type = HDA_FIXUP_PINS,
1413 .v.pins = dell9200_m23_pin_configs,
1414 },
1415 [STAC_9200_DELL_M24] = {
1416 .type = HDA_FIXUP_PINS,
1417 .v.pins = dell9200_m24_pin_configs,
1418 },
1419 [STAC_9200_DELL_M25] = {
1420 .type = HDA_FIXUP_PINS,
1421 .v.pins = dell9200_m25_pin_configs,
1422 },
1423 [STAC_9200_DELL_M26] = {
1424 .type = HDA_FIXUP_PINS,
1425 .v.pins = dell9200_m26_pin_configs,
1426 },
1427 [STAC_9200_DELL_M27] = {
1428 .type = HDA_FIXUP_PINS,
1429 .v.pins = dell9200_m27_pin_configs,
1430 },
1431 [STAC_9200_M4] = {
1432 .type = HDA_FIXUP_PINS,
1433 .v.pins = gateway9200_m4_pin_configs,
1434 .chained = true,
1435 .chain_id = STAC_9200_EAPD_INIT,
1436 },
1437 [STAC_9200_M4_2] = {
1438 .type = HDA_FIXUP_PINS,
1439 .v.pins = gateway9200_m4_2_pin_configs,
1440 .chained = true,
1441 .chain_id = STAC_9200_EAPD_INIT,
1442 },
1443 [STAC_9200_PANASONIC] = {
1444 .type = HDA_FIXUP_FUNC,
1445 .v.func = stac9200_fixup_panasonic,
1446 },
1447 [STAC_9200_EAPD_INIT] = {
1448 .type = HDA_FIXUP_VERBS,
1449 .v.verbs = (const struct hda_verb[]) {
1450 {0x08, AC_VERB_SET_EAPD_BTLENABLE, 0x02},
1451 {}
1452 },
1453 },
1454 };
1455
1456 static const struct hda_model_fixup stac9200_models[] = {
1457 { .id = STAC_REF, .name = "ref" },
1458 { .id = STAC_9200_OQO, .name = "oqo" },
1459 { .id = STAC_9200_DELL_D21, .name = "dell-d21" },
1460 { .id = STAC_9200_DELL_D22, .name = "dell-d22" },
1461 { .id = STAC_9200_DELL_D23, .name = "dell-d23" },
1462 { .id = STAC_9200_DELL_M21, .name = "dell-m21" },
1463 { .id = STAC_9200_DELL_M22, .name = "dell-m22" },
1464 { .id = STAC_9200_DELL_M23, .name = "dell-m23" },
1465 { .id = STAC_9200_DELL_M24, .name = "dell-m24" },
1466 { .id = STAC_9200_DELL_M25, .name = "dell-m25" },
1467 { .id = STAC_9200_DELL_M26, .name = "dell-m26" },
1468 { .id = STAC_9200_DELL_M27, .name = "dell-m27" },
1469 { .id = STAC_9200_M4, .name = "gateway-m4" },
1470 { .id = STAC_9200_M4_2, .name = "gateway-m4-2" },
1471 { .id = STAC_9200_PANASONIC, .name = "panasonic" },
1472 {}
1473 };
1474
1475 static const struct snd_pci_quirk stac9200_fixup_tbl[] = {
1476 /* SigmaTel reference board */
1477 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
1478 "DFI LanParty", STAC_REF),
1479 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
1480 "DFI LanParty", STAC_REF),
1481 /* Dell laptops have BIOS problem */
1482 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a8,
1483 "unknown Dell", STAC_9200_DELL_D21),
1484 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01b5,
1485 "Dell Inspiron 630m", STAC_9200_DELL_M21),
1486 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01bd,
1487 "Dell Inspiron E1505n", STAC_9200_DELL_M25),
1488 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c0,
1489 "unknown Dell", STAC_9200_DELL_D22),
1490 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c1,
1491 "unknown Dell", STAC_9200_DELL_D22),
1492 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c2,
1493 "Dell Latitude D620", STAC_9200_DELL_M22),
1494 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c5,
1495 "unknown Dell", STAC_9200_DELL_D23),
1496 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c7,
1497 "unknown Dell", STAC_9200_DELL_D23),
1498 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c8,
1499 "unknown Dell", STAC_9200_DELL_M22),
1500 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c9,
1501 "unknown Dell", STAC_9200_DELL_M24),
1502 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ca,
1503 "unknown Dell", STAC_9200_DELL_M24),
1504 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cb,
1505 "Dell Latitude 120L", STAC_9200_DELL_M24),
1506 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cc,
1507 "Dell Latitude D820", STAC_9200_DELL_M22),
1508 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cd,
1509 "Dell Inspiron E1705/9400", STAC_9200_DELL_M27),
1510 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ce,
1511 "Dell XPS M1710", STAC_9200_DELL_M23),
1512 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cf,
1513 "Dell Precision M90", STAC_9200_DELL_M23),
1514 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d3,
1515 "unknown Dell", STAC_9200_DELL_M22),
1516 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d4,
1517 "unknown Dell", STAC_9200_DELL_M22),
1518 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d6,
1519 "unknown Dell", STAC_9200_DELL_M22),
1520 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d8,
1521 "Dell Inspiron 640m", STAC_9200_DELL_M21),
1522 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d9,
1523 "unknown Dell", STAC_9200_DELL_D23),
1524 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01da,
1525 "unknown Dell", STAC_9200_DELL_D23),
1526 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01de,
1527 "unknown Dell", STAC_9200_DELL_D21),
1528 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01e3,
1529 "unknown Dell", STAC_9200_DELL_D23),
1530 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01e8,
1531 "unknown Dell", STAC_9200_DELL_D21),
1532 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ee,
1533 "unknown Dell", STAC_9200_DELL_M25),
1534 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ef,
1535 "unknown Dell", STAC_9200_DELL_M25),
1536 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f5,
1537 "Dell Inspiron 1501", STAC_9200_DELL_M26),
1538 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f6,
1539 "unknown Dell", STAC_9200_DELL_M26),
1540 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0201,
1541 "Dell Latitude D430", STAC_9200_DELL_M22),
1542 /* Panasonic */
1543 SND_PCI_QUIRK(0x10f7, 0x8338, "Panasonic CF-74", STAC_9200_PANASONIC),
1544 /* Gateway machines needs EAPD to be set on resume */
1545 SND_PCI_QUIRK(0x107b, 0x0205, "Gateway S-7110M", STAC_9200_M4),
1546 SND_PCI_QUIRK(0x107b, 0x0317, "Gateway MT3423, MX341*", STAC_9200_M4_2),
1547 SND_PCI_QUIRK(0x107b, 0x0318, "Gateway ML3019, MT3707", STAC_9200_M4_2),
1548 /* OQO Mobile */
1549 SND_PCI_QUIRK(0x1106, 0x3288, "OQO Model 2", STAC_9200_OQO),
1550 {} /* terminator */
1551 };
1552
1553 static const struct hda_pintbl ref925x_pin_configs[] = {
1554 { 0x07, 0x40c003f0 },
1555 { 0x08, 0x424503f2 },
1556 { 0x0a, 0x01813022 },
1557 { 0x0b, 0x02a19021 },
1558 { 0x0c, 0x90a70320 },
1559 { 0x0d, 0x02214210 },
1560 { 0x10, 0x01019020 },
1561 { 0x11, 0x9033032e },
1562 {}
1563 };
1564
1565 static const struct hda_pintbl stac925xM1_pin_configs[] = {
1566 { 0x07, 0x40c003f4 },
1567 { 0x08, 0x424503f2 },
1568 { 0x0a, 0x400000f3 },
1569 { 0x0b, 0x02a19020 },
1570 { 0x0c, 0x40a000f0 },
1571 { 0x0d, 0x90100210 },
1572 { 0x10, 0x400003f1 },
1573 { 0x11, 0x9033032e },
1574 {}
1575 };
1576
1577 static const struct hda_pintbl stac925xM1_2_pin_configs[] = {
1578 { 0x07, 0x40c003f4 },
1579 { 0x08, 0x424503f2 },
1580 { 0x0a, 0x400000f3 },
1581 { 0x0b, 0x02a19020 },
1582 { 0x0c, 0x40a000f0 },
1583 { 0x0d, 0x90100210 },
1584 { 0x10, 0x400003f1 },
1585 { 0x11, 0x9033032e },
1586 {}
1587 };
1588
1589 static const struct hda_pintbl stac925xM2_pin_configs[] = {
1590 { 0x07, 0x40c003f4 },
1591 { 0x08, 0x424503f2 },
1592 { 0x0a, 0x400000f3 },
1593 { 0x0b, 0x02a19020 },
1594 { 0x0c, 0x40a000f0 },
1595 { 0x0d, 0x90100210 },
1596 { 0x10, 0x400003f1 },
1597 { 0x11, 0x9033032e },
1598 {}
1599 };
1600
1601 static const struct hda_pintbl stac925xM2_2_pin_configs[] = {
1602 { 0x07, 0x40c003f4 },
1603 { 0x08, 0x424503f2 },
1604 { 0x0a, 0x400000f3 },
1605 { 0x0b, 0x02a19020 },
1606 { 0x0c, 0x40a000f0 },
1607 { 0x0d, 0x90100210 },
1608 { 0x10, 0x400003f1 },
1609 { 0x11, 0x9033032e },
1610 {}
1611 };
1612
1613 static const struct hda_pintbl stac925xM3_pin_configs[] = {
1614 { 0x07, 0x40c003f4 },
1615 { 0x08, 0x424503f2 },
1616 { 0x0a, 0x400000f3 },
1617 { 0x0b, 0x02a19020 },
1618 { 0x0c, 0x40a000f0 },
1619 { 0x0d, 0x90100210 },
1620 { 0x10, 0x400003f1 },
1621 { 0x11, 0x503303f3 },
1622 {}
1623 };
1624
1625 static const struct hda_pintbl stac925xM5_pin_configs[] = {
1626 { 0x07, 0x40c003f4 },
1627 { 0x08, 0x424503f2 },
1628 { 0x0a, 0x400000f3 },
1629 { 0x0b, 0x02a19020 },
1630 { 0x0c, 0x40a000f0 },
1631 { 0x0d, 0x90100210 },
1632 { 0x10, 0x400003f1 },
1633 { 0x11, 0x9033032e },
1634 {}
1635 };
1636
1637 static const struct hda_pintbl stac925xM6_pin_configs[] = {
1638 { 0x07, 0x40c003f4 },
1639 { 0x08, 0x424503f2 },
1640 { 0x0a, 0x400000f3 },
1641 { 0x0b, 0x02a19020 },
1642 { 0x0c, 0x40a000f0 },
1643 { 0x0d, 0x90100210 },
1644 { 0x10, 0x400003f1 },
1645 { 0x11, 0x90330320 },
1646 {}
1647 };
1648
1649 static const struct hda_fixup stac925x_fixups[] = {
1650 [STAC_REF] = {
1651 .type = HDA_FIXUP_PINS,
1652 .v.pins = ref925x_pin_configs,
1653 },
1654 [STAC_M1] = {
1655 .type = HDA_FIXUP_PINS,
1656 .v.pins = stac925xM1_pin_configs,
1657 },
1658 [STAC_M1_2] = {
1659 .type = HDA_FIXUP_PINS,
1660 .v.pins = stac925xM1_2_pin_configs,
1661 },
1662 [STAC_M2] = {
1663 .type = HDA_FIXUP_PINS,
1664 .v.pins = stac925xM2_pin_configs,
1665 },
1666 [STAC_M2_2] = {
1667 .type = HDA_FIXUP_PINS,
1668 .v.pins = stac925xM2_2_pin_configs,
1669 },
1670 [STAC_M3] = {
1671 .type = HDA_FIXUP_PINS,
1672 .v.pins = stac925xM3_pin_configs,
1673 },
1674 [STAC_M5] = {
1675 .type = HDA_FIXUP_PINS,
1676 .v.pins = stac925xM5_pin_configs,
1677 },
1678 [STAC_M6] = {
1679 .type = HDA_FIXUP_PINS,
1680 .v.pins = stac925xM6_pin_configs,
1681 },
1682 };
1683
1684 static const struct hda_model_fixup stac925x_models[] = {
1685 { .id = STAC_REF, .name = "ref" },
1686 { .id = STAC_M1, .name = "m1" },
1687 { .id = STAC_M1_2, .name = "m1-2" },
1688 { .id = STAC_M2, .name = "m2" },
1689 { .id = STAC_M2_2, .name = "m2-2" },
1690 { .id = STAC_M3, .name = "m3" },
1691 { .id = STAC_M5, .name = "m5" },
1692 { .id = STAC_M6, .name = "m6" },
1693 {}
1694 };
1695
1696 static const struct snd_pci_quirk stac925x_fixup_tbl[] = {
1697 /* SigmaTel reference board */
1698 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668, "DFI LanParty", STAC_REF),
1699 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101, "DFI LanParty", STAC_REF),
1700 SND_PCI_QUIRK(0x8384, 0x7632, "Stac9202 Reference Board", STAC_REF),
1701
1702 /* Default table for unknown ID */
1703 SND_PCI_QUIRK(0x1002, 0x437b, "Gateway mobile", STAC_M2_2),
1704
1705 /* gateway machines are checked via codec ssid */
1706 SND_PCI_QUIRK(0x107b, 0x0316, "Gateway M255", STAC_M2),
1707 SND_PCI_QUIRK(0x107b, 0x0366, "Gateway MP6954", STAC_M5),
1708 SND_PCI_QUIRK(0x107b, 0x0461, "Gateway NX560XL", STAC_M1),
1709 SND_PCI_QUIRK(0x107b, 0x0681, "Gateway NX860", STAC_M2),
1710 SND_PCI_QUIRK(0x107b, 0x0367, "Gateway MX6453", STAC_M1_2),
1711 /* Not sure about the brand name for those */
1712 SND_PCI_QUIRK(0x107b, 0x0281, "Gateway mobile", STAC_M1),
1713 SND_PCI_QUIRK(0x107b, 0x0507, "Gateway mobile", STAC_M3),
1714 SND_PCI_QUIRK(0x107b, 0x0281, "Gateway mobile", STAC_M6),
1715 SND_PCI_QUIRK(0x107b, 0x0685, "Gateway mobile", STAC_M2_2),
1716 {} /* terminator */
1717 };
1718
1719 static const struct hda_pintbl ref92hd73xx_pin_configs[] = {
1720 { 0x0a, 0x02214030 },
1721 { 0x0b, 0x02a19040 },
1722 { 0x0c, 0x01a19020 },
1723 { 0x0d, 0x02214030 },
1724 { 0x0e, 0x0181302e },
1725 { 0x0f, 0x01014010 },
1726 { 0x10, 0x01014020 },
1727 { 0x11, 0x01014030 },
1728 { 0x12, 0x02319040 },
1729 { 0x13, 0x90a000f0 },
1730 { 0x14, 0x90a000f0 },
1731 { 0x22, 0x01452050 },
1732 { 0x23, 0x01452050 },
1733 {}
1734 };
1735
1736 static const struct hda_pintbl dell_m6_pin_configs[] = {
1737 { 0x0a, 0x0321101f },
1738 { 0x0b, 0x4f00000f },
1739 { 0x0c, 0x4f0000f0 },
1740 { 0x0d, 0x90170110 },
1741 { 0x0e, 0x03a11020 },
1742 { 0x0f, 0x0321101f },
1743 { 0x10, 0x4f0000f0 },
1744 { 0x11, 0x4f0000f0 },
1745 { 0x12, 0x4f0000f0 },
1746 { 0x13, 0x90a60160 },
1747 { 0x14, 0x4f0000f0 },
1748 { 0x22, 0x4f0000f0 },
1749 { 0x23, 0x4f0000f0 },
1750 {}
1751 };
1752
1753 static const struct hda_pintbl alienware_m17x_pin_configs[] = {
1754 { 0x0a, 0x0321101f },
1755 { 0x0b, 0x0321101f },
1756 { 0x0c, 0x03a11020 },
1757 { 0x0d, 0x03014020 },
1758 { 0x0e, 0x90170110 },
1759 { 0x0f, 0x4f0000f0 },
1760 { 0x10, 0x4f0000f0 },
1761 { 0x11, 0x4f0000f0 },
1762 { 0x12, 0x4f0000f0 },
1763 { 0x13, 0x90a60160 },
1764 { 0x14, 0x4f0000f0 },
1765 { 0x22, 0x4f0000f0 },
1766 { 0x23, 0x904601b0 },
1767 {}
1768 };
1769
1770 static const struct hda_pintbl intel_dg45id_pin_configs[] = {
1771 { 0x0a, 0x02214230 },
1772 { 0x0b, 0x02A19240 },
1773 { 0x0c, 0x01013214 },
1774 { 0x0d, 0x01014210 },
1775 { 0x0e, 0x01A19250 },
1776 { 0x0f, 0x01011212 },
1777 { 0x10, 0x01016211 },
1778 {}
1779 };
1780
1781 static const struct hda_pintbl stac92hd89xx_hp_front_jack_pin_configs[] = {
1782 { 0x0a, 0x02214030 },
1783 { 0x0b, 0x02A19010 },
1784 {}
1785 };
1786
1787 static const struct hda_pintbl stac92hd89xx_hp_z1_g2_right_mic_jack_pin_configs[] = {
1788 { 0x0e, 0x400000f0 },
1789 {}
1790 };
1791
stac92hd73xx_fixup_ref(struct hda_codec * codec,const struct hda_fixup * fix,int action)1792 static void stac92hd73xx_fixup_ref(struct hda_codec *codec,
1793 const struct hda_fixup *fix, int action)
1794 {
1795 struct sigmatel_spec *spec = codec->spec;
1796
1797 if (action != HDA_FIXUP_ACT_PRE_PROBE)
1798 return;
1799
1800 snd_hda_apply_pincfgs(codec, ref92hd73xx_pin_configs);
1801 spec->gpio_mask = spec->gpio_dir = spec->gpio_data = 0;
1802 }
1803
stac92hd73xx_fixup_dell(struct hda_codec * codec)1804 static void stac92hd73xx_fixup_dell(struct hda_codec *codec)
1805 {
1806 struct sigmatel_spec *spec = codec->spec;
1807
1808 snd_hda_apply_pincfgs(codec, dell_m6_pin_configs);
1809 spec->eapd_switch = 0;
1810 }
1811
stac92hd73xx_fixup_dell_eq(struct hda_codec * codec,const struct hda_fixup * fix,int action)1812 static void stac92hd73xx_fixup_dell_eq(struct hda_codec *codec,
1813 const struct hda_fixup *fix, int action)
1814 {
1815 struct sigmatel_spec *spec = codec->spec;
1816
1817 if (action != HDA_FIXUP_ACT_PRE_PROBE)
1818 return;
1819
1820 stac92hd73xx_fixup_dell(codec);
1821 snd_hda_add_verbs(codec, dell_eq_core_init);
1822 spec->volknob_init = 1;
1823 }
1824
1825 /* Analog Mics */
stac92hd73xx_fixup_dell_m6_amic(struct hda_codec * codec,const struct hda_fixup * fix,int action)1826 static void stac92hd73xx_fixup_dell_m6_amic(struct hda_codec *codec,
1827 const struct hda_fixup *fix, int action)
1828 {
1829 if (action != HDA_FIXUP_ACT_PRE_PROBE)
1830 return;
1831
1832 stac92hd73xx_fixup_dell(codec);
1833 snd_hda_codec_set_pincfg(codec, 0x0b, 0x90A70170);
1834 }
1835
1836 /* Digital Mics */
stac92hd73xx_fixup_dell_m6_dmic(struct hda_codec * codec,const struct hda_fixup * fix,int action)1837 static void stac92hd73xx_fixup_dell_m6_dmic(struct hda_codec *codec,
1838 const struct hda_fixup *fix, int action)
1839 {
1840 if (action != HDA_FIXUP_ACT_PRE_PROBE)
1841 return;
1842
1843 stac92hd73xx_fixup_dell(codec);
1844 snd_hda_codec_set_pincfg(codec, 0x13, 0x90A60160);
1845 }
1846
1847 /* Both */
stac92hd73xx_fixup_dell_m6_both(struct hda_codec * codec,const struct hda_fixup * fix,int action)1848 static void stac92hd73xx_fixup_dell_m6_both(struct hda_codec *codec,
1849 const struct hda_fixup *fix, int action)
1850 {
1851 if (action != HDA_FIXUP_ACT_PRE_PROBE)
1852 return;
1853
1854 stac92hd73xx_fixup_dell(codec);
1855 snd_hda_codec_set_pincfg(codec, 0x0b, 0x90A70170);
1856 snd_hda_codec_set_pincfg(codec, 0x13, 0x90A60160);
1857 }
1858
stac92hd73xx_fixup_alienware_m17x(struct hda_codec * codec,const struct hda_fixup * fix,int action)1859 static void stac92hd73xx_fixup_alienware_m17x(struct hda_codec *codec,
1860 const struct hda_fixup *fix, int action)
1861 {
1862 struct sigmatel_spec *spec = codec->spec;
1863
1864 if (action != HDA_FIXUP_ACT_PRE_PROBE)
1865 return;
1866
1867 snd_hda_apply_pincfgs(codec, alienware_m17x_pin_configs);
1868 spec->eapd_switch = 0;
1869 }
1870
stac92hd73xx_fixup_no_jd(struct hda_codec * codec,const struct hda_fixup * fix,int action)1871 static void stac92hd73xx_fixup_no_jd(struct hda_codec *codec,
1872 const struct hda_fixup *fix, int action)
1873 {
1874 if (action == HDA_FIXUP_ACT_PRE_PROBE)
1875 codec->no_jack_detect = 1;
1876 }
1877
1878 static const struct hda_fixup stac92hd73xx_fixups[] = {
1879 [STAC_92HD73XX_REF] = {
1880 .type = HDA_FIXUP_FUNC,
1881 .v.func = stac92hd73xx_fixup_ref,
1882 },
1883 [STAC_DELL_M6_AMIC] = {
1884 .type = HDA_FIXUP_FUNC,
1885 .v.func = stac92hd73xx_fixup_dell_m6_amic,
1886 },
1887 [STAC_DELL_M6_DMIC] = {
1888 .type = HDA_FIXUP_FUNC,
1889 .v.func = stac92hd73xx_fixup_dell_m6_dmic,
1890 },
1891 [STAC_DELL_M6_BOTH] = {
1892 .type = HDA_FIXUP_FUNC,
1893 .v.func = stac92hd73xx_fixup_dell_m6_both,
1894 },
1895 [STAC_DELL_EQ] = {
1896 .type = HDA_FIXUP_FUNC,
1897 .v.func = stac92hd73xx_fixup_dell_eq,
1898 },
1899 [STAC_ALIENWARE_M17X] = {
1900 .type = HDA_FIXUP_FUNC,
1901 .v.func = stac92hd73xx_fixup_alienware_m17x,
1902 },
1903 [STAC_92HD73XX_INTEL] = {
1904 .type = HDA_FIXUP_PINS,
1905 .v.pins = intel_dg45id_pin_configs,
1906 },
1907 [STAC_92HD73XX_NO_JD] = {
1908 .type = HDA_FIXUP_FUNC,
1909 .v.func = stac92hd73xx_fixup_no_jd,
1910 },
1911 [STAC_92HD89XX_HP_FRONT_JACK] = {
1912 .type = HDA_FIXUP_PINS,
1913 .v.pins = stac92hd89xx_hp_front_jack_pin_configs,
1914 },
1915 [STAC_92HD89XX_HP_Z1_G2_RIGHT_MIC_JACK] = {
1916 .type = HDA_FIXUP_PINS,
1917 .v.pins = stac92hd89xx_hp_z1_g2_right_mic_jack_pin_configs,
1918 },
1919 [STAC_92HD73XX_ASUS_MOBO] = {
1920 .type = HDA_FIXUP_PINS,
1921 .v.pins = (const struct hda_pintbl[]) {
1922 /* enable 5.1 and SPDIF out */
1923 { 0x0c, 0x01014411 },
1924 { 0x0d, 0x01014410 },
1925 { 0x0e, 0x01014412 },
1926 { 0x22, 0x014b1180 },
1927 { }
1928 }
1929 },
1930 };
1931
1932 static const struct hda_model_fixup stac92hd73xx_models[] = {
1933 { .id = STAC_92HD73XX_NO_JD, .name = "no-jd" },
1934 { .id = STAC_92HD73XX_REF, .name = "ref" },
1935 { .id = STAC_92HD73XX_INTEL, .name = "intel" },
1936 { .id = STAC_DELL_M6_AMIC, .name = "dell-m6-amic" },
1937 { .id = STAC_DELL_M6_DMIC, .name = "dell-m6-dmic" },
1938 { .id = STAC_DELL_M6_BOTH, .name = "dell-m6" },
1939 { .id = STAC_DELL_EQ, .name = "dell-eq" },
1940 { .id = STAC_ALIENWARE_M17X, .name = "alienware" },
1941 { .id = STAC_92HD73XX_ASUS_MOBO, .name = "asus-mobo" },
1942 {}
1943 };
1944
1945 static const struct snd_pci_quirk stac92hd73xx_fixup_tbl[] = {
1946 /* SigmaTel reference board */
1947 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
1948 "DFI LanParty", STAC_92HD73XX_REF),
1949 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
1950 "DFI LanParty", STAC_92HD73XX_REF),
1951 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5002,
1952 "Intel DG45ID", STAC_92HD73XX_INTEL),
1953 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5003,
1954 "Intel DG45FC", STAC_92HD73XX_INTEL),
1955 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0254,
1956 "Dell Studio 1535", STAC_DELL_M6_DMIC),
1957 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0255,
1958 "unknown Dell", STAC_DELL_M6_DMIC),
1959 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0256,
1960 "unknown Dell", STAC_DELL_M6_BOTH),
1961 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0257,
1962 "unknown Dell", STAC_DELL_M6_BOTH),
1963 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x025e,
1964 "unknown Dell", STAC_DELL_M6_AMIC),
1965 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x025f,
1966 "unknown Dell", STAC_DELL_M6_AMIC),
1967 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0271,
1968 "unknown Dell", STAC_DELL_M6_DMIC),
1969 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0272,
1970 "unknown Dell", STAC_DELL_M6_DMIC),
1971 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x029f,
1972 "Dell Studio 1537", STAC_DELL_M6_DMIC),
1973 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02a0,
1974 "Dell Studio 17", STAC_DELL_M6_DMIC),
1975 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02be,
1976 "Dell Studio 1555", STAC_DELL_M6_DMIC),
1977 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02bd,
1978 "Dell Studio 1557", STAC_DELL_M6_DMIC),
1979 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02fe,
1980 "Dell Studio XPS 1645", STAC_DELL_M6_DMIC),
1981 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0413,
1982 "Dell Studio 1558", STAC_DELL_M6_DMIC),
1983 /* codec SSID matching */
1984 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02a1,
1985 "Alienware M17x", STAC_ALIENWARE_M17X),
1986 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x043a,
1987 "Alienware M17x", STAC_ALIENWARE_M17X),
1988 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0490,
1989 "Alienware M17x R3", STAC_DELL_EQ),
1990 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1927,
1991 "HP Z1 G2", STAC_92HD89XX_HP_Z1_G2_RIGHT_MIC_JACK),
1992 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x2b17,
1993 "unknown HP", STAC_92HD89XX_HP_FRONT_JACK),
1994 SND_PCI_QUIRK(PCI_VENDOR_ID_ASUSTEK, 0x83f8, "ASUS AT4NM10",
1995 STAC_92HD73XX_ASUS_MOBO),
1996 {} /* terminator */
1997 };
1998
1999 static const struct hda_pintbl ref92hd83xxx_pin_configs[] = {
2000 { 0x0a, 0x02214030 },
2001 { 0x0b, 0x02211010 },
2002 { 0x0c, 0x02a19020 },
2003 { 0x0d, 0x02170130 },
2004 { 0x0e, 0x01014050 },
2005 { 0x0f, 0x01819040 },
2006 { 0x10, 0x01014020 },
2007 { 0x11, 0x90a3014e },
2008 { 0x1f, 0x01451160 },
2009 { 0x20, 0x98560170 },
2010 {}
2011 };
2012
2013 static const struct hda_pintbl dell_s14_pin_configs[] = {
2014 { 0x0a, 0x0221403f },
2015 { 0x0b, 0x0221101f },
2016 { 0x0c, 0x02a19020 },
2017 { 0x0d, 0x90170110 },
2018 { 0x0e, 0x40f000f0 },
2019 { 0x0f, 0x40f000f0 },
2020 { 0x10, 0x40f000f0 },
2021 { 0x11, 0x90a60160 },
2022 { 0x1f, 0x40f000f0 },
2023 { 0x20, 0x40f000f0 },
2024 {}
2025 };
2026
2027 static const struct hda_pintbl dell_vostro_3500_pin_configs[] = {
2028 { 0x0a, 0x02a11020 },
2029 { 0x0b, 0x0221101f },
2030 { 0x0c, 0x400000f0 },
2031 { 0x0d, 0x90170110 },
2032 { 0x0e, 0x400000f1 },
2033 { 0x0f, 0x400000f2 },
2034 { 0x10, 0x400000f3 },
2035 { 0x11, 0x90a60160 },
2036 { 0x1f, 0x400000f4 },
2037 { 0x20, 0x400000f5 },
2038 {}
2039 };
2040
2041 static const struct hda_pintbl hp_dv7_4000_pin_configs[] = {
2042 { 0x0a, 0x03a12050 },
2043 { 0x0b, 0x0321201f },
2044 { 0x0c, 0x40f000f0 },
2045 { 0x0d, 0x90170110 },
2046 { 0x0e, 0x40f000f0 },
2047 { 0x0f, 0x40f000f0 },
2048 { 0x10, 0x90170110 },
2049 { 0x11, 0xd5a30140 },
2050 { 0x1f, 0x40f000f0 },
2051 { 0x20, 0x40f000f0 },
2052 {}
2053 };
2054
2055 static const struct hda_pintbl hp_zephyr_pin_configs[] = {
2056 { 0x0a, 0x01813050 },
2057 { 0x0b, 0x0421201f },
2058 { 0x0c, 0x04a1205e },
2059 { 0x0d, 0x96130310 },
2060 { 0x0e, 0x96130310 },
2061 { 0x0f, 0x0101401f },
2062 { 0x10, 0x1111611f },
2063 { 0x11, 0xd5a30130 },
2064 {}
2065 };
2066
2067 static const struct hda_pintbl hp_cNB11_intquad_pin_configs[] = {
2068 { 0x0a, 0x40f000f0 },
2069 { 0x0b, 0x0221101f },
2070 { 0x0c, 0x02a11020 },
2071 { 0x0d, 0x92170110 },
2072 { 0x0e, 0x40f000f0 },
2073 { 0x0f, 0x92170110 },
2074 { 0x10, 0x40f000f0 },
2075 { 0x11, 0xd5a30130 },
2076 { 0x1f, 0x40f000f0 },
2077 { 0x20, 0x40f000f0 },
2078 {}
2079 };
2080
stac92hd83xxx_fixup_hp(struct hda_codec * codec,const struct hda_fixup * fix,int action)2081 static void stac92hd83xxx_fixup_hp(struct hda_codec *codec,
2082 const struct hda_fixup *fix, int action)
2083 {
2084 struct sigmatel_spec *spec = codec->spec;
2085
2086 if (action != HDA_FIXUP_ACT_PRE_PROBE)
2087 return;
2088
2089 if (hp_bnb2011_with_dock(codec)) {
2090 snd_hda_codec_set_pincfg(codec, 0xa, 0x2101201f);
2091 snd_hda_codec_set_pincfg(codec, 0xf, 0x2181205e);
2092 }
2093
2094 if (find_mute_led_cfg(codec, spec->default_polarity))
2095 codec_dbg(codec, "mute LED gpio %d polarity %d\n",
2096 spec->gpio_led,
2097 spec->gpio_led_polarity);
2098
2099 /* allow auto-switching of dock line-in */
2100 spec->gen.line_in_auto_switch = true;
2101 }
2102
stac92hd83xxx_fixup_hp_zephyr(struct hda_codec * codec,const struct hda_fixup * fix,int action)2103 static void stac92hd83xxx_fixup_hp_zephyr(struct hda_codec *codec,
2104 const struct hda_fixup *fix, int action)
2105 {
2106 if (action != HDA_FIXUP_ACT_PRE_PROBE)
2107 return;
2108
2109 snd_hda_apply_pincfgs(codec, hp_zephyr_pin_configs);
2110 snd_hda_add_verbs(codec, stac92hd83xxx_hp_zephyr_init);
2111 }
2112
stac92hd83xxx_fixup_hp_led(struct hda_codec * codec,const struct hda_fixup * fix,int action)2113 static void stac92hd83xxx_fixup_hp_led(struct hda_codec *codec,
2114 const struct hda_fixup *fix, int action)
2115 {
2116 struct sigmatel_spec *spec = codec->spec;
2117
2118 if (action == HDA_FIXUP_ACT_PRE_PROBE)
2119 spec->default_polarity = 0;
2120 }
2121
stac92hd83xxx_fixup_hp_inv_led(struct hda_codec * codec,const struct hda_fixup * fix,int action)2122 static void stac92hd83xxx_fixup_hp_inv_led(struct hda_codec *codec,
2123 const struct hda_fixup *fix, int action)
2124 {
2125 struct sigmatel_spec *spec = codec->spec;
2126
2127 if (action == HDA_FIXUP_ACT_PRE_PROBE)
2128 spec->default_polarity = 1;
2129 }
2130
stac92hd83xxx_fixup_hp_mic_led(struct hda_codec * codec,const struct hda_fixup * fix,int action)2131 static void stac92hd83xxx_fixup_hp_mic_led(struct hda_codec *codec,
2132 const struct hda_fixup *fix, int action)
2133 {
2134 struct sigmatel_spec *spec = codec->spec;
2135
2136 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
2137 spec->mic_mute_led_gpio = 0x08; /* GPIO3 */
2138 /* resetting controller clears GPIO, so we need to keep on */
2139 codec->bus->power_keep_link_on = 1;
2140 }
2141 }
2142
stac92hd83xxx_fixup_hp_led_gpio10(struct hda_codec * codec,const struct hda_fixup * fix,int action)2143 static void stac92hd83xxx_fixup_hp_led_gpio10(struct hda_codec *codec,
2144 const struct hda_fixup *fix, int action)
2145 {
2146 struct sigmatel_spec *spec = codec->spec;
2147
2148 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
2149 spec->gpio_led = 0x10; /* GPIO4 */
2150 spec->default_polarity = 0;
2151 }
2152 }
2153
stac92hd83xxx_fixup_headset_jack(struct hda_codec * codec,const struct hda_fixup * fix,int action)2154 static void stac92hd83xxx_fixup_headset_jack(struct hda_codec *codec,
2155 const struct hda_fixup *fix, int action)
2156 {
2157 struct sigmatel_spec *spec = codec->spec;
2158
2159 if (action == HDA_FIXUP_ACT_PRE_PROBE)
2160 spec->headset_jack = 1;
2161 }
2162
stac92hd83xxx_fixup_gpio10_eapd(struct hda_codec * codec,const struct hda_fixup * fix,int action)2163 static void stac92hd83xxx_fixup_gpio10_eapd(struct hda_codec *codec,
2164 const struct hda_fixup *fix,
2165 int action)
2166 {
2167 struct sigmatel_spec *spec = codec->spec;
2168
2169 if (action != HDA_FIXUP_ACT_PRE_PROBE)
2170 return;
2171 spec->eapd_mask = spec->gpio_mask = spec->gpio_dir =
2172 spec->gpio_data = 0x10;
2173 spec->eapd_switch = 0;
2174 }
2175
hp_envy_ts_fixup_dac_bind(struct hda_codec * codec,const struct hda_fixup * fix,int action)2176 static void hp_envy_ts_fixup_dac_bind(struct hda_codec *codec,
2177 const struct hda_fixup *fix,
2178 int action)
2179 {
2180 struct sigmatel_spec *spec = codec->spec;
2181 static hda_nid_t preferred_pairs[] = {
2182 0xd, 0x13,
2183 0
2184 };
2185
2186 if (action != HDA_FIXUP_ACT_PRE_PROBE)
2187 return;
2188
2189 spec->gen.preferred_dacs = preferred_pairs;
2190 }
2191
2192 static const struct hda_verb hp_bnb13_eq_verbs[] = {
2193 /* 44.1KHz base */
2194 { 0x22, 0x7A6, 0x3E },
2195 { 0x22, 0x7A7, 0x68 },
2196 { 0x22, 0x7A8, 0x17 },
2197 { 0x22, 0x7A9, 0x3E },
2198 { 0x22, 0x7AA, 0x68 },
2199 { 0x22, 0x7AB, 0x17 },
2200 { 0x22, 0x7AC, 0x00 },
2201 { 0x22, 0x7AD, 0x80 },
2202 { 0x22, 0x7A6, 0x83 },
2203 { 0x22, 0x7A7, 0x2F },
2204 { 0x22, 0x7A8, 0xD1 },
2205 { 0x22, 0x7A9, 0x83 },
2206 { 0x22, 0x7AA, 0x2F },
2207 { 0x22, 0x7AB, 0xD1 },
2208 { 0x22, 0x7AC, 0x01 },
2209 { 0x22, 0x7AD, 0x80 },
2210 { 0x22, 0x7A6, 0x3E },
2211 { 0x22, 0x7A7, 0x68 },
2212 { 0x22, 0x7A8, 0x17 },
2213 { 0x22, 0x7A9, 0x3E },
2214 { 0x22, 0x7AA, 0x68 },
2215 { 0x22, 0x7AB, 0x17 },
2216 { 0x22, 0x7AC, 0x02 },
2217 { 0x22, 0x7AD, 0x80 },
2218 { 0x22, 0x7A6, 0x7C },
2219 { 0x22, 0x7A7, 0xC6 },
2220 { 0x22, 0x7A8, 0x0C },
2221 { 0x22, 0x7A9, 0x7C },
2222 { 0x22, 0x7AA, 0xC6 },
2223 { 0x22, 0x7AB, 0x0C },
2224 { 0x22, 0x7AC, 0x03 },
2225 { 0x22, 0x7AD, 0x80 },
2226 { 0x22, 0x7A6, 0xC3 },
2227 { 0x22, 0x7A7, 0x25 },
2228 { 0x22, 0x7A8, 0xAF },
2229 { 0x22, 0x7A9, 0xC3 },
2230 { 0x22, 0x7AA, 0x25 },
2231 { 0x22, 0x7AB, 0xAF },
2232 { 0x22, 0x7AC, 0x04 },
2233 { 0x22, 0x7AD, 0x80 },
2234 { 0x22, 0x7A6, 0x3E },
2235 { 0x22, 0x7A7, 0x85 },
2236 { 0x22, 0x7A8, 0x73 },
2237 { 0x22, 0x7A9, 0x3E },
2238 { 0x22, 0x7AA, 0x85 },
2239 { 0x22, 0x7AB, 0x73 },
2240 { 0x22, 0x7AC, 0x05 },
2241 { 0x22, 0x7AD, 0x80 },
2242 { 0x22, 0x7A6, 0x85 },
2243 { 0x22, 0x7A7, 0x39 },
2244 { 0x22, 0x7A8, 0xC7 },
2245 { 0x22, 0x7A9, 0x85 },
2246 { 0x22, 0x7AA, 0x39 },
2247 { 0x22, 0x7AB, 0xC7 },
2248 { 0x22, 0x7AC, 0x06 },
2249 { 0x22, 0x7AD, 0x80 },
2250 { 0x22, 0x7A6, 0x3C },
2251 { 0x22, 0x7A7, 0x90 },
2252 { 0x22, 0x7A8, 0xB0 },
2253 { 0x22, 0x7A9, 0x3C },
2254 { 0x22, 0x7AA, 0x90 },
2255 { 0x22, 0x7AB, 0xB0 },
2256 { 0x22, 0x7AC, 0x07 },
2257 { 0x22, 0x7AD, 0x80 },
2258 { 0x22, 0x7A6, 0x7A },
2259 { 0x22, 0x7A7, 0xC6 },
2260 { 0x22, 0x7A8, 0x39 },
2261 { 0x22, 0x7A9, 0x7A },
2262 { 0x22, 0x7AA, 0xC6 },
2263 { 0x22, 0x7AB, 0x39 },
2264 { 0x22, 0x7AC, 0x08 },
2265 { 0x22, 0x7AD, 0x80 },
2266 { 0x22, 0x7A6, 0xC4 },
2267 { 0x22, 0x7A7, 0xE9 },
2268 { 0x22, 0x7A8, 0xDC },
2269 { 0x22, 0x7A9, 0xC4 },
2270 { 0x22, 0x7AA, 0xE9 },
2271 { 0x22, 0x7AB, 0xDC },
2272 { 0x22, 0x7AC, 0x09 },
2273 { 0x22, 0x7AD, 0x80 },
2274 { 0x22, 0x7A6, 0x3D },
2275 { 0x22, 0x7A7, 0xE1 },
2276 { 0x22, 0x7A8, 0x0D },
2277 { 0x22, 0x7A9, 0x3D },
2278 { 0x22, 0x7AA, 0xE1 },
2279 { 0x22, 0x7AB, 0x0D },
2280 { 0x22, 0x7AC, 0x0A },
2281 { 0x22, 0x7AD, 0x80 },
2282 { 0x22, 0x7A6, 0x89 },
2283 { 0x22, 0x7A7, 0xB6 },
2284 { 0x22, 0x7A8, 0xEB },
2285 { 0x22, 0x7A9, 0x89 },
2286 { 0x22, 0x7AA, 0xB6 },
2287 { 0x22, 0x7AB, 0xEB },
2288 { 0x22, 0x7AC, 0x0B },
2289 { 0x22, 0x7AD, 0x80 },
2290 { 0x22, 0x7A6, 0x39 },
2291 { 0x22, 0x7A7, 0x9D },
2292 { 0x22, 0x7A8, 0xFE },
2293 { 0x22, 0x7A9, 0x39 },
2294 { 0x22, 0x7AA, 0x9D },
2295 { 0x22, 0x7AB, 0xFE },
2296 { 0x22, 0x7AC, 0x0C },
2297 { 0x22, 0x7AD, 0x80 },
2298 { 0x22, 0x7A6, 0x76 },
2299 { 0x22, 0x7A7, 0x49 },
2300 { 0x22, 0x7A8, 0x15 },
2301 { 0x22, 0x7A9, 0x76 },
2302 { 0x22, 0x7AA, 0x49 },
2303 { 0x22, 0x7AB, 0x15 },
2304 { 0x22, 0x7AC, 0x0D },
2305 { 0x22, 0x7AD, 0x80 },
2306 { 0x22, 0x7A6, 0xC8 },
2307 { 0x22, 0x7A7, 0x80 },
2308 { 0x22, 0x7A8, 0xF5 },
2309 { 0x22, 0x7A9, 0xC8 },
2310 { 0x22, 0x7AA, 0x80 },
2311 { 0x22, 0x7AB, 0xF5 },
2312 { 0x22, 0x7AC, 0x0E },
2313 { 0x22, 0x7AD, 0x80 },
2314 { 0x22, 0x7A6, 0x40 },
2315 { 0x22, 0x7A7, 0x00 },
2316 { 0x22, 0x7A8, 0x00 },
2317 { 0x22, 0x7A9, 0x40 },
2318 { 0x22, 0x7AA, 0x00 },
2319 { 0x22, 0x7AB, 0x00 },
2320 { 0x22, 0x7AC, 0x0F },
2321 { 0x22, 0x7AD, 0x80 },
2322 { 0x22, 0x7A6, 0x90 },
2323 { 0x22, 0x7A7, 0x68 },
2324 { 0x22, 0x7A8, 0xF1 },
2325 { 0x22, 0x7A9, 0x90 },
2326 { 0x22, 0x7AA, 0x68 },
2327 { 0x22, 0x7AB, 0xF1 },
2328 { 0x22, 0x7AC, 0x10 },
2329 { 0x22, 0x7AD, 0x80 },
2330 { 0x22, 0x7A6, 0x34 },
2331 { 0x22, 0x7A7, 0x47 },
2332 { 0x22, 0x7A8, 0x6C },
2333 { 0x22, 0x7A9, 0x34 },
2334 { 0x22, 0x7AA, 0x47 },
2335 { 0x22, 0x7AB, 0x6C },
2336 { 0x22, 0x7AC, 0x11 },
2337 { 0x22, 0x7AD, 0x80 },
2338 { 0x22, 0x7A6, 0x6F },
2339 { 0x22, 0x7A7, 0x97 },
2340 { 0x22, 0x7A8, 0x0F },
2341 { 0x22, 0x7A9, 0x6F },
2342 { 0x22, 0x7AA, 0x97 },
2343 { 0x22, 0x7AB, 0x0F },
2344 { 0x22, 0x7AC, 0x12 },
2345 { 0x22, 0x7AD, 0x80 },
2346 { 0x22, 0x7A6, 0xCB },
2347 { 0x22, 0x7A7, 0xB8 },
2348 { 0x22, 0x7A8, 0x94 },
2349 { 0x22, 0x7A9, 0xCB },
2350 { 0x22, 0x7AA, 0xB8 },
2351 { 0x22, 0x7AB, 0x94 },
2352 { 0x22, 0x7AC, 0x13 },
2353 { 0x22, 0x7AD, 0x80 },
2354 { 0x22, 0x7A6, 0x40 },
2355 { 0x22, 0x7A7, 0x00 },
2356 { 0x22, 0x7A8, 0x00 },
2357 { 0x22, 0x7A9, 0x40 },
2358 { 0x22, 0x7AA, 0x00 },
2359 { 0x22, 0x7AB, 0x00 },
2360 { 0x22, 0x7AC, 0x14 },
2361 { 0x22, 0x7AD, 0x80 },
2362 { 0x22, 0x7A6, 0x95 },
2363 { 0x22, 0x7A7, 0x76 },
2364 { 0x22, 0x7A8, 0x5B },
2365 { 0x22, 0x7A9, 0x95 },
2366 { 0x22, 0x7AA, 0x76 },
2367 { 0x22, 0x7AB, 0x5B },
2368 { 0x22, 0x7AC, 0x15 },
2369 { 0x22, 0x7AD, 0x80 },
2370 { 0x22, 0x7A6, 0x31 },
2371 { 0x22, 0x7A7, 0xAC },
2372 { 0x22, 0x7A8, 0x31 },
2373 { 0x22, 0x7A9, 0x31 },
2374 { 0x22, 0x7AA, 0xAC },
2375 { 0x22, 0x7AB, 0x31 },
2376 { 0x22, 0x7AC, 0x16 },
2377 { 0x22, 0x7AD, 0x80 },
2378 { 0x22, 0x7A6, 0x6A },
2379 { 0x22, 0x7A7, 0x89 },
2380 { 0x22, 0x7A8, 0xA5 },
2381 { 0x22, 0x7A9, 0x6A },
2382 { 0x22, 0x7AA, 0x89 },
2383 { 0x22, 0x7AB, 0xA5 },
2384 { 0x22, 0x7AC, 0x17 },
2385 { 0x22, 0x7AD, 0x80 },
2386 { 0x22, 0x7A6, 0xCE },
2387 { 0x22, 0x7A7, 0x53 },
2388 { 0x22, 0x7A8, 0xCF },
2389 { 0x22, 0x7A9, 0xCE },
2390 { 0x22, 0x7AA, 0x53 },
2391 { 0x22, 0x7AB, 0xCF },
2392 { 0x22, 0x7AC, 0x18 },
2393 { 0x22, 0x7AD, 0x80 },
2394 { 0x22, 0x7A6, 0x40 },
2395 { 0x22, 0x7A7, 0x00 },
2396 { 0x22, 0x7A8, 0x00 },
2397 { 0x22, 0x7A9, 0x40 },
2398 { 0x22, 0x7AA, 0x00 },
2399 { 0x22, 0x7AB, 0x00 },
2400 { 0x22, 0x7AC, 0x19 },
2401 { 0x22, 0x7AD, 0x80 },
2402 /* 48KHz base */
2403 { 0x22, 0x7A6, 0x3E },
2404 { 0x22, 0x7A7, 0x88 },
2405 { 0x22, 0x7A8, 0xDC },
2406 { 0x22, 0x7A9, 0x3E },
2407 { 0x22, 0x7AA, 0x88 },
2408 { 0x22, 0x7AB, 0xDC },
2409 { 0x22, 0x7AC, 0x1A },
2410 { 0x22, 0x7AD, 0x80 },
2411 { 0x22, 0x7A6, 0x82 },
2412 { 0x22, 0x7A7, 0xEE },
2413 { 0x22, 0x7A8, 0x46 },
2414 { 0x22, 0x7A9, 0x82 },
2415 { 0x22, 0x7AA, 0xEE },
2416 { 0x22, 0x7AB, 0x46 },
2417 { 0x22, 0x7AC, 0x1B },
2418 { 0x22, 0x7AD, 0x80 },
2419 { 0x22, 0x7A6, 0x3E },
2420 { 0x22, 0x7A7, 0x88 },
2421 { 0x22, 0x7A8, 0xDC },
2422 { 0x22, 0x7A9, 0x3E },
2423 { 0x22, 0x7AA, 0x88 },
2424 { 0x22, 0x7AB, 0xDC },
2425 { 0x22, 0x7AC, 0x1C },
2426 { 0x22, 0x7AD, 0x80 },
2427 { 0x22, 0x7A6, 0x7D },
2428 { 0x22, 0x7A7, 0x09 },
2429 { 0x22, 0x7A8, 0x28 },
2430 { 0x22, 0x7A9, 0x7D },
2431 { 0x22, 0x7AA, 0x09 },
2432 { 0x22, 0x7AB, 0x28 },
2433 { 0x22, 0x7AC, 0x1D },
2434 { 0x22, 0x7AD, 0x80 },
2435 { 0x22, 0x7A6, 0xC2 },
2436 { 0x22, 0x7A7, 0xE5 },
2437 { 0x22, 0x7A8, 0xB4 },
2438 { 0x22, 0x7A9, 0xC2 },
2439 { 0x22, 0x7AA, 0xE5 },
2440 { 0x22, 0x7AB, 0xB4 },
2441 { 0x22, 0x7AC, 0x1E },
2442 { 0x22, 0x7AD, 0x80 },
2443 { 0x22, 0x7A6, 0x3E },
2444 { 0x22, 0x7A7, 0xA3 },
2445 { 0x22, 0x7A8, 0x1F },
2446 { 0x22, 0x7A9, 0x3E },
2447 { 0x22, 0x7AA, 0xA3 },
2448 { 0x22, 0x7AB, 0x1F },
2449 { 0x22, 0x7AC, 0x1F },
2450 { 0x22, 0x7AD, 0x80 },
2451 { 0x22, 0x7A6, 0x84 },
2452 { 0x22, 0x7A7, 0xCA },
2453 { 0x22, 0x7A8, 0xF1 },
2454 { 0x22, 0x7A9, 0x84 },
2455 { 0x22, 0x7AA, 0xCA },
2456 { 0x22, 0x7AB, 0xF1 },
2457 { 0x22, 0x7AC, 0x20 },
2458 { 0x22, 0x7AD, 0x80 },
2459 { 0x22, 0x7A6, 0x3C },
2460 { 0x22, 0x7A7, 0xD5 },
2461 { 0x22, 0x7A8, 0x9C },
2462 { 0x22, 0x7A9, 0x3C },
2463 { 0x22, 0x7AA, 0xD5 },
2464 { 0x22, 0x7AB, 0x9C },
2465 { 0x22, 0x7AC, 0x21 },
2466 { 0x22, 0x7AD, 0x80 },
2467 { 0x22, 0x7A6, 0x7B },
2468 { 0x22, 0x7A7, 0x35 },
2469 { 0x22, 0x7A8, 0x0F },
2470 { 0x22, 0x7A9, 0x7B },
2471 { 0x22, 0x7AA, 0x35 },
2472 { 0x22, 0x7AB, 0x0F },
2473 { 0x22, 0x7AC, 0x22 },
2474 { 0x22, 0x7AD, 0x80 },
2475 { 0x22, 0x7A6, 0xC4 },
2476 { 0x22, 0x7A7, 0x87 },
2477 { 0x22, 0x7A8, 0x45 },
2478 { 0x22, 0x7A9, 0xC4 },
2479 { 0x22, 0x7AA, 0x87 },
2480 { 0x22, 0x7AB, 0x45 },
2481 { 0x22, 0x7AC, 0x23 },
2482 { 0x22, 0x7AD, 0x80 },
2483 { 0x22, 0x7A6, 0x3E },
2484 { 0x22, 0x7A7, 0x0A },
2485 { 0x22, 0x7A8, 0x78 },
2486 { 0x22, 0x7A9, 0x3E },
2487 { 0x22, 0x7AA, 0x0A },
2488 { 0x22, 0x7AB, 0x78 },
2489 { 0x22, 0x7AC, 0x24 },
2490 { 0x22, 0x7AD, 0x80 },
2491 { 0x22, 0x7A6, 0x88 },
2492 { 0x22, 0x7A7, 0xE2 },
2493 { 0x22, 0x7A8, 0x05 },
2494 { 0x22, 0x7A9, 0x88 },
2495 { 0x22, 0x7AA, 0xE2 },
2496 { 0x22, 0x7AB, 0x05 },
2497 { 0x22, 0x7AC, 0x25 },
2498 { 0x22, 0x7AD, 0x80 },
2499 { 0x22, 0x7A6, 0x3A },
2500 { 0x22, 0x7A7, 0x1A },
2501 { 0x22, 0x7A8, 0xA3 },
2502 { 0x22, 0x7A9, 0x3A },
2503 { 0x22, 0x7AA, 0x1A },
2504 { 0x22, 0x7AB, 0xA3 },
2505 { 0x22, 0x7AC, 0x26 },
2506 { 0x22, 0x7AD, 0x80 },
2507 { 0x22, 0x7A6, 0x77 },
2508 { 0x22, 0x7A7, 0x1D },
2509 { 0x22, 0x7A8, 0xFB },
2510 { 0x22, 0x7A9, 0x77 },
2511 { 0x22, 0x7AA, 0x1D },
2512 { 0x22, 0x7AB, 0xFB },
2513 { 0x22, 0x7AC, 0x27 },
2514 { 0x22, 0x7AD, 0x80 },
2515 { 0x22, 0x7A6, 0xC7 },
2516 { 0x22, 0x7A7, 0xDA },
2517 { 0x22, 0x7A8, 0xE5 },
2518 { 0x22, 0x7A9, 0xC7 },
2519 { 0x22, 0x7AA, 0xDA },
2520 { 0x22, 0x7AB, 0xE5 },
2521 { 0x22, 0x7AC, 0x28 },
2522 { 0x22, 0x7AD, 0x80 },
2523 { 0x22, 0x7A6, 0x40 },
2524 { 0x22, 0x7A7, 0x00 },
2525 { 0x22, 0x7A8, 0x00 },
2526 { 0x22, 0x7A9, 0x40 },
2527 { 0x22, 0x7AA, 0x00 },
2528 { 0x22, 0x7AB, 0x00 },
2529 { 0x22, 0x7AC, 0x29 },
2530 { 0x22, 0x7AD, 0x80 },
2531 { 0x22, 0x7A6, 0x8E },
2532 { 0x22, 0x7A7, 0xD7 },
2533 { 0x22, 0x7A8, 0x22 },
2534 { 0x22, 0x7A9, 0x8E },
2535 { 0x22, 0x7AA, 0xD7 },
2536 { 0x22, 0x7AB, 0x22 },
2537 { 0x22, 0x7AC, 0x2A },
2538 { 0x22, 0x7AD, 0x80 },
2539 { 0x22, 0x7A6, 0x35 },
2540 { 0x22, 0x7A7, 0x26 },
2541 { 0x22, 0x7A8, 0xC6 },
2542 { 0x22, 0x7A9, 0x35 },
2543 { 0x22, 0x7AA, 0x26 },
2544 { 0x22, 0x7AB, 0xC6 },
2545 { 0x22, 0x7AC, 0x2B },
2546 { 0x22, 0x7AD, 0x80 },
2547 { 0x22, 0x7A6, 0x71 },
2548 { 0x22, 0x7A7, 0x28 },
2549 { 0x22, 0x7A8, 0xDE },
2550 { 0x22, 0x7A9, 0x71 },
2551 { 0x22, 0x7AA, 0x28 },
2552 { 0x22, 0x7AB, 0xDE },
2553 { 0x22, 0x7AC, 0x2C },
2554 { 0x22, 0x7AD, 0x80 },
2555 { 0x22, 0x7A6, 0xCA },
2556 { 0x22, 0x7A7, 0xD9 },
2557 { 0x22, 0x7A8, 0x3A },
2558 { 0x22, 0x7A9, 0xCA },
2559 { 0x22, 0x7AA, 0xD9 },
2560 { 0x22, 0x7AB, 0x3A },
2561 { 0x22, 0x7AC, 0x2D },
2562 { 0x22, 0x7AD, 0x80 },
2563 { 0x22, 0x7A6, 0x40 },
2564 { 0x22, 0x7A7, 0x00 },
2565 { 0x22, 0x7A8, 0x00 },
2566 { 0x22, 0x7A9, 0x40 },
2567 { 0x22, 0x7AA, 0x00 },
2568 { 0x22, 0x7AB, 0x00 },
2569 { 0x22, 0x7AC, 0x2E },
2570 { 0x22, 0x7AD, 0x80 },
2571 { 0x22, 0x7A6, 0x93 },
2572 { 0x22, 0x7A7, 0x5E },
2573 { 0x22, 0x7A8, 0xD8 },
2574 { 0x22, 0x7A9, 0x93 },
2575 { 0x22, 0x7AA, 0x5E },
2576 { 0x22, 0x7AB, 0xD8 },
2577 { 0x22, 0x7AC, 0x2F },
2578 { 0x22, 0x7AD, 0x80 },
2579 { 0x22, 0x7A6, 0x32 },
2580 { 0x22, 0x7A7, 0xB7 },
2581 { 0x22, 0x7A8, 0xB1 },
2582 { 0x22, 0x7A9, 0x32 },
2583 { 0x22, 0x7AA, 0xB7 },
2584 { 0x22, 0x7AB, 0xB1 },
2585 { 0x22, 0x7AC, 0x30 },
2586 { 0x22, 0x7AD, 0x80 },
2587 { 0x22, 0x7A6, 0x6C },
2588 { 0x22, 0x7A7, 0xA1 },
2589 { 0x22, 0x7A8, 0x28 },
2590 { 0x22, 0x7A9, 0x6C },
2591 { 0x22, 0x7AA, 0xA1 },
2592 { 0x22, 0x7AB, 0x28 },
2593 { 0x22, 0x7AC, 0x31 },
2594 { 0x22, 0x7AD, 0x80 },
2595 { 0x22, 0x7A6, 0xCD },
2596 { 0x22, 0x7A7, 0x48 },
2597 { 0x22, 0x7A8, 0x4F },
2598 { 0x22, 0x7A9, 0xCD },
2599 { 0x22, 0x7AA, 0x48 },
2600 { 0x22, 0x7AB, 0x4F },
2601 { 0x22, 0x7AC, 0x32 },
2602 { 0x22, 0x7AD, 0x80 },
2603 { 0x22, 0x7A6, 0x40 },
2604 { 0x22, 0x7A7, 0x00 },
2605 { 0x22, 0x7A8, 0x00 },
2606 { 0x22, 0x7A9, 0x40 },
2607 { 0x22, 0x7AA, 0x00 },
2608 { 0x22, 0x7AB, 0x00 },
2609 { 0x22, 0x7AC, 0x33 },
2610 { 0x22, 0x7AD, 0x80 },
2611 /* common */
2612 { 0x22, 0x782, 0xC1 },
2613 { 0x22, 0x771, 0x2C },
2614 { 0x22, 0x772, 0x2C },
2615 { 0x22, 0x788, 0x04 },
2616 { 0x01, 0x7B0, 0x08 },
2617 {}
2618 };
2619
2620 static const struct hda_fixup stac92hd83xxx_fixups[] = {
2621 [STAC_92HD83XXX_REF] = {
2622 .type = HDA_FIXUP_PINS,
2623 .v.pins = ref92hd83xxx_pin_configs,
2624 },
2625 [STAC_92HD83XXX_PWR_REF] = {
2626 .type = HDA_FIXUP_PINS,
2627 .v.pins = ref92hd83xxx_pin_configs,
2628 },
2629 [STAC_DELL_S14] = {
2630 .type = HDA_FIXUP_PINS,
2631 .v.pins = dell_s14_pin_configs,
2632 },
2633 [STAC_DELL_VOSTRO_3500] = {
2634 .type = HDA_FIXUP_PINS,
2635 .v.pins = dell_vostro_3500_pin_configs,
2636 },
2637 [STAC_92HD83XXX_HP_cNB11_INTQUAD] = {
2638 .type = HDA_FIXUP_PINS,
2639 .v.pins = hp_cNB11_intquad_pin_configs,
2640 .chained = true,
2641 .chain_id = STAC_92HD83XXX_HP,
2642 },
2643 [STAC_92HD83XXX_HP] = {
2644 .type = HDA_FIXUP_FUNC,
2645 .v.func = stac92hd83xxx_fixup_hp,
2646 },
2647 [STAC_HP_DV7_4000] = {
2648 .type = HDA_FIXUP_PINS,
2649 .v.pins = hp_dv7_4000_pin_configs,
2650 .chained = true,
2651 .chain_id = STAC_92HD83XXX_HP,
2652 },
2653 [STAC_HP_ZEPHYR] = {
2654 .type = HDA_FIXUP_FUNC,
2655 .v.func = stac92hd83xxx_fixup_hp_zephyr,
2656 .chained = true,
2657 .chain_id = STAC_92HD83XXX_HP,
2658 },
2659 [STAC_92HD83XXX_HP_LED] = {
2660 .type = HDA_FIXUP_FUNC,
2661 .v.func = stac92hd83xxx_fixup_hp_led,
2662 .chained = true,
2663 .chain_id = STAC_92HD83XXX_HP,
2664 },
2665 [STAC_92HD83XXX_HP_INV_LED] = {
2666 .type = HDA_FIXUP_FUNC,
2667 .v.func = stac92hd83xxx_fixup_hp_inv_led,
2668 .chained = true,
2669 .chain_id = STAC_92HD83XXX_HP,
2670 },
2671 [STAC_92HD83XXX_HP_MIC_LED] = {
2672 .type = HDA_FIXUP_FUNC,
2673 .v.func = stac92hd83xxx_fixup_hp_mic_led,
2674 .chained = true,
2675 .chain_id = STAC_92HD83XXX_HP,
2676 },
2677 [STAC_HP_LED_GPIO10] = {
2678 .type = HDA_FIXUP_FUNC,
2679 .v.func = stac92hd83xxx_fixup_hp_led_gpio10,
2680 .chained = true,
2681 .chain_id = STAC_92HD83XXX_HP,
2682 },
2683 [STAC_92HD83XXX_HEADSET_JACK] = {
2684 .type = HDA_FIXUP_FUNC,
2685 .v.func = stac92hd83xxx_fixup_headset_jack,
2686 },
2687 [STAC_HP_ENVY_BASS] = {
2688 .type = HDA_FIXUP_PINS,
2689 .v.pins = (const struct hda_pintbl[]) {
2690 { 0x0f, 0x90170111 },
2691 {}
2692 },
2693 },
2694 [STAC_HP_BNB13_EQ] = {
2695 .type = HDA_FIXUP_VERBS,
2696 .v.verbs = hp_bnb13_eq_verbs,
2697 .chained = true,
2698 .chain_id = STAC_92HD83XXX_HP_MIC_LED,
2699 },
2700 [STAC_HP_ENVY_TS_BASS] = {
2701 .type = HDA_FIXUP_PINS,
2702 .v.pins = (const struct hda_pintbl[]) {
2703 { 0x10, 0x92170111 },
2704 {}
2705 },
2706 },
2707 [STAC_HP_ENVY_TS_DAC_BIND] = {
2708 .type = HDA_FIXUP_FUNC,
2709 .v.func = hp_envy_ts_fixup_dac_bind,
2710 .chained = true,
2711 .chain_id = STAC_HP_ENVY_TS_BASS,
2712 },
2713 [STAC_92HD83XXX_GPIO10_EAPD] = {
2714 .type = HDA_FIXUP_FUNC,
2715 .v.func = stac92hd83xxx_fixup_gpio10_eapd,
2716 },
2717 };
2718
2719 static const struct hda_model_fixup stac92hd83xxx_models[] = {
2720 { .id = STAC_92HD83XXX_REF, .name = "ref" },
2721 { .id = STAC_92HD83XXX_PWR_REF, .name = "mic-ref" },
2722 { .id = STAC_DELL_S14, .name = "dell-s14" },
2723 { .id = STAC_DELL_VOSTRO_3500, .name = "dell-vostro-3500" },
2724 { .id = STAC_92HD83XXX_HP_cNB11_INTQUAD, .name = "hp_cNB11_intquad" },
2725 { .id = STAC_HP_DV7_4000, .name = "hp-dv7-4000" },
2726 { .id = STAC_HP_ZEPHYR, .name = "hp-zephyr" },
2727 { .id = STAC_92HD83XXX_HP_LED, .name = "hp-led" },
2728 { .id = STAC_92HD83XXX_HP_INV_LED, .name = "hp-inv-led" },
2729 { .id = STAC_92HD83XXX_HP_MIC_LED, .name = "hp-mic-led" },
2730 { .id = STAC_92HD83XXX_HEADSET_JACK, .name = "headset-jack" },
2731 { .id = STAC_HP_ENVY_BASS, .name = "hp-envy-bass" },
2732 { .id = STAC_HP_BNB13_EQ, .name = "hp-bnb13-eq" },
2733 { .id = STAC_HP_ENVY_TS_BASS, .name = "hp-envy-ts-bass" },
2734 {}
2735 };
2736
2737 static const struct snd_pci_quirk stac92hd83xxx_fixup_tbl[] = {
2738 /* SigmaTel reference board */
2739 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
2740 "DFI LanParty", STAC_92HD83XXX_REF),
2741 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
2742 "DFI LanParty", STAC_92HD83XXX_REF),
2743 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02ba,
2744 "unknown Dell", STAC_DELL_S14),
2745 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0532,
2746 "Dell Latitude E6230", STAC_92HD83XXX_HEADSET_JACK),
2747 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0533,
2748 "Dell Latitude E6330", STAC_92HD83XXX_HEADSET_JACK),
2749 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0534,
2750 "Dell Latitude E6430", STAC_92HD83XXX_HEADSET_JACK),
2751 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0535,
2752 "Dell Latitude E6530", STAC_92HD83XXX_HEADSET_JACK),
2753 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x053c,
2754 "Dell Latitude E5430", STAC_92HD83XXX_HEADSET_JACK),
2755 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x053d,
2756 "Dell Latitude E5530", STAC_92HD83XXX_HEADSET_JACK),
2757 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0549,
2758 "Dell Latitude E5430", STAC_92HD83XXX_HEADSET_JACK),
2759 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x057d,
2760 "Dell Latitude E6430s", STAC_92HD83XXX_HEADSET_JACK),
2761 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0584,
2762 "Dell Latitude E6430U", STAC_92HD83XXX_HEADSET_JACK),
2763 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x1028,
2764 "Dell Vostro 3500", STAC_DELL_VOSTRO_3500),
2765 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1656,
2766 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2767 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1657,
2768 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2769 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1658,
2770 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2771 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1659,
2772 "HP Pavilion dv7", STAC_HP_DV7_4000),
2773 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x165A,
2774 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2775 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x165B,
2776 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2777 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1888,
2778 "HP Envy Spectre", STAC_HP_ENVY_BASS),
2779 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1899,
2780 "HP Folio 13", STAC_HP_LED_GPIO10),
2781 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x18df,
2782 "HP Folio", STAC_HP_BNB13_EQ),
2783 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x18F8,
2784 "HP bNB13", STAC_HP_BNB13_EQ),
2785 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1909,
2786 "HP bNB13", STAC_HP_BNB13_EQ),
2787 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x190A,
2788 "HP bNB13", STAC_HP_BNB13_EQ),
2789 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x190e,
2790 "HP ENVY TS", STAC_HP_ENVY_TS_BASS),
2791 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1967,
2792 "HP ENVY TS", STAC_HP_ENVY_TS_DAC_BIND),
2793 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1940,
2794 "HP bNB13", STAC_HP_BNB13_EQ),
2795 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1941,
2796 "HP bNB13", STAC_HP_BNB13_EQ),
2797 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1942,
2798 "HP bNB13", STAC_HP_BNB13_EQ),
2799 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1943,
2800 "HP bNB13", STAC_HP_BNB13_EQ),
2801 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1944,
2802 "HP bNB13", STAC_HP_BNB13_EQ),
2803 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1945,
2804 "HP bNB13", STAC_HP_BNB13_EQ),
2805 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1946,
2806 "HP bNB13", STAC_HP_BNB13_EQ),
2807 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1948,
2808 "HP bNB13", STAC_HP_BNB13_EQ),
2809 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1949,
2810 "HP bNB13", STAC_HP_BNB13_EQ),
2811 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x194A,
2812 "HP bNB13", STAC_HP_BNB13_EQ),
2813 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x194B,
2814 "HP bNB13", STAC_HP_BNB13_EQ),
2815 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x194C,
2816 "HP bNB13", STAC_HP_BNB13_EQ),
2817 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x194E,
2818 "HP bNB13", STAC_HP_BNB13_EQ),
2819 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x194F,
2820 "HP bNB13", STAC_HP_BNB13_EQ),
2821 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1950,
2822 "HP bNB13", STAC_HP_BNB13_EQ),
2823 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1951,
2824 "HP bNB13", STAC_HP_BNB13_EQ),
2825 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x195A,
2826 "HP bNB13", STAC_HP_BNB13_EQ),
2827 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x195B,
2828 "HP bNB13", STAC_HP_BNB13_EQ),
2829 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x195C,
2830 "HP bNB13", STAC_HP_BNB13_EQ),
2831 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1991,
2832 "HP bNB13", STAC_HP_BNB13_EQ),
2833 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x2103,
2834 "HP bNB13", STAC_HP_BNB13_EQ),
2835 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x2104,
2836 "HP bNB13", STAC_HP_BNB13_EQ),
2837 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x2105,
2838 "HP bNB13", STAC_HP_BNB13_EQ),
2839 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x2106,
2840 "HP bNB13", STAC_HP_BNB13_EQ),
2841 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x2107,
2842 "HP bNB13", STAC_HP_BNB13_EQ),
2843 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x2108,
2844 "HP bNB13", STAC_HP_BNB13_EQ),
2845 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x2109,
2846 "HP bNB13", STAC_HP_BNB13_EQ),
2847 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x210A,
2848 "HP bNB13", STAC_HP_BNB13_EQ),
2849 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x210B,
2850 "HP bNB13", STAC_HP_BNB13_EQ),
2851 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x211C,
2852 "HP bNB13", STAC_HP_BNB13_EQ),
2853 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x211D,
2854 "HP bNB13", STAC_HP_BNB13_EQ),
2855 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x211E,
2856 "HP bNB13", STAC_HP_BNB13_EQ),
2857 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x211F,
2858 "HP bNB13", STAC_HP_BNB13_EQ),
2859 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x2120,
2860 "HP bNB13", STAC_HP_BNB13_EQ),
2861 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x2121,
2862 "HP bNB13", STAC_HP_BNB13_EQ),
2863 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x2122,
2864 "HP bNB13", STAC_HP_BNB13_EQ),
2865 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x2123,
2866 "HP bNB13", STAC_HP_BNB13_EQ),
2867 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x213E,
2868 "HP bNB13", STAC_HP_BNB13_EQ),
2869 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x213F,
2870 "HP bNB13", STAC_HP_BNB13_EQ),
2871 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x2140,
2872 "HP bNB13", STAC_HP_BNB13_EQ),
2873 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x21B2,
2874 "HP bNB13", STAC_HP_BNB13_EQ),
2875 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x21B3,
2876 "HP bNB13", STAC_HP_BNB13_EQ),
2877 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x21B5,
2878 "HP bNB13", STAC_HP_BNB13_EQ),
2879 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x21B6,
2880 "HP bNB13", STAC_HP_BNB13_EQ),
2881 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xff00, 0x1900,
2882 "HP", STAC_92HD83XXX_HP_MIC_LED),
2883 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xff00, 0x2000,
2884 "HP", STAC_92HD83XXX_HP_MIC_LED),
2885 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xff00, 0x2100,
2886 "HP", STAC_92HD83XXX_HP_MIC_LED),
2887 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3388,
2888 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2889 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3389,
2890 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2891 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x355B,
2892 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2893 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x355C,
2894 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2895 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x355D,
2896 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2897 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x355E,
2898 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2899 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x355F,
2900 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2901 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3560,
2902 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2903 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x358B,
2904 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2905 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x358C,
2906 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2907 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x358D,
2908 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2909 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3591,
2910 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2911 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3592,
2912 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2913 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3593,
2914 "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
2915 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3561,
2916 "HP", STAC_HP_ZEPHYR),
2917 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3660,
2918 "HP Mini", STAC_92HD83XXX_HP_LED),
2919 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x144E,
2920 "HP Pavilion dv5", STAC_92HD83XXX_HP_INV_LED),
2921 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x148a,
2922 "HP Mini", STAC_92HD83XXX_HP_LED),
2923 SND_PCI_QUIRK_VENDOR(PCI_VENDOR_ID_HP, "HP", STAC_92HD83XXX_HP),
2924 SND_PCI_QUIRK(PCI_VENDOR_ID_TOSHIBA, 0xfa91,
2925 "Toshiba Satellite S50D", STAC_92HD83XXX_GPIO10_EAPD),
2926 {} /* terminator */
2927 };
2928
2929 /* HP dv7 bass switch - GPIO5 */
2930 #define stac_hp_bass_gpio_info snd_ctl_boolean_mono_info
stac_hp_bass_gpio_get(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)2931 static int stac_hp_bass_gpio_get(struct snd_kcontrol *kcontrol,
2932 struct snd_ctl_elem_value *ucontrol)
2933 {
2934 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2935 struct sigmatel_spec *spec = codec->spec;
2936 ucontrol->value.integer.value[0] = !!(spec->gpio_data & 0x20);
2937 return 0;
2938 }
2939
stac_hp_bass_gpio_put(struct snd_kcontrol * kcontrol,struct snd_ctl_elem_value * ucontrol)2940 static int stac_hp_bass_gpio_put(struct snd_kcontrol *kcontrol,
2941 struct snd_ctl_elem_value *ucontrol)
2942 {
2943 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2944 struct sigmatel_spec *spec = codec->spec;
2945 unsigned int gpio_data;
2946
2947 gpio_data = (spec->gpio_data & ~0x20) |
2948 (ucontrol->value.integer.value[0] ? 0x20 : 0);
2949 if (gpio_data == spec->gpio_data)
2950 return 0;
2951 spec->gpio_data = gpio_data;
2952 stac_gpio_set(codec, spec->gpio_mask, spec->gpio_dir, spec->gpio_data);
2953 return 1;
2954 }
2955
2956 static const struct snd_kcontrol_new stac_hp_bass_sw_ctrl = {
2957 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2958 .info = stac_hp_bass_gpio_info,
2959 .get = stac_hp_bass_gpio_get,
2960 .put = stac_hp_bass_gpio_put,
2961 };
2962
stac_add_hp_bass_switch(struct hda_codec * codec)2963 static int stac_add_hp_bass_switch(struct hda_codec *codec)
2964 {
2965 struct sigmatel_spec *spec = codec->spec;
2966
2967 if (!snd_hda_gen_add_kctl(&spec->gen, "Bass Speaker Playback Switch",
2968 &stac_hp_bass_sw_ctrl))
2969 return -ENOMEM;
2970
2971 spec->gpio_mask |= 0x20;
2972 spec->gpio_dir |= 0x20;
2973 spec->gpio_data |= 0x20;
2974 return 0;
2975 }
2976
2977 static const struct hda_pintbl ref92hd71bxx_pin_configs[] = {
2978 { 0x0a, 0x02214030 },
2979 { 0x0b, 0x02a19040 },
2980 { 0x0c, 0x01a19020 },
2981 { 0x0d, 0x01014010 },
2982 { 0x0e, 0x0181302e },
2983 { 0x0f, 0x01014010 },
2984 { 0x14, 0x01019020 },
2985 { 0x18, 0x90a000f0 },
2986 { 0x19, 0x90a000f0 },
2987 { 0x1e, 0x01452050 },
2988 { 0x1f, 0x01452050 },
2989 {}
2990 };
2991
2992 static const struct hda_pintbl dell_m4_1_pin_configs[] = {
2993 { 0x0a, 0x0421101f },
2994 { 0x0b, 0x04a11221 },
2995 { 0x0c, 0x40f000f0 },
2996 { 0x0d, 0x90170110 },
2997 { 0x0e, 0x23a1902e },
2998 { 0x0f, 0x23014250 },
2999 { 0x14, 0x40f000f0 },
3000 { 0x18, 0x90a000f0 },
3001 { 0x19, 0x40f000f0 },
3002 { 0x1e, 0x4f0000f0 },
3003 { 0x1f, 0x4f0000f0 },
3004 {}
3005 };
3006
3007 static const struct hda_pintbl dell_m4_2_pin_configs[] = {
3008 { 0x0a, 0x0421101f },
3009 { 0x0b, 0x04a11221 },
3010 { 0x0c, 0x90a70330 },
3011 { 0x0d, 0x90170110 },
3012 { 0x0e, 0x23a1902e },
3013 { 0x0f, 0x23014250 },
3014 { 0x14, 0x40f000f0 },
3015 { 0x18, 0x40f000f0 },
3016 { 0x19, 0x40f000f0 },
3017 { 0x1e, 0x044413b0 },
3018 { 0x1f, 0x044413b0 },
3019 {}
3020 };
3021
3022 static const struct hda_pintbl dell_m4_3_pin_configs[] = {
3023 { 0x0a, 0x0421101f },
3024 { 0x0b, 0x04a11221 },
3025 { 0x0c, 0x90a70330 },
3026 { 0x0d, 0x90170110 },
3027 { 0x0e, 0x40f000f0 },
3028 { 0x0f, 0x40f000f0 },
3029 { 0x14, 0x40f000f0 },
3030 { 0x18, 0x90a000f0 },
3031 { 0x19, 0x40f000f0 },
3032 { 0x1e, 0x044413b0 },
3033 { 0x1f, 0x044413b0 },
3034 {}
3035 };
3036
stac92hd71bxx_fixup_ref(struct hda_codec * codec,const struct hda_fixup * fix,int action)3037 static void stac92hd71bxx_fixup_ref(struct hda_codec *codec,
3038 const struct hda_fixup *fix, int action)
3039 {
3040 struct sigmatel_spec *spec = codec->spec;
3041
3042 if (action != HDA_FIXUP_ACT_PRE_PROBE)
3043 return;
3044
3045 snd_hda_apply_pincfgs(codec, ref92hd71bxx_pin_configs);
3046 spec->gpio_mask = spec->gpio_dir = spec->gpio_data = 0;
3047 }
3048
stac92hd71bxx_fixup_hp_m4(struct hda_codec * codec,const struct hda_fixup * fix,int action)3049 static void stac92hd71bxx_fixup_hp_m4(struct hda_codec *codec,
3050 const struct hda_fixup *fix, int action)
3051 {
3052 struct sigmatel_spec *spec = codec->spec;
3053 struct hda_jack_callback *jack;
3054
3055 if (action != HDA_FIXUP_ACT_PRE_PROBE)
3056 return;
3057
3058 /* Enable VREF power saving on GPIO1 detect */
3059 snd_hda_codec_write_cache(codec, codec->afg, 0,
3060 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x02);
3061 jack = snd_hda_jack_detect_enable_callback(codec, codec->afg,
3062 stac_vref_event);
3063 if (!IS_ERR(jack))
3064 jack->private_data = 0x02;
3065
3066 spec->gpio_mask |= 0x02;
3067
3068 /* enable internal microphone */
3069 snd_hda_codec_set_pincfg(codec, 0x0e, 0x01813040);
3070 }
3071
stac92hd71bxx_fixup_hp_dv4(struct hda_codec * codec,const struct hda_fixup * fix,int action)3072 static void stac92hd71bxx_fixup_hp_dv4(struct hda_codec *codec,
3073 const struct hda_fixup *fix, int action)
3074 {
3075 struct sigmatel_spec *spec = codec->spec;
3076
3077 if (action != HDA_FIXUP_ACT_PRE_PROBE)
3078 return;
3079 spec->gpio_led = 0x01;
3080 }
3081
stac92hd71bxx_fixup_hp_dv5(struct hda_codec * codec,const struct hda_fixup * fix,int action)3082 static void stac92hd71bxx_fixup_hp_dv5(struct hda_codec *codec,
3083 const struct hda_fixup *fix, int action)
3084 {
3085 unsigned int cap;
3086
3087 switch (action) {
3088 case HDA_FIXUP_ACT_PRE_PROBE:
3089 snd_hda_codec_set_pincfg(codec, 0x0d, 0x90170010);
3090 break;
3091
3092 case HDA_FIXUP_ACT_PROBE:
3093 /* enable bass on HP dv7 */
3094 cap = snd_hda_param_read(codec, 0x1, AC_PAR_GPIO_CAP);
3095 cap &= AC_GPIO_IO_COUNT;
3096 if (cap >= 6)
3097 stac_add_hp_bass_switch(codec);
3098 break;
3099 }
3100 }
3101
stac92hd71bxx_fixup_hp_hdx(struct hda_codec * codec,const struct hda_fixup * fix,int action)3102 static void stac92hd71bxx_fixup_hp_hdx(struct hda_codec *codec,
3103 const struct hda_fixup *fix, int action)
3104 {
3105 struct sigmatel_spec *spec = codec->spec;
3106
3107 if (action != HDA_FIXUP_ACT_PRE_PROBE)
3108 return;
3109 spec->gpio_led = 0x08;
3110 }
3111
3112
stac92hd71bxx_fixup_hp(struct hda_codec * codec,const struct hda_fixup * fix,int action)3113 static void stac92hd71bxx_fixup_hp(struct hda_codec *codec,
3114 const struct hda_fixup *fix, int action)
3115 {
3116 struct sigmatel_spec *spec = codec->spec;
3117
3118 if (action != HDA_FIXUP_ACT_PRE_PROBE)
3119 return;
3120
3121 if (hp_blike_system(codec->subsystem_id)) {
3122 unsigned int pin_cfg = snd_hda_codec_get_pincfg(codec, 0x0f);
3123 if (get_defcfg_device(pin_cfg) == AC_JACK_LINE_OUT ||
3124 get_defcfg_device(pin_cfg) == AC_JACK_SPEAKER ||
3125 get_defcfg_device(pin_cfg) == AC_JACK_HP_OUT) {
3126 /* It was changed in the BIOS to just satisfy MS DTM.
3127 * Lets turn it back into slaved HP
3128 */
3129 pin_cfg = (pin_cfg & (~AC_DEFCFG_DEVICE))
3130 | (AC_JACK_HP_OUT <<
3131 AC_DEFCFG_DEVICE_SHIFT);
3132 pin_cfg = (pin_cfg & (~(AC_DEFCFG_DEF_ASSOC
3133 | AC_DEFCFG_SEQUENCE)))
3134 | 0x1f;
3135 snd_hda_codec_set_pincfg(codec, 0x0f, pin_cfg);
3136 }
3137 }
3138
3139 if (find_mute_led_cfg(codec, 1))
3140 codec_dbg(codec, "mute LED gpio %d polarity %d\n",
3141 spec->gpio_led,
3142 spec->gpio_led_polarity);
3143
3144 }
3145
3146 static const struct hda_fixup stac92hd71bxx_fixups[] = {
3147 [STAC_92HD71BXX_REF] = {
3148 .type = HDA_FIXUP_FUNC,
3149 .v.func = stac92hd71bxx_fixup_ref,
3150 },
3151 [STAC_DELL_M4_1] = {
3152 .type = HDA_FIXUP_PINS,
3153 .v.pins = dell_m4_1_pin_configs,
3154 },
3155 [STAC_DELL_M4_2] = {
3156 .type = HDA_FIXUP_PINS,
3157 .v.pins = dell_m4_2_pin_configs,
3158 },
3159 [STAC_DELL_M4_3] = {
3160 .type = HDA_FIXUP_PINS,
3161 .v.pins = dell_m4_3_pin_configs,
3162 },
3163 [STAC_HP_M4] = {
3164 .type = HDA_FIXUP_FUNC,
3165 .v.func = stac92hd71bxx_fixup_hp_m4,
3166 .chained = true,
3167 .chain_id = STAC_92HD71BXX_HP,
3168 },
3169 [STAC_HP_DV4] = {
3170 .type = HDA_FIXUP_FUNC,
3171 .v.func = stac92hd71bxx_fixup_hp_dv4,
3172 .chained = true,
3173 .chain_id = STAC_HP_DV5,
3174 },
3175 [STAC_HP_DV5] = {
3176 .type = HDA_FIXUP_FUNC,
3177 .v.func = stac92hd71bxx_fixup_hp_dv5,
3178 .chained = true,
3179 .chain_id = STAC_92HD71BXX_HP,
3180 },
3181 [STAC_HP_HDX] = {
3182 .type = HDA_FIXUP_FUNC,
3183 .v.func = stac92hd71bxx_fixup_hp_hdx,
3184 .chained = true,
3185 .chain_id = STAC_92HD71BXX_HP,
3186 },
3187 [STAC_92HD71BXX_HP] = {
3188 .type = HDA_FIXUP_FUNC,
3189 .v.func = stac92hd71bxx_fixup_hp,
3190 },
3191 };
3192
3193 static const struct hda_model_fixup stac92hd71bxx_models[] = {
3194 { .id = STAC_92HD71BXX_REF, .name = "ref" },
3195 { .id = STAC_DELL_M4_1, .name = "dell-m4-1" },
3196 { .id = STAC_DELL_M4_2, .name = "dell-m4-2" },
3197 { .id = STAC_DELL_M4_3, .name = "dell-m4-3" },
3198 { .id = STAC_HP_M4, .name = "hp-m4" },
3199 { .id = STAC_HP_DV4, .name = "hp-dv4" },
3200 { .id = STAC_HP_DV5, .name = "hp-dv5" },
3201 { .id = STAC_HP_HDX, .name = "hp-hdx" },
3202 { .id = STAC_HP_DV4, .name = "hp-dv4-1222nr" },
3203 {}
3204 };
3205
3206 static const struct snd_pci_quirk stac92hd71bxx_fixup_tbl[] = {
3207 /* SigmaTel reference board */
3208 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
3209 "DFI LanParty", STAC_92HD71BXX_REF),
3210 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
3211 "DFI LanParty", STAC_92HD71BXX_REF),
3212 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x1720,
3213 "HP", STAC_HP_DV5),
3214 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x3080,
3215 "HP", STAC_HP_DV5),
3216 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x30f0,
3217 "HP dv4-7", STAC_HP_DV4),
3218 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x3600,
3219 "HP dv4-7", STAC_HP_DV5),
3220 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3610,
3221 "HP HDX", STAC_HP_HDX), /* HDX18 */
3222 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x361a,
3223 "HP mini 1000", STAC_HP_M4),
3224 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x361b,
3225 "HP HDX", STAC_HP_HDX), /* HDX16 */
3226 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x3620,
3227 "HP dv6", STAC_HP_DV5),
3228 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3061,
3229 "HP dv6", STAC_HP_DV5), /* HP dv6-1110ax */
3230 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x363e,
3231 "HP DV6", STAC_HP_DV5),
3232 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x7010,
3233 "HP", STAC_HP_DV5),
3234 SND_PCI_QUIRK_VENDOR(PCI_VENDOR_ID_HP, "HP", STAC_92HD71BXX_HP),
3235 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0233,
3236 "unknown Dell", STAC_DELL_M4_1),
3237 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0234,
3238 "unknown Dell", STAC_DELL_M4_1),
3239 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0250,
3240 "unknown Dell", STAC_DELL_M4_1),
3241 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x024f,
3242 "unknown Dell", STAC_DELL_M4_1),
3243 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x024d,
3244 "unknown Dell", STAC_DELL_M4_1),
3245 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0251,
3246 "unknown Dell", STAC_DELL_M4_1),
3247 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0277,
3248 "unknown Dell", STAC_DELL_M4_1),
3249 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0263,
3250 "unknown Dell", STAC_DELL_M4_2),
3251 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0265,
3252 "unknown Dell", STAC_DELL_M4_2),
3253 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0262,
3254 "unknown Dell", STAC_DELL_M4_2),
3255 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0264,
3256 "unknown Dell", STAC_DELL_M4_2),
3257 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02aa,
3258 "unknown Dell", STAC_DELL_M4_3),
3259 {} /* terminator */
3260 };
3261
3262 static const struct hda_pintbl ref922x_pin_configs[] = {
3263 { 0x0a, 0x01014010 },
3264 { 0x0b, 0x01016011 },
3265 { 0x0c, 0x01012012 },
3266 { 0x0d, 0x0221401f },
3267 { 0x0e, 0x01813122 },
3268 { 0x0f, 0x01011014 },
3269 { 0x10, 0x01441030 },
3270 { 0x11, 0x01c41030 },
3271 { 0x15, 0x40000100 },
3272 { 0x1b, 0x40000100 },
3273 {}
3274 };
3275
3276 /*
3277 STAC 922X pin configs for
3278 102801A7
3279 102801AB
3280 102801A9
3281 102801D1
3282 102801D2
3283 */
3284 static const struct hda_pintbl dell_922x_d81_pin_configs[] = {
3285 { 0x0a, 0x02214030 },
3286 { 0x0b, 0x01a19021 },
3287 { 0x0c, 0x01111012 },
3288 { 0x0d, 0x01114010 },
3289 { 0x0e, 0x02a19020 },
3290 { 0x0f, 0x01117011 },
3291 { 0x10, 0x400001f0 },
3292 { 0x11, 0x400001f1 },
3293 { 0x15, 0x01813122 },
3294 { 0x1b, 0x400001f2 },
3295 {}
3296 };
3297
3298 /*
3299 STAC 922X pin configs for
3300 102801AC
3301 102801D0
3302 */
3303 static const struct hda_pintbl dell_922x_d82_pin_configs[] = {
3304 { 0x0a, 0x02214030 },
3305 { 0x0b, 0x01a19021 },
3306 { 0x0c, 0x01111012 },
3307 { 0x0d, 0x01114010 },
3308 { 0x0e, 0x02a19020 },
3309 { 0x0f, 0x01117011 },
3310 { 0x10, 0x01451140 },
3311 { 0x11, 0x400001f0 },
3312 { 0x15, 0x01813122 },
3313 { 0x1b, 0x400001f1 },
3314 {}
3315 };
3316
3317 /*
3318 STAC 922X pin configs for
3319 102801BF
3320 */
3321 static const struct hda_pintbl dell_922x_m81_pin_configs[] = {
3322 { 0x0a, 0x0321101f },
3323 { 0x0b, 0x01112024 },
3324 { 0x0c, 0x01111222 },
3325 { 0x0d, 0x91174220 },
3326 { 0x0e, 0x03a11050 },
3327 { 0x0f, 0x01116221 },
3328 { 0x10, 0x90a70330 },
3329 { 0x11, 0x01452340 },
3330 { 0x15, 0x40C003f1 },
3331 { 0x1b, 0x405003f0 },
3332 {}
3333 };
3334
3335 /*
3336 STAC 9221 A1 pin configs for
3337 102801D7 (Dell XPS M1210)
3338 */
3339 static const struct hda_pintbl dell_922x_m82_pin_configs[] = {
3340 { 0x0a, 0x02211211 },
3341 { 0x0b, 0x408103ff },
3342 { 0x0c, 0x02a1123e },
3343 { 0x0d, 0x90100310 },
3344 { 0x0e, 0x408003f1 },
3345 { 0x0f, 0x0221121f },
3346 { 0x10, 0x03451340 },
3347 { 0x11, 0x40c003f2 },
3348 { 0x15, 0x508003f3 },
3349 { 0x1b, 0x405003f4 },
3350 {}
3351 };
3352
3353 static const struct hda_pintbl d945gtp3_pin_configs[] = {
3354 { 0x0a, 0x0221401f },
3355 { 0x0b, 0x01a19022 },
3356 { 0x0c, 0x01813021 },
3357 { 0x0d, 0x01014010 },
3358 { 0x0e, 0x40000100 },
3359 { 0x0f, 0x40000100 },
3360 { 0x10, 0x40000100 },
3361 { 0x11, 0x40000100 },
3362 { 0x15, 0x02a19120 },
3363 { 0x1b, 0x40000100 },
3364 {}
3365 };
3366
3367 static const struct hda_pintbl d945gtp5_pin_configs[] = {
3368 { 0x0a, 0x0221401f },
3369 { 0x0b, 0x01011012 },
3370 { 0x0c, 0x01813024 },
3371 { 0x0d, 0x01014010 },
3372 { 0x0e, 0x01a19021 },
3373 { 0x0f, 0x01016011 },
3374 { 0x10, 0x01452130 },
3375 { 0x11, 0x40000100 },
3376 { 0x15, 0x02a19320 },
3377 { 0x1b, 0x40000100 },
3378 {}
3379 };
3380
3381 static const struct hda_pintbl intel_mac_v1_pin_configs[] = {
3382 { 0x0a, 0x0121e21f },
3383 { 0x0b, 0x400000ff },
3384 { 0x0c, 0x9017e110 },
3385 { 0x0d, 0x400000fd },
3386 { 0x0e, 0x400000fe },
3387 { 0x0f, 0x0181e020 },
3388 { 0x10, 0x1145e030 },
3389 { 0x11, 0x11c5e240 },
3390 { 0x15, 0x400000fc },
3391 { 0x1b, 0x400000fb },
3392 {}
3393 };
3394
3395 static const struct hda_pintbl intel_mac_v2_pin_configs[] = {
3396 { 0x0a, 0x0121e21f },
3397 { 0x0b, 0x90a7012e },
3398 { 0x0c, 0x9017e110 },
3399 { 0x0d, 0x400000fd },
3400 { 0x0e, 0x400000fe },
3401 { 0x0f, 0x0181e020 },
3402 { 0x10, 0x1145e230 },
3403 { 0x11, 0x500000fa },
3404 { 0x15, 0x400000fc },
3405 { 0x1b, 0x400000fb },
3406 {}
3407 };
3408
3409 static const struct hda_pintbl intel_mac_v3_pin_configs[] = {
3410 { 0x0a, 0x0121e21f },
3411 { 0x0b, 0x90a7012e },
3412 { 0x0c, 0x9017e110 },
3413 { 0x0d, 0x400000fd },
3414 { 0x0e, 0x400000fe },
3415 { 0x0f, 0x0181e020 },
3416 { 0x10, 0x1145e230 },
3417 { 0x11, 0x11c5e240 },
3418 { 0x15, 0x400000fc },
3419 { 0x1b, 0x400000fb },
3420 {}
3421 };
3422
3423 static const struct hda_pintbl intel_mac_v4_pin_configs[] = {
3424 { 0x0a, 0x0321e21f },
3425 { 0x0b, 0x03a1e02e },
3426 { 0x0c, 0x9017e110 },
3427 { 0x0d, 0x9017e11f },
3428 { 0x0e, 0x400000fe },
3429 { 0x0f, 0x0381e020 },
3430 { 0x10, 0x1345e230 },
3431 { 0x11, 0x13c5e240 },
3432 { 0x15, 0x400000fc },
3433 { 0x1b, 0x400000fb },
3434 {}
3435 };
3436
3437 static const struct hda_pintbl intel_mac_v5_pin_configs[] = {
3438 { 0x0a, 0x0321e21f },
3439 { 0x0b, 0x03a1e02e },
3440 { 0x0c, 0x9017e110 },
3441 { 0x0d, 0x9017e11f },
3442 { 0x0e, 0x400000fe },
3443 { 0x0f, 0x0381e020 },
3444 { 0x10, 0x1345e230 },
3445 { 0x11, 0x13c5e240 },
3446 { 0x15, 0x400000fc },
3447 { 0x1b, 0x400000fb },
3448 {}
3449 };
3450
3451 static const struct hda_pintbl ecs202_pin_configs[] = {
3452 { 0x0a, 0x0221401f },
3453 { 0x0b, 0x02a19020 },
3454 { 0x0c, 0x01a19020 },
3455 { 0x0d, 0x01114010 },
3456 { 0x0e, 0x408000f0 },
3457 { 0x0f, 0x01813022 },
3458 { 0x10, 0x074510a0 },
3459 { 0x11, 0x40c400f1 },
3460 { 0x15, 0x9037012e },
3461 { 0x1b, 0x40e000f2 },
3462 {}
3463 };
3464
3465 /* codec SSIDs for Intel Mac sharing the same PCI SSID 8384:7680 */
3466 static const struct snd_pci_quirk stac922x_intel_mac_fixup_tbl[] = {
3467 SND_PCI_QUIRK(0x0000, 0x0100, "Mac Mini", STAC_INTEL_MAC_V3),
3468 SND_PCI_QUIRK(0x106b, 0x0800, "Mac", STAC_INTEL_MAC_V1),
3469 SND_PCI_QUIRK(0x106b, 0x0600, "Mac", STAC_INTEL_MAC_V2),
3470 SND_PCI_QUIRK(0x106b, 0x0700, "Mac", STAC_INTEL_MAC_V2),
3471 SND_PCI_QUIRK(0x106b, 0x0e00, "Mac", STAC_INTEL_MAC_V3),
3472 SND_PCI_QUIRK(0x106b, 0x0f00, "Mac", STAC_INTEL_MAC_V3),
3473 SND_PCI_QUIRK(0x106b, 0x1600, "Mac", STAC_INTEL_MAC_V3),
3474 SND_PCI_QUIRK(0x106b, 0x1700, "Mac", STAC_INTEL_MAC_V3),
3475 SND_PCI_QUIRK(0x106b, 0x0200, "Mac", STAC_INTEL_MAC_V3),
3476 SND_PCI_QUIRK(0x106b, 0x1e00, "Mac", STAC_INTEL_MAC_V3),
3477 SND_PCI_QUIRK(0x106b, 0x1a00, "Mac", STAC_INTEL_MAC_V4),
3478 SND_PCI_QUIRK(0x106b, 0x0a00, "Mac", STAC_INTEL_MAC_V5),
3479 SND_PCI_QUIRK(0x106b, 0x2200, "Mac", STAC_INTEL_MAC_V5),
3480 {}
3481 };
3482
3483 static const struct hda_fixup stac922x_fixups[];
3484
3485 /* remap the fixup from codec SSID and apply it */
stac922x_fixup_intel_mac_auto(struct hda_codec * codec,const struct hda_fixup * fix,int action)3486 static void stac922x_fixup_intel_mac_auto(struct hda_codec *codec,
3487 const struct hda_fixup *fix,
3488 int action)
3489 {
3490 if (action != HDA_FIXUP_ACT_PRE_PROBE)
3491 return;
3492
3493 codec->fixup_id = HDA_FIXUP_ID_NOT_SET;
3494 snd_hda_pick_fixup(codec, NULL, stac922x_intel_mac_fixup_tbl,
3495 stac922x_fixups);
3496 if (codec->fixup_id != HDA_FIXUP_ID_NOT_SET)
3497 snd_hda_apply_fixup(codec, action);
3498 }
3499
stac922x_fixup_intel_mac_gpio(struct hda_codec * codec,const struct hda_fixup * fix,int action)3500 static void stac922x_fixup_intel_mac_gpio(struct hda_codec *codec,
3501 const struct hda_fixup *fix,
3502 int action)
3503 {
3504 struct sigmatel_spec *spec = codec->spec;
3505
3506 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3507 spec->gpio_mask = spec->gpio_dir = 0x03;
3508 spec->gpio_data = 0x03;
3509 }
3510 }
3511
3512 static const struct hda_fixup stac922x_fixups[] = {
3513 [STAC_D945_REF] = {
3514 .type = HDA_FIXUP_PINS,
3515 .v.pins = ref922x_pin_configs,
3516 },
3517 [STAC_D945GTP3] = {
3518 .type = HDA_FIXUP_PINS,
3519 .v.pins = d945gtp3_pin_configs,
3520 },
3521 [STAC_D945GTP5] = {
3522 .type = HDA_FIXUP_PINS,
3523 .v.pins = d945gtp5_pin_configs,
3524 },
3525 [STAC_INTEL_MAC_AUTO] = {
3526 .type = HDA_FIXUP_FUNC,
3527 .v.func = stac922x_fixup_intel_mac_auto,
3528 },
3529 [STAC_INTEL_MAC_V1] = {
3530 .type = HDA_FIXUP_PINS,
3531 .v.pins = intel_mac_v1_pin_configs,
3532 .chained = true,
3533 .chain_id = STAC_922X_INTEL_MAC_GPIO,
3534 },
3535 [STAC_INTEL_MAC_V2] = {
3536 .type = HDA_FIXUP_PINS,
3537 .v.pins = intel_mac_v2_pin_configs,
3538 .chained = true,
3539 .chain_id = STAC_922X_INTEL_MAC_GPIO,
3540 },
3541 [STAC_INTEL_MAC_V3] = {
3542 .type = HDA_FIXUP_PINS,
3543 .v.pins = intel_mac_v3_pin_configs,
3544 .chained = true,
3545 .chain_id = STAC_922X_INTEL_MAC_GPIO,
3546 },
3547 [STAC_INTEL_MAC_V4] = {
3548 .type = HDA_FIXUP_PINS,
3549 .v.pins = intel_mac_v4_pin_configs,
3550 .chained = true,
3551 .chain_id = STAC_922X_INTEL_MAC_GPIO,
3552 },
3553 [STAC_INTEL_MAC_V5] = {
3554 .type = HDA_FIXUP_PINS,
3555 .v.pins = intel_mac_v5_pin_configs,
3556 .chained = true,
3557 .chain_id = STAC_922X_INTEL_MAC_GPIO,
3558 },
3559 [STAC_922X_INTEL_MAC_GPIO] = {
3560 .type = HDA_FIXUP_FUNC,
3561 .v.func = stac922x_fixup_intel_mac_gpio,
3562 },
3563 [STAC_ECS_202] = {
3564 .type = HDA_FIXUP_PINS,
3565 .v.pins = ecs202_pin_configs,
3566 },
3567 [STAC_922X_DELL_D81] = {
3568 .type = HDA_FIXUP_PINS,
3569 .v.pins = dell_922x_d81_pin_configs,
3570 },
3571 [STAC_922X_DELL_D82] = {
3572 .type = HDA_FIXUP_PINS,
3573 .v.pins = dell_922x_d82_pin_configs,
3574 },
3575 [STAC_922X_DELL_M81] = {
3576 .type = HDA_FIXUP_PINS,
3577 .v.pins = dell_922x_m81_pin_configs,
3578 },
3579 [STAC_922X_DELL_M82] = {
3580 .type = HDA_FIXUP_PINS,
3581 .v.pins = dell_922x_m82_pin_configs,
3582 },
3583 };
3584
3585 static const struct hda_model_fixup stac922x_models[] = {
3586 { .id = STAC_D945_REF, .name = "ref" },
3587 { .id = STAC_D945GTP5, .name = "5stack" },
3588 { .id = STAC_D945GTP3, .name = "3stack" },
3589 { .id = STAC_INTEL_MAC_V1, .name = "intel-mac-v1" },
3590 { .id = STAC_INTEL_MAC_V2, .name = "intel-mac-v2" },
3591 { .id = STAC_INTEL_MAC_V3, .name = "intel-mac-v3" },
3592 { .id = STAC_INTEL_MAC_V4, .name = "intel-mac-v4" },
3593 { .id = STAC_INTEL_MAC_V5, .name = "intel-mac-v5" },
3594 { .id = STAC_INTEL_MAC_AUTO, .name = "intel-mac-auto" },
3595 { .id = STAC_ECS_202, .name = "ecs202" },
3596 { .id = STAC_922X_DELL_D81, .name = "dell-d81" },
3597 { .id = STAC_922X_DELL_D82, .name = "dell-d82" },
3598 { .id = STAC_922X_DELL_M81, .name = "dell-m81" },
3599 { .id = STAC_922X_DELL_M82, .name = "dell-m82" },
3600 /* for backward compatibility */
3601 { .id = STAC_INTEL_MAC_V3, .name = "macmini" },
3602 { .id = STAC_INTEL_MAC_V5, .name = "macbook" },
3603 { .id = STAC_INTEL_MAC_V3, .name = "macbook-pro-v1" },
3604 { .id = STAC_INTEL_MAC_V3, .name = "macbook-pro" },
3605 { .id = STAC_INTEL_MAC_V2, .name = "imac-intel" },
3606 { .id = STAC_INTEL_MAC_V3, .name = "imac-intel-20" },
3607 {}
3608 };
3609
3610 static const struct snd_pci_quirk stac922x_fixup_tbl[] = {
3611 /* SigmaTel reference board */
3612 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
3613 "DFI LanParty", STAC_D945_REF),
3614 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
3615 "DFI LanParty", STAC_D945_REF),
3616 /* Intel 945G based systems */
3617 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0101,
3618 "Intel D945G", STAC_D945GTP3),
3619 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0202,
3620 "Intel D945G", STAC_D945GTP3),
3621 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0606,
3622 "Intel D945G", STAC_D945GTP3),
3623 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0601,
3624 "Intel D945G", STAC_D945GTP3),
3625 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0111,
3626 "Intel D945G", STAC_D945GTP3),
3627 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1115,
3628 "Intel D945G", STAC_D945GTP3),
3629 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1116,
3630 "Intel D945G", STAC_D945GTP3),
3631 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1117,
3632 "Intel D945G", STAC_D945GTP3),
3633 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1118,
3634 "Intel D945G", STAC_D945GTP3),
3635 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1119,
3636 "Intel D945G", STAC_D945GTP3),
3637 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x8826,
3638 "Intel D945G", STAC_D945GTP3),
3639 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5049,
3640 "Intel D945G", STAC_D945GTP3),
3641 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5055,
3642 "Intel D945G", STAC_D945GTP3),
3643 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5048,
3644 "Intel D945G", STAC_D945GTP3),
3645 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0110,
3646 "Intel D945G", STAC_D945GTP3),
3647 /* Intel D945G 5-stack systems */
3648 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0404,
3649 "Intel D945G", STAC_D945GTP5),
3650 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0303,
3651 "Intel D945G", STAC_D945GTP5),
3652 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0013,
3653 "Intel D945G", STAC_D945GTP5),
3654 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0417,
3655 "Intel D945G", STAC_D945GTP5),
3656 /* Intel 945P based systems */
3657 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0b0b,
3658 "Intel D945P", STAC_D945GTP3),
3659 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0112,
3660 "Intel D945P", STAC_D945GTP3),
3661 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0d0d,
3662 "Intel D945P", STAC_D945GTP3),
3663 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0909,
3664 "Intel D945P", STAC_D945GTP3),
3665 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0505,
3666 "Intel D945P", STAC_D945GTP3),
3667 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0707,
3668 "Intel D945P", STAC_D945GTP5),
3669 /* other intel */
3670 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0204,
3671 "Intel D945", STAC_D945_REF),
3672 /* other systems */
3673
3674 /* Apple Intel Mac (Mac Mini, MacBook, MacBook Pro...) */
3675 SND_PCI_QUIRK(0x8384, 0x7680, "Mac", STAC_INTEL_MAC_AUTO),
3676
3677 /* Dell systems */
3678 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a7,
3679 "unknown Dell", STAC_922X_DELL_D81),
3680 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a9,
3681 "unknown Dell", STAC_922X_DELL_D81),
3682 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ab,
3683 "unknown Dell", STAC_922X_DELL_D81),
3684 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ac,
3685 "unknown Dell", STAC_922X_DELL_D82),
3686 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01bf,
3687 "unknown Dell", STAC_922X_DELL_M81),
3688 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d0,
3689 "unknown Dell", STAC_922X_DELL_D82),
3690 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d1,
3691 "unknown Dell", STAC_922X_DELL_D81),
3692 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d2,
3693 "unknown Dell", STAC_922X_DELL_D81),
3694 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d7,
3695 "Dell XPS M1210", STAC_922X_DELL_M82),
3696 /* ECS/PC Chips boards */
3697 SND_PCI_QUIRK_MASK(0x1019, 0xf000, 0x2000,
3698 "ECS/PC chips", STAC_ECS_202),
3699 {} /* terminator */
3700 };
3701
3702 static const struct hda_pintbl ref927x_pin_configs[] = {
3703 { 0x0a, 0x02214020 },
3704 { 0x0b, 0x02a19080 },
3705 { 0x0c, 0x0181304e },
3706 { 0x0d, 0x01014010 },
3707 { 0x0e, 0x01a19040 },
3708 { 0x0f, 0x01011012 },
3709 { 0x10, 0x01016011 },
3710 { 0x11, 0x0101201f },
3711 { 0x12, 0x183301f0 },
3712 { 0x13, 0x18a001f0 },
3713 { 0x14, 0x18a001f0 },
3714 { 0x21, 0x01442070 },
3715 { 0x22, 0x01c42190 },
3716 { 0x23, 0x40000100 },
3717 {}
3718 };
3719
3720 static const struct hda_pintbl d965_3st_pin_configs[] = {
3721 { 0x0a, 0x0221401f },
3722 { 0x0b, 0x02a19120 },
3723 { 0x0c, 0x40000100 },
3724 { 0x0d, 0x01014011 },
3725 { 0x0e, 0x01a19021 },
3726 { 0x0f, 0x01813024 },
3727 { 0x10, 0x40000100 },
3728 { 0x11, 0x40000100 },
3729 { 0x12, 0x40000100 },
3730 { 0x13, 0x40000100 },
3731 { 0x14, 0x40000100 },
3732 { 0x21, 0x40000100 },
3733 { 0x22, 0x40000100 },
3734 { 0x23, 0x40000100 },
3735 {}
3736 };
3737
3738 static const struct hda_pintbl d965_5st_pin_configs[] = {
3739 { 0x0a, 0x02214020 },
3740 { 0x0b, 0x02a19080 },
3741 { 0x0c, 0x0181304e },
3742 { 0x0d, 0x01014010 },
3743 { 0x0e, 0x01a19040 },
3744 { 0x0f, 0x01011012 },
3745 { 0x10, 0x01016011 },
3746 { 0x11, 0x40000100 },
3747 { 0x12, 0x40000100 },
3748 { 0x13, 0x40000100 },
3749 { 0x14, 0x40000100 },
3750 { 0x21, 0x01442070 },
3751 { 0x22, 0x40000100 },
3752 { 0x23, 0x40000100 },
3753 {}
3754 };
3755
3756 static const struct hda_pintbl d965_5st_no_fp_pin_configs[] = {
3757 { 0x0a, 0x40000100 },
3758 { 0x0b, 0x40000100 },
3759 { 0x0c, 0x0181304e },
3760 { 0x0d, 0x01014010 },
3761 { 0x0e, 0x01a19040 },
3762 { 0x0f, 0x01011012 },
3763 { 0x10, 0x01016011 },
3764 { 0x11, 0x40000100 },
3765 { 0x12, 0x40000100 },
3766 { 0x13, 0x40000100 },
3767 { 0x14, 0x40000100 },
3768 { 0x21, 0x01442070 },
3769 { 0x22, 0x40000100 },
3770 { 0x23, 0x40000100 },
3771 {}
3772 };
3773
3774 static const struct hda_pintbl dell_3st_pin_configs[] = {
3775 { 0x0a, 0x02211230 },
3776 { 0x0b, 0x02a11220 },
3777 { 0x0c, 0x01a19040 },
3778 { 0x0d, 0x01114210 },
3779 { 0x0e, 0x01111212 },
3780 { 0x0f, 0x01116211 },
3781 { 0x10, 0x01813050 },
3782 { 0x11, 0x01112214 },
3783 { 0x12, 0x403003fa },
3784 { 0x13, 0x90a60040 },
3785 { 0x14, 0x90a60040 },
3786 { 0x21, 0x404003fb },
3787 { 0x22, 0x40c003fc },
3788 { 0x23, 0x40000100 },
3789 {}
3790 };
3791
stac927x_fixup_ref_no_jd(struct hda_codec * codec,const struct hda_fixup * fix,int action)3792 static void stac927x_fixup_ref_no_jd(struct hda_codec *codec,
3793 const struct hda_fixup *fix, int action)
3794 {
3795 /* no jack detecion for ref-no-jd model */
3796 if (action == HDA_FIXUP_ACT_PRE_PROBE)
3797 codec->no_jack_detect = 1;
3798 }
3799
stac927x_fixup_ref(struct hda_codec * codec,const struct hda_fixup * fix,int action)3800 static void stac927x_fixup_ref(struct hda_codec *codec,
3801 const struct hda_fixup *fix, int action)
3802 {
3803 struct sigmatel_spec *spec = codec->spec;
3804
3805 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3806 snd_hda_apply_pincfgs(codec, ref927x_pin_configs);
3807 spec->eapd_mask = spec->gpio_mask = 0;
3808 spec->gpio_dir = spec->gpio_data = 0;
3809 }
3810 }
3811
stac927x_fixup_dell_dmic(struct hda_codec * codec,const struct hda_fixup * fix,int action)3812 static void stac927x_fixup_dell_dmic(struct hda_codec *codec,
3813 const struct hda_fixup *fix, int action)
3814 {
3815 struct sigmatel_spec *spec = codec->spec;
3816
3817 if (action != HDA_FIXUP_ACT_PRE_PROBE)
3818 return;
3819
3820 if (codec->subsystem_id != 0x1028022f) {
3821 /* GPIO2 High = Enable EAPD */
3822 spec->eapd_mask = spec->gpio_mask = 0x04;
3823 spec->gpio_dir = spec->gpio_data = 0x04;
3824 }
3825
3826 snd_hda_add_verbs(codec, dell_3st_core_init);
3827 spec->volknob_init = 1;
3828 }
3829
stac927x_fixup_volknob(struct hda_codec * codec,const struct hda_fixup * fix,int action)3830 static void stac927x_fixup_volknob(struct hda_codec *codec,
3831 const struct hda_fixup *fix, int action)
3832 {
3833 struct sigmatel_spec *spec = codec->spec;
3834
3835 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3836 snd_hda_add_verbs(codec, stac927x_volknob_core_init);
3837 spec->volknob_init = 1;
3838 }
3839 }
3840
3841 static const struct hda_fixup stac927x_fixups[] = {
3842 [STAC_D965_REF_NO_JD] = {
3843 .type = HDA_FIXUP_FUNC,
3844 .v.func = stac927x_fixup_ref_no_jd,
3845 .chained = true,
3846 .chain_id = STAC_D965_REF,
3847 },
3848 [STAC_D965_REF] = {
3849 .type = HDA_FIXUP_FUNC,
3850 .v.func = stac927x_fixup_ref,
3851 },
3852 [STAC_D965_3ST] = {
3853 .type = HDA_FIXUP_PINS,
3854 .v.pins = d965_3st_pin_configs,
3855 .chained = true,
3856 .chain_id = STAC_D965_VERBS,
3857 },
3858 [STAC_D965_5ST] = {
3859 .type = HDA_FIXUP_PINS,
3860 .v.pins = d965_5st_pin_configs,
3861 .chained = true,
3862 .chain_id = STAC_D965_VERBS,
3863 },
3864 [STAC_D965_VERBS] = {
3865 .type = HDA_FIXUP_VERBS,
3866 .v.verbs = d965_core_init,
3867 },
3868 [STAC_D965_5ST_NO_FP] = {
3869 .type = HDA_FIXUP_PINS,
3870 .v.pins = d965_5st_no_fp_pin_configs,
3871 },
3872 [STAC_DELL_3ST] = {
3873 .type = HDA_FIXUP_PINS,
3874 .v.pins = dell_3st_pin_configs,
3875 .chained = true,
3876 .chain_id = STAC_927X_DELL_DMIC,
3877 },
3878 [STAC_DELL_BIOS] = {
3879 .type = HDA_FIXUP_PINS,
3880 .v.pins = (const struct hda_pintbl[]) {
3881 /* correct the front output jack as a hp out */
3882 { 0x0f, 0x0221101f },
3883 /* correct the front input jack as a mic */
3884 { 0x0e, 0x02a79130 },
3885 {}
3886 },
3887 .chained = true,
3888 .chain_id = STAC_927X_DELL_DMIC,
3889 },
3890 [STAC_DELL_BIOS_AMIC] = {
3891 .type = HDA_FIXUP_PINS,
3892 .v.pins = (const struct hda_pintbl[]) {
3893 /* configure the analog microphone on some laptops */
3894 { 0x0c, 0x90a79130 },
3895 {}
3896 },
3897 .chained = true,
3898 .chain_id = STAC_DELL_BIOS,
3899 },
3900 [STAC_DELL_BIOS_SPDIF] = {
3901 .type = HDA_FIXUP_PINS,
3902 .v.pins = (const struct hda_pintbl[]) {
3903 /* correct the device field to SPDIF out */
3904 { 0x21, 0x01442070 },
3905 {}
3906 },
3907 .chained = true,
3908 .chain_id = STAC_DELL_BIOS,
3909 },
3910 [STAC_927X_DELL_DMIC] = {
3911 .type = HDA_FIXUP_FUNC,
3912 .v.func = stac927x_fixup_dell_dmic,
3913 },
3914 [STAC_927X_VOLKNOB] = {
3915 .type = HDA_FIXUP_FUNC,
3916 .v.func = stac927x_fixup_volknob,
3917 },
3918 };
3919
3920 static const struct hda_model_fixup stac927x_models[] = {
3921 { .id = STAC_D965_REF_NO_JD, .name = "ref-no-jd" },
3922 { .id = STAC_D965_REF, .name = "ref" },
3923 { .id = STAC_D965_3ST, .name = "3stack" },
3924 { .id = STAC_D965_5ST, .name = "5stack" },
3925 { .id = STAC_D965_5ST_NO_FP, .name = "5stack-no-fp" },
3926 { .id = STAC_DELL_3ST, .name = "dell-3stack" },
3927 { .id = STAC_DELL_BIOS, .name = "dell-bios" },
3928 { .id = STAC_DELL_BIOS_AMIC, .name = "dell-bios-amic" },
3929 { .id = STAC_927X_VOLKNOB, .name = "volknob" },
3930 {}
3931 };
3932
3933 static const struct snd_pci_quirk stac927x_fixup_tbl[] = {
3934 /* SigmaTel reference board */
3935 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
3936 "DFI LanParty", STAC_D965_REF),
3937 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
3938 "DFI LanParty", STAC_D965_REF),
3939 /* Intel 946 based systems */
3940 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x3d01, "Intel D946", STAC_D965_3ST),
3941 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0xa301, "Intel D946", STAC_D965_3ST),
3942 /* 965 based 3 stack systems */
3943 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2100,
3944 "Intel D965", STAC_D965_3ST),
3945 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2000,
3946 "Intel D965", STAC_D965_3ST),
3947 /* Dell 3 stack systems */
3948 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01dd, "Dell Dimension E520", STAC_DELL_3ST),
3949 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ed, "Dell ", STAC_DELL_3ST),
3950 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f4, "Dell ", STAC_DELL_3ST),
3951 /* Dell 3 stack systems with verb table in BIOS */
3952 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f3, "Dell Inspiron 1420", STAC_DELL_BIOS),
3953 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f7, "Dell XPS M1730", STAC_DELL_BIOS),
3954 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0227, "Dell Vostro 1400 ", STAC_DELL_BIOS),
3955 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x022e, "Dell ", STAC_DELL_BIOS_SPDIF),
3956 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x022f, "Dell Inspiron 1525", STAC_DELL_BIOS),
3957 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0242, "Dell ", STAC_DELL_BIOS),
3958 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0243, "Dell ", STAC_DELL_BIOS),
3959 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02ff, "Dell ", STAC_DELL_BIOS),
3960 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0209, "Dell XPS 1330", STAC_DELL_BIOS_SPDIF),
3961 /* 965 based 5 stack systems */
3962 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2300,
3963 "Intel D965", STAC_D965_5ST),
3964 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2500,
3965 "Intel D965", STAC_D965_5ST),
3966 /* volume-knob fixes */
3967 SND_PCI_QUIRK_VENDOR(0x10cf, "FSC", STAC_927X_VOLKNOB),
3968 {} /* terminator */
3969 };
3970
3971 static const struct hda_pintbl ref9205_pin_configs[] = {
3972 { 0x0a, 0x40000100 },
3973 { 0x0b, 0x40000100 },
3974 { 0x0c, 0x01016011 },
3975 { 0x0d, 0x01014010 },
3976 { 0x0e, 0x01813122 },
3977 { 0x0f, 0x01a19021 },
3978 { 0x14, 0x01019020 },
3979 { 0x16, 0x40000100 },
3980 { 0x17, 0x90a000f0 },
3981 { 0x18, 0x90a000f0 },
3982 { 0x21, 0x01441030 },
3983 { 0x22, 0x01c41030 },
3984 {}
3985 };
3986
3987 /*
3988 STAC 9205 pin configs for
3989 102801F1
3990 102801F2
3991 102801FC
3992 102801FD
3993 10280204
3994 1028021F
3995 10280228 (Dell Vostro 1500)
3996 10280229 (Dell Vostro 1700)
3997 */
3998 static const struct hda_pintbl dell_9205_m42_pin_configs[] = {
3999 { 0x0a, 0x0321101F },
4000 { 0x0b, 0x03A11020 },
4001 { 0x0c, 0x400003FA },
4002 { 0x0d, 0x90170310 },
4003 { 0x0e, 0x400003FB },
4004 { 0x0f, 0x400003FC },
4005 { 0x14, 0x400003FD },
4006 { 0x16, 0x40F000F9 },
4007 { 0x17, 0x90A60330 },
4008 { 0x18, 0x400003FF },
4009 { 0x21, 0x0144131F },
4010 { 0x22, 0x40C003FE },
4011 {}
4012 };
4013
4014 /*
4015 STAC 9205 pin configs for
4016 102801F9
4017 102801FA
4018 102801FE
4019 102801FF (Dell Precision M4300)
4020 10280206
4021 10280200
4022 10280201
4023 */
4024 static const struct hda_pintbl dell_9205_m43_pin_configs[] = {
4025 { 0x0a, 0x0321101f },
4026 { 0x0b, 0x03a11020 },
4027 { 0x0c, 0x90a70330 },
4028 { 0x0d, 0x90170310 },
4029 { 0x0e, 0x400000fe },
4030 { 0x0f, 0x400000ff },
4031 { 0x14, 0x400000fd },
4032 { 0x16, 0x40f000f9 },
4033 { 0x17, 0x400000fa },
4034 { 0x18, 0x400000fc },
4035 { 0x21, 0x0144131f },
4036 { 0x22, 0x40c003f8 },
4037 /* Enable SPDIF in/out */
4038 { 0x1f, 0x01441030 },
4039 { 0x20, 0x1c410030 },
4040 {}
4041 };
4042
4043 static const struct hda_pintbl dell_9205_m44_pin_configs[] = {
4044 { 0x0a, 0x0421101f },
4045 { 0x0b, 0x04a11020 },
4046 { 0x0c, 0x400003fa },
4047 { 0x0d, 0x90170310 },
4048 { 0x0e, 0x400003fb },
4049 { 0x0f, 0x400003fc },
4050 { 0x14, 0x400003fd },
4051 { 0x16, 0x400003f9 },
4052 { 0x17, 0x90a60330 },
4053 { 0x18, 0x400003ff },
4054 { 0x21, 0x01441340 },
4055 { 0x22, 0x40c003fe },
4056 {}
4057 };
4058
stac9205_fixup_ref(struct hda_codec * codec,const struct hda_fixup * fix,int action)4059 static void stac9205_fixup_ref(struct hda_codec *codec,
4060 const struct hda_fixup *fix, int action)
4061 {
4062 struct sigmatel_spec *spec = codec->spec;
4063
4064 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4065 snd_hda_apply_pincfgs(codec, ref9205_pin_configs);
4066 /* SPDIF-In enabled */
4067 spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0;
4068 }
4069 }
4070
stac9205_fixup_dell_m43(struct hda_codec * codec,const struct hda_fixup * fix,int action)4071 static void stac9205_fixup_dell_m43(struct hda_codec *codec,
4072 const struct hda_fixup *fix, int action)
4073 {
4074 struct sigmatel_spec *spec = codec->spec;
4075 struct hda_jack_callback *jack;
4076
4077 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4078 snd_hda_apply_pincfgs(codec, dell_9205_m43_pin_configs);
4079
4080 /* Enable unsol response for GPIO4/Dock HP connection */
4081 snd_hda_codec_write_cache(codec, codec->afg, 0,
4082 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x10);
4083 jack = snd_hda_jack_detect_enable_callback(codec, codec->afg,
4084 stac_vref_event);
4085 if (!IS_ERR(jack))
4086 jack->private_data = 0x01;
4087
4088 spec->gpio_dir = 0x0b;
4089 spec->eapd_mask = 0x01;
4090 spec->gpio_mask = 0x1b;
4091 spec->gpio_mute = 0x10;
4092 /* GPIO0 High = EAPD, GPIO1 Low = Headphone Mute,
4093 * GPIO3 Low = DRM
4094 */
4095 spec->gpio_data = 0x01;
4096 }
4097 }
4098
stac9205_fixup_eapd(struct hda_codec * codec,const struct hda_fixup * fix,int action)4099 static void stac9205_fixup_eapd(struct hda_codec *codec,
4100 const struct hda_fixup *fix, int action)
4101 {
4102 struct sigmatel_spec *spec = codec->spec;
4103
4104 if (action == HDA_FIXUP_ACT_PRE_PROBE)
4105 spec->eapd_switch = 0;
4106 }
4107
4108 static const struct hda_fixup stac9205_fixups[] = {
4109 [STAC_9205_REF] = {
4110 .type = HDA_FIXUP_FUNC,
4111 .v.func = stac9205_fixup_ref,
4112 },
4113 [STAC_9205_DELL_M42] = {
4114 .type = HDA_FIXUP_PINS,
4115 .v.pins = dell_9205_m42_pin_configs,
4116 },
4117 [STAC_9205_DELL_M43] = {
4118 .type = HDA_FIXUP_FUNC,
4119 .v.func = stac9205_fixup_dell_m43,
4120 },
4121 [STAC_9205_DELL_M44] = {
4122 .type = HDA_FIXUP_PINS,
4123 .v.pins = dell_9205_m44_pin_configs,
4124 },
4125 [STAC_9205_EAPD] = {
4126 .type = HDA_FIXUP_FUNC,
4127 .v.func = stac9205_fixup_eapd,
4128 },
4129 {}
4130 };
4131
4132 static const struct hda_model_fixup stac9205_models[] = {
4133 { .id = STAC_9205_REF, .name = "ref" },
4134 { .id = STAC_9205_DELL_M42, .name = "dell-m42" },
4135 { .id = STAC_9205_DELL_M43, .name = "dell-m43" },
4136 { .id = STAC_9205_DELL_M44, .name = "dell-m44" },
4137 { .id = STAC_9205_EAPD, .name = "eapd" },
4138 {}
4139 };
4140
4141 static const struct snd_pci_quirk stac9205_fixup_tbl[] = {
4142 /* SigmaTel reference board */
4143 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
4144 "DFI LanParty", STAC_9205_REF),
4145 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0xfb30,
4146 "SigmaTel", STAC_9205_REF),
4147 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
4148 "DFI LanParty", STAC_9205_REF),
4149 /* Dell */
4150 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f1,
4151 "unknown Dell", STAC_9205_DELL_M42),
4152 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f2,
4153 "unknown Dell", STAC_9205_DELL_M42),
4154 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f8,
4155 "Dell Precision", STAC_9205_DELL_M43),
4156 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f9,
4157 "Dell Precision", STAC_9205_DELL_M43),
4158 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fa,
4159 "Dell Precision", STAC_9205_DELL_M43),
4160 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fc,
4161 "unknown Dell", STAC_9205_DELL_M42),
4162 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fd,
4163 "unknown Dell", STAC_9205_DELL_M42),
4164 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fe,
4165 "Dell Precision", STAC_9205_DELL_M43),
4166 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ff,
4167 "Dell Precision M4300", STAC_9205_DELL_M43),
4168 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0204,
4169 "unknown Dell", STAC_9205_DELL_M42),
4170 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0206,
4171 "Dell Precision", STAC_9205_DELL_M43),
4172 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021b,
4173 "Dell Precision", STAC_9205_DELL_M43),
4174 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021c,
4175 "Dell Precision", STAC_9205_DELL_M43),
4176 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021f,
4177 "Dell Inspiron", STAC_9205_DELL_M44),
4178 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0228,
4179 "Dell Vostro 1500", STAC_9205_DELL_M42),
4180 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0229,
4181 "Dell Vostro 1700", STAC_9205_DELL_M42),
4182 /* Gateway */
4183 SND_PCI_QUIRK(0x107b, 0x0560, "Gateway T6834c", STAC_9205_EAPD),
4184 SND_PCI_QUIRK(0x107b, 0x0565, "Gateway T1616", STAC_9205_EAPD),
4185 {} /* terminator */
4186 };
4187
stac92hd95_fixup_hp_led(struct hda_codec * codec,const struct hda_fixup * fix,int action)4188 static void stac92hd95_fixup_hp_led(struct hda_codec *codec,
4189 const struct hda_fixup *fix, int action)
4190 {
4191 struct sigmatel_spec *spec = codec->spec;
4192
4193 if (action != HDA_FIXUP_ACT_PRE_PROBE)
4194 return;
4195
4196 if (find_mute_led_cfg(codec, spec->default_polarity))
4197 codec_dbg(codec, "mute LED gpio %d polarity %d\n",
4198 spec->gpio_led,
4199 spec->gpio_led_polarity);
4200 }
4201
4202 static const struct hda_fixup stac92hd95_fixups[] = {
4203 [STAC_92HD95_HP_LED] = {
4204 .type = HDA_FIXUP_FUNC,
4205 .v.func = stac92hd95_fixup_hp_led,
4206 },
4207 [STAC_92HD95_HP_BASS] = {
4208 .type = HDA_FIXUP_VERBS,
4209 .v.verbs = (const struct hda_verb[]) {
4210 {0x1a, 0x795, 0x00}, /* HPF to 100Hz */
4211 {}
4212 },
4213 .chained = true,
4214 .chain_id = STAC_92HD95_HP_LED,
4215 },
4216 };
4217
4218 static const struct snd_pci_quirk stac92hd95_fixup_tbl[] = {
4219 SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1911, "HP Spectre 13", STAC_92HD95_HP_BASS),
4220 {} /* terminator */
4221 };
4222
4223 static const struct hda_model_fixup stac92hd95_models[] = {
4224 { .id = STAC_92HD95_HP_LED, .name = "hp-led" },
4225 { .id = STAC_92HD95_HP_BASS, .name = "hp-bass" },
4226 {}
4227 };
4228
4229
stac_parse_auto_config(struct hda_codec * codec)4230 static int stac_parse_auto_config(struct hda_codec *codec)
4231 {
4232 struct sigmatel_spec *spec = codec->spec;
4233 int err;
4234 int flags = 0;
4235
4236 if (spec->headset_jack)
4237 flags |= HDA_PINCFG_HEADSET_MIC;
4238
4239 err = snd_hda_parse_pin_defcfg(codec, &spec->gen.autocfg, NULL, flags);
4240 if (err < 0)
4241 return err;
4242
4243 /* add hooks */
4244 spec->gen.pcm_playback_hook = stac_playback_pcm_hook;
4245 spec->gen.pcm_capture_hook = stac_capture_pcm_hook;
4246
4247 spec->gen.automute_hook = stac_update_outputs;
4248
4249 err = snd_hda_gen_parse_auto_config(codec, &spec->gen.autocfg);
4250 if (err < 0)
4251 return err;
4252
4253 /* setup analog beep controls */
4254 if (spec->anabeep_nid > 0) {
4255 err = stac_auto_create_beep_ctls(codec,
4256 spec->anabeep_nid);
4257 if (err < 0)
4258 return err;
4259 }
4260
4261 /* setup digital beep controls and input device */
4262 #ifdef CONFIG_SND_HDA_INPUT_BEEP
4263 if (spec->gen.beep_nid) {
4264 hda_nid_t nid = spec->gen.beep_nid;
4265 unsigned int caps;
4266
4267 err = stac_auto_create_beep_ctls(codec, nid);
4268 if (err < 0)
4269 return err;
4270 if (codec->beep) {
4271 /* IDT/STAC codecs have linear beep tone parameter */
4272 codec->beep->linear_tone = spec->linear_tone_beep;
4273 /* if no beep switch is available, make its own one */
4274 caps = query_amp_caps(codec, nid, HDA_OUTPUT);
4275 if (!(caps & AC_AMPCAP_MUTE)) {
4276 err = stac_beep_switch_ctl(codec);
4277 if (err < 0)
4278 return err;
4279 }
4280 }
4281 }
4282 #endif
4283
4284 if (spec->gpio_led)
4285 spec->gen.vmaster_mute.hook = stac_vmaster_hook;
4286
4287 if (spec->aloopback_ctl &&
4288 snd_hda_get_bool_hint(codec, "loopback") == 1) {
4289 if (!snd_hda_gen_add_kctl(&spec->gen, NULL, spec->aloopback_ctl))
4290 return -ENOMEM;
4291 }
4292
4293 if (spec->have_spdif_mux) {
4294 err = stac_create_spdif_mux_ctls(codec);
4295 if (err < 0)
4296 return err;
4297 }
4298
4299 stac_init_power_map(codec);
4300
4301 return 0;
4302 }
4303
stac_init(struct hda_codec * codec)4304 static int stac_init(struct hda_codec *codec)
4305 {
4306 struct sigmatel_spec *spec = codec->spec;
4307 int i;
4308
4309 /* override some hints */
4310 stac_store_hints(codec);
4311
4312 /* set up GPIO */
4313 /* turn on EAPD statically when spec->eapd_switch isn't set.
4314 * otherwise, unsol event will turn it on/off dynamically
4315 */
4316 if (!spec->eapd_switch)
4317 spec->gpio_data |= spec->eapd_mask;
4318 stac_gpio_set(codec, spec->gpio_mask, spec->gpio_dir, spec->gpio_data);
4319
4320 snd_hda_gen_init(codec);
4321
4322 /* sync the power-map */
4323 if (spec->num_pwrs)
4324 snd_hda_codec_write(codec, codec->afg, 0,
4325 AC_VERB_IDT_SET_POWER_MAP,
4326 spec->power_map_bits);
4327
4328 /* power down inactive ADCs */
4329 if (spec->powerdown_adcs) {
4330 for (i = 0; i < spec->gen.num_all_adcs; i++) {
4331 if (spec->active_adcs & (1 << i))
4332 continue;
4333 snd_hda_codec_write(codec, spec->gen.all_adcs[i], 0,
4334 AC_VERB_SET_POWER_STATE,
4335 AC_PWRST_D3);
4336 }
4337 }
4338
4339 return 0;
4340 }
4341
stac_shutup(struct hda_codec * codec)4342 static void stac_shutup(struct hda_codec *codec)
4343 {
4344 struct sigmatel_spec *spec = codec->spec;
4345
4346 snd_hda_shutup_pins(codec);
4347
4348 if (spec->eapd_mask)
4349 stac_gpio_set(codec, spec->gpio_mask,
4350 spec->gpio_dir, spec->gpio_data &
4351 ~spec->eapd_mask);
4352 }
4353
4354 #define stac_free snd_hda_gen_free
4355
4356 #ifdef CONFIG_PROC_FS
stac92hd_proc_hook(struct snd_info_buffer * buffer,struct hda_codec * codec,hda_nid_t nid)4357 static void stac92hd_proc_hook(struct snd_info_buffer *buffer,
4358 struct hda_codec *codec, hda_nid_t nid)
4359 {
4360 if (nid == codec->afg)
4361 snd_iprintf(buffer, "Power-Map: 0x%02x\n",
4362 snd_hda_codec_read(codec, nid, 0,
4363 AC_VERB_IDT_GET_POWER_MAP, 0));
4364 }
4365
analog_loop_proc_hook(struct snd_info_buffer * buffer,struct hda_codec * codec,unsigned int verb)4366 static void analog_loop_proc_hook(struct snd_info_buffer *buffer,
4367 struct hda_codec *codec,
4368 unsigned int verb)
4369 {
4370 snd_iprintf(buffer, "Analog Loopback: 0x%02x\n",
4371 snd_hda_codec_read(codec, codec->afg, 0, verb, 0));
4372 }
4373
4374 /* stac92hd71bxx, stac92hd73xx */
stac92hd7x_proc_hook(struct snd_info_buffer * buffer,struct hda_codec * codec,hda_nid_t nid)4375 static void stac92hd7x_proc_hook(struct snd_info_buffer *buffer,
4376 struct hda_codec *codec, hda_nid_t nid)
4377 {
4378 stac92hd_proc_hook(buffer, codec, nid);
4379 if (nid == codec->afg)
4380 analog_loop_proc_hook(buffer, codec, 0xfa0);
4381 }
4382
stac9205_proc_hook(struct snd_info_buffer * buffer,struct hda_codec * codec,hda_nid_t nid)4383 static void stac9205_proc_hook(struct snd_info_buffer *buffer,
4384 struct hda_codec *codec, hda_nid_t nid)
4385 {
4386 if (nid == codec->afg)
4387 analog_loop_proc_hook(buffer, codec, 0xfe0);
4388 }
4389
stac927x_proc_hook(struct snd_info_buffer * buffer,struct hda_codec * codec,hda_nid_t nid)4390 static void stac927x_proc_hook(struct snd_info_buffer *buffer,
4391 struct hda_codec *codec, hda_nid_t nid)
4392 {
4393 if (nid == codec->afg)
4394 analog_loop_proc_hook(buffer, codec, 0xfeb);
4395 }
4396 #else
4397 #define stac92hd_proc_hook NULL
4398 #define stac92hd7x_proc_hook NULL
4399 #define stac9205_proc_hook NULL
4400 #define stac927x_proc_hook NULL
4401 #endif
4402
4403 #ifdef CONFIG_PM
stac_suspend(struct hda_codec * codec)4404 static int stac_suspend(struct hda_codec *codec)
4405 {
4406 stac_shutup(codec);
4407 return 0;
4408 }
4409 #else
4410 #define stac_suspend NULL
4411 #endif /* CONFIG_PM */
4412
4413 static const struct hda_codec_ops stac_patch_ops = {
4414 .build_controls = snd_hda_gen_build_controls,
4415 .build_pcms = snd_hda_gen_build_pcms,
4416 .init = stac_init,
4417 .free = stac_free,
4418 .unsol_event = snd_hda_jack_unsol_event,
4419 #ifdef CONFIG_PM
4420 .suspend = stac_suspend,
4421 #endif
4422 .reboot_notify = stac_shutup,
4423 };
4424
alloc_stac_spec(struct hda_codec * codec)4425 static int alloc_stac_spec(struct hda_codec *codec)
4426 {
4427 struct sigmatel_spec *spec;
4428
4429 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4430 if (!spec)
4431 return -ENOMEM;
4432 snd_hda_gen_spec_init(&spec->gen);
4433 codec->spec = spec;
4434 codec->no_trigger_sense = 1; /* seems common with STAC/IDT codecs */
4435 spec->gen.dac_min_mute = true;
4436 return 0;
4437 }
4438
patch_stac9200(struct hda_codec * codec)4439 static int patch_stac9200(struct hda_codec *codec)
4440 {
4441 struct sigmatel_spec *spec;
4442 int err;
4443
4444 err = alloc_stac_spec(codec);
4445 if (err < 0)
4446 return err;
4447
4448 spec = codec->spec;
4449 spec->linear_tone_beep = 1;
4450 spec->gen.own_eapd_ctl = 1;
4451
4452 codec->patch_ops = stac_patch_ops;
4453 codec->power_filter = snd_hda_codec_eapd_power_filter;
4454
4455 snd_hda_add_verbs(codec, stac9200_eapd_init);
4456
4457 snd_hda_pick_fixup(codec, stac9200_models, stac9200_fixup_tbl,
4458 stac9200_fixups);
4459 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
4460
4461 err = stac_parse_auto_config(codec);
4462 if (err < 0) {
4463 stac_free(codec);
4464 return err;
4465 }
4466
4467 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
4468
4469 return 0;
4470 }
4471
patch_stac925x(struct hda_codec * codec)4472 static int patch_stac925x(struct hda_codec *codec)
4473 {
4474 struct sigmatel_spec *spec;
4475 int err;
4476
4477 err = alloc_stac_spec(codec);
4478 if (err < 0)
4479 return err;
4480
4481 spec = codec->spec;
4482 spec->linear_tone_beep = 1;
4483 spec->gen.own_eapd_ctl = 1;
4484
4485 codec->patch_ops = stac_patch_ops;
4486
4487 snd_hda_add_verbs(codec, stac925x_core_init);
4488
4489 snd_hda_pick_fixup(codec, stac925x_models, stac925x_fixup_tbl,
4490 stac925x_fixups);
4491 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
4492
4493 err = stac_parse_auto_config(codec);
4494 if (err < 0) {
4495 stac_free(codec);
4496 return err;
4497 }
4498
4499 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
4500
4501 return 0;
4502 }
4503
patch_stac92hd73xx(struct hda_codec * codec)4504 static int patch_stac92hd73xx(struct hda_codec *codec)
4505 {
4506 struct sigmatel_spec *spec;
4507 int err;
4508 int num_dacs;
4509
4510 err = alloc_stac_spec(codec);
4511 if (err < 0)
4512 return err;
4513
4514 spec = codec->spec;
4515 spec->linear_tone_beep = 0;
4516 spec->gen.mixer_nid = 0x1d;
4517 spec->have_spdif_mux = 1;
4518
4519 num_dacs = snd_hda_get_num_conns(codec, 0x0a) - 1;
4520 if (num_dacs < 3 || num_dacs > 5) {
4521 codec_warn(codec,
4522 "Could not determine number of channels defaulting to DAC count\n");
4523 num_dacs = 5;
4524 }
4525
4526 switch (num_dacs) {
4527 case 0x3: /* 6 Channel */
4528 spec->aloopback_ctl = &stac92hd73xx_6ch_loopback;
4529 break;
4530 case 0x4: /* 8 Channel */
4531 spec->aloopback_ctl = &stac92hd73xx_8ch_loopback;
4532 break;
4533 case 0x5: /* 10 Channel */
4534 spec->aloopback_ctl = &stac92hd73xx_10ch_loopback;
4535 break;
4536 }
4537
4538 spec->aloopback_mask = 0x01;
4539 spec->aloopback_shift = 8;
4540
4541 spec->gen.beep_nid = 0x1c; /* digital beep */
4542
4543 /* GPIO0 High = Enable EAPD */
4544 spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0x1;
4545 spec->gpio_data = 0x01;
4546
4547 spec->eapd_switch = 1;
4548
4549 spec->num_pwrs = ARRAY_SIZE(stac92hd73xx_pwr_nids);
4550 spec->pwr_nids = stac92hd73xx_pwr_nids;
4551
4552 spec->gen.own_eapd_ctl = 1;
4553 spec->gen.power_down_unused = 1;
4554
4555 codec->patch_ops = stac_patch_ops;
4556
4557 snd_hda_pick_fixup(codec, stac92hd73xx_models, stac92hd73xx_fixup_tbl,
4558 stac92hd73xx_fixups);
4559 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
4560
4561 if (!spec->volknob_init)
4562 snd_hda_add_verbs(codec, stac92hd73xx_core_init);
4563
4564 err = stac_parse_auto_config(codec);
4565 if (err < 0) {
4566 stac_free(codec);
4567 return err;
4568 }
4569
4570 /* Don't GPIO-mute speakers if there are no internal speakers, because
4571 * the GPIO might be necessary for Headphone
4572 */
4573 if (spec->eapd_switch && !has_builtin_speaker(codec))
4574 spec->eapd_switch = 0;
4575
4576 codec->proc_widget_hook = stac92hd7x_proc_hook;
4577
4578 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
4579
4580 return 0;
4581 }
4582
stac_setup_gpio(struct hda_codec * codec)4583 static void stac_setup_gpio(struct hda_codec *codec)
4584 {
4585 struct sigmatel_spec *spec = codec->spec;
4586
4587 spec->gpio_mask |= spec->eapd_mask;
4588 if (spec->gpio_led) {
4589 if (!spec->vref_mute_led_nid) {
4590 spec->gpio_mask |= spec->gpio_led;
4591 spec->gpio_dir |= spec->gpio_led;
4592 spec->gpio_data |= spec->gpio_led;
4593 } else {
4594 codec->power_filter = stac_vref_led_power_filter;
4595 }
4596 }
4597
4598 if (spec->mic_mute_led_gpio) {
4599 spec->gpio_mask |= spec->mic_mute_led_gpio;
4600 spec->gpio_dir |= spec->mic_mute_led_gpio;
4601 spec->mic_enabled = 0;
4602 spec->gpio_data |= spec->mic_mute_led_gpio;
4603
4604 spec->gen.cap_sync_hook = stac_capture_led_hook;
4605 }
4606 }
4607
patch_stac92hd83xxx(struct hda_codec * codec)4608 static int patch_stac92hd83xxx(struct hda_codec *codec)
4609 {
4610 struct sigmatel_spec *spec;
4611 int err;
4612
4613 err = alloc_stac_spec(codec);
4614 if (err < 0)
4615 return err;
4616
4617 codec->epss = 0; /* longer delay needed for D3 */
4618
4619 spec = codec->spec;
4620 spec->linear_tone_beep = 0;
4621 spec->gen.own_eapd_ctl = 1;
4622 spec->gen.power_down_unused = 1;
4623 spec->gen.mixer_nid = 0x1b;
4624
4625 spec->gen.beep_nid = 0x21; /* digital beep */
4626 spec->pwr_nids = stac92hd83xxx_pwr_nids;
4627 spec->num_pwrs = ARRAY_SIZE(stac92hd83xxx_pwr_nids);
4628 spec->default_polarity = -1; /* no default cfg */
4629
4630 codec->patch_ops = stac_patch_ops;
4631
4632 snd_hda_add_verbs(codec, stac92hd83xxx_core_init);
4633
4634 snd_hda_pick_fixup(codec, stac92hd83xxx_models, stac92hd83xxx_fixup_tbl,
4635 stac92hd83xxx_fixups);
4636 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
4637
4638 stac_setup_gpio(codec);
4639
4640 err = stac_parse_auto_config(codec);
4641 if (err < 0) {
4642 stac_free(codec);
4643 return err;
4644 }
4645
4646 codec->proc_widget_hook = stac92hd_proc_hook;
4647
4648 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
4649
4650 return 0;
4651 }
4652
4653 static const hda_nid_t stac92hd95_pwr_nids[] = {
4654 0x0a, 0x0b, 0x0c, 0x0d
4655 };
4656
patch_stac92hd95(struct hda_codec * codec)4657 static int patch_stac92hd95(struct hda_codec *codec)
4658 {
4659 struct sigmatel_spec *spec;
4660 int err;
4661
4662 err = alloc_stac_spec(codec);
4663 if (err < 0)
4664 return err;
4665
4666 codec->epss = 0; /* longer delay needed for D3 */
4667
4668 spec = codec->spec;
4669 spec->linear_tone_beep = 0;
4670 spec->gen.own_eapd_ctl = 1;
4671 spec->gen.power_down_unused = 1;
4672
4673 spec->gen.beep_nid = 0x19; /* digital beep */
4674 spec->pwr_nids = stac92hd95_pwr_nids;
4675 spec->num_pwrs = ARRAY_SIZE(stac92hd95_pwr_nids);
4676 spec->default_polarity = 0;
4677
4678 codec->patch_ops = stac_patch_ops;
4679
4680 snd_hda_pick_fixup(codec, stac92hd95_models, stac92hd95_fixup_tbl,
4681 stac92hd95_fixups);
4682 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
4683
4684 stac_setup_gpio(codec);
4685
4686 err = stac_parse_auto_config(codec);
4687 if (err < 0) {
4688 stac_free(codec);
4689 return err;
4690 }
4691
4692 codec->proc_widget_hook = stac92hd_proc_hook;
4693
4694 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
4695
4696 return 0;
4697 }
4698
patch_stac92hd71bxx(struct hda_codec * codec)4699 static int patch_stac92hd71bxx(struct hda_codec *codec)
4700 {
4701 struct sigmatel_spec *spec;
4702 const struct hda_verb *unmute_init = stac92hd71bxx_unmute_core_init;
4703 int err;
4704
4705 err = alloc_stac_spec(codec);
4706 if (err < 0)
4707 return err;
4708
4709 spec = codec->spec;
4710 spec->linear_tone_beep = 0;
4711 spec->gen.own_eapd_ctl = 1;
4712 spec->gen.power_down_unused = 1;
4713 spec->gen.mixer_nid = 0x17;
4714 spec->have_spdif_mux = 1;
4715
4716 codec->patch_ops = stac_patch_ops;
4717
4718 /* GPIO0 = EAPD */
4719 spec->gpio_mask = 0x01;
4720 spec->gpio_dir = 0x01;
4721 spec->gpio_data = 0x01;
4722
4723 switch (codec->vendor_id) {
4724 case 0x111d76b6: /* 4 Port without Analog Mixer */
4725 case 0x111d76b7:
4726 unmute_init++;
4727 break;
4728 case 0x111d7608: /* 5 Port with Analog Mixer */
4729 if ((codec->revision_id & 0xf) == 0 ||
4730 (codec->revision_id & 0xf) == 1)
4731 spec->stream_delay = 40; /* 40 milliseconds */
4732
4733 /* disable VSW */
4734 unmute_init++;
4735 snd_hda_codec_set_pincfg(codec, 0x0f, 0x40f000f0);
4736 snd_hda_codec_set_pincfg(codec, 0x19, 0x40f000f3);
4737 break;
4738 case 0x111d7603: /* 6 Port with Analog Mixer */
4739 if ((codec->revision_id & 0xf) == 1)
4740 spec->stream_delay = 40; /* 40 milliseconds */
4741
4742 break;
4743 }
4744
4745 if (get_wcaps_type(get_wcaps(codec, 0x28)) == AC_WID_VOL_KNB)
4746 snd_hda_add_verbs(codec, stac92hd71bxx_core_init);
4747
4748 if (get_wcaps(codec, 0xa) & AC_WCAP_IN_AMP)
4749 snd_hda_sequence_write_cache(codec, unmute_init);
4750
4751 spec->aloopback_ctl = &stac92hd71bxx_loopback;
4752 spec->aloopback_mask = 0x50;
4753 spec->aloopback_shift = 0;
4754
4755 spec->powerdown_adcs = 1;
4756 spec->gen.beep_nid = 0x26; /* digital beep */
4757 spec->num_pwrs = ARRAY_SIZE(stac92hd71bxx_pwr_nids);
4758 spec->pwr_nids = stac92hd71bxx_pwr_nids;
4759
4760 snd_hda_pick_fixup(codec, stac92hd71bxx_models, stac92hd71bxx_fixup_tbl,
4761 stac92hd71bxx_fixups);
4762 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
4763
4764 stac_setup_gpio(codec);
4765
4766 err = stac_parse_auto_config(codec);
4767 if (err < 0) {
4768 stac_free(codec);
4769 return err;
4770 }
4771
4772 codec->proc_widget_hook = stac92hd7x_proc_hook;
4773
4774 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
4775
4776 return 0;
4777 }
4778
patch_stac922x(struct hda_codec * codec)4779 static int patch_stac922x(struct hda_codec *codec)
4780 {
4781 struct sigmatel_spec *spec;
4782 int err;
4783
4784 err = alloc_stac_spec(codec);
4785 if (err < 0)
4786 return err;
4787
4788 spec = codec->spec;
4789 spec->linear_tone_beep = 1;
4790 spec->gen.own_eapd_ctl = 1;
4791
4792 codec->patch_ops = stac_patch_ops;
4793
4794 snd_hda_add_verbs(codec, stac922x_core_init);
4795
4796 /* Fix Mux capture level; max to 2 */
4797 snd_hda_override_amp_caps(codec, 0x12, HDA_OUTPUT,
4798 (0 << AC_AMPCAP_OFFSET_SHIFT) |
4799 (2 << AC_AMPCAP_NUM_STEPS_SHIFT) |
4800 (0x27 << AC_AMPCAP_STEP_SIZE_SHIFT) |
4801 (0 << AC_AMPCAP_MUTE_SHIFT));
4802
4803 snd_hda_pick_fixup(codec, stac922x_models, stac922x_fixup_tbl,
4804 stac922x_fixups);
4805 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
4806
4807 err = stac_parse_auto_config(codec);
4808 if (err < 0) {
4809 stac_free(codec);
4810 return err;
4811 }
4812
4813 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
4814
4815 return 0;
4816 }
4817
4818 static const char * const stac927x_spdif_labels[] = {
4819 "Digital Playback", "ADAT", "Analog Mux 1",
4820 "Analog Mux 2", "Analog Mux 3", NULL
4821 };
4822
patch_stac927x(struct hda_codec * codec)4823 static int patch_stac927x(struct hda_codec *codec)
4824 {
4825 struct sigmatel_spec *spec;
4826 int err;
4827
4828 err = alloc_stac_spec(codec);
4829 if (err < 0)
4830 return err;
4831
4832 spec = codec->spec;
4833 spec->linear_tone_beep = 1;
4834 spec->gen.own_eapd_ctl = 1;
4835 spec->have_spdif_mux = 1;
4836 spec->spdif_labels = stac927x_spdif_labels;
4837
4838 spec->gen.beep_nid = 0x23; /* digital beep */
4839
4840 /* GPIO0 High = Enable EAPD */
4841 spec->eapd_mask = spec->gpio_mask = 0x01;
4842 spec->gpio_dir = spec->gpio_data = 0x01;
4843
4844 spec->aloopback_ctl = &stac927x_loopback;
4845 spec->aloopback_mask = 0x40;
4846 spec->aloopback_shift = 0;
4847 spec->eapd_switch = 1;
4848
4849 codec->patch_ops = stac_patch_ops;
4850
4851 snd_hda_pick_fixup(codec, stac927x_models, stac927x_fixup_tbl,
4852 stac927x_fixups);
4853 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
4854
4855 if (!spec->volknob_init)
4856 snd_hda_add_verbs(codec, stac927x_core_init);
4857
4858 err = stac_parse_auto_config(codec);
4859 if (err < 0) {
4860 stac_free(codec);
4861 return err;
4862 }
4863
4864 codec->proc_widget_hook = stac927x_proc_hook;
4865
4866 /*
4867 * !!FIXME!!
4868 * The STAC927x seem to require fairly long delays for certain
4869 * command sequences. With too short delays (even if the answer
4870 * is set to RIRB properly), it results in the silence output
4871 * on some hardwares like Dell.
4872 *
4873 * The below flag enables the longer delay (see get_response
4874 * in hda_intel.c).
4875 */
4876 codec->bus->needs_damn_long_delay = 1;
4877
4878 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
4879
4880 return 0;
4881 }
4882
patch_stac9205(struct hda_codec * codec)4883 static int patch_stac9205(struct hda_codec *codec)
4884 {
4885 struct sigmatel_spec *spec;
4886 int err;
4887
4888 err = alloc_stac_spec(codec);
4889 if (err < 0)
4890 return err;
4891
4892 spec = codec->spec;
4893 spec->linear_tone_beep = 1;
4894 spec->gen.own_eapd_ctl = 1;
4895 spec->have_spdif_mux = 1;
4896
4897 spec->gen.beep_nid = 0x23; /* digital beep */
4898
4899 snd_hda_add_verbs(codec, stac9205_core_init);
4900 spec->aloopback_ctl = &stac9205_loopback;
4901
4902 spec->aloopback_mask = 0x40;
4903 spec->aloopback_shift = 0;
4904
4905 /* GPIO0 High = EAPD */
4906 spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0x1;
4907 spec->gpio_data = 0x01;
4908
4909 /* Turn on/off EAPD per HP plugging */
4910 spec->eapd_switch = 1;
4911
4912 codec->patch_ops = stac_patch_ops;
4913
4914 snd_hda_pick_fixup(codec, stac9205_models, stac9205_fixup_tbl,
4915 stac9205_fixups);
4916 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
4917
4918 err = stac_parse_auto_config(codec);
4919 if (err < 0) {
4920 stac_free(codec);
4921 return err;
4922 }
4923
4924 codec->proc_widget_hook = stac9205_proc_hook;
4925
4926 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
4927
4928 return 0;
4929 }
4930
4931 /*
4932 * STAC9872 hack
4933 */
4934
4935 static const struct hda_verb stac9872_core_init[] = {
4936 {0x15, AC_VERB_SET_CONNECT_SEL, 0x1}, /* mic-sel: 0a,0d,14,02 */
4937 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, /* Mic-in -> 0x9 */
4938 {}
4939 };
4940
4941 static const struct hda_pintbl stac9872_vaio_pin_configs[] = {
4942 { 0x0a, 0x03211020 },
4943 { 0x0b, 0x411111f0 },
4944 { 0x0c, 0x411111f0 },
4945 { 0x0d, 0x03a15030 },
4946 { 0x0e, 0x411111f0 },
4947 { 0x0f, 0x90170110 },
4948 { 0x11, 0x411111f0 },
4949 { 0x13, 0x411111f0 },
4950 { 0x14, 0x90a7013e },
4951 {}
4952 };
4953
4954 static const struct hda_model_fixup stac9872_models[] = {
4955 { .id = STAC_9872_VAIO, .name = "vaio" },
4956 {}
4957 };
4958
4959 static const struct hda_fixup stac9872_fixups[] = {
4960 [STAC_9872_VAIO] = {
4961 .type = HDA_FIXUP_PINS,
4962 .v.pins = stac9872_vaio_pin_configs,
4963 },
4964 };
4965
4966 static const struct snd_pci_quirk stac9872_fixup_tbl[] = {
4967 SND_PCI_QUIRK_MASK(0x104d, 0xfff0, 0x81e0,
4968 "Sony VAIO F/S", STAC_9872_VAIO),
4969 {} /* terminator */
4970 };
4971
patch_stac9872(struct hda_codec * codec)4972 static int patch_stac9872(struct hda_codec *codec)
4973 {
4974 struct sigmatel_spec *spec;
4975 int err;
4976
4977 err = alloc_stac_spec(codec);
4978 if (err < 0)
4979 return err;
4980
4981 spec = codec->spec;
4982 spec->linear_tone_beep = 1;
4983 spec->gen.own_eapd_ctl = 1;
4984
4985 codec->patch_ops = stac_patch_ops;
4986
4987 snd_hda_add_verbs(codec, stac9872_core_init);
4988
4989 snd_hda_pick_fixup(codec, stac9872_models, stac9872_fixup_tbl,
4990 stac9872_fixups);
4991 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
4992
4993 err = stac_parse_auto_config(codec);
4994 if (err < 0) {
4995 stac_free(codec);
4996 return -EINVAL;
4997 }
4998
4999 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
5000
5001 return 0;
5002 }
5003
5004
5005 /*
5006 * patch entries
5007 */
5008 static const struct hda_codec_preset snd_hda_preset_sigmatel[] = {
5009 { .id = 0x83847690, .name = "STAC9200", .patch = patch_stac9200 },
5010 { .id = 0x83847882, .name = "STAC9220 A1", .patch = patch_stac922x },
5011 { .id = 0x83847680, .name = "STAC9221 A1", .patch = patch_stac922x },
5012 { .id = 0x83847880, .name = "STAC9220 A2", .patch = patch_stac922x },
5013 { .id = 0x83847681, .name = "STAC9220D/9223D A2", .patch = patch_stac922x },
5014 { .id = 0x83847682, .name = "STAC9221 A2", .patch = patch_stac922x },
5015 { .id = 0x83847683, .name = "STAC9221D A2", .patch = patch_stac922x },
5016 { .id = 0x83847618, .name = "STAC9227", .patch = patch_stac927x },
5017 { .id = 0x83847619, .name = "STAC9227", .patch = patch_stac927x },
5018 { .id = 0x83847616, .name = "STAC9228", .patch = patch_stac927x },
5019 { .id = 0x83847617, .name = "STAC9228", .patch = patch_stac927x },
5020 { .id = 0x83847614, .name = "STAC9229", .patch = patch_stac927x },
5021 { .id = 0x83847615, .name = "STAC9229", .patch = patch_stac927x },
5022 { .id = 0x83847620, .name = "STAC9274", .patch = patch_stac927x },
5023 { .id = 0x83847621, .name = "STAC9274D", .patch = patch_stac927x },
5024 { .id = 0x83847622, .name = "STAC9273X", .patch = patch_stac927x },
5025 { .id = 0x83847623, .name = "STAC9273D", .patch = patch_stac927x },
5026 { .id = 0x83847624, .name = "STAC9272X", .patch = patch_stac927x },
5027 { .id = 0x83847625, .name = "STAC9272D", .patch = patch_stac927x },
5028 { .id = 0x83847626, .name = "STAC9271X", .patch = patch_stac927x },
5029 { .id = 0x83847627, .name = "STAC9271D", .patch = patch_stac927x },
5030 { .id = 0x83847628, .name = "STAC9274X5NH", .patch = patch_stac927x },
5031 { .id = 0x83847629, .name = "STAC9274D5NH", .patch = patch_stac927x },
5032 { .id = 0x83847632, .name = "STAC9202", .patch = patch_stac925x },
5033 { .id = 0x83847633, .name = "STAC9202D", .patch = patch_stac925x },
5034 { .id = 0x83847634, .name = "STAC9250", .patch = patch_stac925x },
5035 { .id = 0x83847635, .name = "STAC9250D", .patch = patch_stac925x },
5036 { .id = 0x83847636, .name = "STAC9251", .patch = patch_stac925x },
5037 { .id = 0x83847637, .name = "STAC9250D", .patch = patch_stac925x },
5038 { .id = 0x83847645, .name = "92HD206X", .patch = patch_stac927x },
5039 { .id = 0x83847646, .name = "92HD206D", .patch = patch_stac927x },
5040 /* The following does not take into account .id=0x83847661 when subsys =
5041 * 104D0C00 which is STAC9225s. Because of this, some SZ Notebooks are
5042 * currently not fully supported.
5043 */
5044 { .id = 0x83847661, .name = "CXD9872RD/K", .patch = patch_stac9872 },
5045 { .id = 0x83847662, .name = "STAC9872AK", .patch = patch_stac9872 },
5046 { .id = 0x83847664, .name = "CXD9872AKD", .patch = patch_stac9872 },
5047 { .id = 0x83847698, .name = "STAC9205", .patch = patch_stac9205 },
5048 { .id = 0x838476a0, .name = "STAC9205", .patch = patch_stac9205 },
5049 { .id = 0x838476a1, .name = "STAC9205D", .patch = patch_stac9205 },
5050 { .id = 0x838476a2, .name = "STAC9204", .patch = patch_stac9205 },
5051 { .id = 0x838476a3, .name = "STAC9204D", .patch = patch_stac9205 },
5052 { .id = 0x838476a4, .name = "STAC9255", .patch = patch_stac9205 },
5053 { .id = 0x838476a5, .name = "STAC9255D", .patch = patch_stac9205 },
5054 { .id = 0x838476a6, .name = "STAC9254", .patch = patch_stac9205 },
5055 { .id = 0x838476a7, .name = "STAC9254D", .patch = patch_stac9205 },
5056 { .id = 0x111d7603, .name = "92HD75B3X5", .patch = patch_stac92hd71bxx},
5057 { .id = 0x111d7604, .name = "92HD83C1X5", .patch = patch_stac92hd83xxx},
5058 { .id = 0x111d76d4, .name = "92HD83C1C5", .patch = patch_stac92hd83xxx},
5059 { .id = 0x111d7605, .name = "92HD81B1X5", .patch = patch_stac92hd83xxx},
5060 { .id = 0x111d76d5, .name = "92HD81B1C5", .patch = patch_stac92hd83xxx},
5061 { .id = 0x111d76d1, .name = "92HD87B1/3", .patch = patch_stac92hd83xxx},
5062 { .id = 0x111d76d9, .name = "92HD87B2/4", .patch = patch_stac92hd83xxx},
5063 { .id = 0x111d7666, .name = "92HD88B3", .patch = patch_stac92hd83xxx},
5064 { .id = 0x111d7667, .name = "92HD88B1", .patch = patch_stac92hd83xxx},
5065 { .id = 0x111d7668, .name = "92HD88B2", .patch = patch_stac92hd83xxx},
5066 { .id = 0x111d7669, .name = "92HD88B4", .patch = patch_stac92hd83xxx},
5067 { .id = 0x111d7608, .name = "92HD75B2X5", .patch = patch_stac92hd71bxx},
5068 { .id = 0x111d7674, .name = "92HD73D1X5", .patch = patch_stac92hd73xx },
5069 { .id = 0x111d7675, .name = "92HD73C1X5", .patch = patch_stac92hd73xx },
5070 { .id = 0x111d7676, .name = "92HD73E1X5", .patch = patch_stac92hd73xx },
5071 { .id = 0x111d7695, .name = "92HD95", .patch = patch_stac92hd95 },
5072 { .id = 0x111d76b0, .name = "92HD71B8X", .patch = patch_stac92hd71bxx },
5073 { .id = 0x111d76b1, .name = "92HD71B8X", .patch = patch_stac92hd71bxx },
5074 { .id = 0x111d76b2, .name = "92HD71B7X", .patch = patch_stac92hd71bxx },
5075 { .id = 0x111d76b3, .name = "92HD71B7X", .patch = patch_stac92hd71bxx },
5076 { .id = 0x111d76b4, .name = "92HD71B6X", .patch = patch_stac92hd71bxx },
5077 { .id = 0x111d76b5, .name = "92HD71B6X", .patch = patch_stac92hd71bxx },
5078 { .id = 0x111d76b6, .name = "92HD71B5X", .patch = patch_stac92hd71bxx },
5079 { .id = 0x111d76b7, .name = "92HD71B5X", .patch = patch_stac92hd71bxx },
5080 { .id = 0x111d76c0, .name = "92HD89C3", .patch = patch_stac92hd73xx },
5081 { .id = 0x111d76c1, .name = "92HD89C2", .patch = patch_stac92hd73xx },
5082 { .id = 0x111d76c2, .name = "92HD89C1", .patch = patch_stac92hd73xx },
5083 { .id = 0x111d76c3, .name = "92HD89B3", .patch = patch_stac92hd73xx },
5084 { .id = 0x111d76c4, .name = "92HD89B2", .patch = patch_stac92hd73xx },
5085 { .id = 0x111d76c5, .name = "92HD89B1", .patch = patch_stac92hd73xx },
5086 { .id = 0x111d76c6, .name = "92HD89E3", .patch = patch_stac92hd73xx },
5087 { .id = 0x111d76c7, .name = "92HD89E2", .patch = patch_stac92hd73xx },
5088 { .id = 0x111d76c8, .name = "92HD89E1", .patch = patch_stac92hd73xx },
5089 { .id = 0x111d76c9, .name = "92HD89D3", .patch = patch_stac92hd73xx },
5090 { .id = 0x111d76ca, .name = "92HD89D2", .patch = patch_stac92hd73xx },
5091 { .id = 0x111d76cb, .name = "92HD89D1", .patch = patch_stac92hd73xx },
5092 { .id = 0x111d76cc, .name = "92HD89F3", .patch = patch_stac92hd73xx },
5093 { .id = 0x111d76cd, .name = "92HD89F2", .patch = patch_stac92hd73xx },
5094 { .id = 0x111d76ce, .name = "92HD89F1", .patch = patch_stac92hd73xx },
5095 { .id = 0x111d76df, .name = "92HD93BXX", .patch = patch_stac92hd83xxx},
5096 { .id = 0x111d76e0, .name = "92HD91BXX", .patch = patch_stac92hd83xxx},
5097 { .id = 0x111d76e3, .name = "92HD98BXX", .patch = patch_stac92hd83xxx},
5098 { .id = 0x111d76e5, .name = "92HD99BXX", .patch = patch_stac92hd83xxx},
5099 { .id = 0x111d76e7, .name = "92HD90BXX", .patch = patch_stac92hd83xxx},
5100 { .id = 0x111d76e8, .name = "92HD66B1X5", .patch = patch_stac92hd83xxx},
5101 { .id = 0x111d76e9, .name = "92HD66B2X5", .patch = patch_stac92hd83xxx},
5102 { .id = 0x111d76ea, .name = "92HD66B3X5", .patch = patch_stac92hd83xxx},
5103 { .id = 0x111d76eb, .name = "92HD66C1X5", .patch = patch_stac92hd83xxx},
5104 { .id = 0x111d76ec, .name = "92HD66C2X5", .patch = patch_stac92hd83xxx},
5105 { .id = 0x111d76ed, .name = "92HD66C3X5", .patch = patch_stac92hd83xxx},
5106 { .id = 0x111d76ee, .name = "92HD66B1X3", .patch = patch_stac92hd83xxx},
5107 { .id = 0x111d76ef, .name = "92HD66B2X3", .patch = patch_stac92hd83xxx},
5108 { .id = 0x111d76f0, .name = "92HD66B3X3", .patch = patch_stac92hd83xxx},
5109 { .id = 0x111d76f1, .name = "92HD66C1X3", .patch = patch_stac92hd83xxx},
5110 { .id = 0x111d76f2, .name = "92HD66C2X3", .patch = patch_stac92hd83xxx},
5111 { .id = 0x111d76f3, .name = "92HD66C3/65", .patch = patch_stac92hd83xxx},
5112 {} /* terminator */
5113 };
5114
5115 MODULE_ALIAS("snd-hda-codec-id:8384*");
5116 MODULE_ALIAS("snd-hda-codec-id:111d*");
5117
5118 MODULE_LICENSE("GPL");
5119 MODULE_DESCRIPTION("IDT/Sigmatel HD-audio codec");
5120
5121 static struct hda_codec_preset_list sigmatel_list = {
5122 .preset = snd_hda_preset_sigmatel,
5123 .owner = THIS_MODULE,
5124 };
5125
patch_sigmatel_init(void)5126 static int __init patch_sigmatel_init(void)
5127 {
5128 return snd_hda_add_codec_preset(&sigmatel_list);
5129 }
5130
patch_sigmatel_exit(void)5131 static void __exit patch_sigmatel_exit(void)
5132 {
5133 snd_hda_delete_codec_preset(&sigmatel_list);
5134 }
5135
5136 module_init(patch_sigmatel_init)
5137 module_exit(patch_sigmatel_exit)
5138