From owner-cvs-src-old@FreeBSD.ORG Mon Feb 1 21:21:23 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 BE5841065693 for ; Mon, 1 Feb 2010 21:21:23 +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 AB88D8FC19 for ; Mon, 1 Feb 2010 21:21:23 +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 o11LLNJ2031017 for ; Mon, 1 Feb 2010 21:21:23 GMT (envelope-from joerg@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o11LLNtE031016 for cvs-src-old@freebsd.org; Mon, 1 Feb 2010 21:21:23 GMT (envelope-from joerg@repoman.freebsd.org) Message-Id: <201002012121.o11LLNtE031016@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to joerg@repoman.freebsd.org using -f From: Joerg Wunsch Date: Mon, 1 Feb 2010 21:21:10 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ieee488 ibfoo.c pcii.c tnt4882.c tnt4882.h 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: Mon, 01 Feb 2010 21:21:23 -0000 joerg 2010-02-01 21:21:10 UTC FreeBSD src repository Modified files: sys/dev/ieee488 ibfoo.c pcii.c tnt4882.c upd7210.c upd7210.h Added files: sys/dev/ieee488 tnt4882.h Log: SVN rev 203360 on 2010-02-01 21:21:10Z by joerg GPIB overhaul, part #2: make the tnt4882 driver work with the newer TNT5004 IC. This involved a major rewrite of a number of things, as this chip no longer supports the NAT7210 legacy mode but requires the host to use the (more modern) FIFO mode. In theory, this also ought to work on the older TNT4882C chip. I'll probably add this as optional support (perhaps by a device.hints flag) later on. By now, FIFO mode is *only* activates iff a TNT5004 chip has been detected (where the old code didn't work at all), while everything else is supposed to use the old code. MFC after: 2 weeks Revision Changes Path 1.8 +133 -11 src/sys/dev/ieee488/ibfoo.c 1.11 +4 -1 src/sys/dev/ieee488/pcii.c 1.5 +21 -50 src/sys/dev/ieee488/tnt4882.c 1.1 +77 -0 src/sys/dev/ieee488/tnt4882.h (new) 1.14 +67 -18 src/sys/dev/ieee488/upd7210.c 1.9 +1 -0 src/sys/dev/ieee488/upd7210.h