xref: /rk3399_ARM-atf/plat/arm/board/fvp/fvp_bl2u_setup.c (revision 234bc7f88ed42a5305016009c47e8a6dc3408f96)
1dcda29f6SYatharth Kochar /*
21af540efSRoberto Vargas  * Copyright (c) 2013-2018, ARM Limited and Contributors. All rights reserved.
3dcda29f6SYatharth Kochar  *
482cb2c1aSdp-arm  * SPDX-License-Identifier: BSD-3-Clause
5dcda29f6SYatharth Kochar  */
6dcda29f6SYatharth Kochar 
709d40e0eSAntonio Nino Diaz #include <plat/common/platform.h>
8*234bc7f8SAntonio Nino Diaz #include <platform_def.h>
909d40e0eSAntonio Nino Diaz 
10dcda29f6SYatharth Kochar #include <plat_arm.h>
11dcda29f6SYatharth Kochar #include "fvp_private.h"
12dcda29f6SYatharth Kochar 
136c77e749SSandrine Bailleux void bl2u_early_platform_setup(struct meminfo *mem_layout, void *plat_info)
14dcda29f6SYatharth Kochar {
15dcda29f6SYatharth Kochar 	arm_bl2u_early_platform_setup(mem_layout, plat_info);
16dcda29f6SYatharth Kochar 
17dcda29f6SYatharth Kochar 	/* Initialize the platform config for future decision making */
18dcda29f6SYatharth Kochar 	fvp_config_setup();
19dcda29f6SYatharth Kochar }
20