a5ds_bl2_setup.c 541 B

1234567891011121314151617181920212223
  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. void bl2_early_platform_setup2(u_register_t arg0, u_register_t arg1,
  9. u_register_t arg2, u_register_t arg3)
  10. {
  11. arm_bl2_early_platform_setup((uintptr_t)arg0, (meminfo_t *)arg1);
  12. }
  13. void bl2_platform_setup(void)
  14. {
  15. arm_bl2_platform_setup();
  16. }
  17. int bl2_plat_handle_post_image_load(unsigned int image_id)
  18. {
  19. return arm_bl2_plat_handle_post_image_load(image_id);
  20. }