bl2.h 423 B

123456789101112131415161718
  1. /*
  2. * Copyright (c) 2018-2019, ARM Limited and Contributors. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #ifndef BL2_H
  7. #define BL2_H
  8. #include <stdint.h>
  9. void bl2_setup(u_register_t arg0, u_register_t arg1, u_register_t arg2,
  10. u_register_t arg3);
  11. void bl2_el3_setup(u_register_t arg0, u_register_t arg1, u_register_t arg2,
  12. u_register_t arg3);
  13. void bl2_main(void);
  14. #endif /* BL2_H */