soc/amd/phoenix/agesa_acpi: use acpi_align_current to align IVRS & ALIB
This changes the alignment of the IVRS table from 8 bytes to 16 bytes and aligns the ALIB table to a 16 byte boundary. Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: I766260aefcac6876609d6b45202b41a3e9e44385 Reviewed-on: https://review.coreboot.org/c/coreboot/+/72025 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Fred Reitberger <reitbergerfred@gmail.com>
This commit is contained in:
parent
19f4c39cfe
commit
192945e61c
|
@ -16,10 +16,11 @@ uintptr_t agesa_write_acpi_tables(const struct device *device, uintptr_t current
|
||||||
acpi_ivrs_t *ivrs;
|
acpi_ivrs_t *ivrs;
|
||||||
|
|
||||||
/* add ALIB SSDT from HOB */
|
/* add ALIB SSDT from HOB */
|
||||||
|
current = acpi_align_current(current);
|
||||||
current = add_agesa_fsp_acpi_table(AMD_FSP_ACPI_ALIB_HOB_GUID, "ALIB", rsdp, current);
|
current = add_agesa_fsp_acpi_table(AMD_FSP_ACPI_ALIB_HOB_GUID, "ALIB", rsdp, current);
|
||||||
|
|
||||||
/* IVRS */
|
/* IVRS */
|
||||||
current = ALIGN_UP(current, 8);
|
current = acpi_align_current(current);
|
||||||
ivrs = (acpi_ivrs_t *)current;
|
ivrs = (acpi_ivrs_t *)current;
|
||||||
acpi_create_ivrs(ivrs, acpi_fill_ivrs);
|
acpi_create_ivrs(ivrs, acpi_fill_ivrs);
|
||||||
current += ivrs->header.length;
|
current += ivrs->header.length;
|
||||||
|
|
Loading…
Reference in New Issue