Received: by mail.netbsd.org (Postfix, from userid 605) id 4D67F84E64; Thu, 7 Jun 2018 19:39:56 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 771EC84E63 for ; Thu, 7 Jun 2018 19:39:55 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id hWm4sTNSJphB for ; Thu, 7 Jun 2018 19:39:55 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id E263284D40 for ; Thu, 7 Jun 2018 19:39:54 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id DF8E1FBEC; Thu, 7 Jun 2018 19:39:54 +0000 (UTC) Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" MIME-Version: 1.0 Date: Thu, 7 Jun 2018 19:39:54 +0000 From: "Martin Husemann" Subject: CVS commit: [netbsd-8] src/sys/dev/isa To: source-changes@NetBSD.org X-Mailer: log_accum Message-Id: <20180607193954.DF8E1FBEC@cvs.NetBSD.org> Sender: source-changes-owner@NetBSD.org List-Id: source-changes.NetBSD.org Precedence: bulk Reply-To: source-changes-d@NetBSD.org Mail-Reply-To: "Martin Husemann" Mail-Followup-To: source-changes-d@NetBSD.org List-Unsubscribe: Module Name: src Committed By: martin Date: Thu Jun 7 19:39:54 UTC 2018 Modified Files: src/sys/dev/isa [netbsd-8]: isadma.c isadmareg.h isareg.h Log Message: Pull up following revision(s) (requested by jdolecek in ticket #841): sys/dev/isa/isadmareg.h: revision 1.9 sys/dev/isa/isareg.h: revision 1.10 sys/dev/isa/isadma.c: revision 1.67 fix off-by-one in the mapping of the ISA DMA page registers, they actually start at 0x81; the code used bus_space_map() starting from 0x80 but used +1 offset for actual I/O, now it maps starting 0x81 and does I/O without offset the reads and writes work exactly the same as before, but this frees 0x80 for being mapped independantly patch provided in PR kern/52468 by Jonathan Chapman; checked against the spec and also FreeBSD sys/x86/isa/isa_dma.c To generate a diff of this commit: cvs rdiff -u -r1.66 -r1.66.52.1 src/sys/dev/isa/isadma.c cvs rdiff -u -r1.8 -r1.8.80.1 src/sys/dev/isa/isadmareg.h cvs rdiff -u -r1.9 -r1.9.156.1 src/sys/dev/isa/isareg.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.