1 /* SPDX-License-Identifier: MIT */ 1 2 /********************************************* 3 * vcpu.h 4 * 5 * VCPU initialisation, query, and hotplug. 6 * 7 * Copyright (c) 2005, Keir Fraser <keir@xenso 8 */ 9 10 #ifndef __XEN_PUBLIC_VCPU_H__ 11 #define __XEN_PUBLIC_VCPU_H__ 12 13 /* 14 * Prototype for this hypercall is: 15 * int vcpu_op(int cmd, int vcpuid, void 16 * @cmd == VCPUOP_??? (VCPU operati 17 * @vcpuid == VCPU to operate on. 18 * @extra_args == Operation-specific extra arg 19 */ 20 21 /* 22 * Initialise a VCPU. Each VCPU can be initial 23 * newly-initialised VCPU will not run until i 24 * 25 * @extra_arg == pointer to vcpu_guest_context 26 * state for the 27 */ 28 #define VCPUOP_initialise 29 30 /* 31 * Bring up a VCPU. This makes the VCPU runnab 32 * if the VCPU has not been initialised (VCPUO 33 */ 34 #define VCPUOP_up 35 36 /* 37 * Bring down a VCPU (i.e., make it non-runnab 38 * There are a few caveats that callers should 39 * 1. This operation may return, and VCPU 40 * VCPU stops running (i.e., the comma 41 * idea to ensure that the VCPU has en 42 * bringing it down. Alternatively, th 43 * synchronous if invoked by the VCPU 44 * 2. After a VCPU is initialised, there 45 * references to domain memory. Even a 46 * memory references via its pagetable 47 * practise to move a VCPU onto an 'id 48 * GDT before bringing it down. 49 */ 50 #define VCPUOP_down 51 52 /* Returns 1 if the given VCPU is up. */ 53 #define VCPUOP_is_up 54 55 /* 56 * Return information about the state and runn 57 * @extra_arg == pointer to vcpu_runstate_info 58 */ 59 #define VCPUOP_get_runstate_info 4 60 struct vcpu_runstate_info { 61 /* VCPU's current state (RUNSTATE_*). 62 int state; 63 /* When was current state entered (sys 64 uint64_t state_entry_time; 65 /* 66 * Update indicator set in state_entry 67 * When activated via VMASST_TYPE_runs 68 * updates in guest memory mapped copy 69 */ 70 #define XEN_RUNSTATE_UPDATE (1ULL << 63) 71 /* 72 * Time spent in each RUNSTATE_* (ns). 73 * guaranteed not to drift from system 74 */ 75 uint64_t time[4]; 76 }; 77 DEFINE_GUEST_HANDLE_STRUCT(vcpu_runstate_info) 78 79 /* VCPU is currently running on a physical CPU 80 #define RUNSTATE_running 0 81 82 /* VCPU is runnable, but not currently schedul 83 #define RUNSTATE_runnable 1 84 85 /* VCPU is blocked (a.k.a. idle). It is theref 86 #define RUNSTATE_blocked 2 87 88 /* 89 * VCPU is not runnable, but it is not blocked 90 * This is a 'catch all' state for things like 91 * system administrator (or for critical secti 92 * RUNSTATE_blocked dominates this state (it i 93 */ 94 #define RUNSTATE_offline 3 95 96 /* 97 * Register a shared memory area from which th 98 * runstate information without needing to exe 99 * Notes: 100 * 1. The registered address may be virtu 101 * platform. The virtual address shoul 102 * 2. Only one shared area may be registe 103 * updated by the hypervisor each time 104 * runstate.state will always be RUNST 105 * runstate.state_entry_time will indi 106 * VCPU was last scheduled to run. 107 * @extra_arg == pointer to vcpu_register_runs 108 */ 109 #define VCPUOP_register_runstate_memory_area 5 110 struct vcpu_register_runstate_memory_area { 111 union { 112 GUEST_HANDLE(v 113 struct vcpu_ru 114 uint64_t p; 115 } addr; 116 }; 117 118 /* 119 * Set or stop a VCPU's periodic timer. Every 120 * which can be set via these commands. Period 121 * may not be supported. 122 */ 123 #define VCPUOP_set_periodic_timer 6 /* 124 #define VCPUOP_stop_periodic_timer 7 /* 125 struct vcpu_set_periodic_timer { 126 uint64_t period_ns; 127 }; 128 DEFINE_GUEST_HANDLE_STRUCT(vcpu_set_periodic_t 129 130 /* 131 * Set or stop a VCPU's single-shot timer. Eve 132 * timer which can be set via these commands. 133 */ 134 #define VCPUOP_set_singleshot_timer 8 /* 135 #define VCPUOP_stop_singleshot_timer 9 /* arg 136 struct vcpu_set_singleshot_timer { 137 uint64_t timeout_abs_ns; 138 uint32_t flags; 139 }; 140 DEFINE_GUEST_HANDLE_STRUCT(vcpu_set_singleshot 141 142 /* Flags to VCPUOP_set_singleshot_timer. */ 143 /* Require the timeout to be in the future (r 144 #define _VCPU_SSHOTTMR_future (0) 145 #define VCPU_SSHOTTMR_future (1U << _VCPU_SSH 146 147 /* 148 * Register a memory location in the guest add 149 * vcpu_info structure. This allows the guest 150 * structure in a convenient place, such as in 151 * The pointer need not be page aligned, but t 152 * cross a page boundary. 153 */ 154 #define VCPUOP_register_vcpu_info 10 /* arg 155 struct vcpu_register_vcpu_info { 156 uint64_t mfn; /* mfn of page to place v 157 uint32_t offset; /* offset within page */ 158 uint32_t rsvd; /* unused */ 159 }; 160 DEFINE_GUEST_HANDLE_STRUCT(vcpu_register_vcpu_ 161 162 /* Send an NMI to the specified VCPU. @extra_a 163 #define VCPUOP_send_nmi 11 164 165 /* 166 * Get the physical ID information for a pinne 167 * processor. The physical ID informmation is 168 * On x86: id[31:0]=apic_id, id[63:32]=acpi_id 169 * This command returns -EINVAL if it is not a 170 */ 171 #define VCPUOP_get_physid 12 /* arg 172 struct vcpu_get_physid { 173 uint64_t phys_id; 174 }; 175 DEFINE_GUEST_HANDLE_STRUCT(vcpu_get_physid); 176 #define xen_vcpu_physid_to_x86_apicid(physid) 177 #define xen_vcpu_physid_to_x86_acpiid(physid) 178 179 /* 180 * Register a memory location to get a seconda 181 * parameters. The master copy still exists a 182 * memory area, and this secondary copy is upd 183 * is updated (and using the same versioning s 184 * 185 * The intent is that this copy may be mapped 186 * that usermode can compute system time using 187 * tsc. Usermode will see an array of vcpu_ti 188 * for each vcpu, and choose the right one by 189 * which allows it to get the current vcpu num 190 * segment limit). It can then apply the norm 191 * system time from the tsc. 192 * 193 * @extra_arg == pointer to vcpu_register_time 194 */ 195 #define VCPUOP_register_vcpu_time_memory_area 196 DEFINE_GUEST_HANDLE_STRUCT(vcpu_time_info); 197 struct vcpu_register_time_memory_area { 198 union { 199 GUEST_HANDLE(vcpu_time_info) h 200 struct pvclock_vcpu_time_info 201 uint64_t p; 202 } addr; 203 }; 204 DEFINE_GUEST_HANDLE_STRUCT(vcpu_register_time_ 205 206 #endif /* __XEN_PUBLIC_VCPU_H__ */ 207
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.