mb/amd/onyx: Add minimal code for onyx compilation

Change-Id: I25807e116869d1bd7b8324525bc5ae1691e072e4
Signed-off-by: Varshit Pandya <pandyavarshit@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/77601
Reviewed-by: Martin L Roth <gaumless@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Varshit Pandya 2023-08-31 22:18:48 +05:30 committed by Martin L Roth
parent 6d3682ee9b
commit d888f61f08
5 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,14 @@
if BOARD_AMD_ONYX
config BOARD_SPECIFIC_OPTIONS
def_bool y
select SOC_AMD_GENOA
select MISSING_BOARD_RESET
config MAINBOARD_DIR
default "amd/onyx"
config MAINBOARD_PART_NUMBER
default "Onyx"
endif

View File

@ -0,0 +1,2 @@
config BOARD_AMD_ONYX
bool "Onyx"

View File

@ -0,0 +1 @@
Category: eval

View File

@ -0,0 +1,6 @@
chip soc/amd/genoa
device domain 0 on
end
end

View File

@ -0,0 +1,13 @@
/* SPDX-License-Identifier: GPL-2.0-only */
/* DefinitionBlock Statement */
#include <acpi/acpi.h>
DefinitionBlock (
"dsdt.aml",
"DSDT",
ACPI_DSDT_REV_2,
OEM_ID,
ACPI_TABLE_CREATOR,
0x00010001 /* OEM Revision */
)
} /* End of ASL file */