payloads/edk2: Disable the CPU Timer Lib unless supported
[coreboot.git] / src / mainboard / siemens / mc_apl1 / mainboard.c
blobdc188b3405a30f39695601451391729f8a88e8b5
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <bootstate.h>
4 #include <console/console.h>
5 #include <device/mmio.h>
6 #include <device/device.h>
7 #include <device/pci_ops.h>
8 #include <device/pci_ids.h>
9 #include <hwilib.h>
10 #include <i210.h>
11 #include <intelblocks/cpulib.h>
12 #include <intelblocks/fast_spi.h>
13 #include <intelblocks/systemagent.h>
14 #include <soc/pci_devs.h>
15 #include <soc/ramstage.h>
16 #include <string.h>
17 #include <timer.h>
18 #include <timestamp.h>
19 #include <baseboard/variants.h>
20 #include <types.h>
22 #define MAX_PATH_DEPTH 12
23 #define MAX_NUM_MAPPINGS 10
25 #define BIOS_MAILBOX_WAIT_MAX_MS 1000
26 #define BIOS_MAILBOX_DATA 0x7080
27 #define BIOS_MAILBOX_INTERFACE 0x7084
28 #define RUN_BUSY_STS (1 << 31)
30 #define SD_CAP_BYP 0x810
31 #define SD_CAP_BYP_EN 0x5A
32 #define SD_CAP_BYP_REG1 0x814
34 /** \brief This function can decide if a given MAC address is valid or not.
35 * Currently, addresses filled with 0xff or 0x00 are not valid.
36 * @param mac Buffer to the MAC address to check
37 * @return 0 if address is not valid, otherwise 1
39 static uint8_t is_mac_adr_valid(uint8_t mac[MAC_ADDR_LEN])
41 for (size_t i = 0; i < MAC_ADDR_LEN; i++) {
42 if (mac[i] != 0x00 && mac[i] != 0xff)
43 return 1;
44 if (mac[i] != mac[0])
45 return 1;
47 return 0;
50 /** \brief This function will search for a MAC address which can be assigned
51 * to a MACPHY.
52 * @param dev pointer to PCI device
53 * @param mac buffer where to store the MAC address
54 * @return cb_err CB_ERR or CB_SUCCESS
56 enum cb_err mainboard_get_mac_address(struct device *dev, uint8_t mac[MAC_ADDR_LEN])
58 struct bus *parent = dev->bus;
59 uint8_t buf[16], mapping[16], i = 0, chain_len = 0;
61 memset(buf, 0, sizeof(buf));
62 memset(mapping, 0, sizeof(mapping));
64 /* The first entry in the tree is the device itself. */
65 buf[0] = dev->path.pci.devfn;
66 chain_len = 1;
67 for (i = 1; i < MAX_PATH_DEPTH && parent->dev->bus->subordinate; i++) {
68 buf[i] = parent->dev->path.pci.devfn;
69 chain_len++;
70 parent = parent->dev->bus;
72 if (i == MAX_PATH_DEPTH) {
73 /* The path is deeper than MAX_PATH_DEPTH devices, error. */
74 printk(BIOS_ERR, "Too many bridges for %s\n", dev_path(dev));
75 return CB_ERR;
78 * Now construct the mapping based on the device chain starting from
79 * root bridge device to the device itself.
81 mapping[0] = 1;
82 mapping[1] = chain_len;
83 for (i = 0; i < chain_len; i++)
84 mapping[i + 4] = buf[chain_len - i - 1];
86 /* Open main hwinfo block */
87 if (hwilib_find_blocks("hwinfo.hex") != CB_SUCCESS)
88 return CB_ERR;
89 /* Now try to find a valid MAC address in hwinfo for this mapping. */
90 for (i = 0; i < MAX_NUM_MAPPINGS; i++) {
91 if (hwilib_get_field(XMac1Mapping + i, buf, 16) != 16)
92 continue;
93 if (memcmp(buf, mapping, chain_len + 4))
94 continue;
95 /* There is a matching mapping available, get MAC address. */
96 if (hwilib_get_field(XMac1 + i, mac, MAC_ADDR_LEN) == MAC_ADDR_LEN) {
97 if (is_mac_adr_valid(mac))
98 return CB_SUCCESS;
100 return CB_ERR;
102 /* No MAC address found for */
103 return CB_ERR;
106 /** \brief This function fixes an accuracy issue with IDT PMIC.
107 * The current reported system power consumption is higher than the
108 * actual consumption. With a correction of slope and offset for Vcc
109 * and Vnn, the issue is solved.
111 static void config_pmic_imon(void)
113 struct stopwatch sw;
114 uint32_t power_max;
116 printk(BIOS_DEBUG, "PMIC: Configure PMIC IMON - Start\n");
118 /* Calculate CPU TDP in mW */
119 power_max = cpu_get_power_max();
120 printk(BIOS_INFO, "PMIC: CPU TDP %d mW.\n", power_max);
123 * Fix Vnn slope and offset value.
124 * slope = 0x4a4 # 2.32
125 * offset = 0xfa0d # -2.975
127 stopwatch_init_msecs_expire(&sw, BIOS_MAILBOX_WAIT_MAX_MS);
128 /* Read P_CR_BIOS_MAILBOX_INTERFACE_0_0_0_MCHBAR and check RUN_BUSY. */
129 while ((MCHBAR32(BIOS_MAILBOX_INTERFACE) & RUN_BUSY_STS)) {
130 if (stopwatch_expired(&sw)) {
131 printk(BIOS_ERR, "PMIC: Power consumption measurement "
132 "setup fails for Vnn.\n");
133 return;
136 /* Set Vnn values into P_CR_BIOS_MAILBOX_DATA_0_0_0_MCHBAR. */
137 MCHBAR32(BIOS_MAILBOX_DATA) = 0xfa0d04a4;
138 /* Set command, address and busy bit. */
139 MCHBAR32(BIOS_MAILBOX_INTERFACE) = 0x8000011d;
140 printk(BIOS_DEBUG, "PMIC: Fix Vnn slope and offset value.\n");
143 * Fix Vcc slope and offset value.
144 * Premium and High SKU:
145 * slope = 0x466 # 2.2
146 * offset = 0xe833 # -11.9
147 * Low and Intermediate SKU:
148 * slope = 0x3b3 # 1.85
149 * offset = 0xed33 # -9.4
151 stopwatch_init_msecs_expire(&sw, BIOS_MAILBOX_WAIT_MAX_MS);
152 while ((MCHBAR32(BIOS_MAILBOX_INTERFACE) & RUN_BUSY_STS)) {
153 if (stopwatch_expired(&sw)) {
154 printk(BIOS_ERR, "PMIC: Power consumption measurement "
155 "setup fails for Vcc.\n");
156 return;
161 * CPU TDP limit between Premium/High and Low/Intermediate SKU
162 * is 9010 mW.
164 if (power_max > 9010) {
165 MCHBAR32(BIOS_MAILBOX_DATA) = 0xe8330466;
166 MCHBAR32(BIOS_MAILBOX_INTERFACE) = 0x8000001d;
167 printk(BIOS_INFO, "PMIC: Fix Vcc for Premium SKU.\n");
168 } else {
169 MCHBAR32(BIOS_MAILBOX_DATA) = 0xed3303b3;
170 MCHBAR32(BIOS_MAILBOX_INTERFACE) = 0x8000001d;
171 printk(BIOS_INFO, "PMIC: Fix Vcc for Low SKU.\n");
174 printk(BIOS_DEBUG, "PMIC: Configure PMIC IMON - End\n");
177 void mainboard_silicon_init_params(FSP_S_CONFIG *silconfig)
179 printk(BIOS_DEBUG, "MAINBOARD: %s/%s called\n", __FILE__, __func__);
181 /* Disable CPU power states (C-states) */
182 silconfig->EnableCx = 0;
184 /* Set max Pkg Cstate to PkgC0C1 */
185 silconfig->PkgCStateLimit = 0;
187 /* Disable PCIe Transmitter Half Swing for all RPs */
188 memset(silconfig->PcieRpTransmitterHalfSwing, 0,
189 sizeof(silconfig->PcieRpTransmitterHalfSwing));
191 /* Disable PCI Express Active State Power Management for all RPs */
192 memset(silconfig->PcieRpAspm, 0,
193 sizeof(silconfig->PcieRpAspm));
195 /* Disable PCI Express L1 Substate for all RPs */
196 memset(silconfig->PcieRpL1Substates, 0,
197 sizeof(silconfig->PcieRpL1Substates));
200 static void mainboard_init(void *chip_info)
202 const struct pad_config *pads;
203 size_t num;
205 pads = variant_gpio_table(&num);
206 gpio_configure_pads(pads, num);
208 config_pmic_imon();
211 static void mainboard_final(void *chip_info)
213 struct device *dev = NULL;
215 /* Do board specific things */
216 variant_mainboard_final();
218 /* Set Master Enable for on-board PCI device if allowed. */
219 if (CONFIG(PCI_ALLOW_BUS_MASTER_ANY_DEVICE)) {
220 dev = dev_find_device(PCI_VID_SIEMENS, 0x403f, 0);
221 if (dev) {
222 pci_or_config16(dev, PCI_COMMAND, PCI_COMMAND_MASTER);
225 /* Set up SPI OPCODE menu before the controller is locked. */
226 fast_spi_set_opcode_menu();
228 /* Set SD-Card speed to HS mode only. */
229 dev = pcidev_path_on_root(PCH_DEVFN_SDCARD);
230 if (dev) {
231 uint32_t reg;
232 struct resource *res = probe_resource(dev, PCI_BASE_ADDRESS_0);
233 if (!res)
234 return;
236 write32(res2mmio(res, SD_CAP_BYP, 0), SD_CAP_BYP_EN);
237 reg = read32(res2mmio(res, SD_CAP_BYP_REG1, 0));
238 /* Disable all UHS-I SD-Card speed modes, keep only HS mode. */
239 reg &= ~0x2000f800;
240 write32(res2mmio(res, SD_CAP_BYP_REG1, 0), reg);
244 /* The following function performs board specific things. */
245 void __weak variant_mainboard_final(void)
249 struct chip_operations mainboard_ops = {
250 .init = mainboard_init,
251 .final = mainboard_final,
254 static void wait_for_legacy_dev(void *unused)
256 uint32_t legacy_delay, us_since_boot;
257 struct stopwatch sw;
259 if (CONFIG(BOARD_SIEMENS_MC_APL4) || CONFIG(BOARD_SIEMENS_MC_APL7))
260 return;
262 /* Open main hwinfo block. */
263 if (hwilib_find_blocks("hwinfo.hex") != CB_SUCCESS)
264 return;
266 /* Get legacy delay parameter from hwinfo. */
267 if (hwilib_get_field(LegacyDelay, (uint8_t *) &legacy_delay,
268 sizeof(legacy_delay)) != sizeof(legacy_delay))
269 return;
271 us_since_boot = get_us_since_boot();
272 /* No need to wait if the time since boot is already long enough.*/
273 if (us_since_boot > legacy_delay)
274 return;
275 stopwatch_init_msecs_expire(&sw, (legacy_delay - us_since_boot) / 1000);
276 printk(BIOS_NOTICE, "Wait remaining %d of %d us for legacy devices...",
277 legacy_delay - us_since_boot, legacy_delay);
278 stopwatch_wait_until_expired(&sw);
279 printk(BIOS_NOTICE, "done!\n");
282 BOOT_STATE_INIT_ENTRY(BS_DEV_ENUMERATE, BS_ON_ENTRY, wait_for_legacy_dev, NULL);