Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/arm/arm32 Add IXP1200 steppings.



details:   https://anonhg.NetBSD.org/src/rev/c8315937f68e
branches:  trunk
changeset: 526785:c8315937f68e
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Fri May 10 17:50:25 2002 +0000

description:
Add IXP1200 steppings.

diffstat:

 sys/arch/arm/arm32/cpu.c |  14 ++++++++++++--
 1 files changed, 12 insertions(+), 2 deletions(-)

diffs (42 lines):

diff -r cbab468756a9 -r c8315937f68e sys/arch/arm/arm32/cpu.c
--- a/sys/arch/arm/arm32/cpu.c  Fri May 10 17:27:23 2002 +0000
+++ b/sys/arch/arm/arm32/cpu.c  Fri May 10 17:50:25 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: cpu.c,v 1.35 2002/05/03 03:28:49 thorpej Exp $ */
+/*     $NetBSD: cpu.c,v 1.36 2002/05/10 17:50:25 thorpej Exp $ */
 
 /*
  * Copyright (c) 1995 Mark Brinicombe.
@@ -45,7 +45,7 @@
 
 #include <sys/param.h>
 
-__KERNEL_RCSID(0, "$NetBSD: cpu.c,v 1.35 2002/05/03 03:28:49 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cpu.c,v 1.36 2002/05/10 17:50:25 thorpej Exp $");
 
 #include <sys/systm.h>
 #include <sys/malloc.h>
@@ -199,6 +199,13 @@
        "rev 12",       "rev 13",       "rev 14",       "rev 15",
 };
 
+static const char *ixp1200_steppings[16] = {
+       "step A",       "step B",       "rev 2",        "step C",
+       "rev 4",        "step A (IXP1250)","rev 6",     "rev 7",
+       "rev 8",        "rev 9",        "rev 10",       "rev 11",
+       "rev 12",       "rev 13",       "rev 14",       "rev 15",
+};
+
 static const char *xscale_steppings[16] = {
        "step A-0",     "step A-1",     "step B-0",     "step C-0",
        "rev 4",        "rev 5",        "rev 6",        "rev 7",
@@ -278,6 +285,9 @@
        { CPU_ID_SA1110,        CPU_CLASS_SA1,          "SA-1110",
          sa1110_steppings },
 
+       { CPU_ID_IXP1200,       CPU_CLASS_SA1,          "IXP1200",
+         ixp1200_steppings },
+
        { CPU_ID_80200,         CPU_CLASS_XSCALE,       "i80200",
          xscale_steppings },
 



Home | Main Index | Thread Index | Old Index