1 /*
2  * Copyright (c) 2013-2021, Arm Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef BL1_PRIVATE_H
8 #define BL1_PRIVATE_H
9 
10 #include <stdint.h>
11 
12 #include <common/bl_common.h>
13 
14 extern entry_point_info_t *bl2_ep_info;
15 
16 /******************************************
17  * Function prototypes
18  *****************************************/
19 void bl1_arch_setup(void);
20 void bl1_arch_next_el_setup(void);
21 
22 void bl1_prepare_next_image(unsigned int image_id);
23 void bl1_run_bl2_in_root(void);
24 
25 u_register_t bl1_fwu_smc_handler(unsigned int smc_fid,
26 		u_register_t x1,
27 		u_register_t x2,
28 		u_register_t x3,
29 		u_register_t x4,
30 		void *cookie,
31 		void *handle,
32 		unsigned int flags);
33 
34 #endif /* BL1_PRIVATE_H */
35