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