aboutsummaryrefslogtreecommitdiff
path: root/drivers/nxp/pmu/pmu.mk
blob: 56b04229e3936b6201cffec8d9827421a68cbf92 (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 2021 NXP
#
# SPDX-License-Identifier: BSD-3-Clause
#
#-----------------------------------------------------------------------------
ifeq (${PMU_ADDED},)

PMU_ADDED		:= 1

PMU_DRIVERS_PATH	:=  ${PLAT_DRIVERS_PATH}/pmu

PLAT_INCLUDES		+= -I$(PMU_DRIVERS_PATH)

PMU_SOURCES		+= $(PMU_DRIVERS_PATH)/pmu.c

ifeq (${BL_COMM_PMU_NEEDED},yes)
BL_COMMON_SOURCES	+= ${PMU_SOURCES}
else
ifeq (${BL2_PMU_NEEDED},yes)
BL2_SOURCES		+= ${PMU_SOURCES}
endif
ifeq (${BL31_PMU_NEEDED},yes)
BL31_SOURCES		+= ${PMU_SOURCES}
endif
endif
endif
#------------------------------------------------