feat(qemu-sbsa): increase maximum FIP size

Following what was done for:

f465ac2210 ("fix(qemu): increase max FIP size")

increase the size of the FIP image to take up the remaining
space in FLASH0.  That way the RMM image can also be added
to the FIP.

Change-Id: I89bba36f751468e99241f1c20b51c48fe06d8229
Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>
This commit is contained in:
Mathieu Poirier 2024-04-11 15:46:03 -06:00
parent ecadac7cd2
commit 122dbc2c17

View file

@ -205,7 +205,7 @@
#define QEMU_FLASH1_SIZE 0x10000000 #define QEMU_FLASH1_SIZE 0x10000000
#define PLAT_QEMU_FIP_BASE BL1_SIZE #define PLAT_QEMU_FIP_BASE BL1_SIZE
#define PLAT_QEMU_FIP_MAX_SIZE 0x00400000 #define PLAT_QEMU_FIP_MAX_SIZE (QEMU_FLASH0_SIZE - BL1_SIZE)
/* This is map from GIC_DIST up to last CPU (255) GIC_REDISTR */ /* This is map from GIC_DIST up to last CPU (255) GIC_REDISTR */
#define DEVICE0_BASE 0x40000000 #define DEVICE0_BASE 0x40000000