mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
ALSA: hda - Enable sync_write for AMD chipset with IDT 92HD8x codecs
The AMD chipset seems unstable in the normal operation mode, and it seems requring more sensible access for each verb. Enabling sync_write mode and allowing bus-reset is a sort of workaround for these chipset stability issues. Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
d2edeb7c6f
commit
885f42e1f4
@ -5446,6 +5446,13 @@ static int patch_stac92hd83xxx(struct hda_codec *codec)
|
||||
spec->multiout.dac_nids = spec->dac_nids;
|
||||
spec->init = stac92hd83xxx_core_init;
|
||||
|
||||
if (codec->bus->pci && codec->bus->pci->vendor == PCI_VENDOR_ID_AMD) {
|
||||
snd_printk(KERN_INFO "idt92hd83xxx: "
|
||||
"Enable sync_write for AMD chipset\n");
|
||||
codec->bus->sync_write = 1;
|
||||
codec->bus->allow_bus_reset = 1;
|
||||
}
|
||||
|
||||
spec->board_config = snd_hda_check_board_config(codec,
|
||||
STAC_92HD83XXX_MODELS,
|
||||
stac92hd83xxx_models,
|
||||
|
Loading…
Reference in New Issue
Block a user