2 * Universal Interface for Intel High Definition Audio Codec
4 * HD audio interface patch for SigmaTel STAC92xx
6 * Copyright (c) 2005 Embedded Alley Solutions, Inc.
7 * Matt Porter <mporter@embeddedalley.com>
9 * Based on patch_cmedia.c and patch_realtek.c
10 * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de>
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.
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.
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
27 #include <linux/init.h>
28 #include <linux/delay.h>
29 #include <linux/slab.h>
30 #include <linux/pci.h>
31 #include <sound/core.h>
32 #include <sound/asoundef.h>
33 #include <sound/jack.h>
34 #include "hda_codec.h"
35 #include "hda_local.h"
79 STAC_92HD73XX_NO_JD
, /* no jack-detection */
93 STAC_92HD83XXX_PWR_REF
,
108 STAC_92HD71BXX_MODELS
134 STAC_INTEL_MAC_AUTO
, /* This model is selected if no module parameter
135 * is given, one of the above models will be
136 * chosen according to the subsystem id. */
137 /* for backward compatibility */
154 STAC_D965_REF_NO_JD
, /* no jack-detection */
170 struct sigmatel_event
{
177 struct sigmatel_jack
{
180 struct snd_jack
*jack
;
183 struct sigmatel_mic_route
{
186 signed char dmux_idx
;
189 struct sigmatel_spec
{
190 struct snd_kcontrol_new
*mixers
[4];
191 unsigned int num_mixers
;
194 unsigned int eapd_switch
: 1;
195 unsigned int surr_switch
: 1;
196 unsigned int alt_switch
: 1;
197 unsigned int hp_detect
: 1;
198 unsigned int spdif_mute
: 1;
199 unsigned int check_volume_offset
:1;
200 unsigned int auto_mic
:1;
203 unsigned int eapd_mask
;
204 unsigned int gpio_mask
;
205 unsigned int gpio_dir
;
206 unsigned int gpio_data
;
207 unsigned int gpio_mute
;
208 unsigned int gpio_led
;
211 unsigned int stream_delay
;
213 /* analog loopback */
214 struct snd_kcontrol_new
*aloopback_ctl
;
215 unsigned char aloopback_mask
;
216 unsigned char aloopback_shift
;
218 /* power management */
219 unsigned int num_pwrs
;
220 unsigned int *pwr_mapping
;
225 struct snd_array jacks
;
228 struct snd_array events
;
231 struct hda_input_mux
*mono_mux
;
232 unsigned int cur_mmux
;
233 struct hda_multi_out multiout
;
234 hda_nid_t dac_nids
[5];
235 hda_nid_t hp_dacs
[5];
236 hda_nid_t speaker_dacs
[5];
242 unsigned int num_adcs
;
244 unsigned int num_muxes
;
245 hda_nid_t
*dmic_nids
;
246 unsigned int num_dmics
;
247 hda_nid_t
*dmux_nids
;
248 unsigned int num_dmuxes
;
249 hda_nid_t
*smux_nids
;
250 unsigned int num_smuxes
;
251 unsigned int num_analog_muxes
;
253 unsigned long *capvols
; /* amp-volume attr: HDA_COMPOSE_AMP_VAL() */
254 unsigned long *capsws
; /* amp-mute attr: HDA_COMPOSE_AMP_VAL() */
255 unsigned int num_caps
; /* number of capture volume/switch elements */
257 struct sigmatel_mic_route ext_mic
;
258 struct sigmatel_mic_route int_mic
;
260 const char **spdif_labels
;
262 hda_nid_t dig_in_nid
;
264 hda_nid_t anabeep_nid
;
265 hda_nid_t digbeep_nid
;
269 unsigned int num_pins
;
271 /* codec specific stuff */
272 struct hda_verb
*init
;
273 struct snd_kcontrol_new
*mixer
;
276 struct hda_input_mux
*dinput_mux
;
277 unsigned int cur_dmux
[2];
278 struct hda_input_mux
*input_mux
;
279 unsigned int cur_mux
[3];
280 struct hda_input_mux
*sinput_mux
;
281 unsigned int cur_smux
[2];
282 unsigned int cur_amux
;
284 unsigned int powerdown_adcs
;
287 unsigned int io_switch
[2];
288 unsigned int clfe_swap
;
289 hda_nid_t line_switch
; /* shared line-in for input and output */
290 hda_nid_t mic_switch
; /* shared mic-in for input and output */
291 hda_nid_t hp_switch
; /* NID of HP as line-out */
292 unsigned int aloopback
;
294 struct hda_pcm pcm_rec
[2]; /* PCM information */
296 /* dynamic controls and input_mux */
297 struct auto_pin_cfg autocfg
;
298 struct snd_array kctls
;
299 struct hda_input_mux private_dimux
;
300 struct hda_input_mux private_imux
;
301 struct hda_input_mux private_smux
;
302 struct hda_input_mux private_mono_mux
;
305 static hda_nid_t stac9200_adc_nids
[1] = {
309 static hda_nid_t stac9200_mux_nids
[1] = {
313 static hda_nid_t stac9200_dac_nids
[1] = {
317 static hda_nid_t stac92hd73xx_pwr_nids
[8] = {
318 0x0a, 0x0b, 0x0c, 0xd, 0x0e,
322 static hda_nid_t stac92hd73xx_slave_dig_outs
[2] = {
326 static hda_nid_t stac92hd73xx_adc_nids
[2] = {
330 #define STAC92HD73XX_NUM_DMICS 2
331 static hda_nid_t stac92hd73xx_dmic_nids
[STAC92HD73XX_NUM_DMICS
+ 1] = {
335 #define STAC92HD73_DAC_COUNT 5
337 static hda_nid_t stac92hd73xx_mux_nids
[2] = {
341 static hda_nid_t stac92hd73xx_dmux_nids
[2] = {
345 static hda_nid_t stac92hd73xx_smux_nids
[2] = {
349 #define STAC92HD73XX_NUM_CAPS 2
350 static unsigned long stac92hd73xx_capvols
[] = {
351 HDA_COMPOSE_AMP_VAL(0x20, 3, 0, HDA_OUTPUT
),
352 HDA_COMPOSE_AMP_VAL(0x21, 3, 0, HDA_OUTPUT
),
354 #define stac92hd73xx_capsws stac92hd73xx_capvols
356 #define STAC92HD83_DAC_COUNT 3
358 static hda_nid_t stac92hd83xxx_mux_nids
[2] = {
362 static hda_nid_t stac92hd83xxx_adc_nids
[2] = {
366 static hda_nid_t stac92hd83xxx_pwr_nids
[4] = {
370 static hda_nid_t stac92hd83xxx_slave_dig_outs
[2] = {
374 static unsigned int stac92hd83xxx_pwr_mapping
[4] = {
375 0x03, 0x0c, 0x20, 0x40,
378 #define STAC92HD83XXX_NUM_CAPS 2
379 static unsigned long stac92hd83xxx_capvols
[] = {
380 HDA_COMPOSE_AMP_VAL(0x17, 3, 0, HDA_OUTPUT
),
381 HDA_COMPOSE_AMP_VAL(0x18, 3, 0, HDA_OUTPUT
),
383 #define stac92hd83xxx_capsws stac92hd83xxx_capvols
385 static hda_nid_t stac92hd71bxx_pwr_nids
[3] = {
389 static hda_nid_t stac92hd71bxx_adc_nids
[2] = {
393 static hda_nid_t stac92hd71bxx_mux_nids
[2] = {
397 static hda_nid_t stac92hd71bxx_dmux_nids
[2] = {
401 static hda_nid_t stac92hd71bxx_smux_nids
[2] = {
405 #define STAC92HD71BXX_NUM_DMICS 2
406 static hda_nid_t stac92hd71bxx_dmic_nids
[STAC92HD71BXX_NUM_DMICS
+ 1] = {
410 static hda_nid_t stac92hd71bxx_slave_dig_outs
[2] = {
414 #define STAC92HD71BXX_NUM_CAPS 2
415 static unsigned long stac92hd71bxx_capvols
[] = {
416 HDA_COMPOSE_AMP_VAL(0x1c, 3, 0, HDA_OUTPUT
),
417 HDA_COMPOSE_AMP_VAL(0x1d, 3, 0, HDA_OUTPUT
),
419 #define stac92hd71bxx_capsws stac92hd71bxx_capvols
421 static hda_nid_t stac925x_adc_nids
[1] = {
425 static hda_nid_t stac925x_mux_nids
[1] = {
429 static hda_nid_t stac925x_dac_nids
[1] = {
433 #define STAC925X_NUM_DMICS 1
434 static hda_nid_t stac925x_dmic_nids
[STAC925X_NUM_DMICS
+ 1] = {
438 static hda_nid_t stac925x_dmux_nids
[1] = {
442 static unsigned long stac925x_capvols
[] = {
443 HDA_COMPOSE_AMP_VAL(0x09, 3, 0, HDA_OUTPUT
),
445 static unsigned long stac925x_capsws
[] = {
446 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
449 static hda_nid_t stac922x_adc_nids
[2] = {
453 static hda_nid_t stac922x_mux_nids
[2] = {
457 #define STAC922X_NUM_CAPS 2
458 static unsigned long stac922x_capvols
[] = {
459 HDA_COMPOSE_AMP_VAL(0x17, 3, 0, HDA_INPUT
),
460 HDA_COMPOSE_AMP_VAL(0x18, 3, 0, HDA_INPUT
),
462 #define stac922x_capsws stac922x_capvols
464 static hda_nid_t stac927x_slave_dig_outs
[2] = {
468 static hda_nid_t stac927x_adc_nids
[3] = {
472 static hda_nid_t stac927x_mux_nids
[3] = {
476 static hda_nid_t stac927x_smux_nids
[1] = {
480 static hda_nid_t stac927x_dac_nids
[6] = {
481 0x02, 0x03, 0x04, 0x05, 0x06, 0
484 static hda_nid_t stac927x_dmux_nids
[1] = {
488 #define STAC927X_NUM_DMICS 2
489 static hda_nid_t stac927x_dmic_nids
[STAC927X_NUM_DMICS
+ 1] = {
493 #define STAC927X_NUM_CAPS 3
494 static unsigned long stac927x_capvols
[] = {
495 HDA_COMPOSE_AMP_VAL(0x18, 3, 0, HDA_INPUT
),
496 HDA_COMPOSE_AMP_VAL(0x19, 3, 0, HDA_INPUT
),
497 HDA_COMPOSE_AMP_VAL(0x1a, 3, 0, HDA_INPUT
),
499 static unsigned long stac927x_capsws
[] = {
500 HDA_COMPOSE_AMP_VAL(0x1b, 3, 0, HDA_OUTPUT
),
501 HDA_COMPOSE_AMP_VAL(0x1c, 3, 0, HDA_OUTPUT
),
502 HDA_COMPOSE_AMP_VAL(0x1d, 3, 0, HDA_OUTPUT
),
505 static const char *stac927x_spdif_labels
[5] = {
506 "Digital Playback", "ADAT", "Analog Mux 1",
507 "Analog Mux 2", "Analog Mux 3"
510 static hda_nid_t stac9205_adc_nids
[2] = {
514 static hda_nid_t stac9205_mux_nids
[2] = {
518 static hda_nid_t stac9205_dmux_nids
[1] = {
522 static hda_nid_t stac9205_smux_nids
[1] = {
526 #define STAC9205_NUM_DMICS 2
527 static hda_nid_t stac9205_dmic_nids
[STAC9205_NUM_DMICS
+ 1] = {
531 #define STAC9205_NUM_CAPS 2
532 static unsigned long stac9205_capvols
[] = {
533 HDA_COMPOSE_AMP_VAL(0x1b, 3, 0, HDA_INPUT
),
534 HDA_COMPOSE_AMP_VAL(0x1c, 3, 0, HDA_INPUT
),
536 static unsigned long stac9205_capsws
[] = {
537 HDA_COMPOSE_AMP_VAL(0x1d, 3, 0, HDA_OUTPUT
),
538 HDA_COMPOSE_AMP_VAL(0x1e, 3, 0, HDA_OUTPUT
),
541 static hda_nid_t stac9200_pin_nids
[8] = {
542 0x08, 0x09, 0x0d, 0x0e,
543 0x0f, 0x10, 0x11, 0x12,
546 static hda_nid_t stac925x_pin_nids
[8] = {
547 0x07, 0x08, 0x0a, 0x0b,
548 0x0c, 0x0d, 0x10, 0x11,
551 static hda_nid_t stac922x_pin_nids
[10] = {
552 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
553 0x0f, 0x10, 0x11, 0x15, 0x1b,
556 static hda_nid_t stac92hd73xx_pin_nids
[13] = {
557 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
558 0x0f, 0x10, 0x11, 0x12, 0x13,
562 static hda_nid_t stac92hd83xxx_pin_nids
[10] = {
563 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
564 0x0f, 0x10, 0x11, 0x1f, 0x20,
567 #define STAC92HD71BXX_NUM_PINS 13
568 static hda_nid_t stac92hd71bxx_pin_nids_4port
[STAC92HD71BXX_NUM_PINS
] = {
569 0x0a, 0x0b, 0x0c, 0x0d, 0x00,
570 0x00, 0x14, 0x18, 0x19, 0x1e,
573 static hda_nid_t stac92hd71bxx_pin_nids_6port
[STAC92HD71BXX_NUM_PINS
] = {
574 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
575 0x0f, 0x14, 0x18, 0x19, 0x1e,
579 static hda_nid_t stac927x_pin_nids
[14] = {
580 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
581 0x0f, 0x10, 0x11, 0x12, 0x13,
582 0x14, 0x21, 0x22, 0x23,
585 static hda_nid_t stac9205_pin_nids
[12] = {
586 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
587 0x0f, 0x14, 0x16, 0x17, 0x18,
591 static int stac92xx_dmux_enum_info(struct snd_kcontrol
*kcontrol
,
592 struct snd_ctl_elem_info
*uinfo
)
594 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
595 struct sigmatel_spec
*spec
= codec
->spec
;
596 return snd_hda_input_mux_info(spec
->dinput_mux
, uinfo
);
599 static int stac92xx_dmux_enum_get(struct snd_kcontrol
*kcontrol
,
600 struct snd_ctl_elem_value
*ucontrol
)
602 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
603 struct sigmatel_spec
*spec
= codec
->spec
;
604 unsigned int dmux_idx
= snd_ctl_get_ioffidx(kcontrol
, &ucontrol
->id
);
606 ucontrol
->value
.enumerated
.item
[0] = spec
->cur_dmux
[dmux_idx
];
610 static int stac92xx_dmux_enum_put(struct snd_kcontrol
*kcontrol
,
611 struct snd_ctl_elem_value
*ucontrol
)
613 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
614 struct sigmatel_spec
*spec
= codec
->spec
;
615 unsigned int dmux_idx
= snd_ctl_get_ioffidx(kcontrol
, &ucontrol
->id
);
617 return snd_hda_input_mux_put(codec
, spec
->dinput_mux
, ucontrol
,
618 spec
->dmux_nids
[dmux_idx
], &spec
->cur_dmux
[dmux_idx
]);
621 static int stac92xx_smux_enum_info(struct snd_kcontrol
*kcontrol
,
622 struct snd_ctl_elem_info
*uinfo
)
624 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
625 struct sigmatel_spec
*spec
= codec
->spec
;
626 return snd_hda_input_mux_info(spec
->sinput_mux
, uinfo
);
629 static int stac92xx_smux_enum_get(struct snd_kcontrol
*kcontrol
,
630 struct snd_ctl_elem_value
*ucontrol
)
632 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
633 struct sigmatel_spec
*spec
= codec
->spec
;
634 unsigned int smux_idx
= snd_ctl_get_ioffidx(kcontrol
, &ucontrol
->id
);
636 ucontrol
->value
.enumerated
.item
[0] = spec
->cur_smux
[smux_idx
];
640 static int stac92xx_smux_enum_put(struct snd_kcontrol
*kcontrol
,
641 struct snd_ctl_elem_value
*ucontrol
)
643 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
644 struct sigmatel_spec
*spec
= codec
->spec
;
645 struct hda_input_mux
*smux
= &spec
->private_smux
;
646 unsigned int smux_idx
= snd_ctl_get_ioffidx(kcontrol
, &ucontrol
->id
);
650 err
= snd_hda_input_mux_put(codec
, spec
->sinput_mux
, ucontrol
,
651 spec
->smux_nids
[smux_idx
], &spec
->cur_smux
[smux_idx
]);
655 if (spec
->spdif_mute
) {
657 nid
= spec
->multiout
.dig_out_nid
;
659 nid
= codec
->slave_dig_outs
[smux_idx
- 1];
660 if (spec
->cur_smux
[smux_idx
] == smux
->num_items
- 1)
664 /* un/mute SPDIF out */
665 snd_hda_codec_amp_stereo(codec
, nid
, HDA_OUTPUT
, 0,
671 static unsigned int stac92xx_vref_set(struct hda_codec
*codec
,
672 hda_nid_t nid
, unsigned int new_vref
)
676 pincfg
= snd_hda_codec_read(codec
, nid
, 0,
677 AC_VERB_GET_PIN_WIDGET_CONTROL
, 0);
680 pincfg
&= ~(AC_PINCTL_VREFEN
| AC_PINCTL_IN_EN
| AC_PINCTL_OUT_EN
);
683 if (new_vref
== AC_PINCTL_VREF_HIZ
)
684 pincfg
|= AC_PINCTL_OUT_EN
;
686 pincfg
|= AC_PINCTL_IN_EN
;
688 error
= snd_hda_codec_write_cache(codec
, nid
, 0,
689 AC_VERB_SET_PIN_WIDGET_CONTROL
, pincfg
);
696 static unsigned int stac92xx_vref_get(struct hda_codec
*codec
, hda_nid_t nid
)
699 vref
= snd_hda_codec_read(codec
, nid
, 0,
700 AC_VERB_GET_PIN_WIDGET_CONTROL
, 0);
701 vref
&= AC_PINCTL_VREFEN
;
705 static int stac92xx_mux_enum_info(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
707 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
708 struct sigmatel_spec
*spec
= codec
->spec
;
709 return snd_hda_input_mux_info(spec
->input_mux
, uinfo
);
712 static int stac92xx_mux_enum_get(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
714 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
715 struct sigmatel_spec
*spec
= codec
->spec
;
716 unsigned int adc_idx
= snd_ctl_get_ioffidx(kcontrol
, &ucontrol
->id
);
718 ucontrol
->value
.enumerated
.item
[0] = spec
->cur_mux
[adc_idx
];
722 static int stac92xx_mux_enum_put(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
724 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
725 struct sigmatel_spec
*spec
= codec
->spec
;
726 unsigned int adc_idx
= snd_ctl_get_ioffidx(kcontrol
, &ucontrol
->id
);
727 const struct hda_input_mux
*imux
= spec
->input_mux
;
728 unsigned int idx
, prev_idx
;
730 idx
= ucontrol
->value
.enumerated
.item
[0];
731 if (idx
>= imux
->num_items
)
732 idx
= imux
->num_items
- 1;
733 prev_idx
= spec
->cur_mux
[adc_idx
];
736 if (idx
< spec
->num_analog_muxes
) {
737 snd_hda_codec_write_cache(codec
, spec
->mux_nids
[adc_idx
], 0,
738 AC_VERB_SET_CONNECT_SEL
,
739 imux
->items
[idx
].index
);
740 if (prev_idx
>= spec
->num_analog_muxes
) {
741 imux
= spec
->dinput_mux
;
743 snd_hda_codec_write_cache(codec
,
744 spec
->dmux_nids
[adc_idx
], 0,
745 AC_VERB_SET_CONNECT_SEL
,
746 imux
->items
[0].index
);
749 imux
= spec
->dinput_mux
;
750 snd_hda_codec_write_cache(codec
, spec
->dmux_nids
[adc_idx
], 0,
751 AC_VERB_SET_CONNECT_SEL
,
752 imux
->items
[idx
- 1].index
);
754 spec
->cur_mux
[adc_idx
] = idx
;
758 static int stac92xx_mono_mux_enum_info(struct snd_kcontrol
*kcontrol
,
759 struct snd_ctl_elem_info
*uinfo
)
761 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
762 struct sigmatel_spec
*spec
= codec
->spec
;
763 return snd_hda_input_mux_info(spec
->mono_mux
, uinfo
);
766 static int stac92xx_mono_mux_enum_get(struct snd_kcontrol
*kcontrol
,
767 struct snd_ctl_elem_value
*ucontrol
)
769 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
770 struct sigmatel_spec
*spec
= codec
->spec
;
772 ucontrol
->value
.enumerated
.item
[0] = spec
->cur_mmux
;
776 static int stac92xx_mono_mux_enum_put(struct snd_kcontrol
*kcontrol
,
777 struct snd_ctl_elem_value
*ucontrol
)
779 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
780 struct sigmatel_spec
*spec
= codec
->spec
;
782 return snd_hda_input_mux_put(codec
, spec
->mono_mux
, ucontrol
,
783 spec
->mono_nid
, &spec
->cur_mmux
);
786 #define stac92xx_aloopback_info snd_ctl_boolean_mono_info
788 static int stac92xx_aloopback_get(struct snd_kcontrol
*kcontrol
,
789 struct snd_ctl_elem_value
*ucontrol
)
791 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
792 unsigned int idx
= snd_ctl_get_ioffidx(kcontrol
, &ucontrol
->id
);
793 struct sigmatel_spec
*spec
= codec
->spec
;
795 ucontrol
->value
.integer
.value
[0] = !!(spec
->aloopback
&
796 (spec
->aloopback_mask
<< idx
));
800 static int stac92xx_aloopback_put(struct snd_kcontrol
*kcontrol
,
801 struct snd_ctl_elem_value
*ucontrol
)
803 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
804 struct sigmatel_spec
*spec
= codec
->spec
;
805 unsigned int idx
= snd_ctl_get_ioffidx(kcontrol
, &ucontrol
->id
);
806 unsigned int dac_mode
;
807 unsigned int val
, idx_val
;
809 idx_val
= spec
->aloopback_mask
<< idx
;
810 if (ucontrol
->value
.integer
.value
[0])
811 val
= spec
->aloopback
| idx_val
;
813 val
= spec
->aloopback
& ~idx_val
;
814 if (spec
->aloopback
== val
)
817 spec
->aloopback
= val
;
819 /* Only return the bits defined by the shift value of the
820 * first two bytes of the mask
822 dac_mode
= snd_hda_codec_read(codec
, codec
->afg
, 0,
823 kcontrol
->private_value
& 0xFFFF, 0x0);
824 dac_mode
>>= spec
->aloopback_shift
;
826 if (spec
->aloopback
& idx_val
) {
827 snd_hda_power_up(codec
);
830 snd_hda_power_down(codec
);
831 dac_mode
&= ~idx_val
;
834 snd_hda_codec_write_cache(codec
, codec
->afg
, 0,
835 kcontrol
->private_value
>> 16, dac_mode
);
840 static struct hda_verb stac9200_core_init
[] = {
841 /* set dac0mux for dac converter */
842 { 0x07, AC_VERB_SET_CONNECT_SEL
, 0x00},
846 static struct hda_verb stac9200_eapd_init
[] = {
847 /* set dac0mux for dac converter */
848 {0x07, AC_VERB_SET_CONNECT_SEL
, 0x00},
849 {0x08, AC_VERB_SET_EAPD_BTLENABLE
, 0x02},
853 static struct hda_verb dell_eq_core_init
[] = {
854 /* set master volume to max value without distortion
855 * and direct control */
856 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL
, 0xec},
860 static struct hda_verb stac92hd73xx_core_init
[] = {
861 /* set master volume and direct control */
862 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL
, 0xff},
866 static struct hda_verb stac92hd83xxx_core_init
[] = {
867 /* power state controls amps */
868 { 0x01, AC_VERB_SET_EAPD
, 1 << 2},
872 static struct hda_verb stac92hd71bxx_core_init
[] = {
873 /* set master volume and direct control */
874 { 0x28, AC_VERB_SET_VOLUME_KNOB_CONTROL
, 0xff},
878 static struct hda_verb stac92hd71bxx_unmute_core_init
[] = {
879 /* unmute right and left channels for nodes 0x0f, 0xa, 0x0d */
880 { 0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
881 { 0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
882 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
886 static struct hda_verb stac925x_core_init
[] = {
887 /* set dac0mux for dac converter */
888 { 0x06, AC_VERB_SET_CONNECT_SEL
, 0x00},
889 /* mute the master volume */
890 { 0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
894 static struct hda_verb stac922x_core_init
[] = {
895 /* set master volume and direct control */
896 { 0x16, AC_VERB_SET_VOLUME_KNOB_CONTROL
, 0xff},
900 static struct hda_verb d965_core_init
[] = {
901 /* set master volume and direct control */
902 { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL
, 0xff},
903 /* unmute node 0x1b */
904 { 0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb000},
905 /* select node 0x03 as DAC */
906 { 0x0b, AC_VERB_SET_CONNECT_SEL
, 0x01},
910 static struct hda_verb stac927x_core_init
[] = {
911 /* set master volume and direct control */
912 { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL
, 0xff},
913 /* enable analog pc beep path */
914 { 0x01, AC_VERB_SET_DIGI_CONVERT_2
, 1 << 5},
918 static struct hda_verb stac9205_core_init
[] = {
919 /* set master volume and direct control */
920 { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL
, 0xff},
921 /* enable analog pc beep path */
922 { 0x01, AC_VERB_SET_DIGI_CONVERT_2
, 1 << 5},
926 #define STAC_MONO_MUX \
928 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
929 .name = "Mono Mux", \
931 .info = stac92xx_mono_mux_enum_info, \
932 .get = stac92xx_mono_mux_enum_get, \
933 .put = stac92xx_mono_mux_enum_put, \
936 #define STAC_ANALOG_LOOPBACK(verb_read, verb_write, cnt) \
938 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
939 .name = "Analog Loopback", \
941 .info = stac92xx_aloopback_info, \
942 .get = stac92xx_aloopback_get, \
943 .put = stac92xx_aloopback_put, \
944 .private_value = verb_read | (verb_write << 16), \
947 #define DC_BIAS(xname, idx, nid) \
949 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
952 .info = stac92xx_dc_bias_info, \
953 .get = stac92xx_dc_bias_get, \
954 .put = stac92xx_dc_bias_put, \
955 .private_value = nid, \
958 static struct snd_kcontrol_new stac9200_mixer
[] = {
959 HDA_CODEC_VOLUME("Master Playback Volume", 0xb, 0, HDA_OUTPUT
),
960 HDA_CODEC_MUTE("Master Playback Switch", 0xb, 0, HDA_OUTPUT
),
961 HDA_CODEC_VOLUME("Capture Volume", 0x0a, 0, HDA_OUTPUT
),
962 HDA_CODEC_MUTE("Capture Switch", 0x0a, 0, HDA_OUTPUT
),
966 static struct snd_kcontrol_new stac92hd73xx_6ch_loopback
[] = {
967 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 3),
971 static struct snd_kcontrol_new stac92hd73xx_8ch_loopback
[] = {
972 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 4),
976 static struct snd_kcontrol_new stac92hd73xx_10ch_loopback
[] = {
977 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 5),
982 static struct snd_kcontrol_new stac92hd71bxx_loopback
[] = {
983 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A0, 2)
986 static struct snd_kcontrol_new stac925x_mixer
[] = {
987 HDA_CODEC_VOLUME("Master Playback Volume", 0x0e, 0, HDA_OUTPUT
),
988 HDA_CODEC_MUTE("Master Playback Switch", 0x0e, 0, HDA_OUTPUT
),
992 static struct snd_kcontrol_new stac9205_loopback
[] = {
993 STAC_ANALOG_LOOPBACK(0xFE0, 0x7E0, 1),
997 static struct snd_kcontrol_new stac927x_loopback
[] = {
998 STAC_ANALOG_LOOPBACK(0xFEB, 0x7EB, 1),
1002 static struct snd_kcontrol_new stac_dmux_mixer
= {
1003 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1004 .name
= "Digital Input Source",
1005 /* count set later */
1006 .info
= stac92xx_dmux_enum_info
,
1007 .get
= stac92xx_dmux_enum_get
,
1008 .put
= stac92xx_dmux_enum_put
,
1011 static struct snd_kcontrol_new stac_smux_mixer
= {
1012 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1013 .name
= "IEC958 Playback Source",
1014 /* count set later */
1015 .info
= stac92xx_smux_enum_info
,
1016 .get
= stac92xx_smux_enum_get
,
1017 .put
= stac92xx_smux_enum_put
,
1020 static const char *slave_vols
[] = {
1021 "Front Playback Volume",
1022 "Surround Playback Volume",
1023 "Center Playback Volume",
1024 "LFE Playback Volume",
1025 "Side Playback Volume",
1026 "Headphone Playback Volume",
1027 "Speaker Playback Volume",
1031 static const char *slave_sws
[] = {
1032 "Front Playback Switch",
1033 "Surround Playback Switch",
1034 "Center Playback Switch",
1035 "LFE Playback Switch",
1036 "Side Playback Switch",
1037 "Headphone Playback Switch",
1038 "Speaker Playback Switch",
1039 "IEC958 Playback Switch",
1043 static void stac92xx_free_kctls(struct hda_codec
*codec
);
1044 static int stac92xx_add_jack(struct hda_codec
*codec
, hda_nid_t nid
, int type
);
1046 static int stac92xx_build_controls(struct hda_codec
*codec
)
1048 struct sigmatel_spec
*spec
= codec
->spec
;
1049 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
1055 err
= snd_hda_add_new_ctls(codec
, spec
->mixer
);
1060 for (i
= 0; i
< spec
->num_mixers
; i
++) {
1061 err
= snd_hda_add_new_ctls(codec
, spec
->mixers
[i
]);
1065 if (!spec
->auto_mic
&& spec
->num_dmuxes
> 0 &&
1066 snd_hda_get_bool_hint(codec
, "separate_dmux") == 1) {
1067 stac_dmux_mixer
.count
= spec
->num_dmuxes
;
1068 err
= snd_hda_ctl_add(codec
,
1069 snd_ctl_new1(&stac_dmux_mixer
, codec
));
1073 if (spec
->num_smuxes
> 0) {
1074 int wcaps
= get_wcaps(codec
, spec
->multiout
.dig_out_nid
);
1075 struct hda_input_mux
*smux
= &spec
->private_smux
;
1076 /* check for mute support on SPDIF out */
1077 if (wcaps
& AC_WCAP_OUT_AMP
) {
1078 smux
->items
[smux
->num_items
].label
= "Off";
1079 smux
->items
[smux
->num_items
].index
= 0;
1081 spec
->spdif_mute
= 1;
1083 stac_smux_mixer
.count
= spec
->num_smuxes
;
1084 err
= snd_hda_ctl_add(codec
,
1085 snd_ctl_new1(&stac_smux_mixer
, codec
));
1090 if (spec
->multiout
.dig_out_nid
) {
1091 err
= snd_hda_create_spdif_out_ctls(codec
, spec
->multiout
.dig_out_nid
);
1094 err
= snd_hda_create_spdif_share_sw(codec
,
1098 spec
->multiout
.share_spdif
= 1;
1100 if (spec
->dig_in_nid
&& !(spec
->gpio_dir
& 0x01)) {
1101 err
= snd_hda_create_spdif_in_ctls(codec
, spec
->dig_in_nid
);
1106 /* if we have no master control, let's create it */
1107 if (!snd_hda_find_mixer_ctl(codec
, "Master Playback Volume")) {
1108 unsigned int vmaster_tlv
[4];
1109 snd_hda_set_vmaster_tlv(codec
, spec
->multiout
.dac_nids
[0],
1110 HDA_OUTPUT
, vmaster_tlv
);
1111 /* correct volume offset */
1112 vmaster_tlv
[2] += vmaster_tlv
[3] * spec
->volume_offset
;
1113 err
= snd_hda_add_vmaster(codec
, "Master Playback Volume",
1114 vmaster_tlv
, slave_vols
);
1118 if (!snd_hda_find_mixer_ctl(codec
, "Master Playback Switch")) {
1119 err
= snd_hda_add_vmaster(codec
, "Master Playback Switch",
1125 if (spec
->aloopback_ctl
&&
1126 snd_hda_get_bool_hint(codec
, "loopback") == 1) {
1127 err
= snd_hda_add_new_ctls(codec
, spec
->aloopback_ctl
);
1132 stac92xx_free_kctls(codec
); /* no longer needed */
1134 /* create jack input elements */
1135 if (spec
->hp_detect
) {
1136 for (i
= 0; i
< cfg
->hp_outs
; i
++) {
1137 int type
= SND_JACK_HEADPHONE
;
1138 nid
= cfg
->hp_pins
[i
];
1139 /* jack detection */
1140 if (cfg
->hp_outs
== i
)
1141 type
|= SND_JACK_LINEOUT
;
1142 err
= stac92xx_add_jack(codec
, nid
, type
);
1147 for (i
= 0; i
< cfg
->line_outs
; i
++) {
1148 err
= stac92xx_add_jack(codec
, cfg
->line_out_pins
[i
],
1153 for (i
= 0; i
< AUTO_PIN_LAST
; i
++) {
1154 nid
= cfg
->input_pins
[i
];
1156 err
= stac92xx_add_jack(codec
, nid
,
1157 SND_JACK_MICROPHONE
);
1166 static unsigned int ref9200_pin_configs
[8] = {
1167 0x01c47010, 0x01447010, 0x0221401f, 0x01114010,
1168 0x02a19020, 0x01a19021, 0x90100140, 0x01813122,
1171 static unsigned int gateway9200_m4_pin_configs
[8] = {
1172 0x400000fe, 0x404500f4, 0x400100f0, 0x90110010,
1173 0x400100f1, 0x02a1902e, 0x500000f2, 0x500000f3,
1175 static unsigned int gateway9200_m4_2_pin_configs
[8] = {
1176 0x400000fe, 0x404500f4, 0x400100f0, 0x90110010,
1177 0x400100f1, 0x02a1902e, 0x500000f2, 0x500000f3,
1181 STAC 9200 pin configs for
1186 static unsigned int dell9200_d21_pin_configs
[8] = {
1187 0x400001f0, 0x400001f1, 0x02214030, 0x01014010,
1188 0x02a19020, 0x01a19021, 0x90100140, 0x01813122,
1192 STAC 9200 pin configs for
1196 static unsigned int dell9200_d22_pin_configs
[8] = {
1197 0x400001f0, 0x400001f1, 0x0221401f, 0x01014010,
1198 0x01813020, 0x02a19021, 0x90100140, 0x400001f2,
1202 STAC 9200 pin configs for
1203 102801C4 (Dell Dimension E310)
1210 static unsigned int dell9200_d23_pin_configs
[8] = {
1211 0x400001f0, 0x400001f1, 0x0221401f, 0x01014010,
1212 0x01813020, 0x01a19021, 0x90100140, 0x400001f2,
1217 STAC 9200-32 pin configs for
1218 102801B5 (Dell Inspiron 630m)
1219 102801D8 (Dell Inspiron 640m)
1221 static unsigned int dell9200_m21_pin_configs
[8] = {
1222 0x40c003fa, 0x03441340, 0x0321121f, 0x90170310,
1223 0x408003fb, 0x03a11020, 0x401003fc, 0x403003fd,
1227 STAC 9200-32 pin configs for
1228 102801C2 (Dell Latitude D620)
1230 102801CC (Dell Latitude D820)
1234 static unsigned int dell9200_m22_pin_configs
[8] = {
1235 0x40c003fa, 0x0144131f, 0x0321121f, 0x90170310,
1236 0x90a70321, 0x03a11020, 0x401003fb, 0x40f000fc,
1240 STAC 9200-32 pin configs for
1241 102801CE (Dell XPS M1710)
1242 102801CF (Dell Precision M90)
1244 static unsigned int dell9200_m23_pin_configs
[8] = {
1245 0x40c003fa, 0x01441340, 0x0421421f, 0x90170310,
1246 0x408003fb, 0x04a1102e, 0x90170311, 0x403003fc,
1250 STAC 9200-32 pin configs for
1253 102801CB (Dell Latitude 120L)
1256 static unsigned int dell9200_m24_pin_configs
[8] = {
1257 0x40c003fa, 0x404003fb, 0x0321121f, 0x90170310,
1258 0x408003fc, 0x03a11020, 0x401003fd, 0x403003fe,
1262 STAC 9200-32 pin configs for
1263 102801BD (Dell Inspiron E1505n)
1267 static unsigned int dell9200_m25_pin_configs
[8] = {
1268 0x40c003fa, 0x01441340, 0x0421121f, 0x90170310,
1269 0x408003fb, 0x04a11020, 0x401003fc, 0x403003fd,
1273 STAC 9200-32 pin configs for
1274 102801F5 (Dell Inspiron 1501)
1277 static unsigned int dell9200_m26_pin_configs
[8] = {
1278 0x40c003fa, 0x404003fb, 0x0421121f, 0x90170310,
1279 0x408003fc, 0x04a11020, 0x401003fd, 0x403003fe,
1284 102801CD (Dell Inspiron E1705/9400)
1286 static unsigned int dell9200_m27_pin_configs
[8] = {
1287 0x40c003fa, 0x01441340, 0x0421121f, 0x90170310,
1288 0x90170310, 0x04a11020, 0x90170310, 0x40f003fc,
1291 static unsigned int oqo9200_pin_configs
[8] = {
1292 0x40c000f0, 0x404000f1, 0x0221121f, 0x02211210,
1293 0x90170111, 0x90a70120, 0x400000f2, 0x400000f3,
1297 static unsigned int *stac9200_brd_tbl
[STAC_9200_MODELS
] = {
1298 [STAC_REF
] = ref9200_pin_configs
,
1299 [STAC_9200_OQO
] = oqo9200_pin_configs
,
1300 [STAC_9200_DELL_D21
] = dell9200_d21_pin_configs
,
1301 [STAC_9200_DELL_D22
] = dell9200_d22_pin_configs
,
1302 [STAC_9200_DELL_D23
] = dell9200_d23_pin_configs
,
1303 [STAC_9200_DELL_M21
] = dell9200_m21_pin_configs
,
1304 [STAC_9200_DELL_M22
] = dell9200_m22_pin_configs
,
1305 [STAC_9200_DELL_M23
] = dell9200_m23_pin_configs
,
1306 [STAC_9200_DELL_M24
] = dell9200_m24_pin_configs
,
1307 [STAC_9200_DELL_M25
] = dell9200_m25_pin_configs
,
1308 [STAC_9200_DELL_M26
] = dell9200_m26_pin_configs
,
1309 [STAC_9200_DELL_M27
] = dell9200_m27_pin_configs
,
1310 [STAC_9200_M4
] = gateway9200_m4_pin_configs
,
1311 [STAC_9200_M4_2
] = gateway9200_m4_2_pin_configs
,
1312 [STAC_9200_PANASONIC
] = ref9200_pin_configs
,
1315 static const char *stac9200_models
[STAC_9200_MODELS
] = {
1316 [STAC_AUTO
] = "auto",
1318 [STAC_9200_OQO
] = "oqo",
1319 [STAC_9200_DELL_D21
] = "dell-d21",
1320 [STAC_9200_DELL_D22
] = "dell-d22",
1321 [STAC_9200_DELL_D23
] = "dell-d23",
1322 [STAC_9200_DELL_M21
] = "dell-m21",
1323 [STAC_9200_DELL_M22
] = "dell-m22",
1324 [STAC_9200_DELL_M23
] = "dell-m23",
1325 [STAC_9200_DELL_M24
] = "dell-m24",
1326 [STAC_9200_DELL_M25
] = "dell-m25",
1327 [STAC_9200_DELL_M26
] = "dell-m26",
1328 [STAC_9200_DELL_M27
] = "dell-m27",
1329 [STAC_9200_M4
] = "gateway-m4",
1330 [STAC_9200_M4_2
] = "gateway-m4-2",
1331 [STAC_9200_PANASONIC
] = "panasonic",
1334 static struct snd_pci_quirk stac9200_cfg_tbl
[] = {
1335 /* SigmaTel reference board */
1336 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x2668,
1337 "DFI LanParty", STAC_REF
),
1338 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI
, 0x3101,
1339 "DFI LanParty", STAC_REF
),
1340 /* Dell laptops have BIOS problem */
1341 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01a8,
1342 "unknown Dell", STAC_9200_DELL_D21
),
1343 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01b5,
1344 "Dell Inspiron 630m", STAC_9200_DELL_M21
),
1345 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01bd,
1346 "Dell Inspiron E1505n", STAC_9200_DELL_M25
),
1347 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01c0,
1348 "unknown Dell", STAC_9200_DELL_D22
),
1349 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01c1,
1350 "unknown Dell", STAC_9200_DELL_D22
),
1351 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01c2,
1352 "Dell Latitude D620", STAC_9200_DELL_M22
),
1353 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01c5,
1354 "unknown Dell", STAC_9200_DELL_D23
),
1355 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01c7,
1356 "unknown Dell", STAC_9200_DELL_D23
),
1357 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01c8,
1358 "unknown Dell", STAC_9200_DELL_M22
),
1359 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01c9,
1360 "unknown Dell", STAC_9200_DELL_M24
),
1361 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01ca,
1362 "unknown Dell", STAC_9200_DELL_M24
),
1363 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01cb,
1364 "Dell Latitude 120L", STAC_9200_DELL_M24
),
1365 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01cc,
1366 "Dell Latitude D820", STAC_9200_DELL_M22
),
1367 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01cd,
1368 "Dell Inspiron E1705/9400", STAC_9200_DELL_M27
),
1369 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01ce,
1370 "Dell XPS M1710", STAC_9200_DELL_M23
),
1371 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01cf,
1372 "Dell Precision M90", STAC_9200_DELL_M23
),
1373 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01d3,
1374 "unknown Dell", STAC_9200_DELL_M22
),
1375 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01d4,
1376 "unknown Dell", STAC_9200_DELL_M22
),
1377 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01d6,
1378 "unknown Dell", STAC_9200_DELL_M22
),
1379 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01d8,
1380 "Dell Inspiron 640m", STAC_9200_DELL_M21
),
1381 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01d9,
1382 "unknown Dell", STAC_9200_DELL_D23
),
1383 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01da,
1384 "unknown Dell", STAC_9200_DELL_D23
),
1385 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01de,
1386 "unknown Dell", STAC_9200_DELL_D21
),
1387 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01e3,
1388 "unknown Dell", STAC_9200_DELL_D23
),
1389 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01e8,
1390 "unknown Dell", STAC_9200_DELL_D21
),
1391 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01ee,
1392 "unknown Dell", STAC_9200_DELL_M25
),
1393 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01ef,
1394 "unknown Dell", STAC_9200_DELL_M25
),
1395 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01f5,
1396 "Dell Inspiron 1501", STAC_9200_DELL_M26
),
1397 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01f6,
1398 "unknown Dell", STAC_9200_DELL_M26
),
1400 SND_PCI_QUIRK(0x10f7, 0x8338, "Panasonic CF-74", STAC_9200_PANASONIC
),
1401 /* Gateway machines needs EAPD to be set on resume */
1402 SND_PCI_QUIRK(0x107b, 0x0205, "Gateway S-7110M", STAC_9200_M4
),
1403 SND_PCI_QUIRK(0x107b, 0x0317, "Gateway MT3423, MX341*", STAC_9200_M4_2
),
1404 SND_PCI_QUIRK(0x107b, 0x0318, "Gateway ML3019, MT3707", STAC_9200_M4_2
),
1406 SND_PCI_QUIRK(0x1106, 0x3288, "OQO Model 2", STAC_9200_OQO
),
1410 static unsigned int ref925x_pin_configs
[8] = {
1411 0x40c003f0, 0x424503f2, 0x01813022, 0x02a19021,
1412 0x90a70320, 0x02214210, 0x01019020, 0x9033032e,
1415 static unsigned int stac925xM1_pin_configs
[8] = {
1416 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1417 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1420 static unsigned int stac925xM1_2_pin_configs
[8] = {
1421 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1422 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1425 static unsigned int stac925xM2_pin_configs
[8] = {
1426 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1427 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1430 static unsigned int stac925xM2_2_pin_configs
[8] = {
1431 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1432 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1435 static unsigned int stac925xM3_pin_configs
[8] = {
1436 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1437 0x40a000f0, 0x90100210, 0x400003f1, 0x503303f3,
1440 static unsigned int stac925xM5_pin_configs
[8] = {
1441 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1442 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1445 static unsigned int stac925xM6_pin_configs
[8] = {
1446 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1447 0x40a000f0, 0x90100210, 0x400003f1, 0x90330320,
1450 static unsigned int *stac925x_brd_tbl
[STAC_925x_MODELS
] = {
1451 [STAC_REF
] = ref925x_pin_configs
,
1452 [STAC_M1
] = stac925xM1_pin_configs
,
1453 [STAC_M1_2
] = stac925xM1_2_pin_configs
,
1454 [STAC_M2
] = stac925xM2_pin_configs
,
1455 [STAC_M2_2
] = stac925xM2_2_pin_configs
,
1456 [STAC_M3
] = stac925xM3_pin_configs
,
1457 [STAC_M5
] = stac925xM5_pin_configs
,
1458 [STAC_M6
] = stac925xM6_pin_configs
,
1461 static const char *stac925x_models
[STAC_925x_MODELS
] = {
1462 [STAC_925x_AUTO
] = "auto",
1465 [STAC_M1_2
] = "m1-2",
1467 [STAC_M2_2
] = "m2-2",
1473 static struct snd_pci_quirk stac925x_codec_id_cfg_tbl
[] = {
1474 SND_PCI_QUIRK(0x107b, 0x0316, "Gateway M255", STAC_M2
),
1475 SND_PCI_QUIRK(0x107b, 0x0366, "Gateway MP6954", STAC_M5
),
1476 SND_PCI_QUIRK(0x107b, 0x0461, "Gateway NX560XL", STAC_M1
),
1477 SND_PCI_QUIRK(0x107b, 0x0681, "Gateway NX860", STAC_M2
),
1478 SND_PCI_QUIRK(0x107b, 0x0367, "Gateway MX6453", STAC_M1_2
),
1479 /* Not sure about the brand name for those */
1480 SND_PCI_QUIRK(0x107b, 0x0281, "Gateway mobile", STAC_M1
),
1481 SND_PCI_QUIRK(0x107b, 0x0507, "Gateway mobile", STAC_M3
),
1482 SND_PCI_QUIRK(0x107b, 0x0281, "Gateway mobile", STAC_M6
),
1483 SND_PCI_QUIRK(0x107b, 0x0685, "Gateway mobile", STAC_M2_2
),
1487 static struct snd_pci_quirk stac925x_cfg_tbl
[] = {
1488 /* SigmaTel reference board */
1489 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x2668, "DFI LanParty", STAC_REF
),
1490 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI
, 0x3101, "DFI LanParty", STAC_REF
),
1491 SND_PCI_QUIRK(0x8384, 0x7632, "Stac9202 Reference Board", STAC_REF
),
1493 /* Default table for unknown ID */
1494 SND_PCI_QUIRK(0x1002, 0x437b, "Gateway mobile", STAC_M2_2
),
1499 static unsigned int ref92hd73xx_pin_configs
[13] = {
1500 0x02214030, 0x02a19040, 0x01a19020, 0x02214030,
1501 0x0181302e, 0x01014010, 0x01014020, 0x01014030,
1502 0x02319040, 0x90a000f0, 0x90a000f0, 0x01452050,
1506 static unsigned int dell_m6_pin_configs
[13] = {
1507 0x0321101f, 0x4f00000f, 0x4f0000f0, 0x90170110,
1508 0x03a11020, 0x0321101f, 0x4f0000f0, 0x4f0000f0,
1509 0x4f0000f0, 0x90a60160, 0x4f0000f0, 0x4f0000f0,
1513 static unsigned int alienware_m17x_pin_configs
[13] = {
1514 0x0321101f, 0x0321101f, 0x03a11020, 0x03014020,
1515 0x90170110, 0x4f0000f0, 0x4f0000f0, 0x4f0000f0,
1516 0x4f0000f0, 0x90a60160, 0x4f0000f0, 0x4f0000f0,
1520 static unsigned int *stac92hd73xx_brd_tbl
[STAC_92HD73XX_MODELS
] = {
1521 [STAC_92HD73XX_REF
] = ref92hd73xx_pin_configs
,
1522 [STAC_DELL_M6_AMIC
] = dell_m6_pin_configs
,
1523 [STAC_DELL_M6_DMIC
] = dell_m6_pin_configs
,
1524 [STAC_DELL_M6_BOTH
] = dell_m6_pin_configs
,
1525 [STAC_DELL_EQ
] = dell_m6_pin_configs
,
1526 [STAC_ALIENWARE_M17X
] = alienware_m17x_pin_configs
,
1529 static const char *stac92hd73xx_models
[STAC_92HD73XX_MODELS
] = {
1530 [STAC_92HD73XX_AUTO
] = "auto",
1531 [STAC_92HD73XX_NO_JD
] = "no-jd",
1532 [STAC_92HD73XX_REF
] = "ref",
1533 [STAC_92HD73XX_INTEL
] = "intel",
1534 [STAC_DELL_M6_AMIC
] = "dell-m6-amic",
1535 [STAC_DELL_M6_DMIC
] = "dell-m6-dmic",
1536 [STAC_DELL_M6_BOTH
] = "dell-m6",
1537 [STAC_DELL_EQ
] = "dell-eq",
1538 [STAC_ALIENWARE_M17X
] = "alienware",
1541 static struct snd_pci_quirk stac92hd73xx_cfg_tbl
[] = {
1542 /* SigmaTel reference board */
1543 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x2668,
1544 "DFI LanParty", STAC_92HD73XX_REF
),
1545 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI
, 0x3101,
1546 "DFI LanParty", STAC_92HD73XX_REF
),
1547 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x5002,
1548 "Intel DG45ID", STAC_92HD73XX_INTEL
),
1549 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x5003,
1550 "Intel DG45FC", STAC_92HD73XX_INTEL
),
1551 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0254,
1552 "Dell Studio 1535", STAC_DELL_M6_DMIC
),
1553 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0255,
1554 "unknown Dell", STAC_DELL_M6_DMIC
),
1555 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0256,
1556 "unknown Dell", STAC_DELL_M6_BOTH
),
1557 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0257,
1558 "unknown Dell", STAC_DELL_M6_BOTH
),
1559 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x025e,
1560 "unknown Dell", STAC_DELL_M6_AMIC
),
1561 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x025f,
1562 "unknown Dell", STAC_DELL_M6_AMIC
),
1563 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0271,
1564 "unknown Dell", STAC_DELL_M6_DMIC
),
1565 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0272,
1566 "unknown Dell", STAC_DELL_M6_DMIC
),
1567 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x029f,
1568 "Dell Studio 1537", STAC_DELL_M6_DMIC
),
1569 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x02a0,
1570 "Dell Studio 17", STAC_DELL_M6_DMIC
),
1571 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x02be,
1572 "Dell Studio 1555", STAC_DELL_M6_DMIC
),
1576 static struct snd_pci_quirk stac92hd73xx_codec_id_cfg_tbl
[] = {
1577 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x02a1,
1578 "Alienware M17x", STAC_ALIENWARE_M17X
),
1582 static unsigned int ref92hd83xxx_pin_configs
[10] = {
1583 0x02214030, 0x02211010, 0x02a19020, 0x02170130,
1584 0x01014050, 0x01819040, 0x01014020, 0x90a3014e,
1585 0x01451160, 0x98560170,
1588 static unsigned int dell_s14_pin_configs
[10] = {
1589 0x0221403f, 0x0221101f, 0x02a19020, 0x90170110,
1590 0x40f000f0, 0x40f000f0, 0x40f000f0, 0x90a60160,
1591 0x40f000f0, 0x40f000f0,
1594 static unsigned int *stac92hd83xxx_brd_tbl
[STAC_92HD83XXX_MODELS
] = {
1595 [STAC_92HD83XXX_REF
] = ref92hd83xxx_pin_configs
,
1596 [STAC_92HD83XXX_PWR_REF
] = ref92hd83xxx_pin_configs
,
1597 [STAC_DELL_S14
] = dell_s14_pin_configs
,
1600 static const char *stac92hd83xxx_models
[STAC_92HD83XXX_MODELS
] = {
1601 [STAC_92HD83XXX_AUTO
] = "auto",
1602 [STAC_92HD83XXX_REF
] = "ref",
1603 [STAC_92HD83XXX_PWR_REF
] = "mic-ref",
1604 [STAC_DELL_S14
] = "dell-s14",
1607 static struct snd_pci_quirk stac92hd83xxx_cfg_tbl
[] = {
1608 /* SigmaTel reference board */
1609 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x2668,
1610 "DFI LanParty", STAC_92HD83XXX_REF
),
1611 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI
, 0x3101,
1612 "DFI LanParty", STAC_92HD83XXX_REF
),
1613 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x02ba,
1614 "unknown Dell", STAC_DELL_S14
),
1618 static unsigned int ref92hd71bxx_pin_configs
[STAC92HD71BXX_NUM_PINS
] = {
1619 0x02214030, 0x02a19040, 0x01a19020, 0x01014010,
1620 0x0181302e, 0x01014010, 0x01019020, 0x90a000f0,
1621 0x90a000f0, 0x01452050, 0x01452050, 0x00000000,
1625 static unsigned int dell_m4_1_pin_configs
[STAC92HD71BXX_NUM_PINS
] = {
1626 0x0421101f, 0x04a11221, 0x40f000f0, 0x90170110,
1627 0x23a1902e, 0x23014250, 0x40f000f0, 0x90a000f0,
1628 0x40f000f0, 0x4f0000f0, 0x4f0000f0, 0x00000000,
1632 static unsigned int dell_m4_2_pin_configs
[STAC92HD71BXX_NUM_PINS
] = {
1633 0x0421101f, 0x04a11221, 0x90a70330, 0x90170110,
1634 0x23a1902e, 0x23014250, 0x40f000f0, 0x40f000f0,
1635 0x40f000f0, 0x044413b0, 0x044413b0, 0x00000000,
1639 static unsigned int dell_m4_3_pin_configs
[STAC92HD71BXX_NUM_PINS
] = {
1640 0x0421101f, 0x04a11221, 0x90a70330, 0x90170110,
1641 0x40f000f0, 0x40f000f0, 0x40f000f0, 0x90a000f0,
1642 0x40f000f0, 0x044413b0, 0x044413b0, 0x00000000,
1646 static unsigned int *stac92hd71bxx_brd_tbl
[STAC_92HD71BXX_MODELS
] = {
1647 [STAC_92HD71BXX_REF
] = ref92hd71bxx_pin_configs
,
1648 [STAC_DELL_M4_1
] = dell_m4_1_pin_configs
,
1649 [STAC_DELL_M4_2
] = dell_m4_2_pin_configs
,
1650 [STAC_DELL_M4_3
] = dell_m4_3_pin_configs
,
1651 [STAC_HP_M4
] = NULL
,
1652 [STAC_HP_DV5
] = NULL
,
1653 [STAC_HP_HDX
] = NULL
,
1654 [STAC_HP_DV4_1222NR
] = NULL
,
1657 static const char *stac92hd71bxx_models
[STAC_92HD71BXX_MODELS
] = {
1658 [STAC_92HD71BXX_AUTO
] = "auto",
1659 [STAC_92HD71BXX_REF
] = "ref",
1660 [STAC_DELL_M4_1
] = "dell-m4-1",
1661 [STAC_DELL_M4_2
] = "dell-m4-2",
1662 [STAC_DELL_M4_3
] = "dell-m4-3",
1663 [STAC_HP_M4
] = "hp-m4",
1664 [STAC_HP_DV5
] = "hp-dv5",
1665 [STAC_HP_HDX
] = "hp-hdx",
1666 [STAC_HP_DV4_1222NR
] = "hp-dv4-1222nr",
1669 static struct snd_pci_quirk stac92hd71bxx_cfg_tbl
[] = {
1670 /* SigmaTel reference board */
1671 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x2668,
1672 "DFI LanParty", STAC_92HD71BXX_REF
),
1673 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI
, 0x3101,
1674 "DFI LanParty", STAC_92HD71BXX_REF
),
1675 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x30fb,
1676 "HP dv4-1222nr", STAC_HP_DV4_1222NR
),
1677 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP
, 0xfff0, 0x3080,
1679 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP
, 0xfff0, 0x30f0,
1680 "HP dv4-7", STAC_HP_DV5
),
1681 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP
, 0xfff0, 0x3600,
1682 "HP dv4-7", STAC_HP_DV5
),
1683 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x3610,
1684 "HP HDX", STAC_HP_HDX
), /* HDX18 */
1685 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x361a,
1686 "HP mini 1000", STAC_HP_M4
),
1687 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x361b,
1688 "HP HDX", STAC_HP_HDX
), /* HDX16 */
1689 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP
, 0xfff0, 0x3620,
1690 "HP dv6", STAC_HP_DV5
),
1691 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP
, 0xfff0, 0x7010,
1693 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0233,
1694 "unknown Dell", STAC_DELL_M4_1
),
1695 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0234,
1696 "unknown Dell", STAC_DELL_M4_1
),
1697 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0250,
1698 "unknown Dell", STAC_DELL_M4_1
),
1699 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x024f,
1700 "unknown Dell", STAC_DELL_M4_1
),
1701 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x024d,
1702 "unknown Dell", STAC_DELL_M4_1
),
1703 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0251,
1704 "unknown Dell", STAC_DELL_M4_1
),
1705 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0277,
1706 "unknown Dell", STAC_DELL_M4_1
),
1707 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0263,
1708 "unknown Dell", STAC_DELL_M4_2
),
1709 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0265,
1710 "unknown Dell", STAC_DELL_M4_2
),
1711 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0262,
1712 "unknown Dell", STAC_DELL_M4_2
),
1713 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0264,
1714 "unknown Dell", STAC_DELL_M4_2
),
1715 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x02aa,
1716 "unknown Dell", STAC_DELL_M4_3
),
1720 static unsigned int ref922x_pin_configs
[10] = {
1721 0x01014010, 0x01016011, 0x01012012, 0x0221401f,
1722 0x01813122, 0x01011014, 0x01441030, 0x01c41030,
1723 0x40000100, 0x40000100,
1727 STAC 922X pin configs for
1734 static unsigned int dell_922x_d81_pin_configs
[10] = {
1735 0x02214030, 0x01a19021, 0x01111012, 0x01114010,
1736 0x02a19020, 0x01117011, 0x400001f0, 0x400001f1,
1737 0x01813122, 0x400001f2,
1741 STAC 922X pin configs for
1745 static unsigned int dell_922x_d82_pin_configs
[10] = {
1746 0x02214030, 0x01a19021, 0x01111012, 0x01114010,
1747 0x02a19020, 0x01117011, 0x01451140, 0x400001f0,
1748 0x01813122, 0x400001f1,
1752 STAC 922X pin configs for
1755 static unsigned int dell_922x_m81_pin_configs
[10] = {
1756 0x0321101f, 0x01112024, 0x01111222, 0x91174220,
1757 0x03a11050, 0x01116221, 0x90a70330, 0x01452340,
1758 0x40C003f1, 0x405003f0,
1762 STAC 9221 A1 pin configs for
1763 102801D7 (Dell XPS M1210)
1765 static unsigned int dell_922x_m82_pin_configs
[10] = {
1766 0x02211211, 0x408103ff, 0x02a1123e, 0x90100310,
1767 0x408003f1, 0x0221121f, 0x03451340, 0x40c003f2,
1768 0x508003f3, 0x405003f4,
1771 static unsigned int d945gtp3_pin_configs
[10] = {
1772 0x0221401f, 0x01a19022, 0x01813021, 0x01014010,
1773 0x40000100, 0x40000100, 0x40000100, 0x40000100,
1774 0x02a19120, 0x40000100,
1777 static unsigned int d945gtp5_pin_configs
[10] = {
1778 0x0221401f, 0x01011012, 0x01813024, 0x01014010,
1779 0x01a19021, 0x01016011, 0x01452130, 0x40000100,
1780 0x02a19320, 0x40000100,
1783 static unsigned int intel_mac_v1_pin_configs
[10] = {
1784 0x0121e21f, 0x400000ff, 0x9017e110, 0x400000fd,
1785 0x400000fe, 0x0181e020, 0x1145e030, 0x11c5e240,
1786 0x400000fc, 0x400000fb,
1789 static unsigned int intel_mac_v2_pin_configs
[10] = {
1790 0x0121e21f, 0x90a7012e, 0x9017e110, 0x400000fd,
1791 0x400000fe, 0x0181e020, 0x1145e230, 0x500000fa,
1792 0x400000fc, 0x400000fb,
1795 static unsigned int intel_mac_v3_pin_configs
[10] = {
1796 0x0121e21f, 0x90a7012e, 0x9017e110, 0x400000fd,
1797 0x400000fe, 0x0181e020, 0x1145e230, 0x11c5e240,
1798 0x400000fc, 0x400000fb,
1801 static unsigned int intel_mac_v4_pin_configs
[10] = {
1802 0x0321e21f, 0x03a1e02e, 0x9017e110, 0x9017e11f,
1803 0x400000fe, 0x0381e020, 0x1345e230, 0x13c5e240,
1804 0x400000fc, 0x400000fb,
1807 static unsigned int intel_mac_v5_pin_configs
[10] = {
1808 0x0321e21f, 0x03a1e02e, 0x9017e110, 0x9017e11f,
1809 0x400000fe, 0x0381e020, 0x1345e230, 0x13c5e240,
1810 0x400000fc, 0x400000fb,
1813 static unsigned int ecs202_pin_configs
[10] = {
1814 0x0221401f, 0x02a19020, 0x01a19020, 0x01114010,
1815 0x408000f0, 0x01813022, 0x074510a0, 0x40c400f1,
1816 0x9037012e, 0x40e000f2,
1819 static unsigned int *stac922x_brd_tbl
[STAC_922X_MODELS
] = {
1820 [STAC_D945_REF
] = ref922x_pin_configs
,
1821 [STAC_D945GTP3
] = d945gtp3_pin_configs
,
1822 [STAC_D945GTP5
] = d945gtp5_pin_configs
,
1823 [STAC_INTEL_MAC_V1
] = intel_mac_v1_pin_configs
,
1824 [STAC_INTEL_MAC_V2
] = intel_mac_v2_pin_configs
,
1825 [STAC_INTEL_MAC_V3
] = intel_mac_v3_pin_configs
,
1826 [STAC_INTEL_MAC_V4
] = intel_mac_v4_pin_configs
,
1827 [STAC_INTEL_MAC_V5
] = intel_mac_v5_pin_configs
,
1828 [STAC_INTEL_MAC_AUTO
] = intel_mac_v3_pin_configs
,
1829 /* for backward compatibility */
1830 [STAC_MACMINI
] = intel_mac_v3_pin_configs
,
1831 [STAC_MACBOOK
] = intel_mac_v5_pin_configs
,
1832 [STAC_MACBOOK_PRO_V1
] = intel_mac_v3_pin_configs
,
1833 [STAC_MACBOOK_PRO_V2
] = intel_mac_v3_pin_configs
,
1834 [STAC_IMAC_INTEL
] = intel_mac_v2_pin_configs
,
1835 [STAC_IMAC_INTEL_20
] = intel_mac_v3_pin_configs
,
1836 [STAC_ECS_202
] = ecs202_pin_configs
,
1837 [STAC_922X_DELL_D81
] = dell_922x_d81_pin_configs
,
1838 [STAC_922X_DELL_D82
] = dell_922x_d82_pin_configs
,
1839 [STAC_922X_DELL_M81
] = dell_922x_m81_pin_configs
,
1840 [STAC_922X_DELL_M82
] = dell_922x_m82_pin_configs
,
1843 static const char *stac922x_models
[STAC_922X_MODELS
] = {
1844 [STAC_922X_AUTO
] = "auto",
1845 [STAC_D945_REF
] = "ref",
1846 [STAC_D945GTP5
] = "5stack",
1847 [STAC_D945GTP3
] = "3stack",
1848 [STAC_INTEL_MAC_V1
] = "intel-mac-v1",
1849 [STAC_INTEL_MAC_V2
] = "intel-mac-v2",
1850 [STAC_INTEL_MAC_V3
] = "intel-mac-v3",
1851 [STAC_INTEL_MAC_V4
] = "intel-mac-v4",
1852 [STAC_INTEL_MAC_V5
] = "intel-mac-v5",
1853 [STAC_INTEL_MAC_AUTO
] = "intel-mac-auto",
1854 /* for backward compatibility */
1855 [STAC_MACMINI
] = "macmini",
1856 [STAC_MACBOOK
] = "macbook",
1857 [STAC_MACBOOK_PRO_V1
] = "macbook-pro-v1",
1858 [STAC_MACBOOK_PRO_V2
] = "macbook-pro",
1859 [STAC_IMAC_INTEL
] = "imac-intel",
1860 [STAC_IMAC_INTEL_20
] = "imac-intel-20",
1861 [STAC_ECS_202
] = "ecs202",
1862 [STAC_922X_DELL_D81
] = "dell-d81",
1863 [STAC_922X_DELL_D82
] = "dell-d82",
1864 [STAC_922X_DELL_M81
] = "dell-m81",
1865 [STAC_922X_DELL_M82
] = "dell-m82",
1868 static struct snd_pci_quirk stac922x_cfg_tbl
[] = {
1869 /* SigmaTel reference board */
1870 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x2668,
1871 "DFI LanParty", STAC_D945_REF
),
1872 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI
, 0x3101,
1873 "DFI LanParty", STAC_D945_REF
),
1874 /* Intel 945G based systems */
1875 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0101,
1876 "Intel D945G", STAC_D945GTP3
),
1877 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0202,
1878 "Intel D945G", STAC_D945GTP3
),
1879 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0606,
1880 "Intel D945G", STAC_D945GTP3
),
1881 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0601,
1882 "Intel D945G", STAC_D945GTP3
),
1883 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0111,
1884 "Intel D945G", STAC_D945GTP3
),
1885 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x1115,
1886 "Intel D945G", STAC_D945GTP3
),
1887 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x1116,
1888 "Intel D945G", STAC_D945GTP3
),
1889 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x1117,
1890 "Intel D945G", STAC_D945GTP3
),
1891 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x1118,
1892 "Intel D945G", STAC_D945GTP3
),
1893 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x1119,
1894 "Intel D945G", STAC_D945GTP3
),
1895 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x8826,
1896 "Intel D945G", STAC_D945GTP3
),
1897 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x5049,
1898 "Intel D945G", STAC_D945GTP3
),
1899 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x5055,
1900 "Intel D945G", STAC_D945GTP3
),
1901 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x5048,
1902 "Intel D945G", STAC_D945GTP3
),
1903 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0110,
1904 "Intel D945G", STAC_D945GTP3
),
1905 /* Intel D945G 5-stack systems */
1906 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0404,
1907 "Intel D945G", STAC_D945GTP5
),
1908 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0303,
1909 "Intel D945G", STAC_D945GTP5
),
1910 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0013,
1911 "Intel D945G", STAC_D945GTP5
),
1912 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0417,
1913 "Intel D945G", STAC_D945GTP5
),
1914 /* Intel 945P based systems */
1915 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0b0b,
1916 "Intel D945P", STAC_D945GTP3
),
1917 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0112,
1918 "Intel D945P", STAC_D945GTP3
),
1919 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0d0d,
1920 "Intel D945P", STAC_D945GTP3
),
1921 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0909,
1922 "Intel D945P", STAC_D945GTP3
),
1923 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0505,
1924 "Intel D945P", STAC_D945GTP3
),
1925 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0707,
1926 "Intel D945P", STAC_D945GTP5
),
1928 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0204,
1929 "Intel D945", STAC_D945_REF
),
1931 /* Apple Intel Mac (Mac Mini, MacBook, MacBook Pro...) */
1932 SND_PCI_QUIRK(0x8384, 0x7680,
1933 "Mac", STAC_INTEL_MAC_AUTO
),
1935 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01a7,
1936 "unknown Dell", STAC_922X_DELL_D81
),
1937 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01a9,
1938 "unknown Dell", STAC_922X_DELL_D81
),
1939 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01ab,
1940 "unknown Dell", STAC_922X_DELL_D81
),
1941 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01ac,
1942 "unknown Dell", STAC_922X_DELL_D82
),
1943 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01bf,
1944 "unknown Dell", STAC_922X_DELL_M81
),
1945 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01d0,
1946 "unknown Dell", STAC_922X_DELL_D82
),
1947 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01d1,
1948 "unknown Dell", STAC_922X_DELL_D81
),
1949 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01d2,
1950 "unknown Dell", STAC_922X_DELL_D81
),
1951 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01d7,
1952 "Dell XPS M1210", STAC_922X_DELL_M82
),
1953 /* ECS/PC Chips boards */
1954 SND_PCI_QUIRK_MASK(0x1019, 0xf000, 0x2000,
1955 "ECS/PC chips", STAC_ECS_202
),
1959 static unsigned int ref927x_pin_configs
[14] = {
1960 0x02214020, 0x02a19080, 0x0181304e, 0x01014010,
1961 0x01a19040, 0x01011012, 0x01016011, 0x0101201f,
1962 0x183301f0, 0x18a001f0, 0x18a001f0, 0x01442070,
1963 0x01c42190, 0x40000100,
1966 static unsigned int d965_3st_pin_configs
[14] = {
1967 0x0221401f, 0x02a19120, 0x40000100, 0x01014011,
1968 0x01a19021, 0x01813024, 0x40000100, 0x40000100,
1969 0x40000100, 0x40000100, 0x40000100, 0x40000100,
1970 0x40000100, 0x40000100
1973 static unsigned int d965_5st_pin_configs
[14] = {
1974 0x02214020, 0x02a19080, 0x0181304e, 0x01014010,
1975 0x01a19040, 0x01011012, 0x01016011, 0x40000100,
1976 0x40000100, 0x40000100, 0x40000100, 0x01442070,
1977 0x40000100, 0x40000100
1980 static unsigned int d965_5st_no_fp_pin_configs
[14] = {
1981 0x40000100, 0x40000100, 0x0181304e, 0x01014010,
1982 0x01a19040, 0x01011012, 0x01016011, 0x40000100,
1983 0x40000100, 0x40000100, 0x40000100, 0x01442070,
1984 0x40000100, 0x40000100
1987 static unsigned int dell_3st_pin_configs
[14] = {
1988 0x02211230, 0x02a11220, 0x01a19040, 0x01114210,
1989 0x01111212, 0x01116211, 0x01813050, 0x01112214,
1990 0x403003fa, 0x90a60040, 0x90a60040, 0x404003fb,
1991 0x40c003fc, 0x40000100
1994 static unsigned int *stac927x_brd_tbl
[STAC_927X_MODELS
] = {
1995 [STAC_D965_REF_NO_JD
] = ref927x_pin_configs
,
1996 [STAC_D965_REF
] = ref927x_pin_configs
,
1997 [STAC_D965_3ST
] = d965_3st_pin_configs
,
1998 [STAC_D965_5ST
] = d965_5st_pin_configs
,
1999 [STAC_D965_5ST_NO_FP
] = d965_5st_no_fp_pin_configs
,
2000 [STAC_DELL_3ST
] = dell_3st_pin_configs
,
2001 [STAC_DELL_BIOS
] = NULL
,
2004 static const char *stac927x_models
[STAC_927X_MODELS
] = {
2005 [STAC_927X_AUTO
] = "auto",
2006 [STAC_D965_REF_NO_JD
] = "ref-no-jd",
2007 [STAC_D965_REF
] = "ref",
2008 [STAC_D965_3ST
] = "3stack",
2009 [STAC_D965_5ST
] = "5stack",
2010 [STAC_D965_5ST_NO_FP
] = "5stack-no-fp",
2011 [STAC_DELL_3ST
] = "dell-3stack",
2012 [STAC_DELL_BIOS
] = "dell-bios",
2015 static struct snd_pci_quirk stac927x_cfg_tbl
[] = {
2016 /* SigmaTel reference board */
2017 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x2668,
2018 "DFI LanParty", STAC_D965_REF
),
2019 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI
, 0x3101,
2020 "DFI LanParty", STAC_D965_REF
),
2021 /* Intel 946 based systems */
2022 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x3d01, "Intel D946", STAC_D965_3ST
),
2023 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0xa301, "Intel D946", STAC_D965_3ST
),
2024 /* 965 based 3 stack systems */
2025 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL
, 0xff00, 0x2100,
2026 "Intel D965", STAC_D965_3ST
),
2027 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL
, 0xff00, 0x2000,
2028 "Intel D965", STAC_D965_3ST
),
2029 /* Dell 3 stack systems */
2030 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01f7, "Dell XPS M1730", STAC_DELL_3ST
),
2031 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01dd, "Dell Dimension E520", STAC_DELL_3ST
),
2032 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01ed, "Dell ", STAC_DELL_3ST
),
2033 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01f4, "Dell ", STAC_DELL_3ST
),
2034 /* Dell 3 stack systems with verb table in BIOS */
2035 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01f3, "Dell Inspiron 1420", STAC_DELL_BIOS
),
2036 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0227, "Dell Vostro 1400 ", STAC_DELL_BIOS
),
2037 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x022e, "Dell ", STAC_DELL_BIOS
),
2038 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x022f, "Dell Inspiron 1525", STAC_DELL_BIOS
),
2039 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0242, "Dell ", STAC_DELL_BIOS
),
2040 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0243, "Dell ", STAC_DELL_BIOS
),
2041 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x02ff, "Dell ", STAC_DELL_BIOS
),
2042 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0209, "Dell XPS 1330", STAC_DELL_BIOS
),
2043 /* 965 based 5 stack systems */
2044 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL
, 0xff00, 0x2300,
2045 "Intel D965", STAC_D965_5ST
),
2046 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL
, 0xff00, 0x2500,
2047 "Intel D965", STAC_D965_5ST
),
2051 static unsigned int ref9205_pin_configs
[12] = {
2052 0x40000100, 0x40000100, 0x01016011, 0x01014010,
2053 0x01813122, 0x01a19021, 0x01019020, 0x40000100,
2054 0x90a000f0, 0x90a000f0, 0x01441030, 0x01c41030
2058 STAC 9205 pin configs for
2065 10280228 (Dell Vostro 1500)
2067 static unsigned int dell_9205_m42_pin_configs
[12] = {
2068 0x0321101F, 0x03A11020, 0x400003FA, 0x90170310,
2069 0x400003FB, 0x400003FC, 0x400003FD, 0x40F000F9,
2070 0x90A60330, 0x400003FF, 0x0144131F, 0x40C003FE,
2074 STAC 9205 pin configs for
2078 102801FF (Dell Precision M4300)
2083 static unsigned int dell_9205_m43_pin_configs
[12] = {
2084 0x0321101f, 0x03a11020, 0x90a70330, 0x90170310,
2085 0x400000fe, 0x400000ff, 0x400000fd, 0x40f000f9,
2086 0x400000fa, 0x400000fc, 0x0144131f, 0x40c003f8,
2089 static unsigned int dell_9205_m44_pin_configs
[12] = {
2090 0x0421101f, 0x04a11020, 0x400003fa, 0x90170310,
2091 0x400003fb, 0x400003fc, 0x400003fd, 0x400003f9,
2092 0x90a60330, 0x400003ff, 0x01441340, 0x40c003fe,
2095 static unsigned int *stac9205_brd_tbl
[STAC_9205_MODELS
] = {
2096 [STAC_9205_REF
] = ref9205_pin_configs
,
2097 [STAC_9205_DELL_M42
] = dell_9205_m42_pin_configs
,
2098 [STAC_9205_DELL_M43
] = dell_9205_m43_pin_configs
,
2099 [STAC_9205_DELL_M44
] = dell_9205_m44_pin_configs
,
2100 [STAC_9205_EAPD
] = NULL
,
2103 static const char *stac9205_models
[STAC_9205_MODELS
] = {
2104 [STAC_9205_AUTO
] = "auto",
2105 [STAC_9205_REF
] = "ref",
2106 [STAC_9205_DELL_M42
] = "dell-m42",
2107 [STAC_9205_DELL_M43
] = "dell-m43",
2108 [STAC_9205_DELL_M44
] = "dell-m44",
2109 [STAC_9205_EAPD
] = "eapd",
2112 static struct snd_pci_quirk stac9205_cfg_tbl
[] = {
2113 /* SigmaTel reference board */
2114 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x2668,
2115 "DFI LanParty", STAC_9205_REF
),
2116 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0xfb30,
2117 "SigmaTel", STAC_9205_REF
),
2118 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI
, 0x3101,
2119 "DFI LanParty", STAC_9205_REF
),
2121 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01f1,
2122 "unknown Dell", STAC_9205_DELL_M42
),
2123 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01f2,
2124 "unknown Dell", STAC_9205_DELL_M42
),
2125 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01f8,
2126 "Dell Precision", STAC_9205_DELL_M43
),
2127 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01f9,
2128 "Dell Precision", STAC_9205_DELL_M43
),
2129 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01fa,
2130 "Dell Precision", STAC_9205_DELL_M43
),
2131 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01fc,
2132 "unknown Dell", STAC_9205_DELL_M42
),
2133 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01fd,
2134 "unknown Dell", STAC_9205_DELL_M42
),
2135 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01fe,
2136 "Dell Precision", STAC_9205_DELL_M43
),
2137 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01ff,
2138 "Dell Precision M4300", STAC_9205_DELL_M43
),
2139 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0204,
2140 "unknown Dell", STAC_9205_DELL_M42
),
2141 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0206,
2142 "Dell Precision", STAC_9205_DELL_M43
),
2143 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x021b,
2144 "Dell Precision", STAC_9205_DELL_M43
),
2145 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x021c,
2146 "Dell Precision", STAC_9205_DELL_M43
),
2147 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x021f,
2148 "Dell Inspiron", STAC_9205_DELL_M44
),
2149 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0228,
2150 "Dell Vostro 1500", STAC_9205_DELL_M42
),
2152 SND_PCI_QUIRK(0x107b, 0x0560, "Gateway T6834c", STAC_9205_EAPD
),
2153 SND_PCI_QUIRK(0x107b, 0x0565, "Gateway T1616", STAC_9205_EAPD
),
2157 static void stac92xx_set_config_regs(struct hda_codec
*codec
,
2158 unsigned int *pincfgs
)
2161 struct sigmatel_spec
*spec
= codec
->spec
;
2166 for (i
= 0; i
< spec
->num_pins
; i
++)
2167 if (spec
->pin_nids
[i
] && pincfgs
[i
])
2168 snd_hda_codec_set_pincfg(codec
, spec
->pin_nids
[i
],
2173 * Analog playback callbacks
2175 static int stac92xx_playback_pcm_open(struct hda_pcm_stream
*hinfo
,
2176 struct hda_codec
*codec
,
2177 struct snd_pcm_substream
*substream
)
2179 struct sigmatel_spec
*spec
= codec
->spec
;
2180 if (spec
->stream_delay
)
2181 msleep(spec
->stream_delay
);
2182 return snd_hda_multi_out_analog_open(codec
, &spec
->multiout
, substream
,
2186 static int stac92xx_playback_pcm_prepare(struct hda_pcm_stream
*hinfo
,
2187 struct hda_codec
*codec
,
2188 unsigned int stream_tag
,
2189 unsigned int format
,
2190 struct snd_pcm_substream
*substream
)
2192 struct sigmatel_spec
*spec
= codec
->spec
;
2193 return snd_hda_multi_out_analog_prepare(codec
, &spec
->multiout
, stream_tag
, format
, substream
);
2196 static int stac92xx_playback_pcm_cleanup(struct hda_pcm_stream
*hinfo
,
2197 struct hda_codec
*codec
,
2198 struct snd_pcm_substream
*substream
)
2200 struct sigmatel_spec
*spec
= codec
->spec
;
2201 return snd_hda_multi_out_analog_cleanup(codec
, &spec
->multiout
);
2205 * Digital playback callbacks
2207 static int stac92xx_dig_playback_pcm_open(struct hda_pcm_stream
*hinfo
,
2208 struct hda_codec
*codec
,
2209 struct snd_pcm_substream
*substream
)
2211 struct sigmatel_spec
*spec
= codec
->spec
;
2212 return snd_hda_multi_out_dig_open(codec
, &spec
->multiout
);
2215 static int stac92xx_dig_playback_pcm_close(struct hda_pcm_stream
*hinfo
,
2216 struct hda_codec
*codec
,
2217 struct snd_pcm_substream
*substream
)
2219 struct sigmatel_spec
*spec
= codec
->spec
;
2220 return snd_hda_multi_out_dig_close(codec
, &spec
->multiout
);
2223 static int stac92xx_dig_playback_pcm_prepare(struct hda_pcm_stream
*hinfo
,
2224 struct hda_codec
*codec
,
2225 unsigned int stream_tag
,
2226 unsigned int format
,
2227 struct snd_pcm_substream
*substream
)
2229 struct sigmatel_spec
*spec
= codec
->spec
;
2230 return snd_hda_multi_out_dig_prepare(codec
, &spec
->multiout
,
2231 stream_tag
, format
, substream
);
2234 static int stac92xx_dig_playback_pcm_cleanup(struct hda_pcm_stream
*hinfo
,
2235 struct hda_codec
*codec
,
2236 struct snd_pcm_substream
*substream
)
2238 struct sigmatel_spec
*spec
= codec
->spec
;
2239 return snd_hda_multi_out_dig_cleanup(codec
, &spec
->multiout
);
2244 * Analog capture callbacks
2246 static int stac92xx_capture_pcm_prepare(struct hda_pcm_stream
*hinfo
,
2247 struct hda_codec
*codec
,
2248 unsigned int stream_tag
,
2249 unsigned int format
,
2250 struct snd_pcm_substream
*substream
)
2252 struct sigmatel_spec
*spec
= codec
->spec
;
2253 hda_nid_t nid
= spec
->adc_nids
[substream
->number
];
2255 if (spec
->powerdown_adcs
) {
2257 snd_hda_codec_write(codec
, nid
, 0,
2258 AC_VERB_SET_POWER_STATE
, AC_PWRST_D0
);
2260 snd_hda_codec_setup_stream(codec
, nid
, stream_tag
, 0, format
);
2264 static int stac92xx_capture_pcm_cleanup(struct hda_pcm_stream
*hinfo
,
2265 struct hda_codec
*codec
,
2266 struct snd_pcm_substream
*substream
)
2268 struct sigmatel_spec
*spec
= codec
->spec
;
2269 hda_nid_t nid
= spec
->adc_nids
[substream
->number
];
2271 snd_hda_codec_cleanup_stream(codec
, nid
);
2272 if (spec
->powerdown_adcs
)
2273 snd_hda_codec_write(codec
, nid
, 0,
2274 AC_VERB_SET_POWER_STATE
, AC_PWRST_D3
);
2278 static struct hda_pcm_stream stac92xx_pcm_digital_playback
= {
2282 /* NID is set in stac92xx_build_pcms */
2284 .open
= stac92xx_dig_playback_pcm_open
,
2285 .close
= stac92xx_dig_playback_pcm_close
,
2286 .prepare
= stac92xx_dig_playback_pcm_prepare
,
2287 .cleanup
= stac92xx_dig_playback_pcm_cleanup
2291 static struct hda_pcm_stream stac92xx_pcm_digital_capture
= {
2295 /* NID is set in stac92xx_build_pcms */
2298 static struct hda_pcm_stream stac92xx_pcm_analog_playback
= {
2302 .nid
= 0x02, /* NID to query formats and rates */
2304 .open
= stac92xx_playback_pcm_open
,
2305 .prepare
= stac92xx_playback_pcm_prepare
,
2306 .cleanup
= stac92xx_playback_pcm_cleanup
2310 static struct hda_pcm_stream stac92xx_pcm_analog_alt_playback
= {
2314 .nid
= 0x06, /* NID to query formats and rates */
2316 .open
= stac92xx_playback_pcm_open
,
2317 .prepare
= stac92xx_playback_pcm_prepare
,
2318 .cleanup
= stac92xx_playback_pcm_cleanup
2322 static struct hda_pcm_stream stac92xx_pcm_analog_capture
= {
2325 /* NID + .substreams is set in stac92xx_build_pcms */
2327 .prepare
= stac92xx_capture_pcm_prepare
,
2328 .cleanup
= stac92xx_capture_pcm_cleanup
2332 static int stac92xx_build_pcms(struct hda_codec
*codec
)
2334 struct sigmatel_spec
*spec
= codec
->spec
;
2335 struct hda_pcm
*info
= spec
->pcm_rec
;
2337 codec
->num_pcms
= 1;
2338 codec
->pcm_info
= info
;
2340 info
->name
= "STAC92xx Analog";
2341 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
] = stac92xx_pcm_analog_playback
;
2342 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
].nid
=
2343 spec
->multiout
.dac_nids
[0];
2344 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
] = stac92xx_pcm_analog_capture
;
2345 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
].nid
= spec
->adc_nids
[0];
2346 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
].substreams
= spec
->num_adcs
;
2348 if (spec
->alt_switch
) {
2351 info
->name
= "STAC92xx Analog Alt";
2352 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
] = stac92xx_pcm_analog_alt_playback
;
2355 if (spec
->multiout
.dig_out_nid
|| spec
->dig_in_nid
) {
2358 info
->name
= "STAC92xx Digital";
2359 info
->pcm_type
= spec
->autocfg
.dig_out_type
[0];
2360 if (spec
->multiout
.dig_out_nid
) {
2361 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
] = stac92xx_pcm_digital_playback
;
2362 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
].nid
= spec
->multiout
.dig_out_nid
;
2364 if (spec
->dig_in_nid
) {
2365 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
] = stac92xx_pcm_digital_capture
;
2366 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
].nid
= spec
->dig_in_nid
;
2373 static unsigned int stac92xx_get_default_vref(struct hda_codec
*codec
,
2376 unsigned int pincap
= snd_hda_query_pin_caps(codec
, nid
);
2377 pincap
= (pincap
& AC_PINCAP_VREF
) >> AC_PINCAP_VREF_SHIFT
;
2378 if (pincap
& AC_PINCAP_VREF_100
)
2379 return AC_PINCTL_VREF_100
;
2380 if (pincap
& AC_PINCAP_VREF_80
)
2381 return AC_PINCTL_VREF_80
;
2382 if (pincap
& AC_PINCAP_VREF_50
)
2383 return AC_PINCTL_VREF_50
;
2384 if (pincap
& AC_PINCAP_VREF_GRD
)
2385 return AC_PINCTL_VREF_GRD
;
2389 static void stac92xx_auto_set_pinctl(struct hda_codec
*codec
, hda_nid_t nid
, int pin_type
)
2392 snd_hda_codec_write_cache(codec
, nid
, 0,
2393 AC_VERB_SET_PIN_WIDGET_CONTROL
, pin_type
);
2396 #define stac92xx_hp_switch_info snd_ctl_boolean_mono_info
2398 static int stac92xx_hp_switch_get(struct snd_kcontrol
*kcontrol
,
2399 struct snd_ctl_elem_value
*ucontrol
)
2401 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2402 struct sigmatel_spec
*spec
= codec
->spec
;
2404 ucontrol
->value
.integer
.value
[0] = !!spec
->hp_switch
;
2408 static void stac_issue_unsol_event(struct hda_codec
*codec
, hda_nid_t nid
);
2410 static int stac92xx_hp_switch_put(struct snd_kcontrol
*kcontrol
,
2411 struct snd_ctl_elem_value
*ucontrol
)
2413 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2414 struct sigmatel_spec
*spec
= codec
->spec
;
2415 int nid
= kcontrol
->private_value
;
2417 spec
->hp_switch
= ucontrol
->value
.integer
.value
[0] ? nid
: 0;
2419 /* check to be sure that the ports are upto date with
2422 stac_issue_unsol_event(codec
, nid
);
2427 static int stac92xx_dc_bias_info(struct snd_kcontrol
*kcontrol
,
2428 struct snd_ctl_elem_info
*uinfo
)
2431 static char *texts
[] = {
2432 "Mic In", "Line In", "Line Out"
2435 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2436 struct sigmatel_spec
*spec
= codec
->spec
;
2437 hda_nid_t nid
= kcontrol
->private_value
;
2439 if (nid
== spec
->mic_switch
|| nid
== spec
->line_switch
)
2444 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
2445 uinfo
->value
.enumerated
.items
= i
;
2447 if (uinfo
->value
.enumerated
.item
>= i
)
2448 uinfo
->value
.enumerated
.item
= i
-1;
2449 strcpy(uinfo
->value
.enumerated
.name
,
2450 texts
[uinfo
->value
.enumerated
.item
]);
2455 static int stac92xx_dc_bias_get(struct snd_kcontrol
*kcontrol
,
2456 struct snd_ctl_elem_value
*ucontrol
)
2458 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2459 hda_nid_t nid
= kcontrol
->private_value
;
2460 unsigned int vref
= stac92xx_vref_get(codec
, nid
);
2462 if (vref
== stac92xx_get_default_vref(codec
, nid
))
2463 ucontrol
->value
.enumerated
.item
[0] = 0;
2464 else if (vref
== AC_PINCTL_VREF_GRD
)
2465 ucontrol
->value
.enumerated
.item
[0] = 1;
2466 else if (vref
== AC_PINCTL_VREF_HIZ
)
2467 ucontrol
->value
.enumerated
.item
[0] = 2;
2472 static int stac92xx_dc_bias_put(struct snd_kcontrol
*kcontrol
,
2473 struct snd_ctl_elem_value
*ucontrol
)
2475 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2476 unsigned int new_vref
= 0;
2478 hda_nid_t nid
= kcontrol
->private_value
;
2480 if (ucontrol
->value
.enumerated
.item
[0] == 0)
2481 new_vref
= stac92xx_get_default_vref(codec
, nid
);
2482 else if (ucontrol
->value
.enumerated
.item
[0] == 1)
2483 new_vref
= AC_PINCTL_VREF_GRD
;
2484 else if (ucontrol
->value
.enumerated
.item
[0] == 2)
2485 new_vref
= AC_PINCTL_VREF_HIZ
;
2489 if (new_vref
!= stac92xx_vref_get(codec
, nid
)) {
2490 error
= stac92xx_vref_set(codec
, nid
, new_vref
);
2497 static int stac92xx_io_switch_info(struct snd_kcontrol
*kcontrol
,
2498 struct snd_ctl_elem_info
*uinfo
)
2500 static char *texts
[2];
2501 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2502 struct sigmatel_spec
*spec
= codec
->spec
;
2504 if (kcontrol
->private_value
== spec
->line_switch
)
2505 texts
[0] = "Line In";
2507 texts
[0] = "Mic In";
2508 texts
[1] = "Line Out";
2509 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
2510 uinfo
->value
.enumerated
.items
= 2;
2513 if (uinfo
->value
.enumerated
.item
>= 2)
2514 uinfo
->value
.enumerated
.item
= 1;
2515 strcpy(uinfo
->value
.enumerated
.name
,
2516 texts
[uinfo
->value
.enumerated
.item
]);
2521 static int stac92xx_io_switch_get(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2523 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2524 struct sigmatel_spec
*spec
= codec
->spec
;
2525 hda_nid_t nid
= kcontrol
->private_value
;
2526 int io_idx
= (nid
== spec
->mic_switch
) ? 1 : 0;
2528 ucontrol
->value
.enumerated
.item
[0] = spec
->io_switch
[io_idx
];
2532 static int stac92xx_io_switch_put(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2534 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2535 struct sigmatel_spec
*spec
= codec
->spec
;
2536 hda_nid_t nid
= kcontrol
->private_value
;
2537 int io_idx
= (nid
== spec
->mic_switch
) ? 1 : 0;
2538 unsigned short val
= !!ucontrol
->value
.enumerated
.item
[0];
2540 spec
->io_switch
[io_idx
] = val
;
2543 stac92xx_auto_set_pinctl(codec
, nid
, AC_PINCTL_OUT_EN
);
2545 unsigned int pinctl
= AC_PINCTL_IN_EN
;
2546 if (io_idx
) /* set VREF for mic */
2547 pinctl
|= stac92xx_get_default_vref(codec
, nid
);
2548 stac92xx_auto_set_pinctl(codec
, nid
, pinctl
);
2551 /* check the auto-mute again: we need to mute/unmute the speaker
2552 * appropriately according to the pin direction
2554 if (spec
->hp_detect
)
2555 stac_issue_unsol_event(codec
, nid
);
2560 #define stac92xx_clfe_switch_info snd_ctl_boolean_mono_info
2562 static int stac92xx_clfe_switch_get(struct snd_kcontrol
*kcontrol
,
2563 struct snd_ctl_elem_value
*ucontrol
)
2565 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2566 struct sigmatel_spec
*spec
= codec
->spec
;
2568 ucontrol
->value
.integer
.value
[0] = spec
->clfe_swap
;
2572 static int stac92xx_clfe_switch_put(struct snd_kcontrol
*kcontrol
,
2573 struct snd_ctl_elem_value
*ucontrol
)
2575 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2576 struct sigmatel_spec
*spec
= codec
->spec
;
2577 hda_nid_t nid
= kcontrol
->private_value
& 0xff;
2578 unsigned int val
= !!ucontrol
->value
.integer
.value
[0];
2580 if (spec
->clfe_swap
== val
)
2583 spec
->clfe_swap
= val
;
2585 snd_hda_codec_write_cache(codec
, nid
, 0, AC_VERB_SET_EAPD_BTLENABLE
,
2586 spec
->clfe_swap
? 0x4 : 0x0);
2591 #define STAC_CODEC_HP_SWITCH(xname) \
2592 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2595 .info = stac92xx_hp_switch_info, \
2596 .get = stac92xx_hp_switch_get, \
2597 .put = stac92xx_hp_switch_put, \
2600 #define STAC_CODEC_IO_SWITCH(xname, xpval) \
2601 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2604 .info = stac92xx_io_switch_info, \
2605 .get = stac92xx_io_switch_get, \
2606 .put = stac92xx_io_switch_put, \
2607 .private_value = xpval, \
2610 #define STAC_CODEC_CLFE_SWITCH(xname, xpval) \
2611 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2614 .info = stac92xx_clfe_switch_info, \
2615 .get = stac92xx_clfe_switch_get, \
2616 .put = stac92xx_clfe_switch_put, \
2617 .private_value = xpval, \
2621 STAC_CTL_WIDGET_VOL
,
2622 STAC_CTL_WIDGET_MUTE
,
2623 STAC_CTL_WIDGET_MONO_MUX
,
2624 STAC_CTL_WIDGET_HP_SWITCH
,
2625 STAC_CTL_WIDGET_IO_SWITCH
,
2626 STAC_CTL_WIDGET_CLFE_SWITCH
,
2627 STAC_CTL_WIDGET_DC_BIAS
2630 static struct snd_kcontrol_new stac92xx_control_templates
[] = {
2631 HDA_CODEC_VOLUME(NULL
, 0, 0, 0),
2632 HDA_CODEC_MUTE(NULL
, 0, 0, 0),
2634 STAC_CODEC_HP_SWITCH(NULL
),
2635 STAC_CODEC_IO_SWITCH(NULL
, 0),
2636 STAC_CODEC_CLFE_SWITCH(NULL
, 0),
2637 DC_BIAS(NULL
, 0, 0),
2640 /* add dynamic controls */
2641 static struct snd_kcontrol_new
*
2642 stac_control_new(struct sigmatel_spec
*spec
,
2643 struct snd_kcontrol_new
*ktemp
,
2646 struct snd_kcontrol_new
*knew
;
2648 snd_array_init(&spec
->kctls
, sizeof(*knew
), 32);
2649 knew
= snd_array_new(&spec
->kctls
);
2653 knew
->name
= kstrdup(name
, GFP_KERNEL
);
2656 memset(knew
, 0, sizeof(*knew
));
2657 spec
->kctls
.alloced
--;
2663 static int stac92xx_add_control_temp(struct sigmatel_spec
*spec
,
2664 struct snd_kcontrol_new
*ktemp
,
2665 int idx
, const char *name
,
2668 struct snd_kcontrol_new
*knew
= stac_control_new(spec
, ktemp
, name
);
2672 knew
->private_value
= val
;
2676 static inline int stac92xx_add_control_idx(struct sigmatel_spec
*spec
,
2677 int type
, int idx
, const char *name
,
2680 return stac92xx_add_control_temp(spec
,
2681 &stac92xx_control_templates
[type
],
2686 /* add dynamic controls */
2687 static inline int stac92xx_add_control(struct sigmatel_spec
*spec
, int type
,
2688 const char *name
, unsigned long val
)
2690 return stac92xx_add_control_idx(spec
, type
, 0, name
, val
);
2693 static struct snd_kcontrol_new stac_input_src_temp
= {
2694 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2695 .name
= "Input Source",
2696 .info
= stac92xx_mux_enum_info
,
2697 .get
= stac92xx_mux_enum_get
,
2698 .put
= stac92xx_mux_enum_put
,
2701 static inline int stac92xx_add_jack_mode_control(struct hda_codec
*codec
,
2702 hda_nid_t nid
, int idx
)
2704 int def_conf
= snd_hda_codec_get_pincfg(codec
, nid
);
2706 struct sigmatel_spec
*spec
= codec
->spec
;
2709 if (!((get_defcfg_connect(def_conf
)) & AC_JACK_PORT_FIXED
)) {
2710 if (stac92xx_get_default_vref(codec
, nid
) == AC_PINCTL_VREF_GRD
2711 && nid
== spec
->line_switch
)
2712 control
= STAC_CTL_WIDGET_IO_SWITCH
;
2713 else if (snd_hda_query_pin_caps(codec
, nid
)
2714 & (AC_PINCAP_VREF_GRD
<< AC_PINCAP_VREF_SHIFT
))
2715 control
= STAC_CTL_WIDGET_DC_BIAS
;
2716 else if (nid
== spec
->mic_switch
)
2717 control
= STAC_CTL_WIDGET_IO_SWITCH
;
2721 strcpy(name
, auto_pin_cfg_labels
[idx
]);
2722 return stac92xx_add_control(codec
->spec
, control
,
2723 strcat(name
, " Jack Mode"), nid
);
2729 static int stac92xx_add_input_source(struct sigmatel_spec
*spec
)
2731 struct snd_kcontrol_new
*knew
;
2732 struct hda_input_mux
*imux
= &spec
->private_imux
;
2735 return 0; /* no need for input source */
2736 if (!spec
->num_adcs
|| imux
->num_items
<= 1)
2737 return 0; /* no need for input source control */
2738 knew
= stac_control_new(spec
, &stac_input_src_temp
,
2739 stac_input_src_temp
.name
);
2742 knew
->count
= spec
->num_adcs
;
2746 /* check whether the line-input can be used as line-out */
2747 static hda_nid_t
check_line_out_switch(struct hda_codec
*codec
)
2749 struct sigmatel_spec
*spec
= codec
->spec
;
2750 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
2752 unsigned int pincap
;
2754 if (cfg
->line_out_type
!= AUTO_PIN_LINE_OUT
)
2756 nid
= cfg
->input_pins
[AUTO_PIN_LINE
];
2757 pincap
= snd_hda_query_pin_caps(codec
, nid
);
2758 if (pincap
& AC_PINCAP_OUT
)
2763 /* check whether the mic-input can be used as line-out */
2764 static hda_nid_t
check_mic_out_switch(struct hda_codec
*codec
)
2766 struct sigmatel_spec
*spec
= codec
->spec
;
2767 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
2768 unsigned int def_conf
, pincap
;
2769 unsigned int mic_pin
;
2771 if (cfg
->line_out_type
!= AUTO_PIN_LINE_OUT
)
2773 mic_pin
= AUTO_PIN_MIC
;
2775 hda_nid_t nid
= cfg
->input_pins
[mic_pin
];
2776 def_conf
= snd_hda_codec_get_pincfg(codec
, nid
);
2777 /* some laptops have an internal analog microphone
2778 * which can't be used as a output */
2779 if (get_defcfg_connect(def_conf
) != AC_JACK_PORT_FIXED
) {
2780 pincap
= snd_hda_query_pin_caps(codec
, nid
);
2781 if (pincap
& AC_PINCAP_OUT
)
2784 if (mic_pin
== AUTO_PIN_MIC
)
2785 mic_pin
= AUTO_PIN_FRONT_MIC
;
2792 static int is_in_dac_nids(struct sigmatel_spec
*spec
, hda_nid_t nid
)
2796 for (i
= 0; i
< spec
->multiout
.num_dacs
; i
++) {
2797 if (spec
->multiout
.dac_nids
[i
] == nid
)
2804 static int check_all_dac_nids(struct sigmatel_spec
*spec
, hda_nid_t nid
)
2807 if (is_in_dac_nids(spec
, nid
))
2809 for (i
= 0; i
< spec
->autocfg
.hp_outs
; i
++)
2810 if (spec
->hp_dacs
[i
] == nid
)
2812 for (i
= 0; i
< spec
->autocfg
.speaker_outs
; i
++)
2813 if (spec
->speaker_dacs
[i
] == nid
)
2818 static hda_nid_t
get_unassigned_dac(struct hda_codec
*codec
, hda_nid_t nid
)
2820 struct sigmatel_spec
*spec
= codec
->spec
;
2822 hda_nid_t conn
[HDA_MAX_CONNECTIONS
];
2823 unsigned int wcaps
, wtype
;
2825 conn_len
= snd_hda_get_connections(codec
, nid
, conn
,
2826 HDA_MAX_CONNECTIONS
);
2827 for (j
= 0; j
< conn_len
; j
++) {
2828 wcaps
= get_wcaps(codec
, conn
[j
]);
2829 wtype
= get_wcaps_type(wcaps
);
2830 /* we check only analog outputs */
2831 if (wtype
!= AC_WID_AUD_OUT
|| (wcaps
& AC_WCAP_DIGITAL
))
2833 /* if this route has a free DAC, assign it */
2834 if (!check_all_dac_nids(spec
, conn
[j
])) {
2836 /* select this DAC in the pin's input mux */
2837 snd_hda_codec_write_cache(codec
, nid
, 0,
2838 AC_VERB_SET_CONNECT_SEL
, j
);
2843 /* if all DACs are already assigned, connect to the primary DAC */
2845 for (j
= 0; j
< conn_len
; j
++) {
2846 if (conn
[j
] == spec
->multiout
.dac_nids
[0]) {
2847 snd_hda_codec_write_cache(codec
, nid
, 0,
2848 AC_VERB_SET_CONNECT_SEL
, j
);
2856 static int add_spec_dacs(struct sigmatel_spec
*spec
, hda_nid_t nid
);
2857 static int add_spec_extra_dacs(struct sigmatel_spec
*spec
, hda_nid_t nid
);
2860 * Fill in the dac_nids table from the parsed pin configuration
2861 * This function only works when every pin in line_out_pins[]
2862 * contains atleast one DAC in its connection list. Some 92xx
2863 * codecs are not connected directly to a DAC, such as the 9200
2864 * and 9202/925x. For those, dac_nids[] must be hard-coded.
2866 static int stac92xx_auto_fill_dac_nids(struct hda_codec
*codec
)
2868 struct sigmatel_spec
*spec
= codec
->spec
;
2869 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
2873 for (i
= 0; i
< cfg
->line_outs
; i
++) {
2874 nid
= cfg
->line_out_pins
[i
];
2875 dac
= get_unassigned_dac(codec
, nid
);
2877 if (spec
->multiout
.num_dacs
> 0) {
2878 /* we have already working output pins,
2879 * so let's drop the broken ones again
2881 cfg
->line_outs
= spec
->multiout
.num_dacs
;
2884 /* error out, no available DAC found */
2886 "%s: No available DAC for pin 0x%x\n",
2890 add_spec_dacs(spec
, dac
);
2893 for (i
= 0; i
< cfg
->hp_outs
; i
++) {
2894 nid
= cfg
->hp_pins
[i
];
2895 dac
= get_unassigned_dac(codec
, nid
);
2897 if (!spec
->multiout
.hp_nid
)
2898 spec
->multiout
.hp_nid
= dac
;
2900 add_spec_extra_dacs(spec
, dac
);
2902 spec
->hp_dacs
[i
] = dac
;
2905 for (i
= 0; i
< cfg
->speaker_outs
; i
++) {
2906 nid
= cfg
->speaker_pins
[i
];
2907 dac
= get_unassigned_dac(codec
, nid
);
2909 add_spec_extra_dacs(spec
, dac
);
2910 spec
->speaker_dacs
[i
] = dac
;
2913 /* add line-in as output */
2914 nid
= check_line_out_switch(codec
);
2916 dac
= get_unassigned_dac(codec
, nid
);
2918 snd_printdd("STAC: Add line-in 0x%x as output %d\n",
2919 nid
, cfg
->line_outs
);
2920 cfg
->line_out_pins
[cfg
->line_outs
] = nid
;
2922 spec
->line_switch
= nid
;
2923 add_spec_dacs(spec
, dac
);
2926 /* add mic as output */
2927 nid
= check_mic_out_switch(codec
);
2929 dac
= get_unassigned_dac(codec
, nid
);
2931 snd_printdd("STAC: Add mic-in 0x%x as output %d\n",
2932 nid
, cfg
->line_outs
);
2933 cfg
->line_out_pins
[cfg
->line_outs
] = nid
;
2935 spec
->mic_switch
= nid
;
2936 add_spec_dacs(spec
, dac
);
2940 snd_printd("stac92xx: dac_nids=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
2941 spec
->multiout
.num_dacs
,
2942 spec
->multiout
.dac_nids
[0],
2943 spec
->multiout
.dac_nids
[1],
2944 spec
->multiout
.dac_nids
[2],
2945 spec
->multiout
.dac_nids
[3],
2946 spec
->multiout
.dac_nids
[4]);
2951 /* create volume control/switch for the given prefx type */
2952 static int create_controls_idx(struct hda_codec
*codec
, const char *pfx
,
2953 int idx
, hda_nid_t nid
, int chs
)
2955 struct sigmatel_spec
*spec
= codec
->spec
;
2959 if (!spec
->check_volume_offset
) {
2960 unsigned int caps
, step
, nums
, db_scale
;
2961 caps
= query_amp_caps(codec
, nid
, HDA_OUTPUT
);
2962 step
= (caps
& AC_AMPCAP_STEP_SIZE
) >>
2963 AC_AMPCAP_STEP_SIZE_SHIFT
;
2964 step
= (step
+ 1) * 25; /* in .01dB unit */
2965 nums
= (caps
& AC_AMPCAP_NUM_STEPS
) >>
2966 AC_AMPCAP_NUM_STEPS_SHIFT
;
2967 db_scale
= nums
* step
;
2968 /* if dB scale is over -64dB, and finer enough,
2969 * let's reduce it to half
2971 if (db_scale
> 6400 && nums
>= 0x1f)
2972 spec
->volume_offset
= nums
/ 2;
2973 spec
->check_volume_offset
= 1;
2976 sprintf(name
, "%s Playback Volume", pfx
);
2977 err
= stac92xx_add_control_idx(spec
, STAC_CTL_WIDGET_VOL
, idx
, name
,
2978 HDA_COMPOSE_AMP_VAL_OFS(nid
, chs
, 0, HDA_OUTPUT
,
2979 spec
->volume_offset
));
2982 sprintf(name
, "%s Playback Switch", pfx
);
2983 err
= stac92xx_add_control_idx(spec
, STAC_CTL_WIDGET_MUTE
, idx
, name
,
2984 HDA_COMPOSE_AMP_VAL(nid
, chs
, 0, HDA_OUTPUT
));
2990 #define create_controls(codec, pfx, nid, chs) \
2991 create_controls_idx(codec, pfx, 0, nid, chs)
2993 static int add_spec_dacs(struct sigmatel_spec
*spec
, hda_nid_t nid
)
2995 if (spec
->multiout
.num_dacs
> 4) {
2996 printk(KERN_WARNING
"stac92xx: No space for DAC 0x%x\n", nid
);
2999 spec
->multiout
.dac_nids
[spec
->multiout
.num_dacs
] = nid
;
3000 spec
->multiout
.num_dacs
++;
3005 static int add_spec_extra_dacs(struct sigmatel_spec
*spec
, hda_nid_t nid
)
3008 for (i
= 0; i
< ARRAY_SIZE(spec
->multiout
.extra_out_nid
); i
++) {
3009 if (!spec
->multiout
.extra_out_nid
[i
]) {
3010 spec
->multiout
.extra_out_nid
[i
] = nid
;
3014 printk(KERN_WARNING
"stac92xx: No space for extra DAC 0x%x\n", nid
);
3018 /* Create output controls
3019 * The mixer elements are named depending on the given type (AUTO_PIN_XXX_OUT)
3021 static int create_multi_out_ctls(struct hda_codec
*codec
, int num_outs
,
3022 const hda_nid_t
*pins
,
3023 const hda_nid_t
*dac_nids
,
3026 struct sigmatel_spec
*spec
= codec
->spec
;
3027 static const char *chname
[4] = {
3028 "Front", "Surround", NULL
/*CLFE*/, "Side"
3032 unsigned int wid_caps
;
3034 for (i
= 0; i
< num_outs
&& i
< ARRAY_SIZE(chname
); i
++) {
3035 if (type
== AUTO_PIN_HP_OUT
&& !spec
->hp_detect
) {
3036 wid_caps
= get_wcaps(codec
, pins
[i
]);
3037 if (wid_caps
& AC_WCAP_UNSOL_CAP
)
3038 spec
->hp_detect
= 1;
3043 if (type
!= AUTO_PIN_HP_OUT
&& i
== 2) {
3045 err
= create_controls(codec
, "Center", nid
, 1);
3048 err
= create_controls(codec
, "LFE", nid
, 2);
3052 wid_caps
= get_wcaps(codec
, nid
);
3054 if (wid_caps
& AC_WCAP_LR_SWAP
) {
3055 err
= stac92xx_add_control(spec
,
3056 STAC_CTL_WIDGET_CLFE_SWITCH
,
3057 "Swap Center/LFE Playback Switch", nid
);
3067 case AUTO_PIN_HP_OUT
:
3071 case AUTO_PIN_SPEAKER_OUT
:
3080 err
= create_controls_idx(codec
, name
, idx
, nid
, 3);
3088 static int stac92xx_add_capvol_ctls(struct hda_codec
*codec
, unsigned long vol
,
3089 unsigned long sw
, int idx
)
3092 err
= stac92xx_add_control_idx(codec
->spec
, STAC_CTL_WIDGET_VOL
, idx
,
3093 "Capture Volume", vol
);
3096 err
= stac92xx_add_control_idx(codec
->spec
, STAC_CTL_WIDGET_MUTE
, idx
,
3097 "Capture Switch", sw
);
3103 /* add playback controls from the parsed DAC table */
3104 static int stac92xx_auto_create_multi_out_ctls(struct hda_codec
*codec
,
3105 const struct auto_pin_cfg
*cfg
)
3107 struct sigmatel_spec
*spec
= codec
->spec
;
3112 err
= create_multi_out_ctls(codec
, cfg
->line_outs
, cfg
->line_out_pins
,
3113 spec
->multiout
.dac_nids
,
3114 cfg
->line_out_type
);
3118 if (cfg
->hp_outs
> 1 && cfg
->line_out_type
== AUTO_PIN_LINE_OUT
) {
3119 err
= stac92xx_add_control(spec
,
3120 STAC_CTL_WIDGET_HP_SWITCH
,
3121 "Headphone as Line Out Switch",
3122 cfg
->hp_pins
[cfg
->hp_outs
- 1]);
3127 for (idx
= AUTO_PIN_MIC
; idx
<= AUTO_PIN_FRONT_LINE
; idx
++) {
3128 nid
= cfg
->input_pins
[idx
];
3130 err
= stac92xx_add_jack_mode_control(codec
, nid
, idx
);
3139 /* add playback controls for Speaker and HP outputs */
3140 static int stac92xx_auto_create_hp_ctls(struct hda_codec
*codec
,
3141 struct auto_pin_cfg
*cfg
)
3143 struct sigmatel_spec
*spec
= codec
->spec
;
3146 err
= create_multi_out_ctls(codec
, cfg
->hp_outs
, cfg
->hp_pins
,
3147 spec
->hp_dacs
, AUTO_PIN_HP_OUT
);
3151 err
= create_multi_out_ctls(codec
, cfg
->speaker_outs
, cfg
->speaker_pins
,
3152 spec
->speaker_dacs
, AUTO_PIN_SPEAKER_OUT
);
3159 /* labels for mono mux outputs */
3160 static const char *stac92xx_mono_labels
[4] = {
3161 "DAC0", "DAC1", "Mixer", "DAC2"
3164 /* create mono mux for mono out on capable codecs */
3165 static int stac92xx_auto_create_mono_output_ctls(struct hda_codec
*codec
)
3167 struct sigmatel_spec
*spec
= codec
->spec
;
3168 struct hda_input_mux
*mono_mux
= &spec
->private_mono_mux
;
3170 hda_nid_t con_lst
[ARRAY_SIZE(stac92xx_mono_labels
)];
3172 num_cons
= snd_hda_get_connections(codec
,
3175 HDA_MAX_NUM_INPUTS
);
3176 if (num_cons
<= 0 || num_cons
> ARRAY_SIZE(stac92xx_mono_labels
))
3179 for (i
= 0; i
< num_cons
; i
++) {
3180 mono_mux
->items
[mono_mux
->num_items
].label
=
3181 stac92xx_mono_labels
[i
];
3182 mono_mux
->items
[mono_mux
->num_items
].index
= i
;
3183 mono_mux
->num_items
++;
3186 return stac92xx_add_control(spec
, STAC_CTL_WIDGET_MONO_MUX
,
3187 "Mono Mux", spec
->mono_nid
);
3190 /* create PC beep volume controls */
3191 static int stac92xx_auto_create_beep_ctls(struct hda_codec
*codec
,
3194 struct sigmatel_spec
*spec
= codec
->spec
;
3195 u32 caps
= query_amp_caps(codec
, nid
, HDA_OUTPUT
);
3198 /* check for mute support for the the amp */
3199 if ((caps
& AC_AMPCAP_MUTE
) >> AC_AMPCAP_MUTE_SHIFT
) {
3200 err
= stac92xx_add_control(spec
, STAC_CTL_WIDGET_MUTE
,
3201 "PC Beep Playback Switch",
3202 HDA_COMPOSE_AMP_VAL(nid
, 1, 0, HDA_OUTPUT
));
3207 /* check to see if there is volume support for the amp */
3208 if ((caps
& AC_AMPCAP_NUM_STEPS
) >> AC_AMPCAP_NUM_STEPS_SHIFT
) {
3209 err
= stac92xx_add_control(spec
, STAC_CTL_WIDGET_VOL
,
3210 "PC Beep Playback Volume",
3211 HDA_COMPOSE_AMP_VAL(nid
, 1, 0, HDA_OUTPUT
));
3218 #ifdef CONFIG_SND_HDA_INPUT_BEEP
3219 #define stac92xx_dig_beep_switch_info snd_ctl_boolean_mono_info
3221 static int stac92xx_dig_beep_switch_get(struct snd_kcontrol
*kcontrol
,
3222 struct snd_ctl_elem_value
*ucontrol
)
3224 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
3225 ucontrol
->value
.integer
.value
[0] = codec
->beep
->enabled
;
3229 static int stac92xx_dig_beep_switch_put(struct snd_kcontrol
*kcontrol
,
3230 struct snd_ctl_elem_value
*ucontrol
)
3232 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
3233 int enabled
= !!ucontrol
->value
.integer
.value
[0];
3234 if (codec
->beep
->enabled
!= enabled
) {
3235 codec
->beep
->enabled
= enabled
;
3241 static struct snd_kcontrol_new stac92xx_dig_beep_ctrl
= {
3242 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
3243 .info
= stac92xx_dig_beep_switch_info
,
3244 .get
= stac92xx_dig_beep_switch_get
,
3245 .put
= stac92xx_dig_beep_switch_put
,
3248 static int stac92xx_beep_switch_ctl(struct hda_codec
*codec
)
3250 return stac92xx_add_control_temp(codec
->spec
, &stac92xx_dig_beep_ctrl
,
3251 0, "PC Beep Playback Switch", 0);
3255 static int stac92xx_auto_create_mux_input_ctls(struct hda_codec
*codec
)
3257 struct sigmatel_spec
*spec
= codec
->spec
;
3260 for (i
= 0; i
< spec
->num_muxes
; i
++) {
3265 nid
= spec
->mux_nids
[i
];
3266 wcaps
= get_wcaps(codec
, nid
);
3267 if (!(wcaps
& AC_WCAP_OUT_AMP
))
3270 /* check whether already the same control was created as
3271 * normal Capture Volume.
3273 val
= HDA_COMPOSE_AMP_VAL(nid
, 3, 0, HDA_OUTPUT
);
3274 for (j
= 0; j
< spec
->num_caps
; j
++) {
3275 if (spec
->capvols
[j
] == val
)
3278 if (j
< spec
->num_caps
)
3281 err
= stac92xx_add_control_idx(spec
, STAC_CTL_WIDGET_VOL
, i
,
3282 "Mux Capture Volume", val
);
3289 static const char *stac92xx_spdif_labels
[3] = {
3290 "Digital Playback", "Analog Mux 1", "Analog Mux 2",
3293 static int stac92xx_auto_create_spdif_mux_ctls(struct hda_codec
*codec
)
3295 struct sigmatel_spec
*spec
= codec
->spec
;
3296 struct hda_input_mux
*spdif_mux
= &spec
->private_smux
;
3297 const char **labels
= spec
->spdif_labels
;
3299 hda_nid_t con_lst
[HDA_MAX_NUM_INPUTS
];
3301 num_cons
= snd_hda_get_connections(codec
,
3304 HDA_MAX_NUM_INPUTS
);
3309 labels
= stac92xx_spdif_labels
;
3311 for (i
= 0; i
< num_cons
; i
++) {
3312 spdif_mux
->items
[spdif_mux
->num_items
].label
= labels
[i
];
3313 spdif_mux
->items
[spdif_mux
->num_items
].index
= i
;
3314 spdif_mux
->num_items
++;
3320 /* labels for dmic mux inputs */
3321 static const char *stac92xx_dmic_labels
[5] = {
3322 "Analog Inputs", "Digital Mic 1", "Digital Mic 2",
3323 "Digital Mic 3", "Digital Mic 4"
3326 static int get_connection_index(struct hda_codec
*codec
, hda_nid_t mux
,
3329 hda_nid_t conn
[HDA_MAX_NUM_INPUTS
];
3332 nums
= snd_hda_get_connections(codec
, mux
, conn
, ARRAY_SIZE(conn
));
3333 for (i
= 0; i
< nums
; i
++)
3339 /* create a volume assigned to the given pin (only if supported) */
3340 /* return 1 if the volume control is created */
3341 static int create_elem_capture_vol(struct hda_codec
*codec
, hda_nid_t nid
,
3342 const char *label
, int direction
)
3344 unsigned int caps
, nums
;
3348 if (direction
== HDA_OUTPUT
)
3349 caps
= AC_WCAP_OUT_AMP
;
3351 caps
= AC_WCAP_IN_AMP
;
3352 if (!(get_wcaps(codec
, nid
) & caps
))
3354 caps
= query_amp_caps(codec
, nid
, direction
);
3355 nums
= (caps
& AC_AMPCAP_NUM_STEPS
) >> AC_AMPCAP_NUM_STEPS_SHIFT
;
3358 snprintf(name
, sizeof(name
), "%s Capture Volume", label
);
3359 err
= stac92xx_add_control(codec
->spec
, STAC_CTL_WIDGET_VOL
, name
,
3360 HDA_COMPOSE_AMP_VAL(nid
, 3, 0, direction
));
3366 /* create playback/capture controls for input pins on dmic capable codecs */
3367 static int stac92xx_auto_create_dmic_input_ctls(struct hda_codec
*codec
,
3368 const struct auto_pin_cfg
*cfg
)
3370 struct sigmatel_spec
*spec
= codec
->spec
;
3371 struct hda_input_mux
*imux
= &spec
->private_imux
;
3372 struct hda_input_mux
*dimux
= &spec
->private_dimux
;
3373 int err
, i
, active_mics
;
3374 unsigned int def_conf
;
3376 dimux
->items
[dimux
->num_items
].label
= stac92xx_dmic_labels
[0];
3377 dimux
->items
[dimux
->num_items
].index
= 0;
3381 for (i
= 0; i
< spec
->num_dmics
; i
++) {
3382 /* check the validity: sometimes it's a dead vendor-spec node */
3383 if (get_wcaps_type(get_wcaps(codec
, spec
->dmic_nids
[i
]))
3386 def_conf
= snd_hda_codec_get_pincfg(codec
, spec
->dmic_nids
[i
]);
3387 if (get_defcfg_connect(def_conf
) != AC_JACK_PORT_NONE
)
3391 for (i
= 0; i
< spec
->num_dmics
; i
++) {
3396 nid
= spec
->dmic_nids
[i
];
3397 if (get_wcaps_type(get_wcaps(codec
, nid
)) != AC_WID_PIN
)
3399 def_conf
= snd_hda_codec_get_pincfg(codec
, nid
);
3400 if (get_defcfg_connect(def_conf
) == AC_JACK_PORT_NONE
)
3403 index
= get_connection_index(codec
, spec
->dmux_nids
[0], nid
);
3407 if (active_mics
== 1)
3408 label
= "Digital Mic";
3410 label
= stac92xx_dmic_labels
[dimux
->num_items
];
3412 err
= create_elem_capture_vol(codec
, nid
, label
, HDA_INPUT
);
3416 err
= create_elem_capture_vol(codec
, nid
, label
,
3422 dimux
->items
[dimux
->num_items
].label
= label
;
3423 dimux
->items
[dimux
->num_items
].index
= index
;
3425 if (snd_hda_get_bool_hint(codec
, "separate_dmux") != 1) {
3426 imux
->items
[imux
->num_items
].label
= label
;
3427 imux
->items
[imux
->num_items
].index
= index
;
3435 static int check_mic_pin(struct hda_codec
*codec
, hda_nid_t nid
,
3436 hda_nid_t
*fixed
, hda_nid_t
*ext
)
3442 cfg
= snd_hda_codec_get_pincfg(codec
, nid
);
3443 switch (get_defcfg_connect(cfg
)) {
3444 case AC_JACK_PORT_FIXED
:
3446 return 1; /* already occupied */
3449 case AC_JACK_PORT_COMPLEX
:
3451 return 1; /* already occupied */
3458 static int set_mic_route(struct hda_codec
*codec
,
3459 struct sigmatel_mic_route
*mic
,
3462 struct sigmatel_spec
*spec
= codec
->spec
;
3463 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
3467 for (i
= AUTO_PIN_MIC
; i
<= AUTO_PIN_FRONT_MIC
; i
++)
3468 if (pin
== cfg
->input_pins
[i
])
3470 if (i
<= AUTO_PIN_FRONT_MIC
) {
3472 i
= get_connection_index(codec
, spec
->mux_nids
[0], pin
);
3477 if (spec
->dmux_nids
)
3478 mic
->dmux_idx
= get_connection_index(codec
,
3481 } else if (spec
->dmux_nids
) {
3483 i
= get_connection_index(codec
, spec
->dmux_nids
[0], pin
);
3489 mic
->mux_idx
= get_connection_index(codec
,
3491 spec
->dmux_nids
[0]);
3496 /* return non-zero if the device is for automatic mic switch */
3497 static int stac_check_auto_mic(struct hda_codec
*codec
)
3499 struct sigmatel_spec
*spec
= codec
->spec
;
3500 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
3501 hda_nid_t fixed
, ext
;
3504 for (i
= AUTO_PIN_LINE
; i
< AUTO_PIN_LAST
; i
++) {
3505 if (cfg
->input_pins
[i
])
3506 return 0; /* must be exclusively mics */
3509 for (i
= AUTO_PIN_MIC
; i
<= AUTO_PIN_FRONT_MIC
; i
++)
3510 if (check_mic_pin(codec
, cfg
->input_pins
[i
], &fixed
, &ext
))
3512 for (i
= 0; i
< spec
->num_dmics
; i
++)
3513 if (check_mic_pin(codec
, spec
->dmic_nids
[i
], &fixed
, &ext
))
3517 if (!(get_wcaps(codec
, ext
) & AC_WCAP_UNSOL_CAP
))
3518 return 0; /* no unsol support */
3519 if (set_mic_route(codec
, &spec
->ext_mic
, ext
) ||
3520 set_mic_route(codec
, &spec
->int_mic
, fixed
))
3521 return 0; /* something is wrong */
3525 /* create playback/capture controls for input pins */
3526 static int stac92xx_auto_create_analog_input_ctls(struct hda_codec
*codec
, const struct auto_pin_cfg
*cfg
)
3528 struct sigmatel_spec
*spec
= codec
->spec
;
3529 struct hda_input_mux
*imux
= &spec
->private_imux
;
3532 for (i
= 0; i
< AUTO_PIN_LAST
; i
++) {
3533 hda_nid_t nid
= cfg
->input_pins
[i
];
3539 for (j
= 0; j
< spec
->num_muxes
; j
++) {
3540 index
= get_connection_index(codec
, spec
->mux_nids
[j
],
3548 err
= create_elem_capture_vol(codec
, nid
,
3549 auto_pin_cfg_labels
[i
],
3554 imux
->items
[imux
->num_items
].label
= auto_pin_cfg_labels
[i
];
3555 imux
->items
[imux
->num_items
].index
= index
;
3558 spec
->num_analog_muxes
= imux
->num_items
;
3560 if (imux
->num_items
) {
3562 * Set the current input for the muxes.
3563 * The STAC9221 has two input muxes with identical source
3564 * NID lists. Hopefully this won't get confused.
3566 for (i
= 0; i
< spec
->num_muxes
; i
++) {
3567 snd_hda_codec_write_cache(codec
, spec
->mux_nids
[i
], 0,
3568 AC_VERB_SET_CONNECT_SEL
,
3569 imux
->items
[0].index
);
3576 static void stac92xx_auto_init_multi_out(struct hda_codec
*codec
)
3578 struct sigmatel_spec
*spec
= codec
->spec
;
3581 for (i
= 0; i
< spec
->autocfg
.line_outs
; i
++) {
3582 hda_nid_t nid
= spec
->autocfg
.line_out_pins
[i
];
3583 stac92xx_auto_set_pinctl(codec
, nid
, AC_PINCTL_OUT_EN
);
3587 static void stac92xx_auto_init_hp_out(struct hda_codec
*codec
)
3589 struct sigmatel_spec
*spec
= codec
->spec
;
3592 for (i
= 0; i
< spec
->autocfg
.hp_outs
; i
++) {
3594 pin
= spec
->autocfg
.hp_pins
[i
];
3595 if (pin
) /* connect to front */
3596 stac92xx_auto_set_pinctl(codec
, pin
, AC_PINCTL_OUT_EN
| AC_PINCTL_HP_EN
);
3598 for (i
= 0; i
< spec
->autocfg
.speaker_outs
; i
++) {
3600 pin
= spec
->autocfg
.speaker_pins
[i
];
3601 if (pin
) /* connect to front */
3602 stac92xx_auto_set_pinctl(codec
, pin
, AC_PINCTL_OUT_EN
);
3606 static int stac92xx_parse_auto_config(struct hda_codec
*codec
, hda_nid_t dig_out
, hda_nid_t dig_in
)
3608 struct sigmatel_spec
*spec
= codec
->spec
;
3612 if ((err
= snd_hda_parse_pin_def_config(codec
,
3614 spec
->dmic_nids
)) < 0)
3616 if (! spec
->autocfg
.line_outs
)
3617 return 0; /* can't find valid pin config */
3619 /* If we have no real line-out pin and multiple hp-outs, HPs should
3620 * be set up as multi-channel outputs.
3622 if (spec
->autocfg
.line_out_type
== AUTO_PIN_SPEAKER_OUT
&&
3623 spec
->autocfg
.hp_outs
> 1) {
3624 /* Copy hp_outs to line_outs, backup line_outs in
3625 * speaker_outs so that the following routines can handle
3626 * HP pins as primary outputs.
3628 snd_printdd("stac92xx: Enabling multi-HPs workaround\n");
3629 memcpy(spec
->autocfg
.speaker_pins
, spec
->autocfg
.line_out_pins
,
3630 sizeof(spec
->autocfg
.line_out_pins
));
3631 spec
->autocfg
.speaker_outs
= spec
->autocfg
.line_outs
;
3632 memcpy(spec
->autocfg
.line_out_pins
, spec
->autocfg
.hp_pins
,
3633 sizeof(spec
->autocfg
.hp_pins
));
3634 spec
->autocfg
.line_outs
= spec
->autocfg
.hp_outs
;
3635 spec
->autocfg
.line_out_type
= AUTO_PIN_HP_OUT
;
3636 spec
->autocfg
.hp_outs
= 0;
3639 if (spec
->autocfg
.mono_out_pin
) {
3640 int dir
= get_wcaps(codec
, spec
->autocfg
.mono_out_pin
) &
3641 (AC_WCAP_OUT_AMP
| AC_WCAP_IN_AMP
);
3642 u32 caps
= query_amp_caps(codec
,
3643 spec
->autocfg
.mono_out_pin
, dir
);
3644 hda_nid_t conn_list
[1];
3646 /* get the mixer node and then the mono mux if it exists */
3647 if (snd_hda_get_connections(codec
,
3648 spec
->autocfg
.mono_out_pin
, conn_list
, 1) &&
3649 snd_hda_get_connections(codec
, conn_list
[0],
3650 conn_list
, 1) > 0) {
3652 int wcaps
= get_wcaps(codec
, conn_list
[0]);
3653 int wid_type
= get_wcaps_type(wcaps
);
3654 /* LR swap check, some stac925x have a mux that
3655 * changes the DACs output path instead of the
3658 if (wid_type
== AC_WID_AUD_SEL
&&
3659 !(wcaps
& AC_WCAP_LR_SWAP
))
3660 spec
->mono_nid
= conn_list
[0];
3663 hda_nid_t nid
= spec
->autocfg
.mono_out_pin
;
3665 /* most mono outs have a least a mute/unmute switch */
3666 dir
= (dir
& AC_WCAP_OUT_AMP
) ? HDA_OUTPUT
: HDA_INPUT
;
3667 err
= stac92xx_add_control(spec
, STAC_CTL_WIDGET_MUTE
,
3668 "Mono Playback Switch",
3669 HDA_COMPOSE_AMP_VAL(nid
, 1, 0, dir
));
3672 /* check for volume support for the amp */
3673 if ((caps
& AC_AMPCAP_NUM_STEPS
)
3674 >> AC_AMPCAP_NUM_STEPS_SHIFT
) {
3675 err
= stac92xx_add_control(spec
,
3676 STAC_CTL_WIDGET_VOL
,
3677 "Mono Playback Volume",
3678 HDA_COMPOSE_AMP_VAL(nid
, 1, 0, dir
));
3684 stac92xx_auto_set_pinctl(codec
, spec
->autocfg
.mono_out_pin
,
3688 if (!spec
->multiout
.num_dacs
) {
3689 err
= stac92xx_auto_fill_dac_nids(codec
);
3692 err
= stac92xx_auto_create_multi_out_ctls(codec
,
3698 /* setup analog beep controls */
3699 if (spec
->anabeep_nid
> 0) {
3700 err
= stac92xx_auto_create_beep_ctls(codec
,
3706 /* setup digital beep controls and input device */
3707 #ifdef CONFIG_SND_HDA_INPUT_BEEP
3708 if (spec
->digbeep_nid
> 0) {
3709 hda_nid_t nid
= spec
->digbeep_nid
;
3712 err
= stac92xx_auto_create_beep_ctls(codec
, nid
);
3715 err
= snd_hda_attach_beep_device(codec
, nid
);
3718 /* IDT/STAC codecs have linear beep tone parameter */
3719 codec
->beep
->linear_tone
= 1;
3720 /* if no beep switch is available, make its own one */
3721 caps
= query_amp_caps(codec
, nid
, HDA_OUTPUT
);
3723 !((caps
& AC_AMPCAP_MUTE
) >> AC_AMPCAP_MUTE_SHIFT
)) {
3724 err
= stac92xx_beep_switch_ctl(codec
);
3731 err
= stac92xx_auto_create_hp_ctls(codec
, &spec
->autocfg
);
3735 /* All output parsing done, now restore the swapped hp pins */
3737 memcpy(spec
->autocfg
.hp_pins
, spec
->autocfg
.line_out_pins
,
3738 sizeof(spec
->autocfg
.hp_pins
));
3739 spec
->autocfg
.hp_outs
= spec
->autocfg
.line_outs
;
3740 spec
->autocfg
.line_out_type
= AUTO_PIN_HP_OUT
;
3741 spec
->autocfg
.line_outs
= 0;
3744 if (stac_check_auto_mic(codec
)) {
3746 /* only one capture for auto-mic */
3749 spec
->num_muxes
= 1;
3752 for (i
= 0; i
< spec
->num_caps
; i
++) {
3753 err
= stac92xx_add_capvol_ctls(codec
, spec
->capvols
[i
],
3754 spec
->capsws
[i
], i
);
3759 err
= stac92xx_auto_create_analog_input_ctls(codec
, &spec
->autocfg
);
3763 if (spec
->mono_nid
> 0) {
3764 err
= stac92xx_auto_create_mono_output_ctls(codec
);
3768 if (spec
->num_dmics
> 0 && !spec
->dinput_mux
)
3769 if ((err
= stac92xx_auto_create_dmic_input_ctls(codec
,
3770 &spec
->autocfg
)) < 0)
3772 if (spec
->num_muxes
> 0) {
3773 err
= stac92xx_auto_create_mux_input_ctls(codec
);
3777 if (spec
->num_smuxes
> 0) {
3778 err
= stac92xx_auto_create_spdif_mux_ctls(codec
);
3783 err
= stac92xx_add_input_source(spec
);
3787 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
3788 if (spec
->multiout
.max_channels
> 2)
3789 spec
->surr_switch
= 1;
3791 if (spec
->autocfg
.dig_outs
)
3792 spec
->multiout
.dig_out_nid
= dig_out
;
3793 if (dig_in
&& spec
->autocfg
.dig_in_pin
)
3794 spec
->dig_in_nid
= dig_in
;
3796 if (spec
->kctls
.list
)
3797 spec
->mixers
[spec
->num_mixers
++] = spec
->kctls
.list
;
3799 spec
->input_mux
= &spec
->private_imux
;
3800 if (!spec
->dinput_mux
)
3801 spec
->dinput_mux
= &spec
->private_dimux
;
3802 spec
->sinput_mux
= &spec
->private_smux
;
3803 spec
->mono_mux
= &spec
->private_mono_mux
;
3807 /* add playback controls for HP output */
3808 static int stac9200_auto_create_hp_ctls(struct hda_codec
*codec
,
3809 struct auto_pin_cfg
*cfg
)
3811 struct sigmatel_spec
*spec
= codec
->spec
;
3812 hda_nid_t pin
= cfg
->hp_pins
[0];
3813 unsigned int wid_caps
;
3818 wid_caps
= get_wcaps(codec
, pin
);
3819 if (wid_caps
& AC_WCAP_UNSOL_CAP
)
3820 spec
->hp_detect
= 1;
3825 /* add playback controls for LFE output */
3826 static int stac9200_auto_create_lfe_ctls(struct hda_codec
*codec
,
3827 struct auto_pin_cfg
*cfg
)
3829 struct sigmatel_spec
*spec
= codec
->spec
;
3831 hda_nid_t lfe_pin
= 0x0;
3835 * search speaker outs and line outs for a mono speaker pin
3836 * with an amp. If one is found, add LFE controls
3839 for (i
= 0; i
< spec
->autocfg
.speaker_outs
&& lfe_pin
== 0x0; i
++) {
3840 hda_nid_t pin
= spec
->autocfg
.speaker_pins
[i
];
3841 unsigned int wcaps
= get_wcaps(codec
, pin
);
3842 wcaps
&= (AC_WCAP_STEREO
| AC_WCAP_OUT_AMP
);
3843 if (wcaps
== AC_WCAP_OUT_AMP
)
3844 /* found a mono speaker with an amp, must be lfe */
3848 /* if speaker_outs is 0, then speakers may be in line_outs */
3849 if (lfe_pin
== 0 && spec
->autocfg
.speaker_outs
== 0) {
3850 for (i
= 0; i
< spec
->autocfg
.line_outs
&& lfe_pin
== 0x0; i
++) {
3851 hda_nid_t pin
= spec
->autocfg
.line_out_pins
[i
];
3852 unsigned int defcfg
;
3853 defcfg
= snd_hda_codec_get_pincfg(codec
, pin
);
3854 if (get_defcfg_device(defcfg
) == AC_JACK_SPEAKER
) {
3855 unsigned int wcaps
= get_wcaps(codec
, pin
);
3856 wcaps
&= (AC_WCAP_STEREO
| AC_WCAP_OUT_AMP
);
3857 if (wcaps
== AC_WCAP_OUT_AMP
)
3858 /* found a mono speaker with an amp,
3866 err
= create_controls(codec
, "LFE", lfe_pin
, 1);
3874 static int stac9200_parse_auto_config(struct hda_codec
*codec
)
3876 struct sigmatel_spec
*spec
= codec
->spec
;
3879 if ((err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
, NULL
)) < 0)
3882 if ((err
= stac92xx_auto_create_analog_input_ctls(codec
, &spec
->autocfg
)) < 0)
3885 if ((err
= stac9200_auto_create_hp_ctls(codec
, &spec
->autocfg
)) < 0)
3888 if ((err
= stac9200_auto_create_lfe_ctls(codec
, &spec
->autocfg
)) < 0)
3891 if (spec
->num_muxes
> 0) {
3892 err
= stac92xx_auto_create_mux_input_ctls(codec
);
3897 err
= stac92xx_add_input_source(spec
);
3901 if (spec
->autocfg
.dig_outs
)
3902 spec
->multiout
.dig_out_nid
= 0x05;
3903 if (spec
->autocfg
.dig_in_pin
)
3904 spec
->dig_in_nid
= 0x04;
3906 if (spec
->kctls
.list
)
3907 spec
->mixers
[spec
->num_mixers
++] = spec
->kctls
.list
;
3909 spec
->input_mux
= &spec
->private_imux
;
3910 spec
->dinput_mux
= &spec
->private_dimux
;
3916 * Early 2006 Intel Macintoshes with STAC9220X5 codecs seem to have a
3917 * funky external mute control using GPIO pins.
3920 static void stac_gpio_set(struct hda_codec
*codec
, unsigned int mask
,
3921 unsigned int dir_mask
, unsigned int data
)
3923 unsigned int gpiostate
, gpiomask
, gpiodir
;
3925 gpiostate
= snd_hda_codec_read(codec
, codec
->afg
, 0,
3926 AC_VERB_GET_GPIO_DATA
, 0);
3927 gpiostate
= (gpiostate
& ~dir_mask
) | (data
& dir_mask
);
3929 gpiomask
= snd_hda_codec_read(codec
, codec
->afg
, 0,
3930 AC_VERB_GET_GPIO_MASK
, 0);
3933 gpiodir
= snd_hda_codec_read(codec
, codec
->afg
, 0,
3934 AC_VERB_GET_GPIO_DIRECTION
, 0);
3935 gpiodir
|= dir_mask
;
3937 /* Configure GPIOx as CMOS */
3938 snd_hda_codec_write(codec
, codec
->afg
, 0, 0x7e7, 0);
3940 snd_hda_codec_write(codec
, codec
->afg
, 0,
3941 AC_VERB_SET_GPIO_MASK
, gpiomask
);
3942 snd_hda_codec_read(codec
, codec
->afg
, 0,
3943 AC_VERB_SET_GPIO_DIRECTION
, gpiodir
); /* sync */
3947 snd_hda_codec_read(codec
, codec
->afg
, 0,
3948 AC_VERB_SET_GPIO_DATA
, gpiostate
); /* sync */
3951 #ifdef CONFIG_SND_HDA_INPUT_JACK
3952 static void stac92xx_free_jack_priv(struct snd_jack
*jack
)
3954 struct sigmatel_jack
*jacks
= jack
->private_data
;
3960 static int stac92xx_add_jack(struct hda_codec
*codec
,
3961 hda_nid_t nid
, int type
)
3963 #ifdef CONFIG_SND_HDA_INPUT_JACK
3964 struct sigmatel_spec
*spec
= codec
->spec
;
3965 struct sigmatel_jack
*jack
;
3966 int def_conf
= snd_hda_codec_get_pincfg(codec
, nid
);
3967 int connectivity
= get_defcfg_connect(def_conf
);
3971 if (connectivity
&& connectivity
!= AC_JACK_PORT_FIXED
)
3974 snd_array_init(&spec
->jacks
, sizeof(*jack
), 32);
3975 jack
= snd_array_new(&spec
->jacks
);
3981 snprintf(name
, sizeof(name
), "%s at %s %s Jack",
3982 snd_hda_get_jack_type(def_conf
),
3983 snd_hda_get_jack_connectivity(def_conf
),
3984 snd_hda_get_jack_location(def_conf
));
3986 err
= snd_jack_new(codec
->bus
->card
, name
, type
, &jack
->jack
);
3991 jack
->jack
->private_data
= jack
;
3992 jack
->jack
->private_free
= stac92xx_free_jack_priv
;
3997 static int stac_add_event(struct sigmatel_spec
*spec
, hda_nid_t nid
,
3998 unsigned char type
, int data
)
4000 struct sigmatel_event
*event
;
4002 snd_array_init(&spec
->events
, sizeof(*event
), 32);
4003 event
= snd_array_new(&spec
->events
);
4008 event
->tag
= spec
->events
.used
;
4014 static struct sigmatel_event
*stac_get_event(struct hda_codec
*codec
,
4017 struct sigmatel_spec
*spec
= codec
->spec
;
4018 struct sigmatel_event
*event
= spec
->events
.list
;
4021 for (i
= 0; i
< spec
->events
.used
; i
++, event
++) {
4022 if (event
->nid
== nid
)
4028 static struct sigmatel_event
*stac_get_event_from_tag(struct hda_codec
*codec
,
4031 struct sigmatel_spec
*spec
= codec
->spec
;
4032 struct sigmatel_event
*event
= spec
->events
.list
;
4035 for (i
= 0; i
< spec
->events
.used
; i
++, event
++) {
4036 if (event
->tag
== tag
)
4042 /* check if given nid is a valid pin and no other events are assigned
4043 * to it. If OK, assign the event, set the unsol flag, and returns 1.
4044 * Otherwise, returns zero.
4046 static int enable_pin_detect(struct hda_codec
*codec
, hda_nid_t nid
,
4049 struct sigmatel_event
*event
;
4052 if (!(get_wcaps(codec
, nid
) & AC_WCAP_UNSOL_CAP
))
4054 event
= stac_get_event(codec
, nid
);
4056 if (event
->type
!= type
)
4060 tag
= stac_add_event(codec
->spec
, nid
, type
, 0);
4064 snd_hda_codec_write_cache(codec
, nid
, 0,
4065 AC_VERB_SET_UNSOLICITED_ENABLE
,
4070 static int is_nid_hp_pin(struct auto_pin_cfg
*cfg
, hda_nid_t nid
)
4073 for (i
= 0; i
< cfg
->hp_outs
; i
++)
4074 if (cfg
->hp_pins
[i
] == nid
)
4075 return 1; /* nid is a HP-Out */
4077 return 0; /* nid is not a HP-Out */
4080 static void stac92xx_power_down(struct hda_codec
*codec
)
4082 struct sigmatel_spec
*spec
= codec
->spec
;
4084 /* power down inactive DACs */
4086 for (dac
= spec
->dac_list
; *dac
; dac
++)
4087 if (!check_all_dac_nids(spec
, *dac
))
4088 snd_hda_codec_write(codec
, *dac
, 0,
4089 AC_VERB_SET_POWER_STATE
, AC_PWRST_D3
);
4092 static void stac_toggle_power_map(struct hda_codec
*codec
, hda_nid_t nid
,
4095 /* override some hints from the hwdep entry */
4096 static void stac_store_hints(struct hda_codec
*codec
)
4098 struct sigmatel_spec
*spec
= codec
->spec
;
4102 val
= snd_hda_get_bool_hint(codec
, "hp_detect");
4104 spec
->hp_detect
= val
;
4105 p
= snd_hda_get_hint(codec
, "gpio_mask");
4107 spec
->gpio_mask
= simple_strtoul(p
, NULL
, 0);
4108 spec
->eapd_mask
= spec
->gpio_dir
= spec
->gpio_data
=
4111 p
= snd_hda_get_hint(codec
, "gpio_dir");
4113 spec
->gpio_dir
= simple_strtoul(p
, NULL
, 0) & spec
->gpio_mask
;
4114 p
= snd_hda_get_hint(codec
, "gpio_data");
4116 spec
->gpio_data
= simple_strtoul(p
, NULL
, 0) & spec
->gpio_mask
;
4117 p
= snd_hda_get_hint(codec
, "eapd_mask");
4119 spec
->eapd_mask
= simple_strtoul(p
, NULL
, 0) & spec
->gpio_mask
;
4120 val
= snd_hda_get_bool_hint(codec
, "eapd_switch");
4122 spec
->eapd_switch
= val
;
4125 static int stac92xx_init(struct hda_codec
*codec
)
4127 struct sigmatel_spec
*spec
= codec
->spec
;
4128 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
4132 snd_hda_sequence_write(codec
, spec
->init
);
4134 /* power down adcs initially */
4135 if (spec
->powerdown_adcs
)
4136 for (i
= 0; i
< spec
->num_adcs
; i
++)
4137 snd_hda_codec_write(codec
,
4138 spec
->adc_nids
[i
], 0,
4139 AC_VERB_SET_POWER_STATE
, AC_PWRST_D3
);
4141 /* override some hints */
4142 stac_store_hints(codec
);
4145 gpio
= spec
->gpio_data
;
4146 /* turn on EAPD statically when spec->eapd_switch isn't set.
4147 * otherwise, unsol event will turn it on/off dynamically
4149 if (!spec
->eapd_switch
)
4150 gpio
|= spec
->eapd_mask
;
4151 stac_gpio_set(codec
, spec
->gpio_mask
, spec
->gpio_dir
, gpio
);
4154 if (spec
->hp_detect
) {
4155 /* Enable unsolicited responses on the HP widget */
4156 for (i
= 0; i
< cfg
->hp_outs
; i
++) {
4157 hda_nid_t nid
= cfg
->hp_pins
[i
];
4158 enable_pin_detect(codec
, nid
, STAC_HP_EVENT
);
4160 if (cfg
->line_out_type
== AUTO_PIN_LINE_OUT
&&
4161 cfg
->speaker_outs
> 0) {
4162 /* enable pin-detect for line-outs as well */
4163 for (i
= 0; i
< cfg
->line_outs
; i
++) {
4164 hda_nid_t nid
= cfg
->line_out_pins
[i
];
4165 enable_pin_detect(codec
, nid
, STAC_LO_EVENT
);
4169 /* force to enable the first line-out; the others are set up
4172 stac92xx_auto_set_pinctl(codec
, spec
->autocfg
.line_out_pins
[0],
4174 /* fake event to set up pins */
4175 if (cfg
->hp_pins
[0])
4176 stac_issue_unsol_event(codec
, cfg
->hp_pins
[0]);
4177 else if (cfg
->line_out_pins
[0])
4178 stac_issue_unsol_event(codec
, cfg
->line_out_pins
[0]);
4180 stac92xx_auto_init_multi_out(codec
);
4181 stac92xx_auto_init_hp_out(codec
);
4182 for (i
= 0; i
< cfg
->hp_outs
; i
++)
4183 stac_toggle_power_map(codec
, cfg
->hp_pins
[i
], 1);
4185 if (spec
->auto_mic
) {
4186 /* initialize connection to analog input */
4187 if (spec
->dmux_nids
)
4188 snd_hda_codec_write_cache(codec
, spec
->dmux_nids
[0], 0,
4189 AC_VERB_SET_CONNECT_SEL
, 0);
4190 if (enable_pin_detect(codec
, spec
->ext_mic
.pin
, STAC_MIC_EVENT
))
4191 stac_issue_unsol_event(codec
, spec
->ext_mic
.pin
);
4193 for (i
= 0; i
< AUTO_PIN_LAST
; i
++) {
4194 hda_nid_t nid
= cfg
->input_pins
[i
];
4196 unsigned int pinctl
, conf
;
4197 if (i
== AUTO_PIN_MIC
|| i
== AUTO_PIN_FRONT_MIC
) {
4198 /* for mic pins, force to initialize */
4199 pinctl
= stac92xx_get_default_vref(codec
, nid
);
4200 pinctl
|= AC_PINCTL_IN_EN
;
4201 stac92xx_auto_set_pinctl(codec
, nid
, pinctl
);
4203 pinctl
= snd_hda_codec_read(codec
, nid
, 0,
4204 AC_VERB_GET_PIN_WIDGET_CONTROL
, 0);
4205 /* if PINCTL already set then skip */
4206 /* Also, if both INPUT and OUTPUT are set,
4207 * it must be a BIOS bug; need to override, too
4209 if (!(pinctl
& AC_PINCTL_IN_EN
) ||
4210 (pinctl
& AC_PINCTL_OUT_EN
)) {
4211 pinctl
&= ~AC_PINCTL_OUT_EN
;
4212 pinctl
|= AC_PINCTL_IN_EN
;
4213 stac92xx_auto_set_pinctl(codec
, nid
,
4217 conf
= snd_hda_codec_get_pincfg(codec
, nid
);
4218 if (get_defcfg_connect(conf
) != AC_JACK_PORT_FIXED
) {
4219 if (enable_pin_detect(codec
, nid
,
4221 stac_issue_unsol_event(codec
, nid
);
4225 for (i
= 0; i
< spec
->num_dmics
; i
++)
4226 stac92xx_auto_set_pinctl(codec
, spec
->dmic_nids
[i
],
4228 if (cfg
->dig_out_pins
[0])
4229 stac92xx_auto_set_pinctl(codec
, cfg
->dig_out_pins
[0],
4231 if (cfg
->dig_in_pin
)
4232 stac92xx_auto_set_pinctl(codec
, cfg
->dig_in_pin
,
4234 for (i
= 0; i
< spec
->num_pwrs
; i
++) {
4235 hda_nid_t nid
= spec
->pwr_nids
[i
];
4236 int pinctl
, def_conf
;
4238 /* power on when no jack detection is available */
4239 if (!spec
->hp_detect
) {
4240 stac_toggle_power_map(codec
, nid
, 1);
4244 if (is_nid_hp_pin(cfg
, nid
))
4245 continue; /* already has an unsol event */
4247 pinctl
= snd_hda_codec_read(codec
, nid
, 0,
4248 AC_VERB_GET_PIN_WIDGET_CONTROL
, 0);
4249 /* outputs are only ports capable of power management
4250 * any attempts on powering down a input port cause the
4251 * referenced VREF to act quirky.
4253 if (pinctl
& AC_PINCTL_IN_EN
) {
4254 stac_toggle_power_map(codec
, nid
, 1);
4257 def_conf
= snd_hda_codec_get_pincfg(codec
, nid
);
4258 def_conf
= get_defcfg_connect(def_conf
);
4259 /* skip any ports that don't have jacks since presence
4260 * detection is useless */
4261 if (def_conf
!= AC_JACK_PORT_COMPLEX
) {
4262 if (def_conf
!= AC_JACK_PORT_NONE
)
4263 stac_toggle_power_map(codec
, nid
, 1);
4266 if (enable_pin_detect(codec
, nid
, STAC_PWR_EVENT
))
4267 stac_issue_unsol_event(codec
, nid
);
4270 stac92xx_power_down(codec
);
4274 static void stac92xx_free_jacks(struct hda_codec
*codec
)
4276 #ifdef CONFIG_SND_HDA_INPUT_JACK
4277 /* free jack instances manually when clearing/reconfiguring */
4278 struct sigmatel_spec
*spec
= codec
->spec
;
4279 if (!codec
->bus
->shutdown
&& spec
->jacks
.list
) {
4280 struct sigmatel_jack
*jacks
= spec
->jacks
.list
;
4282 for (i
= 0; i
< spec
->jacks
.used
; i
++, jacks
++) {
4284 snd_device_free(codec
->bus
->card
, jacks
->jack
);
4287 snd_array_free(&spec
->jacks
);
4291 static void stac92xx_free_kctls(struct hda_codec
*codec
)
4293 struct sigmatel_spec
*spec
= codec
->spec
;
4295 if (spec
->kctls
.list
) {
4296 struct snd_kcontrol_new
*kctl
= spec
->kctls
.list
;
4298 for (i
= 0; i
< spec
->kctls
.used
; i
++)
4299 kfree(kctl
[i
].name
);
4301 snd_array_free(&spec
->kctls
);
4304 static void stac92xx_free(struct hda_codec
*codec
)
4306 struct sigmatel_spec
*spec
= codec
->spec
;
4311 stac92xx_free_jacks(codec
);
4312 snd_array_free(&spec
->events
);
4315 snd_hda_detach_beep_device(codec
);
4318 static void stac92xx_set_pinctl(struct hda_codec
*codec
, hda_nid_t nid
,
4321 unsigned int old_ctl
, pin_ctl
;
4323 pin_ctl
= snd_hda_codec_read(codec
, nid
,
4324 0, AC_VERB_GET_PIN_WIDGET_CONTROL
, 0x00);
4326 if (pin_ctl
& AC_PINCTL_IN_EN
) {
4328 * we need to check the current set-up direction of
4329 * shared input pins since they can be switched via
4330 * "xxx as Output" mixer switch
4332 struct sigmatel_spec
*spec
= codec
->spec
;
4333 if (nid
== spec
->line_switch
|| nid
== spec
->mic_switch
)
4338 /* if setting pin direction bits, clear the current
4339 direction bits first */
4340 if (flag
& (AC_PINCTL_IN_EN
| AC_PINCTL_OUT_EN
))
4341 pin_ctl
&= ~(AC_PINCTL_IN_EN
| AC_PINCTL_OUT_EN
);
4344 if (old_ctl
!= pin_ctl
)
4345 snd_hda_codec_write_cache(codec
, nid
, 0,
4346 AC_VERB_SET_PIN_WIDGET_CONTROL
,
4350 static void stac92xx_reset_pinctl(struct hda_codec
*codec
, hda_nid_t nid
,
4353 unsigned int pin_ctl
= snd_hda_codec_read(codec
, nid
,
4354 0, AC_VERB_GET_PIN_WIDGET_CONTROL
, 0x00);
4356 snd_hda_codec_write_cache(codec
, nid
, 0,
4357 AC_VERB_SET_PIN_WIDGET_CONTROL
,
4361 static int get_pin_presence(struct hda_codec
*codec
, hda_nid_t nid
)
4365 if (snd_hda_codec_read(codec
, nid
, 0, AC_VERB_GET_PIN_SENSE
, 0x00)
4371 static void stac92xx_line_out_detect(struct hda_codec
*codec
,
4374 struct sigmatel_spec
*spec
= codec
->spec
;
4375 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
4378 for (i
= 0; i
< cfg
->line_outs
; i
++) {
4381 presence
= get_pin_presence(codec
, cfg
->line_out_pins
[i
]);
4383 unsigned int pinctl
;
4384 pinctl
= snd_hda_codec_read(codec
,
4385 cfg
->line_out_pins
[i
], 0,
4386 AC_VERB_GET_PIN_WIDGET_CONTROL
, 0);
4387 if (pinctl
& AC_PINCTL_IN_EN
)
4388 presence
= 0; /* mic- or line-input */
4393 /* disable speakers */
4394 for (i
= 0; i
< cfg
->speaker_outs
; i
++)
4395 stac92xx_reset_pinctl(codec
, cfg
->speaker_pins
[i
],
4397 if (spec
->eapd_mask
&& spec
->eapd_switch
)
4398 stac_gpio_set(codec
, spec
->gpio_mask
,
4399 spec
->gpio_dir
, spec
->gpio_data
&
4402 /* enable speakers */
4403 for (i
= 0; i
< cfg
->speaker_outs
; i
++)
4404 stac92xx_set_pinctl(codec
, cfg
->speaker_pins
[i
],
4406 if (spec
->eapd_mask
&& spec
->eapd_switch
)
4407 stac_gpio_set(codec
, spec
->gpio_mask
,
4408 spec
->gpio_dir
, spec
->gpio_data
|
4413 /* return non-zero if the hp-pin of the given array index isn't
4414 * a jack-detection target
4416 static int no_hp_sensing(struct sigmatel_spec
*spec
, int i
)
4418 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
4420 /* ignore sensing of shared line and mic jacks */
4421 if (cfg
->hp_pins
[i
] == spec
->line_switch
)
4423 if (cfg
->hp_pins
[i
] == spec
->mic_switch
)
4425 /* ignore if the pin is set as line-out */
4426 if (cfg
->hp_pins
[i
] == spec
->hp_switch
)
4431 static void stac92xx_hp_detect(struct hda_codec
*codec
)
4433 struct sigmatel_spec
*spec
= codec
->spec
;
4434 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
4438 if (spec
->gpio_mute
)
4439 presence
= !(snd_hda_codec_read(codec
, codec
->afg
, 0,
4440 AC_VERB_GET_GPIO_DATA
, 0) & spec
->gpio_mute
);
4442 for (i
= 0; i
< cfg
->hp_outs
; i
++) {
4445 if (no_hp_sensing(spec
, i
))
4447 presence
= get_pin_presence(codec
, cfg
->hp_pins
[i
]);
4449 unsigned int pinctl
;
4450 pinctl
= snd_hda_codec_read(codec
, cfg
->hp_pins
[i
], 0,
4451 AC_VERB_GET_PIN_WIDGET_CONTROL
, 0);
4452 if (pinctl
& AC_PINCTL_IN_EN
)
4453 presence
= 0; /* mic- or line-input */
4458 /* disable lineouts */
4459 if (spec
->hp_switch
)
4460 stac92xx_reset_pinctl(codec
, spec
->hp_switch
,
4462 for (i
= 0; i
< cfg
->line_outs
; i
++)
4463 stac92xx_reset_pinctl(codec
, cfg
->line_out_pins
[i
],
4466 /* enable lineouts */
4467 if (spec
->hp_switch
)
4468 stac92xx_set_pinctl(codec
, spec
->hp_switch
,
4470 for (i
= 0; i
< cfg
->line_outs
; i
++)
4471 stac92xx_set_pinctl(codec
, cfg
->line_out_pins
[i
],
4474 stac92xx_line_out_detect(codec
, presence
);
4475 /* toggle hp outs */
4476 for (i
= 0; i
< cfg
->hp_outs
; i
++) {
4477 unsigned int val
= AC_PINCTL_OUT_EN
| AC_PINCTL_HP_EN
;
4478 if (no_hp_sensing(spec
, i
))
4481 stac92xx_set_pinctl(codec
, cfg
->hp_pins
[i
], val
);
4483 /* Resetting the pinctl like below may lead to (a sort of) regressions
4484 * on some devices since they use the HP pin actually for line/speaker
4485 * outs although the default pin config shows a different pin (that is
4486 * wrong and useless).
4488 * So, it's basically a problem of default pin configs, likely a BIOS issue.
4489 * But, disabling the code below just works around it, and I'm too tired of
4490 * bug reports with such devices...
4493 stac92xx_reset_pinctl(codec
, cfg
->hp_pins
[i
], val
);
4498 static void stac_toggle_power_map(struct hda_codec
*codec
, hda_nid_t nid
,
4501 struct sigmatel_spec
*spec
= codec
->spec
;
4502 unsigned int idx
, val
;
4504 for (idx
= 0; idx
< spec
->num_pwrs
; idx
++) {
4505 if (spec
->pwr_nids
[idx
] == nid
)
4508 if (idx
>= spec
->num_pwrs
)
4511 /* several codecs have two power down bits */
4512 if (spec
->pwr_mapping
)
4513 idx
= spec
->pwr_mapping
[idx
];
4517 val
= snd_hda_codec_read(codec
, codec
->afg
, 0, 0x0fec, 0x0) & 0xff;
4523 /* power down unused output ports */
4524 snd_hda_codec_write(codec
, codec
->afg
, 0, 0x7ec, val
);
4527 static void stac92xx_pin_sense(struct hda_codec
*codec
, hda_nid_t nid
)
4529 stac_toggle_power_map(codec
, nid
, get_pin_presence(codec
, nid
));
4532 static void stac92xx_report_jack(struct hda_codec
*codec
, hda_nid_t nid
)
4534 struct sigmatel_spec
*spec
= codec
->spec
;
4535 struct sigmatel_jack
*jacks
= spec
->jacks
.list
;
4539 for (i
= 0; i
< spec
->jacks
.used
; i
++) {
4540 if (jacks
->nid
== nid
) {
4541 unsigned int pin_ctl
=
4542 snd_hda_codec_read(codec
, nid
,
4543 0, AC_VERB_GET_PIN_WIDGET_CONTROL
,
4545 int type
= jacks
->type
;
4546 if (type
== (SND_JACK_LINEOUT
4547 | SND_JACK_HEADPHONE
))
4548 type
= (pin_ctl
& AC_PINCTL_HP_EN
)
4549 ? SND_JACK_HEADPHONE
: SND_JACK_LINEOUT
;
4550 snd_jack_report(jacks
->jack
,
4551 get_pin_presence(codec
, nid
)
4559 static void stac92xx_mic_detect(struct hda_codec
*codec
)
4561 struct sigmatel_spec
*spec
= codec
->spec
;
4562 struct sigmatel_mic_route
*mic
;
4564 if (get_pin_presence(codec
, spec
->ext_mic
.pin
))
4565 mic
= &spec
->ext_mic
;
4567 mic
= &spec
->int_mic
;
4568 if (mic
->dmux_idx
>= 0)
4569 snd_hda_codec_write_cache(codec
, spec
->dmux_nids
[0], 0,
4570 AC_VERB_SET_CONNECT_SEL
,
4572 if (mic
->mux_idx
>= 0)
4573 snd_hda_codec_write_cache(codec
, spec
->mux_nids
[0], 0,
4574 AC_VERB_SET_CONNECT_SEL
,
4578 static void stac_issue_unsol_event(struct hda_codec
*codec
, hda_nid_t nid
)
4580 struct sigmatel_event
*event
= stac_get_event(codec
, nid
);
4583 codec
->patch_ops
.unsol_event(codec
, (unsigned)event
->tag
<< 26);
4586 static void stac92xx_unsol_event(struct hda_codec
*codec
, unsigned int res
)
4588 struct sigmatel_spec
*spec
= codec
->spec
;
4589 struct sigmatel_event
*event
;
4592 tag
= (res
>> 26) & 0x7f;
4593 event
= stac_get_event_from_tag(codec
, tag
);
4597 switch (event
->type
) {
4600 stac92xx_hp_detect(codec
);
4602 case STAC_MIC_EVENT
:
4603 stac92xx_mic_detect(codec
);
4607 switch (event
->type
) {
4610 case STAC_MIC_EVENT
:
4611 case STAC_INSERT_EVENT
:
4612 case STAC_PWR_EVENT
:
4613 if (spec
->num_pwrs
> 0)
4614 stac92xx_pin_sense(codec
, event
->nid
);
4615 stac92xx_report_jack(codec
, event
->nid
);
4617 switch (codec
->subsystem_id
) {
4619 if (event
->nid
== 0xb) {
4620 int pin
= AC_PINCTL_IN_EN
;
4622 if (get_pin_presence(codec
, 0xa)
4623 && get_pin_presence(codec
, 0xb))
4624 pin
|= AC_PINCTL_VREF_80
;
4625 if (!get_pin_presence(codec
, 0xb))
4626 pin
|= AC_PINCTL_VREF_80
;
4628 /* toggle VREF state based on mic + hp pin
4631 stac92xx_auto_set_pinctl(codec
, 0x0a, pin
);
4635 case STAC_VREF_EVENT
:
4636 data
= snd_hda_codec_read(codec
, codec
->afg
, 0,
4637 AC_VERB_GET_GPIO_DATA
, 0);
4638 /* toggle VREF state based on GPIOx status */
4639 snd_hda_codec_write(codec
, codec
->afg
, 0, 0x7e0,
4640 !!(data
& (1 << event
->data
)));
4645 #ifdef CONFIG_PROC_FS
4646 static void stac92hd_proc_hook(struct snd_info_buffer
*buffer
,
4647 struct hda_codec
*codec
, hda_nid_t nid
)
4649 if (nid
== codec
->afg
)
4650 snd_iprintf(buffer
, "Power-Map: 0x%02x\n",
4651 snd_hda_codec_read(codec
, nid
, 0, 0x0fec, 0x0));
4654 static void analog_loop_proc_hook(struct snd_info_buffer
*buffer
,
4655 struct hda_codec
*codec
,
4658 snd_iprintf(buffer
, "Analog Loopback: 0x%02x\n",
4659 snd_hda_codec_read(codec
, codec
->afg
, 0, verb
, 0));
4662 /* stac92hd71bxx, stac92hd73xx */
4663 static void stac92hd7x_proc_hook(struct snd_info_buffer
*buffer
,
4664 struct hda_codec
*codec
, hda_nid_t nid
)
4666 stac92hd_proc_hook(buffer
, codec
, nid
);
4667 if (nid
== codec
->afg
)
4668 analog_loop_proc_hook(buffer
, codec
, 0xfa0);
4671 static void stac9205_proc_hook(struct snd_info_buffer
*buffer
,
4672 struct hda_codec
*codec
, hda_nid_t nid
)
4674 if (nid
== codec
->afg
)
4675 analog_loop_proc_hook(buffer
, codec
, 0xfe0);
4678 static void stac927x_proc_hook(struct snd_info_buffer
*buffer
,
4679 struct hda_codec
*codec
, hda_nid_t nid
)
4681 if (nid
== codec
->afg
)
4682 analog_loop_proc_hook(buffer
, codec
, 0xfeb);
4685 #define stac92hd_proc_hook NULL
4686 #define stac92hd7x_proc_hook NULL
4687 #define stac9205_proc_hook NULL
4688 #define stac927x_proc_hook NULL
4691 #ifdef SND_HDA_NEEDS_RESUME
4692 static int stac92xx_resume(struct hda_codec
*codec
)
4694 struct sigmatel_spec
*spec
= codec
->spec
;
4696 stac92xx_init(codec
);
4697 snd_hda_codec_resume_amp(codec
);
4698 snd_hda_codec_resume_cache(codec
);
4699 /* fake event to set up pins again to override cached values */
4700 if (spec
->hp_detect
) {
4701 if (spec
->autocfg
.hp_pins
[0])
4702 stac_issue_unsol_event(codec
, spec
->autocfg
.hp_pins
[0]);
4703 else if (spec
->autocfg
.line_out_pins
[0])
4704 stac_issue_unsol_event(codec
,
4705 spec
->autocfg
.line_out_pins
[0]);
4711 * using power check for controlling mute led of HP notebooks
4712 * check for mute state only on Speakers (nid = 0x10)
4714 * For this feature CONFIG_SND_HDA_POWER_SAVE is needed, otherwise
4715 * the LED is NOT working properly !
4717 * Changed name to reflect that it now works for any designated
4718 * model, not just HP HDX.
4721 #ifdef CONFIG_SND_HDA_POWER_SAVE
4722 static int stac92xx_hp_check_power_status(struct hda_codec
*codec
,
4725 struct sigmatel_spec
*spec
= codec
->spec
;
4728 if (snd_hda_codec_amp_read(codec
, nid
, 0, HDA_OUTPUT
, 0) &
4730 spec
->gpio_data
&= ~spec
->gpio_led
; /* orange */
4732 spec
->gpio_data
|= spec
->gpio_led
; /* white */
4734 stac_gpio_set(codec
, spec
->gpio_mask
,
4743 static int stac92xx_suspend(struct hda_codec
*codec
, pm_message_t state
)
4745 struct sigmatel_spec
*spec
= codec
->spec
;
4749 /* reset each pin before powering down DAC/ADC to avoid click noise */
4750 nid
= codec
->start_nid
;
4751 for (i
= 0; i
< codec
->num_nodes
; i
++, nid
++) {
4752 unsigned int wcaps
= get_wcaps(codec
, nid
);
4753 unsigned int wid_type
= get_wcaps_type(wcaps
);
4754 if (wid_type
== AC_WID_PIN
)
4755 snd_hda_codec_read(codec
, nid
, 0,
4756 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0);
4759 if (spec
->eapd_mask
)
4760 stac_gpio_set(codec
, spec
->gpio_mask
,
4761 spec
->gpio_dir
, spec
->gpio_data
&
4767 static struct hda_codec_ops stac92xx_patch_ops
= {
4768 .build_controls
= stac92xx_build_controls
,
4769 .build_pcms
= stac92xx_build_pcms
,
4770 .init
= stac92xx_init
,
4771 .free
= stac92xx_free
,
4772 .unsol_event
= stac92xx_unsol_event
,
4773 #ifdef SND_HDA_NEEDS_RESUME
4774 .suspend
= stac92xx_suspend
,
4775 .resume
= stac92xx_resume
,
4779 static int patch_stac9200(struct hda_codec
*codec
)
4781 struct sigmatel_spec
*spec
;
4784 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
4789 spec
->num_pins
= ARRAY_SIZE(stac9200_pin_nids
);
4790 spec
->pin_nids
= stac9200_pin_nids
;
4791 spec
->board_config
= snd_hda_check_board_config(codec
, STAC_9200_MODELS
,
4794 if (spec
->board_config
< 0)
4795 snd_printdd(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
4798 stac92xx_set_config_regs(codec
,
4799 stac9200_brd_tbl
[spec
->board_config
]);
4801 spec
->multiout
.max_channels
= 2;
4802 spec
->multiout
.num_dacs
= 1;
4803 spec
->multiout
.dac_nids
= stac9200_dac_nids
;
4804 spec
->adc_nids
= stac9200_adc_nids
;
4805 spec
->mux_nids
= stac9200_mux_nids
;
4806 spec
->num_muxes
= 1;
4807 spec
->num_dmics
= 0;
4811 if (spec
->board_config
== STAC_9200_M4
||
4812 spec
->board_config
== STAC_9200_M4_2
||
4813 spec
->board_config
== STAC_9200_OQO
)
4814 spec
->init
= stac9200_eapd_init
;
4816 spec
->init
= stac9200_core_init
;
4817 spec
->mixer
= stac9200_mixer
;
4819 if (spec
->board_config
== STAC_9200_PANASONIC
) {
4820 spec
->gpio_mask
= spec
->gpio_dir
= 0x09;
4821 spec
->gpio_data
= 0x00;
4824 err
= stac9200_parse_auto_config(codec
);
4826 stac92xx_free(codec
);
4830 /* CF-74 has no headphone detection, and the driver should *NOT*
4831 * do detection and HP/speaker toggle because the hardware does it.
4833 if (spec
->board_config
== STAC_9200_PANASONIC
)
4834 spec
->hp_detect
= 0;
4836 codec
->patch_ops
= stac92xx_patch_ops
;
4841 static int patch_stac925x(struct hda_codec
*codec
)
4843 struct sigmatel_spec
*spec
;
4846 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
4851 spec
->num_pins
= ARRAY_SIZE(stac925x_pin_nids
);
4852 spec
->pin_nids
= stac925x_pin_nids
;
4854 /* Check first for codec ID */
4855 spec
->board_config
= snd_hda_check_board_codec_sid_config(codec
,
4858 stac925x_codec_id_cfg_tbl
);
4860 /* Now checks for PCI ID, if codec ID is not found */
4861 if (spec
->board_config
< 0)
4862 spec
->board_config
= snd_hda_check_board_config(codec
,
4867 if (spec
->board_config
< 0)
4868 snd_printdd(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
4871 stac92xx_set_config_regs(codec
,
4872 stac925x_brd_tbl
[spec
->board_config
]);
4874 spec
->multiout
.max_channels
= 2;
4875 spec
->multiout
.num_dacs
= 1;
4876 spec
->multiout
.dac_nids
= stac925x_dac_nids
;
4877 spec
->adc_nids
= stac925x_adc_nids
;
4878 spec
->mux_nids
= stac925x_mux_nids
;
4879 spec
->num_muxes
= 1;
4882 switch (codec
->vendor_id
) {
4883 case 0x83847632: /* STAC9202 */
4884 case 0x83847633: /* STAC9202D */
4885 case 0x83847636: /* STAC9251 */
4886 case 0x83847637: /* STAC9251D */
4887 spec
->num_dmics
= STAC925X_NUM_DMICS
;
4888 spec
->dmic_nids
= stac925x_dmic_nids
;
4889 spec
->num_dmuxes
= ARRAY_SIZE(stac925x_dmux_nids
);
4890 spec
->dmux_nids
= stac925x_dmux_nids
;
4893 spec
->num_dmics
= 0;
4897 spec
->init
= stac925x_core_init
;
4898 spec
->mixer
= stac925x_mixer
;
4900 spec
->capvols
= stac925x_capvols
;
4901 spec
->capsws
= stac925x_capsws
;
4903 err
= stac92xx_parse_auto_config(codec
, 0x8, 0x7);
4905 if (spec
->board_config
< 0) {
4906 printk(KERN_WARNING
"hda_codec: No auto-config is "
4907 "available, default to model=ref\n");
4908 spec
->board_config
= STAC_925x_REF
;
4914 stac92xx_free(codec
);
4918 codec
->patch_ops
= stac92xx_patch_ops
;
4923 static int patch_stac92hd73xx(struct hda_codec
*codec
)
4925 struct sigmatel_spec
*spec
;
4926 hda_nid_t conn
[STAC92HD73_DAC_COUNT
+ 2];
4930 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
4935 codec
->slave_dig_outs
= stac92hd73xx_slave_dig_outs
;
4936 spec
->num_pins
= ARRAY_SIZE(stac92hd73xx_pin_nids
);
4937 spec
->pin_nids
= stac92hd73xx_pin_nids
;
4938 spec
->board_config
= snd_hda_check_board_config(codec
,
4939 STAC_92HD73XX_MODELS
,
4940 stac92hd73xx_models
,
4941 stac92hd73xx_cfg_tbl
);
4942 /* check codec subsystem id if not found */
4943 if (spec
->board_config
< 0)
4944 spec
->board_config
=
4945 snd_hda_check_board_codec_sid_config(codec
,
4946 STAC_92HD73XX_MODELS
, stac92hd73xx_models
,
4947 stac92hd73xx_codec_id_cfg_tbl
);
4949 if (spec
->board_config
< 0)
4950 snd_printdd(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
4953 stac92xx_set_config_regs(codec
,
4954 stac92hd73xx_brd_tbl
[spec
->board_config
]);
4956 num_dacs
= snd_hda_get_connections(codec
, 0x0a,
4957 conn
, STAC92HD73_DAC_COUNT
+ 2) - 1;
4959 if (num_dacs
< 3 || num_dacs
> 5) {
4960 printk(KERN_WARNING
"hda_codec: Could not determine "
4961 "number of channels defaulting to DAC count\n");
4962 num_dacs
= STAC92HD73_DAC_COUNT
;
4964 spec
->init
= stac92hd73xx_core_init
;
4966 case 0x3: /* 6 Channel */
4967 spec
->aloopback_ctl
= stac92hd73xx_6ch_loopback
;
4969 case 0x4: /* 8 Channel */
4970 spec
->aloopback_ctl
= stac92hd73xx_8ch_loopback
;
4972 case 0x5: /* 10 Channel */
4973 spec
->aloopback_ctl
= stac92hd73xx_10ch_loopback
;
4976 spec
->multiout
.dac_nids
= spec
->dac_nids
;
4978 spec
->aloopback_mask
= 0x01;
4979 spec
->aloopback_shift
= 8;
4981 spec
->digbeep_nid
= 0x1c;
4982 spec
->mux_nids
= stac92hd73xx_mux_nids
;
4983 spec
->adc_nids
= stac92hd73xx_adc_nids
;
4984 spec
->dmic_nids
= stac92hd73xx_dmic_nids
;
4985 spec
->dmux_nids
= stac92hd73xx_dmux_nids
;
4986 spec
->smux_nids
= stac92hd73xx_smux_nids
;
4988 spec
->num_muxes
= ARRAY_SIZE(stac92hd73xx_mux_nids
);
4989 spec
->num_adcs
= ARRAY_SIZE(stac92hd73xx_adc_nids
);
4990 spec
->num_dmuxes
= ARRAY_SIZE(stac92hd73xx_dmux_nids
);
4992 spec
->num_caps
= STAC92HD73XX_NUM_CAPS
;
4993 spec
->capvols
= stac92hd73xx_capvols
;
4994 spec
->capsws
= stac92hd73xx_capsws
;
4996 switch (spec
->board_config
) {
4998 spec
->init
= dell_eq_core_init
;
5000 case STAC_DELL_M6_AMIC
:
5001 case STAC_DELL_M6_DMIC
:
5002 case STAC_DELL_M6_BOTH
:
5003 spec
->num_smuxes
= 0;
5004 spec
->eapd_switch
= 0;
5006 switch (spec
->board_config
) {
5007 case STAC_DELL_M6_AMIC
: /* Analog Mics */
5008 snd_hda_codec_set_pincfg(codec
, 0x0b, 0x90A70170);
5009 spec
->num_dmics
= 0;
5011 case STAC_DELL_M6_DMIC
: /* Digital Mics */
5012 snd_hda_codec_set_pincfg(codec
, 0x13, 0x90A60160);
5013 spec
->num_dmics
= 1;
5015 case STAC_DELL_M6_BOTH
: /* Both */
5016 snd_hda_codec_set_pincfg(codec
, 0x0b, 0x90A70170);
5017 snd_hda_codec_set_pincfg(codec
, 0x13, 0x90A60160);
5018 spec
->num_dmics
= 1;
5022 case STAC_ALIENWARE_M17X
:
5023 spec
->num_dmics
= STAC92HD73XX_NUM_DMICS
;
5024 spec
->num_smuxes
= ARRAY_SIZE(stac92hd73xx_smux_nids
);
5025 spec
->eapd_switch
= 0;
5028 spec
->num_dmics
= STAC92HD73XX_NUM_DMICS
;
5029 spec
->num_smuxes
= ARRAY_SIZE(stac92hd73xx_smux_nids
);
5030 spec
->eapd_switch
= 1;
5033 if (spec
->board_config
!= STAC_92HD73XX_REF
) {
5034 /* GPIO0 High = Enable EAPD */
5035 spec
->eapd_mask
= spec
->gpio_mask
= spec
->gpio_dir
= 0x1;
5036 spec
->gpio_data
= 0x01;
5039 spec
->num_pwrs
= ARRAY_SIZE(stac92hd73xx_pwr_nids
);
5040 spec
->pwr_nids
= stac92hd73xx_pwr_nids
;
5042 err
= stac92xx_parse_auto_config(codec
, 0x25, 0x27);
5045 if (spec
->board_config
< 0) {
5046 printk(KERN_WARNING
"hda_codec: No auto-config is "
5047 "available, default to model=ref\n");
5048 spec
->board_config
= STAC_92HD73XX_REF
;
5055 stac92xx_free(codec
);
5059 if (spec
->board_config
== STAC_92HD73XX_NO_JD
)
5060 spec
->hp_detect
= 0;
5062 codec
->patch_ops
= stac92xx_patch_ops
;
5064 codec
->proc_widget_hook
= stac92hd7x_proc_hook
;
5069 static int patch_stac92hd83xxx(struct hda_codec
*codec
)
5071 struct sigmatel_spec
*spec
;
5072 hda_nid_t conn
[STAC92HD83_DAC_COUNT
+ 1];
5077 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
5082 codec
->slave_dig_outs
= stac92hd83xxx_slave_dig_outs
;
5083 spec
->digbeep_nid
= 0x21;
5084 spec
->mux_nids
= stac92hd83xxx_mux_nids
;
5085 spec
->num_muxes
= ARRAY_SIZE(stac92hd83xxx_mux_nids
);
5086 spec
->adc_nids
= stac92hd83xxx_adc_nids
;
5087 spec
->num_adcs
= ARRAY_SIZE(stac92hd83xxx_adc_nids
);
5088 spec
->pwr_nids
= stac92hd83xxx_pwr_nids
;
5089 spec
->pwr_mapping
= stac92hd83xxx_pwr_mapping
;
5090 spec
->num_pwrs
= ARRAY_SIZE(stac92hd83xxx_pwr_nids
);
5091 spec
->multiout
.dac_nids
= spec
->dac_nids
;
5093 spec
->init
= stac92hd83xxx_core_init
;
5094 spec
->num_pins
= ARRAY_SIZE(stac92hd83xxx_pin_nids
);
5095 spec
->pin_nids
= stac92hd83xxx_pin_nids
;
5096 spec
->num_caps
= STAC92HD83XXX_NUM_CAPS
;
5097 spec
->capvols
= stac92hd83xxx_capvols
;
5098 spec
->capsws
= stac92hd83xxx_capsws
;
5100 spec
->board_config
= snd_hda_check_board_config(codec
,
5101 STAC_92HD83XXX_MODELS
,
5102 stac92hd83xxx_models
,
5103 stac92hd83xxx_cfg_tbl
);
5105 if (spec
->board_config
< 0)
5106 snd_printdd(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
5109 stac92xx_set_config_regs(codec
,
5110 stac92hd83xxx_brd_tbl
[spec
->board_config
]);
5112 switch (codec
->vendor_id
) {
5116 if (spec
->board_config
== STAC_92HD83XXX_PWR_REF
)
5122 err
= stac92xx_parse_auto_config(codec
, 0x1d, 0);
5124 if (spec
->board_config
< 0) {
5125 printk(KERN_WARNING
"hda_codec: No auto-config is "
5126 "available, default to model=ref\n");
5127 spec
->board_config
= STAC_92HD83XXX_REF
;
5134 stac92xx_free(codec
);
5138 switch (spec
->board_config
) {
5147 num_dacs
= snd_hda_get_connections(codec
, nid
,
5148 conn
, STAC92HD83_DAC_COUNT
+ 1) - 1;
5150 num_dacs
= STAC92HD83_DAC_COUNT
;
5152 /* set port X to select the last DAC
5154 snd_hda_codec_write_cache(codec
, nid
, 0,
5155 AC_VERB_SET_CONNECT_SEL
, num_dacs
);
5157 codec
->patch_ops
= stac92xx_patch_ops
;
5159 codec
->proc_widget_hook
= stac92hd_proc_hook
;
5164 /* get the pin connection (fixed, none, etc) */
5165 static unsigned int stac_get_defcfg_connect(struct hda_codec
*codec
, int idx
)
5167 struct sigmatel_spec
*spec
= codec
->spec
;
5170 cfg
= snd_hda_codec_get_pincfg(codec
, spec
->pin_nids
[idx
]);
5171 return get_defcfg_connect(cfg
);
5174 static int stac92hd71bxx_connected_ports(struct hda_codec
*codec
,
5175 hda_nid_t
*nids
, int num_nids
)
5177 struct sigmatel_spec
*spec
= codec
->spec
;
5179 unsigned int def_conf
;
5181 for (num
= 0; num
< num_nids
; num
++) {
5182 for (idx
= 0; idx
< spec
->num_pins
; idx
++)
5183 if (spec
->pin_nids
[idx
] == nids
[num
])
5185 if (idx
>= spec
->num_pins
)
5187 def_conf
= stac_get_defcfg_connect(codec
, idx
);
5188 if (def_conf
== AC_JACK_PORT_NONE
)
5194 static int stac92hd71bxx_connected_smuxes(struct hda_codec
*codec
,
5197 struct sigmatel_spec
*spec
= codec
->spec
;
5200 for (idx
= 0; idx
< spec
->num_pins
; idx
++)
5201 if (spec
->pin_nids
[idx
] == dig0pin
)
5203 if ((idx
+ 2) >= spec
->num_pins
)
5207 if (stac_get_defcfg_connect(codec
, idx
+ 1) != AC_JACK_PORT_NONE
)
5210 /* dig0pin + dig2pin case */
5211 if (stac_get_defcfg_connect(codec
, idx
+ 2) != AC_JACK_PORT_NONE
)
5213 if (stac_get_defcfg_connect(codec
, idx
) != AC_JACK_PORT_NONE
)
5219 static int patch_stac92hd71bxx(struct hda_codec
*codec
)
5221 struct sigmatel_spec
*spec
;
5222 struct hda_verb
*unmute_init
= stac92hd71bxx_unmute_core_init
;
5225 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
5230 codec
->patch_ops
= stac92xx_patch_ops
;
5231 spec
->num_pins
= STAC92HD71BXX_NUM_PINS
;
5232 switch (codec
->vendor_id
) {
5235 spec
->pin_nids
= stac92hd71bxx_pin_nids_4port
;
5239 /* On 92HD75Bx 0x27 isn't a pin nid */
5243 spec
->pin_nids
= stac92hd71bxx_pin_nids_6port
;
5245 spec
->num_pwrs
= ARRAY_SIZE(stac92hd71bxx_pwr_nids
);
5246 spec
->board_config
= snd_hda_check_board_config(codec
,
5247 STAC_92HD71BXX_MODELS
,
5248 stac92hd71bxx_models
,
5249 stac92hd71bxx_cfg_tbl
);
5251 if (spec
->board_config
< 0)
5252 snd_printdd(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
5255 stac92xx_set_config_regs(codec
,
5256 stac92hd71bxx_brd_tbl
[spec
->board_config
]);
5258 if (spec
->board_config
!= STAC_92HD71BXX_REF
) {
5260 spec
->gpio_mask
= 0x01;
5261 spec
->gpio_dir
= 0x01;
5262 spec
->gpio_data
= 0x01;
5265 spec
->dmic_nids
= stac92hd71bxx_dmic_nids
;
5266 spec
->dmux_nids
= stac92hd71bxx_dmux_nids
;
5268 spec
->num_caps
= STAC92HD71BXX_NUM_CAPS
;
5269 spec
->capvols
= stac92hd71bxx_capvols
;
5270 spec
->capsws
= stac92hd71bxx_capsws
;
5272 switch (codec
->vendor_id
) {
5273 case 0x111d76b6: /* 4 Port without Analog Mixer */
5277 case 0x111d76b4: /* 6 Port without Analog Mixer */
5279 spec
->init
= stac92hd71bxx_core_init
;
5280 codec
->slave_dig_outs
= stac92hd71bxx_slave_dig_outs
;
5281 spec
->num_dmics
= stac92hd71bxx_connected_ports(codec
,
5282 stac92hd71bxx_dmic_nids
,
5283 STAC92HD71BXX_NUM_DMICS
);
5285 case 0x111d7608: /* 5 Port with Analog Mixer */
5286 switch (spec
->board_config
) {
5288 /* Enable VREF power saving on GPIO1 detect */
5289 err
= stac_add_event(spec
, codec
->afg
,
5290 STAC_VREF_EVENT
, 0x02);
5293 snd_hda_codec_write_cache(codec
, codec
->afg
, 0,
5294 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK
, 0x02);
5295 snd_hda_codec_write_cache(codec
, codec
->afg
, 0,
5296 AC_VERB_SET_UNSOLICITED_ENABLE
,
5298 spec
->gpio_mask
|= 0x02;
5301 if ((codec
->revision_id
& 0xf) == 0 ||
5302 (codec
->revision_id
& 0xf) == 1)
5303 spec
->stream_delay
= 40; /* 40 milliseconds */
5305 /* no output amps */
5308 spec
->init
= stac92hd71bxx_core_init
;
5310 snd_hda_codec_set_pincfg(codec
, 0x0f, 0x40f000f0);
5311 snd_hda_codec_set_pincfg(codec
, 0x19, 0x40f000f3);
5312 stac92hd71bxx_dmic_nids
[STAC92HD71BXX_NUM_DMICS
- 1] = 0;
5313 spec
->num_dmics
= stac92hd71bxx_connected_ports(codec
,
5314 stac92hd71bxx_dmic_nids
,
5315 STAC92HD71BXX_NUM_DMICS
- 1);
5317 case 0x111d7603: /* 6 Port with Analog Mixer */
5318 if ((codec
->revision_id
& 0xf) == 1)
5319 spec
->stream_delay
= 40; /* 40 milliseconds */
5321 /* no output amps */
5325 spec
->init
= stac92hd71bxx_core_init
;
5326 codec
->slave_dig_outs
= stac92hd71bxx_slave_dig_outs
;
5327 spec
->num_dmics
= stac92hd71bxx_connected_ports(codec
,
5328 stac92hd71bxx_dmic_nids
,
5329 STAC92HD71BXX_NUM_DMICS
);
5333 if (get_wcaps(codec
, 0xa) & AC_WCAP_IN_AMP
)
5334 snd_hda_sequence_write_cache(codec
, unmute_init
);
5336 /* Some HP machines seem to have unstable codec communications
5337 * especially with ATI fglrx driver. For recovering from the
5338 * CORB/RIRB stall, allow the BUS reset and keep always sync
5340 if (spec
->board_config
== STAC_HP_DV5
) {
5341 codec
->bus
->sync_write
= 1;
5342 codec
->bus
->allow_bus_reset
= 1;
5345 spec
->aloopback_ctl
= stac92hd71bxx_loopback
;
5346 spec
->aloopback_mask
= 0x50;
5347 spec
->aloopback_shift
= 0;
5349 spec
->powerdown_adcs
= 1;
5350 spec
->digbeep_nid
= 0x26;
5351 spec
->mux_nids
= stac92hd71bxx_mux_nids
;
5352 spec
->adc_nids
= stac92hd71bxx_adc_nids
;
5353 spec
->smux_nids
= stac92hd71bxx_smux_nids
;
5354 spec
->pwr_nids
= stac92hd71bxx_pwr_nids
;
5356 spec
->num_muxes
= ARRAY_SIZE(stac92hd71bxx_mux_nids
);
5357 spec
->num_adcs
= ARRAY_SIZE(stac92hd71bxx_adc_nids
);
5358 spec
->num_dmuxes
= ARRAY_SIZE(stac92hd71bxx_dmux_nids
);
5359 spec
->num_smuxes
= stac92hd71bxx_connected_smuxes(codec
, 0x1e);
5361 switch (spec
->board_config
) {
5363 /* enable internal microphone */
5364 snd_hda_codec_set_pincfg(codec
, 0x0e, 0x01813040);
5365 stac92xx_auto_set_pinctl(codec
, 0x0e,
5366 AC_PINCTL_IN_EN
| AC_PINCTL_VREF_80
);
5368 case STAC_DELL_M4_2
:
5369 spec
->num_dmics
= 0;
5370 spec
->num_smuxes
= 0;
5371 spec
->num_dmuxes
= 0;
5373 case STAC_DELL_M4_1
:
5374 case STAC_DELL_M4_3
:
5375 spec
->num_dmics
= 1;
5376 spec
->num_smuxes
= 0;
5377 spec
->num_dmuxes
= 1;
5379 case STAC_HP_DV4_1222NR
:
5380 spec
->num_dmics
= 1;
5381 /* I don't know if it needs 1 or 2 smuxes - will wait for
5382 * bug reports to fix if needed
5384 spec
->num_smuxes
= 1;
5385 spec
->num_dmuxes
= 1;
5386 spec
->gpio_led
= 0x01;
5389 snd_hda_codec_set_pincfg(codec
, 0x0d, 0x90170010);
5390 stac92xx_auto_set_pinctl(codec
, 0x0d, AC_PINCTL_OUT_EN
);
5391 /* HP dv6 gives the headphone pin as a line-out. Thus we
5392 * need to set hp_detect flag here to force to enable HP
5395 spec
->hp_detect
= 1;
5398 spec
->num_dmics
= 1;
5399 spec
->num_dmuxes
= 1;
5400 spec
->num_smuxes
= 1;
5401 /* orange/white mute led on GPIO3, orange=0, white=1 */
5402 spec
->gpio_led
= 0x08;
5406 #ifdef CONFIG_SND_HDA_POWER_SAVE
5407 if (spec
->gpio_led
) {
5408 spec
->gpio_mask
|= spec
->gpio_led
;
5409 spec
->gpio_dir
|= spec
->gpio_led
;
5410 spec
->gpio_data
|= spec
->gpio_led
;
5411 /* register check_power_status callback. */
5412 codec
->patch_ops
.check_power_status
=
5413 stac92xx_hp_check_power_status
;
5417 spec
->multiout
.dac_nids
= spec
->dac_nids
;
5419 err
= stac92xx_parse_auto_config(codec
, 0x21, 0);
5421 if (spec
->board_config
< 0) {
5422 printk(KERN_WARNING
"hda_codec: No auto-config is "
5423 "available, default to model=ref\n");
5424 spec
->board_config
= STAC_92HD71BXX_REF
;
5431 stac92xx_free(codec
);
5435 codec
->proc_widget_hook
= stac92hd7x_proc_hook
;
5440 static int patch_stac922x(struct hda_codec
*codec
)
5442 struct sigmatel_spec
*spec
;
5445 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
5450 spec
->num_pins
= ARRAY_SIZE(stac922x_pin_nids
);
5451 spec
->pin_nids
= stac922x_pin_nids
;
5452 spec
->board_config
= snd_hda_check_board_config(codec
, STAC_922X_MODELS
,
5455 if (spec
->board_config
== STAC_INTEL_MAC_AUTO
) {
5456 spec
->gpio_mask
= spec
->gpio_dir
= 0x03;
5457 spec
->gpio_data
= 0x03;
5458 /* Intel Macs have all same PCI SSID, so we need to check
5459 * codec SSID to distinguish the exact models
5461 printk(KERN_INFO
"hda_codec: STAC922x, Apple subsys_id=%x\n", codec
->subsystem_id
);
5462 switch (codec
->subsystem_id
) {
5465 spec
->board_config
= STAC_INTEL_MAC_V1
;
5469 spec
->board_config
= STAC_INTEL_MAC_V2
;
5477 spec
->board_config
= STAC_INTEL_MAC_V3
;
5481 spec
->board_config
= STAC_INTEL_MAC_V4
;
5485 spec
->board_config
= STAC_INTEL_MAC_V5
;
5488 spec
->board_config
= STAC_INTEL_MAC_V3
;
5494 if (spec
->board_config
< 0)
5495 snd_printdd(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
5498 stac92xx_set_config_regs(codec
,
5499 stac922x_brd_tbl
[spec
->board_config
]);
5501 spec
->adc_nids
= stac922x_adc_nids
;
5502 spec
->mux_nids
= stac922x_mux_nids
;
5503 spec
->num_muxes
= ARRAY_SIZE(stac922x_mux_nids
);
5504 spec
->num_adcs
= ARRAY_SIZE(stac922x_adc_nids
);
5505 spec
->num_dmics
= 0;
5508 spec
->init
= stac922x_core_init
;
5510 spec
->num_caps
= STAC922X_NUM_CAPS
;
5511 spec
->capvols
= stac922x_capvols
;
5512 spec
->capsws
= stac922x_capsws
;
5514 spec
->multiout
.dac_nids
= spec
->dac_nids
;
5516 err
= stac92xx_parse_auto_config(codec
, 0x08, 0x09);
5518 if (spec
->board_config
< 0) {
5519 printk(KERN_WARNING
"hda_codec: No auto-config is "
5520 "available, default to model=ref\n");
5521 spec
->board_config
= STAC_D945_REF
;
5527 stac92xx_free(codec
);
5531 codec
->patch_ops
= stac92xx_patch_ops
;
5533 /* Fix Mux capture level; max to 2 */
5534 snd_hda_override_amp_caps(codec
, 0x12, HDA_OUTPUT
,
5535 (0 << AC_AMPCAP_OFFSET_SHIFT
) |
5536 (2 << AC_AMPCAP_NUM_STEPS_SHIFT
) |
5537 (0x27 << AC_AMPCAP_STEP_SIZE_SHIFT
) |
5538 (0 << AC_AMPCAP_MUTE_SHIFT
));
5543 static int patch_stac927x(struct hda_codec
*codec
)
5545 struct sigmatel_spec
*spec
;
5548 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
5553 codec
->slave_dig_outs
= stac927x_slave_dig_outs
;
5554 spec
->num_pins
= ARRAY_SIZE(stac927x_pin_nids
);
5555 spec
->pin_nids
= stac927x_pin_nids
;
5556 spec
->board_config
= snd_hda_check_board_config(codec
, STAC_927X_MODELS
,
5560 if (spec
->board_config
< 0)
5561 snd_printdd(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
5564 stac92xx_set_config_regs(codec
,
5565 stac927x_brd_tbl
[spec
->board_config
]);
5567 spec
->digbeep_nid
= 0x23;
5568 spec
->adc_nids
= stac927x_adc_nids
;
5569 spec
->num_adcs
= ARRAY_SIZE(stac927x_adc_nids
);
5570 spec
->mux_nids
= stac927x_mux_nids
;
5571 spec
->num_muxes
= ARRAY_SIZE(stac927x_mux_nids
);
5572 spec
->smux_nids
= stac927x_smux_nids
;
5573 spec
->num_smuxes
= ARRAY_SIZE(stac927x_smux_nids
);
5574 spec
->spdif_labels
= stac927x_spdif_labels
;
5575 spec
->dac_list
= stac927x_dac_nids
;
5576 spec
->multiout
.dac_nids
= spec
->dac_nids
;
5578 if (spec
->board_config
!= STAC_D965_REF
) {
5579 /* GPIO0 High = Enable EAPD */
5580 spec
->eapd_mask
= spec
->gpio_mask
= 0x01;
5581 spec
->gpio_dir
= spec
->gpio_data
= 0x01;
5584 switch (spec
->board_config
) {
5587 /* GPIO0 High = Enable EAPD */
5588 spec
->num_dmics
= 0;
5589 spec
->init
= d965_core_init
;
5591 case STAC_DELL_BIOS
:
5592 switch (codec
->subsystem_id
) {
5595 /* correct the device field to SPDIF out */
5596 snd_hda_codec_set_pincfg(codec
, 0x21, 0x01442070);
5599 /* configure the analog microphone on some laptops */
5600 snd_hda_codec_set_pincfg(codec
, 0x0c, 0x90a79130);
5601 /* correct the front output jack as a hp out */
5602 snd_hda_codec_set_pincfg(codec
, 0x0f, 0x0227011f);
5603 /* correct the front input jack as a mic */
5604 snd_hda_codec_set_pincfg(codec
, 0x0e, 0x02a79130);
5607 if (codec
->subsystem_id
!= 0x1028022f) {
5608 /* GPIO2 High = Enable EAPD */
5609 spec
->eapd_mask
= spec
->gpio_mask
= 0x04;
5610 spec
->gpio_dir
= spec
->gpio_data
= 0x04;
5612 spec
->dmic_nids
= stac927x_dmic_nids
;
5613 spec
->num_dmics
= STAC927X_NUM_DMICS
;
5615 spec
->init
= d965_core_init
;
5616 spec
->dmux_nids
= stac927x_dmux_nids
;
5617 spec
->num_dmuxes
= ARRAY_SIZE(stac927x_dmux_nids
);
5620 spec
->num_dmics
= 0;
5621 spec
->init
= stac927x_core_init
;
5625 spec
->num_caps
= STAC927X_NUM_CAPS
;
5626 spec
->capvols
= stac927x_capvols
;
5627 spec
->capsws
= stac927x_capsws
;
5630 spec
->aloopback_ctl
= stac927x_loopback
;
5631 spec
->aloopback_mask
= 0x40;
5632 spec
->aloopback_shift
= 0;
5633 spec
->eapd_switch
= 1;
5635 err
= stac92xx_parse_auto_config(codec
, 0x1e, 0x20);
5637 if (spec
->board_config
< 0) {
5638 printk(KERN_WARNING
"hda_codec: No auto-config is "
5639 "available, default to model=ref\n");
5640 spec
->board_config
= STAC_D965_REF
;
5646 stac92xx_free(codec
);
5650 codec
->patch_ops
= stac92xx_patch_ops
;
5652 codec
->proc_widget_hook
= stac927x_proc_hook
;
5656 * The STAC927x seem to require fairly long delays for certain
5657 * command sequences. With too short delays (even if the answer
5658 * is set to RIRB properly), it results in the silence output
5659 * on some hardwares like Dell.
5661 * The below flag enables the longer delay (see get_response
5664 codec
->bus
->needs_damn_long_delay
= 1;
5666 /* no jack detecion for ref-no-jd model */
5667 if (spec
->board_config
== STAC_D965_REF_NO_JD
)
5668 spec
->hp_detect
= 0;
5673 static int patch_stac9205(struct hda_codec
*codec
)
5675 struct sigmatel_spec
*spec
;
5678 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
5683 spec
->num_pins
= ARRAY_SIZE(stac9205_pin_nids
);
5684 spec
->pin_nids
= stac9205_pin_nids
;
5685 spec
->board_config
= snd_hda_check_board_config(codec
, STAC_9205_MODELS
,
5689 if (spec
->board_config
< 0)
5690 snd_printdd(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
5693 stac92xx_set_config_regs(codec
,
5694 stac9205_brd_tbl
[spec
->board_config
]);
5696 spec
->digbeep_nid
= 0x23;
5697 spec
->adc_nids
= stac9205_adc_nids
;
5698 spec
->num_adcs
= ARRAY_SIZE(stac9205_adc_nids
);
5699 spec
->mux_nids
= stac9205_mux_nids
;
5700 spec
->num_muxes
= ARRAY_SIZE(stac9205_mux_nids
);
5701 spec
->smux_nids
= stac9205_smux_nids
;
5702 spec
->num_smuxes
= ARRAY_SIZE(stac9205_smux_nids
);
5703 spec
->dmic_nids
= stac9205_dmic_nids
;
5704 spec
->num_dmics
= STAC9205_NUM_DMICS
;
5705 spec
->dmux_nids
= stac9205_dmux_nids
;
5706 spec
->num_dmuxes
= ARRAY_SIZE(stac9205_dmux_nids
);
5709 spec
->init
= stac9205_core_init
;
5710 spec
->aloopback_ctl
= stac9205_loopback
;
5712 spec
->num_caps
= STAC9205_NUM_CAPS
;
5713 spec
->capvols
= stac9205_capvols
;
5714 spec
->capsws
= stac9205_capsws
;
5716 spec
->aloopback_mask
= 0x40;
5717 spec
->aloopback_shift
= 0;
5718 /* Turn on/off EAPD per HP plugging */
5719 if (spec
->board_config
!= STAC_9205_EAPD
)
5720 spec
->eapd_switch
= 1;
5721 spec
->multiout
.dac_nids
= spec
->dac_nids
;
5723 switch (spec
->board_config
){
5724 case STAC_9205_DELL_M43
:
5725 /* Enable SPDIF in/out */
5726 snd_hda_codec_set_pincfg(codec
, 0x1f, 0x01441030);
5727 snd_hda_codec_set_pincfg(codec
, 0x20, 0x1c410030);
5729 /* Enable unsol response for GPIO4/Dock HP connection */
5730 err
= stac_add_event(spec
, codec
->afg
, STAC_VREF_EVENT
, 0x01);
5733 snd_hda_codec_write_cache(codec
, codec
->afg
, 0,
5734 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK
, 0x10);
5735 snd_hda_codec_write_cache(codec
, codec
->afg
, 0,
5736 AC_VERB_SET_UNSOLICITED_ENABLE
,
5739 spec
->gpio_dir
= 0x0b;
5740 spec
->eapd_mask
= 0x01;
5741 spec
->gpio_mask
= 0x1b;
5742 spec
->gpio_mute
= 0x10;
5743 /* GPIO0 High = EAPD, GPIO1 Low = Headphone Mute,
5746 spec
->gpio_data
= 0x01;
5749 /* SPDIF-In enabled */
5752 /* GPIO0 High = EAPD */
5753 spec
->eapd_mask
= spec
->gpio_mask
= spec
->gpio_dir
= 0x1;
5754 spec
->gpio_data
= 0x01;
5758 err
= stac92xx_parse_auto_config(codec
, 0x1f, 0x20);
5760 if (spec
->board_config
< 0) {
5761 printk(KERN_WARNING
"hda_codec: No auto-config is "
5762 "available, default to model=ref\n");
5763 spec
->board_config
= STAC_9205_REF
;
5769 stac92xx_free(codec
);
5773 codec
->patch_ops
= stac92xx_patch_ops
;
5775 codec
->proc_widget_hook
= stac9205_proc_hook
;
5784 static struct hda_verb stac9872_core_init
[] = {
5785 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x1}, /* mic-sel: 0a,0d,14,02 */
5786 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
}, /* Mic-in -> 0x9 */
5790 static hda_nid_t stac9872_pin_nids
[] = {
5791 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
5795 static hda_nid_t stac9872_adc_nids
[] = {
5799 static hda_nid_t stac9872_mux_nids
[] = {
5803 static unsigned long stac9872_capvols
[] = {
5804 HDA_COMPOSE_AMP_VAL(0x09, 3, 0, HDA_INPUT
),
5806 #define stac9872_capsws stac9872_capvols
5808 static unsigned int stac9872_vaio_pin_configs
[9] = {
5809 0x03211020, 0x411111f0, 0x411111f0, 0x03a15030,
5810 0x411111f0, 0x90170110, 0x411111f0, 0x411111f0,
5814 static const char *stac9872_models
[STAC_9872_MODELS
] = {
5815 [STAC_9872_AUTO
] = "auto",
5816 [STAC_9872_VAIO
] = "vaio",
5819 static unsigned int *stac9872_brd_tbl
[STAC_9872_MODELS
] = {
5820 [STAC_9872_VAIO
] = stac9872_vaio_pin_configs
,
5823 static struct snd_pci_quirk stac9872_cfg_tbl
[] = {
5824 SND_PCI_QUIRK_MASK(0x104d, 0xfff0, 0x81e0,
5825 "Sony VAIO F/S", STAC_9872_VAIO
),
5829 static int patch_stac9872(struct hda_codec
*codec
)
5831 struct sigmatel_spec
*spec
;
5834 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
5838 spec
->num_pins
= ARRAY_SIZE(stac9872_pin_nids
);
5839 spec
->pin_nids
= stac9872_pin_nids
;
5841 spec
->board_config
= snd_hda_check_board_config(codec
, STAC_9872_MODELS
,
5844 if (spec
->board_config
< 0)
5845 snd_printdd(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
5848 stac92xx_set_config_regs(codec
,
5849 stac9872_brd_tbl
[spec
->board_config
]);
5851 spec
->multiout
.dac_nids
= spec
->dac_nids
;
5852 spec
->num_adcs
= ARRAY_SIZE(stac9872_adc_nids
);
5853 spec
->adc_nids
= stac9872_adc_nids
;
5854 spec
->num_muxes
= ARRAY_SIZE(stac9872_mux_nids
);
5855 spec
->mux_nids
= stac9872_mux_nids
;
5856 spec
->init
= stac9872_core_init
;
5858 spec
->capvols
= stac9872_capvols
;
5859 spec
->capsws
= stac9872_capsws
;
5861 err
= stac92xx_parse_auto_config(codec
, 0x10, 0x12);
5863 stac92xx_free(codec
);
5866 spec
->input_mux
= &spec
->private_imux
;
5867 codec
->patch_ops
= stac92xx_patch_ops
;
5875 static struct hda_codec_preset snd_hda_preset_sigmatel
[] = {
5876 { .id
= 0x83847690, .name
= "STAC9200", .patch
= patch_stac9200
},
5877 { .id
= 0x83847882, .name
= "STAC9220 A1", .patch
= patch_stac922x
},
5878 { .id
= 0x83847680, .name
= "STAC9221 A1", .patch
= patch_stac922x
},
5879 { .id
= 0x83847880, .name
= "STAC9220 A2", .patch
= patch_stac922x
},
5880 { .id
= 0x83847681, .name
= "STAC9220D/9223D A2", .patch
= patch_stac922x
},
5881 { .id
= 0x83847682, .name
= "STAC9221 A2", .patch
= patch_stac922x
},
5882 { .id
= 0x83847683, .name
= "STAC9221D A2", .patch
= patch_stac922x
},
5883 { .id
= 0x83847618, .name
= "STAC9227", .patch
= patch_stac927x
},
5884 { .id
= 0x83847619, .name
= "STAC9227", .patch
= patch_stac927x
},
5885 { .id
= 0x83847616, .name
= "STAC9228", .patch
= patch_stac927x
},
5886 { .id
= 0x83847617, .name
= "STAC9228", .patch
= patch_stac927x
},
5887 { .id
= 0x83847614, .name
= "STAC9229", .patch
= patch_stac927x
},
5888 { .id
= 0x83847615, .name
= "STAC9229", .patch
= patch_stac927x
},
5889 { .id
= 0x83847620, .name
= "STAC9274", .patch
= patch_stac927x
},
5890 { .id
= 0x83847621, .name
= "STAC9274D", .patch
= patch_stac927x
},
5891 { .id
= 0x83847622, .name
= "STAC9273X", .patch
= patch_stac927x
},
5892 { .id
= 0x83847623, .name
= "STAC9273D", .patch
= patch_stac927x
},
5893 { .id
= 0x83847624, .name
= "STAC9272X", .patch
= patch_stac927x
},
5894 { .id
= 0x83847625, .name
= "STAC9272D", .patch
= patch_stac927x
},
5895 { .id
= 0x83847626, .name
= "STAC9271X", .patch
= patch_stac927x
},
5896 { .id
= 0x83847627, .name
= "STAC9271D", .patch
= patch_stac927x
},
5897 { .id
= 0x83847628, .name
= "STAC9274X5NH", .patch
= patch_stac927x
},
5898 { .id
= 0x83847629, .name
= "STAC9274D5NH", .patch
= patch_stac927x
},
5899 { .id
= 0x83847632, .name
= "STAC9202", .patch
= patch_stac925x
},
5900 { .id
= 0x83847633, .name
= "STAC9202D", .patch
= patch_stac925x
},
5901 { .id
= 0x83847634, .name
= "STAC9250", .patch
= patch_stac925x
},
5902 { .id
= 0x83847635, .name
= "STAC9250D", .patch
= patch_stac925x
},
5903 { .id
= 0x83847636, .name
= "STAC9251", .patch
= patch_stac925x
},
5904 { .id
= 0x83847637, .name
= "STAC9250D", .patch
= patch_stac925x
},
5905 { .id
= 0x83847645, .name
= "92HD206X", .patch
= patch_stac927x
},
5906 { .id
= 0x83847646, .name
= "92HD206D", .patch
= patch_stac927x
},
5907 /* The following does not take into account .id=0x83847661 when subsys =
5908 * 104D0C00 which is STAC9225s. Because of this, some SZ Notebooks are
5909 * currently not fully supported.
5911 { .id
= 0x83847661, .name
= "CXD9872RD/K", .patch
= patch_stac9872
},
5912 { .id
= 0x83847662, .name
= "STAC9872AK", .patch
= patch_stac9872
},
5913 { .id
= 0x83847664, .name
= "CXD9872AKD", .patch
= patch_stac9872
},
5914 { .id
= 0x83847698, .name
= "STAC9205", .patch
= patch_stac9205
},
5915 { .id
= 0x838476a0, .name
= "STAC9205", .patch
= patch_stac9205
},
5916 { .id
= 0x838476a1, .name
= "STAC9205D", .patch
= patch_stac9205
},
5917 { .id
= 0x838476a2, .name
= "STAC9204", .patch
= patch_stac9205
},
5918 { .id
= 0x838476a3, .name
= "STAC9204D", .patch
= patch_stac9205
},
5919 { .id
= 0x838476a4, .name
= "STAC9255", .patch
= patch_stac9205
},
5920 { .id
= 0x838476a5, .name
= "STAC9255D", .patch
= patch_stac9205
},
5921 { .id
= 0x838476a6, .name
= "STAC9254", .patch
= patch_stac9205
},
5922 { .id
= 0x838476a7, .name
= "STAC9254D", .patch
= patch_stac9205
},
5923 { .id
= 0x111d7603, .name
= "92HD75B3X5", .patch
= patch_stac92hd71bxx
},
5924 { .id
= 0x111d7604, .name
= "92HD83C1X5", .patch
= patch_stac92hd83xxx
},
5925 { .id
= 0x111d7605, .name
= "92HD81B1X5", .patch
= patch_stac92hd83xxx
},
5926 { .id
= 0x111d76d5, .name
= "92HD81B1C5", .patch
= patch_stac92hd83xxx
},
5927 { .id
= 0x111d7608, .name
= "92HD75B2X5", .patch
= patch_stac92hd71bxx
},
5928 { .id
= 0x111d7674, .name
= "92HD73D1X5", .patch
= patch_stac92hd73xx
},
5929 { .id
= 0x111d7675, .name
= "92HD73C1X5", .patch
= patch_stac92hd73xx
},
5930 { .id
= 0x111d7676, .name
= "92HD73E1X5", .patch
= patch_stac92hd73xx
},
5931 { .id
= 0x111d76b0, .name
= "92HD71B8X", .patch
= patch_stac92hd71bxx
},
5932 { .id
= 0x111d76b1, .name
= "92HD71B8X", .patch
= patch_stac92hd71bxx
},
5933 { .id
= 0x111d76b2, .name
= "92HD71B7X", .patch
= patch_stac92hd71bxx
},
5934 { .id
= 0x111d76b3, .name
= "92HD71B7X", .patch
= patch_stac92hd71bxx
},
5935 { .id
= 0x111d76b4, .name
= "92HD71B6X", .patch
= patch_stac92hd71bxx
},
5936 { .id
= 0x111d76b5, .name
= "92HD71B6X", .patch
= patch_stac92hd71bxx
},
5937 { .id
= 0x111d76b6, .name
= "92HD71B5X", .patch
= patch_stac92hd71bxx
},
5938 { .id
= 0x111d76b7, .name
= "92HD71B5X", .patch
= patch_stac92hd71bxx
},
5942 MODULE_ALIAS("snd-hda-codec-id:8384*");
5943 MODULE_ALIAS("snd-hda-codec-id:111d*");
5945 MODULE_LICENSE("GPL");
5946 MODULE_DESCRIPTION("IDT/Sigmatel HD-audio codec");
5948 static struct hda_codec_preset_list sigmatel_list
= {
5949 .preset
= snd_hda_preset_sigmatel
,
5950 .owner
= THIS_MODULE
,
5953 static int __init
patch_sigmatel_init(void)
5955 return snd_hda_add_codec_preset(&sigmatel_list
);
5958 static void __exit
patch_sigmatel_exit(void)
5960 snd_hda_delete_codec_preset(&sigmatel_list
);
5963 module_init(patch_sigmatel_init
)
5964 module_exit(patch_sigmatel_exit
)