From 736e9962f0dd727f76e416823b40de745f48440e Mon Sep 17 00:00:00 2001 From: matt Date: Tue, 21 Oct 2008 19:03:24 +0000 Subject: [PATCH] Add Cortex cpus --- sys/arch/arm/arm32/cpu.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/sys/arch/arm/arm32/cpu.c b/sys/arch/arm/arm32/cpu.c index 6cc8b5d92a7e..876aebda885f 100644 --- a/sys/arch/arm/arm32/cpu.c +++ b/sys/arch/arm/arm32/cpu.c @@ -1,4 +1,4 @@ -/* $NetBSD: cpu.c,v 1.68 2008/04/27 18:58:43 matt Exp $ */ +/* $NetBSD: cpu.c,v 1.69 2008/10/21 19:03:24 matt Exp $ */ /* * Copyright (c) 1995 Mark Brinicombe. @@ -46,7 +46,7 @@ #include -__KERNEL_RCSID(0, "$NetBSD: cpu.c,v 1.68 2008/04/27 18:58:43 matt Exp $"); +__KERNEL_RCSID(0, "$NetBSD: cpu.c,v 1.69 2008/10/21 19:03:24 matt Exp $"); #include #include @@ -405,6 +405,10 @@ const struct cpuidtab cpuids[] = { pN_steppings }, { CPU_ID_ARM1176JS, CPU_CLASS_ARM11J, "ARM1176J-S r0", pN_steppings }, + { CPU_ID_CORTEXA8R1, CPU_CLASS_ARM11J, "Cortex-A8 r1", + pN_steppings }, + { CPU_ID_CORTEXA8R2, CPU_CLASS_ARM11J, "Cortex-A8 r2", + pN_steppings }, { 0, CPU_CLASS_NONE, NULL, NULL } };