xref: /rk3399_ARM-atf/include/bl2/bl2.h (revision 9d93fc2f89a00e104bfe6be31f87861c26ba2bf0)
1 /*
2  * Copyright (c) 2018-2019, ARM Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef BL2_H
8 #define BL2_H
9 
10 #include <stdint.h>
11 
12 void bl2_setup(u_register_t arg0, u_register_t arg1, u_register_t arg2,
13 	       u_register_t arg3);
14 void bl2_main(void);
15 
16 #endif /* BL2_H */
17