xref: /aosp_15_r20/external/arm-trusted-firmware/drivers/nxp/sec_mon/sec_mon.mk (revision 54fd6939e177f8ff529b10183254802c76df6d08)
1#
2# Copyright 2021 NXP
3#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6
7ifeq (${ADD_SNVS},)
8
9ADD_SNVS		:= 1
10
11PLAT_INCLUDES		+= -I$(PLAT_DRIVERS_INCLUDE_PATH)/sec_mon
12
13SNVS_SOURCES		+= $(PLAT_DRIVERS_PATH)/sec_mon/snvs.c
14
15ifeq (${BL_COMM_SNVS_NEEDED},yes)
16BL_COMMON_SOURCES	+= ${SNVS_SOURCES}
17else
18ifeq (${BL2_SNVS_NEEDED},yes)
19BL2_SOURCES		+= ${SNVS_SOURCES}
20endif
21ifeq (${BL31_SNVS_NEEDED},yes)
22BL31_SOURCES		+= ${SNVS_SOURCES}
23endif
24endif
25endif
26