Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 28 Nov 2014 11:45:53 +0000 (UTC)
From:      Andrew Turner <andrew@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r275207 - head/sys/arm/arm
Message-ID:  <201411281145.sASBjrA1067332@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: andrew
Date: Fri Nov 28 11:45:53 2014
New Revision: 275207
URL: https://svnweb.freebsd.org/changeset/base/275207

Log:
  We don't use the hypervisor interrupt, make it optional in the device tree.
  
  Submitted by:	Julien Grall <julien.grall AT linaro.org>
  MFC after:	1 week

Modified:
  head/sys/arm/arm/generic_timer.c

Modified: head/sys/arm/arm/generic_timer.c
==============================================================================
--- head/sys/arm/arm/generic_timer.c	Fri Nov 28 10:20:00 2014	(r275206)
+++ head/sys/arm/arm/generic_timer.c	Fri Nov 28 11:45:53 2014	(r275207)
@@ -87,7 +87,7 @@ static struct resource_spec timer_spec[]
 	{ SYS_RES_IRQ,		0,	RF_ACTIVE },	/* Secure */
 	{ SYS_RES_IRQ,		1,	RF_ACTIVE },	/* Non-secure */
 	{ SYS_RES_IRQ,		2,	RF_ACTIVE },	/* Virt */
-	{ SYS_RES_IRQ,		3,	RF_ACTIVE },	/* Hyp */
+	{ SYS_RES_IRQ,		3,	RF_ACTIVE | RF_OPTIONAL	}, /* Hyp */
 	{ -1, 0 }
 };
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201411281145.sASBjrA1067332>