platform.mk 3.42 KB
Newer Older
1
#
2
# Copyright (c) 2013-2018, 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
# Flag to enable support for TZMP1 on JUNO
JUNO_TZMP1		:=	0
$(eval $(call assert_boolean,JUNO_TZMP1))
ifeq (${JUNO_TZMP1}, 1)
$(eval $(call add_define,JUNO_TZMP1))
endif

41
42
43
44
45
46
47
48
49
50
51
52
53
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

54
ifeq (${ARCH},aarch64)
55
BL1_SOURCES		+=	lib/cpus/aarch64/cortex_a53.S		\
Brendan Jackman's avatar
Brendan Jackman committed
56
				lib/cpus/aarch64/cortex_a57.S		\
57
				lib/cpus/aarch64/cortex_a72.S		\
58
				plat/arm/board/juno/juno_bl1_setup.c	\
59
60
				${JUNO_INTERCONNECT_SOURCES}		\
				${JUNO_SECURITY_SOURCES}
61

62
63
64
BL2_SOURCES		+=	lib/utils/mem_region.c			\
				plat/arm/board/juno/juno_bl2_setup.c	\
				plat/arm/common/arm_nor_psci_mem_protect.c \
65
				${JUNO_SECURITY_SOURCES}
66

67
BL2U_SOURCES		+=	${JUNO_SECURITY_SOURCES}
68

69
BL31_SOURCES		+=	lib/cpus/aarch64/cortex_a53.S		\
70
				lib/cpus/aarch64/cortex_a57.S		\
Brendan Jackman's avatar
Brendan Jackman committed
71
				lib/cpus/aarch64/cortex_a72.S		\
72
				lib/utils/mem_region.c			\
73
				plat/arm/board/juno/juno_topology.c	\
74
75
				plat/arm/board/common/drivers/norflash/norflash.c \
				plat/arm/common/arm_nor_psci_mem_protect.c \
76
				${JUNO_GIC_SOURCES}			\
77
				${JUNO_INTERCONNECT_SOURCES}		\
78
				${JUNO_SECURITY_SOURCES}
79
endif
80

81
82
# Errata workarounds for Cortex-A53:
ERRATA_A53_826319		:=	1
83
ERRATA_A53_835769		:=	1
84
ERRATA_A53_836870		:=	1
85
ERRATA_A53_843419		:=	1
86
ERRATA_A53_855873		:=	1
87
88

# Errata workarounds for Cortex-A57:
89
ERRATA_A57_806969		:=	0
90
ERRATA_A57_813419		:=	1
91
ERRATA_A57_813420		:=	1
92
93
94
95
96
ERRATA_A57_826974		:=	1
ERRATA_A57_826977		:=	1
ERRATA_A57_828024		:=	1
ERRATA_A57_829520		:=	1
ERRATA_A57_833471		:=	1
97
ERRATA_A57_859972		:=	0
98

99
100
# Errata workarounds for Cortex-A72:
ERRATA_A72_859971		:=	0
101
102
103
104

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

106
# Disable the PSCI platform compatibility layer
107
108
109
ENABLE_PLAT_COMPAT		:= 	0

# Enable memory map related constants optimisation
110
ARM_BOARD_OPTIMISE_MEM		:=	1
111

112
113
114
# Do not enable SVE
ENABLE_SVE_FOR_NS		:=	0

115
116
117
118
# 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

119
120
121
122
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
123