Thread: pciconf -lv
View Single Post
  #7   (View Single Post)  
Old 2nd September 2008
phoenix's Avatar
phoenix phoenix is offline
Risen from the ashes
 
Join Date: May 2008
Posts: 696
Default

Quote:
Originally Posted by disappearedng View Post
Hi everyone
Below is my pciconf -lv output:
No, that was just a portion of your pciconf output. There's nothing in there that's even remotely related to sound.

Code:
none1@pci0:0:31:3:      class=0x0c0500 card=0x81791043 chip=0x27da8086 rev=0x01 hdr=0x00
    vendor     = 'Intel Corporation'
    device     = '82801G (ICH7 Family) SMBus Controller'
    class      = serial bus
    subclass   = SMBus[/quote]

This is the system management bus, used by monitoring tools like mbmon to query system temperatures, fan speeds, things like that.  You can enable support for it using the ichsmb(4) device.  Try kldload ichsmb and see if there's anything mentioned in dmesg output and if a driver is attached in pciconf output.  If there is, then add ichsmb_load="YES" to /boot/loader.conf to have the module loaded automatically at boot.

Quote:
none2@pci0:1:3:0: class=0x0c0010 card=0x815b1043 chip=0x8023104c rev=0x00 hdr=0x00 vendor = 'Texas Instruments (TI)' device = 'TSB43AB21/A IEEE1394a-2000 OHCI PHY/Link-Layer Ctrlr' class = serial bus subclass = FireWire
This is a Firewire (IEEE-1394) controller. If you don't have any Firewire devices, you can ignore this. If you do have Firewire devices, then add firewire_load="YES" to /boot/loader.conf to have the module loaded at boottime, and use kldload firewire to enable it right away.

Quote:
I currently have no sound (gnome complains that there is "no volume control Gstreamer plugins and/or devices found".
Do you have any sound drivers loaded? To load all the available drivers, use kldload sound. Then check the contents of /dev/sndstat using [cmd]cat /dev/sndstat[/cmd]. That will tell you which sound driver was detected and is being used (snd_something). Add snd_whatever_load="YES" to /boot/loader.conf to load just the needed driver at boot time (obviously, replace _whatever with what's listed in sndstat).
__________________
Freddie

Help for FreeBSD: Handbook, FAQ, man pages, mailing lists.
Reply With Quote