From owner-cvs-src-old@FreeBSD.ORG Sat Jan 23 07:54:30 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7EE9F1065799 for ; Sat, 23 Jan 2010 07:54:30 +0000 (UTC) (envelope-from joerg@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6E0298FC08 for ; Sat, 23 Jan 2010 07:54:30 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o0N7sUBb007047 for ; Sat, 23 Jan 2010 07:54:30 GMT (envelope-from joerg@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o0N7sUZr007046 for cvs-src-old@freebsd.org; Sat, 23 Jan 2010 07:54:30 GMT (envelope-from joerg@repoman.freebsd.org) Message-Id: <201001230754.o0N7sUZr007046@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to joerg@repoman.freebsd.org using -f From: Joerg Wunsch Date: Sat, 23 Jan 2010 07:54:06 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ieee488 pcii.c upd7210.c upd7210.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Jan 2010 07:54:30 -0000 joerg 2010-01-23 07:54:06 UTC FreeBSD src repository Modified files: sys/dev/ieee488 pcii.c upd7210.c upd7210.h Log: SVN rev 202870 on 2010-01-23 07:54:06Z by joerg Overhaul of the pcii driver: . Properly allocate all IO space resources. These cards scatter their IO addresses over a range of 0x1600 bytes, and they require an additional address for "special interrupt handling". . Implement the "special interrupt handling" per the GPIB-PCIIA Technical Reference Manual; this was apparently not declared for the clone card this driver has been originally implemented for, but it turned out to be needed for both, an original NI brand PCII/PCIIA card as well as the Axiom AX5488 clone. . Add some diagnostic messages for various resource allocation etc. failures during probe. . Add some comments about the structure of the IO address space that is used by these cards. MFC after: 1 day Revision Changes Path 1.9 +89 -13 src/sys/dev/ieee488/pcii.c 1.12 +29 -12 src/sys/dev/ieee488/upd7210.c 1.7 +2 -1 src/sys/dev/ieee488/upd7210.h