xref: /rk3399_ARM-atf/bl1/bl1_private.h (revision b921b5b889bad2a840dc131183ab20c603fcacc4)
1 /*
2  * Copyright (c) 2013-2025, 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 
21 void bl1_prepare_next_image(unsigned int image_id);
22 
23 u_register_t bl1_fwu_smc_handler(unsigned int smc_fid,
24 		u_register_t x1,
25 		u_register_t x2,
26 		u_register_t x3,
27 		u_register_t x4,
28 		void *cookie,
29 		void *handle,
30 		unsigned int flags);
31 
32 #endif /* BL1_PRIVATE_H */
33