blob: 73f5ac7a1948fc1a44d6707667bebcc771160375 [file] [log] [blame]
Roberto Vargas05712702018-02-12 12:36:17 +00001/*
Antonio Nino Diaz6e4b0832019-01-31 10:48:47 +00002 * Copyright (c) 2018-2019, ARM Limited and Contributors. All rights reserved.
Roberto Vargas05712702018-02-12 12:36:17 +00003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +00007#ifndef BL2_H
8#define BL2_H
Roberto Vargas05712702018-02-12 12:36:17 +00009
Antonio Nino Diaz6e4b0832019-01-31 10:48:47 +000010#include <stdint.h>
11
12void bl2_setup(u_register_t arg0, u_register_t arg1, u_register_t arg2,
13 u_register_t arg3);
Antonio Nino Diaz4f29fb72019-01-31 17:40:44 +000014void bl2_el3_setup(u_register_t arg0, u_register_t arg1, u_register_t arg2,
15 u_register_t arg3);
Roberto Vargas05712702018-02-12 12:36:17 +000016void bl2_main(void);
Roberto Vargas05712702018-02-12 12:36:17 +000017
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +000018#endif /* BL2_H */