blob: 50f72ae39ad897d81cef13bb87bbec618def48ca [file] [log] [blame]
Eric Anholt673a3942008-07-30 12:06:12 -07001/*
Daniel Vetterbe6a0372015-03-18 10:46:04 +01002 * Copyright © 2008-2015 Intel Corporation
Eric Anholt673a3942008-07-30 12:06:12 -07003 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 *
26 */
27
David Herrmann0de23972013-07-24 21:07:52 +020028#include <drm/drm_vma_manager.h>
Daniel Vetterfcd70cd2019-01-17 22:03:34 +010029#include <drm/drm_pci.h>
David Howells760285e2012-10-02 18:01:07 +010030#include <drm/i915_drm.h>
Chris Wilson6b5e90f2016-11-14 20:41:05 +000031#include <linux/dma-fence-array.h>
Chris Wilsonfe3288b2017-02-12 17:20:01 +000032#include <linux/kthread.h>
Chris Wilsonc13d87e2016-07-20 09:21:15 +010033#include <linux/reservation.h>
Hugh Dickins5949eac2011-06-27 16:18:18 -070034#include <linux/shmem_fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
Chris Wilson20e49332016-11-22 14:41:21 +000036#include <linux/stop_machine.h>
Eric Anholt673a3942008-07-30 12:06:12 -070037#include <linux/swap.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080038#include <linux/pci.h>
Daniel Vetter1286ff72012-05-10 15:25:09 +020039#include <linux/dma-buf.h>
Daniel Vetterfcd70cd2019-01-17 22:03:34 +010040#include <linux/mman.h>
Eric Anholt673a3942008-07-30 12:06:12 -070041
Chris Wilson79ffac852019-04-24 21:07:17 +010042#include "gt/intel_engine_pm.h"
43#include "gt/intel_gt_pm.h"
Chris Wilson112ed2d2019-04-24 18:48:39 +010044#include "gt/intel_mocs.h"
45#include "gt/intel_reset.h"
46#include "gt/intel_workarounds.h"
47
Chris Wilson9f588922019-01-16 15:33:04 +000048#include "i915_drv.h"
49#include "i915_gem_clflush.h"
50#include "i915_gemfs.h"
Chris Wilson23c3c3d2019-04-24 21:07:14 +010051#include "i915_gem_pm.h"
Chris Wilson9f588922019-01-16 15:33:04 +000052#include "i915_trace.h"
53#include "i915_vgpu.h"
54
Ville Syrjäläaa5ca8b2019-05-09 15:21:57 +030055#include "intel_display.h"
Chris Wilson9f588922019-01-16 15:33:04 +000056#include "intel_drv.h"
57#include "intel_frontbuffer.h"
Jani Nikula696173b2019-04-05 14:00:15 +030058#include "intel_pm.h"
Chris Wilson9f588922019-01-16 15:33:04 +000059
Chris Wilsonfbbd37b2016-10-28 13:58:42 +010060static void i915_gem_flush_free_objects(struct drm_i915_private *i915);
Chris Wilson61050802012-04-17 15:31:31 +010061
Chris Wilson2c225692013-08-09 12:26:45 +010062static bool cpu_write_needs_clflush(struct drm_i915_gem_object *obj)
63{
Chris Wilsone27ab732017-06-15 13:38:49 +010064 if (obj->cache_dirty)
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +053065 return false;
66
Chris Wilsonb8f55be2017-08-11 12:11:16 +010067 if (!(obj->cache_coherent & I915_BO_CACHE_COHERENT_FOR_WRITE))
Chris Wilson2c225692013-08-09 12:26:45 +010068 return true;
69
Chris Wilsonbd3d2252017-10-13 21:26:14 +010070 return obj->pin_global; /* currently in use by HW, keep flushed */
Chris Wilson2c225692013-08-09 12:26:45 +010071}
72
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +053073static int
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +010074insert_mappable_node(struct i915_ggtt *ggtt,
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +053075 struct drm_mm_node *node, u32 size)
76{
77 memset(node, 0, sizeof(*node));
Chris Wilson82ad6442018-06-05 16:37:58 +010078 return drm_mm_insert_node_in_range(&ggtt->vm.mm, node,
Chris Wilson4e64e552017-02-02 21:04:38 +000079 size, 0, I915_COLOR_UNEVICTABLE,
80 0, ggtt->mappable_end,
81 DRM_MM_INSERT_LOW);
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +053082}
83
84static void
85remove_mappable_node(struct drm_mm_node *node)
86{
87 drm_mm_remove_node(node);
88}
89
Chris Wilson73aa8082010-09-30 11:46:12 +010090/* some bookkeeping */
91static void i915_gem_info_add_obj(struct drm_i915_private *dev_priv,
Chris Wilson3ef7f222016-10-18 13:02:48 +010092 u64 size)
Chris Wilson73aa8082010-09-30 11:46:12 +010093{
Daniel Vetterc20e8352013-07-24 22:40:23 +020094 spin_lock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +010095 dev_priv->mm.object_count++;
96 dev_priv->mm.object_memory += size;
Daniel Vetterc20e8352013-07-24 22:40:23 +020097 spin_unlock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +010098}
99
100static void i915_gem_info_remove_obj(struct drm_i915_private *dev_priv,
Chris Wilson3ef7f222016-10-18 13:02:48 +0100101 u64 size)
Chris Wilson73aa8082010-09-30 11:46:12 +0100102{
Daniel Vetterc20e8352013-07-24 22:40:23 +0200103 spin_lock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +0100104 dev_priv->mm.object_count--;
105 dev_priv->mm.object_memory -= size;
Daniel Vetterc20e8352013-07-24 22:40:23 +0200106 spin_unlock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +0100107}
108
Eric Anholt673a3942008-07-30 12:06:12 -0700109int
Eric Anholt5a125c32008-10-22 21:40:13 -0700110i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000111 struct drm_file *file)
Eric Anholt5a125c32008-10-22 21:40:13 -0700112{
Chris Wilson09d7e462019-01-28 10:23:53 +0000113 struct i915_ggtt *ggtt = &to_i915(dev)->ggtt;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300114 struct drm_i915_gem_get_aperture *args = data;
Tvrtko Ursulinca1543b2015-07-01 11:51:10 +0100115 struct i915_vma *vma;
Weinan Liff8f7972017-05-31 10:35:52 +0800116 u64 pinned;
Eric Anholt5a125c32008-10-22 21:40:13 -0700117
Chris Wilson09d7e462019-01-28 10:23:53 +0000118 mutex_lock(&ggtt->vm.mutex);
119
Chris Wilson82ad6442018-06-05 16:37:58 +0100120 pinned = ggtt->vm.reserved;
Chris Wilson499197d2019-01-28 10:23:52 +0000121 list_for_each_entry(vma, &ggtt->vm.bound_list, vm_link)
Chris Wilson20dfbde2016-08-04 16:32:30 +0100122 if (i915_vma_is_pinned(vma))
Tvrtko Ursulinca1543b2015-07-01 11:51:10 +0100123 pinned += vma->node.size;
Chris Wilson09d7e462019-01-28 10:23:53 +0000124
125 mutex_unlock(&ggtt->vm.mutex);
Eric Anholt5a125c32008-10-22 21:40:13 -0700126
Chris Wilson82ad6442018-06-05 16:37:58 +0100127 args->aper_size = ggtt->vm.total;
Akshay Joshi0206e352011-08-16 15:34:10 -0400128 args->aper_available_size = args->aper_size - pinned;
Chris Wilson6299f992010-11-24 12:23:44 +0000129
Eric Anholt5a125c32008-10-22 21:40:13 -0700130 return 0;
131}
132
Matthew Auldb91b09e2017-10-06 23:18:17 +0100133static int i915_gem_object_get_pages_phys(struct drm_i915_gem_object *obj)
Chris Wilson00731152014-05-21 12:42:56 +0100134{
Al Viro93c76a32015-12-04 23:45:44 -0500135 struct address_space *mapping = obj->base.filp->f_mapping;
Chris Wilsondbb43512016-12-07 13:34:11 +0000136 drm_dma_handle_t *phys;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800137 struct sg_table *st;
138 struct scatterlist *sg;
Chris Wilsondbb43512016-12-07 13:34:11 +0000139 char *vaddr;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800140 int i;
Matthew Auldb91b09e2017-10-06 23:18:17 +0100141 int err;
Chris Wilson00731152014-05-21 12:42:56 +0100142
Chris Wilson6a2c4232014-11-04 04:51:40 -0800143 if (WARN_ON(i915_gem_object_needs_bit17_swizzle(obj)))
Matthew Auldb91b09e2017-10-06 23:18:17 +0100144 return -EINVAL;
Chris Wilson00731152014-05-21 12:42:56 +0100145
Chris Wilsondbb43512016-12-07 13:34:11 +0000146 /* Always aligning to the object size, allows a single allocation
147 * to handle all possible callers, and given typical object sizes,
148 * the alignment of the buddy allocation will naturally match.
149 */
150 phys = drm_pci_alloc(obj->base.dev,
Ville Syrjälä750fae22017-09-07 17:32:03 +0300151 roundup_pow_of_two(obj->base.size),
Chris Wilsondbb43512016-12-07 13:34:11 +0000152 roundup_pow_of_two(obj->base.size));
153 if (!phys)
Matthew Auldb91b09e2017-10-06 23:18:17 +0100154 return -ENOMEM;
Chris Wilsondbb43512016-12-07 13:34:11 +0000155
156 vaddr = phys->vaddr;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800157 for (i = 0; i < obj->base.size / PAGE_SIZE; i++) {
158 struct page *page;
159 char *src;
160
161 page = shmem_read_mapping_page(mapping, i);
Chris Wilsondbb43512016-12-07 13:34:11 +0000162 if (IS_ERR(page)) {
Matthew Auldb91b09e2017-10-06 23:18:17 +0100163 err = PTR_ERR(page);
Chris Wilsondbb43512016-12-07 13:34:11 +0000164 goto err_phys;
165 }
Chris Wilson6a2c4232014-11-04 04:51:40 -0800166
167 src = kmap_atomic(page);
168 memcpy(vaddr, src, PAGE_SIZE);
169 drm_clflush_virt_range(vaddr, PAGE_SIZE);
170 kunmap_atomic(src);
171
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300172 put_page(page);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800173 vaddr += PAGE_SIZE;
174 }
175
Chris Wilsonc0336662016-05-06 15:40:21 +0100176 i915_gem_chipset_flush(to_i915(obj->base.dev));
Chris Wilson6a2c4232014-11-04 04:51:40 -0800177
178 st = kmalloc(sizeof(*st), GFP_KERNEL);
Chris Wilsondbb43512016-12-07 13:34:11 +0000179 if (!st) {
Matthew Auldb91b09e2017-10-06 23:18:17 +0100180 err = -ENOMEM;
Chris Wilsondbb43512016-12-07 13:34:11 +0000181 goto err_phys;
182 }
Chris Wilson6a2c4232014-11-04 04:51:40 -0800183
184 if (sg_alloc_table(st, 1, GFP_KERNEL)) {
185 kfree(st);
Matthew Auldb91b09e2017-10-06 23:18:17 +0100186 err = -ENOMEM;
Chris Wilsondbb43512016-12-07 13:34:11 +0000187 goto err_phys;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800188 }
189
190 sg = st->sgl;
191 sg->offset = 0;
192 sg->length = obj->base.size;
193
Chris Wilsondbb43512016-12-07 13:34:11 +0000194 sg_dma_address(sg) = phys->busaddr;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800195 sg_dma_len(sg) = obj->base.size;
196
Chris Wilsondbb43512016-12-07 13:34:11 +0000197 obj->phys_handle = phys;
Matthew Auldb91b09e2017-10-06 23:18:17 +0100198
Matthew Aulda5c081662017-10-06 23:18:18 +0100199 __i915_gem_object_set_pages(obj, st, sg->length);
Matthew Auldb91b09e2017-10-06 23:18:17 +0100200
201 return 0;
Chris Wilsondbb43512016-12-07 13:34:11 +0000202
203err_phys:
204 drm_pci_free(obj->base.dev, phys);
Matthew Auldb91b09e2017-10-06 23:18:17 +0100205
206 return err;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800207}
208
Chris Wilsone27ab732017-06-15 13:38:49 +0100209static void __start_cpu_write(struct drm_i915_gem_object *obj)
210{
Christian Königc0a51fd2018-02-16 13:43:38 +0100211 obj->read_domains = I915_GEM_DOMAIN_CPU;
212 obj->write_domain = I915_GEM_DOMAIN_CPU;
Chris Wilsone27ab732017-06-15 13:38:49 +0100213 if (cpu_write_needs_clflush(obj))
214 obj->cache_dirty = true;
215}
216
Chris Wilsonee8efa82019-03-31 10:46:20 +0100217void
Chris Wilson2b3c8312016-11-11 14:58:09 +0000218__i915_gem_object_release_shmem(struct drm_i915_gem_object *obj,
Chris Wilsone5facdf2016-12-23 14:57:57 +0000219 struct sg_table *pages,
220 bool needs_clflush)
Chris Wilson6a2c4232014-11-04 04:51:40 -0800221{
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100222 GEM_BUG_ON(obj->mm.madv == __I915_MADV_PURGED);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800223
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100224 if (obj->mm.madv == I915_MADV_DONTNEED)
225 obj->mm.dirty = false;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800226
Chris Wilsone5facdf2016-12-23 14:57:57 +0000227 if (needs_clflush &&
Christian Königc0a51fd2018-02-16 13:43:38 +0100228 (obj->read_domains & I915_GEM_DOMAIN_CPU) == 0 &&
Chris Wilsonb8f55be2017-08-11 12:11:16 +0100229 !(obj->cache_coherent & I915_BO_CACHE_COHERENT_FOR_READ))
Chris Wilson2b3c8312016-11-11 14:58:09 +0000230 drm_clflush_sg(pages);
Chris Wilson03ac84f2016-10-28 13:58:36 +0100231
Chris Wilsone27ab732017-06-15 13:38:49 +0100232 __start_cpu_write(obj);
Chris Wilson03ac84f2016-10-28 13:58:36 +0100233}
234
235static void
236i915_gem_object_put_pages_phys(struct drm_i915_gem_object *obj,
237 struct sg_table *pages)
238{
Chris Wilsone5facdf2016-12-23 14:57:57 +0000239 __i915_gem_object_release_shmem(obj, pages, false);
Chris Wilson03ac84f2016-10-28 13:58:36 +0100240
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100241 if (obj->mm.dirty) {
Al Viro93c76a32015-12-04 23:45:44 -0500242 struct address_space *mapping = obj->base.filp->f_mapping;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800243 char *vaddr = obj->phys_handle->vaddr;
Chris Wilson00731152014-05-21 12:42:56 +0100244 int i;
245
246 for (i = 0; i < obj->base.size / PAGE_SIZE; i++) {
Chris Wilson6a2c4232014-11-04 04:51:40 -0800247 struct page *page;
248 char *dst;
Chris Wilson00731152014-05-21 12:42:56 +0100249
Chris Wilson6a2c4232014-11-04 04:51:40 -0800250 page = shmem_read_mapping_page(mapping, i);
251 if (IS_ERR(page))
252 continue;
253
254 dst = kmap_atomic(page);
255 drm_clflush_virt_range(vaddr, PAGE_SIZE);
256 memcpy(dst, vaddr, PAGE_SIZE);
257 kunmap_atomic(dst);
258
259 set_page_dirty(page);
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100260 if (obj->mm.madv == I915_MADV_WILLNEED)
Chris Wilson00731152014-05-21 12:42:56 +0100261 mark_page_accessed(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300262 put_page(page);
Chris Wilson00731152014-05-21 12:42:56 +0100263 vaddr += PAGE_SIZE;
264 }
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100265 obj->mm.dirty = false;
Chris Wilson00731152014-05-21 12:42:56 +0100266 }
267
Chris Wilson03ac84f2016-10-28 13:58:36 +0100268 sg_free_table(pages);
269 kfree(pages);
Chris Wilsondbb43512016-12-07 13:34:11 +0000270
271 drm_pci_free(obj->base.dev, obj->phys_handle);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800272}
273
274static void
275i915_gem_object_release_phys(struct drm_i915_gem_object *obj)
276{
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100277 i915_gem_object_unpin_pages(obj);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800278}
279
280static const struct drm_i915_gem_object_ops i915_gem_phys_ops = {
281 .get_pages = i915_gem_object_get_pages_phys,
282 .put_pages = i915_gem_object_put_pages_phys,
283 .release = i915_gem_object_release_phys,
284};
285
Chris Wilson581ab1f2017-02-15 16:39:00 +0000286static const struct drm_i915_gem_object_ops i915_gem_object_ops;
287
Chris Wilson35a96112016-08-14 18:44:40 +0100288int i915_gem_object_unbind(struct drm_i915_gem_object *obj)
Chris Wilsonaa653a62016-08-04 07:52:27 +0100289{
290 struct i915_vma *vma;
291 LIST_HEAD(still_in_list);
Chris Wilson02bef8f2016-08-14 18:44:41 +0100292 int ret;
Chris Wilsonaa653a62016-08-04 07:52:27 +0100293
Chris Wilson02bef8f2016-08-14 18:44:41 +0100294 lockdep_assert_held(&obj->base.dev->struct_mutex);
295
296 /* Closed vma are removed from the obj->vma_list - but they may
297 * still have an active binding on the object. To remove those we
298 * must wait for all rendering to complete to the object (as unbinding
299 * must anyway), and retire the requests.
Chris Wilsonaa653a62016-08-04 07:52:27 +0100300 */
Chris Wilson5888fc92017-12-04 13:25:13 +0000301 ret = i915_gem_object_set_to_cpu_domain(obj, false);
Chris Wilson02bef8f2016-08-14 18:44:41 +0100302 if (ret)
303 return ret;
304
Chris Wilson528cbd12019-01-28 10:23:54 +0000305 spin_lock(&obj->vma.lock);
306 while (!ret && (vma = list_first_entry_or_null(&obj->vma.list,
307 struct i915_vma,
308 obj_link))) {
Chris Wilsonaa653a62016-08-04 07:52:27 +0100309 list_move_tail(&vma->obj_link, &still_in_list);
Chris Wilson528cbd12019-01-28 10:23:54 +0000310 spin_unlock(&obj->vma.lock);
311
Chris Wilsonaa653a62016-08-04 07:52:27 +0100312 ret = i915_vma_unbind(vma);
Chris Wilson528cbd12019-01-28 10:23:54 +0000313
314 spin_lock(&obj->vma.lock);
Chris Wilsonaa653a62016-08-04 07:52:27 +0100315 }
Chris Wilson528cbd12019-01-28 10:23:54 +0000316 list_splice(&still_in_list, &obj->vma.list);
317 spin_unlock(&obj->vma.lock);
Chris Wilsonaa653a62016-08-04 07:52:27 +0100318
319 return ret;
320}
321
Chris Wilsone95433c2016-10-28 13:58:27 +0100322static long
323i915_gem_object_wait_fence(struct dma_fence *fence,
324 unsigned int flags,
Chris Wilson62eb3c22019-02-13 09:25:04 +0000325 long timeout)
Chris Wilsone95433c2016-10-28 13:58:27 +0100326{
Chris Wilsone61e0f52018-02-21 09:56:36 +0000327 struct i915_request *rq;
Chris Wilsone95433c2016-10-28 13:58:27 +0100328
329 BUILD_BUG_ON(I915_WAIT_INTERRUPTIBLE != 0x1);
330
331 if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags))
332 return timeout;
333
334 if (!dma_fence_is_i915(fence))
335 return dma_fence_wait_timeout(fence,
336 flags & I915_WAIT_INTERRUPTIBLE,
337 timeout);
338
339 rq = to_request(fence);
Chris Wilsone61e0f52018-02-21 09:56:36 +0000340 if (i915_request_completed(rq))
Chris Wilsone95433c2016-10-28 13:58:27 +0100341 goto out;
342
Chris Wilsone61e0f52018-02-21 09:56:36 +0000343 timeout = i915_request_wait(rq, flags, timeout);
Chris Wilsone95433c2016-10-28 13:58:27 +0100344
345out:
Chris Wilsone61e0f52018-02-21 09:56:36 +0000346 if (flags & I915_WAIT_LOCKED && i915_request_completed(rq))
347 i915_request_retire_upto(rq);
Chris Wilsone95433c2016-10-28 13:58:27 +0100348
Chris Wilsone95433c2016-10-28 13:58:27 +0100349 return timeout;
350}
351
352static long
353i915_gem_object_wait_reservation(struct reservation_object *resv,
354 unsigned int flags,
Chris Wilson62eb3c22019-02-13 09:25:04 +0000355 long timeout)
Chris Wilsone95433c2016-10-28 13:58:27 +0100356{
Chris Wilsone54ca972017-02-17 15:13:04 +0000357 unsigned int seq = __read_seqcount_begin(&resv->seq);
Chris Wilsone95433c2016-10-28 13:58:27 +0100358 struct dma_fence *excl;
Chris Wilsone54ca972017-02-17 15:13:04 +0000359 bool prune_fences = false;
Chris Wilsone95433c2016-10-28 13:58:27 +0100360
361 if (flags & I915_WAIT_ALL) {
362 struct dma_fence **shared;
363 unsigned int count, i;
364 int ret;
365
366 ret = reservation_object_get_fences_rcu(resv,
367 &excl, &count, &shared);
368 if (ret)
369 return ret;
370
371 for (i = 0; i < count; i++) {
372 timeout = i915_gem_object_wait_fence(shared[i],
Chris Wilson62eb3c22019-02-13 09:25:04 +0000373 flags, timeout);
Chris Wilsond892e932017-02-12 21:53:43 +0000374 if (timeout < 0)
Chris Wilsone95433c2016-10-28 13:58:27 +0100375 break;
376
377 dma_fence_put(shared[i]);
378 }
379
380 for (; i < count; i++)
381 dma_fence_put(shared[i]);
382 kfree(shared);
Chris Wilsone54ca972017-02-17 15:13:04 +0000383
Chris Wilsonfa730552018-03-07 17:13:03 +0000384 /*
385 * If both shared fences and an exclusive fence exist,
386 * then by construction the shared fences must be later
387 * than the exclusive fence. If we successfully wait for
388 * all the shared fences, we know that the exclusive fence
389 * must all be signaled. If all the shared fences are
390 * signaled, we can prune the array and recover the
391 * floating references on the fences/requests.
392 */
Chris Wilsone54ca972017-02-17 15:13:04 +0000393 prune_fences = count && timeout >= 0;
Chris Wilsone95433c2016-10-28 13:58:27 +0100394 } else {
395 excl = reservation_object_get_excl_rcu(resv);
396 }
397
Chris Wilsonfa730552018-03-07 17:13:03 +0000398 if (excl && timeout >= 0)
Chris Wilson62eb3c22019-02-13 09:25:04 +0000399 timeout = i915_gem_object_wait_fence(excl, flags, timeout);
Chris Wilsone95433c2016-10-28 13:58:27 +0100400
401 dma_fence_put(excl);
402
Chris Wilsonfa730552018-03-07 17:13:03 +0000403 /*
404 * Opportunistically prune the fences iff we know they have *all* been
Chris Wilson03d1cac2017-03-08 13:26:28 +0000405 * signaled and that the reservation object has not been changed (i.e.
406 * no new fences have been added).
407 */
Chris Wilsone54ca972017-02-17 15:13:04 +0000408 if (prune_fences && !__read_seqcount_retry(&resv->seq, seq)) {
Chris Wilson03d1cac2017-03-08 13:26:28 +0000409 if (reservation_object_trylock(resv)) {
410 if (!__read_seqcount_retry(&resv->seq, seq))
411 reservation_object_add_excl_fence(resv, NULL);
412 reservation_object_unlock(resv);
413 }
Chris Wilsone54ca972017-02-17 15:13:04 +0000414 }
415
Chris Wilsone95433c2016-10-28 13:58:27 +0100416 return timeout;
417}
418
Chris Wilsonb7268c52018-04-18 19:40:52 +0100419static void __fence_set_priority(struct dma_fence *fence,
420 const struct i915_sched_attr *attr)
Chris Wilson6b5e90f2016-11-14 20:41:05 +0000421{
Chris Wilsone61e0f52018-02-21 09:56:36 +0000422 struct i915_request *rq;
Chris Wilson6b5e90f2016-11-14 20:41:05 +0000423 struct intel_engine_cs *engine;
424
Chris Wilsonc218ee02018-01-06 10:56:18 +0000425 if (dma_fence_is_signaled(fence) || !dma_fence_is_i915(fence))
Chris Wilson6b5e90f2016-11-14 20:41:05 +0000426 return;
427
428 rq = to_request(fence);
429 engine = rq->engine;
Chris Wilson6b5e90f2016-11-14 20:41:05 +0000430
Chris Wilson4f6d8fc2018-05-07 14:57:25 +0100431 local_bh_disable();
432 rcu_read_lock(); /* RCU serialisation for set-wedged protection */
Chris Wilson47650db2018-03-07 13:42:25 +0000433 if (engine->schedule)
Chris Wilsonb7268c52018-04-18 19:40:52 +0100434 engine->schedule(rq, attr);
Chris Wilson47650db2018-03-07 13:42:25 +0000435 rcu_read_unlock();
Chris Wilson4f6d8fc2018-05-07 14:57:25 +0100436 local_bh_enable(); /* kick the tasklets if queues were reprioritised */
Chris Wilson6b5e90f2016-11-14 20:41:05 +0000437}
438
Chris Wilsonb7268c52018-04-18 19:40:52 +0100439static void fence_set_priority(struct dma_fence *fence,
440 const struct i915_sched_attr *attr)
Chris Wilson6b5e90f2016-11-14 20:41:05 +0000441{
442 /* Recurse once into a fence-array */
443 if (dma_fence_is_array(fence)) {
444 struct dma_fence_array *array = to_dma_fence_array(fence);
445 int i;
446
447 for (i = 0; i < array->num_fences; i++)
Chris Wilsonb7268c52018-04-18 19:40:52 +0100448 __fence_set_priority(array->fences[i], attr);
Chris Wilson6b5e90f2016-11-14 20:41:05 +0000449 } else {
Chris Wilsonb7268c52018-04-18 19:40:52 +0100450 __fence_set_priority(fence, attr);
Chris Wilson6b5e90f2016-11-14 20:41:05 +0000451 }
452}
453
454int
455i915_gem_object_wait_priority(struct drm_i915_gem_object *obj,
456 unsigned int flags,
Chris Wilsonb7268c52018-04-18 19:40:52 +0100457 const struct i915_sched_attr *attr)
Chris Wilson6b5e90f2016-11-14 20:41:05 +0000458{
459 struct dma_fence *excl;
460
461 if (flags & I915_WAIT_ALL) {
462 struct dma_fence **shared;
463 unsigned int count, i;
464 int ret;
465
466 ret = reservation_object_get_fences_rcu(obj->resv,
467 &excl, &count, &shared);
468 if (ret)
469 return ret;
470
471 for (i = 0; i < count; i++) {
Chris Wilsonb7268c52018-04-18 19:40:52 +0100472 fence_set_priority(shared[i], attr);
Chris Wilson6b5e90f2016-11-14 20:41:05 +0000473 dma_fence_put(shared[i]);
474 }
475
476 kfree(shared);
477 } else {
478 excl = reservation_object_get_excl_rcu(obj->resv);
479 }
480
481 if (excl) {
Chris Wilsonb7268c52018-04-18 19:40:52 +0100482 fence_set_priority(excl, attr);
Chris Wilson6b5e90f2016-11-14 20:41:05 +0000483 dma_fence_put(excl);
484 }
485 return 0;
486}
487
Chris Wilson00e60f22016-08-04 16:32:40 +0100488/**
Chris Wilsone95433c2016-10-28 13:58:27 +0100489 * Waits for rendering to the object to be completed
Chris Wilson00e60f22016-08-04 16:32:40 +0100490 * @obj: i915 gem object
Chris Wilsone95433c2016-10-28 13:58:27 +0100491 * @flags: how to wait (under a lock, for all rendering or just for writes etc)
492 * @timeout: how long to wait
Chris Wilson00e60f22016-08-04 16:32:40 +0100493 */
494int
Chris Wilsone95433c2016-10-28 13:58:27 +0100495i915_gem_object_wait(struct drm_i915_gem_object *obj,
496 unsigned int flags,
Chris Wilson62eb3c22019-02-13 09:25:04 +0000497 long timeout)
Chris Wilson00e60f22016-08-04 16:32:40 +0100498{
Chris Wilsone95433c2016-10-28 13:58:27 +0100499 might_sleep();
Chris Wilsone95433c2016-10-28 13:58:27 +0100500 GEM_BUG_ON(timeout < 0);
Chris Wilson00e60f22016-08-04 16:32:40 +0100501
Chris Wilson62eb3c22019-02-13 09:25:04 +0000502 timeout = i915_gem_object_wait_reservation(obj->resv, flags, timeout);
Chris Wilsone95433c2016-10-28 13:58:27 +0100503 return timeout < 0 ? timeout : 0;
Chris Wilson00e60f22016-08-04 16:32:40 +0100504}
505
Chris Wilson00731152014-05-21 12:42:56 +0100506static int
507i915_gem_phys_pwrite(struct drm_i915_gem_object *obj,
508 struct drm_i915_gem_pwrite *args,
Chris Wilson03ac84f2016-10-28 13:58:36 +0100509 struct drm_file *file)
Chris Wilson00731152014-05-21 12:42:56 +0100510{
Chris Wilson00731152014-05-21 12:42:56 +0100511 void *vaddr = obj->phys_handle->vaddr + args->offset;
Gustavo Padovan3ed605b2016-04-26 12:32:27 -0300512 char __user *user_data = u64_to_user_ptr(args->data_ptr);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800513
514 /* We manually control the domain here and pretend that it
515 * remains coherent i.e. in the GTT domain, like shmem_pwrite.
516 */
Rodrigo Vivi77a0d1c2015-06-18 11:43:24 -0700517 intel_fb_obj_invalidate(obj, ORIGIN_CPU);
Chris Wilson10466d22017-01-06 15:22:38 +0000518 if (copy_from_user(vaddr, user_data, args->size))
519 return -EFAULT;
Chris Wilson00731152014-05-21 12:42:56 +0100520
Chris Wilson6a2c4232014-11-04 04:51:40 -0800521 drm_clflush_virt_range(vaddr, args->size);
Chris Wilson10466d22017-01-06 15:22:38 +0000522 i915_gem_chipset_flush(to_i915(obj->base.dev));
Paulo Zanoni063e4e62015-02-13 17:23:45 -0200523
Chris Wilsond59b21e2017-02-22 11:40:49 +0000524 intel_fb_obj_flush(obj, ORIGIN_CPU);
Chris Wilson10466d22017-01-06 15:22:38 +0000525 return 0;
Chris Wilson00731152014-05-21 12:42:56 +0100526}
527
Dave Airlieff72145b2011-02-07 12:16:14 +1000528static int
529i915_gem_create(struct drm_file *file,
Tvrtko Ursulin12d79d72016-12-01 14:16:37 +0000530 struct drm_i915_private *dev_priv,
Michał Winiarskie1634842019-03-26 18:02:18 +0100531 u64 *size_p,
Jani Nikula739f3ab2019-01-16 11:15:19 +0200532 u32 *handle_p)
Eric Anholt673a3942008-07-30 12:06:12 -0700533{
Chris Wilson05394f32010-11-08 19:18:58 +0000534 struct drm_i915_gem_object *obj;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300535 u32 handle;
Michał Winiarskie1634842019-03-26 18:02:18 +0100536 u64 size;
537 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700538
Michał Winiarskie1634842019-03-26 18:02:18 +0100539 size = round_up(*size_p, PAGE_SIZE);
Chris Wilson8ffc0242011-09-14 14:14:28 +0200540 if (size == 0)
541 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700542
543 /* Allocate the new object */
Tvrtko Ursulin12d79d72016-12-01 14:16:37 +0000544 obj = i915_gem_object_create(dev_priv, size);
Chris Wilsonfe3db792016-04-25 13:32:13 +0100545 if (IS_ERR(obj))
546 return PTR_ERR(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700547
Chris Wilson05394f32010-11-08 19:18:58 +0000548 ret = drm_gem_handle_create(file, &obj->base, &handle);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100549 /* drop reference from allocate - handle holds it now */
Chris Wilsonf0cd5182016-10-28 13:58:43 +0100550 i915_gem_object_put(obj);
Daniel Vetterd861e332013-07-24 23:25:03 +0200551 if (ret)
552 return ret;
Chris Wilson202f2fe2010-10-14 13:20:40 +0100553
Dave Airlieff72145b2011-02-07 12:16:14 +1000554 *handle_p = handle;
Chris Wilson99534022019-04-17 14:25:07 +0100555 *size_p = size;
Eric Anholt673a3942008-07-30 12:06:12 -0700556 return 0;
557}
558
Dave Airlieff72145b2011-02-07 12:16:14 +1000559int
560i915_gem_dumb_create(struct drm_file *file,
561 struct drm_device *dev,
562 struct drm_mode_create_dumb *args)
563{
Ville Syrjäläaa5ca8b2019-05-09 15:21:57 +0300564 int cpp = DIV_ROUND_UP(args->bpp, 8);
565 u32 format;
566
567 switch (cpp) {
568 case 1:
569 format = DRM_FORMAT_C8;
570 break;
571 case 2:
572 format = DRM_FORMAT_RGB565;
573 break;
574 case 4:
575 format = DRM_FORMAT_XRGB8888;
576 break;
577 default:
578 return -EINVAL;
579 }
580
Dave Airlieff72145b2011-02-07 12:16:14 +1000581 /* have to work out size/pitch and return them */
Ville Syrjäläaa5ca8b2019-05-09 15:21:57 +0300582 args->pitch = ALIGN(args->width * cpp, 64);
583
584 /* align stride to page size so that we can remap */
585 if (args->pitch > intel_plane_fb_max_stride(to_i915(dev), format,
586 DRM_FORMAT_MOD_LINEAR))
587 args->pitch = ALIGN(args->pitch, 4096);
588
Dave Airlieff72145b2011-02-07 12:16:14 +1000589 args->size = args->pitch * args->height;
Tvrtko Ursulin12d79d72016-12-01 14:16:37 +0000590 return i915_gem_create(file, to_i915(dev),
Michał Winiarskie1634842019-03-26 18:02:18 +0100591 &args->size, &args->handle);
Dave Airlieff72145b2011-02-07 12:16:14 +1000592}
593
Chris Wilsone27ab732017-06-15 13:38:49 +0100594static bool gpu_write_needs_clflush(struct drm_i915_gem_object *obj)
595{
596 return !(obj->cache_level == I915_CACHE_NONE ||
597 obj->cache_level == I915_CACHE_WT);
598}
599
Dave Airlieff72145b2011-02-07 12:16:14 +1000600/**
601 * Creates a new mm object and returns a handle to it.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +0100602 * @dev: drm device pointer
603 * @data: ioctl data blob
604 * @file: drm file pointer
Dave Airlieff72145b2011-02-07 12:16:14 +1000605 */
606int
607i915_gem_create_ioctl(struct drm_device *dev, void *data,
608 struct drm_file *file)
609{
Tvrtko Ursulin12d79d72016-12-01 14:16:37 +0000610 struct drm_i915_private *dev_priv = to_i915(dev);
Dave Airlieff72145b2011-02-07 12:16:14 +1000611 struct drm_i915_gem_create *args = data;
Daniel Vetter63ed2cb2012-04-23 16:50:50 +0200612
Tvrtko Ursulin12d79d72016-12-01 14:16:37 +0000613 i915_gem_flush_free_objects(dev_priv);
Chris Wilsonfbbd37b2016-10-28 13:58:42 +0100614
Tvrtko Ursulin12d79d72016-12-01 14:16:37 +0000615 return i915_gem_create(file, dev_priv,
Michał Winiarskie1634842019-03-26 18:02:18 +0100616 &args->size, &args->handle);
Dave Airlieff72145b2011-02-07 12:16:14 +1000617}
618
Chris Wilsonef749212017-04-12 12:01:10 +0100619static inline enum fb_op_origin
620fb_write_origin(struct drm_i915_gem_object *obj, unsigned int domain)
621{
622 return (domain == I915_GEM_DOMAIN_GTT ?
623 obj->frontbuffer_ggtt_origin : ORIGIN_CPU);
624}
625
Chris Wilson7125397b2017-12-06 12:49:14 +0000626void i915_gem_flush_ggtt_writes(struct drm_i915_private *dev_priv)
Chris Wilsonef749212017-04-12 12:01:10 +0100627{
Chris Wilson538ef962019-01-14 14:21:18 +0000628 intel_wakeref_t wakeref;
629
Chris Wilson7125397b2017-12-06 12:49:14 +0000630 /*
631 * No actual flushing is required for the GTT write domain for reads
632 * from the GTT domain. Writes to it "immediately" go to main memory
633 * as far as we know, so there's no chipset flush. It also doesn't
634 * land in the GPU render cache.
Chris Wilsonef749212017-04-12 12:01:10 +0100635 *
636 * However, we do have to enforce the order so that all writes through
637 * the GTT land before any writes to the device, such as updates to
638 * the GATT itself.
639 *
640 * We also have to wait a bit for the writes to land from the GTT.
641 * An uncached read (i.e. mmio) seems to be ideal for the round-trip
642 * timing. This issue has only been observed when switching quickly
643 * between GTT writes and CPU reads from inside the kernel on recent hw,
644 * and it appears to only affect discrete GTT blocks (i.e. on LLC
Chris Wilson7125397b2017-12-06 12:49:14 +0000645 * system agents we cannot reproduce this behaviour, until Cannonlake
646 * that was!).
Chris Wilsonef749212017-04-12 12:01:10 +0100647 */
Chris Wilson7125397b2017-12-06 12:49:14 +0000648
Chris Wilson900ccf32018-07-20 11:19:10 +0100649 wmb();
650
651 if (INTEL_INFO(dev_priv)->has_coherent_ggtt)
652 return;
653
Chris Wilsona8bd3b82018-07-17 10:26:55 +0100654 i915_gem_chipset_flush(dev_priv);
Chris Wilsonef749212017-04-12 12:01:10 +0100655
Chris Wilsond4225a52019-01-14 14:21:23 +0000656 with_intel_runtime_pm(dev_priv, wakeref) {
657 spin_lock_irq(&dev_priv->uncore.lock);
Chris Wilson7125397b2017-12-06 12:49:14 +0000658
Chris Wilsond4225a52019-01-14 14:21:23 +0000659 POSTING_READ_FW(RING_HEAD(RENDER_RING_BASE));
Chris Wilson7125397b2017-12-06 12:49:14 +0000660
Chris Wilsond4225a52019-01-14 14:21:23 +0000661 spin_unlock_irq(&dev_priv->uncore.lock);
662 }
Chris Wilson7125397b2017-12-06 12:49:14 +0000663}
664
665static void
666flush_write_domain(struct drm_i915_gem_object *obj, unsigned int flush_domains)
667{
668 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
669 struct i915_vma *vma;
670
Christian Königc0a51fd2018-02-16 13:43:38 +0100671 if (!(obj->write_domain & flush_domains))
Chris Wilson7125397b2017-12-06 12:49:14 +0000672 return;
673
Christian Königc0a51fd2018-02-16 13:43:38 +0100674 switch (obj->write_domain) {
Chris Wilsonef749212017-04-12 12:01:10 +0100675 case I915_GEM_DOMAIN_GTT:
Chris Wilson7125397b2017-12-06 12:49:14 +0000676 i915_gem_flush_ggtt_writes(dev_priv);
Chris Wilsonef749212017-04-12 12:01:10 +0100677
678 intel_fb_obj_flush(obj,
679 fb_write_origin(obj, I915_GEM_DOMAIN_GTT));
Chris Wilson7125397b2017-12-06 12:49:14 +0000680
Chris Wilsone2189dd2017-12-07 21:14:07 +0000681 for_each_ggtt_vma(vma, obj) {
Chris Wilson7125397b2017-12-06 12:49:14 +0000682 if (vma->iomap)
683 continue;
684
685 i915_vma_unset_ggtt_write(vma);
686 }
Chris Wilsonef749212017-04-12 12:01:10 +0100687 break;
688
Chris Wilsonadd00e62018-07-06 12:54:02 +0100689 case I915_GEM_DOMAIN_WC:
690 wmb();
691 break;
692
Chris Wilsonef749212017-04-12 12:01:10 +0100693 case I915_GEM_DOMAIN_CPU:
694 i915_gem_clflush_object(obj, I915_CLFLUSH_SYNC);
695 break;
Chris Wilsone27ab732017-06-15 13:38:49 +0100696
697 case I915_GEM_DOMAIN_RENDER:
698 if (gpu_write_needs_clflush(obj))
699 obj->cache_dirty = true;
700 break;
Chris Wilsonef749212017-04-12 12:01:10 +0100701 }
702
Christian Königc0a51fd2018-02-16 13:43:38 +0100703 obj->write_domain = 0;
Chris Wilsonef749212017-04-12 12:01:10 +0100704}
705
Brad Volkin4c914c02014-02-18 10:15:45 -0800706/*
707 * Pins the specified object's pages and synchronizes the object with
708 * GPU accesses. Sets needs_clflush to non-zero if the caller should
709 * flush the object from the CPU cache.
710 */
711int i915_gem_obj_prepare_shmem_read(struct drm_i915_gem_object *obj,
Chris Wilson43394c72016-08-18 17:16:47 +0100712 unsigned int *needs_clflush)
Brad Volkin4c914c02014-02-18 10:15:45 -0800713{
714 int ret;
715
Chris Wilsone95433c2016-10-28 13:58:27 +0100716 lockdep_assert_held(&obj->base.dev->struct_mutex);
Brad Volkin4c914c02014-02-18 10:15:45 -0800717
Chris Wilsone95433c2016-10-28 13:58:27 +0100718 *needs_clflush = 0;
Chris Wilson43394c72016-08-18 17:16:47 +0100719 if (!i915_gem_object_has_struct_page(obj))
720 return -ENODEV;
Brad Volkin4c914c02014-02-18 10:15:45 -0800721
Chris Wilsone95433c2016-10-28 13:58:27 +0100722 ret = i915_gem_object_wait(obj,
723 I915_WAIT_INTERRUPTIBLE |
724 I915_WAIT_LOCKED,
Chris Wilson62eb3c22019-02-13 09:25:04 +0000725 MAX_SCHEDULE_TIMEOUT);
Chris Wilsonc13d87e2016-07-20 09:21:15 +0100726 if (ret)
727 return ret;
728
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100729 ret = i915_gem_object_pin_pages(obj);
Chris Wilson97649512016-08-18 17:16:50 +0100730 if (ret)
731 return ret;
732
Chris Wilsonb8f55be2017-08-11 12:11:16 +0100733 if (obj->cache_coherent & I915_BO_CACHE_COHERENT_FOR_READ ||
734 !static_cpu_has(X86_FEATURE_CLFLUSH)) {
Chris Wilson7f5f95d2017-03-10 00:09:42 +0000735 ret = i915_gem_object_set_to_cpu_domain(obj, false);
736 if (ret)
737 goto err_unpin;
738 else
739 goto out;
740 }
741
Chris Wilsonef749212017-04-12 12:01:10 +0100742 flush_write_domain(obj, ~I915_GEM_DOMAIN_CPU);
Chris Wilsona314d5c2016-08-18 17:16:48 +0100743
Chris Wilson43394c72016-08-18 17:16:47 +0100744 /* If we're not in the cpu read domain, set ourself into the gtt
745 * read domain and manually flush cachelines (if required). This
746 * optimizes for the case when the gpu will dirty the data
747 * anyway again before the next pread happens.
748 */
Chris Wilsone27ab732017-06-15 13:38:49 +0100749 if (!obj->cache_dirty &&
Christian Königc0a51fd2018-02-16 13:43:38 +0100750 !(obj->read_domains & I915_GEM_DOMAIN_CPU))
Chris Wilson7f5f95d2017-03-10 00:09:42 +0000751 *needs_clflush = CLFLUSH_BEFORE;
Brad Volkin4c914c02014-02-18 10:15:45 -0800752
Chris Wilson7f5f95d2017-03-10 00:09:42 +0000753out:
Chris Wilson97649512016-08-18 17:16:50 +0100754 /* return with the pages pinned */
Chris Wilson43394c72016-08-18 17:16:47 +0100755 return 0;
Chris Wilson97649512016-08-18 17:16:50 +0100756
757err_unpin:
758 i915_gem_object_unpin_pages(obj);
759 return ret;
Chris Wilson43394c72016-08-18 17:16:47 +0100760}
761
762int i915_gem_obj_prepare_shmem_write(struct drm_i915_gem_object *obj,
763 unsigned int *needs_clflush)
764{
765 int ret;
766
Chris Wilsone95433c2016-10-28 13:58:27 +0100767 lockdep_assert_held(&obj->base.dev->struct_mutex);
768
Chris Wilson43394c72016-08-18 17:16:47 +0100769 *needs_clflush = 0;
770 if (!i915_gem_object_has_struct_page(obj))
771 return -ENODEV;
772
Chris Wilsone95433c2016-10-28 13:58:27 +0100773 ret = i915_gem_object_wait(obj,
774 I915_WAIT_INTERRUPTIBLE |
775 I915_WAIT_LOCKED |
776 I915_WAIT_ALL,
Chris Wilson62eb3c22019-02-13 09:25:04 +0000777 MAX_SCHEDULE_TIMEOUT);
Chris Wilson43394c72016-08-18 17:16:47 +0100778 if (ret)
779 return ret;
780
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100781 ret = i915_gem_object_pin_pages(obj);
Chris Wilson97649512016-08-18 17:16:50 +0100782 if (ret)
783 return ret;
784
Chris Wilsonb8f55be2017-08-11 12:11:16 +0100785 if (obj->cache_coherent & I915_BO_CACHE_COHERENT_FOR_WRITE ||
786 !static_cpu_has(X86_FEATURE_CLFLUSH)) {
Chris Wilson7f5f95d2017-03-10 00:09:42 +0000787 ret = i915_gem_object_set_to_cpu_domain(obj, true);
788 if (ret)
789 goto err_unpin;
790 else
791 goto out;
792 }
793
Chris Wilsonef749212017-04-12 12:01:10 +0100794 flush_write_domain(obj, ~I915_GEM_DOMAIN_CPU);
Chris Wilsona314d5c2016-08-18 17:16:48 +0100795
Chris Wilson43394c72016-08-18 17:16:47 +0100796 /* If we're not in the cpu write domain, set ourself into the
797 * gtt write domain and manually flush cachelines (as required).
798 * This optimizes for the case when the gpu will use the data
799 * right away and we therefore have to clflush anyway.
800 */
Chris Wilsone27ab732017-06-15 13:38:49 +0100801 if (!obj->cache_dirty) {
Chris Wilson7f5f95d2017-03-10 00:09:42 +0000802 *needs_clflush |= CLFLUSH_AFTER;
Chris Wilson43394c72016-08-18 17:16:47 +0100803
Chris Wilsone27ab732017-06-15 13:38:49 +0100804 /*
805 * Same trick applies to invalidate partially written
806 * cachelines read before writing.
807 */
Christian Königc0a51fd2018-02-16 13:43:38 +0100808 if (!(obj->read_domains & I915_GEM_DOMAIN_CPU))
Chris Wilsone27ab732017-06-15 13:38:49 +0100809 *needs_clflush |= CLFLUSH_BEFORE;
810 }
Chris Wilson43394c72016-08-18 17:16:47 +0100811
Chris Wilson7f5f95d2017-03-10 00:09:42 +0000812out:
Chris Wilson43394c72016-08-18 17:16:47 +0100813 intel_fb_obj_invalidate(obj, ORIGIN_CPU);
Chris Wilsona4f5ea62016-10-28 13:58:35 +0100814 obj->mm.dirty = true;
Chris Wilson97649512016-08-18 17:16:50 +0100815 /* return with the pages pinned */
Chris Wilson43394c72016-08-18 17:16:47 +0100816 return 0;
Chris Wilson97649512016-08-18 17:16:50 +0100817
818err_unpin:
819 i915_gem_object_unpin_pages(obj);
820 return ret;
Brad Volkin4c914c02014-02-18 10:15:45 -0800821}
822
Daniel Vetterd174bd62012-03-25 19:47:40 +0200823static int
Chris Wilsonb9d126e2019-01-05 12:07:58 +0000824shmem_pread(struct page *page, int offset, int len, char __user *user_data,
825 bool needs_clflush)
Daniel Vetterd174bd62012-03-25 19:47:40 +0200826{
827 char *vaddr;
828 int ret;
829
830 vaddr = kmap(page);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200831
Chris Wilsonb9d126e2019-01-05 12:07:58 +0000832 if (needs_clflush)
833 drm_clflush_virt_range(vaddr + offset, len);
834
835 ret = __copy_to_user(user_data, vaddr + offset, len);
836
Daniel Vetterd174bd62012-03-25 19:47:40 +0200837 kunmap(page);
838
Chris Wilsonb9d126e2019-01-05 12:07:58 +0000839 return ret ? -EFAULT : 0;
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100840}
841
842static int
843i915_gem_shmem_pread(struct drm_i915_gem_object *obj,
844 struct drm_i915_gem_pread *args)
845{
846 char __user *user_data;
847 u64 remain;
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100848 unsigned int needs_clflush;
849 unsigned int idx, offset;
850 int ret;
851
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100852 ret = mutex_lock_interruptible(&obj->base.dev->struct_mutex);
853 if (ret)
854 return ret;
855
856 ret = i915_gem_obj_prepare_shmem_read(obj, &needs_clflush);
857 mutex_unlock(&obj->base.dev->struct_mutex);
858 if (ret)
859 return ret;
860
861 remain = args->size;
862 user_data = u64_to_user_ptr(args->data_ptr);
863 offset = offset_in_page(args->offset);
864 for (idx = args->offset >> PAGE_SHIFT; remain; idx++) {
865 struct page *page = i915_gem_object_get_page(obj, idx);
Chris Wilsona5e856a52018-10-12 15:02:28 +0100866 unsigned int length = min_t(u64, remain, PAGE_SIZE - offset);
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100867
868 ret = shmem_pread(page, offset, length, user_data,
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100869 needs_clflush);
870 if (ret)
871 break;
872
873 remain -= length;
874 user_data += length;
875 offset = 0;
876 }
877
878 i915_gem_obj_finish_shmem_access(obj);
879 return ret;
880}
881
882static inline bool
883gtt_user_read(struct io_mapping *mapping,
884 loff_t base, int offset,
885 char __user *user_data, int length)
886{
Ville Syrjäläafe722b2017-09-01 20:12:52 +0300887 void __iomem *vaddr;
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100888 unsigned long unwritten;
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530889
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530890 /* We can use the cpu mem copy function because this is X86. */
Ville Syrjäläafe722b2017-09-01 20:12:52 +0300891 vaddr = io_mapping_map_atomic_wc(mapping, base);
892 unwritten = __copy_to_user_inatomic(user_data,
893 (void __force *)vaddr + offset,
894 length);
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100895 io_mapping_unmap_atomic(vaddr);
896 if (unwritten) {
Ville Syrjäläafe722b2017-09-01 20:12:52 +0300897 vaddr = io_mapping_map_wc(mapping, base, PAGE_SIZE);
898 unwritten = copy_to_user(user_data,
899 (void __force *)vaddr + offset,
900 length);
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100901 io_mapping_unmap(vaddr);
902 }
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530903 return unwritten;
904}
905
906static int
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100907i915_gem_gtt_pread(struct drm_i915_gem_object *obj,
908 const struct drm_i915_gem_pread *args)
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530909{
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100910 struct drm_i915_private *i915 = to_i915(obj->base.dev);
911 struct i915_ggtt *ggtt = &i915->ggtt;
Chris Wilson538ef962019-01-14 14:21:18 +0000912 intel_wakeref_t wakeref;
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530913 struct drm_mm_node node;
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100914 struct i915_vma *vma;
915 void __user *user_data;
916 u64 remain, offset;
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530917 int ret;
918
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100919 ret = mutex_lock_interruptible(&i915->drm.struct_mutex);
920 if (ret)
921 return ret;
922
Chris Wilson538ef962019-01-14 14:21:18 +0000923 wakeref = intel_runtime_pm_get(i915);
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100924 vma = i915_gem_object_ggtt_pin(obj, NULL, 0, 0,
Chris Wilsona3259ca2017-10-09 09:44:00 +0100925 PIN_MAPPABLE |
926 PIN_NONFAULT |
927 PIN_NONBLOCK);
Chris Wilson18034582016-08-18 17:16:45 +0100928 if (!IS_ERR(vma)) {
929 node.start = i915_ggtt_offset(vma);
930 node.allocated = false;
Chris Wilson49ef5292016-08-18 17:17:00 +0100931 ret = i915_vma_put_fence(vma);
Chris Wilson18034582016-08-18 17:16:45 +0100932 if (ret) {
933 i915_vma_unpin(vma);
934 vma = ERR_PTR(ret);
935 }
936 }
Chris Wilson058d88c2016-08-15 10:49:06 +0100937 if (IS_ERR(vma)) {
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100938 ret = insert_mappable_node(ggtt, &node, PAGE_SIZE);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530939 if (ret)
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100940 goto out_unlock;
941 GEM_BUG_ON(!node.allocated);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530942 }
943
944 ret = i915_gem_object_set_to_gtt_domain(obj, false);
945 if (ret)
946 goto out_unpin;
947
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100948 mutex_unlock(&i915->drm.struct_mutex);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530949
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100950 user_data = u64_to_user_ptr(args->data_ptr);
951 remain = args->size;
952 offset = args->offset;
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530953
954 while (remain > 0) {
955 /* Operation in this page
956 *
957 * page_base = page offset within aperture
958 * page_offset = offset within page
959 * page_length = bytes to copy for this page
960 */
961 u32 page_base = node.start;
962 unsigned page_offset = offset_in_page(offset);
963 unsigned page_length = PAGE_SIZE - page_offset;
964 page_length = remain < page_length ? remain : page_length;
965 if (node.allocated) {
966 wmb();
Chris Wilson82ad6442018-06-05 16:37:58 +0100967 ggtt->vm.insert_page(&ggtt->vm,
968 i915_gem_object_get_dma_address(obj, offset >> PAGE_SHIFT),
969 node.start, I915_CACHE_NONE, 0);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530970 wmb();
971 } else {
972 page_base += offset & PAGE_MASK;
973 }
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100974
Matthew Auld73ebd502017-12-11 15:18:20 +0000975 if (gtt_user_read(&ggtt->iomap, page_base, page_offset,
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100976 user_data, page_length)) {
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530977 ret = -EFAULT;
978 break;
979 }
980
981 remain -= page_length;
982 user_data += page_length;
983 offset += page_length;
984 }
985
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100986 mutex_lock(&i915->drm.struct_mutex);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530987out_unpin:
988 if (node.allocated) {
989 wmb();
Chris Wilson82ad6442018-06-05 16:37:58 +0100990 ggtt->vm.clear_range(&ggtt->vm, node.start, node.size);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530991 remove_mappable_node(&node);
992 } else {
Chris Wilson058d88c2016-08-15 10:49:06 +0100993 i915_vma_unpin(vma);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +0530994 }
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100995out_unlock:
Chris Wilson538ef962019-01-14 14:21:18 +0000996 intel_runtime_pm_put(i915, wakeref);
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +0100997 mutex_unlock(&i915->drm.struct_mutex);
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100998
Eric Anholteb014592009-03-10 11:44:52 -0700999 return ret;
1000}
1001
Eric Anholt673a3942008-07-30 12:06:12 -07001002/**
1003 * Reads data from the object referenced by handle.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01001004 * @dev: drm device pointer
1005 * @data: ioctl data blob
1006 * @file: drm file pointer
Eric Anholt673a3942008-07-30 12:06:12 -07001007 *
1008 * On error, the contents of *data are undefined.
1009 */
1010int
1011i915_gem_pread_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001012 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001013{
1014 struct drm_i915_gem_pread *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001015 struct drm_i915_gem_object *obj;
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +01001016 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001017
Chris Wilson51311d02010-11-17 09:10:42 +00001018 if (args->size == 0)
1019 return 0;
1020
Linus Torvalds96d4f262019-01-03 18:57:57 -08001021 if (!access_ok(u64_to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +00001022 args->size))
1023 return -EFAULT;
1024
Chris Wilson03ac0642016-07-20 13:31:51 +01001025 obj = i915_gem_object_lookup(file, args->handle);
Chris Wilson258a5ed2016-08-05 10:14:16 +01001026 if (!obj)
1027 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001028
Chris Wilson7dcd2492010-09-26 20:21:44 +01001029 /* Bounds check source. */
Matthew Auld966d5bf2016-12-13 20:32:22 +00001030 if (range_overflows_t(u64, args->offset, args->size, obj->base.size)) {
Chris Wilsonce9d4192010-09-26 20:50:05 +01001031 ret = -EINVAL;
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +01001032 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +01001033 }
1034
Chris Wilsondb53a302011-02-03 11:57:46 +00001035 trace_i915_gem_object_pread(obj, args->offset, args->size);
1036
Chris Wilsone95433c2016-10-28 13:58:27 +01001037 ret = i915_gem_object_wait(obj,
1038 I915_WAIT_INTERRUPTIBLE,
Chris Wilson62eb3c22019-02-13 09:25:04 +00001039 MAX_SCHEDULE_TIMEOUT);
Chris Wilson258a5ed2016-08-05 10:14:16 +01001040 if (ret)
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +01001041 goto out;
Chris Wilson258a5ed2016-08-05 10:14:16 +01001042
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +01001043 ret = i915_gem_object_pin_pages(obj);
Chris Wilson258a5ed2016-08-05 10:14:16 +01001044 if (ret)
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +01001045 goto out;
Chris Wilson258a5ed2016-08-05 10:14:16 +01001046
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +01001047 ret = i915_gem_shmem_pread(obj, args);
Chris Wilson9c870d02016-10-24 13:42:15 +01001048 if (ret == -EFAULT || ret == -ENODEV)
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +01001049 ret = i915_gem_gtt_pread(obj, args);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301050
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +01001051 i915_gem_object_unpin_pages(obj);
1052out:
Chris Wilsonf0cd5182016-10-28 13:58:43 +01001053 i915_gem_object_put(obj);
Eric Anholteb014592009-03-10 11:44:52 -07001054 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001055}
1056
Keith Packard0839ccb2008-10-30 19:38:48 -07001057/* This is the fast write path which cannot handle
1058 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -07001059 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -07001060
Chris Wilsonfe115622016-10-28 13:58:40 +01001061static inline bool
1062ggtt_write(struct io_mapping *mapping,
1063 loff_t base, int offset,
1064 char __user *user_data, int length)
Keith Packard0839ccb2008-10-30 19:38:48 -07001065{
Ville Syrjäläafe722b2017-09-01 20:12:52 +03001066 void __iomem *vaddr;
Keith Packard0839ccb2008-10-30 19:38:48 -07001067 unsigned long unwritten;
1068
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -07001069 /* We can use the cpu mem copy function because this is X86. */
Ville Syrjäläafe722b2017-09-01 20:12:52 +03001070 vaddr = io_mapping_map_atomic_wc(mapping, base);
1071 unwritten = __copy_from_user_inatomic_nocache((void __force *)vaddr + offset,
Keith Packard0839ccb2008-10-30 19:38:48 -07001072 user_data, length);
Chris Wilsonfe115622016-10-28 13:58:40 +01001073 io_mapping_unmap_atomic(vaddr);
1074 if (unwritten) {
Ville Syrjäläafe722b2017-09-01 20:12:52 +03001075 vaddr = io_mapping_map_wc(mapping, base, PAGE_SIZE);
1076 unwritten = copy_from_user((void __force *)vaddr + offset,
1077 user_data, length);
Chris Wilsonfe115622016-10-28 13:58:40 +01001078 io_mapping_unmap(vaddr);
1079 }
Keith Packard0839ccb2008-10-30 19:38:48 -07001080
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +01001081 return unwritten;
1082}
1083
Eric Anholt3de09aa2009-03-09 09:42:23 -07001084/**
1085 * This is the fast pwrite path, where we copy the data directly from the
1086 * user into the GTT, uncached.
Chris Wilsonfe115622016-10-28 13:58:40 +01001087 * @obj: i915 GEM object
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01001088 * @args: pwrite arguments structure
Eric Anholt3de09aa2009-03-09 09:42:23 -07001089 */
Eric Anholt673a3942008-07-30 12:06:12 -07001090static int
Chris Wilsonfe115622016-10-28 13:58:40 +01001091i915_gem_gtt_pwrite_fast(struct drm_i915_gem_object *obj,
1092 const struct drm_i915_gem_pwrite *args)
Eric Anholt673a3942008-07-30 12:06:12 -07001093{
Chris Wilsonfe115622016-10-28 13:58:40 +01001094 struct drm_i915_private *i915 = to_i915(obj->base.dev);
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301095 struct i915_ggtt *ggtt = &i915->ggtt;
Chris Wilson538ef962019-01-14 14:21:18 +00001096 intel_wakeref_t wakeref;
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301097 struct drm_mm_node node;
Chris Wilsonfe115622016-10-28 13:58:40 +01001098 struct i915_vma *vma;
1099 u64 remain, offset;
1100 void __user *user_data;
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301101 int ret;
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301102
Chris Wilsonfe115622016-10-28 13:58:40 +01001103 ret = mutex_lock_interruptible(&i915->drm.struct_mutex);
1104 if (ret)
1105 return ret;
Daniel Vetter935aaa62012-03-25 19:47:35 +02001106
Chris Wilson8bd818152017-10-19 07:37:33 +01001107 if (i915_gem_object_has_struct_page(obj)) {
1108 /*
1109 * Avoid waking the device up if we can fallback, as
1110 * waking/resuming is very slow (worst-case 10-100 ms
1111 * depending on PCI sleeps and our own resume time).
1112 * This easily dwarfs any performance advantage from
1113 * using the cache bypass of indirect GGTT access.
1114 */
Chris Wilson538ef962019-01-14 14:21:18 +00001115 wakeref = intel_runtime_pm_get_if_in_use(i915);
1116 if (!wakeref) {
Chris Wilson8bd818152017-10-19 07:37:33 +01001117 ret = -EFAULT;
1118 goto out_unlock;
1119 }
1120 } else {
1121 /* No backing pages, no fallback, we must force GGTT access */
Chris Wilson538ef962019-01-14 14:21:18 +00001122 wakeref = intel_runtime_pm_get(i915);
Chris Wilson8bd818152017-10-19 07:37:33 +01001123 }
1124
Chris Wilson058d88c2016-08-15 10:49:06 +01001125 vma = i915_gem_object_ggtt_pin(obj, NULL, 0, 0,
Chris Wilsona3259ca2017-10-09 09:44:00 +01001126 PIN_MAPPABLE |
1127 PIN_NONFAULT |
1128 PIN_NONBLOCK);
Chris Wilson18034582016-08-18 17:16:45 +01001129 if (!IS_ERR(vma)) {
1130 node.start = i915_ggtt_offset(vma);
1131 node.allocated = false;
Chris Wilson49ef5292016-08-18 17:17:00 +01001132 ret = i915_vma_put_fence(vma);
Chris Wilson18034582016-08-18 17:16:45 +01001133 if (ret) {
1134 i915_vma_unpin(vma);
1135 vma = ERR_PTR(ret);
1136 }
1137 }
Chris Wilson058d88c2016-08-15 10:49:06 +01001138 if (IS_ERR(vma)) {
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +01001139 ret = insert_mappable_node(ggtt, &node, PAGE_SIZE);
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301140 if (ret)
Chris Wilson8bd818152017-10-19 07:37:33 +01001141 goto out_rpm;
Chris Wilsonfe115622016-10-28 13:58:40 +01001142 GEM_BUG_ON(!node.allocated);
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301143 }
Daniel Vetter935aaa62012-03-25 19:47:35 +02001144
1145 ret = i915_gem_object_set_to_gtt_domain(obj, true);
1146 if (ret)
1147 goto out_unpin;
1148
Chris Wilsonfe115622016-10-28 13:58:40 +01001149 mutex_unlock(&i915->drm.struct_mutex);
1150
Chris Wilsonb19482d2016-08-18 17:16:43 +01001151 intel_fb_obj_invalidate(obj, ORIGIN_CPU);
Paulo Zanoni063e4e62015-02-13 17:23:45 -02001152
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301153 user_data = u64_to_user_ptr(args->data_ptr);
1154 offset = args->offset;
1155 remain = args->size;
1156 while (remain) {
Eric Anholt673a3942008-07-30 12:06:12 -07001157 /* Operation in this page
1158 *
Keith Packard0839ccb2008-10-30 19:38:48 -07001159 * page_base = page offset within aperture
1160 * page_offset = offset within page
1161 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -07001162 */
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301163 u32 page_base = node.start;
Chris Wilsonbb6dc8d2016-10-28 13:58:39 +01001164 unsigned int page_offset = offset_in_page(offset);
1165 unsigned int page_length = PAGE_SIZE - page_offset;
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301166 page_length = remain < page_length ? remain : page_length;
1167 if (node.allocated) {
1168 wmb(); /* flush the write before we modify the GGTT */
Chris Wilson82ad6442018-06-05 16:37:58 +01001169 ggtt->vm.insert_page(&ggtt->vm,
1170 i915_gem_object_get_dma_address(obj, offset >> PAGE_SHIFT),
1171 node.start, I915_CACHE_NONE, 0);
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301172 wmb(); /* flush modifications to the GGTT (insert_page) */
1173 } else {
1174 page_base += offset & PAGE_MASK;
1175 }
Keith Packard0839ccb2008-10-30 19:38:48 -07001176 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -07001177 * source page isn't available. Return the error and we'll
1178 * retry in the slow path.
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301179 * If the object is non-shmem backed, we retry again with the
1180 * path that handles page fault.
Keith Packard0839ccb2008-10-30 19:38:48 -07001181 */
Matthew Auld73ebd502017-12-11 15:18:20 +00001182 if (ggtt_write(&ggtt->iomap, page_base, page_offset,
Chris Wilsonfe115622016-10-28 13:58:40 +01001183 user_data, page_length)) {
1184 ret = -EFAULT;
1185 break;
Daniel Vetter935aaa62012-03-25 19:47:35 +02001186 }
Eric Anholt673a3942008-07-30 12:06:12 -07001187
Keith Packard0839ccb2008-10-30 19:38:48 -07001188 remain -= page_length;
1189 user_data += page_length;
1190 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -07001191 }
Chris Wilsond59b21e2017-02-22 11:40:49 +00001192 intel_fb_obj_flush(obj, ORIGIN_CPU);
Chris Wilsonfe115622016-10-28 13:58:40 +01001193
1194 mutex_lock(&i915->drm.struct_mutex);
Daniel Vetter935aaa62012-03-25 19:47:35 +02001195out_unpin:
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301196 if (node.allocated) {
1197 wmb();
Chris Wilson82ad6442018-06-05 16:37:58 +01001198 ggtt->vm.clear_range(&ggtt->vm, node.start, node.size);
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301199 remove_mappable_node(&node);
1200 } else {
Chris Wilson058d88c2016-08-15 10:49:06 +01001201 i915_vma_unpin(vma);
Ankitprasad Sharma4f1959e2016-06-10 14:23:01 +05301202 }
Chris Wilson8bd818152017-10-19 07:37:33 +01001203out_rpm:
Chris Wilson538ef962019-01-14 14:21:18 +00001204 intel_runtime_pm_put(i915, wakeref);
Chris Wilson8bd818152017-10-19 07:37:33 +01001205out_unlock:
Chris Wilsonfe115622016-10-28 13:58:40 +01001206 mutex_unlock(&i915->drm.struct_mutex);
Eric Anholt3de09aa2009-03-09 09:42:23 -07001207 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001208}
1209
Chris Wilsonfe115622016-10-28 13:58:40 +01001210/* Per-page copy function for the shmem pwrite fastpath.
1211 * Flushes invalid cachelines before writing to the target if
1212 * needs_clflush_before is set and flushes out any written cachelines after
1213 * writing if needs_clflush is set.
1214 */
Eric Anholt40123c12009-03-09 13:42:30 -07001215static int
Chris Wilsonfe115622016-10-28 13:58:40 +01001216shmem_pwrite(struct page *page, int offset, int len, char __user *user_data,
Chris Wilsonfe115622016-10-28 13:58:40 +01001217 bool needs_clflush_before,
1218 bool needs_clflush_after)
Eric Anholt40123c12009-03-09 13:42:30 -07001219{
Chris Wilsonb9d126e2019-01-05 12:07:58 +00001220 char *vaddr;
Chris Wilsonfe115622016-10-28 13:58:40 +01001221 int ret;
Eric Anholt40123c12009-03-09 13:42:30 -07001222
Chris Wilsonb9d126e2019-01-05 12:07:58 +00001223 vaddr = kmap(page);
Chris Wilsonfe115622016-10-28 13:58:40 +01001224
Chris Wilsonb9d126e2019-01-05 12:07:58 +00001225 if (needs_clflush_before)
1226 drm_clflush_virt_range(vaddr + offset, len);
Chris Wilsonfe115622016-10-28 13:58:40 +01001227
Chris Wilsonb9d126e2019-01-05 12:07:58 +00001228 ret = __copy_from_user(vaddr + offset, user_data, len);
1229 if (!ret && needs_clflush_after)
1230 drm_clflush_virt_range(vaddr + offset, len);
Chris Wilsonfe115622016-10-28 13:58:40 +01001231
Chris Wilsonb9d126e2019-01-05 12:07:58 +00001232 kunmap(page);
1233
1234 return ret ? -EFAULT : 0;
Chris Wilsonfe115622016-10-28 13:58:40 +01001235}
1236
1237static int
1238i915_gem_shmem_pwrite(struct drm_i915_gem_object *obj,
1239 const struct drm_i915_gem_pwrite *args)
1240{
1241 struct drm_i915_private *i915 = to_i915(obj->base.dev);
1242 void __user *user_data;
1243 u64 remain;
Chris Wilsonfe115622016-10-28 13:58:40 +01001244 unsigned int partial_cacheline_write;
1245 unsigned int needs_clflush;
1246 unsigned int offset, idx;
1247 int ret;
1248
1249 ret = mutex_lock_interruptible(&i915->drm.struct_mutex);
Chris Wilson43394c72016-08-18 17:16:47 +01001250 if (ret)
1251 return ret;
Eric Anholt40123c12009-03-09 13:42:30 -07001252
Chris Wilsonfe115622016-10-28 13:58:40 +01001253 ret = i915_gem_obj_prepare_shmem_write(obj, &needs_clflush);
1254 mutex_unlock(&i915->drm.struct_mutex);
1255 if (ret)
1256 return ret;
1257
Chris Wilsonfe115622016-10-28 13:58:40 +01001258 /* If we don't overwrite a cacheline completely we need to be
1259 * careful to have up-to-date data by first clflushing. Don't
1260 * overcomplicate things and flush the entire patch.
1261 */
1262 partial_cacheline_write = 0;
1263 if (needs_clflush & CLFLUSH_BEFORE)
1264 partial_cacheline_write = boot_cpu_data.x86_clflush_size - 1;
1265
Chris Wilson43394c72016-08-18 17:16:47 +01001266 user_data = u64_to_user_ptr(args->data_ptr);
Chris Wilson43394c72016-08-18 17:16:47 +01001267 remain = args->size;
Chris Wilsonfe115622016-10-28 13:58:40 +01001268 offset = offset_in_page(args->offset);
1269 for (idx = args->offset >> PAGE_SHIFT; remain; idx++) {
1270 struct page *page = i915_gem_object_get_page(obj, idx);
Chris Wilsona5e856a52018-10-12 15:02:28 +01001271 unsigned int length = min_t(u64, remain, PAGE_SIZE - offset);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001272
Chris Wilsonfe115622016-10-28 13:58:40 +01001273 ret = shmem_pwrite(page, offset, length, user_data,
Chris Wilsonfe115622016-10-28 13:58:40 +01001274 (offset | length) & partial_cacheline_write,
1275 needs_clflush & CLFLUSH_AFTER);
1276 if (ret)
Chris Wilson9da3da62012-06-01 15:20:22 +01001277 break;
1278
Chris Wilsonfe115622016-10-28 13:58:40 +01001279 remain -= length;
1280 user_data += length;
1281 offset = 0;
Eric Anholt40123c12009-03-09 13:42:30 -07001282 }
1283
Chris Wilsond59b21e2017-02-22 11:40:49 +00001284 intel_fb_obj_flush(obj, ORIGIN_CPU);
Chris Wilsonfe115622016-10-28 13:58:40 +01001285 i915_gem_obj_finish_shmem_access(obj);
Eric Anholt40123c12009-03-09 13:42:30 -07001286 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001287}
1288
1289/**
1290 * Writes data to the object referenced by handle.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01001291 * @dev: drm device
1292 * @data: ioctl data blob
1293 * @file: drm file
Eric Anholt673a3942008-07-30 12:06:12 -07001294 *
1295 * On error, the contents of the buffer that were to be modified are undefined.
1296 */
1297int
1298i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001299 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001300{
1301 struct drm_i915_gem_pwrite *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001302 struct drm_i915_gem_object *obj;
Chris Wilson51311d02010-11-17 09:10:42 +00001303 int ret;
1304
1305 if (args->size == 0)
1306 return 0;
1307
Linus Torvalds96d4f262019-01-03 18:57:57 -08001308 if (!access_ok(u64_to_user_ptr(args->data_ptr), args->size))
Chris Wilson51311d02010-11-17 09:10:42 +00001309 return -EFAULT;
1310
Chris Wilson03ac0642016-07-20 13:31:51 +01001311 obj = i915_gem_object_lookup(file, args->handle);
Chris Wilson258a5ed2016-08-05 10:14:16 +01001312 if (!obj)
1313 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001314
Chris Wilson7dcd2492010-09-26 20:21:44 +01001315 /* Bounds check destination. */
Matthew Auld966d5bf2016-12-13 20:32:22 +00001316 if (range_overflows_t(u64, args->offset, args->size, obj->base.size)) {
Chris Wilsonce9d4192010-09-26 20:50:05 +01001317 ret = -EINVAL;
Chris Wilson258a5ed2016-08-05 10:14:16 +01001318 goto err;
Chris Wilsonce9d4192010-09-26 20:50:05 +01001319 }
1320
Chris Wilsonf8c1cce2018-07-12 19:53:14 +01001321 /* Writes not allowed into this read-only object */
1322 if (i915_gem_object_is_readonly(obj)) {
1323 ret = -EINVAL;
1324 goto err;
1325 }
1326
Chris Wilsondb53a302011-02-03 11:57:46 +00001327 trace_i915_gem_object_pwrite(obj, args->offset, args->size);
1328
Chris Wilson7c55e2c2017-03-07 12:03:38 +00001329 ret = -ENODEV;
1330 if (obj->ops->pwrite)
1331 ret = obj->ops->pwrite(obj, args);
1332 if (ret != -ENODEV)
1333 goto err;
1334
Chris Wilsone95433c2016-10-28 13:58:27 +01001335 ret = i915_gem_object_wait(obj,
1336 I915_WAIT_INTERRUPTIBLE |
1337 I915_WAIT_ALL,
Chris Wilson62eb3c22019-02-13 09:25:04 +00001338 MAX_SCHEDULE_TIMEOUT);
Chris Wilson258a5ed2016-08-05 10:14:16 +01001339 if (ret)
1340 goto err;
1341
Chris Wilsonfe115622016-10-28 13:58:40 +01001342 ret = i915_gem_object_pin_pages(obj);
Chris Wilson258a5ed2016-08-05 10:14:16 +01001343 if (ret)
Chris Wilsonfe115622016-10-28 13:58:40 +01001344 goto err;
Chris Wilson258a5ed2016-08-05 10:14:16 +01001345
Daniel Vetter935aaa62012-03-25 19:47:35 +02001346 ret = -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -07001347 /* We can only do the GTT pwrite on untiled buffers, as otherwise
1348 * it would end up going through the fenced access, and we'll get
1349 * different detiling behavior between reading and writing.
1350 * pread/pwrite currently are reading and writing from the CPU
1351 * perspective, requiring manual detiling by the client.
1352 */
Chris Wilson6eae0052016-06-20 15:05:52 +01001353 if (!i915_gem_object_has_struct_page(obj) ||
Chris Wilson9c870d02016-10-24 13:42:15 +01001354 cpu_write_needs_clflush(obj))
Daniel Vetter935aaa62012-03-25 19:47:35 +02001355 /* Note that the gtt paths might fail with non-page-backed user
1356 * pointers (e.g. gtt mappings when moving data between
Chris Wilson9c870d02016-10-24 13:42:15 +01001357 * textures). Fallback to the shmem path in that case.
1358 */
Chris Wilsonfe115622016-10-28 13:58:40 +01001359 ret = i915_gem_gtt_pwrite_fast(obj, args);
Eric Anholt673a3942008-07-30 12:06:12 -07001360
Chris Wilsond1054ee2016-07-16 18:42:36 +01001361 if (ret == -EFAULT || ret == -ENOSPC) {
Chris Wilson6a2c4232014-11-04 04:51:40 -08001362 if (obj->phys_handle)
1363 ret = i915_gem_phys_pwrite(obj, args, file);
Ankitprasad Sharmab50a5372016-06-10 14:23:03 +05301364 else
Chris Wilsonfe115622016-10-28 13:58:40 +01001365 ret = i915_gem_shmem_pwrite(obj, args);
Chris Wilson6a2c4232014-11-04 04:51:40 -08001366 }
Daniel Vetter5c0480f2011-12-14 13:57:30 +01001367
Chris Wilsonfe115622016-10-28 13:58:40 +01001368 i915_gem_object_unpin_pages(obj);
Chris Wilson258a5ed2016-08-05 10:14:16 +01001369err:
Chris Wilsonf0cd5182016-10-28 13:58:43 +01001370 i915_gem_object_put(obj);
Chris Wilson258a5ed2016-08-05 10:14:16 +01001371 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001372}
1373
Chris Wilson40e62d52016-10-28 13:58:41 +01001374static void i915_gem_object_bump_inactive_ggtt(struct drm_i915_gem_object *obj)
1375{
Chris Wilson09d7e462019-01-28 10:23:53 +00001376 struct drm_i915_private *i915 = to_i915(obj->base.dev);
Chris Wilson40e62d52016-10-28 13:58:41 +01001377 struct list_head *list;
1378 struct i915_vma *vma;
1379
Chris Wilsonf2123812017-10-16 12:40:37 +01001380 GEM_BUG_ON(!i915_gem_object_has_pinned_pages(obj));
1381
Chris Wilson09d7e462019-01-28 10:23:53 +00001382 mutex_lock(&i915->ggtt.vm.mutex);
Chris Wilsone2189dd2017-12-07 21:14:07 +00001383 for_each_ggtt_vma(vma, obj) {
Chris Wilson40e62d52016-10-28 13:58:41 +01001384 if (!drm_mm_node_allocated(&vma->node))
1385 continue;
1386
Chris Wilson499197d2019-01-28 10:23:52 +00001387 list_move_tail(&vma->vm_link, &vma->vm->bound_list);
Chris Wilson40e62d52016-10-28 13:58:41 +01001388 }
Chris Wilson09d7e462019-01-28 10:23:53 +00001389 mutex_unlock(&i915->ggtt.vm.mutex);
Chris Wilson40e62d52016-10-28 13:58:41 +01001390
Chris Wilsonf2123812017-10-16 12:40:37 +01001391 spin_lock(&i915->mm.obj_lock);
Chris Wilson40e62d52016-10-28 13:58:41 +01001392 list = obj->bind_count ? &i915->mm.bound_list : &i915->mm.unbound_list;
Chris Wilsonf2123812017-10-16 12:40:37 +01001393 list_move_tail(&obj->mm.link, list);
1394 spin_unlock(&i915->mm.obj_lock);
Chris Wilson40e62d52016-10-28 13:58:41 +01001395}
1396
Eric Anholt673a3942008-07-30 12:06:12 -07001397/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001398 * Called when user space prepares to use an object with the CPU, either
1399 * through the mmap ioctl's mapping or a GTT mapping.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01001400 * @dev: drm device
1401 * @data: ioctl data blob
1402 * @file: drm file
Eric Anholt673a3942008-07-30 12:06:12 -07001403 */
1404int
1405i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001406 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001407{
1408 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001409 struct drm_i915_gem_object *obj;
Jani Nikula739f3ab2019-01-16 11:15:19 +02001410 u32 read_domains = args->read_domains;
1411 u32 write_domain = args->write_domain;
Chris Wilson40e62d52016-10-28 13:58:41 +01001412 int err;
Eric Anholt673a3942008-07-30 12:06:12 -07001413
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001414 /* Only handle setting domains to types used by the CPU. */
Chris Wilsonb8f90962016-08-05 10:14:07 +01001415 if ((write_domain | read_domains) & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001416 return -EINVAL;
1417
Chris Wilson754a2542019-03-21 16:19:08 +00001418 /*
1419 * Having something in the write domain implies it's in the read
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001420 * domain, and only that read domain. Enforce that in the request.
1421 */
Chris Wilson754a2542019-03-21 16:19:08 +00001422 if (write_domain && read_domains != write_domain)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001423 return -EINVAL;
1424
Chris Wilson754a2542019-03-21 16:19:08 +00001425 if (!read_domains)
1426 return 0;
1427
Chris Wilson03ac0642016-07-20 13:31:51 +01001428 obj = i915_gem_object_lookup(file, args->handle);
Chris Wilsonb8f90962016-08-05 10:14:07 +01001429 if (!obj)
1430 return -ENOENT;
Jesse Barnes652c3932009-08-17 13:31:43 -07001431
Chris Wilson754a2542019-03-21 16:19:08 +00001432 /*
1433 * Already in the desired write domain? Nothing for us to do!
1434 *
1435 * We apply a little bit of cunning here to catch a broader set of
1436 * no-ops. If obj->write_domain is set, we must be in the same
1437 * obj->read_domains, and only that domain. Therefore, if that
1438 * obj->write_domain matches the request read_domains, we are
1439 * already in the same read/write domain and can skip the operation,
1440 * without having to further check the requested write_domain.
1441 */
1442 if (READ_ONCE(obj->write_domain) == read_domains) {
1443 err = 0;
1444 goto out;
1445 }
1446
1447 /*
1448 * Try to flush the object off the GPU without holding the lock.
Chris Wilson3236f572012-08-24 09:35:09 +01001449 * We will repeat the flush holding the lock in the normal manner
1450 * to catch cases where we are gazumped.
1451 */
Chris Wilson40e62d52016-10-28 13:58:41 +01001452 err = i915_gem_object_wait(obj,
Chris Wilsone95433c2016-10-28 13:58:27 +01001453 I915_WAIT_INTERRUPTIBLE |
Chris Wilsone9eaf822018-10-01 15:47:55 +01001454 I915_WAIT_PRIORITY |
Chris Wilsone95433c2016-10-28 13:58:27 +01001455 (write_domain ? I915_WAIT_ALL : 0),
Chris Wilson62eb3c22019-02-13 09:25:04 +00001456 MAX_SCHEDULE_TIMEOUT);
Chris Wilson40e62d52016-10-28 13:58:41 +01001457 if (err)
Chris Wilsonf0cd5182016-10-28 13:58:43 +01001458 goto out;
Chris Wilsonb8f90962016-08-05 10:14:07 +01001459
Tina Zhanga03f3952017-11-14 10:25:13 +00001460 /*
1461 * Proxy objects do not control access to the backing storage, ergo
1462 * they cannot be used as a means to manipulate the cache domain
1463 * tracking for that backing storage. The proxy object is always
1464 * considered to be outside of any cache domain.
1465 */
1466 if (i915_gem_object_is_proxy(obj)) {
1467 err = -ENXIO;
1468 goto out;
1469 }
1470
1471 /*
1472 * Flush and acquire obj->pages so that we are coherent through
Chris Wilson40e62d52016-10-28 13:58:41 +01001473 * direct access in memory with previous cached writes through
1474 * shmemfs and that our cache domain tracking remains valid.
1475 * For example, if the obj->filp was moved to swap without us
1476 * being notified and releasing the pages, we would mistakenly
1477 * continue to assume that the obj remained out of the CPU cached
1478 * domain.
1479 */
1480 err = i915_gem_object_pin_pages(obj);
1481 if (err)
Chris Wilsonf0cd5182016-10-28 13:58:43 +01001482 goto out;
Chris Wilson40e62d52016-10-28 13:58:41 +01001483
1484 err = i915_mutex_lock_interruptible(dev);
1485 if (err)
Chris Wilsonf0cd5182016-10-28 13:58:43 +01001486 goto out_unpin;
Chris Wilson3236f572012-08-24 09:35:09 +01001487
Chris Wilsone22d8e32017-04-12 12:01:11 +01001488 if (read_domains & I915_GEM_DOMAIN_WC)
1489 err = i915_gem_object_set_to_wc_domain(obj, write_domain);
1490 else if (read_domains & I915_GEM_DOMAIN_GTT)
1491 err = i915_gem_object_set_to_gtt_domain(obj, write_domain);
Chris Wilson43566de2015-01-02 16:29:29 +05301492 else
Chris Wilsone22d8e32017-04-12 12:01:11 +01001493 err = i915_gem_object_set_to_cpu_domain(obj, write_domain);
Chris Wilson40e62d52016-10-28 13:58:41 +01001494
1495 /* And bump the LRU for this access */
1496 i915_gem_object_bump_inactive_ggtt(obj);
1497
1498 mutex_unlock(&dev->struct_mutex);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001499
Daniel Vetter031b6982015-06-26 19:35:16 +02001500 if (write_domain != 0)
Chris Wilsonef749212017-04-12 12:01:10 +01001501 intel_fb_obj_invalidate(obj,
1502 fb_write_origin(obj, write_domain));
Daniel Vetter031b6982015-06-26 19:35:16 +02001503
Chris Wilsonf0cd5182016-10-28 13:58:43 +01001504out_unpin:
Chris Wilson40e62d52016-10-28 13:58:41 +01001505 i915_gem_object_unpin_pages(obj);
Chris Wilsonf0cd5182016-10-28 13:58:43 +01001506out:
1507 i915_gem_object_put(obj);
Chris Wilson40e62d52016-10-28 13:58:41 +01001508 return err;
Eric Anholt673a3942008-07-30 12:06:12 -07001509}
1510
1511/**
1512 * Called when user space has done writes to this buffer
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01001513 * @dev: drm device
1514 * @data: ioctl data blob
1515 * @file: drm file
Eric Anholt673a3942008-07-30 12:06:12 -07001516 */
1517int
1518i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001519 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001520{
1521 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001522 struct drm_i915_gem_object *obj;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001523
Chris Wilson03ac0642016-07-20 13:31:51 +01001524 obj = i915_gem_object_lookup(file, args->handle);
Chris Wilsonc21724c2016-08-05 10:14:19 +01001525 if (!obj)
1526 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001527
Tina Zhanga03f3952017-11-14 10:25:13 +00001528 /*
1529 * Proxy objects are barred from CPU access, so there is no
1530 * need to ban sw_finish as it is a nop.
1531 */
1532
Eric Anholt673a3942008-07-30 12:06:12 -07001533 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilson5a97bcc2017-02-22 11:40:46 +00001534 i915_gem_object_flush_if_display(obj);
Chris Wilsonf0cd5182016-10-28 13:58:43 +01001535 i915_gem_object_put(obj);
Chris Wilson5a97bcc2017-02-22 11:40:46 +00001536
1537 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001538}
1539
Joonas Lahtinen5c4604e2019-02-07 10:54:53 +02001540static inline bool
1541__vma_matches(struct vm_area_struct *vma, struct file *filp,
1542 unsigned long addr, unsigned long size)
1543{
1544 if (vma->vm_file != filp)
1545 return false;
1546
Tvrtko Ursulina90e1942019-03-05 11:04:08 +00001547 return vma->vm_start == addr &&
1548 (vma->vm_end - vma->vm_start) == PAGE_ALIGN(size);
Joonas Lahtinen5c4604e2019-02-07 10:54:53 +02001549}
1550
Eric Anholt673a3942008-07-30 12:06:12 -07001551/**
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01001552 * i915_gem_mmap_ioctl - Maps the contents of an object, returning the address
1553 * it is mapped to.
1554 * @dev: drm device
1555 * @data: ioctl data blob
1556 * @file: drm file
Eric Anholt673a3942008-07-30 12:06:12 -07001557 *
1558 * While the mapping holds a reference on the contents of the object, it doesn't
1559 * imply a ref on the object itself.
Daniel Vetter34367382014-10-16 12:28:18 +02001560 *
1561 * IMPORTANT:
1562 *
1563 * DRM driver writers who look a this function as an example for how to do GEM
1564 * mmap support, please don't implement mmap support like here. The modern way
1565 * to implement DRM mmap support is with an mmap offset ioctl (like
1566 * i915_gem_mmap_gtt) and then using the mmap syscall on the DRM fd directly.
1567 * That way debug tooling like valgrind will understand what's going on, hiding
1568 * the mmap call in a driver private ioctl will break that. The i915 driver only
1569 * does cpu mmaps this way because we didn't know better.
Eric Anholt673a3942008-07-30 12:06:12 -07001570 */
1571int
1572i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001573 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001574{
1575 struct drm_i915_gem_mmap *args = data;
Chris Wilson03ac0642016-07-20 13:31:51 +01001576 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001577 unsigned long addr;
1578
Akash Goel1816f922015-01-02 16:29:30 +05301579 if (args->flags & ~(I915_MMAP_WC))
1580 return -EINVAL;
1581
Borislav Petkov568a58e2016-03-29 17:42:01 +02001582 if (args->flags & I915_MMAP_WC && !boot_cpu_has(X86_FEATURE_PAT))
Akash Goel1816f922015-01-02 16:29:30 +05301583 return -ENODEV;
1584
Chris Wilson03ac0642016-07-20 13:31:51 +01001585 obj = i915_gem_object_lookup(file, args->handle);
1586 if (!obj)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001587 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001588
Daniel Vetter1286ff72012-05-10 15:25:09 +02001589 /* prime objects have no backing filp to GEM mmap
1590 * pages from.
1591 */
Chris Wilson03ac0642016-07-20 13:31:51 +01001592 if (!obj->base.filp) {
Chris Wilson794a11c2019-03-14 07:58:29 +00001593 addr = -ENXIO;
1594 goto err;
1595 }
1596
1597 if (range_overflows(args->offset, args->size, (u64)obj->base.size)) {
1598 addr = -EINVAL;
1599 goto err;
Daniel Vetter1286ff72012-05-10 15:25:09 +02001600 }
1601
Chris Wilson03ac0642016-07-20 13:31:51 +01001602 addr = vm_mmap(obj->base.filp, 0, args->size,
Eric Anholt673a3942008-07-30 12:06:12 -07001603 PROT_READ | PROT_WRITE, MAP_SHARED,
1604 args->offset);
Joonas Lahtinenebfb6972019-02-07 10:54:54 +02001605 if (IS_ERR_VALUE(addr))
1606 goto err;
1607
Akash Goel1816f922015-01-02 16:29:30 +05301608 if (args->flags & I915_MMAP_WC) {
1609 struct mm_struct *mm = current->mm;
1610 struct vm_area_struct *vma;
1611
Michal Hocko80a89a52016-05-23 16:26:11 -07001612 if (down_write_killable(&mm->mmap_sem)) {
Chris Wilson794a11c2019-03-14 07:58:29 +00001613 addr = -EINTR;
1614 goto err;
Michal Hocko80a89a52016-05-23 16:26:11 -07001615 }
Akash Goel1816f922015-01-02 16:29:30 +05301616 vma = find_vma(mm, addr);
Joonas Lahtinen5c4604e2019-02-07 10:54:53 +02001617 if (vma && __vma_matches(vma, obj->base.filp, addr, args->size))
Akash Goel1816f922015-01-02 16:29:30 +05301618 vma->vm_page_prot =
1619 pgprot_writecombine(vm_get_page_prot(vma->vm_flags));
1620 else
1621 addr = -ENOMEM;
1622 up_write(&mm->mmap_sem);
Joonas Lahtinenebfb6972019-02-07 10:54:54 +02001623 if (IS_ERR_VALUE(addr))
1624 goto err;
Chris Wilsonaeecc962016-06-17 14:46:39 -03001625
1626 /* This may race, but that's ok, it only gets set */
Chris Wilson50349242016-08-18 17:17:04 +01001627 WRITE_ONCE(obj->frontbuffer_ggtt_origin, ORIGIN_CPU);
Akash Goel1816f922015-01-02 16:29:30 +05301628 }
Chris Wilsonf0cd5182016-10-28 13:58:43 +01001629 i915_gem_object_put(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001630
Jani Nikula739f3ab2019-01-16 11:15:19 +02001631 args->addr_ptr = (u64)addr;
Eric Anholt673a3942008-07-30 12:06:12 -07001632 return 0;
Joonas Lahtinenebfb6972019-02-07 10:54:54 +02001633
1634err:
1635 i915_gem_object_put(obj);
Joonas Lahtinenebfb6972019-02-07 10:54:54 +02001636 return addr;
Eric Anholt673a3942008-07-30 12:06:12 -07001637}
1638
Chris Wilsond899ace2018-07-25 16:54:47 +01001639static unsigned int tile_row_pages(const struct drm_i915_gem_object *obj)
Chris Wilson03af84f2016-08-18 17:17:01 +01001640{
Chris Wilson6649a0b2017-01-09 16:16:08 +00001641 return i915_gem_object_get_tile_row_size(obj) >> PAGE_SHIFT;
Chris Wilson03af84f2016-08-18 17:17:01 +01001642}
1643
Jesse Barnesde151cf2008-11-12 10:03:55 -08001644/**
Chris Wilson4cc69072016-08-25 19:05:19 +01001645 * i915_gem_mmap_gtt_version - report the current feature set for GTT mmaps
1646 *
1647 * A history of the GTT mmap interface:
1648 *
1649 * 0 - Everything had to fit into the GTT. Both parties of a memcpy had to
1650 * aligned and suitable for fencing, and still fit into the available
1651 * mappable space left by the pinned display objects. A classic problem
1652 * we called the page-fault-of-doom where we would ping-pong between
1653 * two objects that could not fit inside the GTT and so the memcpy
1654 * would page one object in at the expense of the other between every
1655 * single byte.
1656 *
1657 * 1 - Objects can be any size, and have any compatible fencing (X Y, or none
1658 * as set via i915_gem_set_tiling() [DRM_I915_GEM_SET_TILING]). If the
1659 * object is too large for the available space (or simply too large
1660 * for the mappable aperture!), a view is created instead and faulted
1661 * into userspace. (This view is aligned and sized appropriately for
1662 * fenced access.)
1663 *
Chris Wilsone22d8e32017-04-12 12:01:11 +01001664 * 2 - Recognise WC as a separate cache domain so that we can flush the
1665 * delayed writes via GTT before performing direct access via WC.
1666 *
Chris Wilsona679f582019-03-21 16:19:07 +00001667 * 3 - Remove implicit set-domain(GTT) and synchronisation on initial
1668 * pagefault; swapin remains transparent.
1669 *
Chris Wilson4cc69072016-08-25 19:05:19 +01001670 * Restrictions:
1671 *
1672 * * snoopable objects cannot be accessed via the GTT. It can cause machine
1673 * hangs on some architectures, corruption on others. An attempt to service
1674 * a GTT page fault from a snoopable object will generate a SIGBUS.
1675 *
1676 * * the object must be able to fit into RAM (physical memory, though no
1677 * limited to the mappable aperture).
1678 *
1679 *
1680 * Caveats:
1681 *
1682 * * a new GTT page fault will synchronize rendering from the GPU and flush
1683 * all data to system memory. Subsequent access will not be synchronized.
1684 *
1685 * * all mappings are revoked on runtime device suspend.
1686 *
1687 * * there are only 8, 16 or 32 fence registers to share between all users
1688 * (older machines require fence register for display and blitter access
1689 * as well). Contention of the fence registers will cause the previous users
1690 * to be unmapped and any new access will generate new page faults.
1691 *
1692 * * running out of memory while servicing a fault may generate a SIGBUS,
1693 * rather than the expected SIGSEGV.
1694 */
1695int i915_gem_mmap_gtt_version(void)
1696{
Chris Wilsona679f582019-03-21 16:19:07 +00001697 return 3;
Chris Wilson4cc69072016-08-25 19:05:19 +01001698}
1699
Chris Wilson2d4281b2017-01-10 09:56:32 +00001700static inline struct i915_ggtt_view
Chris Wilsond899ace2018-07-25 16:54:47 +01001701compute_partial_view(const struct drm_i915_gem_object *obj,
Chris Wilson2d4281b2017-01-10 09:56:32 +00001702 pgoff_t page_offset,
1703 unsigned int chunk)
1704{
1705 struct i915_ggtt_view view;
1706
1707 if (i915_gem_object_is_tiled(obj))
1708 chunk = roundup(chunk, tile_row_pages(obj));
1709
Chris Wilson2d4281b2017-01-10 09:56:32 +00001710 view.type = I915_GGTT_VIEW_PARTIAL;
Chris Wilson8bab11932017-01-14 00:28:25 +00001711 view.partial.offset = rounddown(page_offset, chunk);
1712 view.partial.size =
Chris Wilson2d4281b2017-01-10 09:56:32 +00001713 min_t(unsigned int, chunk,
Chris Wilson8bab11932017-01-14 00:28:25 +00001714 (obj->base.size >> PAGE_SHIFT) - view.partial.offset);
Chris Wilson2d4281b2017-01-10 09:56:32 +00001715
1716 /* If the partial covers the entire object, just create a normal VMA. */
1717 if (chunk >= obj->base.size >> PAGE_SHIFT)
1718 view.type = I915_GGTT_VIEW_NORMAL;
1719
1720 return view;
1721}
1722
Chris Wilson4cc69072016-08-25 19:05:19 +01001723/**
Jesse Barnesde151cf2008-11-12 10:03:55 -08001724 * i915_gem_fault - fault a page into the GTT
Geliang Tangd9072a32015-09-15 05:58:44 -07001725 * @vmf: fault info
Jesse Barnesde151cf2008-11-12 10:03:55 -08001726 *
1727 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1728 * from userspace. The fault handler takes care of binding the object to
1729 * the GTT (if needed), allocating and programming a fence register (again,
1730 * only if needed based on whether the old reg is still valid or the object
1731 * is tiled) and inserting a new PTE into the faulting process.
1732 *
1733 * Note that the faulting process may involve evicting existing objects
1734 * from the GTT and/or fence registers to make room. So performance may
1735 * suffer if the GTT working set is large or there are few fence registers
1736 * left.
Chris Wilson4cc69072016-08-25 19:05:19 +01001737 *
1738 * The current feature set supported by i915_gem_fault() and thus GTT mmaps
1739 * is exposed via I915_PARAM_MMAP_GTT_VERSION (see i915_gem_mmap_gtt_version).
Jesse Barnesde151cf2008-11-12 10:03:55 -08001740 */
Chris Wilson52137012018-06-06 22:45:20 +01001741vm_fault_t i915_gem_fault(struct vm_fault *vmf)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001742{
Chris Wilson420980c2018-06-05 14:57:46 +01001743#define MIN_CHUNK_PAGES (SZ_1M >> PAGE_SHIFT)
Dave Jiang11bac802017-02-24 14:56:41 -08001744 struct vm_area_struct *area = vmf->vma;
Chris Wilson058d88c2016-08-15 10:49:06 +01001745 struct drm_i915_gem_object *obj = to_intel_bo(area->vm_private_data);
Chris Wilson05394f32010-11-08 19:18:58 +00001746 struct drm_device *dev = obj->base.dev;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03001747 struct drm_i915_private *dev_priv = to_i915(dev);
1748 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Chris Wilsonaae7c062018-09-03 09:33:34 +01001749 bool write = area->vm_flags & VM_WRITE;
Chris Wilson538ef962019-01-14 14:21:18 +00001750 intel_wakeref_t wakeref;
Chris Wilson058d88c2016-08-15 10:49:06 +01001751 struct i915_vma *vma;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001752 pgoff_t page_offset;
Chris Wilson2caffbf2019-02-08 15:37:03 +00001753 int srcu;
Chris Wilsonb8f90962016-08-05 10:14:07 +01001754 int ret;
Paulo Zanonif65c9162013-11-27 18:20:34 -02001755
Chris Wilson3e977ac2018-07-12 19:53:13 +01001756 /* Sanity check that we allow writing into this object */
1757 if (i915_gem_object_is_readonly(obj) && write)
1758 return VM_FAULT_SIGBUS;
1759
Jesse Barnesde151cf2008-11-12 10:03:55 -08001760 /* We don't use vmf->pgoff since that has the fake offset */
Jan Kara1a29d852016-12-14 15:07:01 -08001761 page_offset = (vmf->address - area->vm_start) >> PAGE_SHIFT;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001762
Chris Wilsondb53a302011-02-03 11:57:46 +00001763 trace_i915_gem_object_fault(obj, page_offset, true, write);
1764
Chris Wilson40e62d52016-10-28 13:58:41 +01001765 ret = i915_gem_object_pin_pages(obj);
1766 if (ret)
1767 goto err;
1768
Chris Wilson538ef962019-01-14 14:21:18 +00001769 wakeref = intel_runtime_pm_get(dev_priv);
Chris Wilsonb8f90962016-08-05 10:14:07 +01001770
Chris Wilson43a8f682019-02-21 10:29:19 +00001771 srcu = i915_reset_trylock(dev_priv);
1772 if (srcu < 0) {
1773 ret = srcu;
1774 goto err_rpm;
1775 }
1776
Chris Wilsonb8f90962016-08-05 10:14:07 +01001777 ret = i915_mutex_lock_interruptible(dev);
1778 if (ret)
Chris Wilson43a8f682019-02-21 10:29:19 +00001779 goto err_reset;
Chris Wilson6e4930f2014-02-07 18:37:06 -02001780
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001781 /* Access to snoopable pages through the GTT is incoherent. */
Tvrtko Ursulin0031fb92016-11-04 14:42:44 +00001782 if (obj->cache_level != I915_CACHE_NONE && !HAS_LLC(dev_priv)) {
Chris Wilsonddeff6e2014-05-28 16:16:41 +01001783 ret = -EFAULT;
Chris Wilsonb8f90962016-08-05 10:14:07 +01001784 goto err_unlock;
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001785 }
1786
Chris Wilsona61007a2016-08-18 17:17:02 +01001787 /* Now pin it into the GTT as needed */
Chris Wilson7e7367d2018-06-30 10:05:09 +01001788 vma = i915_gem_object_ggtt_pin(obj, NULL, 0, 0,
1789 PIN_MAPPABLE |
1790 PIN_NONBLOCK |
1791 PIN_NONFAULT);
Chris Wilsona61007a2016-08-18 17:17:02 +01001792 if (IS_ERR(vma)) {
Chris Wilsona61007a2016-08-18 17:17:02 +01001793 /* Use a partial view if it is bigger than available space */
Chris Wilson2d4281b2017-01-10 09:56:32 +00001794 struct i915_ggtt_view view =
Chris Wilson8201c1f2017-01-10 09:56:33 +00001795 compute_partial_view(obj, page_offset, MIN_CHUNK_PAGES);
Chris Wilson7e7367d2018-06-30 10:05:09 +01001796 unsigned int flags;
Chris Wilsonaa136d92016-08-18 17:17:03 +01001797
Chris Wilson7e7367d2018-06-30 10:05:09 +01001798 flags = PIN_MAPPABLE;
1799 if (view.type == I915_GGTT_VIEW_NORMAL)
1800 flags |= PIN_NONBLOCK; /* avoid warnings for pinned */
1801
1802 /*
1803 * Userspace is now writing through an untracked VMA, abandon
Chris Wilson50349242016-08-18 17:17:04 +01001804 * all hope that the hardware is able to track future writes.
1805 */
1806 obj->frontbuffer_ggtt_origin = ORIGIN_CPU;
1807
Chris Wilson7e7367d2018-06-30 10:05:09 +01001808 vma = i915_gem_object_ggtt_pin(obj, &view, 0, 0, flags);
1809 if (IS_ERR(vma) && !view.type) {
1810 flags = PIN_MAPPABLE;
1811 view.type = I915_GGTT_VIEW_PARTIAL;
1812 vma = i915_gem_object_ggtt_pin(obj, &view, 0, 0, flags);
1813 }
Chris Wilsona61007a2016-08-18 17:17:02 +01001814 }
Chris Wilson058d88c2016-08-15 10:49:06 +01001815 if (IS_ERR(vma)) {
1816 ret = PTR_ERR(vma);
Chris Wilsonb8f90962016-08-05 10:14:07 +01001817 goto err_unlock;
Chris Wilson058d88c2016-08-15 10:49:06 +01001818 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001819
Chris Wilsonaeaaa552019-02-12 13:08:30 +00001820 ret = i915_vma_pin_fence(vma);
1821 if (ret)
1822 goto err_unpin;
1823
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001824 /* Finally, remap it using the new GTT offset */
Chris Wilsonc58305a2016-08-19 16:54:28 +01001825 ret = remap_io_mapping(area,
Chris Wilson8bab11932017-01-14 00:28:25 +00001826 area->vm_start + (vma->ggtt_view.partial.offset << PAGE_SHIFT),
Matthew Auld73ebd502017-12-11 15:18:20 +00001827 (ggtt->gmadr.start + vma->node.start) >> PAGE_SHIFT,
Chris Wilsonc58305a2016-08-19 16:54:28 +01001828 min_t(u64, vma->size, area->vm_end - area->vm_start),
Matthew Auld73ebd502017-12-11 15:18:20 +00001829 &ggtt->iomap);
Chris Wilsona65adaf2017-10-09 09:43:57 +01001830 if (ret)
Chris Wilson43a8f682019-02-21 10:29:19 +00001831 goto err_fence;
Chris Wilsona61007a2016-08-18 17:17:02 +01001832
Chris Wilsona65adaf2017-10-09 09:43:57 +01001833 /* Mark as being mmapped into userspace for later revocation */
1834 assert_rpm_wakelock_held(dev_priv);
1835 if (!i915_vma_set_userfault(vma) && !obj->userfault_count++)
1836 list_add(&obj->userfault_link, &dev_priv->mm.userfault_list);
Chris Wilsonb27e35a2019-05-27 12:51:14 +01001837 if (CONFIG_DRM_I915_USERFAULT_AUTOSUSPEND)
1838 intel_wakeref_auto(&dev_priv->mm.userfault_wakeref,
1839 msecs_to_jiffies_timeout(CONFIG_DRM_I915_USERFAULT_AUTOSUSPEND));
Chris Wilsona65adaf2017-10-09 09:43:57 +01001840 GEM_BUG_ON(!obj->userfault_count);
1841
Chris Wilson7125397b2017-12-06 12:49:14 +00001842 i915_vma_set_ggtt_write(vma);
1843
Chris Wilsonaeaaa552019-02-12 13:08:30 +00001844err_fence:
1845 i915_vma_unpin_fence(vma);
Chris Wilsonb8f90962016-08-05 10:14:07 +01001846err_unpin:
Chris Wilson058d88c2016-08-15 10:49:06 +01001847 __i915_vma_unpin(vma);
Chris Wilsonb8f90962016-08-05 10:14:07 +01001848err_unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001849 mutex_unlock(&dev->struct_mutex);
Chris Wilson43a8f682019-02-21 10:29:19 +00001850err_reset:
1851 i915_reset_unlock(dev_priv, srcu);
Chris Wilsonb8f90962016-08-05 10:14:07 +01001852err_rpm:
Chris Wilson538ef962019-01-14 14:21:18 +00001853 intel_runtime_pm_put(dev_priv, wakeref);
Chris Wilson40e62d52016-10-28 13:58:41 +01001854 i915_gem_object_unpin_pages(obj);
Chris Wilsonb8f90962016-08-05 10:14:07 +01001855err:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001856 switch (ret) {
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001857 case -EIO:
Daniel Vetter2232f032014-09-04 09:36:18 +02001858 /*
1859 * We eat errors when the gpu is terminally wedged to avoid
1860 * userspace unduly crashing (gl has no provisions for mmaps to
1861 * fail). But any other -EIO isn't ours (e.g. swap in failure)
1862 * and so needs to be reported.
1863 */
Chris Wilsonc41166f2019-02-20 14:56:37 +00001864 if (!i915_terminally_wedged(dev_priv))
Chris Wilson52137012018-06-06 22:45:20 +01001865 return VM_FAULT_SIGBUS;
Gustavo A. R. Silvaf0d759f2018-06-28 17:35:41 -05001866 /* else: fall through */
Chris Wilson045e7692010-11-07 09:18:22 +00001867 case -EAGAIN:
Daniel Vetter571c6082013-09-12 17:57:28 +02001868 /*
1869 * EAGAIN means the gpu is hung and we'll wait for the error
1870 * handler to reset everything when re-faulting in
1871 * i915_mutex_lock_interruptible.
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001872 */
Chris Wilsonc7150892009-09-23 00:43:56 +01001873 case 0:
1874 case -ERESTARTSYS:
Chris Wilsonbed636a2011-02-11 20:31:19 +00001875 case -EINTR:
Dmitry Rogozhkine79e0fe2012-10-03 17:15:26 +03001876 case -EBUSY:
1877 /*
1878 * EBUSY is ok: this just means that another thread
1879 * already did the job.
1880 */
Chris Wilson52137012018-06-06 22:45:20 +01001881 return VM_FAULT_NOPAGE;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001882 case -ENOMEM:
Chris Wilson52137012018-06-06 22:45:20 +01001883 return VM_FAULT_OOM;
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001884 case -ENOSPC:
Chris Wilson45d67812014-01-31 11:34:57 +00001885 case -EFAULT:
Chris Wilson52137012018-06-06 22:45:20 +01001886 return VM_FAULT_SIGBUS;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001887 default:
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001888 WARN_ONCE(ret, "unhandled error in i915_gem_fault: %i\n", ret);
Chris Wilson52137012018-06-06 22:45:20 +01001889 return VM_FAULT_SIGBUS;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001890 }
1891}
1892
Chris Wilsona65adaf2017-10-09 09:43:57 +01001893static void __i915_gem_object_release_mmap(struct drm_i915_gem_object *obj)
1894{
1895 struct i915_vma *vma;
1896
1897 GEM_BUG_ON(!obj->userfault_count);
1898
1899 obj->userfault_count = 0;
1900 list_del(&obj->userfault_link);
1901 drm_vma_node_unmap(&obj->base.vma_node,
1902 obj->base.dev->anon_inode->i_mapping);
1903
Chris Wilsone2189dd2017-12-07 21:14:07 +00001904 for_each_ggtt_vma(vma, obj)
Chris Wilsona65adaf2017-10-09 09:43:57 +01001905 i915_vma_unset_userfault(vma);
Chris Wilsona65adaf2017-10-09 09:43:57 +01001906}
1907
Jesse Barnesde151cf2008-11-12 10:03:55 -08001908/**
Chris Wilson901782b2009-07-10 08:18:50 +01001909 * i915_gem_release_mmap - remove physical page mappings
1910 * @obj: obj in question
1911 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001912 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001913 * relinquish ownership of the pages back to the system.
1914 *
1915 * It is vital that we remove the page mapping if we have mapped a tiled
1916 * object through the GTT and then lose the fence register due to
1917 * resource pressure. Similarly if the object has been moved out of the
1918 * aperture, than pages mapped into userspace must be revoked. Removing the
1919 * mapping will then trigger a page fault on the next user access, allowing
1920 * fixup by i915_gem_fault().
1921 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001922void
Chris Wilson05394f32010-11-08 19:18:58 +00001923i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01001924{
Chris Wilson275f0392016-10-24 13:42:14 +01001925 struct drm_i915_private *i915 = to_i915(obj->base.dev);
Chris Wilson538ef962019-01-14 14:21:18 +00001926 intel_wakeref_t wakeref;
Chris Wilson275f0392016-10-24 13:42:14 +01001927
Chris Wilson349f2cc2016-04-13 17:35:12 +01001928 /* Serialisation between user GTT access and our code depends upon
1929 * revoking the CPU's PTE whilst the mutex is held. The next user
1930 * pagefault then has to wait until we release the mutex.
Chris Wilson9c870d02016-10-24 13:42:15 +01001931 *
1932 * Note that RPM complicates somewhat by adding an additional
1933 * requirement that operations to the GGTT be made holding the RPM
1934 * wakeref.
Chris Wilson349f2cc2016-04-13 17:35:12 +01001935 */
Chris Wilson275f0392016-10-24 13:42:14 +01001936 lockdep_assert_held(&i915->drm.struct_mutex);
Chris Wilson538ef962019-01-14 14:21:18 +00001937 wakeref = intel_runtime_pm_get(i915);
Chris Wilson349f2cc2016-04-13 17:35:12 +01001938
Chris Wilsona65adaf2017-10-09 09:43:57 +01001939 if (!obj->userfault_count)
Chris Wilson9c870d02016-10-24 13:42:15 +01001940 goto out;
Chris Wilson901782b2009-07-10 08:18:50 +01001941
Chris Wilsona65adaf2017-10-09 09:43:57 +01001942 __i915_gem_object_release_mmap(obj);
Chris Wilson349f2cc2016-04-13 17:35:12 +01001943
1944 /* Ensure that the CPU's PTE are revoked and there are not outstanding
1945 * memory transactions from userspace before we return. The TLB
1946 * flushing implied above by changing the PTE above *should* be
1947 * sufficient, an extra barrier here just provides us with a bit
1948 * of paranoid documentation about our requirement to serialise
1949 * memory writes before touching registers / GSM.
1950 */
1951 wmb();
Chris Wilson9c870d02016-10-24 13:42:15 +01001952
1953out:
Chris Wilson538ef962019-01-14 14:21:18 +00001954 intel_runtime_pm_put(i915, wakeref);
Chris Wilson901782b2009-07-10 08:18:50 +01001955}
1956
Chris Wilson7c108fd2016-10-24 13:42:18 +01001957void i915_gem_runtime_suspend(struct drm_i915_private *dev_priv)
Chris Wilsoneedd10f2014-06-16 08:57:44 +01001958{
Chris Wilson3594a3e2016-10-24 13:42:16 +01001959 struct drm_i915_gem_object *obj, *on;
Chris Wilson7c108fd2016-10-24 13:42:18 +01001960 int i;
Chris Wilsoneedd10f2014-06-16 08:57:44 +01001961
Chris Wilson3594a3e2016-10-24 13:42:16 +01001962 /*
1963 * Only called during RPM suspend. All users of the userfault_list
1964 * must be holding an RPM wakeref to ensure that this can not
1965 * run concurrently with themselves (and use the struct_mutex for
1966 * protection between themselves).
1967 */
1968
1969 list_for_each_entry_safe(obj, on,
Chris Wilsona65adaf2017-10-09 09:43:57 +01001970 &dev_priv->mm.userfault_list, userfault_link)
1971 __i915_gem_object_release_mmap(obj);
Chris Wilson7c108fd2016-10-24 13:42:18 +01001972
1973 /* The fence will be lost when the device powers down. If any were
1974 * in use by hardware (i.e. they are pinned), we should not be powering
1975 * down! All other fences will be reacquired by the user upon waking.
1976 */
1977 for (i = 0; i < dev_priv->num_fence_regs; i++) {
1978 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
1979
Chris Wilsone0ec3ec2017-02-03 12:57:17 +00001980 /* Ideally we want to assert that the fence register is not
1981 * live at this point (i.e. that no piece of code will be
1982 * trying to write through fence + GTT, as that both violates
1983 * our tracking of activity and associated locking/barriers,
1984 * but also is illegal given that the hw is powered down).
1985 *
1986 * Previously we used reg->pin_count as a "liveness" indicator.
1987 * That is not sufficient, and we need a more fine-grained
1988 * tool if we want to have a sanity check here.
1989 */
Chris Wilson7c108fd2016-10-24 13:42:18 +01001990
1991 if (!reg->vma)
1992 continue;
1993
Chris Wilsona65adaf2017-10-09 09:43:57 +01001994 GEM_BUG_ON(i915_vma_has_userfault(reg->vma));
Chris Wilson7c108fd2016-10-24 13:42:18 +01001995 reg->dirty = true;
1996 }
Chris Wilsoneedd10f2014-06-16 08:57:44 +01001997}
1998
Chris Wilsond8cb5082012-08-11 15:41:03 +01001999static int i915_gem_object_create_mmap_offset(struct drm_i915_gem_object *obj)
2000{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002001 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
Chris Wilsonf3f61842016-08-05 10:14:14 +01002002 int err;
Chris Wilsond8cb5082012-08-11 15:41:03 +01002003
Chris Wilsonf3f61842016-08-05 10:14:14 +01002004 err = drm_gem_create_mmap_offset(&obj->base);
Chris Wilsonb42a13d2017-01-06 15:22:40 +00002005 if (likely(!err))
Chris Wilsonf3f61842016-08-05 10:14:14 +01002006 return 0;
Daniel Vetterda494d72012-12-20 15:11:16 +01002007
Chris Wilsonb42a13d2017-01-06 15:22:40 +00002008 /* Attempt to reap some mmap space from dead objects */
2009 do {
Chris Wilsonec625fb2018-07-09 13:20:42 +01002010 err = i915_gem_wait_for_idle(dev_priv,
2011 I915_WAIT_INTERRUPTIBLE,
2012 MAX_SCHEDULE_TIMEOUT);
Chris Wilsonb42a13d2017-01-06 15:22:40 +00002013 if (err)
2014 break;
Chris Wilsond8cb5082012-08-11 15:41:03 +01002015
Chris Wilsonb42a13d2017-01-06 15:22:40 +00002016 i915_gem_drain_freed_objects(dev_priv);
Chris Wilsonf3f61842016-08-05 10:14:14 +01002017 err = drm_gem_create_mmap_offset(&obj->base);
Chris Wilsonb42a13d2017-01-06 15:22:40 +00002018 if (!err)
2019 break;
2020
Chris Wilson23c3c3d2019-04-24 21:07:14 +01002021 } while (flush_delayed_work(&dev_priv->gem.retire_work));
Daniel Vetterda494d72012-12-20 15:11:16 +01002022
Chris Wilsonf3f61842016-08-05 10:14:14 +01002023 return err;
Chris Wilsond8cb5082012-08-11 15:41:03 +01002024}
2025
2026static void i915_gem_object_free_mmap_offset(struct drm_i915_gem_object *obj)
2027{
Chris Wilsond8cb5082012-08-11 15:41:03 +01002028 drm_gem_free_mmap_offset(&obj->base);
2029}
2030
Dave Airlieda6b51d2014-12-24 13:11:17 +10002031int
Dave Airlieff72145b2011-02-07 12:16:14 +10002032i915_gem_mmap_gtt(struct drm_file *file,
2033 struct drm_device *dev,
Jani Nikula739f3ab2019-01-16 11:15:19 +02002034 u32 handle,
2035 u64 *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002036{
Chris Wilson05394f32010-11-08 19:18:58 +00002037 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002038 int ret;
2039
Chris Wilson03ac0642016-07-20 13:31:51 +01002040 obj = i915_gem_object_lookup(file, handle);
Chris Wilsonf3f61842016-08-05 10:14:14 +01002041 if (!obj)
2042 return -ENOENT;
Chris Wilsonab182822009-09-22 18:46:17 +01002043
Chris Wilsond8cb5082012-08-11 15:41:03 +01002044 ret = i915_gem_object_create_mmap_offset(obj);
Chris Wilsonf3f61842016-08-05 10:14:14 +01002045 if (ret == 0)
2046 *offset = drm_vma_node_offset_addr(&obj->base.vma_node);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002047
Chris Wilsonf0cd5182016-10-28 13:58:43 +01002048 i915_gem_object_put(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01002049 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002050}
2051
Dave Airlieff72145b2011-02-07 12:16:14 +10002052/**
2053 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
2054 * @dev: DRM device
2055 * @data: GTT mapping ioctl data
2056 * @file: GEM object info
2057 *
2058 * Simply returns the fake offset to userspace so it can mmap it.
2059 * The mmap call will end up in drm_gem_mmap(), which will set things
2060 * up so we can get faults in the handler above.
2061 *
2062 * The fault handler will take care of binding the object into the GTT
2063 * (since it may have been evicted to make room for something), allocating
2064 * a fence register, and mapping the appropriate aperture address into
2065 * userspace.
2066 */
2067int
2068i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
2069 struct drm_file *file)
2070{
2071 struct drm_i915_gem_mmap_gtt *args = data;
2072
Dave Airlieda6b51d2014-12-24 13:11:17 +10002073 return i915_gem_mmap_gtt(file, dev, args->handle, &args->offset);
Dave Airlieff72145b2011-02-07 12:16:14 +10002074}
2075
Daniel Vetter225067e2012-08-20 10:23:20 +02002076/* Immediately discard the backing storage */
Chris Wilson2d6692e2019-04-20 12:55:39 +01002077void __i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilsone5281cc2010-10-28 13:45:36 +01002078{
Chris Wilson4d6294bf2012-08-11 15:41:05 +01002079 i915_gem_object_free_mmap_offset(obj);
Daniel Vetter1286ff72012-05-10 15:25:09 +02002080
Chris Wilson4d6294bf2012-08-11 15:41:05 +01002081 if (obj->base.filp == NULL)
2082 return;
2083
Daniel Vetter225067e2012-08-20 10:23:20 +02002084 /* Our goal here is to return as much of the memory as
2085 * is possible back to the system as we are called from OOM.
2086 * To do this we must instruct the shmfs to drop all of its
2087 * backing pages, *now*.
Chris Wilsone5281cc2010-10-28 13:45:36 +01002088 */
Chris Wilson55372522014-03-25 13:23:06 +00002089 shmem_truncate_range(file_inode(obj->base.filp), 0, (loff_t)-1);
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002090 obj->mm.madv = __I915_MADV_PURGED;
Chris Wilson4e5462e2017-03-07 13:20:31 +00002091 obj->mm.pages = ERR_PTR(-EFAULT);
Chris Wilsone5281cc2010-10-28 13:45:36 +01002092}
Chris Wilsone5281cc2010-10-28 13:45:36 +01002093
Kuo-Hsin Yang64e3d122018-11-06 13:23:24 +00002094/*
2095 * Move pages to appropriate lru and release the pagevec, decrementing the
2096 * ref count of those pages.
2097 */
2098static void check_release_pagevec(struct pagevec *pvec)
2099{
2100 check_move_unevictable_pages(pvec);
2101 __pagevec_release(pvec);
2102 cond_resched();
2103}
2104
Chris Wilson5cdf5882010-09-27 15:51:07 +01002105static void
Chris Wilson03ac84f2016-10-28 13:58:36 +01002106i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj,
2107 struct sg_table *pages)
Eric Anholt673a3942008-07-30 12:06:12 -07002108{
Dave Gordon85d12252016-05-20 11:54:06 +01002109 struct sgt_iter sgt_iter;
Kuo-Hsin Yang64e3d122018-11-06 13:23:24 +00002110 struct pagevec pvec;
Dave Gordon85d12252016-05-20 11:54:06 +01002111 struct page *page;
Daniel Vetter1286ff72012-05-10 15:25:09 +02002112
Chris Wilsone5facdf2016-12-23 14:57:57 +00002113 __i915_gem_object_release_shmem(obj, pages, true);
Chris Wilson03ac84f2016-10-28 13:58:36 +01002114 i915_gem_gtt_finish_pages(obj, pages);
Imre Deake2273302015-07-09 12:59:05 +03002115
Daniel Vetter6dacfd22011-09-12 21:30:02 +02002116 if (i915_gem_object_needs_bit17_swizzle(obj))
Chris Wilson03ac84f2016-10-28 13:58:36 +01002117 i915_gem_object_save_bit_17_swizzle(obj, pages);
Eric Anholt280b7132009-03-12 16:56:27 -07002118
Kuo-Hsin Yang64e3d122018-11-06 13:23:24 +00002119 mapping_clear_unevictable(file_inode(obj->base.filp)->i_mapping);
2120
2121 pagevec_init(&pvec);
Chris Wilson03ac84f2016-10-28 13:58:36 +01002122 for_each_sgt_page(page, sgt_iter, pages) {
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002123 if (obj->mm.dirty)
Chris Wilson9da3da62012-06-01 15:20:22 +01002124 set_page_dirty(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01002125
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002126 if (obj->mm.madv == I915_MADV_WILLNEED)
Chris Wilson9da3da62012-06-01 15:20:22 +01002127 mark_page_accessed(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01002128
Kuo-Hsin Yang64e3d122018-11-06 13:23:24 +00002129 if (!pagevec_add(&pvec, page))
2130 check_release_pagevec(&pvec);
Chris Wilson3ef94da2009-09-14 16:50:29 +01002131 }
Kuo-Hsin Yang64e3d122018-11-06 13:23:24 +00002132 if (pagevec_count(&pvec))
2133 check_release_pagevec(&pvec);
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002134 obj->mm.dirty = false;
Eric Anholt673a3942008-07-30 12:06:12 -07002135
Chris Wilson03ac84f2016-10-28 13:58:36 +01002136 sg_free_table(pages);
2137 kfree(pages);
Chris Wilson37e680a2012-06-07 15:38:42 +01002138}
2139
Chris Wilson96d77632016-10-28 13:58:33 +01002140static void __i915_gem_object_reset_page_iter(struct drm_i915_gem_object *obj)
2141{
2142 struct radix_tree_iter iter;
Ville Syrjäläc23aa712017-09-01 20:12:51 +03002143 void __rcu **slot;
Chris Wilson96d77632016-10-28 13:58:33 +01002144
Chris Wilsonbea6e982017-10-26 14:00:31 +01002145 rcu_read_lock();
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002146 radix_tree_for_each_slot(slot, &obj->mm.get_page.radix, &iter, 0)
2147 radix_tree_delete(&obj->mm.get_page.radix, iter.index);
Chris Wilsonbea6e982017-10-26 14:00:31 +01002148 rcu_read_unlock();
Chris Wilson96d77632016-10-28 13:58:33 +01002149}
2150
Chris Wilsonacd1c1e2018-06-11 08:55:32 +01002151static struct sg_table *
2152__i915_gem_object_unset_pages(struct drm_i915_gem_object *obj)
Chris Wilson37e680a2012-06-07 15:38:42 +01002153{
Chris Wilsonf2123812017-10-16 12:40:37 +01002154 struct drm_i915_private *i915 = to_i915(obj->base.dev);
Chris Wilson03ac84f2016-10-28 13:58:36 +01002155 struct sg_table *pages;
Chris Wilson37e680a2012-06-07 15:38:42 +01002156
Chris Wilson03ac84f2016-10-28 13:58:36 +01002157 pages = fetch_and_zero(&obj->mm.pages);
Chris Wilson484d9a82019-01-15 12:44:42 +00002158 if (IS_ERR_OR_NULL(pages))
2159 return pages;
Chris Wilsona2165e32012-12-03 11:49:00 +00002160
Chris Wilsonf2123812017-10-16 12:40:37 +01002161 spin_lock(&i915->mm.obj_lock);
2162 list_del(&obj->mm.link);
2163 spin_unlock(&i915->mm.obj_lock);
2164
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002165 if (obj->mm.mapping) {
Chris Wilson4b30cb22016-08-18 17:16:42 +01002166 void *ptr;
2167
Chris Wilson0ce81782017-05-17 13:09:59 +01002168 ptr = page_mask_bits(obj->mm.mapping);
Chris Wilson4b30cb22016-08-18 17:16:42 +01002169 if (is_vmalloc_addr(ptr))
2170 vunmap(ptr);
Chris Wilsonfb8621d2016-04-08 12:11:14 +01002171 else
Chris Wilson4b30cb22016-08-18 17:16:42 +01002172 kunmap(kmap_to_page(ptr));
2173
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002174 obj->mm.mapping = NULL;
Chris Wilson0a798eb2016-04-08 12:11:11 +01002175 }
2176
Chris Wilson96d77632016-10-28 13:58:33 +01002177 __i915_gem_object_reset_page_iter(obj);
Chris Wilsonacd1c1e2018-06-11 08:55:32 +01002178 obj->mm.page_sizes.phys = obj->mm.page_sizes.sg = 0;
Chris Wilson96d77632016-10-28 13:58:33 +01002179
Chris Wilsonacd1c1e2018-06-11 08:55:32 +01002180 return pages;
2181}
2182
Chris Wilson484d9a82019-01-15 12:44:42 +00002183int __i915_gem_object_put_pages(struct drm_i915_gem_object *obj,
2184 enum i915_mm_subclass subclass)
Chris Wilsonacd1c1e2018-06-11 08:55:32 +01002185{
2186 struct sg_table *pages;
Chris Wilson484d9a82019-01-15 12:44:42 +00002187 int ret;
Chris Wilsonacd1c1e2018-06-11 08:55:32 +01002188
2189 if (i915_gem_object_has_pinned_pages(obj))
Chris Wilson484d9a82019-01-15 12:44:42 +00002190 return -EBUSY;
Chris Wilsonacd1c1e2018-06-11 08:55:32 +01002191
2192 GEM_BUG_ON(obj->bind_count);
Chris Wilsonacd1c1e2018-06-11 08:55:32 +01002193
2194 /* May be called by shrinker from within get_pages() (on another bo) */
2195 mutex_lock_nested(&obj->mm.lock, subclass);
Chris Wilson484d9a82019-01-15 12:44:42 +00002196 if (unlikely(atomic_read(&obj->mm.pages_pin_count))) {
2197 ret = -EBUSY;
Chris Wilsonacd1c1e2018-06-11 08:55:32 +01002198 goto unlock;
Chris Wilson484d9a82019-01-15 12:44:42 +00002199 }
Chris Wilsonacd1c1e2018-06-11 08:55:32 +01002200
2201 /*
2202 * ->put_pages might need to allocate memory for the bit17 swizzle
2203 * array, hence protect them from being reaped by removing them from gtt
2204 * lists early.
2205 */
2206 pages = __i915_gem_object_unset_pages(obj);
Chris Wilson484d9a82019-01-15 12:44:42 +00002207
2208 /*
2209 * XXX Temporary hijinx to avoid updating all backends to handle
2210 * NULL pages. In the future, when we have more asynchronous
2211 * get_pages backends we should be better able to handle the
2212 * cancellation of the async task in a more uniform manner.
2213 */
2214 if (!pages && !i915_gem_object_needs_async_cancel(obj))
2215 pages = ERR_PTR(-EINVAL);
2216
Chris Wilson4e5462e2017-03-07 13:20:31 +00002217 if (!IS_ERR(pages))
2218 obj->ops->put_pages(obj, pages);
2219
Chris Wilson484d9a82019-01-15 12:44:42 +00002220 ret = 0;
Chris Wilson1233e2d2016-10-28 13:58:37 +01002221unlock:
2222 mutex_unlock(&obj->mm.lock);
Chris Wilson484d9a82019-01-15 12:44:42 +00002223
2224 return ret;
Chris Wilson6c085a72012-08-20 11:40:46 +02002225}
2226
Tvrtko Ursulinf8e57862018-09-26 09:03:53 +01002227bool i915_sg_trim(struct sg_table *orig_st)
Tvrtko Ursulin0c40ce12016-11-09 15:13:43 +00002228{
2229 struct sg_table new_st;
2230 struct scatterlist *sg, *new_sg;
2231 unsigned int i;
2232
2233 if (orig_st->nents == orig_st->orig_nents)
Chris Wilson935a2f72017-02-13 17:15:13 +00002234 return false;
Tvrtko Ursulin0c40ce12016-11-09 15:13:43 +00002235
Chris Wilson8bfc478f2016-12-23 14:57:58 +00002236 if (sg_alloc_table(&new_st, orig_st->nents, GFP_KERNEL | __GFP_NOWARN))
Chris Wilson935a2f72017-02-13 17:15:13 +00002237 return false;
Tvrtko Ursulin0c40ce12016-11-09 15:13:43 +00002238
2239 new_sg = new_st.sgl;
2240 for_each_sg(orig_st->sgl, sg, orig_st->nents, i) {
2241 sg_set_page(new_sg, sg_page(sg), sg->length, 0);
Matthew Auldc6d22ab2018-09-20 15:27:06 +01002242 sg_dma_address(new_sg) = sg_dma_address(sg);
2243 sg_dma_len(new_sg) = sg_dma_len(sg);
2244
Tvrtko Ursulin0c40ce12016-11-09 15:13:43 +00002245 new_sg = sg_next(new_sg);
2246 }
Chris Wilsonc2dc6cc2016-12-19 12:43:46 +00002247 GEM_BUG_ON(new_sg); /* Should walk exactly nents and hit the end */
Tvrtko Ursulin0c40ce12016-11-09 15:13:43 +00002248
2249 sg_free_table(orig_st);
2250
2251 *orig_st = new_st;
Chris Wilson935a2f72017-02-13 17:15:13 +00002252 return true;
Tvrtko Ursulin0c40ce12016-11-09 15:13:43 +00002253}
2254
Matthew Auldb91b09e2017-10-06 23:18:17 +01002255static int i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002256{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002257 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
Chris Wilsond766ef52016-12-19 12:43:45 +00002258 const unsigned long page_count = obj->base.size / PAGE_SIZE;
2259 unsigned long i;
Eric Anholt673a3942008-07-30 12:06:12 -07002260 struct address_space *mapping;
Chris Wilson9da3da62012-06-01 15:20:22 +01002261 struct sg_table *st;
2262 struct scatterlist *sg;
Dave Gordon85d12252016-05-20 11:54:06 +01002263 struct sgt_iter sgt_iter;
Eric Anholt673a3942008-07-30 12:06:12 -07002264 struct page *page;
Imre Deak90797e62013-02-18 19:28:03 +02002265 unsigned long last_pfn = 0; /* suppress gcc warning */
Tvrtko Ursulin56024522017-08-03 10:14:17 +01002266 unsigned int max_segment = i915_sg_segment_size();
Matthew Auld84e89782017-10-09 12:00:24 +01002267 unsigned int sg_page_sizes;
Kuo-Hsin Yang64e3d122018-11-06 13:23:24 +00002268 struct pagevec pvec;
Chris Wilson4846bf02017-06-09 12:03:46 +01002269 gfp_t noreclaim;
Imre Deake2273302015-07-09 12:59:05 +03002270 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002271
Chris Wilsone0ff7a72018-09-03 09:33:36 +01002272 /*
2273 * Assert that the object is not currently in any GPU domain. As it
Chris Wilson6c085a72012-08-20 11:40:46 +02002274 * wasn't in the GTT, there shouldn't be any way it could have been in
2275 * a GPU cache
2276 */
Christian Königc0a51fd2018-02-16 13:43:38 +01002277 GEM_BUG_ON(obj->read_domains & I915_GEM_GPU_DOMAINS);
2278 GEM_BUG_ON(obj->write_domain & I915_GEM_GPU_DOMAINS);
Chris Wilson6c085a72012-08-20 11:40:46 +02002279
Chris Wilsone0ff7a72018-09-03 09:33:36 +01002280 /*
2281 * If there's no chance of allocating enough pages for the whole
2282 * object, bail early.
2283 */
Arun KSca79b0c2018-12-28 00:34:29 -08002284 if (page_count > totalram_pages())
Chris Wilsone0ff7a72018-09-03 09:33:36 +01002285 return -ENOMEM;
2286
Chris Wilson9da3da62012-06-01 15:20:22 +01002287 st = kmalloc(sizeof(*st), GFP_KERNEL);
2288 if (st == NULL)
Matthew Auldb91b09e2017-10-06 23:18:17 +01002289 return -ENOMEM;
Eric Anholt673a3942008-07-30 12:06:12 -07002290
Chris Wilsond766ef52016-12-19 12:43:45 +00002291rebuild_st:
Chris Wilson9da3da62012-06-01 15:20:22 +01002292 if (sg_alloc_table(st, page_count, GFP_KERNEL)) {
Chris Wilson9da3da62012-06-01 15:20:22 +01002293 kfree(st);
Matthew Auldb91b09e2017-10-06 23:18:17 +01002294 return -ENOMEM;
Chris Wilson9da3da62012-06-01 15:20:22 +01002295 }
2296
Chris Wilsone0ff7a72018-09-03 09:33:36 +01002297 /*
2298 * Get the list of pages out of our struct file. They'll be pinned
Chris Wilson9da3da62012-06-01 15:20:22 +01002299 * at this point until we release them.
2300 *
2301 * Fail silently without starting the shrinker
2302 */
Al Viro93c76a32015-12-04 23:45:44 -05002303 mapping = obj->base.filp->f_mapping;
Kuo-Hsin Yang64e3d122018-11-06 13:23:24 +00002304 mapping_set_unevictable(mapping);
Chris Wilson0f6ab552017-06-09 12:03:48 +01002305 noreclaim = mapping_gfp_constraint(mapping, ~__GFP_RECLAIM);
Chris Wilson4846bf02017-06-09 12:03:46 +01002306 noreclaim |= __GFP_NORETRY | __GFP_NOWARN;
2307
Imre Deak90797e62013-02-18 19:28:03 +02002308 sg = st->sgl;
2309 st->nents = 0;
Matthew Auld84e89782017-10-09 12:00:24 +01002310 sg_page_sizes = 0;
Imre Deak90797e62013-02-18 19:28:03 +02002311 for (i = 0; i < page_count; i++) {
Chris Wilson4846bf02017-06-09 12:03:46 +01002312 const unsigned int shrink[] = {
2313 I915_SHRINK_BOUND | I915_SHRINK_UNBOUND | I915_SHRINK_PURGEABLE,
2314 0,
2315 }, *s = shrink;
2316 gfp_t gfp = noreclaim;
2317
2318 do {
Chris Wilsone6db7f42018-11-05 17:06:40 +00002319 cond_resched();
Chris Wilson6c085a72012-08-20 11:40:46 +02002320 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
Chengguang Xu772b5402019-02-21 10:08:19 +08002321 if (!IS_ERR(page))
Chris Wilson4846bf02017-06-09 12:03:46 +01002322 break;
2323
2324 if (!*s) {
2325 ret = PTR_ERR(page);
2326 goto err_sg;
2327 }
2328
Chris Wilson912d5722017-09-06 16:19:30 -07002329 i915_gem_shrink(dev_priv, 2 * page_count, NULL, *s++);
Chris Wilson24f8e002017-03-22 11:05:21 +00002330
Chris Wilsone0ff7a72018-09-03 09:33:36 +01002331 /*
2332 * We've tried hard to allocate the memory by reaping
Chris Wilson6c085a72012-08-20 11:40:46 +02002333 * our own buffer, now let the real VM do its job and
2334 * go down in flames if truly OOM.
Chris Wilson24f8e002017-03-22 11:05:21 +00002335 *
2336 * However, since graphics tend to be disposable,
2337 * defer the oom here by reporting the ENOMEM back
2338 * to userspace.
Chris Wilson6c085a72012-08-20 11:40:46 +02002339 */
Chris Wilson4846bf02017-06-09 12:03:46 +01002340 if (!*s) {
2341 /* reclaim and warn, but no oom */
2342 gfp = mapping_gfp_mask(mapping);
Chris Wilsoneaf41802017-06-09 12:03:47 +01002343
Chris Wilsone0ff7a72018-09-03 09:33:36 +01002344 /*
2345 * Our bo are always dirty and so we require
Chris Wilsoneaf41802017-06-09 12:03:47 +01002346 * kswapd to reclaim our pages (direct reclaim
2347 * does not effectively begin pageout of our
2348 * buffers on its own). However, direct reclaim
2349 * only waits for kswapd when under allocation
2350 * congestion. So as a result __GFP_RECLAIM is
2351 * unreliable and fails to actually reclaim our
2352 * dirty pages -- unless you try over and over
2353 * again with !__GFP_NORETRY. However, we still
2354 * want to fail this allocation rather than
2355 * trigger the out-of-memory killer and for
Michal Hockodbb32952017-07-12 14:36:55 -07002356 * this we want __GFP_RETRY_MAYFAIL.
Chris Wilsoneaf41802017-06-09 12:03:47 +01002357 */
Michal Hockodbb32952017-07-12 14:36:55 -07002358 gfp |= __GFP_RETRY_MAYFAIL;
Imre Deake2273302015-07-09 12:59:05 +03002359 }
Chris Wilson4846bf02017-06-09 12:03:46 +01002360 } while (1);
2361
Chris Wilson871dfbd2016-10-11 09:20:21 +01002362 if (!i ||
2363 sg->length >= max_segment ||
2364 page_to_pfn(page) != last_pfn + 1) {
Matthew Aulda5c081662017-10-06 23:18:18 +01002365 if (i) {
Matthew Auld84e89782017-10-09 12:00:24 +01002366 sg_page_sizes |= sg->length;
Imre Deak90797e62013-02-18 19:28:03 +02002367 sg = sg_next(sg);
Matthew Aulda5c081662017-10-06 23:18:18 +01002368 }
Imre Deak90797e62013-02-18 19:28:03 +02002369 st->nents++;
2370 sg_set_page(sg, page, PAGE_SIZE, 0);
2371 } else {
2372 sg->length += PAGE_SIZE;
2373 }
2374 last_pfn = page_to_pfn(page);
Daniel Vetter3bbbe702013-10-07 17:15:45 -03002375
2376 /* Check that the i965g/gm workaround works. */
2377 WARN_ON((gfp & __GFP_DMA32) && (last_pfn >= 0x00100000UL));
Eric Anholt673a3942008-07-30 12:06:12 -07002378 }
Matthew Aulda5c081662017-10-06 23:18:18 +01002379 if (sg) { /* loop terminated early; short sg table */
Matthew Auld84e89782017-10-09 12:00:24 +01002380 sg_page_sizes |= sg->length;
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04002381 sg_mark_end(sg);
Matthew Aulda5c081662017-10-06 23:18:18 +01002382 }
Chris Wilson74ce6b62012-10-19 15:51:06 +01002383
Tvrtko Ursulin0c40ce12016-11-09 15:13:43 +00002384 /* Trim unused sg entries to avoid wasting memory. */
2385 i915_sg_trim(st);
2386
Chris Wilson03ac84f2016-10-28 13:58:36 +01002387 ret = i915_gem_gtt_prepare_pages(obj, st);
Chris Wilsond766ef52016-12-19 12:43:45 +00002388 if (ret) {
Chris Wilsone0ff7a72018-09-03 09:33:36 +01002389 /*
2390 * DMA remapping failed? One possible cause is that
Chris Wilsond766ef52016-12-19 12:43:45 +00002391 * it could not reserve enough large entries, asking
2392 * for PAGE_SIZE chunks instead may be helpful.
2393 */
2394 if (max_segment > PAGE_SIZE) {
2395 for_each_sgt_page(page, sgt_iter, st)
2396 put_page(page);
2397 sg_free_table(st);
2398
2399 max_segment = PAGE_SIZE;
2400 goto rebuild_st;
2401 } else {
2402 dev_warn(&dev_priv->drm.pdev->dev,
2403 "Failed to DMA remap %lu pages\n",
2404 page_count);
2405 goto err_pages;
2406 }
2407 }
Imre Deake2273302015-07-09 12:59:05 +03002408
Eric Anholt673a3942008-07-30 12:06:12 -07002409 if (i915_gem_object_needs_bit17_swizzle(obj))
Chris Wilson03ac84f2016-10-28 13:58:36 +01002410 i915_gem_object_do_bit_17_swizzle(obj, st);
Eric Anholt673a3942008-07-30 12:06:12 -07002411
Matthew Auld84e89782017-10-09 12:00:24 +01002412 __i915_gem_object_set_pages(obj, st, sg_page_sizes);
Matthew Auldb91b09e2017-10-06 23:18:17 +01002413
2414 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002415
Chris Wilsonb17993b2016-11-14 11:29:30 +00002416err_sg:
Imre Deak90797e62013-02-18 19:28:03 +02002417 sg_mark_end(sg);
Chris Wilsonb17993b2016-11-14 11:29:30 +00002418err_pages:
Kuo-Hsin Yang64e3d122018-11-06 13:23:24 +00002419 mapping_clear_unevictable(mapping);
2420 pagevec_init(&pvec);
2421 for_each_sgt_page(page, sgt_iter, st) {
2422 if (!pagevec_add(&pvec, page))
2423 check_release_pagevec(&pvec);
2424 }
2425 if (pagevec_count(&pvec))
2426 check_release_pagevec(&pvec);
Chris Wilson9da3da62012-06-01 15:20:22 +01002427 sg_free_table(st);
2428 kfree(st);
Chris Wilson0820baf2014-03-25 13:23:03 +00002429
Chris Wilsone0ff7a72018-09-03 09:33:36 +01002430 /*
2431 * shmemfs first checks if there is enough memory to allocate the page
Chris Wilson0820baf2014-03-25 13:23:03 +00002432 * and reports ENOSPC should there be insufficient, along with the usual
2433 * ENOMEM for a genuine allocation failure.
2434 *
2435 * We use ENOSPC in our driver to mean that we have run out of aperture
2436 * space and so want to translate the error from shmemfs back to our
2437 * usual understanding of ENOMEM.
2438 */
Imre Deake2273302015-07-09 12:59:05 +03002439 if (ret == -ENOSPC)
2440 ret = -ENOMEM;
2441
Matthew Auldb91b09e2017-10-06 23:18:17 +01002442 return ret;
Chris Wilson03ac84f2016-10-28 13:58:36 +01002443}
2444
2445void __i915_gem_object_set_pages(struct drm_i915_gem_object *obj,
Matthew Aulda5c081662017-10-06 23:18:18 +01002446 struct sg_table *pages,
Matthew Auld84e89782017-10-09 12:00:24 +01002447 unsigned int sg_page_sizes)
Chris Wilson03ac84f2016-10-28 13:58:36 +01002448{
Matthew Aulda5c081662017-10-06 23:18:18 +01002449 struct drm_i915_private *i915 = to_i915(obj->base.dev);
2450 unsigned long supported = INTEL_INFO(i915)->page_sizes;
2451 int i;
2452
Chris Wilson1233e2d2016-10-28 13:58:37 +01002453 lockdep_assert_held(&obj->mm.lock);
Chris Wilson03ac84f2016-10-28 13:58:36 +01002454
Chris Wilsona679f582019-03-21 16:19:07 +00002455 /* Make the pages coherent with the GPU (flushing any swapin). */
2456 if (obj->cache_dirty) {
2457 obj->write_domain = 0;
2458 if (i915_gem_object_has_struct_page(obj))
2459 drm_clflush_sg(pages);
2460 obj->cache_dirty = false;
2461 }
2462
Chris Wilson03ac84f2016-10-28 13:58:36 +01002463 obj->mm.get_page.sg_pos = pages->sgl;
2464 obj->mm.get_page.sg_idx = 0;
2465
2466 obj->mm.pages = pages;
Chris Wilson2c3a3f42016-11-04 10:30:01 +00002467
2468 if (i915_gem_object_is_tiled(obj) &&
Chris Wilsonf2123812017-10-16 12:40:37 +01002469 i915->quirks & QUIRK_PIN_SWIZZLED_PAGES) {
Chris Wilson2c3a3f42016-11-04 10:30:01 +00002470 GEM_BUG_ON(obj->mm.quirked);
2471 __i915_gem_object_pin_pages(obj);
2472 obj->mm.quirked = true;
2473 }
Matthew Aulda5c081662017-10-06 23:18:18 +01002474
Matthew Auld84e89782017-10-09 12:00:24 +01002475 GEM_BUG_ON(!sg_page_sizes);
2476 obj->mm.page_sizes.phys = sg_page_sizes;
Matthew Aulda5c081662017-10-06 23:18:18 +01002477
2478 /*
Matthew Auld84e89782017-10-09 12:00:24 +01002479 * Calculate the supported page-sizes which fit into the given
2480 * sg_page_sizes. This will give us the page-sizes which we may be able
2481 * to use opportunistically when later inserting into the GTT. For
2482 * example if phys=2G, then in theory we should be able to use 1G, 2M,
2483 * 64K or 4K pages, although in practice this will depend on a number of
2484 * other factors.
Matthew Aulda5c081662017-10-06 23:18:18 +01002485 */
2486 obj->mm.page_sizes.sg = 0;
2487 for_each_set_bit(i, &supported, ilog2(I915_GTT_MAX_PAGE_SIZE) + 1) {
2488 if (obj->mm.page_sizes.phys & ~0u << i)
2489 obj->mm.page_sizes.sg |= BIT(i);
2490 }
Matthew Aulda5c081662017-10-06 23:18:18 +01002491 GEM_BUG_ON(!HAS_PAGE_SIZES(i915, obj->mm.page_sizes.sg));
Chris Wilsonf2123812017-10-16 12:40:37 +01002492
2493 spin_lock(&i915->mm.obj_lock);
2494 list_add(&obj->mm.link, &i915->mm.unbound_list);
2495 spin_unlock(&i915->mm.obj_lock);
Chris Wilson03ac84f2016-10-28 13:58:36 +01002496}
2497
2498static int ____i915_gem_object_get_pages(struct drm_i915_gem_object *obj)
2499{
Matthew Auldb91b09e2017-10-06 23:18:17 +01002500 int err;
Chris Wilson03ac84f2016-10-28 13:58:36 +01002501
2502 if (unlikely(obj->mm.madv != I915_MADV_WILLNEED)) {
2503 DRM_DEBUG("Attempting to obtain a purgeable object\n");
2504 return -EFAULT;
2505 }
2506
Matthew Auldb91b09e2017-10-06 23:18:17 +01002507 err = obj->ops->get_pages(obj);
Matthew Auldb65a9b92017-12-18 10:38:55 +00002508 GEM_BUG_ON(!err && !i915_gem_object_has_pages(obj));
Chris Wilson03ac84f2016-10-28 13:58:36 +01002509
Matthew Auldb91b09e2017-10-06 23:18:17 +01002510 return err;
Eric Anholt673a3942008-07-30 12:06:12 -07002511}
2512
Chris Wilson37e680a2012-06-07 15:38:42 +01002513/* Ensure that the associated pages are gathered from the backing storage
Chris Wilson1233e2d2016-10-28 13:58:37 +01002514 * and pinned into our object. i915_gem_object_pin_pages() may be called
Chris Wilson37e680a2012-06-07 15:38:42 +01002515 * multiple times before they are released by a single call to
Chris Wilson1233e2d2016-10-28 13:58:37 +01002516 * i915_gem_object_unpin_pages() - once the pages are no longer referenced
Chris Wilson37e680a2012-06-07 15:38:42 +01002517 * either as a result of memory pressure (reaping pages under the shrinker)
2518 * or as the object is itself released.
2519 */
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002520int __i915_gem_object_get_pages(struct drm_i915_gem_object *obj)
Chris Wilson37e680a2012-06-07 15:38:42 +01002521{
Chris Wilson03ac84f2016-10-28 13:58:36 +01002522 int err;
Chris Wilson37e680a2012-06-07 15:38:42 +01002523
Chris Wilson1233e2d2016-10-28 13:58:37 +01002524 err = mutex_lock_interruptible(&obj->mm.lock);
2525 if (err)
2526 return err;
Chris Wilson4c7d62c2016-10-28 13:58:32 +01002527
Chris Wilsonf1fa4f42017-10-13 21:26:13 +01002528 if (unlikely(!i915_gem_object_has_pages(obj))) {
Chris Wilson88c880b2017-09-06 14:52:20 +01002529 GEM_BUG_ON(i915_gem_object_has_pinned_pages(obj));
2530
Chris Wilson2c3a3f42016-11-04 10:30:01 +00002531 err = ____i915_gem_object_get_pages(obj);
2532 if (err)
2533 goto unlock;
2534
2535 smp_mb__before_atomic();
Chris Wilson1233e2d2016-10-28 13:58:37 +01002536 }
Chris Wilson2c3a3f42016-11-04 10:30:01 +00002537 atomic_inc(&obj->mm.pages_pin_count);
Chris Wilson43e28f02013-01-08 10:53:09 +00002538
Chris Wilson1233e2d2016-10-28 13:58:37 +01002539unlock:
2540 mutex_unlock(&obj->mm.lock);
Chris Wilson03ac84f2016-10-28 13:58:36 +01002541 return err;
Eric Anholt673a3942008-07-30 12:06:12 -07002542}
2543
Dave Gordondd6034c2016-05-20 11:54:04 +01002544/* The 'mapping' part of i915_gem_object_pin_map() below */
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002545static void *i915_gem_object_map(const struct drm_i915_gem_object *obj,
2546 enum i915_map_type type)
Dave Gordondd6034c2016-05-20 11:54:04 +01002547{
2548 unsigned long n_pages = obj->base.size >> PAGE_SHIFT;
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002549 struct sg_table *sgt = obj->mm.pages;
Dave Gordon85d12252016-05-20 11:54:06 +01002550 struct sgt_iter sgt_iter;
2551 struct page *page;
Dave Gordonb338fa42016-05-20 11:54:05 +01002552 struct page *stack_pages[32];
2553 struct page **pages = stack_pages;
Dave Gordondd6034c2016-05-20 11:54:04 +01002554 unsigned long i = 0;
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002555 pgprot_t pgprot;
Dave Gordondd6034c2016-05-20 11:54:04 +01002556 void *addr;
2557
2558 /* A single page can always be kmapped */
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002559 if (n_pages == 1 && type == I915_MAP_WB)
Dave Gordondd6034c2016-05-20 11:54:04 +01002560 return kmap(sg_page(sgt->sgl));
2561
Dave Gordonb338fa42016-05-20 11:54:05 +01002562 if (n_pages > ARRAY_SIZE(stack_pages)) {
2563 /* Too big for stack -- allocate temporary array instead */
Michal Hocko0ee931c2017-09-13 16:28:29 -07002564 pages = kvmalloc_array(n_pages, sizeof(*pages), GFP_KERNEL);
Dave Gordonb338fa42016-05-20 11:54:05 +01002565 if (!pages)
2566 return NULL;
2567 }
Dave Gordondd6034c2016-05-20 11:54:04 +01002568
Dave Gordon85d12252016-05-20 11:54:06 +01002569 for_each_sgt_page(page, sgt_iter, sgt)
2570 pages[i++] = page;
Dave Gordondd6034c2016-05-20 11:54:04 +01002571
2572 /* Check that we have the expected number of pages */
2573 GEM_BUG_ON(i != n_pages);
2574
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002575 switch (type) {
Chris Wilsona575c672017-08-28 11:46:31 +01002576 default:
2577 MISSING_CASE(type);
2578 /* fallthrough to use PAGE_KERNEL anyway */
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002579 case I915_MAP_WB:
2580 pgprot = PAGE_KERNEL;
2581 break;
2582 case I915_MAP_WC:
2583 pgprot = pgprot_writecombine(PAGE_KERNEL_IO);
2584 break;
2585 }
2586 addr = vmap(pages, n_pages, 0, pgprot);
Dave Gordondd6034c2016-05-20 11:54:04 +01002587
Dave Gordonb338fa42016-05-20 11:54:05 +01002588 if (pages != stack_pages)
Michal Hocko20981052017-05-17 14:23:12 +02002589 kvfree(pages);
Dave Gordondd6034c2016-05-20 11:54:04 +01002590
2591 return addr;
2592}
2593
2594/* get, pin, and map the pages of the object into kernel space */
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002595void *i915_gem_object_pin_map(struct drm_i915_gem_object *obj,
2596 enum i915_map_type type)
Chris Wilson0a798eb2016-04-08 12:11:11 +01002597{
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002598 enum i915_map_type has_type;
2599 bool pinned;
2600 void *ptr;
Chris Wilson0a798eb2016-04-08 12:11:11 +01002601 int ret;
2602
Tina Zhanga03f3952017-11-14 10:25:13 +00002603 if (unlikely(!i915_gem_object_has_struct_page(obj)))
2604 return ERR_PTR(-ENXIO);
Chris Wilson0a798eb2016-04-08 12:11:11 +01002605
Chris Wilson1233e2d2016-10-28 13:58:37 +01002606 ret = mutex_lock_interruptible(&obj->mm.lock);
Chris Wilson0a798eb2016-04-08 12:11:11 +01002607 if (ret)
2608 return ERR_PTR(ret);
2609
Chris Wilsona575c672017-08-28 11:46:31 +01002610 pinned = !(type & I915_MAP_OVERRIDE);
2611 type &= ~I915_MAP_OVERRIDE;
2612
Chris Wilson1233e2d2016-10-28 13:58:37 +01002613 if (!atomic_inc_not_zero(&obj->mm.pages_pin_count)) {
Chris Wilsonf1fa4f42017-10-13 21:26:13 +01002614 if (unlikely(!i915_gem_object_has_pages(obj))) {
Chris Wilson88c880b2017-09-06 14:52:20 +01002615 GEM_BUG_ON(i915_gem_object_has_pinned_pages(obj));
2616
Chris Wilson2c3a3f42016-11-04 10:30:01 +00002617 ret = ____i915_gem_object_get_pages(obj);
2618 if (ret)
2619 goto err_unlock;
Chris Wilson1233e2d2016-10-28 13:58:37 +01002620
Chris Wilson2c3a3f42016-11-04 10:30:01 +00002621 smp_mb__before_atomic();
2622 }
2623 atomic_inc(&obj->mm.pages_pin_count);
Chris Wilson1233e2d2016-10-28 13:58:37 +01002624 pinned = false;
2625 }
Chris Wilsonf1fa4f42017-10-13 21:26:13 +01002626 GEM_BUG_ON(!i915_gem_object_has_pages(obj));
Chris Wilson0a798eb2016-04-08 12:11:11 +01002627
Chris Wilson0ce81782017-05-17 13:09:59 +01002628 ptr = page_unpack_bits(obj->mm.mapping, &has_type);
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002629 if (ptr && has_type != type) {
2630 if (pinned) {
2631 ret = -EBUSY;
Chris Wilson1233e2d2016-10-28 13:58:37 +01002632 goto err_unpin;
Chris Wilson0a798eb2016-04-08 12:11:11 +01002633 }
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002634
2635 if (is_vmalloc_addr(ptr))
2636 vunmap(ptr);
2637 else
2638 kunmap(kmap_to_page(ptr));
2639
Chris Wilsona4f5ea62016-10-28 13:58:35 +01002640 ptr = obj->mm.mapping = NULL;
Chris Wilson0a798eb2016-04-08 12:11:11 +01002641 }
2642
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002643 if (!ptr) {
2644 ptr = i915_gem_object_map(obj, type);
2645 if (!ptr) {
2646 ret = -ENOMEM;
Chris Wilson1233e2d2016-10-28 13:58:37 +01002647 goto err_unpin;
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002648 }
2649
Chris Wilson0ce81782017-05-17 13:09:59 +01002650 obj->mm.mapping = page_pack_bits(ptr, type);
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002651 }
2652
Chris Wilson1233e2d2016-10-28 13:58:37 +01002653out_unlock:
2654 mutex_unlock(&obj->mm.lock);
Chris Wilsond31d7cb2016-08-12 12:39:58 +01002655 return ptr;
2656
Chris Wilson1233e2d2016-10-28 13:58:37 +01002657err_unpin:
2658 atomic_dec(&obj->mm.pages_pin_count);
2659err_unlock:
2660 ptr = ERR_PTR(ret);
2661 goto out_unlock;
Chris Wilson0a798eb2016-04-08 12:11:11 +01002662}
2663
Chris Wilsona679f582019-03-21 16:19:07 +00002664void __i915_gem_object_flush_map(struct drm_i915_gem_object *obj,
2665 unsigned long offset,
2666 unsigned long size)
2667{
2668 enum i915_map_type has_type;
2669 void *ptr;
2670
2671 GEM_BUG_ON(!i915_gem_object_has_pinned_pages(obj));
2672 GEM_BUG_ON(range_overflows_t(typeof(obj->base.size),
2673 offset, size, obj->base.size));
2674
2675 obj->mm.dirty = true;
2676
2677 if (obj->cache_coherent & I915_BO_CACHE_COHERENT_FOR_WRITE)
2678 return;
2679
2680 ptr = page_unpack_bits(obj->mm.mapping, &has_type);
2681 if (has_type == I915_MAP_WC)
2682 return;
2683
2684 drm_clflush_virt_range(ptr + offset, size);
2685 if (size == obj->base.size) {
2686 obj->write_domain &= ~I915_GEM_DOMAIN_CPU;
2687 obj->cache_dirty = false;
2688 }
2689}
2690
Chris Wilson7c55e2c2017-03-07 12:03:38 +00002691static int
2692i915_gem_object_pwrite_gtt(struct drm_i915_gem_object *obj,
2693 const struct drm_i915_gem_pwrite *arg)
2694{
2695 struct address_space *mapping = obj->base.filp->f_mapping;
2696 char __user *user_data = u64_to_user_ptr(arg->data_ptr);
2697 u64 remain, offset;
2698 unsigned int pg;
2699
Chris Wilsonb01720b2019-04-01 14:39:09 +01002700 /* Caller already validated user args */
2701 GEM_BUG_ON(!access_ok(user_data, arg->size));
2702
2703 /*
2704 * Before we instantiate/pin the backing store for our use, we
Chris Wilson7c55e2c2017-03-07 12:03:38 +00002705 * can prepopulate the shmemfs filp efficiently using a write into
2706 * the pagecache. We avoid the penalty of instantiating all the
2707 * pages, important if the user is just writing to a few and never
2708 * uses the object on the GPU, and using a direct write into shmemfs
2709 * allows it to avoid the cost of retrieving a page (either swapin
2710 * or clearing-before-use) before it is overwritten.
2711 */
Chris Wilsonf1fa4f42017-10-13 21:26:13 +01002712 if (i915_gem_object_has_pages(obj))
Chris Wilson7c55e2c2017-03-07 12:03:38 +00002713 return -ENODEV;
2714
Chris Wilsona6d65e42017-10-16 21:27:32 +01002715 if (obj->mm.madv != I915_MADV_WILLNEED)
2716 return -EFAULT;
2717
Chris Wilsonb01720b2019-04-01 14:39:09 +01002718 /*
2719 * Before the pages are instantiated the object is treated as being
Chris Wilson7c55e2c2017-03-07 12:03:38 +00002720 * in the CPU domain. The pages will be clflushed as required before
2721 * use, and we can freely write into the pages directly. If userspace
2722 * races pwrite with any other operation; corruption will ensue -
2723 * that is userspace's prerogative!
2724 */
2725
2726 remain = arg->size;
2727 offset = arg->offset;
2728 pg = offset_in_page(offset);
2729
2730 do {
2731 unsigned int len, unwritten;
2732 struct page *page;
2733 void *data, *vaddr;
2734 int err;
Chris Wilsonb01720b2019-04-01 14:39:09 +01002735 char c;
Chris Wilson7c55e2c2017-03-07 12:03:38 +00002736
2737 len = PAGE_SIZE - pg;
2738 if (len > remain)
2739 len = remain;
2740
Chris Wilsonb01720b2019-04-01 14:39:09 +01002741 /* Prefault the user page to reduce potential recursion */
2742 err = __get_user(c, user_data);
2743 if (err)
2744 return err;
2745
2746 err = __get_user(c, user_data + len - 1);
2747 if (err)
2748 return err;
2749
Chris Wilson7c55e2c2017-03-07 12:03:38 +00002750 err = pagecache_write_begin(obj->base.filp, mapping,
2751 offset, len, 0,
2752 &page, &data);
2753 if (err < 0)
2754 return err;
2755
Chris Wilsonb01720b2019-04-01 14:39:09 +01002756 vaddr = kmap_atomic(page);
2757 unwritten = __copy_from_user_inatomic(vaddr + pg,
2758 user_data,
2759 len);
2760 kunmap_atomic(vaddr);
Chris Wilson7c55e2c2017-03-07 12:03:38 +00002761
2762 err = pagecache_write_end(obj->base.filp, mapping,
2763 offset, len, len - unwritten,
2764 page, data);
2765 if (err < 0)
2766 return err;
2767
Chris Wilsonb01720b2019-04-01 14:39:09 +01002768 /* We don't handle -EFAULT, leave it to the caller to check */
Chris Wilson7c55e2c2017-03-07 12:03:38 +00002769 if (unwritten)
Chris Wilsonb01720b2019-04-01 14:39:09 +01002770 return -ENODEV;
Chris Wilson7c55e2c2017-03-07 12:03:38 +00002771
2772 remain -= len;
2773 user_data += len;
2774 offset += len;
2775 pg = 0;
2776 } while (remain);
2777
2778 return 0;
2779}
2780
Chris Wilsonb1f788c2016-08-04 07:52:45 +01002781void i915_gem_close_object(struct drm_gem_object *gem, struct drm_file *file)
2782{
Chris Wilsond1b48c12017-08-16 09:52:08 +01002783 struct drm_i915_private *i915 = to_i915(gem->dev);
Chris Wilsonb1f788c2016-08-04 07:52:45 +01002784 struct drm_i915_gem_object *obj = to_intel_bo(gem);
2785 struct drm_i915_file_private *fpriv = file->driver_priv;
Chris Wilsond1b48c12017-08-16 09:52:08 +01002786 struct i915_lut_handle *lut, *ln;
Chris Wilsonb1f788c2016-08-04 07:52:45 +01002787
Chris Wilsond1b48c12017-08-16 09:52:08 +01002788 mutex_lock(&i915->drm.struct_mutex);
2789
2790 list_for_each_entry_safe(lut, ln, &obj->lut_list, obj_link) {
2791 struct i915_gem_context *ctx = lut->ctx;
2792 struct i915_vma *vma;
2793
Chris Wilson432295d2017-08-22 12:05:15 +01002794 GEM_BUG_ON(ctx->file_priv == ERR_PTR(-EBADF));
Chris Wilsond1b48c12017-08-16 09:52:08 +01002795 if (ctx->file_priv != fpriv)
2796 continue;
2797
2798 vma = radix_tree_delete(&ctx->handles_vma, lut->handle);
Chris Wilson3ffff012017-08-22 12:05:17 +01002799 GEM_BUG_ON(vma->obj != obj);
2800
2801 /* We allow the process to have multiple handles to the same
2802 * vma, in the same fd namespace, by virtue of flink/open.
2803 */
2804 GEM_BUG_ON(!vma->open_count);
2805 if (!--vma->open_count && !i915_vma_is_ggtt(vma))
Chris Wilsonb1f788c2016-08-04 07:52:45 +01002806 i915_vma_close(vma);
Chris Wilsonf8a7fde2016-10-28 13:58:29 +01002807
Chris Wilsond1b48c12017-08-16 09:52:08 +01002808 list_del(&lut->obj_link);
2809 list_del(&lut->ctx_link);
Chris Wilson4ff4b442017-06-16 15:05:16 +01002810
Chris Wilson13f1bfd2019-02-28 10:20:34 +00002811 i915_lut_handle_free(lut);
Chris Wilsond1b48c12017-08-16 09:52:08 +01002812 __i915_gem_object_release_unless_active(obj);
Chris Wilsonf8a7fde2016-10-28 13:58:29 +01002813 }
Chris Wilsond1b48c12017-08-16 09:52:08 +01002814
2815 mutex_unlock(&i915->drm.struct_mutex);
Chris Wilsonb1f788c2016-08-04 07:52:45 +01002816}
2817
Chris Wilsone95433c2016-10-28 13:58:27 +01002818static unsigned long to_wait_timeout(s64 timeout_ns)
2819{
2820 if (timeout_ns < 0)
2821 return MAX_SCHEDULE_TIMEOUT;
2822
2823 if (timeout_ns == 0)
2824 return 0;
2825
2826 return nsecs_to_jiffies_timeout(timeout_ns);
2827}
2828
Ben Widawsky5816d642012-04-11 11:18:19 -07002829/**
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002830 * i915_gem_wait_ioctl - implements DRM_IOCTL_I915_GEM_WAIT
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01002831 * @dev: drm device pointer
2832 * @data: ioctl data blob
2833 * @file: drm file pointer
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002834 *
2835 * Returns 0 if successful, else an error is returned with the remaining time in
2836 * the timeout parameter.
2837 * -ETIME: object is still busy after timeout
2838 * -ERESTARTSYS: signal interrupted the wait
2839 * -ENONENT: object doesn't exist
2840 * Also possible, but rare:
Chris Wilsonb8050142017-08-11 11:57:31 +01002841 * -EAGAIN: incomplete, restart syscall
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002842 * -ENOMEM: damn
2843 * -ENODEV: Internal IRQ fail
2844 * -E?: The add request failed
2845 *
2846 * The wait ioctl with a timeout of 0 reimplements the busy ioctl. With any
2847 * non-zero timeout parameter the wait ioctl will wait for the given number of
2848 * nanoseconds on an object becoming unbusy. Since the wait itself does so
2849 * without holding struct_mutex the object may become re-busied before this
2850 * function completes. A similar but shorter * race condition exists in the busy
2851 * ioctl
2852 */
2853int
2854i915_gem_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
2855{
2856 struct drm_i915_gem_wait *args = data;
2857 struct drm_i915_gem_object *obj;
Chris Wilsone95433c2016-10-28 13:58:27 +01002858 ktime_t start;
2859 long ret;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002860
Daniel Vetter11b5d512014-09-29 15:31:26 +02002861 if (args->flags != 0)
2862 return -EINVAL;
2863
Chris Wilson03ac0642016-07-20 13:31:51 +01002864 obj = i915_gem_object_lookup(file, args->bo_handle);
Chris Wilson033d5492016-08-05 10:14:17 +01002865 if (!obj)
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002866 return -ENOENT;
Chris Wilson033d5492016-08-05 10:14:17 +01002867
Chris Wilsone95433c2016-10-28 13:58:27 +01002868 start = ktime_get();
2869
2870 ret = i915_gem_object_wait(obj,
Chris Wilsone9eaf822018-10-01 15:47:55 +01002871 I915_WAIT_INTERRUPTIBLE |
2872 I915_WAIT_PRIORITY |
2873 I915_WAIT_ALL,
Chris Wilson62eb3c22019-02-13 09:25:04 +00002874 to_wait_timeout(args->timeout_ns));
Chris Wilsone95433c2016-10-28 13:58:27 +01002875
2876 if (args->timeout_ns > 0) {
2877 args->timeout_ns -= ktime_to_ns(ktime_sub(ktime_get(), start));
2878 if (args->timeout_ns < 0)
2879 args->timeout_ns = 0;
Chris Wilsonc1d20612017-02-16 12:54:41 +00002880
2881 /*
2882 * Apparently ktime isn't accurate enough and occasionally has a
2883 * bit of mismatch in the jiffies<->nsecs<->ktime loop. So patch
2884 * things up to make the test happy. We allow up to 1 jiffy.
2885 *
2886 * This is a regression from the timespec->ktime conversion.
2887 */
2888 if (ret == -ETIME && !nsecs_to_jiffies(args->timeout_ns))
2889 args->timeout_ns = 0;
Chris Wilsonb8050142017-08-11 11:57:31 +01002890
2891 /* Asked to wait beyond the jiffie/scheduler precision? */
2892 if (ret == -ETIME && args->timeout_ns)
2893 ret = -EAGAIN;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002894 }
2895
Chris Wilsonf0cd5182016-10-28 13:58:43 +01002896 i915_gem_object_put(obj);
John Harrisonff865882014-11-24 18:49:28 +00002897 return ret;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002898}
2899
Chris Wilson25112b62017-03-30 15:50:39 +01002900static int wait_for_engines(struct drm_i915_private *i915)
2901{
Chris Wilsonee42c002017-12-11 19:41:34 +00002902 if (wait_for(intel_engines_are_idle(i915), I915_IDLE_ENGINES_TIMEOUT)) {
Chris Wilson59e4b192017-12-11 19:41:35 +00002903 dev_err(i915->drm.dev,
2904 "Failed to idle engines, declaring wedged!\n");
Chris Wilson629820f2018-03-09 10:11:14 +00002905 GEM_TRACE_DUMP();
Chris Wilsoncad99462017-08-26 12:09:33 +01002906 i915_gem_set_wedged(i915);
2907 return -EIO;
Chris Wilson25112b62017-03-30 15:50:39 +01002908 }
2909
2910 return 0;
2911}
2912
Chris Wilson1e345562019-01-28 10:23:56 +00002913static long
2914wait_for_timelines(struct drm_i915_private *i915,
2915 unsigned int flags, long timeout)
2916{
2917 struct i915_gt_timelines *gt = &i915->gt.timelines;
2918 struct i915_timeline *tl;
2919
Chris Wilson1e345562019-01-28 10:23:56 +00002920 mutex_lock(&gt->mutex);
Chris Wilson9407d3b2019-01-28 18:18:12 +00002921 list_for_each_entry(tl, &gt->active_list, link) {
Chris Wilson1e345562019-01-28 10:23:56 +00002922 struct i915_request *rq;
2923
Chris Wilson21950ee2019-02-05 13:00:05 +00002924 rq = i915_active_request_get_unlocked(&tl->last_request);
Chris Wilson1e345562019-01-28 10:23:56 +00002925 if (!rq)
2926 continue;
2927
2928 mutex_unlock(&gt->mutex);
2929
2930 /*
2931 * "Race-to-idle".
2932 *
2933 * Switching to the kernel context is often used a synchronous
2934 * step prior to idling, e.g. in suspend for flushing all
2935 * current operations to memory before sleeping. These we
2936 * want to complete as quickly as possible to avoid prolonged
2937 * stalls, so allow the gpu to boost to maximum clocks.
2938 */
2939 if (flags & I915_WAIT_FOR_IDLE_BOOST)
Chris Wilson62eb3c22019-02-13 09:25:04 +00002940 gen6_rps_boost(rq);
Chris Wilson1e345562019-01-28 10:23:56 +00002941
2942 timeout = i915_request_wait(rq, flags, timeout);
2943 i915_request_put(rq);
2944 if (timeout < 0)
2945 return timeout;
2946
2947 /* restart after reacquiring the lock */
2948 mutex_lock(&gt->mutex);
Chris Wilson9407d3b2019-01-28 18:18:12 +00002949 tl = list_entry(&gt->active_list, typeof(*tl), link);
Chris Wilson1e345562019-01-28 10:23:56 +00002950 }
2951 mutex_unlock(&gt->mutex);
2952
2953 return timeout;
2954}
2955
Chris Wilsonec625fb2018-07-09 13:20:42 +01002956int i915_gem_wait_for_idle(struct drm_i915_private *i915,
2957 unsigned int flags, long timeout)
Chris Wilson73cb9702016-10-28 13:58:46 +01002958{
Chris Wilson79ffac852019-04-24 21:07:17 +01002959 GEM_TRACE("flags=%x (%s), timeout=%ld%s, awake?=%s\n",
Chris Wilsonec625fb2018-07-09 13:20:42 +01002960 flags, flags & I915_WAIT_LOCKED ? "locked" : "unlocked",
Chris Wilson79ffac852019-04-24 21:07:17 +01002961 timeout, timeout == MAX_SCHEDULE_TIMEOUT ? " (forever)" : "",
2962 yesno(i915->gt.awake));
Chris Wilson09a4c022018-05-24 09:11:35 +01002963
Chris Wilson863e9fd2017-05-30 13:13:32 +01002964 /* If the device is asleep, we have no requests outstanding */
2965 if (!READ_ONCE(i915->gt.awake))
2966 return 0;
2967
Chris Wilson1e345562019-01-28 10:23:56 +00002968 timeout = wait_for_timelines(i915, flags, timeout);
2969 if (timeout < 0)
2970 return timeout;
2971
Chris Wilson9caa34a2016-11-11 14:58:08 +00002972 if (flags & I915_WAIT_LOCKED) {
Chris Wilsona89d1f92018-05-02 17:38:39 +01002973 int err;
Chris Wilson9caa34a2016-11-11 14:58:08 +00002974
2975 lockdep_assert_held(&i915->drm.struct_mutex);
2976
Chris Wilsona61b47f2018-06-27 12:53:34 +01002977 err = wait_for_engines(i915);
2978 if (err)
2979 return err;
2980
Chris Wilsone61e0f52018-02-21 09:56:36 +00002981 i915_retire_requests(i915);
Chris Wilsona89d1f92018-05-02 17:38:39 +01002982 }
Chris Wilsona61b47f2018-06-27 12:53:34 +01002983
2984 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002985}
2986
Chris Wilson5a97bcc2017-02-22 11:40:46 +00002987static void __i915_gem_object_flush_for_display(struct drm_i915_gem_object *obj)
2988{
Chris Wilsone27ab732017-06-15 13:38:49 +01002989 /*
2990 * We manually flush the CPU domain so that we can override and
2991 * force the flush for the display, and perform it asyncrhonously.
2992 */
2993 flush_write_domain(obj, ~I915_GEM_DOMAIN_CPU);
2994 if (obj->cache_dirty)
2995 i915_gem_clflush_object(obj, I915_CLFLUSH_FORCE);
Christian Königc0a51fd2018-02-16 13:43:38 +01002996 obj->write_domain = 0;
Chris Wilson5a97bcc2017-02-22 11:40:46 +00002997}
2998
2999void i915_gem_object_flush_if_display(struct drm_i915_gem_object *obj)
3000{
Chris Wilsonbd3d2252017-10-13 21:26:14 +01003001 if (!READ_ONCE(obj->pin_global))
Chris Wilson5a97bcc2017-02-22 11:40:46 +00003002 return;
3003
3004 mutex_lock(&obj->base.dev->struct_mutex);
3005 __i915_gem_object_flush_for_display(obj);
3006 mutex_unlock(&obj->base.dev->struct_mutex);
3007}
3008
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003009/**
Chris Wilsone22d8e32017-04-12 12:01:11 +01003010 * Moves a single object to the WC read, and possibly write domain.
3011 * @obj: object to act on
3012 * @write: ask for write access or read only
3013 *
3014 * This function returns when the move is complete, including waiting on
3015 * flushes to occur.
3016 */
3017int
3018i915_gem_object_set_to_wc_domain(struct drm_i915_gem_object *obj, bool write)
3019{
3020 int ret;
3021
3022 lockdep_assert_held(&obj->base.dev->struct_mutex);
3023
3024 ret = i915_gem_object_wait(obj,
3025 I915_WAIT_INTERRUPTIBLE |
3026 I915_WAIT_LOCKED |
3027 (write ? I915_WAIT_ALL : 0),
Chris Wilson62eb3c22019-02-13 09:25:04 +00003028 MAX_SCHEDULE_TIMEOUT);
Chris Wilsone22d8e32017-04-12 12:01:11 +01003029 if (ret)
3030 return ret;
3031
Christian Königc0a51fd2018-02-16 13:43:38 +01003032 if (obj->write_domain == I915_GEM_DOMAIN_WC)
Chris Wilsone22d8e32017-04-12 12:01:11 +01003033 return 0;
3034
3035 /* Flush and acquire obj->pages so that we are coherent through
3036 * direct access in memory with previous cached writes through
3037 * shmemfs and that our cache domain tracking remains valid.
3038 * For example, if the obj->filp was moved to swap without us
3039 * being notified and releasing the pages, we would mistakenly
3040 * continue to assume that the obj remained out of the CPU cached
3041 * domain.
3042 */
3043 ret = i915_gem_object_pin_pages(obj);
3044 if (ret)
3045 return ret;
3046
3047 flush_write_domain(obj, ~I915_GEM_DOMAIN_WC);
3048
3049 /* Serialise direct access to this object with the barriers for
3050 * coherent writes from the GPU, by effectively invalidating the
3051 * WC domain upon first access.
3052 */
Christian Königc0a51fd2018-02-16 13:43:38 +01003053 if ((obj->read_domains & I915_GEM_DOMAIN_WC) == 0)
Chris Wilsone22d8e32017-04-12 12:01:11 +01003054 mb();
3055
3056 /* It should now be out of any other write domains, and we can update
3057 * the domain values for our changes.
3058 */
Christian Königc0a51fd2018-02-16 13:43:38 +01003059 GEM_BUG_ON((obj->write_domain & ~I915_GEM_DOMAIN_WC) != 0);
3060 obj->read_domains |= I915_GEM_DOMAIN_WC;
Chris Wilsone22d8e32017-04-12 12:01:11 +01003061 if (write) {
Christian Königc0a51fd2018-02-16 13:43:38 +01003062 obj->read_domains = I915_GEM_DOMAIN_WC;
3063 obj->write_domain = I915_GEM_DOMAIN_WC;
Chris Wilsone22d8e32017-04-12 12:01:11 +01003064 obj->mm.dirty = true;
3065 }
3066
3067 i915_gem_object_unpin_pages(obj);
3068 return 0;
3069}
3070
3071/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003072 * Moves a single object to the GTT read, and possibly write domain.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01003073 * @obj: object to act on
3074 * @write: ask for write access or read only
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003075 *
3076 * This function returns when the move is complete, including waiting on
3077 * flushes to occur.
3078 */
Jesse Barnes79e53942008-11-07 14:24:08 -08003079int
Chris Wilson20217462010-11-23 15:26:33 +00003080i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003081{
Eric Anholte47c68e2008-11-14 13:35:19 -08003082 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003083
Chris Wilsone95433c2016-10-28 13:58:27 +01003084 lockdep_assert_held(&obj->base.dev->struct_mutex);
Chris Wilson4c7d62c2016-10-28 13:58:32 +01003085
Chris Wilsone95433c2016-10-28 13:58:27 +01003086 ret = i915_gem_object_wait(obj,
3087 I915_WAIT_INTERRUPTIBLE |
3088 I915_WAIT_LOCKED |
3089 (write ? I915_WAIT_ALL : 0),
Chris Wilson62eb3c22019-02-13 09:25:04 +00003090 MAX_SCHEDULE_TIMEOUT);
Chris Wilson88241782011-01-07 17:09:48 +00003091 if (ret)
3092 return ret;
3093
Christian Königc0a51fd2018-02-16 13:43:38 +01003094 if (obj->write_domain == I915_GEM_DOMAIN_GTT)
Chris Wilsonc13d87e2016-07-20 09:21:15 +01003095 return 0;
3096
Chris Wilson43566de2015-01-02 16:29:29 +05303097 /* Flush and acquire obj->pages so that we are coherent through
3098 * direct access in memory with previous cached writes through
3099 * shmemfs and that our cache domain tracking remains valid.
3100 * For example, if the obj->filp was moved to swap without us
3101 * being notified and releasing the pages, we would mistakenly
3102 * continue to assume that the obj remained out of the CPU cached
3103 * domain.
3104 */
Chris Wilsona4f5ea62016-10-28 13:58:35 +01003105 ret = i915_gem_object_pin_pages(obj);
Chris Wilson43566de2015-01-02 16:29:29 +05303106 if (ret)
3107 return ret;
3108
Chris Wilsonef749212017-04-12 12:01:10 +01003109 flush_write_domain(obj, ~I915_GEM_DOMAIN_GTT);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003110
Chris Wilsond0a57782012-10-09 19:24:37 +01003111 /* Serialise direct access to this object with the barriers for
3112 * coherent writes from the GPU, by effectively invalidating the
3113 * GTT domain upon first access.
3114 */
Christian Königc0a51fd2018-02-16 13:43:38 +01003115 if ((obj->read_domains & I915_GEM_DOMAIN_GTT) == 0)
Chris Wilsond0a57782012-10-09 19:24:37 +01003116 mb();
3117
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003118 /* It should now be out of any other write domains, and we can update
3119 * the domain values for our changes.
3120 */
Christian Königc0a51fd2018-02-16 13:43:38 +01003121 GEM_BUG_ON((obj->write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
3122 obj->read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08003123 if (write) {
Christian Königc0a51fd2018-02-16 13:43:38 +01003124 obj->read_domains = I915_GEM_DOMAIN_GTT;
3125 obj->write_domain = I915_GEM_DOMAIN_GTT;
Chris Wilsona4f5ea62016-10-28 13:58:35 +01003126 obj->mm.dirty = true;
Eric Anholte47c68e2008-11-14 13:35:19 -08003127 }
3128
Chris Wilsona4f5ea62016-10-28 13:58:35 +01003129 i915_gem_object_unpin_pages(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08003130 return 0;
3131}
3132
Chris Wilsonef55f922015-10-09 14:11:27 +01003133/**
3134 * Changes the cache-level of an object across all VMA.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01003135 * @obj: object to act on
3136 * @cache_level: new cache level to set for the object
Chris Wilsonef55f922015-10-09 14:11:27 +01003137 *
3138 * After this function returns, the object will be in the new cache-level
3139 * across all GTT and the contents of the backing storage will be coherent,
3140 * with respect to the new cache-level. In order to keep the backing storage
3141 * coherent for all users, we only allow a single cache level to be set
3142 * globally on the object and prevent it from being changed whilst the
3143 * hardware is reading from the object. That is if the object is currently
3144 * on the scanout it will be set to uncached (or equivalent display
3145 * cache coherency) and all non-MOCS GPU access will also be uncached so
3146 * that all direct access to the scanout remains coherent.
3147 */
Chris Wilsone4ffd172011-04-04 09:44:39 +01003148int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
3149 enum i915_cache_level cache_level)
3150{
Chris Wilsonaa653a62016-08-04 07:52:27 +01003151 struct i915_vma *vma;
Chris Wilsona6a7cc42016-11-18 21:17:46 +00003152 int ret;
Chris Wilsone4ffd172011-04-04 09:44:39 +01003153
Chris Wilson4c7d62c2016-10-28 13:58:32 +01003154 lockdep_assert_held(&obj->base.dev->struct_mutex);
3155
Chris Wilsone4ffd172011-04-04 09:44:39 +01003156 if (obj->cache_level == cache_level)
Chris Wilsona6a7cc42016-11-18 21:17:46 +00003157 return 0;
Chris Wilsone4ffd172011-04-04 09:44:39 +01003158
Chris Wilsonef55f922015-10-09 14:11:27 +01003159 /* Inspect the list of currently bound VMA and unbind any that would
3160 * be invalid given the new cache-level. This is principally to
3161 * catch the issue of the CS prefetch crossing page boundaries and
3162 * reading an invalid PTE on older architectures.
3163 */
Chris Wilsonaa653a62016-08-04 07:52:27 +01003164restart:
Chris Wilson528cbd12019-01-28 10:23:54 +00003165 list_for_each_entry(vma, &obj->vma.list, obj_link) {
Chris Wilsonef55f922015-10-09 14:11:27 +01003166 if (!drm_mm_node_allocated(&vma->node))
3167 continue;
3168
Chris Wilson20dfbde2016-08-04 16:32:30 +01003169 if (i915_vma_is_pinned(vma)) {
Chris Wilsonef55f922015-10-09 14:11:27 +01003170 DRM_DEBUG("can not change the cache level of pinned objects\n");
3171 return -EBUSY;
3172 }
3173
Chris Wilson010e3e62017-12-06 12:49:13 +00003174 if (!i915_vma_is_closed(vma) &&
3175 i915_gem_valid_gtt_space(vma, cache_level))
Chris Wilsonaa653a62016-08-04 07:52:27 +01003176 continue;
3177
3178 ret = i915_vma_unbind(vma);
3179 if (ret)
3180 return ret;
3181
3182 /* As unbinding may affect other elements in the
3183 * obj->vma_list (due to side-effects from retiring
3184 * an active vma), play safe and restart the iterator.
3185 */
3186 goto restart;
Chris Wilson42d6ab42012-07-26 11:49:32 +01003187 }
3188
Chris Wilsonef55f922015-10-09 14:11:27 +01003189 /* We can reuse the existing drm_mm nodes but need to change the
3190 * cache-level on the PTE. We could simply unbind them all and
3191 * rebind with the correct cache-level on next use. However since
3192 * we already have a valid slot, dma mapping, pages etc, we may as
3193 * rewrite the PTE in the belief that doing so tramples upon less
3194 * state and so involves less work.
3195 */
Chris Wilson15717de2016-08-04 07:52:26 +01003196 if (obj->bind_count) {
Chris Wilsonef55f922015-10-09 14:11:27 +01003197 /* Before we change the PTE, the GPU must not be accessing it.
3198 * If we wait upon the object, we know that all the bound
3199 * VMA are no longer active.
3200 */
Chris Wilsone95433c2016-10-28 13:58:27 +01003201 ret = i915_gem_object_wait(obj,
3202 I915_WAIT_INTERRUPTIBLE |
3203 I915_WAIT_LOCKED |
3204 I915_WAIT_ALL,
Chris Wilson62eb3c22019-02-13 09:25:04 +00003205 MAX_SCHEDULE_TIMEOUT);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003206 if (ret)
3207 return ret;
3208
Tvrtko Ursulin0031fb92016-11-04 14:42:44 +00003209 if (!HAS_LLC(to_i915(obj->base.dev)) &&
3210 cache_level != I915_CACHE_NONE) {
Chris Wilsonef55f922015-10-09 14:11:27 +01003211 /* Access to snoopable pages through the GTT is
3212 * incoherent and on some machines causes a hard
3213 * lockup. Relinquish the CPU mmaping to force
3214 * userspace to refault in the pages and we can
3215 * then double check if the GTT mapping is still
3216 * valid for that pointer access.
3217 */
3218 i915_gem_release_mmap(obj);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003219
Chris Wilsonef55f922015-10-09 14:11:27 +01003220 /* As we no longer need a fence for GTT access,
3221 * we can relinquish it now (and so prevent having
3222 * to steal a fence from someone else on the next
3223 * fence request). Note GPU activity would have
3224 * dropped the fence as all snoopable access is
3225 * supposed to be linear.
3226 */
Chris Wilsone2189dd2017-12-07 21:14:07 +00003227 for_each_ggtt_vma(vma, obj) {
Chris Wilson49ef5292016-08-18 17:17:00 +01003228 ret = i915_vma_put_fence(vma);
3229 if (ret)
3230 return ret;
3231 }
Chris Wilsonef55f922015-10-09 14:11:27 +01003232 } else {
3233 /* We either have incoherent backing store and
3234 * so no GTT access or the architecture is fully
3235 * coherent. In such cases, existing GTT mmaps
3236 * ignore the cache bit in the PTE and we can
3237 * rewrite it without confusing the GPU or having
3238 * to force userspace to fault back in its mmaps.
3239 */
Chris Wilsone4ffd172011-04-04 09:44:39 +01003240 }
3241
Chris Wilson528cbd12019-01-28 10:23:54 +00003242 list_for_each_entry(vma, &obj->vma.list, obj_link) {
Chris Wilsonef55f922015-10-09 14:11:27 +01003243 if (!drm_mm_node_allocated(&vma->node))
3244 continue;
3245
3246 ret = i915_vma_bind(vma, cache_level, PIN_UPDATE);
3247 if (ret)
3248 return ret;
3249 }
Chris Wilsone4ffd172011-04-04 09:44:39 +01003250 }
3251
Chris Wilson528cbd12019-01-28 10:23:54 +00003252 list_for_each_entry(vma, &obj->vma.list, obj_link)
Chris Wilson2c225692013-08-09 12:26:45 +01003253 vma->node.color = cache_level;
Chris Wilsonb8f55be2017-08-11 12:11:16 +01003254 i915_gem_object_set_cache_coherency(obj, cache_level);
Chris Wilsone27ab732017-06-15 13:38:49 +01003255 obj->cache_dirty = true; /* Always invalidate stale cachelines */
Chris Wilson2c225692013-08-09 12:26:45 +01003256
Chris Wilsone4ffd172011-04-04 09:44:39 +01003257 return 0;
3258}
3259
Ben Widawsky199adf42012-09-21 17:01:20 -07003260int i915_gem_get_caching_ioctl(struct drm_device *dev, void *data,
3261 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003262{
Ben Widawsky199adf42012-09-21 17:01:20 -07003263 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003264 struct drm_i915_gem_object *obj;
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003265 int err = 0;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003266
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003267 rcu_read_lock();
3268 obj = i915_gem_object_lookup_rcu(file, args->handle);
3269 if (!obj) {
3270 err = -ENOENT;
3271 goto out;
3272 }
Chris Wilsone6994ae2012-07-10 10:27:08 +01003273
Chris Wilson651d7942013-08-08 14:41:10 +01003274 switch (obj->cache_level) {
3275 case I915_CACHE_LLC:
3276 case I915_CACHE_L3_LLC:
3277 args->caching = I915_CACHING_CACHED;
3278 break;
3279
Chris Wilson4257d3b2013-08-08 14:41:11 +01003280 case I915_CACHE_WT:
3281 args->caching = I915_CACHING_DISPLAY;
3282 break;
3283
Chris Wilson651d7942013-08-08 14:41:10 +01003284 default:
3285 args->caching = I915_CACHING_NONE;
3286 break;
3287 }
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003288out:
3289 rcu_read_unlock();
3290 return err;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003291}
3292
Ben Widawsky199adf42012-09-21 17:01:20 -07003293int i915_gem_set_caching_ioctl(struct drm_device *dev, void *data,
3294 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003295{
Chris Wilson9c870d02016-10-24 13:42:15 +01003296 struct drm_i915_private *i915 = to_i915(dev);
Ben Widawsky199adf42012-09-21 17:01:20 -07003297 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003298 struct drm_i915_gem_object *obj;
3299 enum i915_cache_level level;
Chris Wilsond65415d2017-01-19 08:22:10 +00003300 int ret = 0;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003301
Ben Widawsky199adf42012-09-21 17:01:20 -07003302 switch (args->caching) {
3303 case I915_CACHING_NONE:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003304 level = I915_CACHE_NONE;
3305 break;
Ben Widawsky199adf42012-09-21 17:01:20 -07003306 case I915_CACHING_CACHED:
Imre Deake5756c12015-08-14 18:43:30 +03003307 /*
3308 * Due to a HW issue on BXT A stepping, GPU stores via a
3309 * snooped mapping may leave stale data in a corresponding CPU
3310 * cacheline, whereas normally such cachelines would get
3311 * invalidated.
3312 */
Chris Wilson9c870d02016-10-24 13:42:15 +01003313 if (!HAS_LLC(i915) && !HAS_SNOOP(i915))
Imre Deake5756c12015-08-14 18:43:30 +03003314 return -ENODEV;
3315
Chris Wilsone6994ae2012-07-10 10:27:08 +01003316 level = I915_CACHE_LLC;
3317 break;
Chris Wilson4257d3b2013-08-08 14:41:11 +01003318 case I915_CACHING_DISPLAY:
Chris Wilson9c870d02016-10-24 13:42:15 +01003319 level = HAS_WT(i915) ? I915_CACHE_WT : I915_CACHE_NONE;
Chris Wilson4257d3b2013-08-08 14:41:11 +01003320 break;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003321 default:
3322 return -EINVAL;
3323 }
3324
Chris Wilsond65415d2017-01-19 08:22:10 +00003325 obj = i915_gem_object_lookup(file, args->handle);
3326 if (!obj)
3327 return -ENOENT;
3328
Tina Zhanga03f3952017-11-14 10:25:13 +00003329 /*
3330 * The caching mode of proxy object is handled by its generator, and
3331 * not allowed to be changed by userspace.
3332 */
3333 if (i915_gem_object_is_proxy(obj)) {
3334 ret = -ENXIO;
3335 goto out;
3336 }
3337
Chris Wilsond65415d2017-01-19 08:22:10 +00003338 if (obj->cache_level == level)
3339 goto out;
3340
3341 ret = i915_gem_object_wait(obj,
3342 I915_WAIT_INTERRUPTIBLE,
Chris Wilson62eb3c22019-02-13 09:25:04 +00003343 MAX_SCHEDULE_TIMEOUT);
Chris Wilsond65415d2017-01-19 08:22:10 +00003344 if (ret)
3345 goto out;
3346
Ben Widawsky3bc29132012-09-26 16:15:20 -07003347 ret = i915_mutex_lock_interruptible(dev);
3348 if (ret)
Chris Wilsond65415d2017-01-19 08:22:10 +00003349 goto out;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003350
3351 ret = i915_gem_object_set_cache_level(obj, level);
Chris Wilsone6994ae2012-07-10 10:27:08 +01003352 mutex_unlock(&dev->struct_mutex);
Chris Wilsond65415d2017-01-19 08:22:10 +00003353
3354out:
3355 i915_gem_object_put(obj);
Chris Wilsone6994ae2012-07-10 10:27:08 +01003356 return ret;
3357}
3358
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003359/*
Dhinakaran Pandiyan07bcd992018-03-06 19:34:18 -08003360 * Prepare buffer for display plane (scanout, cursors, etc). Can be called from
3361 * an uninterruptible phase (modesetting) and allows any flushes to be pipelined
3362 * (for pageflips). We only flush the caches while preparing the buffer for
3363 * display, the callers are responsible for frontbuffer flush.
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003364 */
Chris Wilson058d88c2016-08-15 10:49:06 +01003365struct i915_vma *
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003366i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
3367 u32 alignment,
Chris Wilson59354852018-02-20 13:42:06 +00003368 const struct i915_ggtt_view *view,
3369 unsigned int flags)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003370{
Chris Wilson058d88c2016-08-15 10:49:06 +01003371 struct i915_vma *vma;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003372 int ret;
3373
Chris Wilson4c7d62c2016-10-28 13:58:32 +01003374 lockdep_assert_held(&obj->base.dev->struct_mutex);
3375
Chris Wilsonbd3d2252017-10-13 21:26:14 +01003376 /* Mark the global pin early so that we account for the
Chris Wilsoncc98b412013-08-09 12:25:09 +01003377 * display coherency whilst setting up the cache domains.
3378 */
Chris Wilsonbd3d2252017-10-13 21:26:14 +01003379 obj->pin_global++;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003380
Eric Anholta7ef0642011-03-29 16:59:54 -07003381 /* The display engine is not coherent with the LLC cache on gen6. As
3382 * a result, we make sure that the pinning that is about to occur is
3383 * done with uncached PTEs. This is lowest common denominator for all
3384 * chipsets.
3385 *
3386 * However for gen6+, we could do better by using the GFDT bit instead
3387 * of uncaching, which would allow us to flush all the LLC-cached data
3388 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
3389 */
Chris Wilson651d7942013-08-08 14:41:10 +01003390 ret = i915_gem_object_set_cache_level(obj,
Tvrtko Ursulin86527442016-10-13 11:03:00 +01003391 HAS_WT(to_i915(obj->base.dev)) ?
3392 I915_CACHE_WT : I915_CACHE_NONE);
Chris Wilson058d88c2016-08-15 10:49:06 +01003393 if (ret) {
3394 vma = ERR_PTR(ret);
Chris Wilsonbd3d2252017-10-13 21:26:14 +01003395 goto err_unpin_global;
Chris Wilson058d88c2016-08-15 10:49:06 +01003396 }
Eric Anholta7ef0642011-03-29 16:59:54 -07003397
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003398 /* As the user may map the buffer once pinned in the display plane
3399 * (e.g. libkms for the bootup splash), we have to ensure that we
Chris Wilson2efb8132016-08-18 17:17:06 +01003400 * always use map_and_fenceable for all scanout buffers. However,
3401 * it may simply be too big to fit into mappable, in which case
3402 * put it anyway and hope that userspace can cope (but always first
3403 * try to preserve the existing ABI).
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003404 */
Chris Wilson2efb8132016-08-18 17:17:06 +01003405 vma = ERR_PTR(-ENOSPC);
Chris Wilson59354852018-02-20 13:42:06 +00003406 if ((flags & PIN_MAPPABLE) == 0 &&
3407 (!view || view->type == I915_GGTT_VIEW_NORMAL))
Chris Wilson2efb8132016-08-18 17:17:06 +01003408 vma = i915_gem_object_ggtt_pin(obj, view, 0, alignment,
Chris Wilson59354852018-02-20 13:42:06 +00003409 flags |
3410 PIN_MAPPABLE |
3411 PIN_NONBLOCK);
3412 if (IS_ERR(vma))
Chris Wilson767a2222016-11-07 11:01:28 +00003413 vma = i915_gem_object_ggtt_pin(obj, view, 0, alignment, flags);
Chris Wilson058d88c2016-08-15 10:49:06 +01003414 if (IS_ERR(vma))
Chris Wilsonbd3d2252017-10-13 21:26:14 +01003415 goto err_unpin_global;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003416
Chris Wilsond8923dc2016-08-18 17:17:07 +01003417 vma->display_alignment = max_t(u64, vma->display_alignment, alignment);
3418
Chris Wilson5a97bcc2017-02-22 11:40:46 +00003419 __i915_gem_object_flush_for_display(obj);
Chris Wilsonb118c1e2010-05-27 13:18:14 +01003420
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003421 /* It should now be out of any other write domains, and we can update
3422 * the domain values for our changes.
3423 */
Christian Königc0a51fd2018-02-16 13:43:38 +01003424 obj->read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003425
Chris Wilson058d88c2016-08-15 10:49:06 +01003426 return vma;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003427
Chris Wilsonbd3d2252017-10-13 21:26:14 +01003428err_unpin_global:
3429 obj->pin_global--;
Chris Wilson058d88c2016-08-15 10:49:06 +01003430 return vma;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003431}
3432
3433void
Chris Wilson058d88c2016-08-15 10:49:06 +01003434i915_gem_object_unpin_from_display_plane(struct i915_vma *vma)
Chris Wilsoncc98b412013-08-09 12:25:09 +01003435{
Chris Wilson49d73912016-11-29 09:50:08 +00003436 lockdep_assert_held(&vma->vm->i915->drm.struct_mutex);
Chris Wilson4c7d62c2016-10-28 13:58:32 +01003437
Chris Wilsonbd3d2252017-10-13 21:26:14 +01003438 if (WARN_ON(vma->obj->pin_global == 0))
Tvrtko Ursulin8a0c39b2015-04-13 11:50:09 +01003439 return;
3440
Chris Wilsonbd3d2252017-10-13 21:26:14 +01003441 if (--vma->obj->pin_global == 0)
Chris Wilsonf51455d2017-01-10 14:47:34 +00003442 vma->display_alignment = I915_GTT_MIN_ALIGNMENT;
Tvrtko Ursuline6617332015-03-23 11:10:33 +00003443
Chris Wilson383d5822016-08-18 17:17:08 +01003444 /* Bump the LRU to try and avoid premature eviction whilst flipping */
Chris Wilsonbefedbb2017-01-19 19:26:55 +00003445 i915_gem_object_bump_inactive_ggtt(vma->obj);
Chris Wilson383d5822016-08-18 17:17:08 +01003446
Chris Wilson058d88c2016-08-15 10:49:06 +01003447 i915_vma_unpin(vma);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003448}
3449
Eric Anholte47c68e2008-11-14 13:35:19 -08003450/**
3451 * Moves a single object to the CPU read, and possibly write domain.
Tvrtko Ursulin14bb2c12016-06-03 14:02:17 +01003452 * @obj: object to act on
3453 * @write: requesting write or read-only access
Eric Anholte47c68e2008-11-14 13:35:19 -08003454 *
3455 * This function returns when the move is complete, including waiting on
3456 * flushes to occur.
3457 */
Chris Wilsondabdfe02012-03-26 10:10:27 +02003458int
Chris Wilson919926a2010-11-12 13:42:53 +00003459i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08003460{
Eric Anholte47c68e2008-11-14 13:35:19 -08003461 int ret;
3462
Chris Wilsone95433c2016-10-28 13:58:27 +01003463 lockdep_assert_held(&obj->base.dev->struct_mutex);
Chris Wilson4c7d62c2016-10-28 13:58:32 +01003464
Chris Wilsone95433c2016-10-28 13:58:27 +01003465 ret = i915_gem_object_wait(obj,
3466 I915_WAIT_INTERRUPTIBLE |
3467 I915_WAIT_LOCKED |
3468 (write ? I915_WAIT_ALL : 0),
Chris Wilson62eb3c22019-02-13 09:25:04 +00003469 MAX_SCHEDULE_TIMEOUT);
Chris Wilson88241782011-01-07 17:09:48 +00003470 if (ret)
3471 return ret;
3472
Chris Wilsonef749212017-04-12 12:01:10 +01003473 flush_write_domain(obj, ~I915_GEM_DOMAIN_CPU);
Eric Anholte47c68e2008-11-14 13:35:19 -08003474
Eric Anholte47c68e2008-11-14 13:35:19 -08003475 /* Flush the CPU cache if it's still invalid. */
Christian Königc0a51fd2018-02-16 13:43:38 +01003476 if ((obj->read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Chris Wilson57822dc2017-02-22 11:40:48 +00003477 i915_gem_clflush_object(obj, I915_CLFLUSH_SYNC);
Christian Königc0a51fd2018-02-16 13:43:38 +01003478 obj->read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003479 }
3480
3481 /* It should now be out of any other write domains, and we can update
3482 * the domain values for our changes.
3483 */
Christian Königc0a51fd2018-02-16 13:43:38 +01003484 GEM_BUG_ON(obj->write_domain & ~I915_GEM_DOMAIN_CPU);
Eric Anholte47c68e2008-11-14 13:35:19 -08003485
3486 /* If we're writing through the CPU, then the GPU read domains will
3487 * need to be invalidated at next use.
3488 */
Chris Wilsone27ab732017-06-15 13:38:49 +01003489 if (write)
3490 __start_cpu_write(obj);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003491
3492 return 0;
3493}
3494
Eric Anholt673a3942008-07-30 12:06:12 -07003495/* Throttle our rendering by waiting until the ring has completed our requests
3496 * emitted over 20 msec ago.
3497 *
Eric Anholtb9624422009-06-03 07:27:35 +00003498 * Note that if we were to use the current jiffies each time around the loop,
3499 * we wouldn't escape the function with any frames outstanding if the time to
3500 * render a frame was over 20ms.
3501 *
Eric Anholt673a3942008-07-30 12:06:12 -07003502 * This should get us reasonable parallelism between CPU and GPU but also
3503 * relatively low latency when blocking on a particular request to finish.
3504 */
3505static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003506i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003507{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003508 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003509 struct drm_i915_file_private *file_priv = file->driver_priv;
Chris Wilsond0bc54f2015-05-21 21:01:48 +01003510 unsigned long recent_enough = jiffies - DRM_I915_THROTTLE_JIFFIES;
Chris Wilsone61e0f52018-02-21 09:56:36 +00003511 struct i915_request *request, *target = NULL;
Chris Wilsone95433c2016-10-28 13:58:27 +01003512 long ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003513
Chris Wilsonf4457ae2016-04-13 17:35:08 +01003514 /* ABI: return -EIO if already wedged */
Chris Wilsonc41166f2019-02-20 14:56:37 +00003515 ret = i915_terminally_wedged(dev_priv);
3516 if (ret)
3517 return ret;
Chris Wilsone110e8d2011-01-26 15:39:14 +00003518
Chris Wilson1c255952010-09-26 11:03:27 +01003519 spin_lock(&file_priv->mm.lock);
Chris Wilsonc8659ef2017-03-02 12:25:25 +00003520 list_for_each_entry(request, &file_priv->mm.request_list, client_link) {
Eric Anholtb9624422009-06-03 07:27:35 +00003521 if (time_after_eq(request->emitted_jiffies, recent_enough))
3522 break;
3523
Chris Wilsonc8659ef2017-03-02 12:25:25 +00003524 if (target) {
3525 list_del(&target->client_link);
3526 target->file_priv = NULL;
3527 }
John Harrisonfcfa423c2015-05-29 17:44:12 +01003528
John Harrison54fb2412014-11-24 18:49:27 +00003529 target = request;
Eric Anholtb9624422009-06-03 07:27:35 +00003530 }
John Harrisonff865882014-11-24 18:49:28 +00003531 if (target)
Chris Wilsone61e0f52018-02-21 09:56:36 +00003532 i915_request_get(target);
Chris Wilson1c255952010-09-26 11:03:27 +01003533 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003534
John Harrison54fb2412014-11-24 18:49:27 +00003535 if (target == NULL)
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003536 return 0;
3537
Chris Wilsone61e0f52018-02-21 09:56:36 +00003538 ret = i915_request_wait(target,
Chris Wilsone95433c2016-10-28 13:58:27 +01003539 I915_WAIT_INTERRUPTIBLE,
3540 MAX_SCHEDULE_TIMEOUT);
Chris Wilsone61e0f52018-02-21 09:56:36 +00003541 i915_request_put(target);
John Harrisonff865882014-11-24 18:49:28 +00003542
Chris Wilsone95433c2016-10-28 13:58:27 +01003543 return ret < 0 ? ret : 0;
Eric Anholt673a3942008-07-30 12:06:12 -07003544}
3545
Chris Wilson058d88c2016-08-15 10:49:06 +01003546struct i915_vma *
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003547i915_gem_object_ggtt_pin(struct drm_i915_gem_object *obj,
3548 const struct i915_ggtt_view *view,
Chris Wilson91b2db62016-08-04 16:32:23 +01003549 u64 size,
Chris Wilson2ffffd02016-08-04 16:32:22 +01003550 u64 alignment,
3551 u64 flags)
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003552{
Chris Wilsonad16d2e2016-10-13 09:55:04 +01003553 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
Chris Wilson82ad6442018-06-05 16:37:58 +01003554 struct i915_address_space *vm = &dev_priv->ggtt.vm;
Chris Wilson59bfa122016-08-04 16:32:31 +01003555 struct i915_vma *vma;
3556 int ret;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03003557
Chris Wilson4c7d62c2016-10-28 13:58:32 +01003558 lockdep_assert_held(&obj->base.dev->struct_mutex);
3559
Chris Wilsonac87a6fd2018-02-20 13:42:05 +00003560 if (flags & PIN_MAPPABLE &&
3561 (!view || view->type == I915_GGTT_VIEW_NORMAL)) {
Chris Wilson43ae70d92017-10-09 09:44:01 +01003562 /* If the required space is larger than the available
3563 * aperture, we will not able to find a slot for the
3564 * object and unbinding the object now will be in
3565 * vain. Worse, doing so may cause us to ping-pong
3566 * the object in and out of the Global GTT and
3567 * waste a lot of cycles under the mutex.
3568 */
3569 if (obj->base.size > dev_priv->ggtt.mappable_end)
3570 return ERR_PTR(-E2BIG);
3571
3572 /* If NONBLOCK is set the caller is optimistically
3573 * trying to cache the full object within the mappable
3574 * aperture, and *must* have a fallback in place for
3575 * situations where we cannot bind the object. We
3576 * can be a little more lax here and use the fallback
3577 * more often to avoid costly migrations of ourselves
3578 * and other objects within the aperture.
3579 *
3580 * Half-the-aperture is used as a simple heuristic.
3581 * More interesting would to do search for a free
3582 * block prior to making the commitment to unbind.
3583 * That caters for the self-harm case, and with a
3584 * little more heuristics (e.g. NOFAULT, NOEVICT)
3585 * we could try to minimise harm to others.
3586 */
3587 if (flags & PIN_NONBLOCK &&
3588 obj->base.size > dev_priv->ggtt.mappable_end / 2)
3589 return ERR_PTR(-ENOSPC);
3590 }
3591
Chris Wilson718659a2017-01-16 15:21:28 +00003592 vma = i915_vma_instance(obj, vm, view);
Chengguang Xu772b5402019-02-21 10:08:19 +08003593 if (IS_ERR(vma))
Chris Wilson058d88c2016-08-15 10:49:06 +01003594 return vma;
Chris Wilson59bfa122016-08-04 16:32:31 +01003595
3596 if (i915_vma_misplaced(vma, size, alignment, flags)) {
Chris Wilson43ae70d92017-10-09 09:44:01 +01003597 if (flags & PIN_NONBLOCK) {
3598 if (i915_vma_is_pinned(vma) || i915_vma_is_active(vma))
3599 return ERR_PTR(-ENOSPC);
Chris Wilson59bfa122016-08-04 16:32:31 +01003600
Chris Wilson43ae70d92017-10-09 09:44:01 +01003601 if (flags & PIN_MAPPABLE &&
Chris Wilson944397f2017-01-09 16:16:11 +00003602 vma->fence_size > dev_priv->ggtt.mappable_end / 2)
Chris Wilsonad16d2e2016-10-13 09:55:04 +01003603 return ERR_PTR(-ENOSPC);
3604 }
3605
Chris Wilson59bfa122016-08-04 16:32:31 +01003606 WARN(i915_vma_is_pinned(vma),
3607 "bo is already pinned in ggtt with incorrect alignment:"
Chris Wilson05a20d02016-08-18 17:16:55 +01003608 " offset=%08x, req.alignment=%llx,"
3609 " req.map_and_fenceable=%d, vma->map_and_fenceable=%d\n",
3610 i915_ggtt_offset(vma), alignment,
Chris Wilson59bfa122016-08-04 16:32:31 +01003611 !!(flags & PIN_MAPPABLE),
Chris Wilson05a20d02016-08-18 17:16:55 +01003612 i915_vma_is_map_and_fenceable(vma));
Chris Wilson59bfa122016-08-04 16:32:31 +01003613 ret = i915_vma_unbind(vma);
3614 if (ret)
Chris Wilson058d88c2016-08-15 10:49:06 +01003615 return ERR_PTR(ret);
Chris Wilson59bfa122016-08-04 16:32:31 +01003616 }
3617
Chris Wilson058d88c2016-08-15 10:49:06 +01003618 ret = i915_vma_pin(vma, size, alignment, flags | PIN_GLOBAL);
3619 if (ret)
3620 return ERR_PTR(ret);
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003621
Chris Wilson058d88c2016-08-15 10:49:06 +01003622 return vma;
Eric Anholt673a3942008-07-30 12:06:12 -07003623}
3624
Chris Wilson6960d9c2019-04-04 11:19:14 +01003625static __always_inline u32 __busy_read_flag(u8 id)
Chris Wilson3fdc13c2016-08-05 10:14:18 +01003626{
Chris Wilson6960d9c2019-04-04 11:19:14 +01003627 if (id == (u8)I915_ENGINE_CLASS_INVALID)
3628 return 0xffff0000u;
Chris Wilsonc8b50242019-03-05 16:26:43 +00003629
3630 GEM_BUG_ON(id >= 16);
Chris Wilson6960d9c2019-04-04 11:19:14 +01003631 return 0x10000u << id;
Chris Wilson3fdc13c2016-08-05 10:14:18 +01003632}
3633
Chris Wilson6960d9c2019-04-04 11:19:14 +01003634static __always_inline u32 __busy_write_id(u8 id)
Chris Wilson3fdc13c2016-08-05 10:14:18 +01003635{
Chris Wilsonc8b50242019-03-05 16:26:43 +00003636 /*
3637 * The uABI guarantees an active writer is also amongst the read
Chris Wilson70cb4722016-08-09 18:08:25 +01003638 * engines. This would be true if we accessed the activity tracking
3639 * under the lock, but as we perform the lookup of the object and
3640 * its activity locklessly we can not guarantee that the last_write
3641 * being active implies that we have set the same engine flag from
3642 * last_read - hence we always set both read and write busy for
3643 * last_write.
3644 */
Chris Wilson6960d9c2019-04-04 11:19:14 +01003645 if (id == (u8)I915_ENGINE_CLASS_INVALID)
3646 return 0xffffffffu;
Chris Wilsonc8b50242019-03-05 16:26:43 +00003647
3648 return (id + 1) | __busy_read_flag(id);
Chris Wilson3fdc13c2016-08-05 10:14:18 +01003649}
3650
Chris Wilsonedf6b762016-08-09 09:23:33 +01003651static __always_inline unsigned int
Chris Wilson6960d9c2019-04-04 11:19:14 +01003652__busy_set_if_active(const struct dma_fence *fence, u32 (*flag)(u8 id))
Chris Wilson3fdc13c2016-08-05 10:14:18 +01003653{
Chris Wilsonc8b50242019-03-05 16:26:43 +00003654 const struct i915_request *rq;
Chris Wilson12555012016-08-16 09:50:40 +01003655
Chris Wilsonc8b50242019-03-05 16:26:43 +00003656 /*
3657 * We have to check the current hw status of the fence as the uABI
Chris Wilsond07f0e52016-10-28 13:58:44 +01003658 * guarantees forward progress. We could rely on the idle worker
3659 * to eventually flush us, but to minimise latency just ask the
3660 * hardware.
3661 *
3662 * Note we only report on the status of native fences.
3663 */
3664 if (!dma_fence_is_i915(fence))
Chris Wilson12555012016-08-16 09:50:40 +01003665 return 0;
3666
Chris Wilsond07f0e52016-10-28 13:58:44 +01003667 /* opencode to_request() in order to avoid const warnings */
Chris Wilsonc8b50242019-03-05 16:26:43 +00003668 rq = container_of(fence, const struct i915_request, fence);
Chris Wilsone61e0f52018-02-21 09:56:36 +00003669 if (i915_request_completed(rq))
Chris Wilsond07f0e52016-10-28 13:58:44 +01003670 return 0;
3671
Chris Wilson6960d9c2019-04-04 11:19:14 +01003672 /* Beware type-expansion follies! */
3673 BUILD_BUG_ON(!typecheck(u8, rq->engine->uabi_class));
Chris Wilsonc8b50242019-03-05 16:26:43 +00003674 return flag(rq->engine->uabi_class);
Chris Wilson3fdc13c2016-08-05 10:14:18 +01003675}
3676
Chris Wilsonedf6b762016-08-09 09:23:33 +01003677static __always_inline unsigned int
Chris Wilsond07f0e52016-10-28 13:58:44 +01003678busy_check_reader(const struct dma_fence *fence)
Chris Wilson3fdc13c2016-08-05 10:14:18 +01003679{
Chris Wilsond07f0e52016-10-28 13:58:44 +01003680 return __busy_set_if_active(fence, __busy_read_flag);
Chris Wilson3fdc13c2016-08-05 10:14:18 +01003681}
3682
Chris Wilsonedf6b762016-08-09 09:23:33 +01003683static __always_inline unsigned int
Chris Wilsond07f0e52016-10-28 13:58:44 +01003684busy_check_writer(const struct dma_fence *fence)
Chris Wilson3fdc13c2016-08-05 10:14:18 +01003685{
Chris Wilsond07f0e52016-10-28 13:58:44 +01003686 if (!fence)
3687 return 0;
3688
3689 return __busy_set_if_active(fence, __busy_write_id);
Chris Wilson3fdc13c2016-08-05 10:14:18 +01003690}
3691
Eric Anholt673a3942008-07-30 12:06:12 -07003692int
Eric Anholt673a3942008-07-30 12:06:12 -07003693i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003694 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003695{
3696 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003697 struct drm_i915_gem_object *obj;
Chris Wilsond07f0e52016-10-28 13:58:44 +01003698 struct reservation_object_list *list;
3699 unsigned int seq;
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003700 int err;
Eric Anholt673a3942008-07-30 12:06:12 -07003701
Chris Wilsond07f0e52016-10-28 13:58:44 +01003702 err = -ENOENT;
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003703 rcu_read_lock();
3704 obj = i915_gem_object_lookup_rcu(file, args->handle);
Chris Wilsond07f0e52016-10-28 13:58:44 +01003705 if (!obj)
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003706 goto out;
Chris Wilsond07f0e52016-10-28 13:58:44 +01003707
Chris Wilsonc8b50242019-03-05 16:26:43 +00003708 /*
3709 * A discrepancy here is that we do not report the status of
Chris Wilsond07f0e52016-10-28 13:58:44 +01003710 * non-i915 fences, i.e. even though we may report the object as idle,
3711 * a call to set-domain may still stall waiting for foreign rendering.
3712 * This also means that wait-ioctl may report an object as busy,
3713 * where busy-ioctl considers it idle.
3714 *
3715 * We trade the ability to warn of foreign fences to report on which
3716 * i915 engines are active for the object.
3717 *
3718 * Alternatively, we can trade that extra information on read/write
3719 * activity with
3720 * args->busy =
3721 * !reservation_object_test_signaled_rcu(obj->resv, true);
3722 * to report the overall busyness. This is what the wait-ioctl does.
3723 *
3724 */
3725retry:
3726 seq = raw_read_seqcount(&obj->resv->seq);
3727
3728 /* Translate the exclusive fence to the READ *and* WRITE engine */
3729 args->busy = busy_check_writer(rcu_dereference(obj->resv->fence_excl));
3730
3731 /* Translate shared fences to READ set of engines */
3732 list = rcu_dereference(obj->resv->fence);
3733 if (list) {
3734 unsigned int shared_count = list->shared_count, i;
3735
3736 for (i = 0; i < shared_count; ++i) {
3737 struct dma_fence *fence =
3738 rcu_dereference(list->shared[i]);
3739
3740 args->busy |= busy_check_reader(fence);
3741 }
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003742 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003743
Chris Wilsond07f0e52016-10-28 13:58:44 +01003744 if (args->busy && read_seqcount_retry(&obj->resv->seq, seq))
3745 goto retry;
Chris Wilson426960b2016-01-15 16:51:46 +00003746
Chris Wilsond07f0e52016-10-28 13:58:44 +01003747 err = 0;
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003748out:
3749 rcu_read_unlock();
3750 return err;
Eric Anholt673a3942008-07-30 12:06:12 -07003751}
3752
3753int
3754i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
3755 struct drm_file *file_priv)
3756{
Akshay Joshi0206e352011-08-16 15:34:10 -04003757 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07003758}
3759
Chris Wilson3ef94da2009-09-14 16:50:29 +01003760int
3761i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
3762 struct drm_file *file_priv)
3763{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003764 struct drm_i915_private *dev_priv = to_i915(dev);
Chris Wilson3ef94da2009-09-14 16:50:29 +01003765 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003766 struct drm_i915_gem_object *obj;
Chris Wilson1233e2d2016-10-28 13:58:37 +01003767 int err;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003768
3769 switch (args->madv) {
3770 case I915_MADV_DONTNEED:
3771 case I915_MADV_WILLNEED:
3772 break;
3773 default:
3774 return -EINVAL;
3775 }
3776
Chris Wilson03ac0642016-07-20 13:31:51 +01003777 obj = i915_gem_object_lookup(file_priv, args->handle);
Chris Wilson1233e2d2016-10-28 13:58:37 +01003778 if (!obj)
3779 return -ENOENT;
3780
3781 err = mutex_lock_interruptible(&obj->mm.lock);
3782 if (err)
3783 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003784
Chris Wilsonf1fa4f42017-10-13 21:26:13 +01003785 if (i915_gem_object_has_pages(obj) &&
Chris Wilson3e510a82016-08-05 10:14:23 +01003786 i915_gem_object_is_tiled(obj) &&
Daniel Vetter656bfa32014-11-20 09:26:30 +01003787 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES) {
Chris Wilsonbc0629a2016-11-01 10:03:17 +00003788 if (obj->mm.madv == I915_MADV_WILLNEED) {
3789 GEM_BUG_ON(!obj->mm.quirked);
Chris Wilsona4f5ea62016-10-28 13:58:35 +01003790 __i915_gem_object_unpin_pages(obj);
Chris Wilsonbc0629a2016-11-01 10:03:17 +00003791 obj->mm.quirked = false;
3792 }
3793 if (args->madv == I915_MADV_WILLNEED) {
Chris Wilson2c3a3f42016-11-04 10:30:01 +00003794 GEM_BUG_ON(obj->mm.quirked);
Chris Wilsona4f5ea62016-10-28 13:58:35 +01003795 __i915_gem_object_pin_pages(obj);
Chris Wilsonbc0629a2016-11-01 10:03:17 +00003796 obj->mm.quirked = true;
3797 }
Daniel Vetter656bfa32014-11-20 09:26:30 +01003798 }
3799
Chris Wilsona4f5ea62016-10-28 13:58:35 +01003800 if (obj->mm.madv != __I915_MADV_PURGED)
3801 obj->mm.madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003802
Chris Wilson6c085a72012-08-20 11:40:46 +02003803 /* if the object is no longer attached, discard its backing storage */
Chris Wilsonf1fa4f42017-10-13 21:26:13 +01003804 if (obj->mm.madv == I915_MADV_DONTNEED &&
3805 !i915_gem_object_has_pages(obj))
Chris Wilson2d6692e2019-04-20 12:55:39 +01003806 __i915_gem_object_truncate(obj);
Chris Wilson2d7ef392009-09-20 23:13:10 +01003807
Chris Wilsona4f5ea62016-10-28 13:58:35 +01003808 args->retained = obj->mm.madv != __I915_MADV_PURGED;
Chris Wilson1233e2d2016-10-28 13:58:37 +01003809 mutex_unlock(&obj->mm.lock);
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003810
Chris Wilson1233e2d2016-10-28 13:58:37 +01003811out:
Chris Wilsonf8c417c2016-07-20 13:31:53 +01003812 i915_gem_object_put(obj);
Chris Wilson1233e2d2016-10-28 13:58:37 +01003813 return err;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003814}
3815
Chris Wilson5b8c8ae2016-11-16 19:07:04 +00003816static void
Chris Wilson21950ee2019-02-05 13:00:05 +00003817frontbuffer_retire(struct i915_active_request *active,
3818 struct i915_request *request)
Chris Wilson5b8c8ae2016-11-16 19:07:04 +00003819{
3820 struct drm_i915_gem_object *obj =
3821 container_of(active, typeof(*obj), frontbuffer_write);
3822
Chris Wilsond59b21e2017-02-22 11:40:49 +00003823 intel_fb_obj_flush(obj, ORIGIN_CS);
Chris Wilson5b8c8ae2016-11-16 19:07:04 +00003824}
3825
Chris Wilson37e680a2012-06-07 15:38:42 +01003826void i915_gem_object_init(struct drm_i915_gem_object *obj,
3827 const struct drm_i915_gem_object_ops *ops)
Chris Wilson0327d6b2012-08-11 15:41:06 +01003828{
Chris Wilson1233e2d2016-10-28 13:58:37 +01003829 mutex_init(&obj->mm.lock);
3830
Chris Wilson528cbd12019-01-28 10:23:54 +00003831 spin_lock_init(&obj->vma.lock);
3832 INIT_LIST_HEAD(&obj->vma.list);
3833
Chris Wilsond1b48c12017-08-16 09:52:08 +01003834 INIT_LIST_HEAD(&obj->lut_list);
Chris Wilson8d9d5742015-04-07 16:20:38 +01003835 INIT_LIST_HEAD(&obj->batch_pool_link);
Chris Wilson0327d6b2012-08-11 15:41:06 +01003836
Chris Wilson8811d612018-11-09 09:03:11 +00003837 init_rcu_head(&obj->rcu);
3838
Chris Wilson37e680a2012-06-07 15:38:42 +01003839 obj->ops = ops;
3840
Chris Wilsond07f0e52016-10-28 13:58:44 +01003841 reservation_object_init(&obj->__builtin_resv);
3842 obj->resv = &obj->__builtin_resv;
3843
Chris Wilson50349242016-08-18 17:17:04 +01003844 obj->frontbuffer_ggtt_origin = ORIGIN_GTT;
Chris Wilson21950ee2019-02-05 13:00:05 +00003845 i915_active_request_init(&obj->frontbuffer_write,
3846 NULL, frontbuffer_retire);
Chris Wilsona4f5ea62016-10-28 13:58:35 +01003847
3848 obj->mm.madv = I915_MADV_WILLNEED;
3849 INIT_RADIX_TREE(&obj->mm.get_page.radix, GFP_KERNEL | __GFP_NOWARN);
3850 mutex_init(&obj->mm.get_page.lock);
Chris Wilson0327d6b2012-08-11 15:41:06 +01003851
Dave Gordonf19ec8c2016-07-04 11:34:37 +01003852 i915_gem_info_add_obj(to_i915(obj->base.dev), obj->base.size);
Chris Wilson0327d6b2012-08-11 15:41:06 +01003853}
3854
Chris Wilson37e680a2012-06-07 15:38:42 +01003855static const struct drm_i915_gem_object_ops i915_gem_object_ops = {
Tvrtko Ursulin3599a912016-11-01 14:44:10 +00003856 .flags = I915_GEM_OBJECT_HAS_STRUCT_PAGE |
3857 I915_GEM_OBJECT_IS_SHRINKABLE,
Chris Wilson7c55e2c2017-03-07 12:03:38 +00003858
Chris Wilson37e680a2012-06-07 15:38:42 +01003859 .get_pages = i915_gem_object_get_pages_gtt,
3860 .put_pages = i915_gem_object_put_pages_gtt,
Chris Wilson7c55e2c2017-03-07 12:03:38 +00003861
3862 .pwrite = i915_gem_object_pwrite_gtt,
Chris Wilson37e680a2012-06-07 15:38:42 +01003863};
3864
Matthew Auld465c4032017-10-06 23:18:14 +01003865static int i915_gem_object_create_shmem(struct drm_device *dev,
3866 struct drm_gem_object *obj,
3867 size_t size)
3868{
3869 struct drm_i915_private *i915 = to_i915(dev);
3870 unsigned long flags = VM_NORESERVE;
3871 struct file *filp;
3872
3873 drm_gem_private_object_init(dev, obj, size);
3874
3875 if (i915->mm.gemfs)
3876 filp = shmem_file_setup_with_mnt(i915->mm.gemfs, "i915", size,
3877 flags);
3878 else
3879 filp = shmem_file_setup("i915", size, flags);
3880
3881 if (IS_ERR(filp))
3882 return PTR_ERR(filp);
3883
3884 obj->filp = filp;
3885
3886 return 0;
3887}
3888
Chris Wilsonb4bcbe22016-10-18 13:02:49 +01003889struct drm_i915_gem_object *
Tvrtko Ursulin12d79d72016-12-01 14:16:37 +00003890i915_gem_object_create(struct drm_i915_private *dev_priv, u64 size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00003891{
Daniel Vetterc397b902010-04-09 19:05:07 +00003892 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07003893 struct address_space *mapping;
Chris Wilsonb8f55be2017-08-11 12:11:16 +01003894 unsigned int cache_level;
Daniel Vetter1a240d42012-11-29 22:18:51 +01003895 gfp_t mask;
Chris Wilsonfe3db792016-04-25 13:32:13 +01003896 int ret;
Daniel Vetterc397b902010-04-09 19:05:07 +00003897
Chris Wilsonb4bcbe22016-10-18 13:02:49 +01003898 /* There is a prevalence of the assumption that we fit the object's
3899 * page count inside a 32bit _signed_ variable. Let's document this and
3900 * catch if we ever need to fix it. In the meantime, if you do spot
3901 * such a local variable, please consider fixing!
3902 */
Tvrtko Ursulin7a3ee5d2017-03-30 17:31:30 +01003903 if (size >> PAGE_SHIFT > INT_MAX)
Chris Wilsonb4bcbe22016-10-18 13:02:49 +01003904 return ERR_PTR(-E2BIG);
3905
3906 if (overflows_type(size, obj->base.size))
3907 return ERR_PTR(-E2BIG);
3908
Chris Wilson13f1bfd2019-02-28 10:20:34 +00003909 obj = i915_gem_object_alloc();
Daniel Vetterc397b902010-04-09 19:05:07 +00003910 if (obj == NULL)
Chris Wilsonfe3db792016-04-25 13:32:13 +01003911 return ERR_PTR(-ENOMEM);
Daniel Vetterc397b902010-04-09 19:05:07 +00003912
Matthew Auld465c4032017-10-06 23:18:14 +01003913 ret = i915_gem_object_create_shmem(&dev_priv->drm, &obj->base, size);
Chris Wilsonfe3db792016-04-25 13:32:13 +01003914 if (ret)
3915 goto fail;
Daniel Vetterc397b902010-04-09 19:05:07 +00003916
Chris Wilsonbed1ea92012-05-24 20:48:12 +01003917 mask = GFP_HIGHUSER | __GFP_RECLAIMABLE;
Jani Nikulac0f86832016-12-07 12:13:04 +02003918 if (IS_I965GM(dev_priv) || IS_I965G(dev_priv)) {
Chris Wilsonbed1ea92012-05-24 20:48:12 +01003919 /* 965gm cannot relocate objects above 4GiB. */
3920 mask &= ~__GFP_HIGHMEM;
3921 mask |= __GFP_DMA32;
3922 }
3923
Al Viro93c76a32015-12-04 23:45:44 -05003924 mapping = obj->base.filp->f_mapping;
Chris Wilsonbed1ea92012-05-24 20:48:12 +01003925 mapping_set_gfp_mask(mapping, mask);
Chris Wilson4846bf02017-06-09 12:03:46 +01003926 GEM_BUG_ON(!(mapping_gfp_mask(mapping) & __GFP_RECLAIM));
Hugh Dickins5949eac2011-06-27 16:18:18 -07003927
Chris Wilson37e680a2012-06-07 15:38:42 +01003928 i915_gem_object_init(obj, &i915_gem_object_ops);
Chris Wilson73aa8082010-09-30 11:46:12 +01003929
Christian Königc0a51fd2018-02-16 13:43:38 +01003930 obj->write_domain = I915_GEM_DOMAIN_CPU;
3931 obj->read_domains = I915_GEM_DOMAIN_CPU;
Daniel Vetterc397b902010-04-09 19:05:07 +00003932
Chris Wilsonb8f55be2017-08-11 12:11:16 +01003933 if (HAS_LLC(dev_priv))
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02003934 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07003935 * cache) for about a 10% performance improvement
3936 * compared to uncached. Graphics requests other than
3937 * display scanout are coherent with the CPU in
3938 * accessing this cache. This means in this mode we
3939 * don't need to clflush on the CPU side, and on the
3940 * GPU side we only need to flush internal caches to
3941 * get data visible to the CPU.
3942 *
3943 * However, we maintain the display planes as UC, and so
3944 * need to rebind when first used as such.
3945 */
Chris Wilsonb8f55be2017-08-11 12:11:16 +01003946 cache_level = I915_CACHE_LLC;
3947 else
3948 cache_level = I915_CACHE_NONE;
Eric Anholta1871112011-03-29 16:59:55 -07003949
Chris Wilsonb8f55be2017-08-11 12:11:16 +01003950 i915_gem_object_set_cache_coherency(obj, cache_level);
Chris Wilsone27ab732017-06-15 13:38:49 +01003951
Daniel Vetterd861e332013-07-24 23:25:03 +02003952 trace_i915_gem_object_create(obj);
3953
Chris Wilson05394f32010-11-08 19:18:58 +00003954 return obj;
Chris Wilsonfe3db792016-04-25 13:32:13 +01003955
3956fail:
3957 i915_gem_object_free(obj);
Chris Wilsonfe3db792016-04-25 13:32:13 +01003958 return ERR_PTR(ret);
Daniel Vetterac52bc52010-04-09 19:05:06 +00003959}
3960
Chris Wilson340fbd82014-05-22 09:16:52 +01003961static bool discard_backing_storage(struct drm_i915_gem_object *obj)
3962{
3963 /* If we are the last user of the backing storage (be it shmemfs
3964 * pages or stolen etc), we know that the pages are going to be
3965 * immediately released. In this case, we can then skip copying
3966 * back the contents from the GPU.
3967 */
3968
Chris Wilsona4f5ea62016-10-28 13:58:35 +01003969 if (obj->mm.madv != I915_MADV_WILLNEED)
Chris Wilson340fbd82014-05-22 09:16:52 +01003970 return false;
3971
3972 if (obj->base.filp == NULL)
3973 return true;
3974
3975 /* At first glance, this looks racy, but then again so would be
3976 * userspace racing mmap against close. However, the first external
3977 * reference to the filp can only be obtained through the
3978 * i915_gem_mmap_ioctl() which safeguards us against the user
3979 * acquiring such a reference whilst we are in the middle of
3980 * freeing the object.
3981 */
3982 return atomic_long_read(&obj->base.filp->f_count) == 1;
3983}
3984
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003985static void __i915_gem_free_objects(struct drm_i915_private *i915,
3986 struct llist_node *freed)
Chris Wilsonbe726152010-07-23 23:18:50 +01003987{
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003988 struct drm_i915_gem_object *obj, *on;
Chris Wilson538ef962019-01-14 14:21:18 +00003989 intel_wakeref_t wakeref;
Chris Wilsonbe726152010-07-23 23:18:50 +01003990
Chris Wilson538ef962019-01-14 14:21:18 +00003991 wakeref = intel_runtime_pm_get(i915);
Chris Wilsoncc731f52017-10-13 21:26:21 +01003992 llist_for_each_entry_safe(obj, on, freed, freed) {
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003993 struct i915_vma *vma, *vn;
Paulo Zanonif65c9162013-11-27 18:20:34 -02003994
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003995 trace_i915_gem_object_destroy(obj);
3996
Chris Wilsoncc731f52017-10-13 21:26:21 +01003997 mutex_lock(&i915->drm.struct_mutex);
3998
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01003999 GEM_BUG_ON(i915_gem_object_is_active(obj));
Chris Wilson528cbd12019-01-28 10:23:54 +00004000 list_for_each_entry_safe(vma, vn, &obj->vma.list, obj_link) {
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01004001 GEM_BUG_ON(i915_vma_is_active(vma));
4002 vma->flags &= ~I915_VMA_PIN_MASK;
Chris Wilson3365e222018-05-03 20:51:14 +01004003 i915_vma_destroy(vma);
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01004004 }
Chris Wilson528cbd12019-01-28 10:23:54 +00004005 GEM_BUG_ON(!list_empty(&obj->vma.list));
4006 GEM_BUG_ON(!RB_EMPTY_ROOT(&obj->vma.tree));
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01004007
Chris Wilsonf2123812017-10-16 12:40:37 +01004008 /* This serializes freeing with the shrinker. Since the free
4009 * is delayed, first by RCU then by the workqueue, we want the
4010 * shrinker to be able to free pages of unreferenced objects,
4011 * or else we may oom whilst there are plenty of deferred
4012 * freed objects.
4013 */
4014 if (i915_gem_object_has_pages(obj)) {
4015 spin_lock(&i915->mm.obj_lock);
4016 list_del_init(&obj->mm.link);
4017 spin_unlock(&i915->mm.obj_lock);
4018 }
4019
Chris Wilsoncc731f52017-10-13 21:26:21 +01004020 mutex_unlock(&i915->drm.struct_mutex);
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01004021
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01004022 GEM_BUG_ON(obj->bind_count);
Chris Wilsona65adaf2017-10-09 09:43:57 +01004023 GEM_BUG_ON(obj->userfault_count);
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01004024 GEM_BUG_ON(atomic_read(&obj->frontbuffer_bits));
Chris Wilson67b48042017-08-22 12:05:16 +01004025 GEM_BUG_ON(!list_empty(&obj->lut_list));
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01004026
4027 if (obj->ops->release)
4028 obj->ops->release(obj);
4029
4030 if (WARN_ON(i915_gem_object_has_pinned_pages(obj)))
4031 atomic_set(&obj->mm.pages_pin_count, 0);
Chris Wilson548625e2016-11-01 12:11:34 +00004032 __i915_gem_object_put_pages(obj, I915_MM_NORMAL);
Chris Wilsonf1fa4f42017-10-13 21:26:13 +01004033 GEM_BUG_ON(i915_gem_object_has_pages(obj));
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01004034
4035 if (obj->base.import_attach)
4036 drm_prime_gem_destroy(&obj->base, NULL);
4037
Chris Wilsond07f0e52016-10-28 13:58:44 +01004038 reservation_object_fini(&obj->__builtin_resv);
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01004039 drm_gem_object_release(&obj->base);
4040 i915_gem_info_remove_obj(i915, obj->base.size);
4041
Andy Shevchenko6e514e32019-03-04 11:29:08 +02004042 bitmap_free(obj->bit_17);
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01004043 i915_gem_object_free(obj);
Chris Wilsoncc731f52017-10-13 21:26:21 +01004044
Chris Wilsonc9c704712018-02-19 22:06:31 +00004045 GEM_BUG_ON(!atomic_read(&i915->mm.free_count));
4046 atomic_dec(&i915->mm.free_count);
4047
Chris Wilsoncc731f52017-10-13 21:26:21 +01004048 if (on)
4049 cond_resched();
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01004050 }
Chris Wilson538ef962019-01-14 14:21:18 +00004051 intel_runtime_pm_put(i915, wakeref);
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01004052}
4053
4054static void i915_gem_flush_free_objects(struct drm_i915_private *i915)
4055{
4056 struct llist_node *freed;
4057
Chris Wilson87701b42017-10-13 21:26:20 +01004058 /* Free the oldest, most stale object to keep the free_list short */
4059 freed = NULL;
4060 if (!llist_empty(&i915->mm.free_list)) { /* quick test for hotpath */
4061 /* Only one consumer of llist_del_first() allowed */
4062 spin_lock(&i915->mm.free_lock);
4063 freed = llist_del_first(&i915->mm.free_list);
4064 spin_unlock(&i915->mm.free_lock);
4065 }
4066 if (unlikely(freed)) {
4067 freed->next = NULL;
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01004068 __i915_gem_free_objects(i915, freed);
Chris Wilson87701b42017-10-13 21:26:20 +01004069 }
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01004070}
4071
4072static void __i915_gem_free_work(struct work_struct *work)
4073{
4074 struct drm_i915_private *i915 =
4075 container_of(work, struct drm_i915_private, mm.free_work);
4076 struct llist_node *freed;
Chris Wilson26e12f82011-03-20 11:20:19 +00004077
Chris Wilson2ef1e722018-01-15 20:57:59 +00004078 /*
4079 * All file-owned VMA should have been released by this point through
Chris Wilsonb1f788c2016-08-04 07:52:45 +01004080 * i915_gem_close_object(), or earlier by i915_gem_context_close().
4081 * However, the object may also be bound into the global GTT (e.g.
4082 * older GPUs without per-process support, or for direct access through
4083 * the GTT either for the user or for scanout). Those VMA still need to
4084 * unbound now.
4085 */
Chris Wilson1488fc02012-04-24 15:47:31 +01004086
Chris Wilsonf991c492017-11-06 11:15:08 +00004087 spin_lock(&i915->mm.free_lock);
Chris Wilson5ad08be2017-04-07 11:25:51 +01004088 while ((freed = llist_del_all(&i915->mm.free_list))) {
Chris Wilsonf991c492017-11-06 11:15:08 +00004089 spin_unlock(&i915->mm.free_lock);
4090
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01004091 __i915_gem_free_objects(i915, freed);
Chris Wilson5ad08be2017-04-07 11:25:51 +01004092 if (need_resched())
Chris Wilsonf991c492017-11-06 11:15:08 +00004093 return;
4094
4095 spin_lock(&i915->mm.free_lock);
Chris Wilson5ad08be2017-04-07 11:25:51 +01004096 }
Chris Wilsonf991c492017-11-06 11:15:08 +00004097 spin_unlock(&i915->mm.free_lock);
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01004098}
4099
4100static void __i915_gem_free_object_rcu(struct rcu_head *head)
4101{
4102 struct drm_i915_gem_object *obj =
4103 container_of(head, typeof(*obj), rcu);
4104 struct drm_i915_private *i915 = to_i915(obj->base.dev);
4105
Chris Wilson2ef1e722018-01-15 20:57:59 +00004106 /*
Chris Wilson8811d612018-11-09 09:03:11 +00004107 * We reuse obj->rcu for the freed list, so we had better not treat
4108 * it like a rcu_head from this point forwards. And we expect all
4109 * objects to be freed via this path.
4110 */
4111 destroy_rcu_head(&obj->rcu);
4112
4113 /*
Chris Wilson2ef1e722018-01-15 20:57:59 +00004114 * Since we require blocking on struct_mutex to unbind the freed
4115 * object from the GPU before releasing resources back to the
4116 * system, we can not do that directly from the RCU callback (which may
4117 * be a softirq context), but must instead then defer that work onto a
4118 * kthread. We use the RCU callback rather than move the freed object
4119 * directly onto the work queue so that we can mix between using the
4120 * worker and performing frees directly from subsequent allocations for
4121 * crude but effective memory throttling.
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01004122 */
4123 if (llist_add(&obj->freed, &i915->mm.free_list))
Chris Wilsonbeacbd12018-01-15 12:28:45 +00004124 queue_work(i915->wq, &i915->mm.free_work);
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01004125}
4126
4127void i915_gem_free_object(struct drm_gem_object *gem_obj)
4128{
4129 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
4130
Chris Wilsonbc0629a2016-11-01 10:03:17 +00004131 if (obj->mm.quirked)
4132 __i915_gem_object_unpin_pages(obj);
4133
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01004134 if (discard_backing_storage(obj))
4135 obj->mm.madv = I915_MADV_DONTNEED;
Daniel Vettera071fa02014-06-18 23:28:09 +02004136
Chris Wilson2ef1e722018-01-15 20:57:59 +00004137 /*
4138 * Before we free the object, make sure any pure RCU-only
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01004139 * read-side critical sections are complete, e.g.
4140 * i915_gem_busy_ioctl(). For the corresponding synchronized
4141 * lookup see i915_gem_object_lookup_rcu().
4142 */
Chris Wilsonc9c704712018-02-19 22:06:31 +00004143 atomic_inc(&to_i915(obj->base.dev)->mm.free_count);
Chris Wilsonfbbd37b2016-10-28 13:58:42 +01004144 call_rcu(&obj->rcu, __i915_gem_free_object_rcu);
Chris Wilsonbe726152010-07-23 23:18:50 +01004145}
4146
Chris Wilsonf8a7fde2016-10-28 13:58:29 +01004147void __i915_gem_object_release_unless_active(struct drm_i915_gem_object *obj)
4148{
4149 lockdep_assert_held(&obj->base.dev->struct_mutex);
4150
Chris Wilsond1b48c12017-08-16 09:52:08 +01004151 if (!i915_gem_object_has_active_reference(obj) &&
4152 i915_gem_object_is_active(obj))
Chris Wilsonf8a7fde2016-10-28 13:58:29 +01004153 i915_gem_object_set_active_reference(obj);
4154 else
4155 i915_gem_object_put(obj);
4156}
4157
Chris Wilson24145512017-01-24 11:01:35 +00004158void i915_gem_sanitize(struct drm_i915_private *i915)
4159{
Chris Wilson538ef962019-01-14 14:21:18 +00004160 intel_wakeref_t wakeref;
4161
Chris Wilsonc3160da2018-05-31 09:22:45 +01004162 GEM_TRACE("\n");
4163
Chris Wilson538ef962019-01-14 14:21:18 +00004164 wakeref = intel_runtime_pm_get(i915);
Daniele Ceraolo Spurio3ceea6a2019-03-19 11:35:36 -07004165 intel_uncore_forcewake_get(&i915->uncore, FORCEWAKE_ALL);
Chris Wilsonc3160da2018-05-31 09:22:45 +01004166
4167 /*
4168 * As we have just resumed the machine and woken the device up from
4169 * deep PCI sleep (presumably D3_cold), assume the HW has been reset
4170 * back to defaults, recovering from whatever wedged state we left it
4171 * in and so worth trying to use the device once more.
4172 */
Chris Wilsonc41166f2019-02-20 14:56:37 +00004173 if (i915_terminally_wedged(i915))
Chris Wilsonf36325f2017-08-26 12:09:34 +01004174 i915_gem_unset_wedged(i915);
Chris Wilsonf36325f2017-08-26 12:09:34 +01004175
Chris Wilson24145512017-01-24 11:01:35 +00004176 /*
4177 * If we inherit context state from the BIOS or earlier occupants
4178 * of the GPU, the GPU may be in an inconsistent state when we
4179 * try to take over. The only way to remove the earlier state
4180 * is by resetting. However, resetting on earlier gen is tricky as
4181 * it may impact the display and we are uncertain about the stability
Joonas Lahtinenea117b82017-04-28 10:53:38 +03004182 * of the reset, so this could be applied to even earlier gen.
Chris Wilson24145512017-01-24 11:01:35 +00004183 */
Chris Wilson79ffac852019-04-24 21:07:17 +01004184 intel_gt_sanitize(i915, false);
Chris Wilsonc3160da2018-05-31 09:22:45 +01004185
Daniele Ceraolo Spurio3ceea6a2019-03-19 11:35:36 -07004186 intel_uncore_forcewake_put(&i915->uncore, FORCEWAKE_ALL);
Chris Wilson538ef962019-01-14 14:21:18 +00004187 intel_runtime_pm_put(i915, wakeref);
Chris Wilsonc3160da2018-05-31 09:22:45 +01004188
Chris Wilsoneb8d0f52019-01-25 13:22:28 +00004189 mutex_lock(&i915->drm.struct_mutex);
Chris Wilson4dfacb02018-05-31 09:22:43 +01004190 i915_gem_contexts_lost(i915);
4191 mutex_unlock(&i915->drm.struct_mutex);
Chris Wilson24145512017-01-24 11:01:35 +00004192}
4193
Tvrtko Ursulinc6be6072016-11-16 08:55:31 +00004194void i915_gem_init_swizzling(struct drm_i915_private *dev_priv)
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004195{
Tvrtko Ursulinc6be6072016-11-16 08:55:31 +00004196 if (INTEL_GEN(dev_priv) < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004197 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
4198 return;
4199
4200 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
4201 DISP_TILE_SURFACE_SWIZZLING);
4202
Lucas De Marchicf819ef2018-12-12 10:10:43 -08004203 if (IS_GEN(dev_priv, 5))
Daniel Vetter11782b02012-01-31 16:47:55 +01004204 return;
4205
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004206 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
Lucas De Marchicf819ef2018-12-12 10:10:43 -08004207 if (IS_GEN(dev_priv, 6))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004208 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_SNB));
Lucas De Marchicf819ef2018-12-12 10:10:43 -08004209 else if (IS_GEN(dev_priv, 7))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004210 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_IVB));
Lucas De Marchicf819ef2018-12-12 10:10:43 -08004211 else if (IS_GEN(dev_priv, 8))
Ben Widawsky31a53362013-11-02 21:07:04 -07004212 I915_WRITE(GAMTARBMODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_BDW));
Ben Widawsky8782e262012-12-18 10:31:23 -08004213 else
4214 BUG();
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004215}
Daniel Vettere21af882012-02-09 20:53:27 +01004216
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01004217static void init_unused_ring(struct drm_i915_private *dev_priv, u32 base)
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004218{
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004219 I915_WRITE(RING_CTL(base), 0);
4220 I915_WRITE(RING_HEAD(base), 0);
4221 I915_WRITE(RING_TAIL(base), 0);
4222 I915_WRITE(RING_START(base), 0);
4223}
4224
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01004225static void init_unused_rings(struct drm_i915_private *dev_priv)
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004226{
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01004227 if (IS_I830(dev_priv)) {
4228 init_unused_ring(dev_priv, PRB1_BASE);
4229 init_unused_ring(dev_priv, SRB0_BASE);
4230 init_unused_ring(dev_priv, SRB1_BASE);
4231 init_unused_ring(dev_priv, SRB2_BASE);
4232 init_unused_ring(dev_priv, SRB3_BASE);
Lucas De Marchicf819ef2018-12-12 10:10:43 -08004233 } else if (IS_GEN(dev_priv, 2)) {
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01004234 init_unused_ring(dev_priv, SRB0_BASE);
4235 init_unused_ring(dev_priv, SRB1_BASE);
Lucas De Marchicf819ef2018-12-12 10:10:43 -08004236 } else if (IS_GEN(dev_priv, 3)) {
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01004237 init_unused_ring(dev_priv, PRB1_BASE);
4238 init_unused_ring(dev_priv, PRB2_BASE);
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004239 }
4240}
4241
Chris Wilson20a8a742017-02-08 14:30:31 +00004242int i915_gem_init_hw(struct drm_i915_private *dev_priv)
4243{
Chris Wilsond200cda2016-04-28 09:56:44 +01004244 int ret;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004245
Chris Wilsonde867c22016-10-25 13:16:02 +01004246 dev_priv->gt.last_init_time = ktime_get();
4247
Chris Wilson5e4f5182015-02-13 14:35:59 +00004248 /* Double layer security blanket, see i915_gem_init() */
Daniele Ceraolo Spurio3ceea6a2019-03-19 11:35:36 -07004249 intel_uncore_forcewake_get(&dev_priv->uncore, FORCEWAKE_ALL);
Chris Wilson5e4f5182015-02-13 14:35:59 +00004250
Tvrtko Ursulin0031fb92016-11-04 14:42:44 +00004251 if (HAS_EDRAM(dev_priv) && INTEL_GEN(dev_priv) < 9)
Ben Widawsky05e21cc2013-07-04 11:02:04 -07004252 I915_WRITE(HSW_IDICR, I915_READ(HSW_IDICR) | IDIHASHMSK(0xf));
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004253
Tvrtko Ursulin772c2a52016-10-13 11:03:01 +01004254 if (IS_HASWELL(dev_priv))
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01004255 I915_WRITE(MI_PREDICATE_RESULT_2, IS_HSW_GT3(dev_priv) ?
Ville Syrjälä0bf21342013-11-29 14:56:12 +02004256 LOWER_SLICE_ENABLED : LOWER_SLICE_DISABLED);
Rodrigo Vivi94353732013-08-28 16:45:46 -03004257
Tvrtko Ursulin094304b2018-12-03 12:50:10 +00004258 /* Apply the GT workarounds... */
Tvrtko Ursulin25d140f2018-12-03 13:33:19 +00004259 intel_gt_apply_workarounds(dev_priv);
Tvrtko Ursulin094304b2018-12-03 12:50:10 +00004260 /* ...and determine whether they are sticking. */
4261 intel_gt_verify_workarounds(dev_priv, "init");
Oscar Mateo59b449d2018-04-10 09:12:47 -07004262
Tvrtko Ursulinc6be6072016-11-16 08:55:31 +00004263 i915_gem_init_swizzling(dev_priv);
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004264
Daniel Vetterd5abdfd2014-11-20 09:45:19 +01004265 /*
4266 * At least 830 can leave some of the unused rings
4267 * "active" (ie. head != tail) after resume which
4268 * will prevent c3 entry. Makes sure all unused rings
4269 * are totally idle.
4270 */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01004271 init_unused_rings(dev_priv);
Daniel Vetterd5abdfd2014-11-20 09:45:19 +01004272
Dave Gordoned54c1a2016-01-19 19:02:54 +00004273 BUG_ON(!dev_priv->kernel_context);
Chris Wilsonc41166f2019-02-20 14:56:37 +00004274 ret = i915_terminally_wedged(dev_priv);
4275 if (ret)
Chris Wilson6f74b362017-10-15 15:37:25 +01004276 goto out;
John Harrison90638cc2015-05-29 17:43:37 +01004277
Tvrtko Ursulinc6be6072016-11-16 08:55:31 +00004278 ret = i915_ppgtt_init_hw(dev_priv);
John Harrison4ad2fd82015-06-18 13:11:20 +01004279 if (ret) {
Chris Wilson8177e112018-02-07 11:15:45 +00004280 DRM_ERROR("Enabling PPGTT failed (%d)\n", ret);
John Harrison4ad2fd82015-06-18 13:11:20 +01004281 goto out;
4282 }
4283
Jackie Lif08e2032018-03-13 17:32:53 -07004284 ret = intel_wopcm_init_hw(&dev_priv->wopcm);
4285 if (ret) {
4286 DRM_ERROR("Enabling WOPCM failed (%d)\n", ret);
4287 goto out;
4288 }
4289
Michał Winiarski9bdc3572017-10-25 18:25:19 +01004290 /* We can't enable contexts until all firmware is loaded */
4291 ret = intel_uc_init_hw(dev_priv);
Chris Wilson8177e112018-02-07 11:15:45 +00004292 if (ret) {
4293 DRM_ERROR("Enabling uc failed (%d)\n", ret);
Michał Winiarski9bdc3572017-10-25 18:25:19 +01004294 goto out;
Chris Wilson8177e112018-02-07 11:15:45 +00004295 }
Michał Winiarski9bdc3572017-10-25 18:25:19 +01004296
Tvrtko Ursulinbf9e8422016-12-01 14:16:38 +00004297 intel_mocs_init_l3cc_table(dev_priv);
Peter Antoine0ccdacf2016-04-13 15:03:25 +01004298
Chris Wilson136109c2017-11-02 13:14:30 +00004299 /* Only when the HW is re-initialised, can we replay the requests */
Chris Wilson79ffac852019-04-24 21:07:17 +01004300 ret = intel_engines_resume(dev_priv);
Michal Wajdeczkob96f6eb2018-06-05 12:24:43 +00004301 if (ret)
4302 goto cleanup_uc;
Michał Winiarski60c0a662018-07-12 14:48:10 +02004303
Daniele Ceraolo Spurio3ceea6a2019-03-19 11:35:36 -07004304 intel_uncore_forcewake_put(&dev_priv->uncore, FORCEWAKE_ALL);
Michał Winiarski60c0a662018-07-12 14:48:10 +02004305
Chris Wilson79ffac852019-04-24 21:07:17 +01004306 intel_engines_set_scheduler_caps(dev_priv);
Michał Winiarski60c0a662018-07-12 14:48:10 +02004307 return 0;
Michal Wajdeczkob96f6eb2018-06-05 12:24:43 +00004308
4309cleanup_uc:
4310 intel_uc_fini_hw(dev_priv);
Michał Winiarski60c0a662018-07-12 14:48:10 +02004311out:
Daniele Ceraolo Spurio3ceea6a2019-03-19 11:35:36 -07004312 intel_uncore_forcewake_put(&dev_priv->uncore, FORCEWAKE_ALL);
Michał Winiarski60c0a662018-07-12 14:48:10 +02004313
4314 return ret;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004315}
4316
Chris Wilsond2b4b972017-11-10 14:26:33 +00004317static int __intel_engines_record_defaults(struct drm_i915_private *i915)
4318{
Chris Wilsond2b4b972017-11-10 14:26:33 +00004319 struct intel_engine_cs *engine;
Chris Wilson5e2a0412019-04-26 17:33:34 +01004320 struct i915_gem_context *ctx;
4321 struct i915_gem_engines *e;
Chris Wilsond2b4b972017-11-10 14:26:33 +00004322 enum intel_engine_id id;
Chris Wilson604c37d2019-03-08 09:36:55 +00004323 int err = 0;
Chris Wilsond2b4b972017-11-10 14:26:33 +00004324
4325 /*
4326 * As we reset the gpu during very early sanitisation, the current
4327 * register state on the GPU should reflect its defaults values.
4328 * We load a context onto the hw (with restore-inhibit), then switch
4329 * over to a second context to save that default register state. We
4330 * can then prime every new context with that state so they all start
4331 * from the same default HW values.
4332 */
4333
4334 ctx = i915_gem_context_create_kernel(i915, 0);
4335 if (IS_ERR(ctx))
4336 return PTR_ERR(ctx);
4337
Chris Wilson5e2a0412019-04-26 17:33:34 +01004338 e = i915_gem_context_lock_engines(ctx);
4339
Chris Wilsond2b4b972017-11-10 14:26:33 +00004340 for_each_engine(engine, i915, id) {
Chris Wilson5e2a0412019-04-26 17:33:34 +01004341 struct intel_context *ce = e->engines[id];
Chris Wilsone61e0f52018-02-21 09:56:36 +00004342 struct i915_request *rq;
Chris Wilsond2b4b972017-11-10 14:26:33 +00004343
Chris Wilson5e2a0412019-04-26 17:33:34 +01004344 rq = intel_context_create_request(ce);
Chris Wilsond2b4b972017-11-10 14:26:33 +00004345 if (IS_ERR(rq)) {
4346 err = PTR_ERR(rq);
Chris Wilson5e2a0412019-04-26 17:33:34 +01004347 goto err_active;
Chris Wilsond2b4b972017-11-10 14:26:33 +00004348 }
4349
Chris Wilson3fef5cd2017-11-20 10:20:02 +00004350 err = 0;
Chris Wilson5e2a0412019-04-26 17:33:34 +01004351 if (rq->engine->init_context)
4352 err = rq->engine->init_context(rq);
Chris Wilsond2b4b972017-11-10 14:26:33 +00004353
Chris Wilson697b9a82018-06-12 11:51:35 +01004354 i915_request_add(rq);
Chris Wilsond2b4b972017-11-10 14:26:33 +00004355 if (err)
4356 goto err_active;
4357 }
4358
Chris Wilson604c37d2019-03-08 09:36:55 +00004359 /* Flush the default context image to memory, and enable powersaving. */
Chris Wilson23c3c3d2019-04-24 21:07:14 +01004360 if (!i915_gem_load_power_context(i915)) {
Chris Wilson604c37d2019-03-08 09:36:55 +00004361 err = -EIO;
Chris Wilsond2b4b972017-11-10 14:26:33 +00004362 goto err_active;
Chris Wilson2621cef2018-07-09 13:20:43 +01004363 }
Chris Wilsond2b4b972017-11-10 14:26:33 +00004364
Chris Wilsond2b4b972017-11-10 14:26:33 +00004365 for_each_engine(engine, i915, id) {
Chris Wilson5e2a0412019-04-26 17:33:34 +01004366 struct intel_context *ce = e->engines[id];
4367 struct i915_vma *state = ce->state;
Chris Wilson37d7c9c2018-09-14 13:35:03 +01004368 void *vaddr;
Chris Wilsond2b4b972017-11-10 14:26:33 +00004369
Chris Wilsond2b4b972017-11-10 14:26:33 +00004370 if (!state)
4371 continue;
4372
Chris Wilson08819542019-03-08 13:25:22 +00004373 GEM_BUG_ON(intel_context_is_pinned(ce));
Chris Wilsonc4d52fe2019-03-08 13:25:19 +00004374
Chris Wilsond2b4b972017-11-10 14:26:33 +00004375 /*
4376 * As we will hold a reference to the logical state, it will
4377 * not be torn down with the context, and importantly the
4378 * object will hold onto its vma (making it possible for a
4379 * stray GTT write to corrupt our defaults). Unmap the vma
4380 * from the GTT to prevent such accidents and reclaim the
4381 * space.
4382 */
4383 err = i915_vma_unbind(state);
4384 if (err)
4385 goto err_active;
4386
4387 err = i915_gem_object_set_to_cpu_domain(state->obj, false);
4388 if (err)
4389 goto err_active;
4390
4391 engine->default_state = i915_gem_object_get(state->obj);
Chris Wilsona679f582019-03-21 16:19:07 +00004392 i915_gem_object_set_cache_coherency(engine->default_state,
4393 I915_CACHE_LLC);
Chris Wilson37d7c9c2018-09-14 13:35:03 +01004394
4395 /* Check we can acquire the image of the context state */
4396 vaddr = i915_gem_object_pin_map(engine->default_state,
Chris Wilson666424a2018-09-14 13:35:04 +01004397 I915_MAP_FORCE_WB);
Chris Wilson37d7c9c2018-09-14 13:35:03 +01004398 if (IS_ERR(vaddr)) {
4399 err = PTR_ERR(vaddr);
4400 goto err_active;
4401 }
4402
4403 i915_gem_object_unpin_map(engine->default_state);
Chris Wilsond2b4b972017-11-10 14:26:33 +00004404 }
4405
4406 if (IS_ENABLED(CONFIG_DRM_I915_DEBUG_GEM)) {
4407 unsigned int found = intel_engines_has_context_isolation(i915);
4408
4409 /*
4410 * Make sure that classes with multiple engine instances all
4411 * share the same basic configuration.
4412 */
4413 for_each_engine(engine, i915, id) {
4414 unsigned int bit = BIT(engine->uabi_class);
4415 unsigned int expected = engine->default_state ? bit : 0;
4416
4417 if ((found & bit) != expected) {
4418 DRM_ERROR("mismatching default context state for class %d on engine %s\n",
4419 engine->uabi_class, engine->name);
4420 }
4421 }
4422 }
4423
4424out_ctx:
Chris Wilson5e2a0412019-04-26 17:33:34 +01004425 i915_gem_context_unlock_engines(ctx);
Chris Wilsond2b4b972017-11-10 14:26:33 +00004426 i915_gem_context_set_closed(ctx);
4427 i915_gem_context_put(ctx);
4428 return err;
4429
4430err_active:
4431 /*
4432 * If we have to abandon now, we expect the engines to be idle
Chris Wilson604c37d2019-03-08 09:36:55 +00004433 * and ready to be torn-down. The quickest way we can accomplish
4434 * this is by declaring ourselves wedged.
Chris Wilsond2b4b972017-11-10 14:26:33 +00004435 */
Chris Wilson604c37d2019-03-08 09:36:55 +00004436 i915_gem_set_wedged(i915);
Chris Wilsond2b4b972017-11-10 14:26:33 +00004437 goto out_ctx;
4438}
4439
Chris Wilson51797492018-12-04 14:15:16 +00004440static int
4441i915_gem_init_scratch(struct drm_i915_private *i915, unsigned int size)
4442{
4443 struct drm_i915_gem_object *obj;
4444 struct i915_vma *vma;
4445 int ret;
4446
4447 obj = i915_gem_object_create_stolen(i915, size);
4448 if (!obj)
4449 obj = i915_gem_object_create_internal(i915, size);
4450 if (IS_ERR(obj)) {
4451 DRM_ERROR("Failed to allocate scratch page\n");
4452 return PTR_ERR(obj);
4453 }
4454
4455 vma = i915_vma_instance(obj, &i915->ggtt.vm, NULL);
4456 if (IS_ERR(vma)) {
4457 ret = PTR_ERR(vma);
4458 goto err_unref;
4459 }
4460
4461 ret = i915_vma_pin(vma, 0, 0, PIN_GLOBAL | PIN_HIGH);
4462 if (ret)
4463 goto err_unref;
4464
4465 i915->gt.scratch = vma;
4466 return 0;
4467
4468err_unref:
4469 i915_gem_object_put(obj);
4470 return ret;
4471}
4472
4473static void i915_gem_fini_scratch(struct drm_i915_private *i915)
4474{
4475 i915_vma_unpin_and_release(&i915->gt.scratch, 0);
4476}
4477
Chris Wilson254e1182019-04-17 08:56:28 +01004478static int intel_engines_verify_workarounds(struct drm_i915_private *i915)
4479{
4480 struct intel_engine_cs *engine;
4481 enum intel_engine_id id;
4482 int err = 0;
4483
4484 if (!IS_ENABLED(CONFIG_DRM_I915_DEBUG_GEM))
4485 return 0;
4486
4487 for_each_engine(engine, i915, id) {
4488 if (intel_engine_verify_workarounds(engine, "load"))
4489 err = -EIO;
4490 }
4491
4492 return err;
4493}
4494
Tvrtko Ursulinbf9e8422016-12-01 14:16:38 +00004495int i915_gem_init(struct drm_i915_private *dev_priv)
Chris Wilson1070a422012-04-24 15:47:41 +01004496{
Chris Wilson1070a422012-04-24 15:47:41 +01004497 int ret;
4498
Changbin Du52b24162018-05-08 17:07:05 +08004499 /* We need to fallback to 4K pages if host doesn't support huge gtt. */
4500 if (intel_vgpu_active(dev_priv) && !intel_vgpu_has_huge_gtt(dev_priv))
Matthew Auldda9fe3f32017-10-06 23:18:31 +01004501 mkwrite_device_info(dev_priv)->page_sizes =
4502 I915_GTT_PAGE_SIZE_4K;
4503
Chris Wilson94312822017-05-03 10:39:18 +01004504 dev_priv->mm.unordered_timeline = dma_fence_context_alloc(1);
Chris Wilson57822dc2017-02-22 11:40:48 +00004505
Chris Wilson1e345562019-01-28 10:23:56 +00004506 i915_timelines_init(dev_priv);
4507
Chris Wilsonee487002017-11-22 17:26:21 +00004508 ret = i915_gem_init_userptr(dev_priv);
4509 if (ret)
4510 return ret;
4511
Sagar Arun Kamble70deead2018-01-24 21:16:58 +05304512 ret = intel_uc_init_misc(dev_priv);
Michał Winiarski3176ff42017-12-13 23:13:47 +01004513 if (ret)
4514 return ret;
4515
Michal Wajdeczkof7dc0152018-06-28 14:15:21 +00004516 ret = intel_wopcm_init(&dev_priv->wopcm);
4517 if (ret)
4518 goto err_uc_misc;
4519
Chris Wilson5e4f5182015-02-13 14:35:59 +00004520 /* This is just a security blanket to placate dragons.
4521 * On some systems, we very sporadically observe that the first TLBs
4522 * used by the CS may be stale, despite us poking the TLB reset. If
4523 * we hold the forcewake during initialisation these problems
4524 * just magically go away.
4525 */
Chris Wilsonee487002017-11-22 17:26:21 +00004526 mutex_lock(&dev_priv->drm.struct_mutex);
Daniele Ceraolo Spurio3ceea6a2019-03-19 11:35:36 -07004527 intel_uncore_forcewake_get(&dev_priv->uncore, FORCEWAKE_ALL);
Chris Wilson5e4f5182015-02-13 14:35:59 +00004528
Chris Wilsonf6b9d5c2016-08-04 07:52:23 +01004529 ret = i915_gem_init_ggtt(dev_priv);
Chris Wilson6ca9a2b2017-12-13 13:43:47 +00004530 if (ret) {
4531 GEM_BUG_ON(ret == -EIO);
4532 goto err_unlock;
4533 }
Jesse Barnesd62b4892013-03-08 10:45:53 -08004534
Chris Wilson51797492018-12-04 14:15:16 +00004535 ret = i915_gem_init_scratch(dev_priv,
Lucas De Marchicf819ef2018-12-12 10:10:43 -08004536 IS_GEN(dev_priv, 2) ? SZ_256K : PAGE_SIZE);
Chris Wilson6ca9a2b2017-12-13 13:43:47 +00004537 if (ret) {
4538 GEM_BUG_ON(ret == -EIO);
4539 goto err_ggtt;
4540 }
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004541
Chris Wilson11334c62019-04-26 17:33:33 +01004542 ret = intel_engines_setup(dev_priv);
4543 if (ret) {
4544 GEM_BUG_ON(ret == -EIO);
4545 goto err_unlock;
4546 }
4547
Chris Wilson51797492018-12-04 14:15:16 +00004548 ret = i915_gem_contexts_init(dev_priv);
4549 if (ret) {
4550 GEM_BUG_ON(ret == -EIO);
4551 goto err_scratch;
4552 }
4553
Tvrtko Ursulinbf9e8422016-12-01 14:16:38 +00004554 ret = intel_engines_init(dev_priv);
Chris Wilson6ca9a2b2017-12-13 13:43:47 +00004555 if (ret) {
4556 GEM_BUG_ON(ret == -EIO);
4557 goto err_context;
4558 }
Daniel Vetter53ca26c2012-04-26 23:28:03 +02004559
Chris Wilsonf58d13d2017-11-10 14:26:29 +00004560 intel_init_gt_powersave(dev_priv);
4561
Michał Winiarski61b5c152017-12-13 23:13:48 +01004562 ret = intel_uc_init(dev_priv);
Chris Wilsoncc6a8182017-11-10 14:26:30 +00004563 if (ret)
Chris Wilson6ca9a2b2017-12-13 13:43:47 +00004564 goto err_pm;
Chris Wilsoncc6a8182017-11-10 14:26:30 +00004565
Michał Winiarski61b5c152017-12-13 23:13:48 +01004566 ret = i915_gem_init_hw(dev_priv);
4567 if (ret)
4568 goto err_uc_init;
4569
Chris Wilsoncc6a8182017-11-10 14:26:30 +00004570 /*
4571 * Despite its name intel_init_clock_gating applies both display
4572 * clock gating workarounds; GT mmio workarounds and the occasional
4573 * GT power context workaround. Worse, sometimes it includes a context
4574 * register workaround which we need to apply before we record the
4575 * default HW state for all contexts.
4576 *
4577 * FIXME: break up the workarounds and apply them at the right time!
4578 */
4579 intel_init_clock_gating(dev_priv);
4580
Chris Wilson254e1182019-04-17 08:56:28 +01004581 ret = intel_engines_verify_workarounds(dev_priv);
4582 if (ret)
4583 goto err_init_hw;
4584
Chris Wilsond2b4b972017-11-10 14:26:33 +00004585 ret = __intel_engines_record_defaults(dev_priv);
Chris Wilson6ca9a2b2017-12-13 13:43:47 +00004586 if (ret)
4587 goto err_init_hw;
4588
4589 if (i915_inject_load_failure()) {
4590 ret = -ENODEV;
4591 goto err_init_hw;
4592 }
4593
4594 if (i915_inject_load_failure()) {
4595 ret = -EIO;
4596 goto err_init_hw;
4597 }
4598
Daniele Ceraolo Spurio3ceea6a2019-03-19 11:35:36 -07004599 intel_uncore_forcewake_put(&dev_priv->uncore, FORCEWAKE_ALL);
Chris Wilson6ca9a2b2017-12-13 13:43:47 +00004600 mutex_unlock(&dev_priv->drm.struct_mutex);
4601
4602 return 0;
4603
4604 /*
4605 * Unwinding is complicated by that we want to handle -EIO to mean
4606 * disable GPU submission but keep KMS alive. We want to mark the
4607 * HW as irrevisibly wedged, but keep enough state around that the
4608 * driver doesn't explode during runtime.
4609 */
4610err_init_hw:
Chris Wilson8571a052018-06-06 15:54:41 +01004611 mutex_unlock(&dev_priv->drm.struct_mutex);
4612
Chris Wilson79ffac852019-04-24 21:07:17 +01004613 i915_gem_set_wedged(dev_priv);
Chris Wilson5861b012019-03-08 09:36:54 +00004614 i915_gem_suspend(dev_priv);
Chris Wilson8571a052018-06-06 15:54:41 +01004615 i915_gem_suspend_late(dev_priv);
4616
Chris Wilson8bcf9f72018-07-10 10:44:20 +01004617 i915_gem_drain_workqueue(dev_priv);
4618
Chris Wilson8571a052018-06-06 15:54:41 +01004619 mutex_lock(&dev_priv->drm.struct_mutex);
Chris Wilson6ca9a2b2017-12-13 13:43:47 +00004620 intel_uc_fini_hw(dev_priv);
Michał Winiarski61b5c152017-12-13 23:13:48 +01004621err_uc_init:
4622 intel_uc_fini(dev_priv);
Chris Wilson6ca9a2b2017-12-13 13:43:47 +00004623err_pm:
4624 if (ret != -EIO) {
4625 intel_cleanup_gt_powersave(dev_priv);
Chris Wilson45b9c962019-05-01 11:32:04 +01004626 intel_engines_cleanup(dev_priv);
Chris Wilson6ca9a2b2017-12-13 13:43:47 +00004627 }
4628err_context:
4629 if (ret != -EIO)
4630 i915_gem_contexts_fini(dev_priv);
Chris Wilson51797492018-12-04 14:15:16 +00004631err_scratch:
4632 i915_gem_fini_scratch(dev_priv);
Chris Wilson6ca9a2b2017-12-13 13:43:47 +00004633err_ggtt:
4634err_unlock:
Daniele Ceraolo Spurio3ceea6a2019-03-19 11:35:36 -07004635 intel_uncore_forcewake_put(&dev_priv->uncore, FORCEWAKE_ALL);
Chris Wilson6ca9a2b2017-12-13 13:43:47 +00004636 mutex_unlock(&dev_priv->drm.struct_mutex);
4637
Michal Wajdeczkof7dc0152018-06-28 14:15:21 +00004638err_uc_misc:
Sagar Arun Kamble70deead2018-01-24 21:16:58 +05304639 intel_uc_fini_misc(dev_priv);
Sagar Arun Kambleda943b52018-01-10 18:24:16 +05304640
Chris Wilson1e345562019-01-28 10:23:56 +00004641 if (ret != -EIO) {
Chris Wilson6ca9a2b2017-12-13 13:43:47 +00004642 i915_gem_cleanup_userptr(dev_priv);
Chris Wilson1e345562019-01-28 10:23:56 +00004643 i915_timelines_fini(dev_priv);
4644 }
Chris Wilson6ca9a2b2017-12-13 13:43:47 +00004645
Chris Wilson60990322014-04-09 09:19:42 +01004646 if (ret == -EIO) {
Chris Wilson7ed43df2018-07-26 09:50:32 +01004647 mutex_lock(&dev_priv->drm.struct_mutex);
4648
Chris Wilson6ca9a2b2017-12-13 13:43:47 +00004649 /*
4650 * Allow engine initialisation to fail by marking the GPU as
Chris Wilson60990322014-04-09 09:19:42 +01004651 * wedged. But we only want to do this where the GPU is angry,
4652 * for all other failure, such as an allocation failure, bail.
4653 */
Chris Wilsonc41166f2019-02-20 14:56:37 +00004654 if (!i915_reset_failed(dev_priv)) {
Chris Wilson51c18bf2018-06-09 12:10:58 +01004655 i915_load_error(dev_priv,
4656 "Failed to initialize GPU, declaring it wedged!\n");
Chris Wilson6f74b362017-10-15 15:37:25 +01004657 i915_gem_set_wedged(dev_priv);
4658 }
Chris Wilson7ed43df2018-07-26 09:50:32 +01004659
4660 /* Minimal basic recovery for KMS */
4661 ret = i915_ggtt_enable_hw(dev_priv);
4662 i915_gem_restore_gtt_mappings(dev_priv);
4663 i915_gem_restore_fences(dev_priv);
4664 intel_init_clock_gating(dev_priv);
4665
4666 mutex_unlock(&dev_priv->drm.struct_mutex);
Chris Wilson1070a422012-04-24 15:47:41 +01004667 }
4668
Chris Wilson6ca9a2b2017-12-13 13:43:47 +00004669 i915_gem_drain_freed_objects(dev_priv);
Chris Wilson60990322014-04-09 09:19:42 +01004670 return ret;
Chris Wilson1070a422012-04-24 15:47:41 +01004671}
4672
Michal Wajdeczko8979187a2018-06-04 09:00:32 +00004673void i915_gem_fini(struct drm_i915_private *dev_priv)
4674{
Chris Wilson79ffac852019-04-24 21:07:17 +01004675 GEM_BUG_ON(dev_priv->gt.awake);
4676
Chris Wilsonb27e35a2019-05-27 12:51:14 +01004677 intel_wakeref_auto_fini(&dev_priv->mm.userfault_wakeref);
4678
Michal Wajdeczko8979187a2018-06-04 09:00:32 +00004679 i915_gem_suspend_late(dev_priv);
Chris Wilson30b710842018-08-12 23:36:29 +01004680 intel_disable_gt_powersave(dev_priv);
Michal Wajdeczko8979187a2018-06-04 09:00:32 +00004681
4682 /* Flush any outstanding unpin_work. */
4683 i915_gem_drain_workqueue(dev_priv);
4684
4685 mutex_lock(&dev_priv->drm.struct_mutex);
4686 intel_uc_fini_hw(dev_priv);
4687 intel_uc_fini(dev_priv);
Chris Wilson45b9c962019-05-01 11:32:04 +01004688 intel_engines_cleanup(dev_priv);
Michal Wajdeczko8979187a2018-06-04 09:00:32 +00004689 i915_gem_contexts_fini(dev_priv);
Chris Wilson51797492018-12-04 14:15:16 +00004690 i915_gem_fini_scratch(dev_priv);
Michal Wajdeczko8979187a2018-06-04 09:00:32 +00004691 mutex_unlock(&dev_priv->drm.struct_mutex);
4692
Tvrtko Ursulin25d140f2018-12-03 13:33:19 +00004693 intel_wa_list_free(&dev_priv->gt_wa_list);
4694
Chris Wilson30b710842018-08-12 23:36:29 +01004695 intel_cleanup_gt_powersave(dev_priv);
4696
Michal Wajdeczko8979187a2018-06-04 09:00:32 +00004697 intel_uc_fini_misc(dev_priv);
4698 i915_gem_cleanup_userptr(dev_priv);
Chris Wilson1e345562019-01-28 10:23:56 +00004699 i915_timelines_fini(dev_priv);
Michal Wajdeczko8979187a2018-06-04 09:00:32 +00004700
4701 i915_gem_drain_freed_objects(dev_priv);
4702
4703 WARN_ON(!list_empty(&dev_priv->contexts.list));
4704}
4705
Chris Wilson24145512017-01-24 11:01:35 +00004706void i915_gem_init_mmio(struct drm_i915_private *i915)
4707{
4708 i915_gem_sanitize(i915);
4709}
4710
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004711void
Imre Deak40ae4e12016-03-16 14:54:03 +02004712i915_gem_load_init_fences(struct drm_i915_private *dev_priv)
4713{
Chris Wilson49ef5292016-08-18 17:17:00 +01004714 int i;
Imre Deak40ae4e12016-03-16 14:54:03 +02004715
Tvrtko Ursulinc56b89f2018-02-09 21:58:46 +00004716 if (INTEL_GEN(dev_priv) >= 7 && !IS_VALLEYVIEW(dev_priv) &&
Imre Deak40ae4e12016-03-16 14:54:03 +02004717 !IS_CHERRYVIEW(dev_priv))
4718 dev_priv->num_fence_regs = 32;
Tvrtko Ursulinc56b89f2018-02-09 21:58:46 +00004719 else if (INTEL_GEN(dev_priv) >= 4 ||
Jani Nikula73f67aa2016-12-07 22:48:09 +02004720 IS_I945G(dev_priv) || IS_I945GM(dev_priv) ||
4721 IS_G33(dev_priv) || IS_PINEVIEW(dev_priv))
Imre Deak40ae4e12016-03-16 14:54:03 +02004722 dev_priv->num_fence_regs = 16;
4723 else
4724 dev_priv->num_fence_regs = 8;
4725
Chris Wilsonc0336662016-05-06 15:40:21 +01004726 if (intel_vgpu_active(dev_priv))
Imre Deak40ae4e12016-03-16 14:54:03 +02004727 dev_priv->num_fence_regs =
4728 I915_READ(vgtif_reg(avail_rs.fence_num));
4729
4730 /* Initialize fence registers to zero */
Chris Wilson49ef5292016-08-18 17:17:00 +01004731 for (i = 0; i < dev_priv->num_fence_regs; i++) {
4732 struct drm_i915_fence_reg *fence = &dev_priv->fence_regs[i];
4733
4734 fence->i915 = dev_priv;
4735 fence->id = i;
4736 list_add_tail(&fence->link, &dev_priv->mm.fence_list);
4737 }
Tvrtko Ursulin4362f4f2016-11-16 08:55:33 +00004738 i915_gem_restore_fences(dev_priv);
Imre Deak40ae4e12016-03-16 14:54:03 +02004739
Tvrtko Ursulin4362f4f2016-11-16 08:55:33 +00004740 i915_gem_detect_bit_6_swizzle(dev_priv);
Imre Deak40ae4e12016-03-16 14:54:03 +02004741}
4742
Chris Wilson9c52d1c2017-11-10 23:24:47 +00004743static void i915_gem_init__mm(struct drm_i915_private *i915)
4744{
4745 spin_lock_init(&i915->mm.object_stat_lock);
4746 spin_lock_init(&i915->mm.obj_lock);
4747 spin_lock_init(&i915->mm.free_lock);
4748
4749 init_llist_head(&i915->mm.free_list);
4750
4751 INIT_LIST_HEAD(&i915->mm.unbound_list);
4752 INIT_LIST_HEAD(&i915->mm.bound_list);
4753 INIT_LIST_HEAD(&i915->mm.fence_list);
Chris Wilsonb27e35a2019-05-27 12:51:14 +01004754
Chris Wilson9c52d1c2017-11-10 23:24:47 +00004755 INIT_LIST_HEAD(&i915->mm.userfault_list);
Chris Wilsonb27e35a2019-05-27 12:51:14 +01004756 intel_wakeref_auto_init(&i915->mm.userfault_wakeref, i915);
Chris Wilson9c52d1c2017-11-10 23:24:47 +00004757
4758 INIT_WORK(&i915->mm.free_work, __i915_gem_free_work);
4759}
4760
Michal Wajdeczkoa0de9082018-03-23 12:34:49 +00004761int i915_gem_init_early(struct drm_i915_private *dev_priv)
Eric Anholt673a3942008-07-30 12:06:12 -07004762{
Chris Wilson13f1bfd2019-02-28 10:20:34 +00004763 int err;
Chris Wilsond1b48c12017-08-16 09:52:08 +01004764
Chris Wilson79ffac852019-04-24 21:07:17 +01004765 intel_gt_pm_init(dev_priv);
4766
Chris Wilson643b4502018-04-30 14:15:03 +01004767 INIT_LIST_HEAD(&dev_priv->gt.active_rings);
Chris Wilson3365e222018-05-03 20:51:14 +01004768 INIT_LIST_HEAD(&dev_priv->gt.closed_vma);
Chris Wilson643b4502018-04-30 14:15:03 +01004769
Chris Wilson9c52d1c2017-11-10 23:24:47 +00004770 i915_gem_init__mm(dev_priv);
Chris Wilson23c3c3d2019-04-24 21:07:14 +01004771 i915_gem_init__pm(dev_priv);
Chris Wilsonf2123812017-10-16 12:40:37 +01004772
Chris Wilson1f15b762016-07-01 17:23:14 +01004773 init_waitqueue_head(&dev_priv->gpu_error.wait_queue);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01004774 init_waitqueue_head(&dev_priv->gpu_error.reset_queue);
Chris Wilson18bb2bc2019-01-14 21:04:01 +00004775 mutex_init(&dev_priv->gpu_error.wedge_mutex);
Chris Wilson2caffbf2019-02-08 15:37:03 +00004776 init_srcu_struct(&dev_priv->gpu_error.reset_backoff_srcu);
Chris Wilson31169712009-09-14 16:50:28 +01004777
Joonas Lahtinen6f633402016-09-01 14:58:21 +03004778 atomic_set(&dev_priv->mm.bsd_engine_dispatch_index, 0);
4779
Chris Wilsonb5add952016-08-04 16:32:36 +01004780 spin_lock_init(&dev_priv->fb_tracking.lock);
Chris Wilson73cb9702016-10-28 13:58:46 +01004781
Matthew Auld465c4032017-10-06 23:18:14 +01004782 err = i915_gemfs_init(dev_priv);
4783 if (err)
4784 DRM_NOTE("Unable to create a private tmpfs mount, hugepage support will be disabled(%d).\n", err);
4785
Chris Wilson73cb9702016-10-28 13:58:46 +01004786 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07004787}
Dave Airlie71acb5e2008-12-30 20:31:46 +10004788
Michal Wajdeczkoa0de9082018-03-23 12:34:49 +00004789void i915_gem_cleanup_early(struct drm_i915_private *dev_priv)
Imre Deakd64aa092016-01-19 15:26:29 +02004790{
Chris Wilsonc4d4c1c2017-02-10 16:35:23 +00004791 i915_gem_drain_freed_objects(dev_priv);
Chris Wilsonc9c704712018-02-19 22:06:31 +00004792 GEM_BUG_ON(!llist_empty(&dev_priv->mm.free_list));
4793 GEM_BUG_ON(atomic_read(&dev_priv->mm.free_count));
Chris Wilsonc4d4c1c2017-02-10 16:35:23 +00004794 WARN_ON(dev_priv->mm.object_count);
Matthew Auldea84aa72016-11-17 21:04:11 +00004795
Chris Wilson2caffbf2019-02-08 15:37:03 +00004796 cleanup_srcu_struct(&dev_priv->gpu_error.reset_backoff_srcu);
4797
Matthew Auld465c4032017-10-06 23:18:14 +01004798 i915_gemfs_fini(dev_priv);
Imre Deakd64aa092016-01-19 15:26:29 +02004799}
4800
Chris Wilson6a800ea2016-09-21 14:51:07 +01004801int i915_gem_freeze(struct drm_i915_private *dev_priv)
4802{
Chris Wilsond0aa3012017-04-07 11:25:49 +01004803 /* Discard all purgeable objects, let userspace recover those as
4804 * required after resuming.
4805 */
Chris Wilson6a800ea2016-09-21 14:51:07 +01004806 i915_gem_shrink_all(dev_priv);
Chris Wilson6a800ea2016-09-21 14:51:07 +01004807
Chris Wilson6a800ea2016-09-21 14:51:07 +01004808 return 0;
4809}
4810
Chris Wilson95c778d2018-06-01 15:41:25 +01004811int i915_gem_freeze_late(struct drm_i915_private *i915)
Chris Wilson461fb992016-05-14 07:26:33 +01004812{
4813 struct drm_i915_gem_object *obj;
Chris Wilson7aab2d52016-09-09 20:02:18 +01004814 struct list_head *phases[] = {
Chris Wilson95c778d2018-06-01 15:41:25 +01004815 &i915->mm.unbound_list,
4816 &i915->mm.bound_list,
Chris Wilson7aab2d52016-09-09 20:02:18 +01004817 NULL
Chris Wilson95c778d2018-06-01 15:41:25 +01004818 }, **phase;
Chris Wilson461fb992016-05-14 07:26:33 +01004819
Chris Wilson95c778d2018-06-01 15:41:25 +01004820 /*
4821 * Called just before we write the hibernation image.
Chris Wilson461fb992016-05-14 07:26:33 +01004822 *
4823 * We need to update the domain tracking to reflect that the CPU
4824 * will be accessing all the pages to create and restore from the
4825 * hibernation, and so upon restoration those pages will be in the
4826 * CPU domain.
4827 *
4828 * To make sure the hibernation image contains the latest state,
4829 * we update that state just before writing out the image.
Chris Wilson7aab2d52016-09-09 20:02:18 +01004830 *
4831 * To try and reduce the hibernation image, we manually shrink
Chris Wilsond0aa3012017-04-07 11:25:49 +01004832 * the objects as well, see i915_gem_freeze()
Chris Wilson461fb992016-05-14 07:26:33 +01004833 */
4834
Chris Wilson95c778d2018-06-01 15:41:25 +01004835 i915_gem_shrink(i915, -1UL, NULL, I915_SHRINK_UNBOUND);
4836 i915_gem_drain_freed_objects(i915);
Chris Wilson461fb992016-05-14 07:26:33 +01004837
Chris Wilson95c778d2018-06-01 15:41:25 +01004838 mutex_lock(&i915->drm.struct_mutex);
4839 for (phase = phases; *phase; phase++) {
4840 list_for_each_entry(obj, *phase, mm.link)
4841 WARN_ON(i915_gem_object_set_to_cpu_domain(obj, true));
Chris Wilson461fb992016-05-14 07:26:33 +01004842 }
Chris Wilson95c778d2018-06-01 15:41:25 +01004843 mutex_unlock(&i915->drm.struct_mutex);
Chris Wilson461fb992016-05-14 07:26:33 +01004844
4845 return 0;
4846}
4847
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004848void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00004849{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004850 struct drm_i915_file_private *file_priv = file->driver_priv;
Chris Wilsone61e0f52018-02-21 09:56:36 +00004851 struct i915_request *request;
Eric Anholtb9624422009-06-03 07:27:35 +00004852
4853 /* Clean up our request list when the client is going away, so that
4854 * later retire_requests won't dereference our soon-to-be-gone
4855 * file_priv.
4856 */
Chris Wilson1c255952010-09-26 11:03:27 +01004857 spin_lock(&file_priv->mm.lock);
Chris Wilsonc8659ef2017-03-02 12:25:25 +00004858 list_for_each_entry(request, &file_priv->mm.request_list, client_link)
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004859 request->file_priv = NULL;
Chris Wilson1c255952010-09-26 11:03:27 +01004860 spin_unlock(&file_priv->mm.lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004861}
4862
Chris Wilson829a0af2017-06-20 12:05:45 +01004863int i915_gem_open(struct drm_i915_private *i915, struct drm_file *file)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004864{
4865 struct drm_i915_file_private *file_priv;
Ben Widawskye422b882013-12-06 14:10:58 -08004866 int ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004867
Chris Wilsonc4c29d72016-11-09 10:45:07 +00004868 DRM_DEBUG("\n");
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004869
4870 file_priv = kzalloc(sizeof(*file_priv), GFP_KERNEL);
4871 if (!file_priv)
4872 return -ENOMEM;
4873
4874 file->driver_priv = file_priv;
Chris Wilson829a0af2017-06-20 12:05:45 +01004875 file_priv->dev_priv = i915;
Chris Wilsonab0e7ff2014-02-25 17:11:24 +02004876 file_priv->file = file;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004877
4878 spin_lock_init(&file_priv->mm.lock);
4879 INIT_LIST_HEAD(&file_priv->mm.request_list);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004880
Chris Wilsonc80ff162016-07-27 09:07:27 +01004881 file_priv->bsd_engine = -1;
Mika Kuoppala14921f32018-06-15 13:44:29 +03004882 file_priv->hang_timestamp = jiffies;
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00004883
Chris Wilson829a0af2017-06-20 12:05:45 +01004884 ret = i915_gem_context_open(i915, file);
Ben Widawskye422b882013-12-06 14:10:58 -08004885 if (ret)
4886 kfree(file_priv);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004887
Ben Widawskye422b882013-12-06 14:10:58 -08004888 return ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004889}
4890
Daniel Vetterb680c372014-09-19 18:27:27 +02004891/**
4892 * i915_gem_track_fb - update frontbuffer tracking
Geliang Tangd9072a32015-09-15 05:58:44 -07004893 * @old: current GEM buffer for the frontbuffer slots
4894 * @new: new GEM buffer for the frontbuffer slots
4895 * @frontbuffer_bits: bitmask of frontbuffer slots
Daniel Vetterb680c372014-09-19 18:27:27 +02004896 *
4897 * This updates the frontbuffer tracking bits @frontbuffer_bits by clearing them
4898 * from @old and setting them in @new. Both @old and @new can be NULL.
4899 */
Daniel Vettera071fa02014-06-18 23:28:09 +02004900void i915_gem_track_fb(struct drm_i915_gem_object *old,
4901 struct drm_i915_gem_object *new,
4902 unsigned frontbuffer_bits)
4903{
Chris Wilsonfaf5bf02016-08-04 16:32:37 +01004904 /* Control of individual bits within the mask are guarded by
4905 * the owning plane->mutex, i.e. we can never see concurrent
4906 * manipulation of individual bits. But since the bitfield as a whole
4907 * is updated using RMW, we need to use atomics in order to update
4908 * the bits.
4909 */
4910 BUILD_BUG_ON(INTEL_FRONTBUFFER_BITS_PER_PIPE * I915_MAX_PIPES >
Chris Wilson74f6e182018-09-26 11:47:07 +01004911 BITS_PER_TYPE(atomic_t));
Chris Wilsonfaf5bf02016-08-04 16:32:37 +01004912
Daniel Vettera071fa02014-06-18 23:28:09 +02004913 if (old) {
Chris Wilsonfaf5bf02016-08-04 16:32:37 +01004914 WARN_ON(!(atomic_read(&old->frontbuffer_bits) & frontbuffer_bits));
4915 atomic_andnot(frontbuffer_bits, &old->frontbuffer_bits);
Daniel Vettera071fa02014-06-18 23:28:09 +02004916 }
4917
4918 if (new) {
Chris Wilsonfaf5bf02016-08-04 16:32:37 +01004919 WARN_ON(atomic_read(&new->frontbuffer_bits) & frontbuffer_bits);
4920 atomic_or(frontbuffer_bits, &new->frontbuffer_bits);
Daniel Vettera071fa02014-06-18 23:28:09 +02004921 }
4922}
4923
Dave Gordonea702992015-07-09 19:29:02 +01004924/* Allocate a new GEM object and fill it with the supplied data */
4925struct drm_i915_gem_object *
Tvrtko Ursulin12d79d72016-12-01 14:16:37 +00004926i915_gem_object_create_from_data(struct drm_i915_private *dev_priv,
Dave Gordonea702992015-07-09 19:29:02 +01004927 const void *data, size_t size)
4928{
4929 struct drm_i915_gem_object *obj;
Chris Wilsonbe062fa2017-03-17 19:46:48 +00004930 struct file *file;
4931 size_t offset;
4932 int err;
Dave Gordonea702992015-07-09 19:29:02 +01004933
Tvrtko Ursulin12d79d72016-12-01 14:16:37 +00004934 obj = i915_gem_object_create(dev_priv, round_up(size, PAGE_SIZE));
Chris Wilsonfe3db792016-04-25 13:32:13 +01004935 if (IS_ERR(obj))
Dave Gordonea702992015-07-09 19:29:02 +01004936 return obj;
4937
Christian Königc0a51fd2018-02-16 13:43:38 +01004938 GEM_BUG_ON(obj->write_domain != I915_GEM_DOMAIN_CPU);
Dave Gordonea702992015-07-09 19:29:02 +01004939
Chris Wilsonbe062fa2017-03-17 19:46:48 +00004940 file = obj->base.filp;
4941 offset = 0;
4942 do {
4943 unsigned int len = min_t(typeof(size), size, PAGE_SIZE);
4944 struct page *page;
4945 void *pgdata, *vaddr;
Dave Gordonea702992015-07-09 19:29:02 +01004946
Chris Wilsonbe062fa2017-03-17 19:46:48 +00004947 err = pagecache_write_begin(file, file->f_mapping,
4948 offset, len, 0,
4949 &page, &pgdata);
4950 if (err < 0)
4951 goto fail;
Dave Gordonea702992015-07-09 19:29:02 +01004952
Chris Wilsonbe062fa2017-03-17 19:46:48 +00004953 vaddr = kmap(page);
4954 memcpy(vaddr, data, len);
4955 kunmap(page);
4956
4957 err = pagecache_write_end(file, file->f_mapping,
4958 offset, len, len,
4959 page, pgdata);
4960 if (err < 0)
4961 goto fail;
4962
4963 size -= len;
4964 data += len;
4965 offset += len;
4966 } while (size);
Dave Gordonea702992015-07-09 19:29:02 +01004967
4968 return obj;
4969
4970fail:
Chris Wilsonf8c417c2016-07-20 13:31:53 +01004971 i915_gem_object_put(obj);
Chris Wilsonbe062fa2017-03-17 19:46:48 +00004972 return ERR_PTR(err);
Dave Gordonea702992015-07-09 19:29:02 +01004973}
Chris Wilson96d77632016-10-28 13:58:33 +01004974
4975struct scatterlist *
4976i915_gem_object_get_sg(struct drm_i915_gem_object *obj,
4977 unsigned int n,
4978 unsigned int *offset)
4979{
Chris Wilsona4f5ea62016-10-28 13:58:35 +01004980 struct i915_gem_object_page_iter *iter = &obj->mm.get_page;
Chris Wilson96d77632016-10-28 13:58:33 +01004981 struct scatterlist *sg;
4982 unsigned int idx, count;
4983
4984 might_sleep();
4985 GEM_BUG_ON(n >= obj->base.size >> PAGE_SHIFT);
Chris Wilsona4f5ea62016-10-28 13:58:35 +01004986 GEM_BUG_ON(!i915_gem_object_has_pinned_pages(obj));
Chris Wilson96d77632016-10-28 13:58:33 +01004987
4988 /* As we iterate forward through the sg, we record each entry in a
4989 * radixtree for quick repeated (backwards) lookups. If we have seen
4990 * this index previously, we will have an entry for it.
4991 *
4992 * Initial lookup is O(N), but this is amortized to O(1) for
4993 * sequential page access (where each new request is consecutive
4994 * to the previous one). Repeated lookups are O(lg(obj->base.size)),
4995 * i.e. O(1) with a large constant!
4996 */
4997 if (n < READ_ONCE(iter->sg_idx))
4998 goto lookup;
4999
5000 mutex_lock(&iter->lock);
5001
5002 /* We prefer to reuse the last sg so that repeated lookup of this
5003 * (or the subsequent) sg are fast - comparing against the last
5004 * sg is faster than going through the radixtree.
5005 */
5006
5007 sg = iter->sg_pos;
5008 idx = iter->sg_idx;
5009 count = __sg_page_count(sg);
5010
5011 while (idx + count <= n) {
Matthew Wilcox3159f942017-11-03 13:30:42 -04005012 void *entry;
5013 unsigned long i;
Chris Wilson96d77632016-10-28 13:58:33 +01005014 int ret;
5015
5016 /* If we cannot allocate and insert this entry, or the
5017 * individual pages from this range, cancel updating the
5018 * sg_idx so that on this lookup we are forced to linearly
5019 * scan onwards, but on future lookups we will try the
5020 * insertion again (in which case we need to be careful of
5021 * the error return reporting that we have already inserted
5022 * this index).
5023 */
5024 ret = radix_tree_insert(&iter->radix, idx, sg);
5025 if (ret && ret != -EEXIST)
5026 goto scan;
5027
Matthew Wilcox3159f942017-11-03 13:30:42 -04005028 entry = xa_mk_value(idx);
Chris Wilson96d77632016-10-28 13:58:33 +01005029 for (i = 1; i < count; i++) {
Matthew Wilcox3159f942017-11-03 13:30:42 -04005030 ret = radix_tree_insert(&iter->radix, idx + i, entry);
Chris Wilson96d77632016-10-28 13:58:33 +01005031 if (ret && ret != -EEXIST)
5032 goto scan;
5033 }
5034
5035 idx += count;
5036 sg = ____sg_next(sg);
5037 count = __sg_page_count(sg);
5038 }
5039
5040scan:
5041 iter->sg_pos = sg;
5042 iter->sg_idx = idx;
5043
5044 mutex_unlock(&iter->lock);
5045
5046 if (unlikely(n < idx)) /* insertion completed by another thread */
5047 goto lookup;
5048
5049 /* In case we failed to insert the entry into the radixtree, we need
5050 * to look beyond the current sg.
5051 */
5052 while (idx + count <= n) {
5053 idx += count;
5054 sg = ____sg_next(sg);
5055 count = __sg_page_count(sg);
5056 }
5057
5058 *offset = n - idx;
5059 return sg;
5060
5061lookup:
5062 rcu_read_lock();
5063
5064 sg = radix_tree_lookup(&iter->radix, n);
5065 GEM_BUG_ON(!sg);
5066
5067 /* If this index is in the middle of multi-page sg entry,
Matthew Wilcox3159f942017-11-03 13:30:42 -04005068 * the radix tree will contain a value entry that points
Chris Wilson96d77632016-10-28 13:58:33 +01005069 * to the start of that range. We will return the pointer to
5070 * the base page and the offset of this page within the
5071 * sg entry's range.
5072 */
5073 *offset = 0;
Matthew Wilcox3159f942017-11-03 13:30:42 -04005074 if (unlikely(xa_is_value(sg))) {
5075 unsigned long base = xa_to_value(sg);
Chris Wilson96d77632016-10-28 13:58:33 +01005076
5077 sg = radix_tree_lookup(&iter->radix, base);
5078 GEM_BUG_ON(!sg);
5079
5080 *offset = n - base;
5081 }
5082
5083 rcu_read_unlock();
5084
5085 return sg;
5086}
5087
5088struct page *
5089i915_gem_object_get_page(struct drm_i915_gem_object *obj, unsigned int n)
5090{
5091 struct scatterlist *sg;
5092 unsigned int offset;
5093
5094 GEM_BUG_ON(!i915_gem_object_has_struct_page(obj));
5095
5096 sg = i915_gem_object_get_sg(obj, n, &offset);
5097 return nth_page(sg_page(sg), offset);
5098}
5099
5100/* Like i915_gem_object_get_page(), but mark the returned page dirty */
5101struct page *
5102i915_gem_object_get_dirty_page(struct drm_i915_gem_object *obj,
5103 unsigned int n)
5104{
5105 struct page *page;
5106
5107 page = i915_gem_object_get_page(obj, n);
Chris Wilsona4f5ea62016-10-28 13:58:35 +01005108 if (!obj->mm.dirty)
Chris Wilson96d77632016-10-28 13:58:33 +01005109 set_page_dirty(page);
5110
5111 return page;
5112}
5113
5114dma_addr_t
Ville Syrjälä1a74fc02019-05-09 15:21:52 +03005115i915_gem_object_get_dma_address_len(struct drm_i915_gem_object *obj,
5116 unsigned long n,
5117 unsigned int *len)
Chris Wilson96d77632016-10-28 13:58:33 +01005118{
5119 struct scatterlist *sg;
5120 unsigned int offset;
5121
5122 sg = i915_gem_object_get_sg(obj, n, &offset);
Ville Syrjälä1a74fc02019-05-09 15:21:52 +03005123
5124 if (len)
5125 *len = sg_dma_len(sg) - (offset << PAGE_SHIFT);
5126
Chris Wilson96d77632016-10-28 13:58:33 +01005127 return sg_dma_address(sg) + (offset << PAGE_SHIFT);
5128}
Chris Wilson935a2f72017-02-13 17:15:13 +00005129
Ville Syrjälä1a74fc02019-05-09 15:21:52 +03005130dma_addr_t
5131i915_gem_object_get_dma_address(struct drm_i915_gem_object *obj,
5132 unsigned long n)
5133{
5134 return i915_gem_object_get_dma_address_len(obj, n, NULL);
5135}
5136
5137
Chris Wilson8eeb7902017-07-26 19:16:01 +01005138int i915_gem_object_attach_phys(struct drm_i915_gem_object *obj, int align)
5139{
5140 struct sg_table *pages;
5141 int err;
5142
5143 if (align > obj->base.size)
5144 return -EINVAL;
5145
5146 if (obj->ops == &i915_gem_phys_ops)
5147 return 0;
5148
5149 if (obj->ops != &i915_gem_object_ops)
5150 return -EINVAL;
5151
5152 err = i915_gem_object_unbind(obj);
5153 if (err)
5154 return err;
5155
5156 mutex_lock(&obj->mm.lock);
5157
5158 if (obj->mm.madv != I915_MADV_WILLNEED) {
5159 err = -EFAULT;
5160 goto err_unlock;
5161 }
5162
5163 if (obj->mm.quirked) {
5164 err = -EFAULT;
5165 goto err_unlock;
5166 }
5167
5168 if (obj->mm.mapping) {
5169 err = -EBUSY;
5170 goto err_unlock;
5171 }
5172
Chris Wilsonacd1c1e2018-06-11 08:55:32 +01005173 pages = __i915_gem_object_unset_pages(obj);
Chris Wilsonf2123812017-10-16 12:40:37 +01005174
Chris Wilson8eeb7902017-07-26 19:16:01 +01005175 obj->ops = &i915_gem_phys_ops;
5176
Chris Wilson8fb6a5d2017-07-26 19:16:02 +01005177 err = ____i915_gem_object_get_pages(obj);
Chris Wilson8eeb7902017-07-26 19:16:01 +01005178 if (err)
5179 goto err_xfer;
5180
5181 /* Perma-pin (until release) the physical set of pages */
5182 __i915_gem_object_pin_pages(obj);
5183
5184 if (!IS_ERR_OR_NULL(pages))
5185 i915_gem_object_ops.put_pages(obj, pages);
5186 mutex_unlock(&obj->mm.lock);
5187 return 0;
5188
5189err_xfer:
5190 obj->ops = &i915_gem_object_ops;
Chris Wilsonacd1c1e2018-06-11 08:55:32 +01005191 if (!IS_ERR_OR_NULL(pages)) {
5192 unsigned int sg_page_sizes = i915_sg_page_sizes(pages->sgl);
5193
5194 __i915_gem_object_set_pages(obj, pages, sg_page_sizes);
5195 }
Chris Wilson8eeb7902017-07-26 19:16:01 +01005196err_unlock:
5197 mutex_unlock(&obj->mm.lock);
5198 return err;
5199}
5200
Chris Wilson935a2f72017-02-13 17:15:13 +00005201#if IS_ENABLED(CONFIG_DRM_I915_SELFTEST)
5202#include "selftests/scatterlist.c"
Chris Wilson66d9cb52017-02-13 17:15:17 +00005203#include "selftests/mock_gem_device.c"
Chris Wilson44653982017-02-13 17:15:20 +00005204#include "selftests/huge_gem_object.c"
Matthew Auld40498662017-10-06 23:18:29 +01005205#include "selftests/huge_pages.c"
Chris Wilson8335fd62017-02-13 17:15:28 +00005206#include "selftests/i915_gem_object.c"
Chris Wilson17059452017-02-13 17:15:32 +00005207#include "selftests/i915_gem_coherency.c"
Chris Wilson3f51b7e12018-08-30 14:48:06 +01005208#include "selftests/i915_gem.c"
Chris Wilson935a2f72017-02-13 17:15:13 +00005209#endif