1 /* 2 * Copyright (c) 2013-2018, ARM Limited and Contributors. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #ifndef BL2_PRIVATE_H 8 #define BL2_PRIVATE_H 9 10 #include <common/bl_common.h> 11 12 /****************************************** 13 * Forward declarations 14 *****************************************/ 15 struct entry_point_info; 16 17 /****************************************** 18 * Function prototypes 19 *****************************************/ 20 void bl2_arch_setup(void); 21 struct entry_point_info *bl2_load_images(void); 22 void bl2_run_next_image(const struct entry_point_info *bl_ep_info); 23 24 #endif /* BL2_PRIVATE_H */ 25