mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-07 21:33:54 +00:00

bl1_arch_next_el_setup has no references anywhere in TF-A. Remove it as it is redundant Signed-off-by: Boyan Karatotev <boyan.karatotev@arm.com> Change-Id: Ice2997f33c318390883347acdd03dc6755f87ea5
33 lines
707 B
C
33 lines
707 B
C
/*
|
|
* Copyright (c) 2013-2021, Arm Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef BL1_PRIVATE_H
|
|
#define BL1_PRIVATE_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <common/bl_common.h>
|
|
|
|
extern entry_point_info_t *bl2_ep_info;
|
|
|
|
/******************************************
|
|
* Function prototypes
|
|
*****************************************/
|
|
void bl1_arch_setup(void);
|
|
|
|
void bl1_prepare_next_image(unsigned int image_id);
|
|
void bl1_run_bl2_in_root(void);
|
|
|
|
u_register_t bl1_fwu_smc_handler(unsigned int smc_fid,
|
|
u_register_t x1,
|
|
u_register_t x2,
|
|
u_register_t x3,
|
|
u_register_t x4,
|
|
void *cookie,
|
|
void *handle,
|
|
unsigned int flags);
|
|
|
|
#endif /* BL1_PRIVATE_H */
|