[alsa-devel] Correct 5.1 settings for Asus mobo AT4NM10-I with IDT 92HD73C1X5
I got it to work with the help of "debianuser" on #alsa@freenode and hdajackretask which can be found in alsa-tools-gui (if you use Debian).
Had to change some pin settings from default configuration to make it work. You can get the working configuration from:
http://www.alsa-project.org/db/?f=71b06cd49f390e0ff4061d069a2efcb93b3148d2
It enables the S/PDIF digital output too.
Maybe you like to take that information for a model for IDT 92HD73C1X5.
cheers, Misan
At Wed, 18 Feb 2015 23:19:58 +0100, Misan Thropos wrote:
I got it to work with the help of "debianuser" on #alsa@freenode and hdajackretask which can be found in alsa-tools-gui (if you use Debian).
Had to change some pin settings from default configuration to make it work. You can get the working configuration from:
http://www.alsa-project.org/db/?f=71b06cd49f390e0ff4061d069a2efcb93b3148d2
It enables the S/PDIF digital output too.
Maybe you like to take that information for a model for IDT 92HD73C1X5.
Could you try the patch below? Once when it's confirmed to work, I'll queue it to upstream.
thanks,
Takashi
-- 8< -- From: Takashi Iwai tiwai@suse.de Subject: [PATCH] ALSA: hda - Add pin configs for ASUS mobo with IDT 92HD73XX codec
BIOS doesn't seem to set up pins for 5.1 and the SPDIF out, so we need to give explicitly here.
Reported-by: Misan Thropos misanthropos@gmx.de Cc: stable@vger.kernel.org Signed-off-by: Takashi Iwai tiwai@suse.de --- sound/pci/hda/patch_sigmatel.c | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-)
diff --git a/sound/pci/hda/patch_sigmatel.c b/sound/pci/hda/patch_sigmatel.c index 6d36c5b78805..87eff3173ce9 100644 --- a/sound/pci/hda/patch_sigmatel.c +++ b/sound/pci/hda/patch_sigmatel.c @@ -79,6 +79,7 @@ enum { STAC_ALIENWARE_M17X, STAC_92HD89XX_HP_FRONT_JACK, STAC_92HD89XX_HP_Z1_G2_RIGHT_MIC_JACK, + STAC_92HD73XX_ASUS_MOBO, STAC_92HD73XX_MODELS };
@@ -1911,7 +1912,18 @@ static const struct hda_fixup stac92hd73xx_fixups[] = { [STAC_92HD89XX_HP_Z1_G2_RIGHT_MIC_JACK] = { .type = HDA_FIXUP_PINS, .v.pins = stac92hd89xx_hp_z1_g2_right_mic_jack_pin_configs, - } + }, + [STAC_92HD73XX_ASUS_MOBO] = { + .type = HDA_FIXUP_PINS, + .v.pins = (const struct hda_pintbl[]) { + /* enable 5.1 and SPDIF out */ + { 0x0c, 0x01014411 }, + { 0x0d, 0x01014410 }, + { 0x0e, 0x01014412 }, + { 0x22, 0x014b1180 }, + { } + } + }, };
static const struct hda_model_fixup stac92hd73xx_models[] = { @@ -1923,6 +1935,7 @@ static const struct hda_model_fixup stac92hd73xx_models[] = { { .id = STAC_DELL_M6_BOTH, .name = "dell-m6" }, { .id = STAC_DELL_EQ, .name = "dell-eq" }, { .id = STAC_ALIENWARE_M17X, .name = "alienware" }, + { .id = STAC_92HD73XX_ASUS_MOBO, .name = "asus-mobo" }, {} };
@@ -1975,6 +1988,8 @@ static const struct snd_pci_quirk stac92hd73xx_fixup_tbl[] = { "HP Z1 G2", STAC_92HD89XX_HP_Z1_G2_RIGHT_MIC_JACK), SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x2b17, "unknown HP", STAC_92HD89XX_HP_FRONT_JACK), + SND_PCI_QUIRK(PCI_VENDOR_ID_ASUSTEK, 0x83f8, "ASUS AT4NM10", + STAC_92HD73XX_ASUS_MOBO), {} /* terminator */ };
participants (2)
-
Misan Thropos
-
Takashi Iwai