blob: 6e9181677ec33de7f2b8363be7c3189862f4fbd1 [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>
Aaron Durbin64031672018-04-21 14:45:32 -060023#include <compiler.h>
Naresh G Solankia2d40622016-08-30 20:47:13 +053024#include <bootstate.h>
25#include <console/console.h>
26#include <device/device.h>
27#include <device/pci.h>
28#include <fsp/api.h>
29#include <fsp/util.h>
Duncan Laurief5116952018-03-26 02:24:18 -070030#include <intelblocks/xdci.h>
Brandon Breitensteinc6ec8dd2016-11-17 12:23:04 -080031#include <romstage_handoff.h>
Naresh G Solankia2d40622016-08-30 20:47:13 +053032#include <soc/acpi.h>
Patrick Georgic6a00502017-10-05 18:19:29 +020033#include <soc/intel/common/vbt.h>
Naresh G Solankia2d40622016-08-30 20:47:13 +053034#include <soc/interrupt.h>
Nico Huber2afe4dc2017-09-19 09:36:03 +020035#include <soc/iomap.h>
Naresh G Solankia2d40622016-08-30 20:47:13 +053036#include <soc/irq.h>
37#include <soc/pci_devs.h>
38#include <soc/ramstage.h>
Nico Huber2afe4dc2017-09-19 09:36:03 +020039#include <soc/systemagent.h>
Naresh G Solankia2d40622016-08-30 20:47:13 +053040#include <string.h>
41
42void soc_init_pre_device(void *chip_info)
43{
44 /* Perform silicon specific init. */
Aaron Durbin6c191d82016-11-29 21:22:42 -060045 fsp_silicon_init(romstage_handoff_is_resume());
Naresh G Solankia2d40622016-08-30 20:47:13 +053046}
47
Furquan Shaikhc2480442017-02-20 13:41:56 -080048void soc_fsp_load(void)
49{
50 fsps_load(romstage_handoff_is_resume());
51}
52
Naresh G Solankia2d40622016-08-30 20:47:13 +053053static void pci_domain_set_resources(device_t dev)
54{
55 assign_resources(dev->link_list);
56}
57
58static struct device_operations pci_domain_ops = {
59 .read_resources = &pci_domain_read_resources,
60 .set_resources = &pci_domain_set_resources,
61 .scan_bus = &pci_domain_scan_bus,
62 .ops_pci_bus = &pci_bus_default_ops,
63#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
Nico Huberc37b0e32017-09-18 20:03:46 +020064 .write_acpi_tables = &northbridge_write_acpi_tables,
65 .acpi_name = &soc_acpi_name,
Naresh G Solankia2d40622016-08-30 20:47:13 +053066#endif
67};
68
69static struct device_operations cpu_bus_ops = {
70 .read_resources = DEVICE_NOOP,
71 .set_resources = DEVICE_NOOP,
72 .enable_resources = DEVICE_NOOP,
Subrata Banika4b11e5c2017-02-03 18:57:49 +053073 .init = DEVICE_NOOP,
Naresh G Solankia2d40622016-08-30 20:47:13 +053074#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
75 .acpi_fill_ssdt_generator = generate_cpu_entries,
76#endif
77};
78
79static void soc_enable(device_t dev)
80{
81 /* Set the operations if it is a special bus type */
Subrata Banik3c838c72017-12-06 18:14:01 +053082 if (dev->path.type == DEVICE_PATH_DOMAIN)
Naresh G Solankia2d40622016-08-30 20:47:13 +053083 dev->ops = &pci_domain_ops;
Subrata Banik3c838c72017-12-06 18:14:01 +053084 else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER)
Naresh G Solankia2d40622016-08-30 20:47:13 +053085 dev->ops = &cpu_bus_ops;
Naresh G Solankia2d40622016-08-30 20:47:13 +053086}
87
88struct chip_operations soc_intel_skylake_ops = {
89 CHIP_NAME("Intel 6th Gen")
90 .enable_dev = &soc_enable,
91 .init = &soc_init_pre_device,
92};
Lee Leahyb0005132015-05-12 18:19:47 -070093
Rizwan Qureshi1222a732016-08-23 14:31:23 +053094/* UPD parameters to be initialized before SiliconInit */
Naresh G Solankia2d40622016-08-30 20:47:13 +053095void platform_fsp_silicon_init_params_cb(FSPS_UPD *supd)
Rizwan Qureshi1222a732016-08-23 14:31:23 +053096{
Naresh G Solankia2d40622016-08-30 20:47:13 +053097 FSP_S_CONFIG *params = &supd->FspsConfig;
98 FSP_S_TEST_CONFIG *tconfig = &supd->FspsTestConfig;
99 static struct soc_intel_skylake_config *config;
100 uintptr_t vbt_data = 0;
Naresh G Solankia2d40622016-08-30 20:47:13 +0530101 int i;
102
103 int is_s3_wakeup = acpi_is_wakeup_s3();
104
105 struct device *dev = SA_DEV_ROOT;
106 if (!dev || !dev->chip_info) {
107 printk(BIOS_ERR, "BUG! Could not find SOC devicetree config\n");
108 return;
109 }
110 config = dev->chip_info;
111
112 mainboard_silicon_init_params(params);
Gaggery Tsaida6f4ae2018-01-15 15:03:01 +0800113 /* Set PsysPmax if it is available from DT */
114 if (config->psys_pmax) {
115 /* PsysPmax is in unit of 1/8 Watt */
116 tconfig->PsysPmax = config->psys_pmax * 8;
117 printk(BIOS_DEBUG, "psys_pmax = %d\n", tconfig->PsysPmax);
118 }
Naresh G Solankia2d40622016-08-30 20:47:13 +0530119
120 /* Load VBT */
Duncan Laurie7d484102017-01-09 22:23:39 -0800121 if (is_s3_wakeup) {
122 printk(BIOS_DEBUG, "S3 resume do not pass VBT to GOP\n");
Patrick Georgic6a00502017-10-05 18:19:29 +0200123 } else if (display_init_required() && IS_ENABLED(CONFIG_RUN_FSP_GOP)) {
Duncan Laurie7d484102017-01-09 22:23:39 -0800124 /* Get VBT data */
Patrick Georgic6a00502017-10-05 18:19:29 +0200125 vbt_data = (uintptr_t)locate_vbt();
Duncan Laurie7d484102017-01-09 22:23:39 -0800126 if (vbt_data)
127 printk(BIOS_DEBUG, "Passing VBT to GOP\n");
128 else
129 printk(BIOS_DEBUG, "VBT not found!\n");
130 } else {
131 printk(BIOS_DEBUG, "Not passing VBT to GOP\n");
132 }
Naresh G Solankia2d40622016-08-30 20:47:13 +0530133 params->GraphicsConfigPtr = (u32) vbt_data;
134
135 for (i = 0; i < ARRAY_SIZE(config->usb2_ports); i++) {
136 params->PortUsb20Enable[i] =
137 config->usb2_ports[i].enable;
Subrata Banik2c3054c2016-11-22 20:21:49 +0530138 params->Usb2OverCurrentPin[i] =
139 config->usb2_ports[i].ocpin;
Naresh G Solankia2d40622016-08-30 20:47:13 +0530140 params->Usb2AfePetxiset[i] =
141 config->usb2_ports[i].pre_emp_bias;
142 params->Usb2AfeTxiset[i] =
143 config->usb2_ports[i].tx_bias;
144 params->Usb2AfePredeemp[i] =
145 config->usb2_ports[i].tx_emp_enable;
146 params->Usb2AfePehalfbit[i] =
147 config->usb2_ports[i].pre_emp_bit;
148 }
149
150 for (i = 0; i < ARRAY_SIZE(config->usb3_ports); i++) {
151 params->PortUsb30Enable[i] = config->usb3_ports[i].enable;
Subrata Banik2c3054c2016-11-22 20:21:49 +0530152 params->Usb3OverCurrentPin[i] = config->usb3_ports[i].ocpin;
Naresh G Solankia2d40622016-08-30 20:47:13 +0530153 if (config->usb3_ports[i].tx_de_emp) {
154 params->Usb3HsioTxDeEmphEnable[i] = 1;
155 params->Usb3HsioTxDeEmph[i] =
156 config->usb3_ports[i].tx_de_emp;
157 }
158 if (config->usb3_ports[i].tx_downscale_amp) {
159 params->Usb3HsioTxDownscaleAmpEnable[i] = 1;
160 params->Usb3HsioTxDownscaleAmp[i] =
161 config->usb3_ports[i].tx_downscale_amp;
162 }
163 }
164
165 memcpy(params->SataPortsEnable, config->SataPortsEnable,
166 sizeof(params->SataPortsEnable));
167 memcpy(params->SataPortsDevSlp, config->SataPortsDevSlp,
168 sizeof(params->SataPortsDevSlp));
169 memcpy(params->PcieRpClkReqSupport, config->PcieRpClkReqSupport,
170 sizeof(params->PcieRpClkReqSupport));
171 memcpy(params->PcieRpClkReqNumber, config->PcieRpClkReqNumber,
172 sizeof(params->PcieRpClkReqNumber));
Rizwan Qureshi6ab4ed42017-09-05 14:18:25 +0530173 memcpy(params->PcieRpAdvancedErrorReporting,
174 config->PcieRpAdvancedErrorReporting,
175 sizeof(params->PcieRpAdvancedErrorReporting));
Rizwan Qureshi03937392017-09-16 01:54:20 +0530176 memcpy(params->PcieRpLtrEnable, config->PcieRpLtrEnable,
177 sizeof(params->PcieRpLtrEnable));
Duncan Laurie74ea48e2018-01-29 12:00:47 -0800178 memcpy(params->PcieRpHotPlug, config->PcieRpHotPlug,
179 sizeof(params->PcieRpHotPlug));
Naresh G Solankia2d40622016-08-30 20:47:13 +0530180
Divya Chellape7fb7ce2017-12-19 20:16:50 +0530181 /*
182 * PcieRpClkSrcNumber UPD is set to clock source number(0-6) for
183 * all the enabled PCIe root ports, invalid(0x1F) is set for
184 * disabled PCIe root ports.
185 */
186 for (i = 0; i < CONFIG_MAX_ROOT_PORTS; i++) {
187 if (config->PcieRpClkReqSupport[i])
188 params->PcieRpClkSrcNumber[i] =
189 config->PcieRpClkSrcNumber[i];
190 else
191 params->PcieRpClkSrcNumber[i] = 0x1F;
192 }
193
Naresh G Solankieedf6d82016-11-16 21:27:38 +0530194 /* disable Legacy PME */
195 memset(params->PcieRpPmSci, 0, sizeof(params->PcieRpPmSci));
196
Naresh G Solankia2d40622016-08-30 20:47:13 +0530197 memcpy(params->SerialIoDevMode, config->SerialIoDevMode,
198 sizeof(params->SerialIoDevMode));
199
200 params->PchCio2Enable = config->Cio2Enable;
Rizwan Qureshic2c8a742017-01-13 22:04:11 +0530201 params->SaImguEnable = config->SaImguEnable;
Naresh G Solankia2d40622016-08-30 20:47:13 +0530202 params->Heci3Enabled = config->Heci3Enabled;
203
204 params->LogoPtr = config->LogoPtr;
205 params->LogoSize = config->LogoSize;
206
207 params->CpuConfig.Bits.VmxEnable = config->VmxEnable;
208
209 params->PchPmWoWlanEnable = config->PchPmWoWlanEnable;
210 params->PchPmWoWlanDeepSxEnable = config->PchPmWoWlanDeepSxEnable;
211 params->PchPmLanWakeFromDeepSx = config->WakeConfigPcieWakeFromDeepSx;
212
213 params->PchLanEnable = config->EnableLan;
Duncan Laurie14485ef2017-12-13 13:58:35 -0800214 if (config->EnableLan) {
215 params->PchLanLtrEnable = config->EnableLanLtr;
216 params->PchLanK1OffEnable = config->EnableLanK1Off;
217 params->PchLanClkReqSupported = config->LanClkReqSupported;
218 params->PchLanClkReqNumber = config->LanClkReqNumber;
219 }
Naresh G Solankia2d40622016-08-30 20:47:13 +0530220 params->SataSalpSupport = config->SataSalpSupport;
221 params->SsicPortEnable = config->SsicPortEnable;
222 params->ScsEmmcEnabled = config->ScsEmmcEnabled;
223 params->ScsEmmcHs400Enabled = config->ScsEmmcHs400Enabled;
224 params->ScsSdCardEnabled = config->ScsSdCardEnabled;
225 params->PchIshEnable = config->IshEnable;
226 params->PchHdaEnable = config->EnableAzalia;
227 params->PchHdaIoBufferOwnership = config->IoBufferOwnership;
228 params->PchHdaDspEnable = config->DspEnable;
Naresh G Solankia2d40622016-08-30 20:47:13 +0530229 params->Device4Enable = config->Device4Enable;
230 params->SataEnable = config->EnableSata;
231 params->SataMode = config->SataMode;
Matt DeVillier9e0d69b2017-10-10 14:03:36 -0500232 params->SataSpeedLimit = config->SataSpeedLimit;
Kane Chen14e0fa52017-12-27 12:11:23 +0800233 params->SataPwrOptEnable = config->SataPwrOptEnable;
Matt DeVillier9e0d69b2017-10-10 14:03:36 -0500234
Naresh G Solankia2d40622016-08-30 20:47:13 +0530235 tconfig->PchLockDownGlobalSmi = config->LockDownConfigGlobalSmi;
Naresh G Solankia2d40622016-08-30 20:47:13 +0530236 tconfig->PchLockDownRtcLock = config->LockDownConfigRtcLock;
Barnali Sarkarfbf10182017-08-11 18:38:38 +0530237 /*
238 * To disable HECI, the Psf needs to be left unlocked
239 * by FSP till end of post sequence. Based on the devicetree
240 * setting, we set the appropriate PsfUnlock policy in FSP,
241 * do the changes and then lock it back in coreboot during finalize.
242 */
243 tconfig->PchSbAccessUnlock = (config->HeciEnabled == 0) ? 1 : 0;
Subrata Banikc204aaa2017-08-17 15:49:58 +0530244 if (config->chipset_lockdown == CHIPSET_LOCKDOWN_COREBOOT) {
245 tconfig->PchLockDownBiosInterface = 0;
246 params->PchLockDownBiosLock = 0;
247 params->PchLockDownSpiEiss = 0;
248 /*
249 * Skip Spi Flash Lockdown from inside FSP.
250 * Making this config "0" means FSP won't set the FLOCKDN bit
251 * of SPIBAR + 0x04 (i.e., Bit 15 of BIOS_HSFSTS_CTL).
252 * So, it becomes coreboot's responsibility to set this bit
253 * before end of POST for security concerns.
254 */
255 params->SpiFlashCfgLockDown = 0;
256 }
Naresh G Solankia2d40622016-08-30 20:47:13 +0530257 params->PchSubSystemVendorId = config->PchConfigSubSystemVendorId;
258 params->PchSubSystemId = config->PchConfigSubSystemId;
259 params->PchPmWolEnableOverride = config->WakeConfigWolEnableOverride;
260 params->PchPmPcieWakeFromDeepSx = config->WakeConfigPcieWakeFromDeepSx;
261 params->PchPmDeepSxPol = config->PmConfigDeepSxPol;
Duncan Laurie25c7d932017-02-17 17:16:43 -0800262 params->PchPmSlpS0Enable = config->s0ix_enable;
Naresh G Solankia2d40622016-08-30 20:47:13 +0530263 params->PchPmSlpS3MinAssert = config->PmConfigSlpS3MinAssert;
264 params->PchPmSlpS4MinAssert = config->PmConfigSlpS4MinAssert;
265 params->PchPmSlpSusMinAssert = config->PmConfigSlpSusMinAssert;
266 params->PchPmSlpAMinAssert = config->PmConfigSlpAMinAssert;
267 params->PchPmLpcClockRun = config->PmConfigPciClockRun;
268 params->PchPmSlpStrchSusUp = config->PmConfigSlpStrchSusUp;
269 params->PchPmPwrBtnOverridePeriod =
270 config->PmConfigPwrBtnOverridePeriod;
271 params->PchPmPwrCycDur = config->PmConfigPwrCycDur;
Rizwan Qureshi0da186c2017-02-23 14:43:39 +0530272
273 /* Indicate whether platform supports Voltage Margining */
274 params->PchPmSlpS0VmEnable = config->PchPmSlpS0VmEnable;
275
Naresh G Solankia2d40622016-08-30 20:47:13 +0530276 params->PchSirqEnable = config->SerialIrqConfigSirqEnable;
277 params->PchSirqMode = config->SerialIrqConfigSirqMode;
278
279 params->CpuConfig.Bits.SkipMpInit = config->FspSkipMpInit;
280
281 for (i = 0; i < ARRAY_SIZE(config->i2c); i++)
Aaron Durbined14a4e2016-11-09 17:04:15 -0600282 params->SerialIoI2cVoltage[i] = config->i2c_voltage[i];
Naresh G Solankia2d40622016-08-30 20:47:13 +0530283
284 for (i = 0; i < ARRAY_SIZE(config->domain_vr_config); i++)
285 fill_vr_domain_config(params, i, &config->domain_vr_config[i]);
286
287 /* Show SPI controller if enabled in devicetree.cb */
288 dev = dev_find_slot(0, PCH_DEVFN_SPI);
289 params->ShowSpiController = dev->enabled;
290
Duncan Laurief5116952018-03-26 02:24:18 -0700291 /* Enable xDCI controller if enabled in devicetree and allowed */
292 dev = dev_find_slot(0, PCH_DEVFN_USBOTG);
293 if (!xdci_can_enable())
294 dev->enabled = 0;
295 params->XdciEnable = dev->enabled;
296
Rizwan Qureshi64670142016-11-23 15:25:19 +0530297 /*
298 * Send VR specific mailbox commands:
299 * 000b - no VR specific command sent
300 * 001b - VR mailbox command specifically for the MPS IMPV8 VR
Lee Leahyf4c4ab92017-03-16 17:08:03 -0700301 * will be sent
Rizwan Qureshi64670142016-11-23 15:25:19 +0530302 * 010b - VR specific command sent for PS4 exit issue
303 * 100b - VR specific command sent for MPS VR decay issue
304 */
305 params->SendVrMbxCmd1 = config->SendVrMbxCmd;
Naresh G Solankia2d40622016-08-30 20:47:13 +0530306
Rizwan Qureshib3e18c72017-09-25 17:35:15 +0530307 /*
308 * Activates VR mailbox command for Intersil VR C-state issues.
309 * 0 - no mailbox command sent.
310 * 1 - VR mailbox command sent for IA/GT rails only.
311 * 2 - VR mailbox command sent for IA/GT/SA rails.
312 */
313 params->IslVrCmd = config->IslVrCmd;
314
Duncan Laurieb2aac852017-03-07 19:12:02 -0800315 /* Acoustic Noise Mitigation */
316 params->AcousticNoiseMitigation = config->AcousticNoiseMitigation;
317 params->SlowSlewRateForIa = config->SlowSlewRateForIa;
318 params->SlowSlewRateForGt = config->SlowSlewRateForGt;
319 params->SlowSlewRateForSa = config->SlowSlewRateForSa;
320 params->FastPkgCRampDisableIa = config->FastPkgCRampDisableIa;
321 params->FastPkgCRampDisableGt = config->FastPkgCRampDisableGt;
322 params->FastPkgCRampDisableSa = config->FastPkgCRampDisableSa;
323
Rizwan Qureshiffe58102017-02-10 15:58:24 +0530324 /* Enable PMC XRAM read */
325 tconfig->PchPmPmcReadDisable = config->PchPmPmcReadDisable;
326
Subrata Banik6b45ee42017-05-12 11:43:57 +0530327 /* Enable/Disable EIST */
328 tconfig->Eist = config->eist_enable;
329
marxwangec5a9472017-12-11 14:57:49 +0800330 /* Set TccActivationOffset */
331 tconfig->TccActivationOffset = config->tcc_offset;
332
Nico Huber2afe4dc2017-09-19 09:36:03 +0200333 /* Enable VT-d and X2APIC */
334 if (!config->ignore_vtd && soc_is_vtd_capable()) {
335 params->VtdBaseAddress[0] = GFXVT_BASE_ADDRESS;
336 params->VtdBaseAddress[1] = VTVC0_BASE_ADDRESS;
337 params->X2ApicOptOut = 0;
338 tconfig->VtdDisable = 0;
339
340 params->PchIoApicBdfValid = 1;
341 params->PchIoApicBusNumber = 250;
342 params->PchIoApicDeviceNumber = 31;
343 params->PchIoApicFunctionNumber = 0;
344 }
345
Naresh G Solankia2d40622016-08-30 20:47:13 +0530346 soc_irq_settings(params);
Rizwan Qureshi1222a732016-08-23 14:31:23 +0530347}
Lee Leahyb0005132015-05-12 18:19:47 -0700348
Naresh G Solankia2d40622016-08-30 20:47:13 +0530349/* Mainboard GPIO Configuration */
Aaron Durbin64031672018-04-21 14:45:32 -0600350__weak void mainboard_silicon_init_params(FSP_S_CONFIG *params)
Naresh G Solankia2d40622016-08-30 20:47:13 +0530351{
352 printk(BIOS_DEBUG, "WEAK: %s/%s called\n", __FILE__, __func__);
353}