diff options
author | Harry Liebel <Harry.Liebel@arm.com> | 2014-02-14 14:42:48 +0000 |
---|---|---|
committer | Dan Handley <dan.handley@arm.com> | 2014-02-17 18:51:44 +0000 |
commit | 561cd33eceaff56a1c6cabe5a3e6e03e21e9dc9a (patch) | |
tree | 838cc81a5f823db5344f3581cf7f77e72efd636c /include/bl2.h | |
parent | f58ad36f2f51798b093d282b56a3a311fdc78ca9 (diff) | |
download | platform_external_arm-trusted-firmware-561cd33eceaff56a1c6cabe5a3e6e03e21e9dc9a.tar.gz platform_external_arm-trusted-firmware-561cd33eceaff56a1c6cabe5a3e6e03e21e9dc9a.tar.bz2 platform_external_arm-trusted-firmware-561cd33eceaff56a1c6cabe5a3e6e03e21e9dc9a.zip |
Add Firmware Image Package (FIP) driver
The Firmware Image Package (FIP) driver allows for data to be loaded
from a FIP on platform storage. The FVP supports loading bootloader
images from a FIP located in NOR FLASH.
The implemented FVP policy states that bootloader images will be
loaded from a FIP in NOR FLASH if available and fall back to loading
individual images from semi-hosting.
NOTE:
- BL3-3(e.g. UEFI) is loaded into DRAM and needs to be configured
to run from the BL33_BASE address. This is currently set to
DRAM_BASE+128MB for the FVP.
Change-Id: I2e4821748e3376b5f9e467cf3ec09509e43579a0
Diffstat (limited to 'include/bl2.h')
-rw-r--r-- | include/bl2.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/bl2.h b/include/bl2.h index b9a7b0fa5..2955a40d6 100644 --- a/include/bl2.h +++ b/include/bl2.h @@ -43,6 +43,6 @@ extern unsigned long long bl2_entrypoint; *****************************************/ extern void bl2_platform_setup(void); extern meminfo *bl2_plat_sec_mem_layout(void); -extern meminfo bl2_get_ns_mem_layout(void); +extern meminfo *bl2_get_ns_mem_layout(void); #endif /* __BL2_H__ */ |