]> pilppa.org Git - linux-2.6-omap-h63xx.git/blob - sound/pci/hda/patch_sigmatel.c
[ALSA] hda-codec - Add support for new Intel boards with Stac9227 codec
[linux-2.6-omap-h63xx.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 <sound/driver.h>
28 #include <linux/init.h>
29 #include <linux/delay.h>
30 #include <linux/slab.h>
31 #include <linux/pci.h>
32 #include <sound/core.h>
33 #include <sound/asoundef.h>
34 #include "hda_codec.h"
35 #include "hda_local.h"
36
37 #define NUM_CONTROL_ALLOC       32
38 #define STAC_HP_EVENT           0x37
39 #define STAC_UNSOL_ENABLE       (AC_USRSP_EN | STAC_HP_EVENT)
40
41 #define STAC_REF                0
42 #define STAC_D945GTP3           1
43 #define STAC_D945GTP5           2
44 #define STAC_MACMINI            3
45 #define STAC_D965_2112          4
46 #define STAC_D965_284B          5
47 #define STAC_922X_MODELS        6       /* number of 922x models */
48
49 struct sigmatel_spec {
50         struct snd_kcontrol_new *mixers[4];
51         unsigned int num_mixers;
52
53         int board_config;
54         unsigned int surr_switch: 1;
55         unsigned int line_switch: 1;
56         unsigned int mic_switch: 1;
57         unsigned int alt_switch: 1;
58         unsigned int hp_detect: 1;
59         unsigned int gpio_mute: 1;
60
61         /* playback */
62         struct hda_multi_out multiout;
63         hda_nid_t dac_nids[5];
64
65         /* capture */
66         hda_nid_t *adc_nids;
67         unsigned int num_adcs;
68         hda_nid_t *mux_nids;
69         unsigned int num_muxes;
70         hda_nid_t dig_in_nid;
71
72         /* pin widgets */
73         hda_nid_t *pin_nids;
74         unsigned int num_pins;
75         unsigned int *pin_configs;
76
77         /* codec specific stuff */
78         struct hda_verb *init;
79         struct snd_kcontrol_new *mixer;
80
81         /* capture source */
82         struct hda_input_mux *input_mux;
83         unsigned int cur_mux[3];
84
85         /* i/o switches */
86         unsigned int io_switch[2];
87
88         struct hda_pcm pcm_rec[2];      /* PCM information */
89
90         /* dynamic controls and input_mux */
91         struct auto_pin_cfg autocfg;
92         unsigned int num_kctl_alloc, num_kctl_used;
93         struct snd_kcontrol_new *kctl_alloc;
94         struct hda_input_mux private_imux;
95 };
96
97 static hda_nid_t stac9200_adc_nids[1] = {
98         0x03,
99 };
100
101 static hda_nid_t stac9200_mux_nids[1] = {
102         0x0c,
103 };
104
105 static hda_nid_t stac9200_dac_nids[1] = {
106         0x02,
107 };
108
109 static hda_nid_t stac922x_adc_nids[2] = {
110         0x06, 0x07,
111 };
112
113 static hda_nid_t stac9227_adc_nids[2] = {
114         0x07, 0x08,
115 };
116
117 #if 0
118 static hda_nid_t d965_2112_dac_nids[3] = {
119         0x02, 0x03, 0x05,
120 };
121 #endif
122
123 static hda_nid_t stac922x_mux_nids[2] = {
124         0x12, 0x13,
125 };
126
127 static hda_nid_t stac9227_mux_nids[2] = {
128         0x15, 0x16,
129 };
130
131 static hda_nid_t stac927x_adc_nids[3] = {
132         0x07, 0x08, 0x09
133 };
134
135 static hda_nid_t stac927x_mux_nids[3] = {
136         0x15, 0x16, 0x17
137 };
138
139 static hda_nid_t stac9205_adc_nids[2] = {
140         0x12, 0x13
141 };
142
143 static hda_nid_t stac9205_mux_nids[2] = {
144         0x19, 0x1a
145 };
146
147 static hda_nid_t stac9200_pin_nids[8] = {
148         0x08, 0x09, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12,
149 };
150
151 static hda_nid_t stac922x_pin_nids[10] = {
152         0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
153         0x0f, 0x10, 0x11, 0x15, 0x1b,
154 };
155
156 static hda_nid_t stac927x_pin_nids[14] = {
157         0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
158         0x0f, 0x10, 0x11, 0x12, 0x13,
159         0x14, 0x21, 0x22, 0x23,
160 };
161
162 static hda_nid_t stac9205_pin_nids[12] = {
163         0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
164         0x0f, 0x14, 0x16, 0x17, 0x18,
165         0x21, 0x22,
166         
167 };
168
169 static int stac92xx_mux_enum_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
170 {
171         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
172         struct sigmatel_spec *spec = codec->spec;
173         return snd_hda_input_mux_info(spec->input_mux, uinfo);
174 }
175
176 static int stac92xx_mux_enum_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
177 {
178         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
179         struct sigmatel_spec *spec = codec->spec;
180         unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
181
182         ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
183         return 0;
184 }
185
186 static int stac92xx_mux_enum_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
187 {
188         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
189         struct sigmatel_spec *spec = codec->spec;
190         unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
191
192         return snd_hda_input_mux_put(codec, spec->input_mux, ucontrol,
193                                      spec->mux_nids[adc_idx], &spec->cur_mux[adc_idx]);
194 }
195
196 static struct hda_verb stac9200_core_init[] = {
197         /* set dac0mux for dac converter */
198         { 0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
199         {}
200 };
201
202 static struct hda_verb stac922x_core_init[] = {
203         /* set master volume and direct control */      
204         { 0x16, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
205         {}
206 };
207
208 static struct hda_verb stac9227_core_init[] = {
209         /* set master volume and direct control */      
210         { 0x16, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
211         /* unmute node 0x1b */
212         { 0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
213         {}
214 };
215
216 static struct hda_verb d965_2112_core_init[] = {
217         /* set master volume and direct control */      
218         { 0x16, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
219         /* unmute node 0x1b */
220         { 0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
221         /* select node 0x03 as DAC */   
222         { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x01},
223         {}
224 };
225
226 static struct hda_verb stac927x_core_init[] = {
227         /* set master volume and direct control */      
228         { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
229         {}
230 };
231
232 static struct hda_verb stac9205_core_init[] = {
233         /* set master volume and direct control */      
234         { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff},
235         {}
236 };
237
238 static struct snd_kcontrol_new stac9200_mixer[] = {
239         HDA_CODEC_VOLUME("Master Playback Volume", 0xb, 0, HDA_OUTPUT),
240         HDA_CODEC_MUTE("Master Playback Switch", 0xb, 0, HDA_OUTPUT),
241         {
242                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
243                 .name = "Input Source",
244                 .count = 1,
245                 .info = stac92xx_mux_enum_info,
246                 .get = stac92xx_mux_enum_get,
247                 .put = stac92xx_mux_enum_put,
248         },
249         HDA_CODEC_VOLUME("Capture Volume", 0x0a, 0, HDA_OUTPUT),
250         HDA_CODEC_MUTE("Capture Switch", 0x0a, 0, HDA_OUTPUT),
251         HDA_CODEC_VOLUME("Capture Mux Volume", 0x0c, 0, HDA_OUTPUT),
252         { } /* end */
253 };
254
255 /* This needs to be generated dynamically based on sequence */
256 static struct snd_kcontrol_new stac922x_mixer[] = {
257         {
258                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
259                 .name = "Input Source",
260                 .count = 1,
261                 .info = stac92xx_mux_enum_info,
262                 .get = stac92xx_mux_enum_get,
263                 .put = stac92xx_mux_enum_put,
264         },
265         HDA_CODEC_VOLUME("Capture Volume", 0x17, 0x0, HDA_INPUT),
266         HDA_CODEC_MUTE("Capture Switch", 0x17, 0x0, HDA_INPUT),
267         HDA_CODEC_VOLUME("Mux Capture Volume", 0x12, 0x0, HDA_OUTPUT),
268         { } /* end */
269 };
270
271 /* This needs to be generated dynamically based on sequence */
272 static struct snd_kcontrol_new stac9227_mixer[] = {
273         {
274                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
275                 .name = "Input Source",
276                 .count = 1,
277                 .info = stac92xx_mux_enum_info,
278                 .get = stac92xx_mux_enum_get,
279                 .put = stac92xx_mux_enum_put,
280         },
281         HDA_CODEC_VOLUME("Capture Volume", 0x15, 0x0, HDA_OUTPUT),
282         HDA_CODEC_MUTE("Capture Switch", 0x1b, 0x0, HDA_OUTPUT),
283         { } /* end */
284 };
285
286 static snd_kcontrol_new_t stac927x_mixer[] = {
287         {
288                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
289                 .name = "Input Source",
290                 .count = 1,
291                 .info = stac92xx_mux_enum_info,
292                 .get = stac92xx_mux_enum_get,
293                 .put = stac92xx_mux_enum_put,
294         },
295         HDA_CODEC_VOLUME("InMux Capture Volume", 0x15, 0x0, HDA_OUTPUT),
296         HDA_CODEC_VOLUME("InVol Capture Volume", 0x18, 0x0, HDA_INPUT),
297         HDA_CODEC_MUTE("ADCMux Capture Switch", 0x1b, 0x0, HDA_OUTPUT),
298         { } /* end */
299 };
300
301 static snd_kcontrol_new_t stac9205_mixer[] = {
302         {
303                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
304                 .name = "Input Source",
305                 .count = 1,
306                 .info = stac92xx_mux_enum_info,
307                 .get = stac92xx_mux_enum_get,
308                 .put = stac92xx_mux_enum_put,
309         },
310         HDA_CODEC_VOLUME("InMux Capture Volume", 0x19, 0x0, HDA_OUTPUT),
311         HDA_CODEC_VOLUME("InVol Capture Volume", 0x1b, 0x0, HDA_INPUT),
312         HDA_CODEC_MUTE("ADCMux Capture Switch", 0x1d, 0x0, HDA_OUTPUT),
313         { } /* end */
314 };
315
316 static int stac92xx_build_controls(struct hda_codec *codec)
317 {
318         struct sigmatel_spec *spec = codec->spec;
319         int err;
320         int i;
321
322         err = snd_hda_add_new_ctls(codec, spec->mixer);
323         if (err < 0)
324                 return err;
325
326         for (i = 0; i < spec->num_mixers; i++) {
327                 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
328                 if (err < 0)
329                         return err;
330         }
331
332         if (spec->multiout.dig_out_nid) {
333                 err = snd_hda_create_spdif_out_ctls(codec, spec->multiout.dig_out_nid);
334                 if (err < 0)
335                         return err;
336         }
337         if (spec->dig_in_nid) {
338                 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
339                 if (err < 0)
340                         return err;
341         }
342         return 0;       
343 }
344
345 static unsigned int ref9200_pin_configs[8] = {
346         0x01c47010, 0x01447010, 0x0221401f, 0x01114010,
347         0x02a19020, 0x01a19021, 0x90100140, 0x01813122,
348 };
349
350 static unsigned int *stac9200_brd_tbl[] = {
351         ref9200_pin_configs,
352 };
353
354 static struct hda_board_config stac9200_cfg_tbl[] = {
355         { .modelname = "ref",
356           .pci_subvendor = PCI_VENDOR_ID_INTEL,
357           .pci_subdevice = 0x2668,      /* DFI LanParty */
358           .config = STAC_REF },
359         {} /* terminator */
360 };
361
362 static unsigned int ref922x_pin_configs[10] = {
363         0x01014010, 0x01016011, 0x01012012, 0x0221401f,
364         0x01813122, 0x01011014, 0x01441030, 0x01c41030,
365         0x40000100, 0x40000100,
366 };
367
368 static unsigned int d945gtp3_pin_configs[10] = {
369         0x0221401f, 0x01a19022, 0x01813021, 0x01014010,
370         0x40000100, 0x40000100, 0x40000100, 0x40000100,
371         0x02a19120, 0x40000100,
372 };
373
374 static unsigned int d945gtp5_pin_configs[10] = {
375         0x0221401f, 0x01011012, 0x01813024, 0x01014010,
376         0x01a19021, 0x01016011, 0x01452130, 0x40000100,
377         0x02a19320, 0x40000100,
378 };
379
380 static unsigned int *stac922x_brd_tbl[STAC_922X_MODELS] = {
381         [STAC_REF] =    ref922x_pin_configs,
382         [STAC_D945GTP3] = d945gtp3_pin_configs,
383         [STAC_D945GTP5] = d945gtp5_pin_configs,
384         [STAC_MACMINI] = d945gtp5_pin_configs,
385 };
386
387 static struct hda_board_config stac922x_cfg_tbl[] = {
388         { .modelname = "ref",
389           .pci_subvendor = PCI_VENDOR_ID_INTEL,
390           .pci_subdevice = 0x2668,      /* DFI LanParty */
391           .config = STAC_REF },         /* SigmaTel reference board */
392          /* Intel 945G based systems */
393         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
394           .pci_subdevice = 0x0101,
395           .config = STAC_D945GTP3 },    /* Intel D945GTP - 3 Stack */
396         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
397           .pci_subdevice = 0x0202,
398           .config = STAC_D945GTP3 },    /* Intel D945GNT - 3 Stack */
399         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
400           .pci_subdevice = 0x0606,
401           .config = STAC_D945GTP3 },    /* Intel D945GTP - 3 Stack */
402         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
403           .pci_subdevice = 0x0601,
404           .config = STAC_D945GTP3 },    /* Intel D945GTP - 3 Stack */
405         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
406           .pci_subdevice = 0x0111,
407           .config = STAC_D945GTP3 },    /* Intel D945GZP - 3 Stack */
408         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
409           .pci_subdevice = 0x1115,
410           .config = STAC_D945GTP3 },    /* Intel D945GPM - 3 Stack */
411         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
412           .pci_subdevice = 0x1116,
413           .config = STAC_D945GTP3 },    /* Intel D945GBO - 3 Stack */
414         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
415           .pci_subdevice = 0x1117,
416           .config = STAC_D945GTP3 },    /* Intel D945GPM - 3 Stack */
417         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
418           .pci_subdevice = 0x1118,
419           .config = STAC_D945GTP3 },    /* Intel D945GPM - 3 Stack */
420         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
421           .pci_subdevice = 0x1119,
422           .config = STAC_D945GTP3 },    /* Intel D945GPM - 3 Stack */
423         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
424           .pci_subdevice = 0x8826,
425           .config = STAC_D945GTP3 },    /* Intel D945GPM - 3 Stack */
426         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
427           .pci_subdevice = 0x5049,
428           .config = STAC_D945GTP3 },    /* Intel D945GCZ - 3 Stack */
429         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
430           .pci_subdevice = 0x5055,
431           .config = STAC_D945GTP3 },    /* Intel D945GCZ - 3 Stack */
432         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
433           .pci_subdevice = 0x5048,
434           .config = STAC_D945GTP3 },    /* Intel D945GPB - 3 Stack */
435         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
436           .pci_subdevice = 0x0110,
437           .config = STAC_D945GTP3 },    /* Intel D945GLR - 3 Stack */
438         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
439           .pci_subdevice = 0x0404,
440           .config = STAC_D945GTP5 },    /* Intel D945GTP - 5 Stack */
441         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
442           .pci_subdevice = 0x0303,
443           .config = STAC_D945GTP5 },    /* Intel D945GNT - 5 Stack */
444         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
445           .pci_subdevice = 0x0013,
446           .config = STAC_D945GTP5 },    /* Intel D955XBK - 5 Stack */
447         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
448           .pci_subdevice = 0x0417,
449           .config = STAC_D945GTP5 },    /* Intel D975XBK - 5 Stack */
450           /* Intel 945P based systems */
451         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
452           .pci_subdevice = 0x0b0b,
453           .config = STAC_D945GTP3 },    /* Intel D945PSN - 3 Stack */
454         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
455           .pci_subdevice = 0x0112,
456           .config = STAC_D945GTP3 },    /* Intel D945PLN - 3 Stack */
457         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
458           .pci_subdevice = 0x0d0d,
459           .config = STAC_D945GTP3 },    /* Intel D945PLM - 3 Stack */
460         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
461           .pci_subdevice = 0x0909,
462           .config = STAC_D945GTP3 },    /* Intel D945PAW - 3 Stack */
463         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
464           .pci_subdevice = 0x0505,
465           .config = STAC_D945GTP3 },    /* Intel D945PLM - 3 Stack */
466         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
467           .pci_subdevice = 0x0707,
468           .config = STAC_D945GTP5 },    /* Intel D945PSV - 5 Stack */
469           /* other systems  */
470         { .pci_subvendor = 0x8384,
471           .pci_subdevice = 0x7680,
472           .config = STAC_MACMINI },     /* Apple Mac Mini (early 2006) */
473         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
474           .pci_subdevice = 0x2112,
475           .config = STAC_D965_2112 },
476         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
477           .pci_subdevice = 0x284b,
478           .config = STAC_D965_284B },
479         {} /* terminator */
480 };
481
482 static unsigned int ref927x_pin_configs[14] = {
483         0x01813122, 0x01a19021, 0x01014010, 0x01016011,
484         0x01012012, 0x01011014, 0x40000100, 0x40000100, 
485         0x40000100, 0x40000100, 0x40000100, 0x01441030,
486         0x01c41030, 0x40000100,
487 };
488
489 static unsigned int d965_2112_pin_configs[14] = {
490         0x0221401f, 0x02a19120, 0x40000100, 0x01014011,
491         0x01a19021, 0x01813024, 0x40000100, 0x40000100,
492         0x40000100, 0x40000100, 0x40000100, 0x40000100,
493         0x40000100, 0x40000100
494 };
495
496 static unsigned int *stac927x_brd_tbl[] = {
497         [STAC_REF] =    ref927x_pin_configs,
498         [STAC_D965_2112] = d965_2112_pin_configs,
499 };
500
501 static struct hda_board_config stac927x_cfg_tbl[] = {
502         { .modelname = "ref",
503           .pci_subvendor = PCI_VENDOR_ID_INTEL,
504           .pci_subdevice = 0x2668,      /* DFI LanParty */
505           .config = STAC_REF },         /* SigmaTel reference board */
506         /* SigmaTel 9227 reference board */
507         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
508           .pci_subdevice = 0x284b,
509           .config = STAC_D965_284B },
510          /* Intel 946 based systems */
511         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
512           .pci_subdevice = 0x3d01,
513           .config = STAC_D965_2112 }, /* D946  configuration */
514         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
515           .pci_subdevice = 0xa301,
516           .config = STAC_D965_2112 }, /* Intel D946GZT - 3 stack  */
517         /* 965 based systems */
518         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
519           .pci_subdevice = 0x2116,
520           .config = STAC_D965_2112 }, /* Intel D965 3Stack config */
521         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
522           .pci_subdevice = 0x2115,
523           .config = STAC_D965_2112 }, /* Intel DQ965WC - 3 Stack  */
524         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
525           .pci_subdevice = 0x2114,
526           .config = STAC_D965_2112 }, /* Intel D965 3Stack config */
527         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
528           .pci_subdevice = 0x2113,
529           .config = STAC_D965_2112 }, /* Intel D965 3Stack config */
530         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
531           .pci_subdevice = 0x2112,
532           .config = STAC_D965_2112 }, /* Intel DG965MS - 3 Stack  */
533         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
534           .pci_subdevice = 0x2111,
535           .config = STAC_D965_2112 }, /* Intel D965 3Stack config */
536         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
537           .pci_subdevice = 0x2110,
538           .config = STAC_D965_2112 }, /* Intel D965 3Stack config */
539         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
540           .pci_subdevice = 0x2009,
541           .config = STAC_D965_2112 }, /* Intel D965 3Stack config */
542         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
543           .pci_subdevice = 0x2008,
544           .config = STAC_D965_2112 }, /* Intel DQ965GF - 3 Stack  */
545         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
546           .pci_subdevice = 0x2007,
547           .config = STAC_D965_2112 }, /* Intel D965 3Stack config */
548         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
549           .pci_subdevice = 0x2006,
550           .config = STAC_D965_2112 }, /* Intel D965 3Stack config */
551         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
552           .pci_subdevice = 0x2005,
553           .config = STAC_D965_2112 }, /* Intel D965 3Stack config */
554         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
555           .pci_subdevice = 0x2004,
556           .config = STAC_D965_2112 }, /* Intel D965 3Stack config */
557         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
558           .pci_subdevice = 0x2003,
559           .config = STAC_D965_2112 }, /* Intel D965 3Stack config */
560         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
561           .pci_subdevice = 0x2002,
562           .config = STAC_D965_2112 }, /* Intel D965 3Stack config */
563         { .pci_subvendor = PCI_VENDOR_ID_INTEL,
564           .pci_subdevice = 0x2001,
565           .config = STAC_D965_2112 }, /* Intel DQ965GF - 3 Stackg */
566         {} /* terminator */
567 };
568
569 static unsigned int ref9205_pin_configs[12] = {
570         0x40000100, 0x40000100, 0x01016011, 0x01014010,
571         0x01813122, 0x01a19021, 0x40000100, 0x40000100, 
572         0x40000100, 0x40000100, 0x01441030, 0x01c41030
573 };
574
575 static unsigned int *stac9205_brd_tbl[] = {
576         ref9205_pin_configs,
577 };
578
579 static struct hda_board_config stac9205_cfg_tbl[] = {
580         { .modelname = "ref",
581           .pci_subvendor = PCI_VENDOR_ID_INTEL,
582           .pci_subdevice = 0x2668,      /* DFI LanParty */
583           .config = STAC_REF },         /* SigmaTel reference board */
584         {} /* terminator */
585 };
586
587 static void stac92xx_set_config_regs(struct hda_codec *codec)
588 {
589         int i;
590         struct sigmatel_spec *spec = codec->spec;
591         unsigned int pin_cfg;
592
593         for (i=0; i < spec->num_pins; i++) {
594                 snd_hda_codec_write(codec, spec->pin_nids[i], 0,
595                                     AC_VERB_SET_CONFIG_DEFAULT_BYTES_0,
596                                     spec->pin_configs[i] & 0x000000ff);
597                 snd_hda_codec_write(codec, spec->pin_nids[i], 0,
598                                     AC_VERB_SET_CONFIG_DEFAULT_BYTES_1,
599                                     (spec->pin_configs[i] & 0x0000ff00) >> 8);
600                 snd_hda_codec_write(codec, spec->pin_nids[i], 0,
601                                     AC_VERB_SET_CONFIG_DEFAULT_BYTES_2,
602                                     (spec->pin_configs[i] & 0x00ff0000) >> 16);
603                 snd_hda_codec_write(codec, spec->pin_nids[i], 0,
604                                     AC_VERB_SET_CONFIG_DEFAULT_BYTES_3,
605                                     spec->pin_configs[i] >> 24);
606                 pin_cfg = snd_hda_codec_read(codec, spec->pin_nids[i], 0,
607                                              AC_VERB_GET_CONFIG_DEFAULT,
608                                              0x00);     
609                 snd_printdd(KERN_INFO "hda_codec: pin nid %2.2x pin config %8.8x\n", spec->pin_nids[i], pin_cfg);
610         }
611 }
612
613 /*
614  * Analog playback callbacks
615  */
616 static int stac92xx_playback_pcm_open(struct hda_pcm_stream *hinfo,
617                                       struct hda_codec *codec,
618                                       struct snd_pcm_substream *substream)
619 {
620         struct sigmatel_spec *spec = codec->spec;
621         return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream);
622 }
623
624 static int stac92xx_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
625                                          struct hda_codec *codec,
626                                          unsigned int stream_tag,
627                                          unsigned int format,
628                                          struct snd_pcm_substream *substream)
629 {
630         struct sigmatel_spec *spec = codec->spec;
631         return snd_hda_multi_out_analog_prepare(codec, &spec->multiout, stream_tag, format, substream);
632 }
633
634 static int stac92xx_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
635                                         struct hda_codec *codec,
636                                         struct snd_pcm_substream *substream)
637 {
638         struct sigmatel_spec *spec = codec->spec;
639         return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
640 }
641
642 /*
643  * Digital playback callbacks
644  */
645 static int stac92xx_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
646                                           struct hda_codec *codec,
647                                           struct snd_pcm_substream *substream)
648 {
649         struct sigmatel_spec *spec = codec->spec;
650         return snd_hda_multi_out_dig_open(codec, &spec->multiout);
651 }
652
653 static int stac92xx_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
654                                            struct hda_codec *codec,
655                                            struct snd_pcm_substream *substream)
656 {
657         struct sigmatel_spec *spec = codec->spec;
658         return snd_hda_multi_out_dig_close(codec, &spec->multiout);
659 }
660
661
662 /*
663  * Analog capture callbacks
664  */
665 static int stac92xx_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
666                                         struct hda_codec *codec,
667                                         unsigned int stream_tag,
668                                         unsigned int format,
669                                         struct snd_pcm_substream *substream)
670 {
671         struct sigmatel_spec *spec = codec->spec;
672
673         snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
674                                    stream_tag, 0, format);
675         return 0;
676 }
677
678 static int stac92xx_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
679                                         struct hda_codec *codec,
680                                         struct snd_pcm_substream *substream)
681 {
682         struct sigmatel_spec *spec = codec->spec;
683
684         snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number], 0, 0, 0);
685         return 0;
686 }
687
688 static struct hda_pcm_stream stac92xx_pcm_digital_playback = {
689         .substreams = 1,
690         .channels_min = 2,
691         .channels_max = 2,
692         /* NID is set in stac92xx_build_pcms */
693         .ops = {
694                 .open = stac92xx_dig_playback_pcm_open,
695                 .close = stac92xx_dig_playback_pcm_close
696         },
697 };
698
699 static struct hda_pcm_stream stac92xx_pcm_digital_capture = {
700         .substreams = 1,
701         .channels_min = 2,
702         .channels_max = 2,
703         /* NID is set in stac92xx_build_pcms */
704 };
705
706 static struct hda_pcm_stream stac92xx_pcm_analog_playback = {
707         .substreams = 1,
708         .channels_min = 2,
709         .channels_max = 8,
710         .nid = 0x02, /* NID to query formats and rates */
711         .ops = {
712                 .open = stac92xx_playback_pcm_open,
713                 .prepare = stac92xx_playback_pcm_prepare,
714                 .cleanup = stac92xx_playback_pcm_cleanup
715         },
716 };
717
718 static struct hda_pcm_stream stac92xx_pcm_analog_alt_playback = {
719         .substreams = 1,
720         .channels_min = 2,
721         .channels_max = 2,
722         .nid = 0x06, /* NID to query formats and rates */
723         .ops = {
724                 .open = stac92xx_playback_pcm_open,
725                 .prepare = stac92xx_playback_pcm_prepare,
726                 .cleanup = stac92xx_playback_pcm_cleanup
727         },
728 };
729
730 static struct hda_pcm_stream stac92xx_pcm_analog_capture = {
731         .substreams = 2,
732         .channels_min = 2,
733         .channels_max = 2,
734         /* NID is set in stac92xx_build_pcms */
735         .ops = {
736                 .prepare = stac92xx_capture_pcm_prepare,
737                 .cleanup = stac92xx_capture_pcm_cleanup
738         },
739 };
740
741 static int stac92xx_build_pcms(struct hda_codec *codec)
742 {
743         struct sigmatel_spec *spec = codec->spec;
744         struct hda_pcm *info = spec->pcm_rec;
745
746         codec->num_pcms = 1;
747         codec->pcm_info = info;
748
749         info->name = "STAC92xx Analog";
750         info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_analog_playback;
751         info->stream[SNDRV_PCM_STREAM_CAPTURE] = stac92xx_pcm_analog_capture;
752         info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
753
754         if (spec->alt_switch) {
755                 codec->num_pcms++;
756                 info++;
757                 info->name = "STAC92xx Analog Alt";
758                 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_analog_alt_playback;
759         }
760
761         if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
762                 codec->num_pcms++;
763                 info++;
764                 info->name = "STAC92xx Digital";
765                 if (spec->multiout.dig_out_nid) {
766                         info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_digital_playback;
767                         info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
768                 }
769                 if (spec->dig_in_nid) {
770                         info->stream[SNDRV_PCM_STREAM_CAPTURE] = stac92xx_pcm_digital_capture;
771                         info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
772                 }
773         }
774
775         return 0;
776 }
777
778 static unsigned int stac92xx_get_vref(struct hda_codec *codec, hda_nid_t nid)
779 {
780         unsigned int pincap = snd_hda_param_read(codec, nid,
781                                                  AC_PAR_PIN_CAP);
782         pincap = (pincap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
783         if (pincap & AC_PINCAP_VREF_100)
784                 return AC_PINCTL_VREF_100;
785         if (pincap & AC_PINCAP_VREF_80)
786                 return AC_PINCTL_VREF_80;
787         if (pincap & AC_PINCAP_VREF_50)
788                 return AC_PINCTL_VREF_50;
789         if (pincap & AC_PINCAP_VREF_GRD)
790                 return AC_PINCTL_VREF_GRD;
791         return 0;
792 }
793
794 static void stac92xx_auto_set_pinctl(struct hda_codec *codec, hda_nid_t nid, int pin_type)
795
796 {
797         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
798 }
799
800 static int stac92xx_io_switch_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
801 {
802         uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
803         uinfo->count = 1;
804         uinfo->value.integer.min = 0;
805         uinfo->value.integer.max = 1;
806         return 0;
807 }
808
809 static int stac92xx_io_switch_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
810 {
811         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
812         struct sigmatel_spec *spec = codec->spec;
813         int io_idx = kcontrol-> private_value & 0xff;
814
815         ucontrol->value.integer.value[0] = spec->io_switch[io_idx];
816         return 0;
817 }
818
819 static int stac92xx_io_switch_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
820 {
821         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
822         struct sigmatel_spec *spec = codec->spec;
823         hda_nid_t nid = kcontrol->private_value >> 8;
824         int io_idx = kcontrol-> private_value & 0xff;
825         unsigned short val = ucontrol->value.integer.value[0];
826
827         spec->io_switch[io_idx] = val;
828
829         if (val)
830                 stac92xx_auto_set_pinctl(codec, nid, AC_PINCTL_OUT_EN);
831         else {
832                 unsigned int pinctl = AC_PINCTL_IN_EN;
833                 if (io_idx) /* set VREF for mic */
834                         pinctl |= stac92xx_get_vref(codec, nid);
835                 stac92xx_auto_set_pinctl(codec, nid, pinctl);
836         }
837         return 1;
838 }
839
840 #define STAC_CODEC_IO_SWITCH(xname, xpval) \
841         { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
842           .name = xname, \
843           .index = 0, \
844           .info = stac92xx_io_switch_info, \
845           .get = stac92xx_io_switch_get, \
846           .put = stac92xx_io_switch_put, \
847           .private_value = xpval, \
848         }
849
850
851 enum {
852         STAC_CTL_WIDGET_VOL,
853         STAC_CTL_WIDGET_MUTE,
854         STAC_CTL_WIDGET_IO_SWITCH,
855 };
856
857 static struct snd_kcontrol_new stac92xx_control_templates[] = {
858         HDA_CODEC_VOLUME(NULL, 0, 0, 0),
859         HDA_CODEC_MUTE(NULL, 0, 0, 0),
860         STAC_CODEC_IO_SWITCH(NULL, 0),
861 };
862
863 /* add dynamic controls */
864 static int stac92xx_add_control(struct sigmatel_spec *spec, int type, const char *name, unsigned long val)
865 {
866         struct snd_kcontrol_new *knew;
867
868         if (spec->num_kctl_used >= spec->num_kctl_alloc) {
869                 int num = spec->num_kctl_alloc + NUM_CONTROL_ALLOC;
870
871                 knew = kcalloc(num + 1, sizeof(*knew), GFP_KERNEL); /* array + terminator */
872                 if (! knew)
873                         return -ENOMEM;
874                 if (spec->kctl_alloc) {
875                         memcpy(knew, spec->kctl_alloc, sizeof(*knew) * spec->num_kctl_alloc);
876                         kfree(spec->kctl_alloc);
877                 }
878                 spec->kctl_alloc = knew;
879                 spec->num_kctl_alloc = num;
880         }
881
882         knew = &spec->kctl_alloc[spec->num_kctl_used];
883         *knew = stac92xx_control_templates[type];
884         knew->name = kstrdup(name, GFP_KERNEL);
885         if (! knew->name)
886                 return -ENOMEM;
887         knew->private_value = val;
888         spec->num_kctl_used++;
889         return 0;
890 }
891
892 /* flag inputs as additional dynamic lineouts */
893 static int stac92xx_add_dyn_out_pins(struct hda_codec *codec, struct auto_pin_cfg *cfg)
894 {
895         struct sigmatel_spec *spec = codec->spec;
896
897         switch (cfg->line_outs) {
898         case 3:
899                 /* add line-in as side */
900                 if (cfg->input_pins[AUTO_PIN_LINE]) {
901                         cfg->line_out_pins[3] = cfg->input_pins[AUTO_PIN_LINE];
902                         spec->line_switch = 1;
903                         cfg->line_outs++;
904                 }
905                 break;
906         case 2:
907                 /* add line-in as clfe and mic as side */
908                 if (cfg->input_pins[AUTO_PIN_LINE]) {
909                         cfg->line_out_pins[2] = cfg->input_pins[AUTO_PIN_LINE];
910                         spec->line_switch = 1;
911                         cfg->line_outs++;
912                 }
913                 if (cfg->input_pins[AUTO_PIN_MIC]) {
914                         cfg->line_out_pins[3] = cfg->input_pins[AUTO_PIN_MIC];
915                         spec->mic_switch = 1;
916                         cfg->line_outs++;
917                 }
918                 break;
919         case 1:
920                 /* add line-in as surr and mic as clfe */
921                 if (cfg->input_pins[AUTO_PIN_LINE]) {
922                         cfg->line_out_pins[1] = cfg->input_pins[AUTO_PIN_LINE];
923                         spec->line_switch = 1;
924                         cfg->line_outs++;
925                 }
926                 if (cfg->input_pins[AUTO_PIN_MIC]) {
927                         cfg->line_out_pins[2] = cfg->input_pins[AUTO_PIN_MIC];
928                         spec->mic_switch = 1;
929                         cfg->line_outs++;
930                 }
931                 break;
932         }
933
934         return 0;
935 }
936
937 /*
938  * XXX The line_out pin widget connection list may not be set to the
939  * desired DAC nid. This is the case on 927x where ports A and B can
940  * be routed to several DACs.
941  *
942  * This requires an analysis of the line-out/hp pin configuration
943  * to provide a best fit for pin/DAC configurations that are routable.
944  * For now, 927x DAC4 is not supported and 927x DAC1 output to ports
945  * A and B is not supported.
946  */
947 /* fill in the dac_nids table from the parsed pin configuration */
948 static int stac92xx_auto_fill_dac_nids(struct hda_codec *codec,
949                                        const struct auto_pin_cfg *cfg)
950 {
951         struct sigmatel_spec *spec = codec->spec;
952         hda_nid_t nid;
953         int i;
954
955         /* check the pins hardwired to audio widget */
956         for (i = 0; i < cfg->line_outs; i++) {
957                 nid = cfg->line_out_pins[i];
958                 spec->multiout.dac_nids[i] = snd_hda_codec_read(codec, nid, 0,
959                                         AC_VERB_GET_CONNECT_LIST, 0) & 0xff;
960         }
961
962         spec->multiout.num_dacs = cfg->line_outs;
963
964         return 0;
965 }
966
967 /* add playback controls from the parsed DAC table */
968 static int stac92xx_auto_create_multi_out_ctls(struct sigmatel_spec *spec,
969                                                const struct auto_pin_cfg *cfg)
970 {
971         char name[32];
972         static const char *chname[4] = {
973                 "Front", "Surround", NULL /*CLFE*/, "Side"
974         };
975         hda_nid_t nid;
976         int i, err;
977
978         for (i = 0; i < cfg->line_outs; i++) {
979                 if (!spec->multiout.dac_nids[i])
980                         continue;
981
982                 nid = spec->multiout.dac_nids[i];
983
984                 if (i == 2) {
985                         /* Center/LFE */
986                         if ((err = stac92xx_add_control(spec, STAC_CTL_WIDGET_VOL, "Center Playback Volume",
987                                                HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT))) < 0)
988                                 return err;
989                         if ((err = stac92xx_add_control(spec, STAC_CTL_WIDGET_VOL, "LFE Playback Volume",
990                                                HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_OUTPUT))) < 0)
991                                 return err;
992                         if ((err = stac92xx_add_control(spec, STAC_CTL_WIDGET_MUTE, "Center Playback Switch",
993                                                HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT))) < 0)
994                                 return err;
995                         if ((err = stac92xx_add_control(spec, STAC_CTL_WIDGET_MUTE, "LFE Playback Switch",
996                                                HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_OUTPUT))) < 0)
997                                 return err;
998                 } else {
999                         sprintf(name, "%s Playback Volume", chname[i]);
1000                         if ((err = stac92xx_add_control(spec, STAC_CTL_WIDGET_VOL, name,
1001                                                HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT))) < 0)
1002                                 return err;
1003                         sprintf(name, "%s Playback Switch", chname[i]);
1004                         if ((err = stac92xx_add_control(spec, STAC_CTL_WIDGET_MUTE, name,
1005                                                HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT))) < 0)
1006                                 return err;
1007                 }
1008         }
1009
1010         if (spec->line_switch)
1011                 if ((err = stac92xx_add_control(spec, STAC_CTL_WIDGET_IO_SWITCH, "Line In as Output Switch", cfg->input_pins[AUTO_PIN_LINE] << 8)) < 0)
1012                         return err;
1013
1014         if (spec->mic_switch)
1015                 if ((err = stac92xx_add_control(spec, STAC_CTL_WIDGET_IO_SWITCH, "Mic as Output Switch", (cfg->input_pins[AUTO_PIN_MIC] << 8) | 1)) < 0)
1016                         return err;
1017
1018         return 0;
1019 }
1020
1021 /* add playback controls for HP output */
1022 static int stac92xx_auto_create_hp_ctls(struct hda_codec *codec, struct auto_pin_cfg *cfg)
1023 {
1024         struct sigmatel_spec *spec = codec->spec;
1025         hda_nid_t pin = cfg->hp_pin;
1026         hda_nid_t nid;
1027         int i, err;
1028         unsigned int wid_caps;
1029
1030         if (! pin)
1031                 return 0;
1032
1033         wid_caps = get_wcaps(codec, pin);
1034         if (wid_caps & AC_WCAP_UNSOL_CAP)
1035                 spec->hp_detect = 1;
1036
1037         nid = snd_hda_codec_read(codec, pin, 0, AC_VERB_GET_CONNECT_LIST, 0) & 0xff;
1038         for (i = 0; i < cfg->line_outs; i++) {
1039                 if (! spec->multiout.dac_nids[i])
1040                         continue;
1041                 if (spec->multiout.dac_nids[i] == nid)
1042                         return 0;
1043         }
1044
1045         spec->multiout.hp_nid = nid;
1046
1047         /* control HP volume/switch on the output mixer amp */
1048         if ((err = stac92xx_add_control(spec, STAC_CTL_WIDGET_VOL, "Headphone Playback Volume",
1049                                         HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT))) < 0)
1050                 return err;
1051         if ((err = stac92xx_add_control(spec, STAC_CTL_WIDGET_MUTE, "Headphone Playback Switch",
1052                                         HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT))) < 0)
1053                 return err;
1054
1055         return 0;
1056 }
1057
1058 /* create playback/capture controls for input pins */
1059 static int stac92xx_auto_create_analog_input_ctls(struct hda_codec *codec, const struct auto_pin_cfg *cfg)
1060 {
1061         struct sigmatel_spec *spec = codec->spec;
1062         struct hda_input_mux *imux = &spec->private_imux;
1063         hda_nid_t con_lst[HDA_MAX_NUM_INPUTS];
1064         int i, j, k;
1065
1066         for (i = 0; i < AUTO_PIN_LAST; i++) {
1067                 int index = -1;
1068                 if (cfg->input_pins[i]) {
1069                         imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
1070
1071                         for (j=0; j<spec->num_muxes; j++) {
1072                                 int num_cons = snd_hda_get_connections(codec, spec->mux_nids[j], con_lst, HDA_MAX_NUM_INPUTS);
1073                                 for (k=0; k<num_cons; k++)
1074                                         if (con_lst[k] == cfg->input_pins[i]) {
1075                                                 index = k;
1076                                                 break;
1077                                         }
1078                                 if (index >= 0)
1079                                         break;
1080                         }
1081                         imux->items[imux->num_items].index = index;
1082                         imux->num_items++;
1083                 }
1084         }
1085
1086         if (imux->num_items == 1) {
1087                 /*
1088                  * Set the current input for the muxes.
1089                  * The STAC9221 has two input muxes with identical source
1090                  * NID lists.  Hopefully this won't get confused.
1091                  */
1092                 for (i = 0; i < spec->num_muxes; i++) {
1093                         snd_hda_codec_write(codec, spec->mux_nids[i], 0,
1094                                             AC_VERB_SET_CONNECT_SEL,
1095                                             imux->items[0].index);
1096                 }
1097         }
1098
1099         return 0;
1100 }
1101
1102 static void stac92xx_auto_init_multi_out(struct hda_codec *codec)
1103 {
1104         struct sigmatel_spec *spec = codec->spec;
1105         int i;
1106
1107         for (i = 0; i < spec->autocfg.line_outs; i++) {
1108                 hda_nid_t nid = spec->autocfg.line_out_pins[i];
1109                 stac92xx_auto_set_pinctl(codec, nid, AC_PINCTL_OUT_EN);
1110         }
1111 }
1112
1113 static void stac92xx_auto_init_hp_out(struct hda_codec *codec)
1114 {
1115         struct sigmatel_spec *spec = codec->spec;
1116         hda_nid_t pin;
1117
1118         pin = spec->autocfg.hp_pin;
1119         if (pin) /* connect to front */
1120                 stac92xx_auto_set_pinctl(codec, pin, AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN);
1121 }
1122
1123 static int stac92xx_parse_auto_config(struct hda_codec *codec, hda_nid_t dig_out, hda_nid_t dig_in)
1124 {
1125         struct sigmatel_spec *spec = codec->spec;
1126         int err;
1127
1128         if ((err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL)) < 0)
1129                 return err;
1130         if (! spec->autocfg.line_outs)
1131                 return 0; /* can't find valid pin config */
1132
1133         if ((err = stac92xx_add_dyn_out_pins(codec, &spec->autocfg)) < 0)
1134                 return err;
1135         if (spec->multiout.num_dacs == 0)
1136                 if ((err = stac92xx_auto_fill_dac_nids(codec, &spec->autocfg)) < 0)
1137                         return err;
1138
1139         if ((err = stac92xx_auto_create_multi_out_ctls(spec, &spec->autocfg)) < 0 ||
1140             (err = stac92xx_auto_create_hp_ctls(codec, &spec->autocfg)) < 0 ||
1141             (err = stac92xx_auto_create_analog_input_ctls(codec, &spec->autocfg)) < 0)
1142                 return err;
1143
1144         spec->multiout.max_channels = spec->multiout.num_dacs * 2;
1145         if (spec->multiout.max_channels > 2)
1146                 spec->surr_switch = 1;
1147
1148         if (spec->autocfg.dig_out_pin)
1149                 spec->multiout.dig_out_nid = dig_out;
1150         if (spec->autocfg.dig_in_pin)
1151                 spec->dig_in_nid = dig_in;
1152
1153         if (spec->kctl_alloc)
1154                 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
1155
1156         spec->input_mux = &spec->private_imux;
1157
1158         return 1;
1159 }
1160
1161 /* add playback controls for HP output */
1162 static int stac9200_auto_create_hp_ctls(struct hda_codec *codec,
1163                                         struct auto_pin_cfg *cfg)
1164 {
1165         struct sigmatel_spec *spec = codec->spec;
1166         hda_nid_t pin = cfg->hp_pin;
1167         unsigned int wid_caps;
1168
1169         if (! pin)
1170                 return 0;
1171
1172         wid_caps = get_wcaps(codec, pin);
1173         if (wid_caps & AC_WCAP_UNSOL_CAP)
1174                 spec->hp_detect = 1;
1175
1176         return 0;
1177 }
1178
1179 static int stac9200_parse_auto_config(struct hda_codec *codec)
1180 {
1181         struct sigmatel_spec *spec = codec->spec;
1182         int err;
1183
1184         if ((err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL)) < 0)
1185                 return err;
1186
1187         if ((err = stac92xx_auto_create_analog_input_ctls(codec, &spec->autocfg)) < 0)
1188                 return err;
1189
1190         if ((err = stac9200_auto_create_hp_ctls(codec, &spec->autocfg)) < 0)
1191                 return err;
1192
1193         if (spec->autocfg.dig_out_pin)
1194                 spec->multiout.dig_out_nid = 0x05;
1195         if (spec->autocfg.dig_in_pin)
1196                 spec->dig_in_nid = 0x04;
1197
1198         if (spec->kctl_alloc)
1199                 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
1200
1201         spec->input_mux = &spec->private_imux;
1202
1203         return 1;
1204 }
1205
1206 /*
1207  * Early 2006 Intel Macintoshes with STAC9220X5 codecs seem to have a
1208  * funky external mute control using GPIO pins.
1209  */
1210
1211 static void stac922x_gpio_mute(struct hda_codec *codec, int pin, int muted)
1212 {
1213         unsigned int gpiostate, gpiomask, gpiodir;
1214
1215         gpiostate = snd_hda_codec_read(codec, codec->afg, 0,
1216                                        AC_VERB_GET_GPIO_DATA, 0);
1217
1218         if (!muted)
1219                 gpiostate |= (1 << pin);
1220         else
1221                 gpiostate &= ~(1 << pin);
1222
1223         gpiomask = snd_hda_codec_read(codec, codec->afg, 0,
1224                                       AC_VERB_GET_GPIO_MASK, 0);
1225         gpiomask |= (1 << pin);
1226
1227         gpiodir = snd_hda_codec_read(codec, codec->afg, 0,
1228                                      AC_VERB_GET_GPIO_DIRECTION, 0);
1229         gpiodir |= (1 << pin);
1230
1231         /* AppleHDA seems to do this -- WTF is this verb?? */
1232         snd_hda_codec_write(codec, codec->afg, 0, 0x7e7, 0);
1233
1234         snd_hda_codec_write(codec, codec->afg, 0,
1235                             AC_VERB_SET_GPIO_MASK, gpiomask);
1236         snd_hda_codec_write(codec, codec->afg, 0,
1237                             AC_VERB_SET_GPIO_DIRECTION, gpiodir);
1238
1239         msleep(1);
1240
1241         snd_hda_codec_write(codec, codec->afg, 0,
1242                             AC_VERB_SET_GPIO_DATA, gpiostate);
1243 }
1244
1245 static int stac92xx_init(struct hda_codec *codec)
1246 {
1247         struct sigmatel_spec *spec = codec->spec;
1248         struct auto_pin_cfg *cfg = &spec->autocfg;
1249         int i;
1250
1251         snd_hda_sequence_write(codec, spec->init);
1252
1253         /* set up pins */
1254         if (spec->hp_detect) {
1255                 /* Enable unsolicited responses on the HP widget */
1256                 snd_hda_codec_write(codec, cfg->hp_pin, 0,
1257                                 AC_VERB_SET_UNSOLICITED_ENABLE,
1258                                 STAC_UNSOL_ENABLE);
1259                 /* fake event to set up pins */
1260                 codec->patch_ops.unsol_event(codec, STAC_HP_EVENT << 26);
1261                 /* enable the headphones by default.  If/when unsol_event detection works, this will be ignored */
1262                 stac92xx_auto_init_hp_out(codec);
1263         } else {
1264                 stac92xx_auto_init_multi_out(codec);
1265                 stac92xx_auto_init_hp_out(codec);
1266         }
1267         for (i = 0; i < AUTO_PIN_LAST; i++) {
1268                 hda_nid_t nid = cfg->input_pins[i];
1269                 if (nid) {
1270                         unsigned int pinctl = AC_PINCTL_IN_EN;
1271                         if (i == AUTO_PIN_MIC || i == AUTO_PIN_FRONT_MIC)
1272                                 pinctl |= stac92xx_get_vref(codec, nid);
1273                         stac92xx_auto_set_pinctl(codec, nid, pinctl);
1274                 }
1275         }
1276         if (cfg->dig_out_pin)
1277                 stac92xx_auto_set_pinctl(codec, cfg->dig_out_pin,
1278                                          AC_PINCTL_OUT_EN);
1279         if (cfg->dig_in_pin)
1280                 stac92xx_auto_set_pinctl(codec, cfg->dig_in_pin,
1281                                          AC_PINCTL_IN_EN);
1282
1283         if (spec->gpio_mute) {
1284                 stac922x_gpio_mute(codec, 0, 0);
1285                 stac922x_gpio_mute(codec, 1, 0);
1286         }
1287
1288         return 0;
1289 }
1290
1291 static void stac92xx_free(struct hda_codec *codec)
1292 {
1293         struct sigmatel_spec *spec = codec->spec;
1294         int i;
1295
1296         if (! spec)
1297                 return;
1298
1299         if (spec->kctl_alloc) {
1300                 for (i = 0; i < spec->num_kctl_used; i++)
1301                         kfree(spec->kctl_alloc[i].name);
1302                 kfree(spec->kctl_alloc);
1303         }
1304
1305         kfree(spec);
1306 }
1307
1308 static void stac92xx_set_pinctl(struct hda_codec *codec, hda_nid_t nid,
1309                                 unsigned int flag)
1310 {
1311         unsigned int pin_ctl = snd_hda_codec_read(codec, nid,
1312                         0, AC_VERB_GET_PIN_WIDGET_CONTROL, 0x00);
1313         snd_hda_codec_write(codec, nid, 0,
1314                         AC_VERB_SET_PIN_WIDGET_CONTROL,
1315                         pin_ctl | flag);
1316 }
1317
1318 static void stac92xx_reset_pinctl(struct hda_codec *codec, hda_nid_t nid,
1319                                   unsigned int flag)
1320 {
1321         unsigned int pin_ctl = snd_hda_codec_read(codec, nid,
1322                         0, AC_VERB_GET_PIN_WIDGET_CONTROL, 0x00);
1323         snd_hda_codec_write(codec, nid, 0,
1324                         AC_VERB_SET_PIN_WIDGET_CONTROL,
1325                         pin_ctl & ~flag);
1326 }
1327
1328 static void stac92xx_unsol_event(struct hda_codec *codec, unsigned int res)
1329 {
1330         struct sigmatel_spec *spec = codec->spec;
1331         struct auto_pin_cfg *cfg = &spec->autocfg;
1332         int i, presence;
1333
1334         if ((res >> 26) != STAC_HP_EVENT)
1335                 return;
1336
1337         presence = snd_hda_codec_read(codec, cfg->hp_pin, 0,
1338                         AC_VERB_GET_PIN_SENSE, 0x00) >> 31;
1339
1340         if (presence) {
1341                 /* disable lineouts, enable hp */
1342                 for (i = 0; i < cfg->line_outs; i++)
1343                         stac92xx_reset_pinctl(codec, cfg->line_out_pins[i],
1344                                                 AC_PINCTL_OUT_EN);
1345                 stac92xx_set_pinctl(codec, cfg->hp_pin, AC_PINCTL_OUT_EN);
1346         } else {
1347                 /* enable lineouts, disable hp */
1348                 for (i = 0; i < cfg->line_outs; i++)
1349                         stac92xx_set_pinctl(codec, cfg->line_out_pins[i],
1350                                                 AC_PINCTL_OUT_EN);
1351                 stac92xx_reset_pinctl(codec, cfg->hp_pin, AC_PINCTL_OUT_EN);
1352         }
1353
1354
1355 #ifdef CONFIG_PM
1356 static int stac92xx_resume(struct hda_codec *codec)
1357 {
1358         struct sigmatel_spec *spec = codec->spec;
1359         int i;
1360
1361         stac92xx_init(codec);
1362         for (i = 0; i < spec->num_mixers; i++)
1363                 snd_hda_resume_ctls(codec, spec->mixers[i]);
1364         if (spec->multiout.dig_out_nid)
1365                 snd_hda_resume_spdif_out(codec);
1366         if (spec->dig_in_nid)
1367                 snd_hda_resume_spdif_in(codec);
1368
1369         return 0;
1370 }
1371 #endif
1372
1373 static struct hda_codec_ops stac92xx_patch_ops = {
1374         .build_controls = stac92xx_build_controls,
1375         .build_pcms = stac92xx_build_pcms,
1376         .init = stac92xx_init,
1377         .free = stac92xx_free,
1378         .unsol_event = stac92xx_unsol_event,
1379 #ifdef CONFIG_PM
1380         .resume = stac92xx_resume,
1381 #endif
1382 };
1383
1384 static int patch_stac9200(struct hda_codec *codec)
1385 {
1386         struct sigmatel_spec *spec;
1387         int err;
1388
1389         spec  = kzalloc(sizeof(*spec), GFP_KERNEL);
1390         if (spec == NULL)
1391                 return -ENOMEM;
1392
1393         codec->spec = spec;
1394         spec->board_config = snd_hda_check_board_config(codec, stac9200_cfg_tbl);
1395         if (spec->board_config < 0)
1396                 snd_printdd(KERN_INFO "hda_codec: Unknown model for STAC9200, using BIOS defaults\n");
1397         else {
1398                 spec->num_pins = 8;
1399                 spec->pin_nids = stac9200_pin_nids;
1400                 spec->pin_configs = stac9200_brd_tbl[spec->board_config];
1401                 stac92xx_set_config_regs(codec);
1402         }
1403
1404         spec->multiout.max_channels = 2;
1405         spec->multiout.num_dacs = 1;
1406         spec->multiout.dac_nids = stac9200_dac_nids;
1407         spec->adc_nids = stac9200_adc_nids;
1408         spec->mux_nids = stac9200_mux_nids;
1409         spec->num_muxes = 1;
1410
1411         spec->init = stac9200_core_init;
1412         spec->mixer = stac9200_mixer;
1413
1414         err = stac9200_parse_auto_config(codec);
1415         if (err < 0) {
1416                 stac92xx_free(codec);
1417                 return err;
1418         }
1419
1420         codec->patch_ops = stac92xx_patch_ops;
1421
1422         return 0;
1423 }
1424
1425 static int patch_stac922x(struct hda_codec *codec)
1426 {
1427         struct sigmatel_spec *spec;
1428         int err;
1429
1430         spec  = kzalloc(sizeof(*spec), GFP_KERNEL);
1431         if (spec == NULL)
1432                 return -ENOMEM;
1433
1434         codec->spec = spec;
1435         spec->board_config = snd_hda_check_board_config(codec, stac922x_cfg_tbl);
1436         if (spec->board_config < 0)
1437                 snd_printdd(KERN_INFO "hda_codec: Unknown model for STAC922x, "
1438                             "using BIOS defaults\n");
1439         else if (stac922x_brd_tbl[spec->board_config] != NULL) {
1440                 spec->num_pins = 10;
1441                 spec->pin_nids = stac922x_pin_nids;
1442                 spec->pin_configs = stac922x_brd_tbl[spec->board_config];
1443                 stac92xx_set_config_regs(codec);
1444         }
1445
1446         spec->adc_nids = stac922x_adc_nids;
1447         spec->mux_nids = stac922x_mux_nids;
1448         spec->num_muxes = 2;
1449
1450         spec->init = stac922x_core_init;
1451         spec->mixer = stac922x_mixer;
1452
1453         spec->multiout.dac_nids = spec->dac_nids;
1454         
1455         err = stac92xx_parse_auto_config(codec, 0x08, 0x09);
1456         if (err < 0) {
1457                 stac92xx_free(codec);
1458                 return err;
1459         }
1460
1461         if (spec->board_config == STAC_MACMINI)
1462                 spec->gpio_mute = 1;
1463
1464         codec->patch_ops = stac92xx_patch_ops;
1465
1466         return 0;
1467 }
1468
1469 static int patch_stac927x(struct hda_codec *codec)
1470 {
1471         struct sigmatel_spec *spec;
1472         int err;
1473
1474         spec  = kzalloc(sizeof(*spec), GFP_KERNEL);
1475         if (spec == NULL)
1476                 return -ENOMEM;
1477
1478         codec->spec = spec;
1479         spec->board_config = snd_hda_check_board_config(codec, stac927x_cfg_tbl);
1480         if (spec->board_config < 0)
1481                 snd_printdd(KERN_INFO "hda_codec: Unknown model for STAC927x, using BIOS defaults\n");
1482         else if (stac927x_brd_tbl[spec->board_config] != NULL) {
1483                 spec->num_pins = 14;
1484                 spec->pin_nids = stac927x_pin_nids;
1485                 spec->pin_configs = stac927x_brd_tbl[spec->board_config];
1486                 stac92xx_set_config_regs(codec);
1487         }
1488
1489         switch (spec->board_config) {
1490         case STAC_D965_2112:
1491                 spec->adc_nids = stac927x_adc_nids;
1492                 spec->mux_nids = stac927x_mux_nids;
1493                 spec->num_muxes = 3;
1494                 spec->init = d965_2112_core_init;
1495                 spec->mixer = stac9227_mixer;
1496                 break;
1497         case STAC_D965_284B:
1498                 spec->adc_nids = stac9227_adc_nids;
1499                 spec->mux_nids = stac9227_mux_nids;
1500                 spec->num_muxes = 2;
1501                 spec->init = stac9227_core_init;
1502                 spec->mixer = stac9227_mixer;
1503                 break;
1504         default:
1505                 spec->adc_nids = stac927x_adc_nids;
1506                 spec->mux_nids = stac927x_mux_nids;
1507                 spec->num_muxes = 3;
1508                 spec->init = stac927x_core_init;
1509                 spec->mixer = stac927x_mixer;
1510         }
1511
1512         spec->multiout.dac_nids = spec->dac_nids;
1513
1514         err = stac92xx_parse_auto_config(codec, 0x1e, 0x20);
1515         if (err < 0) {
1516                 stac92xx_free(codec);
1517                 return err;
1518         }
1519
1520         codec->patch_ops = stac92xx_patch_ops;
1521
1522         return 0;
1523 }
1524
1525 static int patch_stac9205(struct hda_codec *codec)
1526 {
1527         struct sigmatel_spec *spec;
1528         int err;
1529
1530         spec  = kzalloc(sizeof(*spec), GFP_KERNEL);
1531         if (spec == NULL)
1532                 return -ENOMEM;
1533
1534         codec->spec = spec;
1535         spec->board_config = snd_hda_check_board_config(codec, stac9205_cfg_tbl);
1536         if (spec->board_config < 0)
1537                 snd_printdd(KERN_INFO "hda_codec: Unknown model for STAC9205, using BIOS defaults\n");
1538         else {
1539                 spec->num_pins = 14;
1540                 spec->pin_nids = stac9205_pin_nids;
1541                 spec->pin_configs = stac9205_brd_tbl[spec->board_config];
1542                 stac92xx_set_config_regs(codec);
1543         }
1544
1545         spec->adc_nids = stac9205_adc_nids;
1546         spec->mux_nids = stac9205_mux_nids;
1547         spec->num_muxes = 3;
1548
1549         spec->init = stac9205_core_init;
1550         spec->mixer = stac9205_mixer;
1551
1552         spec->multiout.dac_nids = spec->dac_nids;
1553
1554         err = stac92xx_parse_auto_config(codec, 0x1f, 0x20);
1555         if (err < 0) {
1556                 stac92xx_free(codec);
1557                 return err;
1558         }
1559
1560         codec->patch_ops = stac92xx_patch_ops;
1561
1562         return 0;
1563 }
1564
1565 /*
1566  * STAC 7661(?) and 7664 hack
1567  */
1568
1569 /* static config for Sony VAIO FE550G and Sony VAIO AR */
1570 static hda_nid_t vaio_dacs[] = { 0x2 };
1571 #define VAIO_HP_DAC     0x5
1572 static hda_nid_t vaio_adcs[] = { 0x8 /*,0x6*/ };
1573 static hda_nid_t vaio_mux_nids[] = { 0x15 };
1574
1575 static struct hda_input_mux vaio_mux = {
1576         .num_items = 2,
1577         .items = {
1578                 /* { "HP", 0x0 }, */
1579                 { "Line", 0x1 },
1580                 { "Mic", 0x2 },
1581                 { "PCM", 0x3 },
1582         }
1583 };
1584
1585 static struct hda_verb vaio_init[] = {
1586         {0x0a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP }, /* HP <- 0x2 */
1587         {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT }, /* Speaker <- 0x5 */
1588         {0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 }, /* Mic? (<- 0x2) */
1589         {0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN }, /* CD */
1590         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 }, /* Mic? */
1591         {0x15, AC_VERB_SET_CONNECT_SEL, 0x2}, /* mic-sel: 0a,0d,14,02 */
1592         {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE}, /* HP */
1593         {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE}, /* Speaker */
1594         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* capture sw/vol -> 0x8 */
1595         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, /* CD-in -> 0x6 */
1596         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, /* Mic-in -> 0x9 */
1597         {}
1598 };
1599
1600 /* bind volumes of both NID 0x02 and 0x05 */
1601 static int vaio_master_vol_put(struct snd_kcontrol *kcontrol,
1602                                struct snd_ctl_elem_value *ucontrol)
1603 {
1604         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1605         long *valp = ucontrol->value.integer.value;
1606         int change;
1607
1608         change = snd_hda_codec_amp_update(codec, 0x02, 0, HDA_OUTPUT, 0,
1609                                           0x7f, valp[0] & 0x7f);
1610         change |= snd_hda_codec_amp_update(codec, 0x02, 1, HDA_OUTPUT, 0,
1611                                            0x7f, valp[1] & 0x7f);
1612         snd_hda_codec_amp_update(codec, 0x05, 0, HDA_OUTPUT, 0,
1613                                  0x7f, valp[0] & 0x7f);
1614         snd_hda_codec_amp_update(codec, 0x05, 1, HDA_OUTPUT, 0,
1615                                  0x7f, valp[1] & 0x7f);
1616         return change;
1617 }
1618
1619 /* bind volumes of both NID 0x02 and 0x05 */
1620 static int vaio_master_sw_put(struct snd_kcontrol *kcontrol,
1621                               struct snd_ctl_elem_value *ucontrol)
1622 {
1623         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1624         long *valp = ucontrol->value.integer.value;
1625         int change;
1626
1627         change = snd_hda_codec_amp_update(codec, 0x02, 0, HDA_OUTPUT, 0,
1628                                           0x80, (valp[0] ? 0 : 0x80));
1629         change |= snd_hda_codec_amp_update(codec, 0x02, 1, HDA_OUTPUT, 0,
1630                                            0x80, (valp[1] ? 0 : 0x80));
1631         snd_hda_codec_amp_update(codec, 0x05, 0, HDA_OUTPUT, 0,
1632                                  0x80, (valp[0] ? 0 : 0x80));
1633         snd_hda_codec_amp_update(codec, 0x05, 1, HDA_OUTPUT, 0,
1634                                  0x80, (valp[1] ? 0 : 0x80));
1635         return change;
1636 }
1637
1638 static struct snd_kcontrol_new vaio_mixer[] = {
1639         {
1640                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1641                 .name = "Master Playback Volume",
1642                 .info = snd_hda_mixer_amp_volume_info,
1643                 .get = snd_hda_mixer_amp_volume_get,
1644                 .put = vaio_master_vol_put,
1645                 .tlv = { .c = snd_hda_mixer_amp_tlv },
1646                 .private_value = HDA_COMPOSE_AMP_VAL(0x02, 3, 0, HDA_OUTPUT),
1647         },
1648         {
1649                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1650                 .name = "Master Playback Switch",
1651                 .info = snd_hda_mixer_amp_switch_info,
1652                 .get = snd_hda_mixer_amp_switch_get,
1653                 .put = vaio_master_sw_put,
1654                 .private_value = HDA_COMPOSE_AMP_VAL(0x02, 3, 0, HDA_OUTPUT),
1655         },
1656         /* HDA_CODEC_VOLUME("CD Capture Volume", 0x07, 0, HDA_INPUT), */
1657         HDA_CODEC_VOLUME("Capture Volume", 0x09, 0, HDA_INPUT),
1658         HDA_CODEC_MUTE("Capture Switch", 0x09, 0, HDA_INPUT),
1659         {
1660                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1661                 .name = "Capture Source",
1662                 .count = 1,
1663                 .info = stac92xx_mux_enum_info,
1664                 .get = stac92xx_mux_enum_get,
1665                 .put = stac92xx_mux_enum_put,
1666         },
1667         {}
1668 };
1669
1670 static struct hda_codec_ops stac766x_patch_ops = {
1671         .build_controls = stac92xx_build_controls,
1672         .build_pcms = stac92xx_build_pcms,
1673         .init = stac92xx_init,
1674         .free = stac92xx_free,
1675 #ifdef CONFIG_PM
1676         .resume = stac92xx_resume,
1677 #endif
1678 };
1679
1680 enum { STAC766x_VAIO };
1681
1682 static struct hda_board_config stac766x_cfg_tbl[] = {
1683         { .modelname = "vaio", .config = STAC766x_VAIO },
1684         { .pci_subvendor = 0x104d, .pci_subdevice = 0x81e6,
1685           .config = STAC766x_VAIO },
1686         { .pci_subvendor = 0x104d, .pci_subdevice = 0x81ef,
1687           .config = STAC766x_VAIO },
1688         { .pci_subvendor = 0x104d, .pci_subdevice = 0x81fd,
1689           .config = STAC766x_VAIO },
1690         {}
1691 };
1692
1693 static int patch_stac766x(struct hda_codec *codec)
1694 {
1695         struct sigmatel_spec *spec;
1696         int board_config;
1697
1698         board_config = snd_hda_check_board_config(codec, stac766x_cfg_tbl);
1699         if (board_config < 0)
1700                 /* unknown config, let generic-parser do its job... */
1701                 return snd_hda_parse_generic_codec(codec);
1702         
1703         spec  = kzalloc(sizeof(*spec), GFP_KERNEL);
1704         if (spec == NULL)
1705                 return -ENOMEM;
1706
1707         codec->spec = spec;
1708         switch (board_config) {
1709         case STAC766x_VAIO:
1710                 spec->mixer = vaio_mixer;
1711                 spec->init = vaio_init;
1712                 spec->multiout.max_channels = 2;
1713                 spec->multiout.num_dacs = ARRAY_SIZE(vaio_dacs);
1714                 spec->multiout.dac_nids = vaio_dacs;
1715                 spec->multiout.hp_nid = VAIO_HP_DAC;
1716                 spec->num_adcs = ARRAY_SIZE(vaio_adcs);
1717                 spec->adc_nids = vaio_adcs;
1718                 spec->input_mux = &vaio_mux;
1719                 spec->mux_nids = vaio_mux_nids;
1720                 break;
1721         }
1722
1723         codec->patch_ops = stac766x_patch_ops;
1724         return 0;
1725 }
1726
1727
1728 /*
1729  * patch entries
1730  */
1731 struct hda_codec_preset snd_hda_preset_sigmatel[] = {
1732         { .id = 0x83847690, .name = "STAC9200", .patch = patch_stac9200 },
1733         { .id = 0x83847882, .name = "STAC9220 A1", .patch = patch_stac922x },
1734         { .id = 0x83847680, .name = "STAC9221 A1", .patch = patch_stac922x },
1735         { .id = 0x83847880, .name = "STAC9220 A2", .patch = patch_stac922x },
1736         { .id = 0x83847681, .name = "STAC9220D/9223D A2", .patch = patch_stac922x },
1737         { .id = 0x83847682, .name = "STAC9221 A2", .patch = patch_stac922x },
1738         { .id = 0x83847683, .name = "STAC9221D A2", .patch = patch_stac922x },
1739         { .id = 0x83847618, .name = "STAC9227", .patch = patch_stac927x },
1740         { .id = 0x83847619, .name = "STAC9227", .patch = patch_stac927x },
1741         { .id = 0x83847616, .name = "STAC9228", .patch = patch_stac927x },
1742         { .id = 0x83847617, .name = "STAC9228", .patch = patch_stac927x },
1743         { .id = 0x83847614, .name = "STAC9229", .patch = patch_stac927x },
1744         { .id = 0x83847615, .name = "STAC9229", .patch = patch_stac927x },
1745         { .id = 0x83847620, .name = "STAC9274", .patch = patch_stac927x },
1746         { .id = 0x83847621, .name = "STAC9274D", .patch = patch_stac927x },
1747         { .id = 0x83847622, .name = "STAC9273X", .patch = patch_stac927x },
1748         { .id = 0x83847623, .name = "STAC9273D", .patch = patch_stac927x },
1749         { .id = 0x83847624, .name = "STAC9272X", .patch = patch_stac927x },
1750         { .id = 0x83847625, .name = "STAC9272D", .patch = patch_stac927x },
1751         { .id = 0x83847626, .name = "STAC9271X", .patch = patch_stac927x },
1752         { .id = 0x83847627, .name = "STAC9271D", .patch = patch_stac927x },
1753         { .id = 0x83847628, .name = "STAC9274X5NH", .patch = patch_stac927x },
1754         { .id = 0x83847629, .name = "STAC9274D5NH", .patch = patch_stac927x },
1755         { .id = 0x83847661, .name = "STAC7661", .patch = patch_stac766x },
1756         { .id = 0x838476a0, .name = "STAC9205", .patch = patch_stac9205 },
1757         { .id = 0x838476a1, .name = "STAC9205D", .patch = patch_stac9205 },
1758         { .id = 0x838476a2, .name = "STAC9204", .patch = patch_stac9205 },
1759         { .id = 0x838476a3, .name = "STAC9204D", .patch = patch_stac9205 },
1760         { .id = 0x838476a4, .name = "STAC9255", .patch = patch_stac9205 },
1761         { .id = 0x838476a5, .name = "STAC9255D", .patch = patch_stac9205 },
1762         { .id = 0x838476a6, .name = "STAC9254", .patch = patch_stac9205 },
1763         { .id = 0x838476a7, .name = "STAC9254D", .patch = patch_stac9205 },
1764         { .id = 0x83847664, .name = "STAC7664", .patch = patch_stac766x },
1765         {} /* terminator */
1766 };