Merge tag 'drm-intel-gt-next-2022-11-03' of git://anongit.freedesktop.org/drm/drm...
[linux-2.6-microblaze.git] / drivers / gpu / drm / i915 / gem / i915_gem_userptr.c
1 /*
2  * SPDX-License-Identifier: MIT
3  *
4  * Copyright © 2012-2014 Intel Corporation
5  *
6   * Based on amdgpu_mn, which bears the following notice:
7  *
8  * Copyright 2014 Advanced Micro Devices, Inc.
9  * All Rights Reserved.
10  *
11  * Permission is hereby granted, free of charge, to any person obtaining a
12  * copy of this software and associated documentation files (the
13  * "Software"), to deal in the Software without restriction, including
14  * without limitation the rights to use, copy, modify, merge, publish,
15  * distribute, sub license, and/or sell copies of the Software, and to
16  * permit persons to whom the Software is furnished to do so, subject to
17  * the following conditions:
18  *
19  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21  * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
22  * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
23  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
24  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
25  * USE OR OTHER DEALINGS IN THE SOFTWARE.
26  *
27  * The above copyright notice and this permission notice (including the
28  * next paragraph) shall be included in all copies or substantial portions
29  * of the Software.
30  *
31  */
32 /*
33  * Authors:
34  *    Christian König <christian.koenig@amd.com>
35  */
36
37 #include <linux/mmu_context.h>
38 #include <linux/mempolicy.h>
39 #include <linux/swap.h>
40 #include <linux/sched/mm.h>
41
42 #include "i915_drv.h"
43 #include "i915_gem_ioctls.h"
44 #include "i915_gem_object.h"
45 #include "i915_gem_userptr.h"
46 #include "i915_scatterlist.h"
47
48 #ifdef CONFIG_MMU_NOTIFIER
49
50 /**
51  * i915_gem_userptr_invalidate - callback to notify about mm change
52  *
53  * @mni: the range (mm) is about to update
54  * @range: details on the invalidation
55  * @cur_seq: Value to pass to mmu_interval_set_seq()
56  *
57  * Block for operations on BOs to finish and mark pages as accessed and
58  * potentially dirty.
59  */
60 static bool i915_gem_userptr_invalidate(struct mmu_interval_notifier *mni,
61                                         const struct mmu_notifier_range *range,
62                                         unsigned long cur_seq)
63 {
64         struct drm_i915_gem_object *obj = container_of(mni, struct drm_i915_gem_object, userptr.notifier);
65         struct drm_i915_private *i915 = to_i915(obj->base.dev);
66         long r;
67
68         if (!mmu_notifier_range_blockable(range))
69                 return false;
70
71         write_lock(&i915->mm.notifier_lock);
72
73         mmu_interval_set_seq(mni, cur_seq);
74
75         write_unlock(&i915->mm.notifier_lock);
76
77         /*
78          * We don't wait when the process is exiting. This is valid
79          * because the object will be cleaned up anyway.
80          *
81          * This is also temporarily required as a hack, because we
82          * cannot currently force non-consistent batch buffers to preempt
83          * and reschedule by waiting on it, hanging processes on exit.
84          */
85         if (current->flags & PF_EXITING)
86                 return true;
87
88         /* we will unbind on next submission, still have userptr pins */
89         r = dma_resv_wait_timeout(obj->base.resv, DMA_RESV_USAGE_BOOKKEEP, false,
90                                   MAX_SCHEDULE_TIMEOUT);
91         if (r <= 0)
92                 drm_err(&i915->drm, "(%ld) failed to wait for idle\n", r);
93
94         return true;
95 }
96
97 static const struct mmu_interval_notifier_ops i915_gem_userptr_notifier_ops = {
98         .invalidate = i915_gem_userptr_invalidate,
99 };
100
101 static int
102 i915_gem_userptr_init__mmu_notifier(struct drm_i915_gem_object *obj)
103 {
104         return mmu_interval_notifier_insert(&obj->userptr.notifier, current->mm,
105                                             obj->userptr.ptr, obj->base.size,
106                                             &i915_gem_userptr_notifier_ops);
107 }
108
109 static void i915_gem_object_userptr_drop_ref(struct drm_i915_gem_object *obj)
110 {
111         struct page **pvec = NULL;
112
113         assert_object_held_shared(obj);
114
115         if (!--obj->userptr.page_ref) {
116                 pvec = obj->userptr.pvec;
117                 obj->userptr.pvec = NULL;
118         }
119         GEM_BUG_ON(obj->userptr.page_ref < 0);
120
121         if (pvec) {
122                 const unsigned long num_pages = obj->base.size >> PAGE_SHIFT;
123
124                 unpin_user_pages(pvec, num_pages);
125                 kvfree(pvec);
126         }
127 }
128
129 static int i915_gem_userptr_get_pages(struct drm_i915_gem_object *obj)
130 {
131         const unsigned long num_pages = obj->base.size >> PAGE_SHIFT;
132         unsigned int max_segment = i915_sg_segment_size(obj->base.dev->dev);
133         struct sg_table *st;
134         unsigned int sg_page_sizes;
135         struct page **pvec;
136         int ret;
137
138         st = kmalloc(sizeof(*st), GFP_KERNEL);
139         if (!st)
140                 return -ENOMEM;
141
142         if (!obj->userptr.page_ref) {
143                 ret = -EAGAIN;
144                 goto err_free;
145         }
146
147         obj->userptr.page_ref++;
148         pvec = obj->userptr.pvec;
149
150 alloc_table:
151         ret = sg_alloc_table_from_pages_segment(st, pvec, num_pages, 0,
152                                                 num_pages << PAGE_SHIFT,
153                                                 max_segment, GFP_KERNEL);
154         if (ret)
155                 goto err;
156
157         ret = i915_gem_gtt_prepare_pages(obj, st);
158         if (ret) {
159                 sg_free_table(st);
160
161                 if (max_segment > PAGE_SIZE) {
162                         max_segment = PAGE_SIZE;
163                         goto alloc_table;
164                 }
165
166                 goto err;
167         }
168
169         WARN_ON_ONCE(!(obj->cache_coherent & I915_BO_CACHE_COHERENT_FOR_WRITE));
170         if (i915_gem_object_can_bypass_llc(obj))
171                 obj->cache_dirty = true;
172
173         sg_page_sizes = i915_sg_dma_sizes(st->sgl);
174         __i915_gem_object_set_pages(obj, st, sg_page_sizes);
175
176         return 0;
177
178 err:
179         i915_gem_object_userptr_drop_ref(obj);
180 err_free:
181         kfree(st);
182         return ret;
183 }
184
185 static void
186 i915_gem_userptr_put_pages(struct drm_i915_gem_object *obj,
187                            struct sg_table *pages)
188 {
189         struct sgt_iter sgt_iter;
190         struct page *page;
191
192         if (!pages)
193                 return;
194
195         __i915_gem_object_release_shmem(obj, pages, true);
196         i915_gem_gtt_finish_pages(obj, pages);
197
198         /*
199          * We always mark objects as dirty when they are used by the GPU,
200          * just in case. However, if we set the vma as being read-only we know
201          * that the object will never have been written to.
202          */
203         if (i915_gem_object_is_readonly(obj))
204                 obj->mm.dirty = false;
205
206         for_each_sgt_page(page, sgt_iter, pages) {
207                 if (obj->mm.dirty && trylock_page(page)) {
208                         /*
209                          * As this may not be anonymous memory (e.g. shmem)
210                          * but exist on a real mapping, we have to lock
211                          * the page in order to dirty it -- holding
212                          * the page reference is not sufficient to
213                          * prevent the inode from being truncated.
214                          * Play safe and take the lock.
215                          *
216                          * However...!
217                          *
218                          * The mmu-notifier can be invalidated for a
219                          * migrate_folio, that is alreadying holding the lock
220                          * on the folio. Such a try_to_unmap() will result
221                          * in us calling put_pages() and so recursively try
222                          * to lock the page. We avoid that deadlock with
223                          * a trylock_page() and in exchange we risk missing
224                          * some page dirtying.
225                          */
226                         set_page_dirty(page);
227                         unlock_page(page);
228                 }
229
230                 mark_page_accessed(page);
231         }
232         obj->mm.dirty = false;
233
234         sg_free_table(pages);
235         kfree(pages);
236
237         i915_gem_object_userptr_drop_ref(obj);
238 }
239
240 static int i915_gem_object_userptr_unbind(struct drm_i915_gem_object *obj)
241 {
242         struct sg_table *pages;
243         int err;
244
245         err = i915_gem_object_unbind(obj, I915_GEM_OBJECT_UNBIND_ACTIVE);
246         if (err)
247                 return err;
248
249         if (GEM_WARN_ON(i915_gem_object_has_pinned_pages(obj)))
250                 return -EBUSY;
251
252         assert_object_held(obj);
253
254         pages = __i915_gem_object_unset_pages(obj);
255         if (!IS_ERR_OR_NULL(pages))
256                 i915_gem_userptr_put_pages(obj, pages);
257
258         return err;
259 }
260
261 int i915_gem_object_userptr_submit_init(struct drm_i915_gem_object *obj)
262 {
263         const unsigned long num_pages = obj->base.size >> PAGE_SHIFT;
264         struct page **pvec;
265         unsigned int gup_flags = 0;
266         unsigned long notifier_seq;
267         int pinned, ret;
268
269         if (obj->userptr.notifier.mm != current->mm)
270                 return -EFAULT;
271
272         notifier_seq = mmu_interval_read_begin(&obj->userptr.notifier);
273
274         ret = i915_gem_object_lock_interruptible(obj, NULL);
275         if (ret)
276                 return ret;
277
278         if (notifier_seq == obj->userptr.notifier_seq && obj->userptr.pvec) {
279                 i915_gem_object_unlock(obj);
280                 return 0;
281         }
282
283         ret = i915_gem_object_userptr_unbind(obj);
284         i915_gem_object_unlock(obj);
285         if (ret)
286                 return ret;
287
288         pvec = kvmalloc_array(num_pages, sizeof(struct page *), GFP_KERNEL);
289         if (!pvec)
290                 return -ENOMEM;
291
292         if (!i915_gem_object_is_readonly(obj))
293                 gup_flags |= FOLL_WRITE;
294
295         pinned = 0;
296         while (pinned < num_pages) {
297                 ret = pin_user_pages_fast(obj->userptr.ptr + pinned * PAGE_SIZE,
298                                           num_pages - pinned, gup_flags,
299                                           &pvec[pinned]);
300                 if (ret < 0)
301                         goto out;
302
303                 pinned += ret;
304         }
305
306         ret = i915_gem_object_lock_interruptible(obj, NULL);
307         if (ret)
308                 goto out;
309
310         if (mmu_interval_read_retry(&obj->userptr.notifier,
311                 !obj->userptr.page_ref ? notifier_seq :
312                 obj->userptr.notifier_seq)) {
313                 ret = -EAGAIN;
314                 goto out_unlock;
315         }
316
317         if (!obj->userptr.page_ref++) {
318                 obj->userptr.pvec = pvec;
319                 obj->userptr.notifier_seq = notifier_seq;
320                 pvec = NULL;
321                 ret = ____i915_gem_object_get_pages(obj);
322         }
323
324         obj->userptr.page_ref--;
325
326 out_unlock:
327         i915_gem_object_unlock(obj);
328
329 out:
330         if (pvec) {
331                 unpin_user_pages(pvec, pinned);
332                 kvfree(pvec);
333         }
334
335         return ret;
336 }
337
338 int i915_gem_object_userptr_submit_done(struct drm_i915_gem_object *obj)
339 {
340         if (mmu_interval_read_retry(&obj->userptr.notifier,
341                                     obj->userptr.notifier_seq)) {
342                 /* We collided with the mmu notifier, need to retry */
343
344                 return -EAGAIN;
345         }
346
347         return 0;
348 }
349
350 int i915_gem_object_userptr_validate(struct drm_i915_gem_object *obj)
351 {
352         int err;
353
354         err = i915_gem_object_userptr_submit_init(obj);
355         if (err)
356                 return err;
357
358         err = i915_gem_object_lock_interruptible(obj, NULL);
359         if (!err) {
360                 /*
361                  * Since we only check validity, not use the pages,
362                  * it doesn't matter if we collide with the mmu notifier,
363                  * and -EAGAIN handling is not required.
364                  */
365                 err = i915_gem_object_pin_pages(obj);
366                 if (!err)
367                         i915_gem_object_unpin_pages(obj);
368
369                 i915_gem_object_unlock(obj);
370         }
371
372         return err;
373 }
374
375 static void
376 i915_gem_userptr_release(struct drm_i915_gem_object *obj)
377 {
378         GEM_WARN_ON(obj->userptr.page_ref);
379
380         mmu_interval_notifier_remove(&obj->userptr.notifier);
381         obj->userptr.notifier.mm = NULL;
382 }
383
384 static int
385 i915_gem_userptr_dmabuf_export(struct drm_i915_gem_object *obj)
386 {
387         drm_dbg(obj->base.dev, "Exporting userptr no longer allowed\n");
388
389         return -EINVAL;
390 }
391
392 static int
393 i915_gem_userptr_pwrite(struct drm_i915_gem_object *obj,
394                         const struct drm_i915_gem_pwrite *args)
395 {
396         drm_dbg(obj->base.dev, "pwrite to userptr no longer allowed\n");
397
398         return -EINVAL;
399 }
400
401 static int
402 i915_gem_userptr_pread(struct drm_i915_gem_object *obj,
403                        const struct drm_i915_gem_pread *args)
404 {
405         drm_dbg(obj->base.dev, "pread from userptr no longer allowed\n");
406
407         return -EINVAL;
408 }
409
410 static const struct drm_i915_gem_object_ops i915_gem_userptr_ops = {
411         .name = "i915_gem_object_userptr",
412         .flags = I915_GEM_OBJECT_IS_SHRINKABLE |
413                  I915_GEM_OBJECT_NO_MMAP |
414                  I915_GEM_OBJECT_IS_PROXY,
415         .get_pages = i915_gem_userptr_get_pages,
416         .put_pages = i915_gem_userptr_put_pages,
417         .dmabuf_export = i915_gem_userptr_dmabuf_export,
418         .pwrite = i915_gem_userptr_pwrite,
419         .pread = i915_gem_userptr_pread,
420         .release = i915_gem_userptr_release,
421 };
422
423 #endif
424
425 static int
426 probe_range(struct mm_struct *mm, unsigned long addr, unsigned long len)
427 {
428         VMA_ITERATOR(vmi, mm, addr);
429         struct vm_area_struct *vma;
430
431         mmap_read_lock(mm);
432         for_each_vma_range(vmi, vma, addr + len) {
433                 /* Check for holes, note that we also update the addr below */
434                 if (vma->vm_start > addr)
435                         break;
436
437                 if (vma->vm_flags & (VM_PFNMAP | VM_MIXEDMAP))
438                         break;
439
440                 addr = vma->vm_end;
441         }
442         mmap_read_unlock(mm);
443
444         if (vma)
445                 return -EFAULT;
446         return 0;
447 }
448
449 /*
450  * Creates a new mm object that wraps some normal memory from the process
451  * context - user memory.
452  *
453  * We impose several restrictions upon the memory being mapped
454  * into the GPU.
455  * 1. It must be page aligned (both start/end addresses, i.e ptr and size).
456  * 2. It must be normal system memory, not a pointer into another map of IO
457  *    space (e.g. it must not be a GTT mmapping of another object).
458  * 3. We only allow a bo as large as we could in theory map into the GTT,
459  *    that is we limit the size to the total size of the GTT.
460  * 4. The bo is marked as being snoopable. The backing pages are left
461  *    accessible directly by the CPU, but reads and writes by the GPU may
462  *    incur the cost of a snoop (unless you have an LLC architecture).
463  *
464  * Synchronisation between multiple users and the GPU is left to userspace
465  * through the normal set-domain-ioctl. The kernel will enforce that the
466  * GPU relinquishes the VMA before it is returned back to the system
467  * i.e. upon free(), munmap() or process termination. However, the userspace
468  * malloc() library may not immediately relinquish the VMA after free() and
469  * instead reuse it whilst the GPU is still reading and writing to the VMA.
470  * Caveat emptor.
471  *
472  * Also note, that the object created here is not currently a "first class"
473  * object, in that several ioctls are banned. These are the CPU access
474  * ioctls: mmap(), pwrite and pread. In practice, you are expected to use
475  * direct access via your pointer rather than use those ioctls. Another
476  * restriction is that we do not allow userptr surfaces to be pinned to the
477  * hardware and so we reject any attempt to create a framebuffer out of a
478  * userptr.
479  *
480  * If you think this is a good interface to use to pass GPU memory between
481  * drivers, please use dma-buf instead. In fact, wherever possible use
482  * dma-buf instead.
483  */
484 int
485 i915_gem_userptr_ioctl(struct drm_device *dev,
486                        void *data,
487                        struct drm_file *file)
488 {
489         static struct lock_class_key __maybe_unused lock_class;
490         struct drm_i915_private *dev_priv = to_i915(dev);
491         struct drm_i915_gem_userptr *args = data;
492         struct drm_i915_gem_object __maybe_unused *obj;
493         int __maybe_unused ret;
494         u32 __maybe_unused handle;
495
496         if (!HAS_LLC(dev_priv) && !HAS_SNOOP(dev_priv)) {
497                 /* We cannot support coherent userptr objects on hw without
498                  * LLC and broken snooping.
499                  */
500                 return -ENODEV;
501         }
502
503         if (args->flags & ~(I915_USERPTR_READ_ONLY |
504                             I915_USERPTR_UNSYNCHRONIZED |
505                             I915_USERPTR_PROBE))
506                 return -EINVAL;
507
508         if (i915_gem_object_size_2big(args->user_size))
509                 return -E2BIG;
510
511         if (!args->user_size)
512                 return -EINVAL;
513
514         if (offset_in_page(args->user_ptr | args->user_size))
515                 return -EINVAL;
516
517         if (!access_ok((char __user *)(unsigned long)args->user_ptr, args->user_size))
518                 return -EFAULT;
519
520         if (args->flags & I915_USERPTR_UNSYNCHRONIZED)
521                 return -ENODEV;
522
523         if (args->flags & I915_USERPTR_READ_ONLY) {
524                 /*
525                  * On almost all of the older hw, we cannot tell the GPU that
526                  * a page is readonly.
527                  */
528                 if (!to_gt(dev_priv)->vm->has_read_only)
529                         return -ENODEV;
530         }
531
532         if (args->flags & I915_USERPTR_PROBE) {
533                 /*
534                  * Check that the range pointed to represents real struct
535                  * pages and not iomappings (at this moment in time!)
536                  */
537                 ret = probe_range(current->mm, args->user_ptr, args->user_size);
538                 if (ret)
539                         return ret;
540         }
541
542 #ifdef CONFIG_MMU_NOTIFIER
543         obj = i915_gem_object_alloc();
544         if (obj == NULL)
545                 return -ENOMEM;
546
547         drm_gem_private_object_init(dev, &obj->base, args->user_size);
548         i915_gem_object_init(obj, &i915_gem_userptr_ops, &lock_class,
549                              I915_BO_ALLOC_USER);
550         obj->mem_flags = I915_BO_FLAG_STRUCT_PAGE;
551         obj->read_domains = I915_GEM_DOMAIN_CPU;
552         obj->write_domain = I915_GEM_DOMAIN_CPU;
553         i915_gem_object_set_cache_coherency(obj, I915_CACHE_LLC);
554
555         obj->userptr.ptr = args->user_ptr;
556         obj->userptr.notifier_seq = ULONG_MAX;
557         if (args->flags & I915_USERPTR_READ_ONLY)
558                 i915_gem_object_set_readonly(obj);
559
560         /* And keep a pointer to the current->mm for resolving the user pages
561          * at binding. This means that we need to hook into the mmu_notifier
562          * in order to detect if the mmu is destroyed.
563          */
564         ret = i915_gem_userptr_init__mmu_notifier(obj);
565         if (ret == 0)
566                 ret = drm_gem_handle_create(file, &obj->base, &handle);
567
568         /* drop reference from allocate - handle holds it now */
569         i915_gem_object_put(obj);
570         if (ret)
571                 return ret;
572
573         args->handle = handle;
574         return 0;
575 #else
576         return -ENODEV;
577 #endif
578 }
579
580 int i915_gem_init_userptr(struct drm_i915_private *dev_priv)
581 {
582 #ifdef CONFIG_MMU_NOTIFIER
583         rwlock_init(&dev_priv->mm.notifier_lock);
584 #endif
585
586         return 0;
587 }
588
589 void i915_gem_cleanup_userptr(struct drm_i915_private *dev_priv)
590 {
591 }