From owner-cvs-src-old@FreeBSD.ORG Wed Mar 31 21:34:07 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 A0FDC106566B for ; Wed, 31 Mar 2010 21:34:07 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 8AB178FC42 for ; Wed, 31 Mar 2010 21:34:07 +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 o2VLY7i6025750 for ; Wed, 31 Mar 2010 21:34:07 GMT (envelope-from marius@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o2VLY7lC025749 for cvs-src-old@freebsd.org; Wed, 31 Mar 2010 21:34:07 GMT (envelope-from marius@repoman.freebsd.org) Message-Id: <201003312134.o2VLY7lC025749@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to marius@repoman.freebsd.org using -f From: Marius Strobl Date: Wed, 31 Mar 2010 21:32:52 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/sys/boot/sparc64/loader main.c src/sys/sparc64/include cache.h cpu.h md_var.h pcpu.h pmap.h smp.h tick.h ver.h src/sys/sparc64/sparc64 cache.c cheetah.c identcpu.c iommu.c machdep.c mp_locore.S mp_machdep.c nexus.c pmap.c spitfire.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, 31 Mar 2010 21:34:07 -0000 marius 2010-03-31 21:32:52 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/boot/sparc64/loader main.c sys/sparc64/include cache.h cpu.h md_var.h pcpu.h pmap.h smp.h tick.h ver.h sys/sparc64/sparc64 cache.c cheetah.c identcpu.c iommu.c machdep.c mp_locore.S mp_machdep.c nexus.c pmap.c spitfire.c tick.c trap.c Log: SVN rev 206004 on 2010-03-31 21:32:52Z by marius MFC: r204152, r204164 Some machines can not only consist of CPUs running at different speeds but also of different types, f.e. Sun Fire V890 can be equipped with a mix of UltraSPARC IV and IV+ CPUs, requiring different MMU initialization and different workarounds for model specific errata. Therefore move the CPU implementation number from a global variable to the per-CPU data. Functions which are called before the latter is available are passed the implementation number as a parameter now. Revision Changes Path 1.32.2.12 +1 -1 src/sys/boot/sparc64/loader/main.c 1.13.2.3 +1 -1 src/sys/sparc64/include/cache.h 1.17.2.2 +1 -1 src/sys/sparc64/include/cpu.h 1.16.10.3 +2 -2 src/sys/sparc64/include/md_var.h 1.22.2.5 +1 -0 src/sys/sparc64/include/pcpu.h 1.47.2.3 +1 -1 src/sys/sparc64/include/pmap.h 1.22.2.4 +1 -1 src/sys/sparc64/include/smp.h 1.4.10.2 +2 -2 src/sys/sparc64/include/tick.h 1.6.2.2 +15 -11 src/sys/sparc64/include/ver.h 1.20.10.3 +1 -1 src/sys/sparc64/sparc64/cache.c 1.5.20.6 +2 -2 src/sys/sparc64/sparc64/cheetah.c 1.17.2.2 +0 -3 src/sys/sparc64/sparc64/identcpu.c 1.45.2.5 +2 -1 src/sys/sparc64/sparc64/iommu.c 1.138.2.15 +16 -14 src/sys/sparc64/sparc64/machdep.c 1.8.2.6 +6 -6 src/sys/sparc64/sparc64/mp_locore.S 1.36.2.11 +24 -16 src/sys/sparc64/sparc64/mp_machdep.c 1.20.2.7 +2 -1 src/sys/sparc64/sparc64/nexus.c 1.166.2.13 +2 -2 src/sys/sparc64/sparc64/pmap.c 1.5.20.4 +1 -1 src/sys/sparc64/sparc64/spitfire.c 1.22.2.3 +3 -3 src/sys/sparc64/sparc64/tick.c 1.88.2.7 +2 -1 src/sys/sparc64/sparc64/trap.c