platform.mk 2.64 KB
Newer Older
1
#
2
# Copyright (c) 2013-2017, ARM Limited and Contributors. All rights reserved.
3
#
dp-arm's avatar
dp-arm committed
4
# SPDX-License-Identifier: BSD-3-Clause
5
6
#

7
8
9
10
11
12
JUNO_GIC_SOURCES	:=	drivers/arm/gic/common/gic_common.c	\
				drivers/arm/gic/v2/gicv2_main.c		\
				drivers/arm/gic/v2/gicv2_helpers.c	\
				plat/common/plat_gicv2.c		\
				plat/arm/common/arm_gicv2.c

13
14
15
JUNO_INTERCONNECT_SOURCES	:=	drivers/arm/cci/cci.c		\
					plat/arm/common/arm_cci.c

16
JUNO_SECURITY_SOURCES	:=	drivers/arm/tzc/tzc400.c		\
17
				plat/arm/board/juno/juno_security.c	\
18
				plat/arm/board/juno/juno_trng.c		\
19
20
				plat/arm/common/arm_tzc400.c

21
22
23
ifneq (${ENABLE_STACK_PROTECTOR}, 0)
JUNO_SECURITY_SOURCES	+=	plat/arm/board/juno/juno_stack_protector.c
endif
24

25
PLAT_INCLUDES		:=	-Iplat/arm/board/juno/include
26

27
PLAT_BL_COMMON_SOURCES	:=	plat/arm/board/juno/${ARCH}/juno_helpers.S
28

29
30
31
32
33
34
# Flag to enable support for AArch32 state on JUNO
JUNO_AARCH32_EL3_RUNTIME	:=	0
$(eval $(call assert_boolean,JUNO_AARCH32_EL3_RUNTIME))
$(eval $(call add_define,JUNO_AARCH32_EL3_RUNTIME))

ifeq (${ARCH},aarch64)
35
BL1_SOURCES		+=	lib/cpus/aarch64/cortex_a53.S		\
Brendan Jackman's avatar
Brendan Jackman committed
36
				lib/cpus/aarch64/cortex_a57.S		\
37
				lib/cpus/aarch64/cortex_a72.S		\
38
				plat/arm/board/juno/juno_bl1_setup.c	\
39
				plat/arm/board/juno/juno_err.c		\
40
41
				${JUNO_INTERCONNECT_SOURCES}		\
				${JUNO_SECURITY_SOURCES}
42

43
BL2_SOURCES		+=	plat/arm/board/juno/juno_err.c		\
44
				plat/arm/board/juno/juno_bl2_setup.c	\
45
				${JUNO_SECURITY_SOURCES}
46

47
BL2U_SOURCES		+=	${JUNO_SECURITY_SOURCES}
48

49
BL31_SOURCES		+=	lib/cpus/aarch64/cortex_a53.S		\
50
				lib/cpus/aarch64/cortex_a57.S		\
Brendan Jackman's avatar
Brendan Jackman committed
51
				lib/cpus/aarch64/cortex_a72.S		\
52
				plat/arm/board/juno/juno_topology.c	\
53
				${JUNO_GIC_SOURCES}			\
54
				${JUNO_INTERCONNECT_SOURCES}		\
55
				${JUNO_SECURITY_SOURCES}
56
endif
57

58
# Enable workarounds for selected Cortex-A53 and A57 errata.
59
60
ERRATA_A53_835769		:=	1
ERRATA_A53_843419		:=	1
61
ERRATA_A53_855873		:=	1
62
ERRATA_A57_806969		:=	0
63
ERRATA_A57_813419		:=	1
64
ERRATA_A57_813420		:=	1
65
66
67
68
69
70
71
72
73
ERRATA_A57_826974		:=	1
ERRATA_A57_826977		:=	1
ERRATA_A57_828024		:=	1
ERRATA_A57_829520		:=	1
ERRATA_A57_833471		:=	1

# Enable workarounds for selected Cortex-A53 errata.
ERRATA_A53_826319		:=	1
ERRATA_A53_836870		:=	1
74
75
76
77

# Enable option to skip L1 data cache flush during the Cortex-A57 cluster
# power down sequence
SKIP_A57_L1_FLUSH_PWR_DWN	:=	 1
78

79
# Disable the PSCI platform compatibility layer
80
81
82
ENABLE_PLAT_COMPAT		:= 	0

# Enable memory map related constants optimisation
83
ARM_BOARD_OPTIMISE_MEM		:=	1
84

85
86
87
88
include plat/arm/board/common/board_css.mk
include plat/arm/common/arm_common.mk
include plat/arm/soc/common/soc_css.mk
include plat/arm/css/common/css_common.mk
89
90
91
92

ifeq (${KEY_ALG},ecdsa)
    $(error "ECDSA key algorithm is not fully supported on Juno.")
endif