diff options
author | Vikram Kanigiri <vikram.kanigiri@arm.com> | 2014-04-15 18:08:08 +0100 |
---|---|---|
committer | Vikram Kanigiri <vikram.kanigiri@arm.com> | 2014-05-22 16:14:19 +0100 |
commit | 4112bfa0c223eda73af1cfe57ca7dc926f767dd8 (patch) | |
tree | 652b5cb01c095a39c771209caac10b6332a62929 /include/bl31/bl31.h | |
parent | 29fb905d5f36a415a170a4bffeadf13b5f084345 (diff) | |
download | platform_external_arm-trusted-firmware-4112bfa0c223eda73af1cfe57ca7dc926f767dd8.tar.gz platform_external_arm-trusted-firmware-4112bfa0c223eda73af1cfe57ca7dc926f767dd8.tar.bz2 platform_external_arm-trusted-firmware-4112bfa0c223eda73af1cfe57ca7dc926f767dd8.zip |
Populate BL31 input parameters as per new spec
This patch is based on spec published at
https://github.com/ARM-software/tf-issues/issues/133
It rearranges the bl31_args struct into
bl31_params and bl31_plat_params which provide the
information needed for Trusted firmware and platform
specific data via x0 and x1
On the FVP platform BL3-1 params and BL3-1 plat params
and its constituents are stored at the start of TZDRAM.
The information about memory availability and size for
BL3-1, BL3-2 and BL3-3 is moved into platform specific data.
Change-Id: I8b32057a3d0dd3968ea26c2541a0714177820da9
Diffstat (limited to 'include/bl31/bl31.h')
-rw-r--r-- | include/bl31/bl31.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/bl31/bl31.h b/include/bl31/bl31.h index b60e32cec..ad6e70e8a 100644 --- a/include/bl31/bl31.h +++ b/include/bl31/bl31.h @@ -42,7 +42,7 @@ extern unsigned long bl31_entrypoint; * Forward declarations *****************************************/ struct meminfo; -struct el_change_info; +struct entry_point_info; /******************************************************************************* * Function prototypes @@ -52,7 +52,7 @@ extern void bl31_next_el_arch_setup(uint32_t security_state); extern void bl31_set_next_image_type(uint32_t type); extern uint32_t bl31_get_next_image_type(void); extern void bl31_prepare_next_image_entry(); -extern struct el_change_info *bl31_get_next_image_info(uint32_t type); +extern struct entry_point_info *bl31_get_next_image_info(uint32_t type); extern void bl31_platform_setup(void); extern struct meminfo *bl31_plat_get_bl32_mem_layout(void); extern struct meminfo *bl31_plat_sec_mem_layout(void); |