From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Lx2z6-0000WJ-TZ for qemu-devel@nongnu.org; Thu, 23 Apr 2009 13:45:16 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Lx2z6-0000W7-70 for qemu-devel@nongnu.org; Thu, 23 Apr 2009 13:45:16 -0400 Received: from [199.232.76.173] (port=42624 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Lx2z6-0000W4-3c for qemu-devel@nongnu.org; Thu, 23 Apr 2009 13:45:16 -0400 Received: from flounder.pepperfish.net ([87.237.62.181]:47085) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Lx2z5-0001xY-NS for qemu-devel@nongnu.org; Thu, 23 Apr 2009 13:45:15 -0400 Received: from [10.112.102.2] (helo=jennifer.kylikki.org) by flounder.pepperfish.net with esmtps (Exim 4.69 #1 (Debian)) id 1Lx2z3-0001UD-CW for ; Thu, 23 Apr 2009 18:45:13 +0100 Received: from derik.kyllikki.org ([192.168.7.20] helo=derik) by jennifer.kylikki.org with esmtp (Exim 4.63) (envelope-from ) id 1Lx2z3-0005f4-BF for qemu-devel@nongnu.org; Thu, 23 Apr 2009 18:45:13 +0100 Received: from vince by derik with local (Exim 4.69) (envelope-from ) id 1Lx2z3-0003fd-9F for qemu-devel@nongnu.org; Thu, 23 Apr 2009 18:45:13 +0100 Date: Thu, 23 Apr 2009 18:45:13 +0100 From: Vincent Sanders Subject: [Qemu-devel] [PATCH 1/16] ARM Add ARM 920T identifiers Message-ID: <20090423174513.GD4629@derik> References: <20090423171503.GC4629@derik> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20090423171503.GC4629@derik> List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Add ARM 920T CPU ID Signed-off-by: Vincent Sanders --- cpu.h | 1 + helper.c | 3 +++ 2 files changed, 4 insertions(+) diff -urN qemusvnclean/target-arm/cpu.h qemusvnpatches/target-arm/cpu.h --- qemusvnclean/target-arm/cpu.h 2009-04-20 20:26:52.000000000 +0100 +++ qemusvnpatches/target-arm/cpu.h 2009-04-20 21:16:58.000000000 +0100 @@ -370,6 +370,7 @@ #define ARM_CPUID_ARM1026 0x4106a262 #define ARM_CPUID_ARM926 0x41069265 #define ARM_CPUID_ARM946 0x41059461 +#define ARM_CPUID_ARM920T 0x41129200 #define ARM_CPUID_TI915T 0x54029152 #define ARM_CPUID_TI925T 0x54029252 #define ARM_CPUID_PXA250 0x69052100 diff -urN qemusvnclean/target-arm/helper.c qemusvnpatches/target-arm/helper.c --- qemusvnclean/target-arm/helper.c 2009-04-20 20:26:52.000000000 +0100 +++ qemusvnpatches/target-arm/helper.c 2009-04-20 21:16:49.000000000 +0100 @@ -37,6 +37,8 @@ { env->cp15.c0_cpuid = id; switch (id) { + case ARM_CPUID_ARM920T: + break; case ARM_CPUID_ARM926: set_feature(env, ARM_FEATURE_VFP); env->vfp.xregs[ARM_VFP_FPSID] = 0x41011090; @@ -276,6 +278,7 @@ }; static const struct arm_cpu_t arm_cpu_names[] = { + { ARM_CPUID_ARM920T, "arm920t"}, { ARM_CPUID_ARM926, "arm926"}, { ARM_CPUID_ARM946, "arm946"}, { ARM_CPUID_ARM1026, "arm1026"}, -- Regards Vincent http://www.kyllikki.org/