bl1_private.h 742 B

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. * Copyright (c) 2013-2021, Arm Limited and Contributors. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #ifndef BL1_PRIVATE_H
  7. #define BL1_PRIVATE_H
  8. #include <stdint.h>
  9. #include <common/bl_common.h>
  10. extern entry_point_info_t *bl2_ep_info;
  11. /******************************************
  12. * Function prototypes
  13. *****************************************/
  14. void bl1_arch_setup(void);
  15. void bl1_arch_next_el_setup(void);
  16. void bl1_prepare_next_image(unsigned int image_id);
  17. void bl1_run_bl2_in_root(void);
  18. u_register_t bl1_fwu_smc_handler(unsigned int smc_fid,
  19. u_register_t x1,
  20. u_register_t x2,
  21. u_register_t x3,
  22. u_register_t x4,
  23. void *cookie,
  24. void *handle,
  25. unsigned int flags);
  26. #endif /* BL1_PRIVATE_H */