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 <linux/dmi.h>
32 #include <sound/core.h>
33 #include <sound/asoundef.h>
34 #include <sound/jack.h>
35 #include <sound/tlv.h>
36 #include "hda_codec.h"
37 #include "hda_local.h"
81 STAC_92HD73XX_NO_JD
, /* no jack-detection */
95 STAC_92HD83XXX_PWR_REF
,
113 STAC_92HD71BXX_MODELS
139 STAC_INTEL_MAC_AUTO
, /* This model is selected if no module parameter
140 * is given, one of the above models will be
141 * chosen according to the subsystem id. */
142 /* for backward compatibility */
159 STAC_D965_REF_NO_JD
, /* no jack-detection */
176 struct sigmatel_event
{
183 struct sigmatel_jack
{
186 struct snd_jack
*jack
;
189 struct sigmatel_mic_route
{
192 signed char dmux_idx
;
195 struct sigmatel_spec
{
196 struct snd_kcontrol_new
*mixers
[4];
197 unsigned int num_mixers
;
200 unsigned int eapd_switch
: 1;
201 unsigned int surr_switch
: 1;
202 unsigned int alt_switch
: 1;
203 unsigned int hp_detect
: 1;
204 unsigned int spdif_mute
: 1;
205 unsigned int check_volume_offset
:1;
206 unsigned int auto_mic
:1;
207 unsigned int linear_tone_beep
:1;
210 unsigned int eapd_mask
;
211 unsigned int gpio_mask
;
212 unsigned int gpio_dir
;
213 unsigned int gpio_data
;
214 unsigned int gpio_mute
;
215 unsigned int gpio_led
;
216 unsigned int gpio_led_polarity
;
219 unsigned int stream_delay
;
221 /* analog loopback */
222 struct snd_kcontrol_new
*aloopback_ctl
;
223 unsigned char aloopback_mask
;
224 unsigned char aloopback_shift
;
226 /* power management */
227 unsigned int num_pwrs
;
228 unsigned int *pwr_mapping
;
233 struct snd_array jacks
;
236 struct snd_array events
;
239 struct hda_input_mux
*mono_mux
;
240 unsigned int cur_mmux
;
241 struct hda_multi_out multiout
;
242 hda_nid_t dac_nids
[5];
243 hda_nid_t hp_dacs
[5];
244 hda_nid_t speaker_dacs
[5];
250 unsigned int num_adcs
;
252 unsigned int num_muxes
;
253 hda_nid_t
*dmic_nids
;
254 unsigned int num_dmics
;
255 hda_nid_t
*dmux_nids
;
256 unsigned int num_dmuxes
;
257 hda_nid_t
*smux_nids
;
258 unsigned int num_smuxes
;
259 unsigned int num_analog_muxes
;
261 unsigned long *capvols
; /* amp-volume attr: HDA_COMPOSE_AMP_VAL() */
262 unsigned long *capsws
; /* amp-mute attr: HDA_COMPOSE_AMP_VAL() */
263 unsigned int num_caps
; /* number of capture volume/switch elements */
265 struct sigmatel_mic_route ext_mic
;
266 struct sigmatel_mic_route int_mic
;
267 struct sigmatel_mic_route dock_mic
;
269 const char * const *spdif_labels
;
271 hda_nid_t dig_in_nid
;
273 hda_nid_t anabeep_nid
;
274 hda_nid_t digbeep_nid
;
278 unsigned int num_pins
;
280 /* codec specific stuff */
281 struct hda_verb
*init
;
282 struct snd_kcontrol_new
*mixer
;
285 struct hda_input_mux
*dinput_mux
;
286 unsigned int cur_dmux
[2];
287 struct hda_input_mux
*input_mux
;
288 unsigned int cur_mux
[3];
289 struct hda_input_mux
*sinput_mux
;
290 unsigned int cur_smux
[2];
291 unsigned int cur_amux
;
293 unsigned int powerdown_adcs
;
296 unsigned int io_switch
[2];
297 unsigned int clfe_swap
;
298 hda_nid_t line_switch
; /* shared line-in for input and output */
299 hda_nid_t mic_switch
; /* shared mic-in for input and output */
300 hda_nid_t hp_switch
; /* NID of HP as line-out */
301 unsigned int aloopback
;
303 struct hda_pcm pcm_rec
[2]; /* PCM information */
305 /* dynamic controls and input_mux */
306 struct auto_pin_cfg autocfg
;
307 struct snd_array kctls
;
308 struct hda_input_mux private_dimux
;
309 struct hda_input_mux private_imux
;
310 struct hda_input_mux private_smux
;
311 struct hda_input_mux private_mono_mux
;
314 static hda_nid_t stac9200_adc_nids
[1] = {
318 static hda_nid_t stac9200_mux_nids
[1] = {
322 static hda_nid_t stac9200_dac_nids
[1] = {
326 static hda_nid_t stac92hd73xx_pwr_nids
[8] = {
327 0x0a, 0x0b, 0x0c, 0xd, 0x0e,
331 static hda_nid_t stac92hd73xx_slave_dig_outs
[2] = {
335 static hda_nid_t stac92hd73xx_adc_nids
[2] = {
339 #define STAC92HD73XX_NUM_DMICS 2
340 static hda_nid_t stac92hd73xx_dmic_nids
[STAC92HD73XX_NUM_DMICS
+ 1] = {
344 #define STAC92HD73_DAC_COUNT 5
346 static hda_nid_t stac92hd73xx_mux_nids
[2] = {
350 static hda_nid_t stac92hd73xx_dmux_nids
[2] = {
354 static hda_nid_t stac92hd73xx_smux_nids
[2] = {
358 #define STAC92HD73XX_NUM_CAPS 2
359 static unsigned long stac92hd73xx_capvols
[] = {
360 HDA_COMPOSE_AMP_VAL(0x20, 3, 0, HDA_OUTPUT
),
361 HDA_COMPOSE_AMP_VAL(0x21, 3, 0, HDA_OUTPUT
),
363 #define stac92hd73xx_capsws stac92hd73xx_capvols
365 #define STAC92HD83_DAC_COUNT 3
367 static hda_nid_t stac92hd83xxx_mux_nids
[2] = {
371 static hda_nid_t stac92hd83xxx_adc_nids
[2] = {
375 static hda_nid_t stac92hd83xxx_pwr_nids
[4] = {
379 static hda_nid_t stac92hd83xxx_slave_dig_outs
[2] = {
383 static unsigned int stac92hd83xxx_pwr_mapping
[4] = {
384 0x03, 0x0c, 0x20, 0x40,
387 #define STAC92HD83XXX_NUM_DMICS 2
388 static hda_nid_t stac92hd83xxx_dmic_nids
[STAC92HD83XXX_NUM_DMICS
+ 1] = {
392 #define STAC92HD88XXX_NUM_DMICS STAC92HD83XXX_NUM_DMICS
393 #define stac92hd88xxx_dmic_nids stac92hd83xxx_dmic_nids
395 #define STAC92HD87B_NUM_DMICS 1
396 static hda_nid_t stac92hd87b_dmic_nids
[STAC92HD87B_NUM_DMICS
+ 1] = {
400 #define STAC92HD83XXX_NUM_CAPS 2
401 static unsigned long stac92hd83xxx_capvols
[] = {
402 HDA_COMPOSE_AMP_VAL(0x17, 3, 0, HDA_OUTPUT
),
403 HDA_COMPOSE_AMP_VAL(0x18, 3, 0, HDA_OUTPUT
),
405 #define stac92hd83xxx_capsws stac92hd83xxx_capvols
407 static hda_nid_t stac92hd71bxx_pwr_nids
[3] = {
411 static hda_nid_t stac92hd71bxx_adc_nids
[2] = {
415 static hda_nid_t stac92hd71bxx_mux_nids
[2] = {
419 static hda_nid_t stac92hd71bxx_dmux_nids
[2] = {
423 static hda_nid_t stac92hd71bxx_smux_nids
[2] = {
427 #define STAC92HD71BXX_NUM_DMICS 2
428 static hda_nid_t stac92hd71bxx_dmic_nids
[STAC92HD71BXX_NUM_DMICS
+ 1] = {
432 static hda_nid_t stac92hd71bxx_slave_dig_outs
[2] = {
436 #define STAC92HD71BXX_NUM_CAPS 2
437 static unsigned long stac92hd71bxx_capvols
[] = {
438 HDA_COMPOSE_AMP_VAL(0x1c, 3, 0, HDA_OUTPUT
),
439 HDA_COMPOSE_AMP_VAL(0x1d, 3, 0, HDA_OUTPUT
),
441 #define stac92hd71bxx_capsws stac92hd71bxx_capvols
443 static hda_nid_t stac925x_adc_nids
[1] = {
447 static hda_nid_t stac925x_mux_nids
[1] = {
451 static hda_nid_t stac925x_dac_nids
[1] = {
455 #define STAC925X_NUM_DMICS 1
456 static hda_nid_t stac925x_dmic_nids
[STAC925X_NUM_DMICS
+ 1] = {
460 static hda_nid_t stac925x_dmux_nids
[1] = {
464 static unsigned long stac925x_capvols
[] = {
465 HDA_COMPOSE_AMP_VAL(0x09, 3, 0, HDA_OUTPUT
),
467 static unsigned long stac925x_capsws
[] = {
468 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
471 static hda_nid_t stac922x_adc_nids
[2] = {
475 static hda_nid_t stac922x_mux_nids
[2] = {
479 #define STAC922X_NUM_CAPS 2
480 static unsigned long stac922x_capvols
[] = {
481 HDA_COMPOSE_AMP_VAL(0x17, 3, 0, HDA_INPUT
),
482 HDA_COMPOSE_AMP_VAL(0x18, 3, 0, HDA_INPUT
),
484 #define stac922x_capsws stac922x_capvols
486 static hda_nid_t stac927x_slave_dig_outs
[2] = {
490 static hda_nid_t stac927x_adc_nids
[3] = {
494 static hda_nid_t stac927x_mux_nids
[3] = {
498 static hda_nid_t stac927x_smux_nids
[1] = {
502 static hda_nid_t stac927x_dac_nids
[6] = {
503 0x02, 0x03, 0x04, 0x05, 0x06, 0
506 static hda_nid_t stac927x_dmux_nids
[1] = {
510 #define STAC927X_NUM_DMICS 2
511 static hda_nid_t stac927x_dmic_nids
[STAC927X_NUM_DMICS
+ 1] = {
515 #define STAC927X_NUM_CAPS 3
516 static unsigned long stac927x_capvols
[] = {
517 HDA_COMPOSE_AMP_VAL(0x18, 3, 0, HDA_INPUT
),
518 HDA_COMPOSE_AMP_VAL(0x19, 3, 0, HDA_INPUT
),
519 HDA_COMPOSE_AMP_VAL(0x1a, 3, 0, HDA_INPUT
),
521 static unsigned long stac927x_capsws
[] = {
522 HDA_COMPOSE_AMP_VAL(0x1b, 3, 0, HDA_OUTPUT
),
523 HDA_COMPOSE_AMP_VAL(0x1c, 3, 0, HDA_OUTPUT
),
524 HDA_COMPOSE_AMP_VAL(0x1d, 3, 0, HDA_OUTPUT
),
527 static const char * const stac927x_spdif_labels
[5] = {
528 "Digital Playback", "ADAT", "Analog Mux 1",
529 "Analog Mux 2", "Analog Mux 3"
532 static hda_nid_t stac9205_adc_nids
[2] = {
536 static hda_nid_t stac9205_mux_nids
[2] = {
540 static hda_nid_t stac9205_dmux_nids
[1] = {
544 static hda_nid_t stac9205_smux_nids
[1] = {
548 #define STAC9205_NUM_DMICS 2
549 static hda_nid_t stac9205_dmic_nids
[STAC9205_NUM_DMICS
+ 1] = {
553 #define STAC9205_NUM_CAPS 2
554 static unsigned long stac9205_capvols
[] = {
555 HDA_COMPOSE_AMP_VAL(0x1b, 3, 0, HDA_INPUT
),
556 HDA_COMPOSE_AMP_VAL(0x1c, 3, 0, HDA_INPUT
),
558 static unsigned long stac9205_capsws
[] = {
559 HDA_COMPOSE_AMP_VAL(0x1d, 3, 0, HDA_OUTPUT
),
560 HDA_COMPOSE_AMP_VAL(0x1e, 3, 0, HDA_OUTPUT
),
563 static hda_nid_t stac9200_pin_nids
[8] = {
564 0x08, 0x09, 0x0d, 0x0e,
565 0x0f, 0x10, 0x11, 0x12,
568 static hda_nid_t stac925x_pin_nids
[8] = {
569 0x07, 0x08, 0x0a, 0x0b,
570 0x0c, 0x0d, 0x10, 0x11,
573 static hda_nid_t stac922x_pin_nids
[10] = {
574 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
575 0x0f, 0x10, 0x11, 0x15, 0x1b,
578 static hda_nid_t stac92hd73xx_pin_nids
[13] = {
579 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
580 0x0f, 0x10, 0x11, 0x12, 0x13,
584 static hda_nid_t stac92hd83xxx_pin_nids
[10] = {
585 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
586 0x0f, 0x10, 0x11, 0x1f, 0x20,
589 static hda_nid_t stac92hd88xxx_pin_nids
[10] = {
590 0x0a, 0x0b, 0x0c, 0x0d,
591 0x0f, 0x11, 0x1f, 0x20,
594 #define STAC92HD71BXX_NUM_PINS 13
595 static hda_nid_t stac92hd71bxx_pin_nids_4port
[STAC92HD71BXX_NUM_PINS
] = {
596 0x0a, 0x0b, 0x0c, 0x0d, 0x00,
597 0x00, 0x14, 0x18, 0x19, 0x1e,
600 static hda_nid_t stac92hd71bxx_pin_nids_6port
[STAC92HD71BXX_NUM_PINS
] = {
601 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
602 0x0f, 0x14, 0x18, 0x19, 0x1e,
606 static hda_nid_t stac927x_pin_nids
[14] = {
607 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
608 0x0f, 0x10, 0x11, 0x12, 0x13,
609 0x14, 0x21, 0x22, 0x23,
612 static hda_nid_t stac9205_pin_nids
[12] = {
613 0x0a, 0x0b, 0x0c, 0x0d, 0x0e,
614 0x0f, 0x14, 0x16, 0x17, 0x18,
618 static int stac92xx_dmux_enum_info(struct snd_kcontrol
*kcontrol
,
619 struct snd_ctl_elem_info
*uinfo
)
621 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
622 struct sigmatel_spec
*spec
= codec
->spec
;
623 return snd_hda_input_mux_info(spec
->dinput_mux
, uinfo
);
626 static int stac92xx_dmux_enum_get(struct snd_kcontrol
*kcontrol
,
627 struct snd_ctl_elem_value
*ucontrol
)
629 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
630 struct sigmatel_spec
*spec
= codec
->spec
;
631 unsigned int dmux_idx
= snd_ctl_get_ioffidx(kcontrol
, &ucontrol
->id
);
633 ucontrol
->value
.enumerated
.item
[0] = spec
->cur_dmux
[dmux_idx
];
637 static int stac92xx_dmux_enum_put(struct snd_kcontrol
*kcontrol
,
638 struct snd_ctl_elem_value
*ucontrol
)
640 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
641 struct sigmatel_spec
*spec
= codec
->spec
;
642 unsigned int dmux_idx
= snd_ctl_get_ioffidx(kcontrol
, &ucontrol
->id
);
644 return snd_hda_input_mux_put(codec
, spec
->dinput_mux
, ucontrol
,
645 spec
->dmux_nids
[dmux_idx
], &spec
->cur_dmux
[dmux_idx
]);
648 static int stac92xx_smux_enum_info(struct snd_kcontrol
*kcontrol
,
649 struct snd_ctl_elem_info
*uinfo
)
651 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
652 struct sigmatel_spec
*spec
= codec
->spec
;
653 return snd_hda_input_mux_info(spec
->sinput_mux
, uinfo
);
656 static int stac92xx_smux_enum_get(struct snd_kcontrol
*kcontrol
,
657 struct snd_ctl_elem_value
*ucontrol
)
659 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
660 struct sigmatel_spec
*spec
= codec
->spec
;
661 unsigned int smux_idx
= snd_ctl_get_ioffidx(kcontrol
, &ucontrol
->id
);
663 ucontrol
->value
.enumerated
.item
[0] = spec
->cur_smux
[smux_idx
];
667 static int stac92xx_smux_enum_put(struct snd_kcontrol
*kcontrol
,
668 struct snd_ctl_elem_value
*ucontrol
)
670 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
671 struct sigmatel_spec
*spec
= codec
->spec
;
672 struct hda_input_mux
*smux
= &spec
->private_smux
;
673 unsigned int smux_idx
= snd_ctl_get_ioffidx(kcontrol
, &ucontrol
->id
);
677 err
= snd_hda_input_mux_put(codec
, spec
->sinput_mux
, ucontrol
,
678 spec
->smux_nids
[smux_idx
], &spec
->cur_smux
[smux_idx
]);
682 if (spec
->spdif_mute
) {
684 nid
= spec
->multiout
.dig_out_nid
;
686 nid
= codec
->slave_dig_outs
[smux_idx
- 1];
687 if (spec
->cur_smux
[smux_idx
] == smux
->num_items
- 1)
691 /* un/mute SPDIF out */
692 snd_hda_codec_amp_stereo(codec
, nid
, HDA_OUTPUT
, 0,
698 static unsigned int stac92xx_vref_set(struct hda_codec
*codec
,
699 hda_nid_t nid
, unsigned int new_vref
)
703 pincfg
= snd_hda_codec_read(codec
, nid
, 0,
704 AC_VERB_GET_PIN_WIDGET_CONTROL
, 0);
707 pincfg
&= ~(AC_PINCTL_VREFEN
| AC_PINCTL_IN_EN
| AC_PINCTL_OUT_EN
);
710 if (new_vref
== AC_PINCTL_VREF_HIZ
)
711 pincfg
|= AC_PINCTL_OUT_EN
;
713 pincfg
|= AC_PINCTL_IN_EN
;
715 error
= snd_hda_codec_write_cache(codec
, nid
, 0,
716 AC_VERB_SET_PIN_WIDGET_CONTROL
, pincfg
);
723 static unsigned int stac92xx_vref_get(struct hda_codec
*codec
, hda_nid_t nid
)
726 vref
= snd_hda_codec_read(codec
, nid
, 0,
727 AC_VERB_GET_PIN_WIDGET_CONTROL
, 0);
728 vref
&= AC_PINCTL_VREFEN
;
732 static int stac92xx_mux_enum_info(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
734 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
735 struct sigmatel_spec
*spec
= codec
->spec
;
736 return snd_hda_input_mux_info(spec
->input_mux
, uinfo
);
739 static int stac92xx_mux_enum_get(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
741 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
742 struct sigmatel_spec
*spec
= codec
->spec
;
743 unsigned int adc_idx
= snd_ctl_get_ioffidx(kcontrol
, &ucontrol
->id
);
745 ucontrol
->value
.enumerated
.item
[0] = spec
->cur_mux
[adc_idx
];
749 static int stac92xx_mux_enum_put(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
751 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
752 struct sigmatel_spec
*spec
= codec
->spec
;
753 unsigned int adc_idx
= snd_ctl_get_ioffidx(kcontrol
, &ucontrol
->id
);
754 const struct hda_input_mux
*imux
= spec
->input_mux
;
755 unsigned int idx
, prev_idx
;
757 idx
= ucontrol
->value
.enumerated
.item
[0];
758 if (idx
>= imux
->num_items
)
759 idx
= imux
->num_items
- 1;
760 prev_idx
= spec
->cur_mux
[adc_idx
];
763 if (idx
< spec
->num_analog_muxes
) {
764 snd_hda_codec_write_cache(codec
, spec
->mux_nids
[adc_idx
], 0,
765 AC_VERB_SET_CONNECT_SEL
,
766 imux
->items
[idx
].index
);
767 if (prev_idx
>= spec
->num_analog_muxes
) {
768 imux
= spec
->dinput_mux
;
770 snd_hda_codec_write_cache(codec
,
771 spec
->dmux_nids
[adc_idx
], 0,
772 AC_VERB_SET_CONNECT_SEL
,
773 imux
->items
[0].index
);
776 imux
= spec
->dinput_mux
;
777 snd_hda_codec_write_cache(codec
, spec
->dmux_nids
[adc_idx
], 0,
778 AC_VERB_SET_CONNECT_SEL
,
779 imux
->items
[idx
- 1].index
);
781 spec
->cur_mux
[adc_idx
] = idx
;
785 static int stac92xx_mono_mux_enum_info(struct snd_kcontrol
*kcontrol
,
786 struct snd_ctl_elem_info
*uinfo
)
788 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
789 struct sigmatel_spec
*spec
= codec
->spec
;
790 return snd_hda_input_mux_info(spec
->mono_mux
, uinfo
);
793 static int stac92xx_mono_mux_enum_get(struct snd_kcontrol
*kcontrol
,
794 struct snd_ctl_elem_value
*ucontrol
)
796 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
797 struct sigmatel_spec
*spec
= codec
->spec
;
799 ucontrol
->value
.enumerated
.item
[0] = spec
->cur_mmux
;
803 static int stac92xx_mono_mux_enum_put(struct snd_kcontrol
*kcontrol
,
804 struct snd_ctl_elem_value
*ucontrol
)
806 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
807 struct sigmatel_spec
*spec
= codec
->spec
;
809 return snd_hda_input_mux_put(codec
, spec
->mono_mux
, ucontrol
,
810 spec
->mono_nid
, &spec
->cur_mmux
);
813 #define stac92xx_aloopback_info snd_ctl_boolean_mono_info
815 static int stac92xx_aloopback_get(struct snd_kcontrol
*kcontrol
,
816 struct snd_ctl_elem_value
*ucontrol
)
818 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
819 unsigned int idx
= snd_ctl_get_ioffidx(kcontrol
, &ucontrol
->id
);
820 struct sigmatel_spec
*spec
= codec
->spec
;
822 ucontrol
->value
.integer
.value
[0] = !!(spec
->aloopback
&
823 (spec
->aloopback_mask
<< idx
));
827 static int stac92xx_aloopback_put(struct snd_kcontrol
*kcontrol
,
828 struct snd_ctl_elem_value
*ucontrol
)
830 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
831 struct sigmatel_spec
*spec
= codec
->spec
;
832 unsigned int idx
= snd_ctl_get_ioffidx(kcontrol
, &ucontrol
->id
);
833 unsigned int dac_mode
;
834 unsigned int val
, idx_val
;
836 idx_val
= spec
->aloopback_mask
<< idx
;
837 if (ucontrol
->value
.integer
.value
[0])
838 val
= spec
->aloopback
| idx_val
;
840 val
= spec
->aloopback
& ~idx_val
;
841 if (spec
->aloopback
== val
)
844 spec
->aloopback
= val
;
846 /* Only return the bits defined by the shift value of the
847 * first two bytes of the mask
849 dac_mode
= snd_hda_codec_read(codec
, codec
->afg
, 0,
850 kcontrol
->private_value
& 0xFFFF, 0x0);
851 dac_mode
>>= spec
->aloopback_shift
;
853 if (spec
->aloopback
& idx_val
) {
854 snd_hda_power_up(codec
);
857 snd_hda_power_down(codec
);
858 dac_mode
&= ~idx_val
;
861 snd_hda_codec_write_cache(codec
, codec
->afg
, 0,
862 kcontrol
->private_value
>> 16, dac_mode
);
867 static struct hda_verb stac9200_core_init
[] = {
868 /* set dac0mux for dac converter */
869 { 0x07, AC_VERB_SET_CONNECT_SEL
, 0x00},
873 static struct hda_verb stac9200_eapd_init
[] = {
874 /* set dac0mux for dac converter */
875 {0x07, AC_VERB_SET_CONNECT_SEL
, 0x00},
876 {0x08, AC_VERB_SET_EAPD_BTLENABLE
, 0x02},
880 static struct hda_verb dell_eq_core_init
[] = {
881 /* set master volume to max value without distortion
882 * and direct control */
883 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL
, 0xec},
887 static struct hda_verb stac92hd73xx_core_init
[] = {
888 /* set master volume and direct control */
889 { 0x1f, AC_VERB_SET_VOLUME_KNOB_CONTROL
, 0xff},
893 static struct hda_verb stac92hd83xxx_core_init
[] = {
894 /* power state controls amps */
895 { 0x01, AC_VERB_SET_EAPD
, 1 << 2},
899 static struct hda_verb stac92hd71bxx_core_init
[] = {
900 /* set master volume and direct control */
901 { 0x28, AC_VERB_SET_VOLUME_KNOB_CONTROL
, 0xff},
905 static struct hda_verb stac92hd71bxx_unmute_core_init
[] = {
906 /* unmute right and left channels for nodes 0x0f, 0xa, 0x0d */
907 { 0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
908 { 0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
909 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
913 static struct hda_verb stac925x_core_init
[] = {
914 /* set dac0mux for dac converter */
915 { 0x06, AC_VERB_SET_CONNECT_SEL
, 0x00},
916 /* mute the master volume */
917 { 0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
921 static struct hda_verb stac922x_core_init
[] = {
922 /* set master volume and direct control */
923 { 0x16, AC_VERB_SET_VOLUME_KNOB_CONTROL
, 0xff},
927 static struct hda_verb d965_core_init
[] = {
928 /* set master volume and direct control */
929 { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL
, 0xff},
930 /* unmute node 0x1b */
931 { 0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb000},
932 /* select node 0x03 as DAC */
933 { 0x0b, AC_VERB_SET_CONNECT_SEL
, 0x01},
937 static struct hda_verb dell_3st_core_init
[] = {
938 /* don't set delta bit */
939 {0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL
, 0x7f},
940 /* unmute node 0x1b */
941 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb000},
942 /* select node 0x03 as DAC */
943 {0x0b, AC_VERB_SET_CONNECT_SEL
, 0x01},
947 static struct hda_verb stac927x_core_init
[] = {
948 /* set master volume and direct control */
949 { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL
, 0xff},
950 /* enable analog pc beep path */
951 { 0x01, AC_VERB_SET_DIGI_CONVERT_2
, 1 << 5},
955 static struct hda_verb stac927x_volknob_core_init
[] = {
956 /* don't set delta bit */
957 {0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL
, 0x7f},
958 /* enable analog pc beep path */
959 {0x01, AC_VERB_SET_DIGI_CONVERT_2
, 1 << 5},
963 static struct hda_verb stac9205_core_init
[] = {
964 /* set master volume and direct control */
965 { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL
, 0xff},
966 /* enable analog pc beep path */
967 { 0x01, AC_VERB_SET_DIGI_CONVERT_2
, 1 << 5},
971 #define STAC_MONO_MUX \
973 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
974 .name = "Mono Mux", \
976 .info = stac92xx_mono_mux_enum_info, \
977 .get = stac92xx_mono_mux_enum_get, \
978 .put = stac92xx_mono_mux_enum_put, \
981 #define STAC_ANALOG_LOOPBACK(verb_read, verb_write, cnt) \
983 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
984 .name = "Analog Loopback", \
986 .info = stac92xx_aloopback_info, \
987 .get = stac92xx_aloopback_get, \
988 .put = stac92xx_aloopback_put, \
989 .private_value = verb_read | (verb_write << 16), \
992 #define DC_BIAS(xname, idx, nid) \
994 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
997 .info = stac92xx_dc_bias_info, \
998 .get = stac92xx_dc_bias_get, \
999 .put = stac92xx_dc_bias_put, \
1000 .private_value = nid, \
1003 static struct snd_kcontrol_new stac9200_mixer
[] = {
1004 HDA_CODEC_VOLUME_MIN_MUTE("Master Playback Volume", 0xb, 0, HDA_OUTPUT
),
1005 HDA_CODEC_MUTE("Master Playback Switch", 0xb, 0, HDA_OUTPUT
),
1006 HDA_CODEC_VOLUME("Capture Volume", 0x0a, 0, HDA_OUTPUT
),
1007 HDA_CODEC_MUTE("Capture Switch", 0x0a, 0, HDA_OUTPUT
),
1011 static struct snd_kcontrol_new stac92hd73xx_6ch_loopback
[] = {
1012 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 3),
1016 static struct snd_kcontrol_new stac92hd73xx_8ch_loopback
[] = {
1017 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 4),
1021 static struct snd_kcontrol_new stac92hd73xx_10ch_loopback
[] = {
1022 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A1, 5),
1027 static struct snd_kcontrol_new stac92hd71bxx_loopback
[] = {
1028 STAC_ANALOG_LOOPBACK(0xFA0, 0x7A0, 2)
1031 static struct snd_kcontrol_new stac925x_mixer
[] = {
1032 HDA_CODEC_VOLUME_MIN_MUTE("Master Playback Volume", 0xe, 0, HDA_OUTPUT
),
1033 HDA_CODEC_MUTE("Master Playback Switch", 0x0e, 0, HDA_OUTPUT
),
1037 static struct snd_kcontrol_new stac9205_loopback
[] = {
1038 STAC_ANALOG_LOOPBACK(0xFE0, 0x7E0, 1),
1042 static struct snd_kcontrol_new stac927x_loopback
[] = {
1043 STAC_ANALOG_LOOPBACK(0xFEB, 0x7EB, 1),
1047 static struct snd_kcontrol_new stac_dmux_mixer
= {
1048 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1049 .name
= "Digital Input Source",
1050 /* count set later */
1051 .info
= stac92xx_dmux_enum_info
,
1052 .get
= stac92xx_dmux_enum_get
,
1053 .put
= stac92xx_dmux_enum_put
,
1056 static struct snd_kcontrol_new stac_smux_mixer
= {
1057 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1058 .name
= "IEC958 Playback Source",
1059 /* count set later */
1060 .info
= stac92xx_smux_enum_info
,
1061 .get
= stac92xx_smux_enum_get
,
1062 .put
= stac92xx_smux_enum_put
,
1065 static const char * const slave_vols
[] = {
1066 "Front Playback Volume",
1067 "Surround Playback Volume",
1068 "Center Playback Volume",
1069 "LFE Playback Volume",
1070 "Side Playback Volume",
1071 "Headphone Playback Volume",
1072 "Speaker Playback Volume",
1076 static const char * const slave_sws
[] = {
1077 "Front Playback Switch",
1078 "Surround Playback Switch",
1079 "Center Playback Switch",
1080 "LFE Playback Switch",
1081 "Side Playback Switch",
1082 "Headphone Playback Switch",
1083 "Speaker Playback Switch",
1084 "IEC958 Playback Switch",
1088 static void stac92xx_free_kctls(struct hda_codec
*codec
);
1089 static int stac92xx_add_jack(struct hda_codec
*codec
, hda_nid_t nid
, int type
);
1091 static int stac92xx_build_controls(struct hda_codec
*codec
)
1093 struct sigmatel_spec
*spec
= codec
->spec
;
1094 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
1100 err
= snd_hda_add_new_ctls(codec
, spec
->mixer
);
1105 for (i
= 0; i
< spec
->num_mixers
; i
++) {
1106 err
= snd_hda_add_new_ctls(codec
, spec
->mixers
[i
]);
1110 if (!spec
->auto_mic
&& spec
->num_dmuxes
> 0 &&
1111 snd_hda_get_bool_hint(codec
, "separate_dmux") == 1) {
1112 stac_dmux_mixer
.count
= spec
->num_dmuxes
;
1113 err
= snd_hda_ctl_add(codec
, 0,
1114 snd_ctl_new1(&stac_dmux_mixer
, codec
));
1118 if (spec
->num_smuxes
> 0) {
1119 int wcaps
= get_wcaps(codec
, spec
->multiout
.dig_out_nid
);
1120 struct hda_input_mux
*smux
= &spec
->private_smux
;
1121 /* check for mute support on SPDIF out */
1122 if (wcaps
& AC_WCAP_OUT_AMP
) {
1123 snd_hda_add_imux_item(smux
, "Off", 0, NULL
);
1124 spec
->spdif_mute
= 1;
1126 stac_smux_mixer
.count
= spec
->num_smuxes
;
1127 err
= snd_hda_ctl_add(codec
, 0,
1128 snd_ctl_new1(&stac_smux_mixer
, codec
));
1133 if (spec
->multiout
.dig_out_nid
) {
1134 err
= snd_hda_create_spdif_out_ctls(codec
, spec
->multiout
.dig_out_nid
);
1137 err
= snd_hda_create_spdif_share_sw(codec
,
1141 spec
->multiout
.share_spdif
= 1;
1143 if (spec
->dig_in_nid
&& !(spec
->gpio_dir
& 0x01)) {
1144 err
= snd_hda_create_spdif_in_ctls(codec
, spec
->dig_in_nid
);
1149 /* if we have no master control, let's create it */
1150 if (!snd_hda_find_mixer_ctl(codec
, "Master Playback Volume")) {
1151 unsigned int vmaster_tlv
[4];
1152 snd_hda_set_vmaster_tlv(codec
, spec
->multiout
.dac_nids
[0],
1153 HDA_OUTPUT
, vmaster_tlv
);
1154 /* correct volume offset */
1155 vmaster_tlv
[2] += vmaster_tlv
[3] * spec
->volume_offset
;
1156 /* minimum value is actually mute */
1157 vmaster_tlv
[3] |= TLV_DB_SCALE_MUTE
;
1158 err
= snd_hda_add_vmaster(codec
, "Master Playback Volume",
1159 vmaster_tlv
, slave_vols
);
1163 if (!snd_hda_find_mixer_ctl(codec
, "Master Playback Switch")) {
1164 err
= snd_hda_add_vmaster(codec
, "Master Playback Switch",
1170 if (spec
->aloopback_ctl
&&
1171 snd_hda_get_bool_hint(codec
, "loopback") == 1) {
1172 err
= snd_hda_add_new_ctls(codec
, spec
->aloopback_ctl
);
1177 stac92xx_free_kctls(codec
); /* no longer needed */
1179 /* create jack input elements */
1180 if (spec
->hp_detect
) {
1181 for (i
= 0; i
< cfg
->hp_outs
; i
++) {
1182 int type
= SND_JACK_HEADPHONE
;
1183 nid
= cfg
->hp_pins
[i
];
1184 /* jack detection */
1185 if (cfg
->hp_outs
== i
)
1186 type
|= SND_JACK_LINEOUT
;
1187 err
= stac92xx_add_jack(codec
, nid
, type
);
1192 for (i
= 0; i
< cfg
->line_outs
; i
++) {
1193 err
= stac92xx_add_jack(codec
, cfg
->line_out_pins
[i
],
1198 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
1199 nid
= cfg
->inputs
[i
].pin
;
1200 err
= stac92xx_add_jack(codec
, nid
, SND_JACK_MICROPHONE
);
1208 static unsigned int ref9200_pin_configs
[8] = {
1209 0x01c47010, 0x01447010, 0x0221401f, 0x01114010,
1210 0x02a19020, 0x01a19021, 0x90100140, 0x01813122,
1213 static unsigned int gateway9200_m4_pin_configs
[8] = {
1214 0x400000fe, 0x404500f4, 0x400100f0, 0x90110010,
1215 0x400100f1, 0x02a1902e, 0x500000f2, 0x500000f3,
1217 static unsigned int gateway9200_m4_2_pin_configs
[8] = {
1218 0x400000fe, 0x404500f4, 0x400100f0, 0x90110010,
1219 0x400100f1, 0x02a1902e, 0x500000f2, 0x500000f3,
1223 STAC 9200 pin configs for
1228 static unsigned int dell9200_d21_pin_configs
[8] = {
1229 0x400001f0, 0x400001f1, 0x02214030, 0x01014010,
1230 0x02a19020, 0x01a19021, 0x90100140, 0x01813122,
1234 STAC 9200 pin configs for
1238 static unsigned int dell9200_d22_pin_configs
[8] = {
1239 0x400001f0, 0x400001f1, 0x0221401f, 0x01014010,
1240 0x01813020, 0x02a19021, 0x90100140, 0x400001f2,
1244 STAC 9200 pin configs for
1245 102801C4 (Dell Dimension E310)
1252 static unsigned int dell9200_d23_pin_configs
[8] = {
1253 0x400001f0, 0x400001f1, 0x0221401f, 0x01014010,
1254 0x01813020, 0x01a19021, 0x90100140, 0x400001f2,
1259 STAC 9200-32 pin configs for
1260 102801B5 (Dell Inspiron 630m)
1261 102801D8 (Dell Inspiron 640m)
1263 static unsigned int dell9200_m21_pin_configs
[8] = {
1264 0x40c003fa, 0x03441340, 0x0321121f, 0x90170310,
1265 0x408003fb, 0x03a11020, 0x401003fc, 0x403003fd,
1269 STAC 9200-32 pin configs for
1270 102801C2 (Dell Latitude D620)
1272 102801CC (Dell Latitude D820)
1276 static unsigned int dell9200_m22_pin_configs
[8] = {
1277 0x40c003fa, 0x0144131f, 0x0321121f, 0x90170310,
1278 0x90a70321, 0x03a11020, 0x401003fb, 0x40f000fc,
1282 STAC 9200-32 pin configs for
1283 102801CE (Dell XPS M1710)
1284 102801CF (Dell Precision M90)
1286 static unsigned int dell9200_m23_pin_configs
[8] = {
1287 0x40c003fa, 0x01441340, 0x0421421f, 0x90170310,
1288 0x408003fb, 0x04a1102e, 0x90170311, 0x403003fc,
1292 STAC 9200-32 pin configs for
1295 102801CB (Dell Latitude 120L)
1298 static unsigned int dell9200_m24_pin_configs
[8] = {
1299 0x40c003fa, 0x404003fb, 0x0321121f, 0x90170310,
1300 0x408003fc, 0x03a11020, 0x401003fd, 0x403003fe,
1304 STAC 9200-32 pin configs for
1305 102801BD (Dell Inspiron E1505n)
1309 static unsigned int dell9200_m25_pin_configs
[8] = {
1310 0x40c003fa, 0x01441340, 0x0421121f, 0x90170310,
1311 0x408003fb, 0x04a11020, 0x401003fc, 0x403003fd,
1315 STAC 9200-32 pin configs for
1316 102801F5 (Dell Inspiron 1501)
1319 static unsigned int dell9200_m26_pin_configs
[8] = {
1320 0x40c003fa, 0x404003fb, 0x0421121f, 0x90170310,
1321 0x408003fc, 0x04a11020, 0x401003fd, 0x403003fe,
1326 102801CD (Dell Inspiron E1705/9400)
1328 static unsigned int dell9200_m27_pin_configs
[8] = {
1329 0x40c003fa, 0x01441340, 0x0421121f, 0x90170310,
1330 0x90170310, 0x04a11020, 0x90170310, 0x40f003fc,
1333 static unsigned int oqo9200_pin_configs
[8] = {
1334 0x40c000f0, 0x404000f1, 0x0221121f, 0x02211210,
1335 0x90170111, 0x90a70120, 0x400000f2, 0x400000f3,
1339 static unsigned int *stac9200_brd_tbl
[STAC_9200_MODELS
] = {
1340 [STAC_REF
] = ref9200_pin_configs
,
1341 [STAC_9200_OQO
] = oqo9200_pin_configs
,
1342 [STAC_9200_DELL_D21
] = dell9200_d21_pin_configs
,
1343 [STAC_9200_DELL_D22
] = dell9200_d22_pin_configs
,
1344 [STAC_9200_DELL_D23
] = dell9200_d23_pin_configs
,
1345 [STAC_9200_DELL_M21
] = dell9200_m21_pin_configs
,
1346 [STAC_9200_DELL_M22
] = dell9200_m22_pin_configs
,
1347 [STAC_9200_DELL_M23
] = dell9200_m23_pin_configs
,
1348 [STAC_9200_DELL_M24
] = dell9200_m24_pin_configs
,
1349 [STAC_9200_DELL_M25
] = dell9200_m25_pin_configs
,
1350 [STAC_9200_DELL_M26
] = dell9200_m26_pin_configs
,
1351 [STAC_9200_DELL_M27
] = dell9200_m27_pin_configs
,
1352 [STAC_9200_M4
] = gateway9200_m4_pin_configs
,
1353 [STAC_9200_M4_2
] = gateway9200_m4_2_pin_configs
,
1354 [STAC_9200_PANASONIC
] = ref9200_pin_configs
,
1357 static const char * const stac9200_models
[STAC_9200_MODELS
] = {
1358 [STAC_AUTO
] = "auto",
1360 [STAC_9200_OQO
] = "oqo",
1361 [STAC_9200_DELL_D21
] = "dell-d21",
1362 [STAC_9200_DELL_D22
] = "dell-d22",
1363 [STAC_9200_DELL_D23
] = "dell-d23",
1364 [STAC_9200_DELL_M21
] = "dell-m21",
1365 [STAC_9200_DELL_M22
] = "dell-m22",
1366 [STAC_9200_DELL_M23
] = "dell-m23",
1367 [STAC_9200_DELL_M24
] = "dell-m24",
1368 [STAC_9200_DELL_M25
] = "dell-m25",
1369 [STAC_9200_DELL_M26
] = "dell-m26",
1370 [STAC_9200_DELL_M27
] = "dell-m27",
1371 [STAC_9200_M4
] = "gateway-m4",
1372 [STAC_9200_M4_2
] = "gateway-m4-2",
1373 [STAC_9200_PANASONIC
] = "panasonic",
1376 static struct snd_pci_quirk stac9200_cfg_tbl
[] = {
1377 /* SigmaTel reference board */
1378 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x2668,
1379 "DFI LanParty", STAC_REF
),
1380 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI
, 0x3101,
1381 "DFI LanParty", STAC_REF
),
1382 /* Dell laptops have BIOS problem */
1383 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01a8,
1384 "unknown Dell", STAC_9200_DELL_D21
),
1385 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01b5,
1386 "Dell Inspiron 630m", STAC_9200_DELL_M21
),
1387 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01bd,
1388 "Dell Inspiron E1505n", STAC_9200_DELL_M25
),
1389 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01c0,
1390 "unknown Dell", STAC_9200_DELL_D22
),
1391 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01c1,
1392 "unknown Dell", STAC_9200_DELL_D22
),
1393 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01c2,
1394 "Dell Latitude D620", STAC_9200_DELL_M22
),
1395 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01c5,
1396 "unknown Dell", STAC_9200_DELL_D23
),
1397 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01c7,
1398 "unknown Dell", STAC_9200_DELL_D23
),
1399 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01c8,
1400 "unknown Dell", STAC_9200_DELL_M22
),
1401 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01c9,
1402 "unknown Dell", STAC_9200_DELL_M24
),
1403 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01ca,
1404 "unknown Dell", STAC_9200_DELL_M24
),
1405 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01cb,
1406 "Dell Latitude 120L", STAC_9200_DELL_M24
),
1407 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01cc,
1408 "Dell Latitude D820", STAC_9200_DELL_M22
),
1409 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01cd,
1410 "Dell Inspiron E1705/9400", STAC_9200_DELL_M27
),
1411 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01ce,
1412 "Dell XPS M1710", STAC_9200_DELL_M23
),
1413 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01cf,
1414 "Dell Precision M90", STAC_9200_DELL_M23
),
1415 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01d3,
1416 "unknown Dell", STAC_9200_DELL_M22
),
1417 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01d4,
1418 "unknown Dell", STAC_9200_DELL_M22
),
1419 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01d6,
1420 "unknown Dell", STAC_9200_DELL_M22
),
1421 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01d8,
1422 "Dell Inspiron 640m", STAC_9200_DELL_M21
),
1423 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01d9,
1424 "unknown Dell", STAC_9200_DELL_D23
),
1425 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01da,
1426 "unknown Dell", STAC_9200_DELL_D23
),
1427 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01de,
1428 "unknown Dell", STAC_9200_DELL_D21
),
1429 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01e3,
1430 "unknown Dell", STAC_9200_DELL_D23
),
1431 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01e8,
1432 "unknown Dell", STAC_9200_DELL_D21
),
1433 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01ee,
1434 "unknown Dell", STAC_9200_DELL_M25
),
1435 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01ef,
1436 "unknown Dell", STAC_9200_DELL_M25
),
1437 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01f5,
1438 "Dell Inspiron 1501", STAC_9200_DELL_M26
),
1439 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01f6,
1440 "unknown Dell", STAC_9200_DELL_M26
),
1442 SND_PCI_QUIRK(0x10f7, 0x8338, "Panasonic CF-74", STAC_9200_PANASONIC
),
1443 /* Gateway machines needs EAPD to be set on resume */
1444 SND_PCI_QUIRK(0x107b, 0x0205, "Gateway S-7110M", STAC_9200_M4
),
1445 SND_PCI_QUIRK(0x107b, 0x0317, "Gateway MT3423, MX341*", STAC_9200_M4_2
),
1446 SND_PCI_QUIRK(0x107b, 0x0318, "Gateway ML3019, MT3707", STAC_9200_M4_2
),
1448 SND_PCI_QUIRK(0x1106, 0x3288, "OQO Model 2", STAC_9200_OQO
),
1452 static unsigned int ref925x_pin_configs
[8] = {
1453 0x40c003f0, 0x424503f2, 0x01813022, 0x02a19021,
1454 0x90a70320, 0x02214210, 0x01019020, 0x9033032e,
1457 static unsigned int stac925xM1_pin_configs
[8] = {
1458 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1459 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1462 static unsigned int stac925xM1_2_pin_configs
[8] = {
1463 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1464 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1467 static unsigned int stac925xM2_pin_configs
[8] = {
1468 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1469 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1472 static unsigned int stac925xM2_2_pin_configs
[8] = {
1473 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1474 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1477 static unsigned int stac925xM3_pin_configs
[8] = {
1478 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1479 0x40a000f0, 0x90100210, 0x400003f1, 0x503303f3,
1482 static unsigned int stac925xM5_pin_configs
[8] = {
1483 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1484 0x40a000f0, 0x90100210, 0x400003f1, 0x9033032e,
1487 static unsigned int stac925xM6_pin_configs
[8] = {
1488 0x40c003f4, 0x424503f2, 0x400000f3, 0x02a19020,
1489 0x40a000f0, 0x90100210, 0x400003f1, 0x90330320,
1492 static unsigned int *stac925x_brd_tbl
[STAC_925x_MODELS
] = {
1493 [STAC_REF
] = ref925x_pin_configs
,
1494 [STAC_M1
] = stac925xM1_pin_configs
,
1495 [STAC_M1_2
] = stac925xM1_2_pin_configs
,
1496 [STAC_M2
] = stac925xM2_pin_configs
,
1497 [STAC_M2_2
] = stac925xM2_2_pin_configs
,
1498 [STAC_M3
] = stac925xM3_pin_configs
,
1499 [STAC_M5
] = stac925xM5_pin_configs
,
1500 [STAC_M6
] = stac925xM6_pin_configs
,
1503 static const char * const stac925x_models
[STAC_925x_MODELS
] = {
1504 [STAC_925x_AUTO
] = "auto",
1507 [STAC_M1_2
] = "m1-2",
1509 [STAC_M2_2
] = "m2-2",
1515 static struct snd_pci_quirk stac925x_codec_id_cfg_tbl
[] = {
1516 SND_PCI_QUIRK(0x107b, 0x0316, "Gateway M255", STAC_M2
),
1517 SND_PCI_QUIRK(0x107b, 0x0366, "Gateway MP6954", STAC_M5
),
1518 SND_PCI_QUIRK(0x107b, 0x0461, "Gateway NX560XL", STAC_M1
),
1519 SND_PCI_QUIRK(0x107b, 0x0681, "Gateway NX860", STAC_M2
),
1520 SND_PCI_QUIRK(0x107b, 0x0367, "Gateway MX6453", STAC_M1_2
),
1521 /* Not sure about the brand name for those */
1522 SND_PCI_QUIRK(0x107b, 0x0281, "Gateway mobile", STAC_M1
),
1523 SND_PCI_QUIRK(0x107b, 0x0507, "Gateway mobile", STAC_M3
),
1524 SND_PCI_QUIRK(0x107b, 0x0281, "Gateway mobile", STAC_M6
),
1525 SND_PCI_QUIRK(0x107b, 0x0685, "Gateway mobile", STAC_M2_2
),
1529 static struct snd_pci_quirk stac925x_cfg_tbl
[] = {
1530 /* SigmaTel reference board */
1531 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x2668, "DFI LanParty", STAC_REF
),
1532 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI
, 0x3101, "DFI LanParty", STAC_REF
),
1533 SND_PCI_QUIRK(0x8384, 0x7632, "Stac9202 Reference Board", STAC_REF
),
1535 /* Default table for unknown ID */
1536 SND_PCI_QUIRK(0x1002, 0x437b, "Gateway mobile", STAC_M2_2
),
1541 static unsigned int ref92hd73xx_pin_configs
[13] = {
1542 0x02214030, 0x02a19040, 0x01a19020, 0x02214030,
1543 0x0181302e, 0x01014010, 0x01014020, 0x01014030,
1544 0x02319040, 0x90a000f0, 0x90a000f0, 0x01452050,
1548 static unsigned int dell_m6_pin_configs
[13] = {
1549 0x0321101f, 0x4f00000f, 0x4f0000f0, 0x90170110,
1550 0x03a11020, 0x0321101f, 0x4f0000f0, 0x4f0000f0,
1551 0x4f0000f0, 0x90a60160, 0x4f0000f0, 0x4f0000f0,
1555 static unsigned int alienware_m17x_pin_configs
[13] = {
1556 0x0321101f, 0x0321101f, 0x03a11020, 0x03014020,
1557 0x90170110, 0x4f0000f0, 0x4f0000f0, 0x4f0000f0,
1558 0x4f0000f0, 0x90a60160, 0x4f0000f0, 0x4f0000f0,
1562 static unsigned int intel_dg45id_pin_configs
[13] = {
1563 0x02214230, 0x02A19240, 0x01013214, 0x01014210,
1564 0x01A19250, 0x01011212, 0x01016211
1567 static unsigned int *stac92hd73xx_brd_tbl
[STAC_92HD73XX_MODELS
] = {
1568 [STAC_92HD73XX_REF
] = ref92hd73xx_pin_configs
,
1569 [STAC_DELL_M6_AMIC
] = dell_m6_pin_configs
,
1570 [STAC_DELL_M6_DMIC
] = dell_m6_pin_configs
,
1571 [STAC_DELL_M6_BOTH
] = dell_m6_pin_configs
,
1572 [STAC_DELL_EQ
] = dell_m6_pin_configs
,
1573 [STAC_ALIENWARE_M17X
] = alienware_m17x_pin_configs
,
1574 [STAC_92HD73XX_INTEL
] = intel_dg45id_pin_configs
,
1577 static const char * const stac92hd73xx_models
[STAC_92HD73XX_MODELS
] = {
1578 [STAC_92HD73XX_AUTO
] = "auto",
1579 [STAC_92HD73XX_NO_JD
] = "no-jd",
1580 [STAC_92HD73XX_REF
] = "ref",
1581 [STAC_92HD73XX_INTEL
] = "intel",
1582 [STAC_DELL_M6_AMIC
] = "dell-m6-amic",
1583 [STAC_DELL_M6_DMIC
] = "dell-m6-dmic",
1584 [STAC_DELL_M6_BOTH
] = "dell-m6",
1585 [STAC_DELL_EQ
] = "dell-eq",
1586 [STAC_ALIENWARE_M17X
] = "alienware",
1589 static struct snd_pci_quirk stac92hd73xx_cfg_tbl
[] = {
1590 /* SigmaTel reference board */
1591 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x2668,
1592 "DFI LanParty", STAC_92HD73XX_REF
),
1593 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI
, 0x3101,
1594 "DFI LanParty", STAC_92HD73XX_REF
),
1595 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x5002,
1596 "Intel DG45ID", STAC_92HD73XX_INTEL
),
1597 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x5003,
1598 "Intel DG45FC", STAC_92HD73XX_INTEL
),
1599 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0254,
1600 "Dell Studio 1535", STAC_DELL_M6_DMIC
),
1601 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0255,
1602 "unknown Dell", STAC_DELL_M6_DMIC
),
1603 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0256,
1604 "unknown Dell", STAC_DELL_M6_BOTH
),
1605 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0257,
1606 "unknown Dell", STAC_DELL_M6_BOTH
),
1607 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x025e,
1608 "unknown Dell", STAC_DELL_M6_AMIC
),
1609 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x025f,
1610 "unknown Dell", STAC_DELL_M6_AMIC
),
1611 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0271,
1612 "unknown Dell", STAC_DELL_M6_DMIC
),
1613 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0272,
1614 "unknown Dell", STAC_DELL_M6_DMIC
),
1615 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x029f,
1616 "Dell Studio 1537", STAC_DELL_M6_DMIC
),
1617 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x02a0,
1618 "Dell Studio 17", STAC_DELL_M6_DMIC
),
1619 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x02be,
1620 "Dell Studio 1555", STAC_DELL_M6_DMIC
),
1621 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x02bd,
1622 "Dell Studio 1557", STAC_DELL_M6_DMIC
),
1623 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x02fe,
1624 "Dell Studio XPS 1645", STAC_DELL_M6_BOTH
),
1625 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0413,
1626 "Dell Studio 1558", STAC_DELL_M6_BOTH
),
1630 static struct snd_pci_quirk stac92hd73xx_codec_id_cfg_tbl
[] = {
1631 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x02a1,
1632 "Alienware M17x", STAC_ALIENWARE_M17X
),
1633 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x043a,
1634 "Alienware M17x", STAC_ALIENWARE_M17X
),
1638 static unsigned int ref92hd83xxx_pin_configs
[10] = {
1639 0x02214030, 0x02211010, 0x02a19020, 0x02170130,
1640 0x01014050, 0x01819040, 0x01014020, 0x90a3014e,
1641 0x01451160, 0x98560170,
1644 static unsigned int dell_s14_pin_configs
[10] = {
1645 0x0221403f, 0x0221101f, 0x02a19020, 0x90170110,
1646 0x40f000f0, 0x40f000f0, 0x40f000f0, 0x90a60160,
1647 0x40f000f0, 0x40f000f0,
1650 static unsigned int hp_dv7_4000_pin_configs
[10] = {
1651 0x03a12050, 0x0321201f, 0x40f000f0, 0x90170110,
1652 0x40f000f0, 0x40f000f0, 0x90170110, 0xd5a30140,
1653 0x40f000f0, 0x40f000f0,
1656 static unsigned int *stac92hd83xxx_brd_tbl
[STAC_92HD83XXX_MODELS
] = {
1657 [STAC_92HD83XXX_REF
] = ref92hd83xxx_pin_configs
,
1658 [STAC_92HD83XXX_PWR_REF
] = ref92hd83xxx_pin_configs
,
1659 [STAC_DELL_S14
] = dell_s14_pin_configs
,
1660 [STAC_HP_DV7_4000
] = hp_dv7_4000_pin_configs
,
1663 static const char * const stac92hd83xxx_models
[STAC_92HD83XXX_MODELS
] = {
1664 [STAC_92HD83XXX_AUTO
] = "auto",
1665 [STAC_92HD83XXX_REF
] = "ref",
1666 [STAC_92HD83XXX_PWR_REF
] = "mic-ref",
1667 [STAC_DELL_S14
] = "dell-s14",
1668 [STAC_92HD83XXX_HP
] = "hp",
1669 [STAC_HP_DV7_4000
] = "hp-dv7-4000",
1672 static struct snd_pci_quirk stac92hd83xxx_cfg_tbl
[] = {
1673 /* SigmaTel reference board */
1674 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x2668,
1675 "DFI LanParty", STAC_92HD83XXX_REF
),
1676 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI
, 0x3101,
1677 "DFI LanParty", STAC_92HD83XXX_REF
),
1678 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x02ba,
1679 "unknown Dell", STAC_DELL_S14
),
1680 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP
, 0xff00, 0x3600,
1681 "HP", STAC_92HD83XXX_HP
),
1685 static unsigned int ref92hd71bxx_pin_configs
[STAC92HD71BXX_NUM_PINS
] = {
1686 0x02214030, 0x02a19040, 0x01a19020, 0x01014010,
1687 0x0181302e, 0x01014010, 0x01019020, 0x90a000f0,
1688 0x90a000f0, 0x01452050, 0x01452050, 0x00000000,
1692 static unsigned int dell_m4_1_pin_configs
[STAC92HD71BXX_NUM_PINS
] = {
1693 0x0421101f, 0x04a11221, 0x40f000f0, 0x90170110,
1694 0x23a1902e, 0x23014250, 0x40f000f0, 0x90a000f0,
1695 0x40f000f0, 0x4f0000f0, 0x4f0000f0, 0x00000000,
1699 static unsigned int dell_m4_2_pin_configs
[STAC92HD71BXX_NUM_PINS
] = {
1700 0x0421101f, 0x04a11221, 0x90a70330, 0x90170110,
1701 0x23a1902e, 0x23014250, 0x40f000f0, 0x40f000f0,
1702 0x40f000f0, 0x044413b0, 0x044413b0, 0x00000000,
1706 static unsigned int dell_m4_3_pin_configs
[STAC92HD71BXX_NUM_PINS
] = {
1707 0x0421101f, 0x04a11221, 0x90a70330, 0x90170110,
1708 0x40f000f0, 0x40f000f0, 0x40f000f0, 0x90a000f0,
1709 0x40f000f0, 0x044413b0, 0x044413b0, 0x00000000,
1713 static unsigned int *stac92hd71bxx_brd_tbl
[STAC_92HD71BXX_MODELS
] = {
1714 [STAC_92HD71BXX_REF
] = ref92hd71bxx_pin_configs
,
1715 [STAC_DELL_M4_1
] = dell_m4_1_pin_configs
,
1716 [STAC_DELL_M4_2
] = dell_m4_2_pin_configs
,
1717 [STAC_DELL_M4_3
] = dell_m4_3_pin_configs
,
1718 [STAC_HP_M4
] = NULL
,
1719 [STAC_HP_DV4
] = NULL
,
1720 [STAC_HP_DV5
] = NULL
,
1721 [STAC_HP_HDX
] = NULL
,
1722 [STAC_HP_DV4_1222NR
] = NULL
,
1725 static const char * const stac92hd71bxx_models
[STAC_92HD71BXX_MODELS
] = {
1726 [STAC_92HD71BXX_AUTO
] = "auto",
1727 [STAC_92HD71BXX_REF
] = "ref",
1728 [STAC_DELL_M4_1
] = "dell-m4-1",
1729 [STAC_DELL_M4_2
] = "dell-m4-2",
1730 [STAC_DELL_M4_3
] = "dell-m4-3",
1731 [STAC_HP_M4
] = "hp-m4",
1732 [STAC_HP_DV4
] = "hp-dv4",
1733 [STAC_HP_DV5
] = "hp-dv5",
1734 [STAC_HP_HDX
] = "hp-hdx",
1735 [STAC_HP_DV4_1222NR
] = "hp-dv4-1222nr",
1738 static struct snd_pci_quirk stac92hd71bxx_cfg_tbl
[] = {
1739 /* SigmaTel reference board */
1740 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x2668,
1741 "DFI LanParty", STAC_92HD71BXX_REF
),
1742 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI
, 0x3101,
1743 "DFI LanParty", STAC_92HD71BXX_REF
),
1744 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x30fb,
1745 "HP dv4-1222nr", STAC_HP_DV4_1222NR
),
1746 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP
, 0xfff0, 0x1720,
1748 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP
, 0xfff0, 0x3080,
1750 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP
, 0xfff0, 0x30f0,
1751 "HP dv4-7", STAC_HP_DV4
),
1752 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP
, 0xfff0, 0x3600,
1753 "HP dv4-7", STAC_HP_DV5
),
1754 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x3610,
1755 "HP HDX", STAC_HP_HDX
), /* HDX18 */
1756 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x361a,
1757 "HP mini 1000", STAC_HP_M4
),
1758 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x361b,
1759 "HP HDX", STAC_HP_HDX
), /* HDX16 */
1760 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP
, 0xfff0, 0x3620,
1761 "HP dv6", STAC_HP_DV5
),
1762 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x3061,
1763 "HP dv6", STAC_HP_DV5
), /* HP dv6-1110ax */
1764 SND_PCI_QUIRK(PCI_VENDOR_ID_HP
, 0x363e,
1765 "HP DV6", STAC_HP_DV5
),
1766 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP
, 0xfff0, 0x7010,
1768 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0233,
1769 "unknown Dell", STAC_DELL_M4_1
),
1770 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0234,
1771 "unknown Dell", STAC_DELL_M4_1
),
1772 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0250,
1773 "unknown Dell", STAC_DELL_M4_1
),
1774 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x024f,
1775 "unknown Dell", STAC_DELL_M4_1
),
1776 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x024d,
1777 "unknown Dell", STAC_DELL_M4_1
),
1778 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0251,
1779 "unknown Dell", STAC_DELL_M4_1
),
1780 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0277,
1781 "unknown Dell", STAC_DELL_M4_1
),
1782 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0263,
1783 "unknown Dell", STAC_DELL_M4_2
),
1784 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0265,
1785 "unknown Dell", STAC_DELL_M4_2
),
1786 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0262,
1787 "unknown Dell", STAC_DELL_M4_2
),
1788 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0264,
1789 "unknown Dell", STAC_DELL_M4_2
),
1790 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x02aa,
1791 "unknown Dell", STAC_DELL_M4_3
),
1795 static unsigned int ref922x_pin_configs
[10] = {
1796 0x01014010, 0x01016011, 0x01012012, 0x0221401f,
1797 0x01813122, 0x01011014, 0x01441030, 0x01c41030,
1798 0x40000100, 0x40000100,
1802 STAC 922X pin configs for
1809 static unsigned int dell_922x_d81_pin_configs
[10] = {
1810 0x02214030, 0x01a19021, 0x01111012, 0x01114010,
1811 0x02a19020, 0x01117011, 0x400001f0, 0x400001f1,
1812 0x01813122, 0x400001f2,
1816 STAC 922X pin configs for
1820 static unsigned int dell_922x_d82_pin_configs
[10] = {
1821 0x02214030, 0x01a19021, 0x01111012, 0x01114010,
1822 0x02a19020, 0x01117011, 0x01451140, 0x400001f0,
1823 0x01813122, 0x400001f1,
1827 STAC 922X pin configs for
1830 static unsigned int dell_922x_m81_pin_configs
[10] = {
1831 0x0321101f, 0x01112024, 0x01111222, 0x91174220,
1832 0x03a11050, 0x01116221, 0x90a70330, 0x01452340,
1833 0x40C003f1, 0x405003f0,
1837 STAC 9221 A1 pin configs for
1838 102801D7 (Dell XPS M1210)
1840 static unsigned int dell_922x_m82_pin_configs
[10] = {
1841 0x02211211, 0x408103ff, 0x02a1123e, 0x90100310,
1842 0x408003f1, 0x0221121f, 0x03451340, 0x40c003f2,
1843 0x508003f3, 0x405003f4,
1846 static unsigned int d945gtp3_pin_configs
[10] = {
1847 0x0221401f, 0x01a19022, 0x01813021, 0x01014010,
1848 0x40000100, 0x40000100, 0x40000100, 0x40000100,
1849 0x02a19120, 0x40000100,
1852 static unsigned int d945gtp5_pin_configs
[10] = {
1853 0x0221401f, 0x01011012, 0x01813024, 0x01014010,
1854 0x01a19021, 0x01016011, 0x01452130, 0x40000100,
1855 0x02a19320, 0x40000100,
1858 static unsigned int intel_mac_v1_pin_configs
[10] = {
1859 0x0121e21f, 0x400000ff, 0x9017e110, 0x400000fd,
1860 0x400000fe, 0x0181e020, 0x1145e030, 0x11c5e240,
1861 0x400000fc, 0x400000fb,
1864 static unsigned int intel_mac_v2_pin_configs
[10] = {
1865 0x0121e21f, 0x90a7012e, 0x9017e110, 0x400000fd,
1866 0x400000fe, 0x0181e020, 0x1145e230, 0x500000fa,
1867 0x400000fc, 0x400000fb,
1870 static unsigned int intel_mac_v3_pin_configs
[10] = {
1871 0x0121e21f, 0x90a7012e, 0x9017e110, 0x400000fd,
1872 0x400000fe, 0x0181e020, 0x1145e230, 0x11c5e240,
1873 0x400000fc, 0x400000fb,
1876 static unsigned int intel_mac_v4_pin_configs
[10] = {
1877 0x0321e21f, 0x03a1e02e, 0x9017e110, 0x9017e11f,
1878 0x400000fe, 0x0381e020, 0x1345e230, 0x13c5e240,
1879 0x400000fc, 0x400000fb,
1882 static unsigned int intel_mac_v5_pin_configs
[10] = {
1883 0x0321e21f, 0x03a1e02e, 0x9017e110, 0x9017e11f,
1884 0x400000fe, 0x0381e020, 0x1345e230, 0x13c5e240,
1885 0x400000fc, 0x400000fb,
1888 static unsigned int ecs202_pin_configs
[10] = {
1889 0x0221401f, 0x02a19020, 0x01a19020, 0x01114010,
1890 0x408000f0, 0x01813022, 0x074510a0, 0x40c400f1,
1891 0x9037012e, 0x40e000f2,
1894 static unsigned int *stac922x_brd_tbl
[STAC_922X_MODELS
] = {
1895 [STAC_D945_REF
] = ref922x_pin_configs
,
1896 [STAC_D945GTP3
] = d945gtp3_pin_configs
,
1897 [STAC_D945GTP5
] = d945gtp5_pin_configs
,
1898 [STAC_INTEL_MAC_V1
] = intel_mac_v1_pin_configs
,
1899 [STAC_INTEL_MAC_V2
] = intel_mac_v2_pin_configs
,
1900 [STAC_INTEL_MAC_V3
] = intel_mac_v3_pin_configs
,
1901 [STAC_INTEL_MAC_V4
] = intel_mac_v4_pin_configs
,
1902 [STAC_INTEL_MAC_V5
] = intel_mac_v5_pin_configs
,
1903 [STAC_INTEL_MAC_AUTO
] = intel_mac_v3_pin_configs
,
1904 /* for backward compatibility */
1905 [STAC_MACMINI
] = intel_mac_v3_pin_configs
,
1906 [STAC_MACBOOK
] = intel_mac_v5_pin_configs
,
1907 [STAC_MACBOOK_PRO_V1
] = intel_mac_v3_pin_configs
,
1908 [STAC_MACBOOK_PRO_V2
] = intel_mac_v3_pin_configs
,
1909 [STAC_IMAC_INTEL
] = intel_mac_v2_pin_configs
,
1910 [STAC_IMAC_INTEL_20
] = intel_mac_v3_pin_configs
,
1911 [STAC_ECS_202
] = ecs202_pin_configs
,
1912 [STAC_922X_DELL_D81
] = dell_922x_d81_pin_configs
,
1913 [STAC_922X_DELL_D82
] = dell_922x_d82_pin_configs
,
1914 [STAC_922X_DELL_M81
] = dell_922x_m81_pin_configs
,
1915 [STAC_922X_DELL_M82
] = dell_922x_m82_pin_configs
,
1918 static const char * const stac922x_models
[STAC_922X_MODELS
] = {
1919 [STAC_922X_AUTO
] = "auto",
1920 [STAC_D945_REF
] = "ref",
1921 [STAC_D945GTP5
] = "5stack",
1922 [STAC_D945GTP3
] = "3stack",
1923 [STAC_INTEL_MAC_V1
] = "intel-mac-v1",
1924 [STAC_INTEL_MAC_V2
] = "intel-mac-v2",
1925 [STAC_INTEL_MAC_V3
] = "intel-mac-v3",
1926 [STAC_INTEL_MAC_V4
] = "intel-mac-v4",
1927 [STAC_INTEL_MAC_V5
] = "intel-mac-v5",
1928 [STAC_INTEL_MAC_AUTO
] = "intel-mac-auto",
1929 /* for backward compatibility */
1930 [STAC_MACMINI
] = "macmini",
1931 [STAC_MACBOOK
] = "macbook",
1932 [STAC_MACBOOK_PRO_V1
] = "macbook-pro-v1",
1933 [STAC_MACBOOK_PRO_V2
] = "macbook-pro",
1934 [STAC_IMAC_INTEL
] = "imac-intel",
1935 [STAC_IMAC_INTEL_20
] = "imac-intel-20",
1936 [STAC_ECS_202
] = "ecs202",
1937 [STAC_922X_DELL_D81
] = "dell-d81",
1938 [STAC_922X_DELL_D82
] = "dell-d82",
1939 [STAC_922X_DELL_M81
] = "dell-m81",
1940 [STAC_922X_DELL_M82
] = "dell-m82",
1943 static struct snd_pci_quirk stac922x_cfg_tbl
[] = {
1944 /* SigmaTel reference board */
1945 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x2668,
1946 "DFI LanParty", STAC_D945_REF
),
1947 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI
, 0x3101,
1948 "DFI LanParty", STAC_D945_REF
),
1949 /* Intel 945G based systems */
1950 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0101,
1951 "Intel D945G", STAC_D945GTP3
),
1952 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0202,
1953 "Intel D945G", STAC_D945GTP3
),
1954 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0606,
1955 "Intel D945G", STAC_D945GTP3
),
1956 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0601,
1957 "Intel D945G", STAC_D945GTP3
),
1958 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0111,
1959 "Intel D945G", STAC_D945GTP3
),
1960 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x1115,
1961 "Intel D945G", STAC_D945GTP3
),
1962 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x1116,
1963 "Intel D945G", STAC_D945GTP3
),
1964 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x1117,
1965 "Intel D945G", STAC_D945GTP3
),
1966 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x1118,
1967 "Intel D945G", STAC_D945GTP3
),
1968 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x1119,
1969 "Intel D945G", STAC_D945GTP3
),
1970 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x8826,
1971 "Intel D945G", STAC_D945GTP3
),
1972 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x5049,
1973 "Intel D945G", STAC_D945GTP3
),
1974 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x5055,
1975 "Intel D945G", STAC_D945GTP3
),
1976 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x5048,
1977 "Intel D945G", STAC_D945GTP3
),
1978 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0110,
1979 "Intel D945G", STAC_D945GTP3
),
1980 /* Intel D945G 5-stack systems */
1981 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0404,
1982 "Intel D945G", STAC_D945GTP5
),
1983 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0303,
1984 "Intel D945G", STAC_D945GTP5
),
1985 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0013,
1986 "Intel D945G", STAC_D945GTP5
),
1987 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0417,
1988 "Intel D945G", STAC_D945GTP5
),
1989 /* Intel 945P based systems */
1990 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0b0b,
1991 "Intel D945P", STAC_D945GTP3
),
1992 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0112,
1993 "Intel D945P", STAC_D945GTP3
),
1994 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0d0d,
1995 "Intel D945P", STAC_D945GTP3
),
1996 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0909,
1997 "Intel D945P", STAC_D945GTP3
),
1998 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0505,
1999 "Intel D945P", STAC_D945GTP3
),
2000 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0707,
2001 "Intel D945P", STAC_D945GTP5
),
2003 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x0204,
2004 "Intel D945", STAC_D945_REF
),
2006 /* Apple Intel Mac (Mac Mini, MacBook, MacBook Pro...) */
2007 SND_PCI_QUIRK(0x8384, 0x7680,
2008 "Mac", STAC_INTEL_MAC_AUTO
),
2010 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01a7,
2011 "unknown Dell", STAC_922X_DELL_D81
),
2012 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01a9,
2013 "unknown Dell", STAC_922X_DELL_D81
),
2014 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01ab,
2015 "unknown Dell", STAC_922X_DELL_D81
),
2016 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01ac,
2017 "unknown Dell", STAC_922X_DELL_D82
),
2018 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01bf,
2019 "unknown Dell", STAC_922X_DELL_M81
),
2020 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01d0,
2021 "unknown Dell", STAC_922X_DELL_D82
),
2022 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01d1,
2023 "unknown Dell", STAC_922X_DELL_D81
),
2024 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01d2,
2025 "unknown Dell", STAC_922X_DELL_D81
),
2026 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01d7,
2027 "Dell XPS M1210", STAC_922X_DELL_M82
),
2028 /* ECS/PC Chips boards */
2029 SND_PCI_QUIRK_MASK(0x1019, 0xf000, 0x2000,
2030 "ECS/PC chips", STAC_ECS_202
),
2034 static unsigned int ref927x_pin_configs
[14] = {
2035 0x02214020, 0x02a19080, 0x0181304e, 0x01014010,
2036 0x01a19040, 0x01011012, 0x01016011, 0x0101201f,
2037 0x183301f0, 0x18a001f0, 0x18a001f0, 0x01442070,
2038 0x01c42190, 0x40000100,
2041 static unsigned int d965_3st_pin_configs
[14] = {
2042 0x0221401f, 0x02a19120, 0x40000100, 0x01014011,
2043 0x01a19021, 0x01813024, 0x40000100, 0x40000100,
2044 0x40000100, 0x40000100, 0x40000100, 0x40000100,
2045 0x40000100, 0x40000100
2048 static unsigned int d965_5st_pin_configs
[14] = {
2049 0x02214020, 0x02a19080, 0x0181304e, 0x01014010,
2050 0x01a19040, 0x01011012, 0x01016011, 0x40000100,
2051 0x40000100, 0x40000100, 0x40000100, 0x01442070,
2052 0x40000100, 0x40000100
2055 static unsigned int d965_5st_no_fp_pin_configs
[14] = {
2056 0x40000100, 0x40000100, 0x0181304e, 0x01014010,
2057 0x01a19040, 0x01011012, 0x01016011, 0x40000100,
2058 0x40000100, 0x40000100, 0x40000100, 0x01442070,
2059 0x40000100, 0x40000100
2062 static unsigned int dell_3st_pin_configs
[14] = {
2063 0x02211230, 0x02a11220, 0x01a19040, 0x01114210,
2064 0x01111212, 0x01116211, 0x01813050, 0x01112214,
2065 0x403003fa, 0x90a60040, 0x90a60040, 0x404003fb,
2066 0x40c003fc, 0x40000100
2069 static unsigned int *stac927x_brd_tbl
[STAC_927X_MODELS
] = {
2070 [STAC_D965_REF_NO_JD
] = ref927x_pin_configs
,
2071 [STAC_D965_REF
] = ref927x_pin_configs
,
2072 [STAC_D965_3ST
] = d965_3st_pin_configs
,
2073 [STAC_D965_5ST
] = d965_5st_pin_configs
,
2074 [STAC_D965_5ST_NO_FP
] = d965_5st_no_fp_pin_configs
,
2075 [STAC_DELL_3ST
] = dell_3st_pin_configs
,
2076 [STAC_DELL_BIOS
] = NULL
,
2077 [STAC_927X_VOLKNOB
] = NULL
,
2080 static const char * const stac927x_models
[STAC_927X_MODELS
] = {
2081 [STAC_927X_AUTO
] = "auto",
2082 [STAC_D965_REF_NO_JD
] = "ref-no-jd",
2083 [STAC_D965_REF
] = "ref",
2084 [STAC_D965_3ST
] = "3stack",
2085 [STAC_D965_5ST
] = "5stack",
2086 [STAC_D965_5ST_NO_FP
] = "5stack-no-fp",
2087 [STAC_DELL_3ST
] = "dell-3stack",
2088 [STAC_DELL_BIOS
] = "dell-bios",
2089 [STAC_927X_VOLKNOB
] = "volknob",
2092 static struct snd_pci_quirk stac927x_cfg_tbl
[] = {
2093 /* SigmaTel reference board */
2094 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x2668,
2095 "DFI LanParty", STAC_D965_REF
),
2096 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI
, 0x3101,
2097 "DFI LanParty", STAC_D965_REF
),
2098 /* Intel 946 based systems */
2099 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x3d01, "Intel D946", STAC_D965_3ST
),
2100 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0xa301, "Intel D946", STAC_D965_3ST
),
2101 /* 965 based 3 stack systems */
2102 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL
, 0xff00, 0x2100,
2103 "Intel D965", STAC_D965_3ST
),
2104 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL
, 0xff00, 0x2000,
2105 "Intel D965", STAC_D965_3ST
),
2106 /* Dell 3 stack systems */
2107 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01dd, "Dell Dimension E520", STAC_DELL_3ST
),
2108 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01ed, "Dell ", STAC_DELL_3ST
),
2109 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01f4, "Dell ", STAC_DELL_3ST
),
2110 /* Dell 3 stack systems with verb table in BIOS */
2111 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01f3, "Dell Inspiron 1420", STAC_DELL_BIOS
),
2112 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01f7, "Dell XPS M1730", STAC_DELL_BIOS
),
2113 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0227, "Dell Vostro 1400 ", STAC_DELL_BIOS
),
2114 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x022e, "Dell ", STAC_DELL_BIOS
),
2115 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x022f, "Dell Inspiron 1525", STAC_DELL_BIOS
),
2116 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0242, "Dell ", STAC_DELL_BIOS
),
2117 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0243, "Dell ", STAC_DELL_BIOS
),
2118 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x02ff, "Dell ", STAC_DELL_BIOS
),
2119 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0209, "Dell XPS 1330", STAC_DELL_BIOS
),
2120 /* 965 based 5 stack systems */
2121 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL
, 0xff00, 0x2300,
2122 "Intel D965", STAC_D965_5ST
),
2123 SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL
, 0xff00, 0x2500,
2124 "Intel D965", STAC_D965_5ST
),
2125 /* volume-knob fixes */
2126 SND_PCI_QUIRK_VENDOR(0x10cf, "FSC", STAC_927X_VOLKNOB
),
2130 static unsigned int ref9205_pin_configs
[12] = {
2131 0x40000100, 0x40000100, 0x01016011, 0x01014010,
2132 0x01813122, 0x01a19021, 0x01019020, 0x40000100,
2133 0x90a000f0, 0x90a000f0, 0x01441030, 0x01c41030
2137 STAC 9205 pin configs for
2144 10280228 (Dell Vostro 1500)
2145 10280229 (Dell Vostro 1700)
2147 static unsigned int dell_9205_m42_pin_configs
[12] = {
2148 0x0321101F, 0x03A11020, 0x400003FA, 0x90170310,
2149 0x400003FB, 0x400003FC, 0x400003FD, 0x40F000F9,
2150 0x90A60330, 0x400003FF, 0x0144131F, 0x40C003FE,
2154 STAC 9205 pin configs for
2158 102801FF (Dell Precision M4300)
2163 static unsigned int dell_9205_m43_pin_configs
[12] = {
2164 0x0321101f, 0x03a11020, 0x90a70330, 0x90170310,
2165 0x400000fe, 0x400000ff, 0x400000fd, 0x40f000f9,
2166 0x400000fa, 0x400000fc, 0x0144131f, 0x40c003f8,
2169 static unsigned int dell_9205_m44_pin_configs
[12] = {
2170 0x0421101f, 0x04a11020, 0x400003fa, 0x90170310,
2171 0x400003fb, 0x400003fc, 0x400003fd, 0x400003f9,
2172 0x90a60330, 0x400003ff, 0x01441340, 0x40c003fe,
2175 static unsigned int *stac9205_brd_tbl
[STAC_9205_MODELS
] = {
2176 [STAC_9205_REF
] = ref9205_pin_configs
,
2177 [STAC_9205_DELL_M42
] = dell_9205_m42_pin_configs
,
2178 [STAC_9205_DELL_M43
] = dell_9205_m43_pin_configs
,
2179 [STAC_9205_DELL_M44
] = dell_9205_m44_pin_configs
,
2180 [STAC_9205_EAPD
] = NULL
,
2183 static const char * const stac9205_models
[STAC_9205_MODELS
] = {
2184 [STAC_9205_AUTO
] = "auto",
2185 [STAC_9205_REF
] = "ref",
2186 [STAC_9205_DELL_M42
] = "dell-m42",
2187 [STAC_9205_DELL_M43
] = "dell-m43",
2188 [STAC_9205_DELL_M44
] = "dell-m44",
2189 [STAC_9205_EAPD
] = "eapd",
2192 static struct snd_pci_quirk stac9205_cfg_tbl
[] = {
2193 /* SigmaTel reference board */
2194 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0x2668,
2195 "DFI LanParty", STAC_9205_REF
),
2196 SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL
, 0xfb30,
2197 "SigmaTel", STAC_9205_REF
),
2198 SND_PCI_QUIRK(PCI_VENDOR_ID_DFI
, 0x3101,
2199 "DFI LanParty", STAC_9205_REF
),
2201 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01f1,
2202 "unknown Dell", STAC_9205_DELL_M42
),
2203 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01f2,
2204 "unknown Dell", STAC_9205_DELL_M42
),
2205 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01f8,
2206 "Dell Precision", STAC_9205_DELL_M43
),
2207 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01f9,
2208 "Dell Precision", STAC_9205_DELL_M43
),
2209 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01fa,
2210 "Dell Precision", STAC_9205_DELL_M43
),
2211 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01fc,
2212 "unknown Dell", STAC_9205_DELL_M42
),
2213 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01fd,
2214 "unknown Dell", STAC_9205_DELL_M42
),
2215 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01fe,
2216 "Dell Precision", STAC_9205_DELL_M43
),
2217 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x01ff,
2218 "Dell Precision M4300", STAC_9205_DELL_M43
),
2219 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0204,
2220 "unknown Dell", STAC_9205_DELL_M42
),
2221 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0206,
2222 "Dell Precision", STAC_9205_DELL_M43
),
2223 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x021b,
2224 "Dell Precision", STAC_9205_DELL_M43
),
2225 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x021c,
2226 "Dell Precision", STAC_9205_DELL_M43
),
2227 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x021f,
2228 "Dell Inspiron", STAC_9205_DELL_M44
),
2229 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0228,
2230 "Dell Vostro 1500", STAC_9205_DELL_M42
),
2231 SND_PCI_QUIRK(PCI_VENDOR_ID_DELL
, 0x0229,
2232 "Dell Vostro 1700", STAC_9205_DELL_M42
),
2234 SND_PCI_QUIRK(0x107b, 0x0560, "Gateway T6834c", STAC_9205_EAPD
),
2235 SND_PCI_QUIRK(0x107b, 0x0565, "Gateway T1616", STAC_9205_EAPD
),
2239 static void stac92xx_set_config_regs(struct hda_codec
*codec
,
2240 unsigned int *pincfgs
)
2243 struct sigmatel_spec
*spec
= codec
->spec
;
2248 for (i
= 0; i
< spec
->num_pins
; i
++)
2249 if (spec
->pin_nids
[i
] && pincfgs
[i
])
2250 snd_hda_codec_set_pincfg(codec
, spec
->pin_nids
[i
],
2255 * Analog playback callbacks
2257 static int stac92xx_playback_pcm_open(struct hda_pcm_stream
*hinfo
,
2258 struct hda_codec
*codec
,
2259 struct snd_pcm_substream
*substream
)
2261 struct sigmatel_spec
*spec
= codec
->spec
;
2262 if (spec
->stream_delay
)
2263 msleep(spec
->stream_delay
);
2264 return snd_hda_multi_out_analog_open(codec
, &spec
->multiout
, substream
,
2268 static int stac92xx_playback_pcm_prepare(struct hda_pcm_stream
*hinfo
,
2269 struct hda_codec
*codec
,
2270 unsigned int stream_tag
,
2271 unsigned int format
,
2272 struct snd_pcm_substream
*substream
)
2274 struct sigmatel_spec
*spec
= codec
->spec
;
2275 return snd_hda_multi_out_analog_prepare(codec
, &spec
->multiout
, stream_tag
, format
, substream
);
2278 static int stac92xx_playback_pcm_cleanup(struct hda_pcm_stream
*hinfo
,
2279 struct hda_codec
*codec
,
2280 struct snd_pcm_substream
*substream
)
2282 struct sigmatel_spec
*spec
= codec
->spec
;
2283 return snd_hda_multi_out_analog_cleanup(codec
, &spec
->multiout
);
2287 * Digital playback callbacks
2289 static int stac92xx_dig_playback_pcm_open(struct hda_pcm_stream
*hinfo
,
2290 struct hda_codec
*codec
,
2291 struct snd_pcm_substream
*substream
)
2293 struct sigmatel_spec
*spec
= codec
->spec
;
2294 return snd_hda_multi_out_dig_open(codec
, &spec
->multiout
);
2297 static int stac92xx_dig_playback_pcm_close(struct hda_pcm_stream
*hinfo
,
2298 struct hda_codec
*codec
,
2299 struct snd_pcm_substream
*substream
)
2301 struct sigmatel_spec
*spec
= codec
->spec
;
2302 return snd_hda_multi_out_dig_close(codec
, &spec
->multiout
);
2305 static int stac92xx_dig_playback_pcm_prepare(struct hda_pcm_stream
*hinfo
,
2306 struct hda_codec
*codec
,
2307 unsigned int stream_tag
,
2308 unsigned int format
,
2309 struct snd_pcm_substream
*substream
)
2311 struct sigmatel_spec
*spec
= codec
->spec
;
2312 return snd_hda_multi_out_dig_prepare(codec
, &spec
->multiout
,
2313 stream_tag
, format
, substream
);
2316 static int stac92xx_dig_playback_pcm_cleanup(struct hda_pcm_stream
*hinfo
,
2317 struct hda_codec
*codec
,
2318 struct snd_pcm_substream
*substream
)
2320 struct sigmatel_spec
*spec
= codec
->spec
;
2321 return snd_hda_multi_out_dig_cleanup(codec
, &spec
->multiout
);
2326 * Analog capture callbacks
2328 static int stac92xx_capture_pcm_prepare(struct hda_pcm_stream
*hinfo
,
2329 struct hda_codec
*codec
,
2330 unsigned int stream_tag
,
2331 unsigned int format
,
2332 struct snd_pcm_substream
*substream
)
2334 struct sigmatel_spec
*spec
= codec
->spec
;
2335 hda_nid_t nid
= spec
->adc_nids
[substream
->number
];
2337 if (spec
->powerdown_adcs
) {
2339 snd_hda_codec_write(codec
, nid
, 0,
2340 AC_VERB_SET_POWER_STATE
, AC_PWRST_D0
);
2342 snd_hda_codec_setup_stream(codec
, nid
, stream_tag
, 0, format
);
2346 static int stac92xx_capture_pcm_cleanup(struct hda_pcm_stream
*hinfo
,
2347 struct hda_codec
*codec
,
2348 struct snd_pcm_substream
*substream
)
2350 struct sigmatel_spec
*spec
= codec
->spec
;
2351 hda_nid_t nid
= spec
->adc_nids
[substream
->number
];
2353 snd_hda_codec_cleanup_stream(codec
, nid
);
2354 if (spec
->powerdown_adcs
)
2355 snd_hda_codec_write(codec
, nid
, 0,
2356 AC_VERB_SET_POWER_STATE
, AC_PWRST_D3
);
2360 static struct hda_pcm_stream stac92xx_pcm_digital_playback
= {
2364 /* NID is set in stac92xx_build_pcms */
2366 .open
= stac92xx_dig_playback_pcm_open
,
2367 .close
= stac92xx_dig_playback_pcm_close
,
2368 .prepare
= stac92xx_dig_playback_pcm_prepare
,
2369 .cleanup
= stac92xx_dig_playback_pcm_cleanup
2373 static struct hda_pcm_stream stac92xx_pcm_digital_capture
= {
2377 /* NID is set in stac92xx_build_pcms */
2380 static struct hda_pcm_stream stac92xx_pcm_analog_playback
= {
2384 .nid
= 0x02, /* NID to query formats and rates */
2386 .open
= stac92xx_playback_pcm_open
,
2387 .prepare
= stac92xx_playback_pcm_prepare
,
2388 .cleanup
= stac92xx_playback_pcm_cleanup
2392 static struct hda_pcm_stream stac92xx_pcm_analog_alt_playback
= {
2396 .nid
= 0x06, /* NID to query formats and rates */
2398 .open
= stac92xx_playback_pcm_open
,
2399 .prepare
= stac92xx_playback_pcm_prepare
,
2400 .cleanup
= stac92xx_playback_pcm_cleanup
2404 static struct hda_pcm_stream stac92xx_pcm_analog_capture
= {
2407 /* NID + .substreams is set in stac92xx_build_pcms */
2409 .prepare
= stac92xx_capture_pcm_prepare
,
2410 .cleanup
= stac92xx_capture_pcm_cleanup
2414 static int stac92xx_build_pcms(struct hda_codec
*codec
)
2416 struct sigmatel_spec
*spec
= codec
->spec
;
2417 struct hda_pcm
*info
= spec
->pcm_rec
;
2419 codec
->num_pcms
= 1;
2420 codec
->pcm_info
= info
;
2422 info
->name
= "STAC92xx Analog";
2423 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
] = stac92xx_pcm_analog_playback
;
2424 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
].nid
=
2425 spec
->multiout
.dac_nids
[0];
2426 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
] = stac92xx_pcm_analog_capture
;
2427 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
].nid
= spec
->adc_nids
[0];
2428 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
].substreams
= spec
->num_adcs
;
2430 if (spec
->alt_switch
) {
2433 info
->name
= "STAC92xx Analog Alt";
2434 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
] = stac92xx_pcm_analog_alt_playback
;
2437 if (spec
->multiout
.dig_out_nid
|| spec
->dig_in_nid
) {
2440 info
->name
= "STAC92xx Digital";
2441 info
->pcm_type
= spec
->autocfg
.dig_out_type
[0];
2442 if (spec
->multiout
.dig_out_nid
) {
2443 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
] = stac92xx_pcm_digital_playback
;
2444 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
].nid
= spec
->multiout
.dig_out_nid
;
2446 if (spec
->dig_in_nid
) {
2447 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
] = stac92xx_pcm_digital_capture
;
2448 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
].nid
= spec
->dig_in_nid
;
2455 static unsigned int stac92xx_get_default_vref(struct hda_codec
*codec
,
2458 unsigned int pincap
= snd_hda_query_pin_caps(codec
, nid
);
2459 pincap
= (pincap
& AC_PINCAP_VREF
) >> AC_PINCAP_VREF_SHIFT
;
2460 if (pincap
& AC_PINCAP_VREF_100
)
2461 return AC_PINCTL_VREF_100
;
2462 if (pincap
& AC_PINCAP_VREF_80
)
2463 return AC_PINCTL_VREF_80
;
2464 if (pincap
& AC_PINCAP_VREF_50
)
2465 return AC_PINCTL_VREF_50
;
2466 if (pincap
& AC_PINCAP_VREF_GRD
)
2467 return AC_PINCTL_VREF_GRD
;
2471 static void stac92xx_auto_set_pinctl(struct hda_codec
*codec
, hda_nid_t nid
, int pin_type
)
2474 snd_hda_codec_write_cache(codec
, nid
, 0,
2475 AC_VERB_SET_PIN_WIDGET_CONTROL
, pin_type
);
2478 #define stac92xx_hp_switch_info snd_ctl_boolean_mono_info
2480 static int stac92xx_hp_switch_get(struct snd_kcontrol
*kcontrol
,
2481 struct snd_ctl_elem_value
*ucontrol
)
2483 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2484 struct sigmatel_spec
*spec
= codec
->spec
;
2486 ucontrol
->value
.integer
.value
[0] = !!spec
->hp_switch
;
2490 static void stac_issue_unsol_event(struct hda_codec
*codec
, hda_nid_t nid
);
2492 static int stac92xx_hp_switch_put(struct snd_kcontrol
*kcontrol
,
2493 struct snd_ctl_elem_value
*ucontrol
)
2495 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2496 struct sigmatel_spec
*spec
= codec
->spec
;
2497 int nid
= kcontrol
->private_value
;
2499 spec
->hp_switch
= ucontrol
->value
.integer
.value
[0] ? nid
: 0;
2501 /* check to be sure that the ports are upto date with
2504 stac_issue_unsol_event(codec
, nid
);
2509 static int stac92xx_dc_bias_info(struct snd_kcontrol
*kcontrol
,
2510 struct snd_ctl_elem_info
*uinfo
)
2513 static char *texts
[] = {
2514 "Mic In", "Line In", "Line Out"
2517 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2518 struct sigmatel_spec
*spec
= codec
->spec
;
2519 hda_nid_t nid
= kcontrol
->private_value
;
2521 if (nid
== spec
->mic_switch
|| nid
== spec
->line_switch
)
2526 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
2527 uinfo
->value
.enumerated
.items
= i
;
2529 if (uinfo
->value
.enumerated
.item
>= i
)
2530 uinfo
->value
.enumerated
.item
= i
-1;
2531 strcpy(uinfo
->value
.enumerated
.name
,
2532 texts
[uinfo
->value
.enumerated
.item
]);
2537 static int stac92xx_dc_bias_get(struct snd_kcontrol
*kcontrol
,
2538 struct snd_ctl_elem_value
*ucontrol
)
2540 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2541 hda_nid_t nid
= kcontrol
->private_value
;
2542 unsigned int vref
= stac92xx_vref_get(codec
, nid
);
2544 if (vref
== stac92xx_get_default_vref(codec
, nid
))
2545 ucontrol
->value
.enumerated
.item
[0] = 0;
2546 else if (vref
== AC_PINCTL_VREF_GRD
)
2547 ucontrol
->value
.enumerated
.item
[0] = 1;
2548 else if (vref
== AC_PINCTL_VREF_HIZ
)
2549 ucontrol
->value
.enumerated
.item
[0] = 2;
2554 static int stac92xx_dc_bias_put(struct snd_kcontrol
*kcontrol
,
2555 struct snd_ctl_elem_value
*ucontrol
)
2557 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2558 unsigned int new_vref
= 0;
2560 hda_nid_t nid
= kcontrol
->private_value
;
2562 if (ucontrol
->value
.enumerated
.item
[0] == 0)
2563 new_vref
= stac92xx_get_default_vref(codec
, nid
);
2564 else if (ucontrol
->value
.enumerated
.item
[0] == 1)
2565 new_vref
= AC_PINCTL_VREF_GRD
;
2566 else if (ucontrol
->value
.enumerated
.item
[0] == 2)
2567 new_vref
= AC_PINCTL_VREF_HIZ
;
2571 if (new_vref
!= stac92xx_vref_get(codec
, nid
)) {
2572 error
= stac92xx_vref_set(codec
, nid
, new_vref
);
2579 static int stac92xx_io_switch_info(struct snd_kcontrol
*kcontrol
,
2580 struct snd_ctl_elem_info
*uinfo
)
2582 static char *texts
[2];
2583 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2584 struct sigmatel_spec
*spec
= codec
->spec
;
2586 if (kcontrol
->private_value
== spec
->line_switch
)
2587 texts
[0] = "Line In";
2589 texts
[0] = "Mic In";
2590 texts
[1] = "Line Out";
2591 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
2592 uinfo
->value
.enumerated
.items
= 2;
2595 if (uinfo
->value
.enumerated
.item
>= 2)
2596 uinfo
->value
.enumerated
.item
= 1;
2597 strcpy(uinfo
->value
.enumerated
.name
,
2598 texts
[uinfo
->value
.enumerated
.item
]);
2603 static int stac92xx_io_switch_get(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2605 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2606 struct sigmatel_spec
*spec
= codec
->spec
;
2607 hda_nid_t nid
= kcontrol
->private_value
;
2608 int io_idx
= (nid
== spec
->mic_switch
) ? 1 : 0;
2610 ucontrol
->value
.enumerated
.item
[0] = spec
->io_switch
[io_idx
];
2614 static int stac92xx_io_switch_put(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
2616 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2617 struct sigmatel_spec
*spec
= codec
->spec
;
2618 hda_nid_t nid
= kcontrol
->private_value
;
2619 int io_idx
= (nid
== spec
->mic_switch
) ? 1 : 0;
2620 unsigned short val
= !!ucontrol
->value
.enumerated
.item
[0];
2622 spec
->io_switch
[io_idx
] = val
;
2625 stac92xx_auto_set_pinctl(codec
, nid
, AC_PINCTL_OUT_EN
);
2627 unsigned int pinctl
= AC_PINCTL_IN_EN
;
2628 if (io_idx
) /* set VREF for mic */
2629 pinctl
|= stac92xx_get_default_vref(codec
, nid
);
2630 stac92xx_auto_set_pinctl(codec
, nid
, pinctl
);
2633 /* check the auto-mute again: we need to mute/unmute the speaker
2634 * appropriately according to the pin direction
2636 if (spec
->hp_detect
)
2637 stac_issue_unsol_event(codec
, nid
);
2642 #define stac92xx_clfe_switch_info snd_ctl_boolean_mono_info
2644 static int stac92xx_clfe_switch_get(struct snd_kcontrol
*kcontrol
,
2645 struct snd_ctl_elem_value
*ucontrol
)
2647 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2648 struct sigmatel_spec
*spec
= codec
->spec
;
2650 ucontrol
->value
.integer
.value
[0] = spec
->clfe_swap
;
2654 static int stac92xx_clfe_switch_put(struct snd_kcontrol
*kcontrol
,
2655 struct snd_ctl_elem_value
*ucontrol
)
2657 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2658 struct sigmatel_spec
*spec
= codec
->spec
;
2659 hda_nid_t nid
= kcontrol
->private_value
& 0xff;
2660 unsigned int val
= !!ucontrol
->value
.integer
.value
[0];
2662 if (spec
->clfe_swap
== val
)
2665 spec
->clfe_swap
= val
;
2667 snd_hda_codec_write_cache(codec
, nid
, 0, AC_VERB_SET_EAPD_BTLENABLE
,
2668 spec
->clfe_swap
? 0x4 : 0x0);
2673 #define STAC_CODEC_HP_SWITCH(xname) \
2674 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2677 .info = stac92xx_hp_switch_info, \
2678 .get = stac92xx_hp_switch_get, \
2679 .put = stac92xx_hp_switch_put, \
2682 #define STAC_CODEC_IO_SWITCH(xname, xpval) \
2683 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2686 .info = stac92xx_io_switch_info, \
2687 .get = stac92xx_io_switch_get, \
2688 .put = stac92xx_io_switch_put, \
2689 .private_value = xpval, \
2692 #define STAC_CODEC_CLFE_SWITCH(xname, xpval) \
2693 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2696 .info = stac92xx_clfe_switch_info, \
2697 .get = stac92xx_clfe_switch_get, \
2698 .put = stac92xx_clfe_switch_put, \
2699 .private_value = xpval, \
2703 STAC_CTL_WIDGET_VOL
,
2704 STAC_CTL_WIDGET_MUTE
,
2705 STAC_CTL_WIDGET_MUTE_BEEP
,
2706 STAC_CTL_WIDGET_MONO_MUX
,
2707 STAC_CTL_WIDGET_HP_SWITCH
,
2708 STAC_CTL_WIDGET_IO_SWITCH
,
2709 STAC_CTL_WIDGET_CLFE_SWITCH
,
2710 STAC_CTL_WIDGET_DC_BIAS
2713 static struct snd_kcontrol_new stac92xx_control_templates
[] = {
2714 HDA_CODEC_VOLUME(NULL
, 0, 0, 0),
2715 HDA_CODEC_MUTE(NULL
, 0, 0, 0),
2716 HDA_CODEC_MUTE_BEEP(NULL
, 0, 0, 0),
2718 STAC_CODEC_HP_SWITCH(NULL
),
2719 STAC_CODEC_IO_SWITCH(NULL
, 0),
2720 STAC_CODEC_CLFE_SWITCH(NULL
, 0),
2721 DC_BIAS(NULL
, 0, 0),
2724 /* add dynamic controls */
2725 static struct snd_kcontrol_new
*
2726 stac_control_new(struct sigmatel_spec
*spec
,
2727 struct snd_kcontrol_new
*ktemp
,
2729 unsigned int subdev
)
2731 struct snd_kcontrol_new
*knew
;
2733 snd_array_init(&spec
->kctls
, sizeof(*knew
), 32);
2734 knew
= snd_array_new(&spec
->kctls
);
2738 knew
->name
= kstrdup(name
, GFP_KERNEL
);
2741 memset(knew
, 0, sizeof(*knew
));
2742 spec
->kctls
.alloced
--;
2745 knew
->subdevice
= subdev
;
2749 static int stac92xx_add_control_temp(struct sigmatel_spec
*spec
,
2750 struct snd_kcontrol_new
*ktemp
,
2751 int idx
, const char *name
,
2754 struct snd_kcontrol_new
*knew
= stac_control_new(spec
, ktemp
, name
,
2755 HDA_SUBDEV_AMP_FLAG
);
2759 knew
->private_value
= val
;
2763 static inline int stac92xx_add_control_idx(struct sigmatel_spec
*spec
,
2764 int type
, int idx
, const char *name
,
2767 return stac92xx_add_control_temp(spec
,
2768 &stac92xx_control_templates
[type
],
2773 /* add dynamic controls */
2774 static inline int stac92xx_add_control(struct sigmatel_spec
*spec
, int type
,
2775 const char *name
, unsigned long val
)
2777 return stac92xx_add_control_idx(spec
, type
, 0, name
, val
);
2780 static struct snd_kcontrol_new stac_input_src_temp
= {
2781 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2782 .name
= "Input Source",
2783 .info
= stac92xx_mux_enum_info
,
2784 .get
= stac92xx_mux_enum_get
,
2785 .put
= stac92xx_mux_enum_put
,
2788 static inline int stac92xx_add_jack_mode_control(struct hda_codec
*codec
,
2789 hda_nid_t nid
, int idx
)
2791 int def_conf
= snd_hda_codec_get_pincfg(codec
, nid
);
2793 struct sigmatel_spec
*spec
= codec
->spec
;
2796 if (snd_hda_get_input_pin_attr(def_conf
) != INPUT_PIN_ATTR_INT
) {
2797 if (stac92xx_get_default_vref(codec
, nid
) == AC_PINCTL_VREF_GRD
2798 && nid
== spec
->line_switch
)
2799 control
= STAC_CTL_WIDGET_IO_SWITCH
;
2800 else if (snd_hda_query_pin_caps(codec
, nid
)
2801 & (AC_PINCAP_VREF_GRD
<< AC_PINCAP_VREF_SHIFT
))
2802 control
= STAC_CTL_WIDGET_DC_BIAS
;
2803 else if (nid
== spec
->mic_switch
)
2804 control
= STAC_CTL_WIDGET_IO_SWITCH
;
2808 strcpy(name
, hda_get_input_pin_label(codec
, nid
, 1));
2809 return stac92xx_add_control(codec
->spec
, control
,
2810 strcat(name
, " Jack Mode"), nid
);
2816 static int stac92xx_add_input_source(struct sigmatel_spec
*spec
)
2818 struct snd_kcontrol_new
*knew
;
2819 struct hda_input_mux
*imux
= &spec
->private_imux
;
2822 return 0; /* no need for input source */
2823 if (!spec
->num_adcs
|| imux
->num_items
<= 1)
2824 return 0; /* no need for input source control */
2825 knew
= stac_control_new(spec
, &stac_input_src_temp
,
2826 stac_input_src_temp
.name
, 0);
2829 knew
->count
= spec
->num_adcs
;
2833 /* check whether the line-input can be used as line-out */
2834 static hda_nid_t
check_line_out_switch(struct hda_codec
*codec
)
2836 struct sigmatel_spec
*spec
= codec
->spec
;
2837 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
2839 unsigned int pincap
;
2842 if (cfg
->line_out_type
!= AUTO_PIN_LINE_OUT
)
2844 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
2845 if (cfg
->inputs
[i
].type
== AUTO_PIN_LINE_IN
) {
2846 nid
= cfg
->inputs
[i
].pin
;
2847 pincap
= snd_hda_query_pin_caps(codec
, nid
);
2848 if (pincap
& AC_PINCAP_OUT
)
2855 static hda_nid_t
get_unassigned_dac(struct hda_codec
*codec
, hda_nid_t nid
);
2857 /* check whether the mic-input can be used as line-out */
2858 static hda_nid_t
check_mic_out_switch(struct hda_codec
*codec
, hda_nid_t
*dac
)
2860 struct sigmatel_spec
*spec
= codec
->spec
;
2861 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
2862 unsigned int def_conf
, pincap
;
2866 if (cfg
->line_out_type
!= AUTO_PIN_LINE_OUT
)
2868 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
2869 hda_nid_t nid
= cfg
->inputs
[i
].pin
;
2870 if (cfg
->inputs
[i
].type
!= AUTO_PIN_MIC
)
2872 def_conf
= snd_hda_codec_get_pincfg(codec
, nid
);
2873 /* some laptops have an internal analog microphone
2874 * which can't be used as a output */
2875 if (snd_hda_get_input_pin_attr(def_conf
) != INPUT_PIN_ATTR_INT
) {
2876 pincap
= snd_hda_query_pin_caps(codec
, nid
);
2877 if (pincap
& AC_PINCAP_OUT
) {
2878 *dac
= get_unassigned_dac(codec
, nid
);
2887 static int is_in_dac_nids(struct sigmatel_spec
*spec
, hda_nid_t nid
)
2891 for (i
= 0; i
< spec
->multiout
.num_dacs
; i
++) {
2892 if (spec
->multiout
.dac_nids
[i
] == nid
)
2899 static int check_all_dac_nids(struct sigmatel_spec
*spec
, hda_nid_t nid
)
2902 if (is_in_dac_nids(spec
, nid
))
2904 for (i
= 0; i
< spec
->autocfg
.hp_outs
; i
++)
2905 if (spec
->hp_dacs
[i
] == nid
)
2907 for (i
= 0; i
< spec
->autocfg
.speaker_outs
; i
++)
2908 if (spec
->speaker_dacs
[i
] == nid
)
2913 static hda_nid_t
get_unassigned_dac(struct hda_codec
*codec
, hda_nid_t nid
)
2915 struct sigmatel_spec
*spec
= codec
->spec
;
2917 hda_nid_t conn
[HDA_MAX_CONNECTIONS
];
2918 unsigned int wcaps
, wtype
;
2920 conn_len
= snd_hda_get_connections(codec
, nid
, conn
,
2921 HDA_MAX_CONNECTIONS
);
2922 /* 92HD88: trace back up the link of nids to find the DAC */
2923 while (conn_len
== 1 && (get_wcaps_type(get_wcaps(codec
, conn
[0]))
2924 != AC_WID_AUD_OUT
)) {
2926 conn_len
= snd_hda_get_connections(codec
, nid
, conn
,
2927 HDA_MAX_CONNECTIONS
);
2929 for (j
= 0; j
< conn_len
; j
++) {
2930 wcaps
= get_wcaps(codec
, conn
[j
]);
2931 wtype
= get_wcaps_type(wcaps
);
2932 /* we check only analog outputs */
2933 if (wtype
!= AC_WID_AUD_OUT
|| (wcaps
& AC_WCAP_DIGITAL
))
2935 /* if this route has a free DAC, assign it */
2936 if (!check_all_dac_nids(spec
, conn
[j
])) {
2938 /* select this DAC in the pin's input mux */
2939 snd_hda_codec_write_cache(codec
, nid
, 0,
2940 AC_VERB_SET_CONNECT_SEL
, j
);
2945 /* if all DACs are already assigned, connect to the primary DAC */
2947 for (j
= 0; j
< conn_len
; j
++) {
2948 if (conn
[j
] == spec
->multiout
.dac_nids
[0]) {
2949 snd_hda_codec_write_cache(codec
, nid
, 0,
2950 AC_VERB_SET_CONNECT_SEL
, j
);
2958 static int add_spec_dacs(struct sigmatel_spec
*spec
, hda_nid_t nid
);
2959 static int add_spec_extra_dacs(struct sigmatel_spec
*spec
, hda_nid_t nid
);
2962 * Fill in the dac_nids table from the parsed pin configuration
2963 * This function only works when every pin in line_out_pins[]
2964 * contains atleast one DAC in its connection list. Some 92xx
2965 * codecs are not connected directly to a DAC, such as the 9200
2966 * and 9202/925x. For those, dac_nids[] must be hard-coded.
2968 static int stac92xx_auto_fill_dac_nids(struct hda_codec
*codec
)
2970 struct sigmatel_spec
*spec
= codec
->spec
;
2971 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
2975 for (i
= 0; i
< cfg
->line_outs
; i
++) {
2976 nid
= cfg
->line_out_pins
[i
];
2977 dac
= get_unassigned_dac(codec
, nid
);
2979 if (spec
->multiout
.num_dacs
> 0) {
2980 /* we have already working output pins,
2981 * so let's drop the broken ones again
2983 cfg
->line_outs
= spec
->multiout
.num_dacs
;
2986 /* error out, no available DAC found */
2988 "%s: No available DAC for pin 0x%x\n",
2992 add_spec_dacs(spec
, dac
);
2995 for (i
= 0; i
< cfg
->hp_outs
; i
++) {
2996 nid
= cfg
->hp_pins
[i
];
2997 dac
= get_unassigned_dac(codec
, nid
);
2999 if (!spec
->multiout
.hp_nid
)
3000 spec
->multiout
.hp_nid
= dac
;
3002 add_spec_extra_dacs(spec
, dac
);
3004 spec
->hp_dacs
[i
] = dac
;
3007 for (i
= 0; i
< cfg
->speaker_outs
; i
++) {
3008 nid
= cfg
->speaker_pins
[i
];
3009 dac
= get_unassigned_dac(codec
, nid
);
3011 add_spec_extra_dacs(spec
, dac
);
3012 spec
->speaker_dacs
[i
] = dac
;
3015 /* add line-in as output */
3016 nid
= check_line_out_switch(codec
);
3018 dac
= get_unassigned_dac(codec
, nid
);
3020 snd_printdd("STAC: Add line-in 0x%x as output %d\n",
3021 nid
, cfg
->line_outs
);
3022 cfg
->line_out_pins
[cfg
->line_outs
] = nid
;
3024 spec
->line_switch
= nid
;
3025 add_spec_dacs(spec
, dac
);
3028 /* add mic as output */
3029 nid
= check_mic_out_switch(codec
, &dac
);
3031 snd_printdd("STAC: Add mic-in 0x%x as output %d\n",
3032 nid
, cfg
->line_outs
);
3033 cfg
->line_out_pins
[cfg
->line_outs
] = nid
;
3035 spec
->mic_switch
= nid
;
3036 add_spec_dacs(spec
, dac
);
3039 snd_printd("stac92xx: dac_nids=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
3040 spec
->multiout
.num_dacs
,
3041 spec
->multiout
.dac_nids
[0],
3042 spec
->multiout
.dac_nids
[1],
3043 spec
->multiout
.dac_nids
[2],
3044 spec
->multiout
.dac_nids
[3],
3045 spec
->multiout
.dac_nids
[4]);
3050 /* create volume control/switch for the given prefx type */
3051 static int create_controls_idx(struct hda_codec
*codec
, const char *pfx
,
3052 int idx
, hda_nid_t nid
, int chs
)
3054 struct sigmatel_spec
*spec
= codec
->spec
;
3058 if (!spec
->check_volume_offset
) {
3059 unsigned int caps
, step
, nums
, db_scale
;
3060 caps
= query_amp_caps(codec
, nid
, HDA_OUTPUT
);
3061 step
= (caps
& AC_AMPCAP_STEP_SIZE
) >>
3062 AC_AMPCAP_STEP_SIZE_SHIFT
;
3063 step
= (step
+ 1) * 25; /* in .01dB unit */
3064 nums
= (caps
& AC_AMPCAP_NUM_STEPS
) >>
3065 AC_AMPCAP_NUM_STEPS_SHIFT
;
3066 db_scale
= nums
* step
;
3067 /* if dB scale is over -64dB, and finer enough,
3068 * let's reduce it to half
3070 if (db_scale
> 6400 && nums
>= 0x1f)
3071 spec
->volume_offset
= nums
/ 2;
3072 spec
->check_volume_offset
= 1;
3075 sprintf(name
, "%s Playback Volume", pfx
);
3076 err
= stac92xx_add_control_idx(spec
, STAC_CTL_WIDGET_VOL
, idx
, name
,
3077 HDA_COMPOSE_AMP_VAL_OFS(nid
, chs
, 0, HDA_OUTPUT
,
3078 spec
->volume_offset
));
3081 sprintf(name
, "%s Playback Switch", pfx
);
3082 err
= stac92xx_add_control_idx(spec
, STAC_CTL_WIDGET_MUTE
, idx
, name
,
3083 HDA_COMPOSE_AMP_VAL(nid
, chs
, 0, HDA_OUTPUT
));
3089 #define create_controls(codec, pfx, nid, chs) \
3090 create_controls_idx(codec, pfx, 0, nid, chs)
3092 static int add_spec_dacs(struct sigmatel_spec
*spec
, hda_nid_t nid
)
3094 if (spec
->multiout
.num_dacs
> 4) {
3095 printk(KERN_WARNING
"stac92xx: No space for DAC 0x%x\n", nid
);
3098 spec
->multiout
.dac_nids
[spec
->multiout
.num_dacs
] = nid
;
3099 spec
->multiout
.num_dacs
++;
3104 static int add_spec_extra_dacs(struct sigmatel_spec
*spec
, hda_nid_t nid
)
3107 for (i
= 0; i
< ARRAY_SIZE(spec
->multiout
.extra_out_nid
); i
++) {
3108 if (!spec
->multiout
.extra_out_nid
[i
]) {
3109 spec
->multiout
.extra_out_nid
[i
] = nid
;
3113 printk(KERN_WARNING
"stac92xx: No space for extra DAC 0x%x\n", nid
);
3117 /* Create output controls
3118 * The mixer elements are named depending on the given type (AUTO_PIN_XXX_OUT)
3120 static int create_multi_out_ctls(struct hda_codec
*codec
, int num_outs
,
3121 const hda_nid_t
*pins
,
3122 const hda_nid_t
*dac_nids
,
3125 struct sigmatel_spec
*spec
= codec
->spec
;
3126 static const char * const chname
[4] = {
3127 "Front", "Surround", NULL
/*CLFE*/, "Side"
3131 unsigned int wid_caps
;
3133 for (i
= 0; i
< num_outs
&& i
< ARRAY_SIZE(chname
); i
++) {
3134 if (type
== AUTO_PIN_HP_OUT
&& !spec
->hp_detect
) {
3135 wid_caps
= get_wcaps(codec
, pins
[i
]);
3136 if (wid_caps
& AC_WCAP_UNSOL_CAP
)
3137 spec
->hp_detect
= 1;
3142 if (type
!= AUTO_PIN_HP_OUT
&& i
== 2) {
3144 err
= create_controls(codec
, "Center", nid
, 1);
3147 err
= create_controls(codec
, "LFE", nid
, 2);
3151 wid_caps
= get_wcaps(codec
, nid
);
3153 if (wid_caps
& AC_WCAP_LR_SWAP
) {
3154 err
= stac92xx_add_control(spec
,
3155 STAC_CTL_WIDGET_CLFE_SWITCH
,
3156 "Swap Center/LFE Playback Switch", nid
);
3166 case AUTO_PIN_HP_OUT
:
3170 case AUTO_PIN_SPEAKER_OUT
:
3179 err
= create_controls_idx(codec
, name
, idx
, nid
, 3);
3187 static int stac92xx_add_capvol_ctls(struct hda_codec
*codec
, unsigned long vol
,
3188 unsigned long sw
, int idx
)
3191 err
= stac92xx_add_control_idx(codec
->spec
, STAC_CTL_WIDGET_VOL
, idx
,
3192 "Capture Volume", vol
);
3195 err
= stac92xx_add_control_idx(codec
->spec
, STAC_CTL_WIDGET_MUTE
, idx
,
3196 "Capture Switch", sw
);
3202 /* add playback controls from the parsed DAC table */
3203 static int stac92xx_auto_create_multi_out_ctls(struct hda_codec
*codec
,
3204 const struct auto_pin_cfg
*cfg
)
3206 struct sigmatel_spec
*spec
= codec
->spec
;
3211 err
= create_multi_out_ctls(codec
, cfg
->line_outs
, cfg
->line_out_pins
,
3212 spec
->multiout
.dac_nids
,
3213 cfg
->line_out_type
);
3217 if (cfg
->hp_outs
> 1 && cfg
->line_out_type
== AUTO_PIN_LINE_OUT
) {
3218 err
= stac92xx_add_control(spec
,
3219 STAC_CTL_WIDGET_HP_SWITCH
,
3220 "Headphone as Line Out Switch",
3221 cfg
->hp_pins
[cfg
->hp_outs
- 1]);
3226 for (idx
= 0; idx
< cfg
->num_inputs
; idx
++) {
3227 if (cfg
->inputs
[idx
].type
> AUTO_PIN_LINE_IN
)
3229 nid
= cfg
->inputs
[idx
].pin
;
3230 err
= stac92xx_add_jack_mode_control(codec
, nid
, idx
);
3238 /* add playback controls for Speaker and HP outputs */
3239 static int stac92xx_auto_create_hp_ctls(struct hda_codec
*codec
,
3240 struct auto_pin_cfg
*cfg
)
3242 struct sigmatel_spec
*spec
= codec
->spec
;
3245 err
= create_multi_out_ctls(codec
, cfg
->hp_outs
, cfg
->hp_pins
,
3246 spec
->hp_dacs
, AUTO_PIN_HP_OUT
);
3250 err
= create_multi_out_ctls(codec
, cfg
->speaker_outs
, cfg
->speaker_pins
,
3251 spec
->speaker_dacs
, AUTO_PIN_SPEAKER_OUT
);
3258 /* labels for mono mux outputs */
3259 static const char * const stac92xx_mono_labels
[4] = {
3260 "DAC0", "DAC1", "Mixer", "DAC2"
3263 /* create mono mux for mono out on capable codecs */
3264 static int stac92xx_auto_create_mono_output_ctls(struct hda_codec
*codec
)
3266 struct sigmatel_spec
*spec
= codec
->spec
;
3267 struct hda_input_mux
*mono_mux
= &spec
->private_mono_mux
;
3269 hda_nid_t con_lst
[ARRAY_SIZE(stac92xx_mono_labels
)];
3271 num_cons
= snd_hda_get_connections(codec
,
3274 HDA_MAX_NUM_INPUTS
);
3275 if (num_cons
<= 0 || num_cons
> ARRAY_SIZE(stac92xx_mono_labels
))
3278 for (i
= 0; i
< num_cons
; i
++)
3279 snd_hda_add_imux_item(mono_mux
, stac92xx_mono_labels
[i
], i
,
3282 return stac92xx_add_control(spec
, STAC_CTL_WIDGET_MONO_MUX
,
3283 "Mono Mux", spec
->mono_nid
);
3286 /* create PC beep volume controls */
3287 static int stac92xx_auto_create_beep_ctls(struct hda_codec
*codec
,
3290 struct sigmatel_spec
*spec
= codec
->spec
;
3291 u32 caps
= query_amp_caps(codec
, nid
, HDA_OUTPUT
);
3292 int err
, type
= STAC_CTL_WIDGET_MUTE_BEEP
;
3294 if (spec
->anabeep_nid
== nid
)
3295 type
= STAC_CTL_WIDGET_MUTE
;
3297 /* check for mute support for the the amp */
3298 if ((caps
& AC_AMPCAP_MUTE
) >> AC_AMPCAP_MUTE_SHIFT
) {
3299 err
= stac92xx_add_control(spec
, type
,
3300 "Beep Playback Switch",
3301 HDA_COMPOSE_AMP_VAL(nid
, 1, 0, HDA_OUTPUT
));
3306 /* check to see if there is volume support for the amp */
3307 if ((caps
& AC_AMPCAP_NUM_STEPS
) >> AC_AMPCAP_NUM_STEPS_SHIFT
) {
3308 err
= stac92xx_add_control(spec
, STAC_CTL_WIDGET_VOL
,
3309 "Beep Playback Volume",
3310 HDA_COMPOSE_AMP_VAL(nid
, 1, 0, HDA_OUTPUT
));
3317 #ifdef CONFIG_SND_HDA_INPUT_BEEP
3318 #define stac92xx_dig_beep_switch_info snd_ctl_boolean_mono_info
3320 static int stac92xx_dig_beep_switch_get(struct snd_kcontrol
*kcontrol
,
3321 struct snd_ctl_elem_value
*ucontrol
)
3323 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
3324 ucontrol
->value
.integer
.value
[0] = codec
->beep
->enabled
;
3328 static int stac92xx_dig_beep_switch_put(struct snd_kcontrol
*kcontrol
,
3329 struct snd_ctl_elem_value
*ucontrol
)
3331 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
3332 return snd_hda_enable_beep_device(codec
, ucontrol
->value
.integer
.value
[0]);
3335 static struct snd_kcontrol_new stac92xx_dig_beep_ctrl
= {
3336 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
3337 .info
= stac92xx_dig_beep_switch_info
,
3338 .get
= stac92xx_dig_beep_switch_get
,
3339 .put
= stac92xx_dig_beep_switch_put
,
3342 static int stac92xx_beep_switch_ctl(struct hda_codec
*codec
)
3344 return stac92xx_add_control_temp(codec
->spec
, &stac92xx_dig_beep_ctrl
,
3345 0, "Beep Playback Switch", 0);
3349 static int stac92xx_auto_create_mux_input_ctls(struct hda_codec
*codec
)
3351 struct sigmatel_spec
*spec
= codec
->spec
;
3354 for (i
= 0; i
< spec
->num_muxes
; i
++) {
3359 nid
= spec
->mux_nids
[i
];
3360 wcaps
= get_wcaps(codec
, nid
);
3361 if (!(wcaps
& AC_WCAP_OUT_AMP
))
3364 /* check whether already the same control was created as
3365 * normal Capture Volume.
3367 val
= HDA_COMPOSE_AMP_VAL(nid
, 3, 0, HDA_OUTPUT
);
3368 for (j
= 0; j
< spec
->num_caps
; j
++) {
3369 if (spec
->capvols
[j
] == val
)
3372 if (j
< spec
->num_caps
)
3375 err
= stac92xx_add_control_idx(spec
, STAC_CTL_WIDGET_VOL
, i
,
3376 "Mux Capture Volume", val
);
3383 static const char * const stac92xx_spdif_labels
[3] = {
3384 "Digital Playback", "Analog Mux 1", "Analog Mux 2",
3387 static int stac92xx_auto_create_spdif_mux_ctls(struct hda_codec
*codec
)
3389 struct sigmatel_spec
*spec
= codec
->spec
;
3390 struct hda_input_mux
*spdif_mux
= &spec
->private_smux
;
3391 const char * const *labels
= spec
->spdif_labels
;
3393 hda_nid_t con_lst
[HDA_MAX_NUM_INPUTS
];
3395 num_cons
= snd_hda_get_connections(codec
,
3398 HDA_MAX_NUM_INPUTS
);
3403 labels
= stac92xx_spdif_labels
;
3405 for (i
= 0; i
< num_cons
; i
++)
3406 snd_hda_add_imux_item(spdif_mux
, labels
[i
], i
, NULL
);
3411 /* labels for dmic mux inputs */
3412 static const char * const stac92xx_dmic_labels
[5] = {
3413 "Analog Inputs", "Digital Mic 1", "Digital Mic 2",
3414 "Digital Mic 3", "Digital Mic 4"
3417 static int get_connection_index(struct hda_codec
*codec
, hda_nid_t mux
,
3420 hda_nid_t conn
[HDA_MAX_NUM_INPUTS
];
3423 nums
= snd_hda_get_connections(codec
, mux
, conn
, ARRAY_SIZE(conn
));
3424 for (i
= 0; i
< nums
; i
++)
3430 /* create a volume assigned to the given pin (only if supported) */
3431 /* return 1 if the volume control is created */
3432 static int create_elem_capture_vol(struct hda_codec
*codec
, hda_nid_t nid
,
3433 const char *label
, int idx
, int direction
)
3435 unsigned int caps
, nums
;
3439 if (direction
== HDA_OUTPUT
)
3440 caps
= AC_WCAP_OUT_AMP
;
3442 caps
= AC_WCAP_IN_AMP
;
3443 if (!(get_wcaps(codec
, nid
) & caps
))
3445 caps
= query_amp_caps(codec
, nid
, direction
);
3446 nums
= (caps
& AC_AMPCAP_NUM_STEPS
) >> AC_AMPCAP_NUM_STEPS_SHIFT
;
3449 snprintf(name
, sizeof(name
), "%s Capture Volume", label
);
3450 err
= stac92xx_add_control_idx(codec
->spec
, STAC_CTL_WIDGET_VOL
, idx
, name
,
3451 HDA_COMPOSE_AMP_VAL(nid
, 3, 0, direction
));
3457 /* create playback/capture controls for input pins on dmic capable codecs */
3458 static int stac92xx_auto_create_dmic_input_ctls(struct hda_codec
*codec
,
3459 const struct auto_pin_cfg
*cfg
)
3461 struct sigmatel_spec
*spec
= codec
->spec
;
3462 struct hda_input_mux
*imux
= &spec
->private_imux
;
3463 struct hda_input_mux
*dimux
= &spec
->private_dimux
;
3465 unsigned int def_conf
;
3467 snd_hda_add_imux_item(dimux
, stac92xx_dmic_labels
[0], 0, NULL
);
3469 for (i
= 0; i
< spec
->num_dmics
; i
++) {
3471 int index
, type_idx
;
3474 nid
= spec
->dmic_nids
[i
];
3475 if (get_wcaps_type(get_wcaps(codec
, nid
)) != AC_WID_PIN
)
3477 def_conf
= snd_hda_codec_get_pincfg(codec
, nid
);
3478 if (get_defcfg_connect(def_conf
) == AC_JACK_PORT_NONE
)
3481 index
= get_connection_index(codec
, spec
->dmux_nids
[0], nid
);
3485 label
= hda_get_input_pin_label(codec
, nid
, 1);
3486 snd_hda_add_imux_item(dimux
, label
, index
, &type_idx
);
3487 if (snd_hda_get_bool_hint(codec
, "separate_dmux") != 1)
3488 snd_hda_add_imux_item(imux
, label
, index
, &type_idx
);
3490 err
= create_elem_capture_vol(codec
, nid
, label
, type_idx
,
3495 err
= create_elem_capture_vol(codec
, nid
, label
,
3496 type_idx
, HDA_OUTPUT
);
3505 static int check_mic_pin(struct hda_codec
*codec
, hda_nid_t nid
,
3506 hda_nid_t
*fixed
, hda_nid_t
*ext
, hda_nid_t
*dock
)
3512 cfg
= snd_hda_codec_get_pincfg(codec
, nid
);
3513 switch (snd_hda_get_input_pin_attr(cfg
)) {
3514 case INPUT_PIN_ATTR_INT
:
3516 return 1; /* already occupied */
3519 case INPUT_PIN_ATTR_UNUSED
:
3521 case INPUT_PIN_ATTR_DOCK
:
3523 return 1; /* already occupied */
3528 return 1; /* already occupied */
3535 static int set_mic_route(struct hda_codec
*codec
,
3536 struct sigmatel_mic_route
*mic
,
3539 struct sigmatel_spec
*spec
= codec
->spec
;
3540 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
3546 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
3547 if (pin
== cfg
->inputs
[i
].pin
)
3550 if (i
< cfg
->num_inputs
&& cfg
->inputs
[i
].type
== AUTO_PIN_MIC
) {
3552 i
= get_connection_index(codec
, spec
->mux_nids
[0], pin
);
3557 if (spec
->dmux_nids
)
3558 mic
->dmux_idx
= get_connection_index(codec
,
3561 } else if (spec
->dmux_nids
) {
3563 i
= get_connection_index(codec
, spec
->dmux_nids
[0], pin
);
3569 mic
->mux_idx
= get_connection_index(codec
,
3571 spec
->dmux_nids
[0]);
3576 /* return non-zero if the device is for automatic mic switch */
3577 static int stac_check_auto_mic(struct hda_codec
*codec
)
3579 struct sigmatel_spec
*spec
= codec
->spec
;
3580 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
3581 hda_nid_t fixed
, ext
, dock
;
3584 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
3585 if (cfg
->inputs
[i
].type
>= AUTO_PIN_LINE_IN
)
3586 return 0; /* must be exclusively mics */
3588 fixed
= ext
= dock
= 0;
3589 for (i
= 0; i
< cfg
->num_inputs
; i
++)
3590 if (check_mic_pin(codec
, cfg
->inputs
[i
].pin
,
3591 &fixed
, &ext
, &dock
))
3593 for (i
= 0; i
< spec
->num_dmics
; i
++)
3594 if (check_mic_pin(codec
, spec
->dmic_nids
[i
],
3595 &fixed
, &ext
, &dock
))
3597 if (!fixed
|| (!ext
&& !dock
))
3598 return 0; /* no input to switch */
3599 if (!(get_wcaps(codec
, ext
) & AC_WCAP_UNSOL_CAP
))
3600 return 0; /* no unsol support */
3601 if (set_mic_route(codec
, &spec
->ext_mic
, ext
) ||
3602 set_mic_route(codec
, &spec
->int_mic
, fixed
) ||
3603 set_mic_route(codec
, &spec
->dock_mic
, dock
))
3604 return 0; /* something is wrong */
3608 /* create playback/capture controls for input pins */
3609 static int stac92xx_auto_create_analog_input_ctls(struct hda_codec
*codec
, const struct auto_pin_cfg
*cfg
)
3611 struct sigmatel_spec
*spec
= codec
->spec
;
3612 struct hda_input_mux
*imux
= &spec
->private_imux
;
3616 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
3617 hda_nid_t nid
= cfg
->inputs
[i
].pin
;
3618 int index
, err
, type_idx
;
3621 for (j
= 0; j
< spec
->num_muxes
; j
++) {
3622 index
= get_connection_index(codec
, spec
->mux_nids
[j
],
3630 label
= hda_get_autocfg_input_label(codec
, cfg
, i
);
3631 snd_hda_add_imux_item(imux
, label
, index
, &type_idx
);
3633 err
= create_elem_capture_vol(codec
, nid
,
3639 spec
->num_analog_muxes
= imux
->num_items
;
3641 if (imux
->num_items
) {
3643 * Set the current input for the muxes.
3644 * The STAC9221 has two input muxes with identical source
3645 * NID lists. Hopefully this won't get confused.
3647 for (i
= 0; i
< spec
->num_muxes
; i
++) {
3648 snd_hda_codec_write_cache(codec
, spec
->mux_nids
[i
], 0,
3649 AC_VERB_SET_CONNECT_SEL
,
3650 imux
->items
[0].index
);
3657 static void stac92xx_auto_init_multi_out(struct hda_codec
*codec
)
3659 struct sigmatel_spec
*spec
= codec
->spec
;
3662 for (i
= 0; i
< spec
->autocfg
.line_outs
; i
++) {
3663 hda_nid_t nid
= spec
->autocfg
.line_out_pins
[i
];
3664 stac92xx_auto_set_pinctl(codec
, nid
, AC_PINCTL_OUT_EN
);
3668 static void stac92xx_auto_init_hp_out(struct hda_codec
*codec
)
3670 struct sigmatel_spec
*spec
= codec
->spec
;
3673 for (i
= 0; i
< spec
->autocfg
.hp_outs
; i
++) {
3675 pin
= spec
->autocfg
.hp_pins
[i
];
3676 if (pin
) /* connect to front */
3677 stac92xx_auto_set_pinctl(codec
, pin
, AC_PINCTL_OUT_EN
| AC_PINCTL_HP_EN
);
3679 for (i
= 0; i
< spec
->autocfg
.speaker_outs
; i
++) {
3681 pin
= spec
->autocfg
.speaker_pins
[i
];
3682 if (pin
) /* connect to front */
3683 stac92xx_auto_set_pinctl(codec
, pin
, AC_PINCTL_OUT_EN
);
3687 static int is_dual_headphones(struct hda_codec
*codec
)
3689 struct sigmatel_spec
*spec
= codec
->spec
;
3692 if (spec
->autocfg
.line_out_type
!= AUTO_PIN_SPEAKER_OUT
||
3693 spec
->autocfg
.hp_outs
<= 1)
3696 for (i
= 0; i
< spec
->autocfg
.hp_outs
; i
++) {
3697 hda_nid_t nid
= spec
->autocfg
.hp_pins
[i
];
3698 unsigned int cfg
= snd_hda_codec_get_pincfg(codec
, nid
);
3699 if (get_defcfg_location(cfg
) & AC_JACK_LOC_SEPARATE
)
3703 return (valid_hps
> 1);
3707 static int stac92xx_parse_auto_config(struct hda_codec
*codec
, hda_nid_t dig_out
, hda_nid_t dig_in
)
3709 struct sigmatel_spec
*spec
= codec
->spec
;
3713 if ((err
= snd_hda_parse_pin_def_config(codec
,
3715 spec
->dmic_nids
)) < 0)
3717 if (! spec
->autocfg
.line_outs
)
3718 return 0; /* can't find valid pin config */
3720 /* If we have no real line-out pin and multiple hp-outs, HPs should
3721 * be set up as multi-channel outputs.
3723 if (is_dual_headphones(codec
)) {
3724 /* Copy hp_outs to line_outs, backup line_outs in
3725 * speaker_outs so that the following routines can handle
3726 * HP pins as primary outputs.
3728 snd_printdd("stac92xx: Enabling multi-HPs workaround\n");
3729 memcpy(spec
->autocfg
.speaker_pins
, spec
->autocfg
.line_out_pins
,
3730 sizeof(spec
->autocfg
.line_out_pins
));
3731 spec
->autocfg
.speaker_outs
= spec
->autocfg
.line_outs
;
3732 memcpy(spec
->autocfg
.line_out_pins
, spec
->autocfg
.hp_pins
,
3733 sizeof(spec
->autocfg
.hp_pins
));
3734 spec
->autocfg
.line_outs
= spec
->autocfg
.hp_outs
;
3735 spec
->autocfg
.line_out_type
= AUTO_PIN_HP_OUT
;
3736 spec
->autocfg
.hp_outs
= 0;
3739 if (spec
->autocfg
.mono_out_pin
) {
3740 int dir
= get_wcaps(codec
, spec
->autocfg
.mono_out_pin
) &
3741 (AC_WCAP_OUT_AMP
| AC_WCAP_IN_AMP
);
3742 u32 caps
= query_amp_caps(codec
,
3743 spec
->autocfg
.mono_out_pin
, dir
);
3744 hda_nid_t conn_list
[1];
3746 /* get the mixer node and then the mono mux if it exists */
3747 if (snd_hda_get_connections(codec
,
3748 spec
->autocfg
.mono_out_pin
, conn_list
, 1) &&
3749 snd_hda_get_connections(codec
, conn_list
[0],
3750 conn_list
, 1) > 0) {
3752 int wcaps
= get_wcaps(codec
, conn_list
[0]);
3753 int wid_type
= get_wcaps_type(wcaps
);
3754 /* LR swap check, some stac925x have a mux that
3755 * changes the DACs output path instead of the
3758 if (wid_type
== AC_WID_AUD_SEL
&&
3759 !(wcaps
& AC_WCAP_LR_SWAP
))
3760 spec
->mono_nid
= conn_list
[0];
3763 hda_nid_t nid
= spec
->autocfg
.mono_out_pin
;
3765 /* most mono outs have a least a mute/unmute switch */
3766 dir
= (dir
& AC_WCAP_OUT_AMP
) ? HDA_OUTPUT
: HDA_INPUT
;
3767 err
= stac92xx_add_control(spec
, STAC_CTL_WIDGET_MUTE
,
3768 "Mono Playback Switch",
3769 HDA_COMPOSE_AMP_VAL(nid
, 1, 0, dir
));
3772 /* check for volume support for the amp */
3773 if ((caps
& AC_AMPCAP_NUM_STEPS
)
3774 >> AC_AMPCAP_NUM_STEPS_SHIFT
) {
3775 err
= stac92xx_add_control(spec
,
3776 STAC_CTL_WIDGET_VOL
,
3777 "Mono Playback Volume",
3778 HDA_COMPOSE_AMP_VAL(nid
, 1, 0, dir
));
3784 stac92xx_auto_set_pinctl(codec
, spec
->autocfg
.mono_out_pin
,
3788 if (!spec
->multiout
.num_dacs
) {
3789 err
= stac92xx_auto_fill_dac_nids(codec
);
3792 err
= stac92xx_auto_create_multi_out_ctls(codec
,
3798 /* setup analog beep controls */
3799 if (spec
->anabeep_nid
> 0) {
3800 err
= stac92xx_auto_create_beep_ctls(codec
,
3806 /* setup digital beep controls and input device */
3807 #ifdef CONFIG_SND_HDA_INPUT_BEEP
3808 if (spec
->digbeep_nid
> 0) {
3809 hda_nid_t nid
= spec
->digbeep_nid
;
3812 err
= stac92xx_auto_create_beep_ctls(codec
, nid
);
3815 err
= snd_hda_attach_beep_device(codec
, nid
);
3819 /* IDT/STAC codecs have linear beep tone parameter */
3820 codec
->beep
->linear_tone
= spec
->linear_tone_beep
;
3821 /* if no beep switch is available, make its own one */
3822 caps
= query_amp_caps(codec
, nid
, HDA_OUTPUT
);
3823 if (!(caps
& AC_AMPCAP_MUTE
)) {
3824 err
= stac92xx_beep_switch_ctl(codec
);
3832 err
= stac92xx_auto_create_hp_ctls(codec
, &spec
->autocfg
);
3836 /* All output parsing done, now restore the swapped hp pins */
3838 memcpy(spec
->autocfg
.hp_pins
, spec
->autocfg
.line_out_pins
,
3839 sizeof(spec
->autocfg
.hp_pins
));
3840 spec
->autocfg
.hp_outs
= spec
->autocfg
.line_outs
;
3841 spec
->autocfg
.line_out_type
= AUTO_PIN_HP_OUT
;
3842 spec
->autocfg
.line_outs
= 0;
3845 if (stac_check_auto_mic(codec
)) {
3847 /* only one capture for auto-mic */
3850 spec
->num_muxes
= 1;
3853 for (i
= 0; i
< spec
->num_caps
; i
++) {
3854 err
= stac92xx_add_capvol_ctls(codec
, spec
->capvols
[i
],
3855 spec
->capsws
[i
], i
);
3860 err
= stac92xx_auto_create_analog_input_ctls(codec
, &spec
->autocfg
);
3864 if (spec
->mono_nid
> 0) {
3865 err
= stac92xx_auto_create_mono_output_ctls(codec
);
3869 if (spec
->num_dmics
> 0 && !spec
->dinput_mux
)
3870 if ((err
= stac92xx_auto_create_dmic_input_ctls(codec
,
3871 &spec
->autocfg
)) < 0)
3873 if (spec
->num_muxes
> 0) {
3874 err
= stac92xx_auto_create_mux_input_ctls(codec
);
3878 if (spec
->num_smuxes
> 0) {
3879 err
= stac92xx_auto_create_spdif_mux_ctls(codec
);
3884 err
= stac92xx_add_input_source(spec
);
3888 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
3889 if (spec
->multiout
.max_channels
> 2)
3890 spec
->surr_switch
= 1;
3892 if (spec
->autocfg
.dig_outs
)
3893 spec
->multiout
.dig_out_nid
= dig_out
;
3894 if (dig_in
&& spec
->autocfg
.dig_in_pin
)
3895 spec
->dig_in_nid
= dig_in
;
3897 if (spec
->kctls
.list
)
3898 spec
->mixers
[spec
->num_mixers
++] = spec
->kctls
.list
;
3900 spec
->input_mux
= &spec
->private_imux
;
3901 if (!spec
->dinput_mux
)
3902 spec
->dinput_mux
= &spec
->private_dimux
;
3903 spec
->sinput_mux
= &spec
->private_smux
;
3904 spec
->mono_mux
= &spec
->private_mono_mux
;
3908 /* add playback controls for HP output */
3909 static int stac9200_auto_create_hp_ctls(struct hda_codec
*codec
,
3910 struct auto_pin_cfg
*cfg
)
3912 struct sigmatel_spec
*spec
= codec
->spec
;
3913 hda_nid_t pin
= cfg
->hp_pins
[0];
3914 unsigned int wid_caps
;
3919 wid_caps
= get_wcaps(codec
, pin
);
3920 if (wid_caps
& AC_WCAP_UNSOL_CAP
)
3921 spec
->hp_detect
= 1;
3926 /* add playback controls for LFE output */
3927 static int stac9200_auto_create_lfe_ctls(struct hda_codec
*codec
,
3928 struct auto_pin_cfg
*cfg
)
3930 struct sigmatel_spec
*spec
= codec
->spec
;
3932 hda_nid_t lfe_pin
= 0x0;
3936 * search speaker outs and line outs for a mono speaker pin
3937 * with an amp. If one is found, add LFE controls
3940 for (i
= 0; i
< spec
->autocfg
.speaker_outs
&& lfe_pin
== 0x0; i
++) {
3941 hda_nid_t pin
= spec
->autocfg
.speaker_pins
[i
];
3942 unsigned int wcaps
= get_wcaps(codec
, pin
);
3943 wcaps
&= (AC_WCAP_STEREO
| AC_WCAP_OUT_AMP
);
3944 if (wcaps
== AC_WCAP_OUT_AMP
)
3945 /* found a mono speaker with an amp, must be lfe */
3949 /* if speaker_outs is 0, then speakers may be in line_outs */
3950 if (lfe_pin
== 0 && spec
->autocfg
.speaker_outs
== 0) {
3951 for (i
= 0; i
< spec
->autocfg
.line_outs
&& lfe_pin
== 0x0; i
++) {
3952 hda_nid_t pin
= spec
->autocfg
.line_out_pins
[i
];
3953 unsigned int defcfg
;
3954 defcfg
= snd_hda_codec_get_pincfg(codec
, pin
);
3955 if (get_defcfg_device(defcfg
) == AC_JACK_SPEAKER
) {
3956 unsigned int wcaps
= get_wcaps(codec
, pin
);
3957 wcaps
&= (AC_WCAP_STEREO
| AC_WCAP_OUT_AMP
);
3958 if (wcaps
== AC_WCAP_OUT_AMP
)
3959 /* found a mono speaker with an amp,
3967 err
= create_controls(codec
, "LFE", lfe_pin
, 1);
3975 static int stac9200_parse_auto_config(struct hda_codec
*codec
)
3977 struct sigmatel_spec
*spec
= codec
->spec
;
3980 if ((err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
, NULL
)) < 0)
3983 if ((err
= stac92xx_auto_create_analog_input_ctls(codec
, &spec
->autocfg
)) < 0)
3986 if ((err
= stac9200_auto_create_hp_ctls(codec
, &spec
->autocfg
)) < 0)
3989 if ((err
= stac9200_auto_create_lfe_ctls(codec
, &spec
->autocfg
)) < 0)
3992 if (spec
->num_muxes
> 0) {
3993 err
= stac92xx_auto_create_mux_input_ctls(codec
);
3998 err
= stac92xx_add_input_source(spec
);
4002 if (spec
->autocfg
.dig_outs
)
4003 spec
->multiout
.dig_out_nid
= 0x05;
4004 if (spec
->autocfg
.dig_in_pin
)
4005 spec
->dig_in_nid
= 0x04;
4007 if (spec
->kctls
.list
)
4008 spec
->mixers
[spec
->num_mixers
++] = spec
->kctls
.list
;
4010 spec
->input_mux
= &spec
->private_imux
;
4011 spec
->dinput_mux
= &spec
->private_dimux
;
4017 * Early 2006 Intel Macintoshes with STAC9220X5 codecs seem to have a
4018 * funky external mute control using GPIO pins.
4021 static void stac_gpio_set(struct hda_codec
*codec
, unsigned int mask
,
4022 unsigned int dir_mask
, unsigned int data
)
4024 unsigned int gpiostate
, gpiomask
, gpiodir
;
4026 gpiostate
= snd_hda_codec_read(codec
, codec
->afg
, 0,
4027 AC_VERB_GET_GPIO_DATA
, 0);
4028 gpiostate
= (gpiostate
& ~dir_mask
) | (data
& dir_mask
);
4030 gpiomask
= snd_hda_codec_read(codec
, codec
->afg
, 0,
4031 AC_VERB_GET_GPIO_MASK
, 0);
4034 gpiodir
= snd_hda_codec_read(codec
, codec
->afg
, 0,
4035 AC_VERB_GET_GPIO_DIRECTION
, 0);
4036 gpiodir
|= dir_mask
;
4038 /* Configure GPIOx as CMOS */
4039 snd_hda_codec_write(codec
, codec
->afg
, 0, 0x7e7, 0);
4041 snd_hda_codec_write(codec
, codec
->afg
, 0,
4042 AC_VERB_SET_GPIO_MASK
, gpiomask
);
4043 snd_hda_codec_read(codec
, codec
->afg
, 0,
4044 AC_VERB_SET_GPIO_DIRECTION
, gpiodir
); /* sync */
4048 snd_hda_codec_read(codec
, codec
->afg
, 0,
4049 AC_VERB_SET_GPIO_DATA
, gpiostate
); /* sync */
4052 #ifdef CONFIG_SND_HDA_INPUT_JACK
4053 static void stac92xx_free_jack_priv(struct snd_jack
*jack
)
4055 struct sigmatel_jack
*jacks
= jack
->private_data
;
4061 static int stac92xx_add_jack(struct hda_codec
*codec
,
4062 hda_nid_t nid
, int type
)
4064 #ifdef CONFIG_SND_HDA_INPUT_JACK
4065 struct sigmatel_spec
*spec
= codec
->spec
;
4066 struct sigmatel_jack
*jack
;
4067 int def_conf
= snd_hda_codec_get_pincfg(codec
, nid
);
4068 int connectivity
= get_defcfg_connect(def_conf
);
4072 if (connectivity
&& connectivity
!= AC_JACK_PORT_FIXED
)
4075 snd_array_init(&spec
->jacks
, sizeof(*jack
), 32);
4076 jack
= snd_array_new(&spec
->jacks
);
4082 snprintf(name
, sizeof(name
), "%s at %s %s Jack",
4083 snd_hda_get_jack_type(def_conf
),
4084 snd_hda_get_jack_connectivity(def_conf
),
4085 snd_hda_get_jack_location(def_conf
));
4087 err
= snd_jack_new(codec
->bus
->card
, name
, type
, &jack
->jack
);
4092 jack
->jack
->private_data
= jack
;
4093 jack
->jack
->private_free
= stac92xx_free_jack_priv
;
4098 static int stac_add_event(struct sigmatel_spec
*spec
, hda_nid_t nid
,
4099 unsigned char type
, int data
)
4101 struct sigmatel_event
*event
;
4103 snd_array_init(&spec
->events
, sizeof(*event
), 32);
4104 event
= snd_array_new(&spec
->events
);
4109 event
->tag
= spec
->events
.used
;
4115 static struct sigmatel_event
*stac_get_event(struct hda_codec
*codec
,
4118 struct sigmatel_spec
*spec
= codec
->spec
;
4119 struct sigmatel_event
*event
= spec
->events
.list
;
4122 for (i
= 0; i
< spec
->events
.used
; i
++, event
++) {
4123 if (event
->nid
== nid
)
4129 static struct sigmatel_event
*stac_get_event_from_tag(struct hda_codec
*codec
,
4132 struct sigmatel_spec
*spec
= codec
->spec
;
4133 struct sigmatel_event
*event
= spec
->events
.list
;
4136 for (i
= 0; i
< spec
->events
.used
; i
++, event
++) {
4137 if (event
->tag
== tag
)
4143 /* check if given nid is a valid pin and no other events are assigned
4144 * to it. If OK, assign the event, set the unsol flag, and returns 1.
4145 * Otherwise, returns zero.
4147 static int enable_pin_detect(struct hda_codec
*codec
, hda_nid_t nid
,
4150 struct sigmatel_event
*event
;
4153 if (!(get_wcaps(codec
, nid
) & AC_WCAP_UNSOL_CAP
))
4155 event
= stac_get_event(codec
, nid
);
4157 if (event
->type
!= type
)
4161 tag
= stac_add_event(codec
->spec
, nid
, type
, 0);
4165 snd_hda_codec_write_cache(codec
, nid
, 0,
4166 AC_VERB_SET_UNSOLICITED_ENABLE
,
4171 static int is_nid_hp_pin(struct auto_pin_cfg
*cfg
, hda_nid_t nid
)
4174 for (i
= 0; i
< cfg
->hp_outs
; i
++)
4175 if (cfg
->hp_pins
[i
] == nid
)
4176 return 1; /* nid is a HP-Out */
4178 return 0; /* nid is not a HP-Out */
4181 static void stac92xx_power_down(struct hda_codec
*codec
)
4183 struct sigmatel_spec
*spec
= codec
->spec
;
4185 /* power down inactive DACs */
4187 for (dac
= spec
->dac_list
; *dac
; dac
++)
4188 if (!check_all_dac_nids(spec
, *dac
))
4189 snd_hda_codec_write(codec
, *dac
, 0,
4190 AC_VERB_SET_POWER_STATE
, AC_PWRST_D3
);
4193 static void stac_toggle_power_map(struct hda_codec
*codec
, hda_nid_t nid
,
4196 static inline int get_int_hint(struct hda_codec
*codec
, const char *key
,
4200 p
= snd_hda_get_hint(codec
, key
);
4203 if (!strict_strtoul(p
, 0, &val
)) {
4211 /* override some hints from the hwdep entry */
4212 static void stac_store_hints(struct hda_codec
*codec
)
4214 struct sigmatel_spec
*spec
= codec
->spec
;
4217 val
= snd_hda_get_bool_hint(codec
, "hp_detect");
4219 spec
->hp_detect
= val
;
4220 if (get_int_hint(codec
, "gpio_mask", &spec
->gpio_mask
)) {
4221 spec
->eapd_mask
= spec
->gpio_dir
= spec
->gpio_data
=
4224 if (get_int_hint(codec
, "gpio_dir", &spec
->gpio_dir
))
4225 spec
->gpio_mask
&= spec
->gpio_mask
;
4226 if (get_int_hint(codec
, "gpio_data", &spec
->gpio_data
))
4227 spec
->gpio_dir
&= spec
->gpio_mask
;
4228 if (get_int_hint(codec
, "eapd_mask", &spec
->eapd_mask
))
4229 spec
->eapd_mask
&= spec
->gpio_mask
;
4230 if (get_int_hint(codec
, "gpio_mute", &spec
->gpio_mute
))
4231 spec
->gpio_mute
&= spec
->gpio_mask
;
4232 val
= snd_hda_get_bool_hint(codec
, "eapd_switch");
4234 spec
->eapd_switch
= val
;
4235 get_int_hint(codec
, "gpio_led_polarity", &spec
->gpio_led_polarity
);
4236 if (get_int_hint(codec
, "gpio_led", &spec
->gpio_led
)) {
4237 spec
->gpio_mask
|= spec
->gpio_led
;
4238 spec
->gpio_dir
|= spec
->gpio_led
;
4239 if (spec
->gpio_led_polarity
)
4240 spec
->gpio_data
|= spec
->gpio_led
;
4244 static int stac92xx_init(struct hda_codec
*codec
)
4246 struct sigmatel_spec
*spec
= codec
->spec
;
4247 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
4251 snd_hda_sequence_write(codec
, spec
->init
);
4253 /* power down adcs initially */
4254 if (spec
->powerdown_adcs
)
4255 for (i
= 0; i
< spec
->num_adcs
; i
++)
4256 snd_hda_codec_write(codec
,
4257 spec
->adc_nids
[i
], 0,
4258 AC_VERB_SET_POWER_STATE
, AC_PWRST_D3
);
4260 /* override some hints */
4261 stac_store_hints(codec
);
4264 gpio
= spec
->gpio_data
;
4265 /* turn on EAPD statically when spec->eapd_switch isn't set.
4266 * otherwise, unsol event will turn it on/off dynamically
4268 if (!spec
->eapd_switch
)
4269 gpio
|= spec
->eapd_mask
;
4270 stac_gpio_set(codec
, spec
->gpio_mask
, spec
->gpio_dir
, gpio
);
4273 if (spec
->hp_detect
) {
4274 /* Enable unsolicited responses on the HP widget */
4275 for (i
= 0; i
< cfg
->hp_outs
; i
++) {
4276 hda_nid_t nid
= cfg
->hp_pins
[i
];
4277 enable_pin_detect(codec
, nid
, STAC_HP_EVENT
);
4279 if (cfg
->line_out_type
== AUTO_PIN_LINE_OUT
&&
4280 cfg
->speaker_outs
> 0) {
4281 /* enable pin-detect for line-outs as well */
4282 for (i
= 0; i
< cfg
->line_outs
; i
++) {
4283 hda_nid_t nid
= cfg
->line_out_pins
[i
];
4284 enable_pin_detect(codec
, nid
, STAC_LO_EVENT
);
4288 /* force to enable the first line-out; the others are set up
4291 stac92xx_auto_set_pinctl(codec
, spec
->autocfg
.line_out_pins
[0],
4293 /* fake event to set up pins */
4294 if (cfg
->hp_pins
[0])
4295 stac_issue_unsol_event(codec
, cfg
->hp_pins
[0]);
4296 else if (cfg
->line_out_pins
[0])
4297 stac_issue_unsol_event(codec
, cfg
->line_out_pins
[0]);
4299 stac92xx_auto_init_multi_out(codec
);
4300 stac92xx_auto_init_hp_out(codec
);
4301 for (i
= 0; i
< cfg
->hp_outs
; i
++)
4302 stac_toggle_power_map(codec
, cfg
->hp_pins
[i
], 1);
4304 if (spec
->auto_mic
) {
4305 /* initialize connection to analog input */
4306 if (spec
->dmux_nids
)
4307 snd_hda_codec_write_cache(codec
, spec
->dmux_nids
[0], 0,
4308 AC_VERB_SET_CONNECT_SEL
, 0);
4309 if (enable_pin_detect(codec
, spec
->ext_mic
.pin
, STAC_MIC_EVENT
))
4310 stac_issue_unsol_event(codec
, spec
->ext_mic
.pin
);
4311 if (enable_pin_detect(codec
, spec
->dock_mic
.pin
,
4313 stac_issue_unsol_event(codec
, spec
->dock_mic
.pin
);
4315 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
4316 hda_nid_t nid
= cfg
->inputs
[i
].pin
;
4317 int type
= cfg
->inputs
[i
].type
;
4318 unsigned int pinctl
, conf
;
4319 if (type
== AUTO_PIN_MIC
) {
4320 /* for mic pins, force to initialize */
4321 pinctl
= stac92xx_get_default_vref(codec
, nid
);
4322 pinctl
|= AC_PINCTL_IN_EN
;
4323 stac92xx_auto_set_pinctl(codec
, nid
, pinctl
);
4325 pinctl
= snd_hda_codec_read(codec
, nid
, 0,
4326 AC_VERB_GET_PIN_WIDGET_CONTROL
, 0);
4327 /* if PINCTL already set then skip */
4328 /* Also, if both INPUT and OUTPUT are set,
4329 * it must be a BIOS bug; need to override, too
4331 if (!(pinctl
& AC_PINCTL_IN_EN
) ||
4332 (pinctl
& AC_PINCTL_OUT_EN
)) {
4333 pinctl
&= ~AC_PINCTL_OUT_EN
;
4334 pinctl
|= AC_PINCTL_IN_EN
;
4335 stac92xx_auto_set_pinctl(codec
, nid
, pinctl
);
4338 conf
= snd_hda_codec_get_pincfg(codec
, nid
);
4339 if (get_defcfg_connect(conf
) != AC_JACK_PORT_FIXED
) {
4340 if (enable_pin_detect(codec
, nid
, STAC_INSERT_EVENT
))
4341 stac_issue_unsol_event(codec
, nid
);
4344 for (i
= 0; i
< spec
->num_dmics
; i
++)
4345 stac92xx_auto_set_pinctl(codec
, spec
->dmic_nids
[i
],
4347 if (cfg
->dig_out_pins
[0])
4348 stac92xx_auto_set_pinctl(codec
, cfg
->dig_out_pins
[0],
4350 if (cfg
->dig_in_pin
)
4351 stac92xx_auto_set_pinctl(codec
, cfg
->dig_in_pin
,
4353 for (i
= 0; i
< spec
->num_pwrs
; i
++) {
4354 hda_nid_t nid
= spec
->pwr_nids
[i
];
4355 int pinctl
, def_conf
;
4357 /* power on when no jack detection is available */
4358 if (!spec
->hp_detect
) {
4359 stac_toggle_power_map(codec
, nid
, 1);
4363 if (is_nid_hp_pin(cfg
, nid
))
4364 continue; /* already has an unsol event */
4366 pinctl
= snd_hda_codec_read(codec
, nid
, 0,
4367 AC_VERB_GET_PIN_WIDGET_CONTROL
, 0);
4368 /* outputs are only ports capable of power management
4369 * any attempts on powering down a input port cause the
4370 * referenced VREF to act quirky.
4372 if (pinctl
& AC_PINCTL_IN_EN
) {
4373 stac_toggle_power_map(codec
, nid
, 1);
4376 def_conf
= snd_hda_codec_get_pincfg(codec
, nid
);
4377 def_conf
= get_defcfg_connect(def_conf
);
4378 /* skip any ports that don't have jacks since presence
4379 * detection is useless */
4380 if (def_conf
!= AC_JACK_PORT_COMPLEX
) {
4381 if (def_conf
!= AC_JACK_PORT_NONE
)
4382 stac_toggle_power_map(codec
, nid
, 1);
4385 if (enable_pin_detect(codec
, nid
, STAC_PWR_EVENT
))
4386 stac_issue_unsol_event(codec
, nid
);
4391 hda_call_check_power_status(codec
, 0x01);
4393 stac92xx_power_down(codec
);
4397 static void stac92xx_free_jacks(struct hda_codec
*codec
)
4399 #ifdef CONFIG_SND_HDA_INPUT_JACK
4400 /* free jack instances manually when clearing/reconfiguring */
4401 struct sigmatel_spec
*spec
= codec
->spec
;
4402 if (!codec
->bus
->shutdown
&& spec
->jacks
.list
) {
4403 struct sigmatel_jack
*jacks
= spec
->jacks
.list
;
4405 for (i
= 0; i
< spec
->jacks
.used
; i
++, jacks
++) {
4407 snd_device_free(codec
->bus
->card
, jacks
->jack
);
4410 snd_array_free(&spec
->jacks
);
4414 static void stac92xx_free_kctls(struct hda_codec
*codec
)
4416 struct sigmatel_spec
*spec
= codec
->spec
;
4418 if (spec
->kctls
.list
) {
4419 struct snd_kcontrol_new
*kctl
= spec
->kctls
.list
;
4421 for (i
= 0; i
< spec
->kctls
.used
; i
++)
4422 kfree(kctl
[i
].name
);
4424 snd_array_free(&spec
->kctls
);
4427 static void stac92xx_shutup(struct hda_codec
*codec
)
4429 struct sigmatel_spec
*spec
= codec
->spec
;
4431 snd_hda_shutup_pins(codec
);
4433 if (spec
->eapd_mask
)
4434 stac_gpio_set(codec
, spec
->gpio_mask
,
4435 spec
->gpio_dir
, spec
->gpio_data
&
4439 static void stac92xx_free(struct hda_codec
*codec
)
4441 struct sigmatel_spec
*spec
= codec
->spec
;
4446 stac92xx_shutup(codec
);
4447 stac92xx_free_jacks(codec
);
4448 snd_array_free(&spec
->events
);
4451 snd_hda_detach_beep_device(codec
);
4454 static void stac92xx_set_pinctl(struct hda_codec
*codec
, hda_nid_t nid
,
4457 unsigned int old_ctl
, pin_ctl
;
4459 pin_ctl
= snd_hda_codec_read(codec
, nid
,
4460 0, AC_VERB_GET_PIN_WIDGET_CONTROL
, 0x00);
4462 if (pin_ctl
& AC_PINCTL_IN_EN
) {
4464 * we need to check the current set-up direction of
4465 * shared input pins since they can be switched via
4466 * "xxx as Output" mixer switch
4468 struct sigmatel_spec
*spec
= codec
->spec
;
4469 if (nid
== spec
->line_switch
|| nid
== spec
->mic_switch
)
4474 /* if setting pin direction bits, clear the current
4475 direction bits first */
4476 if (flag
& (AC_PINCTL_IN_EN
| AC_PINCTL_OUT_EN
))
4477 pin_ctl
&= ~(AC_PINCTL_IN_EN
| AC_PINCTL_OUT_EN
);
4480 if (old_ctl
!= pin_ctl
)
4481 snd_hda_codec_write_cache(codec
, nid
, 0,
4482 AC_VERB_SET_PIN_WIDGET_CONTROL
,
4486 static void stac92xx_reset_pinctl(struct hda_codec
*codec
, hda_nid_t nid
,
4489 unsigned int pin_ctl
= snd_hda_codec_read(codec
, nid
,
4490 0, AC_VERB_GET_PIN_WIDGET_CONTROL
, 0x00);
4492 snd_hda_codec_write_cache(codec
, nid
, 0,
4493 AC_VERB_SET_PIN_WIDGET_CONTROL
,
4497 static inline int get_pin_presence(struct hda_codec
*codec
, hda_nid_t nid
)
4501 return snd_hda_jack_detect(codec
, nid
);
4504 static void stac92xx_line_out_detect(struct hda_codec
*codec
,
4507 struct sigmatel_spec
*spec
= codec
->spec
;
4508 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
4511 for (i
= 0; i
< cfg
->line_outs
; i
++) {
4514 presence
= get_pin_presence(codec
, cfg
->line_out_pins
[i
]);
4516 unsigned int pinctl
;
4517 pinctl
= snd_hda_codec_read(codec
,
4518 cfg
->line_out_pins
[i
], 0,
4519 AC_VERB_GET_PIN_WIDGET_CONTROL
, 0);
4520 if (pinctl
& AC_PINCTL_IN_EN
)
4521 presence
= 0; /* mic- or line-input */
4526 /* disable speakers */
4527 for (i
= 0; i
< cfg
->speaker_outs
; i
++)
4528 stac92xx_reset_pinctl(codec
, cfg
->speaker_pins
[i
],
4530 if (spec
->eapd_mask
&& spec
->eapd_switch
)
4531 stac_gpio_set(codec
, spec
->gpio_mask
,
4532 spec
->gpio_dir
, spec
->gpio_data
&
4535 /* enable speakers */
4536 for (i
= 0; i
< cfg
->speaker_outs
; i
++)
4537 stac92xx_set_pinctl(codec
, cfg
->speaker_pins
[i
],
4539 if (spec
->eapd_mask
&& spec
->eapd_switch
)
4540 stac_gpio_set(codec
, spec
->gpio_mask
,
4541 spec
->gpio_dir
, spec
->gpio_data
|
4546 /* return non-zero if the hp-pin of the given array index isn't
4547 * a jack-detection target
4549 static int no_hp_sensing(struct sigmatel_spec
*spec
, int i
)
4551 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
4553 /* ignore sensing of shared line and mic jacks */
4554 if (cfg
->hp_pins
[i
] == spec
->line_switch
)
4556 if (cfg
->hp_pins
[i
] == spec
->mic_switch
)
4558 /* ignore if the pin is set as line-out */
4559 if (cfg
->hp_pins
[i
] == spec
->hp_switch
)
4564 static void stac92xx_hp_detect(struct hda_codec
*codec
)
4566 struct sigmatel_spec
*spec
= codec
->spec
;
4567 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
4571 if (spec
->gpio_mute
)
4572 presence
= !(snd_hda_codec_read(codec
, codec
->afg
, 0,
4573 AC_VERB_GET_GPIO_DATA
, 0) & spec
->gpio_mute
);
4575 for (i
= 0; i
< cfg
->hp_outs
; i
++) {
4578 if (no_hp_sensing(spec
, i
))
4580 presence
= get_pin_presence(codec
, cfg
->hp_pins
[i
]);
4582 unsigned int pinctl
;
4583 pinctl
= snd_hda_codec_read(codec
, cfg
->hp_pins
[i
], 0,
4584 AC_VERB_GET_PIN_WIDGET_CONTROL
, 0);
4585 if (pinctl
& AC_PINCTL_IN_EN
)
4586 presence
= 0; /* mic- or line-input */
4591 /* disable lineouts */
4592 if (spec
->hp_switch
)
4593 stac92xx_reset_pinctl(codec
, spec
->hp_switch
,
4595 for (i
= 0; i
< cfg
->line_outs
; i
++)
4596 stac92xx_reset_pinctl(codec
, cfg
->line_out_pins
[i
],
4599 /* enable lineouts */
4600 if (spec
->hp_switch
)
4601 stac92xx_set_pinctl(codec
, spec
->hp_switch
,
4603 for (i
= 0; i
< cfg
->line_outs
; i
++)
4604 stac92xx_set_pinctl(codec
, cfg
->line_out_pins
[i
],
4607 stac92xx_line_out_detect(codec
, presence
);
4608 /* toggle hp outs */
4609 for (i
= 0; i
< cfg
->hp_outs
; i
++) {
4610 unsigned int val
= AC_PINCTL_OUT_EN
| AC_PINCTL_HP_EN
;
4611 if (no_hp_sensing(spec
, i
))
4614 stac92xx_set_pinctl(codec
, cfg
->hp_pins
[i
], val
);
4616 /* Resetting the pinctl like below may lead to (a sort of) regressions
4617 * on some devices since they use the HP pin actually for line/speaker
4618 * outs although the default pin config shows a different pin (that is
4619 * wrong and useless).
4621 * So, it's basically a problem of default pin configs, likely a BIOS issue.
4622 * But, disabling the code below just works around it, and I'm too tired of
4623 * bug reports with such devices...
4626 stac92xx_reset_pinctl(codec
, cfg
->hp_pins
[i
], val
);
4631 static void stac_toggle_power_map(struct hda_codec
*codec
, hda_nid_t nid
,
4634 struct sigmatel_spec
*spec
= codec
->spec
;
4635 unsigned int idx
, val
;
4637 for (idx
= 0; idx
< spec
->num_pwrs
; idx
++) {
4638 if (spec
->pwr_nids
[idx
] == nid
)
4641 if (idx
>= spec
->num_pwrs
)
4644 /* several codecs have two power down bits */
4645 if (spec
->pwr_mapping
)
4646 idx
= spec
->pwr_mapping
[idx
];
4650 val
= snd_hda_codec_read(codec
, codec
->afg
, 0, 0x0fec, 0x0) & 0xff;
4656 /* power down unused output ports */
4657 snd_hda_codec_write(codec
, codec
->afg
, 0, 0x7ec, val
);
4660 static void stac92xx_pin_sense(struct hda_codec
*codec
, hda_nid_t nid
)
4662 stac_toggle_power_map(codec
, nid
, get_pin_presence(codec
, nid
));
4665 static void stac92xx_report_jack(struct hda_codec
*codec
, hda_nid_t nid
)
4667 struct sigmatel_spec
*spec
= codec
->spec
;
4668 struct sigmatel_jack
*jacks
= spec
->jacks
.list
;
4672 for (i
= 0; i
< spec
->jacks
.used
; i
++) {
4673 if (jacks
->nid
== nid
) {
4674 unsigned int pin_ctl
=
4675 snd_hda_codec_read(codec
, nid
,
4676 0, AC_VERB_GET_PIN_WIDGET_CONTROL
,
4678 int type
= jacks
->type
;
4679 if (type
== (SND_JACK_LINEOUT
4680 | SND_JACK_HEADPHONE
))
4681 type
= (pin_ctl
& AC_PINCTL_HP_EN
)
4682 ? SND_JACK_HEADPHONE
: SND_JACK_LINEOUT
;
4683 snd_jack_report(jacks
->jack
,
4684 get_pin_presence(codec
, nid
)
4692 /* get the pin connection (fixed, none, etc) */
4693 static unsigned int stac_get_defcfg_connect(struct hda_codec
*codec
, int idx
)
4695 struct sigmatel_spec
*spec
= codec
->spec
;
4698 cfg
= snd_hda_codec_get_pincfg(codec
, spec
->pin_nids
[idx
]);
4699 return get_defcfg_connect(cfg
);
4702 static int stac92xx_connected_ports(struct hda_codec
*codec
,
4703 hda_nid_t
*nids
, int num_nids
)
4705 struct sigmatel_spec
*spec
= codec
->spec
;
4707 unsigned int def_conf
;
4709 for (num
= 0; num
< num_nids
; num
++) {
4710 for (idx
= 0; idx
< spec
->num_pins
; idx
++)
4711 if (spec
->pin_nids
[idx
] == nids
[num
])
4713 if (idx
>= spec
->num_pins
)
4715 def_conf
= stac_get_defcfg_connect(codec
, idx
);
4716 if (def_conf
== AC_JACK_PORT_NONE
)
4722 static void stac92xx_mic_detect(struct hda_codec
*codec
)
4724 struct sigmatel_spec
*spec
= codec
->spec
;
4725 struct sigmatel_mic_route
*mic
;
4727 if (get_pin_presence(codec
, spec
->ext_mic
.pin
))
4728 mic
= &spec
->ext_mic
;
4729 else if (get_pin_presence(codec
, spec
->dock_mic
.pin
))
4730 mic
= &spec
->dock_mic
;
4732 mic
= &spec
->int_mic
;
4733 if (mic
->dmux_idx
>= 0)
4734 snd_hda_codec_write_cache(codec
, spec
->dmux_nids
[0], 0,
4735 AC_VERB_SET_CONNECT_SEL
,
4737 if (mic
->mux_idx
>= 0)
4738 snd_hda_codec_write_cache(codec
, spec
->mux_nids
[0], 0,
4739 AC_VERB_SET_CONNECT_SEL
,
4743 static void stac_issue_unsol_event(struct hda_codec
*codec
, hda_nid_t nid
)
4745 struct sigmatel_event
*event
= stac_get_event(codec
, nid
);
4748 codec
->patch_ops
.unsol_event(codec
, (unsigned)event
->tag
<< 26);
4751 static void stac92xx_unsol_event(struct hda_codec
*codec
, unsigned int res
)
4753 struct sigmatel_spec
*spec
= codec
->spec
;
4754 struct sigmatel_event
*event
;
4757 tag
= (res
>> 26) & 0x7f;
4758 event
= stac_get_event_from_tag(codec
, tag
);
4762 switch (event
->type
) {
4765 stac92xx_hp_detect(codec
);
4767 case STAC_MIC_EVENT
:
4768 stac92xx_mic_detect(codec
);
4772 switch (event
->type
) {
4775 case STAC_MIC_EVENT
:
4776 case STAC_INSERT_EVENT
:
4777 case STAC_PWR_EVENT
:
4778 if (spec
->num_pwrs
> 0)
4779 stac92xx_pin_sense(codec
, event
->nid
);
4780 stac92xx_report_jack(codec
, event
->nid
);
4782 switch (codec
->subsystem_id
) {
4784 if (event
->nid
== 0xb) {
4785 int pin
= AC_PINCTL_IN_EN
;
4787 if (get_pin_presence(codec
, 0xa)
4788 && get_pin_presence(codec
, 0xb))
4789 pin
|= AC_PINCTL_VREF_80
;
4790 if (!get_pin_presence(codec
, 0xb))
4791 pin
|= AC_PINCTL_VREF_80
;
4793 /* toggle VREF state based on mic + hp pin
4796 stac92xx_auto_set_pinctl(codec
, 0x0a, pin
);
4800 case STAC_VREF_EVENT
:
4801 data
= snd_hda_codec_read(codec
, codec
->afg
, 0,
4802 AC_VERB_GET_GPIO_DATA
, 0);
4803 /* toggle VREF state based on GPIOx status */
4804 snd_hda_codec_write(codec
, codec
->afg
, 0, 0x7e0,
4805 !!(data
& (1 << event
->data
)));
4810 static int hp_blike_system(u32 subsystem_id
);
4812 static void set_hp_led_gpio(struct hda_codec
*codec
)
4814 struct sigmatel_spec
*spec
= codec
->spec
;
4820 gpio
= snd_hda_param_read(codec
, codec
->afg
, AC_PAR_GPIO_CAP
);
4821 gpio
&= AC_GPIO_IO_COUNT
;
4823 spec
->gpio_led
= 0x08; /* GPIO 3 */
4825 spec
->gpio_led
= 0x01; /* GPIO 0 */
4829 * This method searches for the mute LED GPIO configuration
4830 * provided as OEM string in SMBIOS. The format of that string
4831 * is HP_Mute_LED_P_G or HP_Mute_LED_P
4832 * where P can be 0 or 1 and defines mute LED GPIO control state (low/high)
4833 * that corresponds to the NOT muted state of the master volume
4834 * and G is the index of the GPIO to use as the mute LED control (0..9)
4835 * If _G portion is missing it is assigned based on the codec ID
4837 * So, HP B-series like systems may have HP_Mute_LED_0 (current models)
4838 * or HP_Mute_LED_0_3 (future models) OEM SMBIOS strings
4841 * The dv-series laptops don't seem to have the HP_Mute_LED* strings in
4842 * SMBIOS - at least the ones I have seen do not have them - which include
4843 * my own system (HP Pavilion dv6-1110ax) and my cousin's
4844 * HP Pavilion dv9500t CTO.
4845 * Need more information on whether it is true across the entire series.
4848 static int find_mute_led_gpio(struct hda_codec
*codec
, int default_polarity
)
4850 struct sigmatel_spec
*spec
= codec
->spec
;
4851 const struct dmi_device
*dev
= NULL
;
4853 if ((codec
->subsystem_id
>> 16) == PCI_VENDOR_ID_HP
) {
4854 while ((dev
= dmi_find_device(DMI_DEV_TYPE_OEM_STRING
,
4856 if (sscanf(dev
->name
, "HP_Mute_LED_%d_%d",
4857 &spec
->gpio_led_polarity
,
4858 &spec
->gpio_led
) == 2) {
4859 spec
->gpio_led
= 1 << spec
->gpio_led
;
4862 if (sscanf(dev
->name
, "HP_Mute_LED_%d",
4863 &spec
->gpio_led_polarity
) == 1) {
4864 set_hp_led_gpio(codec
);
4870 * Fallback case - if we don't find the DMI strings,
4871 * we statically set the GPIO - if not a B-series system.
4873 if (!hp_blike_system(codec
->subsystem_id
)) {
4874 set_hp_led_gpio(codec
);
4875 spec
->gpio_led_polarity
= default_polarity
;
4882 static int hp_blike_system(u32 subsystem_id
)
4884 switch (subsystem_id
) {
4911 #ifdef CONFIG_PROC_FS
4912 static void stac92hd_proc_hook(struct snd_info_buffer
*buffer
,
4913 struct hda_codec
*codec
, hda_nid_t nid
)
4915 if (nid
== codec
->afg
)
4916 snd_iprintf(buffer
, "Power-Map: 0x%02x\n",
4917 snd_hda_codec_read(codec
, nid
, 0, 0x0fec, 0x0));
4920 static void analog_loop_proc_hook(struct snd_info_buffer
*buffer
,
4921 struct hda_codec
*codec
,
4924 snd_iprintf(buffer
, "Analog Loopback: 0x%02x\n",
4925 snd_hda_codec_read(codec
, codec
->afg
, 0, verb
, 0));
4928 /* stac92hd71bxx, stac92hd73xx */
4929 static void stac92hd7x_proc_hook(struct snd_info_buffer
*buffer
,
4930 struct hda_codec
*codec
, hda_nid_t nid
)
4932 stac92hd_proc_hook(buffer
, codec
, nid
);
4933 if (nid
== codec
->afg
)
4934 analog_loop_proc_hook(buffer
, codec
, 0xfa0);
4937 static void stac9205_proc_hook(struct snd_info_buffer
*buffer
,
4938 struct hda_codec
*codec
, hda_nid_t nid
)
4940 if (nid
== codec
->afg
)
4941 analog_loop_proc_hook(buffer
, codec
, 0xfe0);
4944 static void stac927x_proc_hook(struct snd_info_buffer
*buffer
,
4945 struct hda_codec
*codec
, hda_nid_t nid
)
4947 if (nid
== codec
->afg
)
4948 analog_loop_proc_hook(buffer
, codec
, 0xfeb);
4951 #define stac92hd_proc_hook NULL
4952 #define stac92hd7x_proc_hook NULL
4953 #define stac9205_proc_hook NULL
4954 #define stac927x_proc_hook NULL
4957 #ifdef SND_HDA_NEEDS_RESUME
4958 static int stac92xx_resume(struct hda_codec
*codec
)
4960 struct sigmatel_spec
*spec
= codec
->spec
;
4962 stac92xx_init(codec
);
4963 snd_hda_codec_resume_amp(codec
);
4964 snd_hda_codec_resume_cache(codec
);
4965 /* fake event to set up pins again to override cached values */
4966 if (spec
->hp_detect
) {
4967 if (spec
->autocfg
.hp_pins
[0])
4968 stac_issue_unsol_event(codec
, spec
->autocfg
.hp_pins
[0]);
4969 else if (spec
->autocfg
.line_out_pins
[0])
4970 stac_issue_unsol_event(codec
,
4971 spec
->autocfg
.line_out_pins
[0]);
4975 hda_call_check_power_status(codec
, 0x01);
4980 * using power check for controlling mute led of HP notebooks
4981 * check for mute state only on Speakers (nid = 0x10)
4983 * For this feature CONFIG_SND_HDA_POWER_SAVE is needed, otherwise
4984 * the LED is NOT working properly !
4986 * Changed name to reflect that it now works for any designated
4987 * model, not just HP HDX.
4990 #ifdef CONFIG_SND_HDA_POWER_SAVE
4991 static int stac92xx_hp_check_power_status(struct hda_codec
*codec
,
4994 struct sigmatel_spec
*spec
= codec
->spec
;
4997 for (i
= 0; i
< spec
->multiout
.num_dacs
; i
++) {
4998 nid
= spec
->multiout
.dac_nids
[i
];
4999 if (!(snd_hda_codec_amp_read(codec
, nid
, 0, HDA_OUTPUT
, 0) &
5001 muted
= 0; /* something heard */
5006 spec
->gpio_data
&= ~spec
->gpio_led
; /* orange */
5008 spec
->gpio_data
|= spec
->gpio_led
; /* white */
5010 if (!spec
->gpio_led_polarity
) {
5011 /* LED state is inverted on these systems */
5012 spec
->gpio_data
^= spec
->gpio_led
;
5015 stac_gpio_set(codec
, spec
->gpio_mask
, spec
->gpio_dir
, spec
->gpio_data
);
5020 static int stac92xx_suspend(struct hda_codec
*codec
, pm_message_t state
)
5022 stac92xx_shutup(codec
);
5027 static struct hda_codec_ops stac92xx_patch_ops
= {
5028 .build_controls
= stac92xx_build_controls
,
5029 .build_pcms
= stac92xx_build_pcms
,
5030 .init
= stac92xx_init
,
5031 .free
= stac92xx_free
,
5032 .unsol_event
= stac92xx_unsol_event
,
5033 #ifdef SND_HDA_NEEDS_RESUME
5034 .suspend
= stac92xx_suspend
,
5035 .resume
= stac92xx_resume
,
5037 .reboot_notify
= stac92xx_shutup
,
5040 static int patch_stac9200(struct hda_codec
*codec
)
5042 struct sigmatel_spec
*spec
;
5045 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
5049 codec
->no_trigger_sense
= 1;
5051 spec
->linear_tone_beep
= 1;
5052 spec
->num_pins
= ARRAY_SIZE(stac9200_pin_nids
);
5053 spec
->pin_nids
= stac9200_pin_nids
;
5054 spec
->board_config
= snd_hda_check_board_config(codec
, STAC_9200_MODELS
,
5057 if (spec
->board_config
< 0)
5058 snd_printdd(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
5061 stac92xx_set_config_regs(codec
,
5062 stac9200_brd_tbl
[spec
->board_config
]);
5064 spec
->multiout
.max_channels
= 2;
5065 spec
->multiout
.num_dacs
= 1;
5066 spec
->multiout
.dac_nids
= stac9200_dac_nids
;
5067 spec
->adc_nids
= stac9200_adc_nids
;
5068 spec
->mux_nids
= stac9200_mux_nids
;
5069 spec
->num_muxes
= 1;
5070 spec
->num_dmics
= 0;
5074 if (spec
->board_config
== STAC_9200_M4
||
5075 spec
->board_config
== STAC_9200_M4_2
||
5076 spec
->board_config
== STAC_9200_OQO
)
5077 spec
->init
= stac9200_eapd_init
;
5079 spec
->init
= stac9200_core_init
;
5080 spec
->mixer
= stac9200_mixer
;
5082 if (spec
->board_config
== STAC_9200_PANASONIC
) {
5083 spec
->gpio_mask
= spec
->gpio_dir
= 0x09;
5084 spec
->gpio_data
= 0x00;
5087 err
= stac9200_parse_auto_config(codec
);
5089 stac92xx_free(codec
);
5093 /* CF-74 has no headphone detection, and the driver should *NOT*
5094 * do detection and HP/speaker toggle because the hardware does it.
5096 if (spec
->board_config
== STAC_9200_PANASONIC
)
5097 spec
->hp_detect
= 0;
5099 codec
->patch_ops
= stac92xx_patch_ops
;
5104 static int patch_stac925x(struct hda_codec
*codec
)
5106 struct sigmatel_spec
*spec
;
5109 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
5113 codec
->no_trigger_sense
= 1;
5115 spec
->linear_tone_beep
= 1;
5116 spec
->num_pins
= ARRAY_SIZE(stac925x_pin_nids
);
5117 spec
->pin_nids
= stac925x_pin_nids
;
5119 /* Check first for codec ID */
5120 spec
->board_config
= snd_hda_check_board_codec_sid_config(codec
,
5123 stac925x_codec_id_cfg_tbl
);
5125 /* Now checks for PCI ID, if codec ID is not found */
5126 if (spec
->board_config
< 0)
5127 spec
->board_config
= snd_hda_check_board_config(codec
,
5132 if (spec
->board_config
< 0)
5133 snd_printdd(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
5136 stac92xx_set_config_regs(codec
,
5137 stac925x_brd_tbl
[spec
->board_config
]);
5139 spec
->multiout
.max_channels
= 2;
5140 spec
->multiout
.num_dacs
= 1;
5141 spec
->multiout
.dac_nids
= stac925x_dac_nids
;
5142 spec
->adc_nids
= stac925x_adc_nids
;
5143 spec
->mux_nids
= stac925x_mux_nids
;
5144 spec
->num_muxes
= 1;
5147 switch (codec
->vendor_id
) {
5148 case 0x83847632: /* STAC9202 */
5149 case 0x83847633: /* STAC9202D */
5150 case 0x83847636: /* STAC9251 */
5151 case 0x83847637: /* STAC9251D */
5152 spec
->num_dmics
= STAC925X_NUM_DMICS
;
5153 spec
->dmic_nids
= stac925x_dmic_nids
;
5154 spec
->num_dmuxes
= ARRAY_SIZE(stac925x_dmux_nids
);
5155 spec
->dmux_nids
= stac925x_dmux_nids
;
5158 spec
->num_dmics
= 0;
5162 spec
->init
= stac925x_core_init
;
5163 spec
->mixer
= stac925x_mixer
;
5165 spec
->capvols
= stac925x_capvols
;
5166 spec
->capsws
= stac925x_capsws
;
5168 err
= stac92xx_parse_auto_config(codec
, 0x8, 0x7);
5170 if (spec
->board_config
< 0) {
5171 printk(KERN_WARNING
"hda_codec: No auto-config is "
5172 "available, default to model=ref\n");
5173 spec
->board_config
= STAC_925x_REF
;
5179 stac92xx_free(codec
);
5183 codec
->patch_ops
= stac92xx_patch_ops
;
5188 static int patch_stac92hd73xx(struct hda_codec
*codec
)
5190 struct sigmatel_spec
*spec
;
5191 hda_nid_t conn
[STAC92HD73_DAC_COUNT
+ 2];
5195 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
5199 codec
->no_trigger_sense
= 1;
5201 spec
->linear_tone_beep
= 0;
5202 codec
->slave_dig_outs
= stac92hd73xx_slave_dig_outs
;
5203 spec
->num_pins
= ARRAY_SIZE(stac92hd73xx_pin_nids
);
5204 spec
->pin_nids
= stac92hd73xx_pin_nids
;
5205 spec
->board_config
= snd_hda_check_board_config(codec
,
5206 STAC_92HD73XX_MODELS
,
5207 stac92hd73xx_models
,
5208 stac92hd73xx_cfg_tbl
);
5209 /* check codec subsystem id if not found */
5210 if (spec
->board_config
< 0)
5211 spec
->board_config
=
5212 snd_hda_check_board_codec_sid_config(codec
,
5213 STAC_92HD73XX_MODELS
, stac92hd73xx_models
,
5214 stac92hd73xx_codec_id_cfg_tbl
);
5216 if (spec
->board_config
< 0)
5217 snd_printdd(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
5220 stac92xx_set_config_regs(codec
,
5221 stac92hd73xx_brd_tbl
[spec
->board_config
]);
5223 num_dacs
= snd_hda_get_connections(codec
, 0x0a,
5224 conn
, STAC92HD73_DAC_COUNT
+ 2) - 1;
5226 if (num_dacs
< 3 || num_dacs
> 5) {
5227 printk(KERN_WARNING
"hda_codec: Could not determine "
5228 "number of channels defaulting to DAC count\n");
5229 num_dacs
= STAC92HD73_DAC_COUNT
;
5231 spec
->init
= stac92hd73xx_core_init
;
5233 case 0x3: /* 6 Channel */
5234 spec
->aloopback_ctl
= stac92hd73xx_6ch_loopback
;
5236 case 0x4: /* 8 Channel */
5237 spec
->aloopback_ctl
= stac92hd73xx_8ch_loopback
;
5239 case 0x5: /* 10 Channel */
5240 spec
->aloopback_ctl
= stac92hd73xx_10ch_loopback
;
5243 spec
->multiout
.dac_nids
= spec
->dac_nids
;
5245 spec
->aloopback_mask
= 0x01;
5246 spec
->aloopback_shift
= 8;
5248 spec
->digbeep_nid
= 0x1c;
5249 spec
->mux_nids
= stac92hd73xx_mux_nids
;
5250 spec
->adc_nids
= stac92hd73xx_adc_nids
;
5251 spec
->dmic_nids
= stac92hd73xx_dmic_nids
;
5252 spec
->dmux_nids
= stac92hd73xx_dmux_nids
;
5253 spec
->smux_nids
= stac92hd73xx_smux_nids
;
5255 spec
->num_muxes
= ARRAY_SIZE(stac92hd73xx_mux_nids
);
5256 spec
->num_adcs
= ARRAY_SIZE(stac92hd73xx_adc_nids
);
5257 spec
->num_dmuxes
= ARRAY_SIZE(stac92hd73xx_dmux_nids
);
5259 spec
->num_caps
= STAC92HD73XX_NUM_CAPS
;
5260 spec
->capvols
= stac92hd73xx_capvols
;
5261 spec
->capsws
= stac92hd73xx_capsws
;
5263 switch (spec
->board_config
) {
5265 spec
->init
= dell_eq_core_init
;
5267 case STAC_DELL_M6_AMIC
:
5268 case STAC_DELL_M6_DMIC
:
5269 case STAC_DELL_M6_BOTH
:
5270 spec
->num_smuxes
= 0;
5271 spec
->eapd_switch
= 0;
5273 switch (spec
->board_config
) {
5274 case STAC_DELL_M6_AMIC
: /* Analog Mics */
5275 snd_hda_codec_set_pincfg(codec
, 0x0b, 0x90A70170);
5276 spec
->num_dmics
= 0;
5278 case STAC_DELL_M6_DMIC
: /* Digital Mics */
5279 snd_hda_codec_set_pincfg(codec
, 0x13, 0x90A60160);
5280 spec
->num_dmics
= 1;
5282 case STAC_DELL_M6_BOTH
: /* Both */
5283 snd_hda_codec_set_pincfg(codec
, 0x0b, 0x90A70170);
5284 snd_hda_codec_set_pincfg(codec
, 0x13, 0x90A60160);
5285 spec
->num_dmics
= 1;
5289 case STAC_ALIENWARE_M17X
:
5290 spec
->num_dmics
= STAC92HD73XX_NUM_DMICS
;
5291 spec
->num_smuxes
= ARRAY_SIZE(stac92hd73xx_smux_nids
);
5292 spec
->eapd_switch
= 0;
5295 spec
->num_dmics
= STAC92HD73XX_NUM_DMICS
;
5296 spec
->num_smuxes
= ARRAY_SIZE(stac92hd73xx_smux_nids
);
5297 spec
->eapd_switch
= 1;
5300 if (spec
->board_config
!= STAC_92HD73XX_REF
) {
5301 /* GPIO0 High = Enable EAPD */
5302 spec
->eapd_mask
= spec
->gpio_mask
= spec
->gpio_dir
= 0x1;
5303 spec
->gpio_data
= 0x01;
5306 spec
->num_pwrs
= ARRAY_SIZE(stac92hd73xx_pwr_nids
);
5307 spec
->pwr_nids
= stac92hd73xx_pwr_nids
;
5309 err
= stac92xx_parse_auto_config(codec
, 0x25, 0x27);
5312 if (spec
->board_config
< 0) {
5313 printk(KERN_WARNING
"hda_codec: No auto-config is "
5314 "available, default to model=ref\n");
5315 spec
->board_config
= STAC_92HD73XX_REF
;
5322 stac92xx_free(codec
);
5326 if (spec
->board_config
== STAC_92HD73XX_NO_JD
)
5327 spec
->hp_detect
= 0;
5329 codec
->patch_ops
= stac92xx_patch_ops
;
5331 codec
->proc_widget_hook
= stac92hd7x_proc_hook
;
5336 static int hp_bnb2011_with_dock(struct hda_codec
*codec
)
5338 if (codec
->vendor_id
!= 0x111d7605 &&
5339 codec
->vendor_id
!= 0x111d76d1)
5342 switch (codec
->subsystem_id
) {
5376 static int patch_stac92hd83xxx(struct hda_codec
*codec
)
5378 struct sigmatel_spec
*spec
;
5379 hda_nid_t conn
[STAC92HD83_DAC_COUNT
+ 1];
5383 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
5387 if (hp_bnb2011_with_dock(codec
)) {
5388 snd_hda_codec_set_pincfg(codec
, 0xa, 0x2101201f);
5389 snd_hda_codec_set_pincfg(codec
, 0xf, 0x2181205e);
5392 /* reset pin power-down; Windows may leave these bits after reboot */
5393 snd_hda_codec_write_cache(codec
, codec
->afg
, 0, 0x7EC, 0);
5394 snd_hda_codec_write_cache(codec
, codec
->afg
, 0, 0x7ED, 0);
5395 codec
->no_trigger_sense
= 1;
5397 spec
->linear_tone_beep
= 0;
5398 codec
->slave_dig_outs
= stac92hd83xxx_slave_dig_outs
;
5399 spec
->digbeep_nid
= 0x21;
5400 spec
->dmic_nids
= stac92hd83xxx_dmic_nids
;
5401 spec
->dmux_nids
= stac92hd83xxx_mux_nids
;
5402 spec
->mux_nids
= stac92hd83xxx_mux_nids
;
5403 spec
->num_muxes
= ARRAY_SIZE(stac92hd83xxx_mux_nids
);
5404 spec
->adc_nids
= stac92hd83xxx_adc_nids
;
5405 spec
->num_adcs
= ARRAY_SIZE(stac92hd83xxx_adc_nids
);
5406 spec
->pwr_nids
= stac92hd83xxx_pwr_nids
;
5407 spec
->pwr_mapping
= stac92hd83xxx_pwr_mapping
;
5408 spec
->num_pwrs
= ARRAY_SIZE(stac92hd83xxx_pwr_nids
);
5409 spec
->multiout
.dac_nids
= spec
->dac_nids
;
5411 spec
->init
= stac92hd83xxx_core_init
;
5412 spec
->num_pins
= ARRAY_SIZE(stac92hd83xxx_pin_nids
);
5413 spec
->pin_nids
= stac92hd83xxx_pin_nids
;
5414 spec
->num_caps
= STAC92HD83XXX_NUM_CAPS
;
5415 spec
->capvols
= stac92hd83xxx_capvols
;
5416 spec
->capsws
= stac92hd83xxx_capsws
;
5418 spec
->board_config
= snd_hda_check_board_config(codec
,
5419 STAC_92HD83XXX_MODELS
,
5420 stac92hd83xxx_models
,
5421 stac92hd83xxx_cfg_tbl
);
5423 if (spec
->board_config
< 0)
5424 snd_printdd(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
5427 stac92xx_set_config_regs(codec
,
5428 stac92hd83xxx_brd_tbl
[spec
->board_config
]);
5430 switch (codec
->vendor_id
) {
5433 spec
->dmic_nids
= stac92hd87b_dmic_nids
;
5434 spec
->num_dmics
= stac92xx_connected_ports(codec
,
5435 stac92hd87b_dmic_nids
,
5436 STAC92HD87B_NUM_DMICS
);
5437 spec
->num_pins
= ARRAY_SIZE(stac92hd88xxx_pin_nids
);
5438 spec
->pin_nids
= stac92hd88xxx_pin_nids
;
5446 spec
->num_dmics
= stac92xx_connected_ports(codec
,
5447 stac92hd88xxx_dmic_nids
,
5448 STAC92HD88XXX_NUM_DMICS
);
5449 spec
->num_pins
= ARRAY_SIZE(stac92hd88xxx_pin_nids
);
5450 spec
->pin_nids
= stac92hd88xxx_pin_nids
;
5459 if (spec
->board_config
== STAC_92HD83XXX_PWR_REF
)
5462 spec
->num_dmics
= stac92xx_connected_ports(codec
,
5463 stac92hd83xxx_dmic_nids
,
5464 STAC92HD83XXX_NUM_DMICS
);
5468 codec
->patch_ops
= stac92xx_patch_ops
;
5470 if (find_mute_led_gpio(codec
, 0))
5471 snd_printd("mute LED gpio %d polarity %d\n",
5473 spec
->gpio_led_polarity
);
5475 #ifdef CONFIG_SND_HDA_POWER_SAVE
5476 if (spec
->gpio_led
) {
5477 spec
->gpio_mask
|= spec
->gpio_led
;
5478 spec
->gpio_dir
|= spec
->gpio_led
;
5479 spec
->gpio_data
|= spec
->gpio_led
;
5480 /* register check_power_status callback. */
5481 codec
->patch_ops
.check_power_status
=
5482 stac92xx_hp_check_power_status
;
5486 err
= stac92xx_parse_auto_config(codec
, 0x1d, 0);
5488 if (spec
->board_config
< 0) {
5489 printk(KERN_WARNING
"hda_codec: No auto-config is "
5490 "available, default to model=ref\n");
5491 spec
->board_config
= STAC_92HD83XXX_REF
;
5498 stac92xx_free(codec
);
5502 /* docking output support */
5503 num_dacs
= snd_hda_get_connections(codec
, 0xF,
5504 conn
, STAC92HD83_DAC_COUNT
+ 1) - 1;
5505 /* skip non-DAC connections */
5506 while (num_dacs
>= 0 &&
5507 (get_wcaps_type(get_wcaps(codec
, conn
[num_dacs
]))
5510 /* set port E and F to select the last DAC */
5511 if (num_dacs
>= 0) {
5512 snd_hda_codec_write_cache(codec
, 0xE, 0,
5513 AC_VERB_SET_CONNECT_SEL
, num_dacs
);
5514 snd_hda_codec_write_cache(codec
, 0xF, 0,
5515 AC_VERB_SET_CONNECT_SEL
, num_dacs
);
5518 codec
->proc_widget_hook
= stac92hd_proc_hook
;
5523 static int stac92hd71bxx_connected_smuxes(struct hda_codec
*codec
,
5526 struct sigmatel_spec
*spec
= codec
->spec
;
5529 for (idx
= 0; idx
< spec
->num_pins
; idx
++)
5530 if (spec
->pin_nids
[idx
] == dig0pin
)
5532 if ((idx
+ 2) >= spec
->num_pins
)
5536 if (stac_get_defcfg_connect(codec
, idx
+ 1) != AC_JACK_PORT_NONE
)
5539 /* dig0pin + dig2pin case */
5540 if (stac_get_defcfg_connect(codec
, idx
+ 2) != AC_JACK_PORT_NONE
)
5542 if (stac_get_defcfg_connect(codec
, idx
) != AC_JACK_PORT_NONE
)
5548 /* HP dv7 bass switch - GPIO5 */
5549 #define stac_hp_bass_gpio_info snd_ctl_boolean_mono_info
5550 static int stac_hp_bass_gpio_get(struct snd_kcontrol
*kcontrol
,
5551 struct snd_ctl_elem_value
*ucontrol
)
5553 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
5554 struct sigmatel_spec
*spec
= codec
->spec
;
5555 ucontrol
->value
.integer
.value
[0] = !!(spec
->gpio_data
& 0x20);
5559 static int stac_hp_bass_gpio_put(struct snd_kcontrol
*kcontrol
,
5560 struct snd_ctl_elem_value
*ucontrol
)
5562 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
5563 struct sigmatel_spec
*spec
= codec
->spec
;
5564 unsigned int gpio_data
;
5566 gpio_data
= (spec
->gpio_data
& ~0x20) |
5567 (ucontrol
->value
.integer
.value
[0] ? 0x20 : 0);
5568 if (gpio_data
== spec
->gpio_data
)
5570 spec
->gpio_data
= gpio_data
;
5571 stac_gpio_set(codec
, spec
->gpio_mask
, spec
->gpio_dir
, spec
->gpio_data
);
5575 static struct snd_kcontrol_new stac_hp_bass_sw_ctrl
= {
5576 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
5577 .info
= stac_hp_bass_gpio_info
,
5578 .get
= stac_hp_bass_gpio_get
,
5579 .put
= stac_hp_bass_gpio_put
,
5582 static int stac_add_hp_bass_switch(struct hda_codec
*codec
)
5584 struct sigmatel_spec
*spec
= codec
->spec
;
5586 if (!stac_control_new(spec
, &stac_hp_bass_sw_ctrl
,
5587 "Bass Speaker Playback Switch", 0))
5590 spec
->gpio_mask
|= 0x20;
5591 spec
->gpio_dir
|= 0x20;
5592 spec
->gpio_data
|= 0x20;
5596 static int patch_stac92hd71bxx(struct hda_codec
*codec
)
5598 struct sigmatel_spec
*spec
;
5599 struct hda_verb
*unmute_init
= stac92hd71bxx_unmute_core_init
;
5600 unsigned int pin_cfg
;
5603 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
5607 codec
->no_trigger_sense
= 1;
5609 spec
->linear_tone_beep
= 0;
5610 codec
->patch_ops
= stac92xx_patch_ops
;
5611 spec
->num_pins
= STAC92HD71BXX_NUM_PINS
;
5612 switch (codec
->vendor_id
) {
5615 spec
->pin_nids
= stac92hd71bxx_pin_nids_4port
;
5619 /* On 92HD75Bx 0x27 isn't a pin nid */
5623 spec
->pin_nids
= stac92hd71bxx_pin_nids_6port
;
5625 spec
->num_pwrs
= ARRAY_SIZE(stac92hd71bxx_pwr_nids
);
5626 spec
->board_config
= snd_hda_check_board_config(codec
,
5627 STAC_92HD71BXX_MODELS
,
5628 stac92hd71bxx_models
,
5629 stac92hd71bxx_cfg_tbl
);
5631 if (spec
->board_config
< 0)
5632 snd_printdd(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
5635 stac92xx_set_config_regs(codec
,
5636 stac92hd71bxx_brd_tbl
[spec
->board_config
]);
5638 if (spec
->board_config
!= STAC_92HD71BXX_REF
) {
5640 spec
->gpio_mask
= 0x01;
5641 spec
->gpio_dir
= 0x01;
5642 spec
->gpio_data
= 0x01;
5645 spec
->dmic_nids
= stac92hd71bxx_dmic_nids
;
5646 spec
->dmux_nids
= stac92hd71bxx_dmux_nids
;
5648 spec
->num_caps
= STAC92HD71BXX_NUM_CAPS
;
5649 spec
->capvols
= stac92hd71bxx_capvols
;
5650 spec
->capsws
= stac92hd71bxx_capsws
;
5652 switch (codec
->vendor_id
) {
5653 case 0x111d76b6: /* 4 Port without Analog Mixer */
5657 case 0x111d76b4: /* 6 Port without Analog Mixer */
5659 spec
->init
= stac92hd71bxx_core_init
;
5660 codec
->slave_dig_outs
= stac92hd71bxx_slave_dig_outs
;
5661 spec
->num_dmics
= stac92xx_connected_ports(codec
,
5662 stac92hd71bxx_dmic_nids
,
5663 STAC92HD71BXX_NUM_DMICS
);
5665 case 0x111d7608: /* 5 Port with Analog Mixer */
5666 switch (spec
->board_config
) {
5668 /* Enable VREF power saving on GPIO1 detect */
5669 err
= stac_add_event(spec
, codec
->afg
,
5670 STAC_VREF_EVENT
, 0x02);
5673 snd_hda_codec_write_cache(codec
, codec
->afg
, 0,
5674 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK
, 0x02);
5675 snd_hda_codec_write_cache(codec
, codec
->afg
, 0,
5676 AC_VERB_SET_UNSOLICITED_ENABLE
,
5678 spec
->gpio_mask
|= 0x02;
5681 if ((codec
->revision_id
& 0xf) == 0 ||
5682 (codec
->revision_id
& 0xf) == 1)
5683 spec
->stream_delay
= 40; /* 40 milliseconds */
5685 /* no output amps */
5688 spec
->init
= stac92hd71bxx_core_init
;
5690 snd_hda_codec_set_pincfg(codec
, 0x0f, 0x40f000f0);
5691 snd_hda_codec_set_pincfg(codec
, 0x19, 0x40f000f3);
5692 stac92hd71bxx_dmic_nids
[STAC92HD71BXX_NUM_DMICS
- 1] = 0;
5693 spec
->num_dmics
= stac92xx_connected_ports(codec
,
5694 stac92hd71bxx_dmic_nids
,
5695 STAC92HD71BXX_NUM_DMICS
- 1);
5697 case 0x111d7603: /* 6 Port with Analog Mixer */
5698 if ((codec
->revision_id
& 0xf) == 1)
5699 spec
->stream_delay
= 40; /* 40 milliseconds */
5701 /* no output amps */
5705 spec
->init
= stac92hd71bxx_core_init
;
5706 codec
->slave_dig_outs
= stac92hd71bxx_slave_dig_outs
;
5707 spec
->num_dmics
= stac92xx_connected_ports(codec
,
5708 stac92hd71bxx_dmic_nids
,
5709 STAC92HD71BXX_NUM_DMICS
);
5713 if (get_wcaps(codec
, 0xa) & AC_WCAP_IN_AMP
)
5714 snd_hda_sequence_write_cache(codec
, unmute_init
);
5716 /* Some HP machines seem to have unstable codec communications
5717 * especially with ATI fglrx driver. For recovering from the
5718 * CORB/RIRB stall, allow the BUS reset and keep always sync
5720 if (spec
->board_config
== STAC_HP_DV5
) {
5721 codec
->bus
->sync_write
= 1;
5722 codec
->bus
->allow_bus_reset
= 1;
5725 spec
->aloopback_ctl
= stac92hd71bxx_loopback
;
5726 spec
->aloopback_mask
= 0x50;
5727 spec
->aloopback_shift
= 0;
5729 spec
->powerdown_adcs
= 1;
5730 spec
->digbeep_nid
= 0x26;
5731 spec
->mux_nids
= stac92hd71bxx_mux_nids
;
5732 spec
->adc_nids
= stac92hd71bxx_adc_nids
;
5733 spec
->smux_nids
= stac92hd71bxx_smux_nids
;
5734 spec
->pwr_nids
= stac92hd71bxx_pwr_nids
;
5736 spec
->num_muxes
= ARRAY_SIZE(stac92hd71bxx_mux_nids
);
5737 spec
->num_adcs
= ARRAY_SIZE(stac92hd71bxx_adc_nids
);
5738 spec
->num_dmuxes
= ARRAY_SIZE(stac92hd71bxx_dmux_nids
);
5739 spec
->num_smuxes
= stac92hd71bxx_connected_smuxes(codec
, 0x1e);
5741 snd_printdd("Found board config: %d\n", spec
->board_config
);
5743 switch (spec
->board_config
) {
5745 /* enable internal microphone */
5746 snd_hda_codec_set_pincfg(codec
, 0x0e, 0x01813040);
5747 stac92xx_auto_set_pinctl(codec
, 0x0e,
5748 AC_PINCTL_IN_EN
| AC_PINCTL_VREF_80
);
5750 case STAC_DELL_M4_2
:
5751 spec
->num_dmics
= 0;
5752 spec
->num_smuxes
= 0;
5753 spec
->num_dmuxes
= 0;
5755 case STAC_DELL_M4_1
:
5756 case STAC_DELL_M4_3
:
5757 spec
->num_dmics
= 1;
5758 spec
->num_smuxes
= 0;
5759 spec
->num_dmuxes
= 1;
5761 case STAC_HP_DV4_1222NR
:
5762 spec
->num_dmics
= 1;
5763 /* I don't know if it needs 1 or 2 smuxes - will wait for
5764 * bug reports to fix if needed
5766 spec
->num_smuxes
= 1;
5767 spec
->num_dmuxes
= 1;
5770 spec
->gpio_led
= 0x01;
5773 snd_hda_codec_set_pincfg(codec
, 0x0d, 0x90170010);
5774 stac92xx_auto_set_pinctl(codec
, 0x0d, AC_PINCTL_OUT_EN
);
5775 /* HP dv6 gives the headphone pin as a line-out. Thus we
5776 * need to set hp_detect flag here to force to enable HP
5779 spec
->hp_detect
= 1;
5782 spec
->num_dmics
= 1;
5783 spec
->num_dmuxes
= 1;
5784 spec
->num_smuxes
= 1;
5785 spec
->gpio_led
= 0x08;
5789 if (hp_blike_system(codec
->subsystem_id
)) {
5790 pin_cfg
= snd_hda_codec_get_pincfg(codec
, 0x0f);
5791 if (get_defcfg_device(pin_cfg
) == AC_JACK_LINE_OUT
||
5792 get_defcfg_device(pin_cfg
) == AC_JACK_SPEAKER
||
5793 get_defcfg_device(pin_cfg
) == AC_JACK_HP_OUT
) {
5794 /* It was changed in the BIOS to just satisfy MS DTM.
5795 * Lets turn it back into slaved HP
5797 pin_cfg
= (pin_cfg
& (~AC_DEFCFG_DEVICE
))
5798 | (AC_JACK_HP_OUT
<<
5799 AC_DEFCFG_DEVICE_SHIFT
);
5800 pin_cfg
= (pin_cfg
& (~(AC_DEFCFG_DEF_ASSOC
5801 | AC_DEFCFG_SEQUENCE
)))
5803 snd_hda_codec_set_pincfg(codec
, 0x0f, pin_cfg
);
5807 if (find_mute_led_gpio(codec
, 1))
5808 snd_printd("mute LED gpio %d polarity %d\n",
5810 spec
->gpio_led_polarity
);
5812 #ifdef CONFIG_SND_HDA_POWER_SAVE
5813 if (spec
->gpio_led
) {
5814 spec
->gpio_mask
|= spec
->gpio_led
;
5815 spec
->gpio_dir
|= spec
->gpio_led
;
5816 spec
->gpio_data
|= spec
->gpio_led
;
5817 /* register check_power_status callback. */
5818 codec
->patch_ops
.check_power_status
=
5819 stac92xx_hp_check_power_status
;
5823 spec
->multiout
.dac_nids
= spec
->dac_nids
;
5825 err
= stac92xx_parse_auto_config(codec
, 0x21, 0);
5827 if (spec
->board_config
< 0) {
5828 printk(KERN_WARNING
"hda_codec: No auto-config is "
5829 "available, default to model=ref\n");
5830 spec
->board_config
= STAC_92HD71BXX_REF
;
5837 stac92xx_free(codec
);
5841 /* enable bass on HP dv7 */
5842 if (spec
->board_config
== STAC_HP_DV4
||
5843 spec
->board_config
== STAC_HP_DV5
) {
5845 cap
= snd_hda_param_read(codec
, 0x1, AC_PAR_GPIO_CAP
);
5846 cap
&= AC_GPIO_IO_COUNT
;
5848 stac_add_hp_bass_switch(codec
);
5851 codec
->proc_widget_hook
= stac92hd7x_proc_hook
;
5856 static int patch_stac922x(struct hda_codec
*codec
)
5858 struct sigmatel_spec
*spec
;
5861 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
5865 codec
->no_trigger_sense
= 1;
5867 spec
->linear_tone_beep
= 1;
5868 spec
->num_pins
= ARRAY_SIZE(stac922x_pin_nids
);
5869 spec
->pin_nids
= stac922x_pin_nids
;
5870 spec
->board_config
= snd_hda_check_board_config(codec
, STAC_922X_MODELS
,
5873 if (spec
->board_config
== STAC_INTEL_MAC_AUTO
) {
5874 spec
->gpio_mask
= spec
->gpio_dir
= 0x03;
5875 spec
->gpio_data
= 0x03;
5876 /* Intel Macs have all same PCI SSID, so we need to check
5877 * codec SSID to distinguish the exact models
5879 printk(KERN_INFO
"hda_codec: STAC922x, Apple subsys_id=%x\n", codec
->subsystem_id
);
5880 switch (codec
->subsystem_id
) {
5883 spec
->board_config
= STAC_INTEL_MAC_V1
;
5887 spec
->board_config
= STAC_INTEL_MAC_V2
;
5895 spec
->board_config
= STAC_INTEL_MAC_V3
;
5899 spec
->board_config
= STAC_INTEL_MAC_V4
;
5903 spec
->board_config
= STAC_INTEL_MAC_V5
;
5906 spec
->board_config
= STAC_INTEL_MAC_V3
;
5912 if (spec
->board_config
< 0)
5913 snd_printdd(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
5916 stac92xx_set_config_regs(codec
,
5917 stac922x_brd_tbl
[spec
->board_config
]);
5919 spec
->adc_nids
= stac922x_adc_nids
;
5920 spec
->mux_nids
= stac922x_mux_nids
;
5921 spec
->num_muxes
= ARRAY_SIZE(stac922x_mux_nids
);
5922 spec
->num_adcs
= ARRAY_SIZE(stac922x_adc_nids
);
5923 spec
->num_dmics
= 0;
5926 spec
->init
= stac922x_core_init
;
5928 spec
->num_caps
= STAC922X_NUM_CAPS
;
5929 spec
->capvols
= stac922x_capvols
;
5930 spec
->capsws
= stac922x_capsws
;
5932 spec
->multiout
.dac_nids
= spec
->dac_nids
;
5934 err
= stac92xx_parse_auto_config(codec
, 0x08, 0x09);
5936 if (spec
->board_config
< 0) {
5937 printk(KERN_WARNING
"hda_codec: No auto-config is "
5938 "available, default to model=ref\n");
5939 spec
->board_config
= STAC_D945_REF
;
5945 stac92xx_free(codec
);
5949 codec
->patch_ops
= stac92xx_patch_ops
;
5951 /* Fix Mux capture level; max to 2 */
5952 snd_hda_override_amp_caps(codec
, 0x12, HDA_OUTPUT
,
5953 (0 << AC_AMPCAP_OFFSET_SHIFT
) |
5954 (2 << AC_AMPCAP_NUM_STEPS_SHIFT
) |
5955 (0x27 << AC_AMPCAP_STEP_SIZE_SHIFT
) |
5956 (0 << AC_AMPCAP_MUTE_SHIFT
));
5961 static int patch_stac927x(struct hda_codec
*codec
)
5963 struct sigmatel_spec
*spec
;
5966 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
5970 codec
->no_trigger_sense
= 1;
5972 spec
->linear_tone_beep
= 1;
5973 codec
->slave_dig_outs
= stac927x_slave_dig_outs
;
5974 spec
->num_pins
= ARRAY_SIZE(stac927x_pin_nids
);
5975 spec
->pin_nids
= stac927x_pin_nids
;
5976 spec
->board_config
= snd_hda_check_board_config(codec
, STAC_927X_MODELS
,
5980 if (spec
->board_config
< 0)
5981 snd_printdd(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
5984 stac92xx_set_config_regs(codec
,
5985 stac927x_brd_tbl
[spec
->board_config
]);
5987 spec
->digbeep_nid
= 0x23;
5988 spec
->adc_nids
= stac927x_adc_nids
;
5989 spec
->num_adcs
= ARRAY_SIZE(stac927x_adc_nids
);
5990 spec
->mux_nids
= stac927x_mux_nids
;
5991 spec
->num_muxes
= ARRAY_SIZE(stac927x_mux_nids
);
5992 spec
->smux_nids
= stac927x_smux_nids
;
5993 spec
->num_smuxes
= ARRAY_SIZE(stac927x_smux_nids
);
5994 spec
->spdif_labels
= stac927x_spdif_labels
;
5995 spec
->dac_list
= stac927x_dac_nids
;
5996 spec
->multiout
.dac_nids
= spec
->dac_nids
;
5998 if (spec
->board_config
!= STAC_D965_REF
) {
5999 /* GPIO0 High = Enable EAPD */
6000 spec
->eapd_mask
= spec
->gpio_mask
= 0x01;
6001 spec
->gpio_dir
= spec
->gpio_data
= 0x01;
6004 switch (spec
->board_config
) {
6007 /* GPIO0 High = Enable EAPD */
6008 spec
->num_dmics
= 0;
6009 spec
->init
= d965_core_init
;
6011 case STAC_DELL_BIOS
:
6012 switch (codec
->subsystem_id
) {
6015 /* correct the device field to SPDIF out */
6016 snd_hda_codec_set_pincfg(codec
, 0x21, 0x01442070);
6019 /* configure the analog microphone on some laptops */
6020 snd_hda_codec_set_pincfg(codec
, 0x0c, 0x90a79130);
6021 /* correct the front output jack as a hp out */
6022 snd_hda_codec_set_pincfg(codec
, 0x0f, 0x0227011f);
6023 /* correct the front input jack as a mic */
6024 snd_hda_codec_set_pincfg(codec
, 0x0e, 0x02a79130);
6027 if (codec
->subsystem_id
!= 0x1028022f) {
6028 /* GPIO2 High = Enable EAPD */
6029 spec
->eapd_mask
= spec
->gpio_mask
= 0x04;
6030 spec
->gpio_dir
= spec
->gpio_data
= 0x04;
6032 spec
->dmic_nids
= stac927x_dmic_nids
;
6033 spec
->num_dmics
= STAC927X_NUM_DMICS
;
6035 spec
->init
= dell_3st_core_init
;
6036 spec
->dmux_nids
= stac927x_dmux_nids
;
6037 spec
->num_dmuxes
= ARRAY_SIZE(stac927x_dmux_nids
);
6039 case STAC_927X_VOLKNOB
:
6040 spec
->num_dmics
= 0;
6041 spec
->init
= stac927x_volknob_core_init
;
6044 spec
->num_dmics
= 0;
6045 spec
->init
= stac927x_core_init
;
6049 spec
->num_caps
= STAC927X_NUM_CAPS
;
6050 spec
->capvols
= stac927x_capvols
;
6051 spec
->capsws
= stac927x_capsws
;
6054 spec
->aloopback_ctl
= stac927x_loopback
;
6055 spec
->aloopback_mask
= 0x40;
6056 spec
->aloopback_shift
= 0;
6057 spec
->eapd_switch
= 1;
6059 err
= stac92xx_parse_auto_config(codec
, 0x1e, 0x20);
6061 if (spec
->board_config
< 0) {
6062 printk(KERN_WARNING
"hda_codec: No auto-config is "
6063 "available, default to model=ref\n");
6064 spec
->board_config
= STAC_D965_REF
;
6070 stac92xx_free(codec
);
6074 codec
->patch_ops
= stac92xx_patch_ops
;
6076 codec
->proc_widget_hook
= stac927x_proc_hook
;
6080 * The STAC927x seem to require fairly long delays for certain
6081 * command sequences. With too short delays (even if the answer
6082 * is set to RIRB properly), it results in the silence output
6083 * on some hardwares like Dell.
6085 * The below flag enables the longer delay (see get_response
6088 codec
->bus
->needs_damn_long_delay
= 1;
6090 /* no jack detecion for ref-no-jd model */
6091 if (spec
->board_config
== STAC_D965_REF_NO_JD
)
6092 spec
->hp_detect
= 0;
6097 static int patch_stac9205(struct hda_codec
*codec
)
6099 struct sigmatel_spec
*spec
;
6102 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
6106 codec
->no_trigger_sense
= 1;
6108 spec
->linear_tone_beep
= 1;
6109 spec
->num_pins
= ARRAY_SIZE(stac9205_pin_nids
);
6110 spec
->pin_nids
= stac9205_pin_nids
;
6111 spec
->board_config
= snd_hda_check_board_config(codec
, STAC_9205_MODELS
,
6115 if (spec
->board_config
< 0)
6116 snd_printdd(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
6119 stac92xx_set_config_regs(codec
,
6120 stac9205_brd_tbl
[spec
->board_config
]);
6122 spec
->digbeep_nid
= 0x23;
6123 spec
->adc_nids
= stac9205_adc_nids
;
6124 spec
->num_adcs
= ARRAY_SIZE(stac9205_adc_nids
);
6125 spec
->mux_nids
= stac9205_mux_nids
;
6126 spec
->num_muxes
= ARRAY_SIZE(stac9205_mux_nids
);
6127 spec
->smux_nids
= stac9205_smux_nids
;
6128 spec
->num_smuxes
= ARRAY_SIZE(stac9205_smux_nids
);
6129 spec
->dmic_nids
= stac9205_dmic_nids
;
6130 spec
->num_dmics
= STAC9205_NUM_DMICS
;
6131 spec
->dmux_nids
= stac9205_dmux_nids
;
6132 spec
->num_dmuxes
= ARRAY_SIZE(stac9205_dmux_nids
);
6135 spec
->init
= stac9205_core_init
;
6136 spec
->aloopback_ctl
= stac9205_loopback
;
6138 spec
->num_caps
= STAC9205_NUM_CAPS
;
6139 spec
->capvols
= stac9205_capvols
;
6140 spec
->capsws
= stac9205_capsws
;
6142 spec
->aloopback_mask
= 0x40;
6143 spec
->aloopback_shift
= 0;
6144 /* Turn on/off EAPD per HP plugging */
6145 if (spec
->board_config
!= STAC_9205_EAPD
)
6146 spec
->eapd_switch
= 1;
6147 spec
->multiout
.dac_nids
= spec
->dac_nids
;
6149 switch (spec
->board_config
){
6150 case STAC_9205_DELL_M43
:
6151 /* Enable SPDIF in/out */
6152 snd_hda_codec_set_pincfg(codec
, 0x1f, 0x01441030);
6153 snd_hda_codec_set_pincfg(codec
, 0x20, 0x1c410030);
6155 /* Enable unsol response for GPIO4/Dock HP connection */
6156 err
= stac_add_event(spec
, codec
->afg
, STAC_VREF_EVENT
, 0x01);
6159 snd_hda_codec_write_cache(codec
, codec
->afg
, 0,
6160 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK
, 0x10);
6161 snd_hda_codec_write_cache(codec
, codec
->afg
, 0,
6162 AC_VERB_SET_UNSOLICITED_ENABLE
,
6165 spec
->gpio_dir
= 0x0b;
6166 spec
->eapd_mask
= 0x01;
6167 spec
->gpio_mask
= 0x1b;
6168 spec
->gpio_mute
= 0x10;
6169 /* GPIO0 High = EAPD, GPIO1 Low = Headphone Mute,
6172 spec
->gpio_data
= 0x01;
6175 /* SPDIF-In enabled */
6178 /* GPIO0 High = EAPD */
6179 spec
->eapd_mask
= spec
->gpio_mask
= spec
->gpio_dir
= 0x1;
6180 spec
->gpio_data
= 0x01;
6184 err
= stac92xx_parse_auto_config(codec
, 0x1f, 0x20);
6186 if (spec
->board_config
< 0) {
6187 printk(KERN_WARNING
"hda_codec: No auto-config is "
6188 "available, default to model=ref\n");
6189 spec
->board_config
= STAC_9205_REF
;
6195 stac92xx_free(codec
);
6199 codec
->patch_ops
= stac92xx_patch_ops
;
6201 codec
->proc_widget_hook
= stac9205_proc_hook
;
6210 static struct hda_verb stac9872_core_init
[] = {
6211 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x1}, /* mic-sel: 0a,0d,14,02 */
6212 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
}, /* Mic-in -> 0x9 */
6216 static hda_nid_t stac9872_pin_nids
[] = {
6217 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
6221 static hda_nid_t stac9872_adc_nids
[] = {
6225 static hda_nid_t stac9872_mux_nids
[] = {
6229 static unsigned long stac9872_capvols
[] = {
6230 HDA_COMPOSE_AMP_VAL(0x09, 3, 0, HDA_INPUT
),
6232 #define stac9872_capsws stac9872_capvols
6234 static unsigned int stac9872_vaio_pin_configs
[9] = {
6235 0x03211020, 0x411111f0, 0x411111f0, 0x03a15030,
6236 0x411111f0, 0x90170110, 0x411111f0, 0x411111f0,
6240 static const char * const stac9872_models
[STAC_9872_MODELS
] = {
6241 [STAC_9872_AUTO
] = "auto",
6242 [STAC_9872_VAIO
] = "vaio",
6245 static unsigned int *stac9872_brd_tbl
[STAC_9872_MODELS
] = {
6246 [STAC_9872_VAIO
] = stac9872_vaio_pin_configs
,
6249 static struct snd_pci_quirk stac9872_cfg_tbl
[] = {
6250 SND_PCI_QUIRK_MASK(0x104d, 0xfff0, 0x81e0,
6251 "Sony VAIO F/S", STAC_9872_VAIO
),
6255 static int patch_stac9872(struct hda_codec
*codec
)
6257 struct sigmatel_spec
*spec
;
6260 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
6263 codec
->no_trigger_sense
= 1;
6265 spec
->linear_tone_beep
= 1;
6266 spec
->num_pins
= ARRAY_SIZE(stac9872_pin_nids
);
6267 spec
->pin_nids
= stac9872_pin_nids
;
6269 spec
->board_config
= snd_hda_check_board_config(codec
, STAC_9872_MODELS
,
6272 if (spec
->board_config
< 0)
6273 snd_printdd(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
6276 stac92xx_set_config_regs(codec
,
6277 stac9872_brd_tbl
[spec
->board_config
]);
6279 spec
->multiout
.dac_nids
= spec
->dac_nids
;
6280 spec
->num_adcs
= ARRAY_SIZE(stac9872_adc_nids
);
6281 spec
->adc_nids
= stac9872_adc_nids
;
6282 spec
->num_muxes
= ARRAY_SIZE(stac9872_mux_nids
);
6283 spec
->mux_nids
= stac9872_mux_nids
;
6284 spec
->init
= stac9872_core_init
;
6286 spec
->capvols
= stac9872_capvols
;
6287 spec
->capsws
= stac9872_capsws
;
6289 err
= stac92xx_parse_auto_config(codec
, 0x10, 0x12);
6291 stac92xx_free(codec
);
6294 spec
->input_mux
= &spec
->private_imux
;
6295 codec
->patch_ops
= stac92xx_patch_ops
;
6303 static struct hda_codec_preset snd_hda_preset_sigmatel
[] = {
6304 { .id
= 0x83847690, .name
= "STAC9200", .patch
= patch_stac9200
},
6305 { .id
= 0x83847882, .name
= "STAC9220 A1", .patch
= patch_stac922x
},
6306 { .id
= 0x83847680, .name
= "STAC9221 A1", .patch
= patch_stac922x
},
6307 { .id
= 0x83847880, .name
= "STAC9220 A2", .patch
= patch_stac922x
},
6308 { .id
= 0x83847681, .name
= "STAC9220D/9223D A2", .patch
= patch_stac922x
},
6309 { .id
= 0x83847682, .name
= "STAC9221 A2", .patch
= patch_stac922x
},
6310 { .id
= 0x83847683, .name
= "STAC9221D A2", .patch
= patch_stac922x
},
6311 { .id
= 0x83847618, .name
= "STAC9227", .patch
= patch_stac927x
},
6312 { .id
= 0x83847619, .name
= "STAC9227", .patch
= patch_stac927x
},
6313 { .id
= 0x83847616, .name
= "STAC9228", .patch
= patch_stac927x
},
6314 { .id
= 0x83847617, .name
= "STAC9228", .patch
= patch_stac927x
},
6315 { .id
= 0x83847614, .name
= "STAC9229", .patch
= patch_stac927x
},
6316 { .id
= 0x83847615, .name
= "STAC9229", .patch
= patch_stac927x
},
6317 { .id
= 0x83847620, .name
= "STAC9274", .patch
= patch_stac927x
},
6318 { .id
= 0x83847621, .name
= "STAC9274D", .patch
= patch_stac927x
},
6319 { .id
= 0x83847622, .name
= "STAC9273X", .patch
= patch_stac927x
},
6320 { .id
= 0x83847623, .name
= "STAC9273D", .patch
= patch_stac927x
},
6321 { .id
= 0x83847624, .name
= "STAC9272X", .patch
= patch_stac927x
},
6322 { .id
= 0x83847625, .name
= "STAC9272D", .patch
= patch_stac927x
},
6323 { .id
= 0x83847626, .name
= "STAC9271X", .patch
= patch_stac927x
},
6324 { .id
= 0x83847627, .name
= "STAC9271D", .patch
= patch_stac927x
},
6325 { .id
= 0x83847628, .name
= "STAC9274X5NH", .patch
= patch_stac927x
},
6326 { .id
= 0x83847629, .name
= "STAC9274D5NH", .patch
= patch_stac927x
},
6327 { .id
= 0x83847632, .name
= "STAC9202", .patch
= patch_stac925x
},
6328 { .id
= 0x83847633, .name
= "STAC9202D", .patch
= patch_stac925x
},
6329 { .id
= 0x83847634, .name
= "STAC9250", .patch
= patch_stac925x
},
6330 { .id
= 0x83847635, .name
= "STAC9250D", .patch
= patch_stac925x
},
6331 { .id
= 0x83847636, .name
= "STAC9251", .patch
= patch_stac925x
},
6332 { .id
= 0x83847637, .name
= "STAC9250D", .patch
= patch_stac925x
},
6333 { .id
= 0x83847645, .name
= "92HD206X", .patch
= patch_stac927x
},
6334 { .id
= 0x83847646, .name
= "92HD206D", .patch
= patch_stac927x
},
6335 /* The following does not take into account .id=0x83847661 when subsys =
6336 * 104D0C00 which is STAC9225s. Because of this, some SZ Notebooks are
6337 * currently not fully supported.
6339 { .id
= 0x83847661, .name
= "CXD9872RD/K", .patch
= patch_stac9872
},
6340 { .id
= 0x83847662, .name
= "STAC9872AK", .patch
= patch_stac9872
},
6341 { .id
= 0x83847664, .name
= "CXD9872AKD", .patch
= patch_stac9872
},
6342 { .id
= 0x83847698, .name
= "STAC9205", .patch
= patch_stac9205
},
6343 { .id
= 0x838476a0, .name
= "STAC9205", .patch
= patch_stac9205
},
6344 { .id
= 0x838476a1, .name
= "STAC9205D", .patch
= patch_stac9205
},
6345 { .id
= 0x838476a2, .name
= "STAC9204", .patch
= patch_stac9205
},
6346 { .id
= 0x838476a3, .name
= "STAC9204D", .patch
= patch_stac9205
},
6347 { .id
= 0x838476a4, .name
= "STAC9255", .patch
= patch_stac9205
},
6348 { .id
= 0x838476a5, .name
= "STAC9255D", .patch
= patch_stac9205
},
6349 { .id
= 0x838476a6, .name
= "STAC9254", .patch
= patch_stac9205
},
6350 { .id
= 0x838476a7, .name
= "STAC9254D", .patch
= patch_stac9205
},
6351 { .id
= 0x111d7603, .name
= "92HD75B3X5", .patch
= patch_stac92hd71bxx
},
6352 { .id
= 0x111d7604, .name
= "92HD83C1X5", .patch
= patch_stac92hd83xxx
},
6353 { .id
= 0x111d76d4, .name
= "92HD83C1C5", .patch
= patch_stac92hd83xxx
},
6354 { .id
= 0x111d7605, .name
= "92HD81B1X5", .patch
= patch_stac92hd83xxx
},
6355 { .id
= 0x111d76d5, .name
= "92HD81B1C5", .patch
= patch_stac92hd83xxx
},
6356 { .id
= 0x111d76d1, .name
= "92HD87B1/3", .patch
= patch_stac92hd83xxx
},
6357 { .id
= 0x111d76d9, .name
= "92HD87B2/4", .patch
= patch_stac92hd83xxx
},
6358 { .id
= 0x111d7666, .name
= "92HD88B3", .patch
= patch_stac92hd83xxx
},
6359 { .id
= 0x111d7667, .name
= "92HD88B1", .patch
= patch_stac92hd83xxx
},
6360 { .id
= 0x111d7668, .name
= "92HD88B2", .patch
= patch_stac92hd83xxx
},
6361 { .id
= 0x111d7669, .name
= "92HD88B4", .patch
= patch_stac92hd83xxx
},
6362 { .id
= 0x111d7608, .name
= "92HD75B2X5", .patch
= patch_stac92hd71bxx
},
6363 { .id
= 0x111d7674, .name
= "92HD73D1X5", .patch
= patch_stac92hd73xx
},
6364 { .id
= 0x111d7675, .name
= "92HD73C1X5", .patch
= patch_stac92hd73xx
},
6365 { .id
= 0x111d7676, .name
= "92HD73E1X5", .patch
= patch_stac92hd73xx
},
6366 { .id
= 0x111d76b0, .name
= "92HD71B8X", .patch
= patch_stac92hd71bxx
},
6367 { .id
= 0x111d76b1, .name
= "92HD71B8X", .patch
= patch_stac92hd71bxx
},
6368 { .id
= 0x111d76b2, .name
= "92HD71B7X", .patch
= patch_stac92hd71bxx
},
6369 { .id
= 0x111d76b3, .name
= "92HD71B7X", .patch
= patch_stac92hd71bxx
},
6370 { .id
= 0x111d76b4, .name
= "92HD71B6X", .patch
= patch_stac92hd71bxx
},
6371 { .id
= 0x111d76b5, .name
= "92HD71B6X", .patch
= patch_stac92hd71bxx
},
6372 { .id
= 0x111d76b6, .name
= "92HD71B5X", .patch
= patch_stac92hd71bxx
},
6373 { .id
= 0x111d76b7, .name
= "92HD71B5X", .patch
= patch_stac92hd71bxx
},
6374 { .id
= 0x111d76c0, .name
= "92HD89C3", .patch
= patch_stac92hd73xx
},
6375 { .id
= 0x111d76c1, .name
= "92HD89C2", .patch
= patch_stac92hd73xx
},
6376 { .id
= 0x111d76c2, .name
= "92HD89C1", .patch
= patch_stac92hd73xx
},
6377 { .id
= 0x111d76c3, .name
= "92HD89B3", .patch
= patch_stac92hd73xx
},
6378 { .id
= 0x111d76c4, .name
= "92HD89B2", .patch
= patch_stac92hd73xx
},
6379 { .id
= 0x111d76c5, .name
= "92HD89B1", .patch
= patch_stac92hd73xx
},
6380 { .id
= 0x111d76c6, .name
= "92HD89E3", .patch
= patch_stac92hd73xx
},
6381 { .id
= 0x111d76c7, .name
= "92HD89E2", .patch
= patch_stac92hd73xx
},
6382 { .id
= 0x111d76c8, .name
= "92HD89E1", .patch
= patch_stac92hd73xx
},
6383 { .id
= 0x111d76c9, .name
= "92HD89D3", .patch
= patch_stac92hd73xx
},
6384 { .id
= 0x111d76ca, .name
= "92HD89D2", .patch
= patch_stac92hd73xx
},
6385 { .id
= 0x111d76cb, .name
= "92HD89D1", .patch
= patch_stac92hd73xx
},
6386 { .id
= 0x111d76cc, .name
= "92HD89F3", .patch
= patch_stac92hd73xx
},
6387 { .id
= 0x111d76cd, .name
= "92HD89F2", .patch
= patch_stac92hd73xx
},
6388 { .id
= 0x111d76ce, .name
= "92HD89F1", .patch
= patch_stac92hd73xx
},
6389 { .id
= 0x111d76e0, .name
= "92HD91BXX", .patch
= patch_stac92hd83xxx
},
6390 { .id
= 0x111d76e7, .name
= "92HD90BXX", .patch
= patch_stac92hd83xxx
},
6394 MODULE_ALIAS("snd-hda-codec-id:8384*");
6395 MODULE_ALIAS("snd-hda-codec-id:111d*");
6397 MODULE_LICENSE("GPL");
6398 MODULE_DESCRIPTION("IDT/Sigmatel HD-audio codec");
6400 static struct hda_codec_preset_list sigmatel_list
= {
6401 .preset
= snd_hda_preset_sigmatel
,
6402 .owner
= THIS_MODULE
,
6405 static int __init
patch_sigmatel_init(void)
6407 return snd_hda_add_codec_preset(&sigmatel_list
);
6410 static void __exit
patch_sigmatel_exit(void)
6412 snd_hda_delete_codec_preset(&sigmatel_list
);
6415 module_init(patch_sigmatel_init
)
6416 module_exit(patch_sigmatel_exit
)