css_bl1_setup.c 489 B

12345678910111213141516171819202122
  1. /*
  2. * Copyright (c) 2015-2018, 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/debug.h>
  8. #include <plat/arm/common/plat_arm.h>
  9. #include <plat/arm/soc/common/soc_css.h>
  10. #include <plat/common/platform.h>
  11. void bl1_platform_setup(void)
  12. {
  13. arm_bl1_platform_setup();
  14. /*
  15. * Do ARM CSS SoC security setup.
  16. * BL1 needs to enable normal world access to memory.
  17. */
  18. soc_css_security_setup();
  19. }