From owner-cvs-src@FreeBSD.ORG Sat Feb 21 18:10:49 2004 Return-Path: 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 14A9416A4CE; Sat, 21 Feb 2004 18:10:49 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E82143D1D; Sat, 21 Feb 2004 18:10:49 -0800 (PST) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i1M2AmGe093517; Sat, 21 Feb 2004 18:10:48 -0800 (PST) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i1M2AmAS093516; Sat, 21 Feb 2004 18:10:48 -0800 (PST) (envelope-from marcel) Message-Id: <200402220210.i1M2AmAS093516@repoman.freebsd.org> From: Marcel Moolenaar Date: Sat, 21 Feb 2004 18:10:48 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ia64/ia64 machdep.c mp_machdep.c src/sys/ia64/include md_var.h X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 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: Sun, 22 Feb 2004 02:10:49 -0000 marcel 2004/02/21 18:10:48 PST FreeBSD src repository Modified files: sys/ia64/ia64 machdep.c mp_machdep.c sys/ia64/include md_var.h Log: Do not pre-map the I/O port space. On the Intel Tiger 4 this conflicts with a memory mapped I/O range that's immediately before it and is not 256MB aligned. As a result, when an address is accessed in the memory mapped range and a direct mapping is added for it, it overlaps with the pre-mapped I/O port space and causes a machine check. Based on a patch from: arun@ Revision Changes Path 1.176 +0 -33 src/sys/ia64/ia64/machdep.c 1.53 +0 -1 src/sys/ia64/ia64/mp_machdep.c 1.16 +0 -1 src/sys/ia64/include/md_var.h