svn commit: r277500 - head/sys/powerpc/aim

Nathan Whitehorn nwhitehorn at FreeBSD.org
Wed Jan 21 19:11:16 UTC 2015


Author: nwhitehorn
Date: Wed Jan 21 19:11:15 2015
New Revision: 277500
URL: https://svnweb.freebsd.org/changeset/base/277500

Log:
  Add POWER7+ and POWER8 to the list of CPUs with 32 SLB slots. This is
  mostly a no-op since all currently-supported instances of these CPUs give
  the number of SLB slots in the device tree, but keep it here as well just
  in case.

Modified:
  head/sys/powerpc/aim/machdep.c

Modified: head/sys/powerpc/aim/machdep.c
==============================================================================
--- head/sys/powerpc/aim/machdep.c	Wed Jan 21 19:09:15 2015	(r277499)
+++ head/sys/powerpc/aim/machdep.c	Wed Jan 21 19:11:15 2015	(r277500)
@@ -394,6 +394,9 @@ powerpc_init(vm_offset_t fdt, vm_offset_
 			break;
 	#ifdef __powerpc64__
 		case IBMPOWER7:
+		case IBMPOWER7PLUS:
+		case IBMPOWER8:
+		case IBMPOWER8E:
 			/* XXX: get from ibm,slb-size in device tree */
 			n_slbs = 32;
 			break;


More information about the svn-src-all mailing list