44x.c 3.5 KB

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