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