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 ******************************************************************************/
bl1_arch_setup(void)16 void bl1_arch_setup(void)
17 {
18 /* v8-R64 does not include SCRs. */
19 }
20