Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 3 Oct 2014 17:27:31 +0000 (UTC)
From:      Peter Grehan <grehan@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r272481 - head/usr.sbin/bhyve
Message-ID:  <201410031727.s93HRVnH084592@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: grehan
Date: Fri Oct  3 17:27:30 2014
New Revision: 272481
URL: https://svnweb.freebsd.org/changeset/base/272481

Log:
  Add new fields in the FADT, required by IASL 20140926-64.
  
  The new IASL from the recent acpi-ca import will error out
  if it doesn't see these new fields, which were previously
  reserved.
  
  Reported by:	lme
  Reviewed by:	neel

Modified:
  head/usr.sbin/bhyve/acpi.c

Modified: head/usr.sbin/bhyve/acpi.c
==============================================================================
--- head/usr.sbin/bhyve/acpi.c	Fri Oct  3 16:09:46 2014	(r272480)
+++ head/usr.sbin/bhyve/acpi.c	Fri Oct  3 17:27:30 2014	(r272481)
@@ -430,7 +430,10 @@ basl_fwrite_fadt(FILE *fp)
 	EFPRINTF(fp, "\n");
 
 	EFPRINTF(fp, "[0001]\t\tValue to cause reset : 06\n");
-	EFPRINTF(fp, "[0003]\t\tReserved : 000000\n");
+	EFPRINTF(fp, "[0002]\t\tARM Flags (decoded below): 0000\n");
+	EFPRINTF(fp, "\t\t\tPSCI Compliant : 0\n");
+	EFPRINTF(fp, "\t\t\tMust use HVC for PSCI : 0\n");
+	EFPRINTF(fp, "[0001]\t\tFADT Minor Revision : 01\n");
 	EFPRINTF(fp, "[0008]\t\tFACS Address : 00000000%08X\n",
 	    basl_acpi_base + FACS_OFFSET);
 	EFPRINTF(fp, "[0008]\t\tDSDT Address : 00000000%08X\n",



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