Merge tag 'powerpc-4.6-1' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc...
[linux-2.6-microblaze.git] / arch / powerpc / kvm / book3s_64_vio_hv.c
1 /*
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 2010 Paul Mackerras, IBM Corp. <paulus@au1.ibm.com>
16  * Copyright 2011 David Gibson, IBM Corporation <dwg@au1.ibm.com>
17  * Copyright 2016 Alexey Kardashevskiy, IBM Corporation <aik@au1.ibm.com>
18  */
19
20 #include <linux/types.h>
21 #include <linux/string.h>
22 #include <linux/kvm.h>
23 #include <linux/kvm_host.h>
24 #include <linux/highmem.h>
25 #include <linux/gfp.h>
26 #include <linux/slab.h>
27 #include <linux/hugetlb.h>
28 #include <linux/list.h>
29
30 #include <asm/tlbflush.h>
31 #include <asm/kvm_ppc.h>
32 #include <asm/kvm_book3s.h>
33 #include <asm/book3s/64/mmu-hash.h>
34 #include <asm/mmu_context.h>
35 #include <asm/hvcall.h>
36 #include <asm/synch.h>
37 #include <asm/ppc-opcode.h>
38 #include <asm/kvm_host.h>
39 #include <asm/udbg.h>
40 #include <asm/iommu.h>
41 #include <asm/tce.h>
42 #include <asm/iommu.h>
43
44 #define TCES_PER_PAGE   (PAGE_SIZE / sizeof(u64))
45
46 /*
47  * Finds a TCE table descriptor by LIOBN.
48  *
49  * WARNING: This will be called in real or virtual mode on HV KVM and virtual
50  *          mode on PR KVM
51  */
52 struct kvmppc_spapr_tce_table *kvmppc_find_table(struct kvm_vcpu *vcpu,
53                 unsigned long liobn)
54 {
55         struct kvm *kvm = vcpu->kvm;
56         struct kvmppc_spapr_tce_table *stt;
57
58         list_for_each_entry_lockless(stt, &kvm->arch.spapr_tce_tables, list)
59                 if (stt->liobn == liobn)
60                         return stt;
61
62         return NULL;
63 }
64 EXPORT_SYMBOL_GPL(kvmppc_find_table);
65
66 /*
67  * Validates IO address.
68  *
69  * WARNING: This will be called in real-mode on HV KVM and virtual
70  *          mode on PR KVM
71  */
72 long kvmppc_ioba_validate(struct kvmppc_spapr_tce_table *stt,
73                 unsigned long ioba, unsigned long npages)
74 {
75         unsigned long mask = (1ULL << stt->page_shift) - 1;
76         unsigned long idx = ioba >> stt->page_shift;
77
78         if ((ioba & mask) || (idx < stt->offset) ||
79                         (idx - stt->offset + npages > stt->size) ||
80                         (idx + npages < idx))
81                 return H_PARAMETER;
82
83         return H_SUCCESS;
84 }
85 EXPORT_SYMBOL_GPL(kvmppc_ioba_validate);
86
87 /*
88  * Validates TCE address.
89  * At the moment flags and page mask are validated.
90  * As the host kernel does not access those addresses (just puts them
91  * to the table and user space is supposed to process them), we can skip
92  * checking other things (such as TCE is a guest RAM address or the page
93  * was actually allocated).
94  *
95  * WARNING: This will be called in real-mode on HV KVM and virtual
96  *          mode on PR KVM
97  */
98 long kvmppc_tce_validate(struct kvmppc_spapr_tce_table *stt, unsigned long tce)
99 {
100         unsigned long page_mask = ~((1ULL << stt->page_shift) - 1);
101         unsigned long mask = ~(page_mask | TCE_PCI_WRITE | TCE_PCI_READ);
102
103         if (tce & mask)
104                 return H_PARAMETER;
105
106         return H_SUCCESS;
107 }
108 EXPORT_SYMBOL_GPL(kvmppc_tce_validate);
109
110 /* Note on the use of page_address() in real mode,
111  *
112  * It is safe to use page_address() in real mode on ppc64 because
113  * page_address() is always defined as lowmem_page_address()
114  * which returns __va(PFN_PHYS(page_to_pfn(page))) which is arithmetic
115  * operation and does not access page struct.
116  *
117  * Theoretically page_address() could be defined different
118  * but either WANT_PAGE_VIRTUAL or HASHED_PAGE_VIRTUAL
119  * would have to be enabled.
120  * WANT_PAGE_VIRTUAL is never enabled on ppc32/ppc64,
121  * HASHED_PAGE_VIRTUAL could be enabled for ppc32 only and only
122  * if CONFIG_HIGHMEM is defined. As CONFIG_SPARSEMEM_VMEMMAP
123  * is not expected to be enabled on ppc32, page_address()
124  * is safe for ppc32 as well.
125  *
126  * WARNING: This will be called in real-mode on HV KVM and virtual
127  *          mode on PR KVM
128  */
129 static u64 *kvmppc_page_address(struct page *page)
130 {
131 #if defined(HASHED_PAGE_VIRTUAL) || defined(WANT_PAGE_VIRTUAL)
132 #error TODO: fix to avoid page_address() here
133 #endif
134         return (u64 *) page_address(page);
135 }
136
137 /*
138  * Handles TCE requests for emulated devices.
139  * Puts guest TCE values to the table and expects user space to convert them.
140  * Called in both real and virtual modes.
141  * Cannot fail so kvmppc_tce_validate must be called before it.
142  *
143  * WARNING: This will be called in real-mode on HV KVM and virtual
144  *          mode on PR KVM
145  */
146 void kvmppc_tce_put(struct kvmppc_spapr_tce_table *stt,
147                 unsigned long idx, unsigned long tce)
148 {
149         struct page *page;
150         u64 *tbl;
151
152         idx -= stt->offset;
153         page = stt->pages[idx / TCES_PER_PAGE];
154         tbl = kvmppc_page_address(page);
155
156         tbl[idx % TCES_PER_PAGE] = tce;
157 }
158 EXPORT_SYMBOL_GPL(kvmppc_tce_put);
159
160 long kvmppc_gpa_to_ua(struct kvm *kvm, unsigned long gpa,
161                 unsigned long *ua, unsigned long **prmap)
162 {
163         unsigned long gfn = gpa >> PAGE_SHIFT;
164         struct kvm_memory_slot *memslot;
165
166         memslot = search_memslots(kvm_memslots(kvm), gfn);
167         if (!memslot)
168                 return -EINVAL;
169
170         *ua = __gfn_to_hva_memslot(memslot, gfn) |
171                 (gpa & ~(PAGE_MASK | TCE_PCI_READ | TCE_PCI_WRITE));
172
173 #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
174         if (prmap)
175                 *prmap = &memslot->arch.rmap[gfn - memslot->base_gfn];
176 #endif
177
178         return 0;
179 }
180 EXPORT_SYMBOL_GPL(kvmppc_gpa_to_ua);
181
182 #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
183 long kvmppc_h_put_tce(struct kvm_vcpu *vcpu, unsigned long liobn,
184                       unsigned long ioba, unsigned long tce)
185 {
186         struct kvmppc_spapr_tce_table *stt = kvmppc_find_table(vcpu, liobn);
187         long ret;
188
189         /* udbg_printf("H_PUT_TCE(): liobn=0x%lx ioba=0x%lx, tce=0x%lx\n", */
190         /*          liobn, ioba, tce); */
191
192         if (!stt)
193                 return H_TOO_HARD;
194
195         ret = kvmppc_ioba_validate(stt, ioba, 1);
196         if (ret != H_SUCCESS)
197                 return ret;
198
199         ret = kvmppc_tce_validate(stt, tce);
200         if (ret != H_SUCCESS)
201                 return ret;
202
203         kvmppc_tce_put(stt, ioba >> stt->page_shift, tce);
204
205         return H_SUCCESS;
206 }
207 EXPORT_SYMBOL_GPL(kvmppc_h_put_tce);
208
209 static long kvmppc_rm_ua_to_hpa(struct kvm_vcpu *vcpu,
210                 unsigned long ua, unsigned long *phpa)
211 {
212         pte_t *ptep, pte;
213         unsigned shift = 0;
214
215         ptep = __find_linux_pte_or_hugepte(vcpu->arch.pgdir, ua, NULL, &shift);
216         if (!ptep || !pte_present(*ptep))
217                 return -ENXIO;
218         pte = *ptep;
219
220         if (!shift)
221                 shift = PAGE_SHIFT;
222
223         /* Avoid handling anything potentially complicated in realmode */
224         if (shift > PAGE_SHIFT)
225                 return -EAGAIN;
226
227         if (!pte_young(pte))
228                 return -EAGAIN;
229
230         *phpa = (pte_pfn(pte) << PAGE_SHIFT) | (ua & ((1ULL << shift) - 1)) |
231                         (ua & ~PAGE_MASK);
232
233         return 0;
234 }
235
236 long kvmppc_rm_h_put_tce_indirect(struct kvm_vcpu *vcpu,
237                 unsigned long liobn, unsigned long ioba,
238                 unsigned long tce_list, unsigned long npages)
239 {
240         struct kvmppc_spapr_tce_table *stt;
241         long i, ret = H_SUCCESS;
242         unsigned long tces, entry, ua = 0;
243         unsigned long *rmap = NULL;
244
245         stt = kvmppc_find_table(vcpu, liobn);
246         if (!stt)
247                 return H_TOO_HARD;
248
249         entry = ioba >> stt->page_shift;
250         /*
251          * The spec says that the maximum size of the list is 512 TCEs
252          * so the whole table addressed resides in 4K page
253          */
254         if (npages > 512)
255                 return H_PARAMETER;
256
257         if (tce_list & (SZ_4K - 1))
258                 return H_PARAMETER;
259
260         ret = kvmppc_ioba_validate(stt, ioba, npages);
261         if (ret != H_SUCCESS)
262                 return ret;
263
264         if (kvmppc_gpa_to_ua(vcpu->kvm, tce_list, &ua, &rmap))
265                 return H_TOO_HARD;
266
267         rmap = (void *) vmalloc_to_phys(rmap);
268
269         /*
270          * Synchronize with the MMU notifier callbacks in
271          * book3s_64_mmu_hv.c (kvm_unmap_hva_hv etc.).
272          * While we have the rmap lock, code running on other CPUs
273          * cannot finish unmapping the host real page that backs
274          * this guest real page, so we are OK to access the host
275          * real page.
276          */
277         lock_rmap(rmap);
278         if (kvmppc_rm_ua_to_hpa(vcpu, ua, &tces)) {
279                 ret = H_TOO_HARD;
280                 goto unlock_exit;
281         }
282
283         for (i = 0; i < npages; ++i) {
284                 unsigned long tce = be64_to_cpu(((u64 *)tces)[i]);
285
286                 ret = kvmppc_tce_validate(stt, tce);
287                 if (ret != H_SUCCESS)
288                         goto unlock_exit;
289
290                 kvmppc_tce_put(stt, entry + i, tce);
291         }
292
293 unlock_exit:
294         unlock_rmap(rmap);
295
296         return ret;
297 }
298
299 long kvmppc_h_stuff_tce(struct kvm_vcpu *vcpu,
300                 unsigned long liobn, unsigned long ioba,
301                 unsigned long tce_value, unsigned long npages)
302 {
303         struct kvmppc_spapr_tce_table *stt;
304         long i, ret;
305
306         stt = kvmppc_find_table(vcpu, liobn);
307         if (!stt)
308                 return H_TOO_HARD;
309
310         ret = kvmppc_ioba_validate(stt, ioba, npages);
311         if (ret != H_SUCCESS)
312                 return ret;
313
314         /* Check permission bits only to allow userspace poison TCE for debug */
315         if (tce_value & (TCE_PCI_WRITE | TCE_PCI_READ))
316                 return H_PARAMETER;
317
318         for (i = 0; i < npages; ++i, ioba += (1ULL << stt->page_shift))
319                 kvmppc_tce_put(stt, ioba >> stt->page_shift, tce_value);
320
321         return H_SUCCESS;
322 }
323 EXPORT_SYMBOL_GPL(kvmppc_h_stuff_tce);
324
325 long kvmppc_h_get_tce(struct kvm_vcpu *vcpu, unsigned long liobn,
326                       unsigned long ioba)
327 {
328         struct kvmppc_spapr_tce_table *stt = kvmppc_find_table(vcpu, liobn);
329         long ret;
330         unsigned long idx;
331         struct page *page;
332         u64 *tbl;
333
334         if (!stt)
335                 return H_TOO_HARD;
336
337         ret = kvmppc_ioba_validate(stt, ioba, 1);
338         if (ret != H_SUCCESS)
339                 return ret;
340
341         idx = (ioba >> stt->page_shift) - stt->offset;
342         page = stt->pages[idx / TCES_PER_PAGE];
343         tbl = (u64 *)page_address(page);
344
345         vcpu->arch.gpr[4] = tbl[idx % TCES_PER_PAGE];
346
347         return H_SUCCESS;
348 }
349 EXPORT_SYMBOL_GPL(kvmppc_h_get_tce);
350
351 #endif /* KVM_BOOK3S_HV_POSSIBLE */