You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.5 KiB
52 lines
1.5 KiB
4 months ago
|
#
|
||
|
# Copyright (c) 2018-2020, ARM Limited and Contributors. All rights reserved.
|
||
|
#
|
||
|
# SPDX-License-Identifier: BSD-3-Clause
|
||
|
#
|
||
|
|
||
|
PLAT_INCLUDES := -Iplat/imx/common/include \
|
||
|
-Iplat/imx/imx8m/include \
|
||
|
-Iplat/imx/imx8m/imx8mq/include
|
||
|
|
||
|
# Include GICv3 driver files
|
||
|
include drivers/arm/gic/v3/gicv3.mk
|
||
|
|
||
|
IMX_GIC_SOURCES := ${GICV3_SOURCES} \
|
||
|
plat/common/plat_gicv3.c \
|
||
|
plat/common/plat_psci_common.c \
|
||
|
plat/imx/common/plat_imx8_gic.c
|
||
|
|
||
|
BL31_SOURCES += plat/imx/common/imx8_helpers.S \
|
||
|
plat/imx/imx8m/imx8mq/imx8mq_bl31_setup.c \
|
||
|
plat/imx/imx8m/imx8mq/imx8mq_psci.c \
|
||
|
plat/imx/imx8m/gpc_common.c \
|
||
|
plat/imx/imx8m/imx_aipstz.c \
|
||
|
plat/imx/imx8m/imx8m_caam.c \
|
||
|
plat/imx/imx8m/imx8m_psci_common.c \
|
||
|
plat/imx/imx8m/imx8mq/gpc.c \
|
||
|
plat/imx/common/imx8_topology.c \
|
||
|
plat/imx/common/imx_sip_handler.c \
|
||
|
plat/imx/common/imx_sip_svc.c \
|
||
|
plat/imx/common/imx_uart_console.S \
|
||
|
lib/xlat_tables/aarch64/xlat_tables.c \
|
||
|
lib/xlat_tables/xlat_tables_common.c \
|
||
|
lib/cpus/aarch64/cortex_a53.S \
|
||
|
drivers/arm/tzc/tzc380.c \
|
||
|
drivers/delay_timer/delay_timer.c \
|
||
|
drivers/delay_timer/generic_delay_timer.c \
|
||
|
${IMX_GIC_SOURCES}
|
||
|
|
||
|
USE_COHERENT_MEM := 1
|
||
|
RESET_TO_BL31 := 1
|
||
|
A53_DISABLE_NON_TEMPORAL_HINT := 0
|
||
|
|
||
|
ERRATA_A53_835769 := 1
|
||
|
ERRATA_A53_843419 := 1
|
||
|
ERRATA_A53_855873 := 1
|
||
|
|
||
|
BL32_BASE ?= 0xfe000000
|
||
|
$(eval $(call add_define,BL32_BASE))
|
||
|
|
||
|
BL32_SIZE ?= 0x2000000
|
||
|
$(eval $(call add_define,BL32_SIZE))
|