xref: /rk3399_ARM-atf/plat/arm/board/a5ds/a5ds_bl2_setup.c (revision 3d6edc325c52082ab63ffd003c55a4ed875a52c5)
1 /*
2  * Copyright (c) 2019, Arm Limited. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 #include <plat/arm/common/plat_arm.h>
7 #include <plat/common/platform.h>
8 
9 void bl2_early_platform_setup2(u_register_t arg0, u_register_t arg1,
10 	u_register_t arg2, u_register_t arg3)
11 {
12 	arm_bl2_early_platform_setup((uintptr_t)arg0, (meminfo_t *)arg1);
13 }
14 
15 void bl2_platform_setup(void)
16 {
17 	arm_bl2_platform_setup();
18 }
19 
20 int bl2_plat_handle_post_image_load(unsigned int image_id)
21 {
22 	return arm_bl2_plat_handle_post_image_load(image_id);
23 }
24