blob: 85d3e648bdea80ae65d331cf6b42912b99dab1f0 [file] [log] [blame]
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +10001/*
2 * VFIO: IOMMU DMA mapping support for TCE on POWER
3 *
4 * Copyright (C) 2013 IBM Corp. All rights reserved.
5 * Author: Alexey Kardashevskiy <aik@ozlabs.ru>
6 *
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.
10 *
11 * Derived from original vfio_iommu_type1.c:
12 * Copyright (C) 2012 Red Hat, Inc. All rights reserved.
13 * Author: Alex Williamson <alex.williamson@redhat.com>
14 */
15
16#include <linux/module.h>
17#include <linux/pci.h>
18#include <linux/slab.h>
19#include <linux/uaccess.h>
20#include <linux/err.h>
21#include <linux/vfio.h>
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +100022#include <linux/vmalloc.h>
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +100023#include <asm/iommu.h>
24#include <asm/tce.h>
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +100025#include <asm/mmu_context.h>
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +100026
27#define DRIVER_VERSION "0.1"
28#define DRIVER_AUTHOR "aik@ozlabs.ru"
29#define DRIVER_DESC "VFIO IOMMU SPAPR TCE"
30
31static void tce_iommu_detach_group(void *iommu_data,
32 struct iommu_group *iommu_group);
33
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +000034static long try_increment_locked_vm(struct mm_struct *mm, long npages)
Alexey Kardashevskiy2d270df2015-06-05 16:35:01 +100035{
36 long ret = 0, locked, lock_limit;
37
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +000038 if (WARN_ON_ONCE(!mm))
39 return -EPERM;
Alexey Kardashevskiy2d270df2015-06-05 16:35:01 +100040
41 if (!npages)
42 return 0;
43
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +000044 down_write(&mm->mmap_sem);
45 locked = mm->locked_vm + npages;
Alexey Kardashevskiy2d270df2015-06-05 16:35:01 +100046 lock_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
47 if (locked > lock_limit && !capable(CAP_IPC_LOCK))
48 ret = -ENOMEM;
49 else
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +000050 mm->locked_vm += npages;
Alexey Kardashevskiy2d270df2015-06-05 16:35:01 +100051
52 pr_debug("[%d] RLIMIT_MEMLOCK +%ld %ld/%ld%s\n", current->pid,
53 npages << PAGE_SHIFT,
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +000054 mm->locked_vm << PAGE_SHIFT,
Alexey Kardashevskiy2d270df2015-06-05 16:35:01 +100055 rlimit(RLIMIT_MEMLOCK),
56 ret ? " - exceeded" : "");
57
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +000058 up_write(&mm->mmap_sem);
Alexey Kardashevskiy2d270df2015-06-05 16:35:01 +100059
60 return ret;
61}
62
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +000063static void decrement_locked_vm(struct mm_struct *mm, long npages)
Alexey Kardashevskiy2d270df2015-06-05 16:35:01 +100064{
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +000065 if (!mm || !npages)
66 return;
Alexey Kardashevskiy2d270df2015-06-05 16:35:01 +100067
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +000068 down_write(&mm->mmap_sem);
69 if (WARN_ON_ONCE(npages > mm->locked_vm))
70 npages = mm->locked_vm;
71 mm->locked_vm -= npages;
Alexey Kardashevskiy2d270df2015-06-05 16:35:01 +100072 pr_debug("[%d] RLIMIT_MEMLOCK -%ld %ld/%ld\n", current->pid,
73 npages << PAGE_SHIFT,
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +000074 mm->locked_vm << PAGE_SHIFT,
Alexey Kardashevskiy2d270df2015-06-05 16:35:01 +100075 rlimit(RLIMIT_MEMLOCK));
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +000076 up_write(&mm->mmap_sem);
Alexey Kardashevskiy2d270df2015-06-05 16:35:01 +100077}
78
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +100079/*
80 * VFIO IOMMU fd for SPAPR_TCE IOMMU implementation
81 *
82 * This code handles mapping and unmapping of user data buffers
83 * into DMA'ble space using the IOMMU
84 */
85
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +100086struct tce_iommu_group {
87 struct list_head next;
88 struct iommu_group *grp;
89};
90
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +100091/*
Alexey Kardashevskiy080eb132017-03-17 00:48:27 +000092 * A container needs to remember which preregistered region it has
93 * referenced to do proper cleanup at the userspace process exit.
94 */
95struct tce_iommu_prereg {
96 struct list_head next;
97 struct mm_iommu_table_group_mem_t *mem;
98};
99
100/*
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +1000101 * The container descriptor supports only a single group per container.
102 * Required by the API as the container is not supplied with the IOMMU group
103 * at the moment of initialization.
104 */
105struct tce_container {
106 struct mutex lock;
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +1000107 bool enabled;
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000108 bool v2;
Alexey Kardashevskiy53e18962017-03-17 00:48:29 +0000109 bool def_window_pending;
Alexey Kardashevskiy2d270df2015-06-05 16:35:01 +1000110 unsigned long locked_pages;
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +0000111 struct mm_struct *mm;
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000112 struct iommu_table *tables[IOMMU_TABLE_GROUP_MAX_TABLES];
113 struct list_head group_list;
Alexey Kardashevskiy080eb132017-03-17 00:48:27 +0000114 struct list_head prereg_list;
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +1000115};
116
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +0000117static long tce_iommu_mm_set(struct tce_container *container)
118{
119 if (container->mm) {
120 if (container->mm == current->mm)
121 return 0;
122 return -EPERM;
123 }
124 BUG_ON(!current->mm);
125 container->mm = current->mm;
126 atomic_inc(&container->mm->mm_count);
127
128 return 0;
129}
130
Alexey Kardashevskiy080eb132017-03-17 00:48:27 +0000131static long tce_iommu_prereg_free(struct tce_container *container,
132 struct tce_iommu_prereg *tcemem)
133{
134 long ret;
135
136 ret = mm_iommu_put(container->mm, tcemem->mem);
137 if (ret)
138 return ret;
139
140 list_del(&tcemem->next);
141 kfree(tcemem);
142
143 return 0;
144}
145
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000146static long tce_iommu_unregister_pages(struct tce_container *container,
147 __u64 vaddr, __u64 size)
148{
149 struct mm_iommu_table_group_mem_t *mem;
Alexey Kardashevskiy080eb132017-03-17 00:48:27 +0000150 struct tce_iommu_prereg *tcemem;
151 bool found = false;
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000152
153 if ((vaddr & ~PAGE_MASK) || (size & ~PAGE_MASK))
154 return -EINVAL;
155
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +0000156 mem = mm_iommu_find(container->mm, vaddr, size >> PAGE_SHIFT);
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000157 if (!mem)
158 return -ENOENT;
159
Alexey Kardashevskiy080eb132017-03-17 00:48:27 +0000160 list_for_each_entry(tcemem, &container->prereg_list, next) {
161 if (tcemem->mem == mem) {
162 found = true;
163 break;
164 }
165 }
166
167 if (!found)
168 return -ENOENT;
169
170 return tce_iommu_prereg_free(container, tcemem);
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000171}
172
173static long tce_iommu_register_pages(struct tce_container *container,
174 __u64 vaddr, __u64 size)
175{
176 long ret = 0;
177 struct mm_iommu_table_group_mem_t *mem = NULL;
Alexey Kardashevskiy080eb132017-03-17 00:48:27 +0000178 struct tce_iommu_prereg *tcemem;
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000179 unsigned long entries = size >> PAGE_SHIFT;
180
181 if ((vaddr & ~PAGE_MASK) || (size & ~PAGE_MASK) ||
182 ((vaddr + size) < vaddr))
183 return -EINVAL;
184
Alexey Kardashevskiy080eb132017-03-17 00:48:27 +0000185 mem = mm_iommu_find(container->mm, vaddr, entries);
186 if (mem) {
187 list_for_each_entry(tcemem, &container->prereg_list, next) {
188 if (tcemem->mem == mem)
189 return -EBUSY;
190 }
191 }
192
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +0000193 ret = mm_iommu_get(container->mm, vaddr, entries, &mem);
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000194 if (ret)
195 return ret;
196
Alexey Kardashevskiy080eb132017-03-17 00:48:27 +0000197 tcemem = kzalloc(sizeof(*tcemem), GFP_KERNEL);
198 tcemem->mem = mem;
199 list_add(&tcemem->next, &container->prereg_list);
200
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000201 container->enabled = true;
202
203 return 0;
204}
205
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +0000206static long tce_iommu_userspace_view_alloc(struct iommu_table *tbl,
207 struct mm_struct *mm)
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000208{
209 unsigned long cb = _ALIGN_UP(sizeof(tbl->it_userspace[0]) *
210 tbl->it_size, PAGE_SIZE);
211 unsigned long *uas;
212 long ret;
213
214 BUG_ON(tbl->it_userspace);
215
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +0000216 ret = try_increment_locked_vm(mm, cb >> PAGE_SHIFT);
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000217 if (ret)
218 return ret;
219
220 uas = vzalloc(cb);
221 if (!uas) {
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +0000222 decrement_locked_vm(mm, cb >> PAGE_SHIFT);
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000223 return -ENOMEM;
224 }
225 tbl->it_userspace = uas;
226
227 return 0;
228}
229
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +0000230static void tce_iommu_userspace_view_free(struct iommu_table *tbl,
231 struct mm_struct *mm)
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000232{
233 unsigned long cb = _ALIGN_UP(sizeof(tbl->it_userspace[0]) *
234 tbl->it_size, PAGE_SIZE);
235
236 if (!tbl->it_userspace)
237 return;
238
239 vfree(tbl->it_userspace);
240 tbl->it_userspace = NULL;
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +0000241 decrement_locked_vm(mm, cb >> PAGE_SHIFT);
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000242}
243
Alexey Kardashevskiye432bc72015-06-05 16:34:59 +1000244static bool tce_page_is_contained(struct page *page, unsigned page_shift)
245{
246 /*
247 * Check that the TCE table granularity is not bigger than the size of
248 * a page we just found. Otherwise the hardware can get access to
249 * a bigger memory chunk that it should.
250 */
251 return (PAGE_SHIFT + compound_order(compound_head(page))) >= page_shift;
252}
253
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000254static inline bool tce_groups_attached(struct tce_container *container)
255{
256 return !list_empty(&container->group_list);
257}
258
Alexey Kardashevskiy0eaf4de2015-06-05 16:35:09 +1000259static long tce_iommu_find_table(struct tce_container *container,
260 phys_addr_t ioba, struct iommu_table **ptbl)
261{
262 long i;
Alexey Kardashevskiy0eaf4de2015-06-05 16:35:09 +1000263
264 for (i = 0; i < IOMMU_TABLE_GROUP_MAX_TABLES; ++i) {
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000265 struct iommu_table *tbl = container->tables[i];
Alexey Kardashevskiy0eaf4de2015-06-05 16:35:09 +1000266
267 if (tbl) {
268 unsigned long entry = ioba >> tbl->it_page_shift;
269 unsigned long start = tbl->it_offset;
270 unsigned long end = start + tbl->it_size;
271
272 if ((start <= entry) && (entry < end)) {
273 *ptbl = tbl;
274 return i;
275 }
276 }
277 }
278
279 return -1;
280}
281
Alexey Kardashevskiye633bc82015-06-05 16:35:26 +1000282static int tce_iommu_find_free_table(struct tce_container *container)
283{
284 int i;
285
286 for (i = 0; i < IOMMU_TABLE_GROUP_MAX_TABLES; ++i) {
287 if (!container->tables[i])
288 return i;
289 }
290
291 return -ENOSPC;
292}
293
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +1000294static int tce_iommu_enable(struct tce_container *container)
295{
296 int ret = 0;
Alexey Kardashevskiy2d270df2015-06-05 16:35:01 +1000297 unsigned long locked;
Alexey Kardashevskiy0eaf4de2015-06-05 16:35:09 +1000298 struct iommu_table_group *table_group;
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000299 struct tce_iommu_group *tcegrp;
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +1000300
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +1000301 if (container->enabled)
302 return -EBUSY;
303
304 /*
305 * When userspace pages are mapped into the IOMMU, they are effectively
306 * locked memory, so, theoretically, we need to update the accounting
307 * of locked pages on each map and unmap. For powerpc, the map unmap
308 * paths can be very hot, though, and the accounting would kill
309 * performance, especially since it would be difficult to impossible
310 * to handle the accounting in real mode only.
311 *
312 * To address that, rather than precisely accounting every page, we
313 * instead account for a worst case on locked memory when the iommu is
314 * enabled and disabled. The worst case upper bound on locked memory
315 * is the size of the whole iommu window, which is usually relatively
316 * small (compared to total memory sizes) on POWER hardware.
317 *
318 * Also we don't have a nice way to fail on H_PUT_TCE due to ulimits,
319 * that would effectively kill the guest at random points, much better
320 * enforcing the limit based on the max that the guest can map.
Alexey Kardashevskiy2d270df2015-06-05 16:35:01 +1000321 *
322 * Unfortunately at the moment it counts whole tables, no matter how
323 * much memory the guest has. I.e. for 4GB guest and 4 IOMMU groups
324 * each with 2GB DMA window, 8GB will be counted here. The reason for
325 * this is that we cannot tell here the amount of RAM used by the guest
326 * as this information is only available from KVM and VFIO is
327 * KVM agnostic.
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +1000328 *
329 * So we do not allow enabling a container without a group attached
330 * as there is no way to know how much we should increment
331 * the locked_vm counter.
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +1000332 */
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000333 if (!tce_groups_attached(container))
334 return -ENODEV;
335
336 tcegrp = list_first_entry(&container->group_list,
337 struct tce_iommu_group, next);
338 table_group = iommu_group_get_iommudata(tcegrp->grp);
Alexey Kardashevskiy0eaf4de2015-06-05 16:35:09 +1000339 if (!table_group)
340 return -ENODEV;
341
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +1000342 if (!table_group->tce32_size)
343 return -EPERM;
344
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +0000345 ret = tce_iommu_mm_set(container);
346 if (ret)
347 return ret;
348
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +1000349 locked = table_group->tce32_size >> PAGE_SHIFT;
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +0000350 ret = try_increment_locked_vm(container->mm, locked);
Alexey Kardashevskiy2d270df2015-06-05 16:35:01 +1000351 if (ret)
352 return ret;
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +1000353
Alexey Kardashevskiy2d270df2015-06-05 16:35:01 +1000354 container->locked_pages = locked;
355
356 container->enabled = true;
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +1000357
358 return ret;
359}
360
361static void tce_iommu_disable(struct tce_container *container)
362{
363 if (!container->enabled)
364 return;
365
366 container->enabled = false;
367
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +0000368 BUG_ON(!container->mm);
369 decrement_locked_vm(container->mm, container->locked_pages);
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +1000370}
371
372static void *tce_iommu_open(unsigned long arg)
373{
374 struct tce_container *container;
375
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000376 if ((arg != VFIO_SPAPR_TCE_IOMMU) && (arg != VFIO_SPAPR_TCE_v2_IOMMU)) {
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +1000377 pr_err("tce_vfio: Wrong IOMMU type\n");
378 return ERR_PTR(-EINVAL);
379 }
380
381 container = kzalloc(sizeof(*container), GFP_KERNEL);
382 if (!container)
383 return ERR_PTR(-ENOMEM);
384
385 mutex_init(&container->lock);
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000386 INIT_LIST_HEAD_RCU(&container->group_list);
Alexey Kardashevskiy080eb132017-03-17 00:48:27 +0000387 INIT_LIST_HEAD_RCU(&container->prereg_list);
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000388
389 container->v2 = arg == VFIO_SPAPR_TCE_v2_IOMMU;
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +1000390
391 return container;
392}
393
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000394static int tce_iommu_clear(struct tce_container *container,
395 struct iommu_table *tbl,
396 unsigned long entry, unsigned long pages);
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +0000397static void tce_iommu_free_table(struct tce_container *container,
398 struct iommu_table *tbl);
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000399
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +1000400static void tce_iommu_release(void *iommu_data)
401{
402 struct tce_container *container = iommu_data;
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000403 struct tce_iommu_group *tcegrp;
404 long i;
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +1000405
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000406 while (tce_groups_attached(container)) {
407 tcegrp = list_first_entry(&container->group_list,
408 struct tce_iommu_group, next);
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000409 tce_iommu_detach_group(iommu_data, tcegrp->grp);
410 }
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +1000411
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000412 /*
413 * If VFIO created a table, it was not disposed
414 * by tce_iommu_detach_group() so do it now.
415 */
416 for (i = 0; i < IOMMU_TABLE_GROUP_MAX_TABLES; ++i) {
417 struct iommu_table *tbl = container->tables[i];
418
419 if (!tbl)
420 continue;
421
422 tce_iommu_clear(container, tbl, tbl->it_offset, tbl->it_size);
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +0000423 tce_iommu_free_table(container, tbl);
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000424 }
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +1000425
Alexey Kardashevskiy080eb132017-03-17 00:48:27 +0000426 while (!list_empty(&container->prereg_list)) {
427 struct tce_iommu_prereg *tcemem;
428
429 tcemem = list_first_entry(&container->prereg_list,
430 struct tce_iommu_prereg, next);
431 WARN_ON_ONCE(tce_iommu_prereg_free(container, tcemem));
432 }
433
Alexey Kardashevskiy649354b2015-06-05 16:35:03 +1000434 tce_iommu_disable(container);
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +0000435 if (container->mm)
436 mmdrop(container->mm);
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +1000437 mutex_destroy(&container->lock);
438
439 kfree(container);
440}
441
Alexey Kardashevskiy649354b2015-06-05 16:35:03 +1000442static void tce_iommu_unuse_page(struct tce_container *container,
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +1000443 unsigned long hpa)
Alexey Kardashevskiy649354b2015-06-05 16:35:03 +1000444{
445 struct page *page;
446
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +1000447 page = pfn_to_page(hpa >> PAGE_SHIFT);
Alexey Kardashevskiy649354b2015-06-05 16:35:03 +1000448 put_page(page);
449}
450
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +0000451static int tce_iommu_prereg_ua_to_hpa(struct tce_container *container,
452 unsigned long tce, unsigned long size,
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000453 unsigned long *phpa, struct mm_iommu_table_group_mem_t **pmem)
454{
455 long ret = 0;
456 struct mm_iommu_table_group_mem_t *mem;
457
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +0000458 mem = mm_iommu_lookup(container->mm, tce, size);
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000459 if (!mem)
460 return -EINVAL;
461
462 ret = mm_iommu_ua_to_hpa(mem, tce, phpa);
463 if (ret)
464 return -EINVAL;
465
466 *pmem = mem;
467
468 return 0;
469}
470
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +0000471static void tce_iommu_unuse_page_v2(struct tce_container *container,
472 struct iommu_table *tbl, unsigned long entry)
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000473{
474 struct mm_iommu_table_group_mem_t *mem = NULL;
475 int ret;
476 unsigned long hpa = 0;
477 unsigned long *pua = IOMMU_TABLE_USERSPACE_ENTRY(tbl, entry);
478
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +0000479 if (!pua)
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000480 return;
481
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +0000482 ret = tce_iommu_prereg_ua_to_hpa(container, *pua, IOMMU_PAGE_SIZE(tbl),
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000483 &hpa, &mem);
484 if (ret)
485 pr_debug("%s: tce %lx at #%lx was not cached, ret=%d\n",
486 __func__, *pua, entry, ret);
487 if (mem)
488 mm_iommu_mapped_dec(mem);
489
490 *pua = 0;
491}
492
Alexey Kardashevskiy9b14a1f2015-06-05 16:34:58 +1000493static int tce_iommu_clear(struct tce_container *container,
494 struct iommu_table *tbl,
495 unsigned long entry, unsigned long pages)
496{
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +1000497 unsigned long oldhpa;
498 long ret;
499 enum dma_data_direction direction;
Alexey Kardashevskiy9b14a1f2015-06-05 16:34:58 +1000500
501 for ( ; pages; --pages, ++entry) {
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +1000502 direction = DMA_NONE;
503 oldhpa = 0;
504 ret = iommu_tce_xchg(tbl, entry, &oldhpa, &direction);
505 if (ret)
Alexey Kardashevskiy9b14a1f2015-06-05 16:34:58 +1000506 continue;
507
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +1000508 if (direction == DMA_NONE)
509 continue;
510
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000511 if (container->v2) {
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +0000512 tce_iommu_unuse_page_v2(container, tbl, entry);
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000513 continue;
514 }
515
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +1000516 tce_iommu_unuse_page(container, oldhpa);
Alexey Kardashevskiy9b14a1f2015-06-05 16:34:58 +1000517 }
518
519 return 0;
520}
521
Alexey Kardashevskiy649354b2015-06-05 16:35:03 +1000522static int tce_iommu_use_page(unsigned long tce, unsigned long *hpa)
523{
524 struct page *page = NULL;
525 enum dma_data_direction direction = iommu_tce_direction(tce);
526
527 if (get_user_pages_fast(tce & PAGE_MASK, 1,
528 direction != DMA_TO_DEVICE, &page) != 1)
529 return -EFAULT;
530
531 *hpa = __pa((unsigned long) page_address(page));
532
533 return 0;
534}
535
Alexey Kardashevskiy9b14a1f2015-06-05 16:34:58 +1000536static long tce_iommu_build(struct tce_container *container,
537 struct iommu_table *tbl,
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +1000538 unsigned long entry, unsigned long tce, unsigned long pages,
539 enum dma_data_direction direction)
Alexey Kardashevskiy9b14a1f2015-06-05 16:34:58 +1000540{
541 long i, ret = 0;
Alexey Kardashevskiy649354b2015-06-05 16:35:03 +1000542 struct page *page;
543 unsigned long hpa;
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +1000544 enum dma_data_direction dirtmp;
Alexey Kardashevskiy9b14a1f2015-06-05 16:34:58 +1000545
546 for (i = 0; i < pages; ++i) {
547 unsigned long offset = tce & IOMMU_PAGE_MASK(tbl) & ~PAGE_MASK;
548
Alexey Kardashevskiy649354b2015-06-05 16:35:03 +1000549 ret = tce_iommu_use_page(tce, &hpa);
550 if (ret)
Alexey Kardashevskiy9b14a1f2015-06-05 16:34:58 +1000551 break;
Alexey Kardashevskiye432bc72015-06-05 16:34:59 +1000552
Alexey Kardashevskiy649354b2015-06-05 16:35:03 +1000553 page = pfn_to_page(hpa >> PAGE_SHIFT);
Alexey Kardashevskiye432bc72015-06-05 16:34:59 +1000554 if (!tce_page_is_contained(page, tbl->it_page_shift)) {
555 ret = -EPERM;
556 break;
557 }
558
Alexey Kardashevskiy649354b2015-06-05 16:35:03 +1000559 hpa |= offset;
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +1000560 dirtmp = direction;
561 ret = iommu_tce_xchg(tbl, entry + i, &hpa, &dirtmp);
Alexey Kardashevskiy9b14a1f2015-06-05 16:34:58 +1000562 if (ret) {
Alexey Kardashevskiy649354b2015-06-05 16:35:03 +1000563 tce_iommu_unuse_page(container, hpa);
Alexey Kardashevskiy9b14a1f2015-06-05 16:34:58 +1000564 pr_err("iommu_tce: %s failed ioba=%lx, tce=%lx, ret=%ld\n",
565 __func__, entry << tbl->it_page_shift,
566 tce, ret);
567 break;
568 }
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +1000569
570 if (dirtmp != DMA_NONE)
571 tce_iommu_unuse_page(container, hpa);
572
Alexey Kardashevskiy00663d42015-06-05 16:35:00 +1000573 tce += IOMMU_PAGE_SIZE(tbl);
Alexey Kardashevskiy9b14a1f2015-06-05 16:34:58 +1000574 }
575
576 if (ret)
577 tce_iommu_clear(container, tbl, entry, i);
578
579 return ret;
580}
581
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000582static long tce_iommu_build_v2(struct tce_container *container,
583 struct iommu_table *tbl,
584 unsigned long entry, unsigned long tce, unsigned long pages,
585 enum dma_data_direction direction)
586{
587 long i, ret = 0;
588 struct page *page;
589 unsigned long hpa;
590 enum dma_data_direction dirtmp;
591
Alexey Kardashevskiy5d8b3e72017-03-17 00:48:26 +0000592 if (!tbl->it_userspace) {
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +0000593 ret = tce_iommu_userspace_view_alloc(tbl, container->mm);
Alexey Kardashevskiy5d8b3e72017-03-17 00:48:26 +0000594 if (ret)
595 return ret;
596 }
597
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000598 for (i = 0; i < pages; ++i) {
599 struct mm_iommu_table_group_mem_t *mem = NULL;
600 unsigned long *pua = IOMMU_TABLE_USERSPACE_ENTRY(tbl,
601 entry + i);
602
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +0000603 ret = tce_iommu_prereg_ua_to_hpa(container,
604 tce, IOMMU_PAGE_SIZE(tbl), &hpa, &mem);
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000605 if (ret)
606 break;
607
608 page = pfn_to_page(hpa >> PAGE_SHIFT);
609 if (!tce_page_is_contained(page, tbl->it_page_shift)) {
610 ret = -EPERM;
611 break;
612 }
613
614 /* Preserve offset within IOMMU page */
615 hpa |= tce & IOMMU_PAGE_MASK(tbl) & ~PAGE_MASK;
616 dirtmp = direction;
617
618 /* The registered region is being unregistered */
619 if (mm_iommu_mapped_inc(mem))
620 break;
621
622 ret = iommu_tce_xchg(tbl, entry + i, &hpa, &dirtmp);
623 if (ret) {
624 /* dirtmp cannot be DMA_NONE here */
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +0000625 tce_iommu_unuse_page_v2(container, tbl, entry + i);
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000626 pr_err("iommu_tce: %s failed ioba=%lx, tce=%lx, ret=%ld\n",
627 __func__, entry << tbl->it_page_shift,
628 tce, ret);
629 break;
630 }
631
632 if (dirtmp != DMA_NONE)
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +0000633 tce_iommu_unuse_page_v2(container, tbl, entry + i);
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000634
635 *pua = tce;
636
637 tce += IOMMU_PAGE_SIZE(tbl);
638 }
639
640 if (ret)
641 tce_iommu_clear(container, tbl, entry, i);
642
643 return ret;
644}
645
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +1000646static long tce_iommu_create_table(struct tce_container *container,
647 struct iommu_table_group *table_group,
648 int num,
649 __u32 page_shift,
650 __u64 window_size,
651 __u32 levels,
652 struct iommu_table **ptbl)
653{
654 long ret, table_size;
655
656 table_size = table_group->ops->get_table_size(page_shift, window_size,
657 levels);
658 if (!table_size)
659 return -EINVAL;
660
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +0000661 ret = try_increment_locked_vm(container->mm, table_size >> PAGE_SHIFT);
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +1000662 if (ret)
663 return ret;
664
665 ret = table_group->ops->create_table(table_group, num,
666 page_shift, window_size, levels, ptbl);
667
668 WARN_ON(!ret && !(*ptbl)->it_ops->free);
669 WARN_ON(!ret && ((*ptbl)->it_allocated_size != table_size));
670
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +1000671 return ret;
672}
673
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +0000674static void tce_iommu_free_table(struct tce_container *container,
675 struct iommu_table *tbl)
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +1000676{
677 unsigned long pages = tbl->it_allocated_size >> PAGE_SHIFT;
678
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +0000679 tce_iommu_userspace_view_free(tbl, container->mm);
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +1000680 tbl->it_ops->free(tbl);
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +0000681 decrement_locked_vm(container->mm, pages);
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +1000682}
683
Alexey Kardashevskiye633bc82015-06-05 16:35:26 +1000684static long tce_iommu_create_window(struct tce_container *container,
685 __u32 page_shift, __u64 window_size, __u32 levels,
686 __u64 *start_addr)
687{
688 struct tce_iommu_group *tcegrp;
689 struct iommu_table_group *table_group;
690 struct iommu_table *tbl = NULL;
691 long ret, num;
692
693 num = tce_iommu_find_free_table(container);
694 if (num < 0)
695 return num;
696
697 /* Get the first group for ops::create_table */
698 tcegrp = list_first_entry(&container->group_list,
699 struct tce_iommu_group, next);
700 table_group = iommu_group_get_iommudata(tcegrp->grp);
701 if (!table_group)
702 return -EFAULT;
703
704 if (!(table_group->pgsizes & (1ULL << page_shift)))
705 return -EINVAL;
706
707 if (!table_group->ops->set_window || !table_group->ops->unset_window ||
708 !table_group->ops->get_table_size ||
709 !table_group->ops->create_table)
710 return -EPERM;
711
712 /* Create TCE table */
713 ret = tce_iommu_create_table(container, table_group, num,
714 page_shift, window_size, levels, &tbl);
715 if (ret)
716 return ret;
717
718 BUG_ON(!tbl->it_ops->free);
719
720 /*
721 * Program the table to every group.
722 * Groups have been tested for compatibility at the attach time.
723 */
724 list_for_each_entry(tcegrp, &container->group_list, next) {
725 table_group = iommu_group_get_iommudata(tcegrp->grp);
726
727 ret = table_group->ops->set_window(table_group, num, tbl);
728 if (ret)
729 goto unset_exit;
730 }
731
732 container->tables[num] = tbl;
733
734 /* Return start address assigned by platform in create_table() */
735 *start_addr = tbl->it_offset << tbl->it_page_shift;
736
737 return 0;
738
739unset_exit:
740 list_for_each_entry(tcegrp, &container->group_list, next) {
741 table_group = iommu_group_get_iommudata(tcegrp->grp);
742 table_group->ops->unset_window(table_group, num);
743 }
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +0000744 tce_iommu_free_table(container, tbl);
Alexey Kardashevskiye633bc82015-06-05 16:35:26 +1000745
746 return ret;
747}
748
749static long tce_iommu_remove_window(struct tce_container *container,
750 __u64 start_addr)
751{
752 struct iommu_table_group *table_group = NULL;
753 struct iommu_table *tbl;
754 struct tce_iommu_group *tcegrp;
755 int num;
756
757 num = tce_iommu_find_table(container, start_addr, &tbl);
758 if (num < 0)
759 return -EINVAL;
760
761 BUG_ON(!tbl->it_size);
762
763 /* Detach groups from IOMMUs */
764 list_for_each_entry(tcegrp, &container->group_list, next) {
765 table_group = iommu_group_get_iommudata(tcegrp->grp);
766
767 /*
768 * SPAPR TCE IOMMU exposes the default DMA window to
769 * the guest via dma32_window_start/size of
770 * VFIO_IOMMU_SPAPR_TCE_GET_INFO. Some platforms allow
771 * the userspace to remove this window, some do not so
772 * here we check for the platform capability.
773 */
774 if (!table_group->ops || !table_group->ops->unset_window)
775 return -EPERM;
776
777 table_group->ops->unset_window(table_group, num);
778 }
779
780 /* Free table */
781 tce_iommu_clear(container, tbl, tbl->it_offset, tbl->it_size);
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +0000782 tce_iommu_free_table(container, tbl);
Alexey Kardashevskiye633bc82015-06-05 16:35:26 +1000783 container->tables[num] = NULL;
784
785 return 0;
786}
787
Alexey Kardashevskiy2e60bac2017-03-17 00:48:28 +0000788static long tce_iommu_create_default_window(struct tce_container *container)
789{
790 long ret;
791 __u64 start_addr = 0;
792 struct tce_iommu_group *tcegrp;
793 struct iommu_table_group *table_group;
794
Alexey Kardashevskiy53e18962017-03-17 00:48:29 +0000795 if (!container->def_window_pending)
796 return 0;
797
Alexey Kardashevskiy2e60bac2017-03-17 00:48:28 +0000798 if (!tce_groups_attached(container))
799 return -ENODEV;
800
801 tcegrp = list_first_entry(&container->group_list,
802 struct tce_iommu_group, next);
803 table_group = iommu_group_get_iommudata(tcegrp->grp);
804 if (!table_group)
805 return -ENODEV;
806
807 ret = tce_iommu_create_window(container, IOMMU_PAGE_SHIFT_4K,
808 table_group->tce32_size, 1, &start_addr);
809 WARN_ON_ONCE(!ret && start_addr);
810
Alexey Kardashevskiy53e18962017-03-17 00:48:29 +0000811 if (!ret)
812 container->def_window_pending = false;
813
Alexey Kardashevskiy2e60bac2017-03-17 00:48:28 +0000814 return ret;
815}
816
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +1000817static long tce_iommu_ioctl(void *iommu_data,
818 unsigned int cmd, unsigned long arg)
819{
820 struct tce_container *container = iommu_data;
Alexey Kardashevskiye633bc82015-06-05 16:35:26 +1000821 unsigned long minsz, ddwsz;
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +1000822 long ret;
823
824 switch (cmd) {
825 case VFIO_CHECK_EXTENSION:
Gavin Shan1b69be52014-06-10 11:41:57 +1000826 switch (arg) {
827 case VFIO_SPAPR_TCE_IOMMU:
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000828 case VFIO_SPAPR_TCE_v2_IOMMU:
Gavin Shan1b69be52014-06-10 11:41:57 +1000829 ret = 1;
830 break;
831 default:
832 ret = vfio_spapr_iommu_eeh_ioctl(NULL, cmd, arg);
833 break;
834 }
835
836 return (ret < 0) ? 0 : ret;
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +0000837 }
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +1000838
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +0000839 /*
840 * Sanity check to prevent one userspace from manipulating
841 * another userspace mm.
842 */
843 BUG_ON(!container);
844 if (container->mm && container->mm != current->mm)
845 return -EPERM;
846
847 switch (cmd) {
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +1000848 case VFIO_IOMMU_SPAPR_TCE_GET_INFO: {
849 struct vfio_iommu_spapr_tce_info info;
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000850 struct tce_iommu_group *tcegrp;
Alexey Kardashevskiy0eaf4de2015-06-05 16:35:09 +1000851 struct iommu_table_group *table_group;
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +1000852
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000853 if (!tce_groups_attached(container))
Alexey Kardashevskiy0eaf4de2015-06-05 16:35:09 +1000854 return -ENXIO;
855
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000856 tcegrp = list_first_entry(&container->group_list,
857 struct tce_iommu_group, next);
858 table_group = iommu_group_get_iommudata(tcegrp->grp);
Alexey Kardashevskiy0eaf4de2015-06-05 16:35:09 +1000859
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +1000860 if (!table_group)
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +1000861 return -ENXIO;
862
863 minsz = offsetofend(struct vfio_iommu_spapr_tce_info,
864 dma32_window_size);
865
866 if (copy_from_user(&info, (void __user *)arg, minsz))
867 return -EFAULT;
868
869 if (info.argsz < minsz)
870 return -EINVAL;
871
Alexey Kardashevskiy4793d652015-06-05 16:35:20 +1000872 info.dma32_window_start = table_group->tce32_start;
873 info.dma32_window_size = table_group->tce32_size;
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +1000874 info.flags = 0;
Alexey Kardashevskiye633bc82015-06-05 16:35:26 +1000875 memset(&info.ddw, 0, sizeof(info.ddw));
876
877 if (table_group->max_dynamic_windows_supported &&
878 container->v2) {
879 info.flags |= VFIO_IOMMU_SPAPR_INFO_DDW;
880 info.ddw.pgsizes = table_group->pgsizes;
881 info.ddw.max_dynamic_windows_supported =
882 table_group->max_dynamic_windows_supported;
883 info.ddw.levels = table_group->max_levels;
884 }
885
886 ddwsz = offsetofend(struct vfio_iommu_spapr_tce_info, ddw);
887
888 if (info.argsz >= ddwsz)
889 minsz = ddwsz;
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +1000890
891 if (copy_to_user((void __user *)arg, &info, minsz))
892 return -EFAULT;
893
894 return 0;
895 }
896 case VFIO_IOMMU_MAP_DMA: {
897 struct vfio_iommu_type1_dma_map param;
Alexey Kardashevskiy0eaf4de2015-06-05 16:35:09 +1000898 struct iommu_table *tbl = NULL;
Alexey Kardashevskiy0eaf4de2015-06-05 16:35:09 +1000899 long num;
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +1000900 enum dma_data_direction direction;
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +1000901
Alexey Kardashevskiy3c56e822015-06-05 16:35:02 +1000902 if (!container->enabled)
903 return -EPERM;
904
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +1000905 minsz = offsetofend(struct vfio_iommu_type1_dma_map, size);
906
907 if (copy_from_user(&param, (void __user *)arg, minsz))
908 return -EFAULT;
909
910 if (param.argsz < minsz)
911 return -EINVAL;
912
913 if (param.flags & ~(VFIO_DMA_MAP_FLAG_READ |
914 VFIO_DMA_MAP_FLAG_WRITE))
915 return -EINVAL;
916
Alexey Kardashevskiy53e18962017-03-17 00:48:29 +0000917 ret = tce_iommu_create_default_window(container);
918 if (ret)
919 return ret;
920
Alexey Kardashevskiy0eaf4de2015-06-05 16:35:09 +1000921 num = tce_iommu_find_table(container, param.iova, &tbl);
922 if (num < 0)
923 return -ENXIO;
924
Alexey Kardashevskiy00663d42015-06-05 16:35:00 +1000925 if ((param.size & ~IOMMU_PAGE_MASK(tbl)) ||
926 (param.vaddr & ~IOMMU_PAGE_MASK(tbl)))
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +1000927 return -EINVAL;
928
929 /* iova is checked by the IOMMU API */
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +1000930 if (param.flags & VFIO_DMA_MAP_FLAG_READ) {
931 if (param.flags & VFIO_DMA_MAP_FLAG_WRITE)
932 direction = DMA_BIDIRECTIONAL;
933 else
934 direction = DMA_TO_DEVICE;
935 } else {
936 if (param.flags & VFIO_DMA_MAP_FLAG_WRITE)
937 direction = DMA_FROM_DEVICE;
938 else
939 return -EINVAL;
940 }
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +1000941
Alexey Kardashevskiy05c6cfb2015-06-05 16:35:15 +1000942 ret = iommu_tce_put_param_check(tbl, param.iova, param.vaddr);
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +1000943 if (ret)
944 return ret;
945
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +1000946 if (container->v2)
947 ret = tce_iommu_build_v2(container, tbl,
948 param.iova >> tbl->it_page_shift,
949 param.vaddr,
950 param.size >> tbl->it_page_shift,
951 direction);
952 else
953 ret = tce_iommu_build(container, tbl,
954 param.iova >> tbl->it_page_shift,
955 param.vaddr,
956 param.size >> tbl->it_page_shift,
957 direction);
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +1000958
959 iommu_flush_tce(tbl);
960
961 return ret;
962 }
963 case VFIO_IOMMU_UNMAP_DMA: {
964 struct vfio_iommu_type1_dma_unmap param;
Alexey Kardashevskiy0eaf4de2015-06-05 16:35:09 +1000965 struct iommu_table *tbl = NULL;
966 long num;
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +1000967
Alexey Kardashevskiy3c56e822015-06-05 16:35:02 +1000968 if (!container->enabled)
969 return -EPERM;
970
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +1000971 minsz = offsetofend(struct vfio_iommu_type1_dma_unmap,
972 size);
973
974 if (copy_from_user(&param, (void __user *)arg, minsz))
975 return -EFAULT;
976
977 if (param.argsz < minsz)
978 return -EINVAL;
979
980 /* No flag is supported now */
981 if (param.flags)
982 return -EINVAL;
983
Alexey Kardashevskiy53e18962017-03-17 00:48:29 +0000984 ret = tce_iommu_create_default_window(container);
985 if (ret)
986 return ret;
987
Alexey Kardashevskiy0eaf4de2015-06-05 16:35:09 +1000988 num = tce_iommu_find_table(container, param.iova, &tbl);
989 if (num < 0)
990 return -ENXIO;
991
Alexey Kardashevskiy00663d42015-06-05 16:35:00 +1000992 if (param.size & ~IOMMU_PAGE_MASK(tbl))
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +1000993 return -EINVAL;
994
995 ret = iommu_tce_clear_param_check(tbl, param.iova, 0,
Alexey Kardashevskiy00663d42015-06-05 16:35:00 +1000996 param.size >> tbl->it_page_shift);
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +1000997 if (ret)
998 return ret;
999
Alexey Kardashevskiy9b14a1f2015-06-05 16:34:58 +10001000 ret = tce_iommu_clear(container, tbl,
Alexey Kardashevskiy00663d42015-06-05 16:35:00 +10001001 param.iova >> tbl->it_page_shift,
1002 param.size >> tbl->it_page_shift);
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +10001003 iommu_flush_tce(tbl);
1004
1005 return ret;
1006 }
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +10001007 case VFIO_IOMMU_SPAPR_REGISTER_MEMORY: {
1008 struct vfio_iommu_spapr_register_memory param;
1009
1010 if (!container->v2)
1011 break;
1012
1013 minsz = offsetofend(struct vfio_iommu_spapr_register_memory,
1014 size);
1015
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +00001016 ret = tce_iommu_mm_set(container);
1017 if (ret)
1018 return ret;
1019
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +10001020 if (copy_from_user(&param, (void __user *)arg, minsz))
1021 return -EFAULT;
1022
1023 if (param.argsz < minsz)
1024 return -EINVAL;
1025
1026 /* No flag is supported now */
1027 if (param.flags)
1028 return -EINVAL;
1029
1030 mutex_lock(&container->lock);
1031 ret = tce_iommu_register_pages(container, param.vaddr,
1032 param.size);
1033 mutex_unlock(&container->lock);
1034
1035 return ret;
1036 }
1037 case VFIO_IOMMU_SPAPR_UNREGISTER_MEMORY: {
1038 struct vfio_iommu_spapr_register_memory param;
1039
1040 if (!container->v2)
1041 break;
1042
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +00001043 if (!container->mm)
1044 return -EPERM;
1045
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +10001046 minsz = offsetofend(struct vfio_iommu_spapr_register_memory,
1047 size);
1048
1049 if (copy_from_user(&param, (void __user *)arg, minsz))
1050 return -EFAULT;
1051
1052 if (param.argsz < minsz)
1053 return -EINVAL;
1054
1055 /* No flag is supported now */
1056 if (param.flags)
1057 return -EINVAL;
1058
1059 mutex_lock(&container->lock);
1060 ret = tce_iommu_unregister_pages(container, param.vaddr,
1061 param.size);
1062 mutex_unlock(&container->lock);
1063
1064 return ret;
1065 }
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +10001066 case VFIO_IOMMU_ENABLE:
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +10001067 if (container->v2)
1068 break;
1069
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +10001070 mutex_lock(&container->lock);
1071 ret = tce_iommu_enable(container);
1072 mutex_unlock(&container->lock);
1073 return ret;
1074
1075
1076 case VFIO_IOMMU_DISABLE:
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +10001077 if (container->v2)
1078 break;
1079
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +10001080 mutex_lock(&container->lock);
1081 tce_iommu_disable(container);
1082 mutex_unlock(&container->lock);
1083 return 0;
Gavin Shan1b69be52014-06-10 11:41:57 +10001084
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +10001085 case VFIO_EEH_PE_OP: {
1086 struct tce_iommu_group *tcegrp;
1087
1088 ret = 0;
1089 list_for_each_entry(tcegrp, &container->group_list, next) {
1090 ret = vfio_spapr_iommu_eeh_ioctl(tcegrp->grp,
1091 cmd, arg);
1092 if (ret)
1093 return ret;
1094 }
1095 return ret;
1096 }
1097
Alexey Kardashevskiye633bc82015-06-05 16:35:26 +10001098 case VFIO_IOMMU_SPAPR_TCE_CREATE: {
1099 struct vfio_iommu_spapr_tce_create create;
1100
1101 if (!container->v2)
1102 break;
1103
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +00001104 ret = tce_iommu_mm_set(container);
1105 if (ret)
1106 return ret;
1107
Alexey Kardashevskiye633bc82015-06-05 16:35:26 +10001108 if (!tce_groups_attached(container))
1109 return -ENXIO;
1110
1111 minsz = offsetofend(struct vfio_iommu_spapr_tce_create,
1112 start_addr);
1113
1114 if (copy_from_user(&create, (void __user *)arg, minsz))
1115 return -EFAULT;
1116
1117 if (create.argsz < minsz)
1118 return -EINVAL;
1119
1120 if (create.flags)
1121 return -EINVAL;
1122
1123 mutex_lock(&container->lock);
1124
Alexey Kardashevskiy53e18962017-03-17 00:48:29 +00001125 ret = tce_iommu_create_default_window(container);
1126 if (ret)
1127 return ret;
1128
Alexey Kardashevskiye633bc82015-06-05 16:35:26 +10001129 ret = tce_iommu_create_window(container, create.page_shift,
1130 create.window_size, create.levels,
1131 &create.start_addr);
1132
1133 mutex_unlock(&container->lock);
1134
1135 if (!ret && copy_to_user((void __user *)arg, &create, minsz))
1136 ret = -EFAULT;
1137
1138 return ret;
1139 }
1140 case VFIO_IOMMU_SPAPR_TCE_REMOVE: {
1141 struct vfio_iommu_spapr_tce_remove remove;
1142
1143 if (!container->v2)
1144 break;
1145
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +00001146 ret = tce_iommu_mm_set(container);
1147 if (ret)
1148 return ret;
1149
Alexey Kardashevskiye633bc82015-06-05 16:35:26 +10001150 if (!tce_groups_attached(container))
1151 return -ENXIO;
1152
1153 minsz = offsetofend(struct vfio_iommu_spapr_tce_remove,
1154 start_addr);
1155
1156 if (copy_from_user(&remove, (void __user *)arg, minsz))
1157 return -EFAULT;
1158
1159 if (remove.argsz < minsz)
1160 return -EINVAL;
1161
1162 if (remove.flags)
1163 return -EINVAL;
1164
Alexey Kardashevskiy53e18962017-03-17 00:48:29 +00001165 if (container->def_window_pending && !remove.start_addr) {
1166 container->def_window_pending = false;
1167 return 0;
1168 }
1169
Alexey Kardashevskiye633bc82015-06-05 16:35:26 +10001170 mutex_lock(&container->lock);
1171
1172 ret = tce_iommu_remove_window(container, remove.start_addr);
1173
1174 mutex_unlock(&container->lock);
1175
1176 return ret;
1177 }
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +10001178 }
1179
1180 return -ENOTTY;
1181}
1182
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10001183static void tce_iommu_release_ownership(struct tce_container *container,
1184 struct iommu_table_group *table_group)
1185{
1186 int i;
1187
1188 for (i = 0; i < IOMMU_TABLE_GROUP_MAX_TABLES; ++i) {
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +10001189 struct iommu_table *tbl = container->tables[i];
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10001190
1191 if (!tbl)
1192 continue;
1193
1194 tce_iommu_clear(container, tbl, tbl->it_offset, tbl->it_size);
Alexey Kardashevskiy92e44bc2017-03-17 00:48:27 +00001195 tce_iommu_userspace_view_free(tbl, container->mm);
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10001196 if (tbl->it_map)
1197 iommu_release_ownership(tbl);
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +10001198
1199 container->tables[i] = NULL;
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10001200 }
1201}
1202
1203static int tce_iommu_take_ownership(struct tce_container *container,
1204 struct iommu_table_group *table_group)
1205{
1206 int i, j, rc = 0;
1207
1208 for (i = 0; i < IOMMU_TABLE_GROUP_MAX_TABLES; ++i) {
1209 struct iommu_table *tbl = table_group->tables[i];
1210
1211 if (!tbl || !tbl->it_map)
1212 continue;
1213
Alexey Kardashevskiy5d8b3e72017-03-17 00:48:26 +00001214 rc = iommu_take_ownership(tbl);
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10001215 if (rc) {
1216 for (j = 0; j < i; ++j)
1217 iommu_release_ownership(
1218 table_group->tables[j]);
1219
1220 return rc;
1221 }
1222 }
1223
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +10001224 for (i = 0; i < IOMMU_TABLE_GROUP_MAX_TABLES; ++i)
1225 container->tables[i] = table_group->tables[i];
1226
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10001227 return 0;
1228}
1229
1230static void tce_iommu_release_ownership_ddw(struct tce_container *container,
1231 struct iommu_table_group *table_group)
1232{
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10001233 long i;
1234
1235 if (!table_group->ops->unset_window) {
1236 WARN_ON_ONCE(1);
1237 return;
1238 }
1239
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +10001240 for (i = 0; i < IOMMU_TABLE_GROUP_MAX_TABLES; ++i)
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10001241 table_group->ops->unset_window(table_group, i);
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10001242
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10001243 table_group->ops->release_ownership(table_group);
1244}
1245
1246static long tce_iommu_take_ownership_ddw(struct tce_container *container,
1247 struct iommu_table_group *table_group)
1248{
Alexey Kardashevskiyd5362022017-05-23 21:53:51 -04001249 long i, ret = 0;
1250
Alexey Kardashevskiy46d3e1e2015-06-05 16:35:23 +10001251 if (!table_group->ops->create_table || !table_group->ops->set_window ||
1252 !table_group->ops->release_ownership) {
1253 WARN_ON_ONCE(1);
1254 return -EFAULT;
1255 }
1256
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10001257 table_group->ops->take_ownership(table_group);
1258
Alexey Kardashevskiyd5362022017-05-23 21:53:51 -04001259 /* Set all windows to the new group */
1260 for (i = 0; i < IOMMU_TABLE_GROUP_MAX_TABLES; ++i) {
1261 struct iommu_table *tbl = container->tables[i];
1262
1263 if (!tbl)
1264 continue;
1265
1266 ret = table_group->ops->set_window(table_group, i, tbl);
1267 if (ret)
1268 goto release_exit;
1269 }
1270
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +10001271 return 0;
Alexey Kardashevskiyd5362022017-05-23 21:53:51 -04001272
1273release_exit:
1274 for (i = 0; i < IOMMU_TABLE_GROUP_MAX_TABLES; ++i)
1275 table_group->ops->unset_window(table_group, i);
1276
1277 table_group->ops->release_ownership(table_group);
1278
1279 return ret;
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10001280}
1281
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +10001282static int tce_iommu_attach_group(void *iommu_data,
1283 struct iommu_group *iommu_group)
1284{
1285 int ret;
1286 struct tce_container *container = iommu_data;
Alexey Kardashevskiy0eaf4de2015-06-05 16:35:09 +10001287 struct iommu_table_group *table_group;
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +10001288 struct tce_iommu_group *tcegrp = NULL;
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +10001289
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +10001290 mutex_lock(&container->lock);
1291
1292 /* pr_debug("tce_vfio: Attaching group #%u to iommu %p\n",
1293 iommu_group_id(iommu_group), iommu_group); */
Alexey Kardashevskiy0eaf4de2015-06-05 16:35:09 +10001294 table_group = iommu_group_get_iommudata(iommu_group);
Greg Kurzff3b1dd2017-01-24 17:50:26 +01001295 if (!table_group) {
1296 ret = -ENODEV;
1297 goto unlock_exit;
1298 }
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +10001299
1300 if (tce_groups_attached(container) && (!table_group->ops ||
1301 !table_group->ops->take_ownership ||
1302 !table_group->ops->release_ownership)) {
1303 ret = -EBUSY;
1304 goto unlock_exit;
1305 }
1306
1307 /* Check if new group has the same iommu_ops (i.e. compatible) */
1308 list_for_each_entry(tcegrp, &container->group_list, next) {
1309 struct iommu_table_group *table_group_tmp;
1310
1311 if (tcegrp->grp == iommu_group) {
1312 pr_warn("tce_vfio: Group %d is already attached\n",
1313 iommu_group_id(iommu_group));
1314 ret = -EBUSY;
1315 goto unlock_exit;
1316 }
1317 table_group_tmp = iommu_group_get_iommudata(tcegrp->grp);
Alexey Kardashevskiy54de2852016-04-29 18:55:15 +10001318 if (table_group_tmp->ops->create_table !=
1319 table_group->ops->create_table) {
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +10001320 pr_warn("tce_vfio: Group %d is incompatible with group %d\n",
1321 iommu_group_id(iommu_group),
1322 iommu_group_id(tcegrp->grp));
1323 ret = -EPERM;
1324 goto unlock_exit;
1325 }
1326 }
1327
1328 tcegrp = kzalloc(sizeof(*tcegrp), GFP_KERNEL);
1329 if (!tcegrp) {
1330 ret = -ENOMEM;
Alexey Kardashevskiy0eaf4de2015-06-05 16:35:09 +10001331 goto unlock_exit;
1332 }
1333
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10001334 if (!table_group->ops || !table_group->ops->take_ownership ||
Alexey Kardashevskiy2e60bac2017-03-17 00:48:28 +00001335 !table_group->ops->release_ownership) {
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10001336 ret = tce_iommu_take_ownership(container, table_group);
Alexey Kardashevskiy2e60bac2017-03-17 00:48:28 +00001337 } else {
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10001338 ret = tce_iommu_take_ownership_ddw(container, table_group);
Alexey Kardashevskiy2e60bac2017-03-17 00:48:28 +00001339 if (!tce_groups_attached(container) && !container->tables[0])
Alexey Kardashevskiy53e18962017-03-17 00:48:29 +00001340 container->def_window_pending = true;
Alexey Kardashevskiy2e60bac2017-03-17 00:48:28 +00001341 }
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10001342
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +10001343 if (!ret) {
1344 tcegrp->grp = iommu_group;
1345 list_add(&tcegrp->next, &container->group_list);
1346 }
Alexey Kardashevskiy22af4852015-06-05 16:35:04 +10001347
1348unlock_exit:
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +10001349 if (ret && tcegrp)
1350 kfree(tcegrp);
1351
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +10001352 mutex_unlock(&container->lock);
1353
1354 return ret;
1355}
1356
1357static void tce_iommu_detach_group(void *iommu_data,
1358 struct iommu_group *iommu_group)
1359{
1360 struct tce_container *container = iommu_data;
Alexey Kardashevskiy0eaf4de2015-06-05 16:35:09 +10001361 struct iommu_table_group *table_group;
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +10001362 bool found = false;
1363 struct tce_iommu_group *tcegrp;
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +10001364
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +10001365 mutex_lock(&container->lock);
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +10001366
1367 list_for_each_entry(tcegrp, &container->group_list, next) {
1368 if (tcegrp->grp == iommu_group) {
1369 found = true;
1370 break;
1371 }
1372 }
1373
1374 if (!found) {
1375 pr_warn("tce_vfio: detaching unattached group #%u\n",
1376 iommu_group_id(iommu_group));
Alexey Kardashevskiy22af4852015-06-05 16:35:04 +10001377 goto unlock_exit;
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +10001378 }
Alexey Kardashevskiy22af4852015-06-05 16:35:04 +10001379
Alexey Kardashevskiy2157e7b2015-06-05 16:35:25 +10001380 list_del(&tcegrp->next);
1381 kfree(tcegrp);
Alexey Kardashevskiy0eaf4de2015-06-05 16:35:09 +10001382
1383 table_group = iommu_group_get_iommudata(iommu_group);
1384 BUG_ON(!table_group);
1385
Alexey Kardashevskiyf87a8862015-06-05 16:35:10 +10001386 if (!table_group->ops || !table_group->ops->release_ownership)
1387 tce_iommu_release_ownership(container, table_group);
1388 else
1389 tce_iommu_release_ownership_ddw(container, table_group);
Alexey Kardashevskiy22af4852015-06-05 16:35:04 +10001390
1391unlock_exit:
Alexey Kardashevskiy5ffd2292013-05-21 13:33:10 +10001392 mutex_unlock(&container->lock);
1393}
1394
1395const struct vfio_iommu_driver_ops tce_iommu_driver_ops = {
1396 .name = "iommu-vfio-powerpc",
1397 .owner = THIS_MODULE,
1398 .open = tce_iommu_open,
1399 .release = tce_iommu_release,
1400 .ioctl = tce_iommu_ioctl,
1401 .attach_group = tce_iommu_attach_group,
1402 .detach_group = tce_iommu_detach_group,
1403};
1404
1405static int __init tce_iommu_init(void)
1406{
1407 return vfio_register_iommu_driver(&tce_iommu_driver_ops);
1408}
1409
1410static void __exit tce_iommu_cleanup(void)
1411{
1412 vfio_unregister_iommu_driver(&tce_iommu_driver_ops);
1413}
1414
1415module_init(tce_iommu_init);
1416module_exit(tce_iommu_cleanup);
1417
1418MODULE_VERSION(DRIVER_VERSION);
1419MODULE_LICENSE("GPL v2");
1420MODULE_AUTHOR(DRIVER_AUTHOR);
1421MODULE_DESCRIPTION(DRIVER_DESC);
1422