svn commit: r265445 - head/sys/arm/include

Ian Lepore ian at FreeBSD.org
Tue May 6 14:08:43 UTC 2014


Author: ian
Date: Tue May  6 14:08:42 2014
New Revision: 265445
URL: http://svnweb.freebsd.org/changeset/base/265445

Log:
  Add defines for the bits in the PL310 debug control register.
  
  This should have been part of r265444.

Modified:
  head/sys/arm/include/pl310.h

Modified: head/sys/arm/include/pl310.h
==============================================================================
--- head/sys/arm/include/pl310.h	Tue May  6 14:03:35 2014	(r265444)
+++ head/sys/arm/include/pl310.h	Tue May  6 14:08:42 2014	(r265445)
@@ -113,6 +113,8 @@
 #define PL310_ADDR_FILTER_STAR		0xC00
 #define PL310_ADDR_FILTER_END		0xC04
 #define PL310_DEBUG_CTRL		0xF40
+#define		DEBUG_CTRL_DISABLE_LINEFILL	(1 << 0)
+#define		DEBUG_CTRL_DISABLE_WRITEBACK	(1 << 1)
 #define PL310_PREFETCH_CTRL		0xF60
 #define		PREFETCH_CTRL_OFFSET_MASK	(0x1f)
 #define		PREFETCH_CTRL_NOTSAMEID		(1 << 21)


More information about the svn-src-all mailing list