2 * Copyright (C) 2010 SUSE Linux Products GmbH. All rights reserved.
5 * Alexander Graf <agraf@suse.de>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License, version 2, as
9 * published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 #include <linux/kvm_host.h>
22 #include <linux/hash.h>
23 #include <linux/slab.h>
25 #include <asm/kvm_ppc.h>
26 #include <asm/kvm_book3s.h>
27 #include <asm/machdep.h>
28 #include <asm/mmu_context.h>
29 #include <asm/hw_irq.h>
35 static struct kmem_cache
*hpte_cache
;
37 static inline u64
kvmppc_mmu_hash_pte(u64 eaddr
)
39 return hash_64(eaddr
>> PTE_SIZE
, HPTEG_HASH_BITS_PTE
);
42 static inline u64
kvmppc_mmu_hash_pte_long(u64 eaddr
)
44 return hash_64((eaddr
& 0x0ffff000) >> PTE_SIZE
,
45 HPTEG_HASH_BITS_PTE_LONG
);
48 static inline u64
kvmppc_mmu_hash_vpte(u64 vpage
)
50 return hash_64(vpage
& 0xfffffffffULL
, HPTEG_HASH_BITS_VPTE
);
53 static inline u64
kvmppc_mmu_hash_vpte_long(u64 vpage
)
55 return hash_64((vpage
& 0xffffff000ULL
) >> 12,
56 HPTEG_HASH_BITS_VPTE_LONG
);
59 void kvmppc_mmu_hpte_cache_map(struct kvm_vcpu
*vcpu
, struct hpte_cache
*pte
)
62 struct kvmppc_vcpu_book3s
*vcpu3s
= to_book3s(vcpu
);
64 trace_kvm_book3s_mmu_map(pte
);
66 spin_lock(&vcpu3s
->mmu_lock
);
68 /* Add to ePTE list */
69 index
= kvmppc_mmu_hash_pte(pte
->pte
.eaddr
);
70 hlist_add_head_rcu(&pte
->list_pte
, &vcpu3s
->hpte_hash_pte
[index
]);
72 /* Add to ePTE_long list */
73 index
= kvmppc_mmu_hash_pte_long(pte
->pte
.eaddr
);
74 hlist_add_head_rcu(&pte
->list_pte_long
,
75 &vcpu3s
->hpte_hash_pte_long
[index
]);
77 /* Add to vPTE list */
78 index
= kvmppc_mmu_hash_vpte(pte
->pte
.vpage
);
79 hlist_add_head_rcu(&pte
->list_vpte
, &vcpu3s
->hpte_hash_vpte
[index
]);
81 /* Add to vPTE_long list */
82 index
= kvmppc_mmu_hash_vpte_long(pte
->pte
.vpage
);
83 hlist_add_head_rcu(&pte
->list_vpte_long
,
84 &vcpu3s
->hpte_hash_vpte_long
[index
]);
86 spin_unlock(&vcpu3s
->mmu_lock
);
89 static void free_pte_rcu(struct rcu_head
*head
)
91 struct hpte_cache
*pte
= container_of(head
, struct hpte_cache
, rcu_head
);
92 kmem_cache_free(hpte_cache
, pte
);
95 static void invalidate_pte(struct kvm_vcpu
*vcpu
, struct hpte_cache
*pte
)
97 struct kvmppc_vcpu_book3s
*vcpu3s
= to_book3s(vcpu
);
99 trace_kvm_book3s_mmu_invalidate(pte
);
101 /* Different for 32 and 64 bit */
102 kvmppc_mmu_invalidate_pte(vcpu
, pte
);
104 spin_lock(&vcpu3s
->mmu_lock
);
106 /* pte already invalidated in between? */
107 if (hlist_unhashed(&pte
->list_pte
)) {
108 spin_unlock(&vcpu3s
->mmu_lock
);
112 hlist_del_init_rcu(&pte
->list_pte
);
113 hlist_del_init_rcu(&pte
->list_pte_long
);
114 hlist_del_init_rcu(&pte
->list_vpte
);
115 hlist_del_init_rcu(&pte
->list_vpte_long
);
117 spin_unlock(&vcpu3s
->mmu_lock
);
119 vcpu3s
->hpte_cache_count
--;
120 call_rcu(&pte
->rcu_head
, free_pte_rcu
);
123 static void kvmppc_mmu_pte_flush_all(struct kvm_vcpu
*vcpu
)
125 struct kvmppc_vcpu_book3s
*vcpu3s
= to_book3s(vcpu
);
126 struct hpte_cache
*pte
;
127 struct hlist_node
*node
;
132 for (i
= 0; i
< HPTEG_HASH_NUM_VPTE_LONG
; i
++) {
133 struct hlist_head
*list
= &vcpu3s
->hpte_hash_vpte_long
[i
];
135 hlist_for_each_entry_rcu(pte
, node
, list
, list_vpte_long
)
136 invalidate_pte(vcpu
, pte
);
142 static void kvmppc_mmu_pte_flush_page(struct kvm_vcpu
*vcpu
, ulong guest_ea
)
144 struct kvmppc_vcpu_book3s
*vcpu3s
= to_book3s(vcpu
);
145 struct hlist_head
*list
;
146 struct hlist_node
*node
;
147 struct hpte_cache
*pte
;
149 /* Find the list of entries in the map */
150 list
= &vcpu3s
->hpte_hash_pte
[kvmppc_mmu_hash_pte(guest_ea
)];
154 /* Check the list for matching entries and invalidate */
155 hlist_for_each_entry_rcu(pte
, node
, list
, list_pte
)
156 if ((pte
->pte
.eaddr
& ~0xfffUL
) == guest_ea
)
157 invalidate_pte(vcpu
, pte
);
162 static void kvmppc_mmu_pte_flush_long(struct kvm_vcpu
*vcpu
, ulong guest_ea
)
164 struct kvmppc_vcpu_book3s
*vcpu3s
= to_book3s(vcpu
);
165 struct hlist_head
*list
;
166 struct hlist_node
*node
;
167 struct hpte_cache
*pte
;
169 /* Find the list of entries in the map */
170 list
= &vcpu3s
->hpte_hash_pte_long
[
171 kvmppc_mmu_hash_pte_long(guest_ea
)];
175 /* Check the list for matching entries and invalidate */
176 hlist_for_each_entry_rcu(pte
, node
, list
, list_pte_long
)
177 if ((pte
->pte
.eaddr
& 0x0ffff000UL
) == guest_ea
)
178 invalidate_pte(vcpu
, pte
);
183 void kvmppc_mmu_pte_flush(struct kvm_vcpu
*vcpu
, ulong guest_ea
, ulong ea_mask
)
185 trace_kvm_book3s_mmu_flush("", vcpu
, guest_ea
, ea_mask
);
190 kvmppc_mmu_pte_flush_page(vcpu
, guest_ea
);
193 kvmppc_mmu_pte_flush_long(vcpu
, guest_ea
);
196 /* Doing a complete flush -> start from scratch */
197 kvmppc_mmu_pte_flush_all(vcpu
);
205 /* Flush with mask 0xfffffffff */
206 static void kvmppc_mmu_pte_vflush_short(struct kvm_vcpu
*vcpu
, u64 guest_vp
)
208 struct kvmppc_vcpu_book3s
*vcpu3s
= to_book3s(vcpu
);
209 struct hlist_head
*list
;
210 struct hlist_node
*node
;
211 struct hpte_cache
*pte
;
212 u64 vp_mask
= 0xfffffffffULL
;
214 list
= &vcpu3s
->hpte_hash_vpte
[kvmppc_mmu_hash_vpte(guest_vp
)];
218 /* Check the list for matching entries and invalidate */
219 hlist_for_each_entry_rcu(pte
, node
, list
, list_vpte
)
220 if ((pte
->pte
.vpage
& vp_mask
) == guest_vp
)
221 invalidate_pte(vcpu
, pte
);
226 /* Flush with mask 0xffffff000 */
227 static void kvmppc_mmu_pte_vflush_long(struct kvm_vcpu
*vcpu
, u64 guest_vp
)
229 struct kvmppc_vcpu_book3s
*vcpu3s
= to_book3s(vcpu
);
230 struct hlist_head
*list
;
231 struct hlist_node
*node
;
232 struct hpte_cache
*pte
;
233 u64 vp_mask
= 0xffffff000ULL
;
235 list
= &vcpu3s
->hpte_hash_vpte_long
[
236 kvmppc_mmu_hash_vpte_long(guest_vp
)];
240 /* Check the list for matching entries and invalidate */
241 hlist_for_each_entry_rcu(pte
, node
, list
, list_vpte_long
)
242 if ((pte
->pte
.vpage
& vp_mask
) == guest_vp
)
243 invalidate_pte(vcpu
, pte
);
248 void kvmppc_mmu_pte_vflush(struct kvm_vcpu
*vcpu
, u64 guest_vp
, u64 vp_mask
)
250 trace_kvm_book3s_mmu_flush("v", vcpu
, guest_vp
, vp_mask
);
255 kvmppc_mmu_pte_vflush_short(vcpu
, guest_vp
);
258 kvmppc_mmu_pte_vflush_long(vcpu
, guest_vp
);
266 void kvmppc_mmu_pte_pflush(struct kvm_vcpu
*vcpu
, ulong pa_start
, ulong pa_end
)
268 struct kvmppc_vcpu_book3s
*vcpu3s
= to_book3s(vcpu
);
269 struct hlist_node
*node
;
270 struct hpte_cache
*pte
;
273 trace_kvm_book3s_mmu_flush("p", vcpu
, pa_start
, pa_end
);
277 for (i
= 0; i
< HPTEG_HASH_NUM_VPTE_LONG
; i
++) {
278 struct hlist_head
*list
= &vcpu3s
->hpte_hash_vpte_long
[i
];
280 hlist_for_each_entry_rcu(pte
, node
, list
, list_vpte_long
)
281 if ((pte
->pte
.raddr
>= pa_start
) &&
282 (pte
->pte
.raddr
< pa_end
))
283 invalidate_pte(vcpu
, pte
);
289 struct hpte_cache
*kvmppc_mmu_hpte_cache_next(struct kvm_vcpu
*vcpu
)
291 struct kvmppc_vcpu_book3s
*vcpu3s
= to_book3s(vcpu
);
292 struct hpte_cache
*pte
;
294 pte
= kmem_cache_zalloc(hpte_cache
, GFP_KERNEL
);
295 vcpu3s
->hpte_cache_count
++;
297 if (vcpu3s
->hpte_cache_count
== HPTEG_CACHE_NUM
)
298 kvmppc_mmu_pte_flush_all(vcpu
);
303 void kvmppc_mmu_hpte_destroy(struct kvm_vcpu
*vcpu
)
305 kvmppc_mmu_pte_flush(vcpu
, 0, 0);
308 static void kvmppc_mmu_hpte_init_hash(struct hlist_head
*hash_list
, int len
)
312 for (i
= 0; i
< len
; i
++)
313 INIT_HLIST_HEAD(&hash_list
[i
]);
316 int kvmppc_mmu_hpte_init(struct kvm_vcpu
*vcpu
)
318 struct kvmppc_vcpu_book3s
*vcpu3s
= to_book3s(vcpu
);
320 /* init hpte lookup hashes */
321 kvmppc_mmu_hpte_init_hash(vcpu3s
->hpte_hash_pte
,
322 ARRAY_SIZE(vcpu3s
->hpte_hash_pte
));
323 kvmppc_mmu_hpte_init_hash(vcpu3s
->hpte_hash_pte_long
,
324 ARRAY_SIZE(vcpu3s
->hpte_hash_pte_long
));
325 kvmppc_mmu_hpte_init_hash(vcpu3s
->hpte_hash_vpte
,
326 ARRAY_SIZE(vcpu3s
->hpte_hash_vpte
));
327 kvmppc_mmu_hpte_init_hash(vcpu3s
->hpte_hash_vpte_long
,
328 ARRAY_SIZE(vcpu3s
->hpte_hash_vpte_long
));
330 spin_lock_init(&vcpu3s
->mmu_lock
);
335 int kvmppc_mmu_hpte_sysinit(void)
337 /* init hpte slab cache */
338 hpte_cache
= kmem_cache_create("kvm-spt", sizeof(struct hpte_cache
),
339 sizeof(struct hpte_cache
), 0, NULL
);
344 void kvmppc_mmu_hpte_sysexit(void)
346 kmem_cache_destroy(hpte_cache
);