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.
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.
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.
15 * Copyright IBM Corp. 2008
17 * Authors: Hollis Blanchard <hollisb@us.ibm.com>
20 #include <linux/kvm_host.h>
21 #include <linux/slab.h>
22 #include <linux/err.h>
23 #include <linux/export.h>
24 #include <linux/module.h>
25 #include <linux/miscdevice.h>
28 #include <asm/cputable.h>
29 #include <asm/tlbflush.h>
30 #include <asm/kvm_44x.h>
31 #include <asm/kvm_ppc.h>
36 static void kvmppc_core_vcpu_load_44x(struct kvm_vcpu
*vcpu
, int cpu
)
38 kvmppc_booke_vcpu_load(vcpu
, cpu
);
39 kvmppc_44x_tlb_load(vcpu
);
42 static void kvmppc_core_vcpu_put_44x(struct kvm_vcpu
*vcpu
)
44 kvmppc_44x_tlb_put(vcpu
);
45 kvmppc_booke_vcpu_put(vcpu
);
48 int kvmppc_core_check_processor_compat(void)
52 if (strncmp(cur_cpu_spec
->platform
, "ppc440", 6) == 0)
60 int kvmppc_core_vcpu_setup(struct kvm_vcpu
*vcpu
)
62 struct kvmppc_vcpu_44x
*vcpu_44x
= to_44x(vcpu
);
63 struct kvmppc_44x_tlbe
*tlbe
= &vcpu_44x
->guest_tlb
[0];
67 tlbe
->word0
= PPC44x_TLB_16M
| PPC44x_TLB_VALID
;
69 tlbe
->word2
= PPC44x_TLB_SX
| PPC44x_TLB_SW
| PPC44x_TLB_SR
;
73 tlbe
->word0
= 0xef600000 | PPC44x_TLB_4K
| PPC44x_TLB_VALID
;
74 tlbe
->word1
= 0xef600000;
75 tlbe
->word2
= PPC44x_TLB_SX
| PPC44x_TLB_SW
| PPC44x_TLB_SR
76 | PPC44x_TLB_I
| PPC44x_TLB_G
;
78 /* Since the guest can directly access the timebase, it must know the
79 * real timebase frequency. Accordingly, it must see the state of
81 /* XXX CCR1 doesn't exist on all 440 SoCs. */
82 vcpu
->arch
.ccr1
= mfspr(SPRN_CCR1
);
84 for (i
= 0; i
< ARRAY_SIZE(vcpu_44x
->shadow_refs
); i
++)
85 vcpu_44x
->shadow_refs
[i
].gtlb_index
= -1;
87 vcpu
->arch
.cpu_type
= KVM_CPU_440
;
88 vcpu
->arch
.pvr
= mfspr(SPRN_PVR
);
93 /* 'linear_address' is actually an encoding of AS|PID|EADDR . */
94 int kvmppc_core_vcpu_translate(struct kvm_vcpu
*vcpu
,
95 struct kvm_translation
*tr
)
102 eaddr
= tr
->linear_address
;
103 pid
= (tr
->linear_address
>> 32) & 0xff;
104 as
= (tr
->linear_address
>> 40) & 0x1;
106 index
= kvmppc_44x_tlb_index(vcpu
, eaddr
, pid
, as
);
112 tr
->physical_address
= kvmppc_mmu_xlate(vcpu
, index
, eaddr
);
113 /* XXX what does "writeable" and "usermode" even mean? */
119 static int kvmppc_core_get_sregs_44x(struct kvm_vcpu
*vcpu
,
120 struct kvm_sregs
*sregs
)
122 return kvmppc_get_sregs_ivor(vcpu
, sregs
);
125 static int kvmppc_core_set_sregs_44x(struct kvm_vcpu
*vcpu
,
126 struct kvm_sregs
*sregs
)
128 return kvmppc_set_sregs_ivor(vcpu
, sregs
);
131 static int kvmppc_get_one_reg_44x(struct kvm_vcpu
*vcpu
, u64 id
,
132 union kvmppc_one_reg
*val
)
137 static int kvmppc_set_one_reg_44x(struct kvm_vcpu
*vcpu
, u64 id
,
138 union kvmppc_one_reg
*val
)
143 static struct kvm_vcpu
*kvmppc_core_vcpu_create_44x(struct kvm
*kvm
,
146 struct kvmppc_vcpu_44x
*vcpu_44x
;
147 struct kvm_vcpu
*vcpu
;
150 vcpu_44x
= kmem_cache_zalloc(kvm_vcpu_cache
, GFP_KERNEL
);
156 vcpu
= &vcpu_44x
->vcpu
;
157 err
= kvm_vcpu_init(vcpu
, kvm
, id
);
161 vcpu
->arch
.shared
= (void*)__get_free_page(GFP_KERNEL
|__GFP_ZERO
);
162 if (!vcpu
->arch
.shared
)
168 kvm_vcpu_uninit(vcpu
);
170 kmem_cache_free(kvm_vcpu_cache
, vcpu_44x
);
175 static void kvmppc_core_vcpu_free_44x(struct kvm_vcpu
*vcpu
)
177 struct kvmppc_vcpu_44x
*vcpu_44x
= to_44x(vcpu
);
179 free_page((unsigned long)vcpu
->arch
.shared
);
180 kvm_vcpu_uninit(vcpu
);
181 kmem_cache_free(kvm_vcpu_cache
, vcpu_44x
);
184 static int kvmppc_core_init_vm_44x(struct kvm
*kvm
)
189 static void kvmppc_core_destroy_vm_44x(struct kvm
*kvm
)
193 static struct kvmppc_ops kvm_ops_44x
= {
194 .get_sregs
= kvmppc_core_get_sregs_44x
,
195 .set_sregs
= kvmppc_core_set_sregs_44x
,
196 .get_one_reg
= kvmppc_get_one_reg_44x
,
197 .set_one_reg
= kvmppc_set_one_reg_44x
,
198 .vcpu_load
= kvmppc_core_vcpu_load_44x
,
199 .vcpu_put
= kvmppc_core_vcpu_put_44x
,
200 .vcpu_create
= kvmppc_core_vcpu_create_44x
,
201 .vcpu_free
= kvmppc_core_vcpu_free_44x
,
202 .mmu_destroy
= kvmppc_mmu_destroy_44x
,
203 .init_vm
= kvmppc_core_init_vm_44x
,
204 .destroy_vm
= kvmppc_core_destroy_vm_44x
,
205 .emulate_op
= kvmppc_core_emulate_op_44x
,
206 .emulate_mtspr
= kvmppc_core_emulate_mtspr_44x
,
207 .emulate_mfspr
= kvmppc_core_emulate_mfspr_44x
,
210 static int __init
kvmppc_44x_init(void)
214 r
= kvmppc_booke_init();
218 r
= kvm_init(NULL
, sizeof(struct kvmppc_vcpu_44x
), 0, THIS_MODULE
);
221 kvm_ops_44x
.owner
= THIS_MODULE
;
222 kvmppc_pr_ops
= &kvm_ops_44x
;
228 static void __exit
kvmppc_44x_exit(void)
230 kvmppc_pr_ops
= NULL
;
234 module_init(kvmppc_44x_init
);
235 module_exit(kvmppc_44x_exit
);
236 MODULE_ALIAS_MISCDEV(KVM_MINOR
);
237 MODULE_ALIAS("devname:kvm");