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.
22 lines
667 B
22 lines
667 B
/*
|
|
* Copyright (c) 2013-2016, 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 type);
|
|
uint32_t bl31_get_next_image_type(void);
|
|
void bl31_prepare_next_image_entry(void);
|
|
void bl31_register_bl32_init(int32_t (*)(void));
|
|
void bl31_warm_entrypoint(void);
|
|
|
|
#endif /* __BL31_H__ */
|
|
|