soc/intel/cannonlake: Add ability to disable Heci1
Decide if HECI1 should be hidden prior to boot to OS. BUG=none TEST=Boot to OS, verify if Heci1 is disabled on hatch system using FSP 1344. Change-Id: I7c63316c8b04fb101d34064daac5ba4fdc05a63c Signed-off-by: Bora Guvendik <bora.guvendik@intel.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/32992 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Subrata Banik <subrata.banik@intel.com>
This commit is contained in:
parent
22d66efe65
commit
c42ef561a0
|
@ -349,6 +349,9 @@ void platform_fsp_silicon_init_params_cb(FSPS_UPD *supd)
|
|||
params->ScsUfsEnabled = dev->enabled;
|
||||
|
||||
params->Heci3Enabled = config->Heci3Enabled;
|
||||
#if !CONFIG(HECI_DISABLE_USING_SMM)
|
||||
params->Heci1Disabled = !config->HeciEnabled;
|
||||
#endif
|
||||
params->Device4Enable = config->Device4Enable;
|
||||
|
||||
/* VrConfig Settings for 5 domains
|
||||
|
|
Loading…
Reference in New Issue