mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 09:34:18 +00:00
fix(qemu): increase max FIP size
The max FIP size for the QEMU virt platform is currently 4MB, which
isn't enough when including a RMM in the FIP. Since the secure flash
size is actually 64MB, we can significantly increase the max FIP size.
Change-Id: Id2b5df355f8d4c90a41fec66f180e46eb7bab9f8
Fixes: a886bbeceb
("qemu: Update flash address map to keep FIP in secure FLASH0")
Signed-off-by: Jean-Philippe Brucker <jean-philippe@linaro.org>
This commit is contained in:
parent
1c76dd2d6f
commit
f465ac2210
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2015-2023, Arm Limited and Contributors. All rights reserved.
|
||||
* Copyright (c) 2015-2024, Arm Limited and Contributors. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
@ -226,7 +226,7 @@
|
|||
#define QEMU_FLASH1_SIZE 0x04000000
|
||||
|
||||
#define PLAT_QEMU_FIP_BASE 0x00040000
|
||||
#define PLAT_QEMU_FIP_MAX_SIZE 0x00400000
|
||||
#define PLAT_QEMU_FIP_MAX_SIZE (QEMU_FLASH0_SIZE - PLAT_QEMU_FIP_BASE)
|
||||
|
||||
#define DEVICE0_BASE 0x08000000
|
||||
#define DEVICE0_SIZE 0x01000000
|
||||
|
|
Loading…
Add table
Reference in a new issue