xref: /rk3399_ARM-atf/plat/nvidia/tegra/platform.mk (revision 4874793d2ba048b15322aed651bcede35d9dfe33)
1#
2# Copyright (c) 2015-2019, ARM Limited and Contributors. All rights reserved.
3# Copyright (c) 2020, NVIDIA Corporation. All rights reserved.
4#
5# SPDX-License-Identifier: BSD-3-Clause
6#
7
8SOC_DIR			:=	plat/nvidia/tegra/soc/${TARGET_SOC}
9
10# dump the state on crash console
11CRASH_REPORTING		:=	1
12$(eval $(call add_define,CRASH_REPORTING))
13
14# enable assert() for release/debug builds
15ENABLE_ASSERTIONS	:=	1
16PLAT_LOG_LEVEL_ASSERT	:=	50
17$(eval $(call add_define,PLAT_LOG_LEVEL_ASSERT))
18
19# enable dynamic memory mapping
20PLAT_XLAT_TABLES_DYNAMIC :=	1
21$(eval $(call add_define,PLAT_XLAT_TABLES_DYNAMIC))
22
23# Enable exception handling at EL3
24EL3_EXCEPTION_HANDLING	:=	1
25GICV2_G0_FOR_EL3	:=	1
26
27# Enable PSCI v1.0 extended state ID format
28PSCI_EXTENDED_STATE_ID	:=	1
29
30# code and read-only data should be put on separate memory pages
31SEPARATE_CODE_AND_RODATA :=	1
32
33# do not use coherent memory
34USE_COHERENT_MEM	:=	0
35
36# do not enable SVE
37ENABLE_SVE_FOR_NS	:=	0
38
39# enable D-cache early during CPU warmboot
40WARMBOOT_ENABLE_DCACHE_EARLY := 1
41
42# remove the standard libc
43OVERRIDE_LIBC		:=	1
44
45# Flag to enable WDT FIQ interrupt handling for Tegra SoCs
46# prior to Tegra186
47ENABLE_TEGRA_WDT_LEGACY_FIQ_HANDLING	?= 0
48
49# Flag to allow relocation of BL32 image to TZDRAM during boot
50RELOCATE_BL32_IMAGE		?= 0
51
52include plat/nvidia/tegra/common/tegra_common.mk
53include ${SOC_DIR}/platform_${TARGET_SOC}.mk
54
55$(eval $(call add_define,ENABLE_TEGRA_WDT_LEGACY_FIQ_HANDLING))
56$(eval $(call add_define,RELOCATE_BL32_IMAGE))
57
58# modify BUILD_PLAT to point to SoC specific build directory
59BUILD_PLAT	:=	${BUILD_BASE}/${PLAT}/${TARGET_SOC}/${BUILD_TYPE}
60
61# platform cflags (enable signed comparisons, disable stdlib)
62TF_CFLAGS	+= -Wsign-compare -nostdlib
63
64# override with necessary libc files for the Tegra platform
65override LIBC_SRCS :=	$(addprefix lib/libc/,		\
66			assert.c			\
67			memcpy.c			\
68			memmove.c			\
69			memset.c			\
70			printf.c			\
71			putchar.c			\
72			strlen.c			\
73			snprintf.c)
74
75INCLUDES	+=	-Iinclude/lib/libc		\
76			-Iinclude/lib/libc/$(ARCH)	\
77
78ifneq ($(findstring armlink,$(notdir $(LD))),)
79# o suppress warnings for section mismatches, undefined symbols
80# o use only those libraries that are specified in the input file
81#   list to resolve references
82# o create a static callgraph of functions
83# o resolve undefined symbols to el3_panic
84# o include only required sections
85TF_LDFLAGS	+= --diag_suppress=L6314,L6332 --no_scanlib --callgraph
86TF_LDFLAGS	+= --keep="*(__pubsub*)" --keep="*(rt_svc_descs*)" --keep="*(*cpu_ops)"
87ifeq (${ENABLE_PMF},1)
88TF_LDFLAGS	+= --keep="*(*pmf_svc_descs*)"
89endif
90endif
91