LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Other *NIX Forums > *BSD
User Name
Password
*BSD This forum is for the discussion of all BSD variants.
FreeBSD, OpenBSD, NetBSD, etc.

Notices


Reply
  Search this Thread
Old 03-30-2005, 12:00 AM   #1
Ekkume
Member
 
Registered: Mar 2005
Location: Finland
Distribution: Debian Sid, FreeBSD, Mandrake, Red Hat
Posts: 84

Rep: Reputation: 15
Sound hardware "detected" but remains silent


I am now in the process of configuring sound in my FreeBSD installation.
I have it running on a Compaq Armada 100S,
which advertises in Compaq specs that it has a Sound Blaster Pro 16 compatible setup. It has a 550 MHz AMD, 192 MB RAM, 6 GB hd. FreeBSD with KDE is running beautifully otherwise.

I tried the sound blaster driver, but it didn't do anything and there was nothing returned from cat /dev/sndstat

I tried one of the via drivers and it did load and return something. It gave it an IRQ of 5 and so forth (I am at a different computer at work now so I can't copy-paste what it showed). I tried playing a CD in KDE then with the CD player, but it just remained silent. I checked all the sound settings and all the volume controls were cranked up and on.

Now just to find the right configuration. Has anyone had experience with this kind of laptop or chipset? (One user I found by Googling said that it is a Via chipset. I haven't seen any official Compaq information, except that it is SB 16 Pro compatible)

Ekkume

I found this page archived here, and it has been some help
http://www.linuxquestions.org/questi...05/01/4/280063


Last edited by Ekkume; 03-30-2005 at 12:01 AM.
 
Old 03-30-2005, 12:36 PM   #2
Ekkume
Member
 
Registered: Mar 2005
Location: Finland
Distribution: Debian Sid, FreeBSD, Mandrake, Red Hat
Posts: 84

Original Poster
Rep: Reputation: 15
Re: Sound hardware "detected" but remains silent

I am using this file:

##########################################
### Sound modules ##########################################
##########################################
#
sound_load="YES" # Digital sound subsystem
# snd_ad1816_load="NO" # ad1816
# snd_cmi_load="NO" # cmi
# snd_csa_load="NO" # csa
# snd_cs4281_load="NO" # cs4281
# snd_ds1_load="NO" # ds1
snd_emu10k1_load="YES" # Creative Sound Blaster Live
# snd_ess_load="NO" # ess
# snd_es137x_load="NO" # es137x
# snd_fm801_load="NO" # fm801
# snd_ich_load="NO" # Intel ICH
# snd_maestro_load="NO" # Maestro
# snd_maestro3_load="NO" # Maestro3
# snd_mss_load="NO" # Mss
# snd_neomagic_load="NO" # Neomagic
# snd_sbc_load="NO" # Sbc
# snd_sb8_load="NO" # Sound Blaster Pro
# snd_sb16_load="NO" # Sound Blaster 16
# snd_solo_load="NO" # Solo
# snd_t4dwave_load="NO" # t4dwave
# snd_via8233_load="NO" # via8233
# snd_via82c686_load="YES" # via82c686
snd_driver_load="YES" # All sound drivers

If the unused ones are not commented out, then I get syntax errors when the loader.conf file is loaded.

Right now I have it as above. It loads all the drivers. It is still silent. I tried with snd_82c686 and I do get something when I enter
cat /dev/sndstat , but it is still silent.

Anyone able to help?
 
Old 03-30-2005, 05:01 PM   #3
sigsegv
Senior Member
 
Registered: Nov 2004
Location: Third rock from the Sun
Distribution: NetBSD-2, FreeBSD-5.4, OpenBSD-3.[67], RHEL[34], OSX 10.4.1
Posts: 1,197

Rep: Reputation: 47
What do you get when you cat /dev/sndstat? "something" isn't much to go on ...

I suspect that emu10k1 isn't going to do you much good as it's for the SBLive! and Audigy series cards, which you don't have.

You should probably be using snd_via8233 or snd_via82c686, but the output of sndstat will help say for sure.

Also, please post the output of dmesg | grep -i via and dmesg | grep -i snd (if any)

Last edited by sigsegv; 03-30-2005 at 05:03 PM.
 
Old 03-31-2005, 08:36 AM   #4
Ekkume
Member
 
Registered: Mar 2005
Location: Finland
Distribution: Debian Sid, FreeBSD, Mandrake, Red Hat
Posts: 84

Original Poster
Rep: Reputation: 15
This is what I get when I manually load the module:
smithbsd# kldload snd_via82c686
pcm0: <VIA VT82C686A> port 0x3204-0x3207,0x3200-0x3203,0x3100-0x31ff irq 5 at device 7.5 on pci0
pcm0: [GIANT-LOCKED]
pcm0: <Cirrus Logic CS4299 AC97 Codec>

here is what I get when I type: cat /dev/sndstat
smithbsd# cat /dev/sndstat
FreeBSD Audio Driver (newpcm)
Installed devices:
pcm0: <VIA VT82C686A> at io 0x3100 irq 5 kld snd_via82c686 (1p/1r/0v channels duplex default)

Using emu10k1 and the other Soundblaster drivers didn't work, even though Compaq says in the specs that this has a Soundblaster compatible sound setup. Only the snd_via82c686 module says anything when I load it.

So why does it remain silent?

Ekkume






Quote:
Originally posted by sigsegv
What do you get when you cat /dev/sndstat? "something" isn't much to go on ...

I suspect that emu10k1 isn't going to do you much good as it's for the SBLive! and Audigy series cards, which you don't have.

You should probably be using snd_via8233 or snd_via82c686, but the output of sndstat will help say for sure.

Also, please post the output of dmesg | grep -i via and dmesg | grep -i snd (if any)

Last edited by Ekkume; 03-31-2005 at 08:40 AM.
 
Old 03-31-2005, 11:20 AM   #5
sigsegv
Senior Member
 
Registered: Nov 2004
Location: Third rock from the Sun
Distribution: NetBSD-2, FreeBSD-5.4, OpenBSD-3.[67], RHEL[34], OSX 10.4.1
Posts: 1,197

Rep: Reputation: 47
Are you using outlook to edit your posts? Don't top post ...

Run mixer in a shell and see if the volume is just all the way down. man mixer for more info.
 
Old 03-31-2005, 11:28 AM   #6
Ekkume
Member
 
Registered: Mar 2005
Location: Finland
Distribution: Debian Sid, FreeBSD, Mandrake, Red Hat
Posts: 84

Original Poster
Rep: Reputation: 15
Quote:
Originally posted by sigsegv
Are you using outlook to edit your posts? Don't top post ...

Run mixer in a shell and see if the volume is just all the way down. man mixer for more info.
Topposting is my style. If I post, I want my post on top, not other peoples' posts. For this thread, for you. I will try to remember not to do it.
Sometimes people post the most dreadful stuff, which I don't
want people to have to wade through.

Mixer has been checked in the console. All the settings are up high. (90-100%)

I am not using Outlook. I haven't configured wine yet in this PC from where I am posting. :- ) Until then, Konqueror has to suffice. ;-)

Ekkume

Last edited by Ekkume; 03-31-2005 at 12:51 PM.
 
Old 03-31-2005, 12:54 PM   #7
sigsegv
Senior Member
 
Registered: Nov 2004
Location: Third rock from the Sun
Distribution: NetBSD-2, FreeBSD-5.4, OpenBSD-3.[67], RHEL[34], OSX 10.4.1
Posts: 1,197

Rep: Reputation: 47
Quote:
Originally posted by Ekkume
Topposting is my style. If I post, I want my post on top, not other peoples' posts. For this thread, for you. I will try to remember not to do it.
Sometimes people post the most dreadful stuff, which I don't
want people to have to wade through.
Then just reply. You don't have to quote the last message in a forum as it's always there, unless of course if you're replying to a post a couple of posts up, and then you would want to quote the pertinent pieces so everyone will know what you're talking about. Even then though, top posting is as much a "style" in the english language as dyslexia. You read a page top to bottom, not bottom to top.

Example:

Because top posting messes up the flow of reading.
How come?
I prefer to bottom-post.
What do you do instead?
No.
Do you like top-posting?

Quote:
Originally posted by Ekkume
Mixer has been checked in the console. All the settings are up high. (90-100%)

Ekkume
You know, now that I think about it, I have a desktop machine with this same sound chip in it and it had exactly the same problem. I remember at the time I thought that it was just dead (I didn't have another OS to try on it at the time), but perhaps it's not after all.

It looks like we're not the only people who have seen this problem though
 
Old 04-01-2005, 11:28 PM   #8
Ekkume
Member
 
Registered: Mar 2005
Location: Finland
Distribution: Debian Sid, FreeBSD, Mandrake, Red Hat
Posts: 84

Original Poster
Rep: Reputation: 15
Quote:
You know, now that I think about it, I have a desktop machine with this same sound chip in it and it had exactly the same problem. I remember at the time I thought that it was just dead (I didn't have another OS to try on it at the time), but perhaps it's not after all.

It looks like we're not the only people who have seen this problem though

I submitted a bug report to FreeBSD and gave a link to that previous bug report for the same sound chip. Hopefully a solution can easily be found.

William

Last edited by Ekkume; 04-01-2005 at 11:29 PM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
WPC54g detected but "hardware not present" pontke Linux - Wireless Networking 9 10-18-2005 06:20 PM
CD Player. Sound only works with Kaffeine, XMMS is "silent" :( m15a4 Linux - General 1 07-10-2004 01:32 PM
Sound problem with "alsamixer" or "alsaconf" or sth else maybe... Mikuda Linux - Games 4 05-01-2004 11:09 AM
A few annoying problems; Cannot locate theme & "No DFP detected". Ninja Cow Slackware 0 04-29-2004 12:01 AM
Does "ac97 & RH8" imply "buy a Sound Blaster Live"? nicktoop Linux - Hardware 3 02-13-2004 08:53 AM

LinuxQuestions.org > Forums > Other *NIX Forums > *BSD

All times are GMT -5. The time now is 12:36 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration