44x.c 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  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. #include <linux/kvm_host.h>
  20. #include <linux/slab.h>
  21. #include <linux/err.h>
  22. #include <linux/export.h>
  23. #include <linux/module.h>
  24. #include <linux/miscdevice.h>
  25. #include <asm/reg.h>
  26. #include <asm/cputable.h>
  27. #include <asm/tlbflush.h>
  28. #include <asm/kvm_44x.h>
  29. #include <asm/kvm_ppc.h>
  30. #include "44x_tlb.h"
  31. #include "booke.h"
  32. static void kvmppc_core_vcpu_load_44x(struct kvm_vcpu *vcpu, int cpu)
  33. {
  34. kvmppc_booke_vcpu_load(vcpu, cpu);
  35. kvmppc_44x_tlb_load(vcpu);
  36. }
  37. static void kvmppc_core_vcpu_put_44x(struct kvm_vcpu *vcpu)
  38. {
  39. kvmppc_44x_tlb_put(vcpu);
  40. kvmppc_booke_vcpu_put(vcpu);
  41. }
  42. int kvmppc_core_check_processor_compat(void)
  43. {
  44. int r;
  45. if (strncmp(cur_cpu_spec->platform, "ppc440", 6) == 0)
  46. r = 0;
  47. else
  48. r = -ENOTSUPP;
  49. return r;
  50. }
  51. int kvmppc_core_vcpu_setup(struct kvm_vcpu *vcpu)
  52. {
  53. struct kvmppc_vcpu_44x *vcpu_44x = to_44x(vcpu);
  54. struct kvmppc_44x_tlbe *tlbe = &vcpu_44x->guest_tlb[0];
  55. int i;
  56. tlbe->tid = 0;
  57. tlbe->word0 = PPC44x_TLB_16M | PPC44x_TLB_VALID;
  58. tlbe->word1 = 0;
  59. tlbe->word2 = PPC44x_TLB_SX | PPC44x_TLB_SW | PPC44x_TLB_SR;
  60. tlbe++;
  61. tlbe->tid = 0;
  62. tlbe->word0 = 0xef600000 | PPC44x_TLB_4K | PPC44x_TLB_VALID;
  63. tlbe->word1 = 0xef600000;
  64. tlbe->word2 = PPC44x_TLB_SX | PPC44x_TLB_SW | PPC44x_TLB_SR
  65. | PPC44x_TLB_I | PPC44x_TLB_G;
  66. /* Since the guest can directly access the timebase, it must know the
  67. * real timebase frequency. Accordingly, it must see the state of
  68. * CCR1[TCS]. */
  69. /* XXX CCR1 doesn't exist on all 440 SoCs. */
  70. vcpu->arch.ccr1 = mfspr(SPRN_CCR1);
  71. for (i = 0; i < ARRAY_SIZE(vcpu_44x->shadow_refs); i++)
  72. vcpu_44x->shadow_refs[i].gtlb_index = -1;
  73. vcpu->arch.cpu_type = KVM_CPU_440;
  74. vcpu->arch.pvr = mfspr(SPRN_PVR);
  75. return 0;
  76. }
  77. /* 'linear_address' is actually an encoding of AS|PID|EADDR . */
  78. int kvmppc_core_vcpu_translate(struct kvm_vcpu *vcpu,
  79. struct kvm_translation *tr)
  80. {
  81. int index;
  82. gva_t eaddr;
  83. u8 pid;
  84. u8 as;
  85. eaddr = tr->linear_address;
  86. pid = (tr->linear_address >> 32) & 0xff;
  87. as = (tr->linear_address >> 40) & 0x1;
  88. index = kvmppc_44x_tlb_index(vcpu, eaddr, pid, as);
  89. if (index == -1) {
  90. tr->valid = 0;
  91. return 0;
  92. }
  93. tr->physical_address = kvmppc_mmu_xlate(vcpu, index, eaddr);
  94. /* XXX what does "writeable" and "usermode" even mean? */
  95. tr->valid = 1;
  96. return 0;
  97. }
  98. static int kvmppc_core_get_sregs_44x(struct kvm_vcpu *vcpu,
  99. struct kvm_sregs *sregs)
  100. {
  101. return kvmppc_get_sregs_ivor(vcpu, sregs);
  102. }
  103. static int kvmppc_core_set_sregs_44x(struct kvm_vcpu *vcpu,
  104. struct kvm_sregs *sregs)
  105. {
  106. return kvmppc_set_sregs_ivor(vcpu, sregs);
  107. }
  108. static int kvmppc_get_one_reg_44x(struct kvm_vcpu *vcpu, u64 id,
  109. union kvmppc_one_reg *val)
  110. {
  111. return -EINVAL;
  112. }
  113. static int kvmppc_set_one_reg_44x(struct kvm_vcpu *vcpu, u64 id,
  114. union kvmppc_one_reg *val)
  115. {
  116. return -EINVAL;
  117. }
  118. static struct kvm_vcpu *kvmppc_core_vcpu_create_44x(struct kvm *kvm,
  119. unsigned int id)
  120. {
  121. struct kvmppc_vcpu_44x *vcpu_44x;
  122. struct kvm_vcpu *vcpu;
  123. int err;
  124. vcpu_44x = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
  125. if (!vcpu_44x) {
  126. err = -ENOMEM;
  127. goto out;
  128. }
  129. vcpu = &vcpu_44x->vcpu;
  130. err = kvm_vcpu_init(vcpu, kvm, id);
  131. if (err)
  132. goto free_vcpu;
  133. vcpu->arch.shared = (void*)__get_free_page(GFP_KERNEL|__GFP_ZERO);
  134. if (!vcpu->arch.shared)
  135. goto uninit_vcpu;
  136. return vcpu;
  137. uninit_vcpu:
  138. kvm_vcpu_uninit(vcpu);
  139. free_vcpu:
  140. kmem_cache_free(kvm_vcpu_cache, vcpu_44x);
  141. out:
  142. return ERR_PTR(err);
  143. }
  144. static void kvmppc_core_vcpu_free_44x(struct kvm_vcpu *vcpu)
  145. {
  146. struct kvmppc_vcpu_44x *vcpu_44x = to_44x(vcpu);
  147. free_page((unsigned long)vcpu->arch.shared);
  148. kvm_vcpu_uninit(vcpu);
  149. kmem_cache_free(kvm_vcpu_cache, vcpu_44x);
  150. }
  151. static int kvmppc_core_init_vm_44x(struct kvm *kvm)
  152. {
  153. return 0;
  154. }
  155. static void kvmppc_core_destroy_vm_44x(struct kvm *kvm)
  156. {
  157. }
  158. static struct kvmppc_ops kvm_ops_44x = {
  159. .get_sregs = kvmppc_core_get_sregs_44x,
  160. .set_sregs = kvmppc_core_set_sregs_44x,
  161. .get_one_reg = kvmppc_get_one_reg_44x,
  162. .set_one_reg = kvmppc_set_one_reg_44x,
  163. .vcpu_load = kvmppc_core_vcpu_load_44x,
  164. .vcpu_put = kvmppc_core_vcpu_put_44x,
  165. .vcpu_create = kvmppc_core_vcpu_create_44x,
  166. .vcpu_free = kvmppc_core_vcpu_free_44x,
  167. .mmu_destroy = kvmppc_mmu_destroy_44x,
  168. .init_vm = kvmppc_core_init_vm_44x,
  169. .destroy_vm = kvmppc_core_destroy_vm_44x,
  170. .emulate_op = kvmppc_core_emulate_op_44x,
  171. .emulate_mtspr = kvmppc_core_emulate_mtspr_44x,
  172. .emulate_mfspr = kvmppc_core_emulate_mfspr_44x,
  173. };
  174. static int __init kvmppc_44x_init(void)
  175. {
  176. int r;
  177. r = kvmppc_booke_init();
  178. if (r)
  179. goto err_out;
  180. r = kvm_init(NULL, sizeof(struct kvmppc_vcpu_44x), 0, THIS_MODULE);
  181. if (r)
  182. goto err_out;
  183. kvm_ops_44x.owner = THIS_MODULE;
  184. kvmppc_pr_ops = &kvm_ops_44x;
  185. err_out:
  186. return r;
  187. }
  188. static void __exit kvmppc_44x_exit(void)
  189. {
  190. kvmppc_pr_ops = NULL;
  191. kvmppc_booke_exit();
  192. }
  193. module_init(kvmppc_44x_init);
  194. module_exit(kvmppc_44x_exit);
  195. MODULE_ALIAS_MISCDEV(KVM_MINOR);
  196. MODULE_ALIAS("devname:kvm");