1 /*
2 * Copyright (c) 2013-2025, Arm Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7 #include <plat/arm/common/plat_arm.h>
8
9 #include "../fvp_private.h"
10
tsp_early_platform_setup(u_register_t arg0,u_register_t arg1,u_register_t arg2,u_register_t arg3)11 void tsp_early_platform_setup(u_register_t arg0, u_register_t arg1,
12 u_register_t arg2, u_register_t arg3)
13 {
14 arm_tsp_early_platform_setup(arg0, arg1, arg2, arg3);
15
16 /* Initialize the platform config for future decision making */
17 fvp_config_setup();
18 }
19