From owner-freebsd-current@FreeBSD.ORG Thu Jan 11 16:41:56 2007 Return-Path: X-Original-To: freebsd-current@freebsd.org Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5490D16A720 for ; Thu, 11 Jan 2007 16:41:56 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.freebsd.org (Postfix) with ESMTP id EB11013C468 for ; Thu, 11 Jan 2007 16:41:55 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.6/8.13.6) with ESMTP id l0BGfHZV097859; Thu, 11 Jan 2007 11:41:45 -0500 (EST) (envelope-from jhb@freebsd.org) From: John Baldwin To: Denis Shaposhnikov Date: Thu, 11 Jan 2007 11:26:09 -0500 User-Agent: KMail/1.9.1 References: <200611152004.kAFK4vfe058983@repoman.freebsd.org> <200701091417.18936.jhb@freebsd.org> <87ejq26n8b.fsf@neva.vlink.ru> In-Reply-To: <87ejq26n8b.fsf@neva.vlink.ru> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200701111126.10095.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Thu, 11 Jan 2007 11:41:45 -0500 (EST) X-Virus-Scanned: ClamAV 0.88.3/2436/Thu Jan 11 06:48:19 2007 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: freebsd-current@freebsd.org Subject: Re: cvs commit: src/sys/dev/bce if_bce.c src/sys/dev/em if_em.c if_em.h src/sys/dev/mpt mpt.h mpt_pci.c X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Jan 2007 16:41:56 -0000 On Thursday 11 January 2007 02:23, Denis Shaposhnikov wrote: > >>>>> "John" == John Baldwin writes: > > John> ipw(4) doesn't support MSI, so that doesn't make sense. The > John> problem is probably not in the devices though, but in your > John> chipset. Can you provide the output from 'pciconf -l'? > > Here it is: > > hostb0@pci0:0:0: class=0x060000 card=0x01631028 chip=0x35808086 rev=0x02 hdr=0x00 Try this and see if it disables MSI for you automatically: Index: pci.c =================================================================== RCS file: /usr/cvs/src/sys/dev/pci/pci.c,v retrieving revision 1.331 diff -u -r1.331 pci.c --- pci.c 28 Dec 2006 06:14:42 -0000 1.331 +++ pci.c 11 Jan 2007 16:25:20 -0000 @@ -189,6 +201,16 @@ */ { 0x25508086, PCI_QUIRK_DISABLE_MSI, 0, 0 }, + /* + * MSI doesn't work with the Intel E7210 chipset. + */ + { 0x25788086, PCI_QUIRK_DISABLE_MSI, 0, 0 }, + + /* + * MSI doesn't work with the Intel 855 chipset. + */ + { 0x35808086, PCI_QUIRK_DISABLE_MSI, 0, 0 }, + { 0 } }; -- John Baldwin