svn commit: r269329 - projects/arm64/sys/arm64/arm64

Andrew Turner andrew at FreeBSD.org
Thu Jul 31 12:58:39 UTC 2014


Author: andrew
Date: Thu Jul 31 12:58:38 2014
New Revision: 269329
URL: http://svnweb.freebsd.org/changeset/base/269329

Log:
  Add a comment for tha mair attributes

Modified:
  projects/arm64/sys/arm64/arm64/locore.S

Modified: projects/arm64/sys/arm64/arm64/locore.S
==============================================================================
--- projects/arm64/sys/arm64/arm64/locore.S	Thu Jul 31 09:18:29 2014	(r269328)
+++ projects/arm64/sys/arm64/arm64/locore.S	Thu Jul 31 12:58:38 2014	(r269329)
@@ -448,7 +448,8 @@ start_mmu:
 _exception_vectors:
 	.quad	exception_vectors
 mair:
-	.quad	MAIR(0x00, 0) |	MAIR(0x44, 1) |	MAIR(0xff, 2)
+		/* Device       Normal, no cache   Normal, write-back */
+	.quad	MAIR(0x00, 0) | MAIR(0x44, 1)    | MAIR(0xff, 2)
 tcr:
 	.quad (TCR_TxSZ(63 - VIRT_BITS) | TCR_ASID_16 | TCR_IPS_40BIT | \
 	    TCR_TG1_4K)


More information about the svn-src-projects mailing list