blob: 5940f22de670195c7302cca717e4cbd836d72195 [file] [log] [blame]
Andrew Walbrandc8ad202019-03-07 15:49:28 +00001# Copyright 2018 The Hafnium Authors.
Andrew Scull2d527c22018-11-27 14:21:08 +00002#
Andrew Walbran23417d82020-06-17 14:44:22 +01003# Use of this source code is governed by a BSD-style
4# license that can be found in the LICENSE file or at
5# https://opensource.org/licenses/BSD-3-Clause.
Andrew Scull2d527c22018-11-27 14:21:08 +00006
7import("//build/toolchain/embedded.gni")
8import("//build/toolchain/host.gni")
9
Olivier Deprez7e645932023-11-06 09:49:05 +010010group("aem_v8a_fvp_vhe") {
11 deps = [ "//src:hafnium(:aem_v8a_fvp_vhe_clang)" ]
12}
13
Karl Meakin7a6b1352025-03-04 17:54:37 +000014group("aem_v8a_fvp_vhe_ffa_v1_1") {
15 deps = [ "//src:hafnium(:aem_v8a_fvp_vhe_ffa_v1_1_clang)" ]
16}
17
Olivier Deprez7e645932023-11-06 09:49:05 +010018group("qemu_aarch64_vhe") {
19 deps = [ "//src:hafnium(:qemu_aarch64_vhe_clang)" ]
20}
21
22group("rpi4") {
23 deps = [ "//src:hafnium(:rpi4_clang)" ]
24}
25
26group("secure_aem_v8a_fvp_vhe") {
27 deps = [ "//src:hafnium(:secure_aem_v8a_fvp_vhe_clang)" ]
28}
29
30group("secure_qemu_aarch64") {
31 deps = [ "//src:hafnium(:secure_qemu_aarch64_clang)" ]
32}
33
34group("secure_tc") {
35 deps = [ "//src:hafnium(:secure_tc_clang)" ]
36}
37
Jerry Wang11129b92024-10-22 09:47:08 +010038group("secure_rd_v3") {
39 deps = [ "//src:hafnium(:secure_rd_v3_clang)" ]
Olivier Deprez7e645932023-11-06 09:49:05 +010040}
41
Jerry Wang11129b92024-10-22 09:47:08 +010042group("secure_rd_v3_cfg1") {
43 deps = [ "//src:hafnium(:secure_rd_v3_cfg1_clang)" ]
Jerry Wang49371572023-11-30 09:42:36 +000044}
45
Andrew Scull2d527c22018-11-27 14:21:08 +000046group("root") {
47 deps = [
Olivier Deprez7e645932023-11-06 09:49:05 +010048 ":aem_v8a_fvp_vhe",
Karl Meakin7a6b1352025-03-04 17:54:37 +000049 ":aem_v8a_fvp_vhe_ffa_v1_1",
Olivier Deprez7e645932023-11-06 09:49:05 +010050 ":qemu_aarch64_vhe",
51 ":rpi4",
52 ":secure_aem_v8a_fvp_vhe",
53 ":secure_qemu_aarch64",
Jerry Wang11129b92024-10-22 09:47:08 +010054 ":secure_rd_v3",
55 ":secure_rd_v3_cfg1",
Olivier Deprez7e645932023-11-06 09:49:05 +010056 ":secure_tc",
Raghu Krishnamurthye0ede852021-12-04 14:29:57 -080057 "//src/arch/aarch64/qemuloader:bl(:qemu_aarch64_vhe_clang)",
Andrew Scull2d527c22018-11-27 14:21:08 +000058 ]
59}
60
61group("test_root") {
62 testonly = true
63
64 deps = [
65 "//src:unit_tests(:host_fake_clang)",
Raghu Krishnamurthy8e680992021-06-15 20:19:47 -070066 "//test/arch(:aem_v8a_fvp_vhe_clang)",
Karl Meakin7a6b1352025-03-04 17:54:37 +000067 "//test/arch(:aem_v8a_fvp_vhe_ffa_v1_1_clang)",
Raghu Krishnamurthy8e680992021-06-15 20:19:47 -070068 "//test/arch(:qemu_aarch64_vhe_clang)",
David Brazdil3d7b88b2019-07-22 17:19:35 +010069 "//test/arch(:rpi4_clang)",
Olivier Deprezacd0a4e2022-02-23 09:31:21 +010070 "//test/vmapi:partitions(:secure_aem_v8a_fvp_vhe_vm_clang)",
Karl Meakin7a6b1352025-03-04 17:54:37 +000071 "//test/vmapi(:aem_v8a_fvp_vhe_ffa_v1_1_vm_clang)",
Raghu Krishnamurthy8e680992021-06-15 20:19:47 -070072 "//test/vmapi(:aem_v8a_fvp_vhe_vm_clang)",
Raghu Krishnamurthy8e680992021-06-15 20:19:47 -070073 "//test/vmapi(:qemu_aarch64_vhe_vm_clang)",
Andrew Walbran3eeaa402019-11-01 14:48:29 +000074 "//test/vmapi(:rpi4_vm_clang)",
Raghu Krishnamurthy8e680992021-06-15 20:19:47 -070075 "//test/vmapi/arch/aarch64/gicv3:gicv3_test(:aem_v8a_fvp_vhe_vm_clang)",
Raghu Krishnamurthy8e680992021-06-15 20:19:47 -070076 "//test/vmapi/arch/aarch64/gicv3:gicv3_test(:qemu_aarch64_vhe_vm_clang)",
Andrew Scull2d527c22018-11-27 14:21:08 +000077 ]
78}
79
80# Describe each of the platforms used in this project.
81
82host_toolchain("host_fake") {
83 use_platform = true
Andrew Walbranbc737c42018-12-07 14:24:16 +000084 heap_pages = 60
Andrew Scull2d527c22018-11-27 14:21:08 +000085 max_cpus = 4
86 max_vms = 6
87}
88
Nishant Sharma74e645a2023-08-10 18:37:51 +010089# RD (Reference Design) is a collection of resources to provide a representative
90# view of typical compute subsystems that can be designed and implemented using
Jerry Wang11129b92024-10-22 09:47:08 +010091# specific generations of Arm IP. RD-V3 is the first RD platform with Realm
Nishant Sharma74e645a2023-08-10 18:37:51 +010092# Management Extension (RME) support.
93# For more information please refer:
Jerry Wang11129b92024-10-22 09:47:08 +010094# https://neoverse-reference-design.docs.arm.com/en/latest/platforms/rdv3.html
95aarch64_toolchains("secure_rd_v3") {
Nishant Sharma74e645a2023-08-10 18:37:51 +010096 cpu = "cortex-a57"
97 origin_address = "0xF9000000"
98 boot_flow = "//src/boot_flow:spmc"
99 console = "//src/arch/aarch64/pl011"
100 iommu = "//src/iommu:absent"
J-Alves57f5a662023-11-08 12:10:49 +0000101 memory_protect = "//src/arch/aarch64/memory_protect:memory_protect"
Nishant Sharma74e645a2023-08-10 18:37:51 +0100102 gic_version = 4
103 gicd_base_address = "0x30000000"
104 gicr_base_address = "0x301C0000"
105 gicr_frames = 16
106 heap_pages = 180
107 max_cpus = 16
108 max_vms = 16
109 toolchain_args = {
Karl Meakin51e484e2024-11-28 13:38:16 +0000110 ffa_role = "//src/ffa:spmc"
Nishant Sharma74e645a2023-08-10 18:37:51 +0100111 plat_psci = "//src/arch/aarch64/plat/psci:spmc"
112 plat_interrupts = "//src/arch/aarch64/plat/interrupts:gicv3"
113 secure_world = "1"
114 pl011_base_address = "0x2A410000"
115 enable_mte = "1"
116 plat_log_level = "LOG_LEVEL_INFO"
117 plat_num_virtual_interrupts_ids = 1024
118 }
119}
120
Jerry Wang11129b92024-10-22 09:47:08 +0100121aarch64_toolchains("secure_rd_v3_cfg1") {
Jerry Wang49371572023-11-30 09:42:36 +0000122 cpu = "cortex-a57"
123 origin_address = "0xF9000000"
124 boot_flow = "//src/boot_flow:spmc"
125 console = "//src/arch/aarch64/pl011"
126 iommu = "//src/iommu:absent"
J-Alves57f5a662023-11-08 12:10:49 +0000127 memory_protect = "//src/arch/aarch64/memory_protect:memory_protect"
Jerry Wang49371572023-11-30 09:42:36 +0000128 gic_version = 4
129 gicd_base_address = "0x30000000"
130 gicr_base_address = "0x30100000"
131 gicr_frames = 8
132 heap_pages = 180
133 max_cpus = 8
134 max_vms = 8
135 toolchain_args = {
Karl Meakin51e484e2024-11-28 13:38:16 +0000136 ffa_role = "//src/ffa:spmc"
Jerry Wang49371572023-11-30 09:42:36 +0000137 plat_psci = "//src/arch/aarch64/plat/psci:spmc"
138 plat_interrupts = "//src/arch/aarch64/plat/interrupts:gicv3"
139 secure_world = "1"
140 pl011_base_address = "0x2A410000"
141 enable_mte = "1"
142 plat_log_level = "LOG_LEVEL_INFO"
143 plat_num_virtual_interrupts_ids = 1024
144 }
145}
146
Raghu Krishnamurthy8e680992021-06-15 20:19:47 -0700147aarch64_toolchains("secure_aem_v8a_fvp_vhe") {
148 cpu = "cortex-a57"
149 origin_address = "0x06000000"
150 boot_flow = "//src/boot_flow:spmc"
151 console = "//src/arch/aarch64/pl011"
152 iommu = "//src/arch/aarch64/arm_smmuv3"
J-Alves57f5a662023-11-08 12:10:49 +0000153 memory_protect = "//src/arch/aarch64/memory_protect:memory_protect"
Raghu Krishnamurthy8e680992021-06-15 20:19:47 -0700154 gic_version = 3
Madhukar Pappireddy48050f52023-08-29 13:52:33 -0500155 gic_enable_espi = 1
Raghu Krishnamurthy8e680992021-06-15 20:19:47 -0700156 gicd_base_address = "0x2f000000"
157 gicr_base_address = "0x2f100000"
Varun Wadekarfa4b3ac2022-02-14 17:19:18 +0000158 gicr_frames = 8
Raghu Krishnamurthyf8956392022-09-20 09:51:05 -0700159 heap_pages = 180
Raghu Krishnamurthy8e680992021-06-15 20:19:47 -0700160 max_cpus = 8
161 max_vms = 16
Raghu Krishnamurthy510aa3e2021-11-28 07:20:45 -0800162 branch_protection = "standard"
Raghu Krishnamurthy8e680992021-06-15 20:19:47 -0700163 toolchain_args = {
Karl Meakin51e484e2024-11-28 13:38:16 +0000164 ffa_role = "//src/ffa:spmc"
Raghu Krishnamurthy8e680992021-06-15 20:19:47 -0700165 plat_psci = "//src/arch/aarch64/plat/psci:spmc"
166 plat_interrupts = "//src/arch/aarch64/plat/interrupts:gicv3"
Raghu Krishnamurthy8e680992021-06-15 20:19:47 -0700167 secure_world = "1"
168 pl011_base_address = "0x1c090000"
Raghu Krishnamurthy8e680992021-06-15 20:19:47 -0700169 smmu_base_address = "0x2b400000"
170 smmu_memory_size = "0x100000"
Maksims Svecovsc3cda252021-09-30 12:20:11 +0100171 enable_mte = "1"
Varun Wadekar4cba5e42022-09-29 17:39:14 +0100172 plat_log_level = "LOG_LEVEL_INFO"
Madhukar Pappireddy48050f52023-08-29 13:52:33 -0500173 plat_num_virtual_interrupts_ids = 5120
Madhukar Pappireddy47b58482023-10-11 16:02:05 -0500174 plat_partition_max_dma_devices = 1
Raghu Krishnamurthy8e680992021-06-15 20:19:47 -0700175 }
176}
177
Raghu Krishnamurthy8e680992021-06-15 20:19:47 -0700178aarch64_toolchains("aem_v8a_fvp_vhe") {
179 cpu = "cortex-a57"
180 origin_address = "0x80000000"
181 boot_flow = "//src/boot_flow:linux"
J-Alves57f5a662023-11-08 12:10:49 +0000182 memory_protect = "//src/memory_protect:absent"
Raghu Krishnamurthy8e680992021-06-15 20:19:47 -0700183 console = "//src/arch/aarch64/pl011"
184 iommu = "//src/arch/aarch64/arm_smmuv3"
185 gic_version = 3
186 gicd_base_address = "0x2f000000"
187 gicr_base_address = "0x2f100000"
Varun Wadekarfa4b3ac2022-02-14 17:19:18 +0000188 gicr_frames = 8
Raghu Krishnamurthyf8956392022-09-20 09:51:05 -0700189 heap_pages = 180
Raghu Krishnamurthy8e680992021-06-15 20:19:47 -0700190 max_cpus = 8
191 max_vms = 16
Raghu Krishnamurthy510aa3e2021-11-28 07:20:45 -0800192 branch_protection = "standard"
Raghu Krishnamurthy8e680992021-06-15 20:19:47 -0700193 toolchain_args = {
Karl Meakin51e484e2024-11-28 13:38:16 +0000194 ffa_role = "//src/ffa:hypervisor"
Raghu Krishnamurthy8e680992021-06-15 20:19:47 -0700195 pl011_base_address = "0x1c090000"
196 smmu_base_address = "0x2b400000"
197 smmu_memory_size = "0x100000"
Varun Wadekar4cba5e42022-09-29 17:39:14 +0100198 plat_log_level = "LOG_LEVEL_INFO"
Raghu Krishnamurthy8e680992021-06-15 20:19:47 -0700199 }
200}
201
Karl Meakin7a6b1352025-03-04 17:54:37 +0000202aarch64_toolchains("aem_v8a_fvp_vhe_ffa_v1_1") {
203 cpu = "cortex-a57"
204 origin_address = "0x80000000"
205 boot_flow = "//src/boot_flow:linux"
206 memory_protect = "//src/memory_protect:absent"
207 console = "//src/arch/aarch64/pl011"
208 iommu = "//src/arch/aarch64/arm_smmuv3"
209 gic_version = 3
210 gicd_base_address = "0x2f000000"
211 gicr_base_address = "0x2f100000"
212 gicr_frames = 8
213 heap_pages = 180
214 max_cpus = 8
215 max_vms = 16
216 branch_protection = "standard"
217 toolchain_args = {
218 ffa_version = "0x10001"
219 ffa_role = "//src/ffa:hypervisor"
220 pl011_base_address = "0x1c090000"
221 smmu_base_address = "0x2b400000"
222 smmu_memory_size = "0x100000"
223 plat_log_level = "LOG_LEVEL_INFO"
224 }
225}
226
Raghu Krishnamurthy8e680992021-06-15 20:19:47 -0700227aarch64_toolchains("qemu_aarch64_vhe") {
228 cpu = "cortex-a57"
229 origin_address = "0x40001000"
230 boot_flow = "//src/boot_flow:linux"
231 console = "//src/arch/aarch64/pl011"
232 iommu = "//src/iommu:absent"
J-Alves57f5a662023-11-08 12:10:49 +0000233 memory_protect = "//src/memory_protect:absent"
Raghu Krishnamurthy8e680992021-06-15 20:19:47 -0700234 gic_version = 3
235 gicd_base_address = "0x08000000"
236 gicr_base_address = "0x080A0000"
Varun Wadekarfa4b3ac2022-02-14 17:19:18 +0000237 gicr_frames = 8
Raghu Krishnamurthyf8956392022-09-20 09:51:05 -0700238 heap_pages = 180
Raghu Krishnamurthy8e680992021-06-15 20:19:47 -0700239 max_cpus = 8
240 max_vms = 16
241 toolchain_args = {
Karl Meakin51e484e2024-11-28 13:38:16 +0000242 ffa_role = "//src/ffa:hypervisor"
Raghu Krishnamurthy8e680992021-06-15 20:19:47 -0700243 pl011_base_address = "0x09000000"
Varun Wadekar4cba5e42022-09-29 17:39:14 +0100244 plat_log_level = "LOG_LEVEL_INFO"
Raghu Krishnamurthy8e680992021-06-15 20:19:47 -0700245 }
246}
247
Olivier Deprezf17c61e2023-01-30 13:50:25 +0100248aarch64_toolchains("secure_qemu_aarch64") {
249 cpu = "cortex-a57"
250 origin_address = "0xe100000"
J-Alves57f5a662023-11-08 12:10:49 +0000251 memory_protect = "//src/memory_protect:absent"
Olivier Deprezf17c61e2023-01-30 13:50:25 +0100252 boot_flow = "//src/boot_flow:spmc"
253 console = "//src/arch/aarch64/pl011"
254 iommu = "//src/iommu:absent"
255 gic_version = 3
256 gicd_base_address = "0x08000000"
257 gicr_base_address = "0x080A0000"
258 gicr_frames = 8
259 heap_pages = 180
260 max_cpus = 8
261 max_vms = 16
262 branch_protection = "standard"
263 toolchain_args = {
Karl Meakin51e484e2024-11-28 13:38:16 +0000264 ffa_role = "//src/ffa:spmc"
Olivier Deprezf17c61e2023-01-30 13:50:25 +0100265 plat_psci = "//src/arch/aarch64/plat/psci:spmc"
266 plat_interrupts = "//src/arch/aarch64/plat/interrupts:gicv3"
267 secure_world = "1"
268 pl011_base_address = "0x09000000"
269 hftest_ctrl = "//test/hftest:ctrl_uart"
Olivier Deprezf17c61e2023-01-30 13:50:25 +0100270 enable_mte = "1"
271 plat_log_level = "LOG_LEVEL_INFO"
Madhukar Pappireddyffbe2e22023-02-02 17:45:30 -0600272 plat_num_virtual_interrupts_ids = 1024
Olivier Deprezf17c61e2023-01-30 13:50:25 +0100273 }
274}
275
David Brazdil3d7b88b2019-07-22 17:19:35 +0100276aarch64_toolchains("rpi4") {
277 cpu = "cortex-a72"
278 origin_address = "0x80000"
279 boot_flow = "//src/boot_flow:linux"
Olivier Depreza7015472023-10-16 20:17:50 +0200280 console = "//project/reference/rpi4:mini_uart"
J-Alves57f5a662023-11-08 12:10:49 +0000281 memory_protect = "//src/memory_protect:absent"
Andrew Sculle2a525d2019-12-02 12:56:06 +0000282 iommu = "//src/iommu:absent"
David Brazdil3d7b88b2019-07-22 17:19:35 +0100283 gic_version = 2
Raghu Krishnamurthyf8956392022-09-20 09:51:05 -0700284 heap_pages = 180
David Brazdil3d7b88b2019-07-22 17:19:35 +0100285 max_cpus = 4
286 max_vms = 16
287 toolchain_args = {
Karl Meakin51e484e2024-11-28 13:38:16 +0000288 ffa_role = "//src/ffa:hypervisor"
David Brazdil3d7b88b2019-07-22 17:19:35 +0100289 gpio_base_address = "0xfe200000"
290 aux_base_address = "0xfe215000"
291 core_freq_mhz = 500
David Brazdilb38816f2020-01-31 16:31:10 +0000292 hftest_ctrl = "//test/hftest:ctrl_uart"
Varun Wadekar4cba5e42022-09-29 17:39:14 +0100293 plat_log_level = "LOG_LEVEL_INFO"
David Brazdil3d7b88b2019-07-22 17:19:35 +0100294 }
295}
David Brazdilc702a032020-01-31 15:44:11 +0000296
Olivier Deprezb5ebdd72023-11-08 12:48:20 +0100297# The Total Compute platform provides an envelope for Arm's latest client IPs.
298# Release notes and user manual for the open source software stack targeting
299# the Total Compute Fixed Virtual Platform (FVP) are found here:
300# https://totalcompute.docs.arm.com/en/latest/
Usama Ariff0996a52021-08-09 14:28:30 +0100301aarch64_toolchains("secure_tc") {
Arunachalam Ganapathyf20727f2020-04-28 20:23:13 +0100302 cpu = "cortex-a57"
303 origin_address = "0xfd000000"
Olivier Deprez59e35f72020-11-10 17:15:18 +0100304 boot_flow = "//src/boot_flow:spmc"
Arunachalam Ganapathyf20727f2020-04-28 20:23:13 +0100305 console = "//src/arch/aarch64/pl011"
306 iommu = "//src/iommu:absent"
J-Alves57f5a662023-11-08 12:10:49 +0000307 memory_protect = "//src/memory_protect:absent"
Madhukar Pappireddy89ee8cc2021-10-29 10:03:18 -0500308 gic_version = 4
Arunachalam Ganapathyf20727f2020-04-28 20:23:13 +0100309 gicd_base_address = "0x30000000"
Usama Arif2c636ff2021-04-01 11:09:25 +0100310 gicr_base_address = "0x30080000"
Varun Wadekarfa4b3ac2022-02-14 17:19:18 +0000311 gicr_frames = 8
Raghu Krishnamurthyf8956392022-09-20 09:51:05 -0700312 heap_pages = 180
Arunachalam Ganapathy51e81572021-01-20 14:57:41 +0000313 max_cpus = 8
Arunachalam Ganapathyf20727f2020-04-28 20:23:13 +0100314 max_vms = 16
Davidson K9e0329f2024-06-25 12:21:42 +0530315 branch_protection = "standard"
Arunachalam Ganapathyf20727f2020-04-28 20:23:13 +0100316 toolchain_args = {
Karl Meakin51e484e2024-11-28 13:38:16 +0000317 ffa_role = "//src/ffa:spmc"
Olivier Deprezcf039902021-01-25 15:32:39 +0100318 plat_psci = "//src/arch/aarch64/plat/psci:spmc"
Olivier Deprezcc0eb842021-04-07 14:03:59 +0200319 plat_interrupts = "//src/arch/aarch64/plat/interrupts:gicv3"
Arunachalam Ganapathyf20727f2020-04-28 20:23:13 +0100320 secure_world = "1"
annsai01c194b3a2023-02-21 14:09:29 +0000321 pl011_base_address = "0x2A410000"
Maksims Svecovsc3cda252021-09-30 12:20:11 +0100322 enable_mte = "1"
Varun Wadekar4cba5e42022-09-29 17:39:14 +0100323 plat_log_level = "LOG_LEVEL_INFO"
Madhukar Pappireddyffbe2e22023-02-02 17:45:30 -0600324 plat_num_virtual_interrupts_ids = 1024
Arunachalam Ganapathyf20727f2020-04-28 20:23:13 +0100325 }
326}