bl2_private.h 627 B

123456789101112131415161718192021222324
  1. /*
  2. * Copyright (c) 2013-2018, ARM Limited and Contributors. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #ifndef BL2_PRIVATE_H
  7. #define BL2_PRIVATE_H
  8. #include <common/bl_common.h>
  9. /******************************************
  10. * Forward declarations
  11. *****************************************/
  12. struct entry_point_info;
  13. /******************************************
  14. * Function prototypes
  15. *****************************************/
  16. void bl2_arch_setup(void);
  17. struct entry_point_info *bl2_load_images(void);
  18. void bl2_run_next_image(const struct entry_point_info *bl_ep_info);
  19. #endif /* BL2_PRIVATE_H */