blob: 3e2618879cf25ced655624fe73ad7955124c69af [file] [log] [blame]
Usama Arif82e95092019-06-18 16:46:05 +01001/*
Jayanth Dodderi Chidanand1c3dda82025-03-13 10:52:46 +00002 * Copyright (c) 2019-2025, Arm Limited. All rights reserved.
Usama Arif82e95092019-06-18 16:46:05 +01003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6#include <plat/arm/common/plat_arm.h>
7#include <plat/common/platform.h>
8
9void bl2_early_platform_setup2(u_register_t arg0, u_register_t arg1,
10 u_register_t arg2, u_register_t arg3)
11{
Jayanth Dodderi Chidanand1c3dda82025-03-13 10:52:46 +000012 arm_bl2_early_platform_setup(arg0, arg1, arg2, arg3);
Usama Arif82e95092019-06-18 16:46:05 +010013}
14
15void bl2_platform_setup(void)
16{
17 arm_bl2_platform_setup();
18}
Harrison Mutaib5e7d7e2023-10-18 09:58:48 +010019
20int bl2_plat_handle_post_image_load(unsigned int image_id)
21{
22 return arm_bl2_plat_handle_post_image_load(image_id);
23}