vcpu.h 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. /******************************************************************************
  2. * vcpu.h
  3. *
  4. * VCPU initialisation, query, and hotplug.
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining a copy
  7. * of this software and associated documentation files (the "Software"), to
  8. * deal in the Software without restriction, including without limitation the
  9. * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
  10. * sell copies of the Software, and to permit persons to whom the Software is
  11. * furnished to do so, subject to the following conditions:
  12. *
  13. * The above copyright notice and this permission notice shall be included in
  14. * all copies or substantial portions of the Software.
  15. *
  16. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  19. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  21. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  22. * DEALINGS IN THE SOFTWARE.
  23. *
  24. * Copyright (c) 2005, Keir Fraser <keir@xensource.com>
  25. */
  26. #ifndef __XEN_PUBLIC_VCPU_H__
  27. #define __XEN_PUBLIC_VCPU_H__
  28. /*
  29. * Prototype for this hypercall is:
  30. * int vcpu_op(int cmd, int vcpuid, void *extra_args)
  31. * @cmd == VCPUOP_??? (VCPU operation).
  32. * @vcpuid == VCPU to operate on.
  33. * @extra_args == Operation-specific extra arguments (NULL if none).
  34. */
  35. /*
  36. * Initialise a VCPU. Each VCPU can be initialised only once. A
  37. * newly-initialised VCPU will not run until it is brought up by VCPUOP_up.
  38. *
  39. * @extra_arg == pointer to vcpu_guest_context structure containing initial
  40. * state for the VCPU.
  41. */
  42. #define VCPUOP_initialise 0
  43. /*
  44. * Bring up a VCPU. This makes the VCPU runnable. This operation will fail
  45. * if the VCPU has not been initialised (VCPUOP_initialise).
  46. */
  47. #define VCPUOP_up 1
  48. /*
  49. * Bring down a VCPU (i.e., make it non-runnable).
  50. * There are a few caveats that callers should observe:
  51. * 1. This operation may return, and VCPU_is_up may return false, before the
  52. * VCPU stops running (i.e., the command is asynchronous). It is a good
  53. * idea to ensure that the VCPU has entered a non-critical loop before
  54. * bringing it down. Alternatively, this operation is guaranteed
  55. * synchronous if invoked by the VCPU itself.
  56. * 2. After a VCPU is initialised, there is currently no way to drop all its
  57. * references to domain memory. Even a VCPU that is down still holds
  58. * memory references via its pagetable base pointer and GDT. It is good
  59. * practise to move a VCPU onto an 'idle' or default page table, LDT and
  60. * GDT before bringing it down.
  61. */
  62. #define VCPUOP_down 2
  63. /* Returns 1 if the given VCPU is up. */
  64. #define VCPUOP_is_up 3
  65. /*
  66. * Return information about the state and running time of a VCPU.
  67. * @extra_arg == pointer to vcpu_runstate_info structure.
  68. */
  69. #define VCPUOP_get_runstate_info 4
  70. struct vcpu_runstate_info {
  71. /* VCPU's current state (RUNSTATE_*). */
  72. int state;
  73. /* When was current state entered (system time, ns)? */
  74. uint64_t state_entry_time;
  75. /*
  76. * Time spent in each RUNSTATE_* (ns). The sum of these times is
  77. * guaranteed not to drift from system time.
  78. */
  79. uint64_t time[4];
  80. };
  81. typedef struct vcpu_runstate_info vcpu_runstate_info_t;
  82. DEFINE_XEN_GUEST_HANDLE(vcpu_runstate_info_t);
  83. /* VCPU is currently running on a physical CPU. */
  84. #define RUNSTATE_running 0
  85. /* VCPU is runnable, but not currently scheduled on any physical CPU. */
  86. #define RUNSTATE_runnable 1
  87. /* VCPU is blocked (a.k.a. idle). It is therefore not runnable. */
  88. #define RUNSTATE_blocked 2
  89. /*
  90. * VCPU is not runnable, but it is not blocked.
  91. * This is a 'catch all' state for things like hotplug and pauses by the
  92. * system administrator (or for critical sections in the hypervisor).
  93. * RUNSTATE_blocked dominates this state (it is the preferred state).
  94. */
  95. #define RUNSTATE_offline 3
  96. /*
  97. * Register a shared memory area from which the guest may obtain its own
  98. * runstate information without needing to execute a hypercall.
  99. * Notes:
  100. * 1. The registered address may be virtual or physical or guest handle,
  101. * depending on the platform. Virtual address or guest handle should be
  102. * registered on x86 systems.
  103. * 2. Only one shared area may be registered per VCPU. The shared area is
  104. * updated by the hypervisor each time the VCPU is scheduled. Thus
  105. * runstate.state will always be RUNSTATE_running and
  106. * runstate.state_entry_time will indicate the system time at which the
  107. * VCPU was last scheduled to run.
  108. * @extra_arg == pointer to vcpu_register_runstate_memory_area structure.
  109. */
  110. #define VCPUOP_register_runstate_memory_area 5
  111. struct vcpu_register_runstate_memory_area {
  112. union {
  113. XEN_GUEST_HANDLE(vcpu_runstate_info_t) h;
  114. struct vcpu_runstate_info *v;
  115. uint64_t p;
  116. } addr;
  117. };
  118. typedef struct vcpu_register_runstate_memory_area vcpu_register_runstate_memory_area_t;
  119. DEFINE_XEN_GUEST_HANDLE(vcpu_register_runstate_memory_area_t);
  120. /*
  121. * Set or stop a VCPU's periodic timer. Every VCPU has one periodic timer
  122. * which can be set via these commands. Periods smaller than one millisecond
  123. * may not be supported.
  124. */
  125. #define VCPUOP_set_periodic_timer 6 /* arg == vcpu_set_periodic_timer_t */
  126. #define VCPUOP_stop_periodic_timer 7 /* arg == NULL */
  127. struct vcpu_set_periodic_timer {
  128. uint64_t period_ns;
  129. };
  130. typedef struct vcpu_set_periodic_timer vcpu_set_periodic_timer_t;
  131. DEFINE_XEN_GUEST_HANDLE(vcpu_set_periodic_timer_t);
  132. /*
  133. * Set or stop a VCPU's single-shot timer. Every VCPU has one single-shot
  134. * timer which can be set via these commands.
  135. */
  136. #define VCPUOP_set_singleshot_timer 8 /* arg == vcpu_set_singleshot_timer_t */
  137. #define VCPUOP_stop_singleshot_timer 9 /* arg == NULL */
  138. struct vcpu_set_singleshot_timer {
  139. uint64_t timeout_abs_ns; /* Absolute system time value in nanoseconds. */
  140. uint32_t flags; /* VCPU_SSHOTTMR_??? */
  141. };
  142. typedef struct vcpu_set_singleshot_timer vcpu_set_singleshot_timer_t;
  143. DEFINE_XEN_GUEST_HANDLE(vcpu_set_singleshot_timer_t);
  144. /* Flags to VCPUOP_set_singleshot_timer. */
  145. /* Require the timeout to be in the future (return -ETIME if it's passed). */
  146. #define _VCPU_SSHOTTMR_future (0)
  147. #define VCPU_SSHOTTMR_future (1U << _VCPU_SSHOTTMR_future)
  148. /*
  149. * Register a memory location in the guest address space for the
  150. * vcpu_info structure. This allows the guest to place the vcpu_info
  151. * structure in a convenient place, such as in a per-cpu data area.
  152. * The pointer need not be page aligned, but the structure must not
  153. * cross a page boundary.
  154. *
  155. * This may be called only once per vcpu.
  156. */
  157. #define VCPUOP_register_vcpu_info 10 /* arg == vcpu_register_vcpu_info_t */
  158. struct vcpu_register_vcpu_info {
  159. uint64_t mfn; /* mfn of page to place vcpu_info */
  160. uint32_t offset; /* offset within page */
  161. uint32_t rsvd; /* unused */
  162. };
  163. typedef struct vcpu_register_vcpu_info vcpu_register_vcpu_info_t;
  164. DEFINE_XEN_GUEST_HANDLE(vcpu_register_vcpu_info_t);
  165. /* Send an NMI to the specified VCPU. @extra_arg == NULL. */
  166. #define VCPUOP_send_nmi 11
  167. /*
  168. * Get the physical ID information for a pinned vcpu's underlying physical
  169. * processor. The physical ID informmation is architecture-specific.
  170. * On x86: id[31:0]=apic_id, id[63:32]=acpi_id, and all values 0xff and
  171. * greater are reserved.
  172. * This command returns -EINVAL if it is not a valid operation for this VCPU.
  173. */
  174. #define VCPUOP_get_physid 12 /* arg == vcpu_get_physid_t */
  175. struct vcpu_get_physid {
  176. uint64_t phys_id;
  177. };
  178. typedef struct vcpu_get_physid vcpu_get_physid_t;
  179. DEFINE_XEN_GUEST_HANDLE(vcpu_get_physid_t);
  180. #define xen_vcpu_physid_to_x86_apicid(physid) \
  181. ((((uint32_t)(physid)) >= 0xff) ? 0xff : ((uint8_t)(physid)))
  182. #define xen_vcpu_physid_to_x86_acpiid(physid) \
  183. ((((uint32_t)((physid)>>32)) >= 0xff) ? 0xff : ((uint8_t)((physid)>>32)))
  184. #endif /* __XEN_PUBLIC_VCPU_H__ */
  185. /*
  186. * Local variables:
  187. * mode: C
  188. * c-set-style: "BSD"
  189. * c-basic-offset: 4
  190. * tab-width: 4
  191. * indent-tabs-mode: nil
  192. * End:
  193. */