diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 17:43:51 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 17:43:51 +0000 |
commit | be58c81aff4cd4c0ccf43dbd7998da4a6a08c03b (patch) | |
tree | 779c248fb61c83f65d1f0dc867f2053d76b4e03a /plat/imx/imx93/platform.mk | |
parent | Initial commit. (diff) | |
download | arm-trusted-firmware-upstream.tar.xz arm-trusted-firmware-upstream.zip |
Adding upstream version 2.10.0+dfsg.upstream/2.10.0+dfsgupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | plat/imx/imx93/platform.mk | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/plat/imx/imx93/platform.mk b/plat/imx/imx93/platform.mk new file mode 100644 index 0000000..ed7e81f --- /dev/null +++ b/plat/imx/imx93/platform.mk @@ -0,0 +1,46 @@ +# +# Copyright 2022-2023 NXP +# +# SPDX-License-Identifier: BSD-3-Clause +# + +PLAT_INCLUDES := -Iplat/imx/common/include \ + -Iplat/imx/imx93/include \ +# Translation tables library +include lib/xlat_tables_v2/xlat_tables.mk + +GICV3_SUPPORT_GIC600 := 1 + +# 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/common/aarch64/crash_console_helpers.S \ + plat/imx/imx93/aarch64/plat_helpers.S \ + plat/imx/imx93/plat_topology.c \ + plat/imx/common/lpuart_console.S \ + plat/imx/imx93/trdc.c \ + plat/imx/imx93/pwr_ctrl.c \ + plat/imx/imx93/imx93_bl31_setup.c \ + plat/imx/imx93/imx93_psci.c \ + lib/cpus/aarch64/cortex_a55.S \ + drivers/delay_timer/delay_timer.c \ + drivers/delay_timer/generic_delay_timer.c \ + drivers/nxp/trdc/imx_trdc.c \ + ${IMX_GIC_SOURCES} \ + ${XLAT_TABLES_LIB_SRCS} + +RESET_TO_BL31 := 1 +HW_ASSISTED_COHERENCY := 1 +USE_COHERENT_MEM := 0 +PROGRAMMABLE_RESET_ADDRESS := 1 +COLD_BOOT_SINGLE_CPU := 1 + +BL32_BASE ?= 0x96000000 +BL32_SIZE ?= 0x02000000 +$(eval $(call add_define,BL32_BASE)) +$(eval $(call add_define,BL32_SIZE)) |