bl1_private.h 764 Bytes
Newer Older
1
/*
johpow01's avatar
johpow01 committed
2
 * Copyright (c) 2013-2021, 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
#ifndef BL1_PRIVATE_H
#define BL1_PRIVATE_H
9

10
#include <stdint.h>
11

12
#include <common/bl_common.h>
13

14
15
16
/******************************************
 * Function prototypes
 *****************************************/
17
18
void bl1_arch_setup(void);
void bl1_arch_next_el_setup(void);
19

20
void bl1_prepare_next_image(unsigned int image_id);
johpow01's avatar
johpow01 committed
21
22
void bl1_prepare_for_bl2_in_root(void);
void bl1_run_bl2_in_root(entry_point_info_t *ep_info);
23

Zelalem's avatar
Zelalem committed
24
25
26
27
28
u_register_t bl1_fwu_smc_handler(unsigned int smc_fid,
		u_register_t x1,
		u_register_t x2,
		u_register_t x3,
		u_register_t x4,
29
30
31
		void *cookie,
		void *handle,
		unsigned int flags);
32

33
#endif /* BL1_PRIVATE_H */