Avenue City CRB is the 2 socket reference board for 6th Gen Xeon-SP AP SoCs (Granite Rapids AP and Sierra Forest AP). This patch initially sets the code set up as a compilation target with GNR N-1 FSP, and with basic feature supports (Integrated IO Controller (IIO) configuration, BMC, UART, HPET). TEST=Build on intel/avenuecity CRB Change-Id: I64fdd5388aadf7732f6d3daa600c1455d3672a46 Signed-off-by: Gang Chen <gang.c.chen@intel.com> Co-authored-by: Shuo Liu <shuo.liu@intel.com> Co-authored-by: Jincheng Li <jincheng.li@intel.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/81319 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Lean Sheng Tan <sheng.tan@9elements.com>
22 lines
504 B
Plaintext
22 lines
504 B
Plaintext
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
#include <acpi/acpi.h>
|
|
|
|
DefinitionBlock(
|
|
"dsdt.aml",
|
|
"DSDT",
|
|
ACPI_DSDT_REV_2,
|
|
OEM_ID,
|
|
ACPI_TABLE_CREATOR,
|
|
0x20110725
|
|
)
|
|
{
|
|
#include <acpi/dsdt_top.asl>
|
|
#include <soc/intel/common/block/acpi/acpi/globalnvs.asl>
|
|
#include <soc/intel/xeon_sp/gnr/acpi/gpe.asl>
|
|
#include <southbridge/intel/common/acpi/sleepstates.asl>
|
|
#include <commonlib/include/commonlib/console/post_codes.h>
|
|
#include <arch/x86/acpi/post.asl>
|
|
#include <arch/x86/acpi/debug.asl>
|
|
}
|