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