blob: a18b34d969cc2249401990fd52f3a0c480de619a [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-Alvesd605a092022-03-28 14:20:48 +0100210bool plat_ffa_notifications_get_framework_notifications(
211 struct vm_locked receiver_locked,
212 ffa_notifications_bitmap_t *from_fwk, // NOLINT
213 uint32_t flags, ffa_vcpu_index_t vcpu_id, struct ffa_value *ret)
214{
215 (void)receiver_locked;
216 (void)from_fwk;
217 (void)flags;
218 (void)vcpu_id;
219 (void)ret;
220
221 return false;
222}
223
J-Alvesde7bd2f2021-09-09 19:54:35 +0100224bool plat_ffa_notification_set_forward(ffa_vm_id_t sender_vm_id,
225 ffa_vm_id_t receiver_vm_id,
226 uint32_t flags,
227 ffa_notifications_bitmap_t bitmap,
228 struct ffa_value *ret)
229{
230 (void)sender_vm_id;
231 (void)receiver_vm_id;
232 (void)flags;
233 (void)bitmap;
234 (void)ret;
235
236 return false;
237}
238
J-Alvesa0f317d2021-06-09 13:31:59 +0100239struct ffa_value plat_ffa_notifications_bitmap_create(
240 ffa_vm_id_t vm_id, ffa_vcpu_count_t vcpu_count)
241{
242 (void)vm_id;
243 (void)vcpu_count;
244
245 return ffa_error(FFA_NOT_SUPPORTED);
246}
247
248struct ffa_value plat_ffa_notifications_bitmap_destroy(ffa_vm_id_t vm_id)
249{
250 (void)vm_id;
251
252 return ffa_error(FFA_NOT_SUPPORTED);
253}
J-Alvesc003a7a2021-03-18 13:06:53 +0000254
255struct vm_locked plat_ffa_vm_find_locked(ffa_vm_id_t vm_id)
256{
257 (void)vm_id;
258 return (struct vm_locked){.vm = NULL};
259}
260
Federico Recanati8d8b1cf2022-04-14 13:16:00 +0200261struct vm_locked plat_ffa_vm_find_locked_create(ffa_vm_id_t vm_id)
262{
263 (void)vm_id;
264 return (struct vm_locked){.vm = NULL};
265}
266
J-Alvesc003a7a2021-03-18 13:06:53 +0000267bool plat_ffa_is_vm_id(ffa_vm_id_t vm_id)
268{
269 (void)vm_id;
270 return false;
271}
J-Alvesc8e8a222021-06-08 17:33:52 +0100272
J-Alvesfa782092021-10-13 16:02:16 +0100273bool plat_ffa_vm_notifications_info_get( // NOLINTNEXTLINE
274 uint16_t *ids, uint32_t *ids_count, // NOLINTNEXTLINE
275 uint32_t *lists_sizes, // NOLINTNEXTLINE
276 uint32_t *lists_count, const uint32_t ids_count_max)
J-Alvesc8e8a222021-06-08 17:33:52 +0100277{
278 (void)ids;
279 (void)ids_count;
280 (void)lists_sizes;
281 (void)lists_count;
282 (void)ids_count_max;
283
284 return false;
285}
Raghu Krishnamurthyea6d25f2021-09-14 15:27:06 -0700286
287bool plat_ffa_is_mem_perm_get_valid(const struct vcpu *current)
288{
289 (void)current;
290 return false;
291}
292
293bool plat_ffa_is_mem_perm_set_valid(const struct vcpu *current)
294{
295 (void)current;
296 return false;
297}
Madhukar Pappireddyb11e0d12021-08-02 19:44:35 -0500298
299/**
300 * Check if current VM can resume target VM/SP using FFA_RUN ABI.
301 */
302bool plat_ffa_run_checks(struct vcpu *current, ffa_vm_id_t target_vm_id,
Raghu Krishnamurthy048d63f2021-12-11 12:45:41 -0800303 ffa_vcpu_index_t vcpu_idx, struct ffa_value *run_ret,
304 struct vcpu **next)
Madhukar Pappireddyb11e0d12021-08-02 19:44:35 -0500305{
306 (void)current;
307 (void)target_vm_id;
308 (void)run_ret;
309 (void)next;
Raghu Krishnamurthy048d63f2021-12-11 12:45:41 -0800310 (void)vcpu_idx;
Madhukar Pappireddyb11e0d12021-08-02 19:44:35 -0500311 return true;
312}
J-Alvesca058c22021-09-10 14:02:07 +0100313
314void plat_ffa_notification_info_get_forward( // NOLINTNEXTLINE
315 uint16_t *ids, uint32_t *ids_count, // NOLINTNEXTLINE
316 uint32_t *lists_sizes, uint32_t *lists_count,
317 const uint32_t ids_count_max)
318{
319 (void)ids;
320 (void)ids_count;
321 (void)lists_sizes;
322 (void)lists_count;
323 (void)ids_count_max;
324}
J-Alves13394022021-06-30 13:48:49 +0100325
326void plat_ffa_sri_state_set(enum plat_ffa_sri_state state)
327{
328 (void)state;
329}
330
331void plat_ffa_sri_trigger_if_delayed(struct cpu *cpu)
332{
333 (void)cpu;
334}
335
336void plat_ffa_sri_trigger_not_delayed(struct cpu *cpu)
337{
338 (void)cpu;
339}
340
341void plat_ffa_sri_init(struct cpu *cpu)
342{
343 (void)cpu;
344}
J-Alves7461ef22021-10-18 17:21:33 +0100345
J-Alves6e2abc62021-12-02 14:58:56 +0000346bool plat_ffa_inject_notification_pending_interrupt(
347 struct vcpu_locked target_locked, struct vcpu *current,
348 struct vm_locked receiver_locked)
J-Alves7461ef22021-10-18 17:21:33 +0100349{
J-Alves6e2abc62021-12-02 14:58:56 +0000350 (void)target_locked;
J-Alves7461ef22021-10-18 17:21:33 +0100351 (void)current;
J-Alves6e2abc62021-12-02 14:58:56 +0000352 (void)receiver_locked;
353
354 return false;
J-Alves7461ef22021-10-18 17:21:33 +0100355}
Olivier Depreze562e542020-06-11 17:31:54 +0200356
357void plat_ffa_partition_info_get_forward( // NOLINTNEXTLINE
358 const struct ffa_uuid *uuid, // NOLINTNEXTLINE
Daniel Boulbyb46cad12021-12-13 17:47:21 +0000359 const uint32_t flags, // NOLINTNEXTLINE
Olivier Depreze562e542020-06-11 17:31:54 +0200360 struct ffa_partition_info *partitions, ffa_vm_count_t *ret_count)
361{
362 (void)uuid;
Daniel Boulbyb46cad12021-12-13 17:47:21 +0000363 (void)flags;
Olivier Depreze562e542020-06-11 17:31:54 +0200364 (void)partitions;
365 (void)ret_count;
366}
Olivier Deprezd614d322021-06-18 15:21:00 +0200367
368bool plat_ffa_is_secondary_ep_register_supported(void)
369{
370 return false;
371}
Madhukar Pappireddy5522c672021-12-17 16:35:51 -0600372bool plat_ffa_msg_wait_prepare(struct vcpu *current, struct vcpu **next,
373 struct ffa_value *ret_args)
374{
375 (void)current;
376 (void)next;
377 (void)ret_args;
378
379 return false;
380}