[coreboot-gerrit] Change in coreboot[master]: mma: Make MMA blobs path SOC specific

Martin Roth (Code Review) gerrit at coreboot.org
Wed Apr 26 16:26:48 CEST 2017


Martin Roth has submitted this change and it was merged. ( https://review.coreboot.org/19260 )

Change subject: mma: Make MMA blobs path SOC specific
......................................................................


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 at intel.com>
Reviewed-on: https://review.coreboot.org/19260
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin at chromium.org>
---
M src/soc/intel/common/Kconfig
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  Aaron Durbin: Looks good to me, approved
  build bot (Jenkins): Verified



diff --git a/src/soc/intel/common/Kconfig b/src/soc/intel/common/Kconfig
index 7612850..1e3afe9 100644
--- a/src/soc/intel/common/Kconfig
+++ b/src/soc/intel/common/Kconfig
@@ -92,14 +92,15 @@
 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"

-- 
To view, visit https://review.coreboot.org/19260
To unsubscribe, visit https://review.coreboot.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I922789a2a12d55360624dd6de15ab9f0bb5f0acf
Gerrit-PatchSet: 7
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Owner: Pratikkumar V Prajapati <pratikkumar.v.prajapati at intel.com>
Gerrit-Reviewer: Aaron Durbin <adurbin at chromium.org>
Gerrit-Reviewer: Duncan Laurie <dlaurie at chromium.org>
Gerrit-Reviewer: Martin Roth <martinroth at google.com>
Gerrit-Reviewer: Nico Huber <nico.h at gmx.de>
Gerrit-Reviewer: Paul Menzel <paulepanter at users.sourceforge.net>
Gerrit-Reviewer: Philipp Deppenwiese <zaolin.daisuki at gmail.com>
Gerrit-Reviewer: Pratikkumar V Prajapati <pratikkumar.v.prajapati at intel.com>
Gerrit-Reviewer: build bot (Jenkins)



More information about the coreboot-gerrit mailing list