Use the new common AMD code that gets the usable non-fixed MMIO windows from the data fabric MMIO decode registers and generate the PCI0 _CRS ACPI code based on those regions. For a more detailed description see the corresponding patch that changes the Picasso code to use this new code. In contrast to the Picasso code, this change will drop the unneeded _STA method inside the PCI0 scope which wasn't present in Picasso's ACPI code before it got replaced by the SSDT that gets generated by amd_pci_domain_fill_ssdt. TEST=None Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: I948d882b2e2c6d19f73c0be094e4ff6e42ec81d6 Reviewed-on: https://review.coreboot.org/c/coreboot/+/75560 Reviewed-by: Raul Rangel <rrangel@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
59 lines
1.3 KiB
C
59 lines
1.3 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
/* TODO: Update for Glinda */
|
|
|
|
#include <amdblocks/data_fabric.h>
|
|
#include <console/console.h>
|
|
#include <device/device.h>
|
|
#include <device/pci.h>
|
|
#include <fsp/api.h>
|
|
#include <soc/acpi.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 glinda_pci_domain_ops = {
|
|
.read_resources = amd_pci_domain_read_resources,
|
|
.set_resources = pci_domain_set_resources,
|
|
.scan_bus = amd_pci_domain_scan_bus,
|
|
.acpi_name = soc_acpi_name,
|
|
.acpi_fill_ssdt = amd_pci_domain_fill_ssdt,
|
|
};
|
|
|
|
static void soc_init(void *chip_info)
|
|
{
|
|
default_dev_ops_root.write_acpi_tables = agesa_write_acpi_tables;
|
|
|
|
fsp_silicon_init();
|
|
|
|
data_fabric_set_mmio_np();
|
|
|
|
fch_init(chip_info);
|
|
}
|
|
|
|
static void soc_final(void *chip_info)
|
|
{
|
|
fch_final(chip_info);
|
|
}
|
|
|
|
struct chip_operations soc_amd_glinda_ops = {
|
|
CHIP_NAME("AMD Glinda SoC")
|
|
.init = soc_init,
|
|
.final = soc_final
|
|
};
|