blob: c8cefdd15fd8a2fa03661511e3ca6d2d7c730877 [file] [log] [blame]
Alexander Graf01235182009-10-30 05:47:13 +00001/*
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 SUSE Linux Products GmbH 2009
16 *
17 * Authors: Alexander Graf <agraf@suse.de>
18 */
19
20#include <linux/types.h>
21#include <linux/string.h>
22#include <linux/kvm.h>
23#include <linux/kvm_host.h>
24#include <linux/highmem.h>
25
26#include <asm/tlbflush.h>
27#include <asm/kvm_ppc.h>
28#include <asm/kvm_book3s.h>
29
30/* #define DEBUG_MMU */
31/* #define DEBUG_MMU_PTE */
32/* #define DEBUG_MMU_PTE_IP 0xfff14c40 */
33
34#ifdef DEBUG_MMU
35#define dprintk(X...) printk(KERN_INFO X)
36#else
37#define dprintk(X...) do { } while(0)
38#endif
39
Alexander Grafe425a6de2010-02-19 11:00:36 +010040#ifdef DEBUG_MMU_PTE
Alexander Graf01235182009-10-30 05:47:13 +000041#define dprintk_pte(X...) printk(KERN_INFO X)
42#else
43#define dprintk_pte(X...) do { } while(0)
44#endif
45
46#define PTEG_FLAG_ACCESSED 0x00000100
47#define PTEG_FLAG_DIRTY 0x00000080
Alexander Graf07b09072010-04-16 00:11:53 +020048#ifndef SID_SHIFT
49#define SID_SHIFT 28
50#endif
Alexander Graf01235182009-10-30 05:47:13 +000051
52static inline bool check_debug_ip(struct kvm_vcpu *vcpu)
53{
54#ifdef DEBUG_MMU_PTE_IP
55 return vcpu->arch.pc == DEBUG_MMU_PTE_IP;
56#else
57 return true;
58#endif
59}
60
Alexander Graf8e865172010-08-03 01:06:11 +020061static inline u32 sr_vsid(u32 sr_raw)
62{
63 return sr_raw & 0x0fffffff;
64}
65
66static inline bool sr_valid(u32 sr_raw)
67{
68 return (sr_raw & 0x80000000) ? false : true;
69}
70
71static inline bool sr_ks(u32 sr_raw)
72{
73 return (sr_raw & 0x40000000) ? true: false;
74}
75
76static inline bool sr_kp(u32 sr_raw)
77{
78 return (sr_raw & 0x20000000) ? true: false;
79}
80
81static inline bool sr_nx(u32 sr_raw)
82{
83 return (sr_raw & 0x10000000) ? true: false;
84}
85
Alexander Graf01235182009-10-30 05:47:13 +000086static int kvmppc_mmu_book3s_32_xlate_bat(struct kvm_vcpu *vcpu, gva_t eaddr,
87 struct kvmppc_pte *pte, bool data);
Alexander Grafaf7b4d12010-04-20 02:49:46 +020088static int kvmppc_mmu_book3s_32_esid_to_vsid(struct kvm_vcpu *vcpu, ulong esid,
Alexander Graf4b389ca2010-03-24 21:48:20 +010089 u64 *vsid);
Alexander Graf01235182009-10-30 05:47:13 +000090
Alexander Grafdf1bfa22010-08-03 02:29:27 +020091static u32 find_sr(struct kvm_vcpu *vcpu, gva_t eaddr)
Alexander Graf01235182009-10-30 05:47:13 +000092{
Alexander Grafdf1bfa22010-08-03 02:29:27 +020093 return vcpu->arch.shared->sr[(eaddr >> 28) & 0xf];
Alexander Graf01235182009-10-30 05:47:13 +000094}
95
96static u64 kvmppc_mmu_book3s_32_ea_to_vp(struct kvm_vcpu *vcpu, gva_t eaddr,
97 bool data)
98{
Alexander Graf4b389ca2010-03-24 21:48:20 +010099 u64 vsid;
Alexander Graf01235182009-10-30 05:47:13 +0000100 struct kvmppc_pte pte;
101
102 if (!kvmppc_mmu_book3s_32_xlate_bat(vcpu, eaddr, &pte, data))
103 return pte.vpage;
104
Alexander Graf4b389ca2010-03-24 21:48:20 +0100105 kvmppc_mmu_book3s_32_esid_to_vsid(vcpu, eaddr >> SID_SHIFT, &vsid);
106 return (((u64)eaddr >> 12) & 0xffff) | (vsid << 16);
Alexander Graf01235182009-10-30 05:47:13 +0000107}
108
109static void kvmppc_mmu_book3s_32_reset_msr(struct kvm_vcpu *vcpu)
110{
111 kvmppc_set_msr(vcpu, 0);
112}
113
114static hva_t kvmppc_mmu_book3s_32_get_pteg(struct kvmppc_vcpu_book3s *vcpu_book3s,
Alexander Graf8e865172010-08-03 01:06:11 +0200115 u32 sre, gva_t eaddr,
Alexander Graf01235182009-10-30 05:47:13 +0000116 bool primary)
117{
118 u32 page, hash, pteg, htabmask;
119 hva_t r;
120
121 page = (eaddr & 0x0FFFFFFF) >> 12;
122 htabmask = ((vcpu_book3s->sdr1 & 0x1FF) << 16) | 0xFFC0;
123
Alexander Graf8e865172010-08-03 01:06:11 +0200124 hash = ((sr_vsid(sre) ^ page) << 6);
Alexander Graf01235182009-10-30 05:47:13 +0000125 if (!primary)
126 hash = ~hash;
127 hash &= htabmask;
128
129 pteg = (vcpu_book3s->sdr1 & 0xffff0000) | hash;
130
131 dprintk("MMU: pc=0x%lx eaddr=0x%lx sdr1=0x%llx pteg=0x%x vsid=0x%x\n",
Alexander Graf53021042010-07-29 15:04:16 +0200132 kvmppc_get_pc(&vcpu_book3s->vcpu), eaddr, vcpu_book3s->sdr1, pteg,
Alexander Graf8e865172010-08-03 01:06:11 +0200133 sr_vsid(sre));
Alexander Graf01235182009-10-30 05:47:13 +0000134
135 r = gfn_to_hva(vcpu_book3s->vcpu.kvm, pteg >> PAGE_SHIFT);
136 if (kvm_is_error_hva(r))
137 return r;
138 return r | (pteg & ~PAGE_MASK);
139}
140
Alexander Graf8e865172010-08-03 01:06:11 +0200141static u32 kvmppc_mmu_book3s_32_get_ptem(u32 sre, gva_t eaddr, bool primary)
Alexander Graf01235182009-10-30 05:47:13 +0000142{
Alexander Graf8e865172010-08-03 01:06:11 +0200143 return ((eaddr & 0x0fffffff) >> 22) | (sr_vsid(sre) << 7) |
Alexander Graf01235182009-10-30 05:47:13 +0000144 (primary ? 0 : 0x40) | 0x80000000;
145}
146
147static int kvmppc_mmu_book3s_32_xlate_bat(struct kvm_vcpu *vcpu, gva_t eaddr,
148 struct kvmppc_pte *pte, bool data)
149{
150 struct kvmppc_vcpu_book3s *vcpu_book3s = to_book3s(vcpu);
151 struct kvmppc_bat *bat;
152 int i;
153
154 for (i = 0; i < 8; i++) {
155 if (data)
156 bat = &vcpu_book3s->dbat[i];
157 else
158 bat = &vcpu_book3s->ibat[i];
159
Alexander Graf666e7252010-07-29 14:47:43 +0200160 if (vcpu->arch.shared->msr & MSR_PR) {
Alexander Graf01235182009-10-30 05:47:13 +0000161 if (!bat->vp)
162 continue;
163 } else {
164 if (!bat->vs)
165 continue;
166 }
167
168 if (check_debug_ip(vcpu))
169 {
170 dprintk_pte("%cBAT %02d: 0x%lx - 0x%x (0x%x)\n",
171 data ? 'd' : 'i', i, eaddr, bat->bepi,
172 bat->bepi_mask);
173 }
174 if ((eaddr & bat->bepi_mask) == bat->bepi) {
Alexander Graf4b389ca2010-03-24 21:48:20 +0100175 u64 vsid;
176 kvmppc_mmu_book3s_32_esid_to_vsid(vcpu,
177 eaddr >> SID_SHIFT, &vsid);
178 vsid <<= 16;
179 pte->vpage = (((u64)eaddr >> 12) & 0xffff) | vsid;
180
Alexander Graf01235182009-10-30 05:47:13 +0000181 pte->raddr = bat->brpn | (eaddr & ~bat->bepi_mask);
Alexander Graf01235182009-10-30 05:47:13 +0000182 pte->may_read = bat->pp;
183 pte->may_write = bat->pp > 1;
184 pte->may_execute = true;
185 if (!pte->may_read) {
186 printk(KERN_INFO "BAT is not readable!\n");
187 continue;
188 }
189 if (!pte->may_write) {
190 /* let's treat r/o BATs as not-readable for now */
191 dprintk_pte("BAT is read-only!\n");
192 continue;
193 }
194
195 return 0;
196 }
197 }
198
199 return -ENOENT;
200}
201
202static int kvmppc_mmu_book3s_32_xlate_pte(struct kvm_vcpu *vcpu, gva_t eaddr,
203 struct kvmppc_pte *pte, bool data,
204 bool primary)
205{
206 struct kvmppc_vcpu_book3s *vcpu_book3s = to_book3s(vcpu);
Alexander Graf8e865172010-08-03 01:06:11 +0200207 u32 sre;
Alexander Graf01235182009-10-30 05:47:13 +0000208 hva_t ptegp;
209 u32 pteg[16];
Alexander Grafaf7b4d12010-04-20 02:49:46 +0200210 u32 ptem = 0;
Alexander Graf01235182009-10-30 05:47:13 +0000211 int i;
212 int found = 0;
213
Alexander Grafdf1bfa22010-08-03 02:29:27 +0200214 sre = find_sr(vcpu, eaddr);
Alexander Graf01235182009-10-30 05:47:13 +0000215
216 dprintk_pte("SR 0x%lx: vsid=0x%x, raw=0x%x\n", eaddr >> 28,
Alexander Graf8e865172010-08-03 01:06:11 +0200217 sr_vsid(sre), sre);
Alexander Graf01235182009-10-30 05:47:13 +0000218
219 pte->vpage = kvmppc_mmu_book3s_32_ea_to_vp(vcpu, eaddr, data);
220
221 ptegp = kvmppc_mmu_book3s_32_get_pteg(vcpu_book3s, sre, eaddr, primary);
222 if (kvm_is_error_hva(ptegp)) {
223 printk(KERN_INFO "KVM: Invalid PTEG!\n");
224 goto no_page_found;
225 }
226
227 ptem = kvmppc_mmu_book3s_32_get_ptem(sre, eaddr, primary);
228
229 if(copy_from_user(pteg, (void __user *)ptegp, sizeof(pteg))) {
230 printk(KERN_ERR "KVM: Can't copy data from 0x%lx!\n", ptegp);
231 goto no_page_found;
232 }
233
234 for (i=0; i<16; i+=2) {
235 if (ptem == pteg[i]) {
236 u8 pp;
237
238 pte->raddr = (pteg[i+1] & ~(0xFFFULL)) | (eaddr & 0xFFF);
239 pp = pteg[i+1] & 3;
240
Alexander Graf8e865172010-08-03 01:06:11 +0200241 if ((sr_kp(sre) && (vcpu->arch.shared->msr & MSR_PR)) ||
242 (sr_ks(sre) && !(vcpu->arch.shared->msr & MSR_PR)))
Alexander Graf01235182009-10-30 05:47:13 +0000243 pp |= 4;
244
245 pte->may_write = false;
246 pte->may_read = false;
247 pte->may_execute = true;
248 switch (pp) {
249 case 0:
250 case 1:
251 case 2:
252 case 6:
253 pte->may_write = true;
254 case 3:
255 case 5:
256 case 7:
257 pte->may_read = true;
258 break;
259 }
260
261 if ( !pte->may_read )
262 continue;
263
264 dprintk_pte("MMU: Found PTE -> %x %x - %x\n",
265 pteg[i], pteg[i+1], pp);
266 found = 1;
267 break;
268 }
269 }
270
271 /* Update PTE C and A bits, so the guest's swapper knows we used the
272 page */
273 if (found) {
274 u32 oldpte = pteg[i+1];
275
276 if (pte->may_read)
277 pteg[i+1] |= PTEG_FLAG_ACCESSED;
278 if (pte->may_write)
279 pteg[i+1] |= PTEG_FLAG_DIRTY;
280 else
281 dprintk_pte("KVM: Mapping read-only page!\n");
282
283 /* Write back into the PTEG */
284 if (pteg[i+1] != oldpte)
285 copy_to_user((void __user *)ptegp, pteg, sizeof(pteg));
286
287 return 0;
288 }
289
290no_page_found:
291
292 if (check_debug_ip(vcpu)) {
293 dprintk_pte("KVM MMU: No PTE found (sdr1=0x%llx ptegp=0x%lx)\n",
294 to_book3s(vcpu)->sdr1, ptegp);
295 for (i=0; i<16; i+=2) {
Alexander Graf53021042010-07-29 15:04:16 +0200296 dprintk_pte(" %02d: 0x%x - 0x%x (0x%x)\n",
Alexander Graf01235182009-10-30 05:47:13 +0000297 i, pteg[i], pteg[i+1], ptem);
298 }
299 }
300
301 return -ENOENT;
302}
303
304static int kvmppc_mmu_book3s_32_xlate(struct kvm_vcpu *vcpu, gva_t eaddr,
305 struct kvmppc_pte *pte, bool data)
306{
307 int r;
Alexander Grafe8508942010-07-29 14:47:54 +0200308 ulong mp_ea = vcpu->arch.magic_page_ea;
Alexander Graf01235182009-10-30 05:47:13 +0000309
310 pte->eaddr = eaddr;
Alexander Grafe8508942010-07-29 14:47:54 +0200311
312 /* Magic page override */
313 if (unlikely(mp_ea) &&
314 unlikely((eaddr & ~0xfffULL) == (mp_ea & ~0xfffULL)) &&
315 !(vcpu->arch.shared->msr & MSR_PR)) {
316 pte->vpage = kvmppc_mmu_book3s_32_ea_to_vp(vcpu, eaddr, data);
317 pte->raddr = vcpu->arch.magic_page_pa | (pte->raddr & 0xfff);
318 pte->raddr &= KVM_PAM;
319 pte->may_execute = true;
320 pte->may_read = true;
321 pte->may_write = true;
322
323 return 0;
324 }
325
Alexander Graf01235182009-10-30 05:47:13 +0000326 r = kvmppc_mmu_book3s_32_xlate_bat(vcpu, eaddr, pte, data);
327 if (r < 0)
328 r = kvmppc_mmu_book3s_32_xlate_pte(vcpu, eaddr, pte, data, true);
329 if (r < 0)
330 r = kvmppc_mmu_book3s_32_xlate_pte(vcpu, eaddr, pte, data, false);
331
332 return r;
333}
334
335
336static u32 kvmppc_mmu_book3s_32_mfsrin(struct kvm_vcpu *vcpu, u32 srnum)
337{
Alexander Grafdf1bfa22010-08-03 02:29:27 +0200338 return vcpu->arch.shared->sr[srnum];
Alexander Graf01235182009-10-30 05:47:13 +0000339}
340
341static void kvmppc_mmu_book3s_32_mtsrin(struct kvm_vcpu *vcpu, u32 srnum,
342 ulong value)
343{
Alexander Grafdf1bfa22010-08-03 02:29:27 +0200344 vcpu->arch.shared->sr[srnum] = value;
Alexander Graf01235182009-10-30 05:47:13 +0000345 kvmppc_mmu_map_segment(vcpu, srnum << SID_SHIFT);
346}
347
348static void kvmppc_mmu_book3s_32_tlbie(struct kvm_vcpu *vcpu, ulong ea, bool large)
349{
Alexander Graf4b389ca2010-03-24 21:48:20 +0100350 kvmppc_mmu_pte_flush(vcpu, ea, 0x0FFFF000);
Alexander Graf01235182009-10-30 05:47:13 +0000351}
352
Alexander Grafaf7b4d12010-04-20 02:49:46 +0200353static int kvmppc_mmu_book3s_32_esid_to_vsid(struct kvm_vcpu *vcpu, ulong esid,
Alexander Graf01235182009-10-30 05:47:13 +0000354 u64 *vsid)
355{
Alexander Graff7bc74e2010-04-20 02:49:48 +0200356 ulong ea = esid << SID_SHIFT;
Alexander Graf8e865172010-08-03 01:06:11 +0200357 u32 sr;
Alexander Graff7bc74e2010-04-20 02:49:48 +0200358 u64 gvsid = esid;
359
Alexander Graf666e7252010-07-29 14:47:43 +0200360 if (vcpu->arch.shared->msr & (MSR_DR|MSR_IR)) {
Alexander Grafdf1bfa22010-08-03 02:29:27 +0200361 sr = find_sr(vcpu, ea);
Alexander Graf8e865172010-08-03 01:06:11 +0200362 if (sr_valid(sr))
363 gvsid = sr_vsid(sr);
Alexander Graff7bc74e2010-04-20 02:49:48 +0200364 }
365
Alexander Graf01235182009-10-30 05:47:13 +0000366 /* In case we only have one of MSR_IR or MSR_DR set, let's put
367 that in the real-mode context (and hope RM doesn't access
368 high memory) */
Alexander Graf666e7252010-07-29 14:47:43 +0200369 switch (vcpu->arch.shared->msr & (MSR_DR|MSR_IR)) {
Alexander Graf01235182009-10-30 05:47:13 +0000370 case 0:
Alexander Graff7bc74e2010-04-20 02:49:48 +0200371 *vsid = VSID_REAL | esid;
Alexander Graf01235182009-10-30 05:47:13 +0000372 break;
373 case MSR_IR:
Alexander Graff7bc74e2010-04-20 02:49:48 +0200374 *vsid = VSID_REAL_IR | gvsid;
Alexander Graf01235182009-10-30 05:47:13 +0000375 break;
376 case MSR_DR:
Alexander Graff7bc74e2010-04-20 02:49:48 +0200377 *vsid = VSID_REAL_DR | gvsid;
Alexander Graf01235182009-10-30 05:47:13 +0000378 break;
379 case MSR_DR|MSR_IR:
Alexander Graf8e865172010-08-03 01:06:11 +0200380 if (sr_valid(sr))
381 *vsid = sr_vsid(sr);
Alexander Graf4d29bdb2010-06-21 15:24:55 +0200382 else
383 *vsid = VSID_BAT | gvsid;
Alexander Graf01235182009-10-30 05:47:13 +0000384 break;
Alexander Graf01235182009-10-30 05:47:13 +0000385 default:
386 BUG();
387 }
388
Alexander Graf666e7252010-07-29 14:47:43 +0200389 if (vcpu->arch.shared->msr & MSR_PR)
Alexander Graf4b389ca2010-03-24 21:48:20 +0100390 *vsid |= VSID_PR;
391
Alexander Graf01235182009-10-30 05:47:13 +0000392 return 0;
393}
394
395static bool kvmppc_mmu_book3s_32_is_dcbz32(struct kvm_vcpu *vcpu)
396{
397 return true;
398}
399
400
401void kvmppc_mmu_book3s_32_init(struct kvm_vcpu *vcpu)
402{
403 struct kvmppc_mmu *mmu = &vcpu->arch.mmu;
404
405 mmu->mtsrin = kvmppc_mmu_book3s_32_mtsrin;
406 mmu->mfsrin = kvmppc_mmu_book3s_32_mfsrin;
407 mmu->xlate = kvmppc_mmu_book3s_32_xlate;
408 mmu->reset_msr = kvmppc_mmu_book3s_32_reset_msr;
409 mmu->tlbie = kvmppc_mmu_book3s_32_tlbie;
410 mmu->esid_to_vsid = kvmppc_mmu_book3s_32_esid_to_vsid;
411 mmu->ea_to_vp = kvmppc_mmu_book3s_32_ea_to_vp;
412 mmu->is_dcbz32 = kvmppc_mmu_book3s_32_is_dcbz32;
413
414 mmu->slbmte = NULL;
415 mmu->slbmfee = NULL;
416 mmu->slbmfev = NULL;
417 mmu->slbie = NULL;
418 mmu->slbia = NULL;
419}