diff options
author | Matt DeVillier <matt.devillier@gmail.com> | 2023-08-31 09:59:01 -0500 |
---|---|---|
committer | Martin L Roth <gaumless@gmail.com> | 2023-09-01 21:24:12 +0000 |
commit | bed01d794f0b94f2a3cf4c1a3a45f7536b05d288 (patch) | |
tree | 56fbd191023afcc02ada1d88c4ae5e76d3ac78e3 /src/soc/intel/common | |
parent | 5849f5bd323d496977f50d2ffa1dbdc5ba3ecaf3 (diff) |
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>
Diffstat (limited to 'src/soc/intel/common')
-rw-r--r-- | src/soc/intel/common/block/acpi/acpi/gna.asl | 8 |
1 files changed, 8 insertions, 0 deletions
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 0000000000..d5ad4f7abc --- /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") +} |