All of lore.kernel.org
 help / color / mirror / Atom feed
* PCI_DEVICE_ID_XILINX_HAMMERFALL_DSP
@ 2002-12-10  3:42 Mark Knecht
  2002-12-10  4:11 ` PCI_DEVICE_ID_XILINX_HAMMERFALL_DSP Paul Davis
  0 siblings, 1 reply; 5+ messages in thread
From: Mark Knecht @ 2002-12-10  3:42 UTC (permalink / raw)
  To: Alsa-Devel, Alsa-List

Hi,
   Where are the definitions for PCI_DEVICE_ID_XILINX_HAMMERFALL_DSP and
PCI_VENDOR_ID_XILINX kept in the alsa code? 

Thanks,
Mark


static struct pci_device_id snd_hdsp_ids[] __devinitdata = {
        {
                .vendor    = PCI_VENDOR_ID_XILINX,
                .device    = PCI_DEVICE_ID_XILINX_HAMMERFALL_DSP,
                .subvendor = PCI_ANY_ID,
                .subdevice = PCI_ANY_ID,
        }, /* RME Hammerfall-DSP */
        { 0, },
};





-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf

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

* Re: PCI_DEVICE_ID_XILINX_HAMMERFALL_DSP
  2002-12-10  3:42 PCI_DEVICE_ID_XILINX_HAMMERFALL_DSP Mark Knecht
@ 2002-12-10  4:11 ` Paul Davis
  0 siblings, 0 replies; 5+ messages in thread
From: Paul Davis @ 2002-12-10  4:11 UTC (permalink / raw)
  To: Mark Knecht; +Cc: Alsa-Devel, Alsa-List

>   Where are the definitions for PCI_DEVICE_ID_XILINX_HAMMERFALL_DSP and
>PCI_VENDOR_ID_XILINX kept in the alsa code? 

one of two places. either in the kernel source (if you have a much,
much newer kernel (2.5)) or at the top of either rme9652.c or hdsp.c
(there are conditional #define's there to check if they are already
defined in the kernel's PCI ID header.

--p


-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf

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

* Re: PCI_DEVICE_ID_XILINX_HAMMERFALL_DSP
       [not found] <20021210040452.VTPP17908.rwcrgwc51.attbi.com@newmx3.fast.net>
@ 2002-12-10  4:53 ` Mark Knecht
  2002-12-10  5:12   ` PCI_DEVICE_ID_XILINX_HAMMERFALL_DSP Paul Davis
  0 siblings, 1 reply; 5+ messages in thread
From: Mark Knecht @ 2002-12-10  4:53 UTC (permalink / raw)
  To: Paul Davis; +Cc: Alsa-Devel, Alsa-List

Thanks Paul. 

I'm still struggling with getting this new card going. Fernanado and I
are working through the issues one at a time by doing a Planet RPM for
the newest version alsa and have applied the one line patch that you
pointed me at the other day. However, I'm still not running.

1) Fernando applied the one line patch applied:


--- hdsp.c-orig 2002-12-03 19:28:40.000000000 +0000
+++ hdsp.c      2002-12-03 19:28:06.000000000 +0000
@@ -2966,6 +2966,7 @@

        switch (rev & 0xff) {
        case 0xa:
+       case 0x64:
                /* hdsp_initialize_firmware() will reset this */
                hdsp->card_name = "RME Hammerfall DSP";
                break;


2) Alsaconf works, sort of. modules.conf gets built, but my machine will
not reboot after running it. Don't know why.


3) When I boot I see the following message in /var/log/messages

Dec  9 12:39:40 Godzilla kernel: Hammerfall memory allocator: buffers
allocated for 1 cards
Dec  9 12:39:40 Godzilla kernel: RME Hammerfall-DSP: no cards found
Dec  9 12:39:40 Godzilla insmod:
/lib/modules/2.4.19-1.ll/kernel/drivers/sound/pci/rme9652/snd-hdsp.o:
init_module: No such device



4) lspci -v shows the card is there:

00:0f.0 Multimedia audio controller: Xilinx, Inc.: Unknown device 3fc5
(rev 64)
        Flags: bus master, medium devsel, latency 32, IRQ 10
        Memory at f6000000 (32-bit, non-prefetchable) [size=64K]


I'm completely puzzled. What are we doing wrong?


Thanks,
Mark



On Mon, 2002-12-09 at 20:11, Paul Davis wrote:
> >   Where are the definitions for PCI_DEVICE_ID_XILINX_HAMMERFALL_DSP and
> >PCI_VENDOR_ID_XILINX kept in the alsa code? 
> 
> one of two places. either in the kernel source (if you have a much,
> much newer kernel (2.5)) or at the top of either rme9652.c or hdsp.c
> (there are conditional #define's there to check if they are already
> defined in the kernel's PCI ID header.
> 
> --p




-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf

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

* Re: PCI_DEVICE_ID_XILINX_HAMMERFALL_DSP
  2002-12-10  4:53 ` PCI_DEVICE_ID_XILINX_HAMMERFALL_DSP Mark Knecht
@ 2002-12-10  5:12   ` Paul Davis
  0 siblings, 0 replies; 5+ messages in thread
From: Paul Davis @ 2002-12-10  5:12 UTC (permalink / raw)
  To: Mark Knecht; +Cc: Alsa-Devel, Alsa-List

>3) When I boot I see the following message in /var/log/messages
>
>Dec  9 12:39:40 Godzilla kernel: Hammerfall memory allocator: buffers
>allocated for 1 cards
>Dec  9 12:39:40 Godzilla kernel: RME Hammerfall-DSP: no cards found
>Dec  9 12:39:40 Godzilla insmod:
>/lib/modules/2.4.19-1.ll/kernel/drivers/sound/pci/rme9652/snd-hdsp.o:
>init_module: No such device

are you sure you have the new module installed? i know of at least 2
people using the patch you have used that have got their new 9652's working.

--p



-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf

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

* Re: PCI_DEVICE_ID_XILINX_HAMMERFALL_DSP
       [not found] <20021210050618.VYAW21874.rwcrgwc55.attbi.com@newmx2.fast.net>
@ 2002-12-10  5:33 ` Mark Knecht
  0 siblings, 0 replies; 5+ messages in thread
From: Mark Knecht @ 2002-12-10  5:33 UTC (permalink / raw)
  To: Paul Davis; +Cc: Alsa-Devel, Alsa-List

We will recheck. I have immense faith in Fernando, but everyone makes
mistakes.

On Mon, 2002-12-09 at 21:12, Paul Davis wrote:
> >3) When I boot I see the following message in /var/log/messages
> >
> >Dec  9 12:39:40 Godzilla kernel: Hammerfall memory allocator: buffers
> >allocated for 1 cards
> >Dec  9 12:39:40 Godzilla kernel: RME Hammerfall-DSP: no cards found
> >Dec  9 12:39:40 Godzilla insmod:
> >/lib/modules/2.4.19-1.ll/kernel/drivers/sound/pci/rme9652/snd-hdsp.o:
> >init_module: No such device
> 
> are you sure you have the new module installed? i know of at least 2
> people using the patch you have used that have got their new 9652's working.
> 
> --p
> 




-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf

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

end of thread, other threads:[~2002-12-10  5:33 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20021210050618.VYAW21874.rwcrgwc55.attbi.com@newmx2.fast.net>
2002-12-10  5:33 ` PCI_DEVICE_ID_XILINX_HAMMERFALL_DSP Mark Knecht
     [not found] <20021210040452.VTPP17908.rwcrgwc51.attbi.com@newmx3.fast.net>
2002-12-10  4:53 ` PCI_DEVICE_ID_XILINX_HAMMERFALL_DSP Mark Knecht
2002-12-10  5:12   ` PCI_DEVICE_ID_XILINX_HAMMERFALL_DSP Paul Davis
2002-12-10  3:42 PCI_DEVICE_ID_XILINX_HAMMERFALL_DSP Mark Knecht
2002-12-10  4:11 ` PCI_DEVICE_ID_XILINX_HAMMERFALL_DSP Paul Davis

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.