Bai Ping | 06e325e | 2018-10-28 00:12:34 +0800 | [diff] [blame^] | 1 | # |
| 2 | # Copyright (c) 2018, ARM Limited and Contributors. All rights reserved. |
| 3 | # |
| 4 | # SPDX-License-Identifier: BSD-3-Clause |
| 5 | # |
| 6 | |
| 7 | PLAT_INCLUDES := -Iplat/imx/common/include \ |
| 8 | -Iplat/imx/imx8m/include \ |
| 9 | -Iplat/imx/imx8m/imx8mq/include |
| 10 | |
| 11 | IMX_GIC_SOURCES := drivers/arm/gic/v3/gicv3_helpers.c \ |
| 12 | drivers/arm/gic/v3/arm_gicv3_common.c \ |
| 13 | drivers/arm/gic/v3/gic500.c \ |
| 14 | drivers/arm/gic/v3/gicv3_main.c \ |
| 15 | drivers/arm/gic/common/gic_common.c \ |
| 16 | plat/common/plat_gicv3.c \ |
| 17 | plat/common/plat_psci_common.c \ |
| 18 | plat/imx/common/plat_imx8_gic.c |
| 19 | |
| 20 | BL31_SOURCES += plat/imx/common/imx8_helpers.S \ |
| 21 | plat/imx/imx8m/imx8mq/imx8mq_bl31_setup.c \ |
| 22 | plat/imx/imx8m/imx8mq/imx8mq_psci.c \ |
| 23 | plat/imx/imx8m/imx8mq/gpc.c \ |
| 24 | plat/imx/common/imx8_topology.c \ |
| 25 | plat/imx/common/imx_uart_console.S \ |
| 26 | lib/xlat_tables/aarch64/xlat_tables.c \ |
| 27 | lib/xlat_tables/xlat_tables_common.c \ |
| 28 | lib/cpus/aarch64/cortex_a53.S \ |
| 29 | drivers/console/aarch64/console.S \ |
| 30 | drivers/arm/tzc/tzc380.c \ |
| 31 | ${IMX_GIC_SOURCES} |
| 32 | |
| 33 | USE_COHERENT_MEM := 1 |
| 34 | RESET_TO_BL31 := 1 |
| 35 | A53_DISABLE_NON_TEMPORAL_HINT := 0 |
| 36 | MULTI_CONSOLE_API := 1 |