mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-08-18 02:17:01 +02:00
For NXP platforms: - Setup files for BL2 and BL31 - Other supporting files. Signed-off-by: Pankaj Gupta <pankaj.gupta@nxp.com> Change-Id: I36a1183a0652701bdede9e02d41eb976accbb017
21 lines
549 B
Makefile
21 lines
549 B
Makefile
# Copyright 2018-2020 NXP
|
|
#
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
#
|
|
#
|
|
#------------------------------------------------------------------------------
|
|
#
|
|
# Select the CORE files
|
|
#
|
|
# -----------------------------------------------------------------------------
|
|
|
|
CPU_LIBS := lib/cpus/${ARCH}/aem_generic.S
|
|
|
|
ifeq (,$(filter $(CORE_TYPE),a53 a55 a57 a72 a75))
|
|
$(error "CORE_TYPE not specified or incorrect")
|
|
else
|
|
CPU_LIBS += lib/cpus/${ARCH}/cortex_$(CORE_TYPE).S
|
|
endif
|
|
|
|
# -----------------------------------------------------------------------------
|