blob: 0f49f6a01ca217f62fc17c3fdd7d994625e44e1d [file] [log] [blame]
Martin Rothf95a11e2022-10-21 16:43:08 -06001/* SPDX-License-Identifier: GPL-2.0-only */
2
3/* TODO: Update for Glinda */
4
Felix Heldd9e82632024-01-26 14:22:31 +01005#include <amdblocks/acpi.h>
Fred Reitberger31e62982022-10-31 14:18:20 -04006#include <amdblocks/data_fabric.h>
Felix Held4e818c52024-01-18 21:43:30 +01007#include <amdblocks/fsp.h>
Martin Rothf95a11e2022-10-21 16:43:08 -06008#include <console/console.h>
9#include <device/device.h>
10#include <device/pci.h>
Martin Rothf95a11e2022-10-21 16:43:08 -060011#include <soc/cpu.h>
Martin Rothf95a11e2022-10-21 16:43:08 -060012#include <soc/pci_devs.h>
13#include <soc/southbridge.h>
14#include <types.h>
15#include "chip.h"
16
Martin Rothf95a11e2022-10-21 16:43:08 -060017static const char *soc_acpi_name(const struct device *dev)
18{
19 if (dev->path.type == DEVICE_PATH_DOMAIN)
20 return "PCI0";
21
22 if (dev->path.type != DEVICE_PATH_PCI)
23 return NULL;
24
25 printk(BIOS_WARNING, "Unknown PCI device: dev: %d, fn: %d\n",
26 PCI_SLOT(dev->path.pci.devfn), PCI_FUNC(dev->path.pci.devfn));
27 return NULL;
28};
29
30struct device_operations glinda_pci_domain_ops = {
Felix Heldb56ea252023-05-31 16:25:30 +020031 .read_resources = amd_pci_domain_read_resources,
Martin Rothf95a11e2022-10-21 16:43:08 -060032 .set_resources = pci_domain_set_resources,
Felix Heldb56ea252023-05-31 16:25:30 +020033 .scan_bus = amd_pci_domain_scan_bus,
Martin Rothf95a11e2022-10-21 16:43:08 -060034 .acpi_name = soc_acpi_name,
Felix Heldb56ea252023-05-31 16:25:30 +020035 .acpi_fill_ssdt = amd_pci_domain_fill_ssdt,
Martin Rothf95a11e2022-10-21 16:43:08 -060036};
37
38static void soc_init(void *chip_info)
39{
Felix Held1b410d92024-01-26 14:05:58 +010040 default_dev_ops_root.write_acpi_tables = soc_acpi_write_tables;
Martin Rothf95a11e2022-10-21 16:43:08 -060041
Felix Held4e818c52024-01-18 21:43:30 +010042 amd_fsp_silicon_init();
Martin Rothf95a11e2022-10-21 16:43:08 -060043
44 data_fabric_set_mmio_np();
45
46 fch_init(chip_info);
47}
48
49static void soc_final(void *chip_info)
50{
51 fch_final(chip_info);
52}
53
54struct chip_operations soc_amd_glinda_ops = {
55 CHIP_NAME("AMD Glinda SoC")
56 .init = soc_init,
57 .final = soc_final
58};