svn commit: r195369 - projects/mips/sys/mips/include
Warner Losh
imp at FreeBSD.org
Sun Jul 5 15:19:29 UTC 2009
Author: imp
Date: Sun Jul 5 15:19:28 2009
New Revision: 195369
URL: http://svn.freebsd.org/changeset/base/195369
Log:
The SB1 needs a special value for the cache field of the pte.
Submitted by: Neelkanth Natu
Modified:
projects/mips/sys/mips/include/pte.h
Modified: projects/mips/sys/mips/include/pte.h
==============================================================================
--- projects/mips/sys/mips/include/pte.h Sun Jul 5 15:18:06 2009 (r195368)
+++ projects/mips/sys/mips/include/pte.h Sun Jul 5 15:19:28 2009 (r195369)
@@ -105,7 +105,11 @@ typedef pt_entry_t *pd_entry_t;
#define PTE_ODDPG 0x00001000
/*#define PG_ATTR 0x0000003f Not Used */
#define PTE_UNCACHED 0x00000010
+#ifdef CPU_SB1
+#define PTE_CACHE 0x00000028 /* cacheable coherent */
+#else
#define PTE_CACHE 0x00000018
+#endif
/*#define PG_CACHEMODE 0x00000038 Not Used*/
#define PTE_ROPAGE (PTE_V | PTE_RO | PTE_CACHE) /* Write protected */
#define PTE_RWPAGE (PTE_V | PTE_M | PTE_CACHE) /* Not wr-prot not clean */
More information about the svn-src-projects
mailing list