blob: ea394571bbb60a076b2f383b6578532af7a850a5 [file] [log] [blame]
Hollis Blanchardbc8080c2009-01-03 16:23:10 -06001/*
Scott Wood49ea0692011-03-28 15:01:24 -05002 * Copyright (C) 2008-2011 Freescale Semiconductor, Inc. All rights reserved.
Hollis Blanchardbc8080c2009-01-03 16:23:10 -06003 *
4 * Author: Yu Liu, yu.liu@freescale.com
5 *
6 * Description:
7 * This file is based on arch/powerpc/kvm/44x_tlb.c,
8 * by Hollis Blanchard <hollisb@us.ibm.com>.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License, version 2, as
12 * published by the Free Software Foundation.
13 */
14
15#include <linux/types.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/slab.h>
Hollis Blanchardbc8080c2009-01-03 16:23:10 -060017#include <linux/string.h>
18#include <linux/kvm.h>
19#include <linux/kvm_host.h>
20#include <linux/highmem.h>
21#include <asm/kvm_ppc.h>
22#include <asm/kvm_e500.h>
23
Liu Yu9aa4dd52009-01-14 10:47:38 -060024#include "../mm/mmu_decl.h"
Hollis Blanchardbc8080c2009-01-03 16:23:10 -060025#include "e500_tlb.h"
Marcelo Tosatti46f43c62009-06-18 11:47:27 -030026#include "trace.h"
Scott Wood49ea0692011-03-28 15:01:24 -050027#include "timing.h"
Hollis Blanchardbc8080c2009-01-03 16:23:10 -060028
29#define to_htlb1_esel(esel) (tlb1_entry_num - (esel) - 1)
30
Liu Yudd9ebf1f2011-06-14 18:35:14 -050031struct id {
32 unsigned long val;
33 struct id **pentry;
34};
35
36#define NUM_TIDS 256
37
38/*
39 * This table provide mappings from:
40 * (guestAS,guestTID,guestPR) --> ID of physical cpu
41 * guestAS [0..1]
42 * guestTID [0..255]
43 * guestPR [0..1]
44 * ID [1..255]
45 * Each vcpu keeps one vcpu_id_table.
46 */
47struct vcpu_id_table {
48 struct id id[2][NUM_TIDS][2];
49};
50
51/*
52 * This table provide reversed mappings of vcpu_id_table:
53 * ID --> address of vcpu_id_table item.
54 * Each physical core has one pcpu_id_table.
55 */
56struct pcpu_id_table {
57 struct id *entry[NUM_TIDS];
58};
59
60static DEFINE_PER_CPU(struct pcpu_id_table, pcpu_sids);
61
62/* This variable keeps last used shadow ID on local core.
63 * The valid range of shadow ID is [1..255] */
64static DEFINE_PER_CPU(unsigned long, pcpu_last_used_sid);
65
Hollis Blanchardbc8080c2009-01-03 16:23:10 -060066static unsigned int tlb1_entry_num;
67
Liu Yudd9ebf1f2011-06-14 18:35:14 -050068/*
69 * Allocate a free shadow id and setup a valid sid mapping in given entry.
70 * A mapping is only valid when vcpu_id_table and pcpu_id_table are match.
71 *
72 * The caller must have preemption disabled, and keep it that way until
73 * it has finished with the returned shadow id (either written into the
74 * TLB or arch.shadow_pid, or discarded).
75 */
76static inline int local_sid_setup_one(struct id *entry)
77{
78 unsigned long sid;
79 int ret = -1;
80
81 sid = ++(__get_cpu_var(pcpu_last_used_sid));
82 if (sid < NUM_TIDS) {
83 __get_cpu_var(pcpu_sids).entry[sid] = entry;
84 entry->val = sid;
85 entry->pentry = &__get_cpu_var(pcpu_sids).entry[sid];
86 ret = sid;
87 }
88
89 /*
90 * If sid == NUM_TIDS, we've run out of sids. We return -1, and
91 * the caller will invalidate everything and start over.
92 *
93 * sid > NUM_TIDS indicates a race, which we disable preemption to
94 * avoid.
95 */
96 WARN_ON(sid > NUM_TIDS);
97
98 return ret;
99}
100
101/*
102 * Check if given entry contain a valid shadow id mapping.
103 * An ID mapping is considered valid only if
104 * both vcpu and pcpu know this mapping.
105 *
106 * The caller must have preemption disabled, and keep it that way until
107 * it has finished with the returned shadow id (either written into the
108 * TLB or arch.shadow_pid, or discarded).
109 */
110static inline int local_sid_lookup(struct id *entry)
111{
112 if (entry && entry->val != 0 &&
113 __get_cpu_var(pcpu_sids).entry[entry->val] == entry &&
114 entry->pentry == &__get_cpu_var(pcpu_sids).entry[entry->val])
115 return entry->val;
116 return -1;
117}
118
119/* Invalidate all id mappings on local core */
120static inline void local_sid_destroy_all(void)
121{
122 preempt_disable();
123 __get_cpu_var(pcpu_last_used_sid) = 0;
124 memset(&__get_cpu_var(pcpu_sids), 0, sizeof(__get_cpu_var(pcpu_sids)));
125 preempt_enable();
126}
127
128static void *kvmppc_e500_id_table_alloc(struct kvmppc_vcpu_e500 *vcpu_e500)
129{
130 vcpu_e500->idt = kzalloc(sizeof(struct vcpu_id_table), GFP_KERNEL);
131 return vcpu_e500->idt;
132}
133
134static void kvmppc_e500_id_table_free(struct kvmppc_vcpu_e500 *vcpu_e500)
135{
136 kfree(vcpu_e500->idt);
137}
138
139/* Invalidate all mappings on vcpu */
140static void kvmppc_e500_id_table_reset_all(struct kvmppc_vcpu_e500 *vcpu_e500)
141{
142 memset(vcpu_e500->idt, 0, sizeof(struct vcpu_id_table));
143
144 /* Update shadow pid when mappings are changed */
145 kvmppc_e500_recalc_shadow_pid(vcpu_e500);
146}
147
148/* Invalidate one ID mapping on vcpu */
149static inline void kvmppc_e500_id_table_reset_one(
150 struct kvmppc_vcpu_e500 *vcpu_e500,
151 int as, int pid, int pr)
152{
153 struct vcpu_id_table *idt = vcpu_e500->idt;
154
155 BUG_ON(as >= 2);
156 BUG_ON(pid >= NUM_TIDS);
157 BUG_ON(pr >= 2);
158
159 idt->id[as][pid][pr].val = 0;
160 idt->id[as][pid][pr].pentry = NULL;
161
162 /* Update shadow pid when mappings are changed */
163 kvmppc_e500_recalc_shadow_pid(vcpu_e500);
164}
165
166/*
167 * Map guest (vcpu,AS,ID,PR) to physical core shadow id.
168 * This function first lookup if a valid mapping exists,
169 * if not, then creates a new one.
170 *
171 * The caller must have preemption disabled, and keep it that way until
172 * it has finished with the returned shadow id (either written into the
173 * TLB or arch.shadow_pid, or discarded).
174 */
175static unsigned int kvmppc_e500_get_sid(struct kvmppc_vcpu_e500 *vcpu_e500,
176 unsigned int as, unsigned int gid,
177 unsigned int pr, int avoid_recursion)
178{
179 struct vcpu_id_table *idt = vcpu_e500->idt;
180 int sid;
181
182 BUG_ON(as >= 2);
183 BUG_ON(gid >= NUM_TIDS);
184 BUG_ON(pr >= 2);
185
186 sid = local_sid_lookup(&idt->id[as][gid][pr]);
187
188 while (sid <= 0) {
189 /* No mapping yet */
190 sid = local_sid_setup_one(&idt->id[as][gid][pr]);
191 if (sid <= 0) {
192 _tlbil_all();
193 local_sid_destroy_all();
194 }
195
196 /* Update shadow pid when mappings are changed */
197 if (!avoid_recursion)
198 kvmppc_e500_recalc_shadow_pid(vcpu_e500);
199 }
200
201 return sid;
202}
203
204/* Map guest pid to shadow.
205 * We use PID to keep shadow of current guest non-zero PID,
206 * and use PID1 to keep shadow of guest zero PID.
207 * So that guest tlbe with TID=0 can be accessed at any time */
208void kvmppc_e500_recalc_shadow_pid(struct kvmppc_vcpu_e500 *vcpu_e500)
209{
210 preempt_disable();
211 vcpu_e500->vcpu.arch.shadow_pid = kvmppc_e500_get_sid(vcpu_e500,
212 get_cur_as(&vcpu_e500->vcpu),
213 get_cur_pid(&vcpu_e500->vcpu),
214 get_cur_pr(&vcpu_e500->vcpu), 1);
215 vcpu_e500->vcpu.arch.shadow_pid1 = kvmppc_e500_get_sid(vcpu_e500,
216 get_cur_as(&vcpu_e500->vcpu), 0,
217 get_cur_pr(&vcpu_e500->vcpu), 1);
218 preempt_enable();
219}
220
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600221void kvmppc_dump_tlbs(struct kvm_vcpu *vcpu)
222{
223 struct kvmppc_vcpu_e500 *vcpu_e500 = to_e500(vcpu);
224 struct tlbe *tlbe;
225 int i, tlbsel;
226
227 printk("| %8s | %8s | %8s | %8s | %8s |\n",
228 "nr", "mas1", "mas2", "mas3", "mas7");
229
230 for (tlbsel = 0; tlbsel < 2; tlbsel++) {
231 printk("Guest TLB%d:\n", tlbsel);
Liu Yu08b7fa92011-06-14 18:34:59 -0500232 for (i = 0; i < vcpu_e500->gtlb_size[tlbsel]; i++) {
233 tlbe = &vcpu_e500->gtlb_arch[tlbsel][i];
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600234 if (tlbe->mas1 & MAS1_VALID)
235 printk(" G[%d][%3d] | %08X | %08X | %08X | %08X |\n",
236 tlbsel, i, tlbe->mas1, tlbe->mas2,
237 tlbe->mas3, tlbe->mas7);
238 }
239 }
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600240}
241
242static inline unsigned int tlb0_get_next_victim(
243 struct kvmppc_vcpu_e500 *vcpu_e500)
244{
245 unsigned int victim;
246
Liu Yu08b7fa92011-06-14 18:34:59 -0500247 victim = vcpu_e500->gtlb_nv[0]++;
248 if (unlikely(vcpu_e500->gtlb_nv[0] >= KVM_E500_TLB0_WAY_NUM))
249 vcpu_e500->gtlb_nv[0] = 0;
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600250
251 return victim;
252}
253
254static inline unsigned int tlb1_max_shadow_size(void)
255{
Scott Wooda4cd8b22011-06-14 18:34:41 -0500256 /* reserve one entry for magic page */
257 return tlb1_entry_num - tlbcam_index - 1;
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600258}
259
260static inline int tlbe_is_writable(struct tlbe *tlbe)
261{
262 return tlbe->mas3 & (MAS3_SW|MAS3_UW);
263}
264
265static inline u32 e500_shadow_mas3_attrib(u32 mas3, int usermode)
266{
267 /* Mask off reserved bits. */
268 mas3 &= MAS3_ATTRIB_MASK;
269
270 if (!usermode) {
271 /* Guest is in supervisor mode,
272 * so we need to translate guest
273 * supervisor permissions into user permissions. */
274 mas3 &= ~E500_TLB_USER_PERM_MASK;
275 mas3 |= (mas3 & E500_TLB_SUPER_PERM_MASK) << 1;
276 }
277
278 return mas3 | E500_TLB_SUPER_PERM_MASK;
279}
280
281static inline u32 e500_shadow_mas2_attrib(u32 mas2, int usermode)
282{
Liu Yu046a48b2009-03-17 16:57:46 +0800283#ifdef CONFIG_SMP
284 return (mas2 & MAS2_ATTRIB_MASK) | MAS2_M;
285#else
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600286 return mas2 & MAS2_ATTRIB_MASK;
Liu Yu046a48b2009-03-17 16:57:46 +0800287#endif
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600288}
289
290/*
291 * writing shadow tlb entry to host TLB
292 */
Scott Wood0ef3099562011-06-14 18:34:35 -0500293static inline void __write_host_tlbe(struct tlbe *stlbe, uint32_t mas0)
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600294{
Scott Wood0ef3099562011-06-14 18:34:35 -0500295 unsigned long flags;
296
297 local_irq_save(flags);
298 mtspr(SPRN_MAS0, mas0);
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600299 mtspr(SPRN_MAS1, stlbe->mas1);
300 mtspr(SPRN_MAS2, stlbe->mas2);
301 mtspr(SPRN_MAS3, stlbe->mas3);
302 mtspr(SPRN_MAS7, stlbe->mas7);
Scott Wood0ef3099562011-06-14 18:34:35 -0500303 asm volatile("isync; tlbwe" : : : "memory");
304 local_irq_restore(flags);
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600305}
306
307static inline void write_host_tlbe(struct kvmppc_vcpu_e500 *vcpu_e500,
Liu Yu08b7fa92011-06-14 18:34:59 -0500308 int tlbsel, int esel, struct tlbe *stlbe)
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600309{
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600310 if (tlbsel == 0) {
Scott Wood0ef3099562011-06-14 18:34:35 -0500311 __write_host_tlbe(stlbe,
312 MAS0_TLBSEL(0) |
313 MAS0_ESEL(esel & (KVM_E500_TLB0_WAY_NUM - 1)));
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600314 } else {
Scott Wood0ef3099562011-06-14 18:34:35 -0500315 __write_host_tlbe(stlbe,
316 MAS0_TLBSEL(1) |
317 MAS0_ESEL(to_htlb1_esel(esel)));
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600318 }
Liu Yu08b7fa92011-06-14 18:34:59 -0500319 trace_kvm_stlb_write(index_of(tlbsel, esel), stlbe->mas1, stlbe->mas2,
320 stlbe->mas3, stlbe->mas7);
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600321}
322
Scott Wooda4cd8b22011-06-14 18:34:41 -0500323void kvmppc_map_magic(struct kvm_vcpu *vcpu)
324{
Liu Yudd9ebf1f2011-06-14 18:35:14 -0500325 struct kvmppc_vcpu_e500 *vcpu_e500 = to_e500(vcpu);
Scott Wooda4cd8b22011-06-14 18:34:41 -0500326 struct tlbe magic;
327 ulong shared_page = ((ulong)vcpu->arch.shared) & PAGE_MASK;
Liu Yudd9ebf1f2011-06-14 18:35:14 -0500328 unsigned int stid;
Scott Wooda4cd8b22011-06-14 18:34:41 -0500329 pfn_t pfn;
330
331 pfn = (pfn_t)virt_to_phys((void *)shared_page) >> PAGE_SHIFT;
332 get_page(pfn_to_page(pfn));
333
Liu Yudd9ebf1f2011-06-14 18:35:14 -0500334 preempt_disable();
335 stid = kvmppc_e500_get_sid(vcpu_e500, 0, 0, 0, 0);
336
337 magic.mas1 = MAS1_VALID | MAS1_TS | MAS1_TID(stid) |
Scott Wooda4cd8b22011-06-14 18:34:41 -0500338 MAS1_TSIZE(BOOK3E_PAGESZ_4K);
339 magic.mas2 = vcpu->arch.magic_page_ea | MAS2_M;
340 magic.mas3 = (pfn << PAGE_SHIFT) |
341 MAS3_SW | MAS3_SR | MAS3_UW | MAS3_UR;
342 magic.mas7 = pfn >> (32 - PAGE_SHIFT);
343
344 __write_host_tlbe(&magic, MAS0_TLBSEL(1) | MAS0_ESEL(tlbcam_index));
Liu Yudd9ebf1f2011-06-14 18:35:14 -0500345 preempt_enable();
Scott Wooda4cd8b22011-06-14 18:34:41 -0500346}
347
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600348void kvmppc_e500_tlb_load(struct kvm_vcpu *vcpu, int cpu)
349{
Liu Yudd9ebf1f2011-06-14 18:35:14 -0500350 struct kvmppc_vcpu_e500 *vcpu_e500 = to_e500(vcpu);
351
352 /* Shadow PID may be expired on local core */
353 kvmppc_e500_recalc_shadow_pid(vcpu_e500);
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600354}
355
356void kvmppc_e500_tlb_put(struct kvm_vcpu *vcpu)
357{
Liu Yudd9ebf1f2011-06-14 18:35:14 -0500358}
359
360static void kvmppc_e500_stlbe_invalidate(struct kvmppc_vcpu_e500 *vcpu_e500,
361 int tlbsel, int esel)
362{
363 struct tlbe *gtlbe = &vcpu_e500->gtlb_arch[tlbsel][esel];
364 struct vcpu_id_table *idt = vcpu_e500->idt;
365 unsigned int pr, tid, ts, pid;
366 u32 val, eaddr;
367 unsigned long flags;
368
369 ts = get_tlb_ts(gtlbe);
370 tid = get_tlb_tid(gtlbe);
371
372 preempt_disable();
373
374 /* One guest ID may be mapped to two shadow IDs */
375 for (pr = 0; pr < 2; pr++) {
376 /*
377 * The shadow PID can have a valid mapping on at most one
378 * host CPU. In the common case, it will be valid on this
379 * CPU, in which case (for TLB0) we do a local invalidation
380 * of the specific address.
381 *
382 * If the shadow PID is not valid on the current host CPU, or
383 * if we're invalidating a TLB1 entry, we invalidate the
384 * entire shadow PID.
385 */
386 if (tlbsel == 1 ||
387 (pid = local_sid_lookup(&idt->id[ts][tid][pr])) <= 0) {
388 kvmppc_e500_id_table_reset_one(vcpu_e500, ts, tid, pr);
389 continue;
390 }
391
392 /*
393 * The guest is invalidating a TLB0 entry which is in a PID
394 * that has a valid shadow mapping on this host CPU. We
395 * search host TLB0 to invalidate it's shadow TLB entry,
396 * similar to __tlbil_va except that we need to look in AS1.
397 */
398 val = (pid << MAS6_SPID_SHIFT) | MAS6_SAS;
399 eaddr = get_tlb_eaddr(gtlbe);
400
401 local_irq_save(flags);
402
403 mtspr(SPRN_MAS6, val);
404 asm volatile("tlbsx 0, %[eaddr]" : : [eaddr] "r" (eaddr));
405 val = mfspr(SPRN_MAS1);
406 if (val & MAS1_VALID) {
407 mtspr(SPRN_MAS1, val & ~MAS1_VALID);
408 asm volatile("tlbwe");
409 }
410
411 local_irq_restore(flags);
412 }
413
414 preempt_enable();
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600415}
416
417/* Search the guest TLB for a matching entry. */
418static int kvmppc_e500_tlb_index(struct kvmppc_vcpu_e500 *vcpu_e500,
419 gva_t eaddr, int tlbsel, unsigned int pid, int as)
420{
421 int i;
422
423 /* XXX Replace loop with fancy data structures. */
Liu Yu08b7fa92011-06-14 18:34:59 -0500424 for (i = 0; i < vcpu_e500->gtlb_size[tlbsel]; i++) {
425 struct tlbe *tlbe = &vcpu_e500->gtlb_arch[tlbsel][i];
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600426 unsigned int tid;
427
428 if (eaddr < get_tlb_eaddr(tlbe))
429 continue;
430
431 if (eaddr > get_tlb_end(tlbe))
432 continue;
433
434 tid = get_tlb_tid(tlbe);
435 if (tid && (tid != pid))
436 continue;
437
438 if (!get_tlb_v(tlbe))
439 continue;
440
441 if (get_tlb_ts(tlbe) != as && as != -1)
442 continue;
443
444 return i;
445 }
446
447 return -1;
448}
449
Liu Yu08b7fa92011-06-14 18:34:59 -0500450static inline void kvmppc_e500_priv_setup(struct tlbe_priv *priv,
451 struct tlbe *gtlbe,
452 pfn_t pfn)
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600453{
Liu Yu08b7fa92011-06-14 18:34:59 -0500454 priv->pfn = pfn;
455 priv->flags = E500_TLB_VALID;
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600456
Liu Yu08b7fa92011-06-14 18:34:59 -0500457 if (tlbe_is_writable(gtlbe))
458 priv->flags |= E500_TLB_DIRTY;
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600459}
460
Liu Yu08b7fa92011-06-14 18:34:59 -0500461static inline void kvmppc_e500_priv_release(struct tlbe_priv *priv)
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600462{
Liu Yu08b7fa92011-06-14 18:34:59 -0500463 if (priv->flags & E500_TLB_VALID) {
464 if (priv->flags & E500_TLB_DIRTY)
465 kvm_release_pfn_dirty(priv->pfn);
466 else
467 kvm_release_pfn_clean(priv->pfn);
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600468
Liu Yu08b7fa92011-06-14 18:34:59 -0500469 priv->flags = 0;
470 }
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600471}
472
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600473static inline void kvmppc_e500_deliver_tlb_miss(struct kvm_vcpu *vcpu,
474 unsigned int eaddr, int as)
475{
476 struct kvmppc_vcpu_e500 *vcpu_e500 = to_e500(vcpu);
477 unsigned int victim, pidsel, tsized;
478 int tlbsel;
479
Liu Yufb2838d2009-01-14 10:47:37 -0600480 /* since we only have two TLBs, only lower bit is used. */
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600481 tlbsel = (vcpu_e500->mas4 >> 28) & 0x1;
482 victim = (tlbsel == 0) ? tlb0_get_next_victim(vcpu_e500) : 0;
483 pidsel = (vcpu_e500->mas4 >> 16) & 0xf;
Liu Yu0cfb50e2009-06-05 14:54:29 +0800484 tsized = (vcpu_e500->mas4 >> 7) & 0x1f;
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600485
486 vcpu_e500->mas0 = MAS0_TLBSEL(tlbsel) | MAS0_ESEL(victim)
Liu Yu08b7fa92011-06-14 18:34:59 -0500487 | MAS0_NV(vcpu_e500->gtlb_nv[tlbsel]);
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600488 vcpu_e500->mas1 = MAS1_VALID | (as ? MAS1_TS : 0)
489 | MAS1_TID(vcpu_e500->pid[pidsel])
490 | MAS1_TSIZE(tsized);
491 vcpu_e500->mas2 = (eaddr & MAS2_EPN)
492 | (vcpu_e500->mas4 & MAS2_ATTRIB_MASK);
493 vcpu_e500->mas3 &= MAS3_U0 | MAS3_U1 | MAS3_U2 | MAS3_U3;
494 vcpu_e500->mas6 = (vcpu_e500->mas6 & MAS6_SPID1)
495 | (get_cur_pid(vcpu) << 16)
496 | (as ? MAS6_SAS : 0);
497 vcpu_e500->mas7 = 0;
498}
499
Liu Yu08b7fa92011-06-14 18:34:59 -0500500static inline void kvmppc_e500_setup_stlbe(struct kvmppc_vcpu_e500 *vcpu_e500,
501 struct tlbe *gtlbe, int tsize,
502 struct tlbe_priv *priv,
503 u64 gvaddr, struct tlbe *stlbe)
504{
505 pfn_t pfn = priv->pfn;
Liu Yudd9ebf1f2011-06-14 18:35:14 -0500506 unsigned int stid;
507
508 stid = kvmppc_e500_get_sid(vcpu_e500, get_tlb_ts(gtlbe),
509 get_tlb_tid(gtlbe),
510 get_cur_pr(&vcpu_e500->vcpu), 0);
Liu Yu08b7fa92011-06-14 18:34:59 -0500511
512 /* Force TS=1 IPROT=0 for all guest mappings. */
513 stlbe->mas1 = MAS1_TSIZE(tsize)
Liu Yudd9ebf1f2011-06-14 18:35:14 -0500514 | MAS1_TID(stid) | MAS1_TS | MAS1_VALID;
Liu Yu08b7fa92011-06-14 18:34:59 -0500515 stlbe->mas2 = (gvaddr & MAS2_EPN)
516 | e500_shadow_mas2_attrib(gtlbe->mas2,
517 vcpu_e500->vcpu.arch.shared->msr & MSR_PR);
518 stlbe->mas3 = ((pfn << PAGE_SHIFT) & MAS3_RPN)
519 | e500_shadow_mas3_attrib(gtlbe->mas3,
520 vcpu_e500->vcpu.arch.shared->msr & MSR_PR);
521 stlbe->mas7 = (pfn >> (32 - PAGE_SHIFT)) & MAS7_RPN;
522}
523
524
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600525static inline void kvmppc_e500_shadow_map(struct kvmppc_vcpu_e500 *vcpu_e500,
Liu Yu08b7fa92011-06-14 18:34:59 -0500526 u64 gvaddr, gfn_t gfn, struct tlbe *gtlbe, int tlbsel, int esel,
527 struct tlbe *stlbe)
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600528{
Scott Wood9973d542011-06-14 18:34:39 -0500529 struct kvm_memory_slot *slot;
Scott Wood9973d542011-06-14 18:34:39 -0500530 unsigned long pfn, hva;
531 int pfnmap = 0;
532 int tsize = BOOK3E_PAGESZ_4K;
Liu Yu08b7fa92011-06-14 18:34:59 -0500533 struct tlbe_priv *priv;
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600534
Scott Wood59c1f4e2011-06-14 18:34:37 -0500535 /*
536 * Translate guest physical to true physical, acquiring
537 * a page reference if it is normal, non-reserved memory.
Scott Wood9973d542011-06-14 18:34:39 -0500538 *
539 * gfn_to_memslot() must succeed because otherwise we wouldn't
540 * have gotten this far. Eventually we should just pass the slot
541 * pointer through from the first lookup.
Scott Wood59c1f4e2011-06-14 18:34:37 -0500542 */
Scott Wood9973d542011-06-14 18:34:39 -0500543 slot = gfn_to_memslot(vcpu_e500->vcpu.kvm, gfn);
544 hva = gfn_to_hva_memslot(slot, gfn);
545
546 if (tlbsel == 1) {
547 struct vm_area_struct *vma;
548 down_read(&current->mm->mmap_sem);
549
550 vma = find_vma(current->mm, hva);
551 if (vma && hva >= vma->vm_start &&
552 (vma->vm_flags & VM_PFNMAP)) {
553 /*
554 * This VMA is a physically contiguous region (e.g.
555 * /dev/mem) that bypasses normal Linux page
556 * management. Find the overlap between the
557 * vma and the memslot.
558 */
559
560 unsigned long start, end;
561 unsigned long slot_start, slot_end;
562
563 pfnmap = 1;
564
565 start = vma->vm_pgoff;
566 end = start +
567 ((vma->vm_end - vma->vm_start) >> PAGE_SHIFT);
568
569 pfn = start + ((hva - vma->vm_start) >> PAGE_SHIFT);
570
571 slot_start = pfn - (gfn - slot->base_gfn);
572 slot_end = slot_start + slot->npages;
573
574 if (start < slot_start)
575 start = slot_start;
576 if (end > slot_end)
577 end = slot_end;
578
579 tsize = (gtlbe->mas1 & MAS1_TSIZE_MASK) >>
580 MAS1_TSIZE_SHIFT;
581
582 /*
583 * e500 doesn't implement the lowest tsize bit,
584 * or 1K pages.
585 */
586 tsize = max(BOOK3E_PAGESZ_4K, tsize & ~1);
587
588 /*
589 * Now find the largest tsize (up to what the guest
590 * requested) that will cover gfn, stay within the
591 * range, and for which gfn and pfn are mutually
592 * aligned.
593 */
594
595 for (; tsize > BOOK3E_PAGESZ_4K; tsize -= 2) {
596 unsigned long gfn_start, gfn_end, tsize_pages;
597 tsize_pages = 1 << (tsize - 2);
598
599 gfn_start = gfn & ~(tsize_pages - 1);
600 gfn_end = gfn_start + tsize_pages;
601
602 if (gfn_start + pfn - gfn < start)
603 continue;
604 if (gfn_end + pfn - gfn > end)
605 continue;
606 if ((gfn & (tsize_pages - 1)) !=
607 (pfn & (tsize_pages - 1)))
608 continue;
609
610 gvaddr &= ~((tsize_pages << PAGE_SHIFT) - 1);
611 pfn &= ~(tsize_pages - 1);
612 break;
613 }
614 }
615
616 up_read(&current->mm->mmap_sem);
617 }
618
619 if (likely(!pfnmap)) {
620 pfn = gfn_to_pfn_memslot(vcpu_e500->vcpu.kvm, slot, gfn);
621 if (is_error_pfn(pfn)) {
622 printk(KERN_ERR "Couldn't get real page for gfn %lx!\n",
623 (long)gfn);
624 kvm_release_pfn_clean(pfn);
625 return;
626 }
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600627 }
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600628
Liu Yu08b7fa92011-06-14 18:34:59 -0500629 /* Drop old priv and setup new one. */
630 priv = &vcpu_e500->gtlb_priv[tlbsel][esel];
631 kvmppc_e500_priv_release(priv);
632 kvmppc_e500_priv_setup(priv, gtlbe, pfn);
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600633
Liu Yu08b7fa92011-06-14 18:34:59 -0500634 kvmppc_e500_setup_stlbe(vcpu_e500, gtlbe, tsize, priv, gvaddr, stlbe);
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600635}
636
637/* XXX only map the one-one case, for now use TLB0 */
Liu Yu08b7fa92011-06-14 18:34:59 -0500638static int kvmppc_e500_tlb0_map(struct kvmppc_vcpu_e500 *vcpu_e500,
639 int esel, struct tlbe *stlbe)
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600640{
641 struct tlbe *gtlbe;
642
Liu Yu08b7fa92011-06-14 18:34:59 -0500643 gtlbe = &vcpu_e500->gtlb_arch[0][esel];
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600644
645 kvmppc_e500_shadow_map(vcpu_e500, get_tlb_eaddr(gtlbe),
646 get_tlb_raddr(gtlbe) >> PAGE_SHIFT,
Liu Yu08b7fa92011-06-14 18:34:59 -0500647 gtlbe, 0, esel, stlbe);
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600648
649 return esel;
650}
651
652/* Caller must ensure that the specified guest TLB entry is safe to insert into
653 * the shadow TLB. */
654/* XXX for both one-one and one-to-many , for now use TLB1 */
655static int kvmppc_e500_tlb1_map(struct kvmppc_vcpu_e500 *vcpu_e500,
Liu Yu08b7fa92011-06-14 18:34:59 -0500656 u64 gvaddr, gfn_t gfn, struct tlbe *gtlbe, struct tlbe *stlbe)
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600657{
658 unsigned int victim;
659
Liu Yu08b7fa92011-06-14 18:34:59 -0500660 victim = vcpu_e500->gtlb_nv[1]++;
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600661
Liu Yu08b7fa92011-06-14 18:34:59 -0500662 if (unlikely(vcpu_e500->gtlb_nv[1] >= tlb1_max_shadow_size()))
663 vcpu_e500->gtlb_nv[1] = 0;
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600664
Liu Yu08b7fa92011-06-14 18:34:59 -0500665 kvmppc_e500_shadow_map(vcpu_e500, gvaddr, gfn, gtlbe, 1, victim, stlbe);
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600666
667 return victim;
668}
669
Liu Yudd9ebf1f2011-06-14 18:35:14 -0500670void kvmppc_mmu_msr_notify(struct kvm_vcpu *vcpu, u32 old_msr)
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600671{
Liu Yudd9ebf1f2011-06-14 18:35:14 -0500672 struct kvmppc_vcpu_e500 *vcpu_e500 = to_e500(vcpu);
673
674 /* Recalc shadow pid since MSR changes */
675 kvmppc_e500_recalc_shadow_pid(vcpu_e500);
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600676}
677
Liu Yu08b7fa92011-06-14 18:34:59 -0500678static inline int kvmppc_e500_gtlbe_invalidate(
679 struct kvmppc_vcpu_e500 *vcpu_e500,
680 int tlbsel, int esel)
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600681{
Liu Yu08b7fa92011-06-14 18:34:59 -0500682 struct tlbe *gtlbe = &vcpu_e500->gtlb_arch[tlbsel][esel];
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600683
684 if (unlikely(get_tlb_iprot(gtlbe)))
685 return -1;
686
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600687 gtlbe->mas1 = 0;
688
689 return 0;
690}
691
Liu Yub0a18352009-02-17 16:52:08 +0800692int kvmppc_e500_emul_mt_mmucsr0(struct kvmppc_vcpu_e500 *vcpu_e500, ulong value)
693{
694 int esel;
695
696 if (value & MMUCSR0_TLB0FI)
Liu Yu08b7fa92011-06-14 18:34:59 -0500697 for (esel = 0; esel < vcpu_e500->gtlb_size[0]; esel++)
Liu Yub0a18352009-02-17 16:52:08 +0800698 kvmppc_e500_gtlbe_invalidate(vcpu_e500, 0, esel);
699 if (value & MMUCSR0_TLB1FI)
Liu Yu08b7fa92011-06-14 18:34:59 -0500700 for (esel = 0; esel < vcpu_e500->gtlb_size[1]; esel++)
Liu Yub0a18352009-02-17 16:52:08 +0800701 kvmppc_e500_gtlbe_invalidate(vcpu_e500, 1, esel);
702
Liu Yudd9ebf1f2011-06-14 18:35:14 -0500703 /* Invalidate all vcpu id mappings */
704 kvmppc_e500_id_table_reset_all(vcpu_e500);
Liu Yub0a18352009-02-17 16:52:08 +0800705
706 return EMULATE_DONE;
707}
708
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600709int kvmppc_e500_emul_tlbivax(struct kvm_vcpu *vcpu, int ra, int rb)
710{
711 struct kvmppc_vcpu_e500 *vcpu_e500 = to_e500(vcpu);
712 unsigned int ia;
713 int esel, tlbsel;
714 gva_t ea;
715
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100716 ea = ((ra) ? kvmppc_get_gpr(vcpu, ra) : 0) + kvmppc_get_gpr(vcpu, rb);
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600717
718 ia = (ea >> 2) & 0x1;
719
Liu Yufb2838d2009-01-14 10:47:37 -0600720 /* since we only have two TLBs, only lower bit is used. */
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600721 tlbsel = (ea >> 3) & 0x1;
722
723 if (ia) {
724 /* invalidate all entries */
Liu Yu08b7fa92011-06-14 18:34:59 -0500725 for (esel = 0; esel < vcpu_e500->gtlb_size[tlbsel]; esel++)
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600726 kvmppc_e500_gtlbe_invalidate(vcpu_e500, tlbsel, esel);
727 } else {
728 ea &= 0xfffff000;
729 esel = kvmppc_e500_tlb_index(vcpu_e500, ea, tlbsel,
730 get_cur_pid(vcpu), -1);
731 if (esel >= 0)
732 kvmppc_e500_gtlbe_invalidate(vcpu_e500, tlbsel, esel);
733 }
734
Liu Yudd9ebf1f2011-06-14 18:35:14 -0500735 /* Invalidate all vcpu id mappings */
736 kvmppc_e500_id_table_reset_all(vcpu_e500);
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600737
738 return EMULATE_DONE;
739}
740
741int kvmppc_e500_emul_tlbre(struct kvm_vcpu *vcpu)
742{
743 struct kvmppc_vcpu_e500 *vcpu_e500 = to_e500(vcpu);
744 int tlbsel, esel;
745 struct tlbe *gtlbe;
746
747 tlbsel = get_tlb_tlbsel(vcpu_e500);
748 esel = get_tlb_esel(vcpu_e500, tlbsel);
749
Liu Yu08b7fa92011-06-14 18:34:59 -0500750 gtlbe = &vcpu_e500->gtlb_arch[tlbsel][esel];
Liu Yubc35cbc2009-03-17 16:57:45 +0800751 vcpu_e500->mas0 &= ~MAS0_NV(~0);
Liu Yu08b7fa92011-06-14 18:34:59 -0500752 vcpu_e500->mas0 |= MAS0_NV(vcpu_e500->gtlb_nv[tlbsel]);
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600753 vcpu_e500->mas1 = gtlbe->mas1;
754 vcpu_e500->mas2 = gtlbe->mas2;
755 vcpu_e500->mas3 = gtlbe->mas3;
756 vcpu_e500->mas7 = gtlbe->mas7;
757
758 return EMULATE_DONE;
759}
760
761int kvmppc_e500_emul_tlbsx(struct kvm_vcpu *vcpu, int rb)
762{
763 struct kvmppc_vcpu_e500 *vcpu_e500 = to_e500(vcpu);
764 int as = !!get_cur_sas(vcpu_e500);
765 unsigned int pid = get_cur_spid(vcpu_e500);
766 int esel, tlbsel;
767 struct tlbe *gtlbe = NULL;
768 gva_t ea;
769
Alexander Graf8e5b26b2010-01-08 02:58:01 +0100770 ea = kvmppc_get_gpr(vcpu, rb);
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600771
772 for (tlbsel = 0; tlbsel < 2; tlbsel++) {
773 esel = kvmppc_e500_tlb_index(vcpu_e500, ea, tlbsel, pid, as);
774 if (esel >= 0) {
Liu Yu08b7fa92011-06-14 18:34:59 -0500775 gtlbe = &vcpu_e500->gtlb_arch[tlbsel][esel];
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600776 break;
777 }
778 }
779
780 if (gtlbe) {
781 vcpu_e500->mas0 = MAS0_TLBSEL(tlbsel) | MAS0_ESEL(esel)
Liu Yu08b7fa92011-06-14 18:34:59 -0500782 | MAS0_NV(vcpu_e500->gtlb_nv[tlbsel]);
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600783 vcpu_e500->mas1 = gtlbe->mas1;
784 vcpu_e500->mas2 = gtlbe->mas2;
785 vcpu_e500->mas3 = gtlbe->mas3;
786 vcpu_e500->mas7 = gtlbe->mas7;
787 } else {
788 int victim;
789
Liu Yufb2838d2009-01-14 10:47:37 -0600790 /* since we only have two TLBs, only lower bit is used. */
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600791 tlbsel = vcpu_e500->mas4 >> 28 & 0x1;
792 victim = (tlbsel == 0) ? tlb0_get_next_victim(vcpu_e500) : 0;
793
794 vcpu_e500->mas0 = MAS0_TLBSEL(tlbsel) | MAS0_ESEL(victim)
Liu Yu08b7fa92011-06-14 18:34:59 -0500795 | MAS0_NV(vcpu_e500->gtlb_nv[tlbsel]);
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600796 vcpu_e500->mas1 = (vcpu_e500->mas6 & MAS6_SPID0)
797 | (vcpu_e500->mas6 & (MAS6_SAS ? MAS1_TS : 0))
798 | (vcpu_e500->mas4 & MAS4_TSIZED(~0));
799 vcpu_e500->mas2 &= MAS2_EPN;
800 vcpu_e500->mas2 |= vcpu_e500->mas4 & MAS2_ATTRIB_MASK;
801 vcpu_e500->mas3 &= MAS3_U0 | MAS3_U1 | MAS3_U2 | MAS3_U3;
802 vcpu_e500->mas7 = 0;
803 }
804
Scott Wood49ea0692011-03-28 15:01:24 -0500805 kvmppc_set_exit_type(vcpu, EMULATED_TLBSX_EXITS);
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600806 return EMULATE_DONE;
807}
808
809int kvmppc_e500_emul_tlbwe(struct kvm_vcpu *vcpu)
810{
811 struct kvmppc_vcpu_e500 *vcpu_e500 = to_e500(vcpu);
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600812 struct tlbe *gtlbe;
Liu Yu08b7fa92011-06-14 18:34:59 -0500813 int tlbsel, esel;
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600814
815 tlbsel = get_tlb_tlbsel(vcpu_e500);
816 esel = get_tlb_esel(vcpu_e500, tlbsel);
817
Liu Yu08b7fa92011-06-14 18:34:59 -0500818 gtlbe = &vcpu_e500->gtlb_arch[tlbsel][esel];
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600819
Liu Yudd9ebf1f2011-06-14 18:35:14 -0500820 if (get_tlb_v(gtlbe))
821 kvmppc_e500_stlbe_invalidate(vcpu_e500, tlbsel, esel);
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600822
823 gtlbe->mas1 = vcpu_e500->mas1;
824 gtlbe->mas2 = vcpu_e500->mas2;
825 gtlbe->mas3 = vcpu_e500->mas3;
826 gtlbe->mas7 = vcpu_e500->mas7;
827
Marcelo Tosatti46f43c62009-06-18 11:47:27 -0300828 trace_kvm_gtlb_write(vcpu_e500->mas0, gtlbe->mas1, gtlbe->mas2,
829 gtlbe->mas3, gtlbe->mas7);
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600830
831 /* Invalidate shadow mappings for the about-to-be-clobbered TLBE. */
832 if (tlbe_is_host_safe(vcpu, gtlbe)) {
Liu Yu08b7fa92011-06-14 18:34:59 -0500833 struct tlbe stlbe;
834 int stlbsel, sesel;
835 u64 eaddr;
836 u64 raddr;
837
Liu Yudd9ebf1f2011-06-14 18:35:14 -0500838 preempt_disable();
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600839 switch (tlbsel) {
840 case 0:
841 /* TLB0 */
842 gtlbe->mas1 &= ~MAS1_TSIZE(~0);
Liu Yu0cfb50e2009-06-05 14:54:29 +0800843 gtlbe->mas1 |= MAS1_TSIZE(BOOK3E_PAGESZ_4K);
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600844
845 stlbsel = 0;
Liu Yu08b7fa92011-06-14 18:34:59 -0500846 sesel = kvmppc_e500_tlb0_map(vcpu_e500, esel, &stlbe);
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600847
848 break;
849
850 case 1:
851 /* TLB1 */
852 eaddr = get_tlb_eaddr(gtlbe);
853 raddr = get_tlb_raddr(gtlbe);
854
855 /* Create a 4KB mapping on the host.
856 * If the guest wanted a large page,
857 * only the first 4KB is mapped here and the rest
858 * are mapped on the fly. */
859 stlbsel = 1;
860 sesel = kvmppc_e500_tlb1_map(vcpu_e500, eaddr,
Liu Yu08b7fa92011-06-14 18:34:59 -0500861 raddr >> PAGE_SHIFT, gtlbe, &stlbe);
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600862 break;
863
864 default:
865 BUG();
866 }
Liu Yu08b7fa92011-06-14 18:34:59 -0500867 write_host_tlbe(vcpu_e500, stlbsel, sesel, &stlbe);
Liu Yudd9ebf1f2011-06-14 18:35:14 -0500868 preempt_enable();
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600869 }
870
Scott Wood49ea0692011-03-28 15:01:24 -0500871 kvmppc_set_exit_type(vcpu, EMULATED_TLBWE_EXITS);
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600872 return EMULATE_DONE;
873}
874
875int kvmppc_mmu_itlb_index(struct kvm_vcpu *vcpu, gva_t eaddr)
876{
Alexander Graf666e7252010-07-29 14:47:43 +0200877 unsigned int as = !!(vcpu->arch.shared->msr & MSR_IS);
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600878
879 return kvmppc_e500_tlb_search(vcpu, eaddr, get_cur_pid(vcpu), as);
880}
881
882int kvmppc_mmu_dtlb_index(struct kvm_vcpu *vcpu, gva_t eaddr)
883{
Alexander Graf666e7252010-07-29 14:47:43 +0200884 unsigned int as = !!(vcpu->arch.shared->msr & MSR_DS);
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600885
886 return kvmppc_e500_tlb_search(vcpu, eaddr, get_cur_pid(vcpu), as);
887}
888
889void kvmppc_mmu_itlb_miss(struct kvm_vcpu *vcpu)
890{
Alexander Graf666e7252010-07-29 14:47:43 +0200891 unsigned int as = !!(vcpu->arch.shared->msr & MSR_IS);
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600892
893 kvmppc_e500_deliver_tlb_miss(vcpu, vcpu->arch.pc, as);
894}
895
896void kvmppc_mmu_dtlb_miss(struct kvm_vcpu *vcpu)
897{
Alexander Graf666e7252010-07-29 14:47:43 +0200898 unsigned int as = !!(vcpu->arch.shared->msr & MSR_DS);
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600899
900 kvmppc_e500_deliver_tlb_miss(vcpu, vcpu->arch.fault_dear, as);
901}
902
903gpa_t kvmppc_mmu_xlate(struct kvm_vcpu *vcpu, unsigned int index,
904 gva_t eaddr)
905{
906 struct kvmppc_vcpu_e500 *vcpu_e500 = to_e500(vcpu);
907 struct tlbe *gtlbe =
Liu Yu08b7fa92011-06-14 18:34:59 -0500908 &vcpu_e500->gtlb_arch[tlbsel_of(index)][esel_of(index)];
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600909 u64 pgmask = get_tlb_bytes(gtlbe) - 1;
910
911 return get_tlb_raddr(gtlbe) | (eaddr & pgmask);
912}
913
914void kvmppc_mmu_destroy(struct kvm_vcpu *vcpu)
915{
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600916}
917
918void kvmppc_mmu_map(struct kvm_vcpu *vcpu, u64 eaddr, gpa_t gpaddr,
919 unsigned int index)
920{
921 struct kvmppc_vcpu_e500 *vcpu_e500 = to_e500(vcpu);
Liu Yu08b7fa92011-06-14 18:34:59 -0500922 struct tlbe_priv *priv;
923 struct tlbe *gtlbe, stlbe;
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600924 int tlbsel = tlbsel_of(index);
925 int esel = esel_of(index);
926 int stlbsel, sesel;
927
Liu Yu08b7fa92011-06-14 18:34:59 -0500928 gtlbe = &vcpu_e500->gtlb_arch[tlbsel][esel];
929
Liu Yudd9ebf1f2011-06-14 18:35:14 -0500930 preempt_disable();
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600931 switch (tlbsel) {
932 case 0:
933 stlbsel = 0;
934 sesel = esel;
Liu Yu08b7fa92011-06-14 18:34:59 -0500935 priv = &vcpu_e500->gtlb_priv[stlbsel][sesel];
936
937 kvmppc_e500_setup_stlbe(vcpu_e500, gtlbe, BOOK3E_PAGESZ_4K,
938 priv, eaddr, &stlbe);
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600939 break;
940
941 case 1: {
942 gfn_t gfn = gpaddr >> PAGE_SHIFT;
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600943
944 stlbsel = 1;
Liu Yu08b7fa92011-06-14 18:34:59 -0500945 sesel = kvmppc_e500_tlb1_map(vcpu_e500, eaddr, gfn,
946 gtlbe, &stlbe);
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600947 break;
948 }
949
950 default:
951 BUG();
952 break;
953 }
Liu Yu08b7fa92011-06-14 18:34:59 -0500954
955 write_host_tlbe(vcpu_e500, stlbsel, sesel, &stlbe);
Liu Yudd9ebf1f2011-06-14 18:35:14 -0500956 preempt_enable();
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600957}
958
959int kvmppc_e500_tlb_search(struct kvm_vcpu *vcpu,
960 gva_t eaddr, unsigned int pid, int as)
961{
962 struct kvmppc_vcpu_e500 *vcpu_e500 = to_e500(vcpu);
963 int esel, tlbsel;
964
965 for (tlbsel = 0; tlbsel < 2; tlbsel++) {
966 esel = kvmppc_e500_tlb_index(vcpu_e500, eaddr, tlbsel, pid, as);
967 if (esel >= 0)
968 return index_of(tlbsel, esel);
969 }
970
971 return -1;
972}
973
Scott Wood5ce941e2011-04-27 17:24:21 -0500974void kvmppc_set_pid(struct kvm_vcpu *vcpu, u32 pid)
975{
976 struct kvmppc_vcpu_e500 *vcpu_e500 = to_e500(vcpu);
977
Liu Yudd9ebf1f2011-06-14 18:35:14 -0500978 if (vcpu->arch.pid != pid) {
979 vcpu_e500->pid[0] = vcpu->arch.pid = pid;
980 kvmppc_e500_recalc_shadow_pid(vcpu_e500);
981 }
Scott Wood5ce941e2011-04-27 17:24:21 -0500982}
983
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600984void kvmppc_e500_tlb_setup(struct kvmppc_vcpu_e500 *vcpu_e500)
985{
986 struct tlbe *tlbe;
987
988 /* Insert large initial mapping for guest. */
Liu Yu08b7fa92011-06-14 18:34:59 -0500989 tlbe = &vcpu_e500->gtlb_arch[1][0];
Liu Yu0cfb50e2009-06-05 14:54:29 +0800990 tlbe->mas1 = MAS1_VALID | MAS1_TSIZE(BOOK3E_PAGESZ_256M);
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600991 tlbe->mas2 = 0;
992 tlbe->mas3 = E500_TLB_SUPER_PERM_MASK;
993 tlbe->mas7 = 0;
994
995 /* 4K map for serial output. Used by kernel wrapper. */
Liu Yu08b7fa92011-06-14 18:34:59 -0500996 tlbe = &vcpu_e500->gtlb_arch[1][1];
Liu Yu0cfb50e2009-06-05 14:54:29 +0800997 tlbe->mas1 = MAS1_VALID | MAS1_TSIZE(BOOK3E_PAGESZ_4K);
Hollis Blanchardbc8080c2009-01-03 16:23:10 -0600998 tlbe->mas2 = (0xe0004500 & 0xFFFFF000) | MAS2_I | MAS2_G;
999 tlbe->mas3 = (0xe0004500 & 0xFFFFF000) | E500_TLB_SUPER_PERM_MASK;
1000 tlbe->mas7 = 0;
1001}
1002
1003int kvmppc_e500_tlb_init(struct kvmppc_vcpu_e500 *vcpu_e500)
1004{
1005 tlb1_entry_num = mfspr(SPRN_TLB1CFG) & 0xFFF;
1006
Liu Yu08b7fa92011-06-14 18:34:59 -05001007 vcpu_e500->gtlb_size[0] = KVM_E500_TLB0_SIZE;
1008 vcpu_e500->gtlb_arch[0] =
Hollis Blanchardbc8080c2009-01-03 16:23:10 -06001009 kzalloc(sizeof(struct tlbe) * KVM_E500_TLB0_SIZE, GFP_KERNEL);
Liu Yu08b7fa92011-06-14 18:34:59 -05001010 if (vcpu_e500->gtlb_arch[0] == NULL)
Hollis Blanchardbc8080c2009-01-03 16:23:10 -06001011 goto err_out;
1012
Liu Yu08b7fa92011-06-14 18:34:59 -05001013 vcpu_e500->gtlb_size[1] = KVM_E500_TLB1_SIZE;
1014 vcpu_e500->gtlb_arch[1] =
1015 kzalloc(sizeof(struct tlbe) * KVM_E500_TLB1_SIZE, GFP_KERNEL);
1016 if (vcpu_e500->gtlb_arch[1] == NULL)
Hollis Blanchardbc8080c2009-01-03 16:23:10 -06001017 goto err_out_guest0;
1018
Liu Yu08b7fa92011-06-14 18:34:59 -05001019 vcpu_e500->gtlb_priv[0] = (struct tlbe_priv *)
1020 kzalloc(sizeof(struct tlbe_priv) * KVM_E500_TLB0_SIZE, GFP_KERNEL);
1021 if (vcpu_e500->gtlb_priv[0] == NULL)
Hollis Blanchardbc8080c2009-01-03 16:23:10 -06001022 goto err_out_guest1;
Liu Yu08b7fa92011-06-14 18:34:59 -05001023 vcpu_e500->gtlb_priv[1] = (struct tlbe_priv *)
1024 kzalloc(sizeof(struct tlbe_priv) * KVM_E500_TLB1_SIZE, GFP_KERNEL);
1025
1026 if (vcpu_e500->gtlb_priv[1] == NULL)
1027 goto err_out_priv0;
Hollis Blanchardbc8080c2009-01-03 16:23:10 -06001028
Liu Yudd9ebf1f2011-06-14 18:35:14 -05001029 if (kvmppc_e500_id_table_alloc(vcpu_e500) == NULL)
1030 goto err_out_priv1;
1031
Liu Yuda15bf42010-01-22 19:36:53 +08001032 /* Init TLB configuration register */
1033 vcpu_e500->tlb0cfg = mfspr(SPRN_TLB0CFG) & ~0xfffUL;
Liu Yu08b7fa92011-06-14 18:34:59 -05001034 vcpu_e500->tlb0cfg |= vcpu_e500->gtlb_size[0];
Liu Yuda15bf42010-01-22 19:36:53 +08001035 vcpu_e500->tlb1cfg = mfspr(SPRN_TLB1CFG) & ~0xfffUL;
Liu Yu08b7fa92011-06-14 18:34:59 -05001036 vcpu_e500->tlb1cfg |= vcpu_e500->gtlb_size[1];
Liu Yuda15bf42010-01-22 19:36:53 +08001037
Hollis Blanchardbc8080c2009-01-03 16:23:10 -06001038 return 0;
1039
Liu Yudd9ebf1f2011-06-14 18:35:14 -05001040err_out_priv1:
1041 kfree(vcpu_e500->gtlb_priv[1]);
Liu Yu08b7fa92011-06-14 18:34:59 -05001042err_out_priv0:
1043 kfree(vcpu_e500->gtlb_priv[0]);
Hollis Blanchardbc8080c2009-01-03 16:23:10 -06001044err_out_guest1:
Liu Yu08b7fa92011-06-14 18:34:59 -05001045 kfree(vcpu_e500->gtlb_arch[1]);
Hollis Blanchardbc8080c2009-01-03 16:23:10 -06001046err_out_guest0:
Liu Yu08b7fa92011-06-14 18:34:59 -05001047 kfree(vcpu_e500->gtlb_arch[0]);
Hollis Blanchardbc8080c2009-01-03 16:23:10 -06001048err_out:
1049 return -1;
1050}
1051
1052void kvmppc_e500_tlb_uninit(struct kvmppc_vcpu_e500 *vcpu_e500)
1053{
Liu Yu08b7fa92011-06-14 18:34:59 -05001054 int stlbsel, i;
1055
1056 /* release all privs */
1057 for (stlbsel = 0; stlbsel < 2; stlbsel++)
1058 for (i = 0; i < vcpu_e500->gtlb_size[stlbsel]; i++) {
1059 struct tlbe_priv *priv =
1060 &vcpu_e500->gtlb_priv[stlbsel][i];
1061 kvmppc_e500_priv_release(priv);
1062 }
1063
Liu Yudd9ebf1f2011-06-14 18:35:14 -05001064 kvmppc_e500_id_table_free(vcpu_e500);
Liu Yu08b7fa92011-06-14 18:34:59 -05001065 kfree(vcpu_e500->gtlb_arch[1]);
1066 kfree(vcpu_e500->gtlb_arch[0]);
Hollis Blanchardbc8080c2009-01-03 16:23:10 -06001067}