svn commit: r272481 - head/usr.sbin/bhyve
Peter Grehan
grehan at FreeBSD.org
Fri Oct 3 17:27:31 UTC 2014
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",
More information about the svn-src-head
mailing list