interface.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355
  1. /******************************************************************************
  2. * arch-ia64/hypervisor-if.h
  3. *
  4. * Guest OS interface to IA64 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 by those who contributed. (in alphabetical order)
  25. *
  26. * Anthony Xu <anthony.xu@intel.com>
  27. * Eddie Dong <eddie.dong@intel.com>
  28. * Fred Yang <fred.yang@intel.com>
  29. * Kevin Tian <kevin.tian@intel.com>
  30. * Alex Williamson <alex.williamson@hp.com>
  31. * Chris Wright <chrisw@sous-sol.org>
  32. * Christian Limpach <Christian.Limpach@cl.cam.ac.uk>
  33. * Dietmar Hahn <dietmar.hahn@fujitsu-siemens.com>
  34. * Hollis Blanchard <hollisb@us.ibm.com>
  35. * Isaku Yamahata <yamahata@valinux.co.jp>
  36. * Jan Beulich <jbeulich@novell.com>
  37. * John Levon <john.levon@sun.com>
  38. * Kazuhiro Suzuki <kaz@jp.fujitsu.com>
  39. * Keir Fraser <keir.fraser@citrix.com>
  40. * Kouya Shimura <kouya@jp.fujitsu.com>
  41. * Masaki Kanno <kanno.masaki@jp.fujitsu.com>
  42. * Matt Chapman <matthewc@hp.com>
  43. * Matthew Chapman <matthewc@hp.com>
  44. * Samuel Thibault <samuel.thibault@eu.citrix.com>
  45. * Tomonari Horikoshi <t.horikoshi@jp.fujitsu.com>
  46. * Tristan Gingold <tgingold@free.fr>
  47. * Tsunehisa Doi <Doi.Tsunehisa@jp.fujitsu.com>
  48. * Yutaka Ezaki <yutaka.ezaki@jp.fujitsu.com>
  49. * Zhang Xin <xing.z.zhang@intel.com>
  50. * Zhang xiantao <xiantao.zhang@intel.com>
  51. * dan.magenheimer@hp.com
  52. * ian.pratt@cl.cam.ac.uk
  53. * michael.fetterman@cl.cam.ac.uk
  54. */
  55. #ifndef _ASM_IA64_XEN_INTERFACE_H
  56. #define _ASM_IA64_XEN_INTERFACE_H
  57. #define __DEFINE_GUEST_HANDLE(name, type) \
  58. typedef struct { type *p; } __guest_handle_ ## name
  59. #define DEFINE_GUEST_HANDLE_STRUCT(name) \
  60. __DEFINE_GUEST_HANDLE(name, struct name)
  61. #define DEFINE_GUEST_HANDLE(name) __DEFINE_GUEST_HANDLE(name, name)
  62. #define GUEST_HANDLE(name) __guest_handle_ ## name
  63. #define GUEST_HANDLE_64(name) GUEST_HANDLE(name)
  64. #define set_xen_guest_handle(hnd, val) do { (hnd).p = val; } while (0)
  65. #ifndef __ASSEMBLY__
  66. /* Guest handles for primitive C types. */
  67. __DEFINE_GUEST_HANDLE(uchar, unsigned char);
  68. __DEFINE_GUEST_HANDLE(uint, unsigned int);
  69. __DEFINE_GUEST_HANDLE(ulong, unsigned long);
  70. __DEFINE_GUEST_HANDLE(u64, unsigned long);
  71. DEFINE_GUEST_HANDLE(char);
  72. DEFINE_GUEST_HANDLE(int);
  73. DEFINE_GUEST_HANDLE(long);
  74. DEFINE_GUEST_HANDLE(void);
  75. typedef unsigned long xen_pfn_t;
  76. DEFINE_GUEST_HANDLE(xen_pfn_t);
  77. #define PRI_xen_pfn "lx"
  78. #endif
  79. /* Arch specific VIRQs definition */
  80. #define VIRQ_ITC VIRQ_ARCH_0 /* V. Virtual itc timer */
  81. #define VIRQ_MCA_CMC VIRQ_ARCH_1 /* MCA cmc interrupt */
  82. #define VIRQ_MCA_CPE VIRQ_ARCH_2 /* MCA cpe interrupt */
  83. /* Maximum number of virtual CPUs in multi-processor guests. */
  84. /* keep sizeof(struct shared_page) <= PAGE_SIZE.
  85. * this is checked in arch/ia64/xen/hypervisor.c. */
  86. #define MAX_VIRT_CPUS 64
  87. #ifndef __ASSEMBLY__
  88. #define INVALID_MFN (~0UL)
  89. union vac {
  90. unsigned long value;
  91. struct {
  92. int a_int:1;
  93. int a_from_int_cr:1;
  94. int a_to_int_cr:1;
  95. int a_from_psr:1;
  96. int a_from_cpuid:1;
  97. int a_cover:1;
  98. int a_bsw:1;
  99. long reserved:57;
  100. };
  101. };
  102. union vdc {
  103. unsigned long value;
  104. struct {
  105. int d_vmsw:1;
  106. int d_extint:1;
  107. int d_ibr_dbr:1;
  108. int d_pmc:1;
  109. int d_to_pmd:1;
  110. int d_itm:1;
  111. long reserved:58;
  112. };
  113. };
  114. struct mapped_regs {
  115. union vac vac;
  116. union vdc vdc;
  117. unsigned long virt_env_vaddr;
  118. unsigned long reserved1[29];
  119. unsigned long vhpi;
  120. unsigned long reserved2[95];
  121. union {
  122. unsigned long vgr[16];
  123. unsigned long bank1_regs[16]; /* bank1 regs (r16-r31)
  124. when bank0 active */
  125. };
  126. union {
  127. unsigned long vbgr[16];
  128. unsigned long bank0_regs[16]; /* bank0 regs (r16-r31)
  129. when bank1 active */
  130. };
  131. unsigned long vnat;
  132. unsigned long vbnat;
  133. unsigned long vcpuid[5];
  134. unsigned long reserved3[11];
  135. unsigned long vpsr;
  136. unsigned long vpr;
  137. unsigned long reserved4[76];
  138. union {
  139. unsigned long vcr[128];
  140. struct {
  141. unsigned long dcr; /* CR0 */
  142. unsigned long itm;
  143. unsigned long iva;
  144. unsigned long rsv1[5];
  145. unsigned long pta; /* CR8 */
  146. unsigned long rsv2[7];
  147. unsigned long ipsr; /* CR16 */
  148. unsigned long isr;
  149. unsigned long rsv3;
  150. unsigned long iip;
  151. unsigned long ifa;
  152. unsigned long itir;
  153. unsigned long iipa;
  154. unsigned long ifs;
  155. unsigned long iim; /* CR24 */
  156. unsigned long iha;
  157. unsigned long rsv4[38];
  158. unsigned long lid; /* CR64 */
  159. unsigned long ivr;
  160. unsigned long tpr;
  161. unsigned long eoi;
  162. unsigned long irr[4];
  163. unsigned long itv; /* CR72 */
  164. unsigned long pmv;
  165. unsigned long cmcv;
  166. unsigned long rsv5[5];
  167. unsigned long lrr0; /* CR80 */
  168. unsigned long lrr1;
  169. unsigned long rsv6[46];
  170. };
  171. };
  172. union {
  173. unsigned long reserved5[128];
  174. struct {
  175. unsigned long precover_ifs;
  176. unsigned long unat; /* not sure if this is needed
  177. until NaT arch is done */
  178. int interrupt_collection_enabled; /* virtual psr.ic */
  179. /* virtual interrupt deliverable flag is
  180. * evtchn_upcall_mask in shared info area now.
  181. * interrupt_mask_addr is the address
  182. * of evtchn_upcall_mask for current vcpu
  183. */
  184. unsigned char *interrupt_mask_addr;
  185. int pending_interruption;
  186. unsigned char vpsr_pp;
  187. unsigned char vpsr_dfh;
  188. unsigned char hpsr_dfh;
  189. unsigned char hpsr_mfh;
  190. unsigned long reserved5_1[4];
  191. int metaphysical_mode; /* 1 = use metaphys mapping
  192. 0 = use virtual */
  193. int banknum; /* 0 or 1, which virtual
  194. register bank is active */
  195. unsigned long rrs[8]; /* region registers */
  196. unsigned long krs[8]; /* kernel registers */
  197. unsigned long tmp[16]; /* temp registers
  198. (e.g. for hyperprivops) */
  199. /* itc paravirtualization
  200. * vAR.ITC = mAR.ITC + itc_offset
  201. * itc_last is one which was lastly passed to
  202. * the guest OS in order to prevent it from
  203. * going backwords.
  204. */
  205. unsigned long itc_offset;
  206. unsigned long itc_last;
  207. };
  208. };
  209. };
  210. struct arch_vcpu_info {
  211. /* nothing */
  212. };
  213. /*
  214. * This structure is used for magic page in domain pseudo physical address
  215. * space and the result of XENMEM_machine_memory_map.
  216. * As the XENMEM_machine_memory_map result,
  217. * xen_memory_map::nr_entries indicates the size in bytes
  218. * including struct xen_ia64_memmap_info. Not the number of entries.
  219. */
  220. struct xen_ia64_memmap_info {
  221. uint64_t efi_memmap_size; /* size of EFI memory map */
  222. uint64_t efi_memdesc_size; /* size of an EFI memory map
  223. * descriptor */
  224. uint32_t efi_memdesc_version; /* memory descriptor version */
  225. void *memdesc[0]; /* array of efi_memory_desc_t */
  226. };
  227. struct arch_shared_info {
  228. /* PFN of the start_info page. */
  229. unsigned long start_info_pfn;
  230. /* Interrupt vector for event channel. */
  231. int evtchn_vector;
  232. /* PFN of memmap_info page */
  233. unsigned int memmap_info_num_pages; /* currently only = 1 case is
  234. supported. */
  235. unsigned long memmap_info_pfn;
  236. uint64_t pad[31];
  237. };
  238. struct xen_callback {
  239. unsigned long ip;
  240. };
  241. typedef struct xen_callback xen_callback_t;
  242. #endif /* !__ASSEMBLY__ */
  243. /* Size of the shared_info area (this is not related to page size). */
  244. #define XSI_SHIFT 14
  245. #define XSI_SIZE (1 << XSI_SHIFT)
  246. /* Log size of mapped_regs area (64 KB - only 4KB is used). */
  247. #define XMAPPEDREGS_SHIFT 12
  248. #define XMAPPEDREGS_SIZE (1 << XMAPPEDREGS_SHIFT)
  249. /* Offset of XASI (Xen arch shared info) wrt XSI_BASE. */
  250. #define XMAPPEDREGS_OFS XSI_SIZE
  251. /* Hyperprivops. */
  252. #define HYPERPRIVOP_START 0x1
  253. #define HYPERPRIVOP_RFI (HYPERPRIVOP_START + 0x0)
  254. #define HYPERPRIVOP_RSM_DT (HYPERPRIVOP_START + 0x1)
  255. #define HYPERPRIVOP_SSM_DT (HYPERPRIVOP_START + 0x2)
  256. #define HYPERPRIVOP_COVER (HYPERPRIVOP_START + 0x3)
  257. #define HYPERPRIVOP_ITC_D (HYPERPRIVOP_START + 0x4)
  258. #define HYPERPRIVOP_ITC_I (HYPERPRIVOP_START + 0x5)
  259. #define HYPERPRIVOP_SSM_I (HYPERPRIVOP_START + 0x6)
  260. #define HYPERPRIVOP_GET_IVR (HYPERPRIVOP_START + 0x7)
  261. #define HYPERPRIVOP_GET_TPR (HYPERPRIVOP_START + 0x8)
  262. #define HYPERPRIVOP_SET_TPR (HYPERPRIVOP_START + 0x9)
  263. #define HYPERPRIVOP_EOI (HYPERPRIVOP_START + 0xa)
  264. #define HYPERPRIVOP_SET_ITM (HYPERPRIVOP_START + 0xb)
  265. #define HYPERPRIVOP_THASH (HYPERPRIVOP_START + 0xc)
  266. #define HYPERPRIVOP_PTC_GA (HYPERPRIVOP_START + 0xd)
  267. #define HYPERPRIVOP_ITR_D (HYPERPRIVOP_START + 0xe)
  268. #define HYPERPRIVOP_GET_RR (HYPERPRIVOP_START + 0xf)
  269. #define HYPERPRIVOP_SET_RR (HYPERPRIVOP_START + 0x10)
  270. #define HYPERPRIVOP_SET_KR (HYPERPRIVOP_START + 0x11)
  271. #define HYPERPRIVOP_FC (HYPERPRIVOP_START + 0x12)
  272. #define HYPERPRIVOP_GET_CPUID (HYPERPRIVOP_START + 0x13)
  273. #define HYPERPRIVOP_GET_PMD (HYPERPRIVOP_START + 0x14)
  274. #define HYPERPRIVOP_GET_EFLAG (HYPERPRIVOP_START + 0x15)
  275. #define HYPERPRIVOP_SET_EFLAG (HYPERPRIVOP_START + 0x16)
  276. #define HYPERPRIVOP_RSM_BE (HYPERPRIVOP_START + 0x17)
  277. #define HYPERPRIVOP_GET_PSR (HYPERPRIVOP_START + 0x18)
  278. #define HYPERPRIVOP_SET_RR0_TO_RR4 (HYPERPRIVOP_START + 0x19)
  279. #define HYPERPRIVOP_MAX (0x1a)
  280. /* Fast and light hypercalls. */
  281. #define __HYPERVISOR_ia64_fast_eoi __HYPERVISOR_arch_1
  282. /* Xencomm macros. */
  283. #define XENCOMM_INLINE_MASK 0xf800000000000000UL
  284. #define XENCOMM_INLINE_FLAG 0x8000000000000000UL
  285. #ifndef __ASSEMBLY__
  286. /*
  287. * Optimization features.
  288. * The hypervisor may do some special optimizations for guests. This hypercall
  289. * can be used to switch on/of these special optimizations.
  290. */
  291. #define __HYPERVISOR_opt_feature 0x700UL
  292. #define XEN_IA64_OPTF_OFF 0x0
  293. #define XEN_IA64_OPTF_ON 0x1
  294. /*
  295. * If this feature is switched on, the hypervisor inserts the
  296. * tlb entries without calling the guests traphandler.
  297. * This is useful in guests using region 7 for identity mapping
  298. * like the linux kernel does.
  299. */
  300. #define XEN_IA64_OPTF_IDENT_MAP_REG7 1
  301. /* Identity mapping of region 4 addresses in HVM. */
  302. #define XEN_IA64_OPTF_IDENT_MAP_REG4 2
  303. /* Identity mapping of region 5 addresses in HVM. */
  304. #define XEN_IA64_OPTF_IDENT_MAP_REG5 3
  305. #define XEN_IA64_OPTF_IDENT_MAP_NOT_SET (0)
  306. struct xen_ia64_opt_feature {
  307. unsigned long cmd; /* Which feature */
  308. unsigned char on; /* Switch feature on/off */
  309. union {
  310. struct {
  311. /* The page protection bit mask of the pte.
  312. * This will be or'ed with the pte. */
  313. unsigned long pgprot;
  314. unsigned long key; /* A protection key for itir.*/
  315. };
  316. };
  317. };
  318. #endif /* __ASSEMBLY__ */
  319. #endif /* _ASM_IA64_XEN_INTERFACE_H */