Module Name:    src
Committed By:   matt
Date:           Fri Jan 28 02:34:12 UTC 2011

Modified Files:
        src/sys/arch/powerpc/oea [matt-nb5-pq3]: cpu_subr.c

Log Message:
IBM750FX has HIGHBAT (BATs >= 4)


To generate a diff of this commit:
cvs rdiff -u -r1.50.14.2 -r1.50.14.3 src/sys/arch/powerpc/oea/cpu_subr.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/powerpc/oea/cpu_subr.c
diff -u src/sys/arch/powerpc/oea/cpu_subr.c:1.50.14.2 src/sys/arch/powerpc/oea/cpu_subr.c:1.50.14.3
--- src/sys/arch/powerpc/oea/cpu_subr.c:1.50.14.2	Mon Jan 17 07:45:59 2011
+++ src/sys/arch/powerpc/oea/cpu_subr.c	Fri Jan 28 02:34:11 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: cpu_subr.c,v 1.50.14.2 2011/01/17 07:45:59 matt Exp $	*/
+/*	$NetBSD: cpu_subr.c,v 1.50.14.3 2011/01/28 02:34:11 matt Exp $	*/
 
 /*-
  * Copyright (c) 2001 Matt Thomas.
@@ -34,7 +34,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cpu_subr.c,v 1.50.14.2 2011/01/17 07:45:59 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cpu_subr.c,v 1.50.14.3 2011/01/28 02:34:11 matt Exp $");
 
 #include "opt_ppcparam.h"
 #include "opt_multiprocessor.h"
@@ -275,6 +275,9 @@
 
 	else if (MPC745X_P(vers) && vers != MPC7450)
 		oeacpufeat |= OEACPU_XBSEN | OEACPU_HIGHBAT | OEACPU_HIGHSPRG;
+
+	else if (vers == IBM750FX)
+		oeacpufeat |= OEACPU_HIGHBAT;
 }
 
 void

Reply via email to