blob: 607e7e3aafa9103bf46150bc853958cc6c7b9523 [file] [log] [blame]
developer1033ea12019-04-10 21:09:26 +08001#
2# Copyright (c) 2019, ARM Limited and Contributors. All rights reserved.
3#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6
7MTK_PLAT := plat/mediatek
8MTK_PLAT_SOC := ${MTK_PLAT}/${PLAT}
9
10PLAT_INCLUDES := -I${MTK_PLAT}/common/ \
11 -I${MTK_PLAT_SOC}/include/
12
13PLAT_BL_COMMON_SOURCES := lib/xlat_tables/aarch64/xlat_tables.c \
14 lib/xlat_tables/xlat_tables_common.c \
developer1033ea12019-04-10 21:09:26 +080015 plat/common/plat_psci_common.c \
16 plat/common/aarch64/crash_console_helpers.S
17
18BL31_SOURCES += drivers/arm/cci/cci.c \
19 drivers/arm/gic/common/gic_common.c \
developer3f3f1ab2019-05-02 22:26:22 +080020 drivers/arm/gic/v3/arm_gicv3_common.c \
21 drivers/arm/gic/v3/gicv3_helpers.c \
22 drivers/arm/gic/v3/gic500.c \
23 drivers/arm/gic/v3/gicv3_main.c \
developer1033ea12019-04-10 21:09:26 +080024 drivers/delay_timer/delay_timer.c \
25 drivers/delay_timer/generic_delay_timer.c \
26 drivers/gpio/gpio.c \
27 drivers/ti/uart/aarch64/16550_console.S \
28 lib/cpus/aarch64/aem_generic.S \
29 lib/cpus/aarch64/cortex_a53.S \
30 lib/cpus/aarch64/cortex_a73.S \
developer3f3f1ab2019-05-02 22:26:22 +080031 plat/common/plat_gicv3.c \
developer1033ea12019-04-10 21:09:26 +080032 ${MTK_PLAT}/common/mtk_plat_common.c \
33 ${MTK_PLAT_SOC}/aarch64/plat_helpers.S \
34 ${MTK_PLAT_SOC}/aarch64/platform_common.c \
35 ${MTK_PLAT_SOC}/plat_pm.c \
36 ${MTK_PLAT_SOC}/plat_topology.c \
developer3f3f1ab2019-05-02 22:26:22 +080037 ${MTK_PLAT_SOC}/plat_mt_gic.c \
developer1033ea12019-04-10 21:09:26 +080038 ${MTK_PLAT_SOC}/bl31_plat_setup.c \
39 ${MTK_PLAT_SOC}/plat_debug.c \
40 ${MTK_PLAT_SOC}/scu.c
41
42# Enable workarounds for selected Cortex-A53 erratas.
43ERRATA_A53_826319 := 0
44ERRATA_A53_836870 := 1
45ERRATA_A53_855873 := 1
46
47# indicate the reset vector address can be programmed
48PROGRAMMABLE_RESET_ADDRESS := 1
49
50COLD_BOOT_SINGLE_CPU := 1
51
52MULTI_CONSOLE_API := 1
53
54MACH_MT8183 := 1
55$(eval $(call add_define,MACH_MT8183))
56