platform.mk 4.77 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
# Use the SP804 timer instead of the generic one
FVP_USE_SP804_TIMER	:= 0

13
14
15
16
17
18
# Default cluster count for FVP
FVP_CLUSTER_COUNT	:= 2

# Default number of threads per CPU on FVP
FVP_MAX_PE_PER_CPU	:= 1

19
20
$(eval $(call assert_boolean,FVP_USE_SP804_TIMER))
$(eval $(call add_define,FVP_USE_SP804_TIMER))
21
22
23
24

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

25
# Pass FVP_CLUSTER_COUNT to the build system.
26
$(eval $(call add_define,FVP_CLUSTER_COUNT))
27

28
29
30
# Pass FVP_MAX_PE_PER_CPU to the build system.
$(eval $(call add_define,FVP_MAX_PE_PER_CPU))

31
32
33
34
35
36
37
38
# 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
39
40
endif

41
42
$(eval $(call add_define,FVP_INTERCONNECT_DRIVER))

43
FVP_GICV3_SOURCES	:=	drivers/arm/gic/common/gic_common.c	\
44
45
46
47
				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
48
49
50
51
52
53
54

# 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
55
56
57
58
59
60
61
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)
62
63
64
  ifeq (${ARCH}, aarch32)
    $(error "GICV3 Legacy driver not supported for AArch32 build")
  endif
65
66
67
68
69
70
71
72
73
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

74
ifeq (${FVP_INTERCONNECT_DRIVER}, FVP_CCI)
75
FVP_INTERCONNECT_SOURCES	:= 	drivers/arm/cci/cci.c
76
77
78
79
80
81
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
82

83
FVP_SECURITY_SOURCES	:=	drivers/arm/tzc/tzc400.c		\
84
85
86
				plat/arm/board/fvp/fvp_security.c	\
				plat/arm/common/arm_tzc400.c

87

88
PLAT_INCLUDES		:=	-Iplat/arm/board/fvp/include
89

90

91
PLAT_BL_COMMON_SOURCES	:=	plat/arm/board/fvp/fvp_common.c
92

93
94
95
96
FVP_CPU_LIBS		:=	lib/cpus/${ARCH}/aem_generic.S

ifeq (${ARCH}, aarch64)
FVP_CPU_LIBS		+=	lib/cpus/aarch64/cortex_a35.S			\
97
				lib/cpus/aarch64/cortex_a53.S			\
98
				lib/cpus/aarch64/cortex_a55.S			\
99
				lib/cpus/aarch64/cortex_a57.S			\
100
				lib/cpus/aarch64/cortex_a72.S			\
101
102
				lib/cpus/aarch64/cortex_a73.S			\
				lib/cpus/aarch64/cortex_a75.S
103
104
else
FVP_CPU_LIBS		+=	lib/cpus/aarch32/cortex_a32.S
105
endif
106
107

BL1_SOURCES		+=	drivers/io/io_semihosting.c			\
108
				lib/semihosting/semihosting.c			\
109
110
				lib/semihosting/${ARCH}/semihosting_call.S	\
				plat/arm/board/fvp/${ARCH}/fvp_helpers.S	\
111
				plat/arm/board/fvp/fvp_bl1_setup.c		\
112
				plat/arm/board/fvp/fvp_err.c			\
113
				plat/arm/board/fvp/fvp_io_storage.c		\
114
				plat/arm/board/fvp/fvp_trusted_boot.c		\
115
116
117
				${FVP_CPU_LIBS}					\
				${FVP_INTERCONNECT_SOURCES}

118

119
BL2_SOURCES		+=	drivers/io/io_semihosting.c			\
120
				lib/semihosting/semihosting.c			\
121
				lib/semihosting/${ARCH}/semihosting_call.S	\
122
				plat/arm/board/fvp/fvp_bl2_setup.c		\
123
				plat/arm/board/fvp/fvp_err.c			\
124
				plat/arm/board/fvp/fvp_io_storage.c		\
125
				plat/arm/board/fvp/fvp_trusted_boot.c		\
126
				${FVP_SECURITY_SOURCES}
127

128
129
130
131
ifeq (${FVP_USE_SP804_TIMER},1)
BL2_SOURCES		+=	drivers/arm/sp804/sp804_delay_timer.c
endif

132
BL2U_SOURCES		+=	plat/arm/board/fvp/fvp_bl2u_setup.c		\
133
				${FVP_SECURITY_SOURCES}
134

135
136
BL31_SOURCES		+=	drivers/arm/smmu/smmu_v3.c			\
				plat/arm/board/fvp/fvp_bl31_setup.c		\
137
138
139
				plat/arm/board/fvp/fvp_pm.c			\
				plat/arm/board/fvp/fvp_topology.c		\
				plat/arm/board/fvp/aarch64/fvp_helpers.S	\
140
				plat/arm/board/fvp/drivers/pwrc/fvp_pwrc.c	\
141
				${FVP_CPU_LIBS}					\
142
				${FVP_GIC_SOURCES}				\
143
				${FVP_INTERCONNECT_SOURCES}			\
144
				${FVP_SECURITY_SOURCES}
145

146
147
148
# Disable the PSCI platform compatibility layer
ENABLE_PLAT_COMPAT	:= 	0

149
150
151
152
ifneq (${ENABLE_STACK_PROTECTOR},0)
PLAT_BL_COMMON_SOURCES	+=	plat/arm/board/fvp/fvp_stack_protector.c
endif

153
154
155
156
ifeq (${ARCH},aarch32)
    NEED_BL32 := yes
endif

157
include plat/arm/board/common/board_common.mk
158
include plat/arm/common/arm_common.mk