blob: a207d16b9dbbdfc21350be28072089de61cd8607 [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>
25#include <asm/mmu-44x.h>
26#include <asm/kvm_ppc.h>
27
28#include "44x_tlb.h"
29
30#define PPC44x_TLB_USER_PERM_MASK (PPC44x_TLB_UX|PPC44x_TLB_UR|PPC44x_TLB_UW)
31#define PPC44x_TLB_SUPER_PERM_MASK (PPC44x_TLB_SX|PPC44x_TLB_SR|PPC44x_TLB_SW)
32
33static unsigned int kvmppc_tlb_44x_pos;
34
35static u32 kvmppc_44x_tlb_shadow_attrib(u32 attrib, int usermode)
36{
37 /* Mask off reserved bits. */
38 attrib &= PPC44x_TLB_PERM_MASK|PPC44x_TLB_ATTR_MASK;
39
40 if (!usermode) {
41 /* Guest is in supervisor mode, so we need to translate guest
42 * supervisor permissions into user permissions. */
43 attrib &= ~PPC44x_TLB_USER_PERM_MASK;
44 attrib |= (attrib & PPC44x_TLB_SUPER_PERM_MASK) << 3;
45 }
46
47 /* Make sure host can always access this memory. */
48 attrib |= PPC44x_TLB_SX|PPC44x_TLB_SR|PPC44x_TLB_SW;
49
50 return attrib;
51}
52
53/* Search the guest TLB for a matching entry. */
54int kvmppc_44x_tlb_index(struct kvm_vcpu *vcpu, gva_t eaddr, unsigned int pid,
55 unsigned int as)
56{
57 int i;
58
59 /* XXX Replace loop with fancy data structures. */
60 for (i = 0; i < PPC44x_TLB_SIZE; i++) {
61 struct tlbe *tlbe = &vcpu->arch.guest_tlb[i];
62 unsigned int tid;
63
64 if (eaddr < get_tlb_eaddr(tlbe))
65 continue;
66
67 if (eaddr > get_tlb_end(tlbe))
68 continue;
69
70 tid = get_tlb_tid(tlbe);
71 if (tid && (tid != pid))
72 continue;
73
74 if (!get_tlb_v(tlbe))
75 continue;
76
77 if (get_tlb_ts(tlbe) != as)
78 continue;
79
80 return i;
81 }
82
83 return -1;
84}
85
86struct tlbe *kvmppc_44x_itlb_search(struct kvm_vcpu *vcpu, gva_t eaddr)
87{
88 unsigned int as = !!(vcpu->arch.msr & MSR_IS);
89 unsigned int index;
90
91 index = kvmppc_44x_tlb_index(vcpu, eaddr, vcpu->arch.pid, as);
92 if (index == -1)
93 return NULL;
94 return &vcpu->arch.guest_tlb[index];
95}
96
97struct tlbe *kvmppc_44x_dtlb_search(struct kvm_vcpu *vcpu, gva_t eaddr)
98{
99 unsigned int as = !!(vcpu->arch.msr & MSR_DS);
100 unsigned int index;
101
102 index = kvmppc_44x_tlb_index(vcpu, eaddr, vcpu->arch.pid, as);
103 if (index == -1)
104 return NULL;
105 return &vcpu->arch.guest_tlb[index];
106}
107
108static int kvmppc_44x_tlbe_is_writable(struct tlbe *tlbe)
109{
110 return tlbe->word2 & (PPC44x_TLB_SW|PPC44x_TLB_UW);
111}
112
113/* Must be called with mmap_sem locked for writing. */
114static void kvmppc_44x_shadow_release(struct kvm_vcpu *vcpu,
115 unsigned int index)
116{
117 struct tlbe *stlbe = &vcpu->arch.shadow_tlb[index];
118 struct page *page = vcpu->arch.shadow_pages[index];
119
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500120 if (get_tlb_v(stlbe)) {
121 if (kvmppc_44x_tlbe_is_writable(stlbe))
122 kvm_release_page_dirty(page);
123 else
124 kvm_release_page_clean(page);
125 }
126}
127
128/* Caller must ensure that the specified guest TLB entry is safe to insert into
129 * the shadow TLB. */
130void kvmppc_mmu_map(struct kvm_vcpu *vcpu, u64 gvaddr, gfn_t gfn, u64 asid,
131 u32 flags)
132{
133 struct page *new_page;
134 struct tlbe *stlbe;
135 hpa_t hpaddr;
136 unsigned int victim;
137
138 /* Future optimization: don't overwrite the TLB entry containing the
139 * current PC (or stack?). */
140 victim = kvmppc_tlb_44x_pos++;
141 if (kvmppc_tlb_44x_pos > tlb_44x_hwater)
142 kvmppc_tlb_44x_pos = 0;
143 stlbe = &vcpu->arch.shadow_tlb[victim];
144
145 /* Get reference to new page. */
Hollis Blanchard905fa4b2008-05-21 18:22:54 -0500146 down_read(&current->mm->mmap_sem);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500147 new_page = gfn_to_page(vcpu->kvm, gfn);
148 if (is_error_page(new_page)) {
Hollis Blanchard9dcb40e2008-05-21 18:22:55 -0500149 printk(KERN_ERR "Couldn't get guest page for gfn %lx!\n", gfn);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500150 kvm_release_page_clean(new_page);
Hollis Blanchard905fa4b2008-05-21 18:22:54 -0500151 up_read(&current->mm->mmap_sem);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500152 return;
153 }
154 hpaddr = page_to_phys(new_page);
155
156 /* Drop reference to old page. */
157 kvmppc_44x_shadow_release(vcpu, victim);
Hollis Blanchard905fa4b2008-05-21 18:22:54 -0500158 up_read(&current->mm->mmap_sem);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500159
160 vcpu->arch.shadow_pages[victim] = new_page;
161
162 /* XXX Make sure (va, size) doesn't overlap any other
163 * entries. 440x6 user manual says the result would be
164 * "undefined." */
165
166 /* XXX what about AS? */
167
168 stlbe->tid = asid & 0xff;
169
170 /* Force TS=1 for all guest mappings. */
171 /* For now we hardcode 4KB mappings, but it will be important to
172 * use host large pages in the future. */
173 stlbe->word0 = (gvaddr & PAGE_MASK) | PPC44x_TLB_VALID | PPC44x_TLB_TS
174 | PPC44x_TLB_4K;
175
176 stlbe->word1 = (hpaddr & 0xfffffc00) | ((hpaddr >> 32) & 0xf);
177 stlbe->word2 = kvmppc_44x_tlb_shadow_attrib(flags,
178 vcpu->arch.msr & MSR_PR);
Jerone Young31711f22008-07-14 14:00:03 +0200179
180 KVMTRACE_5D(STLB_WRITE, vcpu, victim,
181 stlbe->tid, stlbe->word0, stlbe->word1, stlbe->word2,
182 handler);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500183}
184
Hollis Blanchardcc044542008-07-25 13:54:50 -0500185void kvmppc_mmu_invalidate(struct kvm_vcpu *vcpu, gva_t eaddr,
186 gva_t eend, u32 asid)
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500187{
188 unsigned int pid = asid & 0xff;
189 int i;
190
191 /* XXX Replace loop with fancy data structures. */
192 down_write(&current->mm->mmap_sem);
193 for (i = 0; i <= tlb_44x_hwater; i++) {
194 struct tlbe *stlbe = &vcpu->arch.shadow_tlb[i];
195 unsigned int tid;
196
197 if (!get_tlb_v(stlbe))
198 continue;
199
Hollis Blanchardcc044542008-07-25 13:54:50 -0500200 if (eend < get_tlb_eaddr(stlbe))
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500201 continue;
202
203 if (eaddr > get_tlb_end(stlbe))
204 continue;
205
206 tid = get_tlb_tid(stlbe);
207 if (tid && (tid != pid))
208 continue;
209
210 kvmppc_44x_shadow_release(vcpu, i);
211 stlbe->word0 = 0;
Jerone Young31711f22008-07-14 14:00:03 +0200212 KVMTRACE_5D(STLB_INVAL, vcpu, i,
213 stlbe->tid, stlbe->word0, stlbe->word1,
214 stlbe->word2, handler);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500215 }
216 up_write(&current->mm->mmap_sem);
217}
218
219/* Invalidate all mappings, so that when they fault back in they will get the
220 * proper permission bits. */
221void kvmppc_mmu_priv_switch(struct kvm_vcpu *vcpu, int usermode)
222{
223 int i;
224
225 /* XXX Replace loop with fancy data structures. */
226 down_write(&current->mm->mmap_sem);
227 for (i = 0; i <= tlb_44x_hwater; i++) {
Jerone Young31711f22008-07-14 14:00:03 +0200228 struct tlbe *stlbe = &vcpu->arch.shadow_tlb[i];
229
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500230 kvmppc_44x_shadow_release(vcpu, i);
Jerone Young31711f22008-07-14 14:00:03 +0200231 stlbe->word0 = 0;
232 KVMTRACE_5D(STLB_INVAL, vcpu, i,
233 stlbe->tid, stlbe->word0, stlbe->word1,
234 stlbe->word2, handler);
Hollis Blanchardbbf45ba2008-04-16 23:28:09 -0500235 }
236 up_write(&current->mm->mmap_sem);
237}