From owner-cvs-src@FreeBSD.ORG Wed Feb 15 00:31:49 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A4B3E16A420; Wed, 15 Feb 2006 00:31:49 +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 6C54843D48; Wed, 15 Feb 2006 00:31:49 +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 k1F0VnCH050616; Wed, 15 Feb 2006 00:31:49 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id k1F0VnXC050615; Wed, 15 Feb 2006 00:31:49 GMT (envelope-from mjacob) Message-Id: <200602150031.k1F0VnXC050615@repoman.freebsd.org> From: Matt Jacob Date: Wed, 15 Feb 2006 00:31:49 +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_ioctl.h isp_library.c isp_library.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-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Feb 2006 00:31:49 -0000 mjacob 2006-02-15 00:31:49 UTC FreeBSD src repository Modified files: sys/dev/isp isp.c isp_freebsd.c isp_freebsd.h isp_ioctl.h isp_library.c isp_library.h isp_pci.c isp_sbus.c isp_target.c isp_target.h isp_tpublic.h ispmbox.h ispreg.h ispvar.h Log: a) clean up some declaration stuff (i.e., make more modern with respect to getting rid u_int for uint and so on). b) Turn back on 64 bit DAC support. Cheeze it a bit in that we have two DMA callback functions- one when we have bus_addr_t > 4 bits in width and the other which should be normal. Even Cheezier in that we turn off setting up DMA maps to be BUS_SPACE_MAXADDR if we're in ISP_TARGET_MODE. More work on this in a week or so. c) Tested under amd64 and 1MB DFLTPHYS, sparc64, i386 (PAE, but insufficient memory to really test > 4GB). LINT check under amd64. MFC after: 1 month Revision Changes Path 1.117 +203 -202 src/sys/dev/isp/isp.c 1.110 +28 -28 src/sys/dev/isp/isp_freebsd.c 1.85 +26 -24 src/sys/dev/isp/isp_freebsd.h 1.15 +22 -22 src/sys/dev/isp/isp_ioctl.h 1.2 +96 -79 src/sys/dev/isp/isp_library.c 1.2 +17 -11 src/sys/dev/isp/isp_library.h 1.112 +67 -63 src/sys/dev/isp/isp_pci.c 1.18 +20 -20 src/sys/dev/isp/isp_sbus.c 1.34 +23 -22 src/sys/dev/isp/isp_target.c 1.25 +186 -186 src/sys/dev/isp/isp_target.h 1.12 +22 -22 src/sys/dev/isp/isp_tpublic.h 1.50 +246 -246 src/sys/dev/isp/ispmbox.h 1.25 +50 -50 src/sys/dev/isp/ispreg.h 1.74 +134 -158 src/sys/dev/isp/ispvar.h