blob: 79ad35abd1967c0ea68c900f9b5bb83d25a488a6 [file] [log] [blame]
Alexander Graf0d8dc682009-10-30 05:47:11 +00001/*
2 * Copyright (C) 2009 SUSE Linux Products GmbH. All rights reserved.
3 *
4 * Authors:
5 * Alexander Graf <agraf@suse.de>
6 * Kevin Wolf <mail@kevin-wolf.de>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License, version 2, as
10 * published by the Free Software Foundation.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 */
21
22#include <linux/kvm_host.h>
23
24#include <asm/kvm_ppc.h>
25#include <asm/kvm_book3s.h>
26#include <asm/mmu-hash64.h>
27#include <asm/machdep.h>
28#include <asm/mmu_context.h>
29#include <asm/hw_irq.h>
Aneesh Kumar K.V72c12532013-10-07 22:17:57 +053030#include "trace_pr.h"
Thomas Huth5358a962015-05-22 09:25:02 +020031#include "book3s.h"
Alexander Graf0d8dc682009-10-30 05:47:11 +000032
33#define PTE_SIZE 12
Alexander Graf0d8dc682009-10-30 05:47:11 +000034
Alexander Graffef093be2010-06-30 15:18:46 +020035void kvmppc_mmu_invalidate_pte(struct kvm_vcpu *vcpu, struct hpte_cache *pte)
Alexander Graf0d8dc682009-10-30 05:47:11 +000036{
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +000037 ppc_md.hpte_invalidate(pte->slot, pte->host_vpn,
Paul Mackerrasc9029c32013-09-20 14:52:45 +100038 pte->pagesize, pte->pagesize, MMU_SEGSIZE_256M,
Alexander Graf0d8dc682009-10-30 05:47:11 +000039 false);
Alexander Graf0d8dc682009-10-30 05:47:11 +000040}
41
42/* We keep 512 gvsid->hvsid entries, mapping the guest ones to the array using
43 * a hash, so we don't waste cycles on looping */
44static u16 kvmppc_sid_hash(struct kvm_vcpu *vcpu, u64 gvsid)
45{
Alexander Grafb9877ce2010-08-02 21:48:53 +020046 return (u16)(((gvsid >> (SID_MAP_BITS * 7)) & SID_MAP_MASK) ^
47 ((gvsid >> (SID_MAP_BITS * 6)) & SID_MAP_MASK) ^
48 ((gvsid >> (SID_MAP_BITS * 5)) & SID_MAP_MASK) ^
49 ((gvsid >> (SID_MAP_BITS * 4)) & SID_MAP_MASK) ^
50 ((gvsid >> (SID_MAP_BITS * 3)) & SID_MAP_MASK) ^
51 ((gvsid >> (SID_MAP_BITS * 2)) & SID_MAP_MASK) ^
52 ((gvsid >> (SID_MAP_BITS * 1)) & SID_MAP_MASK) ^
53 ((gvsid >> (SID_MAP_BITS * 0)) & SID_MAP_MASK));
Alexander Graf0d8dc682009-10-30 05:47:11 +000054}
55
Alexander Grafb9877ce2010-08-02 21:48:53 +020056
Alexander Graf0d8dc682009-10-30 05:47:11 +000057static struct kvmppc_sid_map *find_sid_vsid(struct kvm_vcpu *vcpu, u64 gvsid)
58{
59 struct kvmppc_sid_map *map;
60 u16 sid_map_mask;
61
Alexander Graf5deb8e72014-04-24 13:46:24 +020062 if (kvmppc_get_msr(vcpu) & MSR_PR)
Alexander Graf0d8dc682009-10-30 05:47:11 +000063 gvsid |= VSID_PR;
64
65 sid_map_mask = kvmppc_sid_hash(vcpu, gvsid);
66 map = &to_book3s(vcpu)->sid_map[sid_map_mask];
Alexander Grafc22c3192010-08-02 13:38:18 +020067 if (map->valid && (map->guest_vsid == gvsid)) {
Alexander Graf928d78b2010-08-02 21:25:33 +020068 trace_kvm_book3s_slb_found(gvsid, map->host_vsid);
Alexander Graf0d8dc682009-10-30 05:47:11 +000069 return map;
70 }
71
72 map = &to_book3s(vcpu)->sid_map[SID_MAP_MASK - sid_map_mask];
Alexander Grafc22c3192010-08-02 13:38:18 +020073 if (map->valid && (map->guest_vsid == gvsid)) {
Alexander Graf928d78b2010-08-02 21:25:33 +020074 trace_kvm_book3s_slb_found(gvsid, map->host_vsid);
Alexander Graf0d8dc682009-10-30 05:47:11 +000075 return map;
76 }
77
Alexander Graf928d78b2010-08-02 21:25:33 +020078 trace_kvm_book3s_slb_fail(sid_map_mask, gvsid);
Alexander Graf0d8dc682009-10-30 05:47:11 +000079 return NULL;
80}
81
Paul Mackerras93b159b2013-09-20 14:52:51 +100082int kvmppc_mmu_map_page(struct kvm_vcpu *vcpu, struct kvmppc_pte *orig_pte,
83 bool iswrite)
Alexander Graf0d8dc682009-10-30 05:47:11 +000084{
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +000085 unsigned long vpn;
Alexander Graf0d8dc682009-10-30 05:47:11 +000086 pfn_t hpaddr;
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +000087 ulong hash, hpteg;
Alexander Graf0d8dc682009-10-30 05:47:11 +000088 u64 vsid;
89 int ret;
90 int rflags = 0x192;
91 int vflags = 0;
92 int attempt = 0;
93 struct kvmppc_sid_map *map;
Alexander Graf468a12c2011-12-09 14:44:13 +010094 int r = 0;
Paul Mackerrasc9029c32013-09-20 14:52:45 +100095 int hpsize = MMU_PAGE_4K;
Paul Mackerras93b159b2013-09-20 14:52:51 +100096 bool writable;
Paul Mackerrasd78bca72013-09-20 14:52:52 +100097 unsigned long mmu_seq;
98 struct kvm *kvm = vcpu->kvm;
99 struct hpte_cache *cpte;
Paul Mackerrasadc0baf2013-09-20 14:52:53 +1000100 unsigned long gfn = orig_pte->raddr >> PAGE_SHIFT;
101 unsigned long pfn;
Paul Mackerrasd78bca72013-09-20 14:52:52 +1000102
103 /* used to check for invalidations in progress */
104 mmu_seq = kvm->mmu_notifier_seq;
105 smp_rmb();
Alexander Graf0d8dc682009-10-30 05:47:11 +0000106
107 /* Get host physical address for gpa */
Alexander Graf89b68c92014-07-13 16:37:12 +0200108 pfn = kvmppc_gpa_to_pfn(vcpu, orig_pte->raddr, iswrite, &writable);
Paul Mackerrasadc0baf2013-09-20 14:52:53 +1000109 if (is_error_noslot_pfn(pfn)) {
Alexander Graf89b68c92014-07-13 16:37:12 +0200110 printk(KERN_INFO "Couldn't get guest page for gpa %lx!\n",
111 orig_pte->raddr);
Alexander Graf468a12c2011-12-09 14:44:13 +0100112 r = -EINVAL;
113 goto out;
Alexander Graf0d8dc682009-10-30 05:47:11 +0000114 }
Paul Mackerrasadc0baf2013-09-20 14:52:53 +1000115 hpaddr = pfn << PAGE_SHIFT;
Alexander Graf0d8dc682009-10-30 05:47:11 +0000116
117 /* and write the mapping ea -> hpa into the pt */
118 vcpu->arch.mmu.esid_to_vsid(vcpu, orig_pte->eaddr >> SID_SHIFT, &vsid);
119 map = find_sid_vsid(vcpu, vsid);
120 if (!map) {
Alexander Grafac214672010-04-20 02:49:50 +0200121 ret = kvmppc_mmu_map_segment(vcpu, orig_pte->eaddr);
122 WARN_ON(ret < 0);
Alexander Graf0d8dc682009-10-30 05:47:11 +0000123 map = find_sid_vsid(vcpu, vsid);
124 }
Alexander Grafac214672010-04-20 02:49:50 +0200125 if (!map) {
126 printk(KERN_ERR "KVM: Segment map for 0x%llx (0x%lx) failed\n",
127 vsid, orig_pte->eaddr);
128 WARN_ON(true);
Alexander Graf468a12c2011-12-09 14:44:13 +0100129 r = -EINVAL;
130 goto out;
Alexander Grafac214672010-04-20 02:49:50 +0200131 }
Alexander Graf0d8dc682009-10-30 05:47:11 +0000132
Paul Mackerrasc9029c32013-09-20 14:52:45 +1000133 vpn = hpt_vpn(orig_pte->eaddr, map->host_vsid, MMU_SEGSIZE_256M);
Alexander Graf0d8dc682009-10-30 05:47:11 +0000134
Paul Mackerrasadc0baf2013-09-20 14:52:53 +1000135 kvm_set_pfn_accessed(pfn);
Paul Mackerras93b159b2013-09-20 14:52:51 +1000136 if (!orig_pte->may_write || !writable)
Paul Mackerrasadc0baf2013-09-20 14:52:53 +1000137 rflags |= PP_RXRX;
138 else {
139 mark_page_dirty(vcpu->kvm, gfn);
140 kvm_set_pfn_dirty(pfn);
141 }
Alexander Graf0d8dc682009-10-30 05:47:11 +0000142
143 if (!orig_pte->may_execute)
144 rflags |= HPTE_R_N;
Alexander Graf249ba1e2012-08-03 13:56:33 +0200145 else
Paul Mackerrasadc0baf2013-09-20 14:52:53 +1000146 kvmppc_mmu_flush_icache(pfn);
Alexander Graf0d8dc682009-10-30 05:47:11 +0000147
Paul Mackerrasc9029c32013-09-20 14:52:45 +1000148 /*
149 * Use 64K pages if possible; otherwise, on 64K page kernels,
150 * we need to transfer 4 more bits from guest real to host real addr.
151 */
152 if (vsid & VSID_64K)
153 hpsize = MMU_PAGE_64K;
154 else
155 hpaddr |= orig_pte->raddr & (~0xfffULL & ~PAGE_MASK);
156
157 hash = hpt_hash(vpn, mmu_psize_defs[hpsize].shift, MMU_SEGSIZE_256M);
Alexander Graf0d8dc682009-10-30 05:47:11 +0000158
Paul Mackerrasd78bca72013-09-20 14:52:52 +1000159 cpte = kvmppc_mmu_hpte_cache_next(vcpu);
160
161 spin_lock(&kvm->mmu_lock);
162 if (!cpte || mmu_notifier_retry(kvm, mmu_seq)) {
163 r = -EAGAIN;
164 goto out_unlock;
165 }
166
Alexander Graf0d8dc682009-10-30 05:47:11 +0000167map_again:
168 hpteg = ((hash & htab_hash_mask) * HPTES_PER_GROUP);
169
170 /* In case we tried normal mapping already, let's nuke old entries */
171 if (attempt > 1)
Alexander Graf468a12c2011-12-09 14:44:13 +0100172 if (ppc_md.hpte_remove(hpteg) < 0) {
173 r = -1;
Paul Mackerrasd78bca72013-09-20 14:52:52 +1000174 goto out_unlock;
Alexander Graf468a12c2011-12-09 14:44:13 +0100175 }
Alexander Graf0d8dc682009-10-30 05:47:11 +0000176
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000177 ret = ppc_md.hpte_insert(hpteg, vpn, hpaddr, rflags, vflags,
Paul Mackerrasc9029c32013-09-20 14:52:45 +1000178 hpsize, hpsize, MMU_SEGSIZE_256M);
Alexander Graf0d8dc682009-10-30 05:47:11 +0000179
180 if (ret < 0) {
181 /* If we couldn't map a primary PTE, try a secondary */
Alexander Graf0d8dc682009-10-30 05:47:11 +0000182 hash = ~hash;
Alexander Graf20a340a2010-02-19 11:00:46 +0100183 vflags ^= HPTE_V_SECONDARY;
Alexander Graf0d8dc682009-10-30 05:47:11 +0000184 attempt++;
Alexander Graf0d8dc682009-10-30 05:47:11 +0000185 goto map_again;
186 } else {
Aneesh Kumar K.V5524a272012-09-10 02:52:50 +0000187 trace_kvm_book3s_64_mmu_map(rflags, hpteg,
188 vpn, hpaddr, orig_pte);
Alexander Graf0d8dc682009-10-30 05:47:11 +0000189
Alexander Grafa1eda282010-03-24 21:48:34 +0100190 /* The ppc_md code may give us a secondary entry even though we
191 asked for a primary. Fix up. */
192 if ((ret & _PTEIDX_SECONDARY) && !(vflags & HPTE_V_SECONDARY)) {
193 hash = ~hash;
194 hpteg = ((hash & htab_hash_mask) * HPTES_PER_GROUP);
195 }
196
Paul Mackerrasd78bca72013-09-20 14:52:52 +1000197 cpte->slot = hpteg + (ret & 7);
198 cpte->host_vpn = vpn;
199 cpte->pte = *orig_pte;
Paul Mackerrasadc0baf2013-09-20 14:52:53 +1000200 cpte->pfn = pfn;
Paul Mackerrasd78bca72013-09-20 14:52:52 +1000201 cpte->pagesize = hpsize;
Alexander Graffef093be2010-06-30 15:18:46 +0200202
Paul Mackerrasd78bca72013-09-20 14:52:52 +1000203 kvmppc_mmu_hpte_cache_map(vcpu, cpte);
204 cpte = NULL;
Alexander Graf0d8dc682009-10-30 05:47:11 +0000205 }
Paul Mackerrasd78bca72013-09-20 14:52:52 +1000206
207out_unlock:
208 spin_unlock(&kvm->mmu_lock);
Paul Mackerrasadc0baf2013-09-20 14:52:53 +1000209 kvm_release_pfn_clean(pfn);
Paul Mackerrasd78bca72013-09-20 14:52:52 +1000210 if (cpte)
211 kvmppc_mmu_hpte_cache_free(cpte);
Alexander Graf0d8dc682009-10-30 05:47:11 +0000212
Alexander Graf468a12c2011-12-09 14:44:13 +0100213out:
214 return r;
Alexander Graf0d8dc682009-10-30 05:47:11 +0000215}
216
Paul Mackerras93b159b2013-09-20 14:52:51 +1000217void kvmppc_mmu_unmap_page(struct kvm_vcpu *vcpu, struct kvmppc_pte *pte)
218{
219 u64 mask = 0xfffffffffULL;
220 u64 vsid;
221
222 vcpu->arch.mmu.esid_to_vsid(vcpu, pte->eaddr >> SID_SHIFT, &vsid);
223 if (vsid & VSID_64K)
224 mask = 0xffffffff0ULL;
225 kvmppc_mmu_pte_vflush(vcpu, pte->vpage, mask);
226}
227
Alexander Graf0d8dc682009-10-30 05:47:11 +0000228static struct kvmppc_sid_map *create_sid_map(struct kvm_vcpu *vcpu, u64 gvsid)
229{
230 struct kvmppc_sid_map *map;
231 struct kvmppc_vcpu_book3s *vcpu_book3s = to_book3s(vcpu);
232 u16 sid_map_mask;
233 static int backwards_map = 0;
234
Alexander Graf5deb8e72014-04-24 13:46:24 +0200235 if (kvmppc_get_msr(vcpu) & MSR_PR)
Alexander Graf0d8dc682009-10-30 05:47:11 +0000236 gvsid |= VSID_PR;
237
238 /* We might get collisions that trap in preceding order, so let's
239 map them differently */
240
241 sid_map_mask = kvmppc_sid_hash(vcpu, gvsid);
242 if (backwards_map)
243 sid_map_mask = SID_MAP_MASK - sid_map_mask;
244
245 map = &to_book3s(vcpu)->sid_map[sid_map_mask];
246
247 /* Make sure we're taking the other map next time */
248 backwards_map = !backwards_map;
249
250 /* Uh-oh ... out of mappings. Let's flush! */
Benjamin Herrenschmidtffe36492012-03-23 11:21:14 +1100251 if (vcpu_book3s->proto_vsid_next == vcpu_book3s->proto_vsid_max) {
252 vcpu_book3s->proto_vsid_next = vcpu_book3s->proto_vsid_first;
Alexander Graf0d8dc682009-10-30 05:47:11 +0000253 memset(vcpu_book3s->sid_map, 0,
254 sizeof(struct kvmppc_sid_map) * SID_MAP_NUM);
255 kvmppc_mmu_pte_flush(vcpu, 0, 0);
256 kvmppc_mmu_flush_segments(vcpu);
257 }
Benjamin Herrenschmidtffe36492012-03-23 11:21:14 +1100258 map->host_vsid = vsid_scramble(vcpu_book3s->proto_vsid_next++, 256M);
Alexander Graf0d8dc682009-10-30 05:47:11 +0000259
260 map->guest_vsid = gvsid;
261 map->valid = true;
262
Alexander Graf928d78b2010-08-02 21:25:33 +0200263 trace_kvm_book3s_slb_map(sid_map_mask, gvsid, map->host_vsid);
Alexander Graf5156f272010-04-20 02:49:52 +0200264
Alexander Graf0d8dc682009-10-30 05:47:11 +0000265 return map;
266}
267
268static int kvmppc_mmu_next_segment(struct kvm_vcpu *vcpu, ulong esid)
269{
Alexander Graf468a12c2011-12-09 14:44:13 +0100270 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
Alexander Graf0d8dc682009-10-30 05:47:11 +0000271 int i;
272 int max_slb_size = 64;
273 int found_inval = -1;
274 int r;
275
Alexander Graf0d8dc682009-10-30 05:47:11 +0000276 /* Are we overwriting? */
Alexander Graf207438d2014-05-15 14:36:05 +0200277 for (i = 0; i < svcpu->slb_max; i++) {
Alexander Graf468a12c2011-12-09 14:44:13 +0100278 if (!(svcpu->slb[i].esid & SLB_ESID_V))
Alexander Graf0d8dc682009-10-30 05:47:11 +0000279 found_inval = i;
Alexander Graf468a12c2011-12-09 14:44:13 +0100280 else if ((svcpu->slb[i].esid & ESID_MASK) == esid) {
281 r = i;
282 goto out;
283 }
Alexander Graf0d8dc682009-10-30 05:47:11 +0000284 }
285
286 /* Found a spare entry that was invalidated before */
Alexander Graf207438d2014-05-15 14:36:05 +0200287 if (found_inval >= 0) {
Alexander Graf468a12c2011-12-09 14:44:13 +0100288 r = found_inval;
289 goto out;
290 }
Alexander Graf0d8dc682009-10-30 05:47:11 +0000291
292 /* No spare invalid entry, so create one */
293
294 if (mmu_slb_size < 64)
295 max_slb_size = mmu_slb_size;
296
297 /* Overflowing -> purge */
Alexander Graf468a12c2011-12-09 14:44:13 +0100298 if ((svcpu->slb_max) == max_slb_size)
Alexander Graf0d8dc682009-10-30 05:47:11 +0000299 kvmppc_mmu_flush_segments(vcpu);
300
Alexander Graf468a12c2011-12-09 14:44:13 +0100301 r = svcpu->slb_max;
302 svcpu->slb_max++;
Alexander Graf0d8dc682009-10-30 05:47:11 +0000303
Alexander Graf468a12c2011-12-09 14:44:13 +0100304out:
305 svcpu_put(svcpu);
Alexander Graf0d8dc682009-10-30 05:47:11 +0000306 return r;
307}
308
309int kvmppc_mmu_map_segment(struct kvm_vcpu *vcpu, ulong eaddr)
310{
Alexander Graf468a12c2011-12-09 14:44:13 +0100311 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
Alexander Graf0d8dc682009-10-30 05:47:11 +0000312 u64 esid = eaddr >> SID_SHIFT;
313 u64 slb_esid = (eaddr & ESID_MASK) | SLB_ESID_V;
314 u64 slb_vsid = SLB_VSID_USER;
315 u64 gvsid;
316 int slb_index;
317 struct kvmppc_sid_map *map;
Alexander Graf468a12c2011-12-09 14:44:13 +0100318 int r = 0;
Alexander Graf0d8dc682009-10-30 05:47:11 +0000319
320 slb_index = kvmppc_mmu_next_segment(vcpu, eaddr & ESID_MASK);
321
322 if (vcpu->arch.mmu.esid_to_vsid(vcpu, esid, &gvsid)) {
323 /* Invalidate an entry */
Alexander Graf468a12c2011-12-09 14:44:13 +0100324 svcpu->slb[slb_index].esid = 0;
325 r = -ENOENT;
326 goto out;
Alexander Graf0d8dc682009-10-30 05:47:11 +0000327 }
328
329 map = find_sid_vsid(vcpu, gvsid);
330 if (!map)
331 map = create_sid_map(vcpu, gvsid);
332
333 map->guest_esid = esid;
334
335 slb_vsid |= (map->host_vsid << 12);
336 slb_vsid &= ~SLB_VSID_KP;
337 slb_esid |= slb_index;
338
Paul Mackerrasc9029c32013-09-20 14:52:45 +1000339#ifdef CONFIG_PPC_64K_PAGES
340 /* Set host segment base page size to 64K if possible */
341 if (gvsid & VSID_64K)
342 slb_vsid |= mmu_psize_defs[MMU_PAGE_64K].sllp;
343#endif
344
Alexander Graf468a12c2011-12-09 14:44:13 +0100345 svcpu->slb[slb_index].esid = slb_esid;
346 svcpu->slb[slb_index].vsid = slb_vsid;
Alexander Graf0d8dc682009-10-30 05:47:11 +0000347
Alexander Graf928d78b2010-08-02 21:25:33 +0200348 trace_kvm_book3s_slbmte(slb_vsid, slb_esid);
Alexander Graf0d8dc682009-10-30 05:47:11 +0000349
Alexander Graf468a12c2011-12-09 14:44:13 +0100350out:
351 svcpu_put(svcpu);
352 return r;
Alexander Graf0d8dc682009-10-30 05:47:11 +0000353}
354
Paul Mackerras0f296822013-06-22 17:16:32 +1000355void kvmppc_mmu_flush_segment(struct kvm_vcpu *vcpu, ulong ea, ulong seg_size)
356{
357 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
358 ulong seg_mask = -seg_size;
359 int i;
360
Alexander Graf207438d2014-05-15 14:36:05 +0200361 for (i = 0; i < svcpu->slb_max; i++) {
Paul Mackerras0f296822013-06-22 17:16:32 +1000362 if ((svcpu->slb[i].esid & SLB_ESID_V) &&
363 (svcpu->slb[i].esid & seg_mask) == ea) {
364 /* Invalidate this entry */
365 svcpu->slb[i].esid = 0;
366 }
367 }
368
369 svcpu_put(svcpu);
370}
371
Alexander Graf0d8dc682009-10-30 05:47:11 +0000372void kvmppc_mmu_flush_segments(struct kvm_vcpu *vcpu)
373{
Alexander Graf468a12c2011-12-09 14:44:13 +0100374 struct kvmppc_book3s_shadow_vcpu *svcpu = svcpu_get(vcpu);
Alexander Graf207438d2014-05-15 14:36:05 +0200375 svcpu->slb_max = 0;
Alexander Graf468a12c2011-12-09 14:44:13 +0100376 svcpu->slb[0].esid = 0;
377 svcpu_put(svcpu);
Alexander Graf0d8dc682009-10-30 05:47:11 +0000378}
379
Aneesh Kumar K.V3a167bea2013-10-07 22:17:53 +0530380void kvmppc_mmu_destroy_pr(struct kvm_vcpu *vcpu)
Alexander Graf0d8dc682009-10-30 05:47:11 +0000381{
Alexander Graffef093be2010-06-30 15:18:46 +0200382 kvmppc_mmu_hpte_destroy(vcpu);
Alexander Graf8b6db3b2010-08-15 08:04:24 +0200383 __destroy_context(to_book3s(vcpu)->context_id[0]);
Alexander Graf9cc5e952010-04-16 00:11:45 +0200384}
385
386int kvmppc_mmu_init(struct kvm_vcpu *vcpu)
387{
388 struct kvmppc_vcpu_book3s *vcpu3s = to_book3s(vcpu);
389 int err;
390
391 err = __init_new_context();
392 if (err < 0)
393 return -1;
Alexander Graf8b6db3b2010-08-15 08:04:24 +0200394 vcpu3s->context_id[0] = err;
Alexander Graf9cc5e952010-04-16 00:11:45 +0200395
Paul Mackerras8ed7b7e2013-06-22 17:13:32 +1000396 vcpu3s->proto_vsid_max = ((u64)(vcpu3s->context_id[0] + 1)
Aneesh Kumar K.Vaf81d782013-03-13 03:34:55 +0000397 << ESID_BITS) - 1;
Paul Mackerras8ed7b7e2013-06-22 17:13:32 +1000398 vcpu3s->proto_vsid_first = (u64)vcpu3s->context_id[0] << ESID_BITS;
Benjamin Herrenschmidtffe36492012-03-23 11:21:14 +1100399 vcpu3s->proto_vsid_next = vcpu3s->proto_vsid_first;
Alexander Graf9cc5e952010-04-16 00:11:45 +0200400
Alexander Graffef093be2010-06-30 15:18:46 +0200401 kvmppc_mmu_hpte_init(vcpu);
402
Alexander Graf9cc5e952010-04-16 00:11:45 +0200403 return 0;
Alexander Graf0d8dc682009-10-30 05:47:11 +0000404}