[alsa-devel] [PATCH] ALSA: hda: Use vostro model quirk for Dell Vostro 1014 [Was: Re: Please add PCI quirk for Vostro 1014 (1028:0401)]
Hi Fernando, Takashi,
Attached is a patch against current master HEAD resolving Fernando's symptom.
Thanks, -Dan
On Sat, Jan 8, 2011 at 11:37 AM, Fernando Lemos fernandotcl@gmail.com wrote:
Hi,
Following the advice received here[1] (thanks, Raymond), I'm asking for someone to add the following entry to the list of PCI quirks cxt5066_cfg_tbl if possible:
SND_PCI_QUIRK(0x1028, 0x02f5, "Dell", CXT5066_DELL_LAPTOP), +SND_PCI_QUIRK(0x1028, 0x0401, "Dell Vostro 1014", CXT5066_DELL_VOSTRO), SND_PCI_QUIRK(0x1028, 0x0402, "Dell Vostro", CXT5066_DELL_VOSTRO), SND_PCI_QUIRK(0x1028, 0x0408, "Dell Inspiron One 19T", CXT5066_IDEAPAD),
Codec: Conexant CX20583 (Pebble HSF) Address: 0 Function Id: 0x2 Vendor Id: 0x14f15067 Subsystem Id: 0x10280401 Revision Id: 0x100300
I can confirm that forcing model=vostro works perfectly for this specific laptop model (tested speakers and headphones). If there's any test you want me to do, please let me know. There are more details about the issue in the aforementioned bug report[1].
By the way, I also got a chance to test on 2.6.37 recently and the problem persists. In fact, in 2.6.37 I don't even get any sound in my headphones. But it all works flawlessly with model=vostro.
I apologize if you receive another e-mail from me with similar contents in the future. I've sent this e-mail to the list last year, but I wasn't subscribed so I'd been waiting for moderator approval since then. Now I'm subscribed to the list, let's see if this e-mail gets through.
[1] https://bugtrack.alsa-project.org/alsa-bug/view.php?id=5184
Thanks in advance, _______________________________________________ Alsa-devel mailing list Alsa-devel@alsa-project.org http://mailman.alsa-project.org/mailman/listinfo/alsa-devel
At Sat, 8 Jan 2011 18:31:30 -0500, Daniel Chen wrote:
Hi Fernando, Takashi,
Attached is a patch against current master HEAD resolving Fernando's symptom.
Applied this now. Thanks.
Takashi
Thanks, -Dan
On Sat, Jan 8, 2011 at 11:37 AM, Fernando Lemos fernandotcl@gmail.com wrote:
Hi,
Following the advice received here[1] (thanks, Raymond), I'm asking for someone to add the following entry to the list of PCI quirks cxt5066_cfg_tbl if possible:
SND_PCI_QUIRK(0x1028, 0x02f5, "Dell", CXT5066_DELL_LAPTOP), +SND_PCI_QUIRK(0x1028, 0x0401, "Dell Vostro 1014", CXT5066_DELL_VOSTRO), SND_PCI_QUIRK(0x1028, 0x0402, "Dell Vostro", CXT5066_DELL_VOSTRO), SND_PCI_QUIRK(0x1028, 0x0408, "Dell Inspiron One 19T", CXT5066_IDEAPAD),
Codec: Conexant CX20583 (Pebble HSF) Address: 0 Function Id: 0x2 Vendor Id: 0x14f15067 Subsystem Id: 0x10280401 Revision Id: 0x100300
I can confirm that forcing model=vostro works perfectly for this specific laptop model (tested speakers and headphones). If there's any test you want me to do, please let me know. There are more details about the issue in the aforementioned bug report[1].
By the way, I also got a chance to test on 2.6.37 recently and the problem persists. In fact, in 2.6.37 I don't even get any sound in my headphones. But it all works flawlessly with model=vostro.
I apologize if you receive another e-mail from me with similar contents in the future. I've sent this e-mail to the list last year, but I wasn't subscribed so I'd been waiting for moderator approval since then. Now I'm subscribed to the list, let's see if this e-mail gets through.
[1] https://bugtrack.alsa-project.org/alsa-bug/view.php?id=5184
Thanks in advance, _______________________________________________ Alsa-devel mailing list Alsa-devel@alsa-project.org http://mailman.alsa-project.org/mailman/listinfo/alsa-devel
[2 0001-ALSA-hda-Use-vostro-model-quirk-for-Dell-Vostro-1014.patch <text/x-diff; US-ASCII (base64)>] From bf1aef29c74562f012d3628f28faaeec2bd96b74 Mon Sep 17 00:00:00 2001 From: Daniel T Chen crimsun@ubuntu.com Date: Sat, 8 Jan 2011 18:25:27 -0500 Subject: [PATCH] ALSA: hda: Use vostro model quirk for Dell Vostro 1014
BugLink: https://bugtrack.alsa-project.org/alsa-bug/view.php?id=5184
A user reported on the alsa-devel mailing list that he needs to use the vostro model quirk to have audible playback, so apply it for his PCI SSID.
Reported-and-tested-by: Fernando Lemos fernandotcl@gmail.com Cc: stable@kernel.org Signed-off-by: Daniel T Chen crimsun@ubuntu.com
sound/pci/hda/patch_conexant.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/sound/pci/hda/patch_conexant.c b/sound/pci/hda/patch_conexant.c index 74291f7..c5b27ba 100644 --- a/sound/pci/hda/patch_conexant.c +++ b/sound/pci/hda/patch_conexant.c @@ -3098,6 +3098,7 @@ static struct snd_pci_quirk cxt5066_cfg_tbl[] = { SND_PCI_QUIRK_MASK(0x1025, 0xff00, 0x0400, "Acer", CXT5066_IDEAPAD), SND_PCI_QUIRK(0x1028, 0x02d8, "Dell Vostro", CXT5066_DELL_VOSTRO), SND_PCI_QUIRK(0x1028, 0x02f5, "Dell Vostro 320", CXT5066_IDEAPAD),
- SND_PCI_QUIRK(0x1028, 0x0401, "Dell Vostro 1014", CXT5066_DELL_VOSTRO), SND_PCI_QUIRK(0x1028, 0x0402, "Dell Vostro", CXT5066_DELL_VOSTRO), SND_PCI_QUIRK(0x1028, 0x0408, "Dell Inspiron One 19T", CXT5066_IDEAPAD), SND_PCI_QUIRK(0x103c, 0x360b, "HP G60", CXT5066_HP_LAPTOP),
-- 1.7.1
participants (2)
-
Daniel Chen
-
Takashi Iwai