Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound
[pandora-kernel.git] / sound / pci / hda / patch_sigmatel.c
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/asoundef.h>
35 #include <sound/jack.h>
36 #include <sound/tlv.h>
37 #include "hda_codec.h"
38 #include "hda_local.h"
39 #include "hda_beep.h"
40
41 enum {
42         STAC_VREF_EVENT = 1,
43         STAC_INSERT_EVENT,
44         STAC_PWR_EVENT,
45         STAC_HP_EVENT,
46         STAC_LO_EVENT,
47         STAC_MIC_EVENT,
48 };
49
50 enum {
51         STAC_AUTO,
52         STAC_REF,
53         STAC_9200_OQO,
54         STAC_9200_DELL_D21,
55         STAC_9200_DELL_D22,
56         STAC_9200_DELL_D23,
57         STAC_9200_DELL_M21,
58         STAC_9200_DELL_M22,
59         STAC_9200_DELL_M23,
60         STAC_9200_DELL_M24,
61         STAC_9200_DELL_M25,
62         STAC_9200_DELL_M26,
63         STAC_9200_DELL_M27,
64         STAC_9200_M4,
65         STAC_9200_M4_2,
66         STAC_9200_PANASONIC,
67         STAC_9200_MODELS
68 };
69
70 enum {
71         STAC_9205_AUTO,
72         STAC_9205_REF,
73         STAC_9205_DELL_M42,
74         STAC_9205_DELL_M43,
75         STAC_9205_DELL_M44,
76         STAC_9205_EAPD,
77         STAC_9205_MODELS
78 };
79
80 enum {
81         STAC_92HD73XX_AUTO,
82         STAC_92HD73XX_NO_JD, /* no jack-detection */
83         STAC_92HD73XX_REF,
84         STAC_92HD73XX_INTEL,
85         STAC_DELL_M6_AMIC,
86         STAC_DELL_M6_DMIC,
87         STAC_DELL_M6_BOTH,
88         STAC_DELL_EQ,
89         STAC_ALIENWARE_M17X,
90         STAC_92HD73XX_MODELS
91 };
92
93 enum {
94         STAC_92HD83XXX_AUTO,
95         STAC_92HD83XXX_REF,
96         STAC_92HD83XXX_PWR_REF,
97         STAC_DELL_S14,
98         STAC_DELL_VOSTRO_3500,
99         STAC_92HD83XXX_HP,
100         STAC_92HD83XXX_HP_cNB11_INTQUAD,
101         STAC_HP_DV7_4000,
102         STAC_92HD83XXX_MODELS
103 };
104
105 enum {
106         STAC_92HD71BXX_AUTO,
107         STAC_92HD71BXX_REF,
108         STAC_DELL_M4_1,
109         STAC_DELL_M4_2,
110         STAC_DELL_M4_3,
111         STAC_HP_M4,
112         STAC_HP_DV4,
113         STAC_HP_DV5,
114         STAC_HP_HDX,
115         STAC_HP_DV4_1222NR,
116         STAC_92HD71BXX_MODELS
117 };
118
119 enum {
120         STAC_925x_AUTO,
121         STAC_925x_REF,
122         STAC_M1,
123         STAC_M1_2,
124         STAC_M2,
125         STAC_M2_2,
126         STAC_M3,
127         STAC_M5,
128         STAC_M6,
129         STAC_925x_MODELS
130 };
131
132 enum {
133         STAC_922X_AUTO,
134         STAC_D945_REF,
135         STAC_D945GTP3,
136         STAC_D945GTP5,
137         STAC_INTEL_MAC_V1,
138         STAC_INTEL_MAC_V2,
139         STAC_INTEL_MAC_V3,
140         STAC_INTEL_MAC_V4,
141         STAC_INTEL_MAC_V5,
142         STAC_INTEL_MAC_AUTO, /* This model is selected if no module parameter
143                               * is given, one of the above models will be
144                               * chosen according to the subsystem id. */
145         /* for backward compatibility */
146         STAC_MACMINI,
147         STAC_MACBOOK,
148         STAC_MACBOOK_PRO_V1,
149         STAC_MACBOOK_PRO_V2,
150         STAC_IMAC_INTEL,
151         STAC_IMAC_INTEL_20,
152         STAC_ECS_202,
153         STAC_922X_DELL_D81,
154         STAC_922X_DELL_D82,
155         STAC_922X_DELL_M81,
156         STAC_922X_DELL_M82,
157         STAC_922X_MODELS
158 };
159
160 enum {
161         STAC_927X_AUTO,
162         STAC_D965_REF_NO_JD, /* no jack-detection */
163         STAC_D965_REF,
164         STAC_D965_3ST,
165         STAC_D965_5ST,
166         STAC_D965_5ST_NO_FP,
167         STAC_DELL_3ST,
168         STAC_DELL_BIOS,
169         STAC_927X_VOLKNOB,
170         STAC_927X_MODELS
171 };
172
173 enum {
174         STAC_9872_AUTO,
175         STAC_9872_VAIO,
176         STAC_9872_MODELS
177 };
178
179 struct sigmatel_event {
180         hda_nid_t nid;
181         unsigned char type;
182         unsigned char tag;
183         int data;
184 };
185
186 struct sigmatel_mic_route {
187         hda_nid_t pin;
188         signed char mux_idx;
189         signed char dmux_idx;
190 };
191
192 #define MAX_PINS_NUM 16
193 #define MAX_ADCS_NUM 4
194 #define MAX_DMICS_NUM 4
195
196 struct sigmatel_spec {
197         struct snd_kcontrol_new *mixers[4];
198         unsigned int num_mixers;
199
200         int board_config;
201         unsigned int eapd_switch: 1;
202         unsigned int surr_switch: 1;
203         unsigned int alt_switch: 1;
204         unsigned int hp_detect: 1;
205         unsigned int spdif_mute: 1;
206         unsigned int check_volume_offset:1;
207         unsigned int auto_mic:1;
208         unsigned int linear_tone_beep:1;
209
210         /* gpio lines */
211         unsigned int eapd_mask;
212         unsigned int gpio_mask;
213         unsigned int gpio_dir;
214         unsigned int gpio_data;
215         unsigned int gpio_mute;
216         unsigned int gpio_led;
217         unsigned int gpio_led_polarity;
218         unsigned int vref_led;
219
220         /* stream */
221         unsigned int stream_delay;
222
223         /* analog loopback */
224         const struct snd_kcontrol_new *aloopback_ctl;
225         unsigned char aloopback_mask;
226         unsigned char aloopback_shift;
227
228         /* power management */
229         unsigned int num_pwrs;
230         const hda_nid_t *pwr_nids;
231         const hda_nid_t *dac_list;
232
233         /* events */
234         struct snd_array events;
235
236         /* playback */
237         struct hda_input_mux *mono_mux;
238         unsigned int cur_mmux;
239         struct hda_multi_out multiout;
240         hda_nid_t dac_nids[5];
241         hda_nid_t hp_dacs[5];
242         hda_nid_t speaker_dacs[5];
243
244         int volume_offset;
245
246         /* capture */
247         const hda_nid_t *adc_nids;
248         unsigned int num_adcs;
249         const hda_nid_t *mux_nids;
250         unsigned int num_muxes;
251         const hda_nid_t *dmic_nids;
252         unsigned int num_dmics;
253         const hda_nid_t *dmux_nids;
254         unsigned int num_dmuxes;
255         const hda_nid_t *smux_nids;
256         unsigned int num_smuxes;
257         unsigned int num_analog_muxes;
258
259         const unsigned long *capvols; /* amp-volume attr: HDA_COMPOSE_AMP_VAL() */
260         const unsigned long *capsws; /* amp-mute attr: HDA_COMPOSE_AMP_VAL() */
261         unsigned int num_caps; /* number of capture volume/switch elements */
262
263         struct sigmatel_mic_route ext_mic;
264         struct sigmatel_mic_route int_mic;
265         struct sigmatel_mic_route dock_mic;
266
267         const char * const *spdif_labels;
268
269         hda_nid_t dig_in_nid;
270         hda_nid_t mono_nid;
271         hda_nid_t anabeep_nid;
272         hda_nid_t digbeep_nid;
273
274         /* pin widgets */
275         const hda_nid_t *pin_nids;
276         unsigned int num_pins;
277
278         /* codec specific stuff */
279         const struct hda_verb *init;
280         const struct snd_kcontrol_new *mixer;
281
282         /* capture source */
283         struct hda_input_mux *dinput_mux;
284         unsigned int cur_dmux[2];
285         struct hda_input_mux *input_mux;
286         unsigned int cur_mux[3];
287         struct hda_input_mux *sinput_mux;
288         unsigned int cur_smux[2];
289         unsigned int cur_amux;
290         hda_nid_t *amp_nids;
291         unsigned int powerdown_adcs;
292
293         /* i/o switches */
294         unsigned int io_switch[2];
295         unsigned int clfe_swap;
296         hda_nid_t line_switch;  /* shared line-in for input and output */
297         hda_nid_t mic_switch;   /* shared mic-in for input and output */
298         hda_nid_t hp_switch; /* NID of HP as line-out */
299         unsigned int aloopback;
300
301         struct hda_pcm pcm_rec[2];      /* PCM information */
302
303         /* dynamic controls and input_mux */
304         struct auto_pin_cfg autocfg;
305         struct snd_array kctls;
306         struct hda_input_mux private_dimux;
307         struct hda_input_mux private_imux;
308         struct hda_input_mux private_smux;
309         struct hda_input_mux private_mono_mux;
310
311         /* auto spec */
312         unsigned auto_pin_cnt;
313         hda_nid_t auto_pin_nids[MAX_PINS_NUM];
314         unsigned auto_adc_cnt;
315         hda_nid_t auto_adc_nids[MAX_ADCS_NUM];
316         hda_nid_t auto_mux_nids[MAX_ADCS_NUM];
317         hda_nid_t auto_dmux_nids[MAX_ADCS_NUM];
318         unsigned long auto_capvols[MAX_ADCS_NUM];
319         unsigned auto_dmic_cnt;
320         hda_nid_t auto_dmic_nids[MAX_DMICS_NUM];
321 };
322
323 static const hda_nid_t stac9200_adc_nids[1] = {
324         0x03,
325 };
326
327 static const hda_nid_t stac9200_mux_nids[1] = {
328         0x0c,
329 };
330
331 static const hda_nid_t stac9200_dac_nids[1] = {
332         0x02,
333 };
334
335 static const hda_nid_t stac92hd73xx_pwr_nids[8] = {
336         0x0a, 0x0b, 0x0c, 0xd, 0x0e,
337         0x0f, 0x10, 0x11
338 };
339
340 static const hda_nid_t stac92hd73xx_slave_dig_outs[2] = {
341         0x26, 0,
342 };
343
344 static const hda_nid_t stac92hd73xx_adc_nids[2] = {
345         0x1a, 0x1b
346 };
347
348 #define STAC92HD73XX_NUM_DMICS  2
349 static const hda_nid_t stac92hd73xx_dmic_nids[STAC92HD73XX_NUM_DMICS + 1] = {
350         0x13, 0x14, 0
351 };
352
353 #define STAC92HD73_DAC_COUNT 5
354
355 static const hda_nid_t stac92hd73xx_mux_nids[2] = {
356         0x20, 0x21,
357 };
358
359 static const hda_nid_t stac92hd73xx_dmux_nids[2] = {
360         0x20, 0x21,
361 };
362
363 static const hda_nid_t stac92hd73xx_smux_nids[2] = {
364         0x22, 0x23,
365 };
366
367 #define STAC92HD73XX_NUM_CAPS   2
368 static const unsigned long stac92hd73xx_capvols[] = {
369         HDA_COMPOSE_AMP_VAL(0x20, 3, 0, HDA_OUTPUT),
370         HDA_COMPOSE_AMP_VAL(0x21, 3, 0, HDA_OUTPUT),
371 };
372 #define stac92hd73xx_capsws     stac92hd73xx_capvols
373
374 #define STAC92HD83_DAC_COUNT 3
375
376 static const hda_nid_t stac92hd83xxx_pwr_nids[7] = {
377         0x0a, 0x0b, 0x0c, 0xd, 0x0e,
378         0x0f, 0x10
379 };
380
381 static const hda_nid_t stac92hd83xxx_slave_dig_outs[2] = {
382         0x1e, 0,
383 };
384
385 static const hda_nid_t stac92hd83xxx_dmic_nids[] = {
386                 0x11, 0x20,
387 };
388
389 static const hda_nid_t stac92hd71bxx_pwr_nids[3] = {
390         0x0a, 0x0d, 0x0f
391 };
392
393 static const hda_nid_t stac92hd71bxx_adc_nids[2] = {
394         0x12, 0x13,
395 };
396
397 static const hda_nid_t stac92hd71bxx_mux_nids[2] = {
398         0x1a, 0x1b
399 };
400
401 static const hda_nid_t stac92hd71bxx_dmux_nids[2] = {
402         0x1c, 0x1d,
403 };
404
405 static const hda_nid_t stac92hd71bxx_smux_nids[2] = {
406         0x24, 0x25,
407 };
408
409 #define STAC92HD71BXX_NUM_DMICS 2
410 static const hda_nid_t stac92hd71bxx_dmic_nids[STAC92HD71BXX_NUM_DMICS + 1] = {
411         0x18, 0x19, 0
412 };
413
414 static const hda_nid_t stac92hd71bxx_dmic_5port_nids[STAC92HD71BXX_NUM_DMICS] = {
415         0x18, 0
416 };
417
418 static const hda_nid_t stac92hd71bxx_slave_dig_outs[2] = {
419         0x22, 0
420 };
421
422 #define STAC92HD71BXX_NUM_CAPS          2
423 static const unsigned long stac92hd71bxx_capvols[] = {
424         HDA_COMPOSE_AMP_VAL(0x1c, 3, 0, HDA_OUTPUT),
425         HDA_COMPOSE_AMP_VAL(0x1d, 3, 0, HDA_OUTPUT),
426 };
427 #define stac92hd71bxx_capsws    stac92hd71bxx_capvols
428
429 static const hda_nid_t stac925x_adc_nids[1] = {
430         0x03,
431 };
432
433 static const hda_nid_t stac925x_mux_nids[1] = {
434         0x0f,
435 };
436
437 static const hda_nid_t stac925x_dac_nids[1] = {
438         0x02,
439 };
440
441 #define STAC925X_NUM_DMICS      1
442 static const hda_nid_t stac925x_dmic_nids[STAC925X_NUM_DMICS + 1] = {
443         0x15, 0
444 };
445
446 static const hda_nid_t stac925x_dmux_nids[1] = {
447         0x14,
448 };
449
450 static const unsigned long stac925x_capvols[] = {
451         HDA_COMPOSE_AMP_VAL(0x09, 3, 0, HDA_OUTPUT),
452 };
453 static const unsigned long stac925x_capsws[] = {
454         HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT),
455 };
456
457 static const hda_nid_t stac922x_adc_nids[2] = {
458         0x06, 0x07,
459 };
460
461 static const hda_nid_t stac922x_mux_nids[2] = {
462         0x12, 0x13,
463 };
464
465 #define STAC922X_NUM_CAPS       2
466 static const unsigned long stac922x_capvols[] = {
467         HDA_COMPOSE_AMP_VAL(0x17, 3, 0, HDA_INPUT),
468         HDA_COMPOSE_AMP_VAL(0x18, 3, 0, HDA_INPUT),
469 };
470 #define stac922x_capsws         stac922x_capvols
471
472 static const hda_nid_t stac927x_slave_dig_outs[2] = {
473         0x1f, 0,
474 };
475
476 static const hda_nid_t stac927x_adc_nids[3] = {
477         0x07, 0x08, 0x09
478 };
479
480 static const hda_nid_t stac927x_mux_nids[3] = {
481         0x15, 0x16, 0x17
482 };
483
484 static const hda_nid_t stac927x_smux_nids[1] = {
485         0x21,
486 };
487
488 static const hda_nid_t stac927x_dac_nids[6] = {
489         0x02, 0x03, 0x04, 0x05, 0x06, 0
490 };
491
492 static const hda_nid_t stac927x_dmux_nids[1] = {
493         0x1b,
494 };
495
496 #define STAC927X_NUM_DMICS 2
497 static const hda_nid_t stac927x_dmic_nids[STAC927X_NUM_DMICS + 1] = {
498         0x13, 0x14, 0
499 };
500
501 #define STAC927X_NUM_CAPS       3
502 static const unsigned long stac927x_capvols[] = {
503         HDA_COMPOSE_AMP_VAL(0x18, 3, 0, HDA_INPUT),
504         HDA_COMPOSE_AMP_VAL(0x19, 3, 0, HDA_INPUT),
505         HDA_COMPOSE_AMP_VAL(0x1a, 3, 0, HDA_INPUT),
506 };
507 static const unsigned long stac927x_capsws[] = {
508         HDA_COMPOSE_AMP_VAL(0x1b, 3, 0, HDA_OUTPUT),
509         HDA_COMPOSE_AMP_VAL(0x1c, 3, 0, HDA_OUTPUT),
510         HDA_COMPOSE_AMP_VAL(0x1d, 3, 0, HDA_OUTPUT),
511 };
512
513 static const char * const stac927x_spdif_labels[5] = {
514         "Digital Playback", "ADAT", "Analog Mux 1",
515         "Analog Mux 2", "Analog Mux 3"
516 };
517
518 static const hda_nid_t stac9205_adc_nids[2] = {
519         0x12, 0x13
520 };
521
522 static const hda_nid_t stac9205_mux_nids[2] = {
523         0x19, 0x1a
524 };
525
526 static const hda_nid_t stac9205_dmux_nids[1] = {
527         0x1d,
528 };
529
530 static const hda_nid_t stac9205_smux_nids[1] = {
531         0x21,
532 };
533
534 #define STAC9205_NUM_DMICS      2
535 static const hda_nid_t stac9205_dmic_nids[STAC9205_NUM_DMICS + 1] = {
536         0x17, 0x18, 0
537 };
538
539 #define STAC9205_NUM_CAPS       2
540 static const unsigned long stac9205_capvols[] = {
541         HDA_COMPOSE_AMP_VAL(0x1b, 3, 0, HDA_INPUT),
542         HDA_COMPOSE_AMP_VAL(0x1c, 3, 0, HDA_INPUT),
543 };
544 static const unsigned long stac9205_capsws[] = {
545         HDA_COMPOSE_AMP_VAL(0x1d, 3, 0, HDA_OUTPUT),
546         HDA_COMPOSE_AMP_VAL(0x1e, 3, 0, HDA_OUTPUT),
547 };
548
549 static const hda_nid_t stac9200_pin_nids[8] = {
550         0x08, 0x09, 0x0d, 0x0e, 
551         0x0f, 0x10, 0x11, 0x12,
552 };
553
554 static const hda_nid_t stac925x_pin_nids[8] = {
555         0x07, 0x08, 0x0a, 0x0b, 
556         0x0c, 0x0d, 0x10, 0x11,
557 };
558
559 static const hda_nid_t stac922x_pin_nids[10] = {
560         0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
561         0x0f, 0x10, 0x11, 0x15, 0x1b,
562 };
563
564 static const hda_nid_t stac92hd73xx_pin_nids[13] = {
565         0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
566         0x0f, 0x10, 0x11, 0x12, 0x13,
567         0x14, 0x22, 0x23
568 };
569
570 #define STAC92HD71BXX_NUM_PINS 13
571 static const hda_nid_t stac92hd71bxx_pin_nids_4port[STAC92HD71BXX_NUM_PINS] = {
572         0x0a, 0x0b, 0x0c, 0x0d, 0x00,
573         0x00, 0x14, 0x18, 0x19, 0x1e,
574         0x1f, 0x20, 0x27
575 };
576 static const hda_nid_t stac92hd71bxx_pin_nids_6port[STAC92HD71BXX_NUM_PINS] = {
577         0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
578         0x0f, 0x14, 0x18, 0x19, 0x1e,
579         0x1f, 0x20, 0x27
580 };
581
582 static const hda_nid_t stac927x_pin_nids[14] = {
583         0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
584         0x0f, 0x10, 0x11, 0x12, 0x13,
585         0x14, 0x21, 0x22, 0x23,
586 };
587
588 static const hda_nid_t stac9205_pin_nids[12] = {
589         0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
590         0x0f, 0x14, 0x16, 0x17, 0x18,
591         0x21, 0x22,
592 };
593
594 static int stac92xx_dmux_enum_info(struct snd_kcontrol *kcontrol,
595                                    struct snd_ctl_elem_info *uinfo)
596 {
597         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
598         struct sigmatel_spec *spec = codec->spec;
599         return snd_hda_input_mux_info(spec->dinput_mux, uinfo);
600 }
601
602 static int stac92xx_dmux_enum_get(struct snd_kcontrol *kcontrol,
603                                   struct snd_ctl_elem_value *ucontrol)
604 {
605         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
606         struct sigmatel_spec *spec = codec->spec;
607         unsigned int dmux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
608
609         ucontrol->value.enumerated.item[0] = spec->cur_dmux[dmux_idx];
610         return 0;
611 }
612
613 static int stac92xx_dmux_enum_put(struct snd_kcontrol *kcontrol,
614                                   struct snd_ctl_elem_value *ucontrol)
615 {
616         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
617         struct sigmatel_spec *spec = codec->spec;
618         unsigned int dmux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
619
620         return snd_hda_input_mux_put(codec, spec->dinput_mux, ucontrol,
621                         spec->dmux_nids[dmux_idx], &spec->cur_dmux[dmux_idx]);
622 }
623
624 static int stac92xx_smux_enum_info(struct snd_kcontrol *kcontrol,
625                                    struct snd_ctl_elem_info *uinfo)
626 {
627         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
628         struct sigmatel_spec *spec = codec->spec;
629         return snd_hda_input_mux_info(spec->sinput_mux, uinfo);
630 }
631
632 static int stac92xx_smux_enum_get(struct snd_kcontrol *kcontrol,
633                                   struct snd_ctl_elem_value *ucontrol)
634 {
635         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
636         struct sigmatel_spec *spec = codec->spec;
637         unsigned int smux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
638
639         ucontrol->value.enumerated.item[0] = spec->cur_smux[smux_idx];
640         return 0;
641 }
642
643 static int stac92xx_smux_enum_put(struct snd_kcontrol *kcontrol,
644                                   struct snd_ctl_elem_value *ucontrol)
645 {
646         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
647         struct sigmatel_spec *spec = codec->spec;
648         struct hda_input_mux *smux = &spec->private_smux;
649         unsigned int smux_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
650         int err, val;
651         hda_nid_t nid;
652
653         err = snd_hda_input_mux_put(codec, spec->sinput_mux, ucontrol,
654                         spec->smux_nids[smux_idx], &spec->cur_smux[smux_idx]);
655         if (err < 0)
656                 return err;
657
658         if (spec->spdif_mute) {
659                 if (smux_idx == 0)
660                         nid = spec->multiout.dig_out_nid;
661                 else
662                         nid = codec->slave_dig_outs[smux_idx - 1];
663                 if (spec->cur_smux[smux_idx] == smux->num_items - 1)
664                         val = HDA_AMP_MUTE;
665                 else
666                         val = 0;
667                 /* un/mute SPDIF out */
668                 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
669                                          HDA_AMP_MUTE, val);
670         }
671         return 0;
672 }
673
674 #ifdef CONFIG_SND_HDA_POWER_SAVE
675 static int stac_vrefout_set(struct hda_codec *codec,
676                                         hda_nid_t nid, unsigned int new_vref)
677 {
678         int error, pinctl;
679
680         snd_printdd("%s, nid %x ctl %x\n", __func__, nid, new_vref);
681         pinctl = snd_hda_codec_read(codec, nid, 0,
682                                 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
683
684         if (pinctl < 0)
685                 return pinctl;
686
687         pinctl &= 0xff;
688         pinctl &= ~AC_PINCTL_VREFEN;
689         pinctl |= (new_vref & AC_PINCTL_VREFEN);
690
691         error = snd_hda_codec_write_cache(codec, nid, 0,
692                                         AC_VERB_SET_PIN_WIDGET_CONTROL, pinctl);
693         if (error < 0)
694                 return error;
695
696         return 1;
697 }
698 #endif
699
700 static unsigned int stac92xx_vref_set(struct hda_codec *codec,
701                                         hda_nid_t nid, unsigned int new_vref)
702 {
703         int error;
704         unsigned int pincfg;
705         pincfg = snd_hda_codec_read(codec, nid, 0,
706                                 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
707
708         pincfg &= 0xff;
709         pincfg &= ~(AC_PINCTL_VREFEN | AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN);
710         pincfg |= new_vref;
711
712         if (new_vref == AC_PINCTL_VREF_HIZ)
713                 pincfg |= AC_PINCTL_OUT_EN;
714         else
715                 pincfg |= AC_PINCTL_IN_EN;
716
717         error = snd_hda_codec_write_cache(codec, nid, 0,
718                                         AC_VERB_SET_PIN_WIDGET_CONTROL, pincfg);
719         if (error < 0)
720                 return error;
721         else
722                 return 1;
723 }
724
725 static unsigned int stac92xx_vref_get(struct hda_codec *codec, hda_nid_t nid)
726 {
727         unsigned int vref;
728         vref = snd_hda_codec_read(codec, nid, 0,
729                                 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
730         vref &= AC_PINCTL_VREFEN;
731         return vref;
732 }
733
734 static int stac92xx_mux_enum_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
735 {
736         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
737         struct sigmatel_spec *spec = codec->spec;
738         return snd_hda_input_mux_info(spec->input_mux, uinfo);
739 }
740
741 static int stac92xx_mux_enum_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
742 {
743         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
744         struct sigmatel_spec *spec = codec->spec;
745         unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
746
747         ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
748         return 0;
749 }
750
751 static int stac92xx_mux_enum_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
752 {
753         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
754         struct sigmatel_spec *spec = codec->spec;
755         unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
756         const struct hda_input_mux *imux = spec->input_mux;
757         unsigned int idx, prev_idx, didx;
758
759         idx = ucontrol->value.enumerated.item[0];
760         if (idx >= imux->num_items)
761                 idx = imux->num_items - 1;
762         prev_idx = spec->cur_mux[adc_idx];
763         if (prev_idx == idx)
764                 return 0;
765         if (idx < spec->num_analog_muxes) {
766                 snd_hda_codec_write_cache(codec, spec->mux_nids[adc_idx], 0,
767                                           AC_VERB_SET_CONNECT_SEL,
768                                           imux->items[idx].index);
769                 if (prev_idx >= spec->num_analog_muxes &&
770                     spec->mux_nids[adc_idx] != spec->dmux_nids[adc_idx]) {
771                         imux = spec->dinput_mux;
772                         /* 0 = analog */
773                         snd_hda_codec_write_cache(codec,
774                                                   spec->dmux_nids[adc_idx], 0,
775                                                   AC_VERB_SET_CONNECT_SEL,
776                                                   imux->items[0].index);
777                 }
778         } else {
779                 imux = spec->dinput_mux;
780                 /* first dimux item is hardcoded to select analog imux,
781                  * so lets skip it
782                  */
783                 didx = idx - spec->num_analog_muxes + 1;
784                 snd_hda_codec_write_cache(codec, spec->dmux_nids[adc_idx], 0,
785                                           AC_VERB_SET_CONNECT_SEL,
786                                           imux->items[didx].index);
787         }
788         spec->cur_mux[adc_idx] = idx;
789         return 1;
790 }
791
792 static int stac92xx_mono_mux_enum_info(struct snd_kcontrol *kcontrol,
793         struct snd_ctl_elem_info *uinfo)
794 {
795         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
796         struct sigmatel_spec *spec = codec->spec;
797         return snd_hda_input_mux_info(spec->mono_mux, uinfo);
798 }
799
800 static int stac92xx_mono_mux_enum_get(struct snd_kcontrol *kcontrol,
801         struct snd_ctl_elem_value *ucontrol)
802 {
803         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
804         struct sigmatel_spec *spec = codec->spec;
805
806         ucontrol->value.enumerated.item[0] = spec->cur_mmux;
807         return 0;
808 }
809
810 static int stac92xx_mono_mux_enum_put(struct snd_kcontrol *kcontrol,
811         struct snd_ctl_elem_value *ucontrol)
812 {
813         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
814         struct sigmatel_spec *spec = codec->spec;
815
816         return snd_hda_input_mux_put(codec, spec->mono_mux, ucontrol,
817                                      spec->mono_nid, &spec->cur_mmux);
818 }
819
820 #define stac92xx_aloopback_info snd_ctl_boolean_mono_info
821
822 static int stac92xx_aloopback_get(struct snd_kcontrol *kcontrol,
823         struct snd_ctl_elem_value *ucontrol)
824 {
825         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
826         unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
827         struct sigmatel_spec *spec = codec->spec;
828
829         ucontrol->value.integer.value[0] = !!(spec->aloopback &
830                                               (spec->aloopback_mask << idx));
831         return 0;
832 }
833
834 static int stac92xx_aloopback_put(struct snd_kcontrol *kcontrol,
835                 struct snd_ctl_elem_value *ucontrol)
836 {
837         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
838         struct sigmatel_spec *spec = codec->spec;
839         unsigned int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
840         unsigned int dac_mode;
841         unsigned int val, idx_val;
842
843         idx_val = spec->aloopback_mask << idx;
844         if (ucontrol->value.integer.value[0])
845                 val = spec->aloopback | idx_val;
846         else
847                 val = spec->aloopback & ~idx_val;
848         if (spec->aloopback == val)
849                 return 0;
850
851         spec->aloopback = val;
852
853         /* Only return the bits defined by the shift value of the
854          * first two bytes of the mask
855          */
856         dac_mode = snd_hda_codec_read(codec, codec->afg, 0,
857                                       kcontrol->private_value & 0xFFFF, 0x0);
858         dac_mode >>= spec->aloopback_shift;
859
860         if (spec->aloopback & idx_val) {
861                 snd_hda_power_up(codec);
862                 dac_mode |= idx_val;
863         } else {
864                 snd_hda_power_down(codec);
865                 dac_mode &= ~idx_val;
866         }
867
868         snd_hda_codec_write_cache(codec, codec->afg, 0,
869                 kcontrol->private_value >> 16, dac_mode);
870
871         return 1;
872 }
873
874 static const struct hda_verb stac9200_core_init[] = {
875         /* set dac0mux for dac converter */
876         { 0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
877         {}
878 };
879
880 static const struct hda_verb stac9200_eapd_init[] = {
881         /* set dac0mux for dac converter */
882         {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
883         {0x08, AC_VERB_SET_EAPD_BTLENABLE, 0x02},
884         {}
885 };
886
887 static const struct hda_verb dell_eq_core_init[] = {
888         /* set master volume to max value without distortion
889          * and direct control */
890         { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xec},
891         {}
892 };
893
894 static const struct hda_verb stac92hd73xx_core_init[] = {
895         /* set master volume and direct control */
896         { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
897         {}
898 };
899
900 static const struct hda_verb stac92hd83xxx_core_init[] = {
901         /* power state controls amps */
902         { 0x01, AC_VERB_SET_EAPD, 1 << 2},
903         {}
904 };
905
906 static const struct hda_verb stac92hd71bxx_core_init[] = {
907         /* set master volume and direct control */
908         { 0x28, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
909         {}
910 };
911
912 static const struct hda_verb stac92hd71bxx_unmute_core_init[] = {
913         /* unmute right and left channels for nodes 0x0f, 0xa, 0x0d */
914         { 0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
915         { 0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
916         { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
917         {}
918 };
919
920 static const struct hda_verb stac925x_core_init[] = {
921         /* set dac0mux for dac converter */
922         { 0x06, AC_VERB_SET_CONNECT_SEL, 0x00},
923         /* mute the master volume */
924         { 0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
925         {}
926 };
927
928 static const struct hda_verb stac922x_core_init[] = {
929         /* set master volume and direct control */      
930         { 0x16, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
931         {}
932 };
933
934 static const struct hda_verb d965_core_init[] = {
935         /* set master volume and direct control */      
936         { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
937         /* unmute node 0x1b */
938         { 0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
939         /* select node 0x03 as DAC */   
940         { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x01},
941         {}
942 };
943
944 static const struct hda_verb dell_3st_core_init[] = {
945         /* don't set delta bit */
946         {0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0x7f},
947         /* unmute node 0x1b */
948         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
949         /* select node 0x03 as DAC */
950         {0x0b, AC_VERB_SET_CONNECT_SEL, 0x01},
951         {}
952 };
953
954 static const struct hda_verb stac927x_core_init[] = {
955         /* set master volume and direct control */      
956         { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
957         /* enable analog pc beep path */
958         { 0x01, AC_VERB_SET_DIGI_CONVERT_2, 1 << 5},
959         {}
960 };
961
962 static const struct hda_verb stac927x_volknob_core_init[] = {
963         /* don't set delta bit */
964         {0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0x7f},
965         /* enable analog pc beep path */
966         {0x01, AC_VERB_SET_DIGI_CONVERT_2, 1 << 5},
967         {}
968 };
969
970 static const struct hda_verb stac9205_core_init[] = {
971         /* set master volume and direct control */      
972         { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
973         /* enable analog pc beep path */
974         { 0x01, AC_VERB_SET_DIGI_CONVERT_2, 1 << 5},
975         {}
976 };
977
978 #define STAC_MONO_MUX \
979         { \
980                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
981                 .name = "Mono Mux", \
982                 .count = 1, \
983                 .info = stac92xx_mono_mux_enum_info, \
984                 .get = stac92xx_mono_mux_enum_get, \
985                 .put = stac92xx_mono_mux_enum_put, \
986         }
987
988 #define STAC_ANALOG_LOOPBACK(verb_read, verb_write, cnt) \
989         { \
990                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
991                 .name  = "Analog Loopback", \
992                 .count = cnt, \
993                 .info  = stac92xx_aloopback_info, \
994                 .get   = stac92xx_aloopback_get, \
995                 .put   = stac92xx_aloopback_put, \
996                 .private_value = verb_read | (verb_write << 16), \
997         }
998
999 #define DC_BIAS(xname, idx, nid) \
1000         { \
1001                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1002                 .name = xname, \
1003                 .index = idx, \
1004                 .info = stac92xx_dc_bias_info, \
1005                 .get = stac92xx_dc_bias_get, \
1006                 .put = stac92xx_dc_bias_put, \
1007                 .private_value = nid, \
1008         }
1009
1010 static const struct snd_kcontrol_new stac9200_mixer[] = {
1011         HDA_CODEC_VOLUME_MIN_MUTE("Master Playback Volume", 0xb, 0, HDA_OUTPUT),
1012         HDA_CODEC_MUTE("Master Playback Switch", 0xb, 0, HDA_OUTPUT),
1013         HDA_CODEC_VOLUME("Capture Volume", 0x0a, 0, HDA_OUTPUT),
1014         HDA_CODEC_MUTE("Capture Switch", 0x0a, 0, HDA_OUTPUT),
1015         { } /* end */
1016 };
1017
1018 static const struct snd_kcontrol_new stac92hd73xx_6ch_loopback[] = {
1019         STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 3),
1020         {}
1021 };
1022
1023 static const struct snd_kcontrol_new stac92hd73xx_8ch_loopback[] = {
1024         STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 4),
1025         {}
1026 };
1027
1028 static const struct snd_kcontrol_new stac92hd73xx_10ch_loopback[] = {
1029         STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 5),
1030         {}
1031 };
1032
1033
1034 static const struct snd_kcontrol_new stac92hd71bxx_loopback[] = {
1035         STAC_ANALOG_LOOPBACK(0xFA0, 0x7A0, 2)
1036 };
1037
1038 static const struct snd_kcontrol_new stac925x_mixer[] = {
1039         HDA_CODEC_VOLUME_MIN_MUTE("Master Playback Volume", 0xe, 0, HDA_OUTPUT),
1040         HDA_CODEC_MUTE("Master Playback Switch", 0x0e, 0, HDA_OUTPUT),
1041         { } /* end */
1042 };
1043
1044 static const struct snd_kcontrol_new stac9205_loopback[] = {
1045         STAC_ANALOG_LOOPBACK(0xFE0, 0x7E0, 1),
1046         {}
1047 };
1048
1049 static const struct snd_kcontrol_new stac927x_loopback[] = {
1050         STAC_ANALOG_LOOPBACK(0xFEB, 0x7EB, 1),
1051         {}
1052 };
1053
1054 static struct snd_kcontrol_new stac_dmux_mixer = {
1055         .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1056         .name = "Digital Input Source",
1057         /* count set later */
1058         .info = stac92xx_dmux_enum_info,
1059         .get = stac92xx_dmux_enum_get,
1060         .put = stac92xx_dmux_enum_put,
1061 };
1062
1063 static struct snd_kcontrol_new stac_smux_mixer = {
1064         .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1065         .name = "IEC958 Playback Source",
1066         /* count set later */
1067         .info = stac92xx_smux_enum_info,
1068         .get = stac92xx_smux_enum_get,
1069         .put = stac92xx_smux_enum_put,
1070 };
1071
1072 static const char * const slave_vols[] = {
1073         "Front Playback Volume",
1074         "Surround Playback Volume",
1075         "Center Playback Volume",
1076         "LFE Playback Volume",
1077         "Side Playback Volume",
1078         "Headphone Playback Volume",
1079         "Speaker Playback Volume",
1080         NULL
1081 };
1082
1083 static const char * const slave_sws[] = {
1084         "Front Playback Switch",
1085         "Surround Playback Switch",
1086         "Center Playback Switch",
1087         "LFE Playback Switch",
1088         "Side Playback Switch",
1089         "Headphone Playback Switch",
1090         "Speaker Playback Switch",
1091         "IEC958 Playback Switch",
1092         NULL
1093 };
1094
1095 static void stac92xx_free_kctls(struct hda_codec *codec);
1096 static int stac92xx_add_jack(struct hda_codec *codec, hda_nid_t nid, int type);
1097
1098 static int stac92xx_build_controls(struct hda_codec *codec)
1099 {
1100         struct sigmatel_spec *spec = codec->spec;
1101         struct auto_pin_cfg *cfg = &spec->autocfg;
1102         hda_nid_t nid;
1103         int err;
1104         int i;
1105
1106         if (spec->mixer) {
1107                 err = snd_hda_add_new_ctls(codec, spec->mixer);
1108                 if (err < 0)
1109                         return err;
1110         }
1111
1112         for (i = 0; i < spec->num_mixers; i++) {
1113                 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
1114                 if (err < 0)
1115                         return err;
1116         }
1117         if (!spec->auto_mic && spec->num_dmuxes > 0 &&
1118             snd_hda_get_bool_hint(codec, "separate_dmux") == 1) {
1119                 stac_dmux_mixer.count = spec->num_dmuxes;
1120                 err = snd_hda_ctl_add(codec, 0,
1121                                   snd_ctl_new1(&stac_dmux_mixer, codec));
1122                 if (err < 0)
1123                         return err;
1124         }
1125         if (spec->num_smuxes > 0) {
1126                 int wcaps = get_wcaps(codec, spec->multiout.dig_out_nid);
1127                 struct hda_input_mux *smux = &spec->private_smux;
1128                 /* check for mute support on SPDIF out */
1129                 if (wcaps & AC_WCAP_OUT_AMP) {
1130                         snd_hda_add_imux_item(smux, "Off", 0, NULL);
1131                         spec->spdif_mute = 1;
1132                 }
1133                 stac_smux_mixer.count = spec->num_smuxes;
1134                 err = snd_hda_ctl_add(codec, 0,
1135                                   snd_ctl_new1(&stac_smux_mixer, codec));
1136                 if (err < 0)
1137                         return err;
1138         }
1139
1140         if (spec->multiout.dig_out_nid) {
1141                 err = snd_hda_create_spdif_out_ctls(codec,
1142                                                     spec->multiout.dig_out_nid,
1143                                                     spec->multiout.dig_out_nid);
1144                 if (err < 0)
1145                         return err;
1146                 err = snd_hda_create_spdif_share_sw(codec,
1147                                                     &spec->multiout);
1148                 if (err < 0)
1149                         return err;
1150                 spec->multiout.share_spdif = 1;
1151         }
1152         if (spec->dig_in_nid && !(spec->gpio_dir & 0x01)) {
1153                 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
1154                 if (err < 0)
1155                         return err;
1156         }
1157
1158         /* if we have no master control, let's create it */
1159         if (!snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) {
1160                 unsigned int vmaster_tlv[4];
1161                 snd_hda_set_vmaster_tlv(codec, spec->multiout.dac_nids[0],
1162                                         HDA_OUTPUT, vmaster_tlv);
1163                 /* correct volume offset */
1164                 vmaster_tlv[2] += vmaster_tlv[3] * spec->volume_offset;
1165                 /* minimum value is actually mute */
1166                 vmaster_tlv[3] |= TLV_DB_SCALE_MUTE;
1167                 err = snd_hda_add_vmaster(codec, "Master Playback Volume",
1168                                           vmaster_tlv, slave_vols);
1169                 if (err < 0)
1170                         return err;
1171         }
1172         if (!snd_hda_find_mixer_ctl(codec, "Master Playback Switch")) {
1173                 err = snd_hda_add_vmaster(codec, "Master Playback Switch",
1174                                           NULL, slave_sws);
1175                 if (err < 0)
1176                         return err;
1177         }
1178
1179         if (spec->aloopback_ctl &&
1180             snd_hda_get_bool_hint(codec, "loopback") == 1) {
1181                 err = snd_hda_add_new_ctls(codec, spec->aloopback_ctl);
1182                 if (err < 0)
1183                         return err;
1184         }
1185
1186         stac92xx_free_kctls(codec); /* no longer needed */
1187
1188         /* create jack input elements */
1189         if (spec->hp_detect) {
1190                 for (i = 0; i < cfg->hp_outs; i++) {
1191                         int type = SND_JACK_HEADPHONE;
1192                         nid = cfg->hp_pins[i];
1193                         /* jack detection */
1194                         if (cfg->hp_outs == i)
1195                                 type |= SND_JACK_LINEOUT;
1196                         err = stac92xx_add_jack(codec, nid, type);
1197                         if (err < 0)
1198                                 return err;
1199                 }
1200         }
1201         for (i = 0; i < cfg->line_outs; i++) {
1202                 err = stac92xx_add_jack(codec, cfg->line_out_pins[i],
1203                                         SND_JACK_LINEOUT);
1204                 if (err < 0)
1205                         return err;
1206         }
1207         for (i = 0; i < cfg->num_inputs; i++) {
1208                 nid = cfg->inputs[i].pin;
1209                 err = stac92xx_add_jack(codec, nid, SND_JACK_MICROPHONE);
1210                 if (err < 0)
1211                         return err;
1212         }
1213
1214         return 0;       
1215 }
1216
1217 static const unsigned int ref9200_pin_configs[8] = {
1218         0x01c47010, 0x01447010, 0x0221401f, 0x01114010,
1219         0x02a19020, 0x01a19021, 0x90100140, 0x01813122,
1220 };
1221
1222 static const unsigned int gateway9200_m4_pin_configs[8] = {
1223         0x400000fe, 0x404500f4, 0x400100f0, 0x90110010,
1224         0x400100f1, 0x02a1902e, 0x500000f2, 0x500000f3,
1225 };
1226 static const unsigned int gateway9200_m4_2_pin_configs[8] = {
1227         0x400000fe, 0x404500f4, 0x400100f0, 0x90110010,
1228         0x400100f1, 0x02a1902e, 0x500000f2, 0x500000f3,
1229 };
1230
1231 /*
1232     STAC 9200 pin configs for
1233     102801A8
1234     102801DE
1235     102801E8
1236 */
1237 static const unsigned int dell9200_d21_pin_configs[8] = {
1238         0x400001f0, 0x400001f1, 0x02214030, 0x01014010, 
1239         0x02a19020, 0x01a19021, 0x90100140, 0x01813122,
1240 };
1241
1242 /* 
1243     STAC 9200 pin configs for
1244     102801C0
1245     102801C1
1246 */
1247 static const unsigned int dell9200_d22_pin_configs[8] = {
1248         0x400001f0, 0x400001f1, 0x0221401f, 0x01014010, 
1249         0x01813020, 0x02a19021, 0x90100140, 0x400001f2,
1250 };
1251
1252 /* 
1253     STAC 9200 pin configs for
1254     102801C4 (Dell Dimension E310)
1255     102801C5
1256     102801C7
1257     102801D9
1258     102801DA
1259     102801E3
1260 */
1261 static const unsigned int dell9200_d23_pin_configs[8] = {
1262         0x400001f0, 0x400001f1, 0x0221401f, 0x01014010, 
1263         0x01813020, 0x01a19021, 0x90100140, 0x400001f2, 
1264 };
1265
1266
1267 /* 
1268     STAC 9200-32 pin configs for
1269     102801B5 (Dell Inspiron 630m)
1270     102801D8 (Dell Inspiron 640m)
1271 */
1272 static const unsigned int dell9200_m21_pin_configs[8] = {
1273         0x40c003fa, 0x03441340, 0x0321121f, 0x90170310,
1274         0x408003fb, 0x03a11020, 0x401003fc, 0x403003fd,
1275 };
1276
1277 /* 
1278     STAC 9200-32 pin configs for
1279     102801C2 (Dell Latitude D620)
1280     102801C8 
1281     102801CC (Dell Latitude D820)
1282     102801D4 
1283     102801D6 
1284 */
1285 static const unsigned int dell9200_m22_pin_configs[8] = {
1286         0x40c003fa, 0x0144131f, 0x0321121f, 0x90170310, 
1287         0x90a70321, 0x03a11020, 0x401003fb, 0x40f000fc,
1288 };
1289
1290 /* 
1291     STAC 9200-32 pin configs for
1292     102801CE (Dell XPS M1710)
1293     102801CF (Dell Precision M90)
1294 */
1295 static const unsigned int dell9200_m23_pin_configs[8] = {
1296         0x40c003fa, 0x01441340, 0x0421421f, 0x90170310,
1297         0x408003fb, 0x04a1102e, 0x90170311, 0x403003fc,
1298 };
1299
1300 /*
1301     STAC 9200-32 pin configs for 
1302     102801C9
1303     102801CA
1304     102801CB (Dell Latitude 120L)
1305     102801D3
1306 */
1307 static const unsigned int dell9200_m24_pin_configs[8] = {
1308         0x40c003fa, 0x404003fb, 0x0321121f, 0x90170310, 
1309         0x408003fc, 0x03a11020, 0x401003fd, 0x403003fe, 
1310 };
1311
1312 /*
1313     STAC 9200-32 pin configs for
1314     102801BD (Dell Inspiron E1505n)
1315     102801EE
1316     102801EF
1317 */
1318 static const unsigned int dell9200_m25_pin_configs[8] = {
1319         0x40c003fa, 0x01441340, 0x0421121f, 0x90170310, 
1320         0x408003fb, 0x04a11020, 0x401003fc, 0x403003fd,
1321 };
1322
1323 /*
1324     STAC 9200-32 pin configs for
1325     102801F5 (Dell Inspiron 1501)
1326     102801F6
1327 */
1328 static const unsigned int dell9200_m26_pin_configs[8] = {
1329         0x40c003fa, 0x404003fb, 0x0421121f, 0x90170310, 
1330         0x408003fc, 0x04a11020, 0x401003fd, 0x403003fe,
1331 };
1332
1333 /*
1334     STAC 9200-32
1335     102801CD (Dell Inspiron E1705/9400)
1336 */
1337 static const unsigned int dell9200_m27_pin_configs[8] = {
1338         0x40c003fa, 0x01441340, 0x0421121f, 0x90170310,
1339         0x90170310, 0x04a11020, 0x90170310, 0x40f003fc,
1340 };
1341
1342 static const unsigned int oqo9200_pin_configs[8] = {
1343         0x40c000f0, 0x404000f1, 0x0221121f, 0x02211210,
1344         0x90170111, 0x90a70120, 0x400000f2, 0x400000f3,
1345 };
1346
1347
1348 static const unsigned int *stac9200_brd_tbl[STAC_9200_MODELS] = {
1349         [STAC_REF] = ref9200_pin_configs,
1350         [STAC_9200_OQO] = oqo9200_pin_configs,
1351         [STAC_9200_DELL_D21] = dell9200_d21_pin_configs,
1352         [STAC_9200_DELL_D22] = dell9200_d22_pin_configs,
1353         [STAC_9200_DELL_D23] = dell9200_d23_pin_configs,
1354         [STAC_9200_DELL_M21] = dell9200_m21_pin_configs,
1355         [STAC_9200_DELL_M22] = dell9200_m22_pin_configs,
1356         [STAC_9200_DELL_M23] = dell9200_m23_pin_configs,
1357         [STAC_9200_DELL_M24] = dell9200_m24_pin_configs,
1358         [STAC_9200_DELL_M25] = dell9200_m25_pin_configs,
1359         [STAC_9200_DELL_M26] = dell9200_m26_pin_configs,
1360         [STAC_9200_DELL_M27] = dell9200_m27_pin_configs,
1361         [STAC_9200_M4] = gateway9200_m4_pin_configs,
1362         [STAC_9200_M4_2] = gateway9200_m4_2_pin_configs,
1363         [STAC_9200_PANASONIC] = ref9200_pin_configs,
1364 };
1365
1366 static const char * const stac9200_models[STAC_9200_MODELS] = {
1367         [STAC_AUTO] = "auto",
1368         [STAC_REF] = "ref",
1369         [STAC_9200_OQO] = "oqo",
1370         [STAC_9200_DELL_D21] = "dell-d21",
1371         [STAC_9200_DELL_D22] = "dell-d22",
1372         [STAC_9200_DELL_D23] = "dell-d23",
1373         [STAC_9200_DELL_M21] = "dell-m21",
1374         [STAC_9200_DELL_M22] = "dell-m22",
1375         [STAC_9200_DELL_M23] = "dell-m23",
1376         [STAC_9200_DELL_M24] = "dell-m24",
1377         [STAC_9200_DELL_M25] = "dell-m25",
1378         [STAC_9200_DELL_M26] = "dell-m26",
1379         [STAC_9200_DELL_M27] = "dell-m27",
1380         [STAC_9200_M4] = "gateway-m4",
1381         [STAC_9200_M4_2] = "gateway-m4-2",
1382         [STAC_9200_PANASONIC] = "panasonic",
1383 };
1384
1385 static const struct snd_pci_quirk stac9200_cfg_tbl[] = {
1386         /* SigmaTel reference board */
1387         SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
1388                       "DFI LanParty", STAC_REF),
1389         SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
1390                       "DFI LanParty", STAC_REF),
1391         /* Dell laptops have BIOS problem */
1392         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a8,
1393                       "unknown Dell", STAC_9200_DELL_D21),
1394         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01b5,
1395                       "Dell Inspiron 630m", STAC_9200_DELL_M21),
1396         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01bd,
1397                       "Dell Inspiron E1505n", STAC_9200_DELL_M25),
1398         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c0,
1399                       "unknown Dell", STAC_9200_DELL_D22),
1400         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c1,
1401                       "unknown Dell", STAC_9200_DELL_D22),
1402         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c2,
1403                       "Dell Latitude D620", STAC_9200_DELL_M22),
1404         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c5,
1405                       "unknown Dell", STAC_9200_DELL_D23),
1406         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c7,
1407                       "unknown Dell", STAC_9200_DELL_D23),
1408         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c8,
1409                       "unknown Dell", STAC_9200_DELL_M22),
1410         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01c9,
1411                       "unknown Dell", STAC_9200_DELL_M24),
1412         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ca,
1413                       "unknown Dell", STAC_9200_DELL_M24),
1414         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cb,
1415                       "Dell Latitude 120L", STAC_9200_DELL_M24),
1416         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cc,
1417                       "Dell Latitude D820", STAC_9200_DELL_M22),
1418         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cd,
1419                       "Dell Inspiron E1705/9400", STAC_9200_DELL_M27),
1420         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ce,
1421                       "Dell XPS M1710", STAC_9200_DELL_M23),
1422         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01cf,
1423                       "Dell Precision M90", STAC_9200_DELL_M23),
1424         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d3,
1425                       "unknown Dell", STAC_9200_DELL_M22),
1426         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d4,
1427                       "unknown Dell", STAC_9200_DELL_M22),
1428         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d6,
1429                       "unknown Dell", STAC_9200_DELL_M22),
1430         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d8,
1431                       "Dell Inspiron 640m", STAC_9200_DELL_M21),
1432         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d9,
1433                       "unknown Dell", STAC_9200_DELL_D23),
1434         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01da,
1435                       "unknown Dell", STAC_9200_DELL_D23),
1436         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01de,
1437                       "unknown Dell", STAC_9200_DELL_D21),
1438         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01e3,
1439                       "unknown Dell", STAC_9200_DELL_D23),
1440         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01e8,
1441                       "unknown Dell", STAC_9200_DELL_D21),
1442         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ee,
1443                       "unknown Dell", STAC_9200_DELL_M25),
1444         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ef,
1445                       "unknown Dell", STAC_9200_DELL_M25),
1446         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f5,
1447                       "Dell Inspiron 1501", STAC_9200_DELL_M26),
1448         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f6,
1449                       "unknown Dell", STAC_9200_DELL_M26),
1450         /* Panasonic */
1451         SND_PCI_QUIRK(0x10f7, 0x8338, "Panasonic CF-74", STAC_9200_PANASONIC),
1452         /* Gateway machines needs EAPD to be set on resume */
1453         SND_PCI_QUIRK(0x107b, 0x0205, "Gateway S-7110M", STAC_9200_M4),
1454         SND_PCI_QUIRK(0x107b, 0x0317, "Gateway MT3423, MX341*", STAC_9200_M4_2),
1455         SND_PCI_QUIRK(0x107b, 0x0318, "Gateway ML3019, MT3707", STAC_9200_M4_2),
1456         /* OQO Mobile */
1457         SND_PCI_QUIRK(0x1106, 0x3288, "OQO Model 2", STAC_9200_OQO),
1458         {} /* terminator */
1459 };
1460
1461 static const unsigned int ref925x_pin_configs[8] = {
1462         0x40c003f0, 0x424503f2, 0x01813022, 0x02a19021,
1463         0x90a70320, 0x02214210, 0x01019020, 0x9033032e,
1464 };
1465
1466 static const unsigned int stac925xM1_pin_configs[8] = {
1467         0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1468         0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1469 };
1470
1471 static const unsigned int stac925xM1_2_pin_configs[8] = {
1472         0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1473         0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1474 };
1475
1476 static const unsigned int stac925xM2_pin_configs[8] = {
1477         0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1478         0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1479 };
1480
1481 static const unsigned int stac925xM2_2_pin_configs[8] = {
1482         0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1483         0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1484 };
1485
1486 static const unsigned int stac925xM3_pin_configs[8] = {
1487         0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1488         0x40a000f0, 0x90100210, 0x400003f1, 0x503303f3,
1489 };
1490
1491 static const unsigned int stac925xM5_pin_configs[8] = {
1492         0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1493         0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1494 };
1495
1496 static const unsigned int stac925xM6_pin_configs[8] = {
1497         0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1498         0x40a000f0, 0x90100210, 0x400003f1, 0x90330320,
1499 };
1500
1501 static const unsigned int *stac925x_brd_tbl[STAC_925x_MODELS] = {
1502         [STAC_REF] = ref925x_pin_configs,
1503         [STAC_M1] = stac925xM1_pin_configs,
1504         [STAC_M1_2] = stac925xM1_2_pin_configs,
1505         [STAC_M2] = stac925xM2_pin_configs,
1506         [STAC_M2_2] = stac925xM2_2_pin_configs,
1507         [STAC_M3] = stac925xM3_pin_configs,
1508         [STAC_M5] = stac925xM5_pin_configs,
1509         [STAC_M6] = stac925xM6_pin_configs,
1510 };
1511
1512 static const char * const stac925x_models[STAC_925x_MODELS] = {
1513         [STAC_925x_AUTO] = "auto",
1514         [STAC_REF] = "ref",
1515         [STAC_M1] = "m1",
1516         [STAC_M1_2] = "m1-2",
1517         [STAC_M2] = "m2",
1518         [STAC_M2_2] = "m2-2",
1519         [STAC_M3] = "m3",
1520         [STAC_M5] = "m5",
1521         [STAC_M6] = "m6",
1522 };
1523
1524 static const struct snd_pci_quirk stac925x_codec_id_cfg_tbl[] = {
1525         SND_PCI_QUIRK(0x107b, 0x0316, "Gateway M255", STAC_M2),
1526         SND_PCI_QUIRK(0x107b, 0x0366, "Gateway MP6954", STAC_M5),
1527         SND_PCI_QUIRK(0x107b, 0x0461, "Gateway NX560XL", STAC_M1),
1528         SND_PCI_QUIRK(0x107b, 0x0681, "Gateway NX860", STAC_M2),
1529         SND_PCI_QUIRK(0x107b, 0x0367, "Gateway MX6453", STAC_M1_2),
1530         /* Not sure about the brand name for those */
1531         SND_PCI_QUIRK(0x107b, 0x0281, "Gateway mobile", STAC_M1),
1532         SND_PCI_QUIRK(0x107b, 0x0507, "Gateway mobile", STAC_M3),
1533         SND_PCI_QUIRK(0x107b, 0x0281, "Gateway mobile", STAC_M6),
1534         SND_PCI_QUIRK(0x107b, 0x0685, "Gateway mobile", STAC_M2_2),
1535         {} /* terminator */
1536 };
1537
1538 static const struct snd_pci_quirk stac925x_cfg_tbl[] = {
1539         /* SigmaTel reference board */
1540         SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668, "DFI LanParty", STAC_REF),
1541         SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101, "DFI LanParty", STAC_REF),
1542         SND_PCI_QUIRK(0x8384, 0x7632, "Stac9202 Reference Board", STAC_REF),
1543
1544         /* Default table for unknown ID */
1545         SND_PCI_QUIRK(0x1002, 0x437b, "Gateway mobile", STAC_M2_2),
1546
1547         {} /* terminator */
1548 };
1549
1550 static const unsigned int ref92hd73xx_pin_configs[13] = {
1551         0x02214030, 0x02a19040, 0x01a19020, 0x02214030,
1552         0x0181302e, 0x01014010, 0x01014020, 0x01014030,
1553         0x02319040, 0x90a000f0, 0x90a000f0, 0x01452050,
1554         0x01452050,
1555 };
1556
1557 static const unsigned int dell_m6_pin_configs[13] = {
1558         0x0321101f, 0x4f00000f, 0x4f0000f0, 0x90170110,
1559         0x03a11020, 0x0321101f, 0x4f0000f0, 0x4f0000f0,
1560         0x4f0000f0, 0x90a60160, 0x4f0000f0, 0x4f0000f0,
1561         0x4f0000f0,
1562 };
1563
1564 static const unsigned int alienware_m17x_pin_configs[13] = {
1565         0x0321101f, 0x0321101f, 0x03a11020, 0x03014020,
1566         0x90170110, 0x4f0000f0, 0x4f0000f0, 0x4f0000f0,
1567         0x4f0000f0, 0x90a60160, 0x4f0000f0, 0x4f0000f0,
1568         0x904601b0,
1569 };
1570
1571 static const unsigned int intel_dg45id_pin_configs[13] = {
1572         0x02214230, 0x02A19240, 0x01013214, 0x01014210,
1573         0x01A19250, 0x01011212, 0x01016211
1574 };
1575
1576 static const unsigned int *stac92hd73xx_brd_tbl[STAC_92HD73XX_MODELS] = {
1577         [STAC_92HD73XX_REF]     = ref92hd73xx_pin_configs,
1578         [STAC_DELL_M6_AMIC]     = dell_m6_pin_configs,
1579         [STAC_DELL_M6_DMIC]     = dell_m6_pin_configs,
1580         [STAC_DELL_M6_BOTH]     = dell_m6_pin_configs,
1581         [STAC_DELL_EQ]  = dell_m6_pin_configs,
1582         [STAC_ALIENWARE_M17X]   = alienware_m17x_pin_configs,
1583         [STAC_92HD73XX_INTEL]   = intel_dg45id_pin_configs,
1584 };
1585
1586 static const char * const stac92hd73xx_models[STAC_92HD73XX_MODELS] = {
1587         [STAC_92HD73XX_AUTO] = "auto",
1588         [STAC_92HD73XX_NO_JD] = "no-jd",
1589         [STAC_92HD73XX_REF] = "ref",
1590         [STAC_92HD73XX_INTEL] = "intel",
1591         [STAC_DELL_M6_AMIC] = "dell-m6-amic",
1592         [STAC_DELL_M6_DMIC] = "dell-m6-dmic",
1593         [STAC_DELL_M6_BOTH] = "dell-m6",
1594         [STAC_DELL_EQ] = "dell-eq",
1595         [STAC_ALIENWARE_M17X] = "alienware",
1596 };
1597
1598 static const struct snd_pci_quirk stac92hd73xx_cfg_tbl[] = {
1599         /* SigmaTel reference board */
1600         SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
1601                                 "DFI LanParty", STAC_92HD73XX_REF),
1602         SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
1603                                 "DFI LanParty", STAC_92HD73XX_REF),
1604         SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5002,
1605                                 "Intel DG45ID", STAC_92HD73XX_INTEL),
1606         SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5003,
1607                                 "Intel DG45FC", STAC_92HD73XX_INTEL),
1608         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0254,
1609                                 "Dell Studio 1535", STAC_DELL_M6_DMIC),
1610         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0255,
1611                                 "unknown Dell", STAC_DELL_M6_DMIC),
1612         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0256,
1613                                 "unknown Dell", STAC_DELL_M6_BOTH),
1614         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0257,
1615                                 "unknown Dell", STAC_DELL_M6_BOTH),
1616         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x025e,
1617                                 "unknown Dell", STAC_DELL_M6_AMIC),
1618         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x025f,
1619                                 "unknown Dell", STAC_DELL_M6_AMIC),
1620         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0271,
1621                                 "unknown Dell", STAC_DELL_M6_DMIC),
1622         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0272,
1623                                 "unknown Dell", STAC_DELL_M6_DMIC),
1624         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x029f,
1625                                 "Dell Studio 1537", STAC_DELL_M6_DMIC),
1626         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02a0,
1627                                 "Dell Studio 17", STAC_DELL_M6_DMIC),
1628         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02be,
1629                                 "Dell Studio 1555", STAC_DELL_M6_DMIC),
1630         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02bd,
1631                                 "Dell Studio 1557", STAC_DELL_M6_DMIC),
1632         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02fe,
1633                                 "Dell Studio XPS 1645", STAC_DELL_M6_BOTH),
1634         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0413,
1635                                 "Dell Studio 1558", STAC_DELL_M6_DMIC),
1636         {} /* terminator */
1637 };
1638
1639 static const struct snd_pci_quirk stac92hd73xx_codec_id_cfg_tbl[] = {
1640         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02a1,
1641                       "Alienware M17x", STAC_ALIENWARE_M17X),
1642         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x043a,
1643                       "Alienware M17x", STAC_ALIENWARE_M17X),
1644         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0490,
1645                       "Alienware M17x", STAC_ALIENWARE_M17X),
1646         {} /* terminator */
1647 };
1648
1649 static const unsigned int ref92hd83xxx_pin_configs[10] = {
1650         0x02214030, 0x02211010, 0x02a19020, 0x02170130,
1651         0x01014050, 0x01819040, 0x01014020, 0x90a3014e,
1652         0x01451160, 0x98560170,
1653 };
1654
1655 static const unsigned int dell_s14_pin_configs[10] = {
1656         0x0221403f, 0x0221101f, 0x02a19020, 0x90170110,
1657         0x40f000f0, 0x40f000f0, 0x40f000f0, 0x90a60160,
1658         0x40f000f0, 0x40f000f0,
1659 };
1660
1661 static const unsigned int dell_vostro_3500_pin_configs[10] = {
1662         0x02a11020, 0x0221101f, 0x400000f0, 0x90170110,
1663         0x400000f1, 0x400000f2, 0x400000f3, 0x90a60160,
1664         0x400000f4, 0x400000f5,
1665 };
1666
1667 static const unsigned int hp_dv7_4000_pin_configs[10] = {
1668         0x03a12050, 0x0321201f, 0x40f000f0, 0x90170110,
1669         0x40f000f0, 0x40f000f0, 0x90170110, 0xd5a30140,
1670         0x40f000f0, 0x40f000f0,
1671 };
1672
1673 static const unsigned int hp_cNB11_intquad_pin_configs[10] = {
1674         0x40f000f0, 0x0221101f, 0x02a11020, 0x92170110,
1675         0x40f000f0, 0x92170110, 0x40f000f0, 0xd5a30130,
1676         0x40f000f0, 0x40f000f0,
1677 };
1678
1679 static const unsigned int *stac92hd83xxx_brd_tbl[STAC_92HD83XXX_MODELS] = {
1680         [STAC_92HD83XXX_REF] = ref92hd83xxx_pin_configs,
1681         [STAC_92HD83XXX_PWR_REF] = ref92hd83xxx_pin_configs,
1682         [STAC_DELL_S14] = dell_s14_pin_configs,
1683         [STAC_DELL_VOSTRO_3500] = dell_vostro_3500_pin_configs,
1684         [STAC_92HD83XXX_HP_cNB11_INTQUAD] = hp_cNB11_intquad_pin_configs,
1685         [STAC_HP_DV7_4000] = hp_dv7_4000_pin_configs,
1686 };
1687
1688 static const char * const stac92hd83xxx_models[STAC_92HD83XXX_MODELS] = {
1689         [STAC_92HD83XXX_AUTO] = "auto",
1690         [STAC_92HD83XXX_REF] = "ref",
1691         [STAC_92HD83XXX_PWR_REF] = "mic-ref",
1692         [STAC_DELL_S14] = "dell-s14",
1693         [STAC_DELL_VOSTRO_3500] = "dell-vostro-3500",
1694         [STAC_92HD83XXX_HP] = "hp",
1695         [STAC_92HD83XXX_HP_cNB11_INTQUAD] = "hp_cNB11_intquad",
1696         [STAC_HP_DV7_4000] = "hp-dv7-4000",
1697 };
1698
1699 static const struct snd_pci_quirk stac92hd83xxx_cfg_tbl[] = {
1700         /* SigmaTel reference board */
1701         SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
1702                       "DFI LanParty", STAC_92HD83XXX_REF),
1703         SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
1704                       "DFI LanParty", STAC_92HD83XXX_REF),
1705         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02ba,
1706                       "unknown Dell", STAC_DELL_S14),
1707         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x1028,
1708                       "Dell Vostro 3500", STAC_DELL_VOSTRO_3500),
1709         SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xff00, 0x3600,
1710                           "HP", STAC_92HD83XXX_HP),
1711         SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1656,
1712                           "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
1713         SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1657,
1714                           "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
1715         SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1658,
1716                           "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
1717         SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x1659,
1718                           "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
1719         SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x165A,
1720                           "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
1721         SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x165B,
1722                           "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
1723         SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3388,
1724                           "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
1725         SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3389,
1726                           "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
1727         SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x355B,
1728                           "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
1729         SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x355C,
1730                           "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
1731         SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x355D,
1732                           "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
1733         SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x355E,
1734                           "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
1735         SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x355F,
1736                           "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
1737         SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3560,
1738                           "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
1739         SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x358B,
1740                           "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
1741         SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x358C,
1742                           "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
1743         SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x358D,
1744                           "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
1745         SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3591,
1746                           "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
1747         SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3592,
1748                           "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
1749         SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3593,
1750                           "HP", STAC_92HD83XXX_HP_cNB11_INTQUAD),
1751         {} /* terminator */
1752 };
1753
1754 static const unsigned int ref92hd71bxx_pin_configs[STAC92HD71BXX_NUM_PINS] = {
1755         0x02214030, 0x02a19040, 0x01a19020, 0x01014010,
1756         0x0181302e, 0x01014010, 0x01019020, 0x90a000f0,
1757         0x90a000f0, 0x01452050, 0x01452050, 0x00000000,
1758         0x00000000
1759 };
1760
1761 static const unsigned int dell_m4_1_pin_configs[STAC92HD71BXX_NUM_PINS] = {
1762         0x0421101f, 0x04a11221, 0x40f000f0, 0x90170110,
1763         0x23a1902e, 0x23014250, 0x40f000f0, 0x90a000f0,
1764         0x40f000f0, 0x4f0000f0, 0x4f0000f0, 0x00000000,
1765         0x00000000
1766 };
1767
1768 static const unsigned int dell_m4_2_pin_configs[STAC92HD71BXX_NUM_PINS] = {
1769         0x0421101f, 0x04a11221, 0x90a70330, 0x90170110,
1770         0x23a1902e, 0x23014250, 0x40f000f0, 0x40f000f0,
1771         0x40f000f0, 0x044413b0, 0x044413b0, 0x00000000,
1772         0x00000000
1773 };
1774
1775 static const unsigned int dell_m4_3_pin_configs[STAC92HD71BXX_NUM_PINS] = {
1776         0x0421101f, 0x04a11221, 0x90a70330, 0x90170110,
1777         0x40f000f0, 0x40f000f0, 0x40f000f0, 0x90a000f0,
1778         0x40f000f0, 0x044413b0, 0x044413b0, 0x00000000,
1779         0x00000000
1780 };
1781
1782 static const unsigned int *stac92hd71bxx_brd_tbl[STAC_92HD71BXX_MODELS] = {
1783         [STAC_92HD71BXX_REF] = ref92hd71bxx_pin_configs,
1784         [STAC_DELL_M4_1]        = dell_m4_1_pin_configs,
1785         [STAC_DELL_M4_2]        = dell_m4_2_pin_configs,
1786         [STAC_DELL_M4_3]        = dell_m4_3_pin_configs,
1787         [STAC_HP_M4]            = NULL,
1788         [STAC_HP_DV4]           = NULL,
1789         [STAC_HP_DV5]           = NULL,
1790         [STAC_HP_HDX]           = NULL,
1791         [STAC_HP_DV4_1222NR]    = NULL,
1792 };
1793
1794 static const char * const stac92hd71bxx_models[STAC_92HD71BXX_MODELS] = {
1795         [STAC_92HD71BXX_AUTO] = "auto",
1796         [STAC_92HD71BXX_REF] = "ref",
1797         [STAC_DELL_M4_1] = "dell-m4-1",
1798         [STAC_DELL_M4_2] = "dell-m4-2",
1799         [STAC_DELL_M4_3] = "dell-m4-3",
1800         [STAC_HP_M4] = "hp-m4",
1801         [STAC_HP_DV4] = "hp-dv4",
1802         [STAC_HP_DV5] = "hp-dv5",
1803         [STAC_HP_HDX] = "hp-hdx",
1804         [STAC_HP_DV4_1222NR] = "hp-dv4-1222nr",
1805 };
1806
1807 static const struct snd_pci_quirk stac92hd71bxx_cfg_tbl[] = {
1808         /* SigmaTel reference board */
1809         SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
1810                       "DFI LanParty", STAC_92HD71BXX_REF),
1811         SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
1812                       "DFI LanParty", STAC_92HD71BXX_REF),
1813         SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x30fb,
1814                       "HP dv4-1222nr", STAC_HP_DV4_1222NR),
1815         SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x1720,
1816                           "HP", STAC_HP_DV5),
1817         SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x3080,
1818                       "HP", STAC_HP_DV5),
1819         SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x30f0,
1820                       "HP dv4-7", STAC_HP_DV4),
1821         SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x3600,
1822                       "HP dv4-7", STAC_HP_DV5),
1823         SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3610,
1824                       "HP HDX", STAC_HP_HDX),  /* HDX18 */
1825         SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x361a,
1826                       "HP mini 1000", STAC_HP_M4),
1827         SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x361b,
1828                       "HP HDX", STAC_HP_HDX),  /* HDX16 */
1829         SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x3620,
1830                       "HP dv6", STAC_HP_DV5),
1831         SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x3061,
1832                       "HP dv6", STAC_HP_DV5), /* HP dv6-1110ax */
1833         SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x363e,
1834                       "HP DV6", STAC_HP_DV5),
1835         SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x7010,
1836                       "HP", STAC_HP_DV5),
1837         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0233,
1838                                 "unknown Dell", STAC_DELL_M4_1),
1839         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0234,
1840                                 "unknown Dell", STAC_DELL_M4_1),
1841         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0250,
1842                                 "unknown Dell", STAC_DELL_M4_1),
1843         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x024f,
1844                                 "unknown Dell", STAC_DELL_M4_1),
1845         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x024d,
1846                                 "unknown Dell", STAC_DELL_M4_1),
1847         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0251,
1848                                 "unknown Dell", STAC_DELL_M4_1),
1849         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0277,
1850                                 "unknown Dell", STAC_DELL_M4_1),
1851         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0263,
1852                                 "unknown Dell", STAC_DELL_M4_2),
1853         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0265,
1854                                 "unknown Dell", STAC_DELL_M4_2),
1855         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0262,
1856                                 "unknown Dell", STAC_DELL_M4_2),
1857         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0264,
1858                                 "unknown Dell", STAC_DELL_M4_2),
1859         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02aa,
1860                                 "unknown Dell", STAC_DELL_M4_3),
1861         {} /* terminator */
1862 };
1863
1864 static const unsigned int ref922x_pin_configs[10] = {
1865         0x01014010, 0x01016011, 0x01012012, 0x0221401f,
1866         0x01813122, 0x01011014, 0x01441030, 0x01c41030,
1867         0x40000100, 0x40000100,
1868 };
1869
1870 /*
1871     STAC 922X pin configs for
1872     102801A7
1873     102801AB
1874     102801A9
1875     102801D1
1876     102801D2
1877 */
1878 static const unsigned int dell_922x_d81_pin_configs[10] = {
1879         0x02214030, 0x01a19021, 0x01111012, 0x01114010,
1880         0x02a19020, 0x01117011, 0x400001f0, 0x400001f1,
1881         0x01813122, 0x400001f2,
1882 };
1883
1884 /*
1885     STAC 922X pin configs for
1886     102801AC
1887     102801D0
1888 */
1889 static const unsigned int dell_922x_d82_pin_configs[10] = {
1890         0x02214030, 0x01a19021, 0x01111012, 0x01114010,
1891         0x02a19020, 0x01117011, 0x01451140, 0x400001f0,
1892         0x01813122, 0x400001f1,
1893 };
1894
1895 /*
1896     STAC 922X pin configs for
1897     102801BF
1898 */
1899 static const unsigned int dell_922x_m81_pin_configs[10] = {
1900         0x0321101f, 0x01112024, 0x01111222, 0x91174220,
1901         0x03a11050, 0x01116221, 0x90a70330, 0x01452340, 
1902         0x40C003f1, 0x405003f0,
1903 };
1904
1905 /*
1906     STAC 9221 A1 pin configs for
1907     102801D7 (Dell XPS M1210)
1908 */
1909 static const unsigned int dell_922x_m82_pin_configs[10] = {
1910         0x02211211, 0x408103ff, 0x02a1123e, 0x90100310, 
1911         0x408003f1, 0x0221121f, 0x03451340, 0x40c003f2, 
1912         0x508003f3, 0x405003f4, 
1913 };
1914
1915 static const unsigned int d945gtp3_pin_configs[10] = {
1916         0x0221401f, 0x01a19022, 0x01813021, 0x01014010,
1917         0x40000100, 0x40000100, 0x40000100, 0x40000100,
1918         0x02a19120, 0x40000100,
1919 };
1920
1921 static const unsigned int d945gtp5_pin_configs[10] = {
1922         0x0221401f, 0x01011012, 0x01813024, 0x01014010,
1923         0x01a19021, 0x01016011, 0x01452130, 0x40000100,
1924         0x02a19320, 0x40000100,
1925 };
1926
1927 static const unsigned int intel_mac_v1_pin_configs[10] = {
1928         0x0121e21f, 0x400000ff, 0x9017e110, 0x400000fd,
1929         0x400000fe, 0x0181e020, 0x1145e030, 0x11c5e240,
1930         0x400000fc, 0x400000fb,
1931 };
1932
1933 static const unsigned int intel_mac_v2_pin_configs[10] = {
1934         0x0121e21f, 0x90a7012e, 0x9017e110, 0x400000fd,
1935         0x400000fe, 0x0181e020, 0x1145e230, 0x500000fa,
1936         0x400000fc, 0x400000fb,
1937 };
1938
1939 static const unsigned int intel_mac_v3_pin_configs[10] = {
1940         0x0121e21f, 0x90a7012e, 0x9017e110, 0x400000fd,
1941         0x400000fe, 0x0181e020, 0x1145e230, 0x11c5e240,
1942         0x400000fc, 0x400000fb,
1943 };
1944
1945 static const unsigned int intel_mac_v4_pin_configs[10] = {
1946         0x0321e21f, 0x03a1e02e, 0x9017e110, 0x9017e11f,
1947         0x400000fe, 0x0381e020, 0x1345e230, 0x13c5e240,
1948         0x400000fc, 0x400000fb,
1949 };
1950
1951 static const unsigned int intel_mac_v5_pin_configs[10] = {
1952         0x0321e21f, 0x03a1e02e, 0x9017e110, 0x9017e11f,
1953         0x400000fe, 0x0381e020, 0x1345e230, 0x13c5e240,
1954         0x400000fc, 0x400000fb,
1955 };
1956
1957 static const unsigned int ecs202_pin_configs[10] = {
1958         0x0221401f, 0x02a19020, 0x01a19020, 0x01114010,
1959         0x408000f0, 0x01813022, 0x074510a0, 0x40c400f1,
1960         0x9037012e, 0x40e000f2,
1961 };
1962
1963 static const unsigned int *stac922x_brd_tbl[STAC_922X_MODELS] = {
1964         [STAC_D945_REF] = ref922x_pin_configs,
1965         [STAC_D945GTP3] = d945gtp3_pin_configs,
1966         [STAC_D945GTP5] = d945gtp5_pin_configs,
1967         [STAC_INTEL_MAC_V1] = intel_mac_v1_pin_configs,
1968         [STAC_INTEL_MAC_V2] = intel_mac_v2_pin_configs,
1969         [STAC_INTEL_MAC_V3] = intel_mac_v3_pin_configs,
1970         [STAC_INTEL_MAC_V4] = intel_mac_v4_pin_configs,
1971         [STAC_INTEL_MAC_V5] = intel_mac_v5_pin_configs,
1972         [STAC_INTEL_MAC_AUTO] = intel_mac_v3_pin_configs,
1973         /* for backward compatibility */
1974         [STAC_MACMINI] = intel_mac_v3_pin_configs,
1975         [STAC_MACBOOK] = intel_mac_v5_pin_configs,
1976         [STAC_MACBOOK_PRO_V1] = intel_mac_v3_pin_configs,
1977         [STAC_MACBOOK_PRO_V2] = intel_mac_v3_pin_configs,
1978         [STAC_IMAC_INTEL] = intel_mac_v2_pin_configs,
1979         [STAC_IMAC_INTEL_20] = intel_mac_v3_pin_configs,
1980         [STAC_ECS_202] = ecs202_pin_configs,
1981         [STAC_922X_DELL_D81] = dell_922x_d81_pin_configs,
1982         [STAC_922X_DELL_D82] = dell_922x_d82_pin_configs,       
1983         [STAC_922X_DELL_M81] = dell_922x_m81_pin_configs,
1984         [STAC_922X_DELL_M82] = dell_922x_m82_pin_configs,       
1985 };
1986
1987 static const char * const stac922x_models[STAC_922X_MODELS] = {
1988         [STAC_922X_AUTO] = "auto",
1989         [STAC_D945_REF] = "ref",
1990         [STAC_D945GTP5] = "5stack",
1991         [STAC_D945GTP3] = "3stack",
1992         [STAC_INTEL_MAC_V1] = "intel-mac-v1",
1993         [STAC_INTEL_MAC_V2] = "intel-mac-v2",
1994         [STAC_INTEL_MAC_V3] = "intel-mac-v3",
1995         [STAC_INTEL_MAC_V4] = "intel-mac-v4",
1996         [STAC_INTEL_MAC_V5] = "intel-mac-v5",
1997         [STAC_INTEL_MAC_AUTO] = "intel-mac-auto",
1998         /* for backward compatibility */
1999         [STAC_MACMINI]  = "macmini",
2000         [STAC_MACBOOK]  = "macbook",
2001         [STAC_MACBOOK_PRO_V1]   = "macbook-pro-v1",
2002         [STAC_MACBOOK_PRO_V2]   = "macbook-pro",
2003         [STAC_IMAC_INTEL] = "imac-intel",
2004         [STAC_IMAC_INTEL_20] = "imac-intel-20",
2005         [STAC_ECS_202] = "ecs202",
2006         [STAC_922X_DELL_D81] = "dell-d81",
2007         [STAC_922X_DELL_D82] = "dell-d82",
2008         [STAC_922X_DELL_M81] = "dell-m81",
2009         [STAC_922X_DELL_M82] = "dell-m82",
2010 };
2011
2012 static const struct snd_pci_quirk stac922x_cfg_tbl[] = {
2013         /* SigmaTel reference board */
2014         SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
2015                       "DFI LanParty", STAC_D945_REF),
2016         SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
2017                       "DFI LanParty", STAC_D945_REF),
2018         /* Intel 945G based systems */
2019         SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0101,
2020                       "Intel D945G", STAC_D945GTP3),
2021         SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0202,
2022                       "Intel D945G", STAC_D945GTP3),
2023         SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0606,
2024                       "Intel D945G", STAC_D945GTP3),
2025         SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0601,
2026                       "Intel D945G", STAC_D945GTP3),
2027         SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0111,
2028                       "Intel D945G", STAC_D945GTP3),
2029         SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1115,
2030                       "Intel D945G", STAC_D945GTP3),
2031         SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1116,
2032                       "Intel D945G", STAC_D945GTP3),
2033         SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1117,
2034                       "Intel D945G", STAC_D945GTP3),
2035         SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1118,
2036                       "Intel D945G", STAC_D945GTP3),
2037         SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x1119,
2038                       "Intel D945G", STAC_D945GTP3),
2039         SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x8826,
2040                       "Intel D945G", STAC_D945GTP3),
2041         SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5049,
2042                       "Intel D945G", STAC_D945GTP3),
2043         SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5055,
2044                       "Intel D945G", STAC_D945GTP3),
2045         SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5048,
2046                       "Intel D945G", STAC_D945GTP3),
2047         SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0110,
2048                       "Intel D945G", STAC_D945GTP3),
2049         /* Intel D945G 5-stack systems */
2050         SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0404,
2051                       "Intel D945G", STAC_D945GTP5),
2052         SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0303,
2053                       "Intel D945G", STAC_D945GTP5),
2054         SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0013,
2055                       "Intel D945G", STAC_D945GTP5),
2056         SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0417,
2057                       "Intel D945G", STAC_D945GTP5),
2058         /* Intel 945P based systems */
2059         SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0b0b,
2060                       "Intel D945P", STAC_D945GTP3),
2061         SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0112,
2062                       "Intel D945P", STAC_D945GTP3),
2063         SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0d0d,
2064                       "Intel D945P", STAC_D945GTP3),
2065         SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0909,
2066                       "Intel D945P", STAC_D945GTP3),
2067         SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0505,
2068                       "Intel D945P", STAC_D945GTP3),
2069         SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0707,
2070                       "Intel D945P", STAC_D945GTP5),
2071         /* other intel */
2072         SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x0204,
2073                       "Intel D945", STAC_D945_REF),
2074         /* other systems  */
2075         /* Apple Intel Mac (Mac Mini, MacBook, MacBook Pro...) */
2076         SND_PCI_QUIRK(0x8384, 0x7680,
2077                       "Mac", STAC_INTEL_MAC_AUTO),
2078         /* Dell systems  */
2079         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a7,
2080                       "unknown Dell", STAC_922X_DELL_D81),
2081         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01a9,
2082                       "unknown Dell", STAC_922X_DELL_D81),
2083         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ab,
2084                       "unknown Dell", STAC_922X_DELL_D81),
2085         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ac,
2086                       "unknown Dell", STAC_922X_DELL_D82),
2087         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01bf,
2088                       "unknown Dell", STAC_922X_DELL_M81),
2089         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d0,
2090                       "unknown Dell", STAC_922X_DELL_D82),
2091         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d1,
2092                       "unknown Dell", STAC_922X_DELL_D81),
2093         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d2,
2094                       "unknown Dell", STAC_922X_DELL_D81),
2095         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01d7,
2096                       "Dell XPS M1210", STAC_922X_DELL_M82),
2097         /* ECS/PC Chips boards */
2098         SND_PCI_QUIRK_MASK(0x1019, 0xf000, 0x2000,
2099                       "ECS/PC chips", STAC_ECS_202),
2100         {} /* terminator */
2101 };
2102
2103 static const unsigned int ref927x_pin_configs[14] = {
2104         0x02214020, 0x02a19080, 0x0181304e, 0x01014010,
2105         0x01a19040, 0x01011012, 0x01016011, 0x0101201f, 
2106         0x183301f0, 0x18a001f0, 0x18a001f0, 0x01442070,
2107         0x01c42190, 0x40000100,
2108 };
2109
2110 static const unsigned int d965_3st_pin_configs[14] = {
2111         0x0221401f, 0x02a19120, 0x40000100, 0x01014011,
2112         0x01a19021, 0x01813024, 0x40000100, 0x40000100,
2113         0x40000100, 0x40000100, 0x40000100, 0x40000100,
2114         0x40000100, 0x40000100
2115 };
2116
2117 static const unsigned int d965_5st_pin_configs[14] = {
2118         0x02214020, 0x02a19080, 0x0181304e, 0x01014010,
2119         0x01a19040, 0x01011012, 0x01016011, 0x40000100,
2120         0x40000100, 0x40000100, 0x40000100, 0x01442070,
2121         0x40000100, 0x40000100
2122 };
2123
2124 static const unsigned int d965_5st_no_fp_pin_configs[14] = {
2125         0x40000100, 0x40000100, 0x0181304e, 0x01014010,
2126         0x01a19040, 0x01011012, 0x01016011, 0x40000100,
2127         0x40000100, 0x40000100, 0x40000100, 0x01442070,
2128         0x40000100, 0x40000100
2129 };
2130
2131 static const unsigned int dell_3st_pin_configs[14] = {
2132         0x02211230, 0x02a11220, 0x01a19040, 0x01114210,
2133         0x01111212, 0x01116211, 0x01813050, 0x01112214,
2134         0x403003fa, 0x90a60040, 0x90a60040, 0x404003fb,
2135         0x40c003fc, 0x40000100
2136 };
2137
2138 static const unsigned int *stac927x_brd_tbl[STAC_927X_MODELS] = {
2139         [STAC_D965_REF_NO_JD] = ref927x_pin_configs,
2140         [STAC_D965_REF]  = ref927x_pin_configs,
2141         [STAC_D965_3ST]  = d965_3st_pin_configs,
2142         [STAC_D965_5ST]  = d965_5st_pin_configs,
2143         [STAC_D965_5ST_NO_FP]  = d965_5st_no_fp_pin_configs,
2144         [STAC_DELL_3ST]  = dell_3st_pin_configs,
2145         [STAC_DELL_BIOS] = NULL,
2146         [STAC_927X_VOLKNOB] = NULL,
2147 };
2148
2149 static const char * const stac927x_models[STAC_927X_MODELS] = {
2150         [STAC_927X_AUTO]        = "auto",
2151         [STAC_D965_REF_NO_JD]   = "ref-no-jd",
2152         [STAC_D965_REF]         = "ref",
2153         [STAC_D965_3ST]         = "3stack",
2154         [STAC_D965_5ST]         = "5stack",
2155         [STAC_D965_5ST_NO_FP]   = "5stack-no-fp",
2156         [STAC_DELL_3ST]         = "dell-3stack",
2157         [STAC_DELL_BIOS]        = "dell-bios",
2158         [STAC_927X_VOLKNOB]     = "volknob",
2159 };
2160
2161 static const struct snd_pci_quirk stac927x_cfg_tbl[] = {
2162         /* SigmaTel reference board */
2163         SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
2164                       "DFI LanParty", STAC_D965_REF),
2165         SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
2166                       "DFI LanParty", STAC_D965_REF),
2167          /* Intel 946 based systems */
2168         SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x3d01, "Intel D946", STAC_D965_3ST),
2169         SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0xa301, "Intel D946", STAC_D965_3ST),
2170         /* 965 based 3 stack systems */
2171         SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2100,
2172                            "Intel D965", STAC_D965_3ST),
2173         SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2000,
2174                            "Intel D965", STAC_D965_3ST),
2175         /* Dell 3 stack systems */
2176         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL,  0x01dd, "Dell Dimension E520", STAC_DELL_3ST),
2177         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL,  0x01ed, "Dell     ", STAC_DELL_3ST),
2178         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL,  0x01f4, "Dell     ", STAC_DELL_3ST),
2179         /* Dell 3 stack systems with verb table in BIOS */
2180         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL,  0x01f3, "Dell Inspiron 1420", STAC_DELL_BIOS),
2181         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL,  0x01f7, "Dell XPS M1730", STAC_DELL_BIOS),
2182         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL,  0x0227, "Dell Vostro 1400  ", STAC_DELL_BIOS),
2183         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL,  0x022e, "Dell     ", STAC_DELL_BIOS),
2184         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL,  0x022f, "Dell Inspiron 1525", STAC_DELL_BIOS),
2185         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL,  0x0242, "Dell     ", STAC_DELL_BIOS),
2186         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL,  0x0243, "Dell     ", STAC_DELL_BIOS),
2187         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL,  0x02ff, "Dell     ", STAC_DELL_BIOS),
2188         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL,  0x0209, "Dell XPS 1330", STAC_DELL_BIOS),
2189         /* 965 based 5 stack systems */
2190         SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2300,
2191                            "Intel D965", STAC_D965_5ST),
2192         SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2500,
2193                            "Intel D965", STAC_D965_5ST),
2194         /* volume-knob fixes */
2195         SND_PCI_QUIRK_VENDOR(0x10cf, "FSC", STAC_927X_VOLKNOB),
2196         {} /* terminator */
2197 };
2198
2199 static const unsigned int ref9205_pin_configs[12] = {
2200         0x40000100, 0x40000100, 0x01016011, 0x01014010,
2201         0x01813122, 0x01a19021, 0x01019020, 0x40000100,
2202         0x90a000f0, 0x90a000f0, 0x01441030, 0x01c41030
2203 };
2204
2205 /*
2206     STAC 9205 pin configs for
2207     102801F1
2208     102801F2
2209     102801FC
2210     102801FD
2211     10280204
2212     1028021F
2213     10280228 (Dell Vostro 1500)
2214     10280229 (Dell Vostro 1700)
2215 */
2216 static const unsigned int dell_9205_m42_pin_configs[12] = {
2217         0x0321101F, 0x03A11020, 0x400003FA, 0x90170310,
2218         0x400003FB, 0x400003FC, 0x400003FD, 0x40F000F9,
2219         0x90A60330, 0x400003FF, 0x0144131F, 0x40C003FE,
2220 };
2221
2222 /*
2223     STAC 9205 pin configs for
2224     102801F9
2225     102801FA
2226     102801FE
2227     102801FF (Dell Precision M4300)
2228     10280206
2229     10280200
2230     10280201
2231 */
2232 static const unsigned int dell_9205_m43_pin_configs[12] = {
2233         0x0321101f, 0x03a11020, 0x90a70330, 0x90170310,
2234         0x400000fe, 0x400000ff, 0x400000fd, 0x40f000f9,
2235         0x400000fa, 0x400000fc, 0x0144131f, 0x40c003f8,
2236 };
2237
2238 static const unsigned int dell_9205_m44_pin_configs[12] = {
2239         0x0421101f, 0x04a11020, 0x400003fa, 0x90170310,
2240         0x400003fb, 0x400003fc, 0x400003fd, 0x400003f9,
2241         0x90a60330, 0x400003ff, 0x01441340, 0x40c003fe,
2242 };
2243
2244 static const unsigned int *stac9205_brd_tbl[STAC_9205_MODELS] = {
2245         [STAC_9205_REF] = ref9205_pin_configs,
2246         [STAC_9205_DELL_M42] = dell_9205_m42_pin_configs,
2247         [STAC_9205_DELL_M43] = dell_9205_m43_pin_configs,
2248         [STAC_9205_DELL_M44] = dell_9205_m44_pin_configs,
2249         [STAC_9205_EAPD] = NULL,
2250 };
2251
2252 static const char * const stac9205_models[STAC_9205_MODELS] = {
2253         [STAC_9205_AUTO] = "auto",
2254         [STAC_9205_REF] = "ref",
2255         [STAC_9205_DELL_M42] = "dell-m42",
2256         [STAC_9205_DELL_M43] = "dell-m43",
2257         [STAC_9205_DELL_M44] = "dell-m44",
2258         [STAC_9205_EAPD] = "eapd",
2259 };
2260
2261 static const struct snd_pci_quirk stac9205_cfg_tbl[] = {
2262         /* SigmaTel reference board */
2263         SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x2668,
2264                       "DFI LanParty", STAC_9205_REF),
2265         SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0xfb30,
2266                       "SigmaTel", STAC_9205_REF),
2267         SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
2268                       "DFI LanParty", STAC_9205_REF),
2269         /* Dell */
2270         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f1,
2271                       "unknown Dell", STAC_9205_DELL_M42),
2272         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f2,
2273                       "unknown Dell", STAC_9205_DELL_M42),
2274         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f8,
2275                       "Dell Precision", STAC_9205_DELL_M43),
2276         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01f9,
2277                       "Dell Precision", STAC_9205_DELL_M43),
2278         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fa,
2279                       "Dell Precision", STAC_9205_DELL_M43),
2280         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fc,
2281                       "unknown Dell", STAC_9205_DELL_M42),
2282         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fd,
2283                       "unknown Dell", STAC_9205_DELL_M42),
2284         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01fe,
2285                       "Dell Precision", STAC_9205_DELL_M43),
2286         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x01ff,
2287                       "Dell Precision M4300", STAC_9205_DELL_M43),
2288         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0204,
2289                       "unknown Dell", STAC_9205_DELL_M42),
2290         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0206,
2291                       "Dell Precision", STAC_9205_DELL_M43),
2292         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021b,
2293                       "Dell Precision", STAC_9205_DELL_M43),
2294         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021c,
2295                       "Dell Precision", STAC_9205_DELL_M43),
2296         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x021f,
2297                       "Dell Inspiron", STAC_9205_DELL_M44),
2298         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0228,
2299                       "Dell Vostro 1500", STAC_9205_DELL_M42),
2300         SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0229,
2301                       "Dell Vostro 1700", STAC_9205_DELL_M42),
2302         /* Gateway */
2303         SND_PCI_QUIRK(0x107b, 0x0560, "Gateway T6834c", STAC_9205_EAPD),
2304         SND_PCI_QUIRK(0x107b, 0x0565, "Gateway T1616", STAC_9205_EAPD),
2305         {} /* terminator */
2306 };
2307
2308 static void stac92xx_set_config_regs(struct hda_codec *codec,
2309                                      const unsigned int *pincfgs)
2310 {
2311         int i;
2312         struct sigmatel_spec *spec = codec->spec;
2313
2314         if (!pincfgs)
2315                 return;
2316
2317         for (i = 0; i < spec->num_pins; i++)
2318                 if (spec->pin_nids[i] && pincfgs[i])
2319                         snd_hda_codec_set_pincfg(codec, spec->pin_nids[i],
2320                                                  pincfgs[i]);
2321 }
2322
2323 /*
2324  * Analog playback callbacks
2325  */
2326 static int stac92xx_playback_pcm_open(struct hda_pcm_stream *hinfo,
2327                                       struct hda_codec *codec,
2328                                       struct snd_pcm_substream *substream)
2329 {
2330         struct sigmatel_spec *spec = codec->spec;
2331         if (spec->stream_delay)
2332                 msleep(spec->stream_delay);
2333         return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
2334                                              hinfo);
2335 }
2336
2337 static int stac92xx_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2338                                          struct hda_codec *codec,
2339                                          unsigned int stream_tag,
2340                                          unsigned int format,
2341                                          struct snd_pcm_substream *substream)
2342 {
2343         struct sigmatel_spec *spec = codec->spec;
2344         return snd_hda_multi_out_analog_prepare(codec, &spec->multiout, stream_tag, format, substream);
2345 }
2346
2347 static int stac92xx_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2348                                         struct hda_codec *codec,
2349                                         struct snd_pcm_substream *substream)
2350 {
2351         struct sigmatel_spec *spec = codec->spec;
2352         return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
2353 }
2354
2355 /*
2356  * Digital playback callbacks
2357  */
2358 static int stac92xx_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
2359                                           struct hda_codec *codec,
2360                                           struct snd_pcm_substream *substream)
2361 {
2362         struct sigmatel_spec *spec = codec->spec;
2363         return snd_hda_multi_out_dig_open(codec, &spec->multiout);
2364 }
2365
2366 static int stac92xx_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
2367                                            struct hda_codec *codec,
2368                                            struct snd_pcm_substream *substream)
2369 {
2370         struct sigmatel_spec *spec = codec->spec;
2371         return snd_hda_multi_out_dig_close(codec, &spec->multiout);
2372 }
2373
2374 static int stac92xx_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2375                                          struct hda_codec *codec,
2376                                          unsigned int stream_tag,
2377                                          unsigned int format,
2378                                          struct snd_pcm_substream *substream)
2379 {
2380         struct sigmatel_spec *spec = codec->spec;
2381         return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
2382                                              stream_tag, format, substream);
2383 }
2384
2385 static int stac92xx_dig_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2386                                         struct hda_codec *codec,
2387                                         struct snd_pcm_substream *substream)
2388 {
2389         struct sigmatel_spec *spec = codec->spec;
2390         return snd_hda_multi_out_dig_cleanup(codec, &spec->multiout);
2391 }
2392
2393
2394 /*
2395  * Analog capture callbacks
2396  */
2397 static int stac92xx_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
2398                                         struct hda_codec *codec,
2399                                         unsigned int stream_tag,
2400                                         unsigned int format,
2401                                         struct snd_pcm_substream *substream)
2402 {
2403         struct sigmatel_spec *spec = codec->spec;
2404         hda_nid_t nid = spec->adc_nids[substream->number];
2405
2406         if (spec->powerdown_adcs) {
2407                 msleep(40);
2408                 snd_hda_codec_write(codec, nid, 0,
2409                         AC_VERB_SET_POWER_STATE, AC_PWRST_D0);
2410         }
2411         snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format);
2412         return 0;
2413 }
2414
2415 static int stac92xx_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
2416                                         struct hda_codec *codec,
2417                                         struct snd_pcm_substream *substream)
2418 {
2419         struct sigmatel_spec *spec = codec->spec;
2420         hda_nid_t nid = spec->adc_nids[substream->number];
2421
2422         snd_hda_codec_cleanup_stream(codec, nid);
2423         if (spec->powerdown_adcs)
2424                 snd_hda_codec_write(codec, nid, 0,
2425                         AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
2426         return 0;
2427 }
2428
2429 static const struct hda_pcm_stream stac92xx_pcm_digital_playback = {
2430         .substreams = 1,
2431         .channels_min = 2,
2432         .channels_max = 2,
2433         /* NID is set in stac92xx_build_pcms */
2434         .ops = {
2435                 .open = stac92xx_dig_playback_pcm_open,
2436                 .close = stac92xx_dig_playback_pcm_close,
2437                 .prepare = stac92xx_dig_playback_pcm_prepare,
2438                 .cleanup = stac92xx_dig_playback_pcm_cleanup
2439         },
2440 };
2441
2442 static const struct hda_pcm_stream stac92xx_pcm_digital_capture = {
2443         .substreams = 1,
2444         .channels_min = 2,
2445         .channels_max = 2,
2446         /* NID is set in stac92xx_build_pcms */
2447 };
2448
2449 static const struct hda_pcm_stream stac92xx_pcm_analog_playback = {
2450         .substreams = 1,
2451         .channels_min = 2,
2452         .channels_max = 8,
2453         .nid = 0x02, /* NID to query formats and rates */
2454         .ops = {
2455                 .open = stac92xx_playback_pcm_open,
2456                 .prepare = stac92xx_playback_pcm_prepare,
2457                 .cleanup = stac92xx_playback_pcm_cleanup
2458         },
2459 };
2460
2461 static const struct hda_pcm_stream stac92xx_pcm_analog_alt_playback = {
2462         .substreams = 1,
2463         .channels_min = 2,
2464         .channels_max = 2,
2465         .nid = 0x06, /* NID to query formats and rates */
2466         .ops = {
2467                 .open = stac92xx_playback_pcm_open,
2468                 .prepare = stac92xx_playback_pcm_prepare,
2469                 .cleanup = stac92xx_playback_pcm_cleanup
2470         },
2471 };
2472
2473 static const struct hda_pcm_stream stac92xx_pcm_analog_capture = {
2474         .channels_min = 2,
2475         .channels_max = 2,
2476         /* NID + .substreams is set in stac92xx_build_pcms */
2477         .ops = {
2478                 .prepare = stac92xx_capture_pcm_prepare,
2479                 .cleanup = stac92xx_capture_pcm_cleanup
2480         },
2481 };
2482
2483 static int stac92xx_build_pcms(struct hda_codec *codec)
2484 {
2485         struct sigmatel_spec *spec = codec->spec;
2486         struct hda_pcm *info = spec->pcm_rec;
2487
2488         codec->num_pcms = 1;
2489         codec->pcm_info = info;
2490
2491         info->name = "STAC92xx Analog";
2492         info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_analog_playback;
2493         info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
2494                 spec->multiout.dac_nids[0];
2495         info->stream[SNDRV_PCM_STREAM_CAPTURE] = stac92xx_pcm_analog_capture;
2496         info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
2497         info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams = spec->num_adcs;
2498
2499         if (spec->alt_switch) {
2500                 codec->num_pcms++;
2501                 info++;
2502                 info->name = "STAC92xx Analog Alt";
2503                 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_analog_alt_playback;
2504         }
2505
2506         if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
2507                 codec->num_pcms++;
2508                 info++;
2509                 info->name = "STAC92xx Digital";
2510                 info->pcm_type = spec->autocfg.dig_out_type[0];
2511                 if (spec->multiout.dig_out_nid) {
2512                         info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_digital_playback;
2513                         info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
2514                 }
2515                 if (spec->dig_in_nid) {
2516                         info->stream[SNDRV_PCM_STREAM_CAPTURE] = stac92xx_pcm_digital_capture;
2517                         info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
2518                 }
2519         }
2520
2521         return 0;
2522 }
2523
2524 static unsigned int stac92xx_get_default_vref(struct hda_codec *codec,
2525                                         hda_nid_t nid)
2526 {
2527         unsigned int pincap = snd_hda_query_pin_caps(codec, nid);
2528         pincap = (pincap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
2529         if (pincap & AC_PINCAP_VREF_100)
2530                 return AC_PINCTL_VREF_100;
2531         if (pincap & AC_PINCAP_VREF_80)
2532                 return AC_PINCTL_VREF_80;
2533         if (pincap & AC_PINCAP_VREF_50)
2534                 return AC_PINCTL_VREF_50;
2535         if (pincap & AC_PINCAP_VREF_GRD)
2536                 return AC_PINCTL_VREF_GRD;
2537         return 0;
2538 }
2539
2540 static void stac92xx_auto_set_pinctl(struct hda_codec *codec, hda_nid_t nid, int pin_type)
2541
2542 {
2543         snd_hda_codec_write_cache(codec, nid, 0,
2544                                   AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
2545 }
2546
2547 #define stac92xx_hp_switch_info         snd_ctl_boolean_mono_info
2548
2549 static int stac92xx_hp_switch_get(struct snd_kcontrol *kcontrol,
2550                         struct snd_ctl_elem_value *ucontrol)
2551 {
2552         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2553         struct sigmatel_spec *spec = codec->spec;
2554
2555         ucontrol->value.integer.value[0] = !!spec->hp_switch;
2556         return 0;
2557 }
2558
2559 static void stac_issue_unsol_event(struct hda_codec *codec, hda_nid_t nid);
2560
2561 static int stac92xx_hp_switch_put(struct snd_kcontrol *kcontrol,
2562                         struct snd_ctl_elem_value *ucontrol)
2563 {
2564         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2565         struct sigmatel_spec *spec = codec->spec;
2566         int nid = kcontrol->private_value;
2567  
2568         spec->hp_switch = ucontrol->value.integer.value[0] ? nid : 0;
2569
2570         /* check to be sure that the ports are up to date with
2571          * switch changes
2572          */
2573         stac_issue_unsol_event(codec, nid);
2574
2575         return 1;
2576 }
2577
2578 static int stac92xx_dc_bias_info(struct snd_kcontrol *kcontrol,
2579                                 struct snd_ctl_elem_info *uinfo)
2580 {
2581         int i;
2582         static const char * const texts[] = {
2583                 "Mic In", "Line In", "Line Out"
2584         };
2585
2586         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2587         struct sigmatel_spec *spec = codec->spec;
2588         hda_nid_t nid = kcontrol->private_value;
2589
2590         if (nid == spec->mic_switch || nid == spec->line_switch)
2591                 i = 3;
2592         else
2593                 i = 2;
2594
2595         uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2596         uinfo->value.enumerated.items = i;
2597         uinfo->count = 1;
2598         if (uinfo->value.enumerated.item >= i)
2599                 uinfo->value.enumerated.item = i-1;
2600         strcpy(uinfo->value.enumerated.name,
2601                 texts[uinfo->value.enumerated.item]);
2602
2603         return 0;
2604 }
2605
2606 static int stac92xx_dc_bias_get(struct snd_kcontrol *kcontrol,
2607                                 struct snd_ctl_elem_value *ucontrol)
2608 {
2609         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2610         hda_nid_t nid = kcontrol->private_value;
2611         unsigned int vref = stac92xx_vref_get(codec, nid);
2612
2613         if (vref == stac92xx_get_default_vref(codec, nid))
2614                 ucontrol->value.enumerated.item[0] = 0;
2615         else if (vref == AC_PINCTL_VREF_GRD)
2616                 ucontrol->value.enumerated.item[0] = 1;
2617         else if (vref == AC_PINCTL_VREF_HIZ)
2618                 ucontrol->value.enumerated.item[0] = 2;
2619
2620         return 0;
2621 }
2622
2623 static int stac92xx_dc_bias_put(struct snd_kcontrol *kcontrol,
2624                                 struct snd_ctl_elem_value *ucontrol)
2625 {
2626         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2627         unsigned int new_vref = 0;
2628         int error;
2629         hda_nid_t nid = kcontrol->private_value;
2630
2631         if (ucontrol->value.enumerated.item[0] == 0)
2632                 new_vref = stac92xx_get_default_vref(codec, nid);
2633         else if (ucontrol->value.enumerated.item[0] == 1)
2634                 new_vref = AC_PINCTL_VREF_GRD;
2635         else if (ucontrol->value.enumerated.item[0] == 2)
2636                 new_vref = AC_PINCTL_VREF_HIZ;
2637         else
2638                 return 0;
2639
2640         if (new_vref != stac92xx_vref_get(codec, nid)) {
2641                 error = stac92xx_vref_set(codec, nid, new_vref);
2642                 return error;
2643         }
2644
2645         return 0;
2646 }
2647
2648 static int stac92xx_io_switch_info(struct snd_kcontrol *kcontrol,
2649                                 struct snd_ctl_elem_info *uinfo)
2650 {
2651         char *texts[2];
2652         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2653         struct sigmatel_spec *spec = codec->spec;
2654
2655         if (kcontrol->private_value == spec->line_switch)
2656                 texts[0] = "Line In";
2657         else
2658                 texts[0] = "Mic In";
2659         texts[1] = "Line Out";
2660         uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2661         uinfo->value.enumerated.items = 2;
2662         uinfo->count = 1;
2663
2664         if (uinfo->value.enumerated.item >= 2)
2665                 uinfo->value.enumerated.item = 1;
2666         strcpy(uinfo->value.enumerated.name,
2667                 texts[uinfo->value.enumerated.item]);
2668
2669         return 0;
2670 }
2671
2672 static int stac92xx_io_switch_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2673 {
2674         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2675         struct sigmatel_spec *spec = codec->spec;
2676         hda_nid_t nid = kcontrol->private_value;
2677         int io_idx = (nid == spec->mic_switch) ? 1 : 0;
2678
2679         ucontrol->value.enumerated.item[0] = spec->io_switch[io_idx];
2680         return 0;
2681 }
2682
2683 static int stac92xx_io_switch_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
2684 {
2685         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2686         struct sigmatel_spec *spec = codec->spec;
2687         hda_nid_t nid = kcontrol->private_value;
2688         int io_idx = (nid == spec->mic_switch) ? 1 : 0;
2689         unsigned short val = !!ucontrol->value.enumerated.item[0];
2690
2691         spec->io_switch[io_idx] = val;
2692
2693         if (val)
2694                 stac92xx_auto_set_pinctl(codec, nid, AC_PINCTL_OUT_EN);
2695         else {
2696                 unsigned int pinctl = AC_PINCTL_IN_EN;
2697                 if (io_idx) /* set VREF for mic */
2698                         pinctl |= stac92xx_get_default_vref(codec, nid);
2699                 stac92xx_auto_set_pinctl(codec, nid, pinctl);
2700         }
2701
2702         /* check the auto-mute again: we need to mute/unmute the speaker
2703          * appropriately according to the pin direction
2704          */
2705         if (spec->hp_detect)
2706                 stac_issue_unsol_event(codec, nid);
2707
2708         return 1;
2709 }
2710
2711 #define stac92xx_clfe_switch_info snd_ctl_boolean_mono_info
2712
2713 static int stac92xx_clfe_switch_get(struct snd_kcontrol *kcontrol,
2714                 struct snd_ctl_elem_value *ucontrol)
2715 {
2716         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2717         struct sigmatel_spec *spec = codec->spec;
2718
2719         ucontrol->value.integer.value[0] = spec->clfe_swap;
2720         return 0;
2721 }
2722
2723 static int stac92xx_clfe_switch_put(struct snd_kcontrol *kcontrol,
2724                 struct snd_ctl_elem_value *ucontrol)
2725 {
2726         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2727         struct sigmatel_spec *spec = codec->spec;
2728         hda_nid_t nid = kcontrol->private_value & 0xff;
2729         unsigned int val = !!ucontrol->value.integer.value[0];
2730
2731         if (spec->clfe_swap == val)
2732                 return 0;
2733
2734         spec->clfe_swap = val;
2735
2736         snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
2737                 spec->clfe_swap ? 0x4 : 0x0);
2738
2739         return 1;
2740 }
2741
2742 #define STAC_CODEC_HP_SWITCH(xname) \
2743         { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2744           .name = xname, \
2745           .index = 0, \
2746           .info = stac92xx_hp_switch_info, \
2747           .get = stac92xx_hp_switch_get, \
2748           .put = stac92xx_hp_switch_put, \
2749         }
2750
2751 #define STAC_CODEC_IO_SWITCH(xname, xpval) \
2752         { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2753           .name = xname, \
2754           .index = 0, \
2755           .info = stac92xx_io_switch_info, \
2756           .get = stac92xx_io_switch_get, \
2757           .put = stac92xx_io_switch_put, \
2758           .private_value = xpval, \
2759         }
2760
2761 #define STAC_CODEC_CLFE_SWITCH(xname, xpval) \
2762         { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2763           .name = xname, \
2764           .index = 0, \
2765           .info = stac92xx_clfe_switch_info, \
2766           .get = stac92xx_clfe_switch_get, \
2767           .put = stac92xx_clfe_switch_put, \
2768           .private_value = xpval, \
2769         }
2770
2771 enum {
2772         STAC_CTL_WIDGET_VOL,
2773         STAC_CTL_WIDGET_MUTE,
2774         STAC_CTL_WIDGET_MUTE_BEEP,
2775         STAC_CTL_WIDGET_MONO_MUX,
2776         STAC_CTL_WIDGET_HP_SWITCH,
2777         STAC_CTL_WIDGET_IO_SWITCH,
2778         STAC_CTL_WIDGET_CLFE_SWITCH,
2779         STAC_CTL_WIDGET_DC_BIAS
2780 };
2781
2782 static const struct snd_kcontrol_new stac92xx_control_templates[] = {
2783         HDA_CODEC_VOLUME(NULL, 0, 0, 0),
2784         HDA_CODEC_MUTE(NULL, 0, 0, 0),
2785         HDA_CODEC_MUTE_BEEP(NULL, 0, 0, 0),
2786         STAC_MONO_MUX,
2787         STAC_CODEC_HP_SWITCH(NULL),
2788         STAC_CODEC_IO_SWITCH(NULL, 0),
2789         STAC_CODEC_CLFE_SWITCH(NULL, 0),
2790         DC_BIAS(NULL, 0, 0),
2791 };
2792
2793 /* add dynamic controls */
2794 static struct snd_kcontrol_new *
2795 stac_control_new(struct sigmatel_spec *spec,
2796                  const struct snd_kcontrol_new *ktemp,
2797                  const char *name,
2798                  unsigned int subdev)
2799 {
2800         struct snd_kcontrol_new *knew;
2801
2802         snd_array_init(&spec->kctls, sizeof(*knew), 32);
2803         knew = snd_array_new(&spec->kctls);
2804         if (!knew)
2805                 return NULL;
2806         *knew = *ktemp;
2807         knew->name = kstrdup(name, GFP_KERNEL);
2808         if (!knew->name) {
2809                 /* roolback */
2810                 memset(knew, 0, sizeof(*knew));
2811                 spec->kctls.alloced--;
2812                 return NULL;
2813         }
2814         knew->subdevice = subdev;
2815         return knew;
2816 }
2817
2818 static int stac92xx_add_control_temp(struct sigmatel_spec *spec,
2819                                      const struct snd_kcontrol_new *ktemp,
2820                                      int idx, const char *name,
2821                                      unsigned long val)
2822 {
2823         struct snd_kcontrol_new *knew = stac_control_new(spec, ktemp, name,
2824                                                          HDA_SUBDEV_AMP_FLAG);
2825         if (!knew)
2826                 return -ENOMEM;
2827         knew->index = idx;
2828         knew->private_value = val;
2829         return 0;
2830 }
2831
2832 static inline int stac92xx_add_control_idx(struct sigmatel_spec *spec,
2833                                            int type, int idx, const char *name,
2834                                            unsigned long val)
2835 {
2836         return stac92xx_add_control_temp(spec,
2837                                          &stac92xx_control_templates[type],
2838                                          idx, name, val);
2839 }
2840
2841
2842 /* add dynamic controls */
2843 static inline int stac92xx_add_control(struct sigmatel_spec *spec, int type,
2844                                        const char *name, unsigned long val)
2845 {
2846         return stac92xx_add_control_idx(spec, type, 0, name, val);
2847 }
2848
2849 static const struct snd_kcontrol_new stac_input_src_temp = {
2850         .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2851         .name = "Input Source",
2852         .info = stac92xx_mux_enum_info,
2853         .get = stac92xx_mux_enum_get,
2854         .put = stac92xx_mux_enum_put,
2855 };
2856
2857 static inline int stac92xx_add_jack_mode_control(struct hda_codec *codec,
2858                                                 hda_nid_t nid, int idx)
2859 {
2860         int def_conf = snd_hda_codec_get_pincfg(codec, nid);
2861         int control = 0;
2862         struct sigmatel_spec *spec = codec->spec;
2863         char name[22];
2864
2865         if (snd_hda_get_input_pin_attr(def_conf) != INPUT_PIN_ATTR_INT) {
2866                 if (stac92xx_get_default_vref(codec, nid) == AC_PINCTL_VREF_GRD
2867                         && nid == spec->line_switch)
2868                         control = STAC_CTL_WIDGET_IO_SWITCH;
2869                 else if (snd_hda_query_pin_caps(codec, nid)
2870                         & (AC_PINCAP_VREF_GRD << AC_PINCAP_VREF_SHIFT))
2871                         control = STAC_CTL_WIDGET_DC_BIAS;
2872                 else if (nid == spec->mic_switch)
2873                         control = STAC_CTL_WIDGET_IO_SWITCH;
2874         }
2875
2876         if (control) {
2877                 strcpy(name, hda_get_input_pin_label(codec, nid, 1));
2878                 return stac92xx_add_control(codec->spec, control,
2879                                         strcat(name, " Jack Mode"), nid);
2880         }
2881
2882         return 0;
2883 }
2884
2885 static int stac92xx_add_input_source(struct sigmatel_spec *spec)
2886 {
2887         struct snd_kcontrol_new *knew;
2888         struct hda_input_mux *imux = &spec->private_imux;
2889
2890         if (spec->auto_mic)
2891                 return 0; /* no need for input source */
2892         if (!spec->num_adcs || imux->num_items <= 1)
2893                 return 0; /* no need for input source control */
2894         knew = stac_control_new(spec, &stac_input_src_temp,
2895                                 stac_input_src_temp.name, 0);
2896         if (!knew)
2897                 return -ENOMEM;
2898         knew->count = spec->num_adcs;
2899         return 0;
2900 }
2901
2902 /* check whether the line-input can be used as line-out */
2903 static hda_nid_t check_line_out_switch(struct hda_codec *codec)
2904 {
2905         struct sigmatel_spec *spec = codec->spec;
2906         struct auto_pin_cfg *cfg = &spec->autocfg;
2907         hda_nid_t nid;
2908         unsigned int pincap;
2909         int i;
2910
2911         if (cfg->line_out_type != AUTO_PIN_LINE_OUT)
2912                 return 0;
2913         for (i = 0; i < cfg->num_inputs; i++) {
2914                 if (cfg->inputs[i].type == AUTO_PIN_LINE_IN) {
2915                         nid = cfg->inputs[i].pin;
2916                         pincap = snd_hda_query_pin_caps(codec, nid);
2917                         if (pincap & AC_PINCAP_OUT)
2918                                 return nid;
2919                 }
2920         }
2921         return 0;
2922 }
2923
2924 static hda_nid_t get_unassigned_dac(struct hda_codec *codec, hda_nid_t nid);
2925
2926 /* check whether the mic-input can be used as line-out */
2927 static hda_nid_t check_mic_out_switch(struct hda_codec *codec, hda_nid_t *dac)
2928 {
2929         struct sigmatel_spec *spec = codec->spec;
2930         struct auto_pin_cfg *cfg = &spec->autocfg;
2931         unsigned int def_conf, pincap;
2932         int i;
2933
2934         *dac = 0;
2935         if (cfg->line_out_type != AUTO_PIN_LINE_OUT)
2936                 return 0;
2937         for (i = 0; i < cfg->num_inputs; i++) {
2938                 hda_nid_t nid = cfg->inputs[i].pin;
2939                 if (cfg->inputs[i].type != AUTO_PIN_MIC)
2940                         continue;
2941                 def_conf = snd_hda_codec_get_pincfg(codec, nid);
2942                 /* some laptops have an internal analog microphone
2943                  * which can't be used as a output */
2944                 if (snd_hda_get_input_pin_attr(def_conf) != INPUT_PIN_ATTR_INT) {
2945                         pincap = snd_hda_query_pin_caps(codec, nid);
2946                         if (pincap & AC_PINCAP_OUT) {
2947                                 *dac = get_unassigned_dac(codec, nid);
2948                                 if (*dac)
2949                                         return nid;
2950                         }
2951                 }
2952         }
2953         return 0;
2954 }
2955
2956 static int is_in_dac_nids(struct sigmatel_spec *spec, hda_nid_t nid)
2957 {
2958         int i;
2959         
2960         for (i = 0; i < spec->multiout.num_dacs; i++) {
2961                 if (spec->multiout.dac_nids[i] == nid)
2962                         return 1;
2963         }
2964
2965         return 0;
2966 }
2967
2968 static int check_all_dac_nids(struct sigmatel_spec *spec, hda_nid_t nid)
2969 {
2970         int i;
2971         if (is_in_dac_nids(spec, nid))
2972                 return 1;
2973         for (i = 0; i < spec->autocfg.hp_outs; i++)
2974                 if (spec->hp_dacs[i] == nid)
2975                         return 1;
2976         for (i = 0; i < spec->autocfg.speaker_outs; i++)
2977                 if (spec->speaker_dacs[i] == nid)
2978                         return 1;
2979         return 0;
2980 }
2981
2982 static hda_nid_t get_unassigned_dac(struct hda_codec *codec, hda_nid_t nid)
2983 {
2984         struct sigmatel_spec *spec = codec->spec;
2985         struct auto_pin_cfg *cfg = &spec->autocfg;
2986         int j, conn_len;
2987         hda_nid_t conn[HDA_MAX_CONNECTIONS], fallback_dac;
2988         unsigned int wcaps, wtype;
2989
2990         conn_len = snd_hda_get_connections(codec, nid, conn,
2991                                            HDA_MAX_CONNECTIONS);
2992         /* 92HD88: trace back up the link of nids to find the DAC */
2993         while (conn_len == 1 && (get_wcaps_type(get_wcaps(codec, conn[0]))
2994                                         != AC_WID_AUD_OUT)) {
2995                 nid = conn[0];
2996                 conn_len = snd_hda_get_connections(codec, nid, conn,
2997                         HDA_MAX_CONNECTIONS);
2998         }
2999         for (j = 0; j < conn_len; j++) {
3000                 wcaps = get_wcaps(codec, conn[j]);
3001                 wtype = get_wcaps_type(wcaps);
3002                 /* we check only analog outputs */
3003                 if (wtype != AC_WID_AUD_OUT || (wcaps & AC_WCAP_DIGITAL))
3004                         continue;
3005                 /* if this route has a free DAC, assign it */
3006                 if (!check_all_dac_nids(spec, conn[j])) {
3007                         if (conn_len > 1) {
3008                                 /* select this DAC in the pin's input mux */
3009                                 snd_hda_codec_write_cache(codec, nid, 0,
3010                                                   AC_VERB_SET_CONNECT_SEL, j);
3011                         }
3012                         return conn[j];
3013                 }
3014         }
3015
3016         /* if all DACs are already assigned, connect to the primary DAC,
3017            unless we're assigning a secondary headphone */
3018         fallback_dac = spec->multiout.dac_nids[0];
3019         if (spec->multiout.hp_nid) {
3020                 for (j = 0; j < cfg->hp_outs; j++)
3021                         if (cfg->hp_pins[j] == nid) {
3022                                 fallback_dac = spec->multiout.hp_nid;
3023                                 break;
3024                         }
3025         }
3026
3027         if (conn_len > 1) {
3028                 for (j = 0; j < conn_len; j++) {
3029                         if (conn[j] == fallback_dac) {
3030                                 snd_hda_codec_write_cache(codec, nid, 0,
3031                                                   AC_VERB_SET_CONNECT_SEL, j);
3032                                 break;
3033                         }
3034                 }
3035         }
3036         return 0;
3037 }
3038
3039 static int add_spec_dacs(struct sigmatel_spec *spec, hda_nid_t nid);
3040 static int add_spec_extra_dacs(struct sigmatel_spec *spec, hda_nid_t nid);
3041
3042 /*
3043  * Fill in the dac_nids table from the parsed pin configuration
3044  * This function only works when every pin in line_out_pins[]
3045  * contains atleast one DAC in its connection list. Some 92xx
3046  * codecs are not connected directly to a DAC, such as the 9200
3047  * and 9202/925x. For those, dac_nids[] must be hard-coded.
3048  */
3049 static int stac92xx_auto_fill_dac_nids(struct hda_codec *codec)
3050 {
3051         struct sigmatel_spec *spec = codec->spec;
3052         struct auto_pin_cfg *cfg = &spec->autocfg;
3053         int i;
3054         hda_nid_t nid, dac;
3055         
3056         for (i = 0; i < cfg->line_outs; i++) {
3057                 nid = cfg->line_out_pins[i];
3058                 dac = get_unassigned_dac(codec, nid);
3059                 if (!dac) {
3060                         if (spec->multiout.num_dacs > 0) {
3061                                 /* we have already working output pins,
3062                                  * so let's drop the broken ones again
3063                                  */
3064                                 cfg->line_outs = spec->multiout.num_dacs;
3065                                 break;
3066                         }
3067                         /* error out, no available DAC found */
3068                         snd_printk(KERN_ERR
3069                                    "%s: No available DAC for pin 0x%x\n",
3070                                    __func__, nid);
3071                         return -ENODEV;
3072                 }
3073                 add_spec_dacs(spec, dac);
3074         }
3075
3076         for (i = 0; i < cfg->hp_outs; i++) {
3077                 nid = cfg->hp_pins[i];
3078                 dac = get_unassigned_dac(codec, nid);
3079                 if (dac) {
3080                         if (!spec->multiout.hp_nid)
3081                                 spec->multiout.hp_nid = dac;
3082                         else
3083                                 add_spec_extra_dacs(spec, dac);
3084                 }
3085                 spec->hp_dacs[i] = dac;
3086         }
3087
3088         for (i = 0; i < cfg->speaker_outs; i++) {
3089                 nid = cfg->speaker_pins[i];
3090                 dac = get_unassigned_dac(codec, nid);
3091                 if (dac)
3092                         add_spec_extra_dacs(spec, dac);
3093                 spec->speaker_dacs[i] = dac;
3094         }
3095
3096         /* add line-in as output */
3097         nid = check_line_out_switch(codec);
3098         if (nid) {
3099                 dac = get_unassigned_dac(codec, nid);
3100                 if (dac) {
3101                         snd_printdd("STAC: Add line-in 0x%x as output %d\n",
3102                                     nid, cfg->line_outs);
3103                         cfg->line_out_pins[cfg->line_outs] = nid;
3104                         cfg->line_outs++;
3105                         spec->line_switch = nid;
3106                         add_spec_dacs(spec, dac);
3107                 }
3108         }
3109         /* add mic as output */
3110         nid = check_mic_out_switch(codec, &dac);
3111         if (nid && dac) {
3112                 snd_printdd("STAC: Add mic-in 0x%x as output %d\n",
3113                             nid, cfg->line_outs);
3114                 cfg->line_out_pins[cfg->line_outs] = nid;
3115                 cfg->line_outs++;
3116                 spec->mic_switch = nid;
3117                 add_spec_dacs(spec, dac);
3118         }
3119
3120         snd_printd("stac92xx: dac_nids=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
3121                    spec->multiout.num_dacs,
3122                    spec->multiout.dac_nids[0],
3123                    spec->multiout.dac_nids[1],
3124                    spec->multiout.dac_nids[2],
3125                    spec->multiout.dac_nids[3],
3126                    spec->multiout.dac_nids[4]);
3127
3128         return 0;
3129 }
3130
3131 /* create volume control/switch for the given prefx type */
3132 static int create_controls_idx(struct hda_codec *codec, const char *pfx,
3133                                int idx, hda_nid_t nid, int chs)
3134 {
3135         struct sigmatel_spec *spec = codec->spec;
3136         char name[32];
3137         int err;
3138
3139         if (!spec->check_volume_offset) {
3140                 unsigned int caps, step, nums, db_scale;
3141                 caps = query_amp_caps(codec, nid, HDA_OUTPUT);
3142                 step = (caps & AC_AMPCAP_STEP_SIZE) >>
3143                         AC_AMPCAP_STEP_SIZE_SHIFT;
3144                 step = (step + 1) * 25; /* in .01dB unit */
3145                 nums = (caps & AC_AMPCAP_NUM_STEPS) >>
3146                         AC_AMPCAP_NUM_STEPS_SHIFT;
3147                 db_scale = nums * step;
3148                 /* if dB scale is over -64dB, and finer enough,
3149                  * let's reduce it to half
3150                  */
3151                 if (db_scale > 6400 && nums >= 0x1f)
3152                         spec->volume_offset = nums / 2;
3153                 spec->check_volume_offset = 1;
3154         }
3155
3156         sprintf(name, "%s Playback Volume", pfx);
3157         err = stac92xx_add_control_idx(spec, STAC_CTL_WIDGET_VOL, idx, name,
3158                 HDA_COMPOSE_AMP_VAL_OFS(nid, chs, 0, HDA_OUTPUT,
3159                                         spec->volume_offset));
3160         if (err < 0)
3161                 return err;
3162         sprintf(name, "%s Playback Switch", pfx);
3163         err = stac92xx_add_control_idx(spec, STAC_CTL_WIDGET_MUTE, idx, name,
3164                                    HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT));
3165         if (err < 0)
3166                 return err;
3167         return 0;
3168 }
3169
3170 #define create_controls(codec, pfx, nid, chs) \
3171         create_controls_idx(codec, pfx, 0, nid, chs)
3172
3173 static int add_spec_dacs(struct sigmatel_spec *spec, hda_nid_t nid)
3174 {
3175         if (spec->multiout.num_dacs > 4) {
3176                 printk(KERN_WARNING "stac92xx: No space for DAC 0x%x\n", nid);
3177                 return 1;
3178         } else {
3179                 snd_BUG_ON(spec->multiout.dac_nids != spec->dac_nids);
3180                 spec->dac_nids[spec->multiout.num_dacs] = nid;
3181                 spec->multiout.num_dacs++;
3182         }
3183         return 0;
3184 }
3185
3186 static int add_spec_extra_dacs(struct sigmatel_spec *spec, hda_nid_t nid)
3187 {
3188         int i;
3189         for (i = 0; i < ARRAY_SIZE(spec->multiout.extra_out_nid); i++) {
3190                 if (!spec->multiout.extra_out_nid[i]) {
3191                         spec->multiout.extra_out_nid[i] = nid;
3192                         return 0;
3193                 }
3194         }
3195         printk(KERN_WARNING "stac92xx: No space for extra DAC 0x%x\n", nid);
3196         return 1;
3197 }
3198
3199 /* Create output controls
3200  * The mixer elements are named depending on the given type (AUTO_PIN_XXX_OUT)
3201  */
3202 static int create_multi_out_ctls(struct hda_codec *codec, int num_outs,
3203                                  const hda_nid_t *pins,
3204                                  const hda_nid_t *dac_nids,
3205                                  int type)
3206 {
3207         struct sigmatel_spec *spec = codec->spec;
3208         static const char * const chname[4] = {
3209                 "Front", "Surround", NULL /*CLFE*/, "Side"
3210         };
3211         hda_nid_t nid;
3212         int i, err;
3213         unsigned int wid_caps;
3214
3215         for (i = 0; i < num_outs && i < ARRAY_SIZE(chname); i++) {
3216                 if (type == AUTO_PIN_HP_OUT && !spec->hp_detect) {
3217                         if (is_jack_detectable(codec, pins[i]))
3218                                 spec->hp_detect = 1;
3219                 }
3220                 nid = dac_nids[i];
3221                 if (!nid)
3222                         continue;
3223                 if (type != AUTO_PIN_HP_OUT && i == 2) {
3224                         /* Center/LFE */
3225                         err = create_controls(codec, "Center", nid, 1);
3226                         if (err < 0)
3227                                 return err;
3228                         err = create_controls(codec, "LFE", nid, 2);
3229                         if (err < 0)
3230                                 return err;
3231
3232                         wid_caps = get_wcaps(codec, nid);
3233
3234                         if (wid_caps & AC_WCAP_LR_SWAP) {
3235                                 err = stac92xx_add_control(spec,
3236                                         STAC_CTL_WIDGET_CLFE_SWITCH,
3237                                         "Swap Center/LFE Playback Switch", nid);
3238
3239                                 if (err < 0)
3240                                         return err;
3241                         }
3242
3243                 } else {
3244                         const char *name;
3245                         int idx;
3246                         switch (type) {
3247                         case AUTO_PIN_HP_OUT:
3248                                 name = "Headphone";
3249                                 idx = i;
3250                                 break;
3251                         case AUTO_PIN_SPEAKER_OUT:
3252                                 name = "Speaker";
3253                                 idx = i;
3254                                 break;
3255                         default:
3256                                 name = chname[i];
3257                                 idx = 0;
3258                                 break;
3259                         }
3260                         err = create_controls_idx(codec, name, idx, nid, 3);
3261                         if (err < 0)
3262                                 return err;
3263                 }
3264         }
3265         return 0;
3266 }
3267
3268 static int stac92xx_add_capvol_ctls(struct hda_codec *codec, unsigned long vol,
3269                                     unsigned long sw, int idx)
3270 {
3271         int err;
3272         err = stac92xx_add_control_idx(codec->spec, STAC_CTL_WIDGET_VOL, idx,
3273                                        "Capture Volume", vol);
3274         if (err < 0)
3275                 return err;
3276         err = stac92xx_add_control_idx(codec->spec, STAC_CTL_WIDGET_MUTE, idx,
3277                                        "Capture Switch", sw);
3278         if (err < 0)
3279                 return err;
3280         return 0;
3281 }
3282
3283 /* add playback controls from the parsed DAC table */
3284 static int stac92xx_auto_create_multi_out_ctls(struct hda_codec *codec,
3285                                                const struct auto_pin_cfg *cfg)
3286 {
3287         struct sigmatel_spec *spec = codec->spec;
3288         hda_nid_t nid;
3289         int err;
3290         int idx;
3291
3292         err = create_multi_out_ctls(codec, cfg->line_outs, cfg->line_out_pins,
3293                                     spec->multiout.dac_nids,
3294                                     cfg->line_out_type);
3295         if (err < 0)
3296                 return err;
3297
3298         if (cfg->hp_outs > 1 && cfg->line_out_type == AUTO_PIN_LINE_OUT) {
3299                 err = stac92xx_add_control(spec,
3300                         STAC_CTL_WIDGET_HP_SWITCH,
3301                         "Headphone as Line Out Switch",
3302                         cfg->hp_pins[cfg->hp_outs - 1]);
3303                 if (err < 0)
3304                         return err;
3305         }
3306
3307         for (idx = 0; idx < cfg->num_inputs; idx++) {
3308                 if (cfg->inputs[idx].type > AUTO_PIN_LINE_IN)
3309                         break;
3310                 nid = cfg->inputs[idx].pin;
3311                 err = stac92xx_add_jack_mode_control(codec, nid, idx);
3312                 if (err < 0)
3313                         return err;
3314         }
3315
3316         return 0;
3317 }
3318
3319 /* add playback controls for Speaker and HP outputs */
3320 static int stac92xx_auto_create_hp_ctls(struct hda_codec *codec,
3321                                         struct auto_pin_cfg *cfg)
3322 {
3323         struct sigmatel_spec *spec = codec->spec;
3324         int err;
3325
3326         err = create_multi_out_ctls(codec, cfg->hp_outs, cfg->hp_pins,
3327                                     spec->hp_dacs, AUTO_PIN_HP_OUT);
3328         if (err < 0)
3329                 return err;
3330
3331         err = create_multi_out_ctls(codec, cfg->speaker_outs, cfg->speaker_pins,
3332                                     spec->speaker_dacs, AUTO_PIN_SPEAKER_OUT);
3333         if (err < 0)
3334                 return err;
3335
3336         return 0;
3337 }
3338
3339 /* labels for mono mux outputs */
3340 static const char * const stac92xx_mono_labels[4] = {
3341         "DAC0", "DAC1", "Mixer", "DAC2"
3342 };
3343
3344 /* create mono mux for mono out on capable codecs */
3345 static int stac92xx_auto_create_mono_output_ctls(struct hda_codec *codec)
3346 {
3347         struct sigmatel_spec *spec = codec->spec;
3348         struct hda_input_mux *mono_mux = &spec->private_mono_mux;
3349         int i, num_cons;
3350         hda_nid_t con_lst[ARRAY_SIZE(stac92xx_mono_labels)];
3351
3352         num_cons = snd_hda_get_connections(codec,
3353                                 spec->mono_nid,
3354                                 con_lst,
3355                                 HDA_MAX_NUM_INPUTS);
3356         if (num_cons <= 0 || num_cons > ARRAY_SIZE(stac92xx_mono_labels))
3357                 return -EINVAL;
3358
3359         for (i = 0; i < num_cons; i++)
3360                 snd_hda_add_imux_item(mono_mux, stac92xx_mono_labels[i], i,
3361                                       NULL);
3362
3363         return stac92xx_add_control(spec, STAC_CTL_WIDGET_MONO_MUX,
3364                                 "Mono Mux", spec->mono_nid);
3365 }
3366
3367 /* create PC beep volume controls */
3368 static int stac92xx_auto_create_beep_ctls(struct hda_codec *codec,
3369                                                 hda_nid_t nid)
3370 {
3371         struct sigmatel_spec *spec = codec->spec;
3372         u32 caps = query_amp_caps(codec, nid, HDA_OUTPUT);
3373         int err, type = STAC_CTL_WIDGET_MUTE_BEEP;
3374
3375         if (spec->anabeep_nid == nid)
3376                 type = STAC_CTL_WIDGET_MUTE;
3377
3378         /* check for mute support for the the amp */
3379         if ((caps & AC_AMPCAP_MUTE) >> AC_AMPCAP_MUTE_SHIFT) {
3380                 err = stac92xx_add_control(spec, type,
3381                         "Beep Playback Switch",
3382                         HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT));
3383                         if (err < 0)
3384                                 return err;
3385         }
3386
3387         /* check to see if there is volume support for the amp */
3388         if ((caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT) {
3389                 err = stac92xx_add_control(spec, STAC_CTL_WIDGET_VOL,
3390                         "Beep Playback Volume",
3391                         HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT));
3392                         if (err < 0)
3393                                 return err;
3394         }
3395         return 0;
3396 }
3397
3398 #ifdef CONFIG_SND_HDA_INPUT_BEEP
3399 #define stac92xx_dig_beep_switch_info snd_ctl_boolean_mono_info
3400
3401 static int stac92xx_dig_beep_switch_get(struct snd_kcontrol *kcontrol,
3402                                         struct snd_ctl_elem_value *ucontrol)
3403 {
3404         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3405         ucontrol->value.integer.value[0] = codec->beep->enabled;
3406         return 0;
3407 }
3408
3409 static int stac92xx_dig_beep_switch_put(struct snd_kcontrol *kcontrol,
3410                                         struct snd_ctl_elem_value *ucontrol)
3411 {
3412         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3413         return snd_hda_enable_beep_device(codec, ucontrol->value.integer.value[0]);
3414 }
3415
3416 static const struct snd_kcontrol_new stac92xx_dig_beep_ctrl = {
3417         .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3418         .info = stac92xx_dig_beep_switch_info,
3419         .get = stac92xx_dig_beep_switch_get,
3420         .put = stac92xx_dig_beep_switch_put,
3421 };
3422
3423 static int stac92xx_beep_switch_ctl(struct hda_codec *codec)
3424 {
3425         return stac92xx_add_control_temp(codec->spec, &stac92xx_dig_beep_ctrl,
3426                                          0, "Beep Playback Switch", 0);
3427 }
3428 #endif
3429
3430 static int stac92xx_auto_create_mux_input_ctls(struct hda_codec *codec)
3431 {
3432         struct sigmatel_spec *spec = codec->spec;
3433         int i, j, err = 0;
3434
3435         for (i = 0; i < spec->num_muxes; i++) {
3436                 hda_nid_t nid;
3437                 unsigned int wcaps;
3438                 unsigned long val;
3439
3440                 nid = spec->mux_nids[i];
3441                 wcaps = get_wcaps(codec, nid);
3442                 if (!(wcaps & AC_WCAP_OUT_AMP))
3443                         continue;
3444
3445                 /* check whether already the same control was created as
3446                  * normal Capture Volume.
3447                  */
3448                 val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
3449                 for (j = 0; j < spec->num_caps; j++) {
3450                         if (spec->capvols[j] == val)
3451                                 break;
3452                 }
3453                 if (j < spec->num_caps)
3454                         continue;
3455
3456                 err = stac92xx_add_control_idx(spec, STAC_CTL_WIDGET_VOL, i,
3457                                                "Mux Capture Volume", val);
3458                 if (err < 0)
3459                         return err;
3460         }
3461         return 0;
3462 };
3463
3464 static const char * const stac92xx_spdif_labels[3] = {
3465         "Digital Playback", "Analog Mux 1", "Analog Mux 2",
3466 };
3467
3468 static int stac92xx_auto_create_spdif_mux_ctls(struct hda_codec *codec)
3469 {
3470         struct sigmatel_spec *spec = codec->spec;
3471         struct hda_input_mux *spdif_mux = &spec->private_smux;
3472         const char * const *labels = spec->spdif_labels;
3473         int i, num_cons;
3474         hda_nid_t con_lst[HDA_MAX_NUM_INPUTS];
3475
3476         num_cons = snd_hda_get_connections(codec,
3477                                 spec->smux_nids[0],
3478                                 con_lst,
3479                                 HDA_MAX_NUM_INPUTS);
3480         if (num_cons <= 0)
3481                 return -EINVAL;
3482
3483         if (!labels)
3484                 labels = stac92xx_spdif_labels;
3485
3486         for (i = 0; i < num_cons; i++)
3487                 snd_hda_add_imux_item(spdif_mux, labels[i], i, NULL);
3488
3489         return 0;
3490 }
3491
3492 /* labels for dmic mux inputs */
3493 static const char * const stac92xx_dmic_labels[5] = {
3494         "Analog Inputs", "Digital Mic 1", "Digital Mic 2",
3495         "Digital Mic 3", "Digital Mic 4"
3496 };
3497
3498 static hda_nid_t get_connected_node(struct hda_codec *codec, hda_nid_t mux,
3499                                     int idx)
3500 {
3501         hda_nid_t conn[HDA_MAX_NUM_INPUTS];
3502         int nums;
3503         nums = snd_hda_get_connections(codec, mux, conn, ARRAY_SIZE(conn));
3504         if (idx >= 0 && idx < nums)
3505                 return conn[idx];
3506         return 0;
3507 }
3508
3509 /* look for NID recursively */
3510 #define get_connection_index(codec, mux, nid) \
3511         snd_hda_get_conn_index(codec, mux, nid, 1)
3512
3513 /* create a volume assigned to the given pin (only if supported) */
3514 /* return 1 if the volume control is created */
3515 static int create_elem_capture_vol(struct hda_codec *codec, hda_nid_t nid,
3516                                    const char *label, int idx, int direction)
3517 {
3518         unsigned int caps, nums;
3519         char name[32];
3520         int err;
3521
3522         if (direction == HDA_OUTPUT)
3523                 caps = AC_WCAP_OUT_AMP;
3524         else
3525                 caps = AC_WCAP_IN_AMP;
3526         if (!(get_wcaps(codec, nid) & caps))
3527                 return 0;
3528         caps = query_amp_caps(codec, nid, direction);
3529         nums = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
3530         if (!nums)
3531                 return 0;
3532         snprintf(name, sizeof(name), "%s Capture Volume", label);
3533         err = stac92xx_add_control_idx(codec->spec, STAC_CTL_WIDGET_VOL, idx, name,
3534                                        HDA_COMPOSE_AMP_VAL(nid, 3, 0, direction));
3535         if (err < 0)
3536                 return err;
3537         return 1;
3538 }
3539
3540 /* create playback/capture controls for input pins on dmic capable codecs */
3541 static int stac92xx_auto_create_dmic_input_ctls(struct hda_codec *codec,
3542                                                 const struct auto_pin_cfg *cfg)
3543 {
3544         struct sigmatel_spec *spec = codec->spec;
3545         struct hda_input_mux *imux = &spec->private_imux;
3546         struct hda_input_mux *dimux = &spec->private_dimux;
3547         int err, i;
3548         unsigned int def_conf;
3549
3550         snd_hda_add_imux_item(dimux, stac92xx_dmic_labels[0], 0, NULL);
3551
3552         for (i = 0; i < spec->num_dmics; i++) {
3553                 hda_nid_t nid;
3554                 int index, type_idx;
3555                 const char *label;
3556
3557                 nid = spec->dmic_nids[i];
3558                 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
3559                         continue;
3560                 def_conf = snd_hda_codec_get_pincfg(codec, nid);
3561                 if (get_defcfg_connect(def_conf) == AC_JACK_PORT_NONE)
3562                         continue;
3563
3564                 index = get_connection_index(codec, spec->dmux_nids[0], nid);
3565                 if (index < 0)
3566                         continue;
3567
3568                 label = hda_get_input_pin_label(codec, nid, 1);
3569                 snd_hda_add_imux_item(dimux, label, index, &type_idx);
3570                 if (snd_hda_get_bool_hint(codec, "separate_dmux") != 1)
3571                         snd_hda_add_imux_item(imux, label, index, &type_idx);
3572
3573                 err = create_elem_capture_vol(codec, nid, label, type_idx,
3574                                               HDA_INPUT);
3575                 if (err < 0)
3576                         return err;
3577                 if (!err) {
3578                         err = create_elem_capture_vol(codec, nid, label,
3579                                                       type_idx, HDA_OUTPUT);
3580                         if (err < 0)
3581                                 return err;
3582                         if (!err) {
3583                                 nid = get_connected_node(codec,
3584                                                 spec->dmux_nids[0], index);
3585                                 if (nid)
3586                                         err = create_elem_capture_vol(codec,
3587                                                         nid, label,
3588                                                         type_idx, HDA_INPUT);
3589                                 if (err < 0)
3590                                         return err;
3591                         }
3592                 }
3593         }
3594
3595         return 0;
3596 }
3597
3598 static int check_mic_pin(struct hda_codec *codec, hda_nid_t nid,
3599                          hda_nid_t *fixed, hda_nid_t *ext, hda_nid_t *dock)
3600 {
3601         unsigned int cfg;
3602         unsigned int type;
3603
3604         if (!nid)
3605                 return 0;
3606         cfg = snd_hda_codec_get_pincfg(codec, nid);
3607         type = get_defcfg_device(cfg);
3608         switch (snd_hda_get_input_pin_attr(cfg)) {
3609         case INPUT_PIN_ATTR_INT:
3610                 if (*fixed)
3611                         return 1; /* already occupied */
3612                 if (type != AC_JACK_MIC_IN)
3613                         return 1; /* invalid type */
3614                 *fixed = nid;
3615                 break;
3616         case INPUT_PIN_ATTR_UNUSED:
3617                 break;
3618         case INPUT_PIN_ATTR_DOCK:
3619                 if (*dock)
3620                         return 1; /* already occupied */
3621                 if (type != AC_JACK_MIC_IN && type != AC_JACK_LINE_IN)
3622                         return 1; /* invalid type */
3623                 *dock = nid;
3624                 break;
3625         default:
3626                 if (*ext)
3627                         return 1; /* already occupied */
3628                 if (type != AC_JACK_MIC_IN)
3629                         return 1; /* invalid type */
3630                 *ext = nid;
3631                 break;
3632         }
3633         return 0;
3634 }
3635
3636 static int set_mic_route(struct hda_codec *codec,
3637                          struct sigmatel_mic_route *mic,
3638                          hda_nid_t pin)
3639 {
3640         struct sigmatel_spec *spec = codec->spec;
3641         struct auto_pin_cfg *cfg = &spec->autocfg;
3642         int i;
3643
3644         mic->pin = pin;
3645         if (pin == 0)
3646                 return 0;
3647         for (i = 0; i < cfg->num_inputs; i++) {
3648                 if (pin == cfg->inputs[i].pin)
3649                         break;
3650         }
3651         if (i < cfg->num_inputs && cfg->inputs[i].type == AUTO_PIN_MIC) {
3652                 /* analog pin */
3653                 i = get_connection_index(codec, spec->mux_nids[0], pin);
3654                 if (i < 0)
3655                         return -1;
3656                 mic->mux_idx = i;
3657                 mic->dmux_idx = -1;
3658                 if (spec->dmux_nids)
3659                         mic->dmux_idx = get_connection_index(codec,
3660                                                              spec->dmux_nids[0],
3661                                                              spec->mux_nids[0]);
3662         }  else if (spec->dmux_nids) {
3663                 /* digital pin */
3664                 i = get_connection_index(codec, spec->dmux_nids[0], pin);
3665                 if (i < 0)
3666                         return -1;
3667                 mic->dmux_idx = i;
3668                 mic->mux_idx = -1;
3669                 if (spec->mux_nids)
3670                         mic->mux_idx = get_connection_index(codec,
3671                                                             spec->mux_nids[0],
3672                                                             spec->dmux_nids[0]);
3673         }
3674         return 0;
3675 }
3676
3677 /* return non-zero if the device is for automatic mic switch */
3678 static int stac_check_auto_mic(struct hda_codec *codec)
3679 {
3680         struct sigmatel_spec *spec = codec->spec;
3681         struct auto_pin_cfg *cfg = &spec->autocfg;
3682         hda_nid_t fixed, ext, dock;
3683         int i;
3684
3685         fixed = ext = dock = 0;
3686         for (i = 0; i < cfg->num_inputs; i++)
3687                 if (check_mic_pin(codec, cfg->inputs[i].pin,
3688                     &fixed, &ext, &dock))
3689                         return 0;
3690         for (i = 0; i < spec->num_dmics; i++)
3691                 if (check_mic_pin(codec, spec->dmic_nids[i],
3692                     &fixed, &ext, &dock))
3693                         return 0;
3694         if (!fixed || (!ext && !dock))
3695                 return 0; /* no input to switch */
3696         if (!is_jack_detectable(codec, ext))
3697                 return 0; /* no unsol support */
3698         if (set_mic_route(codec, &spec->ext_mic, ext) ||
3699             set_mic_route(codec, &spec->int_mic, fixed) ||
3700             set_mic_route(codec, &spec->dock_mic, dock))
3701                 return 0; /* something is wrong */
3702         return 1;
3703 }
3704
3705 /* create playback/capture controls for input pins */
3706 static int stac92xx_auto_create_analog_input_ctls(struct hda_codec *codec, const struct auto_pin_cfg *cfg)
3707 {
3708         struct sigmatel_spec *spec = codec->spec;
3709         struct hda_input_mux *imux = &spec->private_imux;
3710         int i, j;
3711         const char *label;
3712
3713         for (i = 0; i < cfg->num_inputs; i++) {
3714                 hda_nid_t nid = cfg->inputs[i].pin;
3715                 int index, err, type_idx;
3716
3717                 index = -1;
3718                 for (j = 0; j < spec->num_muxes; j++) {
3719                         index = get_connection_index(codec, spec->mux_nids[j],
3720                                                      nid);
3721                         if (index >= 0)
3722                                 break;
3723                 }
3724                 if (index < 0)
3725                         continue;
3726
3727                 label = hda_get_autocfg_input_label(codec, cfg, i);
3728                 snd_hda_add_imux_item(imux, label, index, &type_idx);
3729
3730                 err = create_elem_capture_vol(codec, nid,
3731                                               label, type_idx,
3732                                               HDA_INPUT);
3733                 if (err < 0)
3734                         return err;
3735         }
3736         spec->num_analog_muxes = imux->num_items;
3737
3738         if (imux->num_items) {
3739                 /*
3740                  * Set the current input for the muxes.
3741                  * The STAC9221 has two input muxes with identical source
3742                  * NID lists.  Hopefully this won't get confused.
3743                  */
3744                 for (i = 0; i < spec->num_muxes; i++) {
3745                         snd_hda_codec_write_cache(codec, spec->mux_nids[i], 0,
3746                                                   AC_VERB_SET_CONNECT_SEL,
3747                                                   imux->items[0].index);
3748                 }
3749         }
3750
3751         return 0;
3752 }
3753
3754 static void stac92xx_auto_init_multi_out(struct hda_codec *codec)
3755 {
3756         struct sigmatel_spec *spec = codec->spec;
3757         int i;
3758
3759         for (i = 0; i < spec->autocfg.line_outs; i++) {
3760                 hda_nid_t nid = spec->autocfg.line_out_pins[i];
3761                 stac92xx_auto_set_pinctl(codec, nid, AC_PINCTL_OUT_EN);
3762         }
3763 }
3764
3765 static void stac92xx_auto_init_hp_out(struct hda_codec *codec)
3766 {
3767         struct sigmatel_spec *spec = codec->spec;
3768         int i;
3769
3770         for (i = 0; i < spec->autocfg.hp_outs; i++) {
3771                 hda_nid_t pin;
3772                 pin = spec->autocfg.hp_pins[i];
3773                 if (pin) /* connect to front */
3774                         stac92xx_auto_set_pinctl(codec, pin, AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN);
3775         }
3776         for (i = 0; i < spec->autocfg.speaker_outs; i++) {
3777                 hda_nid_t pin;
3778                 pin = spec->autocfg.speaker_pins[i];
3779                 if (pin) /* connect to front */
3780                         stac92xx_auto_set_pinctl(codec, pin, AC_PINCTL_OUT_EN);
3781         }
3782 }
3783
3784 static int is_dual_headphones(struct hda_codec *codec)
3785 {
3786         struct sigmatel_spec *spec = codec->spec;
3787         int i, valid_hps;
3788
3789         if (spec->autocfg.line_out_type != AUTO_PIN_SPEAKER_OUT ||
3790             spec->autocfg.hp_outs <= 1)
3791                 return 0;
3792         valid_hps = 0;
3793         for (i = 0; i < spec->autocfg.hp_outs; i++) {
3794                 hda_nid_t nid = spec->autocfg.hp_pins[i];
3795                 unsigned int cfg = snd_hda_codec_get_pincfg(codec, nid);
3796                 if (get_defcfg_location(cfg) & AC_JACK_LOC_SEPARATE)
3797                         continue;
3798                 valid_hps++;
3799         }
3800         return (valid_hps > 1);
3801 }
3802
3803
3804 static int stac92xx_parse_auto_config(struct hda_codec *codec)
3805 {
3806         struct sigmatel_spec *spec = codec->spec;
3807         hda_nid_t dig_out = 0, dig_in = 0;
3808         int hp_swap = 0;
3809         int i, err;
3810
3811         if ((err = snd_hda_parse_pin_def_config(codec,
3812                                                 &spec->autocfg,
3813                                                 spec->dmic_nids)) < 0)
3814                 return err;
3815         if (! spec->autocfg.line_outs)
3816                 return 0; /* can't find valid pin config */
3817
3818         /* If we have no real line-out pin and multiple hp-outs, HPs should
3819          * be set up as multi-channel outputs.
3820          */
3821         if (is_dual_headphones(codec)) {
3822                 /* Copy hp_outs to line_outs, backup line_outs in
3823                  * speaker_outs so that the following routines can handle
3824                  * HP pins as primary outputs.
3825                  */
3826                 snd_printdd("stac92xx: Enabling multi-HPs workaround\n");
3827                 memcpy(spec->autocfg.speaker_pins, spec->autocfg.line_out_pins,
3828                        sizeof(spec->autocfg.line_out_pins));
3829                 spec->autocfg.speaker_outs = spec->autocfg.line_outs;
3830                 memcpy(spec->autocfg.line_out_pins, spec->autocfg.hp_pins,
3831                        sizeof(spec->autocfg.hp_pins));
3832                 spec->autocfg.line_outs = spec->autocfg.hp_outs;
3833                 spec->autocfg.line_out_type = AUTO_PIN_HP_OUT;
3834                 spec->autocfg.hp_outs = 0;
3835                 hp_swap = 1;
3836         }
3837         if (spec->autocfg.mono_out_pin) {
3838                 int dir = get_wcaps(codec, spec->autocfg.mono_out_pin) &
3839                         (AC_WCAP_OUT_AMP | AC_WCAP_IN_AMP);
3840                 u32 caps = query_amp_caps(codec,
3841                                 spec->autocfg.mono_out_pin, dir);
3842                 hda_nid_t conn_list[1];
3843
3844                 /* get the mixer node and then the mono mux if it exists */
3845                 if (snd_hda_get_connections(codec,
3846                                 spec->autocfg.mono_out_pin, conn_list, 1) &&
3847                                 snd_hda_get_connections(codec, conn_list[0],
3848                                 conn_list, 1) > 0) {
3849
3850                                 int wcaps = get_wcaps(codec, conn_list[0]);
3851                                 int wid_type = get_wcaps_type(wcaps);
3852                                 /* LR swap check, some stac925x have a mux that
3853                                  * changes the DACs output path instead of the
3854                                  * mono-mux path.
3855                                  */
3856                                 if (wid_type == AC_WID_AUD_SEL &&
3857                                                 !(wcaps & AC_WCAP_LR_SWAP))
3858                                         spec->mono_nid = conn_list[0];
3859                 }
3860                 if (dir) {
3861                         hda_nid_t nid = spec->autocfg.mono_out_pin;
3862
3863                         /* most mono outs have a least a mute/unmute switch */
3864                         dir = (dir & AC_WCAP_OUT_AMP) ? HDA_OUTPUT : HDA_INPUT;
3865                         err = stac92xx_add_control(spec, STAC_CTL_WIDGET_MUTE,
3866                                 "Mono Playback Switch",
3867                                 HDA_COMPOSE_AMP_VAL(nid, 1, 0, dir));
3868                         if (err < 0)
3869                                 return err;
3870                         /* check for volume support for the amp */
3871                         if ((caps & AC_AMPCAP_NUM_STEPS)
3872                                         >> AC_AMPCAP_NUM_STEPS_SHIFT) {
3873                                 err = stac92xx_add_control(spec,
3874                                         STAC_CTL_WIDGET_VOL,
3875                                         "Mono Playback Volume",
3876                                 HDA_COMPOSE_AMP_VAL(nid, 1, 0, dir));
3877                                 if (err < 0)
3878                                         return err;
3879                         }
3880                 }
3881
3882                 stac92xx_auto_set_pinctl(codec, spec->autocfg.mono_out_pin,
3883                                          AC_PINCTL_OUT_EN);
3884         }
3885
3886         if (!spec->multiout.num_dacs) {
3887                 err = stac92xx_auto_fill_dac_nids(codec);
3888                 if (err < 0)
3889                         return err;
3890                 err = stac92xx_auto_create_multi_out_ctls(codec,
3891                                                           &spec->autocfg);
3892                 if (err < 0)
3893                         return err;
3894         }
3895
3896         /* setup analog beep controls */
3897         if (spec->anabeep_nid > 0) {
3898                 err = stac92xx_auto_create_beep_ctls(codec,
3899                         spec->anabeep_nid);
3900                 if (err < 0)
3901                         return err;
3902         }
3903
3904         /* setup digital beep controls and input device */
3905 #ifdef CONFIG_SND_HDA_INPUT_BEEP
3906         if (spec->digbeep_nid > 0) {
3907                 hda_nid_t nid = spec->digbeep_nid;
3908                 unsigned int caps;
3909
3910                 err = stac92xx_auto_create_beep_ctls(codec, nid);
3911                 if (err < 0)
3912                         return err;
3913                 err = snd_hda_attach_beep_device(codec, nid);
3914                 if (err < 0)
3915                         return err;
3916                 if (codec->beep) {
3917                         /* IDT/STAC codecs have linear beep tone parameter */
3918                         codec->beep->linear_tone = spec->linear_tone_beep;
3919                         /* if no beep switch is available, make its own one */
3920                         caps = query_amp_caps(codec, nid, HDA_OUTPUT);
3921                         if (!(caps & AC_AMPCAP_MUTE)) {
3922                                 err = stac92xx_beep_switch_ctl(codec);
3923                                 if (err < 0)
3924                                         return err;
3925                         }
3926                 }
3927         }
3928 #endif
3929
3930         err = stac92xx_auto_create_hp_ctls(codec, &spec->autocfg);
3931         if (err < 0)
3932                 return err;
3933
3934         /* All output parsing done, now restore the swapped hp pins */
3935         if (hp_swap) {
3936                 memcpy(spec->autocfg.hp_pins, spec->autocfg.line_out_pins,
3937                        sizeof(spec->autocfg.hp_pins));
3938                 spec->autocfg.hp_outs = spec->autocfg.line_outs;
3939                 spec->autocfg.line_out_type = AUTO_PIN_HP_OUT;
3940                 spec->autocfg.line_outs = 0;
3941         }
3942
3943         if (stac_check_auto_mic(codec)) {
3944                 spec->auto_mic = 1;
3945                 /* only one capture for auto-mic */
3946                 spec->num_adcs = 1;
3947                 spec->num_caps = 1;
3948                 spec->num_muxes = 1;
3949         }
3950
3951         for (i = 0; i < spec->num_caps; i++) {
3952                 err = stac92xx_add_capvol_ctls(codec, spec->capvols[i],
3953                                                spec->capsws[i], i);
3954                 if (err < 0)
3955                         return err;
3956         }
3957
3958         err = stac92xx_auto_create_analog_input_ctls(codec, &spec->autocfg);
3959         if (err < 0)
3960                 return err;
3961
3962         if (spec->mono_nid > 0) {
3963                 err = stac92xx_auto_create_mono_output_ctls(codec);
3964                 if (err < 0)
3965                         return err;
3966         }
3967         if (spec->num_dmics > 0 && !spec->dinput_mux)
3968                 if ((err = stac92xx_auto_create_dmic_input_ctls(codec,
3969                                                 &spec->autocfg)) < 0)
3970                         return err;
3971         if (spec->num_muxes > 0) {
3972                 err = stac92xx_auto_create_mux_input_ctls(codec);
3973                 if (err < 0)
3974                         return err;
3975         }
3976         if (spec->num_smuxes > 0) {
3977                 err = stac92xx_auto_create_spdif_mux_ctls(codec);
3978                 if (err < 0)
3979                         return err;
3980         }
3981
3982         err = stac92xx_add_input_source(spec);
3983         if (err < 0)
3984                 return err;
3985
3986         spec->multiout.max_channels = spec->multiout.num_dacs * 2;
3987         if (spec->multiout.max_channels > 2)
3988                 spec->surr_switch = 1;
3989
3990         /* find digital out and in converters */
3991         for (i = codec->start_nid; i < codec->start_nid + codec->num_nodes; i++) {
3992                 unsigned int wid_caps = get_wcaps(codec, i);
3993                 if (wid_caps & AC_WCAP_DIGITAL) {
3994                         switch (get_wcaps_type(wid_caps)) {
3995                         case AC_WID_AUD_OUT:
3996                                 if (!dig_out)
3997                                         dig_out = i;
3998                                 break;
3999                         case AC_WID_AUD_IN:
4000                                 if (!dig_in)
4001                                         dig_in = i;
4002                                 break;
4003                         }
4004                 }
4005         }
4006         if (spec->autocfg.dig_outs)
4007                 spec->multiout.dig_out_nid = dig_out;
4008         if (dig_in && spec->autocfg.dig_in_pin)
4009                 spec->dig_in_nid = dig_in;
4010
4011         if (spec->kctls.list)
4012                 spec->mixers[spec->num_mixers++] = spec->kctls.list;
4013
4014         spec->input_mux = &spec->private_imux;
4015         if (!spec->dinput_mux)
4016                 spec->dinput_mux = &spec->private_dimux;
4017         spec->sinput_mux = &spec->private_smux;
4018         spec->mono_mux = &spec->private_mono_mux;
4019         return 1;
4020 }
4021
4022 /* add playback controls for HP output */
4023 static int stac9200_auto_create_hp_ctls(struct hda_codec *codec,
4024                                         struct auto_pin_cfg *cfg)
4025 {
4026         struct sigmatel_spec *spec = codec->spec;
4027         hda_nid_t pin = cfg->hp_pins[0];
4028
4029         if (! pin)
4030                 return 0;
4031
4032         if (is_jack_detectable(codec, pin))
4033                 spec->hp_detect = 1;
4034
4035         return 0;
4036 }
4037
4038 /* add playback controls for LFE output */
4039 static int stac9200_auto_create_lfe_ctls(struct hda_codec *codec,
4040                                         struct auto_pin_cfg *cfg)
4041 {
4042         struct sigmatel_spec *spec = codec->spec;
4043         int err;
4044         hda_nid_t lfe_pin = 0x0;
4045         int i;
4046
4047         /*
4048          * search speaker outs and line outs for a mono speaker pin
4049          * with an amp.  If one is found, add LFE controls
4050          * for it.
4051          */
4052         for (i = 0; i < spec->autocfg.speaker_outs && lfe_pin == 0x0; i++) {
4053                 hda_nid_t pin = spec->autocfg.speaker_pins[i];
4054                 unsigned int wcaps = get_wcaps(codec, pin);
4055                 wcaps &= (AC_WCAP_STEREO | AC_WCAP_OUT_AMP);
4056                 if (wcaps == AC_WCAP_OUT_AMP)
4057                         /* found a mono speaker with an amp, must be lfe */
4058                         lfe_pin = pin;
4059         }
4060
4061         /* if speaker_outs is 0, then speakers may be in line_outs */
4062         if (lfe_pin == 0 && spec->autocfg.speaker_outs == 0) {
4063                 for (i = 0; i < spec->autocfg.line_outs && lfe_pin == 0x0; i++) {
4064                         hda_nid_t pin = spec->autocfg.line_out_pins[i];
4065                         unsigned int defcfg;
4066                         defcfg = snd_hda_codec_get_pincfg(codec, pin);
4067                         if (get_defcfg_device(defcfg) == AC_JACK_SPEAKER) {
4068                                 unsigned int wcaps = get_wcaps(codec, pin);
4069                                 wcaps &= (AC_WCAP_STEREO | AC_WCAP_OUT_AMP);
4070                                 if (wcaps == AC_WCAP_OUT_AMP)
4071                                         /* found a mono speaker with an amp,
4072                                            must be lfe */
4073                                         lfe_pin = pin;
4074                         }
4075                 }
4076         }
4077
4078         if (lfe_pin) {
4079                 err = create_controls(codec, "LFE", lfe_pin, 1);
4080                 if (err < 0)
4081                         return err;
4082         }
4083
4084         return 0;
4085 }
4086
4087 static int stac9200_parse_auto_config(struct hda_codec *codec)
4088 {
4089         struct sigmatel_spec *spec = codec->spec;
4090         int err;
4091
4092         if ((err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL)) < 0)
4093                 return err;
4094
4095         if ((err = stac92xx_auto_create_analog_input_ctls(codec, &spec->autocfg)) < 0)
4096                 return err;
4097
4098         if ((err = stac9200_auto_create_hp_ctls(codec, &spec->autocfg)) < 0)
4099                 return err;
4100
4101         if ((err = stac9200_auto_create_lfe_ctls(codec, &spec->autocfg)) < 0)
4102                 return err;
4103
4104         if (spec->num_muxes > 0) {
4105                 err = stac92xx_auto_create_mux_input_ctls(codec);
4106                 if (err < 0)
4107                         return err;
4108         }
4109
4110         err = stac92xx_add_input_source(spec);
4111         if (err < 0)
4112                 return err;
4113
4114         if (spec->autocfg.dig_outs)
4115                 spec->multiout.dig_out_nid = 0x05;
4116         if (spec->autocfg.dig_in_pin)
4117                 spec->dig_in_nid = 0x04;
4118
4119         if (spec->kctls.list)
4120                 spec->mixers[spec->num_mixers++] = spec->kctls.list;
4121
4122         spec->input_mux = &spec->private_imux;
4123         spec->dinput_mux = &spec->private_dimux;
4124
4125         return 1;
4126 }
4127
4128 /*
4129  * Early 2006 Intel Macintoshes with STAC9220X5 codecs seem to have a
4130  * funky external mute control using GPIO pins.
4131  */
4132
4133 static void stac_gpio_set(struct hda_codec *codec, unsigned int mask,
4134                           unsigned int dir_mask, unsigned int data)
4135 {
4136         unsigned int gpiostate, gpiomask, gpiodir;
4137
4138         snd_printdd("%s msk %x dir %x gpio %x\n", __func__, mask, dir_mask, data);
4139
4140         gpiostate = snd_hda_codec_read(codec, codec->afg, 0,
4141                                        AC_VERB_GET_GPIO_DATA, 0);
4142         gpiostate = (gpiostate & ~dir_mask) | (data & dir_mask);
4143
4144         gpiomask = snd_hda_codec_read(codec, codec->afg, 0,
4145                                       AC_VERB_GET_GPIO_MASK, 0);
4146         gpiomask |= mask;
4147
4148         gpiodir = snd_hda_codec_read(codec, codec->afg, 0,
4149                                      AC_VERB_GET_GPIO_DIRECTION, 0);
4150         gpiodir |= dir_mask;
4151
4152         /* Configure GPIOx as CMOS */
4153         snd_hda_codec_write(codec, codec->afg, 0, 0x7e7, 0);
4154
4155         snd_hda_codec_write(codec, codec->afg, 0,
4156                             AC_VERB_SET_GPIO_MASK, gpiomask);
4157         snd_hda_codec_read(codec, codec->afg, 0,
4158                            AC_VERB_SET_GPIO_DIRECTION, gpiodir); /* sync */
4159
4160         msleep(1);
4161
4162         snd_hda_codec_read(codec, codec->afg, 0,
4163                            AC_VERB_SET_GPIO_DATA, gpiostate); /* sync */
4164 }
4165
4166 static int stac92xx_add_jack(struct hda_codec *codec,
4167                 hda_nid_t nid, int type)
4168 {
4169 #ifdef CONFIG_SND_HDA_INPUT_JACK
4170         int def_conf = snd_hda_codec_get_pincfg(codec, nid);
4171         int connectivity = get_defcfg_connect(def_conf);
4172
4173         if (connectivity && connectivity != AC_JACK_PORT_FIXED)
4174                 return 0;
4175
4176         return snd_hda_input_jack_add(codec, nid, type, NULL);
4177 #else
4178         return 0;
4179 #endif /* CONFIG_SND_HDA_INPUT_JACK */
4180 }
4181
4182 static int stac_add_event(struct sigmatel_spec *spec, hda_nid_t nid,
4183                           unsigned char type, int data)
4184 {
4185         struct sigmatel_event *event;
4186
4187         snd_array_init(&spec->events, sizeof(*event), 32);
4188         event = snd_array_new(&spec->events);
4189         if (!event)
4190                 return -ENOMEM;
4191         event->nid = nid;
4192         event->type = type;
4193         event->tag = spec->events.used;
4194         event->data = data;
4195
4196         return event->tag;
4197 }
4198
4199 static struct sigmatel_event *stac_get_event(struct hda_codec *codec,
4200                                              hda_nid_t nid)
4201 {
4202         struct sigmatel_spec *spec = codec->spec;
4203         struct sigmatel_event *event = spec->events.list;
4204         int i;
4205
4206         for (i = 0; i < spec->events.used; i++, event++) {
4207                 if (event->nid == nid)
4208                         return event;
4209         }
4210         return NULL;
4211 }
4212
4213 static struct sigmatel_event *stac_get_event_from_tag(struct hda_codec *codec,
4214                                                       unsigned char tag)
4215 {
4216         struct sigmatel_spec *spec = codec->spec;
4217         struct sigmatel_event *event = spec->events.list;
4218         int i;
4219
4220         for (i = 0; i < spec->events.used; i++, event++) {
4221                 if (event->tag == tag)
4222                         return event;
4223         }
4224         return NULL;
4225 }
4226
4227 /* check if given nid is a valid pin and no other events are assigned
4228  * to it.  If OK, assign the event, set the unsol flag, and returns 1.
4229  * Otherwise, returns zero.
4230  */
4231 static int enable_pin_detect(struct hda_codec *codec, hda_nid_t nid,
4232                              unsigned int type)
4233 {
4234         struct sigmatel_event *event;
4235         int tag;
4236
4237         if (!is_jack_detectable(codec, nid))
4238                 return 0;
4239         event = stac_get_event(codec, nid);
4240         if (event) {
4241                 if (event->type != type)
4242                         return 0;
4243                 tag = event->tag;
4244         } else {
4245                 tag = stac_add_event(codec->spec, nid, type, 0);
4246                 if (tag < 0)
4247                         return 0;
4248         }
4249         snd_hda_codec_write_cache(codec, nid, 0,
4250                                   AC_VERB_SET_UNSOLICITED_ENABLE,
4251                                   AC_USRSP_EN | tag);
4252         return 1;
4253 }
4254
4255 static int is_nid_hp_pin(struct auto_pin_cfg *cfg, hda_nid_t nid)
4256 {
4257         int i;
4258         for (i = 0; i < cfg->hp_outs; i++)
4259                 if (cfg->hp_pins[i] == nid)
4260                         return 1; /* nid is a HP-Out */
4261
4262         return 0; /* nid is not a HP-Out */
4263 };
4264
4265 static void stac92xx_power_down(struct hda_codec *codec)
4266 {
4267         struct sigmatel_spec *spec = codec->spec;
4268
4269         /* power down inactive DACs */
4270         const hda_nid_t *dac;
4271         for (dac = spec->dac_list; *dac; dac++)
4272                 if (!check_all_dac_nids(spec, *dac))
4273                         snd_hda_codec_write(codec, *dac, 0,
4274                                         AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
4275 }
4276
4277 static void stac_toggle_power_map(struct hda_codec *codec, hda_nid_t nid,
4278                                   int enable);
4279
4280 static inline int get_int_hint(struct hda_codec *codec, const char *key,
4281                                int *valp)
4282 {
4283         const char *p;
4284         p = snd_hda_get_hint(codec, key);
4285         if (p) {
4286                 unsigned long val;
4287                 if (!strict_strtoul(p, 0, &val)) {
4288                         *valp = val;
4289                         return 1;
4290                 }
4291         }
4292         return 0;
4293 }
4294
4295 /* override some hints from the hwdep entry */
4296 static void stac_store_hints(struct hda_codec *codec)
4297 {
4298         struct sigmatel_spec *spec = codec->spec;
4299         int val;
4300
4301         val = snd_hda_get_bool_hint(codec, "hp_detect");
4302         if (val >= 0)
4303                 spec->hp_detect = val;
4304         if (get_int_hint(codec, "gpio_mask", &spec->gpio_mask)) {
4305                 spec->eapd_mask = spec->gpio_dir = spec->gpio_data =
4306                         spec->gpio_mask;
4307         }
4308         if (get_int_hint(codec, "gpio_dir", &spec->gpio_dir))
4309                 spec->gpio_mask &= spec->gpio_mask;
4310         if (get_int_hint(codec, "gpio_data", &spec->gpio_data))
4311                 spec->gpio_dir &= spec->gpio_mask;
4312         if (get_int_hint(codec, "eapd_mask", &spec->eapd_mask))
4313                 spec->eapd_mask &= spec->gpio_mask;
4314         if (get_int_hint(codec, "gpio_mute", &spec->gpio_mute))
4315                 spec->gpio_mute &= spec->gpio_mask;
4316         val = snd_hda_get_bool_hint(codec, "eapd_switch");
4317         if (val >= 0)
4318                 spec->eapd_switch = val;
4319         get_int_hint(codec, "gpio_led_polarity", &spec->gpio_led_polarity);
4320         if (get_int_hint(codec, "gpio_led", &spec->gpio_led)) {
4321                 if (spec->gpio_led <= 8) {
4322                         spec->gpio_mask |= spec->gpio_led;
4323                         spec->gpio_dir |= spec->gpio_led;
4324                         if (spec->gpio_led_polarity)
4325                                 spec->gpio_data |= spec->gpio_led;
4326                 }
4327         }
4328 }
4329
4330 static int stac92xx_init(struct hda_codec *codec)
4331 {
4332         struct sigmatel_spec *spec = codec->spec;
4333         struct auto_pin_cfg *cfg = &spec->autocfg;
4334         unsigned int gpio;
4335         int i;
4336
4337         snd_hda_sequence_write(codec, spec->init);
4338
4339         /* power down adcs initially */
4340         if (spec->powerdown_adcs)
4341                 for (i = 0; i < spec->num_adcs; i++)
4342                         snd_hda_codec_write(codec,
4343                                 spec->adc_nids[i], 0,
4344                                 AC_VERB_SET_POWER_STATE, AC_PWRST_D3);
4345
4346         /* override some hints */
4347         stac_store_hints(codec);
4348
4349         /* set up GPIO */
4350         gpio = spec->gpio_data;
4351         /* turn on EAPD statically when spec->eapd_switch isn't set.
4352          * otherwise, unsol event will turn it on/off dynamically
4353          */
4354         if (!spec->eapd_switch)
4355                 gpio |= spec->eapd_mask;
4356         stac_gpio_set(codec, spec->gpio_mask, spec->gpio_dir, gpio);
4357
4358         /* set up pins */
4359         if (spec->hp_detect) {
4360                 /* Enable unsolicited responses on the HP widget */
4361                 for (i = 0; i < cfg->hp_outs; i++) {
4362                         hda_nid_t nid = cfg->hp_pins[i];
4363                         enable_pin_detect(codec, nid, STAC_HP_EVENT);
4364                 }
4365                 if (cfg->line_out_type == AUTO_PIN_LINE_OUT &&
4366                     cfg->speaker_outs > 0) {
4367                         /* enable pin-detect for line-outs as well */
4368                         for (i = 0; i < cfg->line_outs; i++) {
4369                                 hda_nid_t nid = cfg->line_out_pins[i];
4370                                 enable_pin_detect(codec, nid, STAC_LO_EVENT);
4371                         }
4372                 }
4373
4374                 /* force to enable the first line-out; the others are set up
4375                  * in unsol_event
4376                  */
4377                 stac92xx_auto_set_pinctl(codec, spec->autocfg.line_out_pins[0],
4378                                 AC_PINCTL_OUT_EN);
4379                 /* fake event to set up pins */
4380                 if (cfg->hp_pins[0])
4381                         stac_issue_unsol_event(codec, cfg->hp_pins[0]);
4382                 else if (cfg->line_out_pins[0])
4383                         stac_issue_unsol_event(codec, cfg->line_out_pins[0]);
4384         } else {
4385                 stac92xx_auto_init_multi_out(codec);
4386                 stac92xx_auto_init_hp_out(codec);
4387                 for (i = 0; i < cfg->hp_outs; i++)
4388                         stac_toggle_power_map(codec, cfg->hp_pins[i], 1);
4389         }
4390         if (spec->auto_mic) {
4391                 /* initialize connection to analog input */
4392                 if (spec->dmux_nids)
4393                         snd_hda_codec_write_cache(codec, spec->dmux_nids[0], 0,
4394                                           AC_VERB_SET_CONNECT_SEL, 0);
4395                 if (enable_pin_detect(codec, spec->ext_mic.pin, STAC_MIC_EVENT))
4396                         stac_issue_unsol_event(codec, spec->ext_mic.pin);
4397                 if (enable_pin_detect(codec, spec->dock_mic.pin,
4398                     STAC_MIC_EVENT))
4399                         stac_issue_unsol_event(codec, spec->dock_mic.pin);
4400         }
4401         for (i = 0; i < cfg->num_inputs; i++) {
4402                 hda_nid_t nid = cfg->inputs[i].pin;
4403                 int type = cfg->inputs[i].type;
4404                 unsigned int pinctl, conf;
4405                 if (type == AUTO_PIN_MIC) {
4406                         /* for mic pins, force to initialize */
4407                         pinctl = stac92xx_get_default_vref(codec, nid);
4408                         pinctl |= AC_PINCTL_IN_EN;
4409                         stac92xx_auto_set_pinctl(codec, nid, pinctl);
4410                 } else {
4411                         pinctl = snd_hda_codec_read(codec, nid, 0,
4412                                         AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
4413                         /* if PINCTL already set then skip */
4414                         /* Also, if both INPUT and OUTPUT are set,
4415                          * it must be a BIOS bug; need to override, too
4416                          */
4417                         if (!(pinctl & AC_PINCTL_IN_EN) ||
4418                             (pinctl & AC_PINCTL_OUT_EN)) {
4419                                 pinctl &= ~AC_PINCTL_OUT_EN;
4420                                 pinctl |= AC_PINCTL_IN_EN;
4421                                 stac92xx_auto_set_pinctl(codec, nid, pinctl);
4422                         }
4423                 }
4424                 conf = snd_hda_codec_get_pincfg(codec, nid);
4425                 if (get_defcfg_connect(conf) != AC_JACK_PORT_FIXED) {
4426                         if (enable_pin_detect(codec, nid, STAC_INSERT_EVENT))
4427                                 stac_issue_unsol_event(codec, nid);
4428                 }
4429         }
4430         for (i = 0; i < spec->num_dmics; i++)
4431                 stac92xx_auto_set_pinctl(codec, spec->dmic_nids[i],
4432                                         AC_PINCTL_IN_EN);
4433         if (cfg->dig_out_pins[0])
4434                 stac92xx_auto_set_pinctl(codec, cfg->dig_out_pins[0],
4435                                          AC_PINCTL_OUT_EN);
4436         if (cfg->dig_in_pin)
4437                 stac92xx_auto_set_pinctl(codec, cfg->dig_in_pin,
4438                                          AC_PINCTL_IN_EN);
4439         for (i = 0; i < spec->num_pwrs; i++)  {
4440                 hda_nid_t nid = spec->pwr_nids[i];
4441                 int pinctl, def_conf;
4442
4443                 /* power on when no jack detection is available */
4444                 /* or when the VREF is used for controlling LED */
4445                 if (!spec->hp_detect ||
4446                     (spec->gpio_led > 8 && spec->gpio_led == nid)) {
4447                         stac_toggle_power_map(codec, nid, 1);
4448                         continue;
4449                 }
4450
4451                 if (is_nid_hp_pin(cfg, nid))
4452                         continue; /* already has an unsol event */
4453
4454                 pinctl = snd_hda_codec_read(codec, nid, 0,
4455                                             AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
4456                 /* outputs are only ports capable of power management
4457                  * any attempts on powering down a input port cause the
4458                  * referenced VREF to act quirky.
4459                  */
4460                 if (pinctl & AC_PINCTL_IN_EN) {
4461                         stac_toggle_power_map(codec, nid, 1);
4462                         continue;
4463                 }
4464                 def_conf = snd_hda_codec_get_pincfg(codec, nid);
4465                 def_conf = get_defcfg_connect(def_conf);
4466                 /* skip any ports that don't have jacks since presence
4467                  * detection is useless */
4468                 if (def_conf != AC_JACK_PORT_COMPLEX) {
4469                         if (def_conf != AC_JACK_PORT_NONE)
4470                                 stac_toggle_power_map(codec, nid, 1);
4471                         continue;
4472                 }
4473                 if (enable_pin_detect(codec, nid, STAC_PWR_EVENT)) {
4474                         stac_issue_unsol_event(codec, nid);
4475                         continue;
4476                 }
4477                 /* none of the above, turn the port OFF */
4478                 stac_toggle_power_map(codec, nid, 0);
4479         }
4480
4481         /* sync mute LED */
4482         if (spec->gpio_led)
4483                 hda_call_check_power_status(codec, 0x01);
4484         if (spec->dac_list)
4485                 stac92xx_power_down(codec);
4486         return 0;
4487 }
4488
4489 static void stac92xx_free_kctls(struct hda_codec *codec)
4490 {
4491         struct sigmatel_spec *spec = codec->spec;
4492
4493         if (spec->kctls.list) {
4494                 struct snd_kcontrol_new *kctl = spec->kctls.list;
4495                 int i;
4496                 for (i = 0; i < spec->kctls.used; i++)
4497                         kfree(kctl[i].name);
4498         }
4499         snd_array_free(&spec->kctls);
4500 }
4501
4502 static void stac92xx_shutup_pins(struct hda_codec *codec)
4503 {
4504         unsigned int i, def_conf;
4505
4506         if (codec->bus->shutdown)
4507                 return;
4508         for (i = 0; i < codec->init_pins.used; i++) {
4509                 struct hda_pincfg *pin = snd_array_elem(&codec->init_pins, i);
4510                 def_conf = snd_hda_codec_get_pincfg(codec, pin->nid);
4511                 if (get_defcfg_connect(def_conf) != AC_JACK_PORT_NONE)
4512                         snd_hda_codec_write(codec, pin->nid, 0,
4513                                     AC_VERB_SET_PIN_WIDGET_CONTROL, 0);
4514         }
4515 }
4516
4517 static void stac92xx_shutup(struct hda_codec *codec)
4518 {
4519         struct sigmatel_spec *spec = codec->spec;
4520
4521         stac92xx_shutup_pins(codec);
4522
4523         if (spec->eapd_mask)
4524                 stac_gpio_set(codec, spec->gpio_mask,
4525                                 spec->gpio_dir, spec->gpio_data &
4526                                 ~spec->eapd_mask);
4527 }
4528
4529 static void stac92xx_free(struct hda_codec *codec)
4530 {
4531         struct sigmatel_spec *spec = codec->spec;
4532
4533         if (! spec)
4534                 return;
4535
4536         stac92xx_shutup(codec);
4537         snd_hda_input_jack_free(codec);
4538         snd_array_free(&spec->events);
4539
4540         kfree(spec);
4541         snd_hda_detach_beep_device(codec);
4542 }
4543
4544 static void stac92xx_set_pinctl(struct hda_codec *codec, hda_nid_t nid,
4545                                 unsigned int flag)
4546 {
4547         unsigned int old_ctl, pin_ctl;
4548
4549         pin_ctl = snd_hda_codec_read(codec, nid,
4550                         0, AC_VERB_GET_PIN_WIDGET_CONTROL, 0x00);
4551
4552         if (pin_ctl & AC_PINCTL_IN_EN) {
4553                 /*
4554                  * we need to check the current set-up direction of
4555                  * shared input pins since they can be switched via
4556                  * "xxx as Output" mixer switch
4557                  */
4558                 struct sigmatel_spec *spec = codec->spec;
4559                 if (nid == spec->line_switch || nid == spec->mic_switch)
4560                         return;
4561         }
4562
4563         old_ctl = pin_ctl;
4564         /* if setting pin direction bits, clear the current
4565            direction bits first */
4566         if (flag & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN))
4567                 pin_ctl &= ~(AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN);
4568         
4569         pin_ctl |= flag;
4570         if (old_ctl != pin_ctl)
4571                 snd_hda_codec_write_cache(codec, nid, 0,
4572                                           AC_VERB_SET_PIN_WIDGET_CONTROL,
4573                                           pin_ctl);
4574 }
4575
4576 static void stac92xx_reset_pinctl(struct hda_codec *codec, hda_nid_t nid,
4577                                   unsigned int flag)
4578 {
4579         unsigned int pin_ctl = snd_hda_codec_read(codec, nid,
4580                         0, AC_VERB_GET_PIN_WIDGET_CONTROL, 0x00);
4581         if (pin_ctl & flag)
4582                 snd_hda_codec_write_cache(codec, nid, 0,
4583                                           AC_VERB_SET_PIN_WIDGET_CONTROL,
4584                                           pin_ctl & ~flag);
4585 }
4586
4587 static inline int get_pin_presence(struct hda_codec *codec, hda_nid_t nid)
4588 {
4589         if (!nid)
4590                 return 0;
4591         return snd_hda_jack_detect(codec, nid);
4592 }
4593
4594 static void stac92xx_line_out_detect(struct hda_codec *codec,
4595                                      int presence)
4596 {
4597         struct sigmatel_spec *spec = codec->spec;
4598         struct auto_pin_cfg *cfg = &spec->autocfg;
4599         int i;
4600
4601         for (i = 0; i < cfg->line_outs; i++) {
4602                 if (presence)
4603                         break;
4604                 presence = get_pin_presence(codec, cfg->line_out_pins[i]);
4605                 if (presence) {
4606                         unsigned int pinctl;
4607                         pinctl = snd_hda_codec_read(codec,
4608                                                     cfg->line_out_pins[i], 0,
4609                                             AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
4610                         if (pinctl & AC_PINCTL_IN_EN)
4611                                 presence = 0; /* mic- or line-input */
4612                 }
4613         }
4614
4615         if (presence) {
4616                 /* disable speakers */
4617                 for (i = 0; i < cfg->speaker_outs; i++)
4618                         stac92xx_reset_pinctl(codec, cfg->speaker_pins[i],
4619                                                 AC_PINCTL_OUT_EN);
4620                 if (spec->eapd_mask && spec->eapd_switch)
4621                         stac_gpio_set(codec, spec->gpio_mask,
4622                                 spec->gpio_dir, spec->gpio_data &
4623                                 ~spec->eapd_mask);
4624         } else {
4625                 /* enable speakers */
4626                 for (i = 0; i < cfg->speaker_outs; i++)
4627                         stac92xx_set_pinctl(codec, cfg->speaker_pins[i],
4628                                                 AC_PINCTL_OUT_EN);
4629                 if (spec->eapd_mask && spec->eapd_switch)
4630                         stac_gpio_set(codec, spec->gpio_mask,
4631                                 spec->gpio_dir, spec->gpio_data |
4632                                 spec->eapd_mask);
4633         }
4634
4635
4636 /* return non-zero if the hp-pin of the given array index isn't
4637  * a jack-detection target
4638  */
4639 static int no_hp_sensing(struct sigmatel_spec *spec, int i)
4640 {
4641         struct auto_pin_cfg *cfg = &spec->autocfg;
4642
4643         /* ignore sensing of shared line and mic jacks */
4644         if (cfg->hp_pins[i] == spec->line_switch)
4645                 return 1;
4646         if (cfg->hp_pins[i] == spec->mic_switch)
4647                 return 1;
4648         /* ignore if the pin is set as line-out */
4649         if (cfg->hp_pins[i] == spec->hp_switch)
4650                 return 1;
4651         return 0;
4652 }
4653
4654 static void stac92xx_hp_detect(struct hda_codec *codec)
4655 {
4656         struct sigmatel_spec *spec = codec->spec;
4657         struct auto_pin_cfg *cfg = &spec->autocfg;
4658         int i, presence;
4659
4660         presence = 0;
4661         if (spec->gpio_mute)
4662                 presence = !(snd_hda_codec_read(codec, codec->afg, 0,
4663                         AC_VERB_GET_GPIO_DATA, 0) & spec->gpio_mute);
4664
4665         for (i = 0; i < cfg->hp_outs; i++) {
4666                 if (presence)
4667                         break;
4668                 if (no_hp_sensing(spec, i))
4669                         continue;
4670                 presence = get_pin_presence(codec, cfg->hp_pins[i]);
4671                 if (presence) {
4672                         unsigned int pinctl;
4673                         pinctl = snd_hda_codec_read(codec, cfg->hp_pins[i], 0,
4674                                             AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
4675                         if (pinctl & AC_PINCTL_IN_EN)
4676                                 presence = 0; /* mic- or line-input */
4677                 }
4678         }
4679
4680         if (presence) {
4681                 /* disable lineouts */
4682                 if (spec->hp_switch)
4683                         stac92xx_reset_pinctl(codec, spec->hp_switch,
4684                                               AC_PINCTL_OUT_EN);
4685                 for (i = 0; i < cfg->line_outs; i++)
4686                         stac92xx_reset_pinctl(codec, cfg->line_out_pins[i],
4687                                                 AC_PINCTL_OUT_EN);
4688         } else {
4689                 /* enable lineouts */
4690                 if (spec->hp_switch)
4691                         stac92xx_set_pinctl(codec, spec->hp_switch,
4692                                             AC_PINCTL_OUT_EN);
4693                 for (i = 0; i < cfg->line_outs; i++)
4694                         stac92xx_set_pinctl(codec, cfg->line_out_pins[i],
4695                                                 AC_PINCTL_OUT_EN);
4696         }
4697         stac92xx_line_out_detect(codec, presence);
4698         /* toggle hp outs */
4699         for (i = 0; i < cfg->hp_outs; i++) {
4700                 unsigned int val = AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN;
4701                 if (no_hp_sensing(spec, i))
4702                         continue;
4703                 if (presence)
4704                         stac92xx_set_pinctl(codec, cfg->hp_pins[i], val);
4705 #if 0 /* FIXME */
4706 /* Resetting the pinctl like below may lead to (a sort of) regressions
4707  * on some devices since they use the HP pin actually for line/speaker
4708  * outs although the default pin config shows a different pin (that is
4709  * wrong and useless).
4710  *
4711  * So, it's basically a problem of default pin configs, likely a BIOS issue.
4712  * But, disabling the code below just works around it, and I'm too tired of
4713  * bug reports with such devices... 
4714  */
4715                 else
4716                         stac92xx_reset_pinctl(codec, cfg->hp_pins[i], val);
4717 #endif /* FIXME */
4718         }
4719
4720
4721 static void stac_toggle_power_map(struct hda_codec *codec, hda_nid_t nid,
4722                                   int enable)
4723 {
4724         struct sigmatel_spec *spec = codec->spec;
4725         unsigned int idx, val;
4726
4727         for (idx = 0; idx < spec->num_pwrs; idx++) {
4728                 if (spec->pwr_nids[idx] == nid)
4729                         break;
4730         }
4731         if (idx >= spec->num_pwrs)
4732                 return;
4733
4734         idx = 1 << idx;
4735
4736         val = snd_hda_codec_read(codec, codec->afg, 0, 0x0fec, 0x0) & 0xff;
4737         if (enable)
4738                 val &= ~idx;
4739         else
4740                 val |= idx;
4741
4742         /* power down unused output ports */
4743         snd_hda_codec_write(codec, codec->afg, 0, 0x7ec, val);
4744 }
4745
4746 static void stac92xx_pin_sense(struct hda_codec *codec, hda_nid_t nid)
4747 {
4748         stac_toggle_power_map(codec, nid, get_pin_presence(codec, nid));
4749 }
4750
4751 /* get the pin connection (fixed, none, etc) */
4752 static unsigned int stac_get_defcfg_connect(struct hda_codec *codec, int idx)
4753 {
4754         struct sigmatel_spec *spec = codec->spec;
4755         unsigned int cfg;
4756
4757         cfg = snd_hda_codec_get_pincfg(codec, spec->pin_nids[idx]);
4758         return get_defcfg_connect(cfg);
4759 }
4760
4761 static int stac92xx_connected_ports(struct hda_codec *codec,
4762                                     const hda_nid_t *nids, int num_nids)
4763 {
4764         struct sigmatel_spec *spec = codec->spec;
4765         int idx, num;
4766         unsigned int def_conf;
4767
4768         for (num = 0; num < num_nids; num++) {
4769                 for (idx = 0; idx < spec->num_pins; idx++)
4770                         if (spec->pin_nids[idx] == nids[num])
4771                                 break;
4772                 if (idx >= spec->num_pins)
4773                         break;
4774                 def_conf = stac_get_defcfg_connect(codec, idx);
4775                 if (def_conf == AC_JACK_PORT_NONE)
4776                         break;
4777         }
4778         return num;
4779 }
4780
4781 static void stac92xx_mic_detect(struct hda_codec *codec)
4782 {
4783         struct sigmatel_spec *spec = codec->spec;
4784         struct sigmatel_mic_route *mic;
4785
4786         if (get_pin_presence(codec, spec->ext_mic.pin))
4787                 mic = &spec->ext_mic;
4788         else if (get_pin_presence(codec, spec->dock_mic.pin))
4789                 mic = &spec->dock_mic;
4790         else
4791                 mic = &spec->int_mic;
4792         if (mic->dmux_idx >= 0)
4793                 snd_hda_codec_write_cache(codec, spec->dmux_nids[0], 0,
4794                                           AC_VERB_SET_CONNECT_SEL,
4795                                           mic->dmux_idx);
4796         if (mic->mux_idx >= 0)
4797                 snd_hda_codec_write_cache(codec, spec->mux_nids[0], 0,
4798                                           AC_VERB_SET_CONNECT_SEL,
4799                                           mic->mux_idx);
4800 }
4801
4802 static void stac_issue_unsol_event(struct hda_codec *codec, hda_nid_t nid)
4803 {
4804         struct sigmatel_event *event = stac_get_event(codec, nid);
4805         if (!event)
4806                 return;
4807         codec->patch_ops.unsol_event(codec, (unsigned)event->tag << 26);
4808 }
4809
4810 static void stac92xx_unsol_event(struct hda_codec *codec, unsigned int res)
4811 {
4812         struct sigmatel_spec *spec = codec->spec;
4813         struct sigmatel_event *event;
4814         int tag, data;
4815
4816         tag = (res >> 26) & 0x7f;
4817         event = stac_get_event_from_tag(codec, tag);
4818         if (!event)
4819                 return;
4820
4821         switch (event->type) {
4822         case STAC_HP_EVENT:
4823         case STAC_LO_EVENT:
4824                 stac92xx_hp_detect(codec);
4825                 break;
4826         case STAC_MIC_EVENT:
4827                 stac92xx_mic_detect(codec);
4828                 break;
4829         }
4830
4831         switch (event->type) {
4832         case STAC_HP_EVENT:
4833         case STAC_LO_EVENT:
4834         case STAC_MIC_EVENT:
4835         case STAC_INSERT_EVENT:
4836         case STAC_PWR_EVENT:
4837                 if (spec->num_pwrs > 0)
4838                         stac92xx_pin_sense(codec, event->nid);
4839                 snd_hda_input_jack_report(codec, event->nid);
4840
4841                 switch (codec->subsystem_id) {
4842                 case 0x103c308f:
4843                         if (event->nid == 0xb) {
4844                                 int pin = AC_PINCTL_IN_EN;
4845
4846                                 if (get_pin_presence(codec, 0xa)
4847                                                 && get_pin_presence(codec, 0xb))
4848                                         pin |= AC_PINCTL_VREF_80;
4849                                 if (!get_pin_presence(codec, 0xb))
4850                                         pin |= AC_PINCTL_VREF_80;
4851
4852                                 /* toggle VREF state based on mic + hp pin
4853                                  * status
4854                                  */
4855                                 stac92xx_auto_set_pinctl(codec, 0x0a, pin);
4856                         }
4857                 }
4858                 break;
4859         case STAC_VREF_EVENT:
4860                 data = snd_hda_codec_read(codec, codec->afg, 0,
4861                                           AC_VERB_GET_GPIO_DATA, 0);
4862                 /* toggle VREF state based on GPIOx status */
4863                 snd_hda_codec_write(codec, codec->afg, 0, 0x7e0,
4864                                     !!(data & (1 << event->data)));
4865                 break;
4866         }
4867 }
4868
4869 static int hp_blike_system(u32 subsystem_id);
4870
4871 static void set_hp_led_gpio(struct hda_codec *codec)
4872 {
4873         struct sigmatel_spec *spec = codec->spec;
4874         unsigned int gpio;
4875
4876         if (spec->gpio_led)
4877                 return;
4878
4879         gpio = snd_hda_param_read(codec, codec->afg, AC_PAR_GPIO_CAP);
4880         gpio &= AC_GPIO_IO_COUNT;
4881         if (gpio > 3)
4882                 spec->gpio_led = 0x08; /* GPIO 3 */
4883         else
4884                 spec->gpio_led = 0x01; /* GPIO 0 */
4885 }
4886
4887 /*
4888  * This method searches for the mute LED GPIO configuration
4889  * provided as OEM string in SMBIOS. The format of that string
4890  * is HP_Mute_LED_P_G or HP_Mute_LED_P
4891  * where P can be 0 or 1 and defines mute LED GPIO control state (low/high)
4892  * that corresponds to the NOT muted state of the master volume
4893  * and G is the index of the GPIO to use as the mute LED control (0..9)
4894  * If _G portion is missing it is assigned based on the codec ID
4895  *
4896  * So, HP B-series like systems may have HP_Mute_LED_0 (current models)
4897  * or  HP_Mute_LED_0_3 (future models) OEM SMBIOS strings
4898  *
4899  *
4900  * The dv-series laptops don't seem to have the HP_Mute_LED* strings in
4901  * SMBIOS - at least the ones I have seen do not have them - which include
4902  * my own system (HP Pavilion dv6-1110ax) and my cousin's
4903  * HP Pavilion dv9500t CTO.
4904  * Need more information on whether it is true across the entire series.
4905  * -- kunal
4906  */
4907 static int find_mute_led_gpio(struct hda_codec *codec, int default_polarity)
4908 {
4909         struct sigmatel_spec *spec = codec->spec;
4910         const struct dmi_device *dev = NULL;
4911
4912         if ((codec->subsystem_id >> 16) == PCI_VENDOR_ID_HP) {
4913                 while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING,
4914                                                                 NULL, dev))) {
4915                         if (sscanf(dev->name, "HP_Mute_LED_%d_%x",
4916                                   &spec->gpio_led_polarity,
4917                                   &spec->gpio_led) == 2) {
4918                                 if (spec->gpio_led < 4)
4919                                         spec->gpio_led = 1 << spec->gpio_led;
4920                                 return 1;
4921                         }
4922                         if (sscanf(dev->name, "HP_Mute_LED_%d",
4923                                   &spec->gpio_led_polarity) == 1) {
4924                                 set_hp_led_gpio(codec);
4925                                 return 1;
4926                         }
4927                 }
4928
4929                 /*
4930                  * Fallback case - if we don't find the DMI strings,
4931                  * we statically set the GPIO - if not a B-series system.
4932                  */
4933                 if (!hp_blike_system(codec->subsystem_id)) {
4934                         set_hp_led_gpio(codec);
4935                         spec->gpio_led_polarity = default_polarity;
4936                         return 1;
4937                 }
4938         }
4939         return 0;
4940 }
4941
4942 static int hp_blike_system(u32 subsystem_id)
4943 {
4944         switch (subsystem_id) {
4945         case 0x103c1520:
4946         case 0x103c1521:
4947         case 0x103c1523:
4948         case 0x103c1524:
4949         case 0x103c1525:
4950         case 0x103c1722:
4951         case 0x103c1723:
4952         case 0x103c1724:
4953         case 0x103c1725:
4954         case 0x103c1726:
4955         case 0x103c1727:
4956         case 0x103c1728:
4957         case 0x103c1729:
4958         case 0x103c172a:
4959         case 0x103c172b:
4960         case 0x103c307e:
4961         case 0x103c307f:
4962         case 0x103c3080:
4963         case 0x103c3081:
4964         case 0x103c7007:
4965         case 0x103c7008:
4966                 return 1;
4967         }
4968         return 0;
4969 }
4970
4971 #ifdef CONFIG_PROC_FS
4972 static void stac92hd_proc_hook(struct snd_info_buffer *buffer,
4973                                struct hda_codec *codec, hda_nid_t nid)
4974 {
4975         if (nid == codec->afg)
4976                 snd_iprintf(buffer, "Power-Map: 0x%02x\n", 
4977                             snd_hda_codec_read(codec, nid, 0, 0x0fec, 0x0));
4978 }
4979
4980 static void analog_loop_proc_hook(struct snd_info_buffer *buffer,
4981                                   struct hda_codec *codec,
4982                                   unsigned int verb)
4983 {
4984         snd_iprintf(buffer, "Analog Loopback: 0x%02x\n",
4985                     snd_hda_codec_read(codec, codec->afg, 0, verb, 0));
4986 }
4987
4988 /* stac92hd71bxx, stac92hd73xx */
4989 static void stac92hd7x_proc_hook(struct snd_info_buffer *buffer,
4990                                  struct hda_codec *codec, hda_nid_t nid)
4991 {
4992         stac92hd_proc_hook(buffer, codec, nid);
4993         if (nid == codec->afg)
4994                 analog_loop_proc_hook(buffer, codec, 0xfa0);
4995 }
4996
4997 static void stac9205_proc_hook(struct snd_info_buffer *buffer,
4998                                struct hda_codec *codec, hda_nid_t nid)
4999 {
5000         if (nid == codec->afg)
5001                 analog_loop_proc_hook(buffer, codec, 0xfe0);
5002 }
5003
5004 static void stac927x_proc_hook(struct snd_info_buffer *buffer,
5005                                struct hda_codec *codec, hda_nid_t nid)
5006 {
5007         if (nid == codec->afg)
5008                 analog_loop_proc_hook(buffer, codec, 0xfeb);
5009 }
5010 #else
5011 #define stac92hd_proc_hook      NULL
5012 #define stac92hd7x_proc_hook    NULL
5013 #define stac9205_proc_hook      NULL
5014 #define stac927x_proc_hook      NULL
5015 #endif
5016
5017 #ifdef CONFIG_PM
5018 static int stac92xx_resume(struct hda_codec *codec)
5019 {
5020         struct sigmatel_spec *spec = codec->spec;
5021
5022         stac92xx_init(codec);
5023         snd_hda_codec_resume_amp(codec);
5024         snd_hda_codec_resume_cache(codec);
5025         /* fake event to set up pins again to override cached values */
5026         if (spec->hp_detect) {
5027                 if (spec->autocfg.hp_pins[0])
5028                         stac_issue_unsol_event(codec, spec->autocfg.hp_pins[0]);
5029                 else if (spec->autocfg.line_out_pins[0])
5030                         stac_issue_unsol_event(codec,
5031                                                spec->autocfg.line_out_pins[0]);
5032         }
5033         return 0;
5034 }
5035
5036 static int stac92xx_suspend(struct hda_codec *codec, pm_message_t state)
5037 {
5038         stac92xx_shutup(codec);
5039         return 0;
5040 }
5041
5042 #ifdef CONFIG_SND_HDA_POWER_SAVE
5043 static int stac92xx_pre_resume(struct hda_codec *codec)
5044 {
5045         struct sigmatel_spec *spec = codec->spec;
5046
5047         /* sync mute LED */
5048         if (spec->gpio_led) {
5049                 if (spec->gpio_led <= 8) {
5050                         stac_gpio_set(codec, spec->gpio_mask,
5051                                         spec->gpio_dir, spec->gpio_data);
5052                 } else {
5053                         stac_vrefout_set(codec,
5054                                         spec->gpio_led, spec->vref_led);
5055                 }
5056         }
5057         return 0;
5058 }
5059
5060 static void stac92xx_set_power_state(struct hda_codec *codec, hda_nid_t fg,
5061                                 unsigned int power_state)
5062 {
5063         unsigned int afg_power_state = power_state;
5064         struct sigmatel_spec *spec = codec->spec;
5065
5066         if (power_state == AC_PWRST_D3) {
5067                 if (spec->gpio_led > 8) {
5068                         /* with vref-out pin used for mute led control
5069                          * codec AFG is prevented from D3 state
5070                          */
5071                         afg_power_state = AC_PWRST_D1;
5072                 }
5073                 /* this delay seems necessary to avoid click noise at power-down */
5074                 msleep(100);
5075         }
5076         snd_hda_codec_read(codec, fg, 0, AC_VERB_SET_POWER_STATE,
5077                         afg_power_state);
5078         snd_hda_codec_set_power_to_all(codec, fg, power_state, true);
5079 }
5080
5081 /*
5082  * For this feature CONFIG_SND_HDA_POWER_SAVE is needed
5083  * as mute LED state is updated in check_power_status hook
5084  */
5085 static int stac92xx_update_led_status(struct hda_codec *codec)
5086 {
5087         struct sigmatel_spec *spec = codec->spec;
5088         int i, num_ext_dacs, muted = 1;
5089         unsigned int muted_lvl, notmtd_lvl;
5090         hda_nid_t nid;
5091
5092         if (!spec->gpio_led)
5093                 return 0;
5094
5095         for (i = 0; i < spec->multiout.num_dacs; i++) {
5096                 nid = spec->multiout.dac_nids[i];
5097                 if (!(snd_hda_codec_amp_read(codec, nid, 0, HDA_OUTPUT, 0) &
5098                       HDA_AMP_MUTE)) {
5099                         muted = 0; /* something heard */
5100                         break;
5101                 }
5102         }
5103         if (muted && spec->multiout.hp_nid)
5104                 if (!(snd_hda_codec_amp_read(codec,
5105                                 spec->multiout.hp_nid, 0, HDA_OUTPUT, 0) &
5106                                         HDA_AMP_MUTE)) {
5107                         muted = 0; /* HP is not muted */
5108                 }
5109         num_ext_dacs = ARRAY_SIZE(spec->multiout.extra_out_nid);
5110         for (i = 0; muted && i < num_ext_dacs; i++) {
5111                 nid = spec->multiout.extra_out_nid[i];
5112                 if (nid == 0)
5113                         break;
5114                 if (!(snd_hda_codec_amp_read(codec, nid, 0, HDA_OUTPUT, 0) &
5115                       HDA_AMP_MUTE)) {
5116                         muted = 0; /* extra output is not muted */
5117                 }
5118         }
5119         /*polarity defines *not* muted state level*/
5120         if (spec->gpio_led <= 8) {
5121                 if (muted)
5122                         spec->gpio_data &= ~spec->gpio_led; /* orange */
5123                 else
5124                         spec->gpio_data |= spec->gpio_led; /* white */
5125
5126                 if (!spec->gpio_led_polarity) {
5127                         /* LED state is inverted on these systems */
5128                         spec->gpio_data ^= spec->gpio_led;
5129                 }
5130                 stac_gpio_set(codec, spec->gpio_mask,
5131                                 spec->gpio_dir, spec->gpio_data);
5132         } else {
5133                 notmtd_lvl = spec->gpio_led_polarity ?
5134                                 AC_PINCTL_VREF_HIZ : AC_PINCTL_VREF_GRD;
5135                 muted_lvl = spec->gpio_led_polarity ?
5136                                 AC_PINCTL_VREF_GRD : AC_PINCTL_VREF_HIZ;
5137                 spec->vref_led = muted ? muted_lvl : notmtd_lvl;
5138                 stac_vrefout_set(codec, spec->gpio_led, spec->vref_led);
5139         }
5140         return 0;
5141 }
5142
5143 /*
5144  * use power check for controlling mute led of HP notebooks
5145  */
5146 static int stac92xx_check_power_status(struct hda_codec *codec,
5147                                               hda_nid_t nid)
5148 {
5149         stac92xx_update_led_status(codec);
5150
5151         return 0;
5152 }
5153 #endif /* CONFIG_SND_HDA_POWER_SAVE */
5154 #endif /* CONFIG_PM */
5155
5156 static const struct hda_codec_ops stac92xx_patch_ops = {
5157         .build_controls = stac92xx_build_controls,
5158         .build_pcms = stac92xx_build_pcms,
5159         .init = stac92xx_init,
5160         .free = stac92xx_free,
5161         .unsol_event = stac92xx_unsol_event,
5162 #ifdef CONFIG_PM
5163         .suspend = stac92xx_suspend,
5164         .resume = stac92xx_resume,
5165 #endif
5166         .reboot_notify = stac92xx_shutup,
5167 };
5168
5169 static int patch_stac9200(struct hda_codec *codec)
5170 {
5171         struct sigmatel_spec *spec;
5172         int err;
5173
5174         spec  = kzalloc(sizeof(*spec), GFP_KERNEL);
5175         if (spec == NULL)
5176                 return -ENOMEM;
5177
5178         codec->no_trigger_sense = 1;
5179         codec->spec = spec;
5180         spec->linear_tone_beep = 1;
5181         spec->num_pins = ARRAY_SIZE(stac9200_pin_nids);
5182         spec->pin_nids = stac9200_pin_nids;
5183         spec->board_config = snd_hda_check_board_config(codec, STAC_9200_MODELS,
5184                                                         stac9200_models,
5185                                                         stac9200_cfg_tbl);
5186         if (spec->board_config < 0)
5187                 snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
5188                             codec->chip_name);
5189         else
5190                 stac92xx_set_config_regs(codec,
5191                                          stac9200_brd_tbl[spec->board_config]);
5192
5193         spec->multiout.max_channels = 2;
5194         spec->multiout.num_dacs = 1;
5195         spec->multiout.dac_nids = stac9200_dac_nids;
5196         spec->adc_nids = stac9200_adc_nids;
5197         spec->mux_nids = stac9200_mux_nids;
5198         spec->num_muxes = 1;
5199         spec->num_dmics = 0;
5200         spec->num_adcs = 1;
5201         spec->num_pwrs = 0;
5202
5203         if (spec->board_config == STAC_9200_M4 ||
5204             spec->board_config == STAC_9200_M4_2 ||
5205             spec->board_config == STAC_9200_OQO)
5206                 spec->init = stac9200_eapd_init;
5207         else
5208                 spec->init = stac9200_core_init;
5209         spec->mixer = stac9200_mixer;
5210
5211         if (spec->board_config == STAC_9200_PANASONIC) {
5212                 spec->gpio_mask = spec->gpio_dir = 0x09;
5213                 spec->gpio_data = 0x00;
5214         }
5215
5216         err = stac9200_parse_auto_config(codec);
5217         if (err < 0) {
5218                 stac92xx_free(codec);
5219                 return err;
5220         }
5221
5222         /* CF-74 has no headphone detection, and the driver should *NOT*
5223          * do detection and HP/speaker toggle because the hardware does it.
5224          */
5225         if (spec->board_config == STAC_9200_PANASONIC)
5226                 spec->hp_detect = 0;
5227
5228         codec->patch_ops = stac92xx_patch_ops;
5229
5230         return 0;
5231 }
5232
5233 static int patch_stac925x(struct hda_codec *codec)
5234 {
5235         struct sigmatel_spec *spec;
5236         int err;
5237
5238         spec  = kzalloc(sizeof(*spec), GFP_KERNEL);
5239         if (spec == NULL)
5240                 return -ENOMEM;
5241
5242         codec->no_trigger_sense = 1;
5243         codec->spec = spec;
5244         spec->linear_tone_beep = 1;
5245         spec->num_pins = ARRAY_SIZE(stac925x_pin_nids);
5246         spec->pin_nids = stac925x_pin_nids;
5247
5248         /* Check first for codec ID */
5249         spec->board_config = snd_hda_check_board_codec_sid_config(codec,
5250                                                         STAC_925x_MODELS,
5251                                                         stac925x_models,
5252                                                         stac925x_codec_id_cfg_tbl);
5253
5254         /* Now checks for PCI ID, if codec ID is not found */
5255         if (spec->board_config < 0)
5256                 spec->board_config = snd_hda_check_board_config(codec,
5257                                                         STAC_925x_MODELS,
5258                                                         stac925x_models,
5259                                                         stac925x_cfg_tbl);
5260  again:
5261         if (spec->board_config < 0)
5262                 snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
5263                             codec->chip_name);
5264         else
5265                 stac92xx_set_config_regs(codec,
5266                                          stac925x_brd_tbl[spec->board_config]);
5267
5268         spec->multiout.max_channels = 2;
5269         spec->multiout.num_dacs = 1;
5270         spec->multiout.dac_nids = stac925x_dac_nids;
5271         spec->adc_nids = stac925x_adc_nids;
5272         spec->mux_nids = stac925x_mux_nids;
5273         spec->num_muxes = 1;
5274         spec->num_adcs = 1;
5275         spec->num_pwrs = 0;
5276         switch (codec->vendor_id) {
5277         case 0x83847632: /* STAC9202  */
5278         case 0x83847633: /* STAC9202D */
5279         case 0x83847636: /* STAC9251  */
5280         case 0x83847637: /* STAC9251D */
5281                 spec->num_dmics = STAC925X_NUM_DMICS;
5282                 spec->dmic_nids = stac925x_dmic_nids;
5283                 spec->num_dmuxes = ARRAY_SIZE(stac925x_dmux_nids);
5284                 spec->dmux_nids = stac925x_dmux_nids;
5285                 break;
5286         default:
5287                 spec->num_dmics = 0;
5288                 break;
5289         }
5290
5291         spec->init = stac925x_core_init;
5292         spec->mixer = stac925x_mixer;
5293         spec->num_caps = 1;
5294         spec->capvols = stac925x_capvols;
5295         spec->capsws = stac925x_capsws;
5296
5297         err = stac92xx_parse_auto_config(codec);
5298         if (!err) {
5299                 if (spec->board_config < 0) {
5300                         printk(KERN_WARNING "hda_codec: No auto-config is "
5301                                "available, default to model=ref\n");
5302                         spec->board_config = STAC_925x_REF;
5303                         goto again;
5304                 }
5305                 err = -EINVAL;
5306         }
5307         if (err < 0) {
5308                 stac92xx_free(codec);
5309                 return err;
5310         }
5311
5312         codec->patch_ops = stac92xx_patch_ops;
5313
5314         return 0;
5315 }
5316
5317 static int patch_stac92hd73xx(struct hda_codec *codec)
5318 {
5319         struct sigmatel_spec *spec;
5320         hda_nid_t conn[STAC92HD73_DAC_COUNT + 2];
5321         int err = 0;
5322         int num_dacs;
5323
5324         spec  = kzalloc(sizeof(*spec), GFP_KERNEL);
5325         if (spec == NULL)
5326                 return -ENOMEM;
5327
5328         codec->no_trigger_sense = 1;
5329         codec->spec = spec;
5330         spec->linear_tone_beep = 0;
5331         codec->slave_dig_outs = stac92hd73xx_slave_dig_outs;
5332         spec->num_pins = ARRAY_SIZE(stac92hd73xx_pin_nids);
5333         spec->pin_nids = stac92hd73xx_pin_nids;
5334         spec->board_config = snd_hda_check_board_config(codec,
5335                                                         STAC_92HD73XX_MODELS,
5336                                                         stac92hd73xx_models,
5337                                                         stac92hd73xx_cfg_tbl);
5338         /* check codec subsystem id if not found */
5339         if (spec->board_config < 0)
5340                 spec->board_config =
5341                         snd_hda_check_board_codec_sid_config(codec,
5342                                 STAC_92HD73XX_MODELS, stac92hd73xx_models,
5343                                 stac92hd73xx_codec_id_cfg_tbl);
5344 again:
5345         if (spec->board_config < 0)
5346                 snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
5347                             codec->chip_name);
5348         else
5349                 stac92xx_set_config_regs(codec,
5350                                 stac92hd73xx_brd_tbl[spec->board_config]);
5351
5352         num_dacs = snd_hda_get_connections(codec, 0x0a,
5353                         conn, STAC92HD73_DAC_COUNT + 2) - 1;
5354
5355         if (num_dacs < 3 || num_dacs > 5) {
5356                 printk(KERN_WARNING "hda_codec: Could not determine "
5357                        "number of channels defaulting to DAC count\n");
5358                 num_dacs = STAC92HD73_DAC_COUNT;
5359         }
5360         spec->init = stac92hd73xx_core_init;
5361         switch (num_dacs) {
5362         case 0x3: /* 6 Channel */
5363                 spec->aloopback_ctl = stac92hd73xx_6ch_loopback;
5364                 break;
5365         case 0x4: /* 8 Channel */
5366                 spec->aloopback_ctl = stac92hd73xx_8ch_loopback;
5367                 break;
5368         case 0x5: /* 10 Channel */
5369                 spec->aloopback_ctl = stac92hd73xx_10ch_loopback;
5370                 break;
5371         }
5372         spec->multiout.dac_nids = spec->dac_nids;
5373
5374         spec->aloopback_mask = 0x01;
5375         spec->aloopback_shift = 8;
5376
5377         spec->digbeep_nid = 0x1c;
5378         spec->mux_nids = stac92hd73xx_mux_nids;
5379         spec->adc_nids = stac92hd73xx_adc_nids;
5380         spec->dmic_nids = stac92hd73xx_dmic_nids;
5381         spec->dmux_nids = stac92hd73xx_dmux_nids;
5382         spec->smux_nids = stac92hd73xx_smux_nids;
5383
5384         spec->num_muxes = ARRAY_SIZE(stac92hd73xx_mux_nids);
5385         spec->num_adcs = ARRAY_SIZE(stac92hd73xx_adc_nids);
5386         spec->num_dmuxes = ARRAY_SIZE(stac92hd73xx_dmux_nids);
5387
5388         spec->num_caps = STAC92HD73XX_NUM_CAPS;
5389         spec->capvols = stac92hd73xx_capvols;
5390         spec->capsws = stac92hd73xx_capsws;
5391
5392         switch (spec->board_config) {
5393         case STAC_DELL_EQ:
5394                 spec->init = dell_eq_core_init;
5395                 /* fallthru */
5396         case STAC_DELL_M6_AMIC:
5397         case STAC_DELL_M6_DMIC:
5398         case STAC_DELL_M6_BOTH:
5399                 spec->num_smuxes = 0;
5400                 spec->eapd_switch = 0;
5401
5402                 switch (spec->board_config) {
5403                 case STAC_DELL_M6_AMIC: /* Analog Mics */
5404                         snd_hda_codec_set_pincfg(codec, 0x0b, 0x90A70170);
5405                         spec->num_dmics = 0;
5406                         break;
5407                 case STAC_DELL_M6_DMIC: /* Digital Mics */
5408                         snd_hda_codec_set_pincfg(codec, 0x13, 0x90A60160);
5409                         spec->num_dmics = 1;
5410                         break;
5411                 case STAC_DELL_M6_BOTH: /* Both */
5412                         snd_hda_codec_set_pincfg(codec, 0x0b, 0x90A70170);
5413                         snd_hda_codec_set_pincfg(codec, 0x13, 0x90A60160);
5414                         spec->num_dmics = 1;
5415                         break;
5416                 }
5417                 break;
5418         case STAC_ALIENWARE_M17X:
5419                 spec->num_dmics = STAC92HD73XX_NUM_DMICS;
5420                 spec->num_smuxes = ARRAY_SIZE(stac92hd73xx_smux_nids);
5421                 spec->eapd_switch = 0;
5422                 break;
5423         default:
5424                 spec->num_dmics = STAC92HD73XX_NUM_DMICS;
5425                 spec->num_smuxes = ARRAY_SIZE(stac92hd73xx_smux_nids);
5426                 spec->eapd_switch = 1;
5427                 break;
5428         }
5429         if (spec->board_config != STAC_92HD73XX_REF) {
5430                 /* GPIO0 High = Enable EAPD */
5431                 spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0x1;
5432                 spec->gpio_data = 0x01;
5433         }
5434
5435         spec->num_pwrs = ARRAY_SIZE(stac92hd73xx_pwr_nids);
5436         spec->pwr_nids = stac92hd73xx_pwr_nids;
5437
5438         err = stac92xx_parse_auto_config(codec);
5439
5440         if (!err) {
5441                 if (spec->board_config < 0) {
5442                         printk(KERN_WARNING "hda_codec: No auto-config is "
5443                                "available, default to model=ref\n");
5444                         spec->board_config = STAC_92HD73XX_REF;
5445                         goto again;
5446                 }
5447                 err = -EINVAL;
5448         }
5449
5450         if (err < 0) {
5451                 stac92xx_free(codec);
5452                 return err;
5453         }
5454
5455         if (spec->board_config == STAC_92HD73XX_NO_JD)
5456                 spec->hp_detect = 0;
5457
5458         codec->patch_ops = stac92xx_patch_ops;
5459
5460         codec->proc_widget_hook = stac92hd7x_proc_hook;
5461
5462         return 0;
5463 }
5464
5465 static int hp_bnb2011_with_dock(struct hda_codec *codec)
5466 {
5467         if (codec->vendor_id != 0x111d7605 &&
5468             codec->vendor_id != 0x111d76d1)
5469                 return 0;
5470
5471         switch (codec->subsystem_id) {
5472         case 0x103c1618:
5473         case 0x103c1619:
5474         case 0x103c161a:
5475         case 0x103c161b:
5476         case 0x103c161c:
5477         case 0x103c161d:
5478         case 0x103c161e:
5479         case 0x103c161f:
5480
5481         case 0x103c162a:
5482         case 0x103c162b:
5483
5484         case 0x103c1630:
5485         case 0x103c1631:
5486
5487         case 0x103c1633:
5488         case 0x103c1634:
5489         case 0x103c1635:
5490
5491         case 0x103c3587:
5492         case 0x103c3588:
5493         case 0x103c3589:
5494         case 0x103c358a:
5495
5496         case 0x103c3667:
5497         case 0x103c3668:
5498         case 0x103c3669:
5499
5500                 return 1;
5501         }
5502         return 0;
5503 }
5504
5505 static void stac92hd8x_add_pin(struct hda_codec *codec, hda_nid_t nid)
5506 {
5507         struct sigmatel_spec *spec = codec->spec;
5508         unsigned int def_conf = snd_hda_codec_get_pincfg(codec, nid);
5509         int i;
5510
5511         spec->auto_pin_nids[spec->auto_pin_cnt] = nid;
5512         spec->auto_pin_cnt++;
5513
5514         if (get_defcfg_device(def_conf) == AC_JACK_MIC_IN &&
5515             get_defcfg_connect(def_conf) != AC_JACK_PORT_NONE) {
5516                 for (i = 0; i < ARRAY_SIZE(stac92hd83xxx_dmic_nids); i++) {
5517                         if (nid == stac92hd83xxx_dmic_nids[i]) {
5518                                 spec->auto_dmic_nids[spec->auto_dmic_cnt] = nid;
5519                                 spec->auto_dmic_cnt++;
5520                         }
5521                 }
5522         }
5523 }
5524
5525 static void stac92hd8x_add_adc(struct hda_codec *codec, hda_nid_t nid)
5526 {
5527         struct sigmatel_spec *spec = codec->spec;
5528
5529         spec->auto_adc_nids[spec->auto_adc_cnt] = nid;
5530         spec->auto_adc_cnt++;
5531 }
5532
5533 static void stac92hd8x_add_mux(struct hda_codec *codec, hda_nid_t nid)
5534 {
5535         int i, j;
5536         struct sigmatel_spec *spec = codec->spec;
5537
5538         for (i = 0; i < spec->auto_adc_cnt; i++) {
5539                 if (get_connection_index(codec,
5540                                 spec->auto_adc_nids[i], nid) >= 0) {
5541                         /* mux and volume for adc_nids[i] */
5542                         if (!spec->auto_mux_nids[i]) {
5543                                 spec->auto_mux_nids[i] = nid;
5544                                 /* 92hd codecs capture volume is in mux */
5545                                 spec->auto_capvols[i] = HDA_COMPOSE_AMP_VAL(nid,
5546                                                         3, 0, HDA_OUTPUT);
5547                         }
5548                         for (j = 0; j < spec->auto_dmic_cnt; j++) {
5549                                 if (get_connection_index(codec, nid,
5550                                                 spec->auto_dmic_nids[j]) >= 0) {
5551                                         /* dmux for adc_nids[i] */
5552                                         if (!spec->auto_dmux_nids[i])
5553                                                 spec->auto_dmux_nids[i] = nid;
5554                                         break;
5555                                 }
5556                         }
5557                         break;
5558                 }
5559         }
5560 }
5561
5562 static void stac92hd8x_fill_auto_spec(struct hda_codec *codec)
5563 {
5564         hda_nid_t nid, end_nid;
5565         unsigned int wid_caps, wid_type;
5566         struct sigmatel_spec *spec = codec->spec;
5567
5568         end_nid = codec->start_nid + codec->num_nodes;
5569
5570         for (nid = codec->start_nid; nid < end_nid; nid++) {
5571                 wid_caps = get_wcaps(codec, nid);
5572                 wid_type = get_wcaps_type(wid_caps);
5573
5574                 if (wid_type == AC_WID_PIN)
5575                         stac92hd8x_add_pin(codec, nid);
5576
5577                 if (wid_type == AC_WID_AUD_IN && !(wid_caps & AC_WCAP_DIGITAL))
5578                         stac92hd8x_add_adc(codec, nid);
5579         }
5580
5581         for (nid = codec->start_nid; nid < end_nid; nid++) {
5582                 wid_caps = get_wcaps(codec, nid);
5583                 wid_type = get_wcaps_type(wid_caps);
5584
5585                 if (wid_type == AC_WID_AUD_SEL)
5586                         stac92hd8x_add_mux(codec, nid);
5587         }
5588
5589         spec->pin_nids = spec->auto_pin_nids;
5590         spec->num_pins = spec->auto_pin_cnt;
5591         spec->adc_nids = spec->auto_adc_nids;
5592         spec->num_adcs = spec->auto_adc_cnt;
5593         spec->capvols = spec->auto_capvols;
5594         spec->capsws = spec->auto_capvols;
5595         spec->num_caps = spec->auto_adc_cnt;
5596         spec->mux_nids = spec->auto_mux_nids;
5597         spec->num_muxes = spec->auto_adc_cnt;
5598         spec->dmux_nids = spec->auto_dmux_nids;
5599         spec->num_dmuxes = spec->auto_adc_cnt;
5600         spec->dmic_nids = spec->auto_dmic_nids;
5601         spec->num_dmics = spec->auto_dmic_cnt;
5602 }
5603
5604 static int patch_stac92hd83xxx(struct hda_codec *codec)
5605 {
5606         struct sigmatel_spec *spec;
5607         int err;
5608
5609         spec  = kzalloc(sizeof(*spec), GFP_KERNEL);
5610         if (spec == NULL)
5611                 return -ENOMEM;
5612
5613         if (hp_bnb2011_with_dock(codec)) {
5614                 snd_hda_codec_set_pincfg(codec, 0xa, 0x2101201f);
5615                 snd_hda_codec_set_pincfg(codec, 0xf, 0x2181205e);
5616         }
5617
5618         codec->no_trigger_sense = 1;
5619         codec->spec = spec;
5620
5621         stac92hd8x_fill_auto_spec(codec);
5622
5623         spec->linear_tone_beep = 0;
5624         codec->slave_dig_outs = stac92hd83xxx_slave_dig_outs;
5625         spec->digbeep_nid = 0x21;
5626         spec->pwr_nids = stac92hd83xxx_pwr_nids;
5627         spec->num_pwrs = ARRAY_SIZE(stac92hd83xxx_pwr_nids);
5628         spec->multiout.dac_nids = spec->dac_nids;
5629         spec->init = stac92hd83xxx_core_init;
5630
5631         spec->board_config = snd_hda_check_board_config(codec,
5632                                                         STAC_92HD83XXX_MODELS,
5633                                                         stac92hd83xxx_models,
5634                                                         stac92hd83xxx_cfg_tbl);
5635 again:
5636         if (spec->board_config < 0)
5637                 snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
5638                             codec->chip_name);
5639         else
5640                 stac92xx_set_config_regs(codec,
5641                                 stac92hd83xxx_brd_tbl[spec->board_config]);
5642
5643         codec->patch_ops = stac92xx_patch_ops;
5644
5645         if (find_mute_led_gpio(codec, 0))
5646                 snd_printd("mute LED gpio %d polarity %d\n",
5647                                 spec->gpio_led,
5648                                 spec->gpio_led_polarity);
5649
5650 #ifdef CONFIG_SND_HDA_POWER_SAVE
5651         if (spec->gpio_led) {
5652                 if (spec->gpio_led <= 8) {
5653                         spec->gpio_mask |= spec->gpio_led;
5654                         spec->gpio_dir |= spec->gpio_led;
5655                         spec->gpio_data |= spec->gpio_led;
5656                 } else {
5657                         codec->patch_ops.set_power_state =
5658                                         stac92xx_set_power_state;
5659                 }
5660                 codec->patch_ops.pre_resume = stac92xx_pre_resume;
5661                 codec->patch_ops.check_power_status =
5662                         stac92xx_check_power_status;
5663         }
5664 #endif  
5665
5666         err = stac92xx_parse_auto_config(codec);
5667         if (!err) {
5668                 if (spec->board_config < 0) {
5669                         printk(KERN_WARNING "hda_codec: No auto-config is "
5670                                "available, default to model=ref\n");
5671                         spec->board_config = STAC_92HD83XXX_REF;
5672                         goto again;
5673                 }
5674                 err = -EINVAL;
5675         }
5676
5677         if (err < 0) {
5678                 stac92xx_free(codec);
5679                 return err;
5680         }
5681
5682         codec->proc_widget_hook = stac92hd_proc_hook;
5683
5684         return 0;
5685 }
5686
5687 static int stac92hd71bxx_connected_smuxes(struct hda_codec *codec,
5688                                           hda_nid_t dig0pin)
5689 {
5690         struct sigmatel_spec *spec = codec->spec;
5691         int idx;
5692
5693         for (idx = 0; idx < spec->num_pins; idx++)
5694                 if (spec->pin_nids[idx] == dig0pin)
5695                         break;
5696         if ((idx + 2) >= spec->num_pins)
5697                 return 0;
5698
5699         /* dig1pin case */
5700         if (stac_get_defcfg_connect(codec, idx + 1) != AC_JACK_PORT_NONE)
5701                 return 2;
5702
5703         /* dig0pin + dig2pin case */
5704         if (stac_get_defcfg_connect(codec, idx + 2) != AC_JACK_PORT_NONE)
5705                 return 2;
5706         if (stac_get_defcfg_connect(codec, idx) != AC_JACK_PORT_NONE)
5707                 return 1;
5708         else
5709                 return 0;
5710 }
5711
5712 /* HP dv7 bass switch - GPIO5 */
5713 #define stac_hp_bass_gpio_info  snd_ctl_boolean_mono_info
5714 static int stac_hp_bass_gpio_get(struct snd_kcontrol *kcontrol,
5715                                  struct snd_ctl_elem_value *ucontrol)
5716 {
5717         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
5718         struct sigmatel_spec *spec = codec->spec;
5719         ucontrol->value.integer.value[0] = !!(spec->gpio_data & 0x20);
5720         return 0;
5721 }
5722
5723 static int stac_hp_bass_gpio_put(struct snd_kcontrol *kcontrol,
5724                                  struct snd_ctl_elem_value *ucontrol)
5725 {
5726         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
5727         struct sigmatel_spec *spec = codec->spec;
5728         unsigned int gpio_data;
5729
5730         gpio_data = (spec->gpio_data & ~0x20) |
5731                 (ucontrol->value.integer.value[0] ? 0x20 : 0);
5732         if (gpio_data == spec->gpio_data)
5733                 return 0;
5734         spec->gpio_data = gpio_data;
5735         stac_gpio_set(codec, spec->gpio_mask, spec->gpio_dir, spec->gpio_data);
5736         return 1;
5737 }
5738
5739 static const struct snd_kcontrol_new stac_hp_bass_sw_ctrl = {
5740         .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5741         .info = stac_hp_bass_gpio_info,
5742         .get = stac_hp_bass_gpio_get,
5743         .put = stac_hp_bass_gpio_put,
5744 };
5745
5746 static int stac_add_hp_bass_switch(struct hda_codec *codec)
5747 {
5748         struct sigmatel_spec *spec = codec->spec;
5749
5750         if (!stac_control_new(spec, &stac_hp_bass_sw_ctrl,
5751                               "Bass Speaker Playback Switch", 0))
5752                 return -ENOMEM;
5753
5754         spec->gpio_mask |= 0x20;
5755         spec->gpio_dir |= 0x20;
5756         spec->gpio_data |= 0x20;
5757         return 0;
5758 }
5759
5760 static int patch_stac92hd71bxx(struct hda_codec *codec)
5761 {
5762         struct sigmatel_spec *spec;
5763         const struct hda_verb *unmute_init = stac92hd71bxx_unmute_core_init;
5764         unsigned int pin_cfg;
5765         int err = 0;
5766
5767         spec  = kzalloc(sizeof(*spec), GFP_KERNEL);
5768         if (spec == NULL)
5769                 return -ENOMEM;
5770
5771         codec->no_trigger_sense = 1;
5772         codec->spec = spec;
5773         spec->linear_tone_beep = 0;
5774         codec->patch_ops = stac92xx_patch_ops;
5775         spec->num_pins = STAC92HD71BXX_NUM_PINS;
5776         switch (codec->vendor_id) {
5777         case 0x111d76b6:
5778         case 0x111d76b7:
5779                 spec->pin_nids = stac92hd71bxx_pin_nids_4port;
5780                 break;
5781         case 0x111d7603:
5782         case 0x111d7608:
5783                 /* On 92HD75Bx 0x27 isn't a pin nid */
5784                 spec->num_pins--;
5785                 /* fallthrough */
5786         default:
5787                 spec->pin_nids = stac92hd71bxx_pin_nids_6port;
5788         }
5789         spec->num_pwrs = ARRAY_SIZE(stac92hd71bxx_pwr_nids);
5790         spec->board_config = snd_hda_check_board_config(codec,
5791                                                         STAC_92HD71BXX_MODELS,
5792                                                         stac92hd71bxx_models,
5793                                                         stac92hd71bxx_cfg_tbl);
5794 again:
5795         if (spec->board_config < 0)
5796                 snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
5797                             codec->chip_name);
5798         else
5799                 stac92xx_set_config_regs(codec,
5800                                 stac92hd71bxx_brd_tbl[spec->board_config]);
5801
5802         if (spec->board_config != STAC_92HD71BXX_REF) {
5803                 /* GPIO0 = EAPD */
5804                 spec->gpio_mask = 0x01;
5805                 spec->gpio_dir = 0x01;
5806                 spec->gpio_data = 0x01;
5807         }
5808
5809         spec->dmic_nids = stac92hd71bxx_dmic_nids;
5810         spec->dmux_nids = stac92hd71bxx_dmux_nids;
5811
5812         spec->num_caps = STAC92HD71BXX_NUM_CAPS;
5813         spec->capvols = stac92hd71bxx_capvols;
5814         spec->capsws = stac92hd71bxx_capsws;
5815
5816         switch (codec->vendor_id) {
5817         case 0x111d76b6: /* 4 Port without Analog Mixer */
5818         case 0x111d76b7:
5819                 unmute_init++;
5820                 /* fallthru */
5821         case 0x111d76b4: /* 6 Port without Analog Mixer */
5822         case 0x111d76b5:
5823                 spec->init = stac92hd71bxx_core_init;
5824                 codec->slave_dig_outs = stac92hd71bxx_slave_dig_outs;
5825                 spec->num_dmics = stac92xx_connected_ports(codec,
5826                                         stac92hd71bxx_dmic_nids,
5827                                         STAC92HD71BXX_NUM_DMICS);
5828                 break;
5829         case 0x111d7608: /* 5 Port with Analog Mixer */
5830                 switch (spec->board_config) {
5831                 case STAC_HP_M4:
5832                         /* Enable VREF power saving on GPIO1 detect */
5833                         err = stac_add_event(spec, codec->afg,
5834                                              STAC_VREF_EVENT, 0x02);
5835                         if (err < 0)
5836                                 return err;
5837                         snd_hda_codec_write_cache(codec, codec->afg, 0,
5838                                 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x02);
5839                         snd_hda_codec_write_cache(codec, codec->afg, 0,
5840                                 AC_VERB_SET_UNSOLICITED_ENABLE,
5841                                 AC_USRSP_EN | err);
5842                         spec->gpio_mask |= 0x02;
5843                         break;
5844                 }
5845                 if ((codec->revision_id & 0xf) == 0 ||
5846                     (codec->revision_id & 0xf) == 1)
5847                         spec->stream_delay = 40; /* 40 milliseconds */
5848
5849                 /* disable VSW */
5850                 spec->init = stac92hd71bxx_core_init;
5851                 unmute_init++;
5852                 snd_hda_codec_set_pincfg(codec, 0x0f, 0x40f000f0);
5853                 snd_hda_codec_set_pincfg(codec, 0x19, 0x40f000f3);
5854                 spec->dmic_nids = stac92hd71bxx_dmic_5port_nids;
5855                 spec->num_dmics = stac92xx_connected_ports(codec,
5856                                         stac92hd71bxx_dmic_5port_nids,
5857                                         STAC92HD71BXX_NUM_DMICS - 1);
5858                 break;
5859         case 0x111d7603: /* 6 Port with Analog Mixer */
5860                 if ((codec->revision_id & 0xf) == 1)
5861                         spec->stream_delay = 40; /* 40 milliseconds */
5862
5863                 /* fallthru */
5864         default:
5865                 spec->init = stac92hd71bxx_core_init;
5866                 codec->slave_dig_outs = stac92hd71bxx_slave_dig_outs;
5867                 spec->num_dmics = stac92xx_connected_ports(codec,
5868                                         stac92hd71bxx_dmic_nids,
5869                                         STAC92HD71BXX_NUM_DMICS);
5870                 break;
5871         }
5872
5873         if (get_wcaps(codec, 0xa) & AC_WCAP_IN_AMP)
5874                 snd_hda_sequence_write_cache(codec, unmute_init);
5875
5876         spec->aloopback_ctl = stac92hd71bxx_loopback;
5877         spec->aloopback_mask = 0x50;
5878         spec->aloopback_shift = 0;
5879
5880         spec->powerdown_adcs = 1;
5881         spec->digbeep_nid = 0x26;
5882         spec->mux_nids = stac92hd71bxx_mux_nids;
5883         spec->adc_nids = stac92hd71bxx_adc_nids;
5884         spec->smux_nids = stac92hd71bxx_smux_nids;
5885         spec->pwr_nids = stac92hd71bxx_pwr_nids;
5886
5887         spec->num_muxes = ARRAY_SIZE(stac92hd71bxx_mux_nids);
5888         spec->num_adcs = ARRAY_SIZE(stac92hd71bxx_adc_nids);
5889         spec->num_dmuxes = ARRAY_SIZE(stac92hd71bxx_dmux_nids);
5890         spec->num_smuxes = stac92hd71bxx_connected_smuxes(codec, 0x1e);
5891
5892         snd_printdd("Found board config: %d\n", spec->board_config);
5893
5894         switch (spec->board_config) {
5895         case STAC_HP_M4:
5896                 /* enable internal microphone */
5897                 snd_hda_codec_set_pincfg(codec, 0x0e, 0x01813040);
5898                 stac92xx_auto_set_pinctl(codec, 0x0e,
5899                         AC_PINCTL_IN_EN | AC_PINCTL_VREF_80);
5900                 /* fallthru */
5901         case STAC_DELL_M4_2:
5902                 spec->num_dmics = 0;
5903                 spec->num_smuxes = 0;
5904                 spec->num_dmuxes = 0;
5905                 break;
5906         case STAC_DELL_M4_1:
5907         case STAC_DELL_M4_3:
5908                 spec->num_dmics = 1;
5909                 spec->num_smuxes = 0;
5910                 spec->num_dmuxes = 1;
5911                 break;
5912         case STAC_HP_DV4_1222NR:
5913                 spec->num_dmics = 1;
5914                 /* I don't know if it needs 1 or 2 smuxes - will wait for
5915                  * bug reports to fix if needed
5916                  */
5917                 spec->num_smuxes = 1;
5918                 spec->num_dmuxes = 1;
5919                 /* fallthrough */
5920         case STAC_HP_DV4:
5921                 spec->gpio_led = 0x01;
5922                 /* fallthrough */
5923         case STAC_HP_DV5:
5924                 snd_hda_codec_set_pincfg(codec, 0x0d, 0x90170010);
5925                 stac92xx_auto_set_pinctl(codec, 0x0d, AC_PINCTL_OUT_EN);
5926                 /* HP dv6 gives the headphone pin as a line-out.  Thus we
5927                  * need to set hp_detect flag here to force to enable HP
5928                  * detection.
5929                  */
5930                 spec->hp_detect = 1;
5931                 break;
5932         case STAC_HP_HDX:
5933                 spec->num_dmics = 1;
5934                 spec->num_dmuxes = 1;
5935                 spec->num_smuxes = 1;
5936                 spec->gpio_led = 0x08;
5937                 break;
5938         }
5939
5940         if (hp_blike_system(codec->subsystem_id)) {
5941                 pin_cfg = snd_hda_codec_get_pincfg(codec, 0x0f);
5942                 if (get_defcfg_device(pin_cfg) == AC_JACK_LINE_OUT ||
5943                         get_defcfg_device(pin_cfg) == AC_JACK_SPEAKER  ||
5944                         get_defcfg_device(pin_cfg) == AC_JACK_HP_OUT) {
5945                         /* It was changed in the BIOS to just satisfy MS DTM.
5946                          * Lets turn it back into slaved HP
5947                          */
5948                         pin_cfg = (pin_cfg & (~AC_DEFCFG_DEVICE))
5949                                         | (AC_JACK_HP_OUT <<
5950                                                 AC_DEFCFG_DEVICE_SHIFT);
5951                         pin_cfg = (pin_cfg & (~(AC_DEFCFG_DEF_ASSOC
5952                                                         | AC_DEFCFG_SEQUENCE)))
5953                                                                 | 0x1f;
5954                         snd_hda_codec_set_pincfg(codec, 0x0f, pin_cfg);
5955                 }
5956         }
5957
5958         if (find_mute_led_gpio(codec, 1))
5959                 snd_printd("mute LED gpio %d polarity %d\n",
5960                                 spec->gpio_led,
5961                                 spec->gpio_led_polarity);
5962
5963 #ifdef CONFIG_SND_HDA_POWER_SAVE
5964         if (spec->gpio_led) {
5965                 if (spec->gpio_led <= 8) {
5966                         spec->gpio_mask |= spec->gpio_led;
5967                         spec->gpio_dir |= spec->gpio_led;
5968                         spec->gpio_data |= spec->gpio_led;
5969                 } else {
5970                         codec->patch_ops.set_power_state =
5971                                         stac92xx_set_power_state;
5972                 }
5973                 codec->patch_ops.pre_resume = stac92xx_pre_resume;
5974                 codec->patch_ops.check_power_status =
5975                         stac92xx_check_power_status;
5976         }
5977 #endif  
5978
5979         spec->multiout.dac_nids = spec->dac_nids;
5980
5981         err = stac92xx_parse_auto_config(codec);
5982         if (!err) {
5983                 if (spec->board_config < 0) {
5984                         printk(KERN_WARNING "hda_codec: No auto-config is "
5985                                "available, default to model=ref\n");
5986                         spec->board_config = STAC_92HD71BXX_REF;
5987                         goto again;
5988                 }
5989                 err = -EINVAL;
5990         }
5991
5992         if (err < 0) {
5993                 stac92xx_free(codec);
5994                 return err;
5995         }
5996
5997         /* enable bass on HP dv7 */
5998         if (spec->board_config == STAC_HP_DV4 ||
5999             spec->board_config == STAC_HP_DV5) {
6000                 unsigned int cap;
6001                 cap = snd_hda_param_read(codec, 0x1, AC_PAR_GPIO_CAP);
6002                 cap &= AC_GPIO_IO_COUNT;
6003                 if (cap >= 6)
6004                         stac_add_hp_bass_switch(codec);
6005         }
6006
6007         codec->proc_widget_hook = stac92hd7x_proc_hook;
6008
6009         return 0;
6010 }
6011
6012 static int patch_stac922x(struct hda_codec *codec)
6013 {
6014         struct sigmatel_spec *spec;
6015         int err;
6016
6017         spec  = kzalloc(sizeof(*spec), GFP_KERNEL);
6018         if (spec == NULL)
6019                 return -ENOMEM;
6020
6021         codec->no_trigger_sense = 1;
6022         codec->spec = spec;
6023         spec->linear_tone_beep = 1;
6024         spec->num_pins = ARRAY_SIZE(stac922x_pin_nids);
6025         spec->pin_nids = stac922x_pin_nids;
6026         spec->board_config = snd_hda_check_board_config(codec, STAC_922X_MODELS,
6027                                                         stac922x_models,
6028                                                         stac922x_cfg_tbl);
6029         if (spec->board_config == STAC_INTEL_MAC_AUTO) {
6030                 spec->gpio_mask = spec->gpio_dir = 0x03;
6031                 spec->gpio_data = 0x03;
6032                 /* Intel Macs have all same PCI SSID, so we need to check
6033                  * codec SSID to distinguish the exact models
6034                  */
6035                 printk(KERN_INFO "hda_codec: STAC922x, Apple subsys_id=%x\n", codec->subsystem_id);
6036                 switch (codec->subsystem_id) {
6037
6038                 case 0x106b0800:
6039                         spec->board_config = STAC_INTEL_MAC_V1;
6040                         break;
6041                 case 0x106b0600:
6042                 case 0x106b0700:
6043                         spec->board_config = STAC_INTEL_MAC_V2;
6044                         break;
6045                 case 0x106b0e00:
6046                 case 0x106b0f00:
6047                 case 0x106b1600:
6048                 case 0x106b1700:
6049                 case 0x106b0200:
6050                 case 0x106b1e00:
6051                         spec->board_config = STAC_INTEL_MAC_V3;
6052                         break;
6053                 case 0x106b1a00:
6054                 case 0x00000100:
6055                         spec->board_config = STAC_INTEL_MAC_V4;
6056                         break;
6057                 case 0x106b0a00:
6058                 case 0x106b2200:
6059                         spec->board_config = STAC_INTEL_MAC_V5;
6060                         break;
6061                 default:
6062                         spec->board_config = STAC_INTEL_MAC_V3;
6063                         break;
6064                 }
6065         }
6066
6067  again:
6068         if (spec->board_config < 0)
6069                 snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
6070                             codec->chip_name);
6071         else
6072                 stac92xx_set_config_regs(codec,
6073                                 stac922x_brd_tbl[spec->board_config]);
6074
6075         spec->adc_nids = stac922x_adc_nids;
6076         spec->mux_nids = stac922x_mux_nids;
6077         spec->num_muxes = ARRAY_SIZE(stac922x_mux_nids);
6078         spec->num_adcs = ARRAY_SIZE(stac922x_adc_nids);
6079         spec->num_dmics = 0;
6080         spec->num_pwrs = 0;
6081
6082         spec->init = stac922x_core_init;
6083
6084         spec->num_caps = STAC922X_NUM_CAPS;
6085         spec->capvols = stac922x_capvols;
6086         spec->capsws = stac922x_capsws;
6087
6088         spec->multiout.dac_nids = spec->dac_nids;
6089         
6090         err = stac92xx_parse_auto_config(codec);
6091         if (!err) {
6092                 if (spec->board_config < 0) {
6093                         printk(KERN_WARNING "hda_codec: No auto-config is "
6094                                "available, default to model=ref\n");
6095                         spec->board_config = STAC_D945_REF;
6096                         goto again;
6097                 }
6098                 err = -EINVAL;
6099         }
6100         if (err < 0) {
6101                 stac92xx_free(codec);
6102                 return err;
6103         }
6104
6105         codec->patch_ops = stac92xx_patch_ops;
6106
6107         /* Fix Mux capture level; max to 2 */
6108         snd_hda_override_amp_caps(codec, 0x12, HDA_OUTPUT,
6109                                   (0 << AC_AMPCAP_OFFSET_SHIFT) |
6110                                   (2 << AC_AMPCAP_NUM_STEPS_SHIFT) |
6111                                   (0x27 << AC_AMPCAP_STEP_SIZE_SHIFT) |
6112                                   (0 << AC_AMPCAP_MUTE_SHIFT));
6113
6114         return 0;
6115 }
6116
6117 static int patch_stac927x(struct hda_codec *codec)
6118 {
6119         struct sigmatel_spec *spec;
6120         int err;
6121
6122         spec  = kzalloc(sizeof(*spec), GFP_KERNEL);
6123         if (spec == NULL)
6124                 return -ENOMEM;
6125
6126         codec->no_trigger_sense = 1;
6127         codec->spec = spec;
6128         spec->linear_tone_beep = 1;
6129         codec->slave_dig_outs = stac927x_slave_dig_outs;
6130         spec->num_pins = ARRAY_SIZE(stac927x_pin_nids);
6131         spec->pin_nids = stac927x_pin_nids;
6132         spec->board_config = snd_hda_check_board_config(codec, STAC_927X_MODELS,
6133                                                         stac927x_models,
6134                                                         stac927x_cfg_tbl);
6135  again:
6136         if (spec->board_config < 0)
6137                 snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
6138                             codec->chip_name);
6139         else
6140                 stac92xx_set_config_regs(codec,
6141                                 stac927x_brd_tbl[spec->board_config]);
6142
6143         spec->digbeep_nid = 0x23;
6144         spec->adc_nids = stac927x_adc_nids;
6145         spec->num_adcs = ARRAY_SIZE(stac927x_adc_nids);
6146         spec->mux_nids = stac927x_mux_nids;
6147         spec->num_muxes = ARRAY_SIZE(stac927x_mux_nids);
6148         spec->smux_nids = stac927x_smux_nids;
6149         spec->num_smuxes = ARRAY_SIZE(stac927x_smux_nids);
6150         spec->spdif_labels = stac927x_spdif_labels;
6151         spec->dac_list = stac927x_dac_nids;
6152         spec->multiout.dac_nids = spec->dac_nids;
6153
6154         if (spec->board_config != STAC_D965_REF) {
6155                 /* GPIO0 High = Enable EAPD */
6156                 spec->eapd_mask = spec->gpio_mask = 0x01;
6157                 spec->gpio_dir = spec->gpio_data = 0x01;
6158         }
6159
6160         switch (spec->board_config) {
6161         case STAC_D965_3ST:
6162         case STAC_D965_5ST:
6163                 /* GPIO0 High = Enable EAPD */
6164                 spec->num_dmics = 0;
6165                 spec->init = d965_core_init;
6166                 break;
6167         case STAC_DELL_BIOS:
6168                 switch (codec->subsystem_id) {
6169                 case 0x10280209:
6170                 case 0x1028022e:
6171                         /* correct the device field to SPDIF out */
6172                         snd_hda_codec_set_pincfg(codec, 0x21, 0x01442070);
6173                         break;
6174                 }
6175                 /* configure the analog microphone on some laptops */
6176                 snd_hda_codec_set_pincfg(codec, 0x0c, 0x90a79130);
6177                 /* correct the front output jack as a hp out */
6178                 snd_hda_codec_set_pincfg(codec, 0x0f, 0x0227011f);
6179                 /* correct the front input jack as a mic */
6180                 snd_hda_codec_set_pincfg(codec, 0x0e, 0x02a79130);
6181                 /* fallthru */
6182         case STAC_DELL_3ST:
6183                 if (codec->subsystem_id != 0x1028022f) {
6184                         /* GPIO2 High = Enable EAPD */
6185                         spec->eapd_mask = spec->gpio_mask = 0x04;
6186                         spec->gpio_dir = spec->gpio_data = 0x04;
6187                 }
6188                 spec->dmic_nids = stac927x_dmic_nids;
6189                 spec->num_dmics = STAC927X_NUM_DMICS;
6190
6191                 spec->init = dell_3st_core_init;
6192                 spec->dmux_nids = stac927x_dmux_nids;
6193                 spec->num_dmuxes = ARRAY_SIZE(stac927x_dmux_nids);
6194                 break;
6195         case STAC_927X_VOLKNOB:
6196                 spec->num_dmics = 0;
6197                 spec->init = stac927x_volknob_core_init;
6198                 break;
6199         default:
6200                 spec->num_dmics = 0;
6201                 spec->init = stac927x_core_init;
6202                 break;
6203         }
6204
6205         spec->num_caps = STAC927X_NUM_CAPS;
6206         spec->capvols = stac927x_capvols;
6207         spec->capsws = stac927x_capsws;
6208
6209         spec->num_pwrs = 0;
6210         spec->aloopback_ctl = stac927x_loopback;
6211         spec->aloopback_mask = 0x40;
6212         spec->aloopback_shift = 0;
6213         spec->eapd_switch = 1;
6214
6215         err = stac92xx_parse_auto_config(codec);
6216         if (!err) {
6217                 if (spec->board_config < 0) {
6218                         printk(KERN_WARNING "hda_codec: No auto-config is "
6219                                "available, default to model=ref\n");
6220                         spec->board_config = STAC_D965_REF;
6221                         goto again;
6222                 }
6223                 err = -EINVAL;
6224         }
6225         if (err < 0) {
6226                 stac92xx_free(codec);
6227                 return err;
6228         }
6229
6230         codec->patch_ops = stac92xx_patch_ops;
6231
6232         codec->proc_widget_hook = stac927x_proc_hook;
6233
6234         /*
6235          * !!FIXME!!
6236          * The STAC927x seem to require fairly long delays for certain
6237          * command sequences.  With too short delays (even if the answer
6238          * is set to RIRB properly), it results in the silence output
6239          * on some hardwares like Dell.
6240          *
6241          * The below flag enables the longer delay (see get_response
6242          * in hda_intel.c).
6243          */
6244         codec->bus->needs_damn_long_delay = 1;
6245
6246         /* no jack detecion for ref-no-jd model */
6247         if (spec->board_config == STAC_D965_REF_NO_JD)
6248                 spec->hp_detect = 0;
6249
6250         return 0;
6251 }
6252
6253 static int patch_stac9205(struct hda_codec *codec)
6254 {
6255         struct sigmatel_spec *spec;
6256         int err;
6257
6258         spec  = kzalloc(sizeof(*spec), GFP_KERNEL);
6259         if (spec == NULL)
6260                 return -ENOMEM;
6261
6262         codec->no_trigger_sense = 1;
6263         codec->spec = spec;
6264         spec->linear_tone_beep = 1;
6265         spec->num_pins = ARRAY_SIZE(stac9205_pin_nids);
6266         spec->pin_nids = stac9205_pin_nids;
6267         spec->board_config = snd_hda_check_board_config(codec, STAC_9205_MODELS,
6268                                                         stac9205_models,
6269                                                         stac9205_cfg_tbl);
6270  again:
6271         if (spec->board_config < 0)
6272                 snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
6273                             codec->chip_name);
6274         else
6275                 stac92xx_set_config_regs(codec,
6276                                          stac9205_brd_tbl[spec->board_config]);
6277
6278         spec->digbeep_nid = 0x23;
6279         spec->adc_nids = stac9205_adc_nids;
6280         spec->num_adcs = ARRAY_SIZE(stac9205_adc_nids);
6281         spec->mux_nids = stac9205_mux_nids;
6282         spec->num_muxes = ARRAY_SIZE(stac9205_mux_nids);
6283         spec->smux_nids = stac9205_smux_nids;
6284         spec->num_smuxes = ARRAY_SIZE(stac9205_smux_nids);
6285         spec->dmic_nids = stac9205_dmic_nids;
6286         spec->num_dmics = STAC9205_NUM_DMICS;
6287         spec->dmux_nids = stac9205_dmux_nids;
6288         spec->num_dmuxes = ARRAY_SIZE(stac9205_dmux_nids);
6289         spec->num_pwrs = 0;
6290
6291         spec->init = stac9205_core_init;
6292         spec->aloopback_ctl = stac9205_loopback;
6293
6294         spec->num_caps = STAC9205_NUM_CAPS;
6295         spec->capvols = stac9205_capvols;
6296         spec->capsws = stac9205_capsws;
6297
6298         spec->aloopback_mask = 0x40;
6299         spec->aloopback_shift = 0;
6300         /* Turn on/off EAPD per HP plugging */
6301         if (spec->board_config != STAC_9205_EAPD)
6302                 spec->eapd_switch = 1;
6303         spec->multiout.dac_nids = spec->dac_nids;
6304         
6305         switch (spec->board_config){
6306         case STAC_9205_DELL_M43:
6307                 /* Enable SPDIF in/out */
6308                 snd_hda_codec_set_pincfg(codec, 0x1f, 0x01441030);
6309                 snd_hda_codec_set_pincfg(codec, 0x20, 0x1c410030);
6310
6311                 /* Enable unsol response for GPIO4/Dock HP connection */
6312                 err = stac_add_event(spec, codec->afg, STAC_VREF_EVENT, 0x01);
6313                 if (err < 0)
6314                         return err;
6315                 snd_hda_codec_write_cache(codec, codec->afg, 0,
6316                         AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x10);
6317                 snd_hda_codec_write_cache(codec, codec->afg, 0,
6318                                           AC_VERB_SET_UNSOLICITED_ENABLE,
6319                                           AC_USRSP_EN | err);
6320
6321                 spec->gpio_dir = 0x0b;
6322                 spec->eapd_mask = 0x01;
6323                 spec->gpio_mask = 0x1b;
6324                 spec->gpio_mute = 0x10;
6325                 /* GPIO0 High = EAPD, GPIO1 Low = Headphone Mute,
6326                  * GPIO3 Low = DRM
6327                  */
6328                 spec->gpio_data = 0x01;
6329                 break;
6330         case STAC_9205_REF:
6331                 /* SPDIF-In enabled */
6332                 break;
6333         default:
6334                 /* GPIO0 High = EAPD */
6335                 spec->eapd_mask = spec->gpio_mask = spec->gpio_dir = 0x1;
6336                 spec->gpio_data = 0x01;
6337                 break;
6338         }
6339
6340         err = stac92xx_parse_auto_config(codec);
6341         if (!err) {
6342                 if (spec->board_config < 0) {
6343                         printk(KERN_WARNING "hda_codec: No auto-config is "
6344                                "available, default to model=ref\n");
6345                         spec->board_config = STAC_9205_REF;
6346                         goto again;
6347                 }
6348                 err = -EINVAL;
6349         }
6350         if (err < 0) {
6351                 stac92xx_free(codec);
6352                 return err;
6353         }
6354
6355         codec->patch_ops = stac92xx_patch_ops;
6356
6357         codec->proc_widget_hook = stac9205_proc_hook;
6358
6359         return 0;
6360 }
6361
6362 /*
6363  * STAC9872 hack
6364  */
6365
6366 static const struct hda_verb stac9872_core_init[] = {
6367         {0x15, AC_VERB_SET_CONNECT_SEL, 0x1}, /* mic-sel: 0a,0d,14,02 */
6368         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, /* Mic-in -> 0x9 */
6369         {}
6370 };
6371
6372 static const hda_nid_t stac9872_pin_nids[] = {
6373         0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
6374         0x11, 0x13, 0x14,
6375 };
6376
6377 static const hda_nid_t stac9872_adc_nids[] = {
6378         0x8 /*,0x6*/
6379 };
6380
6381 static const hda_nid_t stac9872_mux_nids[] = {
6382         0x15
6383 };
6384
6385 static const unsigned long stac9872_capvols[] = {
6386         HDA_COMPOSE_AMP_VAL(0x09, 3, 0, HDA_INPUT),
6387 };
6388 #define stac9872_capsws         stac9872_capvols
6389
6390 static const unsigned int stac9872_vaio_pin_configs[9] = {
6391         0x03211020, 0x411111f0, 0x411111f0, 0x03a15030,
6392         0x411111f0, 0x90170110, 0x411111f0, 0x411111f0,
6393         0x90a7013e
6394 };
6395
6396 static const char * const stac9872_models[STAC_9872_MODELS] = {
6397         [STAC_9872_AUTO] = "auto",
6398         [STAC_9872_VAIO] = "vaio",
6399 };
6400
6401 static const unsigned int *stac9872_brd_tbl[STAC_9872_MODELS] = {
6402         [STAC_9872_VAIO] = stac9872_vaio_pin_configs,
6403 };
6404
6405 static const struct snd_pci_quirk stac9872_cfg_tbl[] = {
6406         SND_PCI_QUIRK_MASK(0x104d, 0xfff0, 0x81e0,
6407                            "Sony VAIO F/S", STAC_9872_VAIO),
6408         {} /* terminator */
6409 };
6410
6411 static int patch_stac9872(struct hda_codec *codec)
6412 {
6413         struct sigmatel_spec *spec;
6414         int err;
6415
6416         spec  = kzalloc(sizeof(*spec), GFP_KERNEL);
6417         if (spec == NULL)
6418                 return -ENOMEM;
6419         codec->no_trigger_sense = 1;
6420         codec->spec = spec;
6421         spec->linear_tone_beep = 1;
6422         spec->num_pins = ARRAY_SIZE(stac9872_pin_nids);
6423         spec->pin_nids = stac9872_pin_nids;
6424
6425         spec->board_config = snd_hda_check_board_config(codec, STAC_9872_MODELS,
6426                                                         stac9872_models,
6427                                                         stac9872_cfg_tbl);
6428         if (spec->board_config < 0)
6429                 snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
6430                             codec->chip_name);
6431         else
6432                 stac92xx_set_config_regs(codec,
6433                                          stac9872_brd_tbl[spec->board_config]);
6434
6435         spec->multiout.dac_nids = spec->dac_nids;
6436         spec->num_adcs = ARRAY_SIZE(stac9872_adc_nids);
6437         spec->adc_nids = stac9872_adc_nids;
6438         spec->num_muxes = ARRAY_SIZE(stac9872_mux_nids);
6439         spec->mux_nids = stac9872_mux_nids;
6440         spec->init = stac9872_core_init;
6441         spec->num_caps = 1;
6442         spec->capvols = stac9872_capvols;
6443         spec->capsws = stac9872_capsws;
6444
6445         err = stac92xx_parse_auto_config(codec);
6446         if (err < 0) {
6447                 stac92xx_free(codec);
6448                 return -EINVAL;
6449         }
6450         spec->input_mux = &spec->private_imux;
6451         codec->patch_ops = stac92xx_patch_ops;
6452         return 0;
6453 }
6454
6455
6456 /*
6457  * patch entries
6458  */
6459 static const struct hda_codec_preset snd_hda_preset_sigmatel[] = {
6460         { .id = 0x83847690, .name = "STAC9200", .patch = patch_stac9200 },
6461         { .id = 0x83847882, .name = "STAC9220 A1", .patch = patch_stac922x },
6462         { .id = 0x83847680, .name = "STAC9221 A1", .patch = patch_stac922x },
6463         { .id = 0x83847880, .name = "STAC9220 A2", .patch = patch_stac922x },
6464         { .id = 0x83847681, .name = "STAC9220D/9223D A2", .patch = patch_stac922x },
6465         { .id = 0x83847682, .name = "STAC9221 A2", .patch = patch_stac922x },
6466         { .id = 0x83847683, .name = "STAC9221D A2", .patch = patch_stac922x },
6467         { .id = 0x83847618, .name = "STAC9227", .patch = patch_stac927x },
6468         { .id = 0x83847619, .name = "STAC9227", .patch = patch_stac927x },
6469         { .id = 0x83847616, .name = "STAC9228", .patch = patch_stac927x },
6470         { .id = 0x83847617, .name = "STAC9228", .patch = patch_stac927x },
6471         { .id = 0x83847614, .name = "STAC9229", .patch = patch_stac927x },
6472         { .id = 0x83847615, .name = "STAC9229", .patch = patch_stac927x },
6473         { .id = 0x83847620, .name = "STAC9274", .patch = patch_stac927x },
6474         { .id = 0x83847621, .name = "STAC9274D", .patch = patch_stac927x },
6475         { .id = 0x83847622, .name = "STAC9273X", .patch = patch_stac927x },
6476         { .id = 0x83847623, .name = "STAC9273D", .patch = patch_stac927x },
6477         { .id = 0x83847624, .name = "STAC9272X", .patch = patch_stac927x },
6478         { .id = 0x83847625, .name = "STAC9272D", .patch = patch_stac927x },
6479         { .id = 0x83847626, .name = "STAC9271X", .patch = patch_stac927x },
6480         { .id = 0x83847627, .name = "STAC9271D", .patch = patch_stac927x },
6481         { .id = 0x83847628, .name = "STAC9274X5NH", .patch = patch_stac927x },
6482         { .id = 0x83847629, .name = "STAC9274D5NH", .patch = patch_stac927x },
6483         { .id = 0x83847632, .name = "STAC9202",  .patch = patch_stac925x },
6484         { .id = 0x83847633, .name = "STAC9202D", .patch = patch_stac925x },
6485         { .id = 0x83847634, .name = "STAC9250", .patch = patch_stac925x },
6486         { .id = 0x83847635, .name = "STAC9250D", .patch = patch_stac925x },
6487         { .id = 0x83847636, .name = "STAC9251", .patch = patch_stac925x },
6488         { .id = 0x83847637, .name = "STAC9250D", .patch = patch_stac925x },
6489         { .id = 0x83847645, .name = "92HD206X", .patch = patch_stac927x },
6490         { .id = 0x83847646, .name = "92HD206D", .patch = patch_stac927x },
6491         /* The following does not take into account .id=0x83847661 when subsys =
6492          * 104D0C00 which is STAC9225s. Because of this, some SZ Notebooks are
6493          * currently not fully supported.
6494          */
6495         { .id = 0x83847661, .name = "CXD9872RD/K", .patch = patch_stac9872 },
6496         { .id = 0x83847662, .name = "STAC9872AK", .patch = patch_stac9872 },
6497         { .id = 0x83847664, .name = "CXD9872AKD", .patch = patch_stac9872 },
6498         { .id = 0x83847698, .name = "STAC9205", .patch = patch_stac9205 },
6499         { .id = 0x838476a0, .name = "STAC9205", .patch = patch_stac9205 },
6500         { .id = 0x838476a1, .name = "STAC9205D", .patch = patch_stac9205 },
6501         { .id = 0x838476a2, .name = "STAC9204", .patch = patch_stac9205 },
6502         { .id = 0x838476a3, .name = "STAC9204D", .patch = patch_stac9205 },
6503         { .id = 0x838476a4, .name = "STAC9255", .patch = patch_stac9205 },
6504         { .id = 0x838476a5, .name = "STAC9255D", .patch = patch_stac9205 },
6505         { .id = 0x838476a6, .name = "STAC9254", .patch = patch_stac9205 },
6506         { .id = 0x838476a7, .name = "STAC9254D", .patch = patch_stac9205 },
6507         { .id = 0x111d7603, .name = "92HD75B3X5", .patch = patch_stac92hd71bxx},
6508         { .id = 0x111d7604, .name = "92HD83C1X5", .patch = patch_stac92hd83xxx},
6509         { .id = 0x111d76d4, .name = "92HD83C1C5", .patch = patch_stac92hd83xxx},
6510         { .id = 0x111d7605, .name = "92HD81B1X5", .patch = patch_stac92hd83xxx},
6511         { .id = 0x111d76d5, .name = "92HD81B1C5", .patch = patch_stac92hd83xxx},
6512         { .id = 0x111d76d1, .name = "92HD87B1/3", .patch = patch_stac92hd83xxx},
6513         { .id = 0x111d76d9, .name = "92HD87B2/4", .patch = patch_stac92hd83xxx},
6514         { .id = 0x111d7666, .name = "92HD88B3", .patch = patch_stac92hd83xxx},
6515         { .id = 0x111d7667, .name = "92HD88B1", .patch = patch_stac92hd83xxx},
6516         { .id = 0x111d7668, .name = "92HD88B2", .patch = patch_stac92hd83xxx},
6517         { .id = 0x111d7669, .name = "92HD88B4", .patch = patch_stac92hd83xxx},
6518         { .id = 0x111d7608, .name = "92HD75B2X5", .patch = patch_stac92hd71bxx},
6519         { .id = 0x111d7674, .name = "92HD73D1X5", .patch = patch_stac92hd73xx },
6520         { .id = 0x111d7675, .name = "92HD73C1X5", .patch = patch_stac92hd73xx },
6521         { .id = 0x111d7676, .name = "92HD73E1X5", .patch = patch_stac92hd73xx },
6522         { .id = 0x111d76b0, .name = "92HD71B8X", .patch = patch_stac92hd71bxx },
6523         { .id = 0x111d76b1, .name = "92HD71B8X", .patch = patch_stac92hd71bxx },
6524         { .id = 0x111d76b2, .name = "92HD71B7X", .patch = patch_stac92hd71bxx },
6525         { .id = 0x111d76b3, .name = "92HD71B7X", .patch = patch_stac92hd71bxx },
6526         { .id = 0x111d76b4, .name = "92HD71B6X", .patch = patch_stac92hd71bxx },
6527         { .id = 0x111d76b5, .name = "92HD71B6X", .patch = patch_stac92hd71bxx },
6528         { .id = 0x111d76b6, .name = "92HD71B5X", .patch = patch_stac92hd71bxx },
6529         { .id = 0x111d76b7, .name = "92HD71B5X", .patch = patch_stac92hd71bxx },
6530         { .id = 0x111d76c0, .name = "92HD89C3", .patch = patch_stac92hd73xx },
6531         { .id = 0x111d76c1, .name = "92HD89C2", .patch = patch_stac92hd73xx },
6532         { .id = 0x111d76c2, .name = "92HD89C1", .patch = patch_stac92hd73xx },
6533         { .id = 0x111d76c3, .name = "92HD89B3", .patch = patch_stac92hd73xx },
6534         { .id = 0x111d76c4, .name = "92HD89B2", .patch = patch_stac92hd73xx },
6535         { .id = 0x111d76c5, .name = "92HD89B1", .patch = patch_stac92hd73xx },
6536         { .id = 0x111d76c6, .name = "92HD89E3", .patch = patch_stac92hd73xx },
6537         { .id = 0x111d76c7, .name = "92HD89E2", .patch = patch_stac92hd73xx },
6538         { .id = 0x111d76c8, .name = "92HD89E1", .patch = patch_stac92hd73xx },
6539         { .id = 0x111d76c9, .name = "92HD89D3", .patch = patch_stac92hd73xx },
6540         { .id = 0x111d76ca, .name = "92HD89D2", .patch = patch_stac92hd73xx },
6541         { .id = 0x111d76cb, .name = "92HD89D1", .patch = patch_stac92hd73xx },
6542         { .id = 0x111d76cc, .name = "92HD89F3", .patch = patch_stac92hd73xx },
6543         { .id = 0x111d76cd, .name = "92HD89F2", .patch = patch_stac92hd73xx },
6544         { .id = 0x111d76ce, .name = "92HD89F1", .patch = patch_stac92hd73xx },
6545         { .id = 0x111d76df, .name = "92HD93BXX", .patch = patch_stac92hd83xxx},
6546         { .id = 0x111d76e0, .name = "92HD91BXX", .patch = patch_stac92hd83xxx},
6547         { .id = 0x111d76e3, .name = "92HD98BXX", .patch = patch_stac92hd83xxx},
6548         { .id = 0x111d76e5, .name = "92HD99BXX", .patch = patch_stac92hd83xxx},
6549         { .id = 0x111d76e7, .name = "92HD90BXX", .patch = patch_stac92hd83xxx},
6550         { .id = 0x111d76e8, .name = "92HD66B1X5", .patch = patch_stac92hd83xxx},
6551         { .id = 0x111d76e9, .name = "92HD66B2X5", .patch = patch_stac92hd83xxx},
6552         { .id = 0x111d76ea, .name = "92HD66B3X5", .patch = patch_stac92hd83xxx},
6553         { .id = 0x111d76eb, .name = "92HD66C1X5", .patch = patch_stac92hd83xxx},
6554         { .id = 0x111d76ec, .name = "92HD66C2X5", .patch = patch_stac92hd83xxx},
6555         { .id = 0x111d76ed, .name = "92HD66C3X5", .patch = patch_stac92hd83xxx},
6556         { .id = 0x111d76ee, .name = "92HD66B1X3", .patch = patch_stac92hd83xxx},
6557         { .id = 0x111d76ef, .name = "92HD66B2X3", .patch = patch_stac92hd83xxx},
6558         { .id = 0x111d76f0, .name = "92HD66B3X3", .patch = patch_stac92hd83xxx},
6559         { .id = 0x111d76f1, .name = "92HD66C1X3", .patch = patch_stac92hd83xxx},
6560         { .id = 0x111d76f2, .name = "92HD66C2X3", .patch = patch_stac92hd83xxx},
6561         { .id = 0x111d76f3, .name = "92HD66C3/65", .patch = patch_stac92hd83xxx},
6562         {} /* terminator */
6563 };
6564
6565 MODULE_ALIAS("snd-hda-codec-id:8384*");
6566 MODULE_ALIAS("snd-hda-codec-id:111d*");
6567
6568 MODULE_LICENSE("GPL");
6569 MODULE_DESCRIPTION("IDT/Sigmatel HD-audio codec");
6570
6571 static struct hda_codec_preset_list sigmatel_list = {
6572         .preset = snd_hda_preset_sigmatel,
6573         .owner = THIS_MODULE,
6574 };
6575
6576 static int __init patch_sigmatel_init(void)
6577 {
6578         return snd_hda_add_codec_preset(&sigmatel_list);
6579 }
6580
6581 static void __exit patch_sigmatel_exit(void)
6582 {
6583         snd_hda_delete_codec_preset(&sigmatel_list);
6584 }
6585
6586 module_init(patch_sigmatel_init)
6587 module_exit(patch_sigmatel_exit)