blob: e42823009da7640fb0f4ed702f61cb9aaaea4d4f [file] [log] [blame]
Felix Held926887c2023-10-13 21:19:53 +02001/* SPDX-License-Identifier: GPL-2.0-only */
2
3#include <amdblocks/data_fabric.h>
4#include <amdblocks/root_complex.h>
5#include <amdblocks/smn.h>
6#include <arch/ioapic.h>
7#include <console/console.h>
8#include <device/device.h>
9#include <types.h>
10
Felix Held2f58bbd2023-12-07 22:04:13 +010011#include <vendorcode/amd/opensil/genoa_poc/opensil.h>
12
Felix Held926887c2023-10-13 21:19:53 +020013#define IOHC_IOAPIC_BASE_ADDR_LO 0x2f0
14
Felix Held2f58bbd2023-12-07 22:04:13 +010015static void genoa_domain_read_resources(struct device *domain)
16{
17 amd_pci_domain_read_resources(domain);
18
19 // We only want to add the DRAM memory map once
20 if (domain->link_list->secondary == 0) {
21 /* 0x1000 is a large enough first index to be sure to not overlap with the
22 resources added by amd_pci_domain_read_resources */
23 add_opensil_memmap(domain, 0x1000);
24 }
25}
26
Felix Held926887c2023-10-13 21:19:53 +020027static void genoa_domain_set_resources(struct device *domain)
28{
29 if (domain->link_list->bridge_ctrl & PCI_BRIDGE_CTL_VGA) {
30 printk(BIOS_DEBUG, "Setting VGA decoding for domain 0x%x\n",
31 domain->path.domain.domain);
32 const union df_vga_en vga_en = {
33 .ve = 1,
34 .dst_fabric_id = get_iohc_fabric_id(domain),
35 };
36 data_fabric_broadcast_write32(DF_VGA_EN, vga_en.raw);
37 }
38
39 pci_domain_set_resources(domain);
40
41 /* Enable IOAPIC memory decoding */
42 struct resource *res = probe_resource(domain, IOMMU_IOAPIC_IDX);
43 if (res) {
44 const uint32_t iohc_misc_base = get_iohc_misc_smn_base(domain);
45 uint32_t ioapic_base = smn_read32(iohc_misc_base | IOHC_IOAPIC_BASE_ADDR_LO);
46 ioapic_base |= (1 << 0);
47 smn_write32(iohc_misc_base | IOHC_IOAPIC_BASE_ADDR_LO, ioapic_base);
48 }
49}
50
51struct device_operations genoa_pci_domain_ops = {
Felix Held2f58bbd2023-12-07 22:04:13 +010052 .read_resources = genoa_domain_read_resources,
Felix Held926887c2023-10-13 21:19:53 +020053 .set_resources = genoa_domain_set_resources,
54 .scan_bus = amd_pci_domain_scan_bus,
55};