soc/intel/cannonlake: Hook up FSP hyper-threading setting to option API
Select `HAVE_HYPERTHREADING` and hook up the hyper-threading setting from the FSP to the option API so that related mainboards don't have to do that. Unless otherwise configured (e.g. the CMOS setting or overriden by the mainboard code), the value from the Kconfig setting `FSP_HYPERTHREADING` is used. Also, remove related code from the following mainboards, since it is obsolete now. * siemens/chili * starlabs/laptop/cml Change-Id: I173b87da5ce76549672c50ba30204cd77be8b82f Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/60544 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Sean Rhodes <sean@starlabs.systems> Reviewed-by: Nico Huber <nico.h@gmx.de>
This commit is contained in:
parent
edb1a40127
commit
8ba9410c69
|
@ -26,8 +26,6 @@ void mainboard_memory_init_params(FSPM_UPD *memupd)
|
||||||
|
|
||||||
const uint8_t vtd = get_uint_option("vtd", 1);
|
const uint8_t vtd = get_uint_option("vtd", 1);
|
||||||
memupd->FspmTestConfig.VtdDisable = !vtd;
|
memupd->FspmTestConfig.VtdDisable = !vtd;
|
||||||
const uint8_t ht = get_uint_option("hyper_threading", memupd->FspmConfig.HyperThreading);
|
|
||||||
memupd->FspmConfig.HyperThreading = ht;
|
|
||||||
|
|
||||||
variant_romstage_params(memupd);
|
variant_romstage_params(memupd);
|
||||||
|
|
||||||
|
|
|
@ -73,10 +73,6 @@ void mainboard_memory_init_params(FSPM_UPD *memupd)
|
||||||
const uint8_t vtd = get_uint_option("vtd", 1);
|
const uint8_t vtd = get_uint_option("vtd", 1);
|
||||||
memupd->FspmTestConfig.VtdDisable = !vtd;
|
memupd->FspmTestConfig.VtdDisable = !vtd;
|
||||||
|
|
||||||
const uint8_t ht =
|
|
||||||
get_uint_option("hyper_threading", memupd->FspmConfig.HyperThreading);
|
|
||||||
memupd->FspmConfig.HyperThreading = ht;
|
|
||||||
|
|
||||||
fill_spd_data(&memcfg);
|
fill_spd_data(&memcfg);
|
||||||
cannonlake_memcfg_init(&memupd->FspmConfig, &memcfg);
|
cannonlake_memcfg_init(&memupd->FspmConfig, &memcfg);
|
||||||
}
|
}
|
||||||
|
|
|
@ -66,6 +66,7 @@ config CPU_SPECIFIC_OPTIONS
|
||||||
select GENERIC_GPIO_LIB
|
select GENERIC_GPIO_LIB
|
||||||
select HAVE_FSP_GOP
|
select HAVE_FSP_GOP
|
||||||
select HAVE_FSP_LOGO_SUPPORT
|
select HAVE_FSP_LOGO_SUPPORT
|
||||||
|
select HAVE_HYPERTHREADING
|
||||||
select HAVE_SMI_HANDLER
|
select HAVE_SMI_HANDLER
|
||||||
select IDT_IN_EVERY_STAGE
|
select IDT_IN_EVERY_STAGE
|
||||||
select INTEL_CAR_NEM_ENHANCED
|
select INTEL_CAR_NEM_ENHANCED
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
#include <fsp/util.h>
|
#include <fsp/util.h>
|
||||||
#include <intelblocks/cpulib.h>
|
#include <intelblocks/cpulib.h>
|
||||||
#include <intelblocks/pmclib.h>
|
#include <intelblocks/pmclib.h>
|
||||||
|
#include <option.h>
|
||||||
#include <soc/iomap.h>
|
#include <soc/iomap.h>
|
||||||
#include <soc/msr.h>
|
#include <soc/msr.h>
|
||||||
#include <soc/pci_devs.h>
|
#include <soc/pci_devs.h>
|
||||||
|
@ -26,6 +27,8 @@ void platform_fsp_memory_init_params_cb(FSPM_UPD *mupd, uint32_t version)
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
uint32_t mask = 0;
|
uint32_t mask = 0;
|
||||||
|
|
||||||
|
m_cfg->HyperThreading = get_uint_option("hyper_threading", CONFIG(FSP_HYPERTHREADING));
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Probe for no IGD and disable InternalGfx and panel power to prevent a
|
* Probe for no IGD and disable InternalGfx and panel power to prevent a
|
||||||
* crash in FSP-M.
|
* crash in FSP-M.
|
||||||
|
|
Loading…
Reference in New Issue