You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
864 B
27 lines
864 B
/*
|
|
* Copyright (c) 2013-2021, 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_setup(u_register_t arg0, u_register_t arg1, u_register_t arg2,
|
|
u_register_t arg3);
|
|
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_register_rmm_init(int32_t (*func)(void));
|
|
void bl31_warm_entrypoint(void);
|
|
void bl31_main(void);
|
|
void bl31_lib_init(void);
|
|
|
|
#endif /* BL31_H */
|
|
|