summaryrefslogtreecommitdiffstats
path: root/drivers/nxp/ifc/nor/ifc_nor.mk
blob: 0022a81562e255509645346a0193af4eb42fabea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#
# Copyright 2020-2021 NXP
#
# SPDX-License-Identifier: BSD-3-Clause
#

ifeq (${NOR_ADDED},)

NOR_ADDED		:= 1

NOR_DRIVERS_PATH	:=  ${PLAT_DRIVERS_PATH}/ifc/nor

NOR_SOURCES		:=  $(NOR_DRIVERS_PATH)/ifc_nor.c

PLAT_INCLUDES		+= -I$(PLAT_DRIVERS_INCLUDE_PATH)/ifc

ifeq (${BL_COMM_IFC_NOR_NEEDED},yes)
BL_COMMON_SOURCES	+= ${NOR_SOURCES}
else
ifeq (${BL2_IFC_NOR_NEEDED},yes)
BL2_SOURCES		+= ${NOR_SOURCES}
endif
ifeq (${BL31_IFC_NOR_NEEDED},yes)
BL31_SOURCES		+= ${NOR_SOURCES}
endif
endif

endif