Re: Sound problems

2008-08-12 Thread Manolis Kiagias

Bernt Hansson wrote:

Hello list.

Realy need some help!

I can't seem to get snd_hda module to load from /boot/loader.conf

Loading the module manualy is ok.

loader.conf

hw.ata.atapi_dma=1
atapicam_load=YES
if_tap_load=YES
aio_load=YES

##
###  Sound modules  ##
##
sound_load=YES # Digital sound subsystem
SNIP
#snd_hda_load=YES   # Intel High Definition Audio (Controller)
  


Well, it seems the snd_hda_load line is commented out ;)
Also you don't need to add sound_load=YES, just by adding 
snd_hda_load=YES the generic sound module will be loaded as well.
If anything else fails for some weird reason, you can always compile 
sound support into the kernel. Just add these two lines in your kernel 
configuration file:


device sound
device snd_hda

rebuild, reboot, done.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Sound problems

2008-08-12 Thread Al Plant

Bernt Hansson wrote:

Hello list.

Realy need some help!

I can't seem to get snd_hda module to load from /boot/loader.conf

Loading the module manualy is ok.

loader.conf

hw.ata.atapi_dma=1
atapicam_load=YES
if_tap_load=YES
aio_load=YES

##
###  Sound modules  ##
##
sound_load=YES # Digital sound subsystem
#snd_ad1816_load=NO# ad1816
#snd_als4000_load=NO   # als4000
#snd_atiixp_load=NO# atiixp
#snd_cmi_load=NO   # cmi
#snd_cs4281_load=NO# cs4281
#snd_csa_load=NO   # csa
#snd_ds1_load=NO   # ds1
#snd_emu10k1_load=NO   # Creative Sound Blaster Live
#snd_emu10kx_load=NO   # Creative SoundBlaster Live! and Audigy
#snd_envy24_load=NO# VIA Envy24
#snd_envy24ht_load=NO  # VIA Envy24HT
#snd_es137x_load=NO# es137x
#snd_ess_load=NO   # ess
#snd_fm801_load=NO # fm801
#snd_hda_load=YES   # Intel High Definition Audio (Controller)
#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_sb16_load=NO  # Sound Blaster 16
#snd_sb8_load=NO   # Sound Blaster Pro
#snd_sbc_load=NO   # Sbc
#snd_solo_load=NO  # Solo
#snd_spicds_load=NO# SPI codecs
#snd_t4dwave_load=NO   # t4dwave
#snd_via8233_load=NO   # via8233
#snd_via82c686_load=NO # via82c686
#snd_vibes_load=NO # vibes
#snd_driver_load=NO# All sound drivers

System:
FreeBSD 7.0-RELEASE #0: Sun Feb 24 10:35:36 UTC 2008
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/GENERIC
Timecounter i8254 frequency 1193182 Hz quality 0
CPU: AMD Athlon(tm) 64 X2 Dual Core Processor 6400+ (3214.65-MHz
K8-class CPU)
  Origin = AuthenticAMD  Id = 0x40f33  Stepping = 3

Features=0x178bfbffFPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CLFLUSH,MMX,FXSR,SSE,SSE2,HTT
  Features2=0x2001SSE3,CX16
  AMD Features=0xea500800SYSCALL,NX,MMX+,FFXSR,RDTSCP,LM,3DNow!+,3DNow!
  AMD Features2=0x1fLAHF,CMP,SVM,ExtAPIC,CR8
  Cores per package: 2
usable memory = 8575430656 (8178 MB)
avail memory  = 8288096256 (7904 MB)
ACPI APIC Table: GBTGBTUACPI
FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs
 cpu0 (BSP): APIC ID:  0
 cpu1 (AP): APIC ID:  1
ioapic0: Changing APIC ID to 2
ioapic0 Version 2.1 irqs 0-23 on motherboard
kbd1 at kbdmux0
ath_hal: 0.9.20.3 (AR5210, AR5211, AR5212, RF5111, RF5112, RF2413, RF5413)
hptrr: HPT RocketRAID controller driver v1.1 (Feb 24 2008 10:34:18)
acpi0: GBT GBTUACPI on motherboard
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Aloha,

Try this syntax... it works for me.

snd_driver_load=YES

--

~Al Plant - Honolulu, Hawaii -  Phone:  808-284-2740
  + http://hawaiidakine.com + http://freebsdinfo.org +
  + http://aloha50.net   - Supporting - FreeBSD 6.* - 7.* - 8.* +
   email: [EMAIL PROTECTED] 
All that's really worth doing is what we do for others.- Lewis Carrol

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Sound problems

2008-08-12 Thread Bernt Hansson



Manolis Kiagias skrev:

Bernt Hansson wrote:

Hello list.

Realy need some help!

I can't seem to get snd_hda module to load from /boot/loader.conf

Loading the module manualy is ok.

loader.conf

hw.ata.atapi_dma=1
atapicam_load=YES
if_tap_load=YES
aio_load=YES

##
###  Sound modules  ##
##
sound_load=YES # Digital sound subsystem
SNIP
#snd_hda_load=YES   # Intel High Definition Audio 
(Controller)
  


Well, it seems the snd_hda_load line is commented out ;)


Yes ;)

Also you don't need to add sound_load=YES, just by adding 
snd_hda_load=YES the generic sound module will be loaded as well.


Aha. I didn't know that.

If anything else fails for some weird reason, you can always compile 
sound support into the kernel. Just add these two lines in your kernel 
configuration file:


device sound
device snd_hda

rebuild, reboot, done.


Yes, but I want to keep generic as generic as possible

I also have some usb mouse problems. Input on the subject usb mouse 
problem are welcome.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Sound problems

2008-08-12 Thread Al Plant

Bernt Hansson wrote:

Manolis Kiagias skrev:


sound_load=YES # Digital sound subsystem
SNIP
#snd_hda_load=YES   # Intel High Definition Audio (Controller)
  

Well, it seems the snd_hda_load line is commented out ;)
Also you don't need to add sound_load=YES, just by adding 
snd_hda_load=YES the generic sound module will be loaded as well.


Well, that's not working, so I'm not going to compile it in the kernel.

This is what's found when snd_hda=YES is in the /boot/loader.conf

 pcm0: ATI SB600 High Definition Audio Controller mem
0xfe024000-0xfe027fff irq 16 at device 20.2 on pci0
pcm0: [ITHREAD]
pcm0: HDA Codec: Realtek ALC885
pcm0: HDA Driver Revision: 20071129_0050
pcm1: ATI (Unknown) High Definition Audio Controller mem
0xfddfc000-0xfddf irq 19 at device 0.1 on pci1
pcm1: [ITHREAD]
pcm1: HDA Codec: Unknown Codec
pcm1: HDA Driver Revision: 20071129_0050
pcm0: ATI (Unknown) High Definition Audio Controller mem
0xfddfc000-0xfddf irq 19 at device 0.1 on pci1
pcm0: [ITHREAD]
pcm1: ATI SB600 High Definition Audio Controller mem
0xfe024000-0xfe027fff irq 16 at device 20.2 on pci0
pcm1: [ITHREAD]
pcm0: HDA Codec: Unknown Codec
pcm0: HDA Driver Revision: 20071129_0050
pcm1: HDA Codec: Realtek ALC885
pcm1: HDA Driver Revision: 20071129_0050
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Aloha,

Try putting this in the boot/loader.conf

sound_driver_load=YES

This loads the driver it is already in there.

~Al Plant - Honolulu, Hawaii -  Phone:  808-284-2740
  + http://hawaiidakine.com + http://freebsdinfo.org +
  + http://aloha50.net   - Supporting - FreeBSD 6.* - 7.* - 8.* +
   email: [EMAIL PROTECTED] 
All that's really worth doing is what we do for others.- Lewis Carrol

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Sound problems on Thinkpad T43

2008-01-28 Thread Wojciech Puchar


Installed devices:
pcm0: Intel ICH6 (82801FB) at io 0x90040800, 0x90040400 irq 22 bufsz
16384  (1p/1r/1v channels duplex default)


looks ok but check in dmesg too



My mixer settings:

Mixer vol  is currently set to  30:30
Mixer pcm  is currently set to  75:75
Mixer line is currently set to  75:75
Mixer mic  is currently set to  25:25
Mixer cd   is currently set to  75:75
Mixer rec  is currently set to  25:25
Mixer igainis currently set to  25:25
Mixer ogainis currently set to  50:50
Mixer line1is currently set to  75:75
Mixer phin is currently set to  25:25
Mixer phoutis currently set to  25:25
Recording source: mic


what works on my thinkpad (but not T21, too snd_ich):

Mixer vol  is currently set to  80:80
Mixer pcm  is currently set to  80:80
Mixer speaker  is currently set to  50:50
Mixer line is currently set to  75:75
Mixer mic  is currently set to   0:0
Mixer cd   is currently set to  75:75
Mixer rec  is currently set to   0:0
Mixer igainis currently set to   0:0
Mixer ogainis currently set to  50:50
Mixer line1is currently set to  75:75
Mixer phin is currently set to   0:0
Mixer phoutis currently set to   0:0
Mixer videois currently set to  75:75

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Sound problems on Thinkpad T43

2008-01-28 Thread Alex Kloss
Hello all,

I have FreeBSD 6.3-STABLE running on a Thinkpad T43. It works
wonderfully, I love it so far. The only problem is that I can't get my
sound card to output any sound.

This is what pciconf says:

[EMAIL PROTECTED]:30:2:class=0x040100 card=0x05671014 chip=0x266e8086
rev=0x03 hdr=0x00
vendor = 'Intel Corporation'
device = 'Intel Corporation  82830M/MG SDRAM Controller / Ho
AC '97 Audio Controller/ Sigmatel (SoundMAX Integrated Digital Audio)'
class  = multimedia
subclass   = audio

Now, the handbook says that this card is supported by the snd_ich
module. I first tried loading this module, but I couldn't get any
sound out of it at all. Then, I tried statically-compiling the module
into the kernel. This also didn't work.

I'm at a complete loss. Every resource I've found says that snd_ich
should support this card. In fact, I know that it supports the card,
because /dev/sndstat says so:

FreeBSD Audio Driver (newpcm)
Installed devices:
pcm0: Intel ICH6 (82801FB) at io 0x90040800, 0x90040400 irq 22 bufsz
16384  (1p/1r/1v channels duplex default)

My mixer settings:

Mixer vol  is currently set to  30:30
Mixer pcm  is currently set to  75:75
Mixer line is currently set to  75:75
Mixer mic  is currently set to  25:25
Mixer cd   is currently set to  75:75
Mixer rec  is currently set to  25:25
Mixer igainis currently set to  25:25
Mixer ogainis currently set to  50:50
Mixer line1is currently set to  75:75
Mixer phin is currently set to  25:25
Mixer phoutis currently set to  25:25
Recording source: mic

And uname -a:

FreeBSD mephistophilis 6.3-STABLE FreeBSD 6.3-STABLE #5: Sun Jan 20
14:00:12 EST 2008
[EMAIL PROTECTED]:/usr/src/sys/i386/compile/MEPHISTOPHILIS  i386

(Apologies for the line-wrapping. GMail doesn't seem to play nicely
with long lines)

I've tried doing `cat somefile  /dev/dsp` to no avail, as per the
handbook. I've also used Mplayer on some MP3s I have, but this also
does not work.

Has anyone seen this problem before, or know how to fix it? I would
really love to keep using FreeBSD as a desktop machine, but I might
have to use Linux again if I can't get my sound working.

Thanks!

Alex Kloss
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Sound problems on Thinkpad T43

2008-01-28 Thread Alex Kloss
Actually, I discovered that the Thinkpad has a hardware mixer
(controlled by three volume buttons above the keyboard) that FreeBSD
doesn't control. Apparently I had accidentally muted this mixer. Once
I unmuted it, my sound returned. Silly thing not to notice before
asking the list, but no harm done I suppose.

Thanks anyway everyone!

Alex Kloss

On Jan 28, 2008 1:58 PM, Mark D. Foster [EMAIL PROTECTED] wrote:

 Alex Kloss wrote:
  Ok, never mind. After changing my settings to those of Wojciech's, the
  sound still didn't work. I booted the system with a Fedora 7 Live CD
  and tried playing some music, but I didn't get any sound out of it
  then, either.
 
  It looks like the card on this Thinkpad has died. Shame, too, I just
  unboxed it three weeks ago.
 
  Thanks anyway!
  ___
  freebsd-questions@freebsd.org mailing list
  http://lists.freebsd.org/mailman/listinfo/freebsd-questions
  To unsubscribe, send any mail to [EMAIL PROTECTED]
 
 Do you have it docked with the lid closed?
 Because on my T60 the sound doesn't work either when the system is
 docked. I have to open the lid and press on the volume buttons to get it
 working.
 Something (easy) to try perhaps.


 --
 Some days it's just not worth chewing through the restraints...
 Mark D. Foster, CISSP [EMAIL PROTECTED]  http://mark.foster.cc/



___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Sound problems on Thinkpad T43

2008-01-28 Thread Alex Kloss
Ok, never mind. After changing my settings to those of Wojciech's, the
sound still didn't work. I booted the system with a Fedora 7 Live CD
and tried playing some music, but I didn't get any sound out of it
then, either.

It looks like the card on this Thinkpad has died. Shame, too, I just
unboxed it three weeks ago.

Thanks anyway!
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: sound problems

2005-05-10 Thread Lowell Gilbert
Kyle Lafkoff [EMAIL PROTECTED] writes:

 loaded sound / snd_ess
 
 dmesg shows:
 
 pcm0: ESS Technology Maestro-2E port 0xd800-0xd8ff irq 5 at device 8.0 on 
 pci0
 pcm0: cannot allocate DMA memory
 device_attach: pcm0 attach returned 6
 pcm0: ESS Technology Maestro-2E port 0xd800-0xd8ff irq 5 at device 8.0 on 
 pci0
 pcm0: cannot allocate DMA memory
 
 ???

Looks like snd_ess isn't the right driver.

Try the recommendation from the handbook:  load snd_driver
(which loads *all* of the drivers) and see which one it 
uses (and whether it works).
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: sound problems

2005-05-10 Thread Kyle Lafkoff
heh, i tried this before and i had no luck, nothing would list when i
``cat /dev/sndstat'' but seems to work now

this is after i stopped using my cardbus ethernet card, which was
required for internet access before i configured wifi access in my
house today.

thanks.

On 10 May 2005 16:21:45 -0400, Lowell Gilbert
[EMAIL PROTECTED] wrote:
 Kyle Lafkoff [EMAIL PROTECTED] writes:
 
  loaded sound / snd_ess
 
  dmesg shows:
 
  pcm0: ESS Technology Maestro-2E port 0xd800-0xd8ff irq 5 at device 8.0 on 
  pci0
  pcm0: cannot allocate DMA memory
  device_attach: pcm0 attach returned 6
  pcm0: ESS Technology Maestro-2E port 0xd800-0xd8ff irq 5 at device 8.0 on 
  pci0
  pcm0: cannot allocate DMA memory
 
  ???
 
 Looks like snd_ess isn't the right driver.
 
 Try the recommendation from the handbook:  load snd_driver
 (which loads *all* of the drivers) and see which one it
 uses (and whether it works).

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


sound problems

2005-05-09 Thread Kyle Lafkoff
loaded sound / snd_ess

dmesg shows:

pcm0: ESS Technology Maestro-2E port 0xd800-0xd8ff irq 5 at device 8.0 on pci0
pcm0: cannot allocate DMA memory
device_attach: pcm0 attach returned 6
pcm0: ESS Technology Maestro-2E port 0xd800-0xd8ff irq 5 at device 8.0 on pci0
pcm0: cannot allocate DMA memory

???
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: More BSD/KDE Sound Problems

2005-04-05 Thread Bachelier Vincent
use the oss drivers
sound is real good, and you can use it personaly for free

Le Sat, Apr 02, 2005 at 03:50:54PM -0800, Spiral Eyed Girl a écrit:
 From: Spiral Eyed Girl [EMAIL PROTECTED]
 To: freebsd-questions@freebsd.org
 Date: Sat, 02 Apr 2005 15:50:54 -0800
 Subject: More BSD/KDE Sound Problems
 
 I got sound working correctly with my SoundBlaster Audigy MP3+, but I have 
 a problem with sound quality. It sounds hollow, like you are listening to 
 really loud headphones a few feet away from you.
 
 Has anyone experienced this problem (with or without an audigy card), and 
 do you have any solutions? I know SBA support for freebsd is new, but I 
 need to know if I setup something wrong, or if it's just because support is 
 new and incomplete.
 
 Thanks
 
 S.
 
 

-- 
Vincent Bachelier [EMAIL PROTECTED]
Language: Francais / English
Societ(e/y) : Solintech - http://www.solintech.fr - Serveurs linux

Citation (fortune):

Millihelen, adj:
The amount of beauty required to launch one ship.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


More BSD/KDE Sound Problems

2005-04-04 Thread Spiral Eyed Girl
I got sound working correctly with my SoundBlaster Audigy MP3+, but I have a 
problem with sound quality. It sounds hollow, like you are listening to 
really loud headphones a few feet away from you.

Has anyone experienced this problem (with or without an audigy card), and do 
you have any solutions? I know SBA support for freebsd is new, but I need to 
know if I setup something wrong, or if it's just because support is new and 
incomplete.

Thanks
S.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Some sound problems with an Asus A7N8X-X motherboard

2005-02-21 Thread Lowell Gilbert
Mattias Björk [EMAIL PROTECTED] writes:

 I have a Asus A7N8X-X motherboard and I wounder what exactly are the
 right kernel module I should load to get my sound working.
 
 I have solved this buy setting snd_driver_load to YES in
 /boot/loader.conf. But I don't think that its the best
 solution. Because it loads all the kernel modules for sound. So my
 question is, what is the correct module or how do I figure that out.

Look at /dev/sndstat; it will tell you.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Some sound problems with an Asus A7N8X-X motherboard

2005-02-20 Thread Mattias Björk
Dear list,
I have a Asus A7N8X-X motherboard and I wounder what exactly are the 
right kernel module I should load to get my sound working.

I have solved this buy setting snd_driver_load to YES in 
/boot/loader.conf. But I don't think that its the best solution. Because 
it loads all the kernel modules for sound. So my question is, what is 
the correct module or how do I figure that out.

I have tried to load the modules one by one, but that did not get my 
sound card working. It was when I set snd_driver_load to YES in 
loader.conf and then rebooted that solved the problem.

Another problem I have is also that I could only play one 
sound/soundstream at the time. Before I replaced my not so very stable 
motherboard with this one I was able to play more than one sound at one 
time.

Perhaps this is something that I should set with sysclt, but then again 
I don't remember doing it with the old motherboard. Here below are the 
output of kldstat, scanpci and selected info from dmesg:

kldstat:
I Id Refs AddressSize Name
 1   64 0xc040 36e518   kernel
 21 0xc076f000 5efc vesa.ko
 32 0xc0775000 1f0eclinux.ko
 41 0xc0795000 3290 snd_driver.ko
 52 0xc0799000 5cd8 snd_vibes.ko
 62 0xc079f000 4c28 snd_via82c686.ko
 72 0xc07a4000 5d9c snd_via8233.ko
 82 0xc07aa000 5aa4 snd_t4dwave.ko
 92 0xc07b 5e04 snd_solo.ko
105 0xc07b6000 4dcc snd_sbc.ko
112 0xc07bb000 5304 snd_sb16.ko
122 0xc07c1000 4e7c snd_sb8.ko
132 0xc07c6000 119fcsnd_neomagic.ko
143 0xc07d8000 c734 snd_mss.ko
152 0xc07e5000 9378 snd_maestro3.ko
162 0xc07ef000 7840 snd_maestro.ko
172 0xc07f7000 5ea4 snd_ich.ko
182 0xc07fd000 50f4 snd_fm801.ko
193 0xc0803000 637c snd_ess.ko
202 0xc080a000 68ac snd_es137x.ko
212 0xc0811000 7ef4 snd_emu10k1.ko
222 0xc0819000 b8cc snd_ds1.ko
234 0xc0825000 8624 snd_csa.ko
242 0xc082e000 583c snd_cs4281.ko
252 0xc0834000 5a1c snd_cmi.ko
262 0xc083a000 52bc snd_als4000.ko
272 0xc084 51fc snd_ad1816.ko
281 0xc0846000 1c0c io.ko
292 0xc0848000 4844 mem.ko
301 0xc084d000 4aea88   nvidia.ko
31   14 0xc0cfc000 5dbf4acpi.ko
321 0xc207a000 a000 ntfs.ko
scanpci:
pci bus 0x cardnum 0x00 function 0x00: vendor 0x10de device 0x01e0
 nVidia Corporation nForce2 AGP (different version?)
 CardVendor 0x1043 card 0x80ac (Asustek Computer, Inc., Card unknown)
  STATUS0x00b0  COMMAND 0x0006
  CLASS 0x06 0x00 0x00  REVISION 0xc1
  BIST  0x00  HEADER 0x80  LATENCY 0x00  CACHE 0x00
  BASE0 0xd008  addr 0xd000  MEM PREFETCHABLE
  BYTE_00x02  BYTE_1  0x60  BYTE_2  0x20  BYTE_3  0x00
pci bus 0x cardnum 0x00 function 0x01: vendor 0x10de device 0x01ea
 nVidia Corporation nForce2 Memory Controller 0
 CardVendor 0x1043 card 0x80ac (Asustek Computer, Inc., Card unknown)
  STATUS0x0020  COMMAND 0x
  CLASS 0x05 0x00 0x00  REVISION 0xc1
  BIST  0x00  HEADER 0x80  LATENCY 0x00  CACHE 0x00
  MAX_LAT   0x00  MIN_GNT 0x00  INT_PIN 0x00  INT_LINE 0xff
  BYTE_00x04  BYTE_1  0x00  BYTE_2  0x00  BYTE_3  0x70
pci bus 0x cardnum 0x00 function 0x02: vendor 0x10de device 0x01ee
 nVidia Corporation nForce2 Memory Controller 4
 CardVendor 0x1043 card 0x80ac (Asustek Computer, Inc., Card unknown)
  STATUS0x0020  COMMAND 0x
  CLASS 0x05 0x00 0x00  REVISION 0xc1
  BIST  0x00  HEADER 0x80  LATENCY 0x00  CACHE 0x00
  MAX_LAT   0x00  MIN_GNT 0x00  INT_PIN 0x00  INT_LINE 0xff
  BYTE_00x01  BYTE_1  0x10  BYTE_2  0xca  BYTE_3  0x12
pci bus 0x cardnum 0x00 function 0x03: vendor 0x10de device 0x01ed
 nVidia Corporation nForce2 Memory Controller 3
 CardVendor 0x1043 card 0x80ac (Asustek Computer, Inc., Card unknown)
  STATUS0x0020  COMMAND 0x
  CLASS 0x05 0x00 0x00  REVISION 0xc1
  BIST  0x00  HEADER 0x80  LATENCY 0x00  CACHE 0x00
  BYTE_00x30  BYTE_1  0x00  BYTE_2  0x00  BYTE_3  0x00
pci bus 0x cardnum 0x00 function 0x04: vendor 0x10de device 0x01ec
 nVidia Corporation nForce2 Memory Controller 2
 CardVendor 0x1043 card 0x80ac (Asustek Computer, Inc., Card unknown)
  STATUS0x0020  COMMAND 0x
  CLASS 0x05 0x00 0x00  REVISION 0xc1
  BIST  0x00  HEADER 0x80  LATENCY 0x00  CACHE 0x00
  MAX_LAT   0x00  MIN_GNT 0x00  INT_PIN 0x00  INT_LINE 0xff
pci bus 0x cardnum 0x00 function 0x05: vendor 0x10de device 0x01ef
 nVidia Corporation nForce2 Memory Controller 5
 CardVendor 0x1043 card 0x80ac (Asustek Computer, Inc., Card unknown)
  STATUS0x0020  COMMAND 0x
 CLASS 0x05 0x00 0x00  REVISION 0xc1
  BIST  0x00  HEADER 0x80  LATENCY 0x00  CACHE 0x00
  MAX_LAT   0x00  MIN_GNT 0x00  INT_PIN 0x00  INT_LINE 0xff
pci bus 0x cardnum 0x01 function 0x00: vendor 0x10de device 0x0060
 nVidia Corporation nForce2 ISA Bridge
 CardVendor 0x1043 card 0x80ad (Asustek Computer, Inc. A7N8X Mainboard)
  STATUS0x00b0 

Sound problems in vesa

2005-01-04 Thread Mervin McDougall
 I have noticed that since I have enabled vesa on my
laptop there has been difficulty with my sound.. in
that whenever I am switching from one screen
resolution to another I get this grumbling sound over
my speakers when music is being played. I thought this
was limited to me switching from X to a vesa console
but the same problem occurs when at the console when
switching from one console at 1024x768 to 80x30. I
have been fighting to figure out the problem for ages
with freebsd 5.3. I am not sure whether anyone else
has experienced the same problem and what can be done
to improve the situation. I am running freebsd on my
compaq presario 2100 laptop.

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


ICH4 sound problems

2004-06-05 Thread Seb
I finally got it to work, using the this patch :
http://www.freebsd.org/cgi/query-pr.cgi?pr=misc/61388


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Sound problems..

2004-04-12 Thread J Mc.
i have no sound, and i think its du to my sound card, which is on board my mobo. im 
not sure what type card it is, and not sure how to fix this problem. this is the mobo 
tho

http://www.ecsusa.com/products/k7som.html

any help would be great, but if you can STEP-BY-STEP would be GREAT. im a 
bsd/unix/linux newb, but i want to learn and this will help i think :)

thanks!
   Josey McCormick


-
Do you Yahoo!?
Yahoo! Tax Center - File online by April 15th
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Sound problems..

2004-04-12 Thread Martin Hudec
Hello,

it would be nice, if you could paste here your dmesg output..
But looks like your mainboard is from the same supplier like mine k7s5al
(ECS Group), so i think all you need is to add device pcm to your kernel 
configuration.

STEP BY STEP GUIDE:

1. cd to /usr/src/sys/i386/conf
2. copy GENERIC file to MYKERNEL (give it any name you like)
3. edit it (don't remove anything unless you know what you're doing), just
add there line:

device pcm

You will tweak your kernel later, good start for information is handbook and
its kernel part at 
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig.html.

4. cd to /usr/src
5. type: make buildkernel KERNCONF=MYKERNEL (or any name you gave it)
6. if all is okay, type: make installkernel KERNCONF=MYKERNEL
7. reboot

After this you should see in your dmesg lines like:

pcm0: SiS 7012 port 0xd800-0xd83f,0xdc00-0xdcff irq 11 at device 2.7 on pci0
pcm0: Realtek ALC100 AC97 Codec


Cheers,

Martin



On Sun, Apr 11, 2004 at 09:26:38PM -0700 or thereabouts, J Mc. wrote:
 i have no sound, and i think its du to my sound card, which is on board 
 my mobo. im not sure what type card it is, and not sure how to fix this 
 problem. this is the mobo tho
 
 http://www.ecsusa.com/products/k7som.html
 
 any help would be great, but if you can STEP-BY-STEP would be GREAT. 
 im a bsd/unix/linux newb, but i want to learn and this will help i 
 think :)

-- 
Martin Hudec| corwin at aeternal.net
| corwin at web.markiza.sk
http://www.aeternal.net | cell +421 907 303 393

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


[RELENG_4] Sound problems

2004-01-29 Thread Norbert Koch
Hi!

After a cvsup and molding of a new stable world on 2004-01-26 I no
longer have sound on my machine (mplayer and cdcontrol).  I haven't
changed the kernel configuration, so I rule this possible reason out.
The option is set as

# Audio support
device  pcm
device  sbc


dmesg says:
pcm0: Intel ICH4 (82801DB) port 0xa400-0xa43f,0xa800-0xa8ff mem
  0xec00-0xecff,0xec80-0xec8001ff irq 9 at device 31.5
  on pci0
pcm0: Analog Devices AD1980 AC97 Codec


(and the speakers are plugged into the mic input, because the vendor
is brain damaged, but that's another story).

Could someone please give me a hint where I should start looking for
causes?  I've run a MAKEDEV after the installworld, so maybe this can
count for the misbehaviour (but I've recreated the audio devices, to
no avail).

Thanks,
norbert.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Ogle and sound problems...

2003-10-07 Thread Eric F Crist
Hey, I already posted once about this, and after a little more investigation, 
I'm finding that the dsp device is simply busy.  I created a test account, 
with the .xinitrc file simply containing: exec ogle /dev/acd1 and the DVD 
played with sound (although choppy, but I'm following the other post).

I would like to use Ogle from inside KDE, but I'm not sure, and have not seen 
anything in google or these posts about this problem.  How do I make ogle use 
either the aRTS server, or just force it to use the /dev/dsp method? (I've 
tried running ogle as root, too)


-- 
Eric F Crist
AdTech Integrated Systems, Inc
(952) 403-9000


pgp0.pgp
Description: signature


.profile and sound problems

2003-07-11 Thread Simon Adameit
Hi,

I use the bash shell and wanted to change the prompt and some aliases to 
use the gnu color ls, so I copied .shrc to .bash_profile and edited it 
accordingly. I also added java to the PATH in .profile. At first this 
didn't work when using the gnome terminal until I realised I had to 
change it to use a login shell. For a short time everything was fine but 
now .profile is completely ignored and when I start cvsup under gnome 
the text version and not the gui is used. I don't know if this has 
anything to do with it but I'm using gdm.

The second problem I'm having is probably not related to the first. I 
have a Sound Blaster AudioPCI 128 and compiled a custom kernel where I 
added device pcm and removed some stuff I dont need. The first few times 
the sound worked fine but now sometimes there are no mixer vol or pcm 
devices and when I reboot they are sometimes there again and sometimes I 
have to reboot several times before sound works again.

Also could anyone help me compile and use the acx100 driver at 
http://acx100.sourceforge.net ? I didn't find a binary driver for 
FreeBSD and was unable to compile it myself.

I should probably mention that I'm using FreeBSD 5.1 on an athlon-xp.

Thanks in advance,

Simon Adameit

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: .profile and sound problems

2003-07-11 Thread Simon Adameit
Simon Adameit wrote:
Hi,

I use the bash shell and wanted to change the prompt and some aliases to 
use the gnu color ls, so I copied .shrc to .bash_profile and edited it 
accordingly. I also added java to the PATH in .profile. At first this 
didn't work when using the gnome terminal until I realised I had to 
change it to use a login shell. For a short time everything was fine but 
now .profile is completely ignored and when I start cvsup under gnome 
the text version and not the gui is used. I don't know if this has 
anything to do with it but I'm using gdm.

Ok, this was solfed after reading the Bash Reference Manual, I was 
somewhat confused about when wich file is executed.
But I still don't know what to do about the sound or where to look for 
answers.

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Sound problems.

2003-06-24 Thread Kent Stewart
On Monday 23 June 2003 10:52 pm, Duke, Brian wrote:
 My system is a Compaq Deskpro EN P600 machine
 I installed 4.8STABLE and configured the Kernel for sound

 optionPNPBIOS
 devicepcm

 make buildkernel KERNCONF=RAINBUILD
 make installkernel KERNCONF=RAINBUILD

 Everything worked like a dream

 Brought up XFree86
 then brought up KDE3.1.2.

 Started ARTS and tested a sound.  The sound that croaked out sounded like
 the input signal was too high. After lots of adjustments I cannot figure
 out how to reduce the input signal. It sounds like and explosion of white
 noise. Here is the drivers that loaded:

 rain# grep pcm /var/run/dmesg.boot
 pcm0: ESS 18xx DSP on sbc0

 Can someone help me with the finer points of tweaking here? Every time I
 press a button this horrendous scratchy noice comes out of my headphones.


Did you try using kmixer from the start application button on the bottom left. 
Kmixer is in the multimedia section.

Kent



 Brian Duke
 Level(3) Communication / TCAM



 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]

-- 
Kent Stewart
Richland, WA

http://users.owt.com/kstewart/index.html

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Sound problems.

2003-06-24 Thread Derrick Ryalls
 
 optionPNPBIOS
 devicepcm
 

 
 rain# grep pcm /var/run/dmesg.boot
 pcm0: ESS 18xx DSP on sbc0
 

For my ESS audio (1936 or something), I needed the pcm and:

device sbc

not sure if it will make a difference since your card is being detected
on boot, but it might use a different driver with sbc.  Also, don't know
if it is a typo, but shouldn't it be options?

-Derrick


___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Sound problems.

2003-06-24 Thread Duke, Brian
I am using KMixer. That seems to work a little bit.

-Original Message-
From: Kent Stewart [mailto:[EMAIL PROTECTED]
Sent: Tuesday, June 24, 2003 12:15 AM
To: Duke, Brian; [EMAIL PROTECTED]
Subject: Re: Sound problems.


On Monday 23 June 2003 10:52 pm, Duke, Brian wrote:
 My system is a Compaq Deskpro EN P600 machine
 I installed 4.8STABLE and configured the Kernel for sound

 optionPNPBIOS
 devicepcm

 make buildkernel KERNCONF=RAINBUILD
 make installkernel KERNCONF=RAINBUILD

 Everything worked like a dream

 Brought up XFree86
 then brought up KDE3.1.2.

 Started ARTS and tested a sound.  The sound that croaked out sounded like
 the input signal was too high. After lots of adjustments I cannot figure
 out how to reduce the input signal. It sounds like and explosion of white
 noise. Here is the drivers that loaded:

 rain# grep pcm /var/run/dmesg.boot
 pcm0: ESS 18xx DSP on sbc0

 Can someone help me with the finer points of tweaking here? Every time I
 press a button this horrendous scratchy noice comes out of my headphones.


Did you try using kmixer from the start application button on the bottom left. 
Kmixer is in the multimedia section.

Kent



 Brian Duke
 Level(3) Communication / TCAM



 ___
 [EMAIL PROTECTED] mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]

-- 
Kent Stewart
Richland, WA

http://users.owt.com/kstewart/index.html

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Sound problems.

2003-06-23 Thread Duke, Brian
My system is a Compaq Deskpro EN P600 machine
I installed 4.8STABLE and configured the Kernel for sound 

option  PNPBIOS
device  pcm

make buildkernel KERNCONF=RAINBUILD
make installkernel KERNCONF=RAINBUILD

Everything worked like a dream

Brought up XFree86 
then brought up KDE3.1.2.

Started ARTS and tested a sound.  The sound that croaked out sounded like the input 
signal was too high.
After lots of adjustments I cannot figure out how to reduce the input signal. It 
sounds like and explosion of white noise.
Here is the drivers that loaded:

rain# grep pcm /var/run/dmesg.boot
pcm0: ESS 18xx DSP on sbc0

Can someone help me with the finer points of tweaking here? Every time I press a 
button this horrendous scratchy noice comes out of my headphones.

  

Brian Duke
Level(3) Communication / TCAM 



___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]