sp_min-fvp.mk 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. #
  2. # Copyright (c) 2016-2023, Arm Limited and Contributors. All rights reserved.
  3. #
  4. # SPDX-License-Identifier: BSD-3-Clause
  5. #
  6. include common/fdt_wrappers.mk
  7. # SP_MIN source files specific to FVP platform
  8. BL32_SOURCES += drivers/arm/fvp/fvp_pwrc.c \
  9. drivers/cfi/v2m/v2m_flash.c \
  10. lib/utils/mem_region.c \
  11. plat/arm/board/fvp/aarch32/fvp_helpers.S \
  12. plat/arm/board/fvp/fvp_pm.c \
  13. plat/arm/board/fvp/fvp_console.c \
  14. plat/arm/board/fvp/fvp_topology.c \
  15. plat/arm/board/fvp/sp_min/fvp_sp_min_setup.c \
  16. plat/arm/common/arm_nor_psci_mem_protect.c \
  17. ${FVP_CPU_LIBS} \
  18. ${FVP_GIC_SOURCES} \
  19. ${FVP_INTERCONNECT_SOURCES} \
  20. ${FVP_SECURITY_SOURCES}
  21. # Support for fconf in SP_MIN(BL32)
  22. # Added separately from the above list for better readability
  23. ifeq ($(filter 1,${RESET_TO_BL2} ${RESET_TO_SP_MIN}),)
  24. BL32_SOURCES += lib/fconf/fconf.c \
  25. lib/fconf/fconf_dyn_cfg_getter.c \
  26. plat/arm/board/fvp/fconf/fconf_hw_config_getter.c \
  27. BL32_SOURCES += ${FDT_WRAPPERS_SOURCES}
  28. ifeq (${SEC_INT_DESC_IN_FCONF},1)
  29. BL32_SOURCES += plat/arm/common/fconf/fconf_sec_intr_config.c
  30. endif
  31. endif
  32. include plat/arm/common/sp_min/arm_sp_min.mk