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 21 void bl1_prepare_next_image(unsigned int image_id); 22 void bl1_run_bl2_in_root(void); 23 24 u_register_t bl1_fwu_smc_handler(unsigned int smc_fid, 25 u_register_t x1, 26 u_register_t x2, 27 u_register_t x3, 28 u_register_t x4, 29 void *cookie, 30 void *handle, 31 unsigned int flags); 32 33 #endif /* BL1_PRIVATE_H */ 34