Even though it has an 'amd_' prefix, the amd_pci_domain_fill_ssdt implementation doesn't contain any AMD-specific code and can also be used by other SoCs. So factor it out, move the implementation to src/acpi/acpigen_pci_root_resource_producer.c, and rename it to pci_domain_fill_ssdt. When a SoC now assigns pci_domain_fill_ssdt to its domain operation's acpi_fill_ssdt function pointer, the PCI domain resource producer information will be added to the SSDT. Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: I7bd8568cf0b7051c74adbedfe0e416a0938ccb99 Reviewed-on: https://review.coreboot.org/c/coreboot/+/80464 Reviewed-by: Patrick Rudolph <patrick.rudolph@9elements.com> Reviewed-by: Matt DeVillier <matt.devillier@amd.corp-partner.google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
60 lines
1.4 KiB
C
60 lines
1.4 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#include <acpi/acpigen_pci.h>
|
|
#include <amdblocks/acpi.h>
|
|
#include <amdblocks/data_fabric.h>
|
|
#include <amdblocks/fsp.h>
|
|
#include <amdblocks/root_complex.h>
|
|
#include <console/console.h>
|
|
#include <device/device.h>
|
|
#include <device/pci.h>
|
|
#include <soc/cpu.h>
|
|
#include <soc/pci_devs.h>
|
|
#include <soc/southbridge.h>
|
|
#include <types.h>
|
|
#include "chip.h"
|
|
|
|
static const char *soc_acpi_name(const struct device *dev)
|
|
{
|
|
if (dev->path.type == DEVICE_PATH_DOMAIN)
|
|
return "PCI0";
|
|
|
|
if (dev->path.type != DEVICE_PATH_PCI)
|
|
return NULL;
|
|
|
|
printk(BIOS_WARNING, "Unknown PCI device: dev: %d, fn: %d\n",
|
|
PCI_SLOT(dev->path.pci.devfn), PCI_FUNC(dev->path.pci.devfn));
|
|
return NULL;
|
|
};
|
|
|
|
struct device_operations mendocino_pci_domain_ops = {
|
|
.read_resources = amd_pci_domain_read_resources,
|
|
.set_resources = pci_domain_set_resources,
|
|
.scan_bus = amd_pci_domain_scan_bus,
|
|
.init = amd_pci_domain_init,
|
|
.acpi_name = soc_acpi_name,
|
|
.acpi_fill_ssdt = pci_domain_fill_ssdt,
|
|
};
|
|
|
|
static void soc_init(void *chip_info)
|
|
{
|
|
default_dev_ops_root.write_acpi_tables = soc_acpi_write_tables;
|
|
|
|
amd_fsp_silicon_init();
|
|
|
|
data_fabric_print_mmio_conf();
|
|
|
|
fch_init(chip_info);
|
|
}
|
|
|
|
static void soc_final(void *chip_info)
|
|
{
|
|
fch_final(chip_info);
|
|
}
|
|
|
|
struct chip_operations soc_amd_mendocino_ops = {
|
|
.name = "AMD Mendocino SoC",
|
|
.init = soc_init,
|
|
.final = soc_final
|
|
};
|