Usama Arif | 82e9509 | 2019-06-18 16:46:05 +0100 | [diff] [blame] | 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 | } |
Harrison Mutai | b5e7d7e | 2023-10-18 09:58:48 +0100 | [diff] [blame] | 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 | } |