bl2_private.h 603 Bytes
Newer Older
1
/*
Roberto Vargas's avatar
Roberto Vargas committed
2
 * Copyright (c) 2013-2017, ARM Limited and Contributors. All rights reserved.
3
 *
dp-arm's avatar
dp-arm committed
4
 * SPDX-License-Identifier: BSD-3-Clause
5
6
7
8
9
 */

#ifndef __BL2_PRIVATE_H__
#define __BL2_PRIVATE_H__

10
11
12
13
14
/******************************************
 * Forward declarations
 *****************************************/
struct entry_point_info;

15
16
17
/******************************************
 * Function prototypes
 *****************************************/
18
void bl2_arch_setup(void);
19
struct entry_point_info *bl2_load_images(void);
Roberto Vargas's avatar
Roberto Vargas committed
20
void bl2_run_next_image(const entry_point_info_t *bl_ep_info);
21
22

#endif /* __BL2_PRIVATE_H__ */