blob: b3567e2e34efe57aca9ce992172226e2b5beb600 [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001/*
Soby Mathewd0194872016-04-29 19:01:30 +01002 * Copyright (c) 2013-2016, ARM Limited and Contributors. All rights reserved.
Achin Gupta4f6ad662013-10-25 09:08:21 +01003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Achin Gupta4f6ad662013-10-25 09:08:21 +01005 */
6
7#ifndef __BL31_H__
8#define __BL31_H__
9
Dan Handley2bd4ef22014-04-09 13:14:54 +010010#include <stdint.h>
Achin Gupta4f6ad662013-10-25 09:08:21 +010011
Achin Gupta4f6ad662013-10-25 09:08:21 +010012/*******************************************************************************
13 * Function prototypes
14 ******************************************************************************/
Dan Handleya17fefa2014-05-14 12:38:32 +010015void bl31_next_el_arch_setup(uint32_t security_state);
16void bl31_set_next_image_type(uint32_t type);
17uint32_t bl31_get_next_image_type(void);
Juan Castillo2d552402014-06-13 17:05:10 +010018void bl31_prepare_next_image_entry(void);
Dan Handleya17fefa2014-05-14 12:38:32 +010019void bl31_register_bl32_init(int32_t (*)(void));
Soby Mathewd0194872016-04-29 19:01:30 +010020void bl31_warm_entrypoint(void);
Dan Handley2bd4ef22014-04-09 13:14:54 +010021
Achin Gupta4f6ad662013-10-25 09:08:21 +010022#endif /* __BL31_H__ */