blob: 9cb4b0a3603183fe71818a0e28869de12d78071d [file] [log] [blame]
Hollis Blanchard9dd921c2008-11-05 09:36:14 -06001/*
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
20#include <linux/kvm_host.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Hollis Blancharddb93f572008-11-05 09:36:18 -060022#include <linux/err.h>
Paul Gortmaker93087942011-07-29 16:19:31 +100023#include <linux/export.h>
Alexander Graf398a76c2013-12-09 13:53:42 +010024#include <linux/module.h>
25#include <linux/miscdevice.h>
Hollis Blancharddb93f572008-11-05 09:36:18 -060026
Hollis Blanchard9dd921c2008-11-05 09:36:14 -060027#include <asm/reg.h>
28#include <asm/cputable.h>
29#include <asm/tlbflush.h>
Hollis Blancharddb93f572008-11-05 09:36:18 -060030#include <asm/kvm_44x.h>
31#include <asm/kvm_ppc.h>
Hollis Blanchard9dd921c2008-11-05 09:36:14 -060032
33#include "44x_tlb.h"
Scott Wood94fa9d92011-12-20 15:34:22 +000034#include "booke.h"
Hollis Blanchard9dd921c2008-11-05 09:36:14 -060035
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +053036static void kvmppc_core_vcpu_load_44x(struct kvm_vcpu *vcpu, int cpu)
Hollis Blanchard9dd921c2008-11-05 09:36:14 -060037{
Scott Wood94fa9d92011-12-20 15:34:22 +000038 kvmppc_booke_vcpu_load(vcpu, cpu);
Hollis Blanchardc5fbdff2008-12-02 15:51:56 -060039 kvmppc_44x_tlb_load(vcpu);
Hollis Blanchard9dd921c2008-11-05 09:36:14 -060040}
41
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +053042static void kvmppc_core_vcpu_put_44x(struct kvm_vcpu *vcpu)
Hollis Blanchard9dd921c2008-11-05 09:36:14 -060043{
Hollis Blanchardc5fbdff2008-12-02 15:51:56 -060044 kvmppc_44x_tlb_put(vcpu);
Scott Wood94fa9d92011-12-20 15:34:22 +000045 kvmppc_booke_vcpu_put(vcpu);
Hollis Blanchard9dd921c2008-11-05 09:36:14 -060046}
47
48int kvmppc_core_check_processor_compat(void)
49{
50 int r;
51
Hollis Blanchardebc658742010-08-07 10:33:58 -070052 if (strncmp(cur_cpu_spec->platform, "ppc440", 6) == 0)
Hollis Blanchard9dd921c2008-11-05 09:36:14 -060053 r = 0;
54 else
55 r = -ENOTSUPP;
56
57 return r;
58}
Hollis Blanchard5cbb5102008-11-05 09:36:17 -060059
60int kvmppc_core_vcpu_setup(struct kvm_vcpu *vcpu)
61{
Hollis Blancharddb93f572008-11-05 09:36:18 -060062 struct kvmppc_vcpu_44x *vcpu_44x = to_44x(vcpu);
63 struct kvmppc_44x_tlbe *tlbe = &vcpu_44x->guest_tlb[0];
Hollis Blanchard7924bd42008-12-02 15:51:55 -060064 int i;
Hollis Blanchard5cbb5102008-11-05 09:36:17 -060065
66 tlbe->tid = 0;
67 tlbe->word0 = PPC44x_TLB_16M | PPC44x_TLB_VALID;
68 tlbe->word1 = 0;
69 tlbe->word2 = PPC44x_TLB_SX | PPC44x_TLB_SW | PPC44x_TLB_SR;
70
71 tlbe++;
72 tlbe->tid = 0;
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;
77
78 /* Since the guest can directly access the timebase, it must know the
79 * real timebase frequency. Accordingly, it must see the state of
80 * CCR1[TCS]. */
Hollis Blanchardebc658742010-08-07 10:33:58 -070081 /* XXX CCR1 doesn't exist on all 440 SoCs. */
Hollis Blanchard5cbb5102008-11-05 09:36:17 -060082 vcpu->arch.ccr1 = mfspr(SPRN_CCR1);
83
Hollis Blanchard7924bd42008-12-02 15:51:55 -060084 for (i = 0; i < ARRAY_SIZE(vcpu_44x->shadow_refs); i++)
85 vcpu_44x->shadow_refs[i].gtlb_index = -1;
86
Alexander Grafaf8f38b2011-08-10 13:57:08 +020087 vcpu->arch.cpu_type = KVM_CPU_440;
Alexander Graf491dd5b2012-08-13 14:40:29 +020088 vcpu->arch.pvr = mfspr(SPRN_PVR);
Alexander Grafaf8f38b2011-08-10 13:57:08 +020089
Hollis Blanchard5cbb5102008-11-05 09:36:17 -060090 return 0;
91}
92
93/* 'linear_address' is actually an encoding of AS|PID|EADDR . */
94int kvmppc_core_vcpu_translate(struct kvm_vcpu *vcpu,
95 struct kvm_translation *tr)
96{
Hollis Blanchard5cbb5102008-11-05 09:36:17 -060097 int index;
98 gva_t eaddr;
99 u8 pid;
100 u8 as;
101
102 eaddr = tr->linear_address;
103 pid = (tr->linear_address >> 32) & 0xff;
104 as = (tr->linear_address >> 40) & 0x1;
105
106 index = kvmppc_44x_tlb_index(vcpu, eaddr, pid, as);
107 if (index == -1) {
108 tr->valid = 0;
109 return 0;
110 }
111
Hollis Blanchardbe8d1ca2009-01-03 16:23:02 -0600112 tr->physical_address = kvmppc_mmu_xlate(vcpu, index, eaddr);
Hollis Blanchard5cbb5102008-11-05 09:36:17 -0600113 /* XXX what does "writeable" and "usermode" even mean? */
114 tr->valid = 1;
115
116 return 0;
117}
Hollis Blancharddb93f572008-11-05 09:36:18 -0600118
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530119static int kvmppc_core_get_sregs_44x(struct kvm_vcpu *vcpu,
120 struct kvm_sregs *sregs)
Scott Wood5ce941e2011-04-27 17:24:21 -0500121{
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530122 return kvmppc_get_sregs_ivor(vcpu, sregs);
Scott Wood5ce941e2011-04-27 17:24:21 -0500123}
124
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530125static int kvmppc_core_set_sregs_44x(struct kvm_vcpu *vcpu,
126 struct kvm_sregs *sregs)
Scott Wood5ce941e2011-04-27 17:24:21 -0500127{
128 return kvmppc_set_sregs_ivor(vcpu, sregs);
129}
130
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530131static int kvmppc_get_one_reg_44x(struct kvm_vcpu *vcpu, u64 id,
132 union kvmppc_one_reg *val)
Mihai Caraman35b299e2013-04-11 00:03:07 +0000133{
134 return -EINVAL;
135}
136
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530137static int kvmppc_set_one_reg_44x(struct kvm_vcpu *vcpu, u64 id,
138 union kvmppc_one_reg *val)
Mihai Caraman35b299e2013-04-11 00:03:07 +0000139{
140 return -EINVAL;
141}
142
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530143static struct kvm_vcpu *kvmppc_core_vcpu_create_44x(struct kvm *kvm,
144 unsigned int id)
Hollis Blancharddb93f572008-11-05 09:36:18 -0600145{
146 struct kvmppc_vcpu_44x *vcpu_44x;
147 struct kvm_vcpu *vcpu;
148 int err;
149
150 vcpu_44x = kmem_cache_zalloc(kvm_vcpu_cache, GFP_KERNEL);
151 if (!vcpu_44x) {
152 err = -ENOMEM;
153 goto out;
154 }
155
156 vcpu = &vcpu_44x->vcpu;
157 err = kvm_vcpu_init(vcpu, kvm, id);
158 if (err)
159 goto free_vcpu;
160
Alexander Graf96bc4512010-07-29 14:47:42 +0200161 vcpu->arch.shared = (void*)__get_free_page(GFP_KERNEL|__GFP_ZERO);
162 if (!vcpu->arch.shared)
163 goto uninit_vcpu;
164
Hollis Blancharddb93f572008-11-05 09:36:18 -0600165 return vcpu;
166
Alexander Graf96bc4512010-07-29 14:47:42 +0200167uninit_vcpu:
168 kvm_vcpu_uninit(vcpu);
Hollis Blancharddb93f572008-11-05 09:36:18 -0600169free_vcpu:
170 kmem_cache_free(kvm_vcpu_cache, vcpu_44x);
171out:
172 return ERR_PTR(err);
173}
174
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530175static void kvmppc_core_vcpu_free_44x(struct kvm_vcpu *vcpu)
Hollis Blancharddb93f572008-11-05 09:36:18 -0600176{
177 struct kvmppc_vcpu_44x *vcpu_44x = to_44x(vcpu);
178
Alexander Graf96bc4512010-07-29 14:47:42 +0200179 free_page((unsigned long)vcpu->arch.shared);
Hollis Blancharddb93f572008-11-05 09:36:18 -0600180 kvm_vcpu_uninit(vcpu);
181 kmem_cache_free(kvm_vcpu_cache, vcpu_44x);
182}
183
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530184static int kvmppc_core_init_vm_44x(struct kvm *kvm)
Scott Woodfafd6832011-12-20 15:34:26 +0000185{
186 return 0;
187}
188
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530189static void kvmppc_core_destroy_vm_44x(struct kvm *kvm)
Scott Woodfafd6832011-12-20 15:34:26 +0000190{
191}
192
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530193static 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,
208};
209
Stephen Rothwell2986b8c2009-06-02 11:46:14 +1000210static int __init kvmppc_44x_init(void)
Hollis Blancharddb93f572008-11-05 09:36:18 -0600211{
212 int r;
213
214 r = kvmppc_booke_init();
215 if (r)
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530216 goto err_out;
Hollis Blancharddb93f572008-11-05 09:36:18 -0600217
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530218 r = kvm_init(NULL, sizeof(struct kvmppc_vcpu_44x), 0, THIS_MODULE);
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530219 if (r)
220 goto err_out;
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530221 kvm_ops_44x.owner = THIS_MODULE;
222 kvmppc_pr_ops = &kvm_ops_44x;
223
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530224err_out:
225 return r;
Hollis Blancharddb93f572008-11-05 09:36:18 -0600226}
227
Stephen Rothwell2986b8c2009-06-02 11:46:14 +1000228static void __exit kvmppc_44x_exit(void)
Hollis Blancharddb93f572008-11-05 09:36:18 -0600229{
Aneesh Kumar K.Vcbbc58d2013-10-07 22:18:01 +0530230 kvmppc_pr_ops = NULL;
Hollis Blancharddb93f572008-11-05 09:36:18 -0600231 kvmppc_booke_exit();
232}
233
234module_init(kvmppc_44x_init);
235module_exit(kvmppc_44x_exit);
Alexander Graf398a76c2013-12-09 13:53:42 +0100236MODULE_ALIAS_MISCDEV(KVM_MINOR);
237MODULE_ALIAS("devname:kvm");