Date: Mon, 6 May 2002 15:13:01 -0400 (EDT) From: Andrew Gallatin <gallatin@cs.duke.edu> To: Damon Permezel <dap@damon.com> Cc: freebsd-hardware@freebsd.org Subject: Re: problems with dell poweredge 4600 Message-ID: <15574.54717.730771.563800@grasshopper.cs.duke.edu> In-Reply-To: <20020505202815.GR24693@fubar.damon.com> References: <20020505202815.GR24693@fubar.damon.com>
next in thread | previous in thread | raw e-mail | index | archive | help
Damon Permezel writes: > Hi. > I posted a question to "questions" and got no nibbles, so this time, I thought > "hardware" might be more appropriate. > > The poweredge 4600 has oodles of PCI busses, but 4.5-RELEASE-p4 doesn't detect > cards plugged in to three of them, the PCI-X ones. > My guess is this is a server-werks chipset issue. "pciconf -v -l" indicates there are > CMIC-HC server werks devices. > I have tried with a PCI-X card with a BCM570X on it, and also with an old > 64-bit, 33Mhz qlogic F/C card. > > In both cases, the BIOS sees the cards, but the OS doesn't. Can you be more specific about "the OS doesn't" Can you supply dmesg output from a verbose boot, please? Also, try this patch & see if it helps.. Index: i386/isa/pcibus.c =================================================================== RCS file: /home/ncvs/src/sys/i386/isa/Attic/pcibus.c,v retrieving revision 1.57.2.6 diff -u -r1.57.2.6 pcibus.c --- i386/isa/pcibus.c 23 Dec 2001 08:17:43 -0000 1.57.2.6 +++ i386/isa/pcibus.c 6 May 2002 19:11:34 -0000 @@ -197,6 +197,11 @@ *busnum = pci_cfgread(cfg, 0x44, 1); break; + case 0x00111166: + s = "ServerWorks CMIC-HE" + *busnum = pci_cfgread(cfg, 0x44, 1); + break; + /* Integrated Micro Solutions -- vendor 0x10e0 */ case 0x884910e0: s = "Integrated Micro Solutions VL Bridge"; Drew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?15574.54717.730771.563800>