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_el3_setup(u_register_t arg0, u_register_t arg1, u_register_t arg2, 15 u_register_t arg3); 16 void bl2_main(void); 17 18 #endif /* BL2_H */ 19