From owner-freebsd-questions@FreeBSD.ORG Sun Apr 4 17:19:21 2010 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8403C106566C; Sun, 4 Apr 2010 17:19:21 +0000 (UTC) (envelope-from pluknet@gmail.com) Received: from mail-bw0-f216.google.com (mail-bw0-f216.google.com [209.85.218.216]) by mx1.freebsd.org (Postfix) with ESMTP id D67B68FC14; Sun, 4 Apr 2010 17:19:20 +0000 (UTC) Received: by bwz8 with SMTP id 8so2560889bwz.3 for ; Sun, 04 Apr 2010 10:19:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:received:message-id:subject:from:to:cc:content-type; bh=pD1jS9t2wkxqYZsUypROZbpGCrcnbWdaf5nxupagaF0=; b=nbN8f2ipf3Ol3RW9rnXJx+uNurbos4ssyIfar7AUeljh2pXoT00NQJLp8OrDybyh0F Bv/Wj4goxZ8OC7OPZH18upoJam0IsuM0OotQ80pfGvH9hwX5vZfU8HLFgP/HKBzAeWcW 5XmEaFsTlaayZVzYpTwGM6VyH+6pBMWaQCDHk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=fbq1YicWENkNxKnNi+i91DvEwg0RdzICdrz6aMQS8mdJ2dhiQiBiuhclqDYW40t15u YUY6xqk4D6ZCPNQeMNT8Pcf9SMfDLc7q3i8r9gPgwUsNqmfef8/BiomLBgFKvA2Cs/l5 6mIDHX/7HVBD8ruPKihO3beftmwIOctNKM23Q= MIME-Version: 1.0 Received: by 10.204.47.232 with HTTP; Sun, 4 Apr 2010 10:19:19 -0700 (PDT) In-Reply-To: <20100404153347.GA40823@potato> References: <6201873e1003290731x148a2415q5113feb8a0479d4b@mail.gmail.com> <20100329172352.GA85779@potato> <20100331005639.GA91332@potato> <6201873e1003301813o32024529s8dae620af17b87db@mail.gmail.com> <20100401135841.GA98802@potato> <20100404153347.GA40823@potato> Date: Sun, 4 Apr 2010 21:19:19 +0400 Received: by 10.204.84.142 with SMTP id j14mr3029723bkl.124.1270401559598; Sun, 04 Apr 2010 10:19:19 -0700 (PDT) Message-ID: From: pluknet To: John Content-Type: text/plain; charset=ISO-8859-1 X-Mailman-Approved-At: Sun, 04 Apr 2010 18:31:01 +0000 Cc: Adam Vande More , Varan Okul , krad , freebsd-questions@freebsd.org, freebsd-hardware@freebsd.org Subject: Re: freebsd-8 support for dell R710 SATA raid-0 (LSI2008) X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Apr 2010 17:19:21 -0000 On 4 April 2010 19:33, John wrote: > Hi, > > In the end I had to go with opensuse-11.2. I should have tried it in the > second place really, because the iDRAC has Suse enterprise as an > installation option, so it was a small leap to think of the free > version. > > Here are the OSes I tried: > > FreeBSD 8 > FreeBSD 9 > NetBSD 5.0.2 > CentOS > Ubuntu 9.10 server > > Basically the LSI SA2008 seems very new so it's unsurprising my > favourite OS doesn't support it. Hopefully it will in the near future, > because this card is a popular option on a popular server aimed at > small to medium sized businesses. OpenSuse-11.2 also does GPT in its > installation process. I had to raid0 the disks before they could be > seen properly though. > > Current dmesg is available here: http://www.growveg.org/server/dmesg.txt A wild guess it's just not listed in mfi(4) pciids table (as well as for rest H200 family). What if you try this? --- sys/dev/mfi/mfi_pci.c.orig 2010-04-04 20:02:26.000000000 +0400 +++ sys/dev/mfi/mfi_pci.c 2010-04-04 20:06:17.000000000 +0400 @@ -117,6 +117,7 @@ } mfi_identifiers[] = { {0x1000, 0x0060, 0x1028, 0xffff, MFI_FLAGS_1078, "Dell PERC 6"}, {0x1000, 0x0060, 0xffff, 0xffff, MFI_FLAGS_1078, "LSI MegaSAS 1078"}, + {0x1000, 0x0072, 0x1028, 0x1f1e, MFI_FLAGS_GEN2, "Dell PERC H200 Integrated"}, {0x1000, 0x0078, 0xffff, 0xffff, MFI_FLAGS_GEN2, "LSI MegaSAS Gen2"}, {0x1000, 0x0079, 0x1028, 0x1f15, MFI_FLAGS_GEN2, "Dell PERC H800 Adapter"}, {0x1000, 0x0079, 0x1028, 0x1f16, MFI_FLAGS_GEN2, "Dell PERC H700 Adapter"}, -- wbr, pluknet