From b16846308cdf0045b6242999f28514bba4bbbcef Mon Sep 17 00:00:00 2001 From: Pratik Prajapati Date: Mon, 10 Apr 2017 15:47:09 -0700 Subject: [PATCH] UPSTREAM: 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). BUG=none BRANCH=none TEST=none Change-Id: I511652c7f5492f52ff2446bfc214d92ed79c1e7c Signed-off-by: Patrick Georgi Original-Commit-Id: ebb7994263ad16419a4f402ed56735f469457212 Original-Change-Id: I922789a2a12d55360624dd6de15ab9f0bb5f0acf Original-Signed-off-by: Pratik Prajapati Original-Reviewed-on: https://review.coreboot.org/19260 Original-Tested-by: build bot (Jenkins) Original-Reviewed-by: Aaron Durbin Reviewed-on: https://chromium-review.googlesource.com/488281 --- src/soc/intel/common/Kconfig | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/soc/intel/common/Kconfig b/src/soc/intel/common/Kconfig index 7612850965..1e3afe91af 100644 --- a/src/soc/intel/common/Kconfig +++ b/src/soc/intel/common/Kconfig @@ -92,14 +92,15 @@ config SOC_INTEL_COMMON_LPSS_I2C_DEBUG config MMA bool "Enable MMA (Memory Margin Analysis) support for Intel Core" default n - depends on PLATFORM_USES_FSP2_0 || PLATFORM_USES_FSP1_1 + depends on SOC_INTEL_KABYLAKE || SOC_INTEL_SKYLAKE help Set this option to y to enable MMA (Memory Margin Analysis) support config MMA_BLOBS_PATH string "Path to MMA blobs" 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 bool "Add a Video Bios Table (VBT) binary to CBFS"