Browse Source

fix(fvp): increase the maximum size of Event Log

To make room for all image measurements using the
RME+SPM+TBB+MEASURED_BOOT test configuration, the Event Log's maximum
size has been significantly increased.

Change-Id: I0b9948dab893e14677bca0afa07167648a6c2729
Signed-off-by: Manish V Badarkhe <Manish.Badarkhe@arm.com>
pull/2003/head
Manish V Badarkhe 1 year ago
parent
commit
f1dfaa42cf
  1. 5
      plat/arm/board/fvp/include/platform_def.h

5
plat/arm/board/fvp/include/platform_def.h

@ -437,7 +437,12 @@ defined(IMAGE_BL2) && MEASURED_BOOT
/*
* Maximum size of Event Log buffer used in Measured Boot Event Log driver
*/
#if ENABLE_RME && (defined(SPD_tspd) || defined(SPD_opteed) || defined(SPD_spmd))
/* Account for additional measurements of secure partitions and SPM. */
#define PLAT_ARM_EVENT_LOG_MAX_SIZE UL(0x800)
#else
#define PLAT_ARM_EVENT_LOG_MAX_SIZE UL(0x400)
#endif
/*
* Maximum size of Event Log buffer used for DRTM

Loading…
Cancel
Save