xref: /rk3399_ARM-atf/plat/nvidia/tegra/platform.mk (revision 0a0a7a9ac82cb79af91f098cedc69cc67bca3978)
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 PSCI v1.0 extended state ID format
24PSCI_EXTENDED_STATE_ID	:=	1
25
26# code and read-only data should be put on separate memory pages
27SEPARATE_CODE_AND_RODATA :=	1
28
29# do not use coherent memory
30USE_COHERENT_MEM	:=	0
31
32# do not enable SVE
33ENABLE_SVE_FOR_NS	:=	0
34
35# enable D-cache early during CPU warmboot
36WARMBOOT_ENABLE_DCACHE_EARLY := 1
37
38# remove the standard libc
39OVERRIDE_LIBC		:=	1
40
41# Flag to enable WDT FIQ interrupt handling for Tegra SoCs
42# prior to Tegra186
43ENABLE_TEGRA_WDT_LEGACY_FIQ_HANDLING	?= 0
44
45# Flag to allow relocation of BL32 image to TZDRAM during boot
46RELOCATE_BL32_IMAGE		?= 0
47
48include plat/nvidia/tegra/common/tegra_common.mk
49include ${SOC_DIR}/platform_${TARGET_SOC}.mk
50
51$(eval $(call add_define,ENABLE_TEGRA_WDT_LEGACY_FIQ_HANDLING))
52$(eval $(call add_define,RELOCATE_BL32_IMAGE))
53
54# modify BUILD_PLAT to point to SoC specific build directory
55BUILD_PLAT	:=	${BUILD_BASE}/${PLAT}/${TARGET_SOC}/${BUILD_TYPE}
56
57# platform cflags (enable signed comparisons, disable stdlib)
58TF_CFLAGS	+= -Wsign-compare -nostdlib
59
60# override with necessary libc files for the Tegra platform
61override LIBC_SRCS :=	$(addprefix lib/libc/,		\
62			assert.c			\
63			memcpy.c			\
64			memmove.c			\
65			memset.c			\
66			printf.c			\
67			putchar.c			\
68			strlen.c			\
69			snprintf.c)
70
71INCLUDES	+=	-Iinclude/lib/libc		\
72			-Iinclude/lib/libc/$(ARCH)	\
73
74ifneq ($(findstring armlink,$(notdir $(LD))),)
75# o suppress warnings for section mismatches, undefined symbols
76# o use only those libraries that are specified in the input file
77#   list to resolve references
78# o create a static callgraph of functions
79# o resolve undefined symbols to el3_panic
80# o include only required sections
81TF_LDFLAGS	+= --diag_suppress=L6314,L6332 --no_scanlib --callgraph
82TF_LDFLAGS	+= --keep="*(__pubsub*)" --keep="*(rt_svc_descs*)" --keep="*(*cpu_ops)"
83ifeq (${ENABLE_PMF},1)
84TF_LDFLAGS	+= --keep="*(*pmf_svc_descs*)"
85endif
86endif
87