You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

xen-x86_64.h 6.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. /******************************************************************************
  2. * xen-x86_64.h
  3. *
  4. * Guest OS interface to x86 64-bit Xen.
  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) 2004-2006, K A Fraser
  25. */
  26. #ifndef __XEN_PUBLIC_ARCH_X86_XEN_X86_64_H__
  27. #define __XEN_PUBLIC_ARCH_X86_XEN_X86_64_H__
  28. FILE_LICENCE ( MIT );
  29. /*
  30. * Hypercall interface:
  31. * Input: %rdi, %rsi, %rdx, %r10, %r8, %r9 (arguments 1-6)
  32. * Output: %rax
  33. * Access is via hypercall page (set up by guest loader or via a Xen MSR):
  34. * call hypercall_page + hypercall-number * 32
  35. * Clobbered: argument registers (e.g., 2-arg hypercall clobbers %rdi,%rsi)
  36. */
  37. /*
  38. * 64-bit segment selectors
  39. * These flat segments are in the Xen-private section of every GDT. Since these
  40. * are also present in the initial GDT, many OSes will be able to avoid
  41. * installing their own GDT.
  42. */
  43. #define FLAT_RING3_CS32 0xe023 /* GDT index 260 */
  44. #define FLAT_RING3_CS64 0xe033 /* GDT index 261 */
  45. #define FLAT_RING3_DS32 0xe02b /* GDT index 262 */
  46. #define FLAT_RING3_DS64 0x0000 /* NULL selector */
  47. #define FLAT_RING3_SS32 0xe02b /* GDT index 262 */
  48. #define FLAT_RING3_SS64 0xe02b /* GDT index 262 */
  49. #define FLAT_KERNEL_DS64 FLAT_RING3_DS64
  50. #define FLAT_KERNEL_DS32 FLAT_RING3_DS32
  51. #define FLAT_KERNEL_DS FLAT_KERNEL_DS64
  52. #define FLAT_KERNEL_CS64 FLAT_RING3_CS64
  53. #define FLAT_KERNEL_CS32 FLAT_RING3_CS32
  54. #define FLAT_KERNEL_CS FLAT_KERNEL_CS64
  55. #define FLAT_KERNEL_SS64 FLAT_RING3_SS64
  56. #define FLAT_KERNEL_SS32 FLAT_RING3_SS32
  57. #define FLAT_KERNEL_SS FLAT_KERNEL_SS64
  58. #define FLAT_USER_DS64 FLAT_RING3_DS64
  59. #define FLAT_USER_DS32 FLAT_RING3_DS32
  60. #define FLAT_USER_DS FLAT_USER_DS64
  61. #define FLAT_USER_CS64 FLAT_RING3_CS64
  62. #define FLAT_USER_CS32 FLAT_RING3_CS32
  63. #define FLAT_USER_CS FLAT_USER_CS64
  64. #define FLAT_USER_SS64 FLAT_RING3_SS64
  65. #define FLAT_USER_SS32 FLAT_RING3_SS32
  66. #define FLAT_USER_SS FLAT_USER_SS64
  67. #define __HYPERVISOR_VIRT_START 0xFFFF800000000000
  68. #define __HYPERVISOR_VIRT_END 0xFFFF880000000000
  69. #define __MACH2PHYS_VIRT_START 0xFFFF800000000000
  70. #define __MACH2PHYS_VIRT_END 0xFFFF804000000000
  71. #ifndef HYPERVISOR_VIRT_START
  72. #define HYPERVISOR_VIRT_START mk_unsigned_long(__HYPERVISOR_VIRT_START)
  73. #define HYPERVISOR_VIRT_END mk_unsigned_long(__HYPERVISOR_VIRT_END)
  74. #endif
  75. #define MACH2PHYS_VIRT_START mk_unsigned_long(__MACH2PHYS_VIRT_START)
  76. #define MACH2PHYS_VIRT_END mk_unsigned_long(__MACH2PHYS_VIRT_END)
  77. #define MACH2PHYS_NR_ENTRIES ((MACH2PHYS_VIRT_END-MACH2PHYS_VIRT_START)>>3)
  78. #ifndef machine_to_phys_mapping
  79. #define machine_to_phys_mapping ((unsigned long *)HYPERVISOR_VIRT_START)
  80. #endif
  81. /*
  82. * int HYPERVISOR_set_segment_base(unsigned int which, unsigned long base)
  83. * @which == SEGBASE_* ; @base == 64-bit base address
  84. * Returns 0 on success.
  85. */
  86. #define SEGBASE_FS 0
  87. #define SEGBASE_GS_USER 1
  88. #define SEGBASE_GS_KERNEL 2
  89. #define SEGBASE_GS_USER_SEL 3 /* Set user %gs specified in base[15:0] */
  90. /*
  91. * int HYPERVISOR_iret(void)
  92. * All arguments are on the kernel stack, in the following format.
  93. * Never returns if successful. Current kernel context is lost.
  94. * The saved CS is mapped as follows:
  95. * RING0 -> RING3 kernel mode.
  96. * RING1 -> RING3 kernel mode.
  97. * RING2 -> RING3 kernel mode.
  98. * RING3 -> RING3 user mode.
  99. * However RING0 indicates that the guest kernel should return to iteself
  100. * directly with
  101. * orb $3,1*8(%rsp)
  102. * iretq
  103. * If flags contains VGCF_in_syscall:
  104. * Restore RAX, RIP, RFLAGS, RSP.
  105. * Discard R11, RCX, CS, SS.
  106. * Otherwise:
  107. * Restore RAX, R11, RCX, CS:RIP, RFLAGS, SS:RSP.
  108. * All other registers are saved on hypercall entry and restored to user.
  109. */
  110. /* Guest exited in SYSCALL context? Return to guest with SYSRET? */
  111. #define _VGCF_in_syscall 8
  112. #define VGCF_in_syscall (1<<_VGCF_in_syscall)
  113. #define VGCF_IN_SYSCALL VGCF_in_syscall
  114. #ifndef __ASSEMBLY__
  115. struct iret_context {
  116. /* Top of stack (%rsp at point of hypercall). */
  117. uint64_t rax, r11, rcx, flags, rip, cs, rflags, rsp, ss;
  118. /* Bottom of iret stack frame. */
  119. };
  120. #if defined(__GNUC__) && !defined(__STRICT_ANSI__)
  121. /* Anonymous union includes both 32- and 64-bit names (e.g., eax/rax). */
  122. #define __DECL_REG(name) union { \
  123. uint64_t r ## name, e ## name; \
  124. uint32_t _e ## name; \
  125. }
  126. #else
  127. /* Non-gcc sources must always use the proper 64-bit name (e.g., rax). */
  128. #define __DECL_REG(name) uint64_t r ## name
  129. #endif
  130. struct cpu_user_regs {
  131. uint64_t r15;
  132. uint64_t r14;
  133. uint64_t r13;
  134. uint64_t r12;
  135. __DECL_REG(bp);
  136. __DECL_REG(bx);
  137. uint64_t r11;
  138. uint64_t r10;
  139. uint64_t r9;
  140. uint64_t r8;
  141. __DECL_REG(ax);
  142. __DECL_REG(cx);
  143. __DECL_REG(dx);
  144. __DECL_REG(si);
  145. __DECL_REG(di);
  146. uint32_t error_code; /* private */
  147. uint32_t entry_vector; /* private */
  148. __DECL_REG(ip);
  149. uint16_t cs, _pad0[1];
  150. uint8_t saved_upcall_mask;
  151. uint8_t _pad1[3];
  152. __DECL_REG(flags); /* rflags.IF == !saved_upcall_mask */
  153. __DECL_REG(sp);
  154. uint16_t ss, _pad2[3];
  155. uint16_t es, _pad3[3];
  156. uint16_t ds, _pad4[3];
  157. uint16_t fs, _pad5[3]; /* Non-zero => takes precedence over fs_base. */
  158. uint16_t gs, _pad6[3]; /* Non-zero => takes precedence over gs_base_usr. */
  159. };
  160. typedef struct cpu_user_regs cpu_user_regs_t;
  161. DEFINE_XEN_GUEST_HANDLE(cpu_user_regs_t);
  162. #undef __DECL_REG
  163. #define xen_pfn_to_cr3(pfn) ((unsigned long)(pfn) << 12)
  164. #define xen_cr3_to_pfn(cr3) ((unsigned long)(cr3) >> 12)
  165. struct arch_vcpu_info {
  166. unsigned long cr2;
  167. unsigned long pad; /* sizeof(vcpu_info_t) == 64 */
  168. };
  169. typedef struct arch_vcpu_info arch_vcpu_info_t;
  170. typedef unsigned long xen_callback_t;
  171. #endif /* !__ASSEMBLY__ */
  172. #endif /* __XEN_PUBLIC_ARCH_X86_XEN_X86_64_H__ */
  173. /*
  174. * Local variables:
  175. * mode: C
  176. * c-file-style: "BSD"
  177. * c-basic-offset: 4
  178. * tab-width: 4
  179. * indent-tabs-mode: nil
  180. * End:
  181. */