From owner-cvs-all@FreeBSD.ORG Mon Jan 23 06:23:38 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0902616A41F; Mon, 23 Jan 2006 06:23:38 +0000 (GMT) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C27AF43D45; Mon, 23 Jan 2006 06:23:37 +0000 (GMT) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id k0N6NbYP020408; Mon, 23 Jan 2006 06:23:37 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id k0N6NbcN020407; Mon, 23 Jan 2006 06:23:37 GMT (envelope-from mjacob) Message-Id: <200601230623.k0N6NbcN020407@repoman.freebsd.org> From: Matt Jacob Date: Mon, 23 Jan 2006 06:23:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/isp isp.c isp_freebsd.c isp_freebsd.h isp_inline.h isp_ioctl.h isp_pci.c isp_sbus.c isp_target.c isp_target.h isp_tpublic.h ispmbox.h ispreg.h ispvar.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Jan 2006 06:23:38 -0000 mjacob 2006-01-23 06:23:37 UTC FreeBSD src repository Modified files: sys/dev/isp isp.c isp_freebsd.c isp_freebsd.h isp_inline.h isp_ioctl.h isp_pci.c isp_sbus.c isp_target.c isp_target.h isp_tpublic.h ispmbox.h ispreg.h ispvar.h Log: First of several commits as this driver is dusted off and maybe brought up to date. Principle changes for this reelase is to support 2K Port Login firmware. This allows us to support the 2322 (and 2422 4Gb) cards which only come with the 2K Port Login firmware. The 2322 should now work- but we don't have firmware sets for it in ispfw (as the change to load 2K Port Login f/w hasn't been made- that f/w is so big it has to be loaded in more than one chunk). Other changes are the beginnings of cleaning up some long standing target mode issues. The next changes here will incorporate a lot of bug fixes from others. Finally, some copyright cleanup and attempts to make the parts of the driver that are FreeBSD specific start conforming more to FreeBSD style. MFC after: 1 month Revision Changes Path 1.115 +136 -47 src/sys/dev/isp/isp.c 1.108 +15 -43 src/sys/dev/isp/isp_freebsd.c 1.81 +3 -1 src/sys/dev/isp/isp_freebsd.h 1.33 +296 -3 src/sys/dev/isp/isp_inline.h 1.14 +19 -24 src/sys/dev/isp/isp_ioctl.h 1.106 +25 -3 src/sys/dev/isp/isp_pci.c 1.16 +2 -1 src/sys/dev/isp/isp_sbus.c 1.33 +216 -125 src/sys/dev/isp/isp_target.c 1.24 +120 -14 src/sys/dev/isp/isp_target.h 1.11 +111 -126 src/sys/dev/isp/isp_tpublic.h 1.49 +36 -5 src/sys/dev/isp/ispmbox.h 1.24 +15 -4 src/sys/dev/isp/ispreg.h 1.72 +22 -20 src/sys/dev/isp/ispvar.h