2 * HD audio interface patch for Conexant HDA audio codec
4 * Copyright (c) 2006 Pototskiy Akex <alex.pototskiy@gmail.com>
5 * Takashi Iwai <tiwai@suse.de>
6 * Tobin Davis <tdavis@dsl-only.net>
8 * This driver is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This driver is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include <linux/init.h>
24 #include <linux/delay.h>
25 #include <linux/slab.h>
26 #include <linux/pci.h>
27 #include <linux/module.h>
28 #include <sound/core.h>
29 #include <sound/jack.h>
31 #include "hda_codec.h"
32 #include "hda_local.h"
33 #include "hda_auto_parser.h"
36 #include "hda_generic.h"
38 #define ENABLE_CXT_STATIC_QUIRKS
40 #define CXT_PIN_DIR_IN 0x00
41 #define CXT_PIN_DIR_OUT 0x01
42 #define CXT_PIN_DIR_INOUT 0x02
43 #define CXT_PIN_DIR_IN_NOMICBIAS 0x03
44 #define CXT_PIN_DIR_INOUT_NOMICBIAS 0x04
46 #define CONEXANT_HP_EVENT 0x37
47 #define CONEXANT_MIC_EVENT 0x38
48 #define CONEXANT_LINE_EVENT 0x39
50 /* Conexant 5051 specific */
52 #define CXT5051_SPDIF_OUT 0x12
53 #define CXT5051_PORTB_EVENT 0x38
54 #define CXT5051_PORTC_EVENT 0x39
56 #define AUTO_MIC_PORTB (1 << 1)
57 #define AUTO_MIC_PORTC (1 << 2)
59 struct conexant_spec
{
60 struct hda_gen_spec gen
;
62 unsigned int beep_amp
;
65 unsigned int num_eapds
;
69 unsigned int parse_flags
; /* flag for snd_hda_parse_pin_defcfg() */
71 #ifdef ENABLE_CXT_STATIC_QUIRKS
72 const struct snd_kcontrol_new
*mixers
[5];
74 hda_nid_t vmaster_nid
;
76 const struct hda_verb
*init_verbs
[5]; /* initialization verbs
80 unsigned int num_init_verbs
;
83 struct hda_multi_out multiout
; /* playback set-up
84 * max_channels, dacs must be set
85 * dig_out_nid and hp_nid are optional
87 unsigned int cur_eapd
;
88 unsigned int hp_present
;
89 unsigned int line_present
;
90 unsigned int auto_mic
;
93 unsigned int num_adc_nids
;
94 const hda_nid_t
*adc_nids
;
95 hda_nid_t dig_in_nid
; /* digital-in NID; optional */
97 unsigned int cur_adc_idx
;
99 unsigned int cur_adc_stream_tag
;
100 unsigned int cur_adc_format
;
102 const struct hda_pcm_stream
*capture_stream
;
105 const struct hda_input_mux
*input_mux
;
106 const hda_nid_t
*capsrc_nids
;
107 unsigned int cur_mux
[3];
110 const struct hda_channel_mode
*channel_mode
;
111 int num_channel_mode
;
113 /* PCM information */
114 struct hda_pcm pcm_rec
[2]; /* used in build_pcms() */
116 unsigned int spdif_route
;
118 unsigned int port_d_mode
;
119 unsigned int dell_automute
:1;
120 unsigned int dell_vostro
:1;
121 unsigned int ideapad
:1;
122 unsigned int thinkpad
:1;
123 unsigned int hp_laptop
:1;
126 unsigned int ext_mic_present
;
127 unsigned int recording
;
128 void (*capture_prepare
)(struct hda_codec
*codec
);
129 void (*capture_cleanup
)(struct hda_codec
*codec
);
131 /* OLPC XO-1.5 supports DC input mode (e.g. for use with analog sensors)
132 * through the microphone jack.
133 * When the user enables this through a mixer switch, both internal and
134 * external microphones are disabled. Gain is fixed at 0dB. In this mode,
135 * we also allow the bias to be configured through a separate mixer
137 unsigned int dc_enable
;
138 unsigned int dc_input_bias
; /* offset into cxt5066_olpc_dc_bias */
139 unsigned int mic_boost
; /* offset into cxt5066_analog_mic_boost */
140 #endif /* ENABLE_CXT_STATIC_QUIRKS */
144 #ifdef CONFIG_SND_HDA_INPUT_BEEP
145 static inline void set_beep_amp(struct conexant_spec
*spec
, hda_nid_t nid
,
148 spec
->gen
.beep_nid
= nid
;
149 spec
->beep_amp
= HDA_COMPOSE_AMP_VAL(nid
, 1, idx
, dir
);
151 /* additional beep mixers; the actual parameters are overwritten at build */
152 static const struct snd_kcontrol_new cxt_beep_mixer
[] = {
153 HDA_CODEC_VOLUME_MONO("Beep Playback Volume", 0, 1, 0, HDA_OUTPUT
),
154 HDA_CODEC_MUTE_BEEP_MONO("Beep Playback Switch", 0, 1, 0, HDA_OUTPUT
),
158 /* create beep controls if needed */
159 static int add_beep_ctls(struct hda_codec
*codec
)
161 struct conexant_spec
*spec
= codec
->spec
;
164 if (spec
->beep_amp
) {
165 const struct snd_kcontrol_new
*knew
;
166 for (knew
= cxt_beep_mixer
; knew
->name
; knew
++) {
167 struct snd_kcontrol
*kctl
;
168 kctl
= snd_ctl_new1(knew
, codec
);
171 kctl
->private_value
= spec
->beep_amp
;
172 err
= snd_hda_ctl_add(codec
, 0, kctl
);
180 #define set_beep_amp(spec, nid, idx, dir) /* NOP */
181 #define add_beep_ctls(codec) 0
185 #ifdef ENABLE_CXT_STATIC_QUIRKS
186 static int conexant_playback_pcm_open(struct hda_pcm_stream
*hinfo
,
187 struct hda_codec
*codec
,
188 struct snd_pcm_substream
*substream
)
190 struct conexant_spec
*spec
= codec
->spec
;
191 return snd_hda_multi_out_analog_open(codec
, &spec
->multiout
, substream
,
195 static int conexant_playback_pcm_prepare(struct hda_pcm_stream
*hinfo
,
196 struct hda_codec
*codec
,
197 unsigned int stream_tag
,
199 struct snd_pcm_substream
*substream
)
201 struct conexant_spec
*spec
= codec
->spec
;
202 return snd_hda_multi_out_analog_prepare(codec
, &spec
->multiout
,
207 static int conexant_playback_pcm_cleanup(struct hda_pcm_stream
*hinfo
,
208 struct hda_codec
*codec
,
209 struct snd_pcm_substream
*substream
)
211 struct conexant_spec
*spec
= codec
->spec
;
212 return snd_hda_multi_out_analog_cleanup(codec
, &spec
->multiout
);
218 static int conexant_dig_playback_pcm_open(struct hda_pcm_stream
*hinfo
,
219 struct hda_codec
*codec
,
220 struct snd_pcm_substream
*substream
)
222 struct conexant_spec
*spec
= codec
->spec
;
223 return snd_hda_multi_out_dig_open(codec
, &spec
->multiout
);
226 static int conexant_dig_playback_pcm_close(struct hda_pcm_stream
*hinfo
,
227 struct hda_codec
*codec
,
228 struct snd_pcm_substream
*substream
)
230 struct conexant_spec
*spec
= codec
->spec
;
231 return snd_hda_multi_out_dig_close(codec
, &spec
->multiout
);
234 static int conexant_dig_playback_pcm_prepare(struct hda_pcm_stream
*hinfo
,
235 struct hda_codec
*codec
,
236 unsigned int stream_tag
,
238 struct snd_pcm_substream
*substream
)
240 struct conexant_spec
*spec
= codec
->spec
;
241 return snd_hda_multi_out_dig_prepare(codec
, &spec
->multiout
,
249 static int conexant_capture_pcm_prepare(struct hda_pcm_stream
*hinfo
,
250 struct hda_codec
*codec
,
251 unsigned int stream_tag
,
253 struct snd_pcm_substream
*substream
)
255 struct conexant_spec
*spec
= codec
->spec
;
256 if (spec
->capture_prepare
)
257 spec
->capture_prepare(codec
);
258 snd_hda_codec_setup_stream(codec
, spec
->adc_nids
[substream
->number
],
259 stream_tag
, 0, format
);
263 static int conexant_capture_pcm_cleanup(struct hda_pcm_stream
*hinfo
,
264 struct hda_codec
*codec
,
265 struct snd_pcm_substream
*substream
)
267 struct conexant_spec
*spec
= codec
->spec
;
268 snd_hda_codec_cleanup_stream(codec
, spec
->adc_nids
[substream
->number
]);
269 if (spec
->capture_cleanup
)
270 spec
->capture_cleanup(codec
);
276 static const struct hda_pcm_stream conexant_pcm_analog_playback
= {
280 .nid
= 0, /* fill later */
282 .open
= conexant_playback_pcm_open
,
283 .prepare
= conexant_playback_pcm_prepare
,
284 .cleanup
= conexant_playback_pcm_cleanup
288 static const struct hda_pcm_stream conexant_pcm_analog_capture
= {
292 .nid
= 0, /* fill later */
294 .prepare
= conexant_capture_pcm_prepare
,
295 .cleanup
= conexant_capture_pcm_cleanup
300 static const struct hda_pcm_stream conexant_pcm_digital_playback
= {
304 .nid
= 0, /* fill later */
306 .open
= conexant_dig_playback_pcm_open
,
307 .close
= conexant_dig_playback_pcm_close
,
308 .prepare
= conexant_dig_playback_pcm_prepare
312 static const struct hda_pcm_stream conexant_pcm_digital_capture
= {
316 /* NID is set in alc_build_pcms */
319 static int cx5051_capture_pcm_prepare(struct hda_pcm_stream
*hinfo
,
320 struct hda_codec
*codec
,
321 unsigned int stream_tag
,
323 struct snd_pcm_substream
*substream
)
325 struct conexant_spec
*spec
= codec
->spec
;
326 spec
->cur_adc
= spec
->adc_nids
[spec
->cur_adc_idx
];
327 spec
->cur_adc_stream_tag
= stream_tag
;
328 spec
->cur_adc_format
= format
;
329 snd_hda_codec_setup_stream(codec
, spec
->cur_adc
, stream_tag
, 0, format
);
333 static int cx5051_capture_pcm_cleanup(struct hda_pcm_stream
*hinfo
,
334 struct hda_codec
*codec
,
335 struct snd_pcm_substream
*substream
)
337 struct conexant_spec
*spec
= codec
->spec
;
338 snd_hda_codec_cleanup_stream(codec
, spec
->cur_adc
);
343 static const struct hda_pcm_stream cx5051_pcm_analog_capture
= {
347 .nid
= 0, /* fill later */
349 .prepare
= cx5051_capture_pcm_prepare
,
350 .cleanup
= cx5051_capture_pcm_cleanup
354 static int conexant_build_pcms(struct hda_codec
*codec
)
356 struct conexant_spec
*spec
= codec
->spec
;
357 struct hda_pcm
*info
= spec
->pcm_rec
;
360 codec
->pcm_info
= info
;
362 info
->name
= "CONEXANT Analog";
363 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
] = conexant_pcm_analog_playback
;
364 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
].channels_max
=
365 spec
->multiout
.max_channels
;
366 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
].nid
=
367 spec
->multiout
.dac_nids
[0];
368 if (spec
->capture_stream
)
369 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
] = *spec
->capture_stream
;
371 if (codec
->vendor_id
== 0x14f15051)
372 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
] =
373 cx5051_pcm_analog_capture
;
375 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
] =
376 conexant_pcm_analog_capture
;
377 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
].substreams
=
381 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
].nid
= spec
->adc_nids
[0];
383 if (spec
->multiout
.dig_out_nid
) {
386 info
->name
= "Conexant Digital";
387 info
->pcm_type
= HDA_PCM_TYPE_SPDIF
;
388 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
] =
389 conexant_pcm_digital_playback
;
390 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
].nid
=
391 spec
->multiout
.dig_out_nid
;
392 if (spec
->dig_in_nid
) {
393 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
] =
394 conexant_pcm_digital_capture
;
395 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
].nid
=
403 static int conexant_mux_enum_info(struct snd_kcontrol
*kcontrol
,
404 struct snd_ctl_elem_info
*uinfo
)
406 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
407 struct conexant_spec
*spec
= codec
->spec
;
409 return snd_hda_input_mux_info(spec
->input_mux
, uinfo
);
412 static int conexant_mux_enum_get(struct snd_kcontrol
*kcontrol
,
413 struct snd_ctl_elem_value
*ucontrol
)
415 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
416 struct conexant_spec
*spec
= codec
->spec
;
417 unsigned int adc_idx
= snd_ctl_get_ioffidx(kcontrol
, &ucontrol
->id
);
419 ucontrol
->value
.enumerated
.item
[0] = spec
->cur_mux
[adc_idx
];
423 static int conexant_mux_enum_put(struct snd_kcontrol
*kcontrol
,
424 struct snd_ctl_elem_value
*ucontrol
)
426 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
427 struct conexant_spec
*spec
= codec
->spec
;
428 unsigned int adc_idx
= snd_ctl_get_ioffidx(kcontrol
, &ucontrol
->id
);
430 return snd_hda_input_mux_put(codec
, spec
->input_mux
, ucontrol
,
431 spec
->capsrc_nids
[adc_idx
],
432 &spec
->cur_mux
[adc_idx
]);
435 static void conexant_set_power(struct hda_codec
*codec
, hda_nid_t fg
,
436 unsigned int power_state
)
438 if (power_state
== AC_PWRST_D3
)
440 snd_hda_codec_read(codec
, fg
, 0, AC_VERB_SET_POWER_STATE
,
442 /* partial workaround for "azx_get_response timeout" */
443 if (power_state
== AC_PWRST_D0
)
445 snd_hda_codec_set_power_to_all(codec
, fg
, power_state
);
448 static int conexant_init(struct hda_codec
*codec
)
450 struct conexant_spec
*spec
= codec
->spec
;
453 for (i
= 0; i
< spec
->num_init_verbs
; i
++)
454 snd_hda_sequence_write(codec
, spec
->init_verbs
[i
]);
458 static void conexant_free(struct hda_codec
*codec
)
460 struct conexant_spec
*spec
= codec
->spec
;
461 snd_hda_detach_beep_device(codec
);
465 static const struct snd_kcontrol_new cxt_capture_mixers
[] = {
467 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
468 .name
= "Capture Source",
469 .info
= conexant_mux_enum_info
,
470 .get
= conexant_mux_enum_get
,
471 .put
= conexant_mux_enum_put
476 static const char * const slave_pfxs
[] = {
477 "Headphone", "Speaker", "Bass Speaker", "Front", "Surround", "CLFE",
481 static int conexant_build_controls(struct hda_codec
*codec
)
483 struct conexant_spec
*spec
= codec
->spec
;
487 for (i
= 0; i
< spec
->num_mixers
; i
++) {
488 err
= snd_hda_add_new_ctls(codec
, spec
->mixers
[i
]);
492 if (spec
->multiout
.dig_out_nid
) {
493 err
= snd_hda_create_spdif_out_ctls(codec
,
494 spec
->multiout
.dig_out_nid
,
495 spec
->multiout
.dig_out_nid
);
498 err
= snd_hda_create_spdif_share_sw(codec
,
502 spec
->multiout
.share_spdif
= 1;
504 if (spec
->dig_in_nid
) {
505 err
= snd_hda_create_spdif_in_ctls(codec
,spec
->dig_in_nid
);
510 /* if we have no master control, let's create it */
511 if (spec
->vmaster_nid
&&
512 !snd_hda_find_mixer_ctl(codec
, "Master Playback Volume")) {
513 unsigned int vmaster_tlv
[4];
514 snd_hda_set_vmaster_tlv(codec
, spec
->vmaster_nid
,
515 HDA_OUTPUT
, vmaster_tlv
);
516 err
= snd_hda_add_vmaster(codec
, "Master Playback Volume",
517 vmaster_tlv
, slave_pfxs
,
522 if (spec
->vmaster_nid
&&
523 !snd_hda_find_mixer_ctl(codec
, "Master Playback Switch")) {
524 err
= snd_hda_add_vmaster(codec
, "Master Playback Switch",
531 if (spec
->input_mux
) {
532 err
= snd_hda_add_new_ctls(codec
, cxt_capture_mixers
);
537 err
= add_beep_ctls(codec
);
544 static const struct hda_codec_ops conexant_patch_ops
= {
545 .build_controls
= conexant_build_controls
,
546 .build_pcms
= conexant_build_pcms
,
547 .init
= conexant_init
,
548 .free
= conexant_free
,
549 .set_power_state
= conexant_set_power
,
552 static int patch_conexant_auto(struct hda_codec
*codec
);
555 * the private value = nid | (invert << 8)
558 #define cxt_eapd_info snd_ctl_boolean_mono_info
560 static int cxt_eapd_get(struct snd_kcontrol
*kcontrol
,
561 struct snd_ctl_elem_value
*ucontrol
)
563 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
564 struct conexant_spec
*spec
= codec
->spec
;
565 int invert
= (kcontrol
->private_value
>> 8) & 1;
567 ucontrol
->value
.integer
.value
[0] = !spec
->cur_eapd
;
569 ucontrol
->value
.integer
.value
[0] = spec
->cur_eapd
;
574 static int cxt_eapd_put(struct snd_kcontrol
*kcontrol
,
575 struct snd_ctl_elem_value
*ucontrol
)
577 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
578 struct conexant_spec
*spec
= codec
->spec
;
579 int invert
= (kcontrol
->private_value
>> 8) & 1;
580 hda_nid_t nid
= kcontrol
->private_value
& 0xff;
583 eapd
= !!ucontrol
->value
.integer
.value
[0];
586 if (eapd
== spec
->cur_eapd
)
589 spec
->cur_eapd
= eapd
;
590 snd_hda_codec_write_cache(codec
, nid
,
591 0, AC_VERB_SET_EAPD_BTLENABLE
,
596 /* controls for test mode */
597 #ifdef CONFIG_SND_DEBUG
599 #define CXT_EAPD_SWITCH(xname, nid, mask) \
600 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
601 .info = cxt_eapd_info, \
602 .get = cxt_eapd_get, \
603 .put = cxt_eapd_put, \
604 .private_value = nid | (mask<<16) }
608 static int conexant_ch_mode_info(struct snd_kcontrol
*kcontrol
,
609 struct snd_ctl_elem_info
*uinfo
)
611 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
612 struct conexant_spec
*spec
= codec
->spec
;
613 return snd_hda_ch_mode_info(codec
, uinfo
, spec
->channel_mode
,
614 spec
->num_channel_mode
);
617 static int conexant_ch_mode_get(struct snd_kcontrol
*kcontrol
,
618 struct snd_ctl_elem_value
*ucontrol
)
620 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
621 struct conexant_spec
*spec
= codec
->spec
;
622 return snd_hda_ch_mode_get(codec
, ucontrol
, spec
->channel_mode
,
623 spec
->num_channel_mode
,
624 spec
->multiout
.max_channels
);
627 static int conexant_ch_mode_put(struct snd_kcontrol
*kcontrol
,
628 struct snd_ctl_elem_value
*ucontrol
)
630 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
631 struct conexant_spec
*spec
= codec
->spec
;
632 int err
= snd_hda_ch_mode_put(codec
, ucontrol
, spec
->channel_mode
,
633 spec
->num_channel_mode
,
634 &spec
->multiout
.max_channels
);
638 #define CXT_PIN_MODE(xname, nid, dir) \
639 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
640 .info = conexant_ch_mode_info, \
641 .get = conexant_ch_mode_get, \
642 .put = conexant_ch_mode_put, \
643 .private_value = nid | (dir<<16) }
645 #endif /* CONFIG_SND_DEBUG */
647 /* Conexant 5045 specific */
649 static const hda_nid_t cxt5045_dac_nids
[1] = { 0x19 };
650 static const hda_nid_t cxt5045_adc_nids
[1] = { 0x1a };
651 static const hda_nid_t cxt5045_capsrc_nids
[1] = { 0x1a };
652 #define CXT5045_SPDIF_OUT 0x18
654 static const struct hda_channel_mode cxt5045_modes
[1] = {
658 static const struct hda_input_mux cxt5045_capture_source
= {
661 { "Internal Mic", 0x1 },
666 static const struct hda_input_mux cxt5045_capture_source_benq
= {
669 { "Internal Mic", 0x1 },
676 static const struct hda_input_mux cxt5045_capture_source_hp530
= {
680 { "Internal Mic", 0x2 },
684 /* turn on/off EAPD (+ mute HP) as a master switch */
685 static int cxt5045_hp_master_sw_put(struct snd_kcontrol
*kcontrol
,
686 struct snd_ctl_elem_value
*ucontrol
)
688 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
689 struct conexant_spec
*spec
= codec
->spec
;
692 if (!cxt_eapd_put(kcontrol
, ucontrol
))
695 /* toggle internal speakers mute depending of presence of
698 bits
= (!spec
->hp_present
&& spec
->cur_eapd
) ? 0 : HDA_AMP_MUTE
;
699 snd_hda_codec_amp_stereo(codec
, 0x10, HDA_OUTPUT
, 0,
702 bits
= spec
->cur_eapd
? 0 : HDA_AMP_MUTE
;
703 snd_hda_codec_amp_stereo(codec
, 0x11, HDA_OUTPUT
, 0,
708 /* bind volumes of both NID 0x10 and 0x11 */
709 static const struct hda_bind_ctls cxt5045_hp_bind_master_vol
= {
710 .ops
= &snd_hda_bind_vol
,
712 HDA_COMPOSE_AMP_VAL(0x10, 3, 0, HDA_OUTPUT
),
713 HDA_COMPOSE_AMP_VAL(0x11, 3, 0, HDA_OUTPUT
),
718 /* toggle input of built-in and mic jack appropriately */
719 static void cxt5045_hp_automic(struct hda_codec
*codec
)
721 static const struct hda_verb mic_jack_on
[] = {
722 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb080},
723 {0x12, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb000},
726 static const struct hda_verb mic_jack_off
[] = {
727 {0x12, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb080},
728 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb000},
731 unsigned int present
;
733 present
= snd_hda_jack_detect(codec
, 0x12);
735 snd_hda_sequence_write(codec
, mic_jack_on
);
737 snd_hda_sequence_write(codec
, mic_jack_off
);
741 /* mute internal speaker if HP is plugged */
742 static void cxt5045_hp_automute(struct hda_codec
*codec
)
744 struct conexant_spec
*spec
= codec
->spec
;
747 spec
->hp_present
= snd_hda_jack_detect(codec
, 0x11);
749 bits
= (spec
->hp_present
|| !spec
->cur_eapd
) ? HDA_AMP_MUTE
: 0;
750 snd_hda_codec_amp_stereo(codec
, 0x10, HDA_OUTPUT
, 0,
754 /* unsolicited event for HP jack sensing */
755 static void cxt5045_hp_unsol_event(struct hda_codec
*codec
,
760 case CONEXANT_HP_EVENT
:
761 cxt5045_hp_automute(codec
);
763 case CONEXANT_MIC_EVENT
:
764 cxt5045_hp_automic(codec
);
770 static const struct snd_kcontrol_new cxt5045_mixers
[] = {
771 HDA_CODEC_VOLUME("Capture Volume", 0x1a, 0x00, HDA_INPUT
),
772 HDA_CODEC_MUTE("Capture Switch", 0x1a, 0x0, HDA_INPUT
),
773 HDA_CODEC_VOLUME("PCM Playback Volume", 0x17, 0x0, HDA_INPUT
),
774 HDA_CODEC_MUTE("PCM Playback Switch", 0x17, 0x0, HDA_INPUT
),
775 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x17, 0x1, HDA_INPUT
),
776 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x17, 0x1, HDA_INPUT
),
777 HDA_CODEC_VOLUME("Mic Playback Volume", 0x17, 0x2, HDA_INPUT
),
778 HDA_CODEC_MUTE("Mic Playback Switch", 0x17, 0x2, HDA_INPUT
),
779 HDA_BIND_VOL("Master Playback Volume", &cxt5045_hp_bind_master_vol
),
781 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
782 .name
= "Master Playback Switch",
783 .info
= cxt_eapd_info
,
785 .put
= cxt5045_hp_master_sw_put
,
786 .private_value
= 0x10,
792 static const struct snd_kcontrol_new cxt5045_benq_mixers
[] = {
793 HDA_CODEC_VOLUME("Line Playback Volume", 0x17, 0x3, HDA_INPUT
),
794 HDA_CODEC_MUTE("Line Playback Switch", 0x17, 0x3, HDA_INPUT
),
799 static const struct snd_kcontrol_new cxt5045_mixers_hp530
[] = {
800 HDA_CODEC_VOLUME("Capture Volume", 0x1a, 0x00, HDA_INPUT
),
801 HDA_CODEC_MUTE("Capture Switch", 0x1a, 0x0, HDA_INPUT
),
802 HDA_CODEC_VOLUME("PCM Playback Volume", 0x17, 0x0, HDA_INPUT
),
803 HDA_CODEC_MUTE("PCM Playback Switch", 0x17, 0x0, HDA_INPUT
),
804 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x17, 0x2, HDA_INPUT
),
805 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x17, 0x2, HDA_INPUT
),
806 HDA_CODEC_VOLUME("Mic Playback Volume", 0x17, 0x1, HDA_INPUT
),
807 HDA_CODEC_MUTE("Mic Playback Switch", 0x17, 0x1, HDA_INPUT
),
808 HDA_BIND_VOL("Master Playback Volume", &cxt5045_hp_bind_master_vol
),
810 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
811 .name
= "Master Playback Switch",
812 .info
= cxt_eapd_info
,
814 .put
= cxt5045_hp_master_sw_put
,
815 .private_value
= 0x10,
821 static const struct hda_verb cxt5045_init_verbs
[] = {
823 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
|AC_PINCTL_VREF_80
},
824 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
|AC_PINCTL_VREF_80
},
826 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
827 {0x10, AC_VERB_SET_CONNECT_SEL
, 0x1},
828 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
829 {0x11, AC_VERB_SET_CONNECT_SEL
, 0x1},
830 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
831 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
832 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
833 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
834 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
835 /* Record selector: Internal mic */
836 {0x1a, AC_VERB_SET_CONNECT_SEL
,0x1},
837 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
,
838 AC_AMP_SET_INPUT
|AC_AMP_SET_RIGHT
|AC_AMP_SET_LEFT
|0x17},
839 /* SPDIF route: PCM */
840 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
841 { 0x13, AC_VERB_SET_CONNECT_SEL
, 0x0 },
843 {0x10, AC_VERB_SET_EAPD_BTLENABLE
, 0x2 }, /* default on */
847 static const struct hda_verb cxt5045_benq_init_verbs
[] = {
848 /* Internal Mic, Mic */
849 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
|AC_PINCTL_VREF_80
},
850 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
|AC_PINCTL_VREF_80
},
851 /* Line In,HP, Amp */
852 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
853 {0x10, AC_VERB_SET_CONNECT_SEL
, 0x1},
854 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
855 {0x11, AC_VERB_SET_CONNECT_SEL
, 0x1},
856 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
857 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
858 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
859 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
860 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
861 /* Record selector: Internal mic */
862 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x1},
863 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
,
864 AC_AMP_SET_INPUT
|AC_AMP_SET_RIGHT
|AC_AMP_SET_LEFT
|0x17},
865 /* SPDIF route: PCM */
866 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
867 {0x13, AC_VERB_SET_CONNECT_SEL
, 0x0},
869 {0x10, AC_VERB_SET_EAPD_BTLENABLE
, 0x2}, /* default on */
873 static const struct hda_verb cxt5045_hp_sense_init_verbs
[] = {
874 /* pin sensing on HP jack */
875 {0x11, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| CONEXANT_HP_EVENT
},
879 static const struct hda_verb cxt5045_mic_sense_init_verbs
[] = {
880 /* pin sensing on HP jack */
881 {0x12, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| CONEXANT_MIC_EVENT
},
885 #ifdef CONFIG_SND_DEBUG
886 /* Test configuration for debugging, modelled after the ALC260 test
889 static const struct hda_input_mux cxt5045_test_capture_source
= {
894 { "LINE1 pin", 0x2 },
895 { "HP-OUT pin", 0x3 },
900 static const struct snd_kcontrol_new cxt5045_test_mixer
[] = {
902 /* Output controls */
903 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x10, 0x0, HDA_OUTPUT
),
904 HDA_CODEC_MUTE("Speaker Playback Switch", 0x10, 0x0, HDA_OUTPUT
),
905 HDA_CODEC_VOLUME("HP-OUT Playback Volume", 0x11, 0x0, HDA_OUTPUT
),
906 HDA_CODEC_MUTE("HP-OUT Playback Switch", 0x11, 0x0, HDA_OUTPUT
),
907 HDA_CODEC_VOLUME("LINE1 Playback Volume", 0x12, 0x0, HDA_OUTPUT
),
908 HDA_CODEC_MUTE("LINE1 Playback Switch", 0x12, 0x0, HDA_OUTPUT
),
910 /* Modes for retasking pin widgets */
911 CXT_PIN_MODE("HP-OUT pin mode", 0x11, CXT_PIN_DIR_INOUT
),
912 CXT_PIN_MODE("LINE1 pin mode", 0x12, CXT_PIN_DIR_INOUT
),
914 /* EAPD Switch Control */
915 CXT_EAPD_SWITCH("External Amplifier", 0x10, 0x0),
917 /* Loopback mixer controls */
919 HDA_CODEC_VOLUME("PCM Volume", 0x17, 0x0, HDA_INPUT
),
920 HDA_CODEC_MUTE("PCM Switch", 0x17, 0x0, HDA_INPUT
),
921 HDA_CODEC_VOLUME("MIC1 pin Volume", 0x17, 0x1, HDA_INPUT
),
922 HDA_CODEC_MUTE("MIC1 pin Switch", 0x17, 0x1, HDA_INPUT
),
923 HDA_CODEC_VOLUME("LINE1 pin Volume", 0x17, 0x2, HDA_INPUT
),
924 HDA_CODEC_MUTE("LINE1 pin Switch", 0x17, 0x2, HDA_INPUT
),
925 HDA_CODEC_VOLUME("HP-OUT pin Volume", 0x17, 0x3, HDA_INPUT
),
926 HDA_CODEC_MUTE("HP-OUT pin Switch", 0x17, 0x3, HDA_INPUT
),
927 HDA_CODEC_VOLUME("CD pin Volume", 0x17, 0x4, HDA_INPUT
),
928 HDA_CODEC_MUTE("CD pin Switch", 0x17, 0x4, HDA_INPUT
),
930 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
931 .name
= "Input Source",
932 .info
= conexant_mux_enum_info
,
933 .get
= conexant_mux_enum_get
,
934 .put
= conexant_mux_enum_put
,
936 /* Audio input controls */
937 HDA_CODEC_VOLUME("Capture Volume", 0x1a, 0x0, HDA_INPUT
),
938 HDA_CODEC_MUTE("Capture Switch", 0x1a, 0x0, HDA_INPUT
),
942 static const struct hda_verb cxt5045_test_init_verbs
[] = {
943 /* Set connections */
944 { 0x10, AC_VERB_SET_CONNECT_SEL
, 0x0 },
945 { 0x11, AC_VERB_SET_CONNECT_SEL
, 0x0 },
946 { 0x12, AC_VERB_SET_CONNECT_SEL
, 0x0 },
947 /* Enable retasking pins as output, initially without power amp */
948 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
949 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
951 /* Disable digital (SPDIF) pins initially, but users can enable
952 * them via a mixer switch. In the case of SPDIF-out, this initverb
953 * payload also sets the generation to 0, output to be in "consumer"
954 * PCM format, copyright asserted, no pre-emphasis and no validity
957 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
958 {0x18, AC_VERB_SET_DIGI_CONVERT_1
, 0},
960 /* Unmute retasking pin widget output buffers since the default
961 * state appears to be output. As the pin mode is changed by the
962 * user the pin mode control will take care of enabling the pin's
963 * input/output buffers as needed.
965 {0x12, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
966 {0x11, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
968 /* Mute capture amp left and right */
969 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
971 /* Set ADC connection select to match default mixer setting (mic1
974 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01},
975 {0x17, AC_VERB_SET_CONNECT_SEL
, 0x01},
977 /* Mute all inputs to mixer widget (even unconnected ones) */
978 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)}, /* Mixer */
979 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)}, /* Mic1 pin */
980 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)}, /* Line pin */
981 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)}, /* HP pin */
982 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)}, /* CD pin */
989 /* initialize jack-sensing, too */
990 static int cxt5045_init(struct hda_codec
*codec
)
992 conexant_init(codec
);
993 cxt5045_hp_automute(codec
);
999 CXT5045_LAPTOP_HPSENSE
,
1000 CXT5045_LAPTOP_MICSENSE
,
1001 CXT5045_LAPTOP_HPMICSENSE
,
1003 CXT5045_LAPTOP_HP530
,
1004 #ifdef CONFIG_SND_DEBUG
1011 static const char * const cxt5045_models
[CXT5045_MODELS
] = {
1012 [CXT5045_LAPTOP_HPSENSE
] = "laptop-hpsense",
1013 [CXT5045_LAPTOP_MICSENSE
] = "laptop-micsense",
1014 [CXT5045_LAPTOP_HPMICSENSE
] = "laptop-hpmicsense",
1015 [CXT5045_BENQ
] = "benq",
1016 [CXT5045_LAPTOP_HP530
] = "laptop-hp530",
1017 #ifdef CONFIG_SND_DEBUG
1018 [CXT5045_TEST
] = "test",
1020 [CXT5045_AUTO
] = "auto",
1023 static const struct snd_pci_quirk cxt5045_cfg_tbl
[] = {
1024 SND_PCI_QUIRK(0x103c, 0x30d5, "HP 530", CXT5045_LAPTOP_HP530
),
1025 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba P105", CXT5045_LAPTOP_MICSENSE
),
1026 SND_PCI_QUIRK(0x152d, 0x0753, "Benq R55E", CXT5045_BENQ
),
1027 SND_PCI_QUIRK(0x1734, 0x10ad, "Fujitsu Si1520", CXT5045_LAPTOP_MICSENSE
),
1028 SND_PCI_QUIRK(0x1734, 0x10cb, "Fujitsu Si3515", CXT5045_LAPTOP_HPMICSENSE
),
1029 SND_PCI_QUIRK(0x1734, 0x110e, "Fujitsu V5505",
1030 CXT5045_LAPTOP_HPMICSENSE
),
1031 SND_PCI_QUIRK(0x1509, 0x1e40, "FIC", CXT5045_LAPTOP_HPMICSENSE
),
1032 SND_PCI_QUIRK(0x1509, 0x2f05, "FIC", CXT5045_LAPTOP_HPMICSENSE
),
1033 SND_PCI_QUIRK(0x1509, 0x2f06, "FIC", CXT5045_LAPTOP_HPMICSENSE
),
1034 SND_PCI_QUIRK_MASK(0x1631, 0xff00, 0xc100, "Packard Bell",
1035 CXT5045_LAPTOP_HPMICSENSE
),
1036 SND_PCI_QUIRK(0x8086, 0x2111, "Conexant Reference board", CXT5045_LAPTOP_HPSENSE
),
1040 static int patch_cxt5045(struct hda_codec
*codec
)
1042 struct conexant_spec
*spec
;
1045 board_config
= snd_hda_check_board_config(codec
, CXT5045_MODELS
,
1048 if (board_config
< 0)
1049 board_config
= CXT5045_AUTO
; /* model=auto as default */
1050 if (board_config
== CXT5045_AUTO
)
1051 return patch_conexant_auto(codec
);
1053 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
1057 codec
->single_adc_amp
= 1;
1059 spec
->multiout
.max_channels
= 2;
1060 spec
->multiout
.num_dacs
= ARRAY_SIZE(cxt5045_dac_nids
);
1061 spec
->multiout
.dac_nids
= cxt5045_dac_nids
;
1062 spec
->multiout
.dig_out_nid
= CXT5045_SPDIF_OUT
;
1063 spec
->num_adc_nids
= 1;
1064 spec
->adc_nids
= cxt5045_adc_nids
;
1065 spec
->capsrc_nids
= cxt5045_capsrc_nids
;
1066 spec
->input_mux
= &cxt5045_capture_source
;
1067 spec
->num_mixers
= 1;
1068 spec
->mixers
[0] = cxt5045_mixers
;
1069 spec
->num_init_verbs
= 1;
1070 spec
->init_verbs
[0] = cxt5045_init_verbs
;
1071 spec
->spdif_route
= 0;
1072 spec
->num_channel_mode
= ARRAY_SIZE(cxt5045_modes
);
1073 spec
->channel_mode
= cxt5045_modes
;
1075 set_beep_amp(spec
, 0x16, 0, 1);
1077 codec
->patch_ops
= conexant_patch_ops
;
1079 switch (board_config
) {
1080 case CXT5045_LAPTOP_HPSENSE
:
1081 codec
->patch_ops
.unsol_event
= cxt5045_hp_unsol_event
;
1082 spec
->input_mux
= &cxt5045_capture_source
;
1083 spec
->num_init_verbs
= 2;
1084 spec
->init_verbs
[1] = cxt5045_hp_sense_init_verbs
;
1085 spec
->mixers
[0] = cxt5045_mixers
;
1086 codec
->patch_ops
.init
= cxt5045_init
;
1088 case CXT5045_LAPTOP_MICSENSE
:
1089 codec
->patch_ops
.unsol_event
= cxt5045_hp_unsol_event
;
1090 spec
->input_mux
= &cxt5045_capture_source
;
1091 spec
->num_init_verbs
= 2;
1092 spec
->init_verbs
[1] = cxt5045_mic_sense_init_verbs
;
1093 spec
->mixers
[0] = cxt5045_mixers
;
1094 codec
->patch_ops
.init
= cxt5045_init
;
1097 case CXT5045_LAPTOP_HPMICSENSE
:
1098 codec
->patch_ops
.unsol_event
= cxt5045_hp_unsol_event
;
1099 spec
->input_mux
= &cxt5045_capture_source
;
1100 spec
->num_init_verbs
= 3;
1101 spec
->init_verbs
[1] = cxt5045_hp_sense_init_verbs
;
1102 spec
->init_verbs
[2] = cxt5045_mic_sense_init_verbs
;
1103 spec
->mixers
[0] = cxt5045_mixers
;
1104 codec
->patch_ops
.init
= cxt5045_init
;
1107 codec
->patch_ops
.unsol_event
= cxt5045_hp_unsol_event
;
1108 spec
->input_mux
= &cxt5045_capture_source_benq
;
1109 spec
->num_init_verbs
= 1;
1110 spec
->init_verbs
[0] = cxt5045_benq_init_verbs
;
1111 spec
->mixers
[0] = cxt5045_mixers
;
1112 spec
->mixers
[1] = cxt5045_benq_mixers
;
1113 spec
->num_mixers
= 2;
1114 codec
->patch_ops
.init
= cxt5045_init
;
1116 case CXT5045_LAPTOP_HP530
:
1117 codec
->patch_ops
.unsol_event
= cxt5045_hp_unsol_event
;
1118 spec
->input_mux
= &cxt5045_capture_source_hp530
;
1119 spec
->num_init_verbs
= 2;
1120 spec
->init_verbs
[1] = cxt5045_hp_sense_init_verbs
;
1121 spec
->mixers
[0] = cxt5045_mixers_hp530
;
1122 codec
->patch_ops
.init
= cxt5045_init
;
1124 #ifdef CONFIG_SND_DEBUG
1126 spec
->input_mux
= &cxt5045_test_capture_source
;
1127 spec
->mixers
[0] = cxt5045_test_mixer
;
1128 spec
->init_verbs
[0] = cxt5045_test_init_verbs
;
1134 switch (codec
->subsystem_id
>> 16) {
1139 /* HP, Packard Bell, Fujitsu-Siemens & Lenovo laptops have
1140 * really bad sound over 0dB on NID 0x17. Fix max PCM level to
1141 * 0 dB (originally it has 0x2b steps with 0dB offset 0x14)
1143 snd_hda_override_amp_caps(codec
, 0x17, HDA_INPUT
,
1144 (0x14 << AC_AMPCAP_OFFSET_SHIFT
) |
1145 (0x14 << AC_AMPCAP_NUM_STEPS_SHIFT
) |
1146 (0x05 << AC_AMPCAP_STEP_SIZE_SHIFT
) |
1147 (1 << AC_AMPCAP_MUTE_SHIFT
));
1152 snd_hda_attach_beep_device(codec
, get_amp_nid_(spec
->beep_amp
));
1158 /* Conexant 5047 specific */
1159 #define CXT5047_SPDIF_OUT 0x11
1161 static const hda_nid_t cxt5047_dac_nids
[1] = { 0x10 }; /* 0x1c */
1162 static const hda_nid_t cxt5047_adc_nids
[1] = { 0x12 };
1163 static const hda_nid_t cxt5047_capsrc_nids
[1] = { 0x1a };
1165 static const struct hda_channel_mode cxt5047_modes
[1] = {
1169 static const struct hda_input_mux cxt5047_toshiba_capture_source
= {
1177 /* turn on/off EAPD (+ mute HP) as a master switch */
1178 static int cxt5047_hp_master_sw_put(struct snd_kcontrol
*kcontrol
,
1179 struct snd_ctl_elem_value
*ucontrol
)
1181 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
1182 struct conexant_spec
*spec
= codec
->spec
;
1185 if (!cxt_eapd_put(kcontrol
, ucontrol
))
1188 /* toggle internal speakers mute depending of presence of
1189 * the headphone jack
1191 bits
= (!spec
->hp_present
&& spec
->cur_eapd
) ? 0 : HDA_AMP_MUTE
;
1192 /* NOTE: Conexat codec needs the index for *OUTPUT* amp of
1193 * pin widgets unlike other codecs. In this case, we need to
1194 * set index 0x01 for the volume from the mixer amp 0x19.
1196 snd_hda_codec_amp_stereo(codec
, 0x1d, HDA_OUTPUT
, 0x01,
1197 HDA_AMP_MUTE
, bits
);
1198 bits
= spec
->cur_eapd
? 0 : HDA_AMP_MUTE
;
1199 snd_hda_codec_amp_stereo(codec
, 0x13, HDA_OUTPUT
, 0,
1200 HDA_AMP_MUTE
, bits
);
1204 /* mute internal speaker if HP is plugged */
1205 static void cxt5047_hp_automute(struct hda_codec
*codec
)
1207 struct conexant_spec
*spec
= codec
->spec
;
1210 spec
->hp_present
= snd_hda_jack_detect(codec
, 0x13);
1212 bits
= (spec
->hp_present
|| !spec
->cur_eapd
) ? HDA_AMP_MUTE
: 0;
1213 /* See the note in cxt5047_hp_master_sw_put */
1214 snd_hda_codec_amp_stereo(codec
, 0x1d, HDA_OUTPUT
, 0x01,
1215 HDA_AMP_MUTE
, bits
);
1218 /* toggle input of built-in and mic jack appropriately */
1219 static void cxt5047_hp_automic(struct hda_codec
*codec
)
1221 static const struct hda_verb mic_jack_on
[] = {
1222 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
1223 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1226 static const struct hda_verb mic_jack_off
[] = {
1227 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
1228 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1231 unsigned int present
;
1233 present
= snd_hda_jack_detect(codec
, 0x15);
1235 snd_hda_sequence_write(codec
, mic_jack_on
);
1237 snd_hda_sequence_write(codec
, mic_jack_off
);
1240 /* unsolicited event for HP jack sensing */
1241 static void cxt5047_hp_unsol_event(struct hda_codec
*codec
,
1244 switch (res
>> 26) {
1245 case CONEXANT_HP_EVENT
:
1246 cxt5047_hp_automute(codec
);
1248 case CONEXANT_MIC_EVENT
:
1249 cxt5047_hp_automic(codec
);
1254 static const struct snd_kcontrol_new cxt5047_base_mixers
[] = {
1255 HDA_CODEC_VOLUME("Mic Playback Volume", 0x19, 0x02, HDA_INPUT
),
1256 HDA_CODEC_MUTE("Mic Playback Switch", 0x19, 0x02, HDA_INPUT
),
1257 HDA_CODEC_VOLUME("Mic Boost Volume", 0x1a, 0x0, HDA_OUTPUT
),
1258 HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x03, HDA_INPUT
),
1259 HDA_CODEC_MUTE("Capture Switch", 0x12, 0x03, HDA_INPUT
),
1260 HDA_CODEC_VOLUME("PCM Volume", 0x10, 0x00, HDA_OUTPUT
),
1261 HDA_CODEC_MUTE("PCM Switch", 0x10, 0x00, HDA_OUTPUT
),
1263 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1264 .name
= "Master Playback Switch",
1265 .info
= cxt_eapd_info
,
1266 .get
= cxt_eapd_get
,
1267 .put
= cxt5047_hp_master_sw_put
,
1268 .private_value
= 0x13,
1274 static const struct snd_kcontrol_new cxt5047_hp_spk_mixers
[] = {
1275 /* See the note in cxt5047_hp_master_sw_put */
1276 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x1d, 0x01, HDA_OUTPUT
),
1277 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x13, 0x00, HDA_OUTPUT
),
1281 static const struct snd_kcontrol_new cxt5047_hp_only_mixers
[] = {
1282 HDA_CODEC_VOLUME("Master Playback Volume", 0x13, 0x00, HDA_OUTPUT
),
1286 static const struct hda_verb cxt5047_init_verbs
[] = {
1287 /* Line in, Mic, Built-in Mic */
1288 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
1289 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
|AC_PINCTL_VREF_50
},
1290 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
|AC_PINCTL_VREF_50
},
1292 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
1293 {0x13, AC_VERB_SET_CONNECT_SEL
, 0x0}, /* mixer(0x19) */
1294 {0x1d, AC_VERB_SET_CONNECT_SEL
, 0x1}, /* mixer(0x19) */
1295 /* Record selector: Mic */
1296 {0x12, AC_VERB_SET_CONNECT_SEL
,0x03},
1297 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
,
1298 AC_AMP_SET_INPUT
|AC_AMP_SET_RIGHT
|AC_AMP_SET_LEFT
|0x17},
1299 {0x1A, AC_VERB_SET_CONNECT_SEL
,0x02},
1300 {0x1A, AC_VERB_SET_AMP_GAIN_MUTE
,
1301 AC_AMP_SET_OUTPUT
|AC_AMP_SET_RIGHT
|AC_AMP_SET_LEFT
|0x00},
1302 {0x1A, AC_VERB_SET_AMP_GAIN_MUTE
,
1303 AC_AMP_SET_OUTPUT
|AC_AMP_SET_RIGHT
|AC_AMP_SET_LEFT
|0x03},
1304 /* SPDIF route: PCM */
1305 { 0x18, AC_VERB_SET_CONNECT_SEL
, 0x0 },
1306 /* Enable unsolicited events */
1307 {0x13, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| CONEXANT_HP_EVENT
},
1308 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| CONEXANT_MIC_EVENT
},
1312 /* configuration for Toshiba Laptops */
1313 static const struct hda_verb cxt5047_toshiba_init_verbs
[] = {
1314 {0x13, AC_VERB_SET_EAPD_BTLENABLE
, 0x0}, /* default off */
1318 /* Test configuration for debugging, modelled after the ALC260 test
1321 #ifdef CONFIG_SND_DEBUG
1322 static const struct hda_input_mux cxt5047_test_capture_source
= {
1325 { "LINE1 pin", 0x0 },
1326 { "MIC1 pin", 0x1 },
1327 { "MIC2 pin", 0x2 },
1332 static const struct snd_kcontrol_new cxt5047_test_mixer
[] = {
1334 /* Output only controls */
1335 HDA_CODEC_VOLUME("OutAmp-1 Volume", 0x10, 0x0, HDA_OUTPUT
),
1336 HDA_CODEC_MUTE("OutAmp-1 Switch", 0x10,0x0, HDA_OUTPUT
),
1337 HDA_CODEC_VOLUME("OutAmp-2 Volume", 0x1c, 0x0, HDA_OUTPUT
),
1338 HDA_CODEC_MUTE("OutAmp-2 Switch", 0x1c, 0x0, HDA_OUTPUT
),
1339 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x1d, 0x0, HDA_OUTPUT
),
1340 HDA_CODEC_MUTE("Speaker Playback Switch", 0x1d, 0x0, HDA_OUTPUT
),
1341 HDA_CODEC_VOLUME("HeadPhone Playback Volume", 0x13, 0x0, HDA_OUTPUT
),
1342 HDA_CODEC_MUTE("HeadPhone Playback Switch", 0x13, 0x0, HDA_OUTPUT
),
1343 HDA_CODEC_VOLUME("Line1-Out Playback Volume", 0x14, 0x0, HDA_OUTPUT
),
1344 HDA_CODEC_MUTE("Line1-Out Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
1345 HDA_CODEC_VOLUME("Line2-Out Playback Volume", 0x15, 0x0, HDA_OUTPUT
),
1346 HDA_CODEC_MUTE("Line2-Out Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
1348 /* Modes for retasking pin widgets */
1349 CXT_PIN_MODE("LINE1 pin mode", 0x14, CXT_PIN_DIR_INOUT
),
1350 CXT_PIN_MODE("MIC1 pin mode", 0x15, CXT_PIN_DIR_INOUT
),
1352 /* EAPD Switch Control */
1353 CXT_EAPD_SWITCH("External Amplifier", 0x13, 0x0),
1355 /* Loopback mixer controls */
1356 HDA_CODEC_VOLUME("MIC1 Playback Volume", 0x12, 0x01, HDA_INPUT
),
1357 HDA_CODEC_MUTE("MIC1 Playback Switch", 0x12, 0x01, HDA_INPUT
),
1358 HDA_CODEC_VOLUME("MIC2 Playback Volume", 0x12, 0x02, HDA_INPUT
),
1359 HDA_CODEC_MUTE("MIC2 Playback Switch", 0x12, 0x02, HDA_INPUT
),
1360 HDA_CODEC_VOLUME("LINE Playback Volume", 0x12, 0x0, HDA_INPUT
),
1361 HDA_CODEC_MUTE("LINE Playback Switch", 0x12, 0x0, HDA_INPUT
),
1362 HDA_CODEC_VOLUME("CD Playback Volume", 0x12, 0x04, HDA_INPUT
),
1363 HDA_CODEC_MUTE("CD Playback Switch", 0x12, 0x04, HDA_INPUT
),
1365 HDA_CODEC_VOLUME("Capture-1 Volume", 0x19, 0x0, HDA_INPUT
),
1366 HDA_CODEC_MUTE("Capture-1 Switch", 0x19, 0x0, HDA_INPUT
),
1367 HDA_CODEC_VOLUME("Capture-2 Volume", 0x19, 0x1, HDA_INPUT
),
1368 HDA_CODEC_MUTE("Capture-2 Switch", 0x19, 0x1, HDA_INPUT
),
1369 HDA_CODEC_VOLUME("Capture-3 Volume", 0x19, 0x2, HDA_INPUT
),
1370 HDA_CODEC_MUTE("Capture-3 Switch", 0x19, 0x2, HDA_INPUT
),
1371 HDA_CODEC_VOLUME("Capture-4 Volume", 0x19, 0x3, HDA_INPUT
),
1372 HDA_CODEC_MUTE("Capture-4 Switch", 0x19, 0x3, HDA_INPUT
),
1374 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1375 .name
= "Input Source",
1376 .info
= conexant_mux_enum_info
,
1377 .get
= conexant_mux_enum_get
,
1378 .put
= conexant_mux_enum_put
,
1380 HDA_CODEC_VOLUME("Mic Boost Volume", 0x1a, 0x0, HDA_OUTPUT
),
1385 static const struct hda_verb cxt5047_test_init_verbs
[] = {
1386 /* Enable retasking pins as output, initially without power amp */
1387 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1388 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1389 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1391 /* Disable digital (SPDIF) pins initially, but users can enable
1392 * them via a mixer switch. In the case of SPDIF-out, this initverb
1393 * payload also sets the generation to 0, output to be in "consumer"
1394 * PCM format, copyright asserted, no pre-emphasis and no validity
1397 {0x18, AC_VERB_SET_DIGI_CONVERT_1
, 0},
1399 /* Ensure mic1, mic2, line1 pin widgets take input from the
1400 * OUT1 sum bus when acting as an output.
1402 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0},
1403 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0},
1405 /* Start with output sum widgets muted and their output gains at min */
1406 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
1407 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
1409 /* Unmute retasking pin widget output buffers since the default
1410 * state appears to be output. As the pin mode is changed by the
1411 * user the pin mode control will take care of enabling the pin's
1412 * input/output buffers as needed.
1414 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1415 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1416 {0x13, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1418 /* Mute capture amp left and right */
1419 {0x12, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
1421 /* Set ADC connection select to match default mixer setting (mic1
1424 {0x12, AC_VERB_SET_CONNECT_SEL
, 0x00},
1426 /* Mute all inputs to mixer widget (even unconnected ones) */
1427 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)}, /* mic1 pin */
1428 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)}, /* mic2 pin */
1429 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)}, /* line1 pin */
1430 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)}, /* line2 pin */
1431 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)}, /* CD pin */
1432 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(5)}, /* Beep-gen pin */
1433 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(6)}, /* Line-out pin */
1434 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(7)}, /* HP-pin pin */
1441 /* initialize jack-sensing, too */
1442 static int cxt5047_hp_init(struct hda_codec
*codec
)
1444 conexant_init(codec
);
1445 cxt5047_hp_automute(codec
);
1451 CXT5047_LAPTOP
, /* Laptops w/o EAPD support */
1452 CXT5047_LAPTOP_HP
, /* Some HP laptops */
1453 CXT5047_LAPTOP_EAPD
, /* Laptops with EAPD support */
1454 #ifdef CONFIG_SND_DEBUG
1461 static const char * const cxt5047_models
[CXT5047_MODELS
] = {
1462 [CXT5047_LAPTOP
] = "laptop",
1463 [CXT5047_LAPTOP_HP
] = "laptop-hp",
1464 [CXT5047_LAPTOP_EAPD
] = "laptop-eapd",
1465 #ifdef CONFIG_SND_DEBUG
1466 [CXT5047_TEST
] = "test",
1468 [CXT5047_AUTO
] = "auto",
1471 static const struct snd_pci_quirk cxt5047_cfg_tbl
[] = {
1472 SND_PCI_QUIRK(0x103c, 0x30a5, "HP DV5200T/DV8000T", CXT5047_LAPTOP_HP
),
1473 SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x3000, "HP DV Series",
1475 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba P100", CXT5047_LAPTOP_EAPD
),
1479 static int patch_cxt5047(struct hda_codec
*codec
)
1481 struct conexant_spec
*spec
;
1484 board_config
= snd_hda_check_board_config(codec
, CXT5047_MODELS
,
1487 if (board_config
< 0)
1488 board_config
= CXT5047_AUTO
; /* model=auto as default */
1489 if (board_config
== CXT5047_AUTO
)
1490 return patch_conexant_auto(codec
);
1492 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
1496 codec
->pin_amp_workaround
= 1;
1498 spec
->multiout
.max_channels
= 2;
1499 spec
->multiout
.num_dacs
= ARRAY_SIZE(cxt5047_dac_nids
);
1500 spec
->multiout
.dac_nids
= cxt5047_dac_nids
;
1501 spec
->multiout
.dig_out_nid
= CXT5047_SPDIF_OUT
;
1502 spec
->num_adc_nids
= 1;
1503 spec
->adc_nids
= cxt5047_adc_nids
;
1504 spec
->capsrc_nids
= cxt5047_capsrc_nids
;
1505 spec
->num_mixers
= 1;
1506 spec
->mixers
[0] = cxt5047_base_mixers
;
1507 spec
->num_init_verbs
= 1;
1508 spec
->init_verbs
[0] = cxt5047_init_verbs
;
1509 spec
->spdif_route
= 0;
1510 spec
->num_channel_mode
= ARRAY_SIZE(cxt5047_modes
),
1511 spec
->channel_mode
= cxt5047_modes
,
1513 codec
->patch_ops
= conexant_patch_ops
;
1515 switch (board_config
) {
1516 case CXT5047_LAPTOP
:
1517 spec
->num_mixers
= 2;
1518 spec
->mixers
[1] = cxt5047_hp_spk_mixers
;
1519 codec
->patch_ops
.unsol_event
= cxt5047_hp_unsol_event
;
1521 case CXT5047_LAPTOP_HP
:
1522 spec
->num_mixers
= 2;
1523 spec
->mixers
[1] = cxt5047_hp_only_mixers
;
1524 codec
->patch_ops
.unsol_event
= cxt5047_hp_unsol_event
;
1525 codec
->patch_ops
.init
= cxt5047_hp_init
;
1527 case CXT5047_LAPTOP_EAPD
:
1528 spec
->input_mux
= &cxt5047_toshiba_capture_source
;
1529 spec
->num_mixers
= 2;
1530 spec
->mixers
[1] = cxt5047_hp_spk_mixers
;
1531 spec
->num_init_verbs
= 2;
1532 spec
->init_verbs
[1] = cxt5047_toshiba_init_verbs
;
1533 codec
->patch_ops
.unsol_event
= cxt5047_hp_unsol_event
;
1535 #ifdef CONFIG_SND_DEBUG
1537 spec
->input_mux
= &cxt5047_test_capture_source
;
1538 spec
->mixers
[0] = cxt5047_test_mixer
;
1539 spec
->init_verbs
[0] = cxt5047_test_init_verbs
;
1540 codec
->patch_ops
.unsol_event
= cxt5047_hp_unsol_event
;
1543 spec
->vmaster_nid
= 0x13;
1545 switch (codec
->subsystem_id
>> 16) {
1547 /* HP laptops have really bad sound over 0 dB on NID 0x10.
1548 * Fix max PCM level to 0 dB (originally it has 0x1e steps
1549 * with 0 dB offset 0x17)
1551 snd_hda_override_amp_caps(codec
, 0x10, HDA_INPUT
,
1552 (0x17 << AC_AMPCAP_OFFSET_SHIFT
) |
1553 (0x17 << AC_AMPCAP_NUM_STEPS_SHIFT
) |
1554 (0x05 << AC_AMPCAP_STEP_SIZE_SHIFT
) |
1555 (1 << AC_AMPCAP_MUTE_SHIFT
));
1562 /* Conexant 5051 specific */
1563 static const hda_nid_t cxt5051_dac_nids
[1] = { 0x10 };
1564 static const hda_nid_t cxt5051_adc_nids
[2] = { 0x14, 0x15 };
1566 static const struct hda_channel_mode cxt5051_modes
[1] = {
1570 static void cxt5051_update_speaker(struct hda_codec
*codec
)
1572 struct conexant_spec
*spec
= codec
->spec
;
1573 unsigned int pinctl
;
1575 pinctl
= (spec
->hp_present
&& spec
->cur_eapd
) ? PIN_HP
: 0;
1576 snd_hda_set_pin_ctl(codec
, 0x16, pinctl
);
1578 pinctl
= (!spec
->hp_present
&& spec
->cur_eapd
) ? PIN_OUT
: 0;
1579 snd_hda_set_pin_ctl(codec
, 0x1a, pinctl
);
1580 /* on ideapad there is an additional speaker (subwoofer) to mute */
1582 snd_hda_set_pin_ctl(codec
, 0x1b, pinctl
);
1585 /* turn on/off EAPD (+ mute HP) as a master switch */
1586 static int cxt5051_hp_master_sw_put(struct snd_kcontrol
*kcontrol
,
1587 struct snd_ctl_elem_value
*ucontrol
)
1589 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
1591 if (!cxt_eapd_put(kcontrol
, ucontrol
))
1593 cxt5051_update_speaker(codec
);
1597 /* toggle input of built-in and mic jack appropriately */
1598 static void cxt5051_portb_automic(struct hda_codec
*codec
)
1600 struct conexant_spec
*spec
= codec
->spec
;
1601 unsigned int present
;
1603 if (!(spec
->auto_mic
& AUTO_MIC_PORTB
))
1605 present
= snd_hda_jack_detect(codec
, 0x17);
1606 snd_hda_codec_write(codec
, 0x14, 0,
1607 AC_VERB_SET_CONNECT_SEL
,
1608 present
? 0x01 : 0x00);
1611 /* switch the current ADC according to the jack state */
1612 static void cxt5051_portc_automic(struct hda_codec
*codec
)
1614 struct conexant_spec
*spec
= codec
->spec
;
1615 unsigned int present
;
1618 if (!(spec
->auto_mic
& AUTO_MIC_PORTC
))
1620 present
= snd_hda_jack_detect(codec
, 0x18);
1622 spec
->cur_adc_idx
= 1;
1624 spec
->cur_adc_idx
= 0;
1625 new_adc
= spec
->adc_nids
[spec
->cur_adc_idx
];
1626 if (spec
->cur_adc
&& spec
->cur_adc
!= new_adc
) {
1627 /* stream is running, let's swap the current ADC */
1628 __snd_hda_codec_cleanup_stream(codec
, spec
->cur_adc
, 1);
1629 spec
->cur_adc
= new_adc
;
1630 snd_hda_codec_setup_stream(codec
, new_adc
,
1631 spec
->cur_adc_stream_tag
, 0,
1632 spec
->cur_adc_format
);
1636 /* mute internal speaker if HP is plugged */
1637 static void cxt5051_hp_automute(struct hda_codec
*codec
)
1639 struct conexant_spec
*spec
= codec
->spec
;
1641 spec
->hp_present
= snd_hda_jack_detect(codec
, 0x16);
1642 cxt5051_update_speaker(codec
);
1645 /* unsolicited event for HP jack sensing */
1646 static void cxt5051_hp_unsol_event(struct hda_codec
*codec
,
1649 switch (res
>> 26) {
1650 case CONEXANT_HP_EVENT
:
1651 cxt5051_hp_automute(codec
);
1653 case CXT5051_PORTB_EVENT
:
1654 cxt5051_portb_automic(codec
);
1656 case CXT5051_PORTC_EVENT
:
1657 cxt5051_portc_automic(codec
);
1662 static const struct snd_kcontrol_new cxt5051_playback_mixers
[] = {
1663 HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT
),
1665 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1666 .name
= "Master Playback Switch",
1667 .info
= cxt_eapd_info
,
1668 .get
= cxt_eapd_get
,
1669 .put
= cxt5051_hp_master_sw_put
,
1670 .private_value
= 0x1a,
1675 static const struct snd_kcontrol_new cxt5051_capture_mixers
[] = {
1676 HDA_CODEC_VOLUME("Internal Mic Volume", 0x14, 0x00, HDA_INPUT
),
1677 HDA_CODEC_MUTE("Internal Mic Switch", 0x14, 0x00, HDA_INPUT
),
1678 HDA_CODEC_VOLUME("Mic Volume", 0x14, 0x01, HDA_INPUT
),
1679 HDA_CODEC_MUTE("Mic Switch", 0x14, 0x01, HDA_INPUT
),
1680 HDA_CODEC_VOLUME("Dock Mic Volume", 0x15, 0x00, HDA_INPUT
),
1681 HDA_CODEC_MUTE("Dock Mic Switch", 0x15, 0x00, HDA_INPUT
),
1685 static const struct snd_kcontrol_new cxt5051_hp_mixers
[] = {
1686 HDA_CODEC_VOLUME("Internal Mic Volume", 0x14, 0x00, HDA_INPUT
),
1687 HDA_CODEC_MUTE("Internal Mic Switch", 0x14, 0x00, HDA_INPUT
),
1688 HDA_CODEC_VOLUME("Mic Volume", 0x15, 0x00, HDA_INPUT
),
1689 HDA_CODEC_MUTE("Mic Switch", 0x15, 0x00, HDA_INPUT
),
1693 static const struct snd_kcontrol_new cxt5051_hp_dv6736_mixers
[] = {
1694 HDA_CODEC_VOLUME("Capture Volume", 0x14, 0x00, HDA_INPUT
),
1695 HDA_CODEC_MUTE("Capture Switch", 0x14, 0x00, HDA_INPUT
),
1699 static const struct snd_kcontrol_new cxt5051_f700_mixers
[] = {
1700 HDA_CODEC_VOLUME("Capture Volume", 0x14, 0x01, HDA_INPUT
),
1701 HDA_CODEC_MUTE("Capture Switch", 0x14, 0x01, HDA_INPUT
),
1705 static const struct snd_kcontrol_new cxt5051_toshiba_mixers
[] = {
1706 HDA_CODEC_VOLUME("Internal Mic Volume", 0x14, 0x00, HDA_INPUT
),
1707 HDA_CODEC_MUTE("Internal Mic Switch", 0x14, 0x00, HDA_INPUT
),
1708 HDA_CODEC_VOLUME("Mic Volume", 0x14, 0x01, HDA_INPUT
),
1709 HDA_CODEC_MUTE("Mic Switch", 0x14, 0x01, HDA_INPUT
),
1713 static const struct hda_verb cxt5051_init_verbs
[] = {
1715 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0) | 0x03},
1716 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
1717 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0) | 0x03},
1718 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
1719 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
1720 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0) | 0x03},
1722 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1723 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x00},
1725 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
1726 {0x16, AC_VERB_SET_CONNECT_SEL
, 0x00},
1728 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1729 /* Record selector: Internal mic */
1730 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0) | 0x44},
1731 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1) | 0x44},
1732 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0) | 0x44},
1733 /* SPDIF route: PCM */
1734 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1735 {0x1c, AC_VERB_SET_CONNECT_SEL
, 0x0},
1737 {0x1a, AC_VERB_SET_EAPD_BTLENABLE
, 0x2}, /* default on */
1738 {0x16, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
|CONEXANT_HP_EVENT
},
1742 static const struct hda_verb cxt5051_hp_dv6736_init_verbs
[] = {
1744 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0) | 0x03},
1745 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
1746 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x0},
1747 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x0},
1749 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1750 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x00},
1752 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
1753 {0x16, AC_VERB_SET_CONNECT_SEL
, 0x00},
1755 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1756 /* Record selector: Internal mic */
1757 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1) | 0x44},
1758 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x1},
1759 /* SPDIF route: PCM */
1760 {0x1c, AC_VERB_SET_CONNECT_SEL
, 0x0},
1762 {0x1a, AC_VERB_SET_EAPD_BTLENABLE
, 0x2}, /* default on */
1763 {0x16, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
|CONEXANT_HP_EVENT
},
1767 static const struct hda_verb cxt5051_f700_init_verbs
[] = {
1769 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0) | 0x03},
1770 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
1771 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x0},
1772 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x0},
1774 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1775 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x00},
1777 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
1778 {0x16, AC_VERB_SET_CONNECT_SEL
, 0x00},
1780 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1781 /* Record selector: Internal mic */
1782 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1) | 0x44},
1783 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x1},
1784 /* SPDIF route: PCM */
1785 {0x1c, AC_VERB_SET_CONNECT_SEL
, 0x0},
1787 {0x1a, AC_VERB_SET_EAPD_BTLENABLE
, 0x2}, /* default on */
1788 {0x16, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
|CONEXANT_HP_EVENT
},
1792 static void cxt5051_init_mic_port(struct hda_codec
*codec
, hda_nid_t nid
,
1795 snd_hda_codec_write(codec
, nid
, 0,
1796 AC_VERB_SET_UNSOLICITED_ENABLE
,
1797 AC_USRSP_EN
| event
);
1800 static const struct hda_verb cxt5051_ideapad_init_verbs
[] = {
1802 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1803 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
1807 /* initialize jack-sensing, too */
1808 static int cxt5051_init(struct hda_codec
*codec
)
1810 struct conexant_spec
*spec
= codec
->spec
;
1812 conexant_init(codec
);
1814 if (spec
->auto_mic
& AUTO_MIC_PORTB
)
1815 cxt5051_init_mic_port(codec
, 0x17, CXT5051_PORTB_EVENT
);
1816 if (spec
->auto_mic
& AUTO_MIC_PORTC
)
1817 cxt5051_init_mic_port(codec
, 0x18, CXT5051_PORTC_EVENT
);
1819 if (codec
->patch_ops
.unsol_event
) {
1820 cxt5051_hp_automute(codec
);
1821 cxt5051_portb_automic(codec
);
1822 cxt5051_portc_automic(codec
);
1829 CXT5051_LAPTOP
, /* Laptops w/ EAPD support */
1830 CXT5051_HP
, /* no docking */
1831 CXT5051_HP_DV6736
, /* HP without mic switch */
1832 CXT5051_F700
, /* HP Compaq Presario F700 */
1833 CXT5051_TOSHIBA
, /* Toshiba M300 & co */
1834 CXT5051_IDEAPAD
, /* Lenovo IdeaPad Y430 */
1835 CXT5051_AUTO
, /* auto-parser */
1839 static const char *const cxt5051_models
[CXT5051_MODELS
] = {
1840 [CXT5051_LAPTOP
] = "laptop",
1841 [CXT5051_HP
] = "hp",
1842 [CXT5051_HP_DV6736
] = "hp-dv6736",
1843 [CXT5051_F700
] = "hp-700",
1844 [CXT5051_TOSHIBA
] = "toshiba",
1845 [CXT5051_IDEAPAD
] = "ideapad",
1846 [CXT5051_AUTO
] = "auto",
1849 static const struct snd_pci_quirk cxt5051_cfg_tbl
[] = {
1850 SND_PCI_QUIRK(0x103c, 0x30cf, "HP DV6736", CXT5051_HP_DV6736
),
1851 SND_PCI_QUIRK(0x103c, 0x360b, "Compaq Presario CQ60", CXT5051_HP
),
1852 SND_PCI_QUIRK(0x103c, 0x30ea, "Compaq Presario F700", CXT5051_F700
),
1853 SND_PCI_QUIRK(0x1179, 0xff50, "Toshiba M30x", CXT5051_TOSHIBA
),
1854 SND_PCI_QUIRK(0x14f1, 0x0101, "Conexant Reference board",
1856 SND_PCI_QUIRK(0x14f1, 0x5051, "HP Spartan 1.1", CXT5051_HP
),
1857 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo IdeaPad", CXT5051_IDEAPAD
),
1861 static int patch_cxt5051(struct hda_codec
*codec
)
1863 struct conexant_spec
*spec
;
1866 board_config
= snd_hda_check_board_config(codec
, CXT5051_MODELS
,
1869 if (board_config
< 0)
1870 board_config
= CXT5051_AUTO
; /* model=auto as default */
1871 if (board_config
== CXT5051_AUTO
)
1872 return patch_conexant_auto(codec
);
1874 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
1878 codec
->pin_amp_workaround
= 1;
1880 codec
->patch_ops
= conexant_patch_ops
;
1881 codec
->patch_ops
.init
= cxt5051_init
;
1883 spec
->multiout
.max_channels
= 2;
1884 spec
->multiout
.num_dacs
= ARRAY_SIZE(cxt5051_dac_nids
);
1885 spec
->multiout
.dac_nids
= cxt5051_dac_nids
;
1886 spec
->multiout
.dig_out_nid
= CXT5051_SPDIF_OUT
;
1887 spec
->num_adc_nids
= 1; /* not 2; via auto-mic switch */
1888 spec
->adc_nids
= cxt5051_adc_nids
;
1889 spec
->num_mixers
= 2;
1890 spec
->mixers
[0] = cxt5051_capture_mixers
;
1891 spec
->mixers
[1] = cxt5051_playback_mixers
;
1892 spec
->num_init_verbs
= 1;
1893 spec
->init_verbs
[0] = cxt5051_init_verbs
;
1894 spec
->spdif_route
= 0;
1895 spec
->num_channel_mode
= ARRAY_SIZE(cxt5051_modes
);
1896 spec
->channel_mode
= cxt5051_modes
;
1898 spec
->cur_adc_idx
= 0;
1900 set_beep_amp(spec
, 0x13, 0, HDA_OUTPUT
);
1902 codec
->patch_ops
.unsol_event
= cxt5051_hp_unsol_event
;
1904 spec
->auto_mic
= AUTO_MIC_PORTB
| AUTO_MIC_PORTC
;
1905 switch (board_config
) {
1907 spec
->mixers
[0] = cxt5051_hp_mixers
;
1909 case CXT5051_HP_DV6736
:
1910 spec
->init_verbs
[0] = cxt5051_hp_dv6736_init_verbs
;
1911 spec
->mixers
[0] = cxt5051_hp_dv6736_mixers
;
1915 spec
->init_verbs
[0] = cxt5051_f700_init_verbs
;
1916 spec
->mixers
[0] = cxt5051_f700_mixers
;
1919 case CXT5051_TOSHIBA
:
1920 spec
->mixers
[0] = cxt5051_toshiba_mixers
;
1921 spec
->auto_mic
= AUTO_MIC_PORTB
;
1923 case CXT5051_IDEAPAD
:
1924 spec
->init_verbs
[spec
->num_init_verbs
++] =
1925 cxt5051_ideapad_init_verbs
;
1931 snd_hda_attach_beep_device(codec
, get_amp_nid_(spec
->beep_amp
));
1936 /* Conexant 5066 specific */
1938 static const hda_nid_t cxt5066_dac_nids
[1] = { 0x10 };
1939 static const hda_nid_t cxt5066_adc_nids
[3] = { 0x14, 0x15, 0x16 };
1940 static const hda_nid_t cxt5066_capsrc_nids
[1] = { 0x17 };
1941 static const hda_nid_t cxt5066_digout_pin_nids
[2] = { 0x20, 0x22 };
1943 /* OLPC's microphone port is DC coupled for use with external sensors,
1944 * therefore we use a 50% mic bias in order to center the input signal with
1945 * the DC input range of the codec. */
1946 #define CXT5066_OLPC_EXT_MIC_BIAS PIN_VREF50
1948 static const struct hda_channel_mode cxt5066_modes
[1] = {
1952 #define HP_PRESENT_PORT_A (1 << 0)
1953 #define HP_PRESENT_PORT_D (1 << 1)
1954 #define hp_port_a_present(spec) ((spec)->hp_present & HP_PRESENT_PORT_A)
1955 #define hp_port_d_present(spec) ((spec)->hp_present & HP_PRESENT_PORT_D)
1957 static void cxt5066_update_speaker(struct hda_codec
*codec
)
1959 struct conexant_spec
*spec
= codec
->spec
;
1960 unsigned int pinctl
;
1962 snd_printdd("CXT5066: update speaker, hp_present=%d, cur_eapd=%d\n",
1963 spec
->hp_present
, spec
->cur_eapd
);
1966 pinctl
= (hp_port_a_present(spec
) && spec
->cur_eapd
) ? PIN_HP
: 0;
1967 snd_hda_set_pin_ctl(codec
, 0x19, pinctl
);
1969 /* Port D (HP/LO) */
1970 pinctl
= spec
->cur_eapd
? spec
->port_d_mode
: 0;
1971 if (spec
->dell_automute
|| spec
->thinkpad
) {
1972 /* Mute if Port A is connected */
1973 if (hp_port_a_present(spec
))
1976 /* Thinkpad/Dell doesn't give pin-D status */
1977 if (!hp_port_d_present(spec
))
1980 snd_hda_set_pin_ctl(codec
, 0x1c, pinctl
);
1983 pinctl
= (!spec
->hp_present
&& spec
->cur_eapd
) ? PIN_OUT
: 0;
1984 snd_hda_set_pin_ctl(codec
, 0x1f, pinctl
);
1987 /* turn on/off EAPD (+ mute HP) as a master switch */
1988 static int cxt5066_hp_master_sw_put(struct snd_kcontrol
*kcontrol
,
1989 struct snd_ctl_elem_value
*ucontrol
)
1991 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
1993 if (!cxt_eapd_put(kcontrol
, ucontrol
))
1996 cxt5066_update_speaker(codec
);
2000 static const struct hda_input_mux cxt5066_olpc_dc_bias
= {
2004 { "50%", PIN_VREF50
},
2005 { "80%", PIN_VREF80
},
2009 static int cxt5066_set_olpc_dc_bias(struct hda_codec
*codec
)
2011 struct conexant_spec
*spec
= codec
->spec
;
2012 /* Even though port F is the DC input, the bias is controlled on port B.
2013 * we also leave that port as an active input (but unselected) in DC mode
2014 * just in case that is necessary to make the bias setting take effect. */
2015 return snd_hda_set_pin_ctl_cache(codec
, 0x1a,
2016 cxt5066_olpc_dc_bias
.items
[spec
->dc_input_bias
].index
);
2019 /* OLPC defers mic widget control until when capture is started because the
2020 * microphone LED comes on as soon as these settings are put in place. if we
2021 * did this before recording, it would give the false indication that recording
2022 * is happening when it is not. */
2023 static void cxt5066_olpc_select_mic(struct hda_codec
*codec
)
2025 struct conexant_spec
*spec
= codec
->spec
;
2026 if (!spec
->recording
)
2029 if (spec
->dc_enable
) {
2030 /* in DC mode we ignore presence detection and just use the jack
2031 * through our special DC port */
2032 const struct hda_verb enable_dc_mode
[] = {
2033 /* disble internal mic, port C */
2034 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
2036 /* enable DC capture, port F */
2037 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2041 snd_hda_sequence_write(codec
, enable_dc_mode
);
2042 /* port B input disabled (and bias set) through the following call */
2043 cxt5066_set_olpc_dc_bias(codec
);
2047 /* disable DC (port F) */
2048 snd_hda_set_pin_ctl(codec
, 0x1e, 0);
2050 /* external mic, port B */
2051 snd_hda_set_pin_ctl(codec
, 0x1a,
2052 spec
->ext_mic_present
? CXT5066_OLPC_EXT_MIC_BIAS
: 0);
2054 /* internal mic, port C */
2055 snd_hda_set_pin_ctl(codec
, 0x1b,
2056 spec
->ext_mic_present
? 0 : PIN_VREF80
);
2059 /* toggle input of built-in and mic jack appropriately */
2060 static void cxt5066_olpc_automic(struct hda_codec
*codec
)
2062 struct conexant_spec
*spec
= codec
->spec
;
2063 unsigned int present
;
2065 if (spec
->dc_enable
) /* don't do presence detection in DC mode */
2068 present
= snd_hda_codec_read(codec
, 0x1a, 0,
2069 AC_VERB_GET_PIN_SENSE
, 0) & 0x80000000;
2071 snd_printdd("CXT5066: external microphone detected\n");
2073 snd_printdd("CXT5066: external microphone absent\n");
2075 snd_hda_codec_write(codec
, 0x17, 0, AC_VERB_SET_CONNECT_SEL
,
2077 spec
->ext_mic_present
= !!present
;
2079 cxt5066_olpc_select_mic(codec
);
2082 /* toggle input of built-in digital mic and mic jack appropriately */
2083 static void cxt5066_vostro_automic(struct hda_codec
*codec
)
2085 unsigned int present
;
2087 struct hda_verb ext_mic_present
[] = {
2088 /* enable external mic, port B */
2089 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
2091 /* switch to external mic input */
2092 {0x17, AC_VERB_SET_CONNECT_SEL
, 0},
2093 {0x14, AC_VERB_SET_CONNECT_SEL
, 0},
2095 /* disable internal digital mic */
2096 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
2099 static const struct hda_verb ext_mic_absent
[] = {
2100 /* enable internal mic, port C */
2101 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2103 /* switch to internal mic input */
2104 {0x14, AC_VERB_SET_CONNECT_SEL
, 2},
2106 /* disable external mic, port B */
2107 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
2111 present
= snd_hda_jack_detect(codec
, 0x1a);
2113 snd_printdd("CXT5066: external microphone detected\n");
2114 snd_hda_sequence_write(codec
, ext_mic_present
);
2116 snd_printdd("CXT5066: external microphone absent\n");
2117 snd_hda_sequence_write(codec
, ext_mic_absent
);
2121 /* toggle input of built-in digital mic and mic jack appropriately */
2122 static void cxt5066_ideapad_automic(struct hda_codec
*codec
)
2124 unsigned int present
;
2126 struct hda_verb ext_mic_present
[] = {
2127 {0x14, AC_VERB_SET_CONNECT_SEL
, 0},
2128 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
2129 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
2132 static const struct hda_verb ext_mic_absent
[] = {
2133 {0x14, AC_VERB_SET_CONNECT_SEL
, 2},
2134 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2135 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
2139 present
= snd_hda_jack_detect(codec
, 0x1b);
2141 snd_printdd("CXT5066: external microphone detected\n");
2142 snd_hda_sequence_write(codec
, ext_mic_present
);
2144 snd_printdd("CXT5066: external microphone absent\n");
2145 snd_hda_sequence_write(codec
, ext_mic_absent
);
2150 /* toggle input of built-in digital mic and mic jack appropriately */
2151 static void cxt5066_asus_automic(struct hda_codec
*codec
)
2153 unsigned int present
;
2155 present
= snd_hda_jack_detect(codec
, 0x1b);
2156 snd_printdd("CXT5066: external microphone present=%d\n", present
);
2157 snd_hda_codec_write(codec
, 0x17, 0, AC_VERB_SET_CONNECT_SEL
,
2162 /* toggle input of built-in digital mic and mic jack appropriately */
2163 static void cxt5066_hp_laptop_automic(struct hda_codec
*codec
)
2165 unsigned int present
;
2167 present
= snd_hda_jack_detect(codec
, 0x1b);
2168 snd_printdd("CXT5066: external microphone present=%d\n", present
);
2169 snd_hda_codec_write(codec
, 0x17, 0, AC_VERB_SET_CONNECT_SEL
,
2174 /* toggle input of built-in digital mic and mic jack appropriately
2175 order is: external mic -> dock mic -> interal mic */
2176 static void cxt5066_thinkpad_automic(struct hda_codec
*codec
)
2178 unsigned int ext_present
, dock_present
;
2180 static const struct hda_verb ext_mic_present
[] = {
2181 {0x14, AC_VERB_SET_CONNECT_SEL
, 0},
2182 {0x17, AC_VERB_SET_CONNECT_SEL
, 1},
2183 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
2184 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
2185 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
2188 static const struct hda_verb dock_mic_present
[] = {
2189 {0x14, AC_VERB_SET_CONNECT_SEL
, 0},
2190 {0x17, AC_VERB_SET_CONNECT_SEL
, 0},
2191 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
2192 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
2193 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
2196 static const struct hda_verb ext_mic_absent
[] = {
2197 {0x14, AC_VERB_SET_CONNECT_SEL
, 2},
2198 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2199 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
2200 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
2204 ext_present
= snd_hda_jack_detect(codec
, 0x1b);
2205 dock_present
= snd_hda_jack_detect(codec
, 0x1a);
2207 snd_printdd("CXT5066: external microphone detected\n");
2208 snd_hda_sequence_write(codec
, ext_mic_present
);
2209 } else if (dock_present
) {
2210 snd_printdd("CXT5066: dock microphone detected\n");
2211 snd_hda_sequence_write(codec
, dock_mic_present
);
2213 snd_printdd("CXT5066: external microphone absent\n");
2214 snd_hda_sequence_write(codec
, ext_mic_absent
);
2218 /* mute internal speaker if HP is plugged */
2219 static void cxt5066_hp_automute(struct hda_codec
*codec
)
2221 struct conexant_spec
*spec
= codec
->spec
;
2222 unsigned int portA
, portD
;
2225 portA
= snd_hda_jack_detect(codec
, 0x19);
2228 portD
= snd_hda_jack_detect(codec
, 0x1c);
2230 spec
->hp_present
= portA
? HP_PRESENT_PORT_A
: 0;
2231 spec
->hp_present
|= portD
? HP_PRESENT_PORT_D
: 0;
2232 snd_printdd("CXT5066: hp automute portA=%x portD=%x present=%d\n",
2233 portA
, portD
, spec
->hp_present
);
2234 cxt5066_update_speaker(codec
);
2237 /* Dispatch the right mic autoswitch function */
2238 static void cxt5066_automic(struct hda_codec
*codec
)
2240 struct conexant_spec
*spec
= codec
->spec
;
2242 if (spec
->dell_vostro
)
2243 cxt5066_vostro_automic(codec
);
2244 else if (spec
->ideapad
)
2245 cxt5066_ideapad_automic(codec
);
2246 else if (spec
->thinkpad
)
2247 cxt5066_thinkpad_automic(codec
);
2248 else if (spec
->hp_laptop
)
2249 cxt5066_hp_laptop_automic(codec
);
2250 else if (spec
->asus
)
2251 cxt5066_asus_automic(codec
);
2254 /* unsolicited event for jack sensing */
2255 static void cxt5066_olpc_unsol_event(struct hda_codec
*codec
, unsigned int res
)
2257 struct conexant_spec
*spec
= codec
->spec
;
2258 snd_printdd("CXT5066: unsol event %x (%x)\n", res
, res
>> 26);
2259 switch (res
>> 26) {
2260 case CONEXANT_HP_EVENT
:
2261 cxt5066_hp_automute(codec
);
2263 case CONEXANT_MIC_EVENT
:
2264 /* ignore mic events in DC mode; we're always using the jack */
2265 if (!spec
->dc_enable
)
2266 cxt5066_olpc_automic(codec
);
2271 /* unsolicited event for jack sensing */
2272 static void cxt5066_unsol_event(struct hda_codec
*codec
, unsigned int res
)
2274 snd_printdd("CXT5066: unsol event %x (%x)\n", res
, res
>> 26);
2275 switch (res
>> 26) {
2276 case CONEXANT_HP_EVENT
:
2277 cxt5066_hp_automute(codec
);
2279 case CONEXANT_MIC_EVENT
:
2280 cxt5066_automic(codec
);
2286 static const struct hda_input_mux cxt5066_analog_mic_boost
= {
2297 static void cxt5066_set_mic_boost(struct hda_codec
*codec
)
2299 struct conexant_spec
*spec
= codec
->spec
;
2300 snd_hda_codec_write_cache(codec
, 0x17, 0,
2301 AC_VERB_SET_AMP_GAIN_MUTE
,
2302 AC_AMP_SET_RIGHT
| AC_AMP_SET_LEFT
| AC_AMP_SET_OUTPUT
|
2303 cxt5066_analog_mic_boost
.items
[spec
->mic_boost
].index
);
2304 if (spec
->ideapad
|| spec
->thinkpad
) {
2305 /* adjust the internal mic as well...it is not through 0x17 */
2306 snd_hda_codec_write_cache(codec
, 0x23, 0,
2307 AC_VERB_SET_AMP_GAIN_MUTE
,
2308 AC_AMP_SET_RIGHT
| AC_AMP_SET_LEFT
| AC_AMP_SET_INPUT
|
2309 cxt5066_analog_mic_boost
.
2310 items
[spec
->mic_boost
].index
);
2314 static int cxt5066_mic_boost_mux_enum_info(struct snd_kcontrol
*kcontrol
,
2315 struct snd_ctl_elem_info
*uinfo
)
2317 return snd_hda_input_mux_info(&cxt5066_analog_mic_boost
, uinfo
);
2320 static int cxt5066_mic_boost_mux_enum_get(struct snd_kcontrol
*kcontrol
,
2321 struct snd_ctl_elem_value
*ucontrol
)
2323 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2324 struct conexant_spec
*spec
= codec
->spec
;
2325 ucontrol
->value
.enumerated
.item
[0] = spec
->mic_boost
;
2329 static int cxt5066_mic_boost_mux_enum_put(struct snd_kcontrol
*kcontrol
,
2330 struct snd_ctl_elem_value
*ucontrol
)
2332 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2333 struct conexant_spec
*spec
= codec
->spec
;
2334 const struct hda_input_mux
*imux
= &cxt5066_analog_mic_boost
;
2336 idx
= ucontrol
->value
.enumerated
.item
[0];
2337 if (idx
>= imux
->num_items
)
2338 idx
= imux
->num_items
- 1;
2340 spec
->mic_boost
= idx
;
2341 if (!spec
->dc_enable
)
2342 cxt5066_set_mic_boost(codec
);
2346 static void cxt5066_enable_dc(struct hda_codec
*codec
)
2348 const struct hda_verb enable_dc_mode
[] = {
2350 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2352 /* switch to DC input */
2353 {0x17, AC_VERB_SET_CONNECT_SEL
, 3},
2357 /* configure as input source */
2358 snd_hda_sequence_write(codec
, enable_dc_mode
);
2359 cxt5066_olpc_select_mic(codec
); /* also sets configured bias */
2362 static void cxt5066_disable_dc(struct hda_codec
*codec
)
2364 /* reconfigure input source */
2365 cxt5066_set_mic_boost(codec
);
2366 /* automic also selects the right mic if we're recording */
2367 cxt5066_olpc_automic(codec
);
2370 static int cxt5066_olpc_dc_get(struct snd_kcontrol
*kcontrol
,
2371 struct snd_ctl_elem_value
*ucontrol
)
2373 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2374 struct conexant_spec
*spec
= codec
->spec
;
2375 ucontrol
->value
.integer
.value
[0] = spec
->dc_enable
;
2379 static int cxt5066_olpc_dc_put(struct snd_kcontrol
*kcontrol
,
2380 struct snd_ctl_elem_value
*ucontrol
)
2382 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2383 struct conexant_spec
*spec
= codec
->spec
;
2384 int dc_enable
= !!ucontrol
->value
.integer
.value
[0];
2386 if (dc_enable
== spec
->dc_enable
)
2389 spec
->dc_enable
= dc_enable
;
2391 cxt5066_enable_dc(codec
);
2393 cxt5066_disable_dc(codec
);
2398 static int cxt5066_olpc_dc_bias_enum_info(struct snd_kcontrol
*kcontrol
,
2399 struct snd_ctl_elem_info
*uinfo
)
2401 return snd_hda_input_mux_info(&cxt5066_olpc_dc_bias
, uinfo
);
2404 static int cxt5066_olpc_dc_bias_enum_get(struct snd_kcontrol
*kcontrol
,
2405 struct snd_ctl_elem_value
*ucontrol
)
2407 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2408 struct conexant_spec
*spec
= codec
->spec
;
2409 ucontrol
->value
.enumerated
.item
[0] = spec
->dc_input_bias
;
2413 static int cxt5066_olpc_dc_bias_enum_put(struct snd_kcontrol
*kcontrol
,
2414 struct snd_ctl_elem_value
*ucontrol
)
2416 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2417 struct conexant_spec
*spec
= codec
->spec
;
2418 const struct hda_input_mux
*imux
= &cxt5066_analog_mic_boost
;
2421 idx
= ucontrol
->value
.enumerated
.item
[0];
2422 if (idx
>= imux
->num_items
)
2423 idx
= imux
->num_items
- 1;
2425 spec
->dc_input_bias
= idx
;
2426 if (spec
->dc_enable
)
2427 cxt5066_set_olpc_dc_bias(codec
);
2431 static void cxt5066_olpc_capture_prepare(struct hda_codec
*codec
)
2433 struct conexant_spec
*spec
= codec
->spec
;
2434 /* mark as recording and configure the microphone widget so that the
2435 * recording LED comes on. */
2436 spec
->recording
= 1;
2437 cxt5066_olpc_select_mic(codec
);
2440 static void cxt5066_olpc_capture_cleanup(struct hda_codec
*codec
)
2442 struct conexant_spec
*spec
= codec
->spec
;
2443 const struct hda_verb disable_mics
[] = {
2444 /* disable external mic, port B */
2445 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
2447 /* disble internal mic, port C */
2448 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
2450 /* disable DC capture, port F */
2451 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
2455 snd_hda_sequence_write(codec
, disable_mics
);
2456 spec
->recording
= 0;
2459 static void conexant_check_dig_outs(struct hda_codec
*codec
,
2460 const hda_nid_t
*dig_pins
,
2463 struct conexant_spec
*spec
= codec
->spec
;
2464 hda_nid_t
*nid_loc
= &spec
->multiout
.dig_out_nid
;
2467 for (i
= 0; i
< num_pins
; i
++, dig_pins
++) {
2468 unsigned int cfg
= snd_hda_codec_get_pincfg(codec
, *dig_pins
);
2469 if (get_defcfg_connect(cfg
) == AC_JACK_PORT_NONE
)
2471 if (snd_hda_get_connections(codec
, *dig_pins
, nid_loc
, 1) != 1)
2476 static const struct hda_input_mux cxt5066_capture_source
= {
2486 static const struct hda_bind_ctls cxt5066_bind_capture_vol_others
= {
2487 .ops
= &snd_hda_bind_vol
,
2489 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_INPUT
),
2490 HDA_COMPOSE_AMP_VAL(0x14, 3, 2, HDA_INPUT
),
2495 static const struct hda_bind_ctls cxt5066_bind_capture_sw_others
= {
2496 .ops
= &snd_hda_bind_sw
,
2498 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_INPUT
),
2499 HDA_COMPOSE_AMP_VAL(0x14, 3, 2, HDA_INPUT
),
2504 static const struct snd_kcontrol_new cxt5066_mixer_master
[] = {
2505 HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT
),
2509 static const struct snd_kcontrol_new cxt5066_mixer_master_olpc
[] = {
2511 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2512 .name
= "Master Playback Volume",
2513 .access
= SNDRV_CTL_ELEM_ACCESS_READWRITE
|
2514 SNDRV_CTL_ELEM_ACCESS_TLV_READ
|
2515 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK
,
2516 .subdevice
= HDA_SUBDEV_AMP_FLAG
,
2517 .info
= snd_hda_mixer_amp_volume_info
,
2518 .get
= snd_hda_mixer_amp_volume_get
,
2519 .put
= snd_hda_mixer_amp_volume_put
,
2520 .tlv
= { .c
= snd_hda_mixer_amp_tlv
},
2521 /* offset by 28 volume steps to limit minimum gain to -46dB */
2523 HDA_COMPOSE_AMP_VAL_OFS(0x10, 3, 0, HDA_OUTPUT
, 28),
2528 static const struct snd_kcontrol_new cxt5066_mixer_olpc_dc
[] = {
2530 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2531 .name
= "DC Mode Enable Switch",
2532 .info
= snd_ctl_boolean_mono_info
,
2533 .get
= cxt5066_olpc_dc_get
,
2534 .put
= cxt5066_olpc_dc_put
,
2537 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2538 .name
= "DC Input Bias Enum",
2539 .info
= cxt5066_olpc_dc_bias_enum_info
,
2540 .get
= cxt5066_olpc_dc_bias_enum_get
,
2541 .put
= cxt5066_olpc_dc_bias_enum_put
,
2546 static const struct snd_kcontrol_new cxt5066_mixers
[] = {
2548 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2549 .name
= "Master Playback Switch",
2550 .info
= cxt_eapd_info
,
2551 .get
= cxt_eapd_get
,
2552 .put
= cxt5066_hp_master_sw_put
,
2553 .private_value
= 0x1d,
2557 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2558 .name
= "Analog Mic Boost Capture Enum",
2559 .info
= cxt5066_mic_boost_mux_enum_info
,
2560 .get
= cxt5066_mic_boost_mux_enum_get
,
2561 .put
= cxt5066_mic_boost_mux_enum_put
,
2564 HDA_BIND_VOL("Capture Volume", &cxt5066_bind_capture_vol_others
),
2565 HDA_BIND_SW("Capture Switch", &cxt5066_bind_capture_sw_others
),
2569 static const struct snd_kcontrol_new cxt5066_vostro_mixers
[] = {
2571 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2572 .name
= "Internal Mic Boost Capture Enum",
2573 .info
= cxt5066_mic_boost_mux_enum_info
,
2574 .get
= cxt5066_mic_boost_mux_enum_get
,
2575 .put
= cxt5066_mic_boost_mux_enum_put
,
2576 .private_value
= 0x23 | 0x100,
2581 static const struct hda_verb cxt5066_init_verbs
[] = {
2582 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
}, /* Port B */
2583 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
}, /* Port C */
2584 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
}, /* Port F */
2585 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
}, /* Port E */
2588 {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2589 {0x1f, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* DAC1 */
2592 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
2593 {0x19, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* DAC1 */
2595 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
2596 {0x1c, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* DAC1 */
2599 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2601 /* Node 14 connections: 0x17 0x18 0x23 0x24 0x27 */
2602 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0) | 0x50},
2603 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
2604 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2) | 0x50},
2605 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
2606 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
2608 /* no digital microphone support yet */
2609 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
2611 /* Audio input selector */
2612 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
| 0x3},
2614 /* SPDIF route: PCM */
2615 {0x20, AC_VERB_SET_CONNECT_SEL
, 0x0},
2616 {0x22, AC_VERB_SET_CONNECT_SEL
, 0x0},
2618 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2619 {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2622 {0x1d, AC_VERB_SET_EAPD_BTLENABLE
, 0x2}, /* default on */
2624 /* not handling these yet */
2625 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE
, 0},
2626 {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE
, 0},
2627 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, 0},
2628 {0x1c, AC_VERB_SET_UNSOLICITED_ENABLE
, 0},
2629 {0x1d, AC_VERB_SET_UNSOLICITED_ENABLE
, 0},
2630 {0x1e, AC_VERB_SET_UNSOLICITED_ENABLE
, 0},
2631 {0x20, AC_VERB_SET_UNSOLICITED_ENABLE
, 0},
2632 {0x22, AC_VERB_SET_UNSOLICITED_ENABLE
, 0},
2636 static const struct hda_verb cxt5066_init_verbs_olpc
[] = {
2637 /* Port A: headphones */
2638 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
2639 {0x19, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* DAC1 */
2641 /* Port B: external microphone */
2642 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
2644 /* Port C: internal microphone */
2645 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
2647 /* Port D: unused */
2648 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
2650 /* Port E: unused, but has primary EAPD */
2651 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
2652 {0x1d, AC_VERB_SET_EAPD_BTLENABLE
, 0x2}, /* default on */
2654 /* Port F: external DC input through microphone port */
2655 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
2657 /* Port G: internal speakers */
2658 {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2659 {0x1f, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* DAC1 */
2662 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2665 {0x11, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2667 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0) | 0x50},
2668 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
2669 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
2670 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
2671 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
2672 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
2673 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
2674 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
2675 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
2676 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
2677 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
2678 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
2680 /* Disable digital microphone port */
2681 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
2683 /* Audio input selectors */
2684 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
| 0x3},
2685 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2688 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
2689 {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
2691 /* enable unsolicited events for Port A and B */
2692 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| CONEXANT_HP_EVENT
},
2693 {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| CONEXANT_MIC_EVENT
},
2697 static const struct hda_verb cxt5066_init_verbs_vostro
[] = {
2698 /* Port A: headphones */
2699 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
2700 {0x19, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* DAC1 */
2702 /* Port B: external microphone */
2703 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
2705 /* Port C: unused */
2706 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
2708 /* Port D: unused */
2709 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
2711 /* Port E: unused, but has primary EAPD */
2712 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
2713 {0x1d, AC_VERB_SET_EAPD_BTLENABLE
, 0x2}, /* default on */
2715 /* Port F: unused */
2716 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
2718 /* Port G: internal speakers */
2719 {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2720 {0x1f, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* DAC1 */
2723 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2726 {0x11, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2728 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
2729 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
2730 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
2731 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
2732 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
2733 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
2734 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
2735 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
2736 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
2737 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
2738 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
2739 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
2741 /* Digital microphone port */
2742 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2744 /* Audio input selectors */
2745 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
| 0x3},
2746 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2749 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
2750 {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
2752 /* enable unsolicited events for Port A and B */
2753 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| CONEXANT_HP_EVENT
},
2754 {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| CONEXANT_MIC_EVENT
},
2758 static const struct hda_verb cxt5066_init_verbs_ideapad
[] = {
2759 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
}, /* Port B */
2760 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
}, /* Port C */
2761 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
}, /* Port F */
2762 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
}, /* Port E */
2765 {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2766 {0x1f, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* DAC1 */
2769 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
2770 {0x19, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* DAC1 */
2772 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
2773 {0x1c, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* DAC1 */
2776 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2778 /* Node 14 connections: 0x17 0x18 0x23 0x24 0x27 */
2779 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0) | 0x50},
2780 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
2781 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2) | 0x50},
2782 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
2783 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
2784 {0x14, AC_VERB_SET_CONNECT_SEL
, 2}, /* default to internal mic */
2786 /* Audio input selector */
2787 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
| 0x2},
2788 {0x17, AC_VERB_SET_CONNECT_SEL
, 1}, /* route ext mic */
2790 /* SPDIF route: PCM */
2791 {0x20, AC_VERB_SET_CONNECT_SEL
, 0x0},
2792 {0x22, AC_VERB_SET_CONNECT_SEL
, 0x0},
2794 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2795 {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2797 /* internal microphone */
2798 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
}, /* enable internal mic */
2801 {0x1d, AC_VERB_SET_EAPD_BTLENABLE
, 0x2}, /* default on */
2803 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| CONEXANT_HP_EVENT
},
2804 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| CONEXANT_MIC_EVENT
},
2808 static const struct hda_verb cxt5066_init_verbs_thinkpad
[] = {
2809 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
}, /* Port F */
2810 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
}, /* Port E */
2812 /* Port G: internal speakers */
2813 {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2814 {0x1f, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* DAC1 */
2816 /* Port A: HP, Amp */
2817 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
2818 {0x19, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* DAC1 */
2820 /* Port B: Mic Dock */
2821 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
2824 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
2826 /* Port D: HP Dock, Amp */
2827 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
2828 {0x1c, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* DAC1 */
2831 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2833 /* Node 14 connections: 0x17 0x18 0x23 0x24 0x27 */
2834 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0) | 0x50},
2835 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
2836 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2) | 0x50},
2837 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
2838 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
2839 {0x14, AC_VERB_SET_CONNECT_SEL
, 2}, /* default to internal mic */
2841 /* Audio input selector */
2842 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
| 0x2},
2843 {0x17, AC_VERB_SET_CONNECT_SEL
, 1}, /* route ext mic */
2845 /* SPDIF route: PCM */
2846 {0x20, AC_VERB_SET_CONNECT_SEL
, 0x0},
2847 {0x22, AC_VERB_SET_CONNECT_SEL
, 0x0},
2849 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2850 {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2852 /* internal microphone */
2853 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
}, /* enable internal mic */
2856 {0x1d, AC_VERB_SET_EAPD_BTLENABLE
, 0x2}, /* default on */
2858 /* enable unsolicited events for Port A, B, C and D */
2859 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| CONEXANT_HP_EVENT
},
2860 {0x1c, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| CONEXANT_HP_EVENT
},
2861 {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| CONEXANT_MIC_EVENT
},
2862 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| CONEXANT_MIC_EVENT
},
2866 static const struct hda_verb cxt5066_init_verbs_portd_lo
[] = {
2867 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2872 static const struct hda_verb cxt5066_init_verbs_hp_laptop
[] = {
2873 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x0},
2874 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| CONEXANT_HP_EVENT
},
2875 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| CONEXANT_MIC_EVENT
},
2879 /* initialize jack-sensing, too */
2880 static int cxt5066_init(struct hda_codec
*codec
)
2882 snd_printdd("CXT5066: init\n");
2883 conexant_init(codec
);
2884 if (codec
->patch_ops
.unsol_event
) {
2885 cxt5066_hp_automute(codec
);
2886 cxt5066_automic(codec
);
2888 cxt5066_set_mic_boost(codec
);
2892 static int cxt5066_olpc_init(struct hda_codec
*codec
)
2894 struct conexant_spec
*spec
= codec
->spec
;
2895 snd_printdd("CXT5066: init\n");
2896 conexant_init(codec
);
2897 cxt5066_hp_automute(codec
);
2898 if (!spec
->dc_enable
) {
2899 cxt5066_set_mic_boost(codec
);
2900 cxt5066_olpc_automic(codec
);
2902 cxt5066_enable_dc(codec
);
2908 CXT5066_LAPTOP
, /* Laptops w/ EAPD support */
2909 CXT5066_DELL_LAPTOP
, /* Dell Laptop */
2910 CXT5066_OLPC_XO_1_5
, /* OLPC XO 1.5 */
2911 CXT5066_DELL_VOSTRO
, /* Dell Vostro 1015i */
2912 CXT5066_IDEAPAD
, /* Lenovo IdeaPad U150 */
2913 CXT5066_THINKPAD
, /* Lenovo ThinkPad T410s, others? */
2914 CXT5066_ASUS
, /* Asus K52JU, Lenovo G560 - Int mic at 0x1a and Ext mic at 0x1b */
2915 CXT5066_HP_LAPTOP
, /* HP Laptop */
2916 CXT5066_AUTO
, /* BIOS auto-parser */
2920 static const char * const cxt5066_models
[CXT5066_MODELS
] = {
2921 [CXT5066_LAPTOP
] = "laptop",
2922 [CXT5066_DELL_LAPTOP
] = "dell-laptop",
2923 [CXT5066_OLPC_XO_1_5
] = "olpc-xo-1_5",
2924 [CXT5066_DELL_VOSTRO
] = "dell-vostro",
2925 [CXT5066_IDEAPAD
] = "ideapad",
2926 [CXT5066_THINKPAD
] = "thinkpad",
2927 [CXT5066_ASUS
] = "asus",
2928 [CXT5066_HP_LAPTOP
] = "hp-laptop",
2929 [CXT5066_AUTO
] = "auto",
2932 static const struct snd_pci_quirk cxt5066_cfg_tbl
[] = {
2933 SND_PCI_QUIRK_MASK(0x1025, 0xff00, 0x0400, "Acer", CXT5066_IDEAPAD
),
2934 SND_PCI_QUIRK(0x1028, 0x02d8, "Dell Vostro", CXT5066_DELL_VOSTRO
),
2935 SND_PCI_QUIRK(0x1028, 0x02f5, "Dell Vostro 320", CXT5066_IDEAPAD
),
2936 SND_PCI_QUIRK(0x1028, 0x0401, "Dell Vostro 1014", CXT5066_DELL_VOSTRO
),
2937 SND_PCI_QUIRK(0x1028, 0x0408, "Dell Inspiron One 19T", CXT5066_IDEAPAD
),
2938 SND_PCI_QUIRK(0x1028, 0x050f, "Dell Inspiron", CXT5066_IDEAPAD
),
2939 SND_PCI_QUIRK(0x103c, 0x360b, "HP G60", CXT5066_HP_LAPTOP
),
2940 SND_PCI_QUIRK(0x1043, 0x13f3, "Asus A52J", CXT5066_ASUS
),
2941 SND_PCI_QUIRK(0x1043, 0x1643, "Asus K52JU", CXT5066_ASUS
),
2942 SND_PCI_QUIRK(0x1043, 0x1993, "Asus U50F", CXT5066_ASUS
),
2943 SND_PCI_QUIRK(0x1179, 0xff1e, "Toshiba Satellite C650D", CXT5066_IDEAPAD
),
2944 SND_PCI_QUIRK(0x1179, 0xff50, "Toshiba Satellite P500-PSPGSC-01800T", CXT5066_OLPC_XO_1_5
),
2945 SND_PCI_QUIRK(0x14f1, 0x0101, "Conexant Reference board",
2947 SND_PCI_QUIRK(0x152d, 0x0833, "OLPC XO-1.5", CXT5066_OLPC_XO_1_5
),
2948 SND_PCI_QUIRK(0x17aa, 0x20f2, "Lenovo T400s", CXT5066_THINKPAD
),
2949 SND_PCI_QUIRK(0x17aa, 0x21c5, "Thinkpad Edge 13", CXT5066_THINKPAD
),
2950 SND_PCI_QUIRK(0x17aa, 0x21c6, "Thinkpad Edge 13", CXT5066_ASUS
),
2951 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo U350", CXT5066_ASUS
),
2952 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo G560", CXT5066_ASUS
),
2956 static int patch_cxt5066(struct hda_codec
*codec
)
2958 struct conexant_spec
*spec
;
2961 board_config
= snd_hda_check_board_config(codec
, CXT5066_MODELS
,
2962 cxt5066_models
, cxt5066_cfg_tbl
);
2963 if (board_config
< 0)
2964 board_config
= CXT5066_AUTO
; /* model=auto as default */
2965 if (board_config
== CXT5066_AUTO
)
2966 return patch_conexant_auto(codec
);
2968 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
2973 codec
->patch_ops
= conexant_patch_ops
;
2974 codec
->patch_ops
.init
= conexant_init
;
2976 spec
->dell_automute
= 0;
2977 spec
->multiout
.max_channels
= 2;
2978 spec
->multiout
.num_dacs
= ARRAY_SIZE(cxt5066_dac_nids
);
2979 spec
->multiout
.dac_nids
= cxt5066_dac_nids
;
2980 conexant_check_dig_outs(codec
, cxt5066_digout_pin_nids
,
2981 ARRAY_SIZE(cxt5066_digout_pin_nids
));
2982 spec
->num_adc_nids
= 1;
2983 spec
->adc_nids
= cxt5066_adc_nids
;
2984 spec
->capsrc_nids
= cxt5066_capsrc_nids
;
2985 spec
->input_mux
= &cxt5066_capture_source
;
2987 spec
->port_d_mode
= PIN_HP
;
2989 spec
->num_init_verbs
= 1;
2990 spec
->init_verbs
[0] = cxt5066_init_verbs
;
2991 spec
->num_channel_mode
= ARRAY_SIZE(cxt5066_modes
);
2992 spec
->channel_mode
= cxt5066_modes
;
2994 spec
->cur_adc_idx
= 0;
2996 set_beep_amp(spec
, 0x13, 0, HDA_OUTPUT
);
2998 switch (board_config
) {
3000 case CXT5066_LAPTOP
:
3001 spec
->mixers
[spec
->num_mixers
++] = cxt5066_mixer_master
;
3002 spec
->mixers
[spec
->num_mixers
++] = cxt5066_mixers
;
3004 case CXT5066_DELL_LAPTOP
:
3005 spec
->mixers
[spec
->num_mixers
++] = cxt5066_mixer_master
;
3006 spec
->mixers
[spec
->num_mixers
++] = cxt5066_mixers
;
3008 spec
->port_d_mode
= PIN_OUT
;
3009 spec
->init_verbs
[spec
->num_init_verbs
] = cxt5066_init_verbs_portd_lo
;
3010 spec
->num_init_verbs
++;
3011 spec
->dell_automute
= 1;
3014 case CXT5066_HP_LAPTOP
:
3015 codec
->patch_ops
.init
= cxt5066_init
;
3016 codec
->patch_ops
.unsol_event
= cxt5066_unsol_event
;
3017 spec
->init_verbs
[spec
->num_init_verbs
] =
3018 cxt5066_init_verbs_hp_laptop
;
3019 spec
->num_init_verbs
++;
3020 spec
->hp_laptop
= board_config
== CXT5066_HP_LAPTOP
;
3021 spec
->asus
= board_config
== CXT5066_ASUS
;
3022 spec
->mixers
[spec
->num_mixers
++] = cxt5066_mixer_master
;
3023 spec
->mixers
[spec
->num_mixers
++] = cxt5066_mixers
;
3025 if (board_config
== CXT5066_HP_LAPTOP
)
3026 spec
->multiout
.dig_out_nid
= 0;
3027 /* input source automatically selected */
3028 spec
->input_mux
= NULL
;
3029 spec
->port_d_mode
= 0;
3030 spec
->mic_boost
= 3; /* default 30dB gain */
3033 case CXT5066_OLPC_XO_1_5
:
3034 codec
->patch_ops
.init
= cxt5066_olpc_init
;
3035 codec
->patch_ops
.unsol_event
= cxt5066_olpc_unsol_event
;
3036 spec
->init_verbs
[0] = cxt5066_init_verbs_olpc
;
3037 spec
->mixers
[spec
->num_mixers
++] = cxt5066_mixer_master_olpc
;
3038 spec
->mixers
[spec
->num_mixers
++] = cxt5066_mixer_olpc_dc
;
3039 spec
->mixers
[spec
->num_mixers
++] = cxt5066_mixers
;
3040 spec
->port_d_mode
= 0;
3041 spec
->mic_boost
= 3; /* default 30dB gain */
3044 spec
->multiout
.dig_out_nid
= 0;
3046 /* input source automatically selected */
3047 spec
->input_mux
= NULL
;
3049 /* our capture hooks which allow us to turn on the microphone LED
3050 * at the right time */
3051 spec
->capture_prepare
= cxt5066_olpc_capture_prepare
;
3052 spec
->capture_cleanup
= cxt5066_olpc_capture_cleanup
;
3054 case CXT5066_DELL_VOSTRO
:
3055 codec
->patch_ops
.init
= cxt5066_init
;
3056 codec
->patch_ops
.unsol_event
= cxt5066_unsol_event
;
3057 spec
->init_verbs
[0] = cxt5066_init_verbs_vostro
;
3058 spec
->mixers
[spec
->num_mixers
++] = cxt5066_mixer_master_olpc
;
3059 spec
->mixers
[spec
->num_mixers
++] = cxt5066_mixers
;
3060 spec
->mixers
[spec
->num_mixers
++] = cxt5066_vostro_mixers
;
3061 spec
->port_d_mode
= 0;
3062 spec
->dell_vostro
= 1;
3063 spec
->mic_boost
= 3; /* default 30dB gain */
3066 spec
->multiout
.dig_out_nid
= 0;
3068 /* input source automatically selected */
3069 spec
->input_mux
= NULL
;
3071 case CXT5066_IDEAPAD
:
3072 codec
->patch_ops
.init
= cxt5066_init
;
3073 codec
->patch_ops
.unsol_event
= cxt5066_unsol_event
;
3074 spec
->mixers
[spec
->num_mixers
++] = cxt5066_mixer_master
;
3075 spec
->mixers
[spec
->num_mixers
++] = cxt5066_mixers
;
3076 spec
->init_verbs
[0] = cxt5066_init_verbs_ideapad
;
3077 spec
->port_d_mode
= 0;
3079 spec
->mic_boost
= 2; /* default 20dB gain */
3082 spec
->multiout
.dig_out_nid
= 0;
3084 /* input source automatically selected */
3085 spec
->input_mux
= NULL
;
3087 case CXT5066_THINKPAD
:
3088 codec
->patch_ops
.init
= cxt5066_init
;
3089 codec
->patch_ops
.unsol_event
= cxt5066_unsol_event
;
3090 spec
->mixers
[spec
->num_mixers
++] = cxt5066_mixer_master
;
3091 spec
->mixers
[spec
->num_mixers
++] = cxt5066_mixers
;
3092 spec
->init_verbs
[0] = cxt5066_init_verbs_thinkpad
;
3094 spec
->port_d_mode
= PIN_OUT
;
3095 spec
->mic_boost
= 2; /* default 20dB gain */
3098 spec
->multiout
.dig_out_nid
= 0;
3100 /* input source automatically selected */
3101 spec
->input_mux
= NULL
;
3106 snd_hda_attach_beep_device(codec
, get_amp_nid_(spec
->beep_amp
));
3111 #endif /* ENABLE_CXT_STATIC_QUIRKS */
3115 * Automatic parser for CX20641 & co
3118 #ifdef CONFIG_SND_HDA_INPUT_BEEP
3119 static void cx_auto_parse_beep(struct hda_codec
*codec
)
3121 struct conexant_spec
*spec
= codec
->spec
;
3122 hda_nid_t nid
, end_nid
;
3124 end_nid
= codec
->start_nid
+ codec
->num_nodes
;
3125 for (nid
= codec
->start_nid
; nid
< end_nid
; nid
++)
3126 if (get_wcaps_type(get_wcaps(codec
, nid
)) == AC_WID_BEEP
) {
3127 set_beep_amp(spec
, nid
, 0, HDA_OUTPUT
);
3132 #define cx_auto_parse_beep(codec)
3136 static void cx_auto_parse_eapd(struct hda_codec
*codec
)
3138 struct conexant_spec
*spec
= codec
->spec
;
3139 hda_nid_t nid
, end_nid
;
3141 end_nid
= codec
->start_nid
+ codec
->num_nodes
;
3142 for (nid
= codec
->start_nid
; nid
< end_nid
; nid
++) {
3143 if (get_wcaps_type(get_wcaps(codec
, nid
)) != AC_WID_PIN
)
3145 if (!(snd_hda_query_pin_caps(codec
, nid
) & AC_PINCAP_EAPD
))
3147 spec
->eapds
[spec
->num_eapds
++] = nid
;
3148 if (spec
->num_eapds
>= ARRAY_SIZE(spec
->eapds
))
3152 /* NOTE: below is a wild guess; if we have more than two EAPDs,
3153 * it's a new chip, where EAPDs are supposed to be associated to
3154 * pins, and we can control EAPD per pin.
3155 * OTOH, if only one or two EAPDs are found, it's an old chip,
3156 * thus it might control over all pins.
3158 if (spec
->num_eapds
> 2)
3159 spec
->dynamic_eapd
= 1;
3162 static void cx_auto_turn_eapd(struct hda_codec
*codec
, int num_pins
,
3163 hda_nid_t
*pins
, bool on
)
3166 for (i
= 0; i
< num_pins
; i
++) {
3167 if (snd_hda_query_pin_caps(codec
, pins
[i
]) & AC_PINCAP_EAPD
)
3168 snd_hda_codec_write(codec
, pins
[i
], 0,
3169 AC_VERB_SET_EAPD_BTLENABLE
,
3174 /* turn on/off EAPD according to Master switch */
3175 static void cx_auto_vmaster_hook(void *private_data
, int enabled
)
3177 struct hda_codec
*codec
= private_data
;
3178 struct conexant_spec
*spec
= codec
->spec
;
3180 cx_auto_turn_eapd(codec
, spec
->num_eapds
, spec
->eapds
, enabled
);
3183 static int cx_auto_build_controls(struct hda_codec
*codec
)
3187 err
= snd_hda_gen_build_controls(codec
);
3191 err
= add_beep_ctls(codec
);
3198 static int cx_auto_init(struct hda_codec
*codec
)
3200 struct conexant_spec
*spec
= codec
->spec
;
3201 snd_hda_gen_init(codec
);
3202 if (!spec
->dynamic_eapd
)
3203 cx_auto_turn_eapd(codec
, spec
->num_eapds
, spec
->eapds
, true);
3205 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_INIT
);
3210 static void cx_auto_free(struct hda_codec
*codec
)
3212 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_FREE
);
3213 snd_hda_gen_free(codec
);
3216 static const struct hda_codec_ops cx_auto_patch_ops
= {
3217 .build_controls
= cx_auto_build_controls
,
3218 .build_pcms
= snd_hda_gen_build_pcms
,
3219 .init
= cx_auto_init
,
3220 .free
= cx_auto_free
,
3221 .unsol_event
= snd_hda_jack_unsol_event
,
3223 .check_power_status
= snd_hda_gen_check_power_status
,
3231 CXT_PINCFG_LENOVO_X200
,
3232 CXT_PINCFG_LENOVO_TP410
,
3233 CXT_PINCFG_LEMOTE_A1004
,
3234 CXT_PINCFG_LEMOTE_A1205
,
3235 CXT_FIXUP_STEREO_DMIC
,
3236 CXT_FIXUP_INC_MIC_BOOST
,
3237 CXT_FIXUP_HEADPHONE_MIC_PIN
,
3238 CXT_FIXUP_HEADPHONE_MIC
,
3240 CXT_FIXUP_THINKPAD_ACPI
,
3243 /* for hda_fixup_thinkpad_acpi() */
3244 #include "thinkpad_helper.c"
3246 static void cxt_fixup_stereo_dmic(struct hda_codec
*codec
,
3247 const struct hda_fixup
*fix
, int action
)
3249 struct conexant_spec
*spec
= codec
->spec
;
3250 spec
->gen
.inv_dmic_split
= 1;
3253 static void cxt5066_increase_mic_boost(struct hda_codec
*codec
,
3254 const struct hda_fixup
*fix
, int action
)
3256 if (action
!= HDA_FIXUP_ACT_PRE_PROBE
)
3259 snd_hda_override_amp_caps(codec
, 0x17, HDA_OUTPUT
,
3260 (0x3 << AC_AMPCAP_OFFSET_SHIFT
) |
3261 (0x4 << AC_AMPCAP_NUM_STEPS_SHIFT
) |
3262 (0x27 << AC_AMPCAP_STEP_SIZE_SHIFT
) |
3263 (0 << AC_AMPCAP_MUTE_SHIFT
));
3266 static void cxt_update_headset_mode(struct hda_codec
*codec
)
3268 /* The verbs used in this function were tested on a Conexant CX20751/2 codec. */
3270 bool mic_mode
= false;
3271 struct conexant_spec
*spec
= codec
->spec
;
3272 struct auto_pin_cfg
*cfg
= &spec
->gen
.autocfg
;
3274 hda_nid_t mux_pin
= spec
->gen
.imux_pins
[spec
->gen
.cur_mux
[0]];
3276 for (i
= 0; i
< cfg
->num_inputs
; i
++)
3277 if (cfg
->inputs
[i
].pin
== mux_pin
) {
3278 mic_mode
= !!cfg
->inputs
[i
].is_headphone_mic
;
3283 snd_hda_codec_write_cache(codec
, 0x1c, 0, 0x410, 0x7c); /* enable merged mode for analog int-mic */
3284 spec
->gen
.hp_jack_present
= false;
3286 snd_hda_codec_write_cache(codec
, 0x1c, 0, 0x410, 0x54); /* disable merged mode for analog int-mic */
3287 spec
->gen
.hp_jack_present
= snd_hda_jack_detect(codec
, spec
->gen
.autocfg
.hp_pins
[0]);
3290 snd_hda_gen_update_outputs(codec
);
3293 static void cxt_update_headset_mode_hook(struct hda_codec
*codec
,
3294 struct snd_kcontrol
*kcontrol
,
3295 struct snd_ctl_elem_value
*ucontrol
)
3297 cxt_update_headset_mode(codec
);
3300 static void cxt_fixup_headphone_mic(struct hda_codec
*codec
,
3301 const struct hda_fixup
*fix
, int action
)
3303 struct conexant_spec
*spec
= codec
->spec
;
3306 case HDA_FIXUP_ACT_PRE_PROBE
:
3307 spec
->parse_flags
|= HDA_PINCFG_HEADPHONE_MIC
;
3309 case HDA_FIXUP_ACT_PROBE
:
3310 spec
->gen
.cap_sync_hook
= cxt_update_headset_mode_hook
;
3311 spec
->gen
.automute_hook
= cxt_update_headset_mode
;
3313 case HDA_FIXUP_ACT_INIT
:
3314 cxt_update_headset_mode(codec
);
3320 /* ThinkPad X200 & co with cxt5051 */
3321 static const struct hda_pintbl cxt_pincfg_lenovo_x200
[] = {
3322 { 0x16, 0x042140ff }, /* HP (seq# overridden) */
3323 { 0x17, 0x21a11000 }, /* dock-mic */
3324 { 0x19, 0x2121103f }, /* dock-HP */
3325 { 0x1c, 0x21440100 }, /* dock SPDIF out */
3329 /* ThinkPad 410/420/510/520, X201 & co with cxt5066 */
3330 static const struct hda_pintbl cxt_pincfg_lenovo_tp410
[] = {
3331 { 0x19, 0x042110ff }, /* HP (seq# overridden) */
3332 { 0x1a, 0x21a190f0 }, /* dock-mic */
3333 { 0x1c, 0x212140ff }, /* dock-HP */
3337 /* Lemote A1004/A1205 with cxt5066 */
3338 static const struct hda_pintbl cxt_pincfg_lemote
[] = {
3339 { 0x1a, 0x90a10020 }, /* Internal mic */
3340 { 0x1b, 0x03a11020 }, /* External mic */
3341 { 0x1d, 0x400101f0 }, /* Not used */
3342 { 0x1e, 0x40a701f0 }, /* Not used */
3343 { 0x20, 0x404501f0 }, /* Not used */
3344 { 0x22, 0x404401f0 }, /* Not used */
3345 { 0x23, 0x40a701f0 }, /* Not used */
3349 static const struct hda_fixup cxt_fixups
[] = {
3350 [CXT_PINCFG_LENOVO_X200
] = {
3351 .type
= HDA_FIXUP_PINS
,
3352 .v
.pins
= cxt_pincfg_lenovo_x200
,
3354 [CXT_PINCFG_LENOVO_TP410
] = {
3355 .type
= HDA_FIXUP_PINS
,
3356 .v
.pins
= cxt_pincfg_lenovo_tp410
,
3358 .chain_id
= CXT_FIXUP_THINKPAD_ACPI
,
3360 [CXT_PINCFG_LEMOTE_A1004
] = {
3361 .type
= HDA_FIXUP_PINS
,
3363 .chain_id
= CXT_FIXUP_INC_MIC_BOOST
,
3364 .v
.pins
= cxt_pincfg_lemote
,
3366 [CXT_PINCFG_LEMOTE_A1205
] = {
3367 .type
= HDA_FIXUP_PINS
,
3368 .v
.pins
= cxt_pincfg_lemote
,
3370 [CXT_FIXUP_STEREO_DMIC
] = {
3371 .type
= HDA_FIXUP_FUNC
,
3372 .v
.func
= cxt_fixup_stereo_dmic
,
3374 [CXT_FIXUP_INC_MIC_BOOST
] = {
3375 .type
= HDA_FIXUP_FUNC
,
3376 .v
.func
= cxt5066_increase_mic_boost
,
3378 [CXT_FIXUP_HEADPHONE_MIC_PIN
] = {
3379 .type
= HDA_FIXUP_PINS
,
3381 .chain_id
= CXT_FIXUP_HEADPHONE_MIC
,
3382 .v
.pins
= (const struct hda_pintbl
[]) {
3383 { 0x18, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
3387 [CXT_FIXUP_HEADPHONE_MIC
] = {
3388 .type
= HDA_FIXUP_FUNC
,
3389 .v
.func
= cxt_fixup_headphone_mic
,
3391 [CXT_FIXUP_GPIO1
] = {
3392 .type
= HDA_FIXUP_VERBS
,
3393 .v
.verbs
= (const struct hda_verb
[]) {
3394 { 0x01, AC_VERB_SET_GPIO_MASK
, 0x01 },
3395 { 0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x01 },
3396 { 0x01, AC_VERB_SET_GPIO_DATA
, 0x01 },
3400 [CXT_FIXUP_THINKPAD_ACPI
] = {
3401 .type
= HDA_FIXUP_FUNC
,
3402 .v
.func
= hda_fixup_thinkpad_acpi
,
3406 static const struct snd_pci_quirk cxt5051_fixups
[] = {
3407 SND_PCI_QUIRK(0x17aa, 0x20f2, "Lenovo X200", CXT_PINCFG_LENOVO_X200
),
3411 static const struct snd_pci_quirk cxt5066_fixups
[] = {
3412 SND_PCI_QUIRK(0x1025, 0x0543, "Acer Aspire One 522", CXT_FIXUP_STEREO_DMIC
),
3413 SND_PCI_QUIRK(0x1025, 0x054c, "Acer Aspire 3830TG", CXT_FIXUP_GPIO1
),
3414 SND_PCI_QUIRK(0x1043, 0x138d, "Asus", CXT_FIXUP_HEADPHONE_MIC_PIN
),
3415 SND_PCI_QUIRK(0x17aa, 0x20f2, "Lenovo T400", CXT_PINCFG_LENOVO_TP410
),
3416 SND_PCI_QUIRK(0x17aa, 0x215e, "Lenovo T410", CXT_PINCFG_LENOVO_TP410
),
3417 SND_PCI_QUIRK(0x17aa, 0x215f, "Lenovo T510", CXT_PINCFG_LENOVO_TP410
),
3418 SND_PCI_QUIRK(0x17aa, 0x21ce, "Lenovo T420", CXT_PINCFG_LENOVO_TP410
),
3419 SND_PCI_QUIRK(0x17aa, 0x21cf, "Lenovo T520", CXT_PINCFG_LENOVO_TP410
),
3420 SND_PCI_QUIRK(0x17aa, 0x21da, "Lenovo X220", CXT_PINCFG_LENOVO_TP410
),
3421 SND_PCI_QUIRK(0x17aa, 0x21db, "Lenovo X220-tablet", CXT_PINCFG_LENOVO_TP410
),
3422 SND_PCI_QUIRK(0x17aa, 0x3975, "Lenovo U300s", CXT_FIXUP_STEREO_DMIC
),
3423 SND_PCI_QUIRK(0x17aa, 0x3977, "Lenovo IdeaPad U310", CXT_FIXUP_STEREO_DMIC
),
3424 SND_PCI_QUIRK(0x17aa, 0x397b, "Lenovo S205", CXT_FIXUP_STEREO_DMIC
),
3425 SND_PCI_QUIRK_VENDOR(0x17aa, "Thinkpad", CXT_FIXUP_THINKPAD_ACPI
),
3426 SND_PCI_QUIRK(0x1c06, 0x2011, "Lemote A1004", CXT_PINCFG_LEMOTE_A1004
),
3427 SND_PCI_QUIRK(0x1c06, 0x2012, "Lemote A1205", CXT_PINCFG_LEMOTE_A1205
),
3431 /* add "fake" mute amp-caps to DACs on cx5051 so that mixer mute switches
3432 * can be created (bko#42825)
3434 static void add_cx5051_fake_mutes(struct hda_codec
*codec
)
3436 static hda_nid_t out_nids
[] = {
3441 for (p
= out_nids
; *p
; p
++)
3442 snd_hda_override_amp_caps(codec
, *p
, HDA_OUTPUT
,
3443 AC_AMPCAP_MIN_MUTE
|
3444 query_amp_caps(codec
, *p
, HDA_OUTPUT
));
3447 static int patch_conexant_auto(struct hda_codec
*codec
)
3449 struct conexant_spec
*spec
;
3452 printk(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
3455 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
3458 snd_hda_gen_spec_init(&spec
->gen
);
3461 cx_auto_parse_beep(codec
);
3462 cx_auto_parse_eapd(codec
);
3463 spec
->gen
.own_eapd_ctl
= 1;
3464 if (spec
->dynamic_eapd
)
3465 spec
->gen
.vmaster_mute
.hook
= cx_auto_vmaster_hook
;
3467 switch (codec
->vendor_id
) {
3469 codec
->single_adc_amp
= 1;
3472 codec
->pin_amp_workaround
= 1;
3473 spec
->gen
.mixer_nid
= 0x19;
3476 add_cx5051_fake_mutes(codec
);
3477 codec
->pin_amp_workaround
= 1;
3478 snd_hda_pick_fixup(codec
, NULL
, cxt5051_fixups
, cxt_fixups
);
3481 codec
->pin_amp_workaround
= 1;
3482 snd_hda_pick_fixup(codec
, NULL
, cxt5066_fixups
, cxt_fixups
);
3486 /* Show mute-led control only on HP laptops
3487 * This is a sort of white-list: on HP laptops, EAPD corresponds
3488 * only to the mute-LED without actualy amp function. Meanwhile,
3489 * others may use EAPD really as an amp switch, so it might be
3490 * not good to expose it blindly.
3492 switch (codec
->subsystem_id
>> 16) {
3494 spec
->gen
.vmaster_mute_enum
= 1;
3498 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PRE_PROBE
);
3500 err
= snd_hda_parse_pin_defcfg(codec
, &spec
->gen
.autocfg
, NULL
,
3505 err
= snd_hda_gen_parse_auto_config(codec
, &spec
->gen
.autocfg
);
3509 codec
->patch_ops
= cx_auto_patch_ops
;
3511 /* Some laptops with Conexant chips show stalls in S3 resume,
3512 * which falls into the single-cmd mode.
3513 * Better to make reset, then.
3515 if (!codec
->bus
->sync_write
) {
3516 snd_printd("hda_codec: "
3517 "Enable sync_write for stable communication\n");
3518 codec
->bus
->sync_write
= 1;
3519 codec
->bus
->allow_bus_reset
= 1;
3522 snd_hda_apply_fixup(codec
, HDA_FIXUP_ACT_PROBE
);
3527 cx_auto_free(codec
);
3531 #ifndef ENABLE_CXT_STATIC_QUIRKS
3532 #define patch_cxt5045 patch_conexant_auto
3533 #define patch_cxt5047 patch_conexant_auto
3534 #define patch_cxt5051 patch_conexant_auto
3535 #define patch_cxt5066 patch_conexant_auto
3541 static const struct hda_codec_preset snd_hda_preset_conexant
[] = {
3542 { .id
= 0x14f15045, .name
= "CX20549 (Venice)",
3543 .patch
= patch_cxt5045
},
3544 { .id
= 0x14f15047, .name
= "CX20551 (Waikiki)",
3545 .patch
= patch_cxt5047
},
3546 { .id
= 0x14f15051, .name
= "CX20561 (Hermosa)",
3547 .patch
= patch_cxt5051
},
3548 { .id
= 0x14f15066, .name
= "CX20582 (Pebble)",
3549 .patch
= patch_cxt5066
},
3550 { .id
= 0x14f15067, .name
= "CX20583 (Pebble HSF)",
3551 .patch
= patch_cxt5066
},
3552 { .id
= 0x14f15068, .name
= "CX20584",
3553 .patch
= patch_cxt5066
},
3554 { .id
= 0x14f15069, .name
= "CX20585",
3555 .patch
= patch_cxt5066
},
3556 { .id
= 0x14f1506c, .name
= "CX20588",
3557 .patch
= patch_cxt5066
},
3558 { .id
= 0x14f1506e, .name
= "CX20590",
3559 .patch
= patch_cxt5066
},
3560 { .id
= 0x14f15097, .name
= "CX20631",
3561 .patch
= patch_conexant_auto
},
3562 { .id
= 0x14f15098, .name
= "CX20632",
3563 .patch
= patch_conexant_auto
},
3564 { .id
= 0x14f150a1, .name
= "CX20641",
3565 .patch
= patch_conexant_auto
},
3566 { .id
= 0x14f150a2, .name
= "CX20642",
3567 .patch
= patch_conexant_auto
},
3568 { .id
= 0x14f150ab, .name
= "CX20651",
3569 .patch
= patch_conexant_auto
},
3570 { .id
= 0x14f150ac, .name
= "CX20652",
3571 .patch
= patch_conexant_auto
},
3572 { .id
= 0x14f150b8, .name
= "CX20664",
3573 .patch
= patch_conexant_auto
},
3574 { .id
= 0x14f150b9, .name
= "CX20665",
3575 .patch
= patch_conexant_auto
},
3576 { .id
= 0x14f1510f, .name
= "CX20751/2",
3577 .patch
= patch_conexant_auto
},
3578 { .id
= 0x14f15110, .name
= "CX20751/2",
3579 .patch
= patch_conexant_auto
},
3580 { .id
= 0x14f15111, .name
= "CX20753/4",
3581 .patch
= patch_conexant_auto
},
3582 { .id
= 0x14f15113, .name
= "CX20755",
3583 .patch
= patch_conexant_auto
},
3584 { .id
= 0x14f15114, .name
= "CX20756",
3585 .patch
= patch_conexant_auto
},
3586 { .id
= 0x14f15115, .name
= "CX20757",
3587 .patch
= patch_conexant_auto
},
3588 { .id
= 0x14f151d7, .name
= "CX20952",
3589 .patch
= patch_conexant_auto
},
3593 MODULE_ALIAS("snd-hda-codec-id:14f15045");
3594 MODULE_ALIAS("snd-hda-codec-id:14f15047");
3595 MODULE_ALIAS("snd-hda-codec-id:14f15051");
3596 MODULE_ALIAS("snd-hda-codec-id:14f15066");
3597 MODULE_ALIAS("snd-hda-codec-id:14f15067");
3598 MODULE_ALIAS("snd-hda-codec-id:14f15068");
3599 MODULE_ALIAS("snd-hda-codec-id:14f15069");
3600 MODULE_ALIAS("snd-hda-codec-id:14f1506c");
3601 MODULE_ALIAS("snd-hda-codec-id:14f1506e");
3602 MODULE_ALIAS("snd-hda-codec-id:14f15097");
3603 MODULE_ALIAS("snd-hda-codec-id:14f15098");
3604 MODULE_ALIAS("snd-hda-codec-id:14f150a1");
3605 MODULE_ALIAS("snd-hda-codec-id:14f150a2");
3606 MODULE_ALIAS("snd-hda-codec-id:14f150ab");
3607 MODULE_ALIAS("snd-hda-codec-id:14f150ac");
3608 MODULE_ALIAS("snd-hda-codec-id:14f150b8");
3609 MODULE_ALIAS("snd-hda-codec-id:14f150b9");
3610 MODULE_ALIAS("snd-hda-codec-id:14f1510f");
3611 MODULE_ALIAS("snd-hda-codec-id:14f15110");
3612 MODULE_ALIAS("snd-hda-codec-id:14f15111");
3613 MODULE_ALIAS("snd-hda-codec-id:14f15113");
3614 MODULE_ALIAS("snd-hda-codec-id:14f15114");
3615 MODULE_ALIAS("snd-hda-codec-id:14f15115");
3616 MODULE_ALIAS("snd-hda-codec-id:14f151d7");
3618 MODULE_LICENSE("GPL");
3619 MODULE_DESCRIPTION("Conexant HD-audio codec");
3621 static struct hda_codec_preset_list conexant_list
= {
3622 .preset
= snd_hda_preset_conexant
,
3623 .owner
= THIS_MODULE
,
3626 static int __init
patch_conexant_init(void)
3628 return snd_hda_add_codec_preset(&conexant_list
);
3631 static void __exit
patch_conexant_exit(void)
3633 snd_hda_delete_codec_preset(&conexant_list
);
3636 module_init(patch_conexant_init
)
3637 module_exit(patch_conexant_exit
)