xref: /arm-trusted-firmware/plat/arm/board/fvp_r/fvp_r_bl1_arch_setup.c (revision 91f16700b400a8c0651d24a598fc48ee2997a0d7)
1 /*
2  * Copyright (c) 2021, ARM Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #include "../../../../bl1/bl1_private.h"
8 #include <arch.h>
9 
10 #include <fvp_r_arch_helpers.h>
11 
12 /*******************************************************************************
13  * Function that does the first bit of architectural setup that affects
14  * execution in the non-secure address space.
15  ******************************************************************************/
16 void bl1_arch_setup(void)
17 {
18 	/* v8-R64 does not include SCRs. */
19 }
20