All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: Line-in not working on Audigy2
       [not found]   ` <20051105204154.GA2134@cm.nu>
@ 2005-11-05 21:27     ` Lee Revell
  2005-11-07 14:59       ` Re: [Alsa-user] " Takashi Iwai
  0 siblings, 1 reply; 4+ messages in thread
From: Lee Revell @ 2005-11-05 21:27 UTC (permalink / raw)
  To: Shane; +Cc: alsa-user, alsa-devel

On Sat, 2005-11-05 at 12:41 -0800, Shane wrote:
> On Sat, Nov 05, 2005 at 03:30:11PM -0500, Lee Revell wrote:
> > > The card:
> > > 0000:03:00.0 Multimedia audio controller: Creative Labs SB Audigy (rev 04)
> > >         Subsystem: Creative Labs: Unknown device 2006
> > 
> > This is probably just a driver bug.  Subsystem 2006 is not in the list
> > of PCI IDs.
> > 
> > Can you please provide name and the model number of the card.  This will
> > be something like "Audigy 2 ZS", model "SB0350".  This information may
> > be on the box, the card, or you can obtain it from the Windows driver.
> 
> Hmm, pulling this machine apart may take some time.  Is
> there any way to query the card in software under Linux. 
> Not sure if it helps but oss emu10k1 gives this:
> ACPI: PCI interrupt for device 0000:03:00.0 disabled
> Creative EMU10K1 PCI Audio Driver, version 0.20a, 16:12:50
> Nov  1 2005
> ACPI: PCI Interrupt 0000:03:00.0[A] -> GSI 16 (level, low)
> -> IRQ 169
> emu10k1: Audigy rev 4 model 0x2006 found, IO at
> 0xdc80-0xdcbf, IRQ 169
> 
> Could something like libdiscover or hotplug provide the
> model number?
> 

Try this patch.

Summary: Add support for Audigy 2 subsystem 2006.

Signed-Off-By: Lee Revell <rlrevell@joe-job.com>

--- alsa-kernel/pci/emu10k1/emu10k1_main.c~	2005-11-05 14:22:34.000000000 -0500
+++ alsa-kernel/pci/emu10k1/emu10k1_main.c	2005-11-05 16:25:13.000000000 -0500
@@ -647,6 +647,16 @@
 	 .spk71 = 1,
 	 .spdif_bug = 1,
 	 .ac97_chip = 1} ,
+	/* Tested by shane-alsa@cm.nu 5th Nov 2005 */
+	{.vendor = 0x1102, .device = 0x0004, .subsystem = 0x20061102,
+	 .driver = "Audigy2", .name = "Audigy 2 [2006]", 
+	 .id = "Audigy2",
+	 .emu10k2_chip = 1,
+	 .ca0102_chip = 1,
+	 .ca0151_chip = 1,
+	 .spk71 = 1,
+	 .spdif_bug = 1,
+	 .ac97_chip = 1} ,
 	{.vendor = 0x1102, .device = 0x0004, .subsystem = 0x20021102,
 	 .driver = "Audigy2", .name = "Audigy 2 ZS [SB0350]", 
 	 .id = "Audigy2",




-------------------------------------------------------
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42" plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Re: [Alsa-user] Line-in not working on Audigy2
  2005-11-05 21:27     ` Line-in not working on Audigy2 Lee Revell
@ 2005-11-07 14:59       ` Takashi Iwai
  2005-11-07 15:51         ` [Alsa-devel] " Lee Revell
  0 siblings, 1 reply; 4+ messages in thread
From: Takashi Iwai @ 2005-11-07 14:59 UTC (permalink / raw)
  To: Lee Revell; +Cc: Shane, alsa-user, alsa-devel

At Sat, 05 Nov 2005 16:27:14 -0500,
Lee Revell wrote:
> 
> On Sat, 2005-11-05 at 12:41 -0800, Shane wrote:
> > On Sat, Nov 05, 2005 at 03:30:11PM -0500, Lee Revell wrote:
> > > > The card:
> > > > 0000:03:00.0 Multimedia audio controller: Creative Labs SB Audigy (rev 04)
> > > >         Subsystem: Creative Labs: Unknown device 2006
> > > 
> > > This is probably just a driver bug.  Subsystem 2006 is not in the list
> > > of PCI IDs.
> > > 
> > > Can you please provide name and the model number of the card.  This will
> > > be something like "Audigy 2 ZS", model "SB0350".  This information may
> > > be on the box, the card, or you can obtain it from the Windows driver.
> > 
> > Hmm, pulling this machine apart may take some time.  Is
> > there any way to query the card in software under Linux. 
> > Not sure if it helps but oss emu10k1 gives this:
> > ACPI: PCI interrupt for device 0000:03:00.0 disabled
> > Creative EMU10K1 PCI Audio Driver, version 0.20a, 16:12:50
> > Nov  1 2005
> > ACPI: PCI Interrupt 0000:03:00.0[A] -> GSI 16 (level, low)
> > -> IRQ 169
> > emu10k1: Audigy rev 4 model 0x2006 found, IO at
> > 0xdc80-0xdcbf, IRQ 169
> > 
> > Could something like libdiscover or hotplug provide the
> > model number?
> > 
> 
> Try this patch.
> 
> Summary: Add support for Audigy 2 subsystem 2006.
> 
> Signed-Off-By: Lee Revell <rlrevell@joe-job.com>

FYI, I applied it to CVS now.  Thanks.


Takashi

> 
> --- alsa-kernel/pci/emu10k1/emu10k1_main.c~	2005-11-05 14:22:34.000000000 -0500
> +++ alsa-kernel/pci/emu10k1/emu10k1_main.c	2005-11-05 16:25:13.000000000 -0500
> @@ -647,6 +647,16 @@
>  	 .spk71 = 1,
>  	 .spdif_bug = 1,
>  	 .ac97_chip = 1} ,
> +	/* Tested by shane-alsa@cm.nu 5th Nov 2005 */
> +	{.vendor = 0x1102, .device = 0x0004, .subsystem = 0x20061102,
> +	 .driver = "Audigy2", .name = "Audigy 2 [2006]", 
> +	 .id = "Audigy2",
> +	 .emu10k2_chip = 1,
> +	 .ca0102_chip = 1,
> +	 .ca0151_chip = 1,
> +	 .spk71 = 1,
> +	 .spdif_bug = 1,
> +	 .ac97_chip = 1} ,
>  	{.vendor = 0x1102, .device = 0x0004, .subsystem = 0x20021102,
>  	 .driver = "Audigy2", .name = "Audigy 2 ZS [SB0350]", 
>  	 .id = "Audigy2",
> 
> 
> 
> 
> -------------------------------------------------------
> SF.Net email is sponsored by:
> Tame your development challenges with Apache's Geronimo App Server. Download
> it for free - -and be entered to win a 42" plasma tv or your very own
> Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
> _______________________________________________
> Alsa-devel mailing list
> Alsa-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/alsa-devel
> 


-------------------------------------------------------
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42" plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Alsa-devel] Re: Line-in not working on Audigy2
  2005-11-07 14:59       ` Re: [Alsa-user] " Takashi Iwai
@ 2005-11-07 15:51         ` Lee Revell
       [not found]           ` <20051121190023.GA2783@cm.nu>
  0 siblings, 1 reply; 4+ messages in thread
From: Lee Revell @ 2005-11-07 15:51 UTC (permalink / raw)
  To: Takashi Iwai; +Cc: Shane, alsa-user, alsa-devel

On Mon, 2005-11-07 at 15:59 +0100, Takashi Iwai wrote:
> At Sat, 05 Nov 2005 16:27:14 -0500,
> Lee Revell wrote:
> > 
> > On Sat, 2005-11-05 at 12:41 -0800, Shane wrote:
> > > On Sat, Nov 05, 2005 at 03:30:11PM -0500, Lee Revell wrote:
> > > > > The card:
> > > > > 0000:03:00.0 Multimedia audio controller: Creative Labs SB Audigy (rev 04)
> > > > >         Subsystem: Creative Labs: Unknown device 2006
> > > > 
> > > > This is probably just a driver bug.  Subsystem 2006 is not in the list
> > > > of PCI IDs.
> > > > 
> > > > Can you please provide name and the model number of the card.  This will
> > > > be something like "Audigy 2 ZS", model "SB0350".  This information may
> > > > be on the box, the card, or you can obtain it from the Windows driver.
> > > 
> > > Hmm, pulling this machine apart may take some time.  Is
> > > there any way to query the card in software under Linux. 
> > > Not sure if it helps but oss emu10k1 gives this:
> > > ACPI: PCI interrupt for device 0000:03:00.0 disabled
> > > Creative EMU10K1 PCI Audio Driver, version 0.20a, 16:12:50
> > > Nov  1 2005
> > > ACPI: PCI Interrupt 0000:03:00.0[A] -> GSI 16 (level, low)
> > > -> IRQ 169
> > > emu10k1: Audigy rev 4 model 0x2006 found, IO at
> > > 0xdc80-0xdcbf, IRQ 169
> > > 
> > > Could something like libdiscover or hotplug provide the
> > > model number?
> > > 
> > 
> > Try this patch.
> > 
> > Summary: Add support for Audigy 2 subsystem 2006.
> > 
> > Signed-Off-By: Lee Revell <rlrevell@joe-job.com>
> 
> FYI, I applied it to CVS now.  Thanks.
> 

It would be a big help if someone has time to write a perl script to
extract the PCI ID -> name and model number mapping from the Windows
drivers, http://www.kxproject.com, and generate the hardware features
table.  Email me privately and I'll send you the .inf file.

Lee



-------------------------------------------------------
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42" plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Alsa-devel] Re: Line-in not working on Audigy2
       [not found]           ` <20051121190023.GA2783@cm.nu>
@ 2005-11-21 19:38             ` Peter Zubaj
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Zubaj @ 2005-11-21 19:38 UTC (permalink / raw)
  To: Shane; +Cc: Lee Revell, alsa-user, alsa-devel

There is Analog Mix Capture. Some of analog sources are mixed and then
captured and Analog Mix and Analog Mix Capture controls playback and
capture of this mix. Line in affect both playback and capture volume.

Peter Zubaj

On Mon, 2005-11-21 at 11:00 -0800, Shane wrote:
> On Mon, Nov 07, 2005 at 10:51:23AM -0500, Lee Revell wrote:
> > > > Try this patch.
> > > > 
> > > > Summary: Add support for Audigy 2 subsystem 2006.
> 
> Hi,
> 
> Just got a chance to reboot the machine to test the patch. 
> The card does show up as an Audigy2 in asound.state but I
> still don't get a line capture.  I have a pcm capture, a
> mic capture and a lin2 capture but there doesn't seem to be
> a capture volume for the main analogue line in.
> 
> Shane
> > > > 
> > > > Signed-Off-By: Lee Revell <rlrevell@joe-job.com>
> > > 
> > > FYI, I applied it to CVS now.  Thanks.
> > > 
> > 
> > It would be a big help if someone has time to write a perl script to
> > extract the PCI ID -> name and model number mapping from the Windows
> > drivers, http://www.kxproject.com, and generate the hardware features
> > table.  Email me privately and I'll send you the .inf file.
> > 
> > Lee
> > 
> 



-------------------------------------------------------
This SF.Net email is sponsored by the JBoss Inc.  Get Certified Today
Register for a JBoss Training Course.  Free Certification Exam
for All Training Attendees Through End of 2005. For more info visit:
http://ads.osdn.com/?ad_id=7628&alloc_id=16845&op=click

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2005-11-21 19:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20051104234906.GA7479@cm.nu>
     [not found] ` <1131222612.13627.26.camel@mindpipe>
     [not found]   ` <20051105204154.GA2134@cm.nu>
2005-11-05 21:27     ` Line-in not working on Audigy2 Lee Revell
2005-11-07 14:59       ` Re: [Alsa-user] " Takashi Iwai
2005-11-07 15:51         ` [Alsa-devel] " Lee Revell
     [not found]           ` <20051121190023.GA2783@cm.nu>
2005-11-21 19:38             ` Peter Zubaj

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.