fvp_ve_security.c 534 B

12345678910111213141516171819202122
  1. /*
  2. * Copyright (c) 2019, Arm Limited. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. /*
  7. * We assume that all security programming is done by the primary core.
  8. */
  9. void plat_arm_security_setup(void)
  10. {
  11. /*
  12. * The Base FVP has a TrustZone address space controller, the Foundation
  13. * FVP does not. Trying to program the device on the foundation FVP will
  14. * cause an abort.
  15. *
  16. * If the platform had additional peripheral specific security
  17. * configurations, those would be configured here.
  18. */
  19. return;
  20. }