| /* |
| * Copyright (c) 2021, Arm Limited. All rights reserved. |
| * |
| * SPDX-License-Identifier: BSD-3-Clause |
| */ |
| |
| #include "cactus_test_cmds.h" |
| #include <ffa_helpers.h> |
| |
| /** |
| * Begin and end of command handler table, respectively. Both symbols defined by |
| * the linker. |
| */ |
| extern struct cactus_cmd_handler cactus_cmd_handler_begin[]; |
| extern struct cactus_cmd_handler cactus_cmd_handler_end[]; |
| |
| /** |
| * Traverses command table from section ".cactus_handler", searches for a |
| * registered command and invokes the respective handler. |
| */ |
| bool cactus_handle_cmd(smc_ret_values *cmd_args, smc_ret_values *ret, |
| struct mailbox_buffers *mb) |
| { |
| if (cmd_args == NULL || ret == NULL) { |
| ERROR("Invalid argumentos passed to %s!\n", __func__); |
| return false; |
| } |
| |
| uint64_t in_cmd = cactus_get_cmd(*cmd_args); |
| |
| for (struct cactus_cmd_handler *it_cmd = cactus_cmd_handler_begin; |
| it_cmd < cactus_cmd_handler_end; |
| it_cmd++) { |
| if (it_cmd->id == in_cmd) { |
| *ret = it_cmd->fn(cmd_args, mb); |
| return true; |
| } |
| } |
| |
| return false; |
| } |