core.mk 673 B

12345678910111213141516171819202122
  1. # Copyright 2018-2021 NXP
  2. #
  3. # SPDX-License-Identifier: BSD-3-Clause
  4. #
  5. #
  6. #------------------------------------------------------------------------------
  7. #
  8. # Select the CORE files
  9. #
  10. # -----------------------------------------------------------------------------
  11. CPU_LIBS := lib/cpus/${ARCH}/aem_generic.S
  12. ifeq (,$(filter $(CORE_TYPE),a53 a72))
  13. $(error "CORE_TYPE not specified or incorrect")
  14. else
  15. UPPER_CORE_TYPE=$(shell echo $(CORE_TYPE) | tr a-z A-Z)
  16. $(eval $(call add_define_val,CPUECTLR_EL1,CORTEX_$(UPPER_CORE_TYPE)_ECTLR_EL1))
  17. CPU_LIBS += lib/cpus/${ARCH}/cortex_$(CORE_TYPE).S
  18. endif
  19. # -----------------------------------------------------------------------------