pmu.mk 557 Bytes
Newer Older
Pankaj Gupta's avatar
Pankaj Gupta committed
1
2
3
4
5
6
7
8
9
10
#
# Copyright 2021 NXP
#
# SPDX-License-Identifier: BSD-3-Clause
#
#-----------------------------------------------------------------------------
ifeq (${PMU_ADDED},)

PMU_ADDED		:= 1

11
PLAT_INCLUDES		+= -I$(PLAT_DRIVERS_INCLUDE_PATH)/pmu
Pankaj Gupta's avatar
Pankaj Gupta committed
12

13
PMU_SOURCES		+= $(PLAT_DRIVERS_PATH)/pmu/pmu.c
Pankaj Gupta's avatar
Pankaj Gupta committed
14
15
16
17
18
19
20
21
22
23
24
25
26

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
#------------------------------------------------