blob: f2bd07ef4658ca6eb841ce78a38fea896885708e [file] [log] [blame]
Roberto Vargas05712702018-02-12 12:36:17 +00001/*
2 * Copyright (c) 2018, 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
Roberto Vargas2ca18d92018-02-12 12:36:17 +000010struct entry_point_info;
11
Roberto Vargas05712702018-02-12 12:36:17 +000012void bl2_main(void);
Roberto Vargas2ca18d92018-02-12 12:36:17 +000013struct entry_point_info *bl2_load_images(void);
Roberto Vargas05712702018-02-12 12:36:17 +000014
15#endif /* BL2_H__ */