aboutsummaryrefslogtreecommitdiffstats
path: root/include/bl31/bl31.h
diff options
context:
space:
mode:
authorDan Handley <dan.handley@arm.com>2014-05-15 14:11:36 +0100
committerAchin Gupta <achin.gupta@arm.com>2014-05-23 17:18:54 +0100
commitdec5e0d1da9fdfe68cea4fbeb096f93e43860493 (patch)
tree36124ce6017a1ce1c500f874d07c507086588ff3 /include/bl31/bl31.h
parent5f0cdb059d7d5c3a8a834074a7f236b85d014dde (diff)
downloadplatform_external_arm-trusted-firmware-dec5e0d1da9fdfe68cea4fbeb096f93e43860493.tar.gz
platform_external_arm-trusted-firmware-dec5e0d1da9fdfe68cea4fbeb096f93e43860493.tar.bz2
platform_external_arm-trusted-firmware-dec5e0d1da9fdfe68cea4fbeb096f93e43860493.zip
Move BL porting functions into platform.h
Some platform porting functions were in BL specific header files. These have been moved to platform.h so that all porting functions are in the same place. The functions are now grouped by BL. Obsolete BL headers files have been removed. Also, the weak declaration of the init_bl2_mem_layout() function has been moved out the header file and into the source file (bl_common.c) using the more succinct #pragma syntax. This mitigates the risk of 2 weak definitions being created and the wrong one being picked up by the compiler. Change-Id: Ib19934939fd755f3e5a5a5bceec88da684308a83
Diffstat (limited to 'include/bl31/bl31.h')
-rw-r--r--include/bl31/bl31.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/bl31/bl31.h b/include/bl31/bl31.h
index ef3256873..8d22dc98b 100644
--- a/include/bl31/bl31.h
+++ b/include/bl31/bl31.h
@@ -37,7 +37,6 @@
* Forward declarations
*****************************************/
struct entry_point_info;
-struct bl31_parms;
/*******************************************************************************
* Function prototypes
@@ -48,9 +47,6 @@ void bl31_set_next_image_type(uint32_t type);
uint32_t bl31_get_next_image_type(void);
void bl31_prepare_next_image_entry();
struct entry_point_info *bl31_get_next_image_info(uint32_t type);
-void bl31_early_platform_setup(struct bl31_params *from_bl2,
- void *plat_params_from_bl2);
-void bl31_platform_setup(void);
void bl31_register_bl32_init(int32_t (*)(void));
#endif /* __BL31_H__ */