Jacky Bai | a617700 | 2019-03-06 17:15:06 +0800 | [diff] [blame] | 1 | # |
Alexei Fedorov | 2f13d6c | 2020-02-21 10:17:26 +0000 | [diff] [blame] | 2 | # Copyright (c) 2019-2020, ARM Limited and Contributors. All rights reserved. |
Jacky Bai | a617700 | 2019-03-06 17:15:06 +0800 | [diff] [blame] | 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/imx8mm/include |
| 10 | |
Alexei Fedorov | 84f1b5d | 2020-03-23 18:45:17 +0000 | [diff] [blame] | 11 | # Include GICv3 driver files |
| 12 | include drivers/arm/gic/v3/gicv3.mk |
| 13 | |
| 14 | IMX_GIC_SOURCES := ${GICV3_SOURCES} \ |
Jacky Bai | a617700 | 2019-03-06 17:15:06 +0800 | [diff] [blame] | 15 | plat/common/plat_gicv3.c \ |
| 16 | plat/common/plat_psci_common.c \ |
| 17 | plat/imx/common/plat_imx8_gic.c |
| 18 | |
| 19 | BL31_SOURCES += plat/imx/common/imx8_helpers.S \ |
| 20 | plat/imx/imx8m/gpc_common.c \ |
Jacky Bai | 91c6d32 | 2019-05-21 20:24:52 +0800 | [diff] [blame] | 21 | plat/imx/imx8m/imx_aipstz.c \ |
Jacky Bai | 64130a3 | 2019-07-18 13:43:17 +0800 | [diff] [blame] | 22 | plat/imx/imx8m/imx_rdc.c \ |
Jacky Bai | 3bf04a5 | 2019-06-12 17:41:47 +0800 | [diff] [blame] | 23 | plat/imx/imx8m/imx8m_caam.c \ |
Jacky Bai | a617700 | 2019-03-06 17:15:06 +0800 | [diff] [blame] | 24 | plat/imx/imx8m/imx8m_psci_common.c \ |
| 25 | plat/imx/imx8m/imx8mm/imx8mm_bl31_setup.c \ |
| 26 | plat/imx/imx8m/imx8mm/imx8mm_psci.c \ |
| 27 | plat/imx/imx8m/imx8mm/gpc.c \ |
| 28 | plat/imx/common/imx8_topology.c \ |
Leonard Crestez | 402bd52 | 2019-05-08 22:29:21 +0300 | [diff] [blame] | 29 | plat/imx/common/imx_sip_handler.c \ |
| 30 | plat/imx/common/imx_sip_svc.c \ |
Jacky Bai | a617700 | 2019-03-06 17:15:06 +0800 | [diff] [blame] | 31 | plat/imx/common/imx_uart_console.S \ |
Peng Fan | 57e982c | 2020-07-27 21:22:14 +0800 | [diff] [blame] | 32 | plat/imx/common/imx_ehf.c \ |
| 33 | plat/imx/common/imx_sdei.c \ |
Jacky Bai | a617700 | 2019-03-06 17:15:06 +0800 | [diff] [blame] | 34 | lib/xlat_tables/aarch64/xlat_tables.c \ |
| 35 | lib/xlat_tables/xlat_tables_common.c \ |
| 36 | lib/cpus/aarch64/cortex_a53.S \ |
Jacky Bai | a617700 | 2019-03-06 17:15:06 +0800 | [diff] [blame] | 37 | drivers/arm/tzc/tzc380.c \ |
| 38 | drivers/delay_timer/delay_timer.c \ |
| 39 | drivers/delay_timer/generic_delay_timer.c \ |
| 40 | ${IMX_GIC_SOURCES} |
| 41 | |
| 42 | USE_COHERENT_MEM := 1 |
| 43 | RESET_TO_BL31 := 1 |
| 44 | A53_DISABLE_NON_TEMPORAL_HINT := 0 |
Jacky Bai | a617700 | 2019-03-06 17:15:06 +0800 | [diff] [blame] | 45 | |
| 46 | ERRATA_A53_835769 := 1 |
| 47 | ERRATA_A53_843419 := 1 |
| 48 | ERRATA_A53_855873 := 1 |
Jacky Bai | 2a763ba | 2019-07-18 13:34:09 +0800 | [diff] [blame] | 49 | |
| 50 | BL32_BASE ?= 0xbe000000 |
| 51 | $(eval $(call add_define,BL32_BASE)) |
| 52 | |
| 53 | BL32_SIZE ?= 0x2000000 |
| 54 | $(eval $(call add_define,BL32_SIZE)) |
Igor Opaniuk | 9fc5cb6 | 2020-03-05 22:10:41 +0200 | [diff] [blame] | 55 | |
| 56 | IMX_BOOT_UART_BASE ?= 0x30890000 |
| 57 | $(eval $(call add_define,IMX_BOOT_UART_BASE)) |
Peng Fan | 57e982c | 2020-07-27 21:22:14 +0800 | [diff] [blame] | 58 | |
| 59 | EL3_EXCEPTION_HANDLING := 1 |
| 60 | SDEI_SUPPORT := 1 |