platform.mk 3.12 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
# 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))

34
35
36
37
38
39
40
41
42
43
44
45
46
ifeq (${JUNO_AARCH32_EL3_RUNTIME}, 1)
# Include BL32 in FIP
NEED_BL32		:= yes
# BL31 is not required
override BL31_SOURCES =

# The BL32 needs to be built separately invoking the AARCH32 compiler and
# be specifed via `BL32` build option.
  ifneq (${ARCH}, aarch32)
    override BL32_SOURCES =
  endif
endif

47
ifeq (${ARCH},aarch64)
48
BL1_SOURCES		+=	lib/cpus/aarch64/cortex_a53.S		\
Brendan Jackman's avatar
Brendan Jackman committed
49
				lib/cpus/aarch64/cortex_a57.S		\
50
				lib/cpus/aarch64/cortex_a72.S		\
51
				plat/arm/board/juno/juno_bl1_setup.c	\
52
				plat/arm/board/juno/juno_err.c		\
53
54
				${JUNO_INTERCONNECT_SOURCES}		\
				${JUNO_SECURITY_SOURCES}
55

56
BL2_SOURCES		+=	plat/arm/board/juno/juno_err.c		\
57
				plat/arm/board/juno/juno_bl2_setup.c	\
58
				${JUNO_SECURITY_SOURCES}
59

60
BL2U_SOURCES		+=	${JUNO_SECURITY_SOURCES}
61

62
BL31_SOURCES		+=	lib/cpus/aarch64/cortex_a53.S		\
63
				lib/cpus/aarch64/cortex_a57.S		\
Brendan Jackman's avatar
Brendan Jackman committed
64
				lib/cpus/aarch64/cortex_a72.S		\
65
				plat/arm/board/juno/juno_topology.c	\
66
				${JUNO_GIC_SOURCES}			\
67
				${JUNO_INTERCONNECT_SOURCES}		\
68
				${JUNO_SECURITY_SOURCES}
69
endif
70

71
72
# Errata workarounds for Cortex-A53:
ERRATA_A53_826319		:=	1
73
ERRATA_A53_835769		:=	1
74
ERRATA_A53_836870		:=	1
75
ERRATA_A53_843419		:=	1
76
ERRATA_A53_855873		:=	1
77
78

# Errata workarounds for Cortex-A57:
79
ERRATA_A57_806969		:=	0
80
ERRATA_A57_813419		:=	1
81
ERRATA_A57_813420		:=	1
82
83
84
85
86
ERRATA_A57_826974		:=	1
ERRATA_A57_826977		:=	1
ERRATA_A57_828024		:=	1
ERRATA_A57_829520		:=	1
ERRATA_A57_833471		:=	1
87
ERRATA_A57_859972		:=	0
88

89
90
# Errata workarounds for Cortex-A72:
ERRATA_A72_859971		:=	0
91
92
93
94

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

96
# Disable the PSCI platform compatibility layer
97
98
99
ENABLE_PLAT_COMPAT		:= 	0

# Enable memory map related constants optimisation
100
ARM_BOARD_OPTIMISE_MEM		:=	1
101

102
103
104
# Do not enable SVE
ENABLE_SVE_FOR_NS		:=	0

105
106
107
108
# Select SCMI/SDS drivers instead of SCPI/BOM driver for communicating with the
# SCP during power management operations and for SCP RAM Firmware transfer.
CSS_USE_SCMI_SDS_DRIVER		:=	1

109
110
111
112
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
113