kvm_para.h 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. /*
  2. * This program is free software; you can redistribute it and/or modify
  3. * it under the terms of the GNU General Public License, version 2, as
  4. * published by the Free Software Foundation.
  5. *
  6. * This program is distributed in the hope that it will be useful,
  7. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  9. * GNU General Public License for more details.
  10. *
  11. * You should have received a copy of the GNU General Public License
  12. * along with this program; if not, write to the Free Software
  13. * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  14. *
  15. * Copyright IBM Corp. 2008
  16. *
  17. * Authors: Hollis Blanchard <hollisb@us.ibm.com>
  18. */
  19. #ifndef __POWERPC_KVM_PARA_H__
  20. #define __POWERPC_KVM_PARA_H__
  21. #include <linux/types.h>
  22. /*
  23. * Additions to this struct must only occur at the end, and should be
  24. * accompanied by a KVM_MAGIC_FEAT flag to advertise that they are present
  25. * (albeit not necessarily relevant to the current target hardware platform).
  26. *
  27. * Struct fields are always 32 or 64 bit aligned, depending on them being 32
  28. * or 64 bit wide respectively.
  29. *
  30. * See Documentation/virtual/kvm/ppc-pv.txt
  31. */
  32. struct kvm_vcpu_arch_shared {
  33. __u64 scratch1;
  34. __u64 scratch2;
  35. __u64 scratch3;
  36. __u64 critical; /* Guest may not get interrupts if == r1 */
  37. __u64 sprg0;
  38. __u64 sprg1;
  39. __u64 sprg2;
  40. __u64 sprg3;
  41. __u64 srr0;
  42. __u64 srr1;
  43. __u64 dar; /* dear on BookE */
  44. __u64 msr;
  45. __u32 dsisr;
  46. __u32 int_pending; /* Tells the guest if we have an interrupt */
  47. __u32 sr[16];
  48. __u32 mas0;
  49. __u32 mas1;
  50. __u64 mas7_3;
  51. __u64 mas2;
  52. __u32 mas4;
  53. __u32 mas6;
  54. __u32 esr;
  55. __u32 pir;
  56. /*
  57. * SPRG4-7 are user-readable, so we can only keep these consistent
  58. * between the shared area and the real registers when there's an
  59. * intervening exit to KVM. This also applies to SPRG3 on some
  60. * chips.
  61. *
  62. * This suffices for access by guest userspace, since in PR-mode
  63. * KVM, an exit must occur when changing the guest's MSR[PR].
  64. * If the guest kernel writes to SPRG3-7 via the shared area, it
  65. * must also use the shared area for reading while in kernel space.
  66. */
  67. __u64 sprg4;
  68. __u64 sprg5;
  69. __u64 sprg6;
  70. __u64 sprg7;
  71. };
  72. #define KVM_SC_MAGIC_R0 0x4b564d21 /* "KVM!" */
  73. #define HC_VENDOR_KVM (42 << 16)
  74. #define HC_EV_SUCCESS 0
  75. #define HC_EV_UNIMPLEMENTED 12
  76. #define KVM_FEATURE_MAGIC_PAGE 1
  77. #define KVM_MAGIC_FEAT_SR (1 << 0)
  78. /* MASn, ESR, PIR, and high SPRGs */
  79. #define KVM_MAGIC_FEAT_MAS0_TO_SPRG7 (1 << 1)
  80. #ifdef __KERNEL__
  81. #ifdef CONFIG_KVM_GUEST
  82. #include <linux/of.h>
  83. static inline int kvm_para_available(void)
  84. {
  85. struct device_node *hyper_node;
  86. hyper_node = of_find_node_by_path("/hypervisor");
  87. if (!hyper_node)
  88. return 0;
  89. if (!of_device_is_compatible(hyper_node, "linux,kvm"))
  90. return 0;
  91. return 1;
  92. }
  93. extern unsigned long kvm_hypercall(unsigned long *in,
  94. unsigned long *out,
  95. unsigned long nr);
  96. #else
  97. static inline int kvm_para_available(void)
  98. {
  99. return 0;
  100. }
  101. static unsigned long kvm_hypercall(unsigned long *in,
  102. unsigned long *out,
  103. unsigned long nr)
  104. {
  105. return HC_EV_UNIMPLEMENTED;
  106. }
  107. #endif
  108. static inline long kvm_hypercall0_1(unsigned int nr, unsigned long *r2)
  109. {
  110. unsigned long in[8];
  111. unsigned long out[8];
  112. unsigned long r;
  113. r = kvm_hypercall(in, out, nr | HC_VENDOR_KVM);
  114. *r2 = out[0];
  115. return r;
  116. }
  117. static inline long kvm_hypercall0(unsigned int nr)
  118. {
  119. unsigned long in[8];
  120. unsigned long out[8];
  121. return kvm_hypercall(in, out, nr | HC_VENDOR_KVM);
  122. }
  123. static inline long kvm_hypercall1(unsigned int nr, unsigned long p1)
  124. {
  125. unsigned long in[8];
  126. unsigned long out[8];
  127. in[0] = p1;
  128. return kvm_hypercall(in, out, nr | HC_VENDOR_KVM);
  129. }
  130. static inline long kvm_hypercall2(unsigned int nr, unsigned long p1,
  131. unsigned long p2)
  132. {
  133. unsigned long in[8];
  134. unsigned long out[8];
  135. in[0] = p1;
  136. in[1] = p2;
  137. return kvm_hypercall(in, out, nr | HC_VENDOR_KVM);
  138. }
  139. static inline long kvm_hypercall3(unsigned int nr, unsigned long p1,
  140. unsigned long p2, unsigned long p3)
  141. {
  142. unsigned long in[8];
  143. unsigned long out[8];
  144. in[0] = p1;
  145. in[1] = p2;
  146. in[2] = p3;
  147. return kvm_hypercall(in, out, nr | HC_VENDOR_KVM);
  148. }
  149. static inline long kvm_hypercall4(unsigned int nr, unsigned long p1,
  150. unsigned long p2, unsigned long p3,
  151. unsigned long p4)
  152. {
  153. unsigned long in[8];
  154. unsigned long out[8];
  155. in[0] = p1;
  156. in[1] = p2;
  157. in[2] = p3;
  158. in[3] = p4;
  159. return kvm_hypercall(in, out, nr | HC_VENDOR_KVM);
  160. }
  161. static inline unsigned int kvm_arch_para_features(void)
  162. {
  163. unsigned long r;
  164. if (!kvm_para_available())
  165. return 0;
  166. if(kvm_hypercall0_1(KVM_HC_FEATURES, &r))
  167. return 0;
  168. return r;
  169. }
  170. #endif /* __KERNEL__ */
  171. #endif /* __POWERPC_KVM_PARA_H__ */