Anil Kumar K has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/59638 )
Change subject: src/drivers/intel/fsp2_0: Update GUID for new FSP_NON_VOLATILE_STORAGE_HOB2 HOB ......................................................................
src/drivers/intel/fsp2_0: Update GUID for new FSP_NON_VOLATILE_STORAGE_HOB2 HOB
Signed-off-by: Anil Kumar anil.kumar.k@intel.com Change-Id: I27647e9ac1a4902256b3f1c34b60e1f0b787a06e --- M src/drivers/intel/fsp2_0/hand_off_block.c 1 file changed, 8 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/38/59638/1
diff --git a/src/drivers/intel/fsp2_0/hand_off_block.c b/src/drivers/intel/fsp2_0/hand_off_block.c index fd8316e..096be85 100644 --- a/src/drivers/intel/fsp2_0/hand_off_block.c +++ b/src/drivers/intel/fsp2_0/hand_off_block.c @@ -22,10 +22,18 @@ 0xa6, 0xc4, 0xc7, 0xf5, 0x9e, 0xfd, 0x98, 0x6e, };
+ +#ifdef CONFIG(PLATFORM_USES_FSP2_3) +const uint8_t fsp_nv_storage_guid[16] = { + 0x8f, 0x78, 0x66, 0x48, 0xa8, 0x6b, 0xd8, 0x47, + 0x83, 0x6, 0xac, 0xf7, 0x7f, 0x55, 0x10, 0x46 +}; +#else const uint8_t fsp_nv_storage_guid[16] = { 0x02, 0xcf, 0x1a, 0x72, 0x77, 0x4d, 0x2a, 0x4c, 0xb3, 0xdc, 0x27, 0x0b, 0x7b, 0xa9, 0xe4, 0xb0 }; +#endif
static const uint8_t uuid_fv_info[16] = { 0x2e, 0x72, 0x8e, 0x79, 0xb2, 0x15, 0x13, 0x4e,