From owner-cvs-src-old@FreeBSD.ORG Wed Aug 18 12:52:28 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 3DEA910656C5 for ; Wed, 18 Aug 2010 12:52:28 +0000 (UTC) (envelope-from jchandra@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 0911F8FC13 for ; Wed, 18 Aug 2010 12:52:28 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o7ICqReE026802 for ; Wed, 18 Aug 2010 12:52:27 GMT (envelope-from jchandra@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o7ICqRKV026801 for cvs-src-old@freebsd.org; Wed, 18 Aug 2010 12:52:27 GMT (envelope-from jchandra@repoman.freebsd.org) Message-Id: <201008181252.o7ICqRKV026801@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jchandra@repoman.freebsd.org using -f From: "Jayachandran C." Date: Wed, 18 Aug 2010 12:52:21 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/mips/include cpuregs.h vmparam.h src/sys/mips/mips exception.S pmap.c 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: Wed, 18 Aug 2010 12:52:28 -0000 jchandra 2010-08-18 12:52:21 UTC FreeBSD src repository Modified files: sys/mips/include cpuregs.h vmparam.h sys/mips/mips exception.S pmap.c Log: SVN rev 211453 on 2010-08-18 12:52:21Z by jchandra MIPS n64 support - continued... 1. On n64, use XKPHYS to map page table pages instead of KSEG0. Maintain just one freepages list on n64. The changes are mainly to introduce MIPS_PHYS_TO_DIRECT(pa), MIPS_DIRECT_TO_PHYS(), which will use KSEG0 in 32 bit compilation and XKPHYS in 64 bit compilation. 2. Change macro based PMAP_LMEM_MAP1(), PMAP_LMEM_MAP2(), PMAP_LMEM_UNMAP() to inline functions. 3. Introduce MIPS_DIRECT_MAPPABLE(pa), which will further reduce the cases in which we will need to have a special case for 64 bit compilation. 4. Update CP0 hazard definitions for CPU_RMI - the cpu does not need any nops Reviewed by: neel Revision Changes Path 1.13 +23 -9 src/sys/mips/include/cpuregs.h 1.11 +2 -2 src/sys/mips/include/vmparam.h 1.26 +1 -1 src/sys/mips/mips/exception.S 1.80 +188 -222 src/sys/mips/mips/pmap.c