mma: Make MMA blobs path SOC specific
MMA blobs are SOC specific (not board). So far MMA is supported by big cores (SKL and KBL). Change-Id: I922789a2a12d55360624dd6de15ab9f0bb5f0acf Signed-off-by: Pratik Prajapati <pratikkumar.v.prajapati@intel.com> Reviewed-on: https://review.coreboot.org/19260 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
parent
6fcaaef614
commit
ebb7994263
|
@ -92,14 +92,15 @@ config SOC_INTEL_COMMON_LPSS_I2C_DEBUG
|
||||||
config MMA
|
config MMA
|
||||||
bool "Enable MMA (Memory Margin Analysis) support for Intel Core"
|
bool "Enable MMA (Memory Margin Analysis) support for Intel Core"
|
||||||
default n
|
default n
|
||||||
depends on PLATFORM_USES_FSP2_0 || PLATFORM_USES_FSP1_1
|
depends on SOC_INTEL_KABYLAKE || SOC_INTEL_SKYLAKE
|
||||||
help
|
help
|
||||||
Set this option to y to enable MMA (Memory Margin Analysis) support
|
Set this option to y to enable MMA (Memory Margin Analysis) support
|
||||||
|
|
||||||
config MMA_BLOBS_PATH
|
config MMA_BLOBS_PATH
|
||||||
string "Path to MMA blobs"
|
string "Path to MMA blobs"
|
||||||
depends on MMA
|
depends on MMA
|
||||||
default "3rdparty/blobs/mainboard/$(MAINBOARDDIR)/mma"
|
default "3rdparty/blobs/soc/intel/kabylake/mma-blobs" if SOC_INTEL_KABYLAKE
|
||||||
|
default "3rdparty/blobs/soc/intel/skylake/mma-blobs" if SOC_INTEL_SKYLAKE
|
||||||
|
|
||||||
config ADD_VBT_DATA_FILE
|
config ADD_VBT_DATA_FILE
|
||||||
bool "Add a Video Bios Table (VBT) binary to CBFS"
|
bool "Add a Video Bios Table (VBT) binary to CBFS"
|
||||||
|
|
Loading…
Reference in New Issue