arm_sp_min.mk 552 B

1234567891011121314151617181920
  1. #
  2. # Copyright (c) 2016-2019, ARM Limited and Contributors. All rights reserved.
  3. #
  4. # SPDX-License-Identifier: BSD-3-Clause
  5. #
  6. # SP MIN source files common to ARM standard platforms
  7. # Skip building BL1, BL2 and BL2U if RESET_TO_SP_MIN flag is set.
  8. ifeq (${RESET_TO_SP_MIN},1)
  9. BL1_SOURCES =
  10. BL2_SOURCES =
  11. BL2U_SOURCES =
  12. endif
  13. BL32_SOURCES += plat/arm/common/arm_pm.c \
  14. plat/arm/common/arm_topology.c \
  15. plat/arm/common/sp_min/arm_sp_min_setup.c \
  16. plat/common/aarch32/platform_mp_stack.S \
  17. plat/common/plat_psci_common.c