blob: 9b81f2d46f1fc90e8ba782ab4e1f833964a97c88 [file] [log] [blame]
Pankaj Gupta988bbb22020-12-09 14:02:40 +05301# Copyright 2018-2020 NXP
2#
3# SPDX-License-Identifier: BSD-3-Clause
4#
5#
6#------------------------------------------------------------------------------
7#
8# Select the CORE files
9#
10# -----------------------------------------------------------------------------
11
12CPU_LIBS := lib/cpus/${ARCH}/aem_generic.S
13
14ifeq (,$(filter $(CORE_TYPE),a53 a55 a57 a72 a75))
15$(error "CORE_TYPE not specified or incorrect")
16else
17CPU_LIBS += lib/cpus/${ARCH}/cortex_$(CORE_TYPE).S
18endif
19
20# -----------------------------------------------------------------------------