mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-17 10:04:26 +00:00

ERR051700 erratum is present on all S32CC-based SoCs and relates to reset. Releasing multiple Software Resettable Domains (SRDs) from reset simultaneously, may cause a false error in the fault control unit. The workaround is to clear the SRD resets sequentially instead of simultaneously. Change-Id: I883bc223bf6834907259e6964a5702d7186e4c7f Signed-off-by: Alexandru-Catalin Ionita <alexandru-catalin.ionita@nxp.com> Signed-off-by: Ghennadi Procopciuc <ghennadi.procopciuc@nxp.com>
21 lines
539 B
Makefile
21 lines
539 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/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
|