From owner-freebsd-current Mon Oct 18 7:42:31 1999 Delivered-To: freebsd-current@freebsd.org Received: from verdi.nethelp.no (verdi.nethelp.no [158.36.41.162]) by hub.freebsd.org (Postfix) with SMTP id 518D714BC2 for ; Mon, 18 Oct 1999 07:42:18 -0700 (PDT) (envelope-from sthaug@nethelp.no) Received: (qmail 84278 invoked by uid 1001); 18 Oct 1999 14:42:12 +0000 (GMT) To: van.woerkom@netcologne.de Cc: freebsd-current@FreeBSD.ORG Subject: Re: current unable to attach USB, Power Mgmt, sound From: sthaug@nethelp.no In-Reply-To: Your message of "Mon, 18 Oct 1999 10:41:26 +0200 (CEST)" References: <199910180841.KAA02406@oranje.my.domain> X-Mailer: Mew version 1.05+ on Emacs 19.34.2 Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Date: Mon, 18 Oct 1999 16:42:12 +0200 Message-ID: <84276.940257732@verdi.nethelp.no> Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > > > 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