platform.mk 3.46 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
26
27
28
29
30
# 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

PLAT_INCLUDES		:=	-Iplat/arm/board/juno/include		\
				-Iplat/arm/css/drivers/sds
31

32
PLAT_BL_COMMON_SOURCES	:=	plat/arm/board/juno/${ARCH}/juno_helpers.S
33

34
35
36
37
38
# 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))

39
40
41
42
43
44
45
# 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

46
47
48
49
50
51
52
53
54
55
56
57
58
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

59
ifeq (${ARCH},aarch64)
60
BL1_SOURCES		+=	lib/cpus/aarch64/cortex_a53.S		\
Brendan Jackman's avatar
Brendan Jackman committed
61
				lib/cpus/aarch64/cortex_a57.S		\
62
				lib/cpus/aarch64/cortex_a72.S		\
63
				plat/arm/board/juno/juno_err.c		\
64
				plat/arm/board/juno/juno_bl1_setup.c	\
65
66
				${JUNO_INTERCONNECT_SOURCES}		\
				${JUNO_SECURITY_SOURCES}
67

68
BL2_SOURCES		+=	lib/utils/mem_region.c			\
69
				plat/arm/board/juno/juno_err.c		\
70
71
				plat/arm/board/juno/juno_bl2_setup.c	\
				plat/arm/common/arm_nor_psci_mem_protect.c \
72
				${JUNO_SECURITY_SOURCES}
73

74
BL2U_SOURCES		+=	${JUNO_SECURITY_SOURCES}
75

76
BL31_SOURCES		+=	lib/cpus/aarch64/cortex_a53.S		\
77
				lib/cpus/aarch64/cortex_a57.S		\
Brendan Jackman's avatar
Brendan Jackman committed
78
				lib/cpus/aarch64/cortex_a72.S		\
79
				lib/utils/mem_region.c			\
80
				plat/arm/board/juno/juno_topology.c	\
81
82
				plat/arm/board/common/drivers/norflash/norflash.c \
				plat/arm/common/arm_nor_psci_mem_protect.c \
83
				${JUNO_GIC_SOURCES}			\
84
				${JUNO_INTERCONNECT_SOURCES}		\
85
				${JUNO_SECURITY_SOURCES}
86
87
88
89
90

ifeq (${CSS_USE_SCMI_SDS_DRIVER},1)
BL1_SOURCES		+=	plat/arm/css/drivers/sds/sds.c
endif

91
endif
92

93
94
# Errata workarounds for Cortex-A53:
ERRATA_A53_826319		:=	1
95
ERRATA_A53_835769		:=	1
96
ERRATA_A53_836870		:=	1
97
ERRATA_A53_843419		:=	1
98
ERRATA_A53_855873		:=	1
99
100

# Errata workarounds for Cortex-A57:
101
ERRATA_A57_806969		:=	0
102
ERRATA_A57_813419		:=	1
103
ERRATA_A57_813420		:=	1
104
105
106
107
108
ERRATA_A57_826974		:=	1
ERRATA_A57_826977		:=	1
ERRATA_A57_828024		:=	1
ERRATA_A57_829520		:=	1
ERRATA_A57_833471		:=	1
109
ERRATA_A57_859972		:=	0
110

111
112
# Errata workarounds for Cortex-A72:
ERRATA_A72_859971		:=	0
113
114
115
116

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

118
119
120
# Do not enable SVE
ENABLE_SVE_FOR_NS		:=	0

121
122
123
124
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
125