imx8m_image_load.c 523 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Copyright (c) 2021, ARM Limited and Contributors. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #include <common/bl_common.h>
  7. #include <common/desc_image_load.h>
  8. #include <platform_def.h>
  9. #include <plat/common/platform.h>
  10. void plat_flush_next_bl_params(void)
  11. {
  12. flush_bl_params_desc();
  13. }
  14. bl_load_info_t *plat_get_bl_image_load_info(void)
  15. {
  16. return get_bl_load_info_from_mem_params_desc();
  17. }
  18. bl_params_t *plat_get_next_bl_params(void)
  19. {
  20. return get_next_bl_params_from_mem_params_desc();
  21. }