blob: 5f3cff83e0891a50129087a29dffa5f3e5688a9e [file] [log] [blame]
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -05001/*
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. 2007
16 *
17 * Authors: Hollis Blanchard <hollisb@us.ibm.com>
18 */
19
20#include <linux/types.h>
21#include <linux/string.h>
Jerone Young31711f22008-07-14 14:00:03 +020022#include <linux/kvm.h>
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050023#include <linux/kvm_host.h>
24#include <linux/highmem.h>
Hollis Blanchard7924bd42008-12-02 15:51:55 -060025
26#include <asm/tlbflush.h>
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050027#include <asm/mmu-44x.h>
28#include <asm/kvm_ppc.h>
Hollis Blancharddb93f572008-11-05 09:36:18 -060029#include <asm/kvm_44x.h>
Hollis Blanchard73e75b42008-12-02 15:51:57 -060030#include "timing.h"
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050031
32#include "44x_tlb.h"
Marcelo Tosatti46f43c62009-06-18 11:47:27 -030033#include "trace.h"
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050034
Hollis Blanchard89168612008-12-02 15:51:53 -060035#ifndef PPC44x_TLBE_SIZE
36#define PPC44x_TLBE_SIZE PPC44x_TLB_4K
37#endif
38
39#define PAGE_SIZE_4K (1<<12)
40#define PAGE_MASK_4K (~(PAGE_SIZE_4K - 1))
41
Hollis Blancharddf9b8562008-11-10 14:57:35 -060042#define PPC44x_TLB_UATTR_MASK \
43 (PPC44x_TLB_U0|PPC44x_TLB_U1|PPC44x_TLB_U2|PPC44x_TLB_U3)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -050044#define PPC44x_TLB_USER_PERM_MASK (PPC44x_TLB_UX|PPC44x_TLB_UR|PPC44x_TLB_UW)
45#define PPC44x_TLB_SUPER_PERM_MASK (PPC44x_TLB_SX|PPC44x_TLB_SR|PPC44x_TLB_SW)
46
Hollis Blancharda0d7b9f2008-11-05 09:36:11 -060047#ifdef DEBUG
48void kvmppc_dump_tlbs(struct kvm_vcpu *vcpu)
49{
Hollis Blanchard0b3bafc2010-08-07 10:33:57 -070050 struct kvmppc_vcpu_44x *vcpu_44x = to_44x(vcpu);
Hollis Blancharda0d7b9f2008-11-05 09:36:11 -060051 struct kvmppc_44x_tlbe *tlbe;
52 int i;
53
54 printk("vcpu %d TLB dump:\n", vcpu->vcpu_id);
55 printk("| %2s | %3s | %8s | %8s | %8s |\n",
56 "nr", "tid", "word0", "word1", "word2");
57
Hollis Blanchard7924bd42008-12-02 15:51:55 -060058 for (i = 0; i < ARRAY_SIZE(vcpu_44x->guest_tlb); i++) {
Hollis Blancharddb93f572008-11-05 09:36:18 -060059 tlbe = &vcpu_44x->guest_tlb[i];
Hollis Blancharda0d7b9f2008-11-05 09:36:11 -060060 if (tlbe->word0 & PPC44x_TLB_VALID)
61 printk(" G%2d | %02X | %08X | %08X | %08X |\n",
62 i, tlbe->tid, tlbe->word0, tlbe->word1,
63 tlbe->word2);
64 }
Hollis Blancharda0d7b9f2008-11-05 09:36:11 -060065}
66#endif
67
Hollis Blanchard7924bd42008-12-02 15:51:55 -060068static inline void kvmppc_44x_tlbie(unsigned int index)
69{
70 /* 0 <= index < 64, so the V bit is clear and we can use the index as
71 * word0. */
72 asm volatile(
73 "tlbwe %[index], %[index], 0\n"
74 :
75 : [index] "r"(index)
76 );
77}
78
Hollis Blanchardc5fbdff2008-12-02 15:51:56 -060079static inline void kvmppc_44x_tlbre(unsigned int index,
80 struct kvmppc_44x_tlbe *tlbe)
81{
82 asm volatile(
83 "tlbre %[word0], %[index], 0\n"
84 "mfspr %[tid], %[sprn_mmucr]\n"
85 "andi. %[tid], %[tid], 0xff\n"
86 "tlbre %[word1], %[index], 1\n"
87 "tlbre %[word2], %[index], 2\n"
88 : [word0] "=r"(tlbe->word0),
89 [word1] "=r"(tlbe->word1),
90 [word2] "=r"(tlbe->word2),
91 [tid] "=r"(tlbe->tid)
92 : [index] "r"(index),
93 [sprn_mmucr] "i"(SPRN_MMUCR)
94 : "cc"
95 );
96}
97
Hollis Blanchard7924bd42008-12-02 15:51:55 -060098static inline void kvmppc_44x_tlbwe(unsigned int index,
99 struct kvmppc_44x_tlbe *stlbe)
100{
101 unsigned long tmp;
102
103 asm volatile(
104 "mfspr %[tmp], %[sprn_mmucr]\n"
105 "rlwimi %[tmp], %[tid], 0, 0xff\n"
106 "mtspr %[sprn_mmucr], %[tmp]\n"
107 "tlbwe %[word0], %[index], 0\n"
108 "tlbwe %[word1], %[index], 1\n"
109 "tlbwe %[word2], %[index], 2\n"
110 : [tmp] "=&r"(tmp)
111 : [word0] "r"(stlbe->word0),
112 [word1] "r"(stlbe->word1),
113 [word2] "r"(stlbe->word2),
114 [tid] "r"(stlbe->tid),
115 [index] "r"(index),
116 [sprn_mmucr] "i"(SPRN_MMUCR)
117 );
118}
119
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500120static u32 kvmppc_44x_tlb_shadow_attrib(u32 attrib, int usermode)
121{
Hollis Blancharddf9b8562008-11-10 14:57:35 -0600122 /* We only care about the guest's permission and user bits. */
123 attrib &= PPC44x_TLB_PERM_MASK|PPC44x_TLB_UATTR_MASK;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500124
125 if (!usermode) {
126 /* Guest is in supervisor mode, so we need to translate guest
127 * supervisor permissions into user permissions. */
128 attrib &= ~PPC44x_TLB_USER_PERM_MASK;
129 attrib |= (attrib & PPC44x_TLB_SUPER_PERM_MASK) << 3;
130 }
131
132 /* Make sure host can always access this memory. */
133 attrib |= PPC44x_TLB_SX|PPC44x_TLB_SR|PPC44x_TLB_SW;
134
Hollis Blancharddf9b8562008-11-10 14:57:35 -0600135 /* WIMGE = 0b00100 */
136 attrib |= PPC44x_TLB_M;
137
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500138 return attrib;
139}
140
Hollis Blanchardc5fbdff2008-12-02 15:51:56 -0600141/* Load shadow TLB back into hardware. */
142void kvmppc_44x_tlb_load(struct kvm_vcpu *vcpu)
143{
144 struct kvmppc_vcpu_44x *vcpu_44x = to_44x(vcpu);
145 int i;
146
147 for (i = 0; i <= tlb_44x_hwater; i++) {
148 struct kvmppc_44x_tlbe *stlbe = &vcpu_44x->shadow_tlb[i];
149
150 if (get_tlb_v(stlbe) && get_tlb_ts(stlbe))
151 kvmppc_44x_tlbwe(i, stlbe);
152 }
153}
154
155static void kvmppc_44x_tlbe_set_modified(struct kvmppc_vcpu_44x *vcpu_44x,
156 unsigned int i)
157{
158 vcpu_44x->shadow_tlb_mod[i] = 1;
159}
160
161/* Save hardware TLB to the vcpu, and invalidate all guest mappings. */
162void kvmppc_44x_tlb_put(struct kvm_vcpu *vcpu)
163{
164 struct kvmppc_vcpu_44x *vcpu_44x = to_44x(vcpu);
165 int i;
166
167 for (i = 0; i <= tlb_44x_hwater; i++) {
168 struct kvmppc_44x_tlbe *stlbe = &vcpu_44x->shadow_tlb[i];
169
170 if (vcpu_44x->shadow_tlb_mod[i])
171 kvmppc_44x_tlbre(i, stlbe);
172
173 if (get_tlb_v(stlbe) && get_tlb_ts(stlbe))
174 kvmppc_44x_tlbie(i);
175 }
176}
177
178
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500179/* Search the guest TLB for a matching entry. */
180int kvmppc_44x_tlb_index(struct kvm_vcpu *vcpu, gva_t eaddr, unsigned int pid,
181 unsigned int as)
182{
Hollis Blancharddb93f572008-11-05 09:36:18 -0600183 struct kvmppc_vcpu_44x *vcpu_44x = to_44x(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500184 int i;
185
186 /* XXX Replace loop with fancy data structures. */
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600187 for (i = 0; i < ARRAY_SIZE(vcpu_44x->guest_tlb); i++) {
Hollis Blancharddb93f572008-11-05 09:36:18 -0600188 struct kvmppc_44x_tlbe *tlbe = &vcpu_44x->guest_tlb[i];
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500189 unsigned int tid;
190
191 if (eaddr < get_tlb_eaddr(tlbe))
192 continue;
193
194 if (eaddr > get_tlb_end(tlbe))
195 continue;
196
197 tid = get_tlb_tid(tlbe);
198 if (tid && (tid != pid))
199 continue;
200
201 if (!get_tlb_v(tlbe))
202 continue;
203
204 if (get_tlb_ts(tlbe) != as)
205 continue;
206
207 return i;
208 }
209
210 return -1;
211}
212
Hollis Blanchardbe8d1ca2009-01-03 16:23:02 -0600213gpa_t kvmppc_mmu_xlate(struct kvm_vcpu *vcpu, unsigned int gtlb_index,
214 gva_t eaddr)
215{
216 struct kvmppc_vcpu_44x *vcpu_44x = to_44x(vcpu);
217 struct kvmppc_44x_tlbe *gtlbe = &vcpu_44x->guest_tlb[gtlb_index];
218 unsigned int pgmask = get_tlb_bytes(gtlbe) - 1;
219
220 return get_tlb_raddr(gtlbe) | (eaddr & pgmask);
221}
222
Hollis Blanchardfa86b8d2009-01-03 16:23:03 -0600223int kvmppc_mmu_itlb_index(struct kvm_vcpu *vcpu, gva_t eaddr)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500224{
Alexander Graf666e7252010-07-29 14:47:43 +0200225 unsigned int as = !!(vcpu->arch.shared->msr & MSR_IS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500226
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600227 return kvmppc_44x_tlb_index(vcpu, eaddr, vcpu->arch.pid, as);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500228}
229
Hollis Blanchardfa86b8d2009-01-03 16:23:03 -0600230int kvmppc_mmu_dtlb_index(struct kvm_vcpu *vcpu, gva_t eaddr)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500231{
Alexander Graf666e7252010-07-29 14:47:43 +0200232 unsigned int as = !!(vcpu->arch.shared->msr & MSR_DS);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500233
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600234 return kvmppc_44x_tlb_index(vcpu, eaddr, vcpu->arch.pid, as);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500235}
236
Hollis Blanchardb52a6382009-01-03 16:23:11 -0600237void kvmppc_mmu_itlb_miss(struct kvm_vcpu *vcpu)
238{
239}
240
241void kvmppc_mmu_dtlb_miss(struct kvm_vcpu *vcpu)
242{
243}
244
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600245static void kvmppc_44x_shadow_release(struct kvmppc_vcpu_44x *vcpu_44x,
246 unsigned int stlb_index)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500247{
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600248 struct kvmppc_44x_shadow_ref *ref = &vcpu_44x->shadow_refs[stlb_index];
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500249
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600250 if (!ref->page)
251 return;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500252
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600253 /* Discard from the TLB. */
254 /* Note: we could actually invalidate a host mapping, if the host overwrote
255 * this TLB entry since we inserted a guest mapping. */
256 kvmppc_44x_tlbie(stlb_index);
257
258 /* Now release the page. */
259 if (ref->writeable)
260 kvm_release_page_dirty(ref->page);
261 else
262 kvm_release_page_clean(ref->page);
263
264 ref->page = NULL;
265
266 /* XXX set tlb_44x_index to stlb_index? */
267
Marcelo Tosatti46f43c62009-06-18 11:47:27 -0300268 trace_kvm_stlb_inval(stlb_index);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500269}
270
Hollis Blanchardecc09812009-01-03 16:22:59 -0600271void kvmppc_mmu_destroy(struct kvm_vcpu *vcpu)
Hollis Blanchardc30f8a62008-11-24 11:37:38 -0600272{
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600273 struct kvmppc_vcpu_44x *vcpu_44x = to_44x(vcpu);
Hollis Blanchardc30f8a62008-11-24 11:37:38 -0600274 int i;
275
276 for (i = 0; i <= tlb_44x_hwater; i++)
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600277 kvmppc_44x_shadow_release(vcpu_44x, i);
Hollis Blanchard83aae4a2008-07-25 13:54:52 -0500278}
279
Hollis Blanchard89168612008-12-02 15:51:53 -0600280/**
281 * kvmppc_mmu_map -- create a host mapping for guest memory
282 *
283 * If the guest wanted a larger page than the host supports, only the first
284 * host page is mapped here and the rest are demand faulted.
285 *
286 * If the guest wanted a smaller page than the host page size, we map only the
287 * guest-size page (i.e. not a full host page mapping).
288 *
289 * Caller must ensure that the specified guest TLB entry is safe to insert into
290 * the shadow TLB.
291 */
Hollis Blanchard58a96212009-01-03 16:23:01 -0600292void kvmppc_mmu_map(struct kvm_vcpu *vcpu, u64 gvaddr, gpa_t gpaddr,
293 unsigned int gtlb_index)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500294{
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600295 struct kvmppc_44x_tlbe stlbe;
Hollis Blancharddb93f572008-11-05 09:36:18 -0600296 struct kvmppc_vcpu_44x *vcpu_44x = to_44x(vcpu);
Hollis Blanchard58a96212009-01-03 16:23:01 -0600297 struct kvmppc_44x_tlbe *gtlbe = &vcpu_44x->guest_tlb[gtlb_index];
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600298 struct kvmppc_44x_shadow_ref *ref;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500299 struct page *new_page;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500300 hpa_t hpaddr;
Hollis Blanchard89168612008-12-02 15:51:53 -0600301 gfn_t gfn;
Hollis Blanchard58a96212009-01-03 16:23:01 -0600302 u32 asid = gtlbe->tid;
303 u32 flags = gtlbe->word2;
304 u32 max_bytes = get_tlb_bytes(gtlbe);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500305 unsigned int victim;
306
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600307 /* Select TLB entry to clobber. Indirectly guard against races with the TLB
308 * miss handler by disabling interrupts. */
309 local_irq_disable();
310 victim = ++tlb_44x_index;
311 if (victim > tlb_44x_hwater)
312 victim = 0;
313 tlb_44x_index = victim;
314 local_irq_enable();
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500315
316 /* Get reference to new page. */
Hollis Blanchard89168612008-12-02 15:51:53 -0600317 gfn = gpaddr >> PAGE_SHIFT;
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500318 new_page = gfn_to_page(vcpu->kvm, gfn);
319 if (is_error_page(new_page)) {
Joerg Roedel5689cc52010-07-01 16:00:12 +0200320 printk(KERN_ERR "Couldn't get guest page for gfn %llx!\n",
321 (unsigned long long)gfn);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500322 kvm_release_page_clean(new_page);
323 return;
324 }
325 hpaddr = page_to_phys(new_page);
326
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600327 /* Invalidate any previous shadow mappings. */
328 kvmppc_44x_shadow_release(vcpu_44x, victim);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500329
330 /* XXX Make sure (va, size) doesn't overlap any other
331 * entries. 440x6 user manual says the result would be
332 * "undefined." */
333
334 /* XXX what about AS? */
335
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500336 /* Force TS=1 for all guest mappings. */
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600337 stlbe.word0 = PPC44x_TLB_VALID | PPC44x_TLB_TS;
Hollis Blanchard89168612008-12-02 15:51:53 -0600338
339 if (max_bytes >= PAGE_SIZE) {
340 /* Guest mapping is larger than or equal to host page size. We can use
341 * a "native" host mapping. */
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600342 stlbe.word0 |= (gvaddr & PAGE_MASK) | PPC44x_TLBE_SIZE;
Hollis Blanchard89168612008-12-02 15:51:53 -0600343 } else {
344 /* Guest mapping is smaller than host page size. We must restrict the
345 * size of the mapping to be at most the smaller of the two, but for
346 * simplicity we fall back to a 4K mapping (this is probably what the
347 * guest is using anyways). */
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600348 stlbe.word0 |= (gvaddr & PAGE_MASK_4K) | PPC44x_TLB_4K;
Hollis Blanchard89168612008-12-02 15:51:53 -0600349
350 /* 'hpaddr' is a host page, which is larger than the mapping we're
351 * inserting here. To compensate, we must add the in-page offset to the
352 * sub-page. */
353 hpaddr |= gpaddr & (PAGE_MASK ^ PAGE_MASK_4K);
354 }
355
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600356 stlbe.word1 = (hpaddr & 0xfffffc00) | ((hpaddr >> 32) & 0xf);
357 stlbe.word2 = kvmppc_44x_tlb_shadow_attrib(flags,
Alexander Graf666e7252010-07-29 14:47:43 +0200358 vcpu->arch.shared->msr & MSR_PR);
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600359 stlbe.tid = !(asid & 0xff);
Jerone Young31711f22008-07-14 14:00:03 +0200360
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600361 /* Keep track of the reference so we can properly release it later. */
362 ref = &vcpu_44x->shadow_refs[victim];
363 ref->page = new_page;
364 ref->gtlb_index = gtlb_index;
365 ref->writeable = !!(stlbe.word2 & PPC44x_TLB_UW);
366 ref->tid = stlbe.tid;
367
368 /* Insert shadow mapping into hardware TLB. */
Hollis Blanchardc5fbdff2008-12-02 15:51:56 -0600369 kvmppc_44x_tlbe_set_modified(vcpu_44x, victim);
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600370 kvmppc_44x_tlbwe(victim, &stlbe);
Marcelo Tosatti46f43c62009-06-18 11:47:27 -0300371 trace_kvm_stlb_write(victim, stlbe.tid, stlbe.word0, stlbe.word1,
372 stlbe.word2);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500373}
374
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600375/* For a particular guest TLB entry, invalidate the corresponding host TLB
376 * mappings and release the host pages. */
377static void kvmppc_44x_invalidate(struct kvm_vcpu *vcpu,
378 unsigned int gtlb_index)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500379{
Hollis Blancharddb93f572008-11-05 09:36:18 -0600380 struct kvmppc_vcpu_44x *vcpu_44x = to_44x(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500381 int i;
382
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600383 for (i = 0; i < ARRAY_SIZE(vcpu_44x->shadow_refs); i++) {
384 struct kvmppc_44x_shadow_ref *ref = &vcpu_44x->shadow_refs[i];
385 if (ref->gtlb_index == gtlb_index)
386 kvmppc_44x_shadow_release(vcpu_44x, i);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500387 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500388}
389
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500390void kvmppc_mmu_priv_switch(struct kvm_vcpu *vcpu, int usermode)
391{
Hollis Blanchardfe4e7712008-11-10 14:57:36 -0600392 vcpu->arch.shadow_pid = !usermode;
393}
394
395void kvmppc_set_pid(struct kvm_vcpu *vcpu, u32 new_pid)
396{
Hollis Blancharddb93f572008-11-05 09:36:18 -0600397 struct kvmppc_vcpu_44x *vcpu_44x = to_44x(vcpu);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500398 int i;
399
Hollis Blanchardfe4e7712008-11-10 14:57:36 -0600400 if (unlikely(vcpu->arch.pid == new_pid))
401 return;
Jerone Young31711f22008-07-14 14:00:03 +0200402
Hollis Blanchardfe4e7712008-11-10 14:57:36 -0600403 vcpu->arch.pid = new_pid;
404
405 /* Guest userspace runs with TID=0 mappings and PID=0, to make sure it
406 * can't access guest kernel mappings (TID=1). When we switch to a new
407 * guest PID, which will also use host PID=0, we must discard the old guest
408 * userspace mappings. */
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600409 for (i = 0; i < ARRAY_SIZE(vcpu_44x->shadow_refs); i++) {
410 struct kvmppc_44x_shadow_ref *ref = &vcpu_44x->shadow_refs[i];
Hollis Blanchardfe4e7712008-11-10 14:57:36 -0600411
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600412 if (ref->tid == 0)
413 kvmppc_44x_shadow_release(vcpu_44x, i);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500414 }
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500415}
Hollis Blancharda0d7b9f2008-11-05 09:36:11 -0600416
417static int tlbe_is_host_safe(const struct kvm_vcpu *vcpu,
Hollis Blanchard0f55dc42008-11-05 09:36:12 -0600418 const struct kvmppc_44x_tlbe *tlbe)
Hollis Blancharda0d7b9f2008-11-05 09:36:11 -0600419{
420 gpa_t gpa;
421
422 if (!get_tlb_v(tlbe))
423 return 0;
424
425 /* Does it match current guest AS? */
426 /* XXX what about IS != DS? */
Alexander Graf666e7252010-07-29 14:47:43 +0200427 if (get_tlb_ts(tlbe) != !!(vcpu->arch.shared->msr & MSR_IS))
Hollis Blancharda0d7b9f2008-11-05 09:36:11 -0600428 return 0;
429
430 gpa = get_tlb_raddr(tlbe);
431 if (!gfn_to_memslot(vcpu->kvm, gpa >> PAGE_SHIFT))
432 /* Mapping is not for RAM. */
433 return 0;
434
435 return 1;
436}
437
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600438int kvmppc_44x_emul_tlbwe(struct kvm_vcpu *vcpu, u8 ra, u8 rs, u8 ws)
Hollis Blancharda0d7b9f2008-11-05 09:36:11 -0600439{
Hollis Blancharddb93f572008-11-05 09:36:18 -0600440 struct kvmppc_vcpu_44x *vcpu_44x = to_44x(vcpu);
Hollis Blanchard0f55dc42008-11-05 09:36:12 -0600441 struct kvmppc_44x_tlbe *tlbe;
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600442 unsigned int gtlb_index;
Hollis Blancharda0d7b9f2008-11-05 09:36:11 -0600443
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100444 gtlb_index = kvmppc_get_gpr(vcpu, ra);
Roel Kluin4f018c52010-05-09 17:26:47 +0200445 if (gtlb_index >= KVM44x_GUEST_TLB_SIZE) {
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600446 printk("%s: index %d\n", __func__, gtlb_index);
Hollis Blancharda0d7b9f2008-11-05 09:36:11 -0600447 kvmppc_dump_vcpu(vcpu);
448 return EMULATE_FAIL;
449 }
450
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600451 tlbe = &vcpu_44x->guest_tlb[gtlb_index];
Hollis Blancharda0d7b9f2008-11-05 09:36:11 -0600452
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600453 /* Invalidate shadow mappings for the about-to-be-clobbered TLB entry. */
454 if (tlbe->word0 & PPC44x_TLB_VALID)
455 kvmppc_44x_invalidate(vcpu, gtlb_index);
Hollis Blancharda0d7b9f2008-11-05 09:36:11 -0600456
457 switch (ws) {
458 case PPC44x_TLB_PAGEID:
Hollis Blanchardbf5d4022008-11-10 14:57:34 -0600459 tlbe->tid = get_mmucr_stid(vcpu);
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100460 tlbe->word0 = kvmppc_get_gpr(vcpu, rs);
Hollis Blancharda0d7b9f2008-11-05 09:36:11 -0600461 break;
462
463 case PPC44x_TLB_XLAT:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100464 tlbe->word1 = kvmppc_get_gpr(vcpu, rs);
Hollis Blancharda0d7b9f2008-11-05 09:36:11 -0600465 break;
466
467 case PPC44x_TLB_ATTRIB:
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100468 tlbe->word2 = kvmppc_get_gpr(vcpu, rs);
Hollis Blancharda0d7b9f2008-11-05 09:36:11 -0600469 break;
470
471 default:
472 return EMULATE_FAIL;
473 }
474
475 if (tlbe_is_host_safe(vcpu, tlbe)) {
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600476 gva_t eaddr;
Hollis Blanchard89168612008-12-02 15:51:53 -0600477 gpa_t gpaddr;
Hollis Blanchard89168612008-12-02 15:51:53 -0600478 u32 bytes;
479
Hollis Blancharda0d7b9f2008-11-05 09:36:11 -0600480 eaddr = get_tlb_eaddr(tlbe);
Hollis Blanchard89168612008-12-02 15:51:53 -0600481 gpaddr = get_tlb_raddr(tlbe);
482
483 /* Use the advertised page size to mask effective and real addrs. */
484 bytes = get_tlb_bytes(tlbe);
485 eaddr &= ~(bytes - 1);
486 gpaddr &= ~(bytes - 1);
487
Hollis Blanchard58a96212009-01-03 16:23:01 -0600488 kvmppc_mmu_map(vcpu, eaddr, gpaddr, gtlb_index);
Hollis Blancharda0d7b9f2008-11-05 09:36:11 -0600489 }
490
Marcelo Tosatti46f43c62009-06-18 11:47:27 -0300491 trace_kvm_gtlb_write(gtlb_index, tlbe->tid, tlbe->word0, tlbe->word1,
492 tlbe->word2);
Hollis Blancharda0d7b9f2008-11-05 09:36:11 -0600493
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600494 kvmppc_set_exit_type(vcpu, EMULATED_TLBWE_EXITS);
Hollis Blancharda0d7b9f2008-11-05 09:36:11 -0600495 return EMULATE_DONE;
496}
497
Hollis Blanchard75f74f02008-11-05 09:36:16 -0600498int kvmppc_44x_emul_tlbsx(struct kvm_vcpu *vcpu, u8 rt, u8 ra, u8 rb, u8 rc)
Hollis Blancharda0d7b9f2008-11-05 09:36:11 -0600499{
500 u32 ea;
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600501 int gtlb_index;
Hollis Blancharda0d7b9f2008-11-05 09:36:11 -0600502 unsigned int as = get_mmucr_sts(vcpu);
503 unsigned int pid = get_mmucr_stid(vcpu);
504
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100505 ea = kvmppc_get_gpr(vcpu, rb);
Hollis Blancharda0d7b9f2008-11-05 09:36:11 -0600506 if (ra)
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100507 ea += kvmppc_get_gpr(vcpu, ra);
Hollis Blancharda0d7b9f2008-11-05 09:36:11 -0600508
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600509 gtlb_index = kvmppc_44x_tlb_index(vcpu, ea, pid, as);
Hollis Blancharda0d7b9f2008-11-05 09:36:11 -0600510 if (rc) {
Alexander Graf992b5b22010-01-08 02:58:02 +0100511 u32 cr = kvmppc_get_cr(vcpu);
512
Hollis Blanchard7924bd42008-12-02 15:51:55 -0600513 if (gtlb_index < 0)
Alexander Graf992b5b22010-01-08 02:58:02 +0100514 kvmppc_set_cr(vcpu, cr & ~0x20000000);
Hollis Blancharda0d7b9f2008-11-05 09:36:11 -0600515 else
Alexander Graf992b5b22010-01-08 02:58:02 +0100516 kvmppc_set_cr(vcpu, cr | 0x20000000);
Hollis Blancharda0d7b9f2008-11-05 09:36:11 -0600517 }
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100518 kvmppc_set_gpr(vcpu, rt, gtlb_index);
Hollis Blancharda0d7b9f2008-11-05 09:36:11 -0600519
Hollis Blanchard73e75b42008-12-02 15:51:57 -0600520 kvmppc_set_exit_type(vcpu, EMULATED_TLBSX_EXITS);
Hollis Blancharda0d7b9f2008-11-05 09:36:11 -0600521 return EMULATE_DONE;
522}