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 <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/29790 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com> Reviewed-by: David Guckian
This commit is contained in:
committed by
Patrick Georgi
parent
e7207593ec
commit
6d19a20f5f
@@ -14,12 +14,13 @@
|
||||
*/
|
||||
|
||||
/*
|
||||
#include <arch/acpi.h>
|
||||
DefinitionBlock (
|
||||
"DSDT.AML",
|
||||
"DSDT",
|
||||
0x01,
|
||||
"XXXXXX",
|
||||
"XXXXXXXX",
|
||||
OEM_ID,
|
||||
ACPI_TABLE_CREATOR,
|
||||
0x00010001
|
||||
)
|
||||
{
|
||||
|
@@ -52,6 +52,9 @@
|
||||
#define SLP_TYP_S5 5
|
||||
#endif
|
||||
|
||||
#define ACPI_TABLE_CREATOR "COREBOOT" /* Must be exactly 8 bytes long! */
|
||||
#define OEM_ID "COREv4" /* Must be exactly 6 bytes long! */
|
||||
|
||||
#if !defined(__ASSEMBLER__) && !defined(__ACPI__) && !defined(__ROMCC__)
|
||||
#include <stdint.h>
|
||||
#include <rules.h>
|
||||
@@ -61,8 +64,6 @@
|
||||
#include <cper.h>
|
||||
|
||||
#define RSDP_SIG "RSD PTR " /* RSDT pointer signature */
|
||||
#define ACPI_TABLE_CREATOR "COREBOOT" /* Must be exactly 8 bytes long! */
|
||||
#define OEM_ID "CORE " /* Must be exactly 6 bytes long! */
|
||||
#define ASLC "CORE" /* Must be exactly 4 bytes long! */
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user