blob: 9388ec559ce6ef75d23eb955f7c17717690f6b04 [file] [log] [blame]
Sandrine Bailleux3cd87d72018-10-09 11:12:55 +02001/*
Max Shvetsov103e0562021-02-04 16:58:31 +00002 * Copyright (c) 2018-2021, Arm Limited. All rights reserved.
Sandrine Bailleux3cd87d72018-10-09 11:12:55 +02003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <assert.h>
Antonio Nino Diaz43ef3932018-07-03 14:39:47 +01008#include <errno.h>
J-Alves9f6f0142020-06-17 15:37:59 +01009#include <debug.h>
Max Shvetsov103e0562021-02-04 16:58:31 +000010
11#include <cactus_platform_def.h>
12#include <cactus_test_cmds.h>
J-Alves9f6f0142020-06-17 15:37:59 +010013#include <drivers/arm/pl011.h>
14#include <drivers/console.h>
J-Alves9f6f0142020-06-17 15:37:59 +010015#include <lib/aarch64/arch_helpers.h>
16#include <lib/xlat_tables/xlat_mmu_helpers.h>
17#include <lib/xlat_tables/xlat_tables_v2.h>
Max Shvetsov103e0562021-02-04 16:58:31 +000018#include <plat_arm.h>
19#include <plat/common/platform.h>
20#include <platform_def.h>
J-Alves5aecd982020-06-11 10:25:33 +010021#include <sp_helpers.h>
J-Alves9f6f0142020-06-17 15:37:59 +010022#include <std_svc.h>
Olivier Deprezafcdb7c2019-11-29 14:21:48 +010023
Max Shvetsov103e0562021-02-04 16:58:31 +000024#include "cactus_def.h"
25#include "cactus_tests.h"
26#include "cactus.h"
J-Alves63cdaa72020-10-08 17:22:45 +010027
Sandrine Bailleux3cd87d72018-10-09 11:12:55 +020028/* Host machine information injected by the build system in the ELF file. */
29extern const char build_message[];
30extern const char version_string[];
31
J-Alvesd8edeed2020-11-18 10:48:12 +000032/* Memory section to be used for memory share operations */
33static __aligned(PAGE_SIZE) uint8_t share_page[PAGE_SIZE];
34
Olivier Deprezafcdb7c2019-11-29 14:21:48 +010035/*
36 *
37 * Message loop function
38 * Notice we cannot use regular print functions because this serves to both
39 * "primary" and "secondary" VMs. Secondary VM cannot access UART directly
40 * but rather through Hafnium print hypercall.
41 *
42 */
J-Alves63cdaa72020-10-08 17:22:45 +010043static void __dead2 message_loop(ffa_vm_id_t vm_id, struct mailbox_buffers *mb)
Olivier Deprezafcdb7c2019-11-29 14:21:48 +010044{
J-Alves7581c382020-05-07 18:34:20 +010045 smc_ret_values ffa_ret;
Olivier Deprezafcdb7c2019-11-29 14:21:48 +010046 uint32_t sp_response;
J-Alves63cdaa72020-10-08 17:22:45 +010047 ffa_vm_id_t source;
J-Alvesda6ac322020-11-09 15:45:30 +000048 ffa_vm_id_t destination;
J-Alves1d203f12020-11-11 11:38:49 +000049 uint64_t cactus_cmd;
50
Olivier Deprezafcdb7c2019-11-29 14:21:48 +010051 /*
J-Alves63cdaa72020-10-08 17:22:45 +010052 * This initial wait call is necessary to inform SPMD that
53 * SP initialization has completed. It blocks until receiving
54 * a direct message request.
55 */
56
J-Alves7581c382020-05-07 18:34:20 +010057 ffa_ret = ffa_msg_wait();
Olivier Deprezafcdb7c2019-11-29 14:21:48 +010058
59 for (;;) {
J-Alves6cb21d92021-01-07 15:18:12 +000060 VERBOSE("Woke up with func id: %x\n", ffa_func_id(ffa_ret));
Olivier Deprezafcdb7c2019-11-29 14:21:48 +010061
J-Alves6cb21d92021-01-07 15:18:12 +000062 if (ffa_func_id(ffa_ret) == FFA_ERROR) {
63 ERROR("Error: %x\n", ffa_error_code(ffa_ret));
J-Alvesda6ac322020-11-09 15:45:30 +000064 break;
65 }
66
J-Alves6cb21d92021-01-07 15:18:12 +000067 if (ffa_func_id(ffa_ret) != FFA_MSG_SEND_DIRECT_REQ_SMC32 &&
68 ffa_func_id(ffa_ret) != FFA_MSG_SEND_DIRECT_REQ_SMC64) {
69 ERROR("%s(%u) unknown func id 0x%x\n",
70 __func__, vm_id, ffa_func_id(ffa_ret));
Olivier Deprez73d81cf2020-09-15 16:57:00 +020071 break;
Olivier Deprezafcdb7c2019-11-29 14:21:48 +010072 }
73
J-Alves6cb21d92021-01-07 15:18:12 +000074 destination = ffa_dir_msg_dest(ffa_ret);
J-Alvesda6ac322020-11-09 15:45:30 +000075
J-Alves6cb21d92021-01-07 15:18:12 +000076 source = ffa_dir_msg_source(ffa_ret);
J-Alvesda6ac322020-11-09 15:45:30 +000077
78 if (destination != vm_id) {
J-Alves6cb21d92021-01-07 15:18:12 +000079 ERROR("%s(%u) invalid vm id 0x%x\n",
80 __func__, vm_id, destination);
Olivier Deprez73d81cf2020-09-15 16:57:00 +020081 break;
Olivier Deprezafcdb7c2019-11-29 14:21:48 +010082 }
Olivier Deprezafcdb7c2019-11-29 14:21:48 +010083
J-Alves63cdaa72020-10-08 17:22:45 +010084 PRINT_CMD(ffa_ret);
Olivier Deprezafcdb7c2019-11-29 14:21:48 +010085
J-Alves53392012020-11-18 14:51:57 +000086 cactus_cmd = cactus_get_cmd(ffa_ret);
J-Alves1d203f12020-11-11 11:38:49 +000087
88 switch (cactus_cmd) {
J-Alvesb9085f82020-12-07 10:57:28 +000089 case CACTUS_MEM_SEND_CMD:
J-Alves63cdaa72020-10-08 17:22:45 +010090 ffa_memory_management_test(
91 mb, vm_id, source,
J-Alves53392012020-11-18 14:51:57 +000092 cactus_req_mem_send_get_mem_func(
93 ffa_ret),
94 cactus_mem_send_get_handle(ffa_ret));
J-Alves63cdaa72020-10-08 17:22:45 +010095
96 /*
97 * If execution gets to this point means all operations
98 * with memory retrieval went well, as such replying
99 */
J-Alves7d28b332021-02-11 16:08:08 +0000100 ffa_ret = cactus_success_resp(vm_id, source, 0);
J-Alves63cdaa72020-10-08 17:22:45 +0100101 break;
J-Alvesd8edeed2020-11-18 10:48:12 +0000102 case CACTUS_REQ_MEM_SEND_CMD:
103 {
104 uint32_t mem_func =
J-Alves53392012020-11-18 14:51:57 +0000105 cactus_req_mem_send_get_mem_func(ffa_ret);
J-Alvesd8edeed2020-11-18 10:48:12 +0000106 ffa_vm_id_t receiver =
J-Alves53392012020-11-18 14:51:57 +0000107 cactus_req_mem_send_get_receiver(ffa_ret);
J-Alvesd8edeed2020-11-18 10:48:12 +0000108 ffa_memory_handle_t handle;
J-Alvesda6ac322020-11-09 15:45:30 +0000109
J-Alvesd8edeed2020-11-18 10:48:12 +0000110 VERBOSE("%x requested to send memory to %x (func: %x)\n",
111 source, receiver, mem_func);
112
113 const struct ffa_memory_region_constituent
114 constituents[] = {
115 {(void *)share_page, 1, 0}
116 };
117
118 const uint32_t constituents_count = (
119 sizeof(constituents) /
120 sizeof(constituents[0])
121 );
122
123 handle = ffa_memory_init_and_send(
124 (struct ffa_memory_region *)mb->send, PAGE_SIZE,
125 vm_id, receiver, constituents,
126 constituents_count, mem_func);
127
128 /*
129 * If returned an invalid handle, we should break the
130 * test.
131 */
132 expect(handle != FFA_MEMORY_HANDLE_INVALID, true);
133
J-Alves53392012020-11-18 14:51:57 +0000134 ffa_ret = cactus_mem_send_cmd(vm_id, receiver, mem_func,
135 handle);
J-Alvesd8edeed2020-11-18 10:48:12 +0000136
J-Alves06373c52021-02-11 15:17:42 +0000137 if (!is_ffa_direct_response(ffa_ret)) {
J-Alves6cb21d92021-01-07 15:18:12 +0000138 ERROR("Failed to send message. error: %x\n",
139 ffa_error_code(ffa_ret));
J-Alves7d28b332021-02-11 16:08:08 +0000140 ffa_ret = cactus_error_resp(vm_id, source, 0);
J-Alvesd8edeed2020-11-18 10:48:12 +0000141 break;
142 }
143
144 /* If anything went bad on the receiver's end. */
J-Alves53392012020-11-18 14:51:57 +0000145 if (cactus_get_response(ffa_ret) == CACTUS_ERROR) {
J-Alvesd8edeed2020-11-18 10:48:12 +0000146 ERROR("Received error from receiver!\n");
J-Alves7d28b332021-02-11 16:08:08 +0000147 ffa_ret = cactus_error_resp(vm_id, source, 0);
J-Alvesd8edeed2020-11-18 10:48:12 +0000148 break;
149 }
150
151 if (mem_func != FFA_MEM_DONATE_SMC32) {
152 /*
153 * Do a memory reclaim only if the mem_func
154 * regards to memory share or lend operations,
155 * as with a donate the owner is permanently
156 * given up access to the memory region.
157 */
158 if (ffa_mem_reclaim(handle, 0)
159 .ret0 == FFA_ERROR) {
160 ERROR("Failed to reclaim memory!\n");
J-Alves53392012020-11-18 14:51:57 +0000161 ffa_ret = cactus_error_resp(vm_id,
J-Alves7d28b332021-02-11 16:08:08 +0000162 source, 0);
J-Alvesd8edeed2020-11-18 10:48:12 +0000163 break;
164 }
165
166 /**
167 * Read Content that has been written to memory
168 * to validate access to memory segment has been
169 * reestablished, and receiver made use of
170 * memory region.
171 */
172 #if (LOG_LEVEL >= LOG_LEVEL_VERBOSE)
173 uint32_t *ptr =
174 (uint32_t *)constituents
175 ->address;
176 VERBOSE("Memory contents after receiver"
177 " SP's use:\n");
178 for (unsigned int i = 0U; i < 5U; i++)
179 VERBOSE(" %u: %x\n", i,
180 ptr[i]);
181 #endif
182 }
183
J-Alves7d28b332021-02-11 16:08:08 +0000184 ffa_ret = cactus_success_resp(vm_id, source, 0);
J-Alves53392012020-11-18 14:51:57 +0000185 break;
J-Alvesd8edeed2020-11-18 10:48:12 +0000186 }
J-Alvesda6ac322020-11-09 15:45:30 +0000187 case CACTUS_ECHO_CMD:
188 {
J-Alves53392012020-11-18 14:51:57 +0000189 uint64_t echo_val = cactus_echo_get_val(ffa_ret);
J-Alvesda6ac322020-11-09 15:45:30 +0000190
J-Alves6cb21d92021-01-07 15:18:12 +0000191 VERBOSE("Received echo at %x, value %llx from %x.\n",
192 destination, echo_val, source);
193 ffa_ret = cactus_response(destination, source, echo_val);
J-Alvesda6ac322020-11-09 15:45:30 +0000194 break;
195 }
196 case CACTUS_REQ_ECHO_CMD:
197 {
198 ffa_vm_id_t echo_dest =
J-Alves53392012020-11-18 14:51:57 +0000199 cactus_req_echo_get_echo_dest(ffa_ret);
200 uint64_t echo_val = cactus_echo_get_val(ffa_ret);
J-Alvesda6ac322020-11-09 15:45:30 +0000201 bool success = true;
202
203 VERBOSE("%x requested to send echo to %x, value %llx\n",
204 source, echo_dest, echo_val);
205
J-Alves53392012020-11-18 14:51:57 +0000206 ffa_ret = cactus_echo_send_cmd(vm_id, echo_dest,
J-Alvesda6ac322020-11-09 15:45:30 +0000207 echo_val);
208
J-Alves06373c52021-02-11 15:17:42 +0000209 if (!is_ffa_direct_response(ffa_ret)) {
J-Alves6cb21d92021-01-07 15:18:12 +0000210 ERROR("Failed to send message. error: %x\n",
211 ffa_error_code(ffa_ret));
J-Alvesda6ac322020-11-09 15:45:30 +0000212 success = false;
213 }
214
J-Alves53392012020-11-18 14:51:57 +0000215 if (cactus_get_response(ffa_ret) != echo_val) {
J-Alvesda6ac322020-11-09 15:45:30 +0000216 ERROR("Echo Failed!\n");
217 success = false;
218 }
219
J-Alves7d28b332021-02-11 16:08:08 +0000220 ffa_ret = success ?
221 cactus_success_resp(vm_id, source, 0) :
222 cactus_error_resp(vm_id, source, 0);
J-Alvesda6ac322020-11-09 15:45:30 +0000223 break;
224 }
J-Alves1d203f12020-11-11 11:38:49 +0000225 case CACTUS_DEADLOCK_CMD:
226 case CACTUS_REQ_DEADLOCK_CMD:
227 {
228 ffa_vm_id_t deadlock_dest =
J-Alves53392012020-11-18 14:51:57 +0000229 cactus_deadlock_get_next_dest(ffa_ret);
J-Alves1d203f12020-11-11 11:38:49 +0000230 ffa_vm_id_t deadlock_next_dest = source;
231
232 if (cactus_cmd == CACTUS_DEADLOCK_CMD) {
233 VERBOSE("%x is creating deadlock. next: %x\n",
234 source, deadlock_dest);
235 } else if (cactus_cmd == CACTUS_REQ_DEADLOCK_CMD) {
236 VERBOSE(
237 "%x requested deadlock with %x and %x\n",
238 source, deadlock_dest, deadlock_next_dest);
239
240 deadlock_next_dest =
J-Alves53392012020-11-18 14:51:57 +0000241 cactus_deadlock_get_next_dest2(ffa_ret);
J-Alves1d203f12020-11-11 11:38:49 +0000242 }
243
J-Alves53392012020-11-18 14:51:57 +0000244 ffa_ret = cactus_deadlock_send_cmd(vm_id, deadlock_dest,
J-Alves1d203f12020-11-11 11:38:49 +0000245 deadlock_next_dest);
246
247 /*
248 * Should be true for the last partition to attempt
249 * an FF-A direct message, to the first partition.
250 */
251 bool is_deadlock_detected =
J-Alves6cb21d92021-01-07 15:18:12 +0000252 (ffa_func_id(ffa_ret) == FFA_ERROR) &&
253 (ffa_error_code(ffa_ret) == FFA_ERROR_BUSY);
J-Alves1d203f12020-11-11 11:38:49 +0000254
255 /*
256 * Should be true after the deadlock has been detected
257 * and after the first response has been sent down the
258 * request chain.
259 */
260 bool is_returning_from_deadlock =
J-Alves06373c52021-02-11 15:17:42 +0000261 (is_ffa_direct_response(ffa_ret))
J-Alves53392012020-11-18 14:51:57 +0000262 &&
263 (cactus_get_response(ffa_ret) == CACTUS_SUCCESS);
J-Alves1d203f12020-11-11 11:38:49 +0000264
265 if (is_deadlock_detected) {
J-Alves6cb21d92021-01-07 15:18:12 +0000266 NOTICE("Attempting dealock but got error %x\n",
267 ffa_error_code(ffa_ret));
J-Alves1d203f12020-11-11 11:38:49 +0000268 }
269
270 if (is_deadlock_detected ||
271 is_returning_from_deadlock) {
272 /*
273 * This is not the partition, that would have
274 * created the deadlock. As such, reply back
275 * to the partitions.
276 */
J-Alves7d28b332021-02-11 16:08:08 +0000277 ffa_ret = cactus_success_resp(vm_id, source, 0);
J-Alves1d203f12020-11-11 11:38:49 +0000278 break;
279 }
280
281 /* Shouldn't get to this point */
282 ERROR("Deadlock test went wrong!\n");
J-Alves7d28b332021-02-11 16:08:08 +0000283 ffa_ret = cactus_error_resp(vm_id, source, 0);
J-Alves1d203f12020-11-11 11:38:49 +0000284 break;
285 }
Olivier Deprez881b1992020-12-01 15:34:34 +0100286 case CACTUS_REQ_SIMD_FILL_CMD:
287 fill_simd_vectors();
J-Alves7d28b332021-02-11 16:08:08 +0000288 ffa_ret = cactus_success_resp(vm_id, source, 0);
Olivier Deprez881b1992020-12-01 15:34:34 +0100289 break;
J-Alves63cdaa72020-10-08 17:22:45 +0100290 default:
291 /*
292 * Currently direct message test is handled here.
293 * TODO: create a case within the switch case
294 * For the sake of testing, add the vm id to the
295 * received message.
296 */
J-Alves63cdaa72020-10-08 17:22:45 +0100297 sp_response = ffa_ret.ret3 | vm_id;
Olivier Deprezaed7f082020-11-04 15:11:59 +0100298 VERBOSE("Replying with direct message response: %x\n", sp_response);
J-Alves63cdaa72020-10-08 17:22:45 +0100299 ffa_ret = ffa_msg_send_direct_resp(vm_id,
300 HYP_ID,
301 sp_response);
302
303 break;
304 }
Olivier Deprezafcdb7c2019-11-29 14:21:48 +0100305 }
Olivier Deprez73d81cf2020-09-15 16:57:00 +0200306
307 panic();
Olivier Deprezafcdb7c2019-11-29 14:21:48 +0100308}
309
310static const mmap_region_t cactus_mmap[] __attribute__((used)) = {
Arunachalam Ganapathy51be1fe2020-09-22 13:25:21 +0100311 /* PLAT_ARM_DEVICE0 area includes UART2 necessary to console */
312 MAP_REGION_FLAT(PLAT_ARM_DEVICE0_BASE, PLAT_ARM_DEVICE0_SIZE,
313 MT_DEVICE | MT_RW),
Olivier Deprezafcdb7c2019-11-29 14:21:48 +0100314 {0}
315};
316
Manish Pandey26c6f812020-04-30 11:43:00 +0100317static void cactus_print_memory_layout(unsigned int vm_id)
Sandrine Bailleux3cd87d72018-10-09 11:12:55 +0200318{
Olivier Deprezaed7f082020-11-04 15:11:59 +0100319 INFO("Secure Partition memory layout:\n");
Sandrine Bailleux3cd87d72018-10-09 11:12:55 +0200320
Olivier Deprezaed7f082020-11-04 15:11:59 +0100321 INFO(" Text region : %p - %p\n",
Antonio Nino Diaz1486f3b2018-06-26 10:30:10 +0100322 (void *)CACTUS_TEXT_START, (void *)CACTUS_TEXT_END);
Manish Pandey26c6f812020-04-30 11:43:00 +0100323
Olivier Deprezaed7f082020-11-04 15:11:59 +0100324 INFO(" Read-only data region : %p - %p\n",
Antonio Nino Diaz1486f3b2018-06-26 10:30:10 +0100325 (void *)CACTUS_RODATA_START, (void *)CACTUS_RODATA_END);
Manish Pandey26c6f812020-04-30 11:43:00 +0100326
Olivier Deprezaed7f082020-11-04 15:11:59 +0100327 INFO(" Data region : %p - %p\n",
Antonio Nino Diaz1486f3b2018-06-26 10:30:10 +0100328 (void *)CACTUS_DATA_START, (void *)CACTUS_DATA_END);
Manish Pandey26c6f812020-04-30 11:43:00 +0100329
Olivier Deprezaed7f082020-11-04 15:11:59 +0100330 INFO(" BSS region : %p - %p\n",
Antonio Nino Diaz1486f3b2018-06-26 10:30:10 +0100331 (void *)CACTUS_BSS_START, (void *)CACTUS_BSS_END);
Manish Pandey26c6f812020-04-30 11:43:00 +0100332
Olivier Deprezaed7f082020-11-04 15:11:59 +0100333 INFO(" RX : %p - %p\n",
Max Shvetsovc32f4782020-06-23 09:41:15 +0100334 (void *)get_sp_rx_start(vm_id),
335 (void *)get_sp_rx_end(vm_id));
Manish Pandey26c6f812020-04-30 11:43:00 +0100336
Olivier Deprezaed7f082020-11-04 15:11:59 +0100337 INFO(" TX : %p - %p\n",
Max Shvetsovc32f4782020-06-23 09:41:15 +0100338 (void *)get_sp_tx_start(vm_id),
339 (void *)get_sp_tx_end(vm_id));
Sandrine Bailleux3cd87d72018-10-09 11:12:55 +0200340}
341
Manish Pandey26c6f812020-04-30 11:43:00 +0100342static void cactus_plat_configure_mmu(unsigned int vm_id)
Antonio Nino Diaz43ef3932018-07-03 14:39:47 +0100343{
Olivier Deprezafcdb7c2019-11-29 14:21:48 +0100344 mmap_add_region(CACTUS_TEXT_START,
345 CACTUS_TEXT_START,
346 CACTUS_TEXT_END - CACTUS_TEXT_START,
347 MT_CODE);
348 mmap_add_region(CACTUS_RODATA_START,
349 CACTUS_RODATA_START,
350 CACTUS_RODATA_END - CACTUS_RODATA_START,
351 MT_RO_DATA);
352 mmap_add_region(CACTUS_DATA_START,
353 CACTUS_DATA_START,
354 CACTUS_DATA_END - CACTUS_DATA_START,
355 MT_RW_DATA);
356 mmap_add_region(CACTUS_BSS_START,
357 CACTUS_BSS_START,
358 CACTUS_BSS_END - CACTUS_BSS_START,
359 MT_RW_DATA);
Antonio Nino Diaz43ef3932018-07-03 14:39:47 +0100360
Max Shvetsovc32f4782020-06-23 09:41:15 +0100361 mmap_add_region(get_sp_rx_start(vm_id),
362 get_sp_rx_start(vm_id),
Manish Pandey26c6f812020-04-30 11:43:00 +0100363 (CACTUS_RX_TX_SIZE / 2),
364 MT_RO_DATA);
365
Max Shvetsovc32f4782020-06-23 09:41:15 +0100366 mmap_add_region(get_sp_tx_start(vm_id),
367 get_sp_tx_start(vm_id),
Manish Pandey26c6f812020-04-30 11:43:00 +0100368 (CACTUS_RX_TX_SIZE / 2),
369 MT_RW_DATA);
370
Olivier Deprezafcdb7c2019-11-29 14:21:48 +0100371 mmap_add(cactus_mmap);
372 init_xlat_tables();
Antonio Nino Diaz43ef3932018-07-03 14:39:47 +0100373}
374
Olivier Deprez458d5532020-06-09 17:56:20 +0200375int tftf_irq_handler_dispatcher(void)
376{
377 ERROR("%s\n", __func__);
378
379 return 0;
380}
381
Antonio Nino Diaz1486f3b2018-06-26 10:30:10 +0100382void __dead2 cactus_main(void)
Sandrine Bailleux3cd87d72018-10-09 11:12:55 +0200383{
Olivier Deprezafcdb7c2019-11-29 14:21:48 +0100384 assert(IS_IN_EL1() != 0);
385
Max Shvetsovc32f4782020-06-23 09:41:15 +0100386 struct mailbox_buffers mb;
J-Alvesda6ac322020-11-09 15:45:30 +0000387
Olivier Deprezafcdb7c2019-11-29 14:21:48 +0100388 /* Clear BSS */
389 memset((void *)CACTUS_BSS_START,
390 0, CACTUS_BSS_END - CACTUS_BSS_START);
391
J-Alves7581c382020-05-07 18:34:20 +0100392 /* Get current FFA id */
393 smc_ret_values ffa_id_ret = ffa_id_get();
J-Alves6cb21d92021-01-07 15:18:12 +0000394 if (ffa_func_id(ffa_id_ret) != FFA_SUCCESS_SMC32) {
J-Alves7581c382020-05-07 18:34:20 +0100395 ERROR("FFA_ID_GET failed.\n");
Olivier Deprezafcdb7c2019-11-29 14:21:48 +0100396 panic();
397 }
398
J-Alves7581c382020-05-07 18:34:20 +0100399 ffa_vm_id_t ffa_id = ffa_id_ret.ret2 & 0xffff;
Max Shvetsovc32f4782020-06-23 09:41:15 +0100400 mb.send = (void *) get_sp_tx_start(ffa_id);
401 mb.recv = (void *) get_sp_rx_start(ffa_id);
Olivier Deprezafcdb7c2019-11-29 14:21:48 +0100402
Manish Pandey26c6f812020-04-30 11:43:00 +0100403 /* Configure and enable Stage-1 MMU, enable D-Cache */
404 cactus_plat_configure_mmu(ffa_id);
405 enable_mmu_el1(0);
406
J-Alves7581c382020-05-07 18:34:20 +0100407 if (ffa_id == SPM_VM_ID_FIRST) {
Arunachalam Ganapathy51be1fe2020-09-22 13:25:21 +0100408 console_init(CACTUS_PL011_UART_BASE,
409 CACTUS_PL011_UART_CLK_IN_HZ,
410 PL011_BAUDRATE);
Manish Pandey29495372020-04-09 15:19:26 +0100411
412 set_putc_impl(PL011_AS_STDOUT);
413
414 NOTICE("Booting Primary Cactus Secure Partition\n%s\n%s\n",
415 build_message, version_string);
Manish Pandey29495372020-04-09 15:19:26 +0100416 } else {
J-Alves83ede9b2020-11-02 17:37:19 +0000417 smc_ret_values ret;
Manish Pandey29495372020-04-09 15:19:26 +0100418 set_putc_impl(HVC_CALL_AS_STDOUT);
419
Olivier Deprezaed7f082020-11-04 15:11:59 +0100420 NOTICE("Booting Secondary Cactus Secure Partition (ID: %x)\n%s\n%s\n",
Ruari Phippsbd0a7e42020-07-17 16:42:21 +0100421 ffa_id, build_message, version_string);
422
Olivier Deprez0be4abe2020-08-04 11:26:13 +0200423 if (ffa_id == (SPM_VM_ID_FIRST + 2)) {
Olivier Deprezaed7f082020-11-04 15:11:59 +0100424 VERBOSE("Mapping RXTX Region\n");
J-Alves83ede9b2020-11-02 17:37:19 +0000425 CONFIGURE_AND_MAP_MAILBOX(mb, PAGE_SIZE, ret);
J-Alves6cb21d92021-01-07 15:18:12 +0000426 if (ffa_func_id(ret) != FFA_SUCCESS_SMC32) {
J-Alves83ede9b2020-11-02 17:37:19 +0000427 ERROR(
J-Alves6cb21d92021-01-07 15:18:12 +0000428 "Failed to map RXTX buffers. Error: %x\n",
429 ffa_error_code(ret));
Ruari Phippsbd0a7e42020-07-17 16:42:21 +0100430 panic();
431 }
Ruari Phippsbd0a7e42020-07-17 16:42:21 +0100432 }
Olivier Deprezafcdb7c2019-11-29 14:21:48 +0100433 }
Manish Pandey26c6f812020-04-30 11:43:00 +0100434
Olivier Deprezaed7f082020-11-04 15:11:59 +0100435 INFO("FF-A id: %x\n", ffa_id);
Manish Pandey26c6f812020-04-30 11:43:00 +0100436 cactus_print_memory_layout(ffa_id);
437
J-Alves9f6f0142020-06-17 15:37:59 +0100438 /* Invoking Tests */
Max Shvetsovc32f4782020-06-23 09:41:15 +0100439 ffa_tests(&mb);
J-Alves9f6f0142020-06-17 15:37:59 +0100440
Olivier Deprezafcdb7c2019-11-29 14:21:48 +0100441 /* End up to message loop */
J-Alves63cdaa72020-10-08 17:22:45 +0100442 message_loop(ffa_id, &mb);
Antonio Nino Diaz43ef3932018-07-03 14:39:47 +0100443
Olivier Deprezafcdb7c2019-11-29 14:21:48 +0100444 /* Not reached */
Sandrine Bailleux3cd87d72018-10-09 11:12:55 +0200445}