blob: 24a239e3b5c85fbfcac4f3693f1340177d8ecae5 [file] [log] [blame]
Lee Leahyb0005132015-05-12 18:19:47 -07001/*
2 * This file is part of the coreboot project.
3 *
Subrata Banika4b11e5c2017-02-03 18:57:49 +05304 * Copyright (C) 2016-2017 Intel Corporation.
Lee Leahyb0005132015-05-12 18:19:47 -07005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Lee Leahyb0005132015-05-12 18:19:47 -070014 */
15
Lee Leahy1d14b3e2015-05-12 18:23:27 -070016#include <chip.h>
Duncan Laurie7d484102017-01-09 22:23:39 -080017#include <bootmode.h>
Rizwan Qureshi1222a732016-08-23 14:31:23 +053018#include <bootstate.h>
19#include <device/pci.h>
20#include <fsp/api.h>
Naresh G Solankia2d40622016-08-30 20:47:13 +053021#include <arch/acpi.h>
22#include <chip.h>
23#include <bootstate.h>
24#include <console/console.h>
25#include <device/device.h>
26#include <device/pci.h>
27#include <fsp/api.h>
28#include <fsp/util.h>
Brandon Breitensteinc6ec8dd2016-11-17 12:23:04 -080029#include <romstage_handoff.h>
Naresh G Solankia2d40622016-08-30 20:47:13 +053030#include <soc/acpi.h>
Patrick Georgic6a00502017-10-05 18:19:29 +020031#include <soc/intel/common/vbt.h>
Naresh G Solankia2d40622016-08-30 20:47:13 +053032#include <soc/interrupt.h>
33#include <soc/irq.h>
34#include <soc/pci_devs.h>
35#include <soc/ramstage.h>
36#include <string.h>
37
38void soc_init_pre_device(void *chip_info)
39{
40 /* Perform silicon specific init. */
Aaron Durbin6c191d82016-11-29 21:22:42 -060041 fsp_silicon_init(romstage_handoff_is_resume());
Naresh G Solankia2d40622016-08-30 20:47:13 +053042}
43
Furquan Shaikhc2480442017-02-20 13:41:56 -080044void soc_fsp_load(void)
45{
46 fsps_load(romstage_handoff_is_resume());
47}
48
Naresh G Solankia2d40622016-08-30 20:47:13 +053049static void pci_domain_set_resources(device_t dev)
50{
51 assign_resources(dev->link_list);
52}
53
54static struct device_operations pci_domain_ops = {
55 .read_resources = &pci_domain_read_resources,
56 .set_resources = &pci_domain_set_resources,
57 .scan_bus = &pci_domain_scan_bus,
58 .ops_pci_bus = &pci_bus_default_ops,
59#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
60 .acpi_name = &soc_acpi_name,
61#endif
62};
63
64static struct device_operations cpu_bus_ops = {
65 .read_resources = DEVICE_NOOP,
66 .set_resources = DEVICE_NOOP,
67 .enable_resources = DEVICE_NOOP,
Subrata Banika4b11e5c2017-02-03 18:57:49 +053068 .init = DEVICE_NOOP,
Naresh G Solankia2d40622016-08-30 20:47:13 +053069#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
70 .acpi_fill_ssdt_generator = generate_cpu_entries,
71#endif
72};
73
74static void soc_enable(device_t dev)
75{
76 /* Set the operations if it is a special bus type */
Subrata Banik3c838c72017-12-06 18:14:01 +053077 if (dev->path.type == DEVICE_PATH_DOMAIN)
Naresh G Solankia2d40622016-08-30 20:47:13 +053078 dev->ops = &pci_domain_ops;
Subrata Banik3c838c72017-12-06 18:14:01 +053079 else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER)
Naresh G Solankia2d40622016-08-30 20:47:13 +053080 dev->ops = &cpu_bus_ops;
Naresh G Solankia2d40622016-08-30 20:47:13 +053081}
82
83struct chip_operations soc_intel_skylake_ops = {
84 CHIP_NAME("Intel 6th Gen")
85 .enable_dev = &soc_enable,
86 .init = &soc_init_pre_device,
87};
Lee Leahyb0005132015-05-12 18:19:47 -070088
Rizwan Qureshi1222a732016-08-23 14:31:23 +053089/* UPD parameters to be initialized before SiliconInit */
Naresh G Solankia2d40622016-08-30 20:47:13 +053090void platform_fsp_silicon_init_params_cb(FSPS_UPD *supd)
Rizwan Qureshi1222a732016-08-23 14:31:23 +053091{
Naresh G Solankia2d40622016-08-30 20:47:13 +053092 FSP_S_CONFIG *params = &supd->FspsConfig;
93 FSP_S_TEST_CONFIG *tconfig = &supd->FspsTestConfig;
94 static struct soc_intel_skylake_config *config;
95 uintptr_t vbt_data = 0;
96
97 int i;
98
99 int is_s3_wakeup = acpi_is_wakeup_s3();
100
101 struct device *dev = SA_DEV_ROOT;
102 if (!dev || !dev->chip_info) {
103 printk(BIOS_ERR, "BUG! Could not find SOC devicetree config\n");
104 return;
105 }
106 config = dev->chip_info;
107
108 mainboard_silicon_init_params(params);
109
110 /* Load VBT */
Duncan Laurie7d484102017-01-09 22:23:39 -0800111 if (is_s3_wakeup) {
112 printk(BIOS_DEBUG, "S3 resume do not pass VBT to GOP\n");
Patrick Georgic6a00502017-10-05 18:19:29 +0200113 } else if (display_init_required() && IS_ENABLED(CONFIG_RUN_FSP_GOP)) {
Duncan Laurie7d484102017-01-09 22:23:39 -0800114 /* Get VBT data */
Patrick Georgic6a00502017-10-05 18:19:29 +0200115 vbt_data = (uintptr_t)locate_vbt();
Duncan Laurie7d484102017-01-09 22:23:39 -0800116 if (vbt_data)
117 printk(BIOS_DEBUG, "Passing VBT to GOP\n");
118 else
119 printk(BIOS_DEBUG, "VBT not found!\n");
120 } else {
121 printk(BIOS_DEBUG, "Not passing VBT to GOP\n");
122 }
Naresh G Solankia2d40622016-08-30 20:47:13 +0530123 params->GraphicsConfigPtr = (u32) vbt_data;
124
125 for (i = 0; i < ARRAY_SIZE(config->usb2_ports); i++) {
126 params->PortUsb20Enable[i] =
127 config->usb2_ports[i].enable;
Subrata Banik2c3054c2016-11-22 20:21:49 +0530128 params->Usb2OverCurrentPin[i] =
129 config->usb2_ports[i].ocpin;
Naresh G Solankia2d40622016-08-30 20:47:13 +0530130 params->Usb2AfePetxiset[i] =
131 config->usb2_ports[i].pre_emp_bias;
132 params->Usb2AfeTxiset[i] =
133 config->usb2_ports[i].tx_bias;
134 params->Usb2AfePredeemp[i] =
135 config->usb2_ports[i].tx_emp_enable;
136 params->Usb2AfePehalfbit[i] =
137 config->usb2_ports[i].pre_emp_bit;
138 }
139
140 for (i = 0; i < ARRAY_SIZE(config->usb3_ports); i++) {
141 params->PortUsb30Enable[i] = config->usb3_ports[i].enable;
Subrata Banik2c3054c2016-11-22 20:21:49 +0530142 params->Usb3OverCurrentPin[i] = config->usb3_ports[i].ocpin;
Naresh G Solankia2d40622016-08-30 20:47:13 +0530143 if (config->usb3_ports[i].tx_de_emp) {
144 params->Usb3HsioTxDeEmphEnable[i] = 1;
145 params->Usb3HsioTxDeEmph[i] =
146 config->usb3_ports[i].tx_de_emp;
147 }
148 if (config->usb3_ports[i].tx_downscale_amp) {
149 params->Usb3HsioTxDownscaleAmpEnable[i] = 1;
150 params->Usb3HsioTxDownscaleAmp[i] =
151 config->usb3_ports[i].tx_downscale_amp;
152 }
153 }
154
155 memcpy(params->SataPortsEnable, config->SataPortsEnable,
156 sizeof(params->SataPortsEnable));
157 memcpy(params->SataPortsDevSlp, config->SataPortsDevSlp,
158 sizeof(params->SataPortsDevSlp));
159 memcpy(params->PcieRpClkReqSupport, config->PcieRpClkReqSupport,
160 sizeof(params->PcieRpClkReqSupport));
161 memcpy(params->PcieRpClkReqNumber, config->PcieRpClkReqNumber,
162 sizeof(params->PcieRpClkReqNumber));
Rizwan Qureshi6ab4ed42017-09-05 14:18:25 +0530163 memcpy(params->PcieRpAdvancedErrorReporting,
164 config->PcieRpAdvancedErrorReporting,
165 sizeof(params->PcieRpAdvancedErrorReporting));
Rizwan Qureshi03937392017-09-16 01:54:20 +0530166 memcpy(params->PcieRpLtrEnable, config->PcieRpLtrEnable,
167 sizeof(params->PcieRpLtrEnable));
Naresh G Solankia2d40622016-08-30 20:47:13 +0530168
Divya Chellape7fb7ce2017-12-19 20:16:50 +0530169 /*
170 * PcieRpClkSrcNumber UPD is set to clock source number(0-6) for
171 * all the enabled PCIe root ports, invalid(0x1F) is set for
172 * disabled PCIe root ports.
173 */
174 for (i = 0; i < CONFIG_MAX_ROOT_PORTS; i++) {
175 if (config->PcieRpClkReqSupport[i])
176 params->PcieRpClkSrcNumber[i] =
177 config->PcieRpClkSrcNumber[i];
178 else
179 params->PcieRpClkSrcNumber[i] = 0x1F;
180 }
181
Naresh G Solankieedf6d82016-11-16 21:27:38 +0530182 /* disable Legacy PME */
183 memset(params->PcieRpPmSci, 0, sizeof(params->PcieRpPmSci));
184
Naresh G Solankia2d40622016-08-30 20:47:13 +0530185 memcpy(params->SerialIoDevMode, config->SerialIoDevMode,
186 sizeof(params->SerialIoDevMode));
187
188 params->PchCio2Enable = config->Cio2Enable;
Rizwan Qureshic2c8a742017-01-13 22:04:11 +0530189 params->SaImguEnable = config->SaImguEnable;
Naresh G Solankia2d40622016-08-30 20:47:13 +0530190 params->Heci3Enabled = config->Heci3Enabled;
191
192 params->LogoPtr = config->LogoPtr;
193 params->LogoSize = config->LogoSize;
194
195 params->CpuConfig.Bits.VmxEnable = config->VmxEnable;
196
197 params->PchPmWoWlanEnable = config->PchPmWoWlanEnable;
198 params->PchPmWoWlanDeepSxEnable = config->PchPmWoWlanDeepSxEnable;
199 params->PchPmLanWakeFromDeepSx = config->WakeConfigPcieWakeFromDeepSx;
200
201 params->PchLanEnable = config->EnableLan;
Duncan Laurie14485ef2017-12-13 13:58:35 -0800202 if (config->EnableLan) {
203 params->PchLanLtrEnable = config->EnableLanLtr;
204 params->PchLanK1OffEnable = config->EnableLanK1Off;
205 params->PchLanClkReqSupported = config->LanClkReqSupported;
206 params->PchLanClkReqNumber = config->LanClkReqNumber;
207 }
Naresh G Solankia2d40622016-08-30 20:47:13 +0530208 params->SataSalpSupport = config->SataSalpSupport;
209 params->SsicPortEnable = config->SsicPortEnable;
210 params->ScsEmmcEnabled = config->ScsEmmcEnabled;
211 params->ScsEmmcHs400Enabled = config->ScsEmmcHs400Enabled;
212 params->ScsSdCardEnabled = config->ScsSdCardEnabled;
213 params->PchIshEnable = config->IshEnable;
214 params->PchHdaEnable = config->EnableAzalia;
215 params->PchHdaIoBufferOwnership = config->IoBufferOwnership;
216 params->PchHdaDspEnable = config->DspEnable;
217 params->XdciEnable = config->XdciEnable;
218 params->Device4Enable = config->Device4Enable;
219 params->SataEnable = config->EnableSata;
220 params->SataMode = config->SataMode;
Matt DeVillier9e0d69b2017-10-10 14:03:36 -0500221 params->SataSpeedLimit = config->SataSpeedLimit;
222
Naresh G Solankia2d40622016-08-30 20:47:13 +0530223 tconfig->PchLockDownGlobalSmi = config->LockDownConfigGlobalSmi;
Naresh G Solankia2d40622016-08-30 20:47:13 +0530224 tconfig->PchLockDownRtcLock = config->LockDownConfigRtcLock;
Barnali Sarkarfbf10182017-08-11 18:38:38 +0530225 /*
226 * To disable HECI, the Psf needs to be left unlocked
227 * by FSP till end of post sequence. Based on the devicetree
228 * setting, we set the appropriate PsfUnlock policy in FSP,
229 * do the changes and then lock it back in coreboot during finalize.
230 */
231 tconfig->PchSbAccessUnlock = (config->HeciEnabled == 0) ? 1 : 0;
Subrata Banikc204aaa2017-08-17 15:49:58 +0530232 if (config->chipset_lockdown == CHIPSET_LOCKDOWN_COREBOOT) {
233 tconfig->PchLockDownBiosInterface = 0;
234 params->PchLockDownBiosLock = 0;
235 params->PchLockDownSpiEiss = 0;
236 /*
237 * Skip Spi Flash Lockdown from inside FSP.
238 * Making this config "0" means FSP won't set the FLOCKDN bit
239 * of SPIBAR + 0x04 (i.e., Bit 15 of BIOS_HSFSTS_CTL).
240 * So, it becomes coreboot's responsibility to set this bit
241 * before end of POST for security concerns.
242 */
243 params->SpiFlashCfgLockDown = 0;
244 }
Naresh G Solankia2d40622016-08-30 20:47:13 +0530245 params->PchSubSystemVendorId = config->PchConfigSubSystemVendorId;
246 params->PchSubSystemId = config->PchConfigSubSystemId;
247 params->PchPmWolEnableOverride = config->WakeConfigWolEnableOverride;
248 params->PchPmPcieWakeFromDeepSx = config->WakeConfigPcieWakeFromDeepSx;
249 params->PchPmDeepSxPol = config->PmConfigDeepSxPol;
Duncan Laurie25c7d932017-02-17 17:16:43 -0800250 params->PchPmSlpS0Enable = config->s0ix_enable;
Naresh G Solankia2d40622016-08-30 20:47:13 +0530251 params->PchPmSlpS3MinAssert = config->PmConfigSlpS3MinAssert;
252 params->PchPmSlpS4MinAssert = config->PmConfigSlpS4MinAssert;
253 params->PchPmSlpSusMinAssert = config->PmConfigSlpSusMinAssert;
254 params->PchPmSlpAMinAssert = config->PmConfigSlpAMinAssert;
255 params->PchPmLpcClockRun = config->PmConfigPciClockRun;
256 params->PchPmSlpStrchSusUp = config->PmConfigSlpStrchSusUp;
257 params->PchPmPwrBtnOverridePeriod =
258 config->PmConfigPwrBtnOverridePeriod;
259 params->PchPmPwrCycDur = config->PmConfigPwrCycDur;
Rizwan Qureshi0da186c2017-02-23 14:43:39 +0530260
261 /* Indicate whether platform supports Voltage Margining */
262 params->PchPmSlpS0VmEnable = config->PchPmSlpS0VmEnable;
263
Naresh G Solankia2d40622016-08-30 20:47:13 +0530264 params->PchSirqEnable = config->SerialIrqConfigSirqEnable;
265 params->PchSirqMode = config->SerialIrqConfigSirqMode;
266
267 params->CpuConfig.Bits.SkipMpInit = config->FspSkipMpInit;
268
269 for (i = 0; i < ARRAY_SIZE(config->i2c); i++)
Aaron Durbined14a4e2016-11-09 17:04:15 -0600270 params->SerialIoI2cVoltage[i] = config->i2c_voltage[i];
Naresh G Solankia2d40622016-08-30 20:47:13 +0530271
272 for (i = 0; i < ARRAY_SIZE(config->domain_vr_config); i++)
273 fill_vr_domain_config(params, i, &config->domain_vr_config[i]);
274
275 /* Show SPI controller if enabled in devicetree.cb */
276 dev = dev_find_slot(0, PCH_DEVFN_SPI);
277 params->ShowSpiController = dev->enabled;
278
Rizwan Qureshi64670142016-11-23 15:25:19 +0530279 /*
280 * Send VR specific mailbox commands:
281 * 000b - no VR specific command sent
282 * 001b - VR mailbox command specifically for the MPS IMPV8 VR
Lee Leahyf4c4ab92017-03-16 17:08:03 -0700283 * will be sent
Rizwan Qureshi64670142016-11-23 15:25:19 +0530284 * 010b - VR specific command sent for PS4 exit issue
285 * 100b - VR specific command sent for MPS VR decay issue
286 */
287 params->SendVrMbxCmd1 = config->SendVrMbxCmd;
Naresh G Solankia2d40622016-08-30 20:47:13 +0530288
Rizwan Qureshib3e18c72017-09-25 17:35:15 +0530289 /*
290 * Activates VR mailbox command for Intersil VR C-state issues.
291 * 0 - no mailbox command sent.
292 * 1 - VR mailbox command sent for IA/GT rails only.
293 * 2 - VR mailbox command sent for IA/GT/SA rails.
294 */
295 params->IslVrCmd = config->IslVrCmd;
296
Duncan Laurieb2aac852017-03-07 19:12:02 -0800297 /* Acoustic Noise Mitigation */
298 params->AcousticNoiseMitigation = config->AcousticNoiseMitigation;
299 params->SlowSlewRateForIa = config->SlowSlewRateForIa;
300 params->SlowSlewRateForGt = config->SlowSlewRateForGt;
301 params->SlowSlewRateForSa = config->SlowSlewRateForSa;
302 params->FastPkgCRampDisableIa = config->FastPkgCRampDisableIa;
303 params->FastPkgCRampDisableGt = config->FastPkgCRampDisableGt;
304 params->FastPkgCRampDisableSa = config->FastPkgCRampDisableSa;
305
Rizwan Qureshiffe58102017-02-10 15:58:24 +0530306 /* Enable PMC XRAM read */
307 tconfig->PchPmPmcReadDisable = config->PchPmPmcReadDisable;
308
Subrata Banik6b45ee42017-05-12 11:43:57 +0530309 /* Enable/Disable EIST */
310 tconfig->Eist = config->eist_enable;
311
marxwangec5a9472017-12-11 14:57:49 +0800312 /* Set TccActivationOffset */
313 tconfig->TccActivationOffset = config->tcc_offset;
314
Naresh G Solankia2d40622016-08-30 20:47:13 +0530315 soc_irq_settings(params);
Rizwan Qureshi1222a732016-08-23 14:31:23 +0530316}
Lee Leahyb0005132015-05-12 18:19:47 -0700317
Naresh G Solankia2d40622016-08-30 20:47:13 +0530318/* Mainboard GPIO Configuration */
319__attribute__((weak)) void mainboard_silicon_init_params(FSP_S_CONFIG *params)
320{
321 printk(BIOS_DEBUG, "WEAK: %s/%s called\n", __FILE__, __func__);
322}