blob: b0345e27c359b8dedc9a5e1fe2f3f8b76339cede [file] [log] [blame]
Andrew Scull18834872018-10-12 11:48:09 +01001/*
2 * Copyright 2018 Google LLC
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * https://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Andrew Scullfbc938a2018-08-20 14:09:28 +010017#pragma once
Andrew Scullf35a5c92018-08-07 18:09:46 +010018
Andrew Scull6d2db332018-10-10 15:28:17 +010019#include "hf/abi.h"
20#include "hf/types.h"
Andrew Scullf35a5c92018-08-07 18:09:46 +010021
22/* Keep macro alignment */
23/* clang-format off */
24
Andrew Scullf35a5c92018-08-07 18:09:46 +010025/* TODO: Define constants below according to spec. */
Wedson Almeida Filhoea62e2e2019-01-09 19:14:59 +000026#define HF_VM_GET_ID 0xff00
27#define HF_VM_GET_COUNT 0xff01
28#define HF_VCPU_GET_COUNT 0xff02
29#define HF_VCPU_RUN 0xff03
30#define HF_VCPU_YIELD 0xff04
31#define HF_VM_CONFIGURE 0xff05
32#define HF_MAILBOX_SEND 0xff06
33#define HF_MAILBOX_RECEIVE 0xff07
34#define HF_MAILBOX_CLEAR 0xff08
35#define HF_MAILBOX_WRITABLE_GET 0xff09
36#define HF_MAILBOX_WAITER_GET 0xff0a
37#define HF_INTERRUPT_ENABLE 0xff0b
38#define HF_INTERRUPT_GET 0xff0c
39#define HF_INTERRUPT_INJECT 0xff0d
Andrew Scull6386f252018-12-06 13:29:10 +000040#define HF_SHARE_MEMORY 0xff0e
Andrew Scullf35a5c92018-08-07 18:09:46 +010041
Andrew Walbranc3910f72018-11-27 14:24:36 +000042/** The amount of data that can be sent to a mailbox. */
Andrew Scullaa039b32018-10-04 15:02:26 +010043#define HF_MAILBOX_SIZE 4096
44
Andrew Scullf35a5c92018-08-07 18:09:46 +010045/* clang-format on */
46
Andrew Scull5ac05f02018-08-10 17:23:22 +010047/**
48 * This function must be implemented to trigger the architecture specific
49 * mechanism to call to the hypervisor.
Andrew Scullf35a5c92018-08-07 18:09:46 +010050 */
Andrew Scullc0e569a2018-10-02 18:05:21 +010051int64_t hf_call(size_t arg0, size_t arg1, size_t arg2, size_t arg3);
Andrew Scullf35a5c92018-08-07 18:09:46 +010052
Andrew Scull5ac05f02018-08-10 17:23:22 +010053/**
Andrew Scull55c4d8b2018-12-18 18:50:18 +000054 * Returns the VM's own ID.
Andrew Scull5ac05f02018-08-10 17:23:22 +010055 */
Wedson Almeida Filho02af6972018-12-21 22:18:41 +000056static inline uint32_t hf_vm_get_id(void)
Andrew Scull5ac05f02018-08-10 17:23:22 +010057{
Andrew Scull55c4d8b2018-12-18 18:50:18 +000058 return hf_call(HF_VM_GET_ID, 0, 0, 0);
Andrew Scull5ac05f02018-08-10 17:23:22 +010059}
60
61/**
Andrew Scullf35a5c92018-08-07 18:09:46 +010062 * Returns the number of secondary VMs.
63 */
Andrew Scullc0e569a2018-10-02 18:05:21 +010064static inline int64_t hf_vm_get_count(void)
Andrew Scullf35a5c92018-08-07 18:09:46 +010065{
66 return hf_call(HF_VM_GET_COUNT, 0, 0, 0);
67}
68
Andrew Scull5ac05f02018-08-10 17:23:22 +010069/**
Andrew Scullf35a5c92018-08-07 18:09:46 +010070 * Returns the number of VCPUs configured in the given secondary VM.
71 */
Andrew Scullc0e569a2018-10-02 18:05:21 +010072static inline int64_t hf_vcpu_get_count(uint32_t vm_id)
Andrew Scullf35a5c92018-08-07 18:09:46 +010073{
Andrew Scull19503262018-09-20 14:48:39 +010074 return hf_call(HF_VCPU_GET_COUNT, vm_id, 0, 0);
Andrew Scullf35a5c92018-08-07 18:09:46 +010075}
76
Andrew Scull5ac05f02018-08-10 17:23:22 +010077/**
Andrew Scull55c4d8b2018-12-18 18:50:18 +000078 * Runs the given vcpu of the given vm.
79 *
80 * Returns an hf_vcpu_run_return struct telling the scheduler what to do next.
81 */
82static inline struct hf_vcpu_run_return hf_vcpu_run(uint32_t vm_id,
83 uint32_t vcpu_idx)
84{
85 return hf_vcpu_run_return_decode(
86 hf_call(HF_VCPU_RUN, vm_id, vcpu_idx, 0));
87}
88
89/**
90 * Hints that the vcpu is willing to yield its current use of the physical CPU.
91 */
92static inline void hf_vcpu_yield(void)
93{
94 hf_call(HF_VCPU_YIELD, 0, 0, 0);
95}
96
97/**
Andrew Scull5ac05f02018-08-10 17:23:22 +010098 * Configures the pages to send/receive data through. The pages must not be
99 * shared.
Andrew Walbran54afb502018-11-26 16:01:11 +0000100 *
Wedson Almeida Filhoea62e2e2019-01-09 19:14:59 +0000101 * Returns:
102 * - -1 on failure.
103 * - 0 on success if no further action is needed.
104 * - 1 if it was called by the primary VM and the primary VM now needs to wake
105 * up or kick waiters.
Andrew Scull5ac05f02018-08-10 17:23:22 +0100106 */
Andrew Scullc0e569a2018-10-02 18:05:21 +0100107static inline int64_t hf_vm_configure(hf_ipaddr_t send, hf_ipaddr_t recv)
Andrew Scull5ac05f02018-08-10 17:23:22 +0100108{
109 return hf_call(HF_VM_CONFIGURE, send, recv, 0);
110}
111
112/**
Andrew Scullaa039b32018-10-04 15:02:26 +0100113 * Copies data from the sender's send buffer to the recipient's receive buffer.
Andrew Walbran54afb502018-11-26 16:01:11 +0000114 *
Wedson Almeida Filho17c997f2019-01-09 18:50:09 +0000115 * If the recipient's receive buffer is busy, it can optionally register the
116 * caller to be notified when the recipient's receive buffer becomes available.
117 *
Andrew Walbran54afb502018-11-26 16:01:11 +0000118 * Returns -1 on failure, and on success either:
Andrew Scull55c4d8b2018-12-18 18:50:18 +0000119 * - 0, if the caller is a secondary VM
120 * - the ID of the vCPU to run to receive the message, if the caller is the
121 * primary VM.
122 * - HF_INVALID_VCPU if the caller is the primary VM and no vCPUs on the target
123 * VM are currently waiting to receive a message.
Andrew Scull5ac05f02018-08-10 17:23:22 +0100124 */
Wedson Almeida Filho17c997f2019-01-09 18:50:09 +0000125static inline int64_t hf_mailbox_send(uint32_t vm_id, size_t size, bool notify)
Andrew Scull5ac05f02018-08-10 17:23:22 +0100126{
Wedson Almeida Filho17c997f2019-01-09 18:50:09 +0000127 return hf_call(HF_MAILBOX_SEND, vm_id, size, notify);
Andrew Scull5ac05f02018-08-10 17:23:22 +0100128}
129
130/**
Andrew Scullaa039b32018-10-04 15:02:26 +0100131 * Called by secondary VMs to receive a message. The call can optionally block
132 * until a message is received.
Andrew Scull5ac05f02018-08-10 17:23:22 +0100133 *
Andrew Scull6d2db332018-10-10 15:28:17 +0100134 * If no message was received, the VM ID will be HF_INVALID_VM_ID.
135 *
Andrew Scullaa039b32018-10-04 15:02:26 +0100136 * The mailbox must be cleared before a new message can be received.
Andrew Scull5ac05f02018-08-10 17:23:22 +0100137 */
Andrew Scull6d2db332018-10-10 15:28:17 +0100138static inline struct hf_mailbox_receive_return hf_mailbox_receive(bool block)
Andrew Scull5ac05f02018-08-10 17:23:22 +0100139{
Andrew Scull6d2db332018-10-10 15:28:17 +0100140 return hf_mailbox_receive_return_decode(
141 hf_call(HF_MAILBOX_RECEIVE, block, 0, 0));
Andrew Scull5ac05f02018-08-10 17:23:22 +0100142}
143
144/**
Andrew Walbran54afb502018-11-26 16:01:11 +0000145 * Clears the caller's mailbox so a new message can be received.
146 *
Wedson Almeida Filhoea62e2e2019-01-09 19:14:59 +0000147 * Returns:
148 * - -1 on failure, if the mailbox hasn't been read or is already empty.
149 * - 0 on success if no further action is needed.
150 * - 1 if it was called by the primary VM and the primary VM now needs to wake
151 * up or kick waiters. Waiters should be retrieved by calling
152 * hf_mailbox_waiter_get.
Andrew Scull5ac05f02018-08-10 17:23:22 +0100153 */
Andrew Scullaa039b32018-10-04 15:02:26 +0100154static inline int64_t hf_mailbox_clear(void)
Andrew Scull5ac05f02018-08-10 17:23:22 +0100155{
Andrew Scullaa039b32018-10-04 15:02:26 +0100156 return hf_call(HF_MAILBOX_CLEAR, 0, 0, 0);
Andrew Scull5ac05f02018-08-10 17:23:22 +0100157}
Andrew Walbran318f5732018-11-20 16:23:42 +0000158
159/**
Wedson Almeida Filhoea62e2e2019-01-09 19:14:59 +0000160 * Retrieves the next VM whose mailbox became writable. For a VM to be notified
161 * by this function, the caller must have called api_mailbox_send before with
162 * the notify argument set to true, and this call must have failed because the
163 * mailbox was not available.
164 *
165 * It should be called repeatedly to retreive a list of VMs.
166 *
167 * Returns -1 if no VM became writable, or the id of the VM whose mailbox
168 * became writable.
169 */
170static inline int64_t hf_mailbox_writable_get(void)
171{
172 return hf_call(HF_MAILBOX_WRITABLE_GET, 0, 0, 0);
173}
174
175/**
176 * Retrieves the next VM waiting to be notified that the mailbox of the
177 * specified VM became writable. Only primary VMs are allowed to call this.
178 *
179 * Returns -1 if there are no waiters, or the VM id of the next waiter
180 * otherwise.
181 */
182static inline int64_t hf_mailbox_waiter_get(uint32_t vm_id)
183{
184 return hf_call(HF_MAILBOX_WAITER_GET, vm_id, 0, 0);
185}
186
187/**
Andrew Walbran318f5732018-11-20 16:23:42 +0000188 * Enables or disables a given interrupt ID.
189 *
190 * Returns 0 on success, or -1 if the intid is invalid.
191 */
Wedson Almeida Filhoc559d132019-01-09 19:33:40 +0000192static inline int64_t hf_interrupt_enable(uint32_t intid, bool enable)
Andrew Walbran318f5732018-11-20 16:23:42 +0000193{
Wedson Almeida Filhoc559d132019-01-09 19:33:40 +0000194 return hf_call(HF_INTERRUPT_ENABLE, intid, enable, 0);
Andrew Walbran318f5732018-11-20 16:23:42 +0000195}
196
197/**
198 * Gets the ID of the pending interrupt (if any) and acknowledge it.
199 *
200 * Returns HF_INVALID_INTID if there are no pending interrupts.
201 */
Wedson Almeida Filhoc559d132019-01-09 19:33:40 +0000202static inline uint32_t hf_interrupt_get(void)
Andrew Walbran318f5732018-11-20 16:23:42 +0000203{
Wedson Almeida Filhoc559d132019-01-09 19:33:40 +0000204 return hf_call(HF_INTERRUPT_GET, 0, 0, 0);
Andrew Walbran318f5732018-11-20 16:23:42 +0000205}
206
207/**
208 * Injects a virtual interrupt of the given ID into the given target vCPU.
209 * This doesn't cause the vCPU to actually be run immediately; it will be taken
210 * when the vCPU is next run, which is up to the scheduler.
211 *
Andrew Walbran3d84a262018-12-13 14:41:19 +0000212 * Returns:
213 * - -1 on failure because the target VM or vCPU doesn't exist, the interrupt
214 * ID is invalid, or the current VM is not allowed to inject interrupts to
215 * the target VM.
216 * - 0 on success if no further action is needed.
217 * - 1 if it was called by the primary VM and the primary VM now needs to wake
218 * up or kick the target vCPU.
Andrew Walbran318f5732018-11-20 16:23:42 +0000219 */
Wedson Almeida Filhoc559d132019-01-09 19:33:40 +0000220static inline int64_t hf_interrupt_inject(uint32_t target_vm_id,
Andrew Walbran318f5732018-11-20 16:23:42 +0000221 uint32_t target_vcpu_idx,
222 uint32_t intid)
223{
Wedson Almeida Filhoc559d132019-01-09 19:33:40 +0000224 return hf_call(HF_INTERRUPT_INJECT, target_vm_id, target_vcpu_idx,
Andrew Walbran318f5732018-11-20 16:23:42 +0000225 intid);
226}
Andrew Scull6386f252018-12-06 13:29:10 +0000227
228/**
229 * Shares a region of memory with another VM.
230 *
231 * Returns 0 on success or -1 if the sharing was not allowed or failed.
232 *
233 * TODO: replace this with a better API once we have decided what that should
234 * look like.
235 */
236static inline int64_t hf_share_memory(uint32_t vm_id, hf_ipaddr_t addr,
237 size_t size, enum hf_share share)
238{
239 return hf_call(HF_SHARE_MEMORY, (((uint64_t)vm_id) << 32) | share, addr,
240 size);
241}