1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <arch/ioapic.h>
4 #include <console/console.h>
5 #include <cpu/x86/msr.h>
6 #include <device/device.h>
7 #include <device/pci.h>
8 #include <intelblocks/cpulib.h>
9 #include <intelblocks/msr.h>
10 #include <intelblocks/power_limit.h>
11 #include <intelblocks/systemagent.h>
12 #include <soc/iomap.h>
13 #include <soc/soc_chip.h>
14 #include <soc/systemagent.h>
20 * Add all known fixed memory ranges for Host Controller/Memory
23 void soc_add_fixed_mmio_resources(struct device
*dev
, int *index
)
25 static const struct sa_mmio_descriptor soc_fixed_resources
[] = {
26 { MCHBAR
, MCH_BASE_ADDRESS
, MCH_BASE_SIZE
, "MCHBAR" },
27 { SAFBAR
, SAF_BASE_ADDRESS
, SAF_BASE_SIZE
, "SAFBAR" },
28 { EPBAR
, EP_BASE_ADDRESS
, EP_BASE_SIZE
, "EPBAR" },
29 { REGBAR
, REG_BASE_ADDRESS
, REG_BASE_SIZE
, "REGBAR" },
30 /* First field (sa_mmio_descriptor.index) is not used, setting to 0: */
31 { 0, CRAB_ABORT_BASE_ADDR
, CRAB_ABORT_SIZE
, "CRAB_ABORT" },
32 { 0, LT_SECURITY_BASE_ADDR
, LT_SECURITY_SIZE
, "LT_SECURITY" },
33 { 0, IO_APIC_ADDR
, APIC_SIZE
, "APIC" },
34 { 0, PCH_PRESERVED_BASE_ADDRESS
, PCH_PRESERVED_BASE_SIZE
, "PCH_RESERVED" },
37 sa_add_fixed_mmio_resources(dev
, index
, soc_fixed_resources
,
38 ARRAY_SIZE(soc_fixed_resources
));
40 /* Add Vt-d resources if VT-d is enabled */
41 if ((pci_read_config32(dev
, CAPID0_A
) & VTD_DISABLE
))
44 sa_add_fixed_mmio_resources(dev
, index
, soc_vtd_resources
,
45 ARRAY_SIZE(soc_vtd_resources
));
49 * Set MMIO resource's fields
51 static void set_mmio_resource(
52 struct sa_mmio_descriptor
*resource
,
55 const char *description
)
57 if (resource
== NULL
) {
58 printk(BIOS_ERR
, "%s: argument resource is NULL for %s\n",
59 __func__
, description
);
62 resource
->base
= base
;
63 resource
->size
= size
;
64 resource
->description
= description
;
67 int soc_get_uncore_prmmr_base_and_mask(uint64_t *prmrr_base
,
71 msr
= rdmsr(MSR_PRMRR_BASE_0
);
72 *prmrr_base
= (uint64_t)msr
.hi
<< 32 | msr
.lo
;
73 msr
= rdmsr(MSR_PRMRR_PHYS_MASK
);
74 *prmrr_mask
= (uint64_t)msr
.hi
<< 32 | msr
.lo
;
81 * Add all known configurable memory ranges for Host Controller/Memory
84 void soc_add_configurable_mmio_resources(struct device
*dev
, int *resource_cnt
)
86 uint64_t size
, base
, tseg_base
;
88 struct sa_mmio_descriptor cfg_rsrc
[6]; /* Increase size when adding more resources */
91 size
= sa_get_mmcfg_size();
93 set_mmio_resource(&(cfg_rsrc
[count
++]), CONFIG_ECAM_MMCONF_BASE_ADDRESS
,
97 size
= sa_get_dsm_size();
99 base
= pci_read_config32(dev
, BDSM
) & 0xFFF00000;
100 set_mmio_resource(&(cfg_rsrc
[count
++]), base
, size
, "DSM");
104 size
= sa_get_tseg_size();
105 tseg_base
= sa_get_tseg_base();
107 set_mmio_resource(&(cfg_rsrc
[count
++]), tseg_base
, size
, "TSEG");
110 size
= get_valid_prmrr_size();
113 if (soc_get_uncore_prmmr_base_and_mask(&base
, &mask
) == 0) {
115 set_mmio_resource(&(cfg_rsrc
[count
++]), base
, size
, "PMRR");
117 printk(BIOS_ERR
, "SA: Failed to get PRMRR base and mask\n");
122 size
= sa_get_gsm_size();
124 base
= sa_get_gsm_base();
125 set_mmio_resource(&(cfg_rsrc
[count
++]), base
, size
, "GSM");
129 size
= sa_get_dpr_size();
131 /* DPR just below TSEG: */
132 base
= tseg_base
- size
;
133 set_mmio_resource(&(cfg_rsrc
[count
++]), base
, size
, "DPR");
136 /* Add all the above */
137 sa_add_fixed_mmio_resources(dev
, resource_cnt
, cfg_rsrc
, count
);
140 static void configure_tdp(struct device
*dev
)
142 struct soc_power_limits_config
*soc_config
;
147 bool config_tdp
= false;
148 struct soc_intel_pantherlake_config
*config
;
150 config
= config_of_soc();
152 /* Get System Agent PCI ID */
153 sa
= pcidev_path_on_root(PCI_DEVFN_ROOT
);
154 sa_pci_id
= sa
? pci_read_config16(sa
, PCI_DEVICE_ID
) : 0xFFFF;
156 if (sa_pci_id
== 0xFFFF) {
157 printk(BIOS_WARNING
, "Unknown SA PCI Device!\n");
164 * Choose power limits configuration based on the CPU SA PCI ID and
167 for (i
= 0; i
< ARRAY_SIZE(cpuid_to_ptl
); i
++) {
168 if (sa_pci_id
== cpuid_to_ptl
[i
].cpu_id
&&
169 tdp
== cpuid_to_ptl
[i
].cpu_tdp
) {
170 soc_config
= &config
->power_limits_config
[cpuid_to_ptl
[i
].limits
];
171 set_power_limits(MOBILE_SKU_PL1_TIME_SEC
, soc_config
);
173 printk(BIOS_DEBUG
, "Configured power limits for SA PCI ID: 0x%4x\n",
180 printk(BIOS_WARNING
, "Skipped power limits configuration for SA PCI ID: 0x%4x\n",
189 * Perform System Agent Initialization during ramstage phase.
191 void soc_systemagent_init(struct device
*dev
)
193 /* Enable Power Aware Interrupt Routing */
194 enable_power_aware_intr();
200 uint32_t soc_systemagent_max_chan_capacity_mib(u8 capid0_a_ddrsz
)
202 switch (capid0_a_ddrsz
) {