Martin L Roth has submitted this change. ( https://review.coreboot.org/c/coreboot/+/77528?usp=email )
Change subject: soc/intel/common/acpi: Add stub for GNA scoring accelerator ......................................................................
soc/intel/common/acpi: Add stub for GNA scoring accelerator
Allows boards which enable the GNA device to provide an attachment point for the OS drivers.
TEST=tested with rest of patch train
Change-Id: I3398eefb80e4407594883dd39128cd7885105ac3 Signed-off-by: Matt DeVillier matt.devillier@gmail.com Signed-off-by: CoolStar coolstarorganization@gmail.com Reviewed-on: https://review.coreboot.org/c/coreboot/+/77528 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Subrata Banik subratabanik@google.com --- A src/soc/intel/common/block/acpi/acpi/gna.asl 1 file changed, 8 insertions(+), 0 deletions(-)
Approvals: Subrata Banik: Looks good to me, approved build bot (Jenkins): Verified
diff --git a/src/soc/intel/common/block/acpi/acpi/gna.asl b/src/soc/intel/common/block/acpi/acpi/gna.asl new file mode 100644 index 0000000..d5ad4f7 --- /dev/null +++ b/src/soc/intel/common/block/acpi/acpi/gna.asl @@ -0,0 +1,8 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ + +/* GNA Scoring Accelerator - Device 08, Function 0 */ +Device (GNA) +{ + Name (_ADR, 0x00080000) + Name (_DDN, "GNA Scoring Accelerator") +}