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