mb/starlabs/{lite_adl,byte_adl}: Don't select MAINBOARD_HAS_TPM2
[coreboot2.git] / src / soc / intel / cannonlake / systemagent.c
bloba2bea45bf940a5df1811ce6dd56be53932c5322b
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <device/device.h>
4 #include <delay.h>
5 #include <device/pci.h>
6 #include <device/pci_ops.h>
7 #include <intelblocks/power_limit.h>
8 #include <intelblocks/systemagent.h>
9 #include <soc/cpu.h>
10 #include <soc/iomap.h>
11 #include <soc/systemagent.h>
12 #include "chip.h"
15 * SoC implementation
17 * Add all known fixed memory ranges for Host Controller/Memory
18 * controller.
20 void soc_add_fixed_mmio_resources(struct device *dev, int *index)
22 static const struct sa_mmio_descriptor soc_fixed_resources[] = {
23 { PCIEXBAR, CONFIG_ECAM_MMCONF_BASE_ADDRESS, CONFIG_ECAM_MMCONF_LENGTH,
24 "PCIEXBAR" },
25 { MCHBAR, MCH_BASE_ADDRESS, MCH_BASE_SIZE, "MCHBAR" },
26 { DMIBAR, DMI_BASE_ADDRESS, DMI_BASE_SIZE, "DMIBAR" },
27 { EPBAR, EP_BASE_ADDRESS, EP_BASE_SIZE, "EPBAR" },
28 { REGBAR, REG_BASE_ADDRESS, REG_BASE_SIZE, "REGBAR" },
29 { EDRAMBAR, EDRAM_BASE_ADDRESS, EDRAM_BASE_SIZE, "EDRAMBAR" },
32 sa_add_fixed_mmio_resources(dev, index, soc_fixed_resources,
33 ARRAY_SIZE(soc_fixed_resources));
35 /* Add Vt-d resources if VT-d is enabled. */
36 if ((pci_read_config32(dev, CAPID0_A) & VTD_DISABLE))
37 return;
39 sa_add_fixed_mmio_resources(dev, index, soc_vtd_resources,
40 ARRAY_SIZE(soc_vtd_resources));
44 * SoC implementation
46 * Perform System Agent Initialization during Ramstage phase.
48 void soc_systemagent_init(struct device *dev)
50 struct soc_power_limits_config *soc_config;
51 config_t *config;
53 /* Enable Power Aware Interrupt Routing */
54 enable_power_aware_intr();
56 /* Enable BIOS Reset CPL */
57 enable_bios_reset_cpl();
59 /* Configure turbo power limits 1ms after reset complete bit */
60 mdelay(1);
61 config = config_of_soc();
62 soc_config = &config->power_limits_config;
63 set_power_limits(MOBILE_SKU_PL1_TIME_SEC, soc_config);
66 uint32_t soc_systemagent_max_chan_capacity_mib(u8 capid0_a_ddrsz)
68 switch (capid0_a_ddrsz) {
69 case 1:
70 return 8192;
71 case 2:
72 return 4096;
73 case 3:
74 return 2048;
75 default:
76 return 32768;