svn commit: r296315 - head/sys/arm64/include

Bjoern A. Zeeb bz at FreeBSD.org
Wed Mar 2 15:20:44 UTC 2016


Author: bz
Date: Wed Mar  2 15:20:42 2016
New Revision: 296315
URL: https://svnweb.freebsd.org/changeset/base/296315

Log:
  Force re-routing PCI interrupts (this is for legacy INTx not MSI).
  Need this for gem5, but was not needed on real hadrware (yet) as it
  was always MSI.
  
  Reviewed by:		andrew, jhb
  Discovered by:		andrew
  Sponsored by:		DARPA/AFRL
  Differential Revision:	https://reviews.freebsd.org/D5494

Modified:
  head/sys/arm64/include/param.h

Modified: head/sys/arm64/include/param.h
==============================================================================
--- head/sys/arm64/include/param.h	Wed Mar  2 14:51:22 2016	(r296314)
+++ head/sys/arm64/include/param.h	Wed Mar  2 15:20:42 2016	(r296315)
@@ -42,6 +42,8 @@
 #define	STACKALIGNBYTES	(16 - 1)
 #define	STACKALIGN(p)	((uint64_t)(p) & ~STACKALIGNBYTES)
 
+#define	__PCI_REROUTE_INTERRUPT
+
 #ifndef MACHINE
 #define	MACHINE		"arm64"
 #endif


More information about the svn-src-head mailing list