bl1_private.h 659 Bytes
Newer Older
1
/*
2
 * Copyright (c) 2013-2018, 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);
21
22
23
24
25
26
27
28
29

register_t bl1_fwu_smc_handler(unsigned int smc_fid,
		register_t x1,
		register_t x2,
		register_t x3,
		register_t x4,
		void *cookie,
		void *handle,
		unsigned int flags);
30

31
#endif /* BL1_PRIVATE_H */