blob: eb09499a139e75717d147105436cdbc2354af520 [file] [log] [blame]
Andrew Scull18834872018-10-12 11:48:09 +01001/*
Federico Recanati25053ee2022-03-14 15:01:53 +01002 * Copyright 2022 The Hafnium Authors.
Andrew Scull18834872018-10-12 11:48:09 +01003 *
Andrew Walbrane959ec12020-06-17 15:01:09 +01004 * Use of this source code is governed by a BSD-style
5 * license that can be found in the LICENSE file or at
6 * https://opensource.org/licenses/BSD-3-Clause.
Andrew Scull18834872018-10-12 11:48:09 +01007 */
8
Andrew Scull18c78fc2018-08-20 12:57:41 +01009#include "hf/api.h"
Wedson Almeida Filho3fcbcff2018-07-10 23:53:39 +010010
Andrew Walbran318f5732018-11-20 16:23:42 +000011#include "hf/arch/cpu.h"
Daniel Boulbyb2fb80e2021-02-03 15:09:23 +000012#include "hf/arch/ffa.h"
Olivier Deprez96a2a262020-06-11 17:21:38 +020013#include "hf/arch/mm.h"
Olivier Deprez112d2b52020-09-30 07:39:23 +020014#include "hf/arch/other_world.h"
Olivier Deprez55a189e2021-06-09 15:45:27 +020015#include "hf/arch/plat/ffa.h"
Andrew Walbran508e63c2018-12-20 17:02:37 +000016#include "hf/arch/timer.h"
Olivier Deprez764fd2e2020-07-29 15:14:09 +020017#include "hf/arch/vm.h"
Andrew Walbran318f5732018-11-20 16:23:42 +000018
Andrew Scull877ae4b2019-07-02 12:52:33 +010019#include "hf/check.h"
Andrew Walbran318f5732018-11-20 16:23:42 +000020#include "hf/dlog.h"
Andrew Walbranb5ab43c2020-04-30 11:32:54 +010021#include "hf/ffa_internal.h"
22#include "hf/ffa_memory.h"
Andrew Scull6386f252018-12-06 13:29:10 +000023#include "hf/mm.h"
Andrew Walbranc1ad4ce2019-05-09 11:41:39 +010024#include "hf/plat/console.h"
Manish Pandeya5f39fb2020-09-11 09:47:11 +010025#include "hf/plat/interrupts.h"
Andrew Scull6386f252018-12-06 13:29:10 +000026#include "hf/spinlock.h"
Andrew Scull877ae4b2019-07-02 12:52:33 +010027#include "hf/static_assert.h"
Andrew Scull8d9e1212019-04-05 13:52:55 +010028#include "hf/std.h"
Andrew Scull18c78fc2018-08-20 12:57:41 +010029#include "hf/vm.h"
30
Andrew Scullf35a5c92018-08-07 18:09:46 +010031#include "vmapi/hf/call.h"
Andrew Walbranb5ab43c2020-04-30 11:32:54 +010032#include "vmapi/hf/ffa.h"
Wedson Almeida Filho3fcbcff2018-07-10 23:53:39 +010033
Daniel Boulby1ddb3d72021-12-16 18:16:50 +000034static_assert(sizeof(struct ffa_partition_info_v1_0) == 8,
Fuad Tabbae4efcc32020-07-16 15:37:27 +010035 "Partition information descriptor size doesn't match the one in "
36 "the FF-A 1.0 EAC specification, Table 82.");
Daniel Boulby1ddb3d72021-12-16 18:16:50 +000037static_assert(sizeof(struct ffa_partition_info) == 24,
38 "Partition information descriptor size doesn't match the one in "
39 "the FF-A 1.1 BETA0 EAC specification, Table 13.34.");
Fuad Tabbae4efcc32020-07-16 15:37:27 +010040
Wedson Almeida Filhoba641ef2018-12-03 04:19:44 +000041/*
42 * To eliminate the risk of deadlocks, we define a partial order for the
43 * acquisition of locks held concurrently by the same physical CPU. Our current
44 * ordering requirements are as follows:
45 *
Andrew Walbranc1ad4ce2019-05-09 11:41:39 +010046 * vm::lock -> vcpu::lock -> mm_stage1_lock -> dlog sl
Andrew Scull6386f252018-12-06 13:29:10 +000047 *
Andrew Scull4caadaf2019-07-03 13:13:47 +010048 * Locks of the same kind require the lock of lowest address to be locked first,
49 * see `sl_lock_both()`.
Wedson Almeida Filhoba641ef2018-12-03 04:19:44 +000050 */
51
Andrew Scullaa039b32018-10-04 15:02:26 +010052static_assert(HF_MAILBOX_SIZE == PAGE_SIZE,
Andrew Scull13652af2018-09-17 14:49:08 +010053 "Currently, a page is mapped for the send and receive buffers so "
54 "the maximum request is the size of a page.");
55
Andrew Walbran5de9c3d2020-02-10 13:35:29 +000056static_assert(MM_PPOOL_ENTRY_SIZE >= HF_MAILBOX_SIZE,
57 "The page pool entry size must be at least as big as the mailbox "
58 "size, so that memory region descriptors can be copied from the "
59 "mailbox for memory sharing.");
60
Wedson Almeida Filho9ed8da52018-12-17 16:09:11 +000061static struct mpool api_page_pool;
Wedson Almeida Filho22d5eaa2018-12-16 00:38:49 +000062
63/**
Wedson Almeida Filho81568c42019-01-04 13:33:02 +000064 * Initialises the API page pool by taking ownership of the contents of the
65 * given page pool.
Wedson Almeida Filho22d5eaa2018-12-16 00:38:49 +000066 */
67void api_init(struct mpool *ppool)
68{
Wedson Almeida Filho9ed8da52018-12-17 16:09:11 +000069 mpool_init_from(&api_page_pool, ppool);
Wedson Almeida Filho22d5eaa2018-12-16 00:38:49 +000070}
71
Wedson Almeida Filho3fcbcff2018-07-10 23:53:39 +010072/**
J-Alvesad6a0432021-04-09 16:06:21 +010073 * Get target VM vCPU:
74 * If VM is UP then return first vCPU.
75 * If VM is MP then return vCPU whose index matches current CPU index.
76 */
Madhukar Pappireddyb11e0d12021-08-02 19:44:35 -050077struct vcpu *api_ffa_get_vm_vcpu(struct vm *vm, struct vcpu *current)
J-Alvesad6a0432021-04-09 16:06:21 +010078{
79 ffa_vcpu_index_t current_cpu_index = cpu_index(current->cpu);
80 struct vcpu *vcpu = NULL;
81
Madhukar Pappireddyb11e0d12021-08-02 19:44:35 -050082 CHECK((vm != NULL) && (current != NULL));
83
J-Alvesad6a0432021-04-09 16:06:21 +010084 if (vm->vcpu_count == 1) {
85 vcpu = vm_get_vcpu(vm, 0);
86 } else if (current_cpu_index < vm->vcpu_count) {
87 vcpu = vm_get_vcpu(vm, current_cpu_index);
88 }
89
90 return vcpu;
91}
92
93/**
J-Alvesfe7f7372020-11-09 11:32:12 +000094 * Switches the physical CPU back to the corresponding vCPU of the VM whose ID
95 * is given as argument of the function.
96 *
97 * Called to change the context between SPs for direct messaging (when Hafnium
98 * is SPMC), and on the context of the remaining 'api_switch_to_*' functions.
99 *
100 * This function works for partitions that are:
J-Alvesad6a0432021-04-09 16:06:21 +0100101 * - UP migratable.
J-Alvesfe7f7372020-11-09 11:32:12 +0000102 * - MP with pinned Execution Contexts.
103 */
104static struct vcpu *api_switch_to_vm(struct vcpu *current,
105 struct ffa_value to_ret,
106 enum vcpu_state vcpu_state,
107 ffa_vm_id_t to_id)
108{
109 struct vm *to_vm = vm_find(to_id);
J-Alvesad6a0432021-04-09 16:06:21 +0100110 struct vcpu *next = api_ffa_get_vm_vcpu(to_vm, current);
J-Alvesfe7f7372020-11-09 11:32:12 +0000111
112 CHECK(next != NULL);
113
114 /* Set the return value for the target VM. */
115 arch_regs_set_retval(&next->regs, to_ret);
116
117 /* Set the current vCPU state. */
118 sl_lock(&current->lock);
119 current->state = vcpu_state;
120 sl_unlock(&current->lock);
121
122 return next;
123}
124
125/**
Fuad Tabbab0ef2a42019-12-19 11:19:25 +0000126 * Switches the physical CPU back to the corresponding vCPU of the primary VM.
Andrew Scullaa039b32018-10-04 15:02:26 +0100127 *
128 * This triggers the scheduling logic to run. Run in the context of secondary VM
Andrew Walbranb5ab43c2020-04-30 11:32:54 +0100129 * to cause FFA_RUN to return and the primary VM to regain control of the CPU.
Wedson Almeida Filho2f94ec12018-07-26 16:00:48 +0100130 */
Olivier Deprezd8e18882022-07-15 14:46:41 +0200131static struct vcpu *api_switch_to_primary(struct vcpu *current,
132 struct ffa_value primary_ret,
133 enum vcpu_state secondary_state)
Wedson Almeida Filho2f94ec12018-07-26 16:00:48 +0100134{
Andrew Walbran508e63c2018-12-20 17:02:37 +0000135 /*
136 * If the secondary is blocked but has a timer running, sleep until the
137 * timer fires rather than indefinitely.
138 */
Andrew Walbran7a1ea0b2019-10-02 18:18:44 +0100139 switch (primary_ret.func) {
Andrew Walbranb5ab43c2020-04-30 11:32:54 +0100140 case HF_FFA_RUN_WAIT_FOR_INTERRUPT:
141 case FFA_MSG_WAIT_32: {
Andrew Walbran7a1ea0b2019-10-02 18:18:44 +0100142 if (arch_timer_enabled_current()) {
143 uint64_t remaining_ns =
144 arch_timer_remaining_ns_current();
145
146 if (remaining_ns == 0) {
147 /*
148 * Timer is pending, so the current vCPU should
149 * be run again right away.
150 */
Andrew Walbran7e824602020-10-22 16:51:40 +0100151 primary_ret = (struct ffa_value){
152 .func = FFA_INTERRUPT_32};
153
Andrew Walbran7a1ea0b2019-10-02 18:18:44 +0100154 } else {
155 primary_ret.arg2 = remaining_ns;
156 }
157 } else {
Andrew Walbranb5ab43c2020-04-30 11:32:54 +0100158 primary_ret.arg2 = FFA_SLEEP_INDEFINITE;
Andrew Walbran7a1ea0b2019-10-02 18:18:44 +0100159 }
Andrew Scullb06d1752019-02-04 10:15:48 +0000160 break;
Andrew Walbran7a1ea0b2019-10-02 18:18:44 +0100161 }
Andrew Scullb06d1752019-02-04 10:15:48 +0000162
163 default:
164 /* Do nothing. */
165 break;
Andrew Walbran508e63c2018-12-20 17:02:37 +0000166 }
167
J-Alvesfe7f7372020-11-09 11:32:12 +0000168 return api_switch_to_vm(current, primary_ret, secondary_state,
169 HF_PRIMARY_VM_ID);
Wedson Almeida Filho2f94ec12018-07-26 16:00:48 +0100170}
171
172/**
Olivier Deprez2ebae3a2020-06-11 16:34:30 +0200173 * Choose next vCPU to run to be the counterpart vCPU in the other
174 * world (run the normal world if currently running in the secure
175 * world). Set current vCPU state to the given vcpu_state parameter.
176 * Set FF-A return values to the target vCPU in the other world.
177 *
178 * Called in context of a direct message response from a secure
179 * partition to a VM.
180 */
Manish Pandeya5f39fb2020-09-11 09:47:11 +0100181struct vcpu *api_switch_to_other_world(struct vcpu *current,
182 struct ffa_value other_world_ret,
183 enum vcpu_state vcpu_state)
Olivier Deprez2ebae3a2020-06-11 16:34:30 +0200184{
J-Alvesfe7f7372020-11-09 11:32:12 +0000185 return api_switch_to_vm(current, other_world_ret, vcpu_state,
186 HF_OTHER_WORLD_ID);
Olivier Deprez2ebae3a2020-06-11 16:34:30 +0200187}
188
189/**
Federico Recanati86f6cde2022-04-28 19:44:49 +0200190 * Checks whether the given `to` VM's mailbox is currently busy.
Fuad Tabbae4efcc32020-07-16 15:37:27 +0100191 */
Federico Recanati86f6cde2022-04-28 19:44:49 +0200192static bool msg_receiver_busy(struct vm_locked to)
Fuad Tabbae4efcc32020-07-16 15:37:27 +0100193{
Federico Recanati86f6cde2022-04-28 19:44:49 +0200194 return to.vm->mailbox.state != MAILBOX_STATE_EMPTY ||
195 to.vm->mailbox.recv == NULL;
Fuad Tabbae4efcc32020-07-16 15:37:27 +0100196}
197
198/**
Olivier Deprezee9d6a92019-11-26 09:14:11 +0000199 * Returns true if the given vCPU is executing in context of an
200 * FFA_MSG_SEND_DIRECT_REQ invocation.
201 */
202static bool is_ffa_direct_msg_request_ongoing(struct vcpu_locked locked)
203{
204 return locked.vcpu->direct_request_origin_vm_id != HF_INVALID_VM_ID;
205}
206
207/**
Manish Pandeya5f39fb2020-09-11 09:47:11 +0100208 * Returns true if the VM owning the given vCPU is supporting managed exit and
209 * the vCPU is currently processing a managed exit.
210 */
211static bool api_ffa_is_managed_exit_ongoing(struct vcpu_locked vcpu_locked)
212{
Maksims Svecovs9ddf86a2021-05-06 17:17:21 +0100213 return (plat_ffa_vm_managed_exit_supported(vcpu_locked.vcpu->vm) &&
Manish Pandeya5f39fb2020-09-11 09:47:11 +0100214 vcpu_locked.vcpu->processing_managed_exit);
215}
216
217/**
Fuad Tabbab0ef2a42019-12-19 11:19:25 +0000218 * Returns to the primary VM and signals that the vCPU still has work to do so.
Andrew Scull33fecd32019-01-08 14:48:27 +0000219 */
220struct vcpu *api_preempt(struct vcpu *current)
221{
Andrew Walbranb5ab43c2020-04-30 11:32:54 +0100222 struct ffa_value ret = {
223 .func = FFA_INTERRUPT_32,
Olivier Deprez0d725f52022-07-06 14:20:27 +0200224 .arg1 = ffa_vm_vcpu(current->vm->id, vcpu_index(current)),
Andrew Scull33fecd32019-01-08 14:48:27 +0000225 };
226
Madhukar Pappireddyb11e0d12021-08-02 19:44:35 -0500227 return api_switch_to_primary(current, ret, VCPU_STATE_PREEMPTED);
Andrew Scull33fecd32019-01-08 14:48:27 +0000228}
229
230/**
Fuad Tabbab0ef2a42019-12-19 11:19:25 +0000231 * Puts the current vCPU in wait for interrupt mode, and returns to the primary
Fuad Tabbaed294af2019-12-20 10:43:01 +0000232 * VM.
Andrew Scullaa039b32018-10-04 15:02:26 +0100233 */
Wedson Almeida Filho00df6c72018-10-18 11:19:24 +0100234struct vcpu *api_wait_for_interrupt(struct vcpu *current)
Andrew Scullaa039b32018-10-04 15:02:26 +0100235{
Andrew Walbranb5ab43c2020-04-30 11:32:54 +0100236 struct ffa_value ret = {
237 .func = HF_FFA_RUN_WAIT_FOR_INTERRUPT,
238 .arg1 = ffa_vm_vcpu(current->vm->id, vcpu_index(current)),
Andrew Scull6d2db332018-10-10 15:28:17 +0100239 };
Wedson Almeida Filho81568c42019-01-04 13:33:02 +0000240
Wedson Almeida Filhoba641ef2018-12-03 04:19:44 +0000241 return api_switch_to_primary(current, ret,
Andrew Sculld6ee1102019-04-05 22:12:42 +0100242 VCPU_STATE_BLOCKED_INTERRUPT);
Andrew Scullaa039b32018-10-04 15:02:26 +0100243}
244
245/**
Andrew Walbran33645652019-04-15 12:29:31 +0100246 * Puts the current vCPU in off mode, and returns to the primary VM.
247 */
248struct vcpu *api_vcpu_off(struct vcpu *current)
249{
Andrew Walbranb5ab43c2020-04-30 11:32:54 +0100250 struct ffa_value ret = {
251 .func = HF_FFA_RUN_WAIT_FOR_INTERRUPT,
252 .arg1 = ffa_vm_vcpu(current->vm->id, vcpu_index(current)),
Andrew Walbran33645652019-04-15 12:29:31 +0100253 };
254
255 /*
256 * Disable the timer, so the scheduler doesn't get told to call back
257 * based on it.
258 */
259 arch_timer_disable_current();
260
261 return api_switch_to_primary(current, ret, VCPU_STATE_OFF);
262}
263
264/**
Madhukar Pappireddyb11e0d12021-08-02 19:44:35 -0500265 * The current vCPU is blocked on some resource and needs to relinquish
266 * control back to the execution context of the endpoint that originally
267 * allocated cycles to it.
Andrew Scull66d62bf2019-02-01 13:54:10 +0000268 */
Olivier Deprezee9d6a92019-11-26 09:14:11 +0000269struct ffa_value api_yield(struct vcpu *current, struct vcpu **next)
Andrew Scull66d62bf2019-02-01 13:54:10 +0000270{
Olivier Deprezee9d6a92019-11-26 09:14:11 +0000271 struct ffa_value ret = (struct ffa_value){.func = FFA_SUCCESS_32};
272 struct vcpu_locked current_locked;
Madhukar Pappireddyc857ac22022-06-21 17:37:53 -0500273 bool transition_allowed;
274 enum vcpu_state next_state = VCPU_STATE_BLOCKED;
Andrew Scull66d62bf2019-02-01 13:54:10 +0000275
276 if (current->vm->id == HF_PRIMARY_VM_ID) {
Fuad Tabbab0ef2a42019-12-19 11:19:25 +0000277 /* NOOP on the primary as it makes the scheduling decisions. */
Olivier Deprezee9d6a92019-11-26 09:14:11 +0000278 return ret;
Andrew Scull66d62bf2019-02-01 13:54:10 +0000279 }
280
Olivier Deprezee9d6a92019-11-26 09:14:11 +0000281 current_locked = vcpu_lock(current);
Madhukar Pappireddyc857ac22022-06-21 17:37:53 -0500282 transition_allowed = plat_ffa_check_runtime_state_transition(
283 current, current->vm->id, HF_INVALID_VM_ID, NULL, FFA_YIELD_32,
284 &next_state);
Olivier Deprezee9d6a92019-11-26 09:14:11 +0000285 vcpu_unlock(&current_locked);
286
Madhukar Pappireddyc857ac22022-06-21 17:37:53 -0500287 if (!transition_allowed) {
Olivier Deprezee9d6a92019-11-26 09:14:11 +0000288 return ffa_error(FFA_DENIED);
289 }
290
Madhukar Pappireddyc857ac22022-06-21 17:37:53 -0500291 assert(next_state == VCPU_STATE_BLOCKED);
292
Olivier Deprezee9d6a92019-11-26 09:14:11 +0000293 *next = api_switch_to_primary(
294 current,
295 (struct ffa_value){.func = FFA_YIELD_32,
296 .arg1 = ffa_vm_vcpu(current->vm->id,
297 vcpu_index(current))},
Madhukar Pappireddyc857ac22022-06-21 17:37:53 -0500298 next_state);
Olivier Deprezee9d6a92019-11-26 09:14:11 +0000299
300 return ret;
Andrew Scull66d62bf2019-02-01 13:54:10 +0000301}
302
303/**
Andrew Walbran33645652019-04-15 12:29:31 +0100304 * Switches to the primary so that it can switch to the target, or kick it if it
305 * is already running on a different physical CPU.
306 */
307struct vcpu *api_wake_up(struct vcpu *current, struct vcpu *target_vcpu)
308{
Andrew Walbranb5ab43c2020-04-30 11:32:54 +0100309 struct ffa_value ret = {
Andrew Walbran7e824602020-10-22 16:51:40 +0100310 .func = FFA_INTERRUPT_32,
Andrew Walbranb5ab43c2020-04-30 11:32:54 +0100311 .arg1 = ffa_vm_vcpu(target_vcpu->vm->id,
312 vcpu_index(target_vcpu)),
Andrew Walbran33645652019-04-15 12:29:31 +0100313 };
Madhukar Pappireddyb11e0d12021-08-02 19:44:35 -0500314 return api_switch_to_primary(current, ret, VCPU_STATE_BLOCKED);
Andrew Walbran33645652019-04-15 12:29:31 +0100315}
316
317/**
Andrew Scull38772ab2019-01-24 15:16:50 +0000318 * Aborts the vCPU and triggers its VM to abort fully.
Andrew Scull9726c252019-01-23 13:44:19 +0000319 */
320struct vcpu *api_abort(struct vcpu *current)
321{
Andrew Walbranb5ab43c2020-04-30 11:32:54 +0100322 struct ffa_value ret = ffa_error(FFA_ABORTED);
Andrew Scull9726c252019-01-23 13:44:19 +0000323
Olivier Deprezf92e5d42020-11-13 16:00:54 +0100324 dlog_notice("Aborting VM %#x vCPU %u\n", current->vm->id,
Andrew Walbran17eebf92020-02-05 16:35:49 +0000325 vcpu_index(current));
Andrew Scull9726c252019-01-23 13:44:19 +0000326
327 if (current->vm->id == HF_PRIMARY_VM_ID) {
328 /* TODO: what to do when the primary aborts? */
329 for (;;) {
330 /* Do nothing. */
331 }
332 }
333
334 atomic_store_explicit(&current->vm->aborting, true,
335 memory_order_relaxed);
336
337 /* TODO: free resources once all vCPUs abort. */
338
Andrew Sculld6ee1102019-04-05 22:12:42 +0100339 return api_switch_to_primary(current, ret, VCPU_STATE_ABORTED);
Andrew Scull9726c252019-01-23 13:44:19 +0000340}
341
Daniel Boulby1ddb3d72021-12-16 18:16:50 +0000342/*
343 * Format the partition info descriptors according to the version supported
344 * by the endpoint and return the size of the array created.
345 */
346static struct ffa_value send_versioned_partition_info_descriptors(
Daniel Boulby191b5f02022-02-17 17:26:14 +0000347 struct vm_locked vm_locked, struct ffa_partition_info *partitions,
Daniel Boulby1ddb3d72021-12-16 18:16:50 +0000348 uint32_t vm_count)
349{
Daniel Boulby191b5f02022-02-17 17:26:14 +0000350 struct vm *vm = vm_locked.vm;
351 uint32_t version = vm->ffa_version;
Daniel Boulby835e1592022-05-30 17:38:51 +0100352 uint32_t partition_info_size;
353 uint32_t buffer_size;
Federico Recanati644f0462022-03-17 12:04:00 +0100354 struct ffa_value ret;
Daniel Boulby1ddb3d72021-12-16 18:16:50 +0000355
Federico Recanati86f6cde2022-04-28 19:44:49 +0200356 if (msg_receiver_busy(vm_locked)) {
Daniel Boulby1ddb3d72021-12-16 18:16:50 +0000357 /*
358 * Can't retrieve memory information if the mailbox is not
359 * available.
360 */
361 dlog_verbose("RX buffer not ready.\n");
Daniel Boulby191b5f02022-02-17 17:26:14 +0000362 return ffa_error(FFA_BUSY);
Daniel Boulby1ddb3d72021-12-16 18:16:50 +0000363 }
364
Federico Recanati644f0462022-03-17 12:04:00 +0100365 /* Acquire receiver's RX buffer. */
366 if (!plat_ffa_acquire_receiver_rx(vm_locked, &ret)) {
367 dlog_verbose("Failed to acquire RX buffer for VM %x\n", vm->id);
368 return ret;
369 }
370
Daniel Boulby191b5f02022-02-17 17:26:14 +0000371 if (version == MAKE_FFA_VERSION(1, 0)) {
372 struct ffa_partition_info_v1_0 *recv_mailbox = vm->mailbox.recv;
373
Daniel Boulby835e1592022-05-30 17:38:51 +0100374 partition_info_size = sizeof(struct ffa_partition_info_v1_0);
375 buffer_size = partition_info_size * vm_count;
376 if (buffer_size > HF_MAILBOX_SIZE) {
Daniel Boulby191b5f02022-02-17 17:26:14 +0000377 dlog_error(
378 "Partition information does not fit in the "
379 "VM's RX "
380 "buffer.\n");
381 return ffa_error(FFA_NO_MEMORY);
382 }
383
384 for (uint32_t i = 0; i < vm_count; i++) {
385 /*
386 * Populate the VM's RX buffer with the partition
Kathleen Capella402fa852022-11-09 16:16:51 -0500387 * information. Clear properties bits that must be zero
388 * according to DEN0077A FF-A v1.0 REL Table 8.25.
Daniel Boulby191b5f02022-02-17 17:26:14 +0000389 */
390 recv_mailbox[i].vm_id = partitions[i].vm_id;
391 recv_mailbox[i].vcpu_count = partitions[i].vcpu_count;
Kathleen Capella402fa852022-11-09 16:16:51 -0500392 recv_mailbox[i].properties =
393 partitions[i].properties &
394 ~FFA_PARTITION_v1_0_RES_MASK;
Daniel Boulby191b5f02022-02-17 17:26:14 +0000395 }
396
397 } else {
Daniel Boulby835e1592022-05-30 17:38:51 +0100398 partition_info_size = sizeof(struct ffa_partition_info);
399 buffer_size = partition_info_size * vm_count;
400 if (buffer_size > HF_MAILBOX_SIZE) {
Daniel Boulby191b5f02022-02-17 17:26:14 +0000401 dlog_error(
402 "Partition information does not fit in the "
403 "VM's RX "
404 "buffer.\n");
405 return ffa_error(FFA_NO_MEMORY);
406 }
407
408 /* Populate the VM's RX buffer with the partition information.
409 */
Daniel Boulby835e1592022-05-30 17:38:51 +0100410 memcpy_s(vm->mailbox.recv, HF_MAILBOX_SIZE, partitions,
411 buffer_size);
Daniel Boulby191b5f02022-02-17 17:26:14 +0000412 }
413
Daniel Boulby835e1592022-05-30 17:38:51 +0100414 vm->mailbox.recv_size = buffer_size;
Daniel Boulby1ddb3d72021-12-16 18:16:50 +0000415
416 /* Sender is Hypervisor in the normal world (TEE in secure world). */
Daniel Boulby191b5f02022-02-17 17:26:14 +0000417 vm->mailbox.recv_sender = HF_VM_ID_BASE;
418 vm->mailbox.recv_func = FFA_PARTITION_INFO_GET_32;
419 vm->mailbox.state = MAILBOX_STATE_READ;
Daniel Boulby1ddb3d72021-12-16 18:16:50 +0000420
Daniel Boulby835e1592022-05-30 17:38:51 +0100421 /*
422 * Return the count of partition information descriptors in w2
423 * and the size of the descriptors in w3.
424 */
425 return (struct ffa_value){.func = FFA_SUCCESS_32,
426 .arg2 = vm_count,
427 .arg3 = partition_info_size};
Daniel Boulby1ddb3d72021-12-16 18:16:50 +0000428}
429
Fuad Tabbae4efcc32020-07-16 15:37:27 +0100430struct ffa_value api_ffa_partition_info_get(struct vcpu *current,
Daniel Boulbyb46cad12021-12-13 17:47:21 +0000431 const struct ffa_uuid *uuid,
432 const uint32_t flags)
Fuad Tabbae4efcc32020-07-16 15:37:27 +0100433{
434 struct vm *current_vm = current->vm;
Fuad Tabbae4efcc32020-07-16 15:37:27 +0100435 ffa_vm_count_t vm_count = 0;
Olivier Deprez013f4d62022-11-21 15:46:20 +0100436 bool count_flag = (flags & FFA_PARTITION_COUNT_FLAG_MASK) ==
Daniel Boulbyb46cad12021-12-13 17:47:21 +0000437 FFA_PARTITION_COUNT_FLAG;
Fuad Tabbae4efcc32020-07-16 15:37:27 +0100438 bool uuid_is_null = ffa_uuid_is_null(uuid);
Daniel Boulbyce541842022-05-31 15:54:31 +0100439 struct ffa_partition_info partitions[2 * MAX_VMS] = {0};
Daniel Boulby191b5f02022-02-17 17:26:14 +0000440 struct vm_locked vm_locked;
441 struct ffa_value ret;
Fuad Tabbae4efcc32020-07-16 15:37:27 +0100442
Daniel Boulbyb46cad12021-12-13 17:47:21 +0000443 /* Bits 31:1 Must Be Zero */
Olivier Deprez013f4d62022-11-21 15:46:20 +0100444 if ((flags & ~FFA_PARTITION_COUNT_FLAG_MASK) != 0) {
Daniel Boulbyb46cad12021-12-13 17:47:21 +0000445 return ffa_error(FFA_INVALID_PARAMETERS);
446 }
447
Fuad Tabbae4efcc32020-07-16 15:37:27 +0100448 /*
Kathleen Capella402fa852022-11-09 16:16:51 -0500449 * No need to count if we are returning the number of partitions as we
Daniel Boulbyb46cad12021-12-13 17:47:21 +0000450 * already know this.
Fuad Tabbae4efcc32020-07-16 15:37:27 +0100451 */
Daniel Boulbyb46cad12021-12-13 17:47:21 +0000452 if (uuid_is_null && count_flag) {
453 vm_count = vm_get_count();
454 } else {
455 /*
456 * Iterate through the VMs to find the ones with a matching
457 * UUID. A Null UUID retrieves information for all VMs.
458 */
459 for (uint16_t index = 0; index < vm_get_count(); ++index) {
460 struct vm *vm = vm_find_index(index);
Fuad Tabbae4efcc32020-07-16 15:37:27 +0100461
Daniel Boulbyb46cad12021-12-13 17:47:21 +0000462 if (uuid_is_null || ffa_uuid_equal(uuid, &vm->uuid)) {
463 uint16_t array_index = vm_count;
Fuad Tabbae4efcc32020-07-16 15:37:27 +0100464
Daniel Boulbyb46cad12021-12-13 17:47:21 +0000465 ++vm_count;
466 if (count_flag) {
467 continue;
468 }
469
470 partitions[array_index].vm_id = vm->id;
471 partitions[array_index].vcpu_count =
472 vm->vcpu_count;
473 partitions[array_index].properties =
474 plat_ffa_partition_properties(
475 current_vm->id, vm);
476 partitions[array_index].properties |=
477 vm_are_notifications_enabled(vm)
478 ? FFA_PARTITION_NOTIFICATION
479 : 0;
Kathleen Capella402fa852022-11-09 16:16:51 -0500480 partitions[array_index].properties |=
481 FFA_PARTITION_AARCH64_EXEC;
Daniel Boulbyce541842022-05-31 15:54:31 +0100482 if (uuid_is_null) {
483 partitions[array_index].uuid = vm->uuid;
484 }
Daniel Boulbyb46cad12021-12-13 17:47:21 +0000485 }
Fuad Tabbae4efcc32020-07-16 15:37:27 +0100486 }
487 }
488
Olivier Depreze562e542020-06-11 17:31:54 +0200489 /* If UUID is Null vm_count must not be zero at this stage. */
490 CHECK(!uuid_is_null || vm_count != 0);
491
492 /*
493 * When running the Hypervisor:
494 * - If UUID is Null the Hypervisor forwards the query to the SPMC for
495 * it to fill with secure partitions information.
Daniel Boulbyb46cad12021-12-13 17:47:21 +0000496 * - If UUID is non-Null vm_count may be zero because the UUID matches
Olivier Depreze562e542020-06-11 17:31:54 +0200497 * a secure partition and the query is forwarded to the SPMC.
498 * When running the SPMC:
499 * - If UUID is non-Null and vm_count is zero it means there is no such
500 * partition identified in the system.
501 */
Daniel Boulbyb46cad12021-12-13 17:47:21 +0000502 plat_ffa_partition_info_get_forward(uuid, flags, partitions, &vm_count);
Olivier Depreze562e542020-06-11 17:31:54 +0200503
504 /*
505 * Unrecognized UUID: does not match any of the VMs (or SPs)
506 * and is not Null.
507 */
Fuad Tabbae4efcc32020-07-16 15:37:27 +0100508 if (vm_count == 0) {
509 return ffa_error(FFA_INVALID_PARAMETERS);
510 }
511
Daniel Boulbyb46cad12021-12-13 17:47:21 +0000512 /*
513 * If the count flag is set we don't need to return the partition info
514 * descriptors.
515 */
516 if (count_flag) {
517 return (struct ffa_value){.func = FFA_SUCCESS_32,
518 .arg2 = vm_count};
519 }
520
Daniel Boulby191b5f02022-02-17 17:26:14 +0000521 vm_locked = vm_lock(current_vm);
522 ret = send_versioned_partition_info_descriptors(vm_locked, partitions,
523 vm_count);
524 vm_unlock(&vm_locked);
525 return ret;
Fuad Tabbae4efcc32020-07-16 15:37:27 +0100526}
527
Andrew Scull9726c252019-01-23 13:44:19 +0000528/**
Andrew Scull55c4d8b2018-12-18 18:50:18 +0000529 * Returns the ID of the VM.
530 */
Andrew Walbranb5ab43c2020-04-30 11:32:54 +0100531struct ffa_value api_ffa_id_get(const struct vcpu *current)
Andrew Scull55c4d8b2018-12-18 18:50:18 +0000532{
Andrew Walbranb5ab43c2020-04-30 11:32:54 +0100533 return (struct ffa_value){.func = FFA_SUCCESS_32,
534 .arg2 = current->vm->id};
Andrew Scull55c4d8b2018-12-18 18:50:18 +0000535}
536
537/**
Olivier Deprez421677d2021-06-18 12:18:53 +0200538 * Returns the SPMC FF-A ID at NS virtual/physical and secure virtual
539 * FF-A instances.
540 * DEN0077A FF-A v1.1 Beta0 section 13.9 FFA_SPM_ID_GET.
Daniel Boulbyb2fb80e2021-02-03 15:09:23 +0000541 */
542struct ffa_value api_ffa_spm_id_get(void)
543{
J-Alves3829fc02021-03-18 12:49:18 +0000544#if (MAKE_FFA_VERSION(1, 1) <= FFA_VERSION_COMPILED)
545 /*
546 * Return the SPMC ID that was fetched during FF-A
547 * initialization.
548 */
549 return (struct ffa_value){.func = FFA_SUCCESS_32,
550 .arg2 = arch_ffa_spmc_id_get()};
551#else
552 return ffa_error(FFA_NOT_SUPPORTED);
553#endif
Daniel Boulbyb2fb80e2021-02-03 15:09:23 +0000554}
555
556/**
Wedson Almeida Filho03306112018-11-26 00:08:03 +0000557 * This function is called by the architecture-specific context switching
Fuad Tabbab0ef2a42019-12-19 11:19:25 +0000558 * function to indicate that register state for the given vCPU has been saved
559 * and can therefore be used by other pCPUs.
Wedson Almeida Filho03306112018-11-26 00:08:03 +0000560 */
561void api_regs_state_saved(struct vcpu *vcpu)
562{
563 sl_lock(&vcpu->lock);
564 vcpu->regs_available = true;
565 sl_unlock(&vcpu->lock);
566}
567
568/**
Wedson Almeida Filhoea62e2e2019-01-09 19:14:59 +0000569 * Retrieves the next waiter and removes it from the wait list if the VM's
570 * mailbox is in a writable state.
571 */
572static struct wait_entry *api_fetch_waiter(struct vm_locked locked_vm)
573{
574 struct wait_entry *entry;
575 struct vm *vm = locked_vm.vm;
576
Andrew Sculld6ee1102019-04-05 22:12:42 +0100577 if (vm->mailbox.state != MAILBOX_STATE_EMPTY ||
Wedson Almeida Filhoea62e2e2019-01-09 19:14:59 +0000578 vm->mailbox.recv == NULL || list_empty(&vm->mailbox.waiter_list)) {
579 /* The mailbox is not writable or there are no waiters. */
580 return NULL;
581 }
582
583 /* Remove waiter from the wait list. */
584 entry = CONTAINER_OF(vm->mailbox.waiter_list.next, struct wait_entry,
585 wait_links);
586 list_remove(&entry->wait_links);
587 return entry;
588}
589
590/**
Andrew Walbran508e63c2018-12-20 17:02:37 +0000591 * Assuming that the arguments have already been checked by the caller, injects
592 * a virtual interrupt of the given ID into the given target vCPU. This doesn't
593 * cause the vCPU to actually be run immediately; it will be taken when the vCPU
594 * is next run, which is up to the scheduler.
595 *
596 * Returns:
597 * - 0 on success if no further action is needed.
598 * - 1 if it was called by the primary VM and the primary VM now needs to wake
599 * up or kick the target vCPU.
600 */
Manish Pandeya5f39fb2020-09-11 09:47:11 +0100601int64_t api_interrupt_inject_locked(struct vcpu_locked target_locked,
602 uint32_t intid, struct vcpu *current,
603 struct vcpu **next)
Andrew Walbran508e63c2018-12-20 17:02:37 +0000604{
Manish Pandey35e452f2021-02-18 21:36:34 +0000605 struct vcpu *target_vcpu = target_locked.vcpu;
Daniel Boulby4ca50f02022-07-29 18:29:34 +0100606 struct interrupts *interrupts = &target_vcpu->interrupts;
Andrew Walbran508e63c2018-12-20 17:02:37 +0000607 int64_t ret = 0;
608
Andrew Walbran508e63c2018-12-20 17:02:37 +0000609 /*
Manish Pandey35e452f2021-02-18 21:36:34 +0000610 * We only need to change state and (maybe) trigger a virtual interrupt
611 * if it is enabled and was not previously pending. Otherwise we can
612 * skip everything except setting the pending bit.
Andrew Walbran508e63c2018-12-20 17:02:37 +0000613 */
Daniel Boulby4ca50f02022-07-29 18:29:34 +0100614 if (!(vcpu_is_virt_interrupt_enabled(interrupts, intid) &&
615 !vcpu_is_virt_interrupt_pending(interrupts, intid))) {
Andrew Walbran508e63c2018-12-20 17:02:37 +0000616 goto out;
617 }
618
619 /* Increment the count. */
Daniel Boulby4ca50f02022-07-29 18:29:34 +0100620 vcpu_interrupt_count_increment(target_locked, interrupts, intid);
Andrew Walbran508e63c2018-12-20 17:02:37 +0000621
622 /*
623 * Only need to update state if there was not already an
624 * interrupt enabled and pending.
625 */
Manish Pandey35e452f2021-02-18 21:36:34 +0000626 if (vcpu_interrupt_count_get(target_locked) != 1) {
Andrew Walbran508e63c2018-12-20 17:02:37 +0000627 goto out;
628 }
629
Andrew Walbran508e63c2018-12-20 17:02:37 +0000630 if (current->vm->id == HF_PRIMARY_VM_ID) {
631 /*
632 * If the call came from the primary VM, let it know that it
633 * should run or kick the target vCPU.
634 */
635 ret = 1;
Manish Pandey35e452f2021-02-18 21:36:34 +0000636 } else if (current != target_vcpu && next != NULL) {
637 *next = api_wake_up(current, target_vcpu);
Andrew Walbran508e63c2018-12-20 17:02:37 +0000638 }
639
640out:
641 /* Either way, make it pending. */
Daniel Boulby4ca50f02022-07-29 18:29:34 +0100642 vcpu_virt_interrupt_set_pending(interrupts, intid);
Andrew Walbran508e63c2018-12-20 17:02:37 +0000643
Olivier Deprezc19a6ea2020-08-06 11:16:07 +0200644 return ret;
645}
646
647/* Wrapper to internal_interrupt_inject with locking of target vCPU */
648static int64_t internal_interrupt_inject(struct vcpu *target_vcpu,
649 uint32_t intid, struct vcpu *current,
650 struct vcpu **next)
651{
652 int64_t ret;
653 struct vcpu_locked target_locked;
654
655 target_locked = vcpu_lock(target_vcpu);
Manish Pandeya5f39fb2020-09-11 09:47:11 +0100656 ret = api_interrupt_inject_locked(target_locked, intid, current, next);
Olivier Deprezc19a6ea2020-08-06 11:16:07 +0200657 vcpu_unlock(&target_locked);
Andrew Walbran508e63c2018-12-20 17:02:37 +0000658
659 return ret;
660}
661
662/**
Federico Recanati25053ee2022-03-14 15:01:53 +0100663 * Constructs the return value from a successful FFA_MSG_POLL or
664 * FFA_MSG_WAIT call.
665 *
666 * Note: FFA_MSG_POLL is deprecated in FF-A v1.1 and should not be used with
667 * FFA_MSG_SEND2; no check is done on mixing FF-A v1.0 and FF-A v1.1 indirect
668 * message protocols.
Andrew Walbrand4d2fa12019-10-01 16:47:25 +0100669 */
Andrew Walbranb5ab43c2020-04-30 11:32:54 +0100670static struct ffa_value ffa_msg_recv_return(const struct vm *receiver)
Andrew Walbrand4d2fa12019-10-01 16:47:25 +0100671{
Andrew Walbrane7ad3c02019-12-24 17:03:04 +0000672 switch (receiver->mailbox.recv_func) {
Andrew Walbranb5ab43c2020-04-30 11:32:54 +0100673 case FFA_MSG_SEND_32:
674 return (struct ffa_value){
675 .func = FFA_MSG_SEND_32,
Andrew Walbrane7ad3c02019-12-24 17:03:04 +0000676 .arg1 = (receiver->mailbox.recv_sender << 16) |
677 receiver->id,
678 .arg3 = receiver->mailbox.recv_size};
Federico Recanati25053ee2022-03-14 15:01:53 +0100679 case FFA_MSG_SEND2_32:
680 return (struct ffa_value){
681 .func = FFA_RUN_32,
682 /*
683 * TODO: FFA_RUN should return vCPU and VM ID in arg1.
684 * Retrieving vCPU requires a rework of the function,
685 * while receiver ID must be set because it's checked by
686 * other APIs (eg: FFA_NOTIFICATION_GET).
687 */
688 .arg1 = receiver->id};
Andrew Walbrane7ad3c02019-12-24 17:03:04 +0000689 default:
690 /* This should never be reached, but return an error in case. */
Andrew Walbran17eebf92020-02-05 16:35:49 +0000691 dlog_error("Tried to return an invalid message function %#x\n",
692 receiver->mailbox.recv_func);
Andrew Walbranb5ab43c2020-04-30 11:32:54 +0100693 return ffa_error(FFA_DENIED);
Andrew Walbrane7ad3c02019-12-24 17:03:04 +0000694 }
Andrew Walbrand4d2fa12019-10-01 16:47:25 +0100695}
696
Madhukar Pappireddy5522c672021-12-17 16:35:51 -0600697struct ffa_value api_ffa_msg_wait(struct vcpu *current, struct vcpu **next,
698 struct ffa_value *args)
699{
Madhukar Pappireddyc857ac22022-06-21 17:37:53 -0500700 enum vcpu_state next_state = VCPU_STATE_WAITING;
Madhukar Pappireddy5522c672021-12-17 16:35:51 -0600701
702 if (args->arg1 != 0U || args->arg2 != 0U || args->arg3 != 0U ||
703 args->arg4 != 0U || args->arg5 != 0U || args->arg6 != 0U ||
704 args->arg7 != 0U) {
705 return ffa_error(FFA_INVALID_PARAMETERS);
706 }
707
Madhukar Pappireddyc857ac22022-06-21 17:37:53 -0500708 if (!plat_ffa_check_runtime_state_transition(
709 current, current->vm->id, HF_INVALID_VM_ID, NULL,
710 FFA_MSG_WAIT_32, &next_state)) {
711 return ffa_error(FFA_DENIED);
712 }
713
714 assert(next_state == VCPU_STATE_WAITING);
715
Madhukar Pappireddydd883202022-10-24 16:49:28 -0500716 return plat_ffa_msg_wait_prepare(current, next);
Madhukar Pappireddy5522c672021-12-17 16:35:51 -0600717}
718
Andrew Walbrand4d2fa12019-10-01 16:47:25 +0100719/**
Fuad Tabbab0ef2a42019-12-19 11:19:25 +0000720 * Prepares the vCPU to run by updating its state and fetching whether a return
Wedson Almeida Filho03306112018-11-26 00:08:03 +0000721 * value needs to be forced onto the vCPU.
722 */
J-Alves6e2abc62021-12-02 14:58:56 +0000723static bool api_vcpu_prepare_run(struct vcpu *current, struct vcpu *vcpu,
Andrew Walbranb5ab43c2020-04-30 11:32:54 +0100724 struct ffa_value *run_ret)
Wedson Almeida Filho03306112018-11-26 00:08:03 +0000725{
Max Shvetsov40108e72020-08-27 12:39:50 +0100726 struct vcpu_locked vcpu_locked;
727 struct vm_locked vm_locked;
Wedson Almeida Filho03306112018-11-26 00:08:03 +0000728 bool ret;
Madhukar Pappireddyb11e0d12021-08-02 19:44:35 -0500729 uint64_t timer_remaining_ns = FFA_SLEEP_INDEFINITE;
J-Alves6e2abc62021-12-02 14:58:56 +0000730 bool need_vm_lock;
Wedson Almeida Filho03306112018-11-26 00:08:03 +0000731
Andrew Scullb06d1752019-02-04 10:15:48 +0000732 /*
Andrew Walbrand81c7d82019-11-27 18:34:46 +0000733 * Check that the registers are available so that the vCPU can be run.
Andrew Scullb06d1752019-02-04 10:15:48 +0000734 *
Andrew Scull4caadaf2019-07-03 13:13:47 +0100735 * The VM lock is not needed in the common case so it must only be taken
736 * when it is going to be needed. This ensures there are no inter-vCPU
737 * dependencies in the common run case meaning the sensitive context
738 * switch performance is consistent.
Andrew Scullb06d1752019-02-04 10:15:48 +0000739 */
Max Shvetsov40108e72020-08-27 12:39:50 +0100740 vcpu_locked = vcpu_lock(vcpu);
741
742#if SECURE_WORLD == 1
J-Alves7ac49052022-02-08 17:20:53 +0000743 bool is_vcpu_reset_and_start = vcpu_secondary_reset_and_start(
744 vcpu_locked, vcpu->vm->secondary_ep, 0);
745 if (is_vcpu_reset_and_start) {
Max Shvetsov40108e72020-08-27 12:39:50 +0100746 dlog_verbose("%s secondary cold boot vmid %#x vcpu id %#x\n",
747 __func__, vcpu->vm->id, current->cpu->id);
748 }
749
750#endif
Andrew Walbrand81c7d82019-11-27 18:34:46 +0000751 /* The VM needs to be locked to deliver mailbox messages. */
J-Alves6e2abc62021-12-02 14:58:56 +0000752 need_vm_lock = vcpu->state == VCPU_STATE_WAITING ||
753 (!vcpu->vm->el0_partition &&
754 (vcpu->state == VCPU_STATE_BLOCKED_INTERRUPT ||
755 vcpu->state == VCPU_STATE_BLOCKED ||
756 vcpu->state == VCPU_STATE_PREEMPTED));
757
Andrew Walbrand81c7d82019-11-27 18:34:46 +0000758 if (need_vm_lock) {
Max Shvetsov40108e72020-08-27 12:39:50 +0100759 vcpu_unlock(&vcpu_locked);
760 vm_locked = vm_lock(vcpu->vm);
761 vcpu_locked = vcpu_lock(vcpu);
Andrew Walbrand81c7d82019-11-27 18:34:46 +0000762 }
763
764 /*
765 * If the vCPU is already running somewhere then we can't run it here
766 * simultaneously. While it is actually running then the state should be
767 * `VCPU_STATE_RUNNING` and `regs_available` should be false. Once it
768 * stops running but while Hafnium is in the process of switching back
769 * to the primary there will be a brief period while the state has been
770 * updated but `regs_available` is still false (until
771 * `api_regs_state_saved` is called). We can't start running it again
772 * until this has finished, so count this state as still running for the
773 * purposes of this check.
774 */
775 if (vcpu->state == VCPU_STATE_RUNNING || !vcpu->regs_available) {
776 /*
777 * vCPU is running on another pCPU.
778 *
779 * It's okay not to return the sleep duration here because the
780 * other physical CPU that is currently running this vCPU will
781 * return the sleep duration if needed.
782 */
Andrew Walbranb5ab43c2020-04-30 11:32:54 +0100783 *run_ret = ffa_error(FFA_BUSY);
Andrew Walbrand81c7d82019-11-27 18:34:46 +0000784 ret = false;
785 goto out;
Andrew Scullb06d1752019-02-04 10:15:48 +0000786 }
Andrew Scull9726c252019-01-23 13:44:19 +0000787
788 if (atomic_load_explicit(&vcpu->vm->aborting, memory_order_relaxed)) {
Andrew Sculld6ee1102019-04-05 22:12:42 +0100789 if (vcpu->state != VCPU_STATE_ABORTED) {
Olivier Deprezf92e5d42020-11-13 16:00:54 +0100790 dlog_notice("Aborting VM %#x vCPU %u\n", vcpu->vm->id,
Andrew Walbran17eebf92020-02-05 16:35:49 +0000791 vcpu_index(vcpu));
Andrew Sculld6ee1102019-04-05 22:12:42 +0100792 vcpu->state = VCPU_STATE_ABORTED;
Andrew Scull9726c252019-01-23 13:44:19 +0000793 }
794 ret = false;
795 goto out;
796 }
797
Andrew Walbran508e63c2018-12-20 17:02:37 +0000798 switch (vcpu->state) {
Andrew Sculld6ee1102019-04-05 22:12:42 +0100799 case VCPU_STATE_RUNNING:
800 case VCPU_STATE_OFF:
801 case VCPU_STATE_ABORTED:
Wedson Almeida Filho03306112018-11-26 00:08:03 +0000802 ret = false;
803 goto out;
Andrew Scullb06d1752019-02-04 10:15:48 +0000804
Madhukar Pappireddyb11e0d12021-08-02 19:44:35 -0500805 case VCPU_STATE_WAITING:
806 /*
807 * An initial FFA_RUN is necessary for secondary VM/SP to reach
808 * the message wait loop.
809 */
810 if (!vcpu->is_bootstrapped) {
811 vcpu->is_bootstrapped = true;
812 break;
813 }
814
J-Alves6e2abc62021-12-02 14:58:56 +0000815 assert(need_vm_lock == true);
816 if (!vm_locked.vm->el0_partition &&
817 plat_ffa_inject_notification_pending_interrupt(
818 vcpu_locked, current, vm_locked)) {
Federico Recanati9dccc4b2022-04-27 12:52:36 +0200819 /* TODO: setting a return value to override
820 * the placeholder (FFA_ERROR(INTERRUPTED))
821 * set by FFA_MSG_WAIT. FF-A v1.1 allows
822 * FFA_MSG_WAIT to successfully return even if
823 * it didn't receive a message. TFTF tests are
824 * still expecting an FFA_ERROR instead,
825 * should be fixed?
826 */
827 arch_regs_set_retval(
828 &vcpu->regs,
829 (struct ffa_value){.func = FFA_RUN_32,
830 // TODO: does it make sense
831 // to set vCPU/receiver?
832 .arg1 = 0});
J-Alves6e2abc62021-12-02 14:58:56 +0000833 break;
834 }
835
Andrew Scullb06d1752019-02-04 10:15:48 +0000836 /*
837 * A pending message allows the vCPU to run so the message can
838 * be delivered directly.
839 */
Andrew Sculld6ee1102019-04-05 22:12:42 +0100840 if (vcpu->vm->mailbox.state == MAILBOX_STATE_RECEIVED) {
Andrew Walbrand4d2fa12019-10-01 16:47:25 +0100841 arch_regs_set_retval(&vcpu->regs,
Andrew Walbranb5ab43c2020-04-30 11:32:54 +0100842 ffa_msg_recv_return(vcpu->vm));
Federico Recanati25053ee2022-03-14 15:01:53 +0100843 if (vcpu->vm->mailbox.recv_func == FFA_MSG_SEND_32) {
844 vcpu->vm->mailbox.state = MAILBOX_STATE_READ;
845 }
Andrew Scullb06d1752019-02-04 10:15:48 +0000846 break;
847 }
Madhukar Pappireddyb11e0d12021-08-02 19:44:35 -0500848
849 if (vcpu_interrupt_count_get(vcpu_locked) > 0) {
850 break;
851 }
852
853 if (arch_timer_enabled(&vcpu->regs)) {
854 timer_remaining_ns =
855 arch_timer_remaining_ns(&vcpu->regs);
856 if (timer_remaining_ns == 0) {
857 break;
858 }
859 } else {
860 dlog_verbose("Timer disabled\n");
861 }
862 run_ret->func = FFA_MSG_WAIT_32;
863 run_ret->arg1 = ffa_vm_vcpu(vcpu->vm->id, vcpu_index(vcpu));
864 run_ret->arg2 = timer_remaining_ns;
865 ret = false;
866 goto out;
Andrew Sculld6ee1102019-04-05 22:12:42 +0100867 case VCPU_STATE_BLOCKED_INTERRUPT:
J-Alves6e2abc62021-12-02 14:58:56 +0000868 if (need_vm_lock &&
869 plat_ffa_inject_notification_pending_interrupt(
870 vcpu_locked, current, vm_locked)) {
871 assert(vcpu_interrupt_count_get(vcpu_locked) > 0);
872 break;
873 }
874
Andrew Scullb06d1752019-02-04 10:15:48 +0000875 /* Allow virtual interrupts to be delivered. */
Manish Pandey35e452f2021-02-18 21:36:34 +0000876 if (vcpu_interrupt_count_get(vcpu_locked) > 0) {
Andrew Scullb06d1752019-02-04 10:15:48 +0000877 break;
878 }
879
Andrew Walbran508e63c2018-12-20 17:02:37 +0000880 if (arch_timer_enabled(&vcpu->regs)) {
Andrew Walbran4692a3a2020-08-07 12:42:01 +0100881 timer_remaining_ns =
Andrew Walbran2fc856a2019-11-04 15:17:24 +0000882 arch_timer_remaining_ns(&vcpu->regs);
883
884 /*
885 * The timer expired so allow the interrupt to be
886 * delivered.
887 */
888 if (timer_remaining_ns == 0) {
889 break;
890 }
Andrew Walbran4692a3a2020-08-07 12:42:01 +0100891 }
Andrew Walbran2fc856a2019-11-04 15:17:24 +0000892
Andrew Walbran4692a3a2020-08-07 12:42:01 +0100893 /*
894 * The vCPU is not ready to run, return the appropriate code to
895 * the primary which called vcpu_run.
896 */
Madhukar Pappireddyb11e0d12021-08-02 19:44:35 -0500897 run_ret->func = HF_FFA_RUN_WAIT_FOR_INTERRUPT;
Andrew Walbran4692a3a2020-08-07 12:42:01 +0100898 run_ret->arg1 = ffa_vm_vcpu(vcpu->vm->id, vcpu_index(vcpu));
899 run_ret->arg2 = timer_remaining_ns;
Andrew Walbran508e63c2018-12-20 17:02:37 +0000900
901 ret = false;
902 goto out;
Andrew Scullb06d1752019-02-04 10:15:48 +0000903
Madhukar Pappireddyb11e0d12021-08-02 19:44:35 -0500904 case VCPU_STATE_BLOCKED:
905 /* A blocked vCPU is run unconditionally. Fall through. */
906 case VCPU_STATE_PREEMPTED:
J-Alves6e2abc62021-12-02 14:58:56 +0000907 /* Check NPI is to be injected here. */
908 if (need_vm_lock) {
909 plat_ffa_inject_notification_pending_interrupt(
910 vcpu_locked, current, vm_locked);
911 }
Andrew Walbran508e63c2018-12-20 17:02:37 +0000912 break;
Madhukar Pappireddyb11e0d12021-08-02 19:44:35 -0500913 default:
914 /*
915 * Execution not expected to reach here. Deny the request
916 * gracefully.
917 */
918 *run_ret = ffa_error(FFA_DENIED);
919 ret = false;
920 goto out;
Wedson Almeida Filho03306112018-11-26 00:08:03 +0000921 }
922
Madhukar Pappireddy1480fce2022-06-21 18:09:25 -0500923 plat_ffa_init_schedule_mode_ffa_run(current, vcpu_locked);
924
Andrew Scullb06d1752019-02-04 10:15:48 +0000925 /* It has been decided that the vCPU should be run. */
Wedson Almeida Filho03306112018-11-26 00:08:03 +0000926 vcpu->cpu = current->cpu;
Andrew Sculld6ee1102019-04-05 22:12:42 +0100927 vcpu->state = VCPU_STATE_RUNNING;
Wedson Almeida Filho03306112018-11-26 00:08:03 +0000928
J-Alves7ac49052022-02-08 17:20:53 +0000929#if SECURE_WORLD == 1
930 /* Set the designated GP register with the vCPU ID. */
931 if (is_vcpu_reset_and_start) {
932 vcpu_set_phys_core_idx(vcpu_locked.vcpu);
933 }
934#endif
935
Wedson Almeida Filho03306112018-11-26 00:08:03 +0000936 /*
Wedson Almeida Filho03306112018-11-26 00:08:03 +0000937 * Mark the registers as unavailable now that we're about to reflect
938 * them onto the real registers. This will also prevent another physical
939 * CPU from trying to read these registers.
940 */
941 vcpu->regs_available = false;
942
943 ret = true;
944
945out:
Max Shvetsov40108e72020-08-27 12:39:50 +0100946 vcpu_unlock(&vcpu_locked);
Andrew Scullb06d1752019-02-04 10:15:48 +0000947 if (need_vm_lock) {
Max Shvetsov40108e72020-08-27 12:39:50 +0100948 vm_unlock(&vm_locked);
Andrew Scullb06d1752019-02-04 10:15:48 +0000949 }
Wedson Almeida Filho03306112018-11-26 00:08:03 +0000950 return ret;
951}
952
Andrew Walbranb5ab43c2020-04-30 11:32:54 +0100953struct ffa_value api_ffa_run(ffa_vm_id_t vm_id, ffa_vcpu_index_t vcpu_idx,
Madhukar Pappireddyb11e0d12021-08-02 19:44:35 -0500954 struct vcpu *current, struct vcpu **next)
Wedson Almeida Filho3fcbcff2018-07-10 23:53:39 +0100955{
Wedson Almeida Filho2f94ec12018-07-26 16:00:48 +0100956 struct vm *vm;
Wedson Almeida Filho3fcbcff2018-07-10 23:53:39 +0100957 struct vcpu *vcpu;
Andrew Walbranb5ab43c2020-04-30 11:32:54 +0100958 struct ffa_value ret = ffa_error(FFA_INVALID_PARAMETERS);
Madhukar Pappireddyc857ac22022-06-21 17:37:53 -0500959 enum vcpu_state next_state = VCPU_STATE_BLOCKED;
960 struct vcpu_locked current_locked;
Wedson Almeida Filho3fcbcff2018-07-10 23:53:39 +0100961
Raghu Krishnamurthy048d63f2021-12-11 12:45:41 -0800962 if (!plat_ffa_run_checks(current, vm_id, vcpu_idx, &ret, next)) {
Madhukar Pappireddyb11e0d12021-08-02 19:44:35 -0500963 return ret;
Andrew Scull7364a8e2018-07-19 15:39:29 +0100964 }
Wedson Almeida Filho3fcbcff2018-07-10 23:53:39 +0100965
Raghu Krishnamurthy62f97a72021-07-27 02:14:59 -0700966 if (plat_ffa_run_forward(vm_id, vcpu_idx, &ret)) {
967 return ret;
968 }
969
Andrew Scull19503262018-09-20 14:48:39 +0100970 /* The requested VM must exist. */
Andrew Walbran42347a92019-05-09 13:59:03 +0100971 vm = vm_find(vm_id);
Andrew Scull19503262018-09-20 14:48:39 +0100972 if (vm == NULL) {
Andrew Scull6d2db332018-10-10 15:28:17 +0100973 goto out;
Andrew Scull19503262018-09-20 14:48:39 +0100974 }
975
Fuad Tabbaed294af2019-12-20 10:43:01 +0000976 /* The requested vCPU must exist. */
Wedson Almeida Filho2f94ec12018-07-26 16:00:48 +0100977 if (vcpu_idx >= vm->vcpu_count) {
Andrew Scull6d2db332018-10-10 15:28:17 +0100978 goto out;
Andrew Scull7364a8e2018-07-19 15:39:29 +0100979 }
Wedson Almeida Filho3fcbcff2018-07-10 23:53:39 +0100980
Madhukar Pappireddyc857ac22022-06-21 17:37:53 -0500981 /*
982 * Refer Figure 8.13 Scenario 1 of the FF-A v1.1 EAC spec. SPMC
983 * bypasses the intermediate execution contexts and resumes the
984 * SP execution context that was originally preempted.
985 */
986 if (*next != NULL) {
987 vcpu = *next;
988 } else {
989 vcpu = vm_get_vcpu(vm, vcpu_idx);
990 }
991
992 if (!plat_ffa_check_runtime_state_transition(current, current->vm->id,
993 HF_INVALID_VM_ID, vcpu,
994 FFA_RUN_32, &next_state)) {
995 return ffa_error(FFA_DENIED);
996 }
997
Andrew Scullb06d1752019-02-04 10:15:48 +0000998 if (!api_vcpu_prepare_run(current, vcpu, &ret)) {
Wedson Almeida Filho03306112018-11-26 00:08:03 +0000999 goto out;
Wedson Almeida Filho2f94ec12018-07-26 16:00:48 +01001000 }
Wedson Almeida Filho03306112018-11-26 00:08:03 +00001001
Andrew Walbran508e63c2018-12-20 17:02:37 +00001002 /*
1003 * Inject timer interrupt if timer has expired. It's safe to access
1004 * vcpu->regs here because api_vcpu_prepare_run already made sure that
1005 * regs_available was true (and then set it to false) before returning
1006 * true.
1007 */
1008 if (arch_timer_pending(&vcpu->regs)) {
1009 /* Make virtual timer interrupt pending. */
Andrew Walbranfc9d4382019-05-10 18:07:21 +01001010 internal_interrupt_inject(vcpu, HF_VIRTUAL_TIMER_INTID, vcpu,
1011 NULL);
Andrew Walbran508e63c2018-12-20 17:02:37 +00001012
1013 /*
1014 * Set the mask bit so the hardware interrupt doesn't fire
1015 * again. Ideally we wouldn't do this because it affects what
1016 * the secondary vCPU sees, but if we don't then we end up with
1017 * a loop of the interrupt firing each time we try to return to
1018 * the secondary vCPU.
1019 */
1020 arch_timer_mask(&vcpu->regs);
1021 }
1022
Fuad Tabbaed294af2019-12-20 10:43:01 +00001023 /* Switch to the vCPU. */
Wedson Almeida Filho03306112018-11-26 00:08:03 +00001024 *next = vcpu;
Wedson Almeida Filho03306112018-11-26 00:08:03 +00001025
Madhukar Pappireddyc857ac22022-06-21 17:37:53 -05001026 assert(next_state == VCPU_STATE_BLOCKED);
1027 current_locked = vcpu_lock(current);
1028 current->state = VCPU_STATE_BLOCKED;
1029 vcpu_unlock(&current_locked);
1030
Andrew Scull33fecd32019-01-08 14:48:27 +00001031 /*
1032 * Set a placeholder return code to the scheduler. This will be
1033 * overwritten when the switch back to the primary occurs.
1034 */
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01001035 ret.func = FFA_INTERRUPT_32;
Andrew Walbran7e824602020-10-22 16:51:40 +01001036 ret.arg1 = 0;
Andrew Walbran7a1ea0b2019-10-02 18:18:44 +01001037 ret.arg2 = 0;
Andrew Scull33fecd32019-01-08 14:48:27 +00001038
Andrew Scull6d2db332018-10-10 15:28:17 +01001039out:
Wedson Almeida Filho2f94ec12018-07-26 16:00:48 +01001040 return ret;
Wedson Almeida Filho3fcbcff2018-07-10 23:53:39 +01001041}
1042
1043/**
Andrew Scull81e85092018-12-12 12:56:20 +00001044 * Check that the mode indicates memory that is valid, owned and exclusive.
1045 */
Andrew Walbran1281ed42019-10-22 17:23:40 +01001046static bool api_mode_valid_owned_and_exclusive(uint32_t mode)
Andrew Scull81e85092018-12-12 12:56:20 +00001047{
Andrew Scullb5f49e02019-10-02 13:20:47 +01001048 return (mode & (MM_MODE_D | MM_MODE_INVALID | MM_MODE_UNOWNED |
1049 MM_MODE_SHARED)) == 0;
Andrew Scull81e85092018-12-12 12:56:20 +00001050}
1051
1052/**
Andrew Walbranc8a01972020-09-22 11:23:30 +01001053 * Determines the value to be returned by api_ffa_rxtx_map and
1054 * api_ffa_rx_release after they've succeeded. If a secondary VM is running and
1055 * there are waiters, it also switches back to the primary VM for it to wake
1056 * waiters up.
Wedson Almeida Filhoea62e2e2019-01-09 19:14:59 +00001057 */
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01001058static struct ffa_value api_waiter_result(struct vm_locked locked_vm,
1059 struct vcpu *current,
1060 struct vcpu **next)
Wedson Almeida Filhoea62e2e2019-01-09 19:14:59 +00001061{
1062 struct vm *vm = locked_vm.vm;
Wedson Almeida Filhoea62e2e2019-01-09 19:14:59 +00001063
Federico Recanati86f6cde2022-04-28 19:44:49 +02001064 CHECK(list_empty(&vm->mailbox.waiter_list));
1065
Wedson Almeida Filhoea62e2e2019-01-09 19:14:59 +00001066 if (list_empty(&vm->mailbox.waiter_list)) {
1067 /* No waiters, nothing else to do. */
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01001068 return (struct ffa_value){.func = FFA_SUCCESS_32};
Wedson Almeida Filhoea62e2e2019-01-09 19:14:59 +00001069 }
1070
1071 if (vm->id == HF_PRIMARY_VM_ID) {
1072 /* The caller is the primary VM. Tell it to wake up waiters. */
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01001073 return (struct ffa_value){.func = FFA_RX_RELEASE_32};
Wedson Almeida Filhoea62e2e2019-01-09 19:14:59 +00001074 }
1075
1076 /*
1077 * Switch back to the primary VM, informing it that there are waiters
1078 * that need to be notified.
1079 */
Andrew Walbranbfffb0f2019-11-05 14:02:34 +00001080 *next = api_switch_to_primary(
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01001081 current, (struct ffa_value){.func = FFA_RX_RELEASE_32},
Madhukar Pappireddyb11e0d12021-08-02 19:44:35 -05001082 VCPU_STATE_WAITING);
Wedson Almeida Filhoea62e2e2019-01-09 19:14:59 +00001083
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01001084 return (struct ffa_value){.func = FFA_SUCCESS_32};
Wedson Almeida Filhoea62e2e2019-01-09 19:14:59 +00001085}
1086
1087/**
Manish Pandeyd34f8892020-06-19 17:41:07 +01001088 * Configures the hypervisor's stage-1 view of the send and receive pages.
Andrew Sculle1322792019-07-01 17:46:10 +01001089 */
Manish Pandeyd34f8892020-06-19 17:41:07 +01001090static bool api_vm_configure_stage1(struct mm_stage1_locked mm_stage1_locked,
1091 struct vm_locked vm_locked,
Andrew Sculle1322792019-07-01 17:46:10 +01001092 paddr_t pa_send_begin, paddr_t pa_send_end,
1093 paddr_t pa_recv_begin, paddr_t pa_recv_end,
Olivier Deprez96a2a262020-06-11 17:21:38 +02001094 uint32_t extra_attributes,
Andrew Sculle1322792019-07-01 17:46:10 +01001095 struct mpool *local_page_pool)
1096{
1097 bool ret;
Andrew Sculle1322792019-07-01 17:46:10 +01001098
1099 /* Map the send page as read-only in the hypervisor address space. */
1100 vm_locked.vm->mailbox.send =
1101 mm_identity_map(mm_stage1_locked, pa_send_begin, pa_send_end,
Olivier Deprez96a2a262020-06-11 17:21:38 +02001102 MM_MODE_R | extra_attributes, local_page_pool);
Andrew Sculle1322792019-07-01 17:46:10 +01001103 if (!vm_locked.vm->mailbox.send) {
Andrew Sculle1322792019-07-01 17:46:10 +01001104 goto fail;
1105 }
1106
1107 /*
1108 * Map the receive page as writable in the hypervisor address space. On
1109 * failure, unmap the send page before returning.
1110 */
1111 vm_locked.vm->mailbox.recv =
1112 mm_identity_map(mm_stage1_locked, pa_recv_begin, pa_recv_end,
Olivier Deprez96a2a262020-06-11 17:21:38 +02001113 MM_MODE_W | extra_attributes, local_page_pool);
Andrew Sculle1322792019-07-01 17:46:10 +01001114 if (!vm_locked.vm->mailbox.recv) {
Andrew Sculle1322792019-07-01 17:46:10 +01001115 goto fail_undo_send;
1116 }
1117
1118 ret = true;
1119 goto out;
1120
1121 /*
1122 * The following mappings will not require more memory than is available
1123 * in the local pool.
1124 */
1125fail_undo_send:
1126 vm_locked.vm->mailbox.send = NULL;
Andrew Scull7e8de322019-07-02 13:00:56 +01001127 CHECK(mm_unmap(mm_stage1_locked, pa_send_begin, pa_send_end,
1128 local_page_pool));
Andrew Sculle1322792019-07-01 17:46:10 +01001129
1130fail:
1131 ret = false;
1132
1133out:
Andrew Sculle1322792019-07-01 17:46:10 +01001134 return ret;
1135}
1136
1137/**
Manish Pandeyd34f8892020-06-19 17:41:07 +01001138 * Sanity checks and configures the send and receive pages in the VM stage-2
1139 * and hypervisor stage-1 page tables.
1140 *
1141 * Returns:
1142 * - FFA_ERROR FFA_INVALID_PARAMETERS if the given addresses are not properly
Daniel Boulby6f8941e2021-06-14 18:27:18 +01001143 * aligned, are the same or have invalid attributes.
Manish Pandeyd34f8892020-06-19 17:41:07 +01001144 * - FFA_ERROR FFA_NO_MEMORY if the hypervisor was unable to map the buffers
1145 * due to insuffient page table memory.
Daniel Boulby6f8941e2021-06-14 18:27:18 +01001146 * - FFA_ERROR FFA_DENIED if the pages are already mapped.
Manish Pandeyd34f8892020-06-19 17:41:07 +01001147 * - FFA_SUCCESS on success if no further action is needed.
Andrew Sculle1322792019-07-01 17:46:10 +01001148 */
Manish Pandeyd34f8892020-06-19 17:41:07 +01001149
1150struct ffa_value api_vm_configure_pages(
1151 struct mm_stage1_locked mm_stage1_locked, struct vm_locked vm_locked,
1152 ipaddr_t send, ipaddr_t recv, uint32_t page_count,
1153 struct mpool *local_page_pool)
Andrew Sculle1322792019-07-01 17:46:10 +01001154{
Manish Pandeyd34f8892020-06-19 17:41:07 +01001155 struct ffa_value ret;
1156 paddr_t pa_send_begin;
1157 paddr_t pa_send_end;
1158 paddr_t pa_recv_begin;
1159 paddr_t pa_recv_end;
Federico Recanati8d8b1cf2022-04-14 13:16:00 +02001160 uint32_t orig_send_mode = 0;
1161 uint32_t orig_recv_mode = 0;
Olivier Deprez96a2a262020-06-11 17:21:38 +02001162 uint32_t extra_attributes;
Manish Pandeyd34f8892020-06-19 17:41:07 +01001163
1164 /* We only allow these to be setup once. */
1165 if (vm_locked.vm->mailbox.send || vm_locked.vm->mailbox.recv) {
1166 ret = ffa_error(FFA_DENIED);
1167 goto out;
1168 }
1169
1170 /* Hafnium only supports a fixed size of RX/TX buffers. */
1171 if (page_count != HF_MAILBOX_SIZE / FFA_PAGE_SIZE) {
1172 ret = ffa_error(FFA_INVALID_PARAMETERS);
1173 goto out;
1174 }
1175
1176 /* Fail if addresses are not page-aligned. */
1177 if (!is_aligned(ipa_addr(send), PAGE_SIZE) ||
1178 !is_aligned(ipa_addr(recv), PAGE_SIZE)) {
1179 ret = ffa_error(FFA_INVALID_PARAMETERS);
1180 goto out;
1181 }
1182
1183 /* Convert to physical addresses. */
1184 pa_send_begin = pa_from_ipa(send);
1185 pa_send_end = pa_add(pa_send_begin, HF_MAILBOX_SIZE);
1186 pa_recv_begin = pa_from_ipa(recv);
1187 pa_recv_end = pa_add(pa_recv_begin, HF_MAILBOX_SIZE);
1188
1189 /* Fail if the same page is used for the send and receive pages. */
1190 if (pa_addr(pa_send_begin) == pa_addr(pa_recv_begin)) {
1191 ret = ffa_error(FFA_INVALID_PARAMETERS);
1192 goto out;
1193 }
Andrew Sculle1322792019-07-01 17:46:10 +01001194
Federico Recanati8d8b1cf2022-04-14 13:16:00 +02001195 /* Set stage 2 translation tables only for virtual FF-A instances. */
1196 if (vm_id_is_current_world(vm_locked.vm->id)) {
1197 /*
1198 * Ensure the pages are valid, owned and exclusive to the VM and
1199 * that the VM has the required access to the memory.
1200 */
1201 if (!vm_mem_get_mode(vm_locked, send, ipa_add(send, PAGE_SIZE),
1202 &orig_send_mode) ||
1203 !api_mode_valid_owned_and_exclusive(orig_send_mode) ||
1204 (orig_send_mode & MM_MODE_R) == 0 ||
1205 (orig_send_mode & MM_MODE_W) == 0) {
1206 dlog_error(
1207 "VM doesn't have required access rights to map "
1208 "TX buffer in stage 2.\n");
1209 ret = ffa_error(FFA_INVALID_PARAMETERS);
1210 goto out;
1211 }
Manish Pandeyd34f8892020-06-19 17:41:07 +01001212
Federico Recanati8d8b1cf2022-04-14 13:16:00 +02001213 if (!vm_mem_get_mode(vm_locked, recv, ipa_add(recv, PAGE_SIZE),
1214 &orig_recv_mode) ||
1215 !api_mode_valid_owned_and_exclusive(orig_recv_mode) ||
1216 (orig_recv_mode & MM_MODE_R) == 0) {
1217 dlog_error(
1218 "VM doesn't have required access rights to map "
1219 "RX buffer in stage 2.\n");
1220 ret = ffa_error(FFA_INVALID_PARAMETERS);
1221 goto out;
1222 }
Andrew Sculle1322792019-07-01 17:46:10 +01001223
Federico Recanati8d8b1cf2022-04-14 13:16:00 +02001224 /* Take memory ownership away from the VM and mark as shared. */
1225 uint32_t mode = MM_MODE_UNOWNED | MM_MODE_SHARED | MM_MODE_R |
1226 MM_MODE_W;
1227 if (vm_locked.vm->el0_partition) {
1228 mode |= MM_MODE_USER | MM_MODE_NG;
1229 }
Raghu Krishnamurthy95c3a272021-02-26 18:09:41 -08001230
Federico Recanati8d8b1cf2022-04-14 13:16:00 +02001231 if (!vm_identity_map(vm_locked, pa_send_begin, pa_send_end,
1232 mode, local_page_pool, NULL)) {
1233 dlog_error(
1234 "Cannot allocate a new entry in stage 2 "
1235 "translation table.\n");
1236 ret = ffa_error(FFA_NO_MEMORY);
1237 goto out;
1238 }
Andrew Sculle1322792019-07-01 17:46:10 +01001239
Federico Recanati8d8b1cf2022-04-14 13:16:00 +02001240 mode = MM_MODE_UNOWNED | MM_MODE_SHARED | MM_MODE_R;
1241 if (vm_locked.vm->el0_partition) {
1242 mode |= MM_MODE_USER | MM_MODE_NG;
1243 }
Raghu Krishnamurthy95c3a272021-02-26 18:09:41 -08001244
Federico Recanati8d8b1cf2022-04-14 13:16:00 +02001245 if (!vm_identity_map(vm_locked, pa_recv_begin, pa_recv_end,
1246 mode, local_page_pool, NULL)) {
1247 /* TODO: partial defrag of failed range. */
1248 /* Recover any memory consumed in failed mapping. */
1249 vm_ptable_defrag(vm_locked, local_page_pool);
1250 goto fail_undo_send;
1251 }
Andrew Sculle1322792019-07-01 17:46:10 +01001252 }
1253
Olivier Deprez96a2a262020-06-11 17:21:38 +02001254 /* Get extra send/recv pages mapping attributes for the given VM ID. */
1255 extra_attributes = arch_mm_extra_attributes_from_vm(vm_locked.vm->id);
1256
Raghu Krishnamurthy95c3a272021-02-26 18:09:41 -08001257 /*
1258 * For EL0 partitions, since both the partition and the hypervisor code
1259 * use the EL2&0 translation regime, it is critical to mark the mappings
1260 * of the send and recv buffers as non-global in the TLB. For one, if we
1261 * dont mark it as non-global, it would cause TLB conflicts since there
1262 * would be an identity mapping with non-global attribute in the
1263 * partitions page tables, but another identity mapping in the
1264 * hypervisor page tables with the global attribute. The other issue is
1265 * one of security, we dont want other partitions to be able to access
1266 * other partitions buffers through cached translations.
1267 */
1268 if (vm_locked.vm->el0_partition) {
1269 extra_attributes |= MM_MODE_NG;
1270 }
1271
Manish Pandeyd34f8892020-06-19 17:41:07 +01001272 if (!api_vm_configure_stage1(mm_stage1_locked, vm_locked, pa_send_begin,
1273 pa_send_end, pa_recv_begin, pa_recv_end,
Olivier Deprez96a2a262020-06-11 17:21:38 +02001274 extra_attributes, local_page_pool)) {
Andrew Sculle1322792019-07-01 17:46:10 +01001275 goto fail_undo_send_and_recv;
1276 }
1277
Manish Pandeyd34f8892020-06-19 17:41:07 +01001278 ret = (struct ffa_value){.func = FFA_SUCCESS_32};
Andrew Sculle1322792019-07-01 17:46:10 +01001279 goto out;
1280
Andrew Sculle1322792019-07-01 17:46:10 +01001281fail_undo_send_and_recv:
Andrew Scull3c257452019-11-26 13:32:50 +00001282 CHECK(vm_identity_map(vm_locked, pa_recv_begin, pa_recv_end,
Federico Recanati8d8b1cf2022-04-14 13:16:00 +02001283 orig_recv_mode, local_page_pool, NULL));
Andrew Sculle1322792019-07-01 17:46:10 +01001284
1285fail_undo_send:
Andrew Scull3c257452019-11-26 13:32:50 +00001286 CHECK(vm_identity_map(vm_locked, pa_send_begin, pa_send_end,
Manish Pandeyd34f8892020-06-19 17:41:07 +01001287 orig_send_mode, local_page_pool, NULL));
1288 ret = ffa_error(FFA_NO_MEMORY);
Andrew Sculle1322792019-07-01 17:46:10 +01001289
1290out:
Andrew Sculle1322792019-07-01 17:46:10 +01001291 return ret;
1292}
1293
Federico Recanati8d8b1cf2022-04-14 13:16:00 +02001294static void api_get_rxtx_description(struct vm_locked vm_locked, ipaddr_t *send,
1295 ipaddr_t *recv, uint32_t *page_count,
1296 ffa_vm_id_t *owner_vm_id)
1297{
1298 /*
1299 * If the message has been forwarded the effective addresses are in
1300 * hypervisor's TX buffer.
1301 */
1302 bool forwarded = (vm_locked.vm->id == HF_OTHER_WORLD_ID) &&
1303 (ipa_addr(*send) == 0) && (ipa_addr(*recv) == 0) &&
1304 (*page_count == 0);
1305
1306 if (forwarded) {
1307 struct ffa_endpoint_rx_tx_descriptor *endpoint_desc =
1308 (struct ffa_endpoint_rx_tx_descriptor *)
1309 vm_locked.vm->mailbox.send;
1310 struct ffa_composite_memory_region *rx_region =
1311 ffa_enpoint_get_rx_memory_region(endpoint_desc);
1312 struct ffa_composite_memory_region *tx_region =
1313 ffa_enpoint_get_tx_memory_region(endpoint_desc);
1314
1315 *owner_vm_id = endpoint_desc->endpoint_id;
1316 *recv = ipa_init(rx_region->constituents[0].address);
1317 *send = ipa_init(tx_region->constituents[0].address);
1318 *page_count = rx_region->constituents[0].page_count;
1319 } else {
1320 *owner_vm_id = vm_locked.vm->id;
1321 }
1322}
Andrew Sculle1322792019-07-01 17:46:10 +01001323/**
Wedson Almeida Filho2f94ec12018-07-26 16:00:48 +01001324 * Configures the VM to send/receive data through the specified pages. The pages
Manish Pandeyd34f8892020-06-19 17:41:07 +01001325 * must not be shared. Locking of the page tables combined with a local memory
1326 * pool ensures there will always be enough memory to recover from any errors
1327 * that arise. The stage-1 page tables must be locked so memory cannot be taken
1328 * by another core which could result in this transaction being unable to roll
1329 * back in the case of an error.
Wedson Almeida Filhoea62e2e2019-01-09 19:14:59 +00001330 *
1331 * Returns:
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01001332 * - FFA_ERROR FFA_INVALID_PARAMETERS if the given addresses are not properly
Daniel Boulby6f8941e2021-06-14 18:27:18 +01001333 * aligned, are the same or have invalid attributes.
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01001334 * - FFA_ERROR FFA_NO_MEMORY if the hypervisor was unable to map the buffers
Andrew Walbranbfffb0f2019-11-05 14:02:34 +00001335 * due to insuffient page table memory.
Daniel Boulby6f8941e2021-06-14 18:27:18 +01001336 * - FFA_ERROR FFA_DENIED if the pages are already mapped.
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01001337 * - FFA_SUCCESS on success if no further action is needed.
Wedson Almeida Filho2f94ec12018-07-26 16:00:48 +01001338 */
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01001339struct ffa_value api_ffa_rxtx_map(ipaddr_t send, ipaddr_t recv,
Federico Recanati9f1b6532022-04-14 13:15:28 +02001340 uint32_t page_count, struct vcpu *current)
Wedson Almeida Filho2f94ec12018-07-26 16:00:48 +01001341{
Wedson Almeida Filho00df6c72018-10-18 11:19:24 +01001342 struct vm *vm = current->vm;
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01001343 struct ffa_value ret;
Manish Pandeyd34f8892020-06-19 17:41:07 +01001344 struct vm_locked vm_locked;
Federico Recanati8d8b1cf2022-04-14 13:16:00 +02001345 struct vm_locked owner_vm_locked;
Manish Pandeyd34f8892020-06-19 17:41:07 +01001346 struct mm_stage1_locked mm_stage1_locked;
1347 struct mpool local_page_pool;
Federico Recanati8d8b1cf2022-04-14 13:16:00 +02001348 ffa_vm_id_t owner_vm_id;
1349
1350 vm_locked = vm_lock(vm);
1351 /*
1352 * Get the original buffer addresses and VM ID in case of forwarded
1353 * message.
1354 */
1355 api_get_rxtx_description(vm_locked, &send, &recv, &page_count,
1356 &owner_vm_id);
1357 vm_unlock(&vm_locked);
1358
1359 owner_vm_locked = plat_ffa_vm_find_locked_create(owner_vm_id);
1360 if (owner_vm_locked.vm == NULL) {
1361 dlog_error("Cannot map RX/TX for VM ID %#x, not found.\n",
1362 owner_vm_id);
1363 return ffa_error(FFA_DENIED);
1364 }
Andrew Scull220e6212018-12-21 18:09:00 +00001365
Andrew Scull3c0a90a2019-07-01 11:55:53 +01001366 /*
Manish Pandeyd34f8892020-06-19 17:41:07 +01001367 * Create a local pool so any freed memory can't be used by another
1368 * thread. This is to ensure the original mapping can be restored if any
1369 * stage of the process fails.
Andrew Scull3c0a90a2019-07-01 11:55:53 +01001370 */
Manish Pandeyd34f8892020-06-19 17:41:07 +01001371 mpool_init_with_fallback(&local_page_pool, &api_page_pool);
1372
Manish Pandeyd34f8892020-06-19 17:41:07 +01001373 mm_stage1_locked = mm_lock_stage1();
Andrew Scull220e6212018-12-21 18:09:00 +00001374
Federico Recanati8d8b1cf2022-04-14 13:16:00 +02001375 ret = api_vm_configure_pages(mm_stage1_locked, owner_vm_locked, send,
1376 recv, page_count, &local_page_pool);
Manish Pandeyd34f8892020-06-19 17:41:07 +01001377 if (ret.func != FFA_SUCCESS_32) {
Andrew Walbranbfffb0f2019-11-05 14:02:34 +00001378 goto exit;
Wedson Almeida Filho2f94ec12018-07-26 16:00:48 +01001379 }
1380
Federico Recanati8d8b1cf2022-04-14 13:16:00 +02001381 /* Forward buffer mapping to SPMC if coming from a VM. */
1382 plat_ffa_rxtx_map_forward(owner_vm_locked);
1383
Federico Recanati9f1b6532022-04-14 13:15:28 +02001384 ret = (struct ffa_value){.func = FFA_SUCCESS_32};
Andrew Scull220e6212018-12-21 18:09:00 +00001385
Wedson Almeida Filho2f94ec12018-07-26 16:00:48 +01001386exit:
Manish Pandeyd34f8892020-06-19 17:41:07 +01001387 mpool_fini(&local_page_pool);
Manish Pandeyd34f8892020-06-19 17:41:07 +01001388 mm_unlock_stage1(&mm_stage1_locked);
Federico Recanati8d8b1cf2022-04-14 13:16:00 +02001389 vm_unlock(&owner_vm_locked);
Wedson Almeida Filho2f94ec12018-07-26 16:00:48 +01001390
1391 return ret;
1392}
1393
1394/**
Daniel Boulby9e420ca2021-07-07 15:03:49 +01001395 * Unmaps the RX/TX buffer pair with a partition or partition manager from the
1396 * translation regime of the caller. Unmap the region for the hypervisor and
1397 * set the memory region to owned and exclusive for the component. Since the
1398 * memory region mapped in the page table, when the buffers were originally
1399 * created we can safely remap it.
1400 *
1401 * Returns:
1402 * - FFA_ERROR FFA_INVALID_PARAMETERS if there is no buffer pair registered on
1403 * behalf of the caller.
1404 * - FFA_SUCCESS on success if no further action is needed.
1405 */
1406struct ffa_value api_ffa_rxtx_unmap(ffa_vm_id_t allocator_id,
1407 struct vcpu *current)
1408{
1409 struct vm *vm = current->vm;
1410 struct vm_locked vm_locked;
Federico Recanati8da9e332022-02-10 11:00:17 +01001411 ffa_vm_id_t owner_vm_id;
Daniel Boulby9e420ca2021-07-07 15:03:49 +01001412 struct mm_stage1_locked mm_stage1_locked;
1413 paddr_t send_pa_begin;
1414 paddr_t send_pa_end;
1415 paddr_t recv_pa_begin;
1416 paddr_t recv_pa_end;
Federico Recanati8da9e332022-02-10 11:00:17 +01001417 struct ffa_value ret = (struct ffa_value){.func = FFA_SUCCESS_32};
Daniel Boulby9e420ca2021-07-07 15:03:49 +01001418
Federico Recanati8da9e332022-02-10 11:00:17 +01001419 /* Ensure `allocator_id` is set only at Non-Secure Physical instance. */
1420 if (vm_id_is_current_world(vm->id) && (allocator_id != 0)) {
1421 dlog_error("`allocator_id` must be 0 at virtual instances.\n");
1422 return ffa_error(FFA_INVALID_PARAMETERS);
1423 }
1424
1425 /* VM ID of which buffers have to be unmapped. */
1426 owner_vm_id = (allocator_id != 0) ? allocator_id : vm->id;
1427
1428 vm_locked = plat_ffa_vm_find_locked(owner_vm_id);
1429 vm = vm_locked.vm;
1430 if (vm == NULL) {
1431 dlog_error("Cannot unmap RX/TX for VM ID %#x, not found.\n",
1432 owner_vm_id);
Daniel Boulby9e420ca2021-07-07 15:03:49 +01001433 return ffa_error(FFA_INVALID_PARAMETERS);
1434 }
1435
1436 /* Get send and receive buffers. */
1437 if (vm->mailbox.send == NULL || vm->mailbox.recv == NULL) {
Olivier Deprez86d87ae2021-08-19 14:27:46 +02001438 dlog_verbose(
Daniel Boulby9e420ca2021-07-07 15:03:49 +01001439 "No buffer pair registered on behalf of the caller.\n");
Federico Recanati8da9e332022-02-10 11:00:17 +01001440 ret = ffa_error(FFA_INVALID_PARAMETERS);
1441 goto out;
Daniel Boulby9e420ca2021-07-07 15:03:49 +01001442 }
1443
1444 /* Currently a mailbox size of 1 page is assumed. */
1445 send_pa_begin = pa_from_va(va_from_ptr(vm->mailbox.send));
1446 send_pa_end = pa_add(send_pa_begin, HF_MAILBOX_SIZE);
1447 recv_pa_begin = pa_from_va(va_from_ptr(vm->mailbox.recv));
1448 recv_pa_end = pa_add(recv_pa_begin, HF_MAILBOX_SIZE);
1449
Daniel Boulby9e420ca2021-07-07 15:03:49 +01001450 mm_stage1_locked = mm_lock_stage1();
1451
Federico Recanati8da9e332022-02-10 11:00:17 +01001452 /* Reset stage 2 mapping only for virtual FF-A instances. */
1453 if (vm_id_is_current_world(owner_vm_id)) {
1454 /*
1455 * Set the memory region of the buffers back to the default mode
1456 * for the VM. Since this memory region was already mapped for
1457 * the RXTX buffers we can safely remap them.
1458 */
1459 CHECK(vm_identity_map(vm_locked, send_pa_begin, send_pa_end,
1460 MM_MODE_R | MM_MODE_W | MM_MODE_X,
1461 &api_page_pool, NULL));
Daniel Boulby9e420ca2021-07-07 15:03:49 +01001462
Federico Recanati8da9e332022-02-10 11:00:17 +01001463 CHECK(vm_identity_map(vm_locked, recv_pa_begin, recv_pa_end,
1464 MM_MODE_R | MM_MODE_W | MM_MODE_X,
1465 &api_page_pool, NULL));
1466 }
Daniel Boulby9e420ca2021-07-07 15:03:49 +01001467
1468 /* Unmap the buffers in the partition manager. */
1469 CHECK(mm_unmap(mm_stage1_locked, send_pa_begin, send_pa_end,
1470 &api_page_pool));
1471 CHECK(mm_unmap(mm_stage1_locked, recv_pa_begin, recv_pa_end,
1472 &api_page_pool));
1473
1474 vm->mailbox.send = NULL;
1475 vm->mailbox.recv = NULL;
Federico Recanati10bd06c2022-02-23 17:32:59 +01001476 plat_ffa_vm_destroy(vm_locked);
Daniel Boulby9e420ca2021-07-07 15:03:49 +01001477
Federico Recanati8da9e332022-02-10 11:00:17 +01001478 /* Forward buffer unmapping to SPMC if coming from a VM. */
1479 plat_ffa_rxtx_unmap_forward(owner_vm_id);
1480
Daniel Boulby9e420ca2021-07-07 15:03:49 +01001481 mm_unlock_stage1(&mm_stage1_locked);
Federico Recanati8da9e332022-02-10 11:00:17 +01001482
1483out:
Daniel Boulby9e420ca2021-07-07 15:03:49 +01001484 vm_unlock(&vm_locked);
1485
Federico Recanati8da9e332022-02-10 11:00:17 +01001486 return ret;
Daniel Boulby9e420ca2021-07-07 15:03:49 +01001487}
1488
1489/**
Andrew Walbrane0f575f2019-10-16 16:00:12 +01001490 * Notifies the `to` VM about the message currently in its mailbox, possibly
1491 * with the help of the primary VM.
1492 */
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01001493static struct ffa_value deliver_msg(struct vm_locked to, ffa_vm_id_t from_id,
1494 struct vcpu *current, struct vcpu **next)
Andrew Walbrane0f575f2019-10-16 16:00:12 +01001495{
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01001496 struct ffa_value ret = (struct ffa_value){.func = FFA_SUCCESS_32};
1497 struct ffa_value primary_ret = {
1498 .func = FFA_MSG_SEND_32,
Andrew Walbranf76f5752019-12-03 18:33:08 +00001499 .arg1 = ((uint32_t)from_id << 16) | to.vm->id,
Andrew Walbrane0f575f2019-10-16 16:00:12 +01001500 };
1501
Andrew Walbrane0f575f2019-10-16 16:00:12 +01001502 /* Messages for the primary VM are delivered directly. */
1503 if (to.vm->id == HF_PRIMARY_VM_ID) {
1504 /*
Andrew Walbrane7ad3c02019-12-24 17:03:04 +00001505 * Only tell the primary VM the size and other details if the
1506 * message is for it, to avoid leaking data about messages for
1507 * other VMs.
Andrew Walbrane0f575f2019-10-16 16:00:12 +01001508 */
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01001509 primary_ret = ffa_msg_recv_return(to.vm);
Andrew Walbrane0f575f2019-10-16 16:00:12 +01001510
1511 to.vm->mailbox.state = MAILBOX_STATE_READ;
1512 *next = api_switch_to_primary(current, primary_ret,
Madhukar Pappireddyb11e0d12021-08-02 19:44:35 -05001513 VCPU_STATE_BLOCKED);
Andrew Walbran2619e0a2020-01-10 16:37:50 +00001514 return ret;
Andrew Walbrane0f575f2019-10-16 16:00:12 +01001515 }
1516
Andrew Walbran11cff3a2020-02-28 11:33:17 +00001517 to.vm->mailbox.state = MAILBOX_STATE_RECEIVED;
1518
Andrew Walbran2619e0a2020-01-10 16:37:50 +00001519 /* Messages for the TEE are sent on via the dispatcher. */
1520 if (to.vm->id == HF_TEE_VM_ID) {
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01001521 struct ffa_value call = ffa_msg_recv_return(to.vm);
Andrew Walbran2619e0a2020-01-10 16:37:50 +00001522
Olivier Deprez112d2b52020-09-30 07:39:23 +02001523 ret = arch_other_world_call(call);
Andrew Walbran11cff3a2020-02-28 11:33:17 +00001524 /*
1525 * After the call to the TEE completes it must have finished
1526 * reading its RX buffer, so it is ready for another message.
1527 */
1528 to.vm->mailbox.state = MAILBOX_STATE_EMPTY;
Andrew Walbran2619e0a2020-01-10 16:37:50 +00001529 /*
1530 * Don't return to the primary VM in this case, as the TEE is
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01001531 * not (yet) scheduled via FF-A.
Andrew Walbran2619e0a2020-01-10 16:37:50 +00001532 */
Andrew Walbran11cff3a2020-02-28 11:33:17 +00001533 return ret;
Andrew Walbran2619e0a2020-01-10 16:37:50 +00001534 }
1535
Andrew Walbrane0f575f2019-10-16 16:00:12 +01001536 /* Return to the primary VM directly or with a switch. */
Andrew Walbranf76f5752019-12-03 18:33:08 +00001537 if (from_id != HF_PRIMARY_VM_ID) {
Andrew Walbrane0f575f2019-10-16 16:00:12 +01001538 *next = api_switch_to_primary(current, primary_ret,
Madhukar Pappireddyb11e0d12021-08-02 19:44:35 -05001539 VCPU_STATE_BLOCKED);
Andrew Walbrane0f575f2019-10-16 16:00:12 +01001540 }
Andrew Walbran2619e0a2020-01-10 16:37:50 +00001541
1542 return ret;
Andrew Walbrane0f575f2019-10-16 16:00:12 +01001543}
1544
1545/**
Andrew Scullaa039b32018-10-04 15:02:26 +01001546 * Copies data from the sender's send buffer to the recipient's receive buffer
1547 * and notifies the recipient.
Wedson Almeida Filho17c997f2019-01-09 18:50:09 +00001548 *
1549 * If the recipient's receive buffer is busy, it can optionally register the
1550 * caller to be notified when the recipient's receive buffer becomes available.
Wedson Almeida Filho2f94ec12018-07-26 16:00:48 +01001551 */
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01001552struct ffa_value api_ffa_msg_send(ffa_vm_id_t sender_vm_id,
1553 ffa_vm_id_t receiver_vm_id, uint32_t size,
Federico Recanati86f6cde2022-04-28 19:44:49 +02001554 struct vcpu *current, struct vcpu **next)
Wedson Almeida Filho2f94ec12018-07-26 16:00:48 +01001555{
Wedson Almeida Filho00df6c72018-10-18 11:19:24 +01001556 struct vm *from = current->vm;
Wedson Almeida Filho2f94ec12018-07-26 16:00:48 +01001557 struct vm *to;
Andrew Walbran82d6d152019-12-24 15:02:06 +00001558 struct vm_locked to_locked;
Andrew Walbran70bc8622019-10-07 14:15:58 +01001559 const void *from_msg;
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01001560 struct ffa_value ret;
Olivier Deprezee9d6a92019-11-26 09:14:11 +00001561 struct vcpu_locked current_locked;
1562 bool is_direct_request_ongoing;
Andrew Scull19503262018-09-20 14:48:39 +01001563
Andrew Walbran70bc8622019-10-07 14:15:58 +01001564 /* Ensure sender VM ID corresponds to the current VM. */
1565 if (sender_vm_id != from->id) {
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01001566 return ffa_error(FFA_INVALID_PARAMETERS);
Andrew Walbran70bc8622019-10-07 14:15:58 +01001567 }
1568
1569 /* Disallow reflexive requests as this suggests an error in the VM. */
1570 if (receiver_vm_id == from->id) {
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01001571 return ffa_error(FFA_INVALID_PARAMETERS);
Andrew Walbran70bc8622019-10-07 14:15:58 +01001572 }
1573
1574 /* Limit the size of transfer. */
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01001575 if (size > FFA_MSG_PAYLOAD_MAX) {
1576 return ffa_error(FFA_INVALID_PARAMETERS);
Andrew Walbran70bc8622019-10-07 14:15:58 +01001577 }
1578
Olivier Deprezee9d6a92019-11-26 09:14:11 +00001579 /*
1580 * Deny if vCPU is executing in context of an FFA_MSG_SEND_DIRECT_REQ
1581 * invocation.
1582 */
1583 current_locked = vcpu_lock(current);
1584 is_direct_request_ongoing =
1585 is_ffa_direct_msg_request_ongoing(current_locked);
1586 vcpu_unlock(&current_locked);
1587
1588 if (is_direct_request_ongoing) {
1589 return ffa_error(FFA_DENIED);
1590 }
1591
Andrew Walbran0b60c4f2019-12-10 17:05:29 +00001592 /* Ensure the receiver VM exists. */
1593 to = vm_find(receiver_vm_id);
1594 if (to == NULL) {
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01001595 return ffa_error(FFA_INVALID_PARAMETERS);
Andrew Walbran0b60c4f2019-12-10 17:05:29 +00001596 }
1597
Jose Marinhoa1dfeda2019-02-27 16:46:03 +00001598 /*
Andrew Walbran70bc8622019-10-07 14:15:58 +01001599 * Check that the sender has configured its send buffer. If the tx
1600 * mailbox at from_msg is configured (i.e. from_msg != NULL) then it can
1601 * be safely accessed after releasing the lock since the tx mailbox
1602 * address can only be configured once.
Jose Marinhoa1dfeda2019-02-27 16:46:03 +00001603 */
1604 sl_lock(&from->lock);
1605 from_msg = from->mailbox.send;
1606 sl_unlock(&from->lock);
1607
1608 if (from_msg == NULL) {
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01001609 return ffa_error(FFA_INVALID_PARAMETERS);
Wedson Almeida Filho2f94ec12018-07-26 16:00:48 +01001610 }
1611
Andrew Walbran82d6d152019-12-24 15:02:06 +00001612 to_locked = vm_lock(to);
Wedson Almeida Filho2f94ec12018-07-26 16:00:48 +01001613
Federico Recanati86f6cde2022-04-28 19:44:49 +02001614 if (msg_receiver_busy(to_locked)) {
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01001615 ret = ffa_error(FFA_BUSY);
Andrew Scullaa039b32018-10-04 15:02:26 +01001616 goto out;
Wedson Almeida Filho2f94ec12018-07-26 16:00:48 +01001617 }
1618
Andrew Walbran82d6d152019-12-24 15:02:06 +00001619 /* Copy data. */
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01001620 memcpy_s(to->mailbox.recv, FFA_MSG_PAYLOAD_MAX, from_msg, size);
Andrew Walbran82d6d152019-12-24 15:02:06 +00001621 to->mailbox.recv_size = size;
1622 to->mailbox.recv_sender = sender_vm_id;
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01001623 to->mailbox.recv_func = FFA_MSG_SEND_32;
Andrew Walbran2619e0a2020-01-10 16:37:50 +00001624 ret = deliver_msg(to_locked, sender_vm_id, current, next);
Andrew Scullaa039b32018-10-04 15:02:26 +01001625
1626out:
Andrew Walbran82d6d152019-12-24 15:02:06 +00001627 vm_unlock(&to_locked);
Wedson Almeida Filho2f94ec12018-07-26 16:00:48 +01001628
Wedson Almeida Filho80eb4a32018-11-30 17:11:15 +00001629 return ret;
Wedson Almeida Filho2f94ec12018-07-26 16:00:48 +01001630}
1631
1632/**
Federico Recanati25053ee2022-03-14 15:01:53 +01001633 * Copies data from the sender's send buffer to the recipient's receive buffer
1634 * and notifies the receiver.
1635 */
1636struct ffa_value api_ffa_msg_send2(ffa_vm_id_t sender_vm_id, uint32_t flags,
1637 struct vcpu *current)
1638{
1639 struct vm *from = current->vm;
1640 struct vm *to;
1641 struct vm_locked to_locked;
1642 ffa_vm_id_t msg_sender_id;
1643 struct vm_locked sender_locked;
1644 const void *from_msg;
1645 struct ffa_value ret;
1646 struct ffa_partition_rxtx_header header;
1647 ffa_vm_id_t sender_id;
1648 ffa_vm_id_t receiver_id;
1649 uint32_t msg_size;
1650 ffa_notifications_bitmap_t rx_buffer_full;
1651
1652 /* Only Hypervisor can set `sender_vm_id` when forwarding messages. */
1653 if (from->id != HF_HYPERVISOR_VM_ID && sender_vm_id != 0) {
1654 dlog_error("Sender VM ID must be zero.\n");
1655 return ffa_error(FFA_INVALID_PARAMETERS);
1656 }
1657
Federico Recanati25053ee2022-03-14 15:01:53 +01001658 /*
1659 * Get message sender's mailbox, which can be different to the `from` vm
1660 * when the message is forwarded.
1661 */
1662 msg_sender_id = (sender_vm_id != 0) ? sender_vm_id : from->id;
1663 sender_locked = plat_ffa_vm_find_locked(msg_sender_id);
1664 if (sender_locked.vm == NULL) {
1665 dlog_error("Cannot send message from VM ID %#x, not found.\n",
1666 msg_sender_id);
1667 return ffa_error(FFA_DENIED);
1668 }
1669
1670 from_msg = sender_locked.vm->mailbox.send;
1671 if (from_msg == NULL) {
1672 dlog_error("Cannot retrieve TX buffer for VM ID %#x.\n",
1673 msg_sender_id);
1674 ret = ffa_error(FFA_DENIED);
1675 goto out_unlock_sender;
1676 }
1677
1678 /*
1679 * Copy message header as safety measure to avoid multiple accesses to
1680 * unsafe memory which could be 'corrupted' between safety checks and
1681 * final buffer copy.
1682 */
1683 memcpy_s(&header, FFA_RXTX_HEADER_SIZE, from_msg, FFA_RXTX_HEADER_SIZE);
1684 sender_id = ffa_rxtx_header_sender(&header);
1685 receiver_id = ffa_rxtx_header_receiver(&header);
1686
1687 /* Ensure Sender IDs from API and from message header match. */
1688 if (msg_sender_id != sender_id) {
1689 dlog_error(
1690 "Message sender VM ID (%#x) doesn't match header's VM "
1691 "ID (%#x).\n",
1692 msg_sender_id, sender_id);
1693 ret = ffa_error(FFA_INVALID_PARAMETERS);
1694 goto out_unlock_sender;
1695 }
1696
1697 /* Disallow reflexive requests as this suggests an error in the VM. */
1698 if (receiver_id == sender_id) {
1699 dlog_error("Sender and receive VM IDs must be different.\n");
1700 ret = ffa_error(FFA_INVALID_PARAMETERS);
1701 goto out_unlock_sender;
1702 }
1703
Federico Recanati7b39ff22022-03-14 15:01:53 +01001704 /* `flags` can be set only at secure virtual FF-A instances. */
1705 if (plat_ffa_is_vm_id(sender_id) && (flags != 0)) {
1706 dlog_error("flags must be zero.\n");
1707 return ffa_error(FFA_INVALID_PARAMETERS);
1708 }
1709
Federico Recanati25053ee2022-03-14 15:01:53 +01001710 /*
1711 * Check if the message has to be forwarded to the SPMC, in
1712 * this case return, the SPMC will handle the buffer copy.
1713 */
1714 if (plat_ffa_msg_send2_forward(receiver_id, sender_id, &ret)) {
1715 goto out_unlock_sender;
1716 }
1717
1718 /* Ensure the receiver VM exists. */
1719 to_locked = plat_ffa_vm_find_locked(receiver_id);
1720 to = to_locked.vm;
1721
1722 if (to == NULL) {
1723 dlog_error("Cannot deliver message to VM %#x, not found.\n",
1724 receiver_id);
1725 ret = ffa_error(FFA_INVALID_PARAMETERS);
1726 goto out_unlock_sender;
1727 }
1728
1729 /*
1730 * Check sender and receiver can use indirect messages.
1731 * Sender is the VM/SP who originally sent the message, not the
1732 * hypervisor possibly relaying it.
1733 */
1734 if (!plat_ffa_is_indirect_msg_supported(sender_locked, to_locked)) {
1735 dlog_verbose("VM %#x doesn't support indirect message\n",
1736 sender_id);
1737 ret = ffa_error(FFA_DENIED);
1738 goto out;
1739 }
1740
1741 if (to->mailbox.state != MAILBOX_STATE_EMPTY ||
1742 to->mailbox.recv == NULL) {
1743 dlog_error(
1744 "Cannot deliver message to VM %#x, RX buffer not "
1745 "ready.\n",
1746 receiver_id);
1747 ret = ffa_error(FFA_BUSY);
1748 goto out;
1749 }
1750
Federico Recanati644f0462022-03-17 12:04:00 +01001751 /* Acquire receiver's RX buffer. */
1752 if (!plat_ffa_acquire_receiver_rx(to_locked, &ret)) {
1753 dlog_error("Failed to acquire RX buffer for VM %#x\n", to->id);
1754 goto out;
1755 }
1756
Federico Recanati25053ee2022-03-14 15:01:53 +01001757 /* Check the size of transfer. */
1758 msg_size = FFA_RXTX_HEADER_SIZE + header.size;
1759 if ((msg_size > FFA_PARTITION_MSG_PAYLOAD_MAX) ||
1760 (header.size > FFA_PARTITION_MSG_PAYLOAD_MAX)) {
1761 dlog_error("Message is too big.\n");
1762 ret = ffa_error(FFA_INVALID_PARAMETERS);
1763 goto out;
1764 }
1765
1766 /* Copy data. */
1767 memcpy_s(to->mailbox.recv, FFA_MSG_PAYLOAD_MAX, from_msg, msg_size);
1768 to->mailbox.recv_size = msg_size;
1769 to->mailbox.recv_sender = sender_id;
1770 to->mailbox.recv_func = FFA_MSG_SEND2_32;
1771 to->mailbox.state = MAILBOX_STATE_RECEIVED;
1772
1773 rx_buffer_full = plat_ffa_is_vm_id(sender_id)
1774 ? FFA_NOTIFICATION_HYP_BUFFER_FULL_MASK
1775 : FFA_NOTIFICATION_SPM_BUFFER_FULL_MASK;
1776 vm_notifications_framework_set_pending(to_locked, rx_buffer_full);
1777
1778 if ((FFA_NOTIFICATIONS_FLAG_DELAY_SRI & flags) == 0) {
1779 dlog_verbose("SRI was NOT delayed. vcpu: %u!\n",
1780 vcpu_index(current));
1781 plat_ffa_sri_trigger_not_delayed(current->cpu);
1782 } else {
1783 plat_ffa_sri_state_set(DELAYED);
1784 }
1785
1786 ret = (struct ffa_value){.func = FFA_SUCCESS_32};
1787
1788out:
1789 vm_unlock(&to_locked);
1790
1791out_unlock_sender:
1792 vm_unlock(&sender_locked);
1793
1794 return ret;
1795}
1796
1797/**
Andrew Scullec52ddf2019-08-20 10:41:01 +01001798 * Checks whether the vCPU's attempt to block for a message has already been
1799 * interrupted or whether it is allowed to block.
1800 */
Olivier Deprezd8e18882022-07-15 14:46:41 +02001801static bool api_ffa_msg_recv_block_interrupted(struct vcpu *current)
Andrew Scullec52ddf2019-08-20 10:41:01 +01001802{
Manish Pandey35e452f2021-02-18 21:36:34 +00001803 struct vcpu_locked current_locked;
Andrew Scullec52ddf2019-08-20 10:41:01 +01001804 bool interrupted;
1805
Manish Pandey35e452f2021-02-18 21:36:34 +00001806 current_locked = vcpu_lock(current);
Andrew Scullec52ddf2019-08-20 10:41:01 +01001807
1808 /*
1809 * Don't block if there are enabled and pending interrupts, to match
1810 * behaviour of wait_for_interrupt.
1811 */
Manish Pandey35e452f2021-02-18 21:36:34 +00001812 interrupted = (vcpu_interrupt_count_get(current_locked) > 0);
Andrew Scullec52ddf2019-08-20 10:41:01 +01001813
Manish Pandey35e452f2021-02-18 21:36:34 +00001814 vcpu_unlock(&current_locked);
Andrew Scullec52ddf2019-08-20 10:41:01 +01001815
1816 return interrupted;
1817}
1818
1819/**
Andrew Scullaa039b32018-10-04 15:02:26 +01001820 * Receives a message from the mailbox. If one isn't available, this function
1821 * can optionally block the caller until one becomes available.
Wedson Almeida Filho2f94ec12018-07-26 16:00:48 +01001822 *
Andrew Scullaa039b32018-10-04 15:02:26 +01001823 * No new messages can be received until the mailbox has been cleared.
Wedson Almeida Filho2f94ec12018-07-26 16:00:48 +01001824 */
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01001825struct ffa_value api_ffa_msg_recv(bool block, struct vcpu *current,
1826 struct vcpu **next)
Wedson Almeida Filho2f94ec12018-07-26 16:00:48 +01001827{
Olivier Deprezee9d6a92019-11-26 09:14:11 +00001828 bool is_direct_request_ongoing;
1829 struct vcpu_locked current_locked;
Wedson Almeida Filho00df6c72018-10-18 11:19:24 +01001830 struct vm *vm = current->vm;
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01001831 struct ffa_value return_code;
J-Alvesb37fd082020-10-22 12:29:21 +01001832 bool is_from_secure_world =
1833 (current->vm->id & HF_VM_ID_WORLD_MASK) != 0;
Wedson Almeida Filho2f94ec12018-07-26 16:00:48 +01001834
Andrew Scullaa039b32018-10-04 15:02:26 +01001835 /*
1836 * The primary VM will receive messages as a status code from running
Fuad Tabbab0ef2a42019-12-19 11:19:25 +00001837 * vCPUs and must not call this function.
Andrew Scullaa039b32018-10-04 15:02:26 +01001838 */
J-Alvesb37fd082020-10-22 12:29:21 +01001839 if (!is_from_secure_world && vm->id == HF_PRIMARY_VM_ID) {
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01001840 return ffa_error(FFA_NOT_SUPPORTED);
Wedson Almeida Filho2f94ec12018-07-26 16:00:48 +01001841 }
1842
Olivier Deprezee9d6a92019-11-26 09:14:11 +00001843 /*
1844 * Deny if vCPU is executing in context of an FFA_MSG_SEND_DIRECT_REQ
1845 * invocation.
1846 */
1847 current_locked = vcpu_lock(current);
1848 is_direct_request_ongoing =
1849 is_ffa_direct_msg_request_ongoing(current_locked);
1850 vcpu_unlock(&current_locked);
1851
1852 if (is_direct_request_ongoing) {
1853 return ffa_error(FFA_DENIED);
1854 }
1855
Wedson Almeida Filho2f94ec12018-07-26 16:00:48 +01001856 sl_lock(&vm->lock);
Wedson Almeida Filho2f94ec12018-07-26 16:00:48 +01001857
Andrew Scullaa039b32018-10-04 15:02:26 +01001858 /* Return pending messages without blocking. */
Andrew Sculld6ee1102019-04-05 22:12:42 +01001859 if (vm->mailbox.state == MAILBOX_STATE_RECEIVED) {
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01001860 return_code = ffa_msg_recv_return(vm);
Federico Recanati25053ee2022-03-14 15:01:53 +01001861 if (return_code.func == FFA_MSG_SEND_32) {
1862 vm->mailbox.state = MAILBOX_STATE_READ;
1863 }
Jose Marinho3e2442f2019-03-12 13:30:37 +00001864 goto out;
1865 }
1866
1867 /* No pending message so fail if not allowed to block. */
1868 if (!block) {
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01001869 return_code = ffa_error(FFA_RETRY);
Andrew Scullaa039b32018-10-04 15:02:26 +01001870 goto out;
Wedson Almeida Filho2f94ec12018-07-26 16:00:48 +01001871 }
Andrew Scullaa039b32018-10-04 15:02:26 +01001872
Andrew Walbran9311c9a2019-03-12 16:59:04 +00001873 /*
Jose Marinho3e2442f2019-03-12 13:30:37 +00001874 * From this point onward this call can only be interrupted or a message
1875 * received. If a message is received the return value will be set at
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01001876 * that time to FFA_SUCCESS.
Andrew Walbran9311c9a2019-03-12 16:59:04 +00001877 */
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01001878 return_code = ffa_error(FFA_INTERRUPTED);
1879 if (api_ffa_msg_recv_block_interrupted(current)) {
Andrew Scullaa039b32018-10-04 15:02:26 +01001880 goto out;
1881 }
1882
J-Alvesb37fd082020-10-22 12:29:21 +01001883 if (is_from_secure_world) {
1884 /* Return to other world if caller is a SP. */
1885 *next = api_switch_to_other_world(
1886 current, (struct ffa_value){.func = FFA_MSG_WAIT_32},
Madhukar Pappireddyb11e0d12021-08-02 19:44:35 -05001887 VCPU_STATE_WAITING);
J-Alvesb37fd082020-10-22 12:29:21 +01001888 } else {
1889 /* Switch back to primary VM to block. */
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01001890 struct ffa_value run_return = {
1891 .func = FFA_MSG_WAIT_32,
1892 .arg1 = ffa_vm_vcpu(vm->id, vcpu_index(current)),
Andrew Walbranb4816552018-12-05 17:35:42 +00001893 };
Wedson Almeida Filho81568c42019-01-04 13:33:02 +00001894
Andrew Walbranb4816552018-12-05 17:35:42 +00001895 *next = api_switch_to_primary(current, run_return,
Madhukar Pappireddyb11e0d12021-08-02 19:44:35 -05001896 VCPU_STATE_WAITING);
Andrew Walbranb4816552018-12-05 17:35:42 +00001897 }
Andrew Scullaa039b32018-10-04 15:02:26 +01001898out:
Wedson Almeida Filho2f94ec12018-07-26 16:00:48 +01001899 sl_unlock(&vm->lock);
1900
Jose Marinho3e2442f2019-03-12 13:30:37 +00001901 return return_code;
Wedson Almeida Filho2f94ec12018-07-26 16:00:48 +01001902}
1903
1904/**
Wedson Almeida Filhoea62e2e2019-01-09 19:14:59 +00001905 * Retrieves the next VM whose mailbox became writable. For a VM to be notified
1906 * by this function, the caller must have called api_mailbox_send before with
1907 * the notify argument set to true, and this call must have failed because the
1908 * mailbox was not available.
1909 *
1910 * It should be called repeatedly to retrieve a list of VMs.
1911 *
1912 * Returns -1 if no VM became writable, or the id of the VM whose mailbox
1913 * became writable.
Wedson Almeida Filho2f94ec12018-07-26 16:00:48 +01001914 */
Wedson Almeida Filhoea62e2e2019-01-09 19:14:59 +00001915int64_t api_mailbox_writable_get(const struct vcpu *current)
Wedson Almeida Filho2f94ec12018-07-26 16:00:48 +01001916{
Wedson Almeida Filho00df6c72018-10-18 11:19:24 +01001917 struct vm *vm = current->vm;
Wedson Almeida Filhoea62e2e2019-01-09 19:14:59 +00001918 struct wait_entry *entry;
Andrew Scullc0e569a2018-10-02 18:05:21 +01001919 int64_t ret;
Wedson Almeida Filho2f94ec12018-07-26 16:00:48 +01001920
1921 sl_lock(&vm->lock);
Wedson Almeida Filhoea62e2e2019-01-09 19:14:59 +00001922 if (list_empty(&vm->mailbox.ready_list)) {
1923 ret = -1;
1924 goto exit;
1925 }
1926
1927 entry = CONTAINER_OF(vm->mailbox.ready_list.next, struct wait_entry,
1928 ready_links);
1929 list_remove(&entry->ready_links);
Andrew Walbranaad8f982019-12-04 10:56:39 +00001930 ret = vm_id_for_wait_entry(vm, entry);
Wedson Almeida Filhoea62e2e2019-01-09 19:14:59 +00001931
1932exit:
1933 sl_unlock(&vm->lock);
1934 return ret;
1935}
1936
1937/**
1938 * Retrieves the next VM waiting to be notified that the mailbox of the
1939 * specified VM became writable. Only primary VMs are allowed to call this.
1940 *
Wedson Almeida Filhob790f652019-01-22 23:41:56 +00001941 * Returns -1 on failure or if there are no waiters; the VM id of the next
1942 * waiter otherwise.
Wedson Almeida Filhoea62e2e2019-01-09 19:14:59 +00001943 */
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01001944int64_t api_mailbox_waiter_get(ffa_vm_id_t vm_id, const struct vcpu *current)
Wedson Almeida Filhoea62e2e2019-01-09 19:14:59 +00001945{
1946 struct vm *vm;
1947 struct vm_locked locked;
1948 struct wait_entry *entry;
1949 struct vm *waiting_vm;
1950
1951 /* Only primary VMs are allowed to call this function. */
1952 if (current->vm->id != HF_PRIMARY_VM_ID) {
1953 return -1;
1954 }
1955
Andrew Walbran42347a92019-05-09 13:59:03 +01001956 vm = vm_find(vm_id);
Wedson Almeida Filhoea62e2e2019-01-09 19:14:59 +00001957 if (vm == NULL) {
1958 return -1;
1959 }
1960
Fuad Tabbaed294af2019-12-20 10:43:01 +00001961 /* Check if there are outstanding notifications from given VM. */
Andrew Walbran7e932bd2019-04-29 16:47:06 +01001962 locked = vm_lock(vm);
Wedson Almeida Filhoea62e2e2019-01-09 19:14:59 +00001963 entry = api_fetch_waiter(locked);
1964 vm_unlock(&locked);
1965
1966 if (entry == NULL) {
1967 return -1;
1968 }
1969
1970 /* Enqueue notification to waiting VM. */
1971 waiting_vm = entry->waiting_vm;
1972
1973 sl_lock(&waiting_vm->lock);
1974 if (list_empty(&entry->ready_links)) {
1975 list_append(&waiting_vm->mailbox.ready_list,
1976 &entry->ready_links);
1977 }
1978 sl_unlock(&waiting_vm->lock);
1979
1980 return waiting_vm->id;
1981}
1982
1983/**
Andrew Walbran8a0f5ca2019-11-05 13:12:23 +00001984 * Releases the caller's mailbox so that a new message can be received. The
1985 * caller must have copied out all data they wish to preserve as new messages
1986 * will overwrite the old and will arrive asynchronously.
Wedson Almeida Filhoea62e2e2019-01-09 19:14:59 +00001987 *
1988 * Returns:
Federico Recanati7bef0b92022-03-17 14:56:22 +01001989 * - FFA_ERROR FFA_INVALID_PARAMETERS if message is forwarded to SPMC but
1990 * there's no buffer pair mapped.
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01001991 * - FFA_ERROR FFA_DENIED on failure, if the mailbox hasn't been read.
1992 * - FFA_SUCCESS on success if no further action is needed.
1993 * - FFA_RX_RELEASE if it was called by the primary VM and the primary VM now
Andrew Walbran8a0f5ca2019-11-05 13:12:23 +00001994 * needs to wake up or kick waiters. Waiters should be retrieved by calling
Wedson Almeida Filhoea62e2e2019-01-09 19:14:59 +00001995 * hf_mailbox_waiter_get.
1996 */
Federico Recanati7bef0b92022-03-17 14:56:22 +01001997struct ffa_value api_ffa_rx_release(ffa_vm_id_t receiver_id,
1998 struct vcpu *current, struct vcpu **next)
Wedson Almeida Filhoea62e2e2019-01-09 19:14:59 +00001999{
Federico Recanati7bef0b92022-03-17 14:56:22 +01002000 struct vm *current_vm = current->vm;
2001 struct vm *vm;
2002 struct vm_locked vm_locked;
2003 ffa_vm_id_t current_vm_id = current_vm->id;
2004 ffa_vm_id_t release_vm_id;
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01002005 struct ffa_value ret;
Wedson Almeida Filhoea62e2e2019-01-09 19:14:59 +00002006
Federico Recanati7bef0b92022-03-17 14:56:22 +01002007 /* `receiver_id` can be set only at Non-Secure Physical interface. */
2008 if (vm_id_is_current_world(current_vm_id) && (receiver_id != 0)) {
2009 dlog_error("Invalid `receiver_id`, must be zero.\n");
2010 return ffa_error(FFA_INVALID_PARAMETERS);
2011 }
2012
2013 /*
2014 * VM ID to be released: `receiver_id` if message has been forwarded by
2015 * Hypervisor to release a VM's buffer, current VM ID otherwise.
2016 */
2017 if (vm_id_is_current_world(current_vm_id) || (receiver_id == 0)) {
2018 release_vm_id = current_vm_id;
2019 } else {
2020 release_vm_id = receiver_id;
2021 }
2022
2023 vm_locked = plat_ffa_vm_find_locked(release_vm_id);
2024 vm = vm_locked.vm;
2025 if (vm == NULL) {
2026 dlog_error("No buffer registered for VM ID %#x.\n",
2027 release_vm_id);
2028 return ffa_error(FFA_INVALID_PARAMETERS);
2029 }
2030
2031 if (!plat_ffa_rx_release_forward(vm_locked, &ret)) {
2032 dlog_verbose("RX_RELEASE forward failed for VM ID %#x.\n",
2033 release_vm_id);
2034 goto out;
2035 }
2036
2037 /*
2038 * When SPMC owns a VM's RX buffer, the Hypervisor's view can be out of
2039 * sync: reset it to empty and exit.
2040 */
2041 if (plat_ffa_rx_release_forwarded(vm_locked)) {
2042 ret = (struct ffa_value){.func = FFA_SUCCESS_32};
2043 goto out;
2044 }
2045
Andrew Scullaa7db8e2019-02-01 14:12:19 +00002046 switch (vm->mailbox.state) {
Andrew Sculld6ee1102019-04-05 22:12:42 +01002047 case MAILBOX_STATE_EMPTY:
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01002048 ret = ffa_error(FFA_DENIED);
Andrew Scullaa7db8e2019-02-01 14:12:19 +00002049 break;
2050
Federico Recanati7bef0b92022-03-17 14:56:22 +01002051 case MAILBOX_STATE_RECEIVED:
2052 if (release_vm_id == current_vm_id) {
2053 /*
2054 * VM requesting to release its own RX buffer,
2055 * must be in READ state.
2056 */
2057 ret = ffa_error(FFA_DENIED);
2058 } else {
2059 /*
2060 * Forwarded message from Hypervisor to release a VM
2061 * RX buffer, SPMC's mailbox view can be still in
2062 * RECEIVED state.
2063 */
2064 ret = (struct ffa_value){.func = FFA_SUCCESS_32};
2065 vm->mailbox.state = MAILBOX_STATE_EMPTY;
2066 }
2067 break;
2068
Andrew Sculld6ee1102019-04-05 22:12:42 +01002069 case MAILBOX_STATE_READ:
Federico Recanati7bef0b92022-03-17 14:56:22 +01002070 ret = api_waiter_result(vm_locked, current, next);
Andrew Sculld6ee1102019-04-05 22:12:42 +01002071 vm->mailbox.state = MAILBOX_STATE_EMPTY;
Andrew Scullaa7db8e2019-02-01 14:12:19 +00002072 break;
Wedson Almeida Filho2f94ec12018-07-26 16:00:48 +01002073 }
Federico Recanati7bef0b92022-03-17 14:56:22 +01002074
2075out:
2076 vm_unlock(&vm_locked);
Wedson Almeida Filho2f94ec12018-07-26 16:00:48 +01002077
2078 return ret;
Wedson Almeida Filho3fcbcff2018-07-10 23:53:39 +01002079}
Andrew Walbran318f5732018-11-20 16:23:42 +00002080
2081/**
Federico Recanati644f0462022-03-17 12:04:00 +01002082 * Acquire ownership of an RX buffer before writing to it. Both
2083 * Hypervisor and SPMC are producers of VM's RX buffer, and they
2084 * could contend for the same buffer. SPMC owns VM's RX buffer after
2085 * it's mapped in its translation regime. This ABI should be
2086 * used by the Hypervisor to get the ownership of a VM's RX buffer
2087 * from the SPMC solving the aforementioned possible contention.
2088 *
2089 * Returns:
2090 * - FFA_DENIED: callee cannot relinquish ownership of RX buffer.
2091 * - FFA_INVALID_PARAMETERS: there is no buffer pair registered for the VM.
2092 * - FFA_NOT_SUPPORTED: function not implemented at the FF-A instance.
2093 */
2094struct ffa_value api_ffa_rx_acquire(ffa_vm_id_t receiver_id,
2095 struct vcpu *current)
2096{
2097 struct vm_locked receiver_locked;
2098 struct vm *receiver;
2099 struct ffa_value ret;
2100
2101 if ((current->vm->id != HF_HYPERVISOR_VM_ID) ||
2102 !plat_ffa_is_vm_id(receiver_id)) {
2103 dlog_error(
2104 "FFA_RX_ACQUIRE not supported at this FF-A "
2105 "instance.\n");
2106 return ffa_error(FFA_NOT_SUPPORTED);
2107 }
2108
2109 receiver_locked = plat_ffa_vm_find_locked(receiver_id);
2110 receiver = receiver_locked.vm;
2111
2112 if (receiver == NULL || receiver->mailbox.recv == NULL) {
2113 dlog_error("Cannot retrieve RX buffer for VM ID %#x.\n",
2114 receiver_id);
2115 ret = ffa_error(FFA_INVALID_PARAMETERS);
2116 goto out;
2117 }
2118
2119 if (receiver->mailbox.state != MAILBOX_STATE_EMPTY) {
2120 dlog_error("Mailbox busy for VM ID %#x.\n", receiver_id);
2121 ret = ffa_error(FFA_DENIED);
2122 goto out;
2123 }
2124
2125 receiver->mailbox.state = MAILBOX_STATE_RECEIVED;
2126
2127 ret = (struct ffa_value){.func = FFA_SUCCESS_32};
2128
2129out:
2130 vm_unlock(&receiver_locked);
2131
2132 return ret;
2133}
2134
2135/**
Andrew Walbran318f5732018-11-20 16:23:42 +00002136 * Enables or disables a given interrupt ID for the calling vCPU.
2137 *
2138 * Returns 0 on success, or -1 if the intid is invalid.
2139 */
Manish Pandey35e452f2021-02-18 21:36:34 +00002140int64_t api_interrupt_enable(uint32_t intid, bool enable,
2141 enum interrupt_type type, struct vcpu *current)
Andrew Walbran318f5732018-11-20 16:23:42 +00002142{
Manish Pandey35e452f2021-02-18 21:36:34 +00002143 struct vcpu_locked current_locked;
Daniel Boulby4ca50f02022-07-29 18:29:34 +01002144 struct interrupts *interrupts = &current->interrupts;
Wedson Almeida Filho81568c42019-01-04 13:33:02 +00002145
Andrew Walbran318f5732018-11-20 16:23:42 +00002146 if (intid >= HF_NUM_INTIDS) {
2147 return -1;
2148 }
2149
Manish Pandey35e452f2021-02-18 21:36:34 +00002150 current_locked = vcpu_lock(current);
Andrew Walbran318f5732018-11-20 16:23:42 +00002151 if (enable) {
Andrew Walbran3d84a262018-12-13 14:41:19 +00002152 /*
2153 * If it is pending and was not enabled before, increment the
2154 * count.
2155 */
Daniel Boulby4ca50f02022-07-29 18:29:34 +01002156 if (vcpu_is_virt_interrupt_pending(interrupts, intid) &&
2157 !vcpu_is_virt_interrupt_enabled(interrupts, intid)) {
2158 vcpu_interrupt_count_increment(current_locked,
2159 interrupts, intid);
Andrew Walbran3d84a262018-12-13 14:41:19 +00002160 }
Daniel Boulby4ca50f02022-07-29 18:29:34 +01002161 vcpu_virt_interrupt_set_enabled(interrupts, intid);
2162 vcpu_virt_interrupt_set_type(interrupts, intid, type);
Andrew Walbran318f5732018-11-20 16:23:42 +00002163 } else {
Andrew Walbran3d84a262018-12-13 14:41:19 +00002164 /*
2165 * If it is pending and was enabled before, decrement the count.
2166 */
Daniel Boulby4ca50f02022-07-29 18:29:34 +01002167 if (vcpu_is_virt_interrupt_pending(interrupts, intid) &&
2168 vcpu_is_virt_interrupt_enabled(interrupts, intid)) {
2169 vcpu_interrupt_count_decrement(current_locked,
2170 interrupts, intid);
Andrew Walbran3d84a262018-12-13 14:41:19 +00002171 }
Daniel Boulby4ca50f02022-07-29 18:29:34 +01002172 vcpu_virt_interrupt_clear_enabled(interrupts, intid);
2173 vcpu_virt_interrupt_set_type(interrupts, intid,
2174 INTERRUPT_TYPE_IRQ);
Andrew Walbran318f5732018-11-20 16:23:42 +00002175 }
2176
Manish Pandey35e452f2021-02-18 21:36:34 +00002177 vcpu_unlock(&current_locked);
Andrew Walbran318f5732018-11-20 16:23:42 +00002178 return 0;
2179}
2180
Madhukar Pappireddya1019112022-06-21 18:57:44 -05002181static void api_interrupt_clear_decrement(struct vcpu_locked locked_vcpu,
2182 struct interrupts *interrupts,
2183 uint32_t intid)
2184{
2185 vcpu_virt_interrupt_clear_pending(interrupts, intid);
2186 vcpu_interrupt_count_decrement(locked_vcpu, interrupts, intid);
2187}
2188
Andrew Walbran318f5732018-11-20 16:23:42 +00002189/**
2190 * Returns the ID of the next pending interrupt for the calling vCPU, and
2191 * acknowledges it (i.e. marks it as no longer pending). Returns
2192 * HF_INVALID_INTID if there are no pending interrupts.
2193 */
Wedson Almeida Filhoc559d132019-01-09 19:33:40 +00002194uint32_t api_interrupt_get(struct vcpu *current)
Andrew Walbran318f5732018-11-20 16:23:42 +00002195{
Raghu Krishnamurthy61a025b2022-07-20 08:37:04 -07002196 uint32_t i;
Andrew Walbran318f5732018-11-20 16:23:42 +00002197 uint32_t first_interrupt = HF_INVALID_INTID;
Manish Pandey35e452f2021-02-18 21:36:34 +00002198 struct vcpu_locked current_locked;
Daniel Boulby4ca50f02022-07-29 18:29:34 +01002199 struct interrupts *interrupts = &current->interrupts;
Andrew Walbran318f5732018-11-20 16:23:42 +00002200
2201 /*
2202 * Find the first enabled and pending interrupt ID, return it, and
2203 * deactivate it.
2204 */
Manish Pandey35e452f2021-02-18 21:36:34 +00002205 current_locked = vcpu_lock(current);
Andrew Walbran318f5732018-11-20 16:23:42 +00002206 for (i = 0; i < HF_NUM_INTIDS / INTERRUPT_REGISTER_BITS; ++i) {
2207 uint32_t enabled_and_pending =
Daniel Boulby4ca50f02022-07-29 18:29:34 +01002208 interrupts->interrupt_enabled.bitmap[i] &
2209 interrupts->interrupt_pending.bitmap[i];
Wedson Almeida Filho81568c42019-01-04 13:33:02 +00002210
Andrew Walbran318f5732018-11-20 16:23:42 +00002211 if (enabled_and_pending != 0) {
Andrew Walbran3d84a262018-12-13 14:41:19 +00002212 uint8_t bit_index = ctz(enabled_and_pending);
Daniel Boulby4ca50f02022-07-29 18:29:34 +01002213
2214 first_interrupt =
2215 i * INTERRUPT_REGISTER_BITS + bit_index;
Manish Pandey35e452f2021-02-18 21:36:34 +00002216
Andrew Walbran3d84a262018-12-13 14:41:19 +00002217 /*
2218 * Mark it as no longer pending and decrement the count.
2219 */
Madhukar Pappireddya1019112022-06-21 18:57:44 -05002220 api_interrupt_clear_decrement(
Daniel Boulby4ca50f02022-07-29 18:29:34 +01002221 current_locked, interrupts, first_interrupt);
Andrew Walbran318f5732018-11-20 16:23:42 +00002222 break;
2223 }
2224 }
Andrew Walbran318f5732018-11-20 16:23:42 +00002225
Manish Pandey35e452f2021-02-18 21:36:34 +00002226 vcpu_unlock(&current_locked);
Andrew Walbran318f5732018-11-20 16:23:42 +00002227 return first_interrupt;
2228}
2229
2230/**
Andrew Walbran4cf217a2018-12-14 15:24:50 +00002231 * Returns whether the current vCPU is allowed to inject an interrupt into the
Andrew Walbran318f5732018-11-20 16:23:42 +00002232 * given VM and vCPU.
2233 */
2234static inline bool is_injection_allowed(uint32_t target_vm_id,
2235 struct vcpu *current)
2236{
2237 uint32_t current_vm_id = current->vm->id;
Wedson Almeida Filho81568c42019-01-04 13:33:02 +00002238
Andrew Walbran318f5732018-11-20 16:23:42 +00002239 /*
2240 * The primary VM is allowed to inject interrupts into any VM. Secondary
2241 * VMs are only allowed to inject interrupts into their own vCPUs.
2242 */
2243 return current_vm_id == HF_PRIMARY_VM_ID ||
2244 current_vm_id == target_vm_id;
2245}
2246
2247/**
2248 * Injects a virtual interrupt of the given ID into the given target vCPU.
2249 * This doesn't cause the vCPU to actually be run immediately; it will be taken
2250 * when the vCPU is next run, which is up to the scheduler.
2251 *
Andrew Walbran3d84a262018-12-13 14:41:19 +00002252 * Returns:
2253 * - -1 on failure because the target VM or vCPU doesn't exist, the interrupt
2254 * ID is invalid, or the current VM is not allowed to inject interrupts to
2255 * the target VM.
2256 * - 0 on success if no further action is needed.
2257 * - 1 if it was called by the primary VM and the primary VM now needs to wake
2258 * up or kick the target vCPU.
Andrew Walbran318f5732018-11-20 16:23:42 +00002259 */
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01002260int64_t api_interrupt_inject(ffa_vm_id_t target_vm_id,
2261 ffa_vcpu_index_t target_vcpu_idx, uint32_t intid,
Andrew Walbran42347a92019-05-09 13:59:03 +01002262 struct vcpu *current, struct vcpu **next)
Andrew Walbran318f5732018-11-20 16:23:42 +00002263{
Andrew Walbran318f5732018-11-20 16:23:42 +00002264 struct vcpu *target_vcpu;
Andrew Walbran42347a92019-05-09 13:59:03 +01002265 struct vm *target_vm = vm_find(target_vm_id);
Andrew Walbran318f5732018-11-20 16:23:42 +00002266
2267 if (intid >= HF_NUM_INTIDS) {
2268 return -1;
2269 }
Wedson Almeida Filho81568c42019-01-04 13:33:02 +00002270
Andrew Walbran318f5732018-11-20 16:23:42 +00002271 if (target_vm == NULL) {
2272 return -1;
2273 }
Wedson Almeida Filho81568c42019-01-04 13:33:02 +00002274
Andrew Walbran318f5732018-11-20 16:23:42 +00002275 if (target_vcpu_idx >= target_vm->vcpu_count) {
Fuad Tabbab0ef2a42019-12-19 11:19:25 +00002276 /* The requested vCPU must exist. */
Andrew Walbran318f5732018-11-20 16:23:42 +00002277 return -1;
2278 }
Wedson Almeida Filho81568c42019-01-04 13:33:02 +00002279
Andrew Walbran318f5732018-11-20 16:23:42 +00002280 if (!is_injection_allowed(target_vm_id, current)) {
2281 return -1;
2282 }
Wedson Almeida Filho81568c42019-01-04 13:33:02 +00002283
Andrew Walbrane1310df2019-04-29 17:28:28 +01002284 target_vcpu = vm_get_vcpu(target_vm, target_vcpu_idx);
Andrew Walbran318f5732018-11-20 16:23:42 +00002285
Manish Pandey35e452f2021-02-18 21:36:34 +00002286 dlog_verbose(
2287 "Injecting interrupt %u for VM %#x vCPU %u from VM %#x vCPU "
2288 "%u\n",
2289 intid, target_vm_id, target_vcpu_idx, current->vm->id,
2290 vcpu_index(current));
Andrew Walbranfc9d4382019-05-10 18:07:21 +01002291 return internal_interrupt_inject(target_vcpu, intid, current, next);
Andrew Walbran318f5732018-11-20 16:23:42 +00002292}
Andrew Scull6386f252018-12-06 13:29:10 +00002293
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01002294/** Returns the version of the implemented FF-A specification. */
Daniel Boulbybaeaf2e2021-12-09 11:42:36 +00002295struct ffa_value api_ffa_version(struct vcpu *current,
2296 uint32_t requested_version)
Jose Marinhofc0b2b62019-06-06 11:18:45 +01002297{
Daniel Boulbybaeaf2e2021-12-09 11:42:36 +00002298 struct vm_locked current_vm_locked;
2299
Jose Marinhofc0b2b62019-06-06 11:18:45 +01002300 /*
2301 * Ensure that both major and minor revision representation occupies at
2302 * most 15 bits.
2303 */
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01002304 static_assert(0x8000 > FFA_VERSION_MAJOR,
Andrew Walbran9fd29072020-04-22 12:12:14 +01002305 "Major revision representation takes more than 15 bits.");
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01002306 static_assert(0x10000 > FFA_VERSION_MINOR,
Andrew Walbran9fd29072020-04-22 12:12:14 +01002307 "Minor revision representation takes more than 16 bits.");
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01002308 if (requested_version & FFA_VERSION_RESERVED_BIT) {
Andrew Walbran9fd29072020-04-22 12:12:14 +01002309 /* Invalid encoding, return an error. */
J-Alves13318e32021-02-22 17:21:00 +00002310 return (struct ffa_value){.func = (uint32_t)FFA_NOT_SUPPORTED};
Andrew Walbran9fd29072020-04-22 12:12:14 +01002311 }
Jose Marinhofc0b2b62019-06-06 11:18:45 +01002312
Daniel Boulbybaeaf2e2021-12-09 11:42:36 +00002313 current_vm_locked = vm_lock(current->vm);
2314 current_vm_locked.vm->ffa_version = requested_version;
2315 vm_unlock(&current_vm_locked);
2316
Daniel Boulby6e32c612021-02-17 15:09:41 +00002317 return ((struct ffa_value){.func = FFA_VERSION_COMPILED});
Jose Marinhofc0b2b62019-06-06 11:18:45 +01002318}
Andrew Walbranc1ad4ce2019-05-09 11:41:39 +01002319
2320int64_t api_debug_log(char c, struct vcpu *current)
2321{
Andrew Sculld54e1be2019-08-20 11:09:42 +01002322 bool flush;
Andrew Walbranc1ad4ce2019-05-09 11:41:39 +01002323 struct vm *vm = current->vm;
2324 struct vm_locked vm_locked = vm_lock(vm);
2325
Andrew Sculld54e1be2019-08-20 11:09:42 +01002326 if (c == '\n' || c == '\0') {
2327 flush = true;
2328 } else {
2329 vm->log_buffer[vm->log_buffer_length++] = c;
2330 flush = (vm->log_buffer_length == sizeof(vm->log_buffer));
2331 }
2332
2333 if (flush) {
Andrew Walbran7f904bf2019-07-12 16:38:38 +01002334 dlog_flush_vm_buffer(vm->id, vm->log_buffer,
2335 vm->log_buffer_length);
2336 vm->log_buffer_length = 0;
Andrew Walbranc1ad4ce2019-05-09 11:41:39 +01002337 }
2338
2339 vm_unlock(&vm_locked);
2340
2341 return 0;
2342}
Jose Marinhoc0f4ff22019-10-09 10:37:42 +01002343
2344/**
J-Alves6f72ca82021-11-01 12:34:58 +00002345 * Helper for success return of FFA_FEATURES, for when it is used to query
2346 * an interrupt ID.
2347 */
2348struct ffa_value api_ffa_feature_success(uint32_t arg2)
2349{
2350 return (struct ffa_value){
2351 .func = FFA_SUCCESS_32, .arg1 = 0U, .arg2 = arg2};
2352}
2353
2354/**
Jose Marinhoc0f4ff22019-10-09 10:37:42 +01002355 * Discovery function returning information about the implementation of optional
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01002356 * FF-A interfaces.
Jose Marinhoc0f4ff22019-10-09 10:37:42 +01002357 */
J-Alves6f72ca82021-11-01 12:34:58 +00002358struct ffa_value api_ffa_features(uint32_t feature_function_id)
Jose Marinhoc0f4ff22019-10-09 10:37:42 +01002359{
J-Alves6f72ca82021-11-01 12:34:58 +00002360 /*
2361 * According to table 13.8 of FF-A v1.1 Beta 0 spec, bits [30:8] MBZ
2362 * if using a feature ID.
2363 */
2364 if ((feature_function_id & FFA_FEATURES_FUNC_ID_MASK) == 0U &&
J-Alvesff676c12022-05-13 17:25:33 +01002365 (feature_function_id & ~FFA_FEATURES_FEATURE_ID_MASK) != 0U) {
J-Alves6f72ca82021-11-01 12:34:58 +00002366 return ffa_error(FFA_NOT_SUPPORTED);
2367 }
2368
2369 switch (feature_function_id) {
2370 /* Check support of the given Function ID. */
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01002371 case FFA_ERROR_32:
2372 case FFA_SUCCESS_32:
2373 case FFA_INTERRUPT_32:
2374 case FFA_VERSION_32:
2375 case FFA_FEATURES_32:
2376 case FFA_RX_RELEASE_32:
2377 case FFA_RXTX_MAP_64:
Daniel Boulby9e420ca2021-07-07 15:03:49 +01002378 case FFA_RXTX_UNMAP_32:
Fuad Tabbae4efcc32020-07-16 15:37:27 +01002379 case FFA_PARTITION_INFO_GET_32:
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01002380 case FFA_ID_GET_32:
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01002381 case FFA_MSG_WAIT_32:
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01002382 case FFA_RUN_32:
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01002383 case FFA_MEM_DONATE_32:
2384 case FFA_MEM_LEND_32:
2385 case FFA_MEM_SHARE_32:
2386 case FFA_MEM_RETRIEVE_REQ_32:
2387 case FFA_MEM_RETRIEVE_RESP_32:
2388 case FFA_MEM_RELINQUISH_32:
2389 case FFA_MEM_RECLAIM_32:
J-Alvesff676c12022-05-13 17:25:33 +01002390 case FFA_MEM_FRAG_RX_32:
2391 case FFA_MEM_FRAG_TX_32:
J-Alvesbc3de8b2020-12-07 14:32:04 +00002392 case FFA_MSG_SEND_DIRECT_RESP_64:
Olivier Deprezee9d6a92019-11-26 09:14:11 +00002393 case FFA_MSG_SEND_DIRECT_RESP_32:
J-Alvesbc3de8b2020-12-07 14:32:04 +00002394 case FFA_MSG_SEND_DIRECT_REQ_64:
Olivier Deprezee9d6a92019-11-26 09:14:11 +00002395 case FFA_MSG_SEND_DIRECT_REQ_32:
J-Alves3829fc02021-03-18 12:49:18 +00002396#if (MAKE_FFA_VERSION(1, 1) <= FFA_VERSION_COMPILED)
Daniel Boulbyb2fb80e2021-02-03 15:09:23 +00002397 /* FF-A v1.1 features. */
2398 case FFA_SPM_ID_GET_32:
J-Alves6f72ca82021-11-01 12:34:58 +00002399 case FFA_NOTIFICATION_BITMAP_CREATE_32:
2400 case FFA_NOTIFICATION_BITMAP_DESTROY_32:
2401 case FFA_NOTIFICATION_BIND_32:
2402 case FFA_NOTIFICATION_UNBIND_32:
2403 case FFA_NOTIFICATION_SET_32:
2404 case FFA_NOTIFICATION_GET_32:
2405 case FFA_NOTIFICATION_INFO_GET_64:
Raghu Krishnamurthy6764b072021-10-18 12:54:24 -07002406 case FFA_MEM_PERM_GET_32:
2407 case FFA_MEM_PERM_SET_32:
2408 case FFA_MEM_PERM_GET_64:
2409 case FFA_MEM_PERM_SET_64:
Federico Recanati25053ee2022-03-14 15:01:53 +01002410 case FFA_MSG_SEND2_32:
J-Alves3829fc02021-03-18 12:49:18 +00002411#endif
2412 return (struct ffa_value){.func = FFA_SUCCESS_32};
J-Alves6f72ca82021-11-01 12:34:58 +00002413
2414#if (MAKE_FFA_VERSION(1, 1) <= FFA_VERSION_COMPILED)
2415 /* Check support of a feature provided respective feature ID. */
2416 case FFA_FEATURE_NPI:
2417 return api_ffa_feature_success(HF_NOTIFICATION_PENDING_INTID);
2418 case FFA_FEATURE_SRI:
2419 return api_ffa_feature_success(HF_SCHEDULE_RECEIVER_INTID);
2420#endif
2421 /* Platform specific feature support. */
Jose Marinhoc0f4ff22019-10-09 10:37:42 +01002422 default:
J-Alves6f72ca82021-11-01 12:34:58 +00002423 return arch_ffa_features(feature_function_id);
Jose Marinhoc0f4ff22019-10-09 10:37:42 +01002424 }
2425}
Andrew Walbrane908c4a2019-12-02 17:13:47 +00002426
Olivier Deprezee9d6a92019-11-26 09:14:11 +00002427/**
J-Alves645eabe2021-02-22 16:08:27 +00002428 * FF-A specification states that x2/w2 Must Be Zero for direct messaging
2429 * interfaces.
2430 */
2431static inline bool api_ffa_dir_msg_is_arg2_zero(struct ffa_value args)
2432{
2433 return args.arg2 == 0U;
2434}
2435
2436/**
J-Alves76d99af2021-03-10 17:42:11 +00002437 * Limits size of arguments in ffa_value structure to 32-bit.
2438 */
2439static struct ffa_value api_ffa_value_copy32(struct ffa_value args)
2440{
2441 return (struct ffa_value){
2442 .func = (uint32_t)args.func,
2443 .arg1 = (uint32_t)args.arg1,
2444 .arg2 = (uint32_t)0,
2445 .arg3 = (uint32_t)args.arg3,
2446 .arg4 = (uint32_t)args.arg4,
2447 .arg5 = (uint32_t)args.arg5,
2448 .arg6 = (uint32_t)args.arg6,
2449 .arg7 = (uint32_t)args.arg7,
2450 };
2451}
2452
2453/**
2454 * Helper to copy direct message payload, depending on SMC used and expected
2455 * registers size.
2456 */
2457static struct ffa_value api_ffa_dir_msg_value(struct ffa_value args)
2458{
2459 if (args.func == FFA_MSG_SEND_DIRECT_REQ_32 ||
2460 args.func == FFA_MSG_SEND_DIRECT_RESP_32) {
2461 return api_ffa_value_copy32(args);
2462 }
2463
2464 return (struct ffa_value){
2465 .func = args.func,
2466 .arg1 = args.arg1,
2467 .arg2 = 0,
2468 .arg3 = args.arg3,
2469 .arg4 = args.arg4,
2470 .arg5 = args.arg5,
2471 .arg6 = args.arg6,
2472 .arg7 = args.arg7,
2473 };
2474}
2475
2476/**
Olivier Deprezee9d6a92019-11-26 09:14:11 +00002477 * Send an FF-A direct message request.
2478 */
2479struct ffa_value api_ffa_msg_send_direct_req(ffa_vm_id_t sender_vm_id,
2480 ffa_vm_id_t receiver_vm_id,
2481 struct ffa_value args,
2482 struct vcpu *current,
2483 struct vcpu **next)
2484{
J-Alves17228f72021-04-20 17:13:19 +01002485 struct ffa_value ret;
Olivier Deprezee9d6a92019-11-26 09:14:11 +00002486 struct vm *receiver_vm;
J-Alves6e2abc62021-12-02 14:58:56 +00002487 struct vm_locked receiver_locked;
Olivier Deprezee9d6a92019-11-26 09:14:11 +00002488 struct vcpu *receiver_vcpu;
2489 struct two_vcpu_locked vcpus_locked;
Madhukar Pappireddyc857ac22022-06-21 17:37:53 -05002490 enum vcpu_state next_state = VCPU_STATE_BLOCKED;
Olivier Deprezee9d6a92019-11-26 09:14:11 +00002491
J-Alves645eabe2021-02-22 16:08:27 +00002492 if (!api_ffa_dir_msg_is_arg2_zero(args)) {
2493 return ffa_error(FFA_INVALID_PARAMETERS);
2494 }
2495
Olivier Deprez55a189e2021-06-09 15:45:27 +02002496 if (!plat_ffa_is_direct_request_valid(current, sender_vm_id,
2497 receiver_vm_id)) {
J-Alvesaa336102021-03-01 13:02:45 +00002498 return ffa_error(FFA_INVALID_PARAMETERS);
Olivier Deprezee9d6a92019-11-26 09:14:11 +00002499 }
2500
Olivier Deprez55a189e2021-06-09 15:45:27 +02002501 if (plat_ffa_direct_request_forward(receiver_vm_id, args, &ret)) {
J-Alves17228f72021-04-20 17:13:19 +01002502 return ret;
2503 }
2504
2505 ret = (struct ffa_value){.func = FFA_INTERRUPT_32};
2506
Olivier Deprezee9d6a92019-11-26 09:14:11 +00002507 receiver_vm = vm_find(receiver_vm_id);
2508 if (receiver_vm == NULL) {
J-Alves88a13542021-12-14 15:39:52 +00002509 dlog_verbose("Invalid Receiver!\n");
Olivier Deprezee9d6a92019-11-26 09:14:11 +00002510 return ffa_error(FFA_INVALID_PARAMETERS);
2511 }
2512
2513 /*
J-Alves439ac972021-11-18 17:32:03 +00002514 * Check if sender supports sending direct message req, and if
2515 * receiver supports receipt of direct message requests.
2516 */
2517 if (!plat_ffa_is_direct_request_supported(current->vm, receiver_vm)) {
2518 return ffa_error(FFA_DENIED);
2519 }
2520
2521 /*
Olivier Deprezc13a8692022-04-08 17:47:14 +02002522 * Per FF-A EAC spec section 4.4.1 the firmware framework supports
Olivier Deprezee9d6a92019-11-26 09:14:11 +00002523 * UP (migratable) or MP partitions with a number of vCPUs matching the
2524 * number of PEs in the system. It further states that MP partitions
2525 * accepting direct request messages cannot migrate.
2526 */
J-Alvesad6a0432021-04-09 16:06:21 +01002527 receiver_vcpu = api_ffa_get_vm_vcpu(receiver_vm, current);
Olivier Deprezee9d6a92019-11-26 09:14:11 +00002528 if (receiver_vcpu == NULL) {
J-Alves88a13542021-12-14 15:39:52 +00002529 dlog_verbose("Invalid vCPU!\n");
Olivier Deprezee9d6a92019-11-26 09:14:11 +00002530 return ffa_error(FFA_INVALID_PARAMETERS);
2531 }
2532
Madhukar Pappireddyc857ac22022-06-21 17:37:53 -05002533 if (!plat_ffa_check_runtime_state_transition(
2534 current, sender_vm_id, HF_INVALID_VM_ID, receiver_vcpu,
2535 args.func, &next_state)) {
2536 return ffa_error(FFA_DENIED);
2537 }
2538
J-Alves6e2abc62021-12-02 14:58:56 +00002539 receiver_locked = vm_lock(receiver_vm);
Olivier Deprezee9d6a92019-11-26 09:14:11 +00002540 vcpus_locked = vcpu_lock_both(receiver_vcpu, current);
2541
2542 /*
2543 * If destination vCPU is executing or already received an
2544 * FFA_MSG_SEND_DIRECT_REQ then return to caller hinting recipient is
2545 * busy. There is a brief period of time where the vCPU state has
2546 * changed but regs_available is still false thus consider this case as
2547 * the vCPU not yet ready to receive a direct message request.
2548 */
2549 if (is_ffa_direct_msg_request_ongoing(vcpus_locked.vcpu1) ||
2550 receiver_vcpu->state == VCPU_STATE_RUNNING ||
2551 !receiver_vcpu->regs_available) {
J-Alves88a13542021-12-14 15:39:52 +00002552 dlog_verbose("Receiver is busy with another request.\n");
Olivier Deprezee9d6a92019-11-26 09:14:11 +00002553 ret = ffa_error(FFA_BUSY);
2554 goto out;
2555 }
2556
2557 if (atomic_load_explicit(&receiver_vcpu->vm->aborting,
2558 memory_order_relaxed)) {
2559 if (receiver_vcpu->state != VCPU_STATE_ABORTED) {
Olivier Deprezf92e5d42020-11-13 16:00:54 +01002560 dlog_notice("Aborting VM %#x vCPU %u\n",
Olivier Deprezee9d6a92019-11-26 09:14:11 +00002561 receiver_vcpu->vm->id,
2562 vcpu_index(receiver_vcpu));
2563 receiver_vcpu->state = VCPU_STATE_ABORTED;
2564 }
2565
2566 ret = ffa_error(FFA_ABORTED);
2567 goto out;
2568 }
2569
2570 switch (receiver_vcpu->state) {
2571 case VCPU_STATE_OFF:
2572 case VCPU_STATE_RUNNING:
2573 case VCPU_STATE_ABORTED:
Olivier Deprezee9d6a92019-11-26 09:14:11 +00002574 case VCPU_STATE_BLOCKED_INTERRUPT:
Madhukar Pappireddyb11e0d12021-08-02 19:44:35 -05002575 case VCPU_STATE_BLOCKED:
2576 case VCPU_STATE_PREEMPTED:
J-Alves88a13542021-12-14 15:39:52 +00002577 dlog_verbose("Receiver's vCPU can't receive request (%u)!\n",
2578 vcpu_index(receiver_vcpu));
Olivier Deprezee9d6a92019-11-26 09:14:11 +00002579 ret = ffa_error(FFA_BUSY);
2580 goto out;
Madhukar Pappireddyb11e0d12021-08-02 19:44:35 -05002581 case VCPU_STATE_WAITING:
Olivier Deprezee9d6a92019-11-26 09:14:11 +00002582 /*
Madhukar Pappireddyb11e0d12021-08-02 19:44:35 -05002583 * We expect target vCPU to be in WAITING state after either
2584 * having called ffa_msg_wait or sent a direct message response.
Olivier Deprezee9d6a92019-11-26 09:14:11 +00002585 */
2586 break;
2587 }
2588
2589 /* Inject timer interrupt if any pending */
2590 if (arch_timer_pending(&receiver_vcpu->regs)) {
Manish Pandeya5f39fb2020-09-11 09:47:11 +01002591 api_interrupt_inject_locked(vcpus_locked.vcpu1,
2592 HF_VIRTUAL_TIMER_INTID, current,
2593 NULL);
Olivier Deprezee9d6a92019-11-26 09:14:11 +00002594
2595 arch_timer_mask(&receiver_vcpu->regs);
2596 }
2597
2598 /* The receiver vCPU runs upon direct message invocation */
2599 receiver_vcpu->cpu = current->cpu;
2600 receiver_vcpu->state = VCPU_STATE_RUNNING;
2601 receiver_vcpu->regs_available = false;
Olivier Deprez2ebae3a2020-06-11 16:34:30 +02002602 receiver_vcpu->direct_request_origin_vm_id = sender_vm_id;
Olivier Deprezee9d6a92019-11-26 09:14:11 +00002603
J-Alves76d99af2021-03-10 17:42:11 +00002604 arch_regs_set_retval(&receiver_vcpu->regs, api_ffa_dir_msg_value(args));
Olivier Deprezee9d6a92019-11-26 09:14:11 +00002605
Madhukar Pappireddyc857ac22022-06-21 17:37:53 -05002606 assert(next_state == VCPU_STATE_BLOCKED);
Madhukar Pappireddyb11e0d12021-08-02 19:44:35 -05002607 current->state = VCPU_STATE_BLOCKED;
Olivier Deprezee9d6a92019-11-26 09:14:11 +00002608
Madhukar Pappireddy49fe6702022-06-21 17:52:23 -05002609 plat_ffa_wind_call_chain_ffa_direct_req(vcpus_locked.vcpu2,
2610 vcpus_locked.vcpu1);
2611
Olivier Deprezee9d6a92019-11-26 09:14:11 +00002612 /* Switch to receiver vCPU targeted to by direct msg request */
2613 *next = receiver_vcpu;
2614
J-Alves6e2abc62021-12-02 14:58:56 +00002615 if (!receiver_locked.vm->el0_partition) {
2616 /*
2617 * If the scheduler in the system is giving CPU cycles to the
2618 * receiver, due to pending notifications, inject the NPI
2619 * interrupt. Following call assumes that '*next' has been set
2620 * to receiver_vcpu.
2621 */
2622 plat_ffa_inject_notification_pending_interrupt(
2623 vcpus_locked.vcpu1.vcpu == receiver_vcpu
2624 ? vcpus_locked.vcpu1
2625 : vcpus_locked.vcpu2,
2626 current, receiver_locked);
2627 }
2628
Olivier Deprezee9d6a92019-11-26 09:14:11 +00002629 /*
2630 * Since this flow will lead to a VM switch, the return value will not
2631 * be applied to current vCPU.
2632 */
2633
2634out:
2635 sl_unlock(&receiver_vcpu->lock);
2636 sl_unlock(&current->lock);
J-Alves6e2abc62021-12-02 14:58:56 +00002637 vm_unlock(&receiver_locked);
Olivier Deprezee9d6a92019-11-26 09:14:11 +00002638
2639 return ret;
2640}
2641
2642/**
2643 * Send an FF-A direct message response.
2644 */
2645struct ffa_value api_ffa_msg_send_direct_resp(ffa_vm_id_t sender_vm_id,
2646 ffa_vm_id_t receiver_vm_id,
2647 struct ffa_value args,
2648 struct vcpu *current,
2649 struct vcpu **next)
2650{
Olivier Deprez2ebae3a2020-06-11 16:34:30 +02002651 struct vcpu_locked current_locked;
Madhukar Pappireddyc857ac22022-06-21 17:37:53 -05002652 enum vcpu_state next_state = VCPU_STATE_WAITING;
J-Alves645eabe2021-02-22 16:08:27 +00002653
2654 if (!api_ffa_dir_msg_is_arg2_zero(args)) {
2655 return ffa_error(FFA_INVALID_PARAMETERS);
2656 }
2657
J-Alves76d99af2021-03-10 17:42:11 +00002658 struct ffa_value to_ret = api_ffa_dir_msg_value(args);
Olivier Deprezee9d6a92019-11-26 09:14:11 +00002659
Olivier Deprez55a189e2021-06-09 15:45:27 +02002660 if (!plat_ffa_is_direct_response_valid(current, sender_vm_id,
2661 receiver_vm_id)) {
J-Alvesaa336102021-03-01 13:02:45 +00002662 return ffa_error(FFA_INVALID_PARAMETERS);
Olivier Deprezee9d6a92019-11-26 09:14:11 +00002663 }
2664
Madhukar Pappireddyc857ac22022-06-21 17:37:53 -05002665 if (!plat_ffa_check_runtime_state_transition(current, sender_vm_id,
2666 receiver_vm_id, NULL,
2667 args.func, &next_state)) {
2668 return ffa_error(FFA_DENIED);
2669 }
2670
2671 assert(next_state == VCPU_STATE_WAITING);
Olivier Deprez2ebae3a2020-06-11 16:34:30 +02002672 current_locked = vcpu_lock(current);
Madhukar Pappireddy469fa712022-06-21 18:53:33 -05002673
2674 /*
2675 * Ensure the terminating FFA_MSG_SEND_DIRECT_REQ had a
2676 * defined originator.
2677 */
2678 if (!is_ffa_direct_msg_request_ongoing(current_locked)) {
2679 /*
2680 * Sending direct response but direct request origin
2681 * vCPU is not set.
2682 */
2683 vcpu_unlock(&current_locked);
2684 return ffa_error(FFA_DENIED);
2685 }
2686
Manish Pandeya5f39fb2020-09-11 09:47:11 +01002687 if (api_ffa_is_managed_exit_ongoing(current_locked)) {
Olivier Deprezee9d6a92019-11-26 09:14:11 +00002688 /*
Madhukar Pappireddy469fa712022-06-21 18:53:33 -05002689 * Per FF-A v1.1 EAC0 section 8.3.1.2.1 rule 6, SPMC can signal
Madhukar Pappireddyed4ab942021-08-03 14:22:53 -05002690 * a secure interrupt to a SP that is performing managed exit.
2691 * We have taken a implementation defined choice to not allow
2692 * Managed exit while a SP is processing a secure interrupt.
2693 */
2694 CHECK(!current->processing_secure_interrupt);
2695
Madhukar Pappireddydd6fdfb2021-12-14 12:30:36 -06002696 plat_interrupts_set_priority_mask(current->priority_mask);
Madhukar Pappireddya1019112022-06-21 18:57:44 -05002697 /*
2698 * A SP may be signaled a managed exit but actually not trap
2699 * the virtual interrupt, probably because it has virtual
2700 * interrupts masked, and emit direct resp. In this case the
2701 * managed exit operation is considered completed and it would
2702 * also need to clear the pending managed exit flag for the SP
2703 * vCPU.
2704 */
Manish Pandeya5f39fb2020-09-11 09:47:11 +01002705 current->processing_managed_exit = false;
Madhukar Pappireddya1019112022-06-21 18:57:44 -05002706 struct interrupts *interrupts = &current->interrupts;
2707
2708 if (vcpu_is_virt_interrupt_pending(interrupts,
2709 HF_MANAGED_EXIT_INTID)) {
2710 api_interrupt_clear_decrement(current_locked,
2711 interrupts,
2712 HF_MANAGED_EXIT_INTID);
2713 }
Olivier Deprezee9d6a92019-11-26 09:14:11 +00002714 }
2715
2716 /* Clear direct request origin for the caller. */
2717 current->direct_request_origin_vm_id = HF_INVALID_VM_ID;
2718
Olivier Deprez2ebae3a2020-06-11 16:34:30 +02002719 vcpu_unlock(&current_locked);
Olivier Deprezee9d6a92019-11-26 09:14:11 +00002720
Olivier Deprez2ebae3a2020-06-11 16:34:30 +02002721 if (!vm_id_is_current_world(receiver_vm_id)) {
Madhukar Pappireddyb11e0d12021-08-02 19:44:35 -05002722 *next = api_switch_to_other_world(
2723 current, to_ret,
2724 /*
2725 * Current vcpu sent a direct response. It moves to
2726 * waiting state.
2727 */
2728 VCPU_STATE_WAITING);
Olivier Deprez2ebae3a2020-06-11 16:34:30 +02002729 } else if (receiver_vm_id == HF_PRIMARY_VM_ID) {
Madhukar Pappireddyb11e0d12021-08-02 19:44:35 -05002730 *next = api_switch_to_primary(
2731 current, to_ret,
2732 /*
2733 * Current vcpu sent a direct response. It moves to
2734 * waiting state.
2735 */
2736 VCPU_STATE_WAITING);
J-Alvesfe7f7372020-11-09 11:32:12 +00002737 } else if (vm_id_is_current_world(receiver_vm_id)) {
2738 /*
2739 * It is expected the receiver_vm_id to be from an SP, otherwise
J-Alvesaa79c012021-07-09 14:29:45 +01002740 * 'plat_ffa_is_direct_response_valid' should have
J-Alvesfe7f7372020-11-09 11:32:12 +00002741 * made function return error before getting to this point.
2742 */
2743 *next = api_switch_to_vm(current, to_ret,
Madhukar Pappireddyb11e0d12021-08-02 19:44:35 -05002744 /*
2745 * current vcpu sent a direct response.
2746 * It moves to waiting state.
2747 */
2748 VCPU_STATE_WAITING, receiver_vm_id);
Olivier Deprez2ebae3a2020-06-11 16:34:30 +02002749 } else {
2750 panic("Invalid direct message response invocation");
2751 }
Olivier Deprezee9d6a92019-11-26 09:14:11 +00002752
Madhukar Pappireddyc0fb87e2022-06-21 17:59:15 -05002753 plat_ffa_unwind_call_chain_ffa_direct_resp(current, *next);
2754
Olivier Deprezee9d6a92019-11-26 09:14:11 +00002755 return (struct ffa_value){.func = FFA_INTERRUPT_32};
2756}
2757
J-Alves84658fc2021-06-17 14:37:32 +01002758static bool api_memory_region_check_flags(
2759 struct ffa_memory_region *memory_region, uint32_t share_func)
2760{
2761 switch (share_func) {
2762 case FFA_MEM_SHARE_32:
2763 if ((memory_region->flags & FFA_MEMORY_REGION_FLAG_CLEAR) !=
2764 0U) {
2765 return false;
2766 }
2767 /* Intentional fall-through */
2768 case FFA_MEM_LEND_32:
2769 case FFA_MEM_DONATE_32: {
2770 /* Bits 31:2 Must Be Zero. */
2771 ffa_memory_receiver_flags_t to_mask =
2772 ~(FFA_MEMORY_REGION_FLAG_CLEAR |
2773 FFA_MEMORY_REGION_FLAG_TIME_SLICE);
2774
2775 if ((memory_region->flags & to_mask) != 0U) {
2776 return false;
2777 }
2778 break;
2779 }
2780 default:
2781 panic("Check for mem send calls only.\n");
2782 }
2783
2784 /* Last check reserved values are 0 */
2785 return true;
2786}
2787
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01002788struct ffa_value api_ffa_mem_send(uint32_t share_func, uint32_t length,
2789 uint32_t fragment_length, ipaddr_t address,
Andrew Walbran1a86aa92020-05-15 17:22:28 +01002790 uint32_t page_count, struct vcpu *current)
Andrew Walbrane908c4a2019-12-02 17:13:47 +00002791{
2792 struct vm *from = current->vm;
2793 struct vm *to;
2794 const void *from_msg;
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01002795 struct ffa_memory_region *memory_region;
2796 struct ffa_value ret;
J-Alves363f5722022-04-25 17:37:37 +01002797 bool targets_other_world = false;
Andrew Walbrane908c4a2019-12-02 17:13:47 +00002798
2799 if (ipa_addr(address) != 0 || page_count != 0) {
2800 /*
2801 * Hafnium only supports passing the descriptor in the TX
2802 * mailbox.
2803 */
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01002804 return ffa_error(FFA_INVALID_PARAMETERS);
Andrew Walbrane908c4a2019-12-02 17:13:47 +00002805 }
2806
Andrew Walbranca808b12020-05-15 17:22:28 +01002807 if (fragment_length > length) {
2808 dlog_verbose(
2809 "Fragment length %d greater than total length %d.\n",
2810 fragment_length, length);
2811 return ffa_error(FFA_INVALID_PARAMETERS);
2812 }
2813 if (fragment_length < sizeof(struct ffa_memory_region) +
2814 sizeof(struct ffa_memory_access)) {
2815 dlog_verbose(
2816 "Initial fragment length %d smaller than header size "
2817 "%d.\n",
2818 fragment_length,
2819 sizeof(struct ffa_memory_region) +
2820 sizeof(struct ffa_memory_access));
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01002821 return ffa_error(FFA_INVALID_PARAMETERS);
Andrew Walbrane908c4a2019-12-02 17:13:47 +00002822 }
2823
2824 /*
2825 * Check that the sender has configured its send buffer. If the TX
2826 * mailbox at from_msg is configured (i.e. from_msg != NULL) then it can
2827 * be safely accessed after releasing the lock since the TX mailbox
2828 * address can only be configured once.
2829 */
2830 sl_lock(&from->lock);
2831 from_msg = from->mailbox.send;
2832 sl_unlock(&from->lock);
2833
2834 if (from_msg == NULL) {
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01002835 return ffa_error(FFA_INVALID_PARAMETERS);
Andrew Walbrane908c4a2019-12-02 17:13:47 +00002836 }
2837
2838 /*
Andrew Walbran5de9c3d2020-02-10 13:35:29 +00002839 * Copy the memory region descriptor to a fresh page from the memory
2840 * pool. This prevents the sender from changing it underneath us, and
2841 * also lets us keep it around in the share state table if needed.
Andrew Walbrane908c4a2019-12-02 17:13:47 +00002842 */
Andrew Walbran1a86aa92020-05-15 17:22:28 +01002843 if (fragment_length > HF_MAILBOX_SIZE ||
2844 fragment_length > MM_PPOOL_ENTRY_SIZE) {
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01002845 return ffa_error(FFA_INVALID_PARAMETERS);
Andrew Walbrane908c4a2019-12-02 17:13:47 +00002846 }
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01002847 memory_region = (struct ffa_memory_region *)mpool_alloc(&api_page_pool);
Andrew Walbran5de9c3d2020-02-10 13:35:29 +00002848 if (memory_region == NULL) {
2849 dlog_verbose("Failed to allocate memory region copy.\n");
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01002850 return ffa_error(FFA_NO_MEMORY);
Andrew Walbran5de9c3d2020-02-10 13:35:29 +00002851 }
Andrew Walbran1a86aa92020-05-15 17:22:28 +01002852 memcpy_s(memory_region, MM_PPOOL_ENTRY_SIZE, from_msg, fragment_length);
Andrew Walbrane908c4a2019-12-02 17:13:47 +00002853
2854 /* The sender must match the caller. */
2855 if (memory_region->sender != from->id) {
Andrew Walbran5de9c3d2020-02-10 13:35:29 +00002856 dlog_verbose("Memory region sender doesn't match caller.\n");
J-Alves99948662021-07-28 18:07:04 +01002857 ret = ffa_error(FFA_DENIED);
Andrew Walbran5de9c3d2020-02-10 13:35:29 +00002858 goto out;
Andrew Walbrane908c4a2019-12-02 17:13:47 +00002859 }
2860
J-Alves84658fc2021-06-17 14:37:32 +01002861 if (!api_memory_region_check_flags(memory_region, share_func)) {
2862 dlog_verbose(
2863 "Memory region reserved arguments must be zero.\n");
2864 ret = ffa_error(FFA_INVALID_PARAMETERS);
2865 goto out;
2866 }
2867
J-Alves363f5722022-04-25 17:37:37 +01002868 if (memory_region->receiver_count == 0U) {
2869 dlog_verbose("Receiver count can't be 0.\n");
2870 ret = ffa_error(FFA_INVALID_PARAMETERS);
2871 goto out;
2872 }
2873
2874 if (share_func == FFA_MEM_DONATE_32 &&
2875 memory_region->receiver_count != 1U) {
Andrew Walbran5de9c3d2020-02-10 13:35:29 +00002876 dlog_verbose(
J-Alves363f5722022-04-25 17:37:37 +01002877 "FFA_MEM_DONATE only supports one recipient. "
2878 "Specified %u\n",
2879 memory_region->receiver_count);
2880 ret = ffa_error(FFA_INVALID_PARAMETERS);
2881 goto out;
2882 }
2883
2884 if (memory_region->receiver_count > MAX_MEM_SHARE_RECIPIENTS) {
2885 dlog_verbose(
2886 "Max number of recipients supported is %u "
2887 "specified %u\n",
2888 MAX_MEM_SHARE_RECIPIENTS,
Andrew Walbrana65a1322020-04-06 19:32:32 +01002889 memory_region->receiver_count);
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01002890 ret = ffa_error(FFA_INVALID_PARAMETERS);
Andrew Walbran5de9c3d2020-02-10 13:35:29 +00002891 goto out;
Andrew Walbrane908c4a2019-12-02 17:13:47 +00002892 }
2893
2894 /*
2895 * Ensure that the receiver VM exists and isn't the same as the sender.
J-Alves363f5722022-04-25 17:37:37 +01002896 * If there is a receiver from the other world, track it for later
2897 * forwarding if needed.
Andrew Walbrane908c4a2019-12-02 17:13:47 +00002898 */
J-Alves363f5722022-04-25 17:37:37 +01002899 for (uint32_t i = 0U; i < memory_region->receiver_count; i++) {
2900 ffa_vm_id_t receiver_id =
2901 memory_region->receivers[i]
2902 .receiver_permissions.receiver;
2903 to = vm_find(receiver_id);
2904
2905 if (vm_id_is_current_world(receiver_id) &&
2906 (to == NULL || to == from)) {
2907 dlog_verbose("%s: invalid receiver.\n", __func__);
2908 ret = ffa_error(FFA_INVALID_PARAMETERS);
2909 goto out;
2910 }
2911
2912 if (!plat_ffa_is_memory_send_valid(receiver_id, share_func)) {
2913 ret = ffa_error(FFA_DENIED);
2914 goto out;
2915 }
2916
2917 /* Capture if any of the receivers is from the other world. */
2918 if (!targets_other_world) {
2919 targets_other_world =
2920 !vm_id_is_current_world(receiver_id);
2921 }
Andrew Walbran5de9c3d2020-02-10 13:35:29 +00002922 }
2923
J-Alves363f5722022-04-25 17:37:37 +01002924 /* Allow for one memory region to be shared to the TEE. */
2925 if (targets_other_world) {
2926 assert(memory_region->receiver_count == 1 &&
2927 to->id == HF_TEE_VM_ID);
Andrew Walbran5de9c3d2020-02-10 13:35:29 +00002928 /*
2929 * The 'to' VM lock is only needed in the case that it is the
2930 * TEE VM.
2931 */
2932 struct two_vm_locked vm_to_from_lock = vm_lock_both(to, from);
2933
Federico Recanati86f6cde2022-04-28 19:44:49 +02002934 if (msg_receiver_busy(vm_to_from_lock.vm1)) {
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01002935 ret = ffa_error(FFA_BUSY);
Andrew Walbran5de9c3d2020-02-10 13:35:29 +00002936 goto out_unlock;
2937 }
2938
Andrew Walbran1a86aa92020-05-15 17:22:28 +01002939 ret = ffa_memory_tee_send(
2940 vm_to_from_lock.vm2, vm_to_from_lock.vm1, memory_region,
2941 length, fragment_length, share_func, &api_page_pool);
2942 /*
2943 * ffa_tee_memory_send takes ownership of the memory_region, so
2944 * make sure we don't free it.
2945 */
2946 memory_region = NULL;
Andrew Walbran5de9c3d2020-02-10 13:35:29 +00002947
2948 out_unlock:
2949 vm_unlock(&vm_to_from_lock.vm1);
2950 vm_unlock(&vm_to_from_lock.vm2);
2951 } else {
2952 struct vm_locked from_locked = vm_lock(from);
2953
Andrew Walbran1a86aa92020-05-15 17:22:28 +01002954 ret = ffa_memory_send(from_locked, memory_region, length,
2955 fragment_length, share_func,
2956 &api_page_pool);
Andrew Walbran5de9c3d2020-02-10 13:35:29 +00002957 /*
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01002958 * ffa_memory_send takes ownership of the memory_region, so
Andrew Walbran5de9c3d2020-02-10 13:35:29 +00002959 * make sure we don't free it.
2960 */
2961 memory_region = NULL;
2962
2963 vm_unlock(&from_locked);
2964 }
2965
2966out:
2967 if (memory_region != NULL) {
2968 mpool_free(&api_page_pool, memory_region);
2969 }
2970
2971 return ret;
2972}
2973
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01002974struct ffa_value api_ffa_mem_retrieve_req(uint32_t length,
2975 uint32_t fragment_length,
2976 ipaddr_t address, uint32_t page_count,
2977 struct vcpu *current)
Andrew Walbran5de9c3d2020-02-10 13:35:29 +00002978{
2979 struct vm *to = current->vm;
2980 struct vm_locked to_locked;
2981 const void *to_msg;
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01002982 struct ffa_memory_region *retrieve_request;
Andrew Walbran5de9c3d2020-02-10 13:35:29 +00002983 uint32_t message_buffer_size;
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01002984 struct ffa_value ret;
Andrew Walbran5de9c3d2020-02-10 13:35:29 +00002985
2986 if (ipa_addr(address) != 0 || page_count != 0) {
2987 /*
2988 * Hafnium only supports passing the descriptor in the TX
2989 * mailbox.
2990 */
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01002991 return ffa_error(FFA_INVALID_PARAMETERS);
Andrew Walbrane908c4a2019-12-02 17:13:47 +00002992 }
2993
Andrew Walbrana65a1322020-04-06 19:32:32 +01002994 if (fragment_length != length) {
2995 dlog_verbose("Fragmentation not yet supported.\n");
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01002996 return ffa_error(FFA_INVALID_PARAMETERS);
Andrew Walbran5de9c3d2020-02-10 13:35:29 +00002997 }
Andrew Walbrane908c4a2019-12-02 17:13:47 +00002998
Andrew Walbran5de9c3d2020-02-10 13:35:29 +00002999 retrieve_request =
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01003000 (struct ffa_memory_region *)cpu_get_buffer(current->cpu);
Andrew Walbran5de9c3d2020-02-10 13:35:29 +00003001 message_buffer_size = cpu_get_buffer_size(current->cpu);
3002 if (length > HF_MAILBOX_SIZE || length > message_buffer_size) {
3003 dlog_verbose("Retrieve request too long.\n");
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01003004 return ffa_error(FFA_INVALID_PARAMETERS);
Andrew Walbran5de9c3d2020-02-10 13:35:29 +00003005 }
3006
3007 to_locked = vm_lock(to);
3008 to_msg = to->mailbox.send;
3009
3010 if (to_msg == NULL) {
3011 dlog_verbose("TX buffer not setup.\n");
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01003012 ret = ffa_error(FFA_INVALID_PARAMETERS);
Andrew Walbran5de9c3d2020-02-10 13:35:29 +00003013 goto out;
3014 }
3015
3016 /*
3017 * Copy the retrieve request descriptor to an internal buffer, so that
3018 * the caller can't change it underneath us.
3019 */
3020 memcpy_s(retrieve_request, message_buffer_size, to_msg, length);
3021
Federico Recanati86f6cde2022-04-28 19:44:49 +02003022 if (msg_receiver_busy(to_locked)) {
Andrew Walbran5de9c3d2020-02-10 13:35:29 +00003023 /*
3024 * Can't retrieve memory information if the mailbox is not
3025 * available.
3026 */
3027 dlog_verbose("RX buffer not ready.\n");
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01003028 ret = ffa_error(FFA_BUSY);
Andrew Walbrane908c4a2019-12-02 17:13:47 +00003029 goto out;
3030 }
3031
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01003032 ret = ffa_memory_retrieve(to_locked, retrieve_request, length,
3033 &api_page_pool);
Andrew Walbrane908c4a2019-12-02 17:13:47 +00003034
3035out:
Andrew Walbran5de9c3d2020-02-10 13:35:29 +00003036 vm_unlock(&to_locked);
3037 return ret;
3038}
3039
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01003040struct ffa_value api_ffa_mem_relinquish(struct vcpu *current)
Andrew Walbran5de9c3d2020-02-10 13:35:29 +00003041{
3042 struct vm *from = current->vm;
3043 struct vm_locked from_locked;
3044 const void *from_msg;
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01003045 struct ffa_mem_relinquish *relinquish_request;
Andrew Walbran5de9c3d2020-02-10 13:35:29 +00003046 uint32_t message_buffer_size;
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01003047 struct ffa_value ret;
Andrew Walbran5de9c3d2020-02-10 13:35:29 +00003048 uint32_t length;
3049
3050 from_locked = vm_lock(from);
3051 from_msg = from->mailbox.send;
3052
3053 if (from_msg == NULL) {
3054 dlog_verbose("TX buffer not setup.\n");
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01003055 ret = ffa_error(FFA_INVALID_PARAMETERS);
Andrew Walbran5de9c3d2020-02-10 13:35:29 +00003056 goto out;
3057 }
3058
3059 /*
3060 * Calculate length from relinquish descriptor before copying. We will
3061 * check again later to make sure it hasn't changed.
3062 */
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01003063 length = sizeof(struct ffa_mem_relinquish) +
3064 ((struct ffa_mem_relinquish *)from_msg)->endpoint_count *
3065 sizeof(ffa_vm_id_t);
Andrew Walbran5de9c3d2020-02-10 13:35:29 +00003066 /*
3067 * Copy the relinquish descriptor to an internal buffer, so that the
3068 * caller can't change it underneath us.
3069 */
3070 relinquish_request =
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01003071 (struct ffa_mem_relinquish *)cpu_get_buffer(current->cpu);
Andrew Walbran5de9c3d2020-02-10 13:35:29 +00003072 message_buffer_size = cpu_get_buffer_size(current->cpu);
3073 if (length > HF_MAILBOX_SIZE || length > message_buffer_size) {
3074 dlog_verbose("Relinquish message too long.\n");
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01003075 ret = ffa_error(FFA_INVALID_PARAMETERS);
Andrew Walbran5de9c3d2020-02-10 13:35:29 +00003076 goto out;
3077 }
3078 memcpy_s(relinquish_request, message_buffer_size, from_msg, length);
3079
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01003080 if (sizeof(struct ffa_mem_relinquish) +
3081 relinquish_request->endpoint_count * sizeof(ffa_vm_id_t) !=
Andrew Walbran5de9c3d2020-02-10 13:35:29 +00003082 length) {
3083 dlog_verbose(
3084 "Endpoint count changed while copying to internal "
3085 "buffer.\n");
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01003086 ret = ffa_error(FFA_INVALID_PARAMETERS);
Andrew Walbran5de9c3d2020-02-10 13:35:29 +00003087 goto out;
3088 }
3089
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01003090 ret = ffa_memory_relinquish(from_locked, relinquish_request,
3091 &api_page_pool);
Andrew Walbran5de9c3d2020-02-10 13:35:29 +00003092
3093out:
3094 vm_unlock(&from_locked);
3095 return ret;
3096}
3097
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01003098struct ffa_value api_ffa_mem_reclaim(ffa_memory_handle_t handle,
3099 ffa_memory_region_flags_t flags,
3100 struct vcpu *current)
Andrew Walbran5de9c3d2020-02-10 13:35:29 +00003101{
3102 struct vm *to = current->vm;
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01003103 struct ffa_value ret;
Andrew Walbran5de9c3d2020-02-10 13:35:29 +00003104
Olivier Deprez55a189e2021-06-09 15:45:27 +02003105 if (plat_ffa_memory_handle_allocated_by_current_world(handle)) {
Andrew Walbran290b0c92020-02-03 16:37:14 +00003106 struct vm_locked to_locked = vm_lock(to);
3107
Andrew Walbranca808b12020-05-15 17:22:28 +01003108 ret = ffa_memory_reclaim(to_locked, handle, flags,
Andrew Walbranb5ab43c2020-04-30 11:32:54 +01003109 &api_page_pool);
Andrew Walbran5de9c3d2020-02-10 13:35:29 +00003110
Andrew Walbran290b0c92020-02-03 16:37:14 +00003111 vm_unlock(&to_locked);
3112 } else {
3113 struct vm *from = vm_find(HF_TEE_VM_ID);
3114 struct two_vm_locked vm_to_from_lock = vm_lock_both(to, from);
3115
Andrew Walbranca808b12020-05-15 17:22:28 +01003116 ret = ffa_memory_tee_reclaim(vm_to_from_lock.vm1,
3117 vm_to_from_lock.vm2, handle, flags,
3118 &api_page_pool);
3119
3120 vm_unlock(&vm_to_from_lock.vm1);
3121 vm_unlock(&vm_to_from_lock.vm2);
3122 }
3123
3124 return ret;
3125}
3126
3127struct ffa_value api_ffa_mem_frag_rx(ffa_memory_handle_t handle,
3128 uint32_t fragment_offset,
3129 ffa_vm_id_t sender_vm_id,
3130 struct vcpu *current)
3131{
3132 struct vm *to = current->vm;
3133 struct vm_locked to_locked;
3134 struct ffa_value ret;
3135
3136 /* Sender ID MBZ at virtual instance. */
3137 if (sender_vm_id != 0) {
3138 return ffa_error(FFA_INVALID_PARAMETERS);
3139 }
3140
3141 to_locked = vm_lock(to);
3142
Federico Recanati86f6cde2022-04-28 19:44:49 +02003143 if (msg_receiver_busy(to_locked)) {
Andrew Walbranca808b12020-05-15 17:22:28 +01003144 /*
3145 * Can't retrieve memory information if the mailbox is not
3146 * available.
3147 */
3148 dlog_verbose("RX buffer not ready.\n");
3149 ret = ffa_error(FFA_BUSY);
3150 goto out;
3151 }
3152
3153 ret = ffa_memory_retrieve_continue(to_locked, handle, fragment_offset,
3154 &api_page_pool);
3155
3156out:
3157 vm_unlock(&to_locked);
3158 return ret;
3159}
3160
3161struct ffa_value api_ffa_mem_frag_tx(ffa_memory_handle_t handle,
3162 uint32_t fragment_length,
3163 ffa_vm_id_t sender_vm_id,
3164 struct vcpu *current)
3165{
3166 struct vm *from = current->vm;
3167 const void *from_msg;
3168 void *fragment_copy;
3169 struct ffa_value ret;
3170
3171 /* Sender ID MBZ at virtual instance. */
3172 if (sender_vm_id != 0) {
3173 return ffa_error(FFA_INVALID_PARAMETERS);
3174 }
3175
3176 /*
3177 * Check that the sender has configured its send buffer. If the TX
3178 * mailbox at from_msg is configured (i.e. from_msg != NULL) then it can
3179 * be safely accessed after releasing the lock since the TX mailbox
3180 * address can only be configured once.
3181 */
3182 sl_lock(&from->lock);
3183 from_msg = from->mailbox.send;
3184 sl_unlock(&from->lock);
3185
3186 if (from_msg == NULL) {
3187 return ffa_error(FFA_INVALID_PARAMETERS);
3188 }
3189
3190 /*
3191 * Copy the fragment to a fresh page from the memory pool. This prevents
3192 * the sender from changing it underneath us, and also lets us keep it
3193 * around in the share state table if needed.
3194 */
3195 if (fragment_length > HF_MAILBOX_SIZE ||
3196 fragment_length > MM_PPOOL_ENTRY_SIZE) {
3197 dlog_verbose(
3198 "Fragment length %d larger than mailbox size %d.\n",
3199 fragment_length, HF_MAILBOX_SIZE);
3200 return ffa_error(FFA_INVALID_PARAMETERS);
3201 }
3202 if (fragment_length < sizeof(struct ffa_memory_region_constituent) ||
3203 fragment_length % sizeof(struct ffa_memory_region_constituent) !=
3204 0) {
3205 dlog_verbose("Invalid fragment length %d.\n", fragment_length);
3206 return ffa_error(FFA_INVALID_PARAMETERS);
3207 }
3208 fragment_copy = mpool_alloc(&api_page_pool);
3209 if (fragment_copy == NULL) {
3210 dlog_verbose("Failed to allocate fragment copy.\n");
3211 return ffa_error(FFA_NO_MEMORY);
3212 }
3213 memcpy_s(fragment_copy, MM_PPOOL_ENTRY_SIZE, from_msg, fragment_length);
3214
3215 /*
3216 * Hafnium doesn't support fragmentation of memory retrieve requests
3217 * (because it doesn't support caller-specified mappings, so a request
3218 * will never be larger than a single page), so this must be part of a
3219 * memory send (i.e. donate, lend or share) request.
3220 *
3221 * We can tell from the handle whether the memory transaction is for the
3222 * TEE or not.
3223 */
3224 if ((handle & FFA_MEMORY_HANDLE_ALLOCATOR_MASK) ==
3225 FFA_MEMORY_HANDLE_ALLOCATOR_HYPERVISOR) {
3226 struct vm_locked from_locked = vm_lock(from);
3227
3228 ret = ffa_memory_send_continue(from_locked, fragment_copy,
3229 fragment_length, handle,
3230 &api_page_pool);
3231 /*
3232 * `ffa_memory_send_continue` takes ownership of the
3233 * fragment_copy, so we don't need to free it here.
3234 */
3235 vm_unlock(&from_locked);
3236 } else {
3237 struct vm *to = vm_find(HF_TEE_VM_ID);
3238 struct two_vm_locked vm_to_from_lock = vm_lock_both(to, from);
3239
3240 /*
3241 * The TEE RX buffer state is checked in
3242 * `ffa_memory_tee_send_continue` rather than here, as we need
3243 * to return `FFA_MEM_FRAG_RX` with the current offset rather
3244 * than FFA_ERROR FFA_BUSY in case it is busy.
3245 */
3246
3247 ret = ffa_memory_tee_send_continue(
3248 vm_to_from_lock.vm2, vm_to_from_lock.vm1, fragment_copy,
3249 fragment_length, handle, &api_page_pool);
3250 /*
3251 * `ffa_memory_tee_send_continue` takes ownership of the
3252 * fragment_copy, so we don't need to free it here.
3253 */
Andrew Walbran290b0c92020-02-03 16:37:14 +00003254
3255 vm_unlock(&vm_to_from_lock.vm1);
3256 vm_unlock(&vm_to_from_lock.vm2);
3257 }
Andrew Walbrane908c4a2019-12-02 17:13:47 +00003258
3259 return ret;
3260}
Max Shvetsov40108e72020-08-27 12:39:50 +01003261
Olivier Deprezd614d322021-06-18 15:21:00 +02003262/**
3263 * Register an entry point for a vCPU in warm boot cases.
3264 * DEN0077A FF-A v1.1 Beta0 section 18.3.2.1 FFA_SECONDARY_EP_REGISTER.
3265 */
Max Shvetsov40108e72020-08-27 12:39:50 +01003266struct ffa_value api_ffa_secondary_ep_register(ipaddr_t entry_point,
3267 struct vcpu *current)
3268{
3269 struct vm_locked vm_locked;
Olivier Deprezd614d322021-06-18 15:21:00 +02003270 struct ffa_value ret = ffa_error(FFA_DENIED);
Max Shvetsov40108e72020-08-27 12:39:50 +01003271
Olivier Deprezd614d322021-06-18 15:21:00 +02003272 /*
3273 * Reject if interface is not supported at this FF-A instance
3274 * (DEN0077A FF-A v1.1 Beta0 Table 18.29) or the VM is UP.
3275 */
3276 if (!plat_ffa_is_secondary_ep_register_supported() ||
3277 current->vm->vcpu_count == 1) {
3278 return ffa_error(FFA_NOT_SUPPORTED);
3279 }
3280
3281 /*
3282 * No further check is made on the address validity
3283 * (FF-A v1.1 Beta0 Table 18.29) as the VM boundaries are not known
3284 * from the VM or vCPU structure.
3285 * DEN0077A FF-A v1.1 Beta0 section 18.3.2.1.1:
3286 * For each SP [...] the Framework assumes that the same entry point
3287 * address is used for initializing any execution context during a
3288 * secondary cold boot.
3289 * If this function is invoked multiple times, then the entry point
3290 * address specified in the last valid invocation must be used by the
3291 * callee.
3292 */
Max Shvetsov40108e72020-08-27 12:39:50 +01003293 vm_locked = vm_lock(current->vm);
Olivier Deprezd614d322021-06-18 15:21:00 +02003294 if (vm_locked.vm->initialized) {
3295 goto out;
3296 }
3297
Max Shvetsov40108e72020-08-27 12:39:50 +01003298 vm_locked.vm->secondary_ep = entry_point;
Olivier Deprezd614d322021-06-18 15:21:00 +02003299
3300 ret = (struct ffa_value){.func = FFA_SUCCESS_32};
3301
3302out:
Max Shvetsov40108e72020-08-27 12:39:50 +01003303 vm_unlock(&vm_locked);
3304
Olivier Deprezd614d322021-06-18 15:21:00 +02003305 return ret;
Max Shvetsov40108e72020-08-27 12:39:50 +01003306}
J-Alvesa0f317d2021-06-09 13:31:59 +01003307
3308struct ffa_value api_ffa_notification_bitmap_create(ffa_vm_id_t vm_id,
3309 ffa_vcpu_count_t vcpu_count,
3310 struct vcpu *current)
3311{
3312 if (!plat_ffa_is_notifications_create_valid(current, vm_id)) {
3313 dlog_verbose("Bitmap create for NWd VM IDs only (%x).\n",
3314 vm_id);
3315 return ffa_error(FFA_NOT_SUPPORTED);
3316 }
3317
3318 return plat_ffa_notifications_bitmap_create(vm_id, vcpu_count);
3319}
3320
3321struct ffa_value api_ffa_notification_bitmap_destroy(ffa_vm_id_t vm_id,
3322 struct vcpu *current)
3323{
3324 /*
3325 * Validity of use of this interface is the same as for bitmap create.
3326 */
3327 if (!plat_ffa_is_notifications_create_valid(current, vm_id)) {
3328 dlog_verbose("Bitmap destroy for NWd VM IDs only (%x).\n",
3329 vm_id);
3330 return ffa_error(FFA_NOT_SUPPORTED);
3331 }
3332
3333 return plat_ffa_notifications_bitmap_destroy(vm_id);
3334}
J-Alvesc003a7a2021-03-18 13:06:53 +00003335
3336struct ffa_value api_ffa_notification_update_bindings(
3337 ffa_vm_id_t sender_vm_id, ffa_vm_id_t receiver_vm_id, uint32_t flags,
3338 ffa_notifications_bitmap_t notifications, bool is_bind,
3339 struct vcpu *current)
3340{
3341 struct ffa_value ret = {.func = FFA_SUCCESS_32};
3342 struct vm_locked receiver_locked;
3343 const bool is_per_vcpu = (flags & FFA_NOTIFICATION_FLAG_PER_VCPU) != 0U;
3344 const ffa_vm_id_t id_to_update =
3345 is_bind ? sender_vm_id : HF_INVALID_VM_ID;
3346 const ffa_vm_id_t id_to_validate =
3347 is_bind ? HF_INVALID_VM_ID : sender_vm_id;
J-Alves1daeaea2022-09-06 17:41:24 +01003348 const uint32_t flags_mbz =
3349 is_bind ? ~FFA_NOTIFICATIONS_FLAG_PER_VCPU : ~0U;
3350
3351 if ((flags_mbz & flags) != 0U) {
3352 return ffa_error(FFA_INVALID_PARAMETERS);
3353 }
J-Alvesc003a7a2021-03-18 13:06:53 +00003354
3355 if (!plat_ffa_is_notifications_bind_valid(current, sender_vm_id,
3356 receiver_vm_id)) {
3357 dlog_verbose("Invalid use of notifications bind interface.\n");
3358 return ffa_error(FFA_INVALID_PARAMETERS);
3359 }
3360
J-Alvesb15e9402021-09-08 11:44:42 +01003361 if (plat_ffa_notifications_update_bindings_forward(
3362 receiver_vm_id, sender_vm_id, flags, notifications, is_bind,
3363 &ret)) {
J-Alvesb15e9402021-09-08 11:44:42 +01003364 return ret;
3365 }
3366
J-Alvesc003a7a2021-03-18 13:06:53 +00003367 if (notifications == 0U) {
3368 dlog_verbose("No notifications have been specified.\n");
3369 return ffa_error(FFA_INVALID_PARAMETERS);
3370 }
3371
3372 /**
3373 * This check assumes receiver is the current VM, and has been enforced
3374 * by 'plat_ffa_is_notifications_bind_valid'.
3375 */
3376 receiver_locked = plat_ffa_vm_find_locked(receiver_vm_id);
3377
3378 if (receiver_locked.vm == NULL) {
3379 dlog_verbose("Receiver doesn't exist!\n");
3380 return ffa_error(FFA_DENIED);
3381 }
3382
J-Alves09ff9d82021-11-02 11:55:20 +00003383 if (!vm_locked_are_notifications_enabled(receiver_locked)) {
J-Alvesc003a7a2021-03-18 13:06:53 +00003384 dlog_verbose("Notifications are not enabled.\n");
3385 ret = ffa_error(FFA_NOT_SUPPORTED);
3386 goto out;
3387 }
3388
3389 if (is_bind && vm_id_is_current_world(sender_vm_id) &&
3390 vm_find(sender_vm_id) == NULL) {
3391 dlog_verbose("Sender VM does not exist!\n");
3392 ret = ffa_error(FFA_INVALID_PARAMETERS);
3393 goto out;
3394 }
3395
3396 /*
3397 * Can't bind/unbind notifications if at least one is bound to a
3398 * different sender.
3399 */
3400 if (!vm_notifications_validate_bound_sender(
3401 receiver_locked, plat_ffa_is_vm_id(sender_vm_id),
3402 id_to_validate, notifications)) {
3403 dlog_verbose("Notifications are bound to other sender.\n");
3404 ret = ffa_error(FFA_DENIED);
3405 goto out;
3406 }
3407
3408 /**
3409 * Check if there is a pending notification within those specified in
3410 * the bitmap.
3411 */
3412 if (vm_are_notifications_pending(receiver_locked,
3413 plat_ffa_is_vm_id(sender_vm_id),
3414 notifications)) {
3415 dlog_verbose("Notifications within '%x' pending.\n",
3416 notifications);
3417 ret = ffa_error(FFA_DENIED);
3418 goto out;
3419 }
3420
3421 vm_notifications_update_bindings(
3422 receiver_locked, plat_ffa_is_vm_id(sender_vm_id), id_to_update,
3423 notifications, is_per_vcpu && is_bind);
3424
3425out:
3426 vm_unlock(&receiver_locked);
3427 return ret;
3428}
J-Alvesaa79c012021-07-09 14:29:45 +01003429
3430struct ffa_value api_ffa_notification_set(
3431 ffa_vm_id_t sender_vm_id, ffa_vm_id_t receiver_vm_id, uint32_t flags,
3432 ffa_notifications_bitmap_t notifications, struct vcpu *current)
3433{
3434 struct ffa_value ret;
3435 struct vm_locked receiver_locked;
3436
3437 /*
3438 * Check if is per-vCPU or global, and extracting vCPU ID according
3439 * to table 17.19 of the FF-A v1.1 Beta 0 spec.
3440 */
3441 bool is_per_vcpu = (flags & FFA_NOTIFICATION_FLAG_PER_VCPU) != 0U;
3442 ffa_vcpu_index_t vcpu_id = (uint16_t)(flags >> 16);
3443
J-Alvesaa79c012021-07-09 14:29:45 +01003444 if (!plat_ffa_is_notification_set_valid(current, sender_vm_id,
3445 receiver_vm_id)) {
3446 dlog_verbose("Invalid use of notifications set interface.\n");
3447 return ffa_error(FFA_INVALID_PARAMETERS);
3448 }
3449
3450 if (notifications == 0U) {
3451 dlog_verbose("No notifications have been specified.\n");
3452 return ffa_error(FFA_INVALID_PARAMETERS);
3453 }
3454
J-Alvesde7bd2f2021-09-09 19:54:35 +01003455 if (plat_ffa_notification_set_forward(sender_vm_id, receiver_vm_id,
3456 flags, notifications, &ret)) {
3457 return ret;
3458 }
3459
J-Alvesaa79c012021-07-09 14:29:45 +01003460 /*
3461 * This check assumes receiver is the current VM, and has been enforced
3462 * by 'plat_ffa_is_notification_set_valid'.
3463 */
3464 receiver_locked = plat_ffa_vm_find_locked(receiver_vm_id);
3465
3466 if (receiver_locked.vm == NULL) {
3467 dlog_verbose("Receiver ID is not valid.\n");
3468 return ffa_error(FFA_INVALID_PARAMETERS);
3469 }
3470
J-Alves09ff9d82021-11-02 11:55:20 +00003471 if (!vm_locked_are_notifications_enabled(receiver_locked)) {
J-Alvesaa79c012021-07-09 14:29:45 +01003472 dlog_verbose("Receiver's notifications not enabled.\n");
3473 ret = ffa_error(FFA_DENIED);
3474 goto out;
3475 }
3476
3477 /*
3478 * If notifications are not bound to the sender, they wouldn't be
3479 * enabled either for the receiver.
3480 */
3481 if (!vm_notifications_validate_binding(
3482 receiver_locked, plat_ffa_is_vm_id(sender_vm_id),
3483 sender_vm_id, notifications, is_per_vcpu)) {
3484 dlog_verbose("Notifications bindings not valid.\n");
3485 ret = ffa_error(FFA_DENIED);
3486 goto out;
3487 }
3488
3489 if (is_per_vcpu && vcpu_id >= receiver_locked.vm->vcpu_count) {
3490 dlog_verbose("Invalid VCPU ID!\n");
3491 ret = ffa_error(FFA_INVALID_PARAMETERS);
3492 goto out;
3493 }
3494
J-Alves7461ef22021-10-18 17:21:33 +01003495 /* Set notifications pending. */
J-Alves5a16c962022-03-25 12:32:51 +00003496 vm_notifications_partition_set_pending(
3497 receiver_locked, plat_ffa_is_vm_id(sender_vm_id), notifications,
3498 vcpu_id, is_per_vcpu);
3499
J-Alvesaa79c012021-07-09 14:29:45 +01003500 dlog_verbose("Set the notifications: %x.\n", notifications);
3501
J-Alves13394022021-06-30 13:48:49 +01003502 if ((FFA_NOTIFICATIONS_FLAG_DELAY_SRI & flags) == 0) {
3503 dlog_verbose("SRI was NOT delayed. vcpu: %u!\n",
3504 vcpu_index(current));
3505 plat_ffa_sri_trigger_not_delayed(current->cpu);
3506 } else {
3507 plat_ffa_sri_state_set(DELAYED);
3508 }
J-Alvesaa79c012021-07-09 14:29:45 +01003509
J-Alves13394022021-06-30 13:48:49 +01003510 ret = (struct ffa_value){.func = FFA_SUCCESS_32};
J-Alvesaa79c012021-07-09 14:29:45 +01003511out:
3512 vm_unlock(&receiver_locked);
3513
3514 return ret;
3515}
3516
3517static struct ffa_value api_ffa_notification_get_success_return(
3518 ffa_notifications_bitmap_t from_sp, ffa_notifications_bitmap_t from_vm,
3519 ffa_notifications_bitmap_t from_framework)
3520{
3521 return (struct ffa_value){
3522 .func = FFA_SUCCESS_32,
3523 .arg1 = 0U,
3524 .arg2 = (uint32_t)from_sp,
3525 .arg3 = (uint32_t)(from_sp >> 32),
3526 .arg4 = (uint32_t)from_vm,
3527 .arg5 = (uint32_t)(from_vm >> 32),
3528 .arg6 = (uint32_t)from_framework,
3529 .arg7 = (uint32_t)(from_framework >> 32),
3530 };
3531}
3532
3533struct ffa_value api_ffa_notification_get(ffa_vm_id_t receiver_vm_id,
3534 ffa_vcpu_index_t vcpu_id,
3535 uint32_t flags, struct vcpu *current)
3536{
J-Alves663682a2022-03-25 13:56:51 +00003537 ffa_notifications_bitmap_t framework_notifications = 0;
J-Alvesaa79c012021-07-09 14:29:45 +01003538 ffa_notifications_bitmap_t sp_notifications = 0;
3539 ffa_notifications_bitmap_t vm_notifications = 0;
3540 struct vm_locked receiver_locked;
3541 struct ffa_value ret;
J-Alvesfc95a302022-04-22 14:18:23 +01003542 const uint32_t flags_mbz = ~(FFA_NOTIFICATION_FLAG_BITMAP_HYP |
3543 FFA_NOTIFICATION_FLAG_BITMAP_SPM |
3544 FFA_NOTIFICATION_FLAG_BITMAP_SP |
3545 FFA_NOTIFICATION_FLAG_BITMAP_VM);
3546
3547 /* The FF-A v1.1 EAC0 specification states bits [31:4] Must Be Zero. */
3548 if ((flags & flags_mbz) != 0U) {
3549 dlog_verbose(
3550 "Invalid flags bit(s) set in notifications get. [31:4] "
3551 "MBZ(%x)\n",
3552 flags);
3553 return ffa_error(FFA_INVALID_PARAMETERS);
3554 }
J-Alvesaa79c012021-07-09 14:29:45 +01003555
3556 /*
J-Alvesfc95a302022-04-22 14:18:23 +01003557 * Following check should capture wrong uses of the interface,
3558 * depending on whether Hafnium is SPMC or hypervisor. On the
3559 * rest of the function it is assumed this condition is met.
J-Alvesaa79c012021-07-09 14:29:45 +01003560 */
J-Alvesfc95a302022-04-22 14:18:23 +01003561 if (!plat_ffa_is_notification_get_valid(current, receiver_vm_id,
3562 flags)) {
J-Alvesaa79c012021-07-09 14:29:45 +01003563 dlog_verbose("Invalid use of notifications get interface.\n");
3564 return ffa_error(FFA_INVALID_PARAMETERS);
3565 }
3566
3567 /*
3568 * This check assumes receiver is the current VM, and has been enforced
3569 * by `plat_ffa_is_notifications_get_valid`.
3570 */
3571 receiver_locked = plat_ffa_vm_find_locked(receiver_vm_id);
3572
3573 /*
3574 * `plat_ffa_is_notifications_get_valid` ensures following is never
3575 * true.
3576 */
3577 CHECK(receiver_locked.vm != NULL);
3578
3579 if (receiver_locked.vm->vcpu_count <= vcpu_id ||
3580 (receiver_locked.vm->vcpu_count != 1 &&
3581 cpu_index(current->cpu) != vcpu_id)) {
J-Alves1abb3342022-01-05 11:59:10 +00003582 dlog_verbose(
3583 "Invalid VCPU ID %u. vcpu count %u current core: %u!\n",
3584 vcpu_id, receiver_locked.vm->vcpu_count,
3585 cpu_index(current->cpu));
J-Alvesaa79c012021-07-09 14:29:45 +01003586 ret = ffa_error(FFA_INVALID_PARAMETERS);
3587 goto out;
3588 }
3589
3590 if ((flags & FFA_NOTIFICATION_FLAG_BITMAP_SP) != 0U) {
J-Alves98ff9562021-09-09 14:39:41 +01003591 if (!plat_ffa_notifications_get_from_sp(
3592 receiver_locked, vcpu_id, &sp_notifications,
3593 &ret)) {
3594 dlog_verbose("Failed to get notifications from sps.");
3595 goto out;
3596 }
J-Alvesaa79c012021-07-09 14:29:45 +01003597 }
3598
3599 if ((flags & FFA_NOTIFICATION_FLAG_BITMAP_VM) != 0U) {
J-Alves5136dda2022-03-25 12:26:38 +00003600 vm_notifications = vm_notifications_partition_get_pending(
J-Alvesaa79c012021-07-09 14:29:45 +01003601 receiver_locked, true, vcpu_id);
3602 }
3603
J-Alvesd605a092022-03-28 14:20:48 +01003604 if ((flags & FFA_NOTIFICATION_FLAG_BITMAP_HYP) != 0U ||
3605 (flags & FFA_NOTIFICATION_FLAG_BITMAP_SPM) != 0U) {
3606 if (!plat_ffa_notifications_get_framework_notifications(
3607 receiver_locked, &framework_notifications, flags,
3608 vcpu_id, &ret)) {
3609 dlog_verbose(
3610 "Failed to get notifications from "
3611 "framework.\n");
3612 goto out;
3613 }
3614 }
3615
J-Alves663682a2022-03-25 13:56:51 +00003616 ret = api_ffa_notification_get_success_return(
3617 sp_notifications, vm_notifications, framework_notifications);
J-Alvesaa79c012021-07-09 14:29:45 +01003618
J-Alvesfe23ebe2021-10-13 16:07:07 +01003619 /*
3620 * If there are no more pending notifications, change `sri_state` to
3621 * handled.
3622 */
3623 if (vm_is_notifications_pending_count_zero()) {
3624 plat_ffa_sri_state_set(HANDLED);
3625 }
3626
J-Alves6e2abc62021-12-02 14:58:56 +00003627 if (!receiver_locked.vm->el0_partition &&
3628 !vm_are_global_notifications_pending(receiver_locked)) {
3629 vm_notifications_set_npi_injected(receiver_locked, false);
3630 }
3631
J-Alvesaa79c012021-07-09 14:29:45 +01003632out:
3633 vm_unlock(&receiver_locked);
3634
3635 return ret;
3636}
J-Alvesc8e8a222021-06-08 17:33:52 +01003637
3638/**
3639 * Prepares successful return for FFA_NOTIFICATION_INFO_GET, as described by
3640 * the section 17.7.1 of the FF-A v1.1 Beta0 specification.
3641 */
3642static struct ffa_value api_ffa_notification_info_get_success_return(
3643 const uint16_t *ids, uint32_t ids_count, const uint32_t *lists_sizes,
J-Alvesfe23ebe2021-10-13 16:07:07 +01003644 uint32_t lists_count)
J-Alvesc8e8a222021-06-08 17:33:52 +01003645{
3646 struct ffa_value ret = (struct ffa_value){.func = FFA_SUCCESS_64};
3647
3648 /*
3649 * Copying content of ids into ret structure. Use 5 registers (x3-x7) to
3650 * hold the list of ids.
3651 */
3652 memcpy_s(&ret.arg3,
3653 sizeof(ret.arg3) * FFA_NOTIFICATIONS_INFO_GET_REGS_RET, ids,
3654 sizeof(ids[0]) * ids_count);
3655
3656 /*
3657 * According to the spec x2 should have:
3658 * - Bit flagging if there are more notifications pending;
3659 * - The total number of elements (i.e. total list size);
3660 * - The number of VCPU IDs within each VM specific list.
3661 */
J-Alvesfe23ebe2021-10-13 16:07:07 +01003662 ret.arg2 = vm_notifications_pending_not_retrieved_by_scheduler()
3663 ? FFA_NOTIFICATIONS_INFO_GET_FLAG_MORE_PENDING
3664 : 0;
J-Alvesc8e8a222021-06-08 17:33:52 +01003665
3666 ret.arg2 |= (lists_count & FFA_NOTIFICATIONS_LISTS_COUNT_MASK)
3667 << FFA_NOTIFICATIONS_LISTS_COUNT_SHIFT;
3668
3669 for (unsigned int i = 0; i < lists_count; i++) {
3670 ret.arg2 |= (lists_sizes[i] & FFA_NOTIFICATIONS_LIST_SIZE_MASK)
3671 << FFA_NOTIFICATIONS_LIST_SHIFT(i + 1);
3672 }
3673
3674 return ret;
3675}
3676
3677struct ffa_value api_ffa_notification_info_get(struct vcpu *current)
3678{
3679 /*
3680 * Following set of variables should be populated with the return info.
3681 * At a successfull handling of this interface, they should be used
3682 * to populate the 'ret' structure in accordance to the table 17.29
3683 * of the FF-A v1.1 Beta0 specification.
3684 */
3685 uint16_t ids[FFA_NOTIFICATIONS_INFO_GET_MAX_IDS];
3686 uint32_t lists_sizes[FFA_NOTIFICATIONS_INFO_GET_MAX_IDS] = {0};
3687 uint32_t lists_count = 0;
3688 uint32_t ids_count = 0;
3689 bool list_is_full = false;
J-Alves13394022021-06-30 13:48:49 +01003690 struct ffa_value result;
J-Alvesc8e8a222021-06-08 17:33:52 +01003691
3692 /*
3693 * This interface can only be called at NS virtual/physical FF-A
3694 * instance by the endpoint implementing the primary scheduler and the
3695 * Hypervisor/OS kernel.
3696 * In the SPM, following check passes if call has been forwarded from
3697 * the hypervisor.
3698 */
3699 if (current->vm->id != HF_PRIMARY_VM_ID) {
3700 dlog_verbose(
3701 "Only the receiver's scheduler can use this "
3702 "interface\n");
3703 return ffa_error(FFA_NOT_SUPPORTED);
3704 }
3705
J-Alvesca058c22021-09-10 14:02:07 +01003706 /*
3707 * Forward call to the other world, and fill the arrays used to assemble
3708 * return.
3709 */
3710 plat_ffa_notification_info_get_forward(
3711 ids, &ids_count, lists_sizes, &lists_count,
3712 FFA_NOTIFICATIONS_INFO_GET_MAX_IDS);
3713
3714 list_is_full = ids_count == FFA_NOTIFICATIONS_INFO_GET_MAX_IDS;
3715
J-Alvesc8e8a222021-06-08 17:33:52 +01003716 /* Get notifications' info from this world */
3717 for (ffa_vm_count_t index = 0; index < vm_get_count() && !list_is_full;
3718 ++index) {
3719 struct vm_locked vm_locked = vm_lock(vm_find_index(index));
3720
3721 list_is_full = vm_notifications_info_get(
3722 vm_locked, ids, &ids_count, lists_sizes, &lists_count,
3723 FFA_NOTIFICATIONS_INFO_GET_MAX_IDS);
3724
3725 vm_unlock(&vm_locked);
3726 }
3727
3728 if (!list_is_full) {
3729 /* Grab notifications info from other world */
J-Alvesfe23ebe2021-10-13 16:07:07 +01003730 plat_ffa_vm_notifications_info_get(
J-Alvesc8e8a222021-06-08 17:33:52 +01003731 ids, &ids_count, lists_sizes, &lists_count,
3732 FFA_NOTIFICATIONS_INFO_GET_MAX_IDS);
3733 }
3734
3735 if (ids_count == 0) {
J-Alvesca058c22021-09-10 14:02:07 +01003736 dlog_verbose(
3737 "Notification info get has no data to retrieve.\n");
J-Alves13394022021-06-30 13:48:49 +01003738 result = ffa_error(FFA_NO_DATA);
3739 } else {
3740 result = api_ffa_notification_info_get_success_return(
J-Alvesfe23ebe2021-10-13 16:07:07 +01003741 ids, ids_count, lists_sizes, lists_count);
J-Alvesc8e8a222021-06-08 17:33:52 +01003742 }
3743
J-Alvesfe23ebe2021-10-13 16:07:07 +01003744 plat_ffa_sri_state_set(HANDLED);
3745
J-Alves13394022021-06-30 13:48:49 +01003746 return result;
J-Alvesc8e8a222021-06-08 17:33:52 +01003747}
Raghu Krishnamurthyea6d25f2021-09-14 15:27:06 -07003748
3749struct ffa_value api_ffa_mem_perm_get(vaddr_t base_addr, struct vcpu *current)
3750{
3751 struct vm_locked vm_locked;
3752 struct ffa_value ret = ffa_error(FFA_INVALID_PARAMETERS);
3753 bool mode_ret = false;
3754 uint32_t mode = 0;
3755
3756 if (!plat_ffa_is_mem_perm_get_valid(current)) {
3757 return ffa_error(FFA_NOT_SUPPORTED);
3758 }
3759
3760 if (!(current->vm->el0_partition)) {
3761 return ffa_error(FFA_DENIED);
3762 }
3763
3764 vm_locked = vm_lock(current->vm);
3765
3766 /*
3767 * mm_get_mode is used to check if the given base_addr page is already
3768 * mapped. If the page is unmapped, return error. If the page is mapped
3769 * appropriate attributes are returned to the caller. Note that
3770 * mm_get_mode returns true if the address is in the valid VA range as
3771 * supported by the architecture and MMU configurations, as opposed to
3772 * whether a page is mapped or not. For a page to be known as mapped,
3773 * the API must return true AND the returned mode must not have
3774 * MM_MODE_INVALID set.
3775 */
3776 mode_ret = mm_get_mode(&vm_locked.vm->ptable, base_addr,
3777 va_add(base_addr, PAGE_SIZE), &mode);
3778 if (!mode_ret || (mode & MM_MODE_INVALID)) {
3779 ret = ffa_error(FFA_INVALID_PARAMETERS);
3780 goto out;
3781 }
3782
3783 /* No memory should be marked RWX */
3784 CHECK((mode & (MM_MODE_R | MM_MODE_W | MM_MODE_X)) !=
3785 (MM_MODE_R | MM_MODE_W | MM_MODE_X));
3786
3787 /*
3788 * S-EL0 partitions are expected to have all their pages marked as
3789 * non-global.
3790 */
3791 CHECK((mode & (MM_MODE_NG | MM_MODE_USER)) ==
3792 (MM_MODE_NG | MM_MODE_USER));
3793
3794 if (mode & MM_MODE_W) {
3795 /* No memory should be writeable but not readable. */
3796 CHECK(mode & MM_MODE_R);
3797 ret = (struct ffa_value){.func = FFA_SUCCESS_32,
3798 .arg2 = (uint32_t)(FFA_MEM_PERM_RW)};
3799 } else if (mode & MM_MODE_R) {
3800 ret = (struct ffa_value){.func = FFA_SUCCESS_32,
3801 .arg2 = (uint32_t)(FFA_MEM_PERM_RX)};
3802 if (!(mode & MM_MODE_X)) {
3803 ret.arg2 = (uint32_t)(FFA_MEM_PERM_RO);
3804 }
3805 }
3806out:
3807 vm_unlock(&vm_locked);
3808 return ret;
3809}
3810
3811struct ffa_value api_ffa_mem_perm_set(vaddr_t base_addr, uint32_t page_count,
3812 uint32_t mem_perm, struct vcpu *current)
3813{
3814 struct vm_locked vm_locked;
3815 struct ffa_value ret;
3816 bool mode_ret = false;
3817 uint32_t original_mode;
3818 uint32_t new_mode;
3819 struct mpool local_page_pool;
3820
3821 if (!plat_ffa_is_mem_perm_set_valid(current)) {
3822 return ffa_error(FFA_NOT_SUPPORTED);
3823 }
3824
3825 if (!(current->vm->el0_partition)) {
3826 return ffa_error(FFA_DENIED);
3827 }
3828
3829 if (!is_aligned(va_addr(base_addr), PAGE_SIZE)) {
3830 return ffa_error(FFA_INVALID_PARAMETERS);
3831 }
3832
3833 if ((mem_perm != FFA_MEM_PERM_RW) && (mem_perm != FFA_MEM_PERM_RO) &&
3834 (mem_perm != FFA_MEM_PERM_RX)) {
3835 return ffa_error(FFA_INVALID_PARAMETERS);
3836 }
3837
3838 /*
3839 * Create a local pool so any freed memory can't be used by another
3840 * thread. This is to ensure the original mapping can be restored if any
3841 * stage of the process fails.
3842 */
3843 mpool_init_with_fallback(&local_page_pool, &api_page_pool);
3844
3845 vm_locked = vm_lock(current->vm);
3846
3847 /*
3848 * All regions accessible by the partition are mapped during boot. If we
3849 * cannot get a successful translation for the page range, the request
3850 * to change permissions is rejected.
3851 * mm_get_mode is used to check if the given address range is already
3852 * mapped. If the range is unmapped, return error. If the range is
3853 * mapped appropriate attributes are returned to the caller. Note that
3854 * mm_get_mode returns true if the address is in the valid VA range as
3855 * supported by the architecture and MMU configurations, as opposed to
3856 * whether a page is mapped or not. For a page to be known as mapped,
3857 * the API must return true AND the returned mode must not have
3858 * MM_MODE_INVALID set.
3859 */
3860
3861 mode_ret = mm_get_mode(&vm_locked.vm->ptable, base_addr,
3862 va_add(base_addr, page_count * PAGE_SIZE),
3863 &original_mode);
3864 if (!mode_ret || (original_mode & MM_MODE_INVALID)) {
3865 ret = ffa_error(FFA_INVALID_PARAMETERS);
3866 goto out;
3867 }
3868
3869 /* Device memory cannot be marked as executable */
3870 if ((original_mode & MM_MODE_D) && (mem_perm == FFA_MEM_PERM_RX)) {
3871 ret = ffa_error(FFA_INVALID_PARAMETERS);
3872 goto out;
3873 }
3874
3875 new_mode = MM_MODE_USER | MM_MODE_NG;
3876
3877 if (mem_perm == FFA_MEM_PERM_RW) {
3878 new_mode |= MM_MODE_R | MM_MODE_W;
3879 } else if (mem_perm == FFA_MEM_PERM_RX) {
3880 new_mode |= MM_MODE_R | MM_MODE_X;
3881 } else if (mem_perm == FFA_MEM_PERM_RO) {
3882 new_mode |= MM_MODE_R;
3883 }
3884
3885 /*
3886 * Safe to re-map memory, since we know the requested permissions are
3887 * valid, and the memory requested to be re-mapped is also valid.
3888 */
3889 if (!mm_identity_prepare(
3890 &vm_locked.vm->ptable, pa_from_va(base_addr),
3891 pa_from_va(va_add(base_addr, page_count * PAGE_SIZE)),
3892 new_mode, &local_page_pool)) {
3893 /*
3894 * Defrag the table into the local page pool.
3895 * mm_identity_prepare could have allocated or freed pages to
3896 * split blocks or tables etc.
3897 */
3898 mm_stage1_defrag(&vm_locked.vm->ptable, &local_page_pool);
3899
3900 /*
3901 * Guaranteed to succeed mapping with old mode since the mapping
3902 * with old mode already existed and we have a local page pool
3903 * that should have sufficient memory to go back to the original
3904 * state.
3905 */
3906 CHECK(mm_identity_prepare(
3907 &vm_locked.vm->ptable, pa_from_va(base_addr),
3908 pa_from_va(va_add(base_addr, page_count * PAGE_SIZE)),
3909 original_mode, &local_page_pool));
3910 mm_identity_commit(
3911 &vm_locked.vm->ptable, pa_from_va(base_addr),
3912 pa_from_va(va_add(base_addr, page_count * PAGE_SIZE)),
3913 original_mode, &local_page_pool);
3914
3915 mm_stage1_defrag(&vm_locked.vm->ptable, &api_page_pool);
3916 ret = ffa_error(FFA_NO_MEMORY);
3917 goto out;
3918 }
3919
3920 mm_identity_commit(
3921 &vm_locked.vm->ptable, pa_from_va(base_addr),
3922 pa_from_va(va_add(base_addr, page_count * PAGE_SIZE)), new_mode,
3923 &local_page_pool);
3924
3925 ret = (struct ffa_value){.func = FFA_SUCCESS_32};
3926
3927out:
3928 mpool_fini(&local_page_pool);
3929 vm_unlock(&vm_locked);
3930
3931 return ret;
3932}
Maksims Svecovs71b76702022-05-20 15:32:58 +01003933
3934/**
3935 * Helper function for FFA_CONSOLE_LOG ABI.
3936 * Writes number of characters to a given VM buffer.
3937 */
3938static rsize_t arg_to_char_helper(struct vm_locked from_locked,
3939 const uint64_t src, rsize_t src_size,
3940 rsize_t to_write)
3941{
3942 bool flush = false;
3943 char c;
3944 rsize_t size = src_size < to_write ? src_size : to_write;
3945 rsize_t written = 0;
3946
3947 if (size == 0) {
3948 return 0;
3949 }
3950
3951 while (written < size) {
3952 c = ((char *)&src)[written++];
3953 if (c == '\n' || c == '\0') {
3954 flush = true;
3955 } else {
3956 from_locked.vm->log_buffer
3957 [from_locked.vm->log_buffer_length++] = c;
3958 flush = (from_locked.vm->log_buffer_length ==
3959 LOG_BUFFER_SIZE);
3960 }
3961
3962 if (flush) {
3963 dlog_flush_vm_buffer(from_locked.vm->id,
3964 from_locked.vm->log_buffer,
3965 from_locked.vm->log_buffer_length);
3966 from_locked.vm->log_buffer_length = 0;
3967 }
3968 }
3969
3970 return written;
3971}
3972
3973/**
3974 * Implements FFA_CONSOLE_LOG buffered logging.
3975 */
3976struct ffa_value api_ffa_console_log(const struct ffa_value args,
3977 struct vcpu *current)
3978{
3979 struct vm *vm = current->vm;
3980 struct vm_locked vm_locked;
3981 size_t chars_in_param = args.func == FFA_CONSOLE_LOG_32
3982 ? sizeof(uint32_t)
3983 : sizeof(uint64_t);
3984 size_t total_to_write = args.arg1;
3985
3986 if (total_to_write == 0 || total_to_write > chars_in_param * 6) {
3987 return ffa_error(FFA_INVALID_PARAMETERS);
3988 }
3989
3990 vm_locked = vm_lock(vm);
3991
3992 total_to_write -= arg_to_char_helper(vm_locked, args.arg2,
3993 chars_in_param, total_to_write);
3994 total_to_write -= arg_to_char_helper(vm_locked, args.arg3,
3995 chars_in_param, total_to_write);
3996 total_to_write -= arg_to_char_helper(vm_locked, args.arg4,
3997 chars_in_param, total_to_write);
3998 total_to_write -= arg_to_char_helper(vm_locked, args.arg5,
3999 chars_in_param, total_to_write);
4000 total_to_write -= arg_to_char_helper(vm_locked, args.arg6,
4001 chars_in_param, total_to_write);
4002 arg_to_char_helper(vm_locked, args.arg7, chars_in_param,
4003 total_to_write);
4004
4005 vm_unlock(&vm_locked);
4006
4007 return (struct ffa_value){.func = FFA_SUCCESS_32};
4008}