blob: b25be07424b0b16a69f29036d1fb545c3209ae8c [file] [log] [blame]
Anson Huang73b18532018-06-05 16:13:45 +08001#
Alexei Fedorov2f13d6c2020-02-21 10:17:26 +00002# Copyright (c) 2015-2020, ARM Limited and Contributors. All rights reserved.
Anson Huang73b18532018-06-05 16:13:45 +08003#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6
7PLAT_INCLUDES := -Iplat/imx/imx8qx/include \
8 -Iplat/imx/common/include \
9
Alexei Fedorov84f1b5d2020-03-23 18:45:17 +000010# Include GICv3 driver files
11include drivers/arm/gic/v3/gicv3.mk
12
13IMX_GIC_SOURCES := ${GICV3_SOURCES} \
Anson Huang73b18532018-06-05 16:13:45 +080014 plat/common/plat_gicv3.c \
15 plat/imx/common/plat_imx8_gic.c
16
17BL31_SOURCES += plat/imx/common/lpuart_console.S \
18 plat/imx/common/imx8_helpers.S \
19 plat/imx/imx8qx/imx8qx_bl31_setup.c \
20 plat/imx/imx8qx/imx8qx_psci.c \
21 plat/imx/common/imx8_topology.c \
Anson Huangd2b90552018-07-12 10:52:55 +080022 plat/imx/common/imx8_psci.c \
Anson Huangf753d462019-01-15 10:34:04 +080023 plat/imx/common/imx_sip_svc.c \
24 plat/imx/common/imx_sip_handler.c \
Anson Huang10cd8172018-07-12 14:17:19 +080025 plat/common/plat_psci_common.c \
Anson Huang73b18532018-06-05 16:13:45 +080026 lib/xlat_tables/xlat_tables_common.c \
27 lib/xlat_tables/aarch64/xlat_tables.c \
28 lib/cpus/aarch64/cortex_a35.S \
Anson Huang73b18532018-06-05 16:13:45 +080029 ${IMX_GIC_SOURCES} \
30
31include plat/imx/common/sci/sci_api.mk
32
Anson Huang73b18532018-06-05 16:13:45 +080033USE_COHERENT_MEM := 1
34RESET_TO_BL31 := 1
Igor Opaniuk72d86082020-03-23 17:21:05 +020035
36IMX_DEBUG_UART ?= 0
37$(eval $(call add_define,IMX_USE_UART${IMX_DEBUG_UART}))
38
39DEBUG_CONSOLE ?= 0
40$(eval $(call add_define,DEBUG_CONSOLE))