From owner-svn-src-head@FreeBSD.ORG Thu Apr 11 23:40:06 2013 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id BC08C89F; Thu, 11 Apr 2013 23:40:06 +0000 (UTC) (envelope-from np@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id AF6AB23E; Thu, 11 Apr 2013 23:40:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r3BNe6mB062721; Thu, 11 Apr 2013 23:40:06 GMT (envelope-from np@svn.freebsd.org) Received: (from np@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r3BNe66n062720; Thu, 11 Apr 2013 23:40:06 GMT (envelope-from np@svn.freebsd.org) Message-Id: <201304112340.r3BNe66n062720@svn.freebsd.org> From: Navdeep Parhar Date: Thu, 11 Apr 2013 23:40:06 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r249393 - head/sys/dev/cxgbe X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Apr 2013 23:40:06 -0000 Author: np Date: Thu Apr 11 23:40:05 2013 New Revision: 249393 URL: http://svnweb.freebsd.org/changeset/base/249393 Log: Add pciids of the T5 based cards. The ones that I haven't tested with cxgbe(4) are disabled for now. This will change. MFC after: 2 weeks Modified: head/sys/dev/cxgbe/t4_main.c Modified: head/sys/dev/cxgbe/t4_main.c ============================================================================== --- head/sys/dev/cxgbe/t4_main.c Thu Apr 11 22:49:29 2013 (r249392) +++ head/sys/dev/cxgbe/t4_main.c Thu Apr 11 23:40:05 2013 (r249393) @@ -441,6 +441,27 @@ struct { }, t5_pciids[] = { {0xb000, "Chelsio Terminator 5 FPGA"}, {0x5400, "Chelsio T580-dbg"}, + {0x5401, "Chelsio T520-CR"}, + {0x5407, "Chelsio T520-SO"}, + {0x5408, "Chelsio T520-CX"}, + {0x5411, "Chelsio T520-LL-CR"}, +#ifdef notyet + {0x5402, "Chelsio T522-CR"}, + {0x5403, "Chelsio T540-CR"}, + {0x5404, "Chelsio T520-BCH"}, + {0x5405, "Chelsio T540-BCH"}, + {0x5406, "Chelsio T540-CH"}, + {0x5409, "Chelsio T520-BT"}, + {0x540a, "Chelsio T504-BT"}, + {0x540b, "Chelsio B520-SR"}, + {0x540c, "Chelsio B504-BT"}, + {0x540d, "Chelsio T580-CR"}, + {0x540e, "Chelsio T540-LP-CR"}, + {0x540f, "Chelsio Amsterdam"}, + {0x5410, "Chelsio T580-LP-CR"}, + {0x5412, "Chelsio T560-CR"}, + {0x5413, "Chelsio T580-CR"}, +#endif }; #ifdef TCP_OFFLOAD