Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 18 Oct 1999 16:42:12 +0200
From:      sthaug@nethelp.no
To:        van.woerkom@netcologne.de
Cc:        freebsd-current@FreeBSD.ORG
Subject:   Re: current unable to attach USB, Power Mgmt, sound
Message-ID:  <84276.940257732@verdi.nethelp.no>
In-Reply-To: Your message of "Mon, 18 Oct 1999 10:41:26 %2B0200 (CEST)"
References:  <199910180841.KAA02406@oranje.my.domain>

next in thread | previous in thread | raw e-mail | index | archive | help
> > > pcm0: unable to map register space
> > > device_probe_and_attach: pcm0 attach returned 6
> > 
> > This is an Abit BP6 board with two Celeron 366, 256 MByte memory, one
> > Soundblaster PCI 128 (pcm0) and one Hoontech (pcm1) sound card. Below is
> > the complete dmesg from today's current, and the kernel config.
> 
> I reported the same problem. PCI 128 uses the same ES1370 chip as the 
> Audio PCI.

The following patch from Doug Rabson fixed the USB and sound problem for
me. It has already bee committed to -current. It did not fix the power
management (intpm0) problem.

Steinar Haug, Nethelp consulting, sthaug@nethelp.no
----------------------------------------------------------------------
RCS file: /home/ncvs/src/sys/pci/pci.c,v
retrieving revision 1.122
diff -u -r1.122 pci.c
--- pci.c	1999/10/14 21:38:31	1.122
+++ pci.c	1999/10/16 19:11:27
@@ -1032,7 +1032,7 @@
 #endif
 		if (type == SYS_RES_IOPORT && !pci_porten(cfg))
 			continue;
-		if (type == SYS_RES_IOPORT && !pci_memen(cfg))
+		if (type == SYS_RES_MEMORY && !pci_memen(cfg))
 			continue;
 
 		resource_list_add(rl, type, reg,


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-current" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?84276.940257732>