From owner-freebsd-stable Wed Apr 25 18: 9:22 2001 Delivered-To: freebsd-stable@freebsd.org Received: from leopard.arbor.edu (leopard.arbor.edu [198.109.194.2]) by hub.freebsd.org (Postfix) with ESMTP id 1376F37B422 for ; Wed, 25 Apr 2001 18:09:18 -0700 (PDT) (envelope-from martym@arbor.edu) Received: (from uucp@localhost) by leopard.arbor.edu (8.9.1a/8.9.1) id VAA16812; Wed, 25 Apr 2001 21:09:17 -0400 (EDT) Received: from puma.admin.arbor.edu(10.0.0.14) via SMTP by leopard.arbor.edu, id smtpdY16785; Wed Apr 25 21:09:07 2001 Received: from algol (ttyc0f.ppp.arbor.edu [10.56.176.115]) by puma.admin.arbor.edu (8.9.3/8.9.3) with SMTP id VAA26416; Wed, 25 Apr 2001 21:09:02 -0400 (EDT) From: "Marty Moll" To: "Greg Rumple" , Subject: RE: Dell Poweredge 2550 Date: Wed, 25 Apr 2001 21:09:00 -0400 Message-ID: <000801c0cded$7a8d55c0$256afea9@algol> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook 8.5, Build 4.71.2377.0 In-Reply-To: <20010424230757.C47984@zaphon.llamas.net> Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3155.0 Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > I just purchased a Dell Poweredge 2550 with the on-board Raid Controller > option, and just burned a copy of the 4.3 release CD to install on it. > It comes up stating it has a Dell Perc 3/Di raid controller, and all > looks fine (I have a nice 100+ gig raid 5 array). > > I than boot the install, and it finds no drives. I'm assuming one of > the following messages is the source of my problems. > > pci3: (vendor=0x9005, dev=0x00c5) at 4.0 irq 10 > pci2: (vendor=0x1028, dev=0x0002) at 2.1 irq 10 > pci1: (vendor-0x14e4, dev=0x1644) at 8.0 irq 10 > > I was hoping this would just work out of the box. I'm hoping I can get > this working. Any help would be greatly appreciated. > > It does see the onboard Adaptec aic7899 controller, just not the raid > controller. I just bought one also with RedHat Linux 7.0 factory installed and the Perc 3/Di configured as a 2 disk mirror. 4.3-RELEASE didn't see the aac device until I patched /usr/src/sys/dev/aac/aac_pci.c as shown below. I got the info from the Linux aacraid driver. To actually install I had to fix up a new kernel on the kern.flp diskette and put a different kernel.GENERIC in the bin.* distribution (maybe there's an easier way). However, I didn't get the afacli utility working correctly... --- aac_pci.c.orig Mon Jan 8 20:03:09 2001 +++ aac_pci.c Mon Apr 23 13:48:46 2001 @@ -90,6 +90,10 @@ {0x1028, 0x0001, 0x1028, 0x0001, AAC_HWIF_I960RX, "Dell PERC 2/Si"}, {0x1028, 0x0002, 0x1028, 0x0002, AAC_HWIF_I960RX, "Dell PERC 3/Di"}, {0x1028, 0x0003, 0x1028, 0x0003, AAC_HWIF_I960RX, "Dell PERC 3/Si"}, + {0x1028, 0x0004, 0x1028, 0x00d0, AAC_HWIF_I960RX, "Dell PERC 3/Si"}, + {0x1028, 0x0002, 0x1028, 0x00d1, AAC_HWIF_I960RX, "Dell PERC 3/Di"}, + {0x1028, 0x0002, 0x1028, 0x00d9, AAC_HWIF_I960RX, "Dell PERC 3/Di"}, + {0x1028, 0x0008, 0x1028, 0x00cf, AAC_HWIF_I960RX, "Dell PERC 3/Di"}, {0x9005, 0x0282, 0x9005, 0x0282, AAC_HWIF_I960RX, "Adaptec AAC-2622"}, {0x1011, 0x0046, 0x9005, 0x0364, AAC_HWIF_STRONGARM, "Adaptec AAC-364"}, {0x1011, 0x0046, 0x9005, 0x0365, AAC_HWIF_STRONGARM, "Adaptec AAC-3642"}, -- Marty Moll martym@arbor.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message