mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-04-24 14:07:52 -04:00
ALSA: hda - Expose secret DAC-AA connection of some VIA codecs
VT1718S and co have a secret connection from DAC to AA-mix, which doesn't appear in the connection list obtained from the h/w. Currently the driver fixes the connection index locally at init, but now we can expose it statically via snd_hda_override_connections() so that this conection can be checked better by the parser in future. Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
9e7717c9eb
commit
30b4503378
1 changed files with 38 additions and 6 deletions
|
@ -132,7 +132,6 @@ struct via_spec {
|
||||||
hda_nid_t hp_dac_nid;
|
hda_nid_t hp_dac_nid;
|
||||||
bool hp_indep_shared; /* indep HP-DAC is shared with side ch */
|
bool hp_indep_shared; /* indep HP-DAC is shared with side ch */
|
||||||
int num_active_streams;
|
int num_active_streams;
|
||||||
int dac_mixer_idx;
|
|
||||||
|
|
||||||
struct nid_path out_path[HDA_SIDE + 1];
|
struct nid_path out_path[HDA_SIDE + 1];
|
||||||
struct nid_path hp_path;
|
struct nid_path hp_path;
|
||||||
|
@ -1881,8 +1880,6 @@ static int via_auto_create_multi_out_ctls(struct hda_codec *codec)
|
||||||
|
|
||||||
idx = get_connection_index(codec, spec->aa_mix_nid,
|
idx = get_connection_index(codec, spec->aa_mix_nid,
|
||||||
spec->multiout.dac_nids[0]);
|
spec->multiout.dac_nids[0]);
|
||||||
if (idx < 0 && spec->dac_mixer_idx)
|
|
||||||
idx = spec->dac_mixer_idx;
|
|
||||||
if (idx >= 0) {
|
if (idx >= 0) {
|
||||||
/* add control to mixer */
|
/* add control to mixer */
|
||||||
err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
|
err = via_add_control(spec, VIA_CTL_WIDGET_VOL,
|
||||||
|
@ -3028,6 +3025,41 @@ static void set_widgets_power_state_vt1718S(struct hda_codec *codec)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Add a connection to the primary DAC from AA-mixer for some codecs
|
||||||
|
* This isn't listed from the raw info, but the chip has a secret connection.
|
||||||
|
*/
|
||||||
|
static int add_secret_dac_path(struct hda_codec *codec)
|
||||||
|
{
|
||||||
|
struct via_spec *spec = codec->spec;
|
||||||
|
int i, nums;
|
||||||
|
hda_nid_t conn[8];
|
||||||
|
hda_nid_t nid;
|
||||||
|
|
||||||
|
if (!spec->aa_mix_nid)
|
||||||
|
return 0;
|
||||||
|
nums = snd_hda_get_connections(codec, spec->aa_mix_nid, conn,
|
||||||
|
ARRAY_SIZE(conn) - 1);
|
||||||
|
for (i = 0; i < nums; i++) {
|
||||||
|
if (get_wcaps_type(get_wcaps(codec, conn[i])) == AC_WID_AUD_OUT)
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* find the primary DAC and add to the connection list */
|
||||||
|
nid = codec->start_nid;
|
||||||
|
for (i = 0; i < codec->num_nodes; i++, nid++) {
|
||||||
|
unsigned int caps = get_wcaps(codec, nid);
|
||||||
|
if (get_wcaps_type(caps) == AC_WID_AUD_OUT &&
|
||||||
|
!(caps & AC_WCAP_DIGITAL)) {
|
||||||
|
conn[nums++] = nid;
|
||||||
|
return snd_hda_override_conn_list(codec,
|
||||||
|
spec->aa_mix_nid,
|
||||||
|
nums, conn);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
static int patch_vt1718S(struct hda_codec *codec)
|
static int patch_vt1718S(struct hda_codec *codec)
|
||||||
{
|
{
|
||||||
struct via_spec *spec;
|
struct via_spec *spec;
|
||||||
|
@ -3041,7 +3073,7 @@ static int patch_vt1718S(struct hda_codec *codec)
|
||||||
spec->aa_mix_nid = 0x21;
|
spec->aa_mix_nid = 0x21;
|
||||||
override_mic_boost(codec, 0x2b, 0, 3, 40);
|
override_mic_boost(codec, 0x2b, 0, 3, 40);
|
||||||
override_mic_boost(codec, 0x29, 0, 3, 40);
|
override_mic_boost(codec, 0x29, 0, 3, 40);
|
||||||
spec->dac_mixer_idx = 5;
|
add_secret_dac_path(codec);
|
||||||
|
|
||||||
/* automatic parse from the BIOS config */
|
/* automatic parse from the BIOS config */
|
||||||
err = via_parse_auto_config(codec);
|
err = via_parse_auto_config(codec);
|
||||||
|
@ -3402,9 +3434,9 @@ static int patch_vt2002P(struct hda_codec *codec)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
spec->aa_mix_nid = 0x21;
|
spec->aa_mix_nid = 0x21;
|
||||||
spec->dac_mixer_idx = 3;
|
|
||||||
override_mic_boost(codec, 0x2b, 0, 3, 40);
|
override_mic_boost(codec, 0x2b, 0, 3, 40);
|
||||||
override_mic_boost(codec, 0x29, 0, 3, 40);
|
override_mic_boost(codec, 0x29, 0, 3, 40);
|
||||||
|
add_secret_dac_path(codec);
|
||||||
|
|
||||||
/* automatic parse from the BIOS config */
|
/* automatic parse from the BIOS config */
|
||||||
err = via_parse_auto_config(codec);
|
err = via_parse_auto_config(codec);
|
||||||
|
@ -3540,7 +3572,7 @@ static int patch_vt1812(struct hda_codec *codec)
|
||||||
spec->aa_mix_nid = 0x21;
|
spec->aa_mix_nid = 0x21;
|
||||||
override_mic_boost(codec, 0x2b, 0, 3, 40);
|
override_mic_boost(codec, 0x2b, 0, 3, 40);
|
||||||
override_mic_boost(codec, 0x29, 0, 3, 40);
|
override_mic_boost(codec, 0x29, 0, 3, 40);
|
||||||
spec->dac_mixer_idx = 5;
|
add_secret_dac_path(codec);
|
||||||
|
|
||||||
/* automatic parse from the BIOS config */
|
/* automatic parse from the BIOS config */
|
||||||
err = via_parse_auto_config(codec);
|
err = via_parse_auto_config(codec);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue