blob: 2f54c718b76a912142c5507baa37c186e8a1015e [file] [log] [blame]
Daniel Boulbyb2fb80e2021-02-03 15:09:23 +00001/*
2 * Copyright 2021 The Hafnium Authors.
3 *
4 * 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.
7 */
8
9#include "hf/ffa.h"
10
J-Alvesfa782092021-10-13 16:02:16 +010011#include "hf/arch/plat/ffa.h"
12
J-Alvesa0f317d2021-06-09 13:31:59 +010013#include "hf/ffa_internal.h"
Olivier Deprez55a189e2021-06-09 15:45:27 +020014#include "hf/vcpu.h"
J-Alvesc003a7a2021-03-18 13:06:53 +000015#include "hf/vm.h"
Daniel Boulbyb2fb80e2021-02-03 15:09:23 +000016
Daniel Boulby87b2dc82021-08-04 14:07:43 +010017struct ffa_value arch_ffa_features(uint32_t function_id)
18{
19 (void)function_id;
20 return ffa_error(FFA_NOT_SUPPORTED);
21}
22
Daniel Boulbyb2fb80e2021-02-03 15:09:23 +000023ffa_vm_id_t arch_ffa_spmc_id_get(void)
24{
25 return HF_SPMC_VM_ID;
26}
Olivier Deprez55a189e2021-06-09 15:45:27 +020027
28void plat_ffa_log_init(void)
29{
30}
31
Maksims Svecovsa3d570c2021-12-08 11:16:32 +000032bool plat_ffa_is_memory_send_valid(ffa_vm_id_t receiver_vm_id,
33 uint32_t share_func)
34{
35 (void)receiver_vm_id;
36 (void)share_func;
37
38 return true;
39}
40
Olivier Deprez55a189e2021-06-09 15:45:27 +020041bool plat_ffa_is_direct_request_valid(struct vcpu *current,
42 ffa_vm_id_t sender_vm_id,
43 ffa_vm_id_t receiver_vm_id)
44{
45 (void)current;
46 (void)sender_vm_id;
47 (void)receiver_vm_id;
48
49 return true;
50}
51
J-Alves439ac972021-11-18 17:32:03 +000052bool plat_ffa_is_direct_request_supported(struct vm *sender_vm,
53 struct vm *receiver_vm)
54{
55 (void)sender_vm;
56 (void)receiver_vm;
57
58 return false;
59}
60
Olivier Deprez55a189e2021-06-09 15:45:27 +020061bool plat_ffa_is_direct_response_valid(struct vcpu *current,
62 ffa_vm_id_t sender_vm_id,
63 ffa_vm_id_t receiver_vm_id)
64{
65 (void)current;
66 (void)sender_vm_id;
67 (void)receiver_vm_id;
68
69 return true;
70}
71
Raghu Krishnamurthy62f97a72021-07-27 02:14:59 -070072bool plat_ffa_run_forward(ffa_vm_id_t vm_id, ffa_vcpu_index_t vcpu_idx,
73 struct ffa_value *ret)
74{
75 (void)vm_id;
76 (void)vcpu_idx;
77 (void)ret;
78
79 return false;
80}
81
Federico Recanati10bd06c2022-02-23 17:32:59 +010082void plat_ffa_vm_destroy(struct vm_locked to_destroy_locked)
83{
84 (void)to_destroy_locked;
85}
86
Federico Recanati8da9e332022-02-10 11:00:17 +010087void plat_ffa_rxtx_unmap_forward(ffa_vm_id_t id)
88{
89 (void)id;
90}
91
Olivier Deprez55a189e2021-06-09 15:45:27 +020092bool plat_ffa_direct_request_forward(ffa_vm_id_t receiver_vm_id,
93 struct ffa_value args,
94 struct ffa_value *ret)
95{
96 (void)receiver_vm_id;
97 (void)args;
98 (void)ret;
99 return false;
100}
101
102ffa_memory_handle_t plat_ffa_memory_handle_make(uint64_t index)
103{
104 return index;
105}
106
107bool plat_ffa_memory_handle_allocated_by_current_world(
108 ffa_memory_handle_t handle)
109{
110 (void)handle;
111 return false;
112}
Maksims Svecovsb596eab2021-04-27 00:52:27 +0100113
J-Alves7db32002021-12-14 14:44:50 +0000114uint32_t plat_ffa_other_world_mode(void)
115{
116 return 0U;
117}
118
119uint32_t plat_ffa_owner_world_mode(ffa_vm_id_t owner_id)
120{
121 (void)owner_id;
122 return 0U;
123}
124
J-Alvesc003a7a2021-03-18 13:06:53 +0000125bool plat_ffa_is_notifications_bind_valid(struct vcpu *current,
126 ffa_vm_id_t sender_id,
127 ffa_vm_id_t receiver_id)
128{
129 (void)current;
130 (void)sender_id;
131 (void)receiver_id;
132 return false;
133}
134
J-Alvesb15e9402021-09-08 11:44:42 +0100135bool plat_ffa_notifications_update_bindings_forward(
136 ffa_vm_id_t receiver_id, ffa_vm_id_t sender_id, uint32_t flags,
137 ffa_notifications_bitmap_t bitmap, bool is_bind, struct ffa_value *ret)
138{
139 (void)ret;
140 (void)receiver_id;
141 (void)sender_id;
142 (void)flags;
143 (void)bitmap;
144 (void)is_bind;
145 (void)ret;
146
147 return false;
148}
149
Federico Recanati8d8b1cf2022-04-14 13:16:00 +0200150void plat_ffa_rxtx_map_forward(struct vm_locked vm_locked)
151{
152 (void)vm_locked;
153}
154
Maksims Svecovsb596eab2021-04-27 00:52:27 +0100155ffa_partition_properties_t plat_ffa_partition_properties(
J-Alvesfa782092021-10-13 16:02:16 +0100156 ffa_vm_id_t vm_id, const struct vm *target)
Maksims Svecovsb596eab2021-04-27 00:52:27 +0100157{
J-Alvesfa782092021-10-13 16:02:16 +0100158 (void)vm_id;
Maksims Svecovsb596eab2021-04-27 00:52:27 +0100159 (void)target;
160 return 0;
161}
Maksims Svecovs9ddf86a2021-05-06 17:17:21 +0100162
163bool plat_ffa_vm_managed_exit_supported(struct vm *vm)
164{
165 (void)vm;
166 return false;
167}
J-Alvesa0f317d2021-06-09 13:31:59 +0100168
169bool plat_ffa_is_notifications_create_valid(struct vcpu *current,
170 ffa_vm_id_t vm_id)
171{
172 (void)current;
173 (void)vm_id;
174
175 return false;
176}
177
J-Alvesaa79c012021-07-09 14:29:45 +0100178bool plat_ffa_is_notification_set_valid(struct vcpu *current,
179 ffa_vm_id_t sender_id,
180 ffa_vm_id_t receiver_id)
181{
182 (void)current;
183 (void)sender_id;
184 (void)receiver_id;
185 return false;
186}
187
188bool plat_ffa_is_notification_get_valid(struct vcpu *current,
J-Alvesfc95a302022-04-22 14:18:23 +0100189 ffa_vm_id_t receiver_id, uint32_t flags)
J-Alvesaa79c012021-07-09 14:29:45 +0100190{
J-Alvesfc95a302022-04-22 14:18:23 +0100191 (void)flags;
J-Alvesaa79c012021-07-09 14:29:45 +0100192 (void)current;
193 (void)receiver_id;
194 return false;
195}
196
J-Alves98ff9562021-09-09 14:39:41 +0100197bool plat_ffa_notifications_get_from_sp(
198 struct vm_locked receiver_locked, ffa_vcpu_index_t vcpu_id,
J-Alvesfa782092021-10-13 16:02:16 +0100199 ffa_notifications_bitmap_t *from_sp, // NOLINT
200 struct ffa_value *ret) // NOLINT
J-Alves98ff9562021-09-09 14:39:41 +0100201{
202 (void)receiver_locked;
203 (void)vcpu_id;
204 (void)from_sp;
205 (void)ret;
206
207 return false;
208}
209
J-Alvesde7bd2f2021-09-09 19:54:35 +0100210bool plat_ffa_notification_set_forward(ffa_vm_id_t sender_vm_id,
211 ffa_vm_id_t receiver_vm_id,
212 uint32_t flags,
213 ffa_notifications_bitmap_t bitmap,
214 struct ffa_value *ret)
215{
216 (void)sender_vm_id;
217 (void)receiver_vm_id;
218 (void)flags;
219 (void)bitmap;
220 (void)ret;
221
222 return false;
223}
224
J-Alvesa0f317d2021-06-09 13:31:59 +0100225struct ffa_value plat_ffa_notifications_bitmap_create(
226 ffa_vm_id_t vm_id, ffa_vcpu_count_t vcpu_count)
227{
228 (void)vm_id;
229 (void)vcpu_count;
230
231 return ffa_error(FFA_NOT_SUPPORTED);
232}
233
234struct ffa_value plat_ffa_notifications_bitmap_destroy(ffa_vm_id_t vm_id)
235{
236 (void)vm_id;
237
238 return ffa_error(FFA_NOT_SUPPORTED);
239}
J-Alvesc003a7a2021-03-18 13:06:53 +0000240
241struct vm_locked plat_ffa_vm_find_locked(ffa_vm_id_t vm_id)
242{
243 (void)vm_id;
244 return (struct vm_locked){.vm = NULL};
245}
246
Federico Recanati8d8b1cf2022-04-14 13:16:00 +0200247struct vm_locked plat_ffa_vm_find_locked_create(ffa_vm_id_t vm_id)
248{
249 (void)vm_id;
250 return (struct vm_locked){.vm = NULL};
251}
252
J-Alvesc003a7a2021-03-18 13:06:53 +0000253bool plat_ffa_is_vm_id(ffa_vm_id_t vm_id)
254{
255 (void)vm_id;
256 return false;
257}
J-Alvesc8e8a222021-06-08 17:33:52 +0100258
J-Alvesfa782092021-10-13 16:02:16 +0100259bool plat_ffa_vm_notifications_info_get( // NOLINTNEXTLINE
260 uint16_t *ids, uint32_t *ids_count, // NOLINTNEXTLINE
261 uint32_t *lists_sizes, // NOLINTNEXTLINE
262 uint32_t *lists_count, const uint32_t ids_count_max)
J-Alvesc8e8a222021-06-08 17:33:52 +0100263{
264 (void)ids;
265 (void)ids_count;
266 (void)lists_sizes;
267 (void)lists_count;
268 (void)ids_count_max;
269
270 return false;
271}
Raghu Krishnamurthyea6d25f2021-09-14 15:27:06 -0700272
273bool plat_ffa_is_mem_perm_get_valid(const struct vcpu *current)
274{
275 (void)current;
276 return false;
277}
278
279bool plat_ffa_is_mem_perm_set_valid(const struct vcpu *current)
280{
281 (void)current;
282 return false;
283}
Madhukar Pappireddyb11e0d12021-08-02 19:44:35 -0500284
285/**
286 * Check if current VM can resume target VM/SP using FFA_RUN ABI.
287 */
288bool plat_ffa_run_checks(struct vcpu *current, ffa_vm_id_t target_vm_id,
Raghu Krishnamurthy048d63f2021-12-11 12:45:41 -0800289 ffa_vcpu_index_t vcpu_idx, struct ffa_value *run_ret,
290 struct vcpu **next)
Madhukar Pappireddyb11e0d12021-08-02 19:44:35 -0500291{
292 (void)current;
293 (void)target_vm_id;
294 (void)run_ret;
295 (void)next;
Raghu Krishnamurthy048d63f2021-12-11 12:45:41 -0800296 (void)vcpu_idx;
Madhukar Pappireddyb11e0d12021-08-02 19:44:35 -0500297 return true;
298}
J-Alvesca058c22021-09-10 14:02:07 +0100299
300void plat_ffa_notification_info_get_forward( // NOLINTNEXTLINE
301 uint16_t *ids, uint32_t *ids_count, // NOLINTNEXTLINE
302 uint32_t *lists_sizes, uint32_t *lists_count,
303 const uint32_t ids_count_max)
304{
305 (void)ids;
306 (void)ids_count;
307 (void)lists_sizes;
308 (void)lists_count;
309 (void)ids_count_max;
310}
J-Alves13394022021-06-30 13:48:49 +0100311
312void plat_ffa_sri_state_set(enum plat_ffa_sri_state state)
313{
314 (void)state;
315}
316
317void plat_ffa_sri_trigger_if_delayed(struct cpu *cpu)
318{
319 (void)cpu;
320}
321
322void plat_ffa_sri_trigger_not_delayed(struct cpu *cpu)
323{
324 (void)cpu;
325}
326
327void plat_ffa_sri_init(struct cpu *cpu)
328{
329 (void)cpu;
330}
J-Alves7461ef22021-10-18 17:21:33 +0100331
J-Alves6e2abc62021-12-02 14:58:56 +0000332bool plat_ffa_inject_notification_pending_interrupt(
333 struct vcpu_locked target_locked, struct vcpu *current,
334 struct vm_locked receiver_locked)
J-Alves7461ef22021-10-18 17:21:33 +0100335{
J-Alves6e2abc62021-12-02 14:58:56 +0000336 (void)target_locked;
J-Alves7461ef22021-10-18 17:21:33 +0100337 (void)current;
J-Alves6e2abc62021-12-02 14:58:56 +0000338 (void)receiver_locked;
339
340 return false;
J-Alves7461ef22021-10-18 17:21:33 +0100341}
Olivier Depreze562e542020-06-11 17:31:54 +0200342
343void plat_ffa_partition_info_get_forward( // NOLINTNEXTLINE
344 const struct ffa_uuid *uuid, // NOLINTNEXTLINE
Daniel Boulbyb46cad12021-12-13 17:47:21 +0000345 const uint32_t flags, // NOLINTNEXTLINE
Olivier Depreze562e542020-06-11 17:31:54 +0200346 struct ffa_partition_info *partitions, ffa_vm_count_t *ret_count)
347{
348 (void)uuid;
Daniel Boulbyb46cad12021-12-13 17:47:21 +0000349 (void)flags;
Olivier Depreze562e542020-06-11 17:31:54 +0200350 (void)partitions;
351 (void)ret_count;
352}
Olivier Deprezd614d322021-06-18 15:21:00 +0200353
354bool plat_ffa_is_secondary_ep_register_supported(void)
355{
356 return false;
357}
Madhukar Pappireddy5522c672021-12-17 16:35:51 -0600358bool plat_ffa_msg_wait_prepare(struct vcpu *current, struct vcpu **next,
359 struct ffa_value *ret_args)
360{
361 (void)current;
362 (void)next;
363 (void)ret_args;
364
365 return false;
366}