1 /* 2 * Copyright 2020 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/arch/other_world.h" 10 11 #include "hf/dlog.h" 12 #include "hf/ffa.h" 13 #include "hf/ffa_internal.h" 14 arch_other_world_call(struct ffa_value args)15struct ffa_value arch_other_world_call(struct ffa_value args) 16 { 17 dlog_error("Attempted to call TEE function %#lx\n", args.func); 18 return ffa_error(FFA_NOT_SUPPORTED); 19 } 20