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