bl1_private.h 707 B

123456789101112131415161718192021222324252627282930313233
  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_prepare_next_image(unsigned int image_id);
  16. void bl1_run_bl2_in_root(void);
  17. u_register_t bl1_fwu_smc_handler(unsigned int smc_fid,
  18. u_register_t x1,
  19. u_register_t x2,
  20. u_register_t x3,
  21. u_register_t x4,
  22. void *cookie,
  23. void *handle,
  24. unsigned int flags);
  25. #endif /* BL1_PRIVATE_H */