mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-17 01:54:22 +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
19 lines
596 B
C
19 lines
596 B
C
/*
|
|
* Copyright (c) 2013-2019, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <arch.h>
|
|
#include <arch_helpers.h>
|
|
#include "../bl1_private.h"
|
|
|
|
/*******************************************************************************
|
|
* Function that does the first bit of architectural setup that affects
|
|
* execution in the non-secure address space.
|
|
******************************************************************************/
|
|
void bl1_arch_setup(void)
|
|
{
|
|
/* Set the next EL to be AArch64 */
|
|
write_scr_el3(read_scr_el3() | SCR_RW_BIT);
|
|
}
|