platform.mk 4.71 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
# Use the GICv3 driver on the FVP by default
FVP_USE_GIC_DRIVER	:= FVP_GICV3
9
10
11
12
13
# Use the SP804 timer instead of the generic one
FVP_USE_SP804_TIMER	:= 0

$(eval $(call assert_boolean,FVP_USE_SP804_TIMER))
$(eval $(call add_define,FVP_USE_SP804_TIMER))
14
15
16
17

# The FVP platform depends on this macro to build with correct GIC driver.
$(eval $(call add_define,FVP_USE_GIC_DRIVER))

18
19
# Define default FVP_CLUSTER_COUNT to 2 and pass it into the build system.
FVP_CLUSTER_COUNT	:= 2
20
$(eval $(call add_define,FVP_CLUSTER_COUNT))
21
22
23
24
25
26
27
28
29

# Sanity check the cluster count and if FVP_CLUSTER_COUNT <= 2,
# choose the CCI driver , else the CCN driver
ifeq ($(FVP_CLUSTER_COUNT), 0)
$(error "Incorrect cluster count specified for FVP port")
else ifeq ($(FVP_CLUSTER_COUNT),$(filter $(FVP_CLUSTER_COUNT),1 2))
FVP_INTERCONNECT_DRIVER := FVP_CCI
else
FVP_INTERCONNECT_DRIVER := FVP_CCN
30
31
endif

32
33
$(eval $(call add_define,FVP_INTERCONNECT_DRIVER))

34
FVP_GICV3_SOURCES	:=	drivers/arm/gic/common/gic_common.c	\
35
36
37
38
				drivers/arm/gic/v3/gicv3_main.c		\
				drivers/arm/gic/v3/gicv3_helpers.c	\
				plat/common/plat_gicv3.c		\
				plat/arm/common/arm_gicv3.c
39
40
41
42
43
44
45

# Choose the GIC sources depending upon the how the FVP will be invoked
ifeq (${FVP_USE_GIC_DRIVER}, FVP_GICV3)
FVP_GIC_SOURCES		:=	${FVP_GICV3_SOURCES}
else ifeq (${FVP_USE_GIC_DRIVER},FVP_GIC600)
FVP_GIC_SOURCES		:=	${FVP_GICV3_SOURCES}			\
				drivers/arm/gic/v3/gic600.c
46
47
48
49
50
51
52
else ifeq (${FVP_USE_GIC_DRIVER}, FVP_GICV2)
FVP_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
else ifeq (${FVP_USE_GIC_DRIVER}, FVP_GICV3_LEGACY)
53
54
55
  ifeq (${ARCH}, aarch32)
    $(error "GICV3 Legacy driver not supported for AArch32 build")
  endif
56
57
58
59
60
61
62
63
64
FVP_GIC_SOURCES		:=	drivers/arm/gic/arm_gic.c		\
				drivers/arm/gic/gic_v2.c		\
				drivers/arm/gic/gic_v3.c		\
				plat/common/plat_gic.c			\
				plat/arm/common/arm_gicv3_legacy.c
else
$(error "Incorrect GIC driver chosen on FVP port")
endif

65
ifeq (${FVP_INTERCONNECT_DRIVER}, FVP_CCI)
66
67
FVP_INTERCONNECT_SOURCES	:= 	drivers/arm/cci/cci.c		\
					plat/arm/common/arm_cci.c
68
69
70
71
72
73
else ifeq (${FVP_INTERCONNECT_DRIVER}, FVP_CCN)
FVP_INTERCONNECT_SOURCES	:= 	drivers/arm/ccn/ccn.c		\
					plat/arm/common/arm_ccn.c
else
$(error "Incorrect CCN driver chosen on FVP port")
endif
74

75
FVP_SECURITY_SOURCES	:=	drivers/arm/tzc/tzc400.c		\
76
77
78
				plat/arm/board/fvp/fvp_security.c	\
				plat/arm/common/arm_tzc400.c

79

80
PLAT_INCLUDES		:=	-Iplat/arm/board/fvp/include
81

82

83
PLAT_BL_COMMON_SOURCES	:=	plat/arm/board/fvp/fvp_common.c
84

85
86
87
88
FVP_CPU_LIBS		:=	lib/cpus/${ARCH}/aem_generic.S

ifeq (${ARCH}, aarch64)
FVP_CPU_LIBS		+=	lib/cpus/aarch64/cortex_a35.S			\
89
				lib/cpus/aarch64/cortex_a53.S			\
90
				lib/cpus/aarch64/cortex_a55.S			\
91
				lib/cpus/aarch64/cortex_a57.S			\
92
				lib/cpus/aarch64/cortex_a72.S			\
93
94
				lib/cpus/aarch64/cortex_a73.S			\
				lib/cpus/aarch64/cortex_a75.S
95
96
else
FVP_CPU_LIBS		+=	lib/cpus/aarch32/cortex_a32.S
97
endif
98
99

BL1_SOURCES		+=	drivers/io/io_semihosting.c			\
100
				lib/semihosting/semihosting.c			\
101
102
				lib/semihosting/${ARCH}/semihosting_call.S	\
				plat/arm/board/fvp/${ARCH}/fvp_helpers.S	\
103
				plat/arm/board/fvp/fvp_bl1_setup.c		\
104
				plat/arm/board/fvp/fvp_err.c			\
105
				plat/arm/board/fvp/fvp_io_storage.c		\
106
				plat/arm/board/fvp/fvp_trusted_boot.c		\
107
108
109
				${FVP_CPU_LIBS}					\
				${FVP_INTERCONNECT_SOURCES}

110

111
BL2_SOURCES		+=	drivers/io/io_semihosting.c			\
Ryan Harkin's avatar
Ryan Harkin committed
112
				drivers/delay_timer/delay_timer.c		\
113
				lib/semihosting/semihosting.c			\
114
				lib/semihosting/${ARCH}/semihosting_call.S	\
115
				plat/arm/board/fvp/fvp_bl2_setup.c		\
116
				plat/arm/board/fvp/fvp_err.c			\
117
				plat/arm/board/fvp/fvp_io_storage.c		\
118
				plat/arm/board/fvp/fvp_trusted_boot.c		\
119
				${FVP_SECURITY_SOURCES}
120

121
122
123
124
125
126
ifeq (${FVP_USE_SP804_TIMER},1)
BL2_SOURCES		+=	drivers/arm/sp804/sp804_delay_timer.c
else
BL2_SOURCES		+=	drivers/delay_timer/generic_delay_timer.c
endif

127
BL2U_SOURCES		+=	plat/arm/board/fvp/fvp_bl2u_setup.c		\
128
				${FVP_SECURITY_SOURCES}
129

130
BL31_SOURCES		+=	plat/arm/board/fvp/fvp_bl31_setup.c		\
131
132
133
				plat/arm/board/fvp/fvp_pm.c			\
				plat/arm/board/fvp/fvp_topology.c		\
				plat/arm/board/fvp/aarch64/fvp_helpers.S	\
134
				plat/arm/board/fvp/drivers/pwrc/fvp_pwrc.c	\
135
				${FVP_CPU_LIBS}					\
136
				${FVP_GIC_SOURCES}				\
137
				${FVP_INTERCONNECT_SOURCES}			\
138
				${FVP_SECURITY_SOURCES}
139

140
141
142
# Disable the PSCI platform compatibility layer
ENABLE_PLAT_COMPAT	:= 	0

143
144
145
146
ifneq (${ENABLE_STACK_PROTECTOR},0)
PLAT_BL_COMMON_SOURCES	+=	plat/arm/board/fvp/fvp_stack_protector.c
endif

147
148
149
150
ifeq (${ARCH},aarch32)
    NEED_BL32 := yes
endif

151
include plat/arm/board/common/board_common.mk
152
include plat/arm/common/arm_common.mk