From 6d19a20f5fb46956d4324dff28ed4b59dc7776a3 Mon Sep 17 00:00:00 2001 From: Elyes HAOUAS Date: Thu, 22 Nov 2018 11:15:29 +0100 Subject: mb: Set coreboot as DSDT's manufacturer model ID Field 'OEMID' & "OEM Table ID" are related to DSDT table not to mainboard. So use macro to set them respectvely to "COREv4" and "COREBOOT". Change-Id: I060e07a730e721df4a86128ee89bfe168c69f31e Signed-off-by: Elyes HAOUAS Reviewed-on: https://review.coreboot.org/c/29790 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi Reviewed-by: David Guckian --- src/mainboard/emulation/qemu-i440fx/dsdt.asl | 5 +++-- src/mainboard/emulation/qemu-q35/dsdt.asl | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) (limited to 'src/mainboard/emulation') diff --git a/src/mainboard/emulation/qemu-i440fx/dsdt.asl b/src/mainboard/emulation/qemu-i440fx/dsdt.asl index f48280ebe3..e4be1139f3 100644 --- a/src/mainboard/emulation/qemu-i440fx/dsdt.asl +++ b/src/mainboard/emulation/qemu-i440fx/dsdt.asl @@ -13,12 +13,13 @@ * Lesser General Public License for more details. */ +#include DefinitionBlock ( "dsdt.aml", // Output Filename "DSDT", // Signature 0x01, // DSDT Compliance Revision - "CORE", // OEMID - "COREBOOT", // TABLE ID + OEM_ID, + ACPI_TABLE_CREATOR, 0x1 // OEM Revision ) { diff --git a/src/mainboard/emulation/qemu-q35/dsdt.asl b/src/mainboard/emulation/qemu-q35/dsdt.asl index bd998bd58e..a861aed55c 100644 --- a/src/mainboard/emulation/qemu-q35/dsdt.asl +++ b/src/mainboard/emulation/qemu-q35/dsdt.asl @@ -19,12 +19,13 @@ * Based on acpi-dsdt.dsl, but heavily modified for q35 chipset. */ +#include DefinitionBlock ( "dsdt.aml", // Output Filename "DSDT", // Signature 0x01, // DSDT Compliance Revision - "CORE", // OEMID - "COREBOOT", // TABLE ID + OEM_ID, + ACPI_TABLE_CREATOR, 0x2 // OEM Revision ) { -- cgit v1.2.3