blob: c2fd511e66ec11358f3e326b592e0c2c8351a14d [file] [log] [blame]
developer550bf5e2016-07-11 16:05:23 +08001#
dp-arm230011c2017-03-07 11:02:47 +00002# Copyright (c) 2016-2017, ARM Limited and Contributors. All rights reserved.
developer550bf5e2016-07-11 16:05:23 +08003#
dp-armfa3cf0b2017-05-03 09:38:09 +01004# SPDX-License-Identifier: BSD-3-Clause
developer550bf5e2016-07-11 16:05:23 +08005#
6
7MTK_PLAT := plat/mediatek
8MTK_PLAT_SOC := ${MTK_PLAT}/${PLAT}
9
10# Add OEM customized codes
11OEMS := true
12MTK_SIP_KERNEL_BOOT_ENABLE := 1
13
14
15ifneq (${OEMS},none)
16 OEMS_INCLUDES := -I${MTK_PLAT}/common/custom/
17 OEMS_SOURCES := ${MTK_PLAT}/common/custom/oem_svc.c
18endif
19
20PLAT_INCLUDES := -I${MTK_PLAT}/common/ \
21 -I${MTK_PLAT}/common/drivers/uart \
22 -I${MTK_PLAT_SOC}/ \
23 -I${MTK_PLAT_SOC}/drivers/timer/ \
24 -I${MTK_PLAT_SOC}/include/ \
25 -Iinclude/plat/arm/common/ \
26 -Iinclude/common/tbbr/ \
27 ${OEMS_INCLUDES}
28
Antonio Nino Diaz42eef852018-09-24 17:15:54 +010029PLAT_BL_COMMON_SOURCES := lib/xlat_tables/aarch64/xlat_tables.c \
30 lib/xlat_tables/xlat_tables_common.c \
developer550bf5e2016-07-11 16:05:23 +080031 plat/common/plat_gic.c
32
33BL31_SOURCES += drivers/arm/cci/cci.c \
34 drivers/delay_timer/generic_delay_timer.c \
35 drivers/arm/gic/common/gic_common.c \
36 drivers/arm/gic/v2/gicv2_main.c \
37 drivers/arm/gic/v2/gicv2_helpers.c \
38 plat/common/plat_gicv2.c \
Antonio Nino Diaz42eef852018-09-24 17:15:54 +010039 drivers/console/aarch64/console.S \
developer550bf5e2016-07-11 16:05:23 +080040 drivers/delay_timer/delay_timer.c \
41 lib/cpus/aarch64/cortex_a53.S \
developer550bf5e2016-07-11 16:05:23 +080042 ${MTK_PLAT_SOC}/bl31_plat_setup.c \
43 ${MTK_PLAT_SOC}/plat_mt_gic.c \
44 ${MTK_PLAT}/common/mtk_sip_svc.c \
45 ${MTK_PLAT}/common/mtk_plat_common.c \
46 ${MTK_PLAT}/common/drivers/uart/8250_console.S \
47 ${MTK_PLAT_SOC}/aarch64/plat_helpers.S \
48 ${MTK_PLAT_SOC}/drivers/timer/mt_cpuxgpt.c \
developer550bf5e2016-07-11 16:05:23 +080049 ${MTK_PLAT_SOC}/plat_delay_timer.c \
50 ${MTK_PLAT_SOC}/plat_pm.c \
51 ${MTK_PLAT_SOC}/plat_topology.c \
52 ${MTK_PLAT_SOC}/power_tracer.c \
53 ${MTK_PLAT_SOC}/scu.c \
54 ${OEMS_SOURCES}
55
developer550bf5e2016-07-11 16:05:23 +080056# Enable workarounds for selected Cortex-A53 erratas.
57ERRATA_A53_826319 := 1
58ERRATA_A53_836870 := 1
59
Dimitris Papastamos8e5bd5e2018-01-24 16:41:14 +000060WORKAROUND_CVE_2017_5715 := 0
61
developer550bf5e2016-07-11 16:05:23 +080062# indicate the reset vector address can be programmed
63PROGRAMMABLE_RESET_ADDRESS := 1
64
65$(eval $(call add_define,MTK_SIP_KERNEL_BOOT_ENABLE))
66
David Cunadoc5b0c0f2017-10-31 23:19:21 +000067# Do not enable SVE
68ENABLE_SVE_FOR_NS := 0