Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/arm/arm Detect arm1026ej-s.



details:   https://anonhg.NetBSD.org/src/rev/6005d86191d4
branches:  trunk
changeset: 580826:6005d86191d4
user:      rearnsha <rearnsha%NetBSD.org@localhost>
date:      Tue May 10 12:59:22 2005 +0000

description:
Detect arm1026ej-s.

diffstat:

 sys/arch/arm/arm/cpufunc.c |  7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diffs (28 lines):

diff -r cf37a7e1ad35 -r 6005d86191d4 sys/arch/arm/arm/cpufunc.c
--- a/sys/arch/arm/arm/cpufunc.c        Tue May 10 12:57:18 2005 +0000
+++ b/sys/arch/arm/arm/cpufunc.c        Tue May 10 12:59:22 2005 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: cpufunc.c,v 1.68 2004/12/22 19:18:13 joff Exp $        */
+/*     $NetBSD: cpufunc.c,v 1.69 2005/05/10 12:59:22 rearnsha Exp $    */
 
 /*
  * arm7tdmi support code Copyright (c) 2001 John Fremlin
@@ -46,7 +46,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cpufunc.c,v 1.68 2004/12/22 19:18:13 joff Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cpufunc.c,v 1.69 2005/05/10 12:59:22 rearnsha Exp $");
 
 #include "opt_compat_netbsd.h"
 #include "opt_cpuoptions.h"
@@ -987,7 +987,8 @@
 #endif /* CPU_ARM9 */
 #ifdef CPU_ARM10
        if (/* cputype == CPU_ID_ARM1020T || */
-           cputype == CPU_ID_ARM1020E) {
+           cputype == CPU_ID_ARM1020E ||
+           cputype == CPU_ID_ARM1026EJS) {
                /*
                 * Select write-through cacheing (this isn't really an
                 * option on ARM1020T).



Home | Main Index | Thread Index | Old Index