|
| 1 | +/* |
| 2 | + * Copyright (c) 2017, ARM Limited, All Rights Reserved |
| 3 | + * SPDX-License-Identifier: Apache-2.0 |
| 4 | + * |
| 5 | + * Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 6 | + * not use this file except in compliance with the License. |
| 7 | + * You may obtain a copy of the License at |
| 8 | + * |
| 9 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | + * |
| 11 | + * Unless required by applicable law or agreed to in writing, software |
| 12 | + * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 13 | + * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | + * See the License for the specific language governing permissions and |
| 15 | + * limitations under the License. |
| 16 | + */ |
| 17 | +#include "api/inc/rpc2.h" |
| 18 | +#include "api/inc/ipc.h" |
| 19 | + |
| 20 | +/* A generic port for all incoming RPC. */ |
| 21 | +static const size_t UVISOR_RPC_PORT = 'f'; /* 'f' is for function. That's good enough for me. */ |
| 22 | + |
| 23 | +static uint32_t wait_for_all(uint32_t wait_tokens) |
| 24 | +{ |
| 25 | + uint32_t done_tokens = 0; |
| 26 | + static const uint32_t timeout_ms = 0; |
| 27 | + static const uint32_t delay_iterations = 100000; |
| 28 | + |
| 29 | + /* Spin until all tokens complete. */ |
| 30 | + while (ipc_waitforall(wait_tokens, &done_tokens, timeout_ms)) |
| 31 | + { |
| 32 | + /* Waste time a bit. */ |
| 33 | + /* FIXME: When we can run RTOS in other boxes, or have a uVisor |
| 34 | + * scheduler yield or sleep function, remove this room heater loop. */ |
| 35 | + for (volatile int i = 0; i <= delay_iterations; i++); |
| 36 | + } |
| 37 | + |
| 38 | + return done_tokens; |
| 39 | +} |
| 40 | + |
| 41 | +static int do_rpc(int caller_box_id, uvisor_rpc2_call_t * rpc_msg) |
| 42 | +{ |
| 43 | + int status; |
| 44 | + uint32_t done_tokens; |
| 45 | + uvisor_rpc2_return_t rpc_ret; |
| 46 | + uvisor_ipc_desc_t desc; |
| 47 | + |
| 48 | + /* Do the RPC. */ |
| 49 | + rpc_ret.ret = rpc_msg->fnptr(rpc_msg->p0, rpc_msg->p1, rpc_msg->p2, rpc_msg->p3, |
| 50 | + caller_box_id); |
| 51 | + |
| 52 | + /* Send the RPC response to the port the caller box expects. */ |
| 53 | + desc.box_id = caller_box_id; |
| 54 | + desc.port = rpc_msg->completion_port; |
| 55 | + desc.len = sizeof(rpc_ret); |
| 56 | + |
| 57 | + status = ipc_send(&desc, &rpc_ret); |
| 58 | + if (status) { |
| 59 | + return status; |
| 60 | + } |
| 61 | + |
| 62 | + /* Wait for the send to complete, to keep the IPC descriptor and RPC |
| 63 | + * response in memory long enough for uVisor to read them (before they go |
| 64 | + * out of scope). */ |
| 65 | + done_tokens = wait_for_all(desc.token); |
| 66 | + if (!(done_tokens & desc.token)) { |
| 67 | + /* Token we wanted didn't complete */ |
| 68 | + return -1; |
| 69 | + } |
| 70 | + |
| 71 | + return 0; |
| 72 | +} |
| 73 | + |
| 74 | +static int handle_rpc(int caller_box_id, uvisor_rpc2_call_t * rpc_msg, const rpc2_fnptr_t fn_array[], size_t fn_count) |
| 75 | +{ |
| 76 | + size_t i; |
| 77 | + /* Check if the target function is in the fn_array */ |
| 78 | + for (i = 0; i < fn_count; ++i) { |
| 79 | + if (fn_array[i] == rpc_msg->fnptr) { |
| 80 | + return do_rpc(caller_box_id, rpc_msg); |
| 81 | + } |
| 82 | + } |
| 83 | + |
| 84 | + /* The RPC target was not in the list of acceptable RPC targets. */ |
| 85 | + return -1; |
| 86 | +} |
| 87 | + |
| 88 | +int rpc_waitfor(const rpc2_fnptr_t fn_array[], size_t fn_count, int box_id, uint32_t timeout_ms) |
| 89 | +{ |
| 90 | + int status; |
| 91 | + uvisor_ipc_desc_t desc = {0}; |
| 92 | + uvisor_rpc2_call_t rpc_msg; |
| 93 | + |
| 94 | + /* Receive the RPC response over the generic RPC port. */ |
| 95 | + desc.box_id = box_id; |
| 96 | + desc.port = UVISOR_RPC_PORT; |
| 97 | + desc.len = sizeof(rpc_msg); |
| 98 | + |
| 99 | + status = ipc_recv(&desc, &rpc_msg); |
| 100 | + if (status) { |
| 101 | + return status; |
| 102 | + } |
| 103 | + |
| 104 | + /* Wait for the receive to complete. */ |
| 105 | + if (timeout_ms == 0) { |
| 106 | + /* Try once. */ |
| 107 | + uint32_t done_tokens = 0; |
| 108 | + status = ipc_waitforall(desc.token, &done_tokens, timeout_ms); |
| 109 | + if (status) { |
| 110 | + return status; |
| 111 | + } |
| 112 | + |
| 113 | + /* See if done_tokens matches */ |
| 114 | + if (done_tokens != desc.token) { |
| 115 | + /* Not good. No match. Fail. */ |
| 116 | + return -1; |
| 117 | + } |
| 118 | + } else { |
| 119 | + /* Spin forever */ |
| 120 | + wait_for_all(desc.token); |
| 121 | + } |
| 122 | + |
| 123 | + /* Handle the RPC */ |
| 124 | + handle_rpc(desc.box_id, &rpc_msg, fn_array, fn_count); |
| 125 | + |
| 126 | + return 0; |
| 127 | +} |
| 128 | + |
| 129 | +int rpc_async(uint32_t p0, uint32_t p1, uint32_t p2, uint32_t p3, |
| 130 | + const rpc2_fnptr_t fnptr, int box_id, uvisor_rpc2_cookie_t *cookie) |
| 131 | +{ |
| 132 | + int status; |
| 133 | + uint32_t done_tokens; |
| 134 | + size_t completion_port; |
| 135 | + uvisor_rpc2_call_t rpc_msg = {0}; |
| 136 | + uvisor_ipc_desc_t desc = {0}; |
| 137 | + |
| 138 | + /* Allocate a return port to receive a response on. */ |
| 139 | + completion_port = 0; /* XXX TODO */ |
| 140 | + |
| 141 | + /* Build the RPC message. */ |
| 142 | + rpc_msg.p0 = p0; |
| 143 | + rpc_msg.p1 = p1; |
| 144 | + rpc_msg.p2 = p2; |
| 145 | + rpc_msg.p3 = p3; |
| 146 | + rpc_msg.fnptr = fnptr; |
| 147 | + rpc_msg.completion_port = completion_port; |
| 148 | + |
| 149 | + /* Send the message to the generic RPC port. */ |
| 150 | + desc.box_id = box_id; |
| 151 | + desc.port = UVISOR_RPC_PORT; |
| 152 | + desc.len = sizeof(rpc_msg); |
| 153 | + |
| 154 | + status = ipc_send(&desc, &rpc_msg); |
| 155 | + if (status) { |
| 156 | + return status; |
| 157 | + } |
| 158 | + |
| 159 | + /* Wait for the send to complete, to keep the IPC descriptor and RPC |
| 160 | + * message in memory long enough for uVisor to read them (before they go |
| 161 | + * out of scope). */ |
| 162 | + done_tokens = wait_for_all(desc.token); |
| 163 | + if (!(done_tokens & desc.token)) { |
| 164 | + /* Token we wanted didn't complete */ |
| 165 | + return -1; |
| 166 | + } |
| 167 | + |
| 168 | + /* The message has been sent. Update the cookie with the port we should wait on. */ |
| 169 | + cookie->completion_port = completion_port; |
| 170 | + cookie->box_id = box_id; |
| 171 | + |
| 172 | + return 0; |
| 173 | +} |
| 174 | + |
| 175 | +int rpc_wait(uvisor_rpc2_cookie_t cookie, uint32_t timeout_ms, uint32_t * ret) |
| 176 | +{ |
| 177 | + int status; |
| 178 | + uvisor_ipc_desc_t desc = {0}; |
| 179 | + uvisor_rpc2_return_t rpc_ret = {0}; |
| 180 | + |
| 181 | + /* Receive the RPC response over the negotiated port for the call. */ |
| 182 | + desc.box_id = cookie.box_id; |
| 183 | + desc.port = cookie.completion_port; |
| 184 | + desc.len = sizeof(rpc_ret); |
| 185 | + |
| 186 | + status = ipc_recv(&desc, &rpc_ret); |
| 187 | + if (status) { |
| 188 | + return status; |
| 189 | + } |
| 190 | + |
| 191 | + /* Wait for the receive to complete. */ |
| 192 | + if (timeout_ms == 0) { |
| 193 | + /* Try once. */ |
| 194 | + uint32_t done_tokens = 0; |
| 195 | + status = ipc_waitforall(desc.token, &done_tokens, timeout_ms); |
| 196 | + if (status) { |
| 197 | + return status; |
| 198 | + } |
| 199 | + |
| 200 | + /* See if done_tokens matches */ |
| 201 | + if (done_tokens != desc.token) { |
| 202 | + /* Not good. No match. Fail. */ |
| 203 | + return -1; |
| 204 | + } |
| 205 | + } else { |
| 206 | + /* Spin forever */ |
| 207 | + wait_for_all(desc.token); |
| 208 | + } |
| 209 | + |
| 210 | + /* If ret is provided, update ret with the RPC return value */ |
| 211 | + if (ret) { |
| 212 | + *ret = rpc_ret.ret; |
| 213 | + } |
| 214 | + |
| 215 | + return 0; |
| 216 | +} |
| 217 | + |
| 218 | +int rpc_gateway_async(uint32_t p0, uint32_t p1, uint32_t p2, uint32_t p3, |
| 219 | + const rpc2_gateway_t * gateway, uvisor_rpc2_cookie_t * cookie) |
| 220 | +{ |
| 221 | + /* TODO */ |
| 222 | + return 0; |
| 223 | +} |
0 commit comments