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