29 lines
659 B
C
29 lines
659 B
C
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
||
|
|
||
|
/* TODO: Make common? */
|
||
|
|
||
|
#include <acpi/acpi.h>
|
||
|
#include <amdblocks/acpi.h>
|
||
|
#include <device/device.h>
|
||
|
#include <FspGuids.h>
|
||
|
#include <soc/acpi.h>
|
||
|
#include <types.h>
|
||
|
|
||
|
uintptr_t agesa_write_acpi_tables(const struct device *device, uintptr_t current,
|
||
|
acpi_rsdp_t *rsdp)
|
||
|
{
|
||
|
acpi_ivrs_t *ivrs;
|
||
|
|
||
|
/* add ALIB SSDT from HOB */
|
||
|
current = add_agesa_fsp_acpi_table(AMD_FSP_ACPI_ALIB_HOB_GUID, "ALIB", rsdp, current);
|
||
|
|
||
|
/* IVRS */
|
||
|
current = ALIGN(current, 8);
|
||
|
ivrs = (acpi_ivrs_t *)current;
|
||
|
acpi_create_ivrs(ivrs, acpi_fill_ivrs);
|
||
|
current += ivrs->header.length;
|
||
|
acpi_add_table(rsdp, ivrs);
|
||
|
|
||
|
return current;
|
||
|
}
|