mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-08-15 08:57:02 +02:00
Rule 8.4: A compatible declaration shall be visible when an object or function with external linkage is defined. Change-Id: I26e042cb251a6f9590afa1340fdac73e42f23979 Signed-off-by: Roberto Vargas <roberto.vargas@arm.com>
25 lines
729 B
C
25 lines
729 B
C
/*
|
|
* Copyright (c) 2013-2018, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef __BL31_H__
|
|
#define __BL31_H__
|
|
|
|
#include <stdint.h>
|
|
|
|
/*******************************************************************************
|
|
* Function prototypes
|
|
******************************************************************************/
|
|
void bl31_next_el_arch_setup(uint32_t security_state);
|
|
void bl31_set_next_image_type(uint32_t security_state);
|
|
uint32_t bl31_get_next_image_type(void);
|
|
void bl31_prepare_next_image_entry(void);
|
|
void bl31_register_bl32_init(int32_t (*func)(void));
|
|
void bl31_warm_entrypoint(void);
|
|
void bl31_main(void);
|
|
void bl31_lib_init(void);
|
|
|
|
#endif /* __BL31_H__ */
|