1#
2# Copyright 2021 NXP
3#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6
7ifeq (${QSPI_ADDED},)
8
9QSPI_ADDED		:= 1
10
11QSPI_SOURCES		:= $(PLAT_DRIVERS_PATH)/qspi/qspi.c
12
13PLAT_INCLUDES		+= -I$(PLAT_DRIVERS_INCLUDE_PATH)/qspi
14
15ifeq (${BL_COMM_QSPI_NEEDED},yes)
16BL_COMMON_SOURCES	+= ${QSPI_SOURCES}
17else
18ifeq (${BL2_QSPI_NEEDED},yes)
19BL2_SOURCES		+= ${QSPI_SOURCES}
20endif
21ifeq (${BL31_QSPI_NEEDED},yes)
22BL31_SOURCES		+= ${QSPI_SOURCES}
23endif
24endif
25
26endif
27