blob: 737e7c399d1e59f1cb121caf7c942f44ff3f1382 [file] [log] [blame]
Angel Ponsf5627e82020-04-05 15:46:52 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Rizwan Qureshi742c6fe2018-09-18 22:43:41 +05302
3#include <assert.h>
Christian Walterb2f8ce72020-03-11 18:04:58 +01004#include <device/pci.h>
Lijian Zhao68890b92019-03-27 17:06:41 -07005#include <cpu/x86/msr.h>
Rizwan Qureshi742c6fe2018-09-18 22:43:41 +05306#include <console/console.h>
7#include <fsp/util.h>
Michael Niewöhner7736bfc2019-10-22 23:05:06 +02008#include <intelblocks/cpulib.h>
Duncan Laurie52b5b582019-01-23 14:55:47 -08009#include <intelblocks/pmclib.h>
Felix Singer8ba94102021-12-31 00:15:18 +010010#include <option.h>
Rizwan Qureshi742c6fe2018-09-18 22:43:41 +053011#include <soc/iomap.h>
Lijian Zhao68890b92019-03-27 17:06:41 -070012#include <soc/msr.h>
Rizwan Qureshi742c6fe2018-09-18 22:43:41 +053013#include <soc/pci_devs.h>
14#include <soc/romstage.h>
Angel Pons3993d382021-04-05 11:40:11 +020015#include <types.h>
Rizwan Qureshi742c6fe2018-09-18 22:43:41 +053016
Elyes HAOUASc3385072019-03-21 15:38:06 +010017#include "../chip.h"
18
Felix Singer929b65a2021-04-19 01:59:47 +020019void platform_fsp_memory_init_params_cb(FSPM_UPD *mupd, uint32_t version)
Rizwan Qureshi742c6fe2018-09-18 22:43:41 +053020{
Felix Singer929b65a2021-04-19 01:59:47 +020021 const struct device *dev = pcidev_path_on_root(PCH_DEVFN_LPC);
22 assert(dev != NULL);
23 const config_t *config = config_of(dev);
Christian Walterb2f8ce72020-03-11 18:04:58 +010024 FSP_M_CONFIG *m_cfg = &mupd->FspmConfig;
25 FSP_M_TEST_CONFIG *tconfig = &mupd->FspmTestConfig;
Rizwan Qureshi742c6fe2018-09-18 22:43:41 +053026 unsigned int i;
27 uint32_t mask = 0;
28
Felix Singer8ba94102021-12-31 00:15:18 +010029 m_cfg->HyperThreading = get_uint_option("hyper_threading", CONFIG(FSP_HYPERTHREADING));
30
Christian Walterb2f8ce72020-03-11 18:04:58 +010031 /*
32 * Probe for no IGD and disable InternalGfx and panel power to prevent a
33 * crash in FSP-M.
34 */
Felix Singer929b65a2021-04-19 01:59:47 +020035 dev = pcidev_path_on_root(SA_DEVFN_IGD);
Angel Pons3993d382021-04-05 11:40:11 +020036 const bool igd_on = !CONFIG(SOC_INTEL_DISABLE_IGD) && dev && dev->enabled;
37 if (igd_on && pci_read_config16(SA_DEV_IGD, PCI_VENDOR_ID) != 0xffff) {
Christian Walterb2f8ce72020-03-11 18:04:58 +010038 /* Set IGD stolen size to 64MB. */
39 m_cfg->InternalGfx = 1;
40 m_cfg->IgdDvmt50PreAlloc = 2;
41 } else {
42 m_cfg->InternalGfx = 0;
43 m_cfg->IgdDvmt50PreAlloc = 0;
44 tconfig->PanelPowerEnable = 0;
45 }
Rizwan Qureshi742c6fe2018-09-18 22:43:41 +053046 m_cfg->TsegSize = CONFIG_SMM_TSEG_SIZE;
47 m_cfg->IedSize = CONFIG_IED_REGION_SIZE;
48 m_cfg->SaGv = config->SaGv;
Julius Wernercd49cce2019-03-05 16:53:33 -080049 if (CONFIG(SOC_INTEL_CANNONLAKE_PCH_H))
praveen hodagatta praneshe26c4a42018-09-20 03:49:45 +080050 m_cfg->UserBd = BOARD_TYPE_DESKTOP;
51 else
52 m_cfg->UserBd = BOARD_TYPE_ULT_ULX;
Rizwan Qureshi742c6fe2018-09-18 22:43:41 +053053 m_cfg->RMT = config->RMT;
54
55 for (i = 0; i < ARRAY_SIZE(config->PcieRpEnable); i++) {
56 if (config->PcieRpEnable[i])
57 mask |= (1 << i);
58 }
59 m_cfg->PcieRpEnableMask = mask;
Michael Niewöhner490546f2020-09-15 12:20:08 +020060 m_cfg->PrmrrSize = get_valid_prmrr_size();
Rizwan Qureshi742c6fe2018-09-18 22:43:41 +053061 m_cfg->EnableC6Dram = config->enable_c6dram;
Aamir Bohra2973d1e2019-05-17 12:31:51 +053062#if CONFIG(SOC_INTEL_COMETLAKE)
63 m_cfg->SerialIoUartDebugControllerNumber = CONFIG_UART_FOR_CONSOLE;
Matt DeVillier74b85f22022-01-25 12:16:44 -060064 memcpy(tconfig->PcieRpHotPlug, config->PcieRpHotPlug, sizeof(tconfig->PcieRpHotPlug));
Aamir Bohra2973d1e2019-05-17 12:31:51 +053065#else
Rizwan Qureshi742c6fe2018-09-18 22:43:41 +053066 m_cfg->PcdSerialIoUartNumber = CONFIG_UART_FOR_CONSOLE;
Aamir Bohra2973d1e2019-05-17 12:31:51 +053067#endif
Maulik V Vaghelabfe4a592019-03-13 18:16:01 +053068 /*
69 * PcdDebugInterfaceFlags
70 * This config will allow coreboot to pass information to the FSP
71 * regarding which debug interface is being used.
72 * Debug Interfaces:
73 * BIT0-RAM, BIT1-Legacy Uart BIT3-USB3, BIT4-LPSS Uart, BIT5-TraceHub
74 * BIT2 - Not used.
75 */
76 m_cfg->PcdDebugInterfaceFlags =
77 CONFIG(DRIVERS_UART_8250IO) ? 0x02 : 0x10;
78
Ronak Kanabar250dfc02019-03-29 13:25:09 +053079 /* Change VmxEnable UPD value according to ENABLE_VMX Kconfig */
80 m_cfg->VmxEnable = CONFIG(ENABLE_VMX);
Subrata Banikcf32fd12018-12-19 18:02:17 +053081
Martin Rothc25c1eb2020-07-24 12:26:21 -060082 m_cfg->SkipMpInit = !CONFIG(USE_INTEL_FSP_MP_INIT);
Duncan Laurie52b5b582019-01-23 14:55:47 -080083
Subrata Banike1470ea2019-11-18 14:08:08 +053084 if (config->cpu_ratio_override) {
85 m_cfg->CpuRatio = config->cpu_ratio_override;
86 } else {
87 /* Set CpuRatio to match existing MSR value */
88 msr_t flex_ratio;
89 flex_ratio = rdmsr(MSR_FLEX_RATIO);
90 m_cfg->CpuRatio = (flex_ratio.lo >> 8) & 0xff;
91 }
Duncan Laurie52b5b582019-01-23 14:55:47 -080092
Christian Walterb2f8ce72020-03-11 18:04:58 +010093 dev = pcidev_path_on_root(PCH_DEVFN_ISH);
Lijian Zhaofe701ee2018-10-25 09:29:10 -070094 /* If ISH is enabled, enable ISH elements */
95 if (!dev)
96 m_cfg->PchIshEnable = 0;
97 else
98 m_cfg->PchIshEnable = dev->enabled;
Lijian Zhao3ef74492018-12-06 17:29:55 -080099
100 /* If HDA is enabled, enable HDA elements */
Kyösti Mälkki903b40a2019-07-03 07:25:59 +0300101 dev = pcidev_path_on_root(PCH_DEVFN_HDA);
Lijian Zhao3ef74492018-12-06 17:29:55 -0800102 if (!dev)
103 m_cfg->PchHdaEnable = 0;
104 else
105 m_cfg->PchHdaEnable = dev->enabled;
106
V Sowmya0bc3e3d2019-01-07 13:11:29 +0530107 /* Enable IPU only if the device is enabled */
108 m_cfg->SaIpuEnable = 0;
109 dev = pcidev_path_on_root(SA_DEVFN_IPU);
110 if (dev)
111 m_cfg->SaIpuEnable = dev->enabled;
Jamie Chenc004857da2020-01-15 11:17:21 +0800112
113 /* SATA Gen3 strength */
114 for (i = 0; i < SOC_INTEL_CML_SATA_DEV_MAX; i++) {
115 if (config->sata_port[i].RxGen3EqBoostMagEnable) {
116 m_cfg->PchSataHsioRxGen3EqBoostMagEnable[i] =
117 config->sata_port[i].RxGen3EqBoostMagEnable;
118 m_cfg->PchSataHsioRxGen3EqBoostMag[i] =
119 config->sata_port[i].RxGen3EqBoostMag;
120 }
121 if (config->sata_port[i].TxGen3DownscaleAmpEnable) {
122 m_cfg->PchSataHsioTxGen3DownscaleAmpEnable[i] =
123 config->sata_port[i].TxGen3DownscaleAmpEnable;
124 m_cfg->PchSataHsioTxGen3DownscaleAmp[i] =
125 config->sata_port[i].TxGen3DownscaleAmp;
126 }
127 if (config->sata_port[i].TxGen3DeEmphEnable) {
128 m_cfg->PchSataHsioTxGen3DeEmphEnable[i] =
129 config->sata_port[i].TxGen3DeEmphEnable;
130 m_cfg->PchSataHsioTxGen3DeEmph[i] =
131 config->sata_port[i].TxGen3DeEmph;
132 }
133 }
Christian Waltere01054d2020-04-27 18:11:51 +0200134#if !CONFIG(SOC_INTEL_COMETLAKE)
135 if (config->DisableHeciRetry)
136 tconfig->DisableHeciRetry = config->DisableHeciRetry;
137#endif
Rizwan Qureshi742c6fe2018-09-18 22:43:41 +0530138
139 /* Enable SMBus controller based on config */
Felix Singerb03e4972021-04-19 01:42:33 +0200140 dev = pcidev_path_on_root(PCH_DEVFN_SMBUS);
141 if (!dev)
Duncan Laurie25b387a2018-11-08 15:48:14 -0700142 m_cfg->SmbusEnable = 0;
143 else
Felix Singerb03e4972021-04-19 01:42:33 +0200144 m_cfg->SmbusEnable = dev->enabled;
Rizwan Qureshi742c6fe2018-09-18 22:43:41 +0530145
Kane Chen37172562019-04-11 21:55:20 +0800146 /* Set debug probe type */
147 m_cfg->PlatformDebugConsent =
148 CONFIG_SOC_INTEL_CANNONLAKE_DEBUG_CONSENT;
John Zhao1159a162019-04-22 10:45:51 -0700149
150 /* Configure VT-d */
151 tconfig->VtdDisable = 0;
152
Sridhar Siricillaa91c9192020-08-05 16:16:52 +0530153 /* Set HECI1 PCI BAR address */
154 m_cfg->Heci1BarAddress = HECI1_BASE_ADDRESS;
155
Rizwan Qureshi742c6fe2018-09-18 22:43:41 +0530156 mainboard_memory_init_params(mupd);
157}
158
159__weak void mainboard_memory_init_params(FSPM_UPD *mupd)
160{
161 printk(BIOS_DEBUG, "WEAK: %s/%s called\n", __FILE__, __func__);
162}