svn commit: r257190 - head/sys/powerpc/booke

Nathan Whitehorn nwhitehorn at FreeBSD.org
Sat Oct 26 19:49:09 UTC 2013


Author: nwhitehorn
Date: Sat Oct 26 19:49:09 2013
New Revision: 257190
URL: http://svnweb.freebsd.org/changeset/base/257190

Log:
  Bump initial TLB size. The kernel is not necessarily less than 16 MB any
  more.

Modified:
  head/sys/powerpc/booke/locore.S

Modified: head/sys/powerpc/booke/locore.S
==============================================================================
--- head/sys/powerpc/booke/locore.S	Sat Oct 26 19:09:56 2013	(r257189)
+++ head/sys/powerpc/booke/locore.S	Sat Oct 26 19:49:09 2013	(r257190)
@@ -158,7 +158,7 @@ __start:
 	mtspr	SPR_MAS0, %r3
 	isync
 
-	li	%r3, (TLB_SIZE_16M << MAS1_TSIZE_SHIFT)@l
+	li	%r3, (TLB_SIZE_64M << MAS1_TSIZE_SHIFT)@l
 	oris	%r3, %r3, (MAS1_VALID | MAS1_IPROT)@h
 	mtspr	SPR_MAS1, %r3		/* note TS was not filled, so it's TS=0 */
 	isync


More information about the svn-src-head mailing list