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