mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 09:34:18 +00:00

MC_ME is one of the leading hardware blocks responsible for partitions' transition to and from a reset state. Not being the only one involved in this role, it must cooperate with some other modules (MC_RGM, RDC) to successfully bring a peripheral out of the reset state. As a result, the partition management is isolated into a dedicated file, as parts of it will later contribute to peripheral reset control. Change-Id: I6a9dbf28008b1677bc847bbafa474b489c999d05 Signed-off-by: Ghennadi Procopciuc <ghennadi.procopciuc@nxp.com>
22 lines
581 B
Makefile
22 lines
581 B
Makefile
#
|
|
# Copyright 2024 NXP
|
|
#
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
#
|
|
|
|
PLAT_INCLUDES += \
|
|
-I${PLAT_DRIVERS_INCLUDE_PATH}/clk/s32cc \
|
|
-I${PLAT_DRIVERS_PATH}/clk/s32cc/include \
|
|
|
|
CLK_SOURCES := \
|
|
${PLAT_DRIVERS_PATH}/clk/s32cc/mc_rgm.c \
|
|
${PLAT_DRIVERS_PATH}/clk/s32cc/mc_me.c \
|
|
${PLAT_DRIVERS_PATH}/clk/s32cc/s32cc_clk_drv.c \
|
|
${PLAT_DRIVERS_PATH}/clk/s32cc/s32cc_clk_modules.c \
|
|
${PLAT_DRIVERS_PATH}/clk/s32cc/s32cc_clk_utils.c \
|
|
${PLAT_DRIVERS_PATH}/clk/s32cc/s32cc_early_clks.c \
|
|
drivers/clk/clk.c \
|
|
|
|
ifeq (${BL_COMM_CLK_NEEDED},yes)
|
|
BL2_SOURCES += ${CLK_SOURCES}
|
|
endif
|