diff options
author | Jason Glenesk <jason.glenesk@amd.corp-partner.google.com> | 2021-07-20 02:19:58 -0700 |
---|---|---|
committer | Paul Fagerburg <pfagerburg@chromium.org> | 2021-08-05 15:54:47 +0000 |
commit | f934fae03215affaa09bd45d95fc6a785eacf533 (patch) | |
tree | 033d6cb040aade36e4c4878f010001600bc2ca83 /src/soc/amd/common/block/include | |
parent | 3fc0190bbc11c6444db9d515c09dbab09af3cadd (diff) |
soc/amd/picasso: Move IVRS generation code to common
Move IVRS acpi table generation code to common, so that it can be shared
by other programs.
BUG=b:190515051
TEST=Build picasso coreboot image. Compare IVRS tables before/after
change.
Change-Id: Icd5fec3a9d66e8301e267312020e726d9bc1aa70
Signed-off-by: Jason Glenesk <jason.glenesk@amd.corp-partner.google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/56450
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/soc/amd/common/block/include')
-rw-r--r-- | src/soc/amd/common/block/include/amdblocks/acpi.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/soc/amd/common/block/include/amdblocks/acpi.h b/src/soc/amd/common/block/include/amdblocks/acpi.h index fa75e5ae53..f0ba2acac5 100644 --- a/src/soc/amd/common/block/include/amdblocks/acpi.h +++ b/src/soc/amd/common/block/include/amdblocks/acpi.h @@ -60,5 +60,6 @@ uintptr_t add_agesa_fsp_acpi_table(guid_t guid, const char *name, acpi_rsdp_t *r uintptr_t current); void acpi_log_events(const struct chipset_power_state *ps); +unsigned long acpi_fill_ivrs(acpi_ivrs_t *ivrs, unsigned long current); #endif /* AMD_BLOCK_ACPI_H */ |