blob: c5ecc97b015a9885dbae82b1eba2ee64232cf207 [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>
31#include <soc/interrupt.h>
32#include <soc/irq.h>
33#include <soc/pci_devs.h>
34#include <soc/ramstage.h>
35#include <string.h>
36
37void soc_init_pre_device(void *chip_info)
38{
39 /* Perform silicon specific init. */
Aaron Durbin6c191d82016-11-29 21:22:42 -060040 fsp_silicon_init(romstage_handoff_is_resume());
Naresh G Solankia2d40622016-08-30 20:47:13 +053041}
42
Furquan Shaikhc2480442017-02-20 13:41:56 -080043void soc_fsp_load(void)
44{
45 fsps_load(romstage_handoff_is_resume());
46}
47
Naresh G Solankia2d40622016-08-30 20:47:13 +053048static void pci_domain_set_resources(device_t dev)
49{
50 assign_resources(dev->link_list);
51}
52
53static struct device_operations pci_domain_ops = {
54 .read_resources = &pci_domain_read_resources,
55 .set_resources = &pci_domain_set_resources,
56 .scan_bus = &pci_domain_scan_bus,
57 .ops_pci_bus = &pci_bus_default_ops,
58#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
59 .acpi_name = &soc_acpi_name,
60#endif
61};
62
63static struct device_operations cpu_bus_ops = {
64 .read_resources = DEVICE_NOOP,
65 .set_resources = DEVICE_NOOP,
66 .enable_resources = DEVICE_NOOP,
Subrata Banika4b11e5c2017-02-03 18:57:49 +053067 .init = DEVICE_NOOP,
Naresh G Solankia2d40622016-08-30 20:47:13 +053068#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
69 .acpi_fill_ssdt_generator = generate_cpu_entries,
70#endif
71};
72
73static void soc_enable(device_t dev)
74{
75 /* Set the operations if it is a special bus type */
76 if (dev->path.type == DEVICE_PATH_DOMAIN) {
77 dev->ops = &pci_domain_ops;
78 } else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER) {
79 dev->ops = &cpu_bus_ops;
80 } else if (dev->path.type == DEVICE_PATH_PCI) {
81 /* Handle PCH device enable */
82 if (PCI_SLOT(dev->path.pci.devfn) > SA_DEV_SLOT_IGD &&
83 (dev->ops == NULL || dev->ops->enable == NULL)) {
84 pch_enable_dev(dev);
85 }
86 }
87}
88
89struct chip_operations soc_intel_skylake_ops = {
90 CHIP_NAME("Intel 6th Gen")
91 .enable_dev = &soc_enable,
92 .init = &soc_init_pre_device,
93};
Lee Leahyb0005132015-05-12 18:19:47 -070094
Rizwan Qureshi1222a732016-08-23 14:31:23 +053095/* UPD parameters to be initialized before SiliconInit */
Naresh G Solankia2d40622016-08-30 20:47:13 +053096void platform_fsp_silicon_init_params_cb(FSPS_UPD *supd)
Rizwan Qureshi1222a732016-08-23 14:31:23 +053097{
Naresh G Solankia2d40622016-08-30 20:47:13 +053098 FSP_S_CONFIG *params = &supd->FspsConfig;
99 FSP_S_TEST_CONFIG *tconfig = &supd->FspsTestConfig;
100 static struct soc_intel_skylake_config *config;
101 uintptr_t vbt_data = 0;
102
103 int i;
104
105 int is_s3_wakeup = acpi_is_wakeup_s3();
106
107 struct device *dev = SA_DEV_ROOT;
108 if (!dev || !dev->chip_info) {
109 printk(BIOS_ERR, "BUG! Could not find SOC devicetree config\n");
110 return;
111 }
112 config = dev->chip_info;
113
114 mainboard_silicon_init_params(params);
115
116 /* Load VBT */
Duncan Laurie7d484102017-01-09 22:23:39 -0800117 if (is_s3_wakeup) {
118 printk(BIOS_DEBUG, "S3 resume do not pass VBT to GOP\n");
119 } else if (display_init_required()) {
120 /* Get VBT data */
Naresh G Solankia2d40622016-08-30 20:47:13 +0530121 vbt_data = fsp_load_vbt();
Duncan Laurie7d484102017-01-09 22:23:39 -0800122 if (vbt_data)
123 printk(BIOS_DEBUG, "Passing VBT to GOP\n");
124 else
125 printk(BIOS_DEBUG, "VBT not found!\n");
126 } else {
127 printk(BIOS_DEBUG, "Not passing VBT to GOP\n");
128 }
Naresh G Solankia2d40622016-08-30 20:47:13 +0530129 params->GraphicsConfigPtr = (u32) vbt_data;
130
131 for (i = 0; i < ARRAY_SIZE(config->usb2_ports); i++) {
132 params->PortUsb20Enable[i] =
133 config->usb2_ports[i].enable;
Subrata Banik2c3054c2016-11-22 20:21:49 +0530134 params->Usb2OverCurrentPin[i] =
135 config->usb2_ports[i].ocpin;
Naresh G Solankia2d40622016-08-30 20:47:13 +0530136 params->Usb2AfePetxiset[i] =
137 config->usb2_ports[i].pre_emp_bias;
138 params->Usb2AfeTxiset[i] =
139 config->usb2_ports[i].tx_bias;
140 params->Usb2AfePredeemp[i] =
141 config->usb2_ports[i].tx_emp_enable;
142 params->Usb2AfePehalfbit[i] =
143 config->usb2_ports[i].pre_emp_bit;
144 }
145
146 for (i = 0; i < ARRAY_SIZE(config->usb3_ports); i++) {
147 params->PortUsb30Enable[i] = config->usb3_ports[i].enable;
Subrata Banik2c3054c2016-11-22 20:21:49 +0530148 params->Usb3OverCurrentPin[i] = config->usb3_ports[i].ocpin;
Naresh G Solankia2d40622016-08-30 20:47:13 +0530149 if (config->usb3_ports[i].tx_de_emp) {
150 params->Usb3HsioTxDeEmphEnable[i] = 1;
151 params->Usb3HsioTxDeEmph[i] =
152 config->usb3_ports[i].tx_de_emp;
153 }
154 if (config->usb3_ports[i].tx_downscale_amp) {
155 params->Usb3HsioTxDownscaleAmpEnable[i] = 1;
156 params->Usb3HsioTxDownscaleAmp[i] =
157 config->usb3_ports[i].tx_downscale_amp;
158 }
159 }
160
161 memcpy(params->SataPortsEnable, config->SataPortsEnable,
162 sizeof(params->SataPortsEnable));
163 memcpy(params->SataPortsDevSlp, config->SataPortsDevSlp,
164 sizeof(params->SataPortsDevSlp));
165 memcpy(params->PcieRpClkReqSupport, config->PcieRpClkReqSupport,
166 sizeof(params->PcieRpClkReqSupport));
167 memcpy(params->PcieRpClkReqNumber, config->PcieRpClkReqNumber,
168 sizeof(params->PcieRpClkReqNumber));
169
Naresh G Solankieedf6d82016-11-16 21:27:38 +0530170 /* disable Legacy PME */
171 memset(params->PcieRpPmSci, 0, sizeof(params->PcieRpPmSci));
172
Naresh G Solankia2d40622016-08-30 20:47:13 +0530173 memcpy(params->SerialIoDevMode, config->SerialIoDevMode,
174 sizeof(params->SerialIoDevMode));
175
176 params->PchCio2Enable = config->Cio2Enable;
Rizwan Qureshic2c8a742017-01-13 22:04:11 +0530177 params->SaImguEnable = config->SaImguEnable;
Naresh G Solankia2d40622016-08-30 20:47:13 +0530178 params->Heci3Enabled = config->Heci3Enabled;
179
180 params->LogoPtr = config->LogoPtr;
181 params->LogoSize = config->LogoSize;
182
183 params->CpuConfig.Bits.VmxEnable = config->VmxEnable;
184
185 params->PchPmWoWlanEnable = config->PchPmWoWlanEnable;
186 params->PchPmWoWlanDeepSxEnable = config->PchPmWoWlanDeepSxEnable;
187 params->PchPmLanWakeFromDeepSx = config->WakeConfigPcieWakeFromDeepSx;
188
189 params->PchLanEnable = config->EnableLan;
Naresh G Solankia2d40622016-08-30 20:47:13 +0530190 params->SataSalpSupport = config->SataSalpSupport;
191 params->SsicPortEnable = config->SsicPortEnable;
192 params->ScsEmmcEnabled = config->ScsEmmcEnabled;
193 params->ScsEmmcHs400Enabled = config->ScsEmmcHs400Enabled;
194 params->ScsSdCardEnabled = config->ScsSdCardEnabled;
195 params->PchIshEnable = config->IshEnable;
196 params->PchHdaEnable = config->EnableAzalia;
197 params->PchHdaIoBufferOwnership = config->IoBufferOwnership;
198 params->PchHdaDspEnable = config->DspEnable;
199 params->XdciEnable = config->XdciEnable;
200 params->Device4Enable = config->Device4Enable;
201 params->SataEnable = config->EnableSata;
202 params->SataMode = config->SataMode;
203 tconfig->PchLockDownGlobalSmi = config->LockDownConfigGlobalSmi;
204 tconfig->PchLockDownBiosInterface = config->LockDownConfigBiosInterface;
205 tconfig->PchLockDownRtcLock = config->LockDownConfigRtcLock;
Barnali Sarkarfbf10182017-08-11 18:38:38 +0530206 /*
207 * To disable HECI, the Psf needs to be left unlocked
208 * by FSP till end of post sequence. Based on the devicetree
209 * setting, we set the appropriate PsfUnlock policy in FSP,
210 * do the changes and then lock it back in coreboot during finalize.
211 */
212 tconfig->PchSbAccessUnlock = (config->HeciEnabled == 0) ? 1 : 0;
213
Naresh G Solankia2d40622016-08-30 20:47:13 +0530214 params->PchLockDownBiosLock = config->LockDownConfigBiosLock;
215 params->PchLockDownSpiEiss = config->LockDownConfigSpiEiss;
216 params->PchSubSystemVendorId = config->PchConfigSubSystemVendorId;
217 params->PchSubSystemId = config->PchConfigSubSystemId;
218 params->PchPmWolEnableOverride = config->WakeConfigWolEnableOverride;
219 params->PchPmPcieWakeFromDeepSx = config->WakeConfigPcieWakeFromDeepSx;
220 params->PchPmDeepSxPol = config->PmConfigDeepSxPol;
Duncan Laurie25c7d932017-02-17 17:16:43 -0800221 params->PchPmSlpS0Enable = config->s0ix_enable;
Naresh G Solankia2d40622016-08-30 20:47:13 +0530222 params->PchPmSlpS3MinAssert = config->PmConfigSlpS3MinAssert;
223 params->PchPmSlpS4MinAssert = config->PmConfigSlpS4MinAssert;
224 params->PchPmSlpSusMinAssert = config->PmConfigSlpSusMinAssert;
225 params->PchPmSlpAMinAssert = config->PmConfigSlpAMinAssert;
226 params->PchPmLpcClockRun = config->PmConfigPciClockRun;
227 params->PchPmSlpStrchSusUp = config->PmConfigSlpStrchSusUp;
228 params->PchPmPwrBtnOverridePeriod =
229 config->PmConfigPwrBtnOverridePeriod;
230 params->PchPmPwrCycDur = config->PmConfigPwrCycDur;
Rizwan Qureshi0da186c2017-02-23 14:43:39 +0530231
232 /* Indicate whether platform supports Voltage Margining */
233 params->PchPmSlpS0VmEnable = config->PchPmSlpS0VmEnable;
234
Naresh G Solankia2d40622016-08-30 20:47:13 +0530235 params->PchSirqEnable = config->SerialIrqConfigSirqEnable;
236 params->PchSirqMode = config->SerialIrqConfigSirqMode;
237
238 params->CpuConfig.Bits.SkipMpInit = config->FspSkipMpInit;
239
240 for (i = 0; i < ARRAY_SIZE(config->i2c); i++)
Aaron Durbined14a4e2016-11-09 17:04:15 -0600241 params->SerialIoI2cVoltage[i] = config->i2c_voltage[i];
Naresh G Solankia2d40622016-08-30 20:47:13 +0530242
243 for (i = 0; i < ARRAY_SIZE(config->domain_vr_config); i++)
244 fill_vr_domain_config(params, i, &config->domain_vr_config[i]);
245
246 /* Show SPI controller if enabled in devicetree.cb */
247 dev = dev_find_slot(0, PCH_DEVFN_SPI);
248 params->ShowSpiController = dev->enabled;
249
Rizwan Qureshi64670142016-11-23 15:25:19 +0530250 /*
Barnali Sarkar4859ce02017-07-19 16:27:23 +0530251 * Skip Spi Flash Lockdown from inside FSP.
252 * Making this config "0" means FSP won't set the FLOCKDN bit of
253 * SPIBAR + 0x04 (i.e., Bit 15 of BIOS_HSFSTS_CTL).
254 * So, it becomes coreboot's responsibility to set this bit before
255 * end of POST for security concerns.
256 */
257 params->SpiFlashCfgLockDown = config->SpiFlashCfgLockDown;
258
259 /*
Rizwan Qureshi64670142016-11-23 15:25:19 +0530260 * Send VR specific mailbox commands:
261 * 000b - no VR specific command sent
262 * 001b - VR mailbox command specifically for the MPS IMPV8 VR
Lee Leahyf4c4ab92017-03-16 17:08:03 -0700263 * will be sent
Rizwan Qureshi64670142016-11-23 15:25:19 +0530264 * 010b - VR specific command sent for PS4 exit issue
265 * 100b - VR specific command sent for MPS VR decay issue
266 */
267 params->SendVrMbxCmd1 = config->SendVrMbxCmd;
Naresh G Solankia2d40622016-08-30 20:47:13 +0530268
Duncan Laurieb2aac852017-03-07 19:12:02 -0800269 /* Acoustic Noise Mitigation */
270 params->AcousticNoiseMitigation = config->AcousticNoiseMitigation;
271 params->SlowSlewRateForIa = config->SlowSlewRateForIa;
272 params->SlowSlewRateForGt = config->SlowSlewRateForGt;
273 params->SlowSlewRateForSa = config->SlowSlewRateForSa;
274 params->FastPkgCRampDisableIa = config->FastPkgCRampDisableIa;
275 params->FastPkgCRampDisableGt = config->FastPkgCRampDisableGt;
276 params->FastPkgCRampDisableSa = config->FastPkgCRampDisableSa;
277
Rizwan Qureshiffe58102017-02-10 15:58:24 +0530278 /* Enable PMC XRAM read */
279 tconfig->PchPmPmcReadDisable = config->PchPmPmcReadDisable;
280
Subrata Banik6b45ee42017-05-12 11:43:57 +0530281 /* Enable/Disable EIST */
282 tconfig->Eist = config->eist_enable;
283
Naresh G Solankia2d40622016-08-30 20:47:13 +0530284 soc_irq_settings(params);
Rizwan Qureshi1222a732016-08-23 14:31:23 +0530285}
Lee Leahyb0005132015-05-12 18:19:47 -0700286
Rizwan Qureshi1222a732016-08-23 14:31:23 +0530287struct pci_operations soc_pci_ops = {
Naresh G Solankia2d40622016-08-30 20:47:13 +0530288 .set_subsystem = &pci_dev_set_subsystem
Rizwan Qureshi1222a732016-08-23 14:31:23 +0530289};
Lee Leahyb0005132015-05-12 18:19:47 -0700290
Naresh G Solankia2d40622016-08-30 20:47:13 +0530291/* Mainboard GPIO Configuration */
292__attribute__((weak)) void mainboard_silicon_init_params(FSP_S_CONFIG *params)
293{
294 printk(BIOS_DEBUG, "WEAK: %s/%s called\n", __FILE__, __func__);
295}