1819681 Members
3536 Online
109605 Solutions
New Discussion юеВ

help with sound driver

 
SOLVED
Go to solution
K.C. Chan
Trusted Contributor

help with sound driver

All I've got a SEK'D Siena Card , it looks like I can use the alsa driver rme9652. I've compiled alsa-driver with these lists of card emu10k1,intle8x0,and rme9652, both emu10k1 and intel8x0 are fine. But when I tried to load rme9652 with modprobe snd-card-rme9652, I got this error: /lib/modules/2.4.7-10smp/misc/snd-card-rme9652.o: init_module: No such device
Hint: insmod errors can be caused by incorrect module parameters, including invalid IO or IRQ parameters
/lib/modules/2.4.7-10smp/misc/snd-card-rme9652.o: insmod /lib/modules/2.4.7-10smp/misc/snd-card-rme9652.o failed
/lib/modules/2.4.7-10smp/misc/snd-card-rme9652.o: insmod snd-card-rme9652 failed

here's what I got from lspci cmd:00:00.0 Host bridge: Intel Corporation 82850 860 (Wombat) Chipset Host Bridge (MCH) (rev 04)
00:01.0 PCI bridge: Intel Corporation 82850 850 (Tehama) Chipset AGP Bridge (rev 04)
00:02.0 PCI bridge: Intel Corporation 82860 860 (Wombat) Chipset AGP Bridge (rev 04)
00:1e.0 PCI bridge: Intel Corporation 82801BAM PCI (rev 04)
00:1f.0 ISA bridge: Intel Corporation 82801BA ISA Bridge (ICH2) (rev 04)
00:1f.1 IDE interface: Intel Corporation 82801BA IDE U100 (rev 04)
00:1f.2 USB Controller: Intel Corporation 82801BA(M) USB (Hub A) (rev 04)
00:1f.3 SMBus: Intel Corporation 82801BA(M) SMBus (rev 04)
00:1f.4 USB Controller: Intel Corporation 82801BA(M) USB (Hub B) (rev 04)
00:1f.5 Multimedia audio controller: Intel Corporation 82801BA(M) AC'97 Audio (rev 04)
01:00.0 VGA compatible controller: nVidia Corporation NV11 GL (rev b2)
02:1f.0 PCI bridge: Intel Corporation 82806AA PCI64 Hub PCI Bridge (rev 03)
03:00.0 PIC: Intel Corporation 82806AA PCI64 Hub Advanced Programmable Interrupt Controller (rev 01)
04:0b.0 Ethernet controller: 3Com Corporation 3c905C-TX [Fast Etherlink] (rev 78)
04:0c.0 FireWire (IEEE 1394): Texas Instruments: Unknown device 8020
04:0d.0 Multimedia audio controller: Creative Labs SB Live! EMU10000 (rev 07)
04:0d.1 Input device controller: Creative Labs SB Live! (rev 07)
04:0e.0 Multimedia audio controller: Creative Labs SB Live! EMU10000 (rev 07)
04:0e.1 Input device controller: Creative Labs SB Live! (rev 07)
04:0f.0 Multimedia controller: Marian - Electronic & Software: Unknown device 2088 (rev 02)

Any idea on how can I get this to works? Thanks.

Reputation of a thousand years can be determined by the conduct of an hour
6 REPLIES 6
Kodjo Agbenu
Honored Contributor

Re: help with sound driver

Hello Michael,

I had the same pb with AZT1008 and alsa 0.9.x series.

Then I downgraded to alsa 0.5.x and it works perfectly.

Good luck.

Kodjo
Learn and explain...
K.C. Chan
Trusted Contributor

Re: help with sound driver

I am at 0.5.x, any suggestions? Should I upgrade to the developed version 0.9.x?
Reputation of a thousand years can be determined by the conduct of an hour
K.C. Chan
Trusted Contributor

Re: help with sound driver

Since the error I got when doing modprobe snd-card-rme9652 errors puke on irq (Maybe ????). Could this be the it, bec. It didn't recognized the device.
If this is the case, then how can I manually assigned the IRQ to the SEK'D SIENA card?

irq 0: 1117022 timer irq 12: 33 PS/2 Mouse
irq 1: 4 keyboard irq 14: 13365 ide0
irq 2: 0 cascade [4] irq 15: 2 ide1
irq 3: 4 irq 17: 0 EMU10K1
irq 4: 4 irq 18: 0 EMU10K1
irq 6: 6 irq 19: 0 usb-uhci
irq 7: 3 irq 23: 16262 usb-uhci, eth0
irq 8: 1 rtc
Reputation of a thousand years can be determined by the conduct of an hour
Kodjo Agbenu
Honored Contributor

Re: help with sound driver

To see the list of parameters supported by the "snd-card-rme9652" driver :

modinfo snd-card-rme9652


Supposing that the IRQ parameter name is "snd_irq" :

modprobe -a snd-card-rme9652 ... snd_irq=5 ...

If it still doesn't work, consider upgrading to 0.9.x (but with no success guaranteed).

Good luck.

Kodjo
Learn and explain...
K.C. Chan
Trusted Contributor

Re: help with sound driver

It didn't work when I upgraded to 0.9 so I went back to 0.5x and now everything is broken. Here's what I got when trying modprobe:
modprobe snd-card-emu10k1
insmod: /lib/modules/2.4.7-10smp/kernel/sound/acore/snd.o: No such file or directory
insmod: insmod /lib/modules/2.4.7-10smp/kernel/sound/acore/snd.o failed
insmod: insmod snd-card-emu10k1 failed

Any idea how I can recover back to the point before I upgraded to 0.9? Thanks.
Reputation of a thousand years can be determined by the conduct of an hour
Kodjo Agbenu
Honored Contributor
Solution

Re: help with sound driver

Hello Michael,

Do clean the kernel modules for alsa 0.9.x :

cd /lib/modules/2.4.7-10smp/kernel
mv sound /tmp
depmod -a

Then go to the 0.5.x driver directory and :

make install

When everything is ok :

rm -rf /tmp/sound


Good luck.

Kodjo
Learn and explain...