44x.c 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  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 <asm/reg.h>
  23. #include <asm/cputable.h>
  24. #include <asm/tlbflush.h>
  25. #include <asm/kvm_44x.h>
  26. #include <asm/kvm_ppc.h>
  27. #include "44x_tlb.h"
  28. void kvmppc_core_vcpu_load(struct kvm_vcpu *vcpu, int cpu)
  29. {
  30. kvmppc_44x_tlb_load(vcpu);
  31. }
  32. void kvmppc_core_vcpu_put(struct kvm_vcpu *vcpu)
  33. {
  34. kvmppc_44x_tlb_put(vcpu);
  35. }
  36. int kvmppc_core_check_processor_compat(void)
  37. {
  38. int r;
  39. if (strncmp(cur_cpu_spec->platform, "ppc440", 6) == 0)
  40. r = 0;
  41. else
  42. r = -ENOTSUPP;
  43. return r;
  44. }
  45. int kvmppc_core_vcpu_setup(struct kvm_vcpu *vcpu)
  46. {
  47. struct kvmppc_vcpu_44x *vcpu_44x = to_44x(vcpu);
  48. struct kvmppc_44x_tlbe *tlbe = &vcpu_44x->guest_tlb[0];
  49. int i;
  50. tlbe->tid = 0;
  51. tlbe->word0 = PPC44x_TLB_16M | PPC44x_TLB_VALID;
  52. tlbe->word1 = 0;
  53. tlbe->word2 = PPC44x_TLB_SX | PPC44x_TLB_SW | PPC44x_TLB_SR;
  54. tlbe++;
  55. tlbe->tid = 0;
  56. tlbe->word0 = 0xef600000 | PPC44x_TLB_4K | PPC44x_TLB_VALID;
  57. tlbe->word1 = 0xef600000;
  58. tlbe->word2 = PPC44x_TLB_SX | PPC44x_TLB_SW | PPC44x_TLB_SR
  59. | PPC44x_TLB_I | PPC44x_TLB_G;
  60. /* Since the guest can directly access the timebase, it must know the
  61. * real timebase frequency. Accordingly, it must see the state of
  62. * CCR1[TCS]. */
  63. /* XXX CCR1 doesn't exist on all 440 SoCs. */
  64. vcpu->arch.ccr1 = mfspr(SPRN_CCR1);
  65. for (i = 0; i < ARRAY_SIZE(vcpu_44x->shadow_refs); i++)
  66. vcpu_44x->shadow_refs[i].gtlb_index = -1;
  67. return 0;
  68. }
  69. /* 'linear_address' is actually an encoding of AS|PID|EADDR . */
  70. int kvmppc_core_vcpu_translate(struct kvm_vcpu *vcpu,
  71. struct kvm_translation *tr)
  72. {
  73. int index;
  74. gva_t eaddr;
  75. u8 pid;
  76. u8 as;
  77. eaddr = tr->linear_address;
  78. pid = (tr->linear_address >> 32) & 0xff;
  79. as = (tr->linear_address >> 40) & 0x1;
  80. index = kvmppc_44x_tlb_index(vcpu, eaddr, pid, as);
  81. if (index == -1) {
  82. tr->valid = 0;
  83. return 0;
  84. }
  85. tr->physical_address = kvmppc_mmu_xlate(vcpu, index, eaddr);
  86. /* XXX what does "writeable" and "usermode" even mean? */
  87. tr->valid = 1;
  88. return 0;
  89. }
  90. void kvmppc_core_get_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
  91. {
  92. kvmppc_get_sregs_ivor(vcpu, sregs);
  93. }
  94. int kvmppc_core_set_sregs(struct kvm_vcpu *vcpu, struct kvm_sregs *sregs)
  95. {
  96. return kvmppc_set_sregs_ivor(vcpu, sregs);
  97. }
  98. struct kvm_vcpu *kvmppc_core_vcpu_create(struct kvm *kvm, unsigned int id)
  99. {
  100. struct kvmppc_vcpu_44x *vcpu_44x;
  101. struct kvm_vcpu *vcpu;
  102. int err;
  103. vcpu_44x = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
  104. if (!vcpu_44x) {
  105. err = -ENOMEM;
  106. goto out;
  107. }
  108. vcpu = &vcpu_44x->vcpu;
  109. err = kvm_vcpu_init(vcpu, kvm, id);
  110. if (err)
  111. goto free_vcpu;
  112. vcpu->arch.shared = (void*)__get_free_page(GFP_KERNEL|__GFP_ZERO);
  113. if (!vcpu->arch.shared)
  114. goto uninit_vcpu;
  115. return vcpu;
  116. uninit_vcpu:
  117. kvm_vcpu_uninit(vcpu);
  118. free_vcpu:
  119. kmem_cache_free(kvm_vcpu_cache, vcpu_44x);
  120. out:
  121. return ERR_PTR(err);
  122. }
  123. void kvmppc_core_vcpu_free(struct kvm_vcpu *vcpu)
  124. {
  125. struct kvmppc_vcpu_44x *vcpu_44x = to_44x(vcpu);
  126. free_page((unsigned long)vcpu->arch.shared);
  127. kvm_vcpu_uninit(vcpu);
  128. kmem_cache_free(kvm_vcpu_cache, vcpu_44x);
  129. }
  130. static int __init kvmppc_44x_init(void)
  131. {
  132. int r;
  133. r = kvmppc_booke_init();
  134. if (r)
  135. return r;
  136. return kvm_init(NULL, sizeof(struct kvmppc_vcpu_44x), 0, THIS_MODULE);
  137. }
  138. static void __exit kvmppc_44x_exit(void)
  139. {
  140. kvmppc_booke_exit();
  141. }
  142. module_init(kvmppc_44x_init);
  143. module_exit(kvmppc_44x_exit);