blob: b8b2c1798c7a3d63056938955db9d58e1416b5a3 [file] [log] [blame]
Rizwan Qureshi742c6fe2018-09-18 22:43:41 +05301/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2018 Intel Corp.
5 *
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.
14 */
15
16#include <assert.h>
17#include <chip.h>
18#include <console/console.h>
19#include <fsp/util.h>
Duncan Laurie52b5b582019-01-23 14:55:47 -080020#include <intelblocks/pmclib.h>
Rizwan Qureshi742c6fe2018-09-18 22:43:41 +053021#include <soc/iomap.h>
22#include <soc/pci_devs.h>
23#include <soc/romstage.h>
Duncan Laurie52b5b582019-01-23 14:55:47 -080024#include <vendorcode/google/chromeos/chromeos.h>
Rizwan Qureshi742c6fe2018-09-18 22:43:41 +053025
26static void soc_memory_init_params(FSP_M_CONFIG *m_cfg, const config_t *config)
27{
28 unsigned int i;
29 uint32_t mask = 0;
Lijian Zhaofe701ee2018-10-25 09:29:10 -070030 const struct device *dev = dev_find_slot(0, PCH_DEVFN_ISH);
Rizwan Qureshi742c6fe2018-09-18 22:43:41 +053031
32 /* Set IGD stolen size to 64MB. */
33 m_cfg->IgdDvmt50PreAlloc = 2;
34 m_cfg->TsegSize = CONFIG_SMM_TSEG_SIZE;
35 m_cfg->IedSize = CONFIG_IED_REGION_SIZE;
36 m_cfg->SaGv = config->SaGv;
praveen hodagatta pranesh521e48c2018-09-27 00:00:13 +080037 if (IS_ENABLED(CONFIG_SOC_INTEL_CANNONLAKE_PCH_H))
praveen hodagatta praneshe26c4a42018-09-20 03:49:45 +080038 m_cfg->UserBd = BOARD_TYPE_DESKTOP;
39 else
40 m_cfg->UserBd = BOARD_TYPE_ULT_ULX;
Rizwan Qureshi742c6fe2018-09-18 22:43:41 +053041 m_cfg->RMT = config->RMT;
42
43 for (i = 0; i < ARRAY_SIZE(config->PcieRpEnable); i++) {
44 if (config->PcieRpEnable[i])
45 mask |= (1 << i);
46 }
47 m_cfg->PcieRpEnableMask = mask;
48 m_cfg->PrmrrSize = config->PrmrrSize;
49 m_cfg->EnableC6Dram = config->enable_c6dram;
Rizwan Qureshi742c6fe2018-09-18 22:43:41 +053050 m_cfg->PcdSerialIoUartNumber = CONFIG_UART_FOR_CONSOLE;
51 /* Disable Vmx if Vt-d is already disabled */
52 if (config->VtdDisable)
53 m_cfg->VmxEnable = 0;
54 else
55 m_cfg->VmxEnable = config->VmxEnable;
Subrata Banik6527b1a2019-01-29 11:04:25 +053056#if IS_ENABLED(CONFIG_SOC_INTEL_COMMON_CANNONLAKE_BASE)
Rizwan Qureshi742c6fe2018-09-18 22:43:41 +053057 m_cfg->SkipMpInit = !chip_get_fsp_mp_init();
58#endif
Duncan Laurie52b5b582019-01-23 14:55:47 -080059
60 /* Disable CPU Flex Ratio and SaGv in recovery mode */
61 if (vboot_recovery_mode_enabled()) {
62 struct chipset_power_state *ps = pmc_get_power_state();
63
64 /*
65 * Only disable when coming from S5 (cold reset) otherwise
66 * the flex ratio may be locked and FSP will return an error.
67 */
68 if (ps && ps->prev_sleep_state == ACPI_S5) {
69 m_cfg->CpuRatio = 0;
70 m_cfg->SaGv = 0;
71 }
72 }
73
Lijian Zhaofe701ee2018-10-25 09:29:10 -070074 /* If ISH is enabled, enable ISH elements */
75 if (!dev)
76 m_cfg->PchIshEnable = 0;
77 else
78 m_cfg->PchIshEnable = dev->enabled;
Lijian Zhao3ef74492018-12-06 17:29:55 -080079
80 /* If HDA is enabled, enable HDA elements */
81 dev = dev_find_slot(0, PCH_DEVFN_HDA);
82 if (!dev)
83 m_cfg->PchHdaEnable = 0;
84 else
85 m_cfg->PchHdaEnable = dev->enabled;
86
V Sowmya0bc3e3d2019-01-07 13:11:29 +053087 /* Enable IPU only if the device is enabled */
88 m_cfg->SaIpuEnable = 0;
89 dev = pcidev_path_on_root(SA_DEVFN_IPU);
90 if (dev)
91 m_cfg->SaIpuEnable = dev->enabled;
Rizwan Qureshi742c6fe2018-09-18 22:43:41 +053092}
93
94void platform_fsp_memory_init_params_cb(FSPM_UPD *mupd, uint32_t version)
95{
96 const struct device *dev = dev_find_slot(0, PCH_DEVFN_LPC);
Duncan Laurie25b387a2018-11-08 15:48:14 -070097 const struct device *smbus = dev_find_slot(0, PCH_DEVFN_SMBUS);
Rizwan Qureshi742c6fe2018-09-18 22:43:41 +053098 assert(dev != NULL);
99 const config_t *config = dev->chip_info;
100 FSP_M_CONFIG *m_cfg = &mupd->FspmConfig;
101
102 soc_memory_init_params(m_cfg, config);
103
104 /* Enable SMBus controller based on config */
Duncan Laurie25b387a2018-11-08 15:48:14 -0700105 if (!smbus)
106 m_cfg->SmbusEnable = 0;
107 else
108 m_cfg->SmbusEnable = smbus->enabled;
Rizwan Qureshi742c6fe2018-09-18 22:43:41 +0530109 /* Set debug probe type */
110 m_cfg->PlatformDebugConsent = config->DebugConsent;
111
112 mainboard_memory_init_params(mupd);
113}
114
115__weak void mainboard_memory_init_params(FSPM_UPD *mupd)
116{
117 printk(BIOS_DEBUG, "WEAK: %s/%s called\n", __FILE__, __func__);
118}