fsp2_0/mma: Enable EvLoader in FSP for MMA

EvLoader is FSP module which loads and runs MMA tests.
With Change-Id Id31ddd4595e36c91ba7c888688114c4dbe4db86a, EvLoader
needs to be enabled with UPD param from coreboot.

Change-Id: Ifb860b98d6e6f21c116473a962f647e491e8546f
Signed-off-by: Pratik Prajapati <pratikkumar.v.prajapati@intel.com>
Reviewed-on: https://review.coreboot.org/20863
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
Pratik Prajapati 2017-08-02 12:06:39 -07:00 committed by Martin Roth
parent b794a69ce9
commit 836f94c612
1 changed files with 2 additions and 0 deletions

View File

@ -41,6 +41,8 @@ void setup_mma(FSP_M_CONFIG *memory_cfg)
return;
}
/* Enable EvLoader to run load and run MMA tests.*/
memory_cfg->EvLoader = 1;
soc_update_memory_params_for_mma(memory_cfg, &mma_cfg);
printk(BIOS_DEBUG, "MMA: set up completed successfully\n");
}