blob: bf5ad5ca78267f3a6a5be472190dbe33d701395d [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 Howells760285e2012-10-02 18:01:07 +010028#include <drm/drmP.h>
David Herrmann0de23972013-07-24 21:07:52 +020029#include <drm/drm_vma_manager.h>
David Howells760285e2012-10-02 18:01:07 +010030#include <drm/i915_drm.h>
Eric Anholt673a3942008-07-30 12:06:12 -070031#include "i915_drv.h"
Yu Zhangeb822892015-02-10 19:05:49 +080032#include "i915_vgpu.h"
Chris Wilson1c5d22f2009-08-25 11:15:50 +010033#include "i915_trace.h"
Jesse Barnes652c3932009-08-17 13:31:43 -070034#include "intel_drv.h"
Peter Antoine0ccdacf2016-04-13 15:03:25 +010035#include "intel_mocs.h"
Hugh Dickins5949eac2011-06-27 16:18:18 -070036#include <linux/shmem_fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/slab.h>
Eric Anholt673a3942008-07-30 12:06:12 -070038#include <linux/swap.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080039#include <linux/pci.h>
Daniel Vetter1286ff72012-05-10 15:25:09 +020040#include <linux/dma-buf.h>
Eric Anholt673a3942008-07-30 12:06:12 -070041
Chris Wilson05394f32010-11-08 19:18:58 +000042static void i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj);
Daniel Vettere62b59e2015-01-21 14:53:48 +010043static void i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj);
Chris Wilsonc8725f32014-03-17 12:21:55 +000044static void
Chris Wilsonb4716182015-04-27 13:41:17 +010045i915_gem_object_retire__write(struct drm_i915_gem_object *obj);
46static void
47i915_gem_object_retire__read(struct drm_i915_gem_object *obj, int ring);
Chris Wilson61050802012-04-17 15:31:31 +010048
Chris Wilsonc76ce032013-08-08 14:41:03 +010049static bool cpu_cache_is_coherent(struct drm_device *dev,
50 enum i915_cache_level level)
51{
52 return HAS_LLC(dev) || level != I915_CACHE_NONE;
53}
54
Chris Wilson2c225692013-08-09 12:26:45 +010055static bool cpu_write_needs_clflush(struct drm_i915_gem_object *obj)
56{
57 if (!cpu_cache_is_coherent(obj->base.dev, obj->cache_level))
58 return true;
59
60 return obj->pin_display;
61}
62
Chris Wilson73aa8082010-09-30 11:46:12 +010063/* some bookkeeping */
64static void i915_gem_info_add_obj(struct drm_i915_private *dev_priv,
65 size_t size)
66{
Daniel Vetterc20e8352013-07-24 22:40:23 +020067 spin_lock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +010068 dev_priv->mm.object_count++;
69 dev_priv->mm.object_memory += size;
Daniel Vetterc20e8352013-07-24 22:40:23 +020070 spin_unlock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +010071}
72
73static void i915_gem_info_remove_obj(struct drm_i915_private *dev_priv,
74 size_t size)
75{
Daniel Vetterc20e8352013-07-24 22:40:23 +020076 spin_lock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +010077 dev_priv->mm.object_count--;
78 dev_priv->mm.object_memory -= size;
Daniel Vetterc20e8352013-07-24 22:40:23 +020079 spin_unlock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +010080}
81
Chris Wilson21dd3732011-01-26 15:55:56 +000082static int
Daniel Vetter33196de2012-11-14 17:14:05 +010083i915_gem_wait_for_error(struct i915_gpu_error *error)
Chris Wilson30dbf0c2010-09-25 10:19:17 +010084{
Chris Wilson30dbf0c2010-09-25 10:19:17 +010085 int ret;
86
Chris Wilsond98c52c2016-04-13 17:35:05 +010087 if (!i915_reset_in_progress(error))
Chris Wilson30dbf0c2010-09-25 10:19:17 +010088 return 0;
89
Daniel Vetter0a6759c2012-07-04 22:18:41 +020090 /*
91 * Only wait 10 seconds for the gpu reset to complete to avoid hanging
92 * userspace. If it takes that long something really bad is going on and
93 * we should simply try to bail out and fail as gracefully as possible.
94 */
Daniel Vetter1f83fee2012-11-15 17:17:22 +010095 ret = wait_event_interruptible_timeout(error->reset_queue,
Chris Wilsond98c52c2016-04-13 17:35:05 +010096 !i915_reset_in_progress(error),
Daniel Vetter1f83fee2012-11-15 17:17:22 +010097 10*HZ);
Daniel Vetter0a6759c2012-07-04 22:18:41 +020098 if (ret == 0) {
99 DRM_ERROR("Timed out waiting for the gpu reset to complete\n");
100 return -EIO;
101 } else if (ret < 0) {
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100102 return ret;
Chris Wilsond98c52c2016-04-13 17:35:05 +0100103 } else {
104 return 0;
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200105 }
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100106}
107
Chris Wilson54cf91d2010-11-25 18:00:26 +0000108int i915_mutex_lock_interruptible(struct drm_device *dev)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100109{
Daniel Vetter33196de2012-11-14 17:14:05 +0100110 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson76c1dec2010-09-25 11:22:51 +0100111 int ret;
112
Daniel Vetter33196de2012-11-14 17:14:05 +0100113 ret = i915_gem_wait_for_error(&dev_priv->gpu_error);
Chris Wilson76c1dec2010-09-25 11:22:51 +0100114 if (ret)
115 return ret;
116
117 ret = mutex_lock_interruptible(&dev->struct_mutex);
118 if (ret)
119 return ret;
120
Chris Wilson23bc5982010-09-29 16:10:57 +0100121 WARN_ON(i915_verify_lists(dev));
Chris Wilson76c1dec2010-09-25 11:22:51 +0100122 return 0;
123}
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100124
Eric Anholt673a3942008-07-30 12:06:12 -0700125int
Eric Anholt5a125c32008-10-22 21:40:13 -0700126i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000127 struct drm_file *file)
Eric Anholt5a125c32008-10-22 21:40:13 -0700128{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300129 struct drm_i915_private *dev_priv = to_i915(dev);
Joonas Lahtinen62106b42016-03-18 10:42:57 +0200130 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300131 struct drm_i915_gem_get_aperture *args = data;
Tvrtko Ursulinca1543b2015-07-01 11:51:10 +0100132 struct i915_vma *vma;
Chris Wilson6299f992010-11-24 12:23:44 +0000133 size_t pinned;
Eric Anholt5a125c32008-10-22 21:40:13 -0700134
Chris Wilson6299f992010-11-24 12:23:44 +0000135 pinned = 0;
Chris Wilson73aa8082010-09-30 11:46:12 +0100136 mutex_lock(&dev->struct_mutex);
Chris Wilson1c7f4bc2016-02-26 11:03:19 +0000137 list_for_each_entry(vma, &ggtt->base.active_list, vm_link)
Tvrtko Ursulinca1543b2015-07-01 11:51:10 +0100138 if (vma->pin_count)
139 pinned += vma->node.size;
Chris Wilson1c7f4bc2016-02-26 11:03:19 +0000140 list_for_each_entry(vma, &ggtt->base.inactive_list, vm_link)
Tvrtko Ursulinca1543b2015-07-01 11:51:10 +0100141 if (vma->pin_count)
142 pinned += vma->node.size;
Chris Wilson73aa8082010-09-30 11:46:12 +0100143 mutex_unlock(&dev->struct_mutex);
Eric Anholt5a125c32008-10-22 21:40:13 -0700144
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300145 args->aper_size = ggtt->base.total;
Akshay Joshi0206e352011-08-16 15:34:10 -0400146 args->aper_available_size = args->aper_size - pinned;
Chris Wilson6299f992010-11-24 12:23:44 +0000147
Eric Anholt5a125c32008-10-22 21:40:13 -0700148 return 0;
149}
150
Chris Wilson6a2c4232014-11-04 04:51:40 -0800151static int
152i915_gem_object_get_pages_phys(struct drm_i915_gem_object *obj)
Chris Wilson00731152014-05-21 12:42:56 +0100153{
Chris Wilson6a2c4232014-11-04 04:51:40 -0800154 struct address_space *mapping = file_inode(obj->base.filp)->i_mapping;
155 char *vaddr = obj->phys_handle->vaddr;
156 struct sg_table *st;
157 struct scatterlist *sg;
158 int i;
Chris Wilson00731152014-05-21 12:42:56 +0100159
Chris Wilson6a2c4232014-11-04 04:51:40 -0800160 if (WARN_ON(i915_gem_object_needs_bit17_swizzle(obj)))
161 return -EINVAL;
Chris Wilson00731152014-05-21 12:42:56 +0100162
Chris Wilson6a2c4232014-11-04 04:51:40 -0800163 for (i = 0; i < obj->base.size / PAGE_SIZE; i++) {
164 struct page *page;
165 char *src;
166
167 page = shmem_read_mapping_page(mapping, i);
168 if (IS_ERR(page))
169 return PTR_ERR(page);
170
171 src = kmap_atomic(page);
172 memcpy(vaddr, src, PAGE_SIZE);
173 drm_clflush_virt_range(vaddr, PAGE_SIZE);
174 kunmap_atomic(src);
175
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300176 put_page(page);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800177 vaddr += PAGE_SIZE;
178 }
179
180 i915_gem_chipset_flush(obj->base.dev);
181
182 st = kmalloc(sizeof(*st), GFP_KERNEL);
183 if (st == NULL)
184 return -ENOMEM;
185
186 if (sg_alloc_table(st, 1, GFP_KERNEL)) {
187 kfree(st);
188 return -ENOMEM;
189 }
190
191 sg = st->sgl;
192 sg->offset = 0;
193 sg->length = obj->base.size;
194
195 sg_dma_address(sg) = obj->phys_handle->busaddr;
196 sg_dma_len(sg) = obj->base.size;
197
198 obj->pages = st;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800199 return 0;
200}
201
202static void
203i915_gem_object_put_pages_phys(struct drm_i915_gem_object *obj)
204{
205 int ret;
206
207 BUG_ON(obj->madv == __I915_MADV_PURGED);
208
209 ret = i915_gem_object_set_to_cpu_domain(obj, true);
Chris Wilsonf4457ae2016-04-13 17:35:08 +0100210 if (WARN_ON(ret)) {
Chris Wilson6a2c4232014-11-04 04:51:40 -0800211 /* In the event of a disaster, abandon all caches and
212 * hope for the best.
213 */
Chris Wilson6a2c4232014-11-04 04:51:40 -0800214 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
215 }
216
217 if (obj->madv == I915_MADV_DONTNEED)
218 obj->dirty = 0;
219
220 if (obj->dirty) {
Chris Wilson00731152014-05-21 12:42:56 +0100221 struct address_space *mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800222 char *vaddr = obj->phys_handle->vaddr;
Chris Wilson00731152014-05-21 12:42:56 +0100223 int i;
224
225 for (i = 0; i < obj->base.size / PAGE_SIZE; i++) {
Chris Wilson6a2c4232014-11-04 04:51:40 -0800226 struct page *page;
227 char *dst;
Chris Wilson00731152014-05-21 12:42:56 +0100228
Chris Wilson6a2c4232014-11-04 04:51:40 -0800229 page = shmem_read_mapping_page(mapping, i);
230 if (IS_ERR(page))
231 continue;
232
233 dst = kmap_atomic(page);
234 drm_clflush_virt_range(vaddr, PAGE_SIZE);
235 memcpy(dst, vaddr, PAGE_SIZE);
236 kunmap_atomic(dst);
237
238 set_page_dirty(page);
239 if (obj->madv == I915_MADV_WILLNEED)
Chris Wilson00731152014-05-21 12:42:56 +0100240 mark_page_accessed(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300241 put_page(page);
Chris Wilson00731152014-05-21 12:42:56 +0100242 vaddr += PAGE_SIZE;
243 }
Chris Wilson6a2c4232014-11-04 04:51:40 -0800244 obj->dirty = 0;
Chris Wilson00731152014-05-21 12:42:56 +0100245 }
246
Chris Wilson6a2c4232014-11-04 04:51:40 -0800247 sg_free_table(obj->pages);
248 kfree(obj->pages);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800249}
250
251static void
252i915_gem_object_release_phys(struct drm_i915_gem_object *obj)
253{
254 drm_pci_free(obj->base.dev, obj->phys_handle);
255}
256
257static const struct drm_i915_gem_object_ops i915_gem_phys_ops = {
258 .get_pages = i915_gem_object_get_pages_phys,
259 .put_pages = i915_gem_object_put_pages_phys,
260 .release = i915_gem_object_release_phys,
261};
262
263static int
264drop_pages(struct drm_i915_gem_object *obj)
265{
266 struct i915_vma *vma, *next;
267 int ret;
268
269 drm_gem_object_reference(&obj->base);
Chris Wilson1c7f4bc2016-02-26 11:03:19 +0000270 list_for_each_entry_safe(vma, next, &obj->vma_list, obj_link)
Chris Wilson6a2c4232014-11-04 04:51:40 -0800271 if (i915_vma_unbind(vma))
272 break;
273
274 ret = i915_gem_object_put_pages(obj);
275 drm_gem_object_unreference(&obj->base);
276
277 return ret;
Chris Wilson00731152014-05-21 12:42:56 +0100278}
279
280int
281i915_gem_object_attach_phys(struct drm_i915_gem_object *obj,
282 int align)
283{
284 drm_dma_handle_t *phys;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800285 int ret;
Chris Wilson00731152014-05-21 12:42:56 +0100286
287 if (obj->phys_handle) {
288 if ((unsigned long)obj->phys_handle->vaddr & (align -1))
289 return -EBUSY;
290
291 return 0;
292 }
293
294 if (obj->madv != I915_MADV_WILLNEED)
295 return -EFAULT;
296
297 if (obj->base.filp == NULL)
298 return -EINVAL;
299
Chris Wilson6a2c4232014-11-04 04:51:40 -0800300 ret = drop_pages(obj);
301 if (ret)
302 return ret;
303
Chris Wilson00731152014-05-21 12:42:56 +0100304 /* create a new object */
305 phys = drm_pci_alloc(obj->base.dev, obj->base.size, align);
306 if (!phys)
307 return -ENOMEM;
308
Chris Wilson00731152014-05-21 12:42:56 +0100309 obj->phys_handle = phys;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800310 obj->ops = &i915_gem_phys_ops;
311
312 return i915_gem_object_get_pages(obj);
Chris Wilson00731152014-05-21 12:42:56 +0100313}
314
315static int
316i915_gem_phys_pwrite(struct drm_i915_gem_object *obj,
317 struct drm_i915_gem_pwrite *args,
318 struct drm_file *file_priv)
319{
320 struct drm_device *dev = obj->base.dev;
321 void *vaddr = obj->phys_handle->vaddr + args->offset;
322 char __user *user_data = to_user_ptr(args->data_ptr);
Paulo Zanoni063e4e62015-02-13 17:23:45 -0200323 int ret = 0;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800324
325 /* We manually control the domain here and pretend that it
326 * remains coherent i.e. in the GTT domain, like shmem_pwrite.
327 */
328 ret = i915_gem_object_wait_rendering(obj, false);
329 if (ret)
330 return ret;
Chris Wilson00731152014-05-21 12:42:56 +0100331
Rodrigo Vivi77a0d1c2015-06-18 11:43:24 -0700332 intel_fb_obj_invalidate(obj, ORIGIN_CPU);
Chris Wilson00731152014-05-21 12:42:56 +0100333 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
334 unsigned long unwritten;
335
336 /* The physical object once assigned is fixed for the lifetime
337 * of the obj, so we can safely drop the lock and continue
338 * to access vaddr.
339 */
340 mutex_unlock(&dev->struct_mutex);
341 unwritten = copy_from_user(vaddr, user_data, args->size);
342 mutex_lock(&dev->struct_mutex);
Paulo Zanoni063e4e62015-02-13 17:23:45 -0200343 if (unwritten) {
344 ret = -EFAULT;
345 goto out;
346 }
Chris Wilson00731152014-05-21 12:42:56 +0100347 }
348
Chris Wilson6a2c4232014-11-04 04:51:40 -0800349 drm_clflush_virt_range(vaddr, args->size);
Chris Wilson00731152014-05-21 12:42:56 +0100350 i915_gem_chipset_flush(dev);
Paulo Zanoni063e4e62015-02-13 17:23:45 -0200351
352out:
Rodrigo Vivide152b62015-07-07 16:28:51 -0700353 intel_fb_obj_flush(obj, false, ORIGIN_CPU);
Paulo Zanoni063e4e62015-02-13 17:23:45 -0200354 return ret;
Chris Wilson00731152014-05-21 12:42:56 +0100355}
356
Chris Wilson42dcedd2012-11-15 11:32:30 +0000357void *i915_gem_object_alloc(struct drm_device *dev)
358{
359 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonefab6d82015-04-07 16:20:57 +0100360 return kmem_cache_zalloc(dev_priv->objects, GFP_KERNEL);
Chris Wilson42dcedd2012-11-15 11:32:30 +0000361}
362
363void i915_gem_object_free(struct drm_i915_gem_object *obj)
364{
365 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilsonefab6d82015-04-07 16:20:57 +0100366 kmem_cache_free(dev_priv->objects, obj);
Chris Wilson42dcedd2012-11-15 11:32:30 +0000367}
368
Dave Airlieff72145b2011-02-07 12:16:14 +1000369static int
370i915_gem_create(struct drm_file *file,
371 struct drm_device *dev,
372 uint64_t size,
373 uint32_t *handle_p)
Eric Anholt673a3942008-07-30 12:06:12 -0700374{
Chris Wilson05394f32010-11-08 19:18:58 +0000375 struct drm_i915_gem_object *obj;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300376 int ret;
377 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700378
Dave Airlieff72145b2011-02-07 12:16:14 +1000379 size = roundup(size, PAGE_SIZE);
Chris Wilson8ffc0242011-09-14 14:14:28 +0200380 if (size == 0)
381 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700382
383 /* Allocate the new object */
Dave Gordond37cd8a2016-04-22 19:14:32 +0100384 obj = i915_gem_object_create(dev, size);
Chris Wilsonfe3db792016-04-25 13:32:13 +0100385 if (IS_ERR(obj))
386 return PTR_ERR(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700387
Chris Wilson05394f32010-11-08 19:18:58 +0000388 ret = drm_gem_handle_create(file, &obj->base, &handle);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100389 /* drop reference from allocate - handle holds it now */
Daniel Vetterd861e332013-07-24 23:25:03 +0200390 drm_gem_object_unreference_unlocked(&obj->base);
391 if (ret)
392 return ret;
Chris Wilson202f2fe2010-10-14 13:20:40 +0100393
Dave Airlieff72145b2011-02-07 12:16:14 +1000394 *handle_p = handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700395 return 0;
396}
397
Dave Airlieff72145b2011-02-07 12:16:14 +1000398int
399i915_gem_dumb_create(struct drm_file *file,
400 struct drm_device *dev,
401 struct drm_mode_create_dumb *args)
402{
403 /* have to work out size/pitch and return them */
Paulo Zanonide45eaf2013-10-18 18:48:24 -0300404 args->pitch = ALIGN(args->width * DIV_ROUND_UP(args->bpp, 8), 64);
Dave Airlieff72145b2011-02-07 12:16:14 +1000405 args->size = args->pitch * args->height;
406 return i915_gem_create(file, dev,
Dave Airlieda6b51d2014-12-24 13:11:17 +1000407 args->size, &args->handle);
Dave Airlieff72145b2011-02-07 12:16:14 +1000408}
409
Dave Airlieff72145b2011-02-07 12:16:14 +1000410/**
411 * Creates a new mm object and returns a handle to it.
412 */
413int
414i915_gem_create_ioctl(struct drm_device *dev, void *data,
415 struct drm_file *file)
416{
417 struct drm_i915_gem_create *args = data;
Daniel Vetter63ed2cb2012-04-23 16:50:50 +0200418
Dave Airlieff72145b2011-02-07 12:16:14 +1000419 return i915_gem_create(file, dev,
Dave Airlieda6b51d2014-12-24 13:11:17 +1000420 args->size, &args->handle);
Dave Airlieff72145b2011-02-07 12:16:14 +1000421}
422
Daniel Vetter8c599672011-12-14 13:57:31 +0100423static inline int
Daniel Vetter8461d222011-12-14 13:57:32 +0100424__copy_to_user_swizzled(char __user *cpu_vaddr,
425 const char *gpu_vaddr, int gpu_offset,
426 int length)
427{
428 int ret, cpu_offset = 0;
429
430 while (length > 0) {
431 int cacheline_end = ALIGN(gpu_offset + 1, 64);
432 int this_length = min(cacheline_end - gpu_offset, length);
433 int swizzled_gpu_offset = gpu_offset ^ 64;
434
435 ret = __copy_to_user(cpu_vaddr + cpu_offset,
436 gpu_vaddr + swizzled_gpu_offset,
437 this_length);
438 if (ret)
439 return ret + length;
440
441 cpu_offset += this_length;
442 gpu_offset += this_length;
443 length -= this_length;
444 }
445
446 return 0;
447}
448
449static inline int
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700450__copy_from_user_swizzled(char *gpu_vaddr, int gpu_offset,
451 const char __user *cpu_vaddr,
Daniel Vetter8c599672011-12-14 13:57:31 +0100452 int length)
453{
454 int ret, cpu_offset = 0;
455
456 while (length > 0) {
457 int cacheline_end = ALIGN(gpu_offset + 1, 64);
458 int this_length = min(cacheline_end - gpu_offset, length);
459 int swizzled_gpu_offset = gpu_offset ^ 64;
460
461 ret = __copy_from_user(gpu_vaddr + swizzled_gpu_offset,
462 cpu_vaddr + cpu_offset,
463 this_length);
464 if (ret)
465 return ret + length;
466
467 cpu_offset += this_length;
468 gpu_offset += this_length;
469 length -= this_length;
470 }
471
472 return 0;
473}
474
Brad Volkin4c914c02014-02-18 10:15:45 -0800475/*
476 * Pins the specified object's pages and synchronizes the object with
477 * GPU accesses. Sets needs_clflush to non-zero if the caller should
478 * flush the object from the CPU cache.
479 */
480int i915_gem_obj_prepare_shmem_read(struct drm_i915_gem_object *obj,
481 int *needs_clflush)
482{
483 int ret;
484
485 *needs_clflush = 0;
486
Ben Widawsky1db6e2e2016-02-09 11:44:12 -0800487 if (WARN_ON((obj->ops->flags & I915_GEM_OBJECT_HAS_STRUCT_PAGE) == 0))
Brad Volkin4c914c02014-02-18 10:15:45 -0800488 return -EINVAL;
489
490 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU)) {
491 /* If we're not in the cpu read domain, set ourself into the gtt
492 * read domain and manually flush cachelines (if required). This
493 * optimizes for the case when the gpu will dirty the data
494 * anyway again before the next pread happens. */
495 *needs_clflush = !cpu_cache_is_coherent(obj->base.dev,
496 obj->cache_level);
497 ret = i915_gem_object_wait_rendering(obj, true);
498 if (ret)
499 return ret;
500 }
501
502 ret = i915_gem_object_get_pages(obj);
503 if (ret)
504 return ret;
505
506 i915_gem_object_pin_pages(obj);
507
508 return ret;
509}
510
Daniel Vetterd174bd62012-03-25 19:47:40 +0200511/* Per-page copy function for the shmem pread fastpath.
512 * Flushes invalid cachelines before reading the target if
513 * needs_clflush is set. */
Eric Anholteb014592009-03-10 11:44:52 -0700514static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200515shmem_pread_fast(struct page *page, int shmem_page_offset, int page_length,
516 char __user *user_data,
517 bool page_do_bit17_swizzling, bool needs_clflush)
518{
519 char *vaddr;
520 int ret;
521
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200522 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200523 return -EINVAL;
524
525 vaddr = kmap_atomic(page);
526 if (needs_clflush)
527 drm_clflush_virt_range(vaddr + shmem_page_offset,
528 page_length);
529 ret = __copy_to_user_inatomic(user_data,
530 vaddr + shmem_page_offset,
531 page_length);
532 kunmap_atomic(vaddr);
533
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100534 return ret ? -EFAULT : 0;
Daniel Vetterd174bd62012-03-25 19:47:40 +0200535}
536
Daniel Vetter23c18c72012-03-25 19:47:42 +0200537static void
538shmem_clflush_swizzled_range(char *addr, unsigned long length,
539 bool swizzled)
540{
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200541 if (unlikely(swizzled)) {
Daniel Vetter23c18c72012-03-25 19:47:42 +0200542 unsigned long start = (unsigned long) addr;
543 unsigned long end = (unsigned long) addr + length;
544
545 /* For swizzling simply ensure that we always flush both
546 * channels. Lame, but simple and it works. Swizzled
547 * pwrite/pread is far from a hotpath - current userspace
548 * doesn't use it at all. */
549 start = round_down(start, 128);
550 end = round_up(end, 128);
551
552 drm_clflush_virt_range((void *)start, end - start);
553 } else {
554 drm_clflush_virt_range(addr, length);
555 }
556
557}
558
Daniel Vetterd174bd62012-03-25 19:47:40 +0200559/* Only difference to the fast-path function is that this can handle bit17
560 * and uses non-atomic copy and kmap functions. */
561static int
562shmem_pread_slow(struct page *page, int shmem_page_offset, int page_length,
563 char __user *user_data,
564 bool page_do_bit17_swizzling, bool needs_clflush)
565{
566 char *vaddr;
567 int ret;
568
569 vaddr = kmap(page);
570 if (needs_clflush)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200571 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
572 page_length,
573 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200574
575 if (page_do_bit17_swizzling)
576 ret = __copy_to_user_swizzled(user_data,
577 vaddr, shmem_page_offset,
578 page_length);
579 else
580 ret = __copy_to_user(user_data,
581 vaddr + shmem_page_offset,
582 page_length);
583 kunmap(page);
584
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100585 return ret ? - EFAULT : 0;
Daniel Vetterd174bd62012-03-25 19:47:40 +0200586}
587
Eric Anholteb014592009-03-10 11:44:52 -0700588static int
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200589i915_gem_shmem_pread(struct drm_device *dev,
590 struct drm_i915_gem_object *obj,
591 struct drm_i915_gem_pread *args,
592 struct drm_file *file)
Eric Anholteb014592009-03-10 11:44:52 -0700593{
Daniel Vetter8461d222011-12-14 13:57:32 +0100594 char __user *user_data;
Eric Anholteb014592009-03-10 11:44:52 -0700595 ssize_t remain;
Daniel Vetter8461d222011-12-14 13:57:32 +0100596 loff_t offset;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100597 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8461d222011-12-14 13:57:32 +0100598 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vetter96d79b52012-03-25 19:47:36 +0200599 int prefaulted = 0;
Daniel Vetter84897312012-03-25 19:47:31 +0200600 int needs_clflush = 0;
Imre Deak67d5a502013-02-18 19:28:02 +0200601 struct sg_page_iter sg_iter;
Eric Anholteb014592009-03-10 11:44:52 -0700602
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200603 user_data = to_user_ptr(args->data_ptr);
Eric Anholteb014592009-03-10 11:44:52 -0700604 remain = args->size;
605
Daniel Vetter8461d222011-12-14 13:57:32 +0100606 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700607
Brad Volkin4c914c02014-02-18 10:15:45 -0800608 ret = i915_gem_obj_prepare_shmem_read(obj, &needs_clflush);
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100609 if (ret)
610 return ret;
611
Eric Anholteb014592009-03-10 11:44:52 -0700612 offset = args->offset;
Daniel Vetter8461d222011-12-14 13:57:32 +0100613
Imre Deak67d5a502013-02-18 19:28:02 +0200614 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents,
615 offset >> PAGE_SHIFT) {
Imre Deak2db76d72013-03-26 15:14:18 +0200616 struct page *page = sg_page_iter_page(&sg_iter);
Chris Wilson9da3da62012-06-01 15:20:22 +0100617
618 if (remain <= 0)
619 break;
620
Eric Anholteb014592009-03-10 11:44:52 -0700621 /* Operation in this page
622 *
Eric Anholteb014592009-03-10 11:44:52 -0700623 * shmem_page_offset = offset within page in shmem file
Eric Anholteb014592009-03-10 11:44:52 -0700624 * page_length = bytes to copy for this page
625 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100626 shmem_page_offset = offset_in_page(offset);
Eric Anholteb014592009-03-10 11:44:52 -0700627 page_length = remain;
628 if ((shmem_page_offset + page_length) > PAGE_SIZE)
629 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholteb014592009-03-10 11:44:52 -0700630
Daniel Vetter8461d222011-12-14 13:57:32 +0100631 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
632 (page_to_phys(page) & (1 << 17)) != 0;
633
Daniel Vetterd174bd62012-03-25 19:47:40 +0200634 ret = shmem_pread_fast(page, shmem_page_offset, page_length,
635 user_data, page_do_bit17_swizzling,
636 needs_clflush);
637 if (ret == 0)
638 goto next_page;
Eric Anholteb014592009-03-10 11:44:52 -0700639
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200640 mutex_unlock(&dev->struct_mutex);
641
Jani Nikulad330a952014-01-21 11:24:25 +0200642 if (likely(!i915.prefault_disable) && !prefaulted) {
Daniel Vetterf56f8212012-03-25 19:47:41 +0200643 ret = fault_in_multipages_writeable(user_data, remain);
Daniel Vetter96d79b52012-03-25 19:47:36 +0200644 /* Userspace is tricking us, but we've already clobbered
645 * its pages with the prefault and promised to write the
646 * data up to the first fault. Hence ignore any errors
647 * and just continue. */
648 (void)ret;
649 prefaulted = 1;
650 }
651
Daniel Vetterd174bd62012-03-25 19:47:40 +0200652 ret = shmem_pread_slow(page, shmem_page_offset, page_length,
653 user_data, page_do_bit17_swizzling,
654 needs_clflush);
Eric Anholteb014592009-03-10 11:44:52 -0700655
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200656 mutex_lock(&dev->struct_mutex);
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100657
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100658 if (ret)
Daniel Vetter8461d222011-12-14 13:57:32 +0100659 goto out;
Daniel Vetter8461d222011-12-14 13:57:32 +0100660
Chris Wilson17793c92014-03-07 08:30:36 +0000661next_page:
Eric Anholteb014592009-03-10 11:44:52 -0700662 remain -= page_length;
Daniel Vetter8461d222011-12-14 13:57:32 +0100663 user_data += page_length;
Eric Anholteb014592009-03-10 11:44:52 -0700664 offset += page_length;
665 }
666
Chris Wilson4f27b752010-10-14 15:26:45 +0100667out:
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100668 i915_gem_object_unpin_pages(obj);
669
Eric Anholteb014592009-03-10 11:44:52 -0700670 return ret;
671}
672
Eric Anholt673a3942008-07-30 12:06:12 -0700673/**
674 * Reads data from the object referenced by handle.
675 *
676 * On error, the contents of *data are undefined.
677 */
678int
679i915_gem_pread_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000680 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700681{
682 struct drm_i915_gem_pread *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000683 struct drm_i915_gem_object *obj;
Chris Wilson35b62a82010-09-26 20:23:38 +0100684 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700685
Chris Wilson51311d02010-11-17 09:10:42 +0000686 if (args->size == 0)
687 return 0;
688
689 if (!access_ok(VERIFY_WRITE,
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200690 to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +0000691 args->size))
692 return -EFAULT;
693
Chris Wilson4f27b752010-10-14 15:26:45 +0100694 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100695 if (ret)
Chris Wilson4f27b752010-10-14 15:26:45 +0100696 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700697
Chris Wilson05394f32010-11-08 19:18:58 +0000698 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000699 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100700 ret = -ENOENT;
701 goto unlock;
Chris Wilson4f27b752010-10-14 15:26:45 +0100702 }
Eric Anholt673a3942008-07-30 12:06:12 -0700703
Chris Wilson7dcd2492010-09-26 20:21:44 +0100704 /* Bounds check source. */
Chris Wilson05394f32010-11-08 19:18:58 +0000705 if (args->offset > obj->base.size ||
706 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100707 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100708 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100709 }
710
Daniel Vetter1286ff72012-05-10 15:25:09 +0200711 /* prime objects have no backing filp to GEM pread/pwrite
712 * pages from.
713 */
714 if (!obj->base.filp) {
715 ret = -EINVAL;
716 goto out;
717 }
718
Chris Wilsondb53a302011-02-03 11:57:46 +0000719 trace_i915_gem_object_pread(obj, args->offset, args->size);
720
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200721 ret = i915_gem_shmem_pread(dev, obj, args, file);
Eric Anholt673a3942008-07-30 12:06:12 -0700722
Chris Wilson35b62a82010-09-26 20:23:38 +0100723out:
Chris Wilson05394f32010-11-08 19:18:58 +0000724 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100725unlock:
Chris Wilson4f27b752010-10-14 15:26:45 +0100726 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700727 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700728}
729
Keith Packard0839ccb2008-10-30 19:38:48 -0700730/* This is the fast write path which cannot handle
731 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700732 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700733
Keith Packard0839ccb2008-10-30 19:38:48 -0700734static inline int
735fast_user_write(struct io_mapping *mapping,
736 loff_t page_base, int page_offset,
737 char __user *user_data,
738 int length)
739{
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700740 void __iomem *vaddr_atomic;
741 void *vaddr;
Keith Packard0839ccb2008-10-30 19:38:48 -0700742 unsigned long unwritten;
743
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700744 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base);
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700745 /* We can use the cpu mem copy function because this is X86. */
746 vaddr = (void __force*)vaddr_atomic + page_offset;
747 unwritten = __copy_from_user_inatomic_nocache(vaddr,
Keith Packard0839ccb2008-10-30 19:38:48 -0700748 user_data, length);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700749 io_mapping_unmap_atomic(vaddr_atomic);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100750 return unwritten;
Keith Packard0839ccb2008-10-30 19:38:48 -0700751}
752
Eric Anholt3de09aa2009-03-09 09:42:23 -0700753/**
754 * This is the fast pwrite path, where we copy the data directly from the
755 * user into the GTT, uncached.
756 */
Eric Anholt673a3942008-07-30 12:06:12 -0700757static int
Chris Wilson05394f32010-11-08 19:18:58 +0000758i915_gem_gtt_pwrite_fast(struct drm_device *dev,
759 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -0700760 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000761 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700762{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300763 struct drm_i915_private *dev_priv = to_i915(dev);
764 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Eric Anholt673a3942008-07-30 12:06:12 -0700765 ssize_t remain;
Keith Packard0839ccb2008-10-30 19:38:48 -0700766 loff_t offset, page_base;
Eric Anholt673a3942008-07-30 12:06:12 -0700767 char __user *user_data;
Daniel Vetter935aaa62012-03-25 19:47:35 +0200768 int page_offset, page_length, ret;
769
Daniel Vetter1ec9e262014-02-14 14:01:11 +0100770 ret = i915_gem_obj_ggtt_pin(obj, 0, PIN_MAPPABLE | PIN_NONBLOCK);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200771 if (ret)
772 goto out;
773
774 ret = i915_gem_object_set_to_gtt_domain(obj, true);
775 if (ret)
776 goto out_unpin;
777
778 ret = i915_gem_object_put_fence(obj);
779 if (ret)
780 goto out_unpin;
Eric Anholt673a3942008-07-30 12:06:12 -0700781
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200782 user_data = to_user_ptr(args->data_ptr);
Eric Anholt673a3942008-07-30 12:06:12 -0700783 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700784
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700785 offset = i915_gem_obj_ggtt_offset(obj) + args->offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700786
Rodrigo Vivi77a0d1c2015-06-18 11:43:24 -0700787 intel_fb_obj_invalidate(obj, ORIGIN_GTT);
Paulo Zanoni063e4e62015-02-13 17:23:45 -0200788
Eric Anholt673a3942008-07-30 12:06:12 -0700789 while (remain > 0) {
790 /* Operation in this page
791 *
Keith Packard0839ccb2008-10-30 19:38:48 -0700792 * page_base = page offset within aperture
793 * page_offset = offset within page
794 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -0700795 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100796 page_base = offset & PAGE_MASK;
797 page_offset = offset_in_page(offset);
Keith Packard0839ccb2008-10-30 19:38:48 -0700798 page_length = remain;
799 if ((page_offset + remain) > PAGE_SIZE)
800 page_length = PAGE_SIZE - page_offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700801
Keith Packard0839ccb2008-10-30 19:38:48 -0700802 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -0700803 * source page isn't available. Return the error and we'll
804 * retry in the slow path.
Keith Packard0839ccb2008-10-30 19:38:48 -0700805 */
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300806 if (fast_user_write(ggtt->mappable, page_base,
Daniel Vetter935aaa62012-03-25 19:47:35 +0200807 page_offset, user_data, page_length)) {
808 ret = -EFAULT;
Paulo Zanoni063e4e62015-02-13 17:23:45 -0200809 goto out_flush;
Daniel Vetter935aaa62012-03-25 19:47:35 +0200810 }
Eric Anholt673a3942008-07-30 12:06:12 -0700811
Keith Packard0839ccb2008-10-30 19:38:48 -0700812 remain -= page_length;
813 user_data += page_length;
814 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700815 }
Eric Anholt673a3942008-07-30 12:06:12 -0700816
Paulo Zanoni063e4e62015-02-13 17:23:45 -0200817out_flush:
Rodrigo Vivide152b62015-07-07 16:28:51 -0700818 intel_fb_obj_flush(obj, false, ORIGIN_GTT);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200819out_unpin:
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800820 i915_gem_object_ggtt_unpin(obj);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200821out:
Eric Anholt3de09aa2009-03-09 09:42:23 -0700822 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700823}
824
Daniel Vetterd174bd62012-03-25 19:47:40 +0200825/* Per-page copy function for the shmem pwrite fastpath.
826 * Flushes invalid cachelines before writing to the target if
827 * needs_clflush_before is set and flushes out any written cachelines after
828 * writing if needs_clflush is set. */
Eric Anholt673a3942008-07-30 12:06:12 -0700829static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200830shmem_pwrite_fast(struct page *page, int shmem_page_offset, int page_length,
831 char __user *user_data,
832 bool page_do_bit17_swizzling,
833 bool needs_clflush_before,
834 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700835{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200836 char *vaddr;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700837 int ret;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700838
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200839 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200840 return -EINVAL;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700841
Daniel Vetterd174bd62012-03-25 19:47:40 +0200842 vaddr = kmap_atomic(page);
843 if (needs_clflush_before)
844 drm_clflush_virt_range(vaddr + shmem_page_offset,
845 page_length);
Chris Wilsonc2831a92014-03-07 08:30:37 +0000846 ret = __copy_from_user_inatomic(vaddr + shmem_page_offset,
847 user_data, page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200848 if (needs_clflush_after)
849 drm_clflush_virt_range(vaddr + shmem_page_offset,
850 page_length);
851 kunmap_atomic(vaddr);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700852
Chris Wilson755d2212012-09-04 21:02:55 +0100853 return ret ? -EFAULT : 0;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700854}
855
Daniel Vetterd174bd62012-03-25 19:47:40 +0200856/* Only difference to the fast-path function is that this can handle bit17
857 * and uses non-atomic copy and kmap functions. */
Eric Anholt3043c602008-10-02 12:24:47 -0700858static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200859shmem_pwrite_slow(struct page *page, int shmem_page_offset, int page_length,
860 char __user *user_data,
861 bool page_do_bit17_swizzling,
862 bool needs_clflush_before,
863 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700864{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200865 char *vaddr;
866 int ret;
Eric Anholt40123c12009-03-09 13:42:30 -0700867
Daniel Vetterd174bd62012-03-25 19:47:40 +0200868 vaddr = kmap(page);
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200869 if (unlikely(needs_clflush_before || page_do_bit17_swizzling))
Daniel Vetter23c18c72012-03-25 19:47:42 +0200870 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
871 page_length,
872 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200873 if (page_do_bit17_swizzling)
874 ret = __copy_from_user_swizzled(vaddr, shmem_page_offset,
Chris Wilsone5281cc2010-10-28 13:45:36 +0100875 user_data,
876 page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200877 else
878 ret = __copy_from_user(vaddr + shmem_page_offset,
879 user_data,
880 page_length);
881 if (needs_clflush_after)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200882 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
883 page_length,
884 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200885 kunmap(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100886
Chris Wilson755d2212012-09-04 21:02:55 +0100887 return ret ? -EFAULT : 0;
Eric Anholt40123c12009-03-09 13:42:30 -0700888}
889
Eric Anholt40123c12009-03-09 13:42:30 -0700890static int
Daniel Vettere244a442012-03-25 19:47:28 +0200891i915_gem_shmem_pwrite(struct drm_device *dev,
892 struct drm_i915_gem_object *obj,
893 struct drm_i915_gem_pwrite *args,
894 struct drm_file *file)
Eric Anholt40123c12009-03-09 13:42:30 -0700895{
Eric Anholt40123c12009-03-09 13:42:30 -0700896 ssize_t remain;
Daniel Vetter8c599672011-12-14 13:57:31 +0100897 loff_t offset;
898 char __user *user_data;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100899 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8c599672011-12-14 13:57:31 +0100900 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vettere244a442012-03-25 19:47:28 +0200901 int hit_slowpath = 0;
Daniel Vetter58642882012-03-25 19:47:37 +0200902 int needs_clflush_after = 0;
903 int needs_clflush_before = 0;
Imre Deak67d5a502013-02-18 19:28:02 +0200904 struct sg_page_iter sg_iter;
Eric Anholt40123c12009-03-09 13:42:30 -0700905
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200906 user_data = to_user_ptr(args->data_ptr);
Eric Anholt40123c12009-03-09 13:42:30 -0700907 remain = args->size;
908
Daniel Vetter8c599672011-12-14 13:57:31 +0100909 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700910
Daniel Vetter58642882012-03-25 19:47:37 +0200911 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
912 /* If we're not in the cpu write domain, set ourself into the gtt
913 * write domain and manually flush cachelines (if required). This
914 * optimizes for the case when the gpu will use the data
915 * right away and we therefore have to clflush anyway. */
Chris Wilson2c225692013-08-09 12:26:45 +0100916 needs_clflush_after = cpu_write_needs_clflush(obj);
Ben Widawsky23f54482013-09-11 14:57:48 -0700917 ret = i915_gem_object_wait_rendering(obj, false);
918 if (ret)
919 return ret;
Daniel Vetter58642882012-03-25 19:47:37 +0200920 }
Chris Wilsonc76ce032013-08-08 14:41:03 +0100921 /* Same trick applies to invalidate partially written cachelines read
922 * before writing. */
923 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0)
924 needs_clflush_before =
925 !cpu_cache_is_coherent(dev, obj->cache_level);
Daniel Vetter58642882012-03-25 19:47:37 +0200926
Chris Wilson755d2212012-09-04 21:02:55 +0100927 ret = i915_gem_object_get_pages(obj);
928 if (ret)
929 return ret;
930
Rodrigo Vivi77a0d1c2015-06-18 11:43:24 -0700931 intel_fb_obj_invalidate(obj, ORIGIN_CPU);
Paulo Zanoni063e4e62015-02-13 17:23:45 -0200932
Chris Wilson755d2212012-09-04 21:02:55 +0100933 i915_gem_object_pin_pages(obj);
934
Eric Anholt40123c12009-03-09 13:42:30 -0700935 offset = args->offset;
Chris Wilson05394f32010-11-08 19:18:58 +0000936 obj->dirty = 1;
Eric Anholt40123c12009-03-09 13:42:30 -0700937
Imre Deak67d5a502013-02-18 19:28:02 +0200938 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents,
939 offset >> PAGE_SHIFT) {
Imre Deak2db76d72013-03-26 15:14:18 +0200940 struct page *page = sg_page_iter_page(&sg_iter);
Daniel Vetter58642882012-03-25 19:47:37 +0200941 int partial_cacheline_write;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100942
Chris Wilson9da3da62012-06-01 15:20:22 +0100943 if (remain <= 0)
944 break;
945
Eric Anholt40123c12009-03-09 13:42:30 -0700946 /* Operation in this page
947 *
Eric Anholt40123c12009-03-09 13:42:30 -0700948 * shmem_page_offset = offset within page in shmem file
Eric Anholt40123c12009-03-09 13:42:30 -0700949 * page_length = bytes to copy for this page
950 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100951 shmem_page_offset = offset_in_page(offset);
Eric Anholt40123c12009-03-09 13:42:30 -0700952
953 page_length = remain;
954 if ((shmem_page_offset + page_length) > PAGE_SIZE)
955 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700956
Daniel Vetter58642882012-03-25 19:47:37 +0200957 /* If we don't overwrite a cacheline completely we need to be
958 * careful to have up-to-date data by first clflushing. Don't
959 * overcomplicate things and flush the entire patch. */
960 partial_cacheline_write = needs_clflush_before &&
961 ((shmem_page_offset | page_length)
962 & (boot_cpu_data.x86_clflush_size - 1));
963
Daniel Vetter8c599672011-12-14 13:57:31 +0100964 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
965 (page_to_phys(page) & (1 << 17)) != 0;
966
Daniel Vetterd174bd62012-03-25 19:47:40 +0200967 ret = shmem_pwrite_fast(page, shmem_page_offset, page_length,
968 user_data, page_do_bit17_swizzling,
969 partial_cacheline_write,
970 needs_clflush_after);
971 if (ret == 0)
972 goto next_page;
Eric Anholt40123c12009-03-09 13:42:30 -0700973
Daniel Vettere244a442012-03-25 19:47:28 +0200974 hit_slowpath = 1;
Daniel Vettere244a442012-03-25 19:47:28 +0200975 mutex_unlock(&dev->struct_mutex);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200976 ret = shmem_pwrite_slow(page, shmem_page_offset, page_length,
977 user_data, page_do_bit17_swizzling,
978 partial_cacheline_write,
979 needs_clflush_after);
Eric Anholt40123c12009-03-09 13:42:30 -0700980
Daniel Vettere244a442012-03-25 19:47:28 +0200981 mutex_lock(&dev->struct_mutex);
Chris Wilson755d2212012-09-04 21:02:55 +0100982
Chris Wilson755d2212012-09-04 21:02:55 +0100983 if (ret)
Daniel Vetter8c599672011-12-14 13:57:31 +0100984 goto out;
Daniel Vetter8c599672011-12-14 13:57:31 +0100985
Chris Wilson17793c92014-03-07 08:30:36 +0000986next_page:
Eric Anholt40123c12009-03-09 13:42:30 -0700987 remain -= page_length;
Daniel Vetter8c599672011-12-14 13:57:31 +0100988 user_data += page_length;
Eric Anholt40123c12009-03-09 13:42:30 -0700989 offset += page_length;
990 }
991
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100992out:
Chris Wilson755d2212012-09-04 21:02:55 +0100993 i915_gem_object_unpin_pages(obj);
994
Daniel Vettere244a442012-03-25 19:47:28 +0200995 if (hit_slowpath) {
Daniel Vetter8dcf0152012-11-15 16:53:58 +0100996 /*
997 * Fixup: Flush cpu caches in case we didn't flush the dirty
998 * cachelines in-line while writing and the object moved
999 * out of the cpu write domain while we've dropped the lock.
1000 */
1001 if (!needs_clflush_after &&
1002 obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
Chris Wilson000433b2013-08-08 14:41:09 +01001003 if (i915_gem_clflush_object(obj, obj->pin_display))
Ville Syrjäläed75a552015-08-11 19:47:10 +03001004 needs_clflush_after = true;
Daniel Vettere244a442012-03-25 19:47:28 +02001005 }
Daniel Vetter8c599672011-12-14 13:57:31 +01001006 }
Eric Anholt40123c12009-03-09 13:42:30 -07001007
Daniel Vetter58642882012-03-25 19:47:37 +02001008 if (needs_clflush_after)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08001009 i915_gem_chipset_flush(dev);
Ville Syrjäläed75a552015-08-11 19:47:10 +03001010 else
1011 obj->cache_dirty = true;
Daniel Vetter58642882012-03-25 19:47:37 +02001012
Rodrigo Vivide152b62015-07-07 16:28:51 -07001013 intel_fb_obj_flush(obj, false, ORIGIN_CPU);
Eric Anholt40123c12009-03-09 13:42:30 -07001014 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001015}
1016
1017/**
1018 * Writes data to the object referenced by handle.
1019 *
1020 * On error, the contents of the buffer that were to be modified are undefined.
1021 */
1022int
1023i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001024 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001025{
Imre Deak5d77d9c2014-11-12 16:40:35 +02001026 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001027 struct drm_i915_gem_pwrite *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001028 struct drm_i915_gem_object *obj;
Chris Wilson51311d02010-11-17 09:10:42 +00001029 int ret;
1030
1031 if (args->size == 0)
1032 return 0;
1033
1034 if (!access_ok(VERIFY_READ,
Ville Syrjälä2bb46292013-02-22 16:12:51 +02001035 to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +00001036 args->size))
1037 return -EFAULT;
1038
Jani Nikulad330a952014-01-21 11:24:25 +02001039 if (likely(!i915.prefault_disable)) {
Xiong Zhang0b74b502013-07-19 13:51:24 +08001040 ret = fault_in_multipages_readable(to_user_ptr(args->data_ptr),
1041 args->size);
1042 if (ret)
1043 return -EFAULT;
1044 }
Eric Anholt673a3942008-07-30 12:06:12 -07001045
Imre Deak5d77d9c2014-11-12 16:40:35 +02001046 intel_runtime_pm_get(dev_priv);
1047
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001048 ret = i915_mutex_lock_interruptible(dev);
1049 if (ret)
Imre Deak5d77d9c2014-11-12 16:40:35 +02001050 goto put_rpm;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001051
Chris Wilson05394f32010-11-08 19:18:58 +00001052 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001053 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001054 ret = -ENOENT;
1055 goto unlock;
1056 }
Eric Anholt673a3942008-07-30 12:06:12 -07001057
Chris Wilson7dcd2492010-09-26 20:21:44 +01001058 /* Bounds check destination. */
Chris Wilson05394f32010-11-08 19:18:58 +00001059 if (args->offset > obj->base.size ||
1060 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +01001061 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +01001062 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +01001063 }
1064
Daniel Vetter1286ff72012-05-10 15:25:09 +02001065 /* prime objects have no backing filp to GEM pread/pwrite
1066 * pages from.
1067 */
1068 if (!obj->base.filp) {
1069 ret = -EINVAL;
1070 goto out;
1071 }
1072
Chris Wilsondb53a302011-02-03 11:57:46 +00001073 trace_i915_gem_object_pwrite(obj, args->offset, args->size);
1074
Daniel Vetter935aaa62012-03-25 19:47:35 +02001075 ret = -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -07001076 /* We can only do the GTT pwrite on untiled buffers, as otherwise
1077 * it would end up going through the fenced access, and we'll get
1078 * different detiling behavior between reading and writing.
1079 * pread/pwrite currently are reading and writing from the CPU
1080 * perspective, requiring manual detiling by the client.
1081 */
Chris Wilson2c225692013-08-09 12:26:45 +01001082 if (obj->tiling_mode == I915_TILING_NONE &&
1083 obj->base.write_domain != I915_GEM_DOMAIN_CPU &&
1084 cpu_write_needs_clflush(obj)) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001085 ret = i915_gem_gtt_pwrite_fast(dev, obj, args, file);
Daniel Vetter935aaa62012-03-25 19:47:35 +02001086 /* Note that the gtt paths might fail with non-page-backed user
1087 * pointers (e.g. gtt mappings when moving data between
1088 * textures). Fallback to the shmem path in that case. */
Eric Anholt40123c12009-03-09 13:42:30 -07001089 }
Eric Anholt673a3942008-07-30 12:06:12 -07001090
Chris Wilson6a2c4232014-11-04 04:51:40 -08001091 if (ret == -EFAULT || ret == -ENOSPC) {
1092 if (obj->phys_handle)
1093 ret = i915_gem_phys_pwrite(obj, args, file);
1094 else
1095 ret = i915_gem_shmem_pwrite(dev, obj, args, file);
1096 }
Daniel Vetter5c0480f2011-12-14 13:57:30 +01001097
Chris Wilson35b62a82010-09-26 20:23:38 +01001098out:
Chris Wilson05394f32010-11-08 19:18:58 +00001099 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001100unlock:
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001101 mutex_unlock(&dev->struct_mutex);
Imre Deak5d77d9c2014-11-12 16:40:35 +02001102put_rpm:
1103 intel_runtime_pm_put(dev_priv);
1104
Eric Anholt673a3942008-07-30 12:06:12 -07001105 return ret;
1106}
1107
Chris Wilsonf4457ae2016-04-13 17:35:08 +01001108static int
1109i915_gem_check_wedge(unsigned reset_counter, bool interruptible)
Chris Wilsonb3612372012-08-24 09:35:08 +01001110{
Chris Wilsonf4457ae2016-04-13 17:35:08 +01001111 if (__i915_terminally_wedged(reset_counter))
1112 return -EIO;
Chris Wilsond98c52c2016-04-13 17:35:05 +01001113
Chris Wilsonf4457ae2016-04-13 17:35:08 +01001114 if (__i915_reset_in_progress(reset_counter)) {
Chris Wilsonb3612372012-08-24 09:35:08 +01001115 /* Non-interruptible callers can't handle -EAGAIN, hence return
1116 * -EIO unconditionally for these. */
1117 if (!interruptible)
1118 return -EIO;
1119
Chris Wilsond98c52c2016-04-13 17:35:05 +01001120 return -EAGAIN;
Chris Wilsonb3612372012-08-24 09:35:08 +01001121 }
1122
1123 return 0;
1124}
1125
Chris Wilson094f9a52013-09-25 17:34:55 +01001126static void fake_irq(unsigned long data)
1127{
1128 wake_up_process((struct task_struct *)data);
1129}
1130
1131static bool missed_irq(struct drm_i915_private *dev_priv,
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001132 struct intel_engine_cs *engine)
Chris Wilson094f9a52013-09-25 17:34:55 +01001133{
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00001134 return test_bit(engine->id, &dev_priv->gpu_error.missed_irq_rings);
Chris Wilson094f9a52013-09-25 17:34:55 +01001135}
1136
Chris Wilsonca5b7212015-12-11 11:32:58 +00001137static unsigned long local_clock_us(unsigned *cpu)
1138{
1139 unsigned long t;
1140
1141 /* Cheaply and approximately convert from nanoseconds to microseconds.
1142 * The result and subsequent calculations are also defined in the same
1143 * approximate microseconds units. The principal source of timing
1144 * error here is from the simple truncation.
1145 *
1146 * Note that local_clock() is only defined wrt to the current CPU;
1147 * the comparisons are no longer valid if we switch CPUs. Instead of
1148 * blocking preemption for the entire busywait, we can detect the CPU
1149 * switch and use that as indicator of system load and a reason to
1150 * stop busywaiting, see busywait_stop().
1151 */
1152 *cpu = get_cpu();
1153 t = local_clock() >> 10;
1154 put_cpu();
1155
1156 return t;
1157}
1158
1159static bool busywait_stop(unsigned long timeout, unsigned cpu)
1160{
1161 unsigned this_cpu;
1162
1163 if (time_after(local_clock_us(&this_cpu), timeout))
1164 return true;
1165
1166 return this_cpu != cpu;
1167}
1168
Chris Wilson91b0c352015-12-11 11:32:57 +00001169static int __i915_spin_request(struct drm_i915_gem_request *req, int state)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001170{
Chris Wilson2def4ad92015-04-07 16:20:41 +01001171 unsigned long timeout;
Chris Wilsonca5b7212015-12-11 11:32:58 +00001172 unsigned cpu;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001173
Chris Wilsonca5b7212015-12-11 11:32:58 +00001174 /* When waiting for high frequency requests, e.g. during synchronous
1175 * rendering split between the CPU and GPU, the finite amount of time
1176 * required to set up the irq and wait upon it limits the response
1177 * rate. By busywaiting on the request completion for a short while we
1178 * can service the high frequency waits as quick as possible. However,
1179 * if it is a slow request, we want to sleep as quickly as possible.
1180 * The tradeoff between waiting and sleeping is roughly the time it
1181 * takes to sleep on a request, on the order of a microsecond.
1182 */
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001183
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00001184 if (req->engine->irq_refcount)
Chris Wilson2def4ad92015-04-07 16:20:41 +01001185 return -EBUSY;
1186
Chris Wilson821485d2015-12-11 11:32:59 +00001187 /* Only spin if we know the GPU is processing this request */
1188 if (!i915_gem_request_started(req, true))
1189 return -EAGAIN;
1190
Chris Wilsonca5b7212015-12-11 11:32:58 +00001191 timeout = local_clock_us(&cpu) + 5;
Chris Wilson2def4ad92015-04-07 16:20:41 +01001192 while (!need_resched()) {
Daniel Vettereed29a52015-05-21 14:21:25 +02001193 if (i915_gem_request_completed(req, true))
Chris Wilson2def4ad92015-04-07 16:20:41 +01001194 return 0;
1195
Chris Wilson91b0c352015-12-11 11:32:57 +00001196 if (signal_pending_state(state, current))
1197 break;
1198
Chris Wilsonca5b7212015-12-11 11:32:58 +00001199 if (busywait_stop(timeout, cpu))
Chris Wilson2def4ad92015-04-07 16:20:41 +01001200 break;
1201
1202 cpu_relax_lowlatency();
1203 }
Chris Wilson821485d2015-12-11 11:32:59 +00001204
Daniel Vettereed29a52015-05-21 14:21:25 +02001205 if (i915_gem_request_completed(req, false))
Chris Wilson2def4ad92015-04-07 16:20:41 +01001206 return 0;
1207
1208 return -EAGAIN;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001209}
1210
Chris Wilsonb3612372012-08-24 09:35:08 +01001211/**
John Harrison9c654812014-11-24 18:49:35 +00001212 * __i915_wait_request - wait until execution of request has finished
1213 * @req: duh!
Chris Wilsonb3612372012-08-24 09:35:08 +01001214 * @interruptible: do an interruptible wait (normally yes)
1215 * @timeout: in - how long to wait (NULL forever); out - how much time remaining
1216 *
Daniel Vetterf69061b2012-12-06 09:01:42 +01001217 * Note: It is of utmost importance that the passed in seqno and reset_counter
1218 * values have been read by the caller in an smp safe manner. Where read-side
1219 * locks are involved, it is sufficient to read the reset_counter before
1220 * unlocking the lock that protects the seqno. For lockless tricks, the
1221 * reset_counter _must_ be read before, and an appropriate smp_rmb must be
1222 * inserted.
1223 *
John Harrison9c654812014-11-24 18:49:35 +00001224 * Returns 0 if the request was found within the alloted time. Else returns the
Chris Wilsonb3612372012-08-24 09:35:08 +01001225 * errno with remaining time filled in timeout argument.
1226 */
John Harrison9c654812014-11-24 18:49:35 +00001227int __i915_wait_request(struct drm_i915_gem_request *req,
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001228 bool interruptible,
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001229 s64 *timeout,
Chris Wilson2e1b8732015-04-27 13:41:22 +01001230 struct intel_rps_client *rps)
Chris Wilsonb3612372012-08-24 09:35:08 +01001231{
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00001232 struct intel_engine_cs *engine = i915_gem_request_get_engine(req);
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001233 struct drm_device *dev = engine->dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03001234 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001235 const bool irq_test_in_progress =
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00001236 ACCESS_ONCE(dev_priv->gpu_error.test_irq_rings) & intel_engine_flag(engine);
Chris Wilson91b0c352015-12-11 11:32:57 +00001237 int state = interruptible ? TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE;
Chris Wilson094f9a52013-09-25 17:34:55 +01001238 DEFINE_WAIT(wait);
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001239 unsigned long timeout_expire;
Tvrtko Ursuline0313db2016-01-15 15:11:12 +00001240 s64 before = 0; /* Only to silence a compiler warning. */
Chris Wilsonb3612372012-08-24 09:35:08 +01001241 int ret;
1242
Jesse Barnes9df7575f2014-06-20 09:29:20 -07001243 WARN(!intel_irqs_enabled(dev_priv), "IRQs disabled");
Paulo Zanonic67a4702013-08-19 13:18:09 -03001244
Chris Wilsonb4716182015-04-27 13:41:17 +01001245 if (list_empty(&req->list))
1246 return 0;
1247
John Harrison1b5a4332014-11-24 18:49:42 +00001248 if (i915_gem_request_completed(req, true))
Chris Wilsonb3612372012-08-24 09:35:08 +01001249 return 0;
1250
Chris Wilsonbb6d1982015-11-26 13:31:42 +00001251 timeout_expire = 0;
1252 if (timeout) {
1253 if (WARN_ON(*timeout < 0))
1254 return -EINVAL;
1255
1256 if (*timeout == 0)
1257 return -ETIME;
1258
1259 timeout_expire = jiffies + nsecs_to_jiffies_timeout(*timeout);
Tvrtko Ursuline0313db2016-01-15 15:11:12 +00001260
1261 /*
1262 * Record current time in case interrupted by signal, or wedged.
1263 */
1264 before = ktime_get_raw_ns();
Chris Wilsonbb6d1982015-11-26 13:31:42 +00001265 }
Chris Wilsonb3612372012-08-24 09:35:08 +01001266
Chris Wilson2e1b8732015-04-27 13:41:22 +01001267 if (INTEL_INFO(dev_priv)->gen >= 6)
Chris Wilsone61b9952015-04-27 13:41:24 +01001268 gen6_rps_boost(dev_priv, rps, req->emitted_jiffies);
Chris Wilsonb3612372012-08-24 09:35:08 +01001269
John Harrison74328ee2014-11-24 18:49:38 +00001270 trace_i915_gem_request_wait_begin(req);
Chris Wilson2def4ad92015-04-07 16:20:41 +01001271
1272 /* Optimistic spin for the next jiffie before touching IRQs */
Chris Wilson91b0c352015-12-11 11:32:57 +00001273 ret = __i915_spin_request(req, state);
Chris Wilson2def4ad92015-04-07 16:20:41 +01001274 if (ret == 0)
1275 goto out;
1276
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001277 if (!irq_test_in_progress && WARN_ON(!engine->irq_get(engine))) {
Chris Wilson2def4ad92015-04-07 16:20:41 +01001278 ret = -ENODEV;
1279 goto out;
1280 }
1281
Chris Wilson094f9a52013-09-25 17:34:55 +01001282 for (;;) {
1283 struct timer_list timer;
Chris Wilsonb3612372012-08-24 09:35:08 +01001284
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001285 prepare_to_wait(&engine->irq_queue, &wait, state);
Chris Wilsonb3612372012-08-24 09:35:08 +01001286
Daniel Vetterf69061b2012-12-06 09:01:42 +01001287 /* We need to check whether any gpu reset happened in between
Chris Wilsonf4457ae2016-04-13 17:35:08 +01001288 * the request being submitted and now. If a reset has occurred,
1289 * the request is effectively complete (we either are in the
1290 * process of or have discarded the rendering and completely
1291 * reset the GPU. The results of the request are lost and we
1292 * are free to continue on with the original operation.
1293 */
Chris Wilson299259a2016-04-13 17:35:06 +01001294 if (req->reset_counter != i915_reset_counter(&dev_priv->gpu_error)) {
Chris Wilsonf4457ae2016-04-13 17:35:08 +01001295 ret = 0;
Chris Wilson094f9a52013-09-25 17:34:55 +01001296 break;
1297 }
Daniel Vetterf69061b2012-12-06 09:01:42 +01001298
John Harrison1b5a4332014-11-24 18:49:42 +00001299 if (i915_gem_request_completed(req, false)) {
Chris Wilson094f9a52013-09-25 17:34:55 +01001300 ret = 0;
1301 break;
1302 }
Chris Wilsonb3612372012-08-24 09:35:08 +01001303
Chris Wilson91b0c352015-12-11 11:32:57 +00001304 if (signal_pending_state(state, current)) {
Chris Wilson094f9a52013-09-25 17:34:55 +01001305 ret = -ERESTARTSYS;
1306 break;
1307 }
1308
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001309 if (timeout && time_after_eq(jiffies, timeout_expire)) {
Chris Wilson094f9a52013-09-25 17:34:55 +01001310 ret = -ETIME;
1311 break;
1312 }
1313
1314 timer.function = NULL;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001315 if (timeout || missed_irq(dev_priv, engine)) {
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001316 unsigned long expire;
1317
Chris Wilson094f9a52013-09-25 17:34:55 +01001318 setup_timer_on_stack(&timer, fake_irq, (unsigned long)current);
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001319 expire = missed_irq(dev_priv, engine) ? jiffies + 1 : timeout_expire;
Chris Wilson094f9a52013-09-25 17:34:55 +01001320 mod_timer(&timer, expire);
1321 }
1322
Chris Wilson5035c272013-10-04 09:58:46 +01001323 io_schedule();
Chris Wilson094f9a52013-09-25 17:34:55 +01001324
Chris Wilson094f9a52013-09-25 17:34:55 +01001325 if (timer.function) {
1326 del_singleshot_timer_sync(&timer);
1327 destroy_timer_on_stack(&timer);
1328 }
1329 }
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001330 if (!irq_test_in_progress)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001331 engine->irq_put(engine);
Chris Wilson094f9a52013-09-25 17:34:55 +01001332
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001333 finish_wait(&engine->irq_queue, &wait);
Chris Wilsonb3612372012-08-24 09:35:08 +01001334
Chris Wilson2def4ad92015-04-07 16:20:41 +01001335out:
Chris Wilson2def4ad92015-04-07 16:20:41 +01001336 trace_i915_gem_request_wait_end(req);
1337
Chris Wilsonb3612372012-08-24 09:35:08 +01001338 if (timeout) {
Tvrtko Ursuline0313db2016-01-15 15:11:12 +00001339 s64 tres = *timeout - (ktime_get_raw_ns() - before);
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001340
1341 *timeout = tres < 0 ? 0 : tres;
Daniel Vetter9cca3062014-11-28 10:29:55 +01001342
1343 /*
1344 * Apparently ktime isn't accurate enough and occasionally has a
1345 * bit of mismatch in the jiffies<->nsecs<->ktime loop. So patch
1346 * things up to make the test happy. We allow up to 1 jiffy.
1347 *
1348 * This is a regrssion from the timespec->ktime conversion.
1349 */
1350 if (ret == -ETIME && *timeout < jiffies_to_usecs(1)*1000)
1351 *timeout = 0;
Chris Wilsonb3612372012-08-24 09:35:08 +01001352 }
1353
Chris Wilson094f9a52013-09-25 17:34:55 +01001354 return ret;
Chris Wilsonb3612372012-08-24 09:35:08 +01001355}
1356
John Harrisonfcfa423c2015-05-29 17:44:12 +01001357int i915_gem_request_add_to_client(struct drm_i915_gem_request *req,
1358 struct drm_file *file)
1359{
John Harrisonfcfa423c2015-05-29 17:44:12 +01001360 struct drm_i915_file_private *file_priv;
1361
1362 WARN_ON(!req || !file || req->file_priv);
1363
1364 if (!req || !file)
1365 return -EINVAL;
1366
1367 if (req->file_priv)
1368 return -EINVAL;
1369
John Harrisonfcfa423c2015-05-29 17:44:12 +01001370 file_priv = file->driver_priv;
1371
1372 spin_lock(&file_priv->mm.lock);
1373 req->file_priv = file_priv;
1374 list_add_tail(&req->client_list, &file_priv->mm.request_list);
1375 spin_unlock(&file_priv->mm.lock);
1376
1377 req->pid = get_pid(task_pid(current));
1378
1379 return 0;
1380}
1381
Chris Wilsonb4716182015-04-27 13:41:17 +01001382static inline void
1383i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
1384{
1385 struct drm_i915_file_private *file_priv = request->file_priv;
1386
1387 if (!file_priv)
1388 return;
1389
1390 spin_lock(&file_priv->mm.lock);
1391 list_del(&request->client_list);
1392 request->file_priv = NULL;
1393 spin_unlock(&file_priv->mm.lock);
John Harrisonfcfa423c2015-05-29 17:44:12 +01001394
1395 put_pid(request->pid);
1396 request->pid = NULL;
Chris Wilsonb4716182015-04-27 13:41:17 +01001397}
1398
1399static void i915_gem_request_retire(struct drm_i915_gem_request *request)
1400{
1401 trace_i915_gem_request_retire(request);
1402
1403 /* We know the GPU must have read the request to have
1404 * sent us the seqno + interrupt, so use the position
1405 * of tail of the request to update the last known position
1406 * of the GPU head.
1407 *
1408 * Note this requires that we are always called in request
1409 * completion order.
1410 */
1411 request->ringbuf->last_retired_head = request->postfix;
1412
1413 list_del_init(&request->list);
1414 i915_gem_request_remove_from_client(request);
1415
Chris Wilsonb4716182015-04-27 13:41:17 +01001416 i915_gem_request_unreference(request);
1417}
1418
1419static void
1420__i915_gem_request_retire__upto(struct drm_i915_gem_request *req)
1421{
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00001422 struct intel_engine_cs *engine = req->engine;
Chris Wilsonb4716182015-04-27 13:41:17 +01001423 struct drm_i915_gem_request *tmp;
1424
1425 lockdep_assert_held(&engine->dev->struct_mutex);
1426
1427 if (list_empty(&req->list))
1428 return;
1429
1430 do {
1431 tmp = list_first_entry(&engine->request_list,
1432 typeof(*tmp), list);
1433
1434 i915_gem_request_retire(tmp);
1435 } while (tmp != req);
1436
1437 WARN_ON(i915_verify_lists(engine->dev));
1438}
1439
Chris Wilsonb3612372012-08-24 09:35:08 +01001440/**
Daniel Vettera4b3a572014-11-26 14:17:05 +01001441 * Waits for a request to be signaled, and cleans up the
Chris Wilsonb3612372012-08-24 09:35:08 +01001442 * request and object lists appropriately for that event.
1443 */
1444int
Daniel Vettera4b3a572014-11-26 14:17:05 +01001445i915_wait_request(struct drm_i915_gem_request *req)
Chris Wilsonb3612372012-08-24 09:35:08 +01001446{
Tvrtko Ursulin791bee12016-04-19 16:46:09 +01001447 struct drm_i915_private *dev_priv = req->i915;
Daniel Vettera4b3a572014-11-26 14:17:05 +01001448 bool interruptible;
Chris Wilsonb3612372012-08-24 09:35:08 +01001449 int ret;
1450
Daniel Vettera4b3a572014-11-26 14:17:05 +01001451 interruptible = dev_priv->mm.interruptible;
1452
Tvrtko Ursulin791bee12016-04-19 16:46:09 +01001453 BUG_ON(!mutex_is_locked(&dev_priv->dev->struct_mutex));
Chris Wilsonb3612372012-08-24 09:35:08 +01001454
Chris Wilson299259a2016-04-13 17:35:06 +01001455 ret = __i915_wait_request(req, interruptible, NULL, NULL);
Chris Wilsonb4716182015-04-27 13:41:17 +01001456 if (ret)
1457 return ret;
Chris Wilsonb3612372012-08-24 09:35:08 +01001458
Chris Wilsonb4716182015-04-27 13:41:17 +01001459 __i915_gem_request_retire__upto(req);
Chris Wilsond26e3af2013-06-29 22:05:26 +01001460 return 0;
1461}
1462
Chris Wilsonb3612372012-08-24 09:35:08 +01001463/**
1464 * Ensures that all rendering to the object has completed and the object is
1465 * safe to unbind from the GTT or access from the CPU.
1466 */
Chris Wilson2e2f3512015-04-27 13:41:14 +01001467int
Chris Wilsonb3612372012-08-24 09:35:08 +01001468i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj,
1469 bool readonly)
1470{
Chris Wilsonb4716182015-04-27 13:41:17 +01001471 int ret, i;
Chris Wilsonb3612372012-08-24 09:35:08 +01001472
Chris Wilsonb4716182015-04-27 13:41:17 +01001473 if (!obj->active)
Chris Wilsonb3612372012-08-24 09:35:08 +01001474 return 0;
1475
Chris Wilsonb4716182015-04-27 13:41:17 +01001476 if (readonly) {
1477 if (obj->last_write_req != NULL) {
1478 ret = i915_wait_request(obj->last_write_req);
1479 if (ret)
1480 return ret;
Chris Wilsonb3612372012-08-24 09:35:08 +01001481
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00001482 i = obj->last_write_req->engine->id;
Chris Wilsonb4716182015-04-27 13:41:17 +01001483 if (obj->last_read_req[i] == obj->last_write_req)
1484 i915_gem_object_retire__read(obj, i);
1485 else
1486 i915_gem_object_retire__write(obj);
1487 }
1488 } else {
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00001489 for (i = 0; i < I915_NUM_ENGINES; i++) {
Chris Wilsonb4716182015-04-27 13:41:17 +01001490 if (obj->last_read_req[i] == NULL)
1491 continue;
1492
1493 ret = i915_wait_request(obj->last_read_req[i]);
1494 if (ret)
1495 return ret;
1496
1497 i915_gem_object_retire__read(obj, i);
1498 }
Chris Wilsond501b1d2016-04-13 17:35:02 +01001499 GEM_BUG_ON(obj->active);
Chris Wilsonb4716182015-04-27 13:41:17 +01001500 }
1501
1502 return 0;
1503}
1504
1505static void
1506i915_gem_object_retire_request(struct drm_i915_gem_object *obj,
1507 struct drm_i915_gem_request *req)
1508{
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00001509 int ring = req->engine->id;
Chris Wilsonb4716182015-04-27 13:41:17 +01001510
1511 if (obj->last_read_req[ring] == req)
1512 i915_gem_object_retire__read(obj, ring);
1513 else if (obj->last_write_req == req)
1514 i915_gem_object_retire__write(obj);
1515
1516 __i915_gem_request_retire__upto(req);
Chris Wilsonb3612372012-08-24 09:35:08 +01001517}
1518
Chris Wilson3236f572012-08-24 09:35:09 +01001519/* A nonblocking variant of the above wait. This is a highly dangerous routine
1520 * as the object state may change during this call.
1521 */
1522static __must_check int
1523i915_gem_object_wait_rendering__nonblocking(struct drm_i915_gem_object *obj,
Chris Wilson2e1b8732015-04-27 13:41:22 +01001524 struct intel_rps_client *rps,
Chris Wilson3236f572012-08-24 09:35:09 +01001525 bool readonly)
1526{
1527 struct drm_device *dev = obj->base.dev;
1528 struct drm_i915_private *dev_priv = dev->dev_private;
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00001529 struct drm_i915_gem_request *requests[I915_NUM_ENGINES];
Chris Wilsonb4716182015-04-27 13:41:17 +01001530 int ret, i, n = 0;
Chris Wilson3236f572012-08-24 09:35:09 +01001531
1532 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
1533 BUG_ON(!dev_priv->mm.interruptible);
1534
Chris Wilsonb4716182015-04-27 13:41:17 +01001535 if (!obj->active)
Chris Wilson3236f572012-08-24 09:35:09 +01001536 return 0;
1537
Chris Wilsonb4716182015-04-27 13:41:17 +01001538 if (readonly) {
1539 struct drm_i915_gem_request *req;
1540
1541 req = obj->last_write_req;
1542 if (req == NULL)
1543 return 0;
1544
Chris Wilsonb4716182015-04-27 13:41:17 +01001545 requests[n++] = i915_gem_request_reference(req);
1546 } else {
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00001547 for (i = 0; i < I915_NUM_ENGINES; i++) {
Chris Wilsonb4716182015-04-27 13:41:17 +01001548 struct drm_i915_gem_request *req;
1549
1550 req = obj->last_read_req[i];
1551 if (req == NULL)
1552 continue;
1553
Chris Wilsonb4716182015-04-27 13:41:17 +01001554 requests[n++] = i915_gem_request_reference(req);
1555 }
1556 }
1557
1558 mutex_unlock(&dev->struct_mutex);
Chris Wilson299259a2016-04-13 17:35:06 +01001559 ret = 0;
Chris Wilsonb4716182015-04-27 13:41:17 +01001560 for (i = 0; ret == 0 && i < n; i++)
Chris Wilson299259a2016-04-13 17:35:06 +01001561 ret = __i915_wait_request(requests[i], true, NULL, rps);
Chris Wilsonb4716182015-04-27 13:41:17 +01001562 mutex_lock(&dev->struct_mutex);
1563
Chris Wilsonb4716182015-04-27 13:41:17 +01001564 for (i = 0; i < n; i++) {
1565 if (ret == 0)
1566 i915_gem_object_retire_request(obj, requests[i]);
1567 i915_gem_request_unreference(requests[i]);
1568 }
1569
1570 return ret;
Chris Wilson3236f572012-08-24 09:35:09 +01001571}
1572
Chris Wilson2e1b8732015-04-27 13:41:22 +01001573static struct intel_rps_client *to_rps_client(struct drm_file *file)
1574{
1575 struct drm_i915_file_private *fpriv = file->driver_priv;
1576 return &fpriv->rps;
1577}
1578
Eric Anholt673a3942008-07-30 12:06:12 -07001579/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001580 * Called when user space prepares to use an object with the CPU, either
1581 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -07001582 */
1583int
1584i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001585 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001586{
1587 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001588 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001589 uint32_t read_domains = args->read_domains;
1590 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07001591 int ret;
1592
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001593 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +01001594 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001595 return -EINVAL;
1596
Chris Wilson21d509e2009-06-06 09:46:02 +01001597 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001598 return -EINVAL;
1599
1600 /* Having something in the write domain implies it's in the read
1601 * domain, and only that read domain. Enforce that in the request.
1602 */
1603 if (write_domain != 0 && read_domains != write_domain)
1604 return -EINVAL;
1605
Chris Wilson76c1dec2010-09-25 11:22:51 +01001606 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001607 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001608 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001609
Chris Wilson05394f32010-11-08 19:18:58 +00001610 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001611 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001612 ret = -ENOENT;
1613 goto unlock;
Chris Wilson76c1dec2010-09-25 11:22:51 +01001614 }
Jesse Barnes652c3932009-08-17 13:31:43 -07001615
Chris Wilson3236f572012-08-24 09:35:09 +01001616 /* Try to flush the object off the GPU without holding the lock.
1617 * We will repeat the flush holding the lock in the normal manner
1618 * to catch cases where we are gazumped.
1619 */
Chris Wilson6e4930f2014-02-07 18:37:06 -02001620 ret = i915_gem_object_wait_rendering__nonblocking(obj,
Chris Wilson2e1b8732015-04-27 13:41:22 +01001621 to_rps_client(file),
Chris Wilson6e4930f2014-02-07 18:37:06 -02001622 !write_domain);
Chris Wilson3236f572012-08-24 09:35:09 +01001623 if (ret)
1624 goto unref;
1625
Chris Wilson43566de2015-01-02 16:29:29 +05301626 if (read_domains & I915_GEM_DOMAIN_GTT)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001627 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Chris Wilson43566de2015-01-02 16:29:29 +05301628 else
Eric Anholte47c68e2008-11-14 13:35:19 -08001629 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001630
Daniel Vetter031b6982015-06-26 19:35:16 +02001631 if (write_domain != 0)
1632 intel_fb_obj_invalidate(obj,
1633 write_domain == I915_GEM_DOMAIN_GTT ?
1634 ORIGIN_GTT : ORIGIN_CPU);
1635
Chris Wilson3236f572012-08-24 09:35:09 +01001636unref:
Chris Wilson05394f32010-11-08 19:18:58 +00001637 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001638unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001639 mutex_unlock(&dev->struct_mutex);
1640 return ret;
1641}
1642
1643/**
1644 * Called when user space has done writes to this buffer
1645 */
1646int
1647i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001648 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001649{
1650 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001651 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001652 int ret = 0;
1653
Chris Wilson76c1dec2010-09-25 11:22:51 +01001654 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001655 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001656 return ret;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001657
Chris Wilson05394f32010-11-08 19:18:58 +00001658 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001659 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001660 ret = -ENOENT;
1661 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07001662 }
1663
Eric Anholt673a3942008-07-30 12:06:12 -07001664 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilson2c225692013-08-09 12:26:45 +01001665 if (obj->pin_display)
Daniel Vettere62b59e2015-01-21 14:53:48 +01001666 i915_gem_object_flush_cpu_write_domain(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08001667
Chris Wilson05394f32010-11-08 19:18:58 +00001668 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001669unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001670 mutex_unlock(&dev->struct_mutex);
1671 return ret;
1672}
1673
1674/**
1675 * Maps the contents of an object, returning the address it is mapped
1676 * into.
1677 *
1678 * While the mapping holds a reference on the contents of the object, it doesn't
1679 * imply a ref on the object itself.
Daniel Vetter34367382014-10-16 12:28:18 +02001680 *
1681 * IMPORTANT:
1682 *
1683 * DRM driver writers who look a this function as an example for how to do GEM
1684 * mmap support, please don't implement mmap support like here. The modern way
1685 * to implement DRM mmap support is with an mmap offset ioctl (like
1686 * i915_gem_mmap_gtt) and then using the mmap syscall on the DRM fd directly.
1687 * That way debug tooling like valgrind will understand what's going on, hiding
1688 * the mmap call in a driver private ioctl will break that. The i915 driver only
1689 * does cpu mmaps this way because we didn't know better.
Eric Anholt673a3942008-07-30 12:06:12 -07001690 */
1691int
1692i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001693 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001694{
1695 struct drm_i915_gem_mmap *args = data;
1696 struct drm_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001697 unsigned long addr;
1698
Akash Goel1816f922015-01-02 16:29:30 +05301699 if (args->flags & ~(I915_MMAP_WC))
1700 return -EINVAL;
1701
1702 if (args->flags & I915_MMAP_WC && !cpu_has_pat)
1703 return -ENODEV;
1704
Chris Wilson05394f32010-11-08 19:18:58 +00001705 obj = drm_gem_object_lookup(dev, file, args->handle);
Eric Anholt673a3942008-07-30 12:06:12 -07001706 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001707 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001708
Daniel Vetter1286ff72012-05-10 15:25:09 +02001709 /* prime objects have no backing filp to GEM mmap
1710 * pages from.
1711 */
1712 if (!obj->filp) {
1713 drm_gem_object_unreference_unlocked(obj);
1714 return -EINVAL;
1715 }
1716
Linus Torvalds6be5ceb2012-04-20 17:13:58 -07001717 addr = vm_mmap(obj->filp, 0, args->size,
Eric Anholt673a3942008-07-30 12:06:12 -07001718 PROT_READ | PROT_WRITE, MAP_SHARED,
1719 args->offset);
Akash Goel1816f922015-01-02 16:29:30 +05301720 if (args->flags & I915_MMAP_WC) {
1721 struct mm_struct *mm = current->mm;
1722 struct vm_area_struct *vma;
1723
1724 down_write(&mm->mmap_sem);
1725 vma = find_vma(mm, addr);
1726 if (vma)
1727 vma->vm_page_prot =
1728 pgprot_writecombine(vm_get_page_prot(vma->vm_flags));
1729 else
1730 addr = -ENOMEM;
1731 up_write(&mm->mmap_sem);
1732 }
Luca Barbieribc9025b2010-02-09 05:49:12 +00001733 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001734 if (IS_ERR((void *)addr))
1735 return addr;
1736
1737 args->addr_ptr = (uint64_t) addr;
1738
1739 return 0;
1740}
1741
Jesse Barnesde151cf2008-11-12 10:03:55 -08001742/**
1743 * i915_gem_fault - fault a page into the GTT
Geliang Tangd9072a32015-09-15 05:58:44 -07001744 * @vma: VMA in question
1745 * @vmf: fault info
Jesse Barnesde151cf2008-11-12 10:03:55 -08001746 *
1747 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1748 * from userspace. The fault handler takes care of binding the object to
1749 * the GTT (if needed), allocating and programming a fence register (again,
1750 * only if needed based on whether the old reg is still valid or the object
1751 * is tiled) and inserting a new PTE into the faulting process.
1752 *
1753 * Note that the faulting process may involve evicting existing objects
1754 * from the GTT and/or fence registers to make room. So performance may
1755 * suffer if the GTT working set is large or there are few fence registers
1756 * left.
1757 */
1758int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1759{
Chris Wilson05394f32010-11-08 19:18:58 +00001760 struct drm_i915_gem_object *obj = to_intel_bo(vma->vm_private_data);
1761 struct drm_device *dev = obj->base.dev;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03001762 struct drm_i915_private *dev_priv = to_i915(dev);
1763 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Joonas Lahtinenc5ad54c2015-05-06 14:36:09 +03001764 struct i915_ggtt_view view = i915_ggtt_view_normal;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001765 pgoff_t page_offset;
1766 unsigned long pfn;
1767 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001768 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001769
Paulo Zanonif65c9162013-11-27 18:20:34 -02001770 intel_runtime_pm_get(dev_priv);
1771
Jesse Barnesde151cf2008-11-12 10:03:55 -08001772 /* We don't use vmf->pgoff since that has the fake offset */
1773 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1774 PAGE_SHIFT;
1775
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001776 ret = i915_mutex_lock_interruptible(dev);
1777 if (ret)
1778 goto out;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001779
Chris Wilsondb53a302011-02-03 11:57:46 +00001780 trace_i915_gem_object_fault(obj, page_offset, true, write);
1781
Chris Wilson6e4930f2014-02-07 18:37:06 -02001782 /* Try to flush the object off the GPU first without holding the lock.
1783 * Upon reacquiring the lock, we will perform our sanity checks and then
1784 * repeat the flush holding the lock in the normal manner to catch cases
1785 * where we are gazumped.
1786 */
1787 ret = i915_gem_object_wait_rendering__nonblocking(obj, NULL, !write);
1788 if (ret)
1789 goto unlock;
1790
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001791 /* Access to snoopable pages through the GTT is incoherent. */
1792 if (obj->cache_level != I915_CACHE_NONE && !HAS_LLC(dev)) {
Chris Wilsonddeff6e2014-05-28 16:16:41 +01001793 ret = -EFAULT;
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001794 goto unlock;
1795 }
1796
Joonas Lahtinenc5ad54c2015-05-06 14:36:09 +03001797 /* Use a partial view if the object is bigger than the aperture. */
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03001798 if (obj->base.size >= ggtt->mappable_end &&
Joonas Lahtinene7ded2d2015-05-08 14:37:39 +03001799 obj->tiling_mode == I915_TILING_NONE) {
Joonas Lahtinenc5ad54c2015-05-06 14:36:09 +03001800 static const unsigned int chunk_size = 256; // 1 MiB
Joonas Lahtinene7ded2d2015-05-08 14:37:39 +03001801
Joonas Lahtinenc5ad54c2015-05-06 14:36:09 +03001802 memset(&view, 0, sizeof(view));
1803 view.type = I915_GGTT_VIEW_PARTIAL;
1804 view.params.partial.offset = rounddown(page_offset, chunk_size);
1805 view.params.partial.size =
1806 min_t(unsigned int,
1807 chunk_size,
1808 (vma->vm_end - vma->vm_start)/PAGE_SIZE -
1809 view.params.partial.offset);
1810 }
1811
1812 /* Now pin it into the GTT if needed */
1813 ret = i915_gem_object_ggtt_pin(obj, &view, 0, PIN_MAPPABLE);
Chris Wilsond9e86c02010-11-10 16:40:20 +00001814 if (ret)
1815 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001816
Chris Wilsonc9839302012-11-20 10:45:17 +00001817 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1818 if (ret)
1819 goto unpin;
1820
1821 ret = i915_gem_object_get_fence(obj);
1822 if (ret)
1823 goto unpin;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001824
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001825 /* Finally, remap it using the new GTT offset */
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03001826 pfn = ggtt->mappable_base +
Joonas Lahtinenc5ad54c2015-05-06 14:36:09 +03001827 i915_gem_obj_ggtt_offset_view(obj, &view);
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001828 pfn >>= PAGE_SHIFT;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001829
Joonas Lahtinenc5ad54c2015-05-06 14:36:09 +03001830 if (unlikely(view.type == I915_GGTT_VIEW_PARTIAL)) {
1831 /* Overriding existing pages in partial view does not cause
1832 * us any trouble as TLBs are still valid because the fault
1833 * is due to userspace losing part of the mapping or never
1834 * having accessed it before (at this partials' range).
1835 */
1836 unsigned long base = vma->vm_start +
1837 (view.params.partial.offset << PAGE_SHIFT);
1838 unsigned int i;
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001839
Joonas Lahtinenc5ad54c2015-05-06 14:36:09 +03001840 for (i = 0; i < view.params.partial.size; i++) {
1841 ret = vm_insert_pfn(vma, base + i * PAGE_SIZE, pfn + i);
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001842 if (ret)
1843 break;
1844 }
1845
1846 obj->fault_mappable = true;
Joonas Lahtinenc5ad54c2015-05-06 14:36:09 +03001847 } else {
1848 if (!obj->fault_mappable) {
1849 unsigned long size = min_t(unsigned long,
1850 vma->vm_end - vma->vm_start,
1851 obj->base.size);
1852 int i;
1853
1854 for (i = 0; i < size >> PAGE_SHIFT; i++) {
1855 ret = vm_insert_pfn(vma,
1856 (unsigned long)vma->vm_start + i * PAGE_SIZE,
1857 pfn + i);
1858 if (ret)
1859 break;
1860 }
1861
1862 obj->fault_mappable = true;
1863 } else
1864 ret = vm_insert_pfn(vma,
1865 (unsigned long)vmf->virtual_address,
1866 pfn + page_offset);
1867 }
Chris Wilsonc9839302012-11-20 10:45:17 +00001868unpin:
Joonas Lahtinenc5ad54c2015-05-06 14:36:09 +03001869 i915_gem_object_ggtt_unpin_view(obj, &view);
Chris Wilsonc7150892009-09-23 00:43:56 +01001870unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001871 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001872out:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001873 switch (ret) {
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001874 case -EIO:
Daniel Vetter2232f032014-09-04 09:36:18 +02001875 /*
1876 * We eat errors when the gpu is terminally wedged to avoid
1877 * userspace unduly crashing (gl has no provisions for mmaps to
1878 * fail). But any other -EIO isn't ours (e.g. swap in failure)
1879 * and so needs to be reported.
1880 */
1881 if (!i915_terminally_wedged(&dev_priv->gpu_error)) {
Paulo Zanonif65c9162013-11-27 18:20:34 -02001882 ret = VM_FAULT_SIGBUS;
1883 break;
1884 }
Chris Wilson045e7692010-11-07 09:18:22 +00001885 case -EAGAIN:
Daniel Vetter571c6082013-09-12 17:57:28 +02001886 /*
1887 * EAGAIN means the gpu is hung and we'll wait for the error
1888 * handler to reset everything when re-faulting in
1889 * i915_mutex_lock_interruptible.
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001890 */
Chris Wilsonc7150892009-09-23 00:43:56 +01001891 case 0:
1892 case -ERESTARTSYS:
Chris Wilsonbed636a2011-02-11 20:31:19 +00001893 case -EINTR:
Dmitry Rogozhkine79e0fe2012-10-03 17:15:26 +03001894 case -EBUSY:
1895 /*
1896 * EBUSY is ok: this just means that another thread
1897 * already did the job.
1898 */
Paulo Zanonif65c9162013-11-27 18:20:34 -02001899 ret = VM_FAULT_NOPAGE;
1900 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001901 case -ENOMEM:
Paulo Zanonif65c9162013-11-27 18:20:34 -02001902 ret = VM_FAULT_OOM;
1903 break;
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001904 case -ENOSPC:
Chris Wilson45d67812014-01-31 11:34:57 +00001905 case -EFAULT:
Paulo Zanonif65c9162013-11-27 18:20:34 -02001906 ret = VM_FAULT_SIGBUS;
1907 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001908 default:
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001909 WARN_ONCE(ret, "unhandled error in i915_gem_fault: %i\n", ret);
Paulo Zanonif65c9162013-11-27 18:20:34 -02001910 ret = VM_FAULT_SIGBUS;
1911 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001912 }
Paulo Zanonif65c9162013-11-27 18:20:34 -02001913
1914 intel_runtime_pm_put(dev_priv);
1915 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001916}
1917
1918/**
Chris Wilson901782b2009-07-10 08:18:50 +01001919 * i915_gem_release_mmap - remove physical page mappings
1920 * @obj: obj in question
1921 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001922 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001923 * relinquish ownership of the pages back to the system.
1924 *
1925 * It is vital that we remove the page mapping if we have mapped a tiled
1926 * object through the GTT and then lose the fence register due to
1927 * resource pressure. Similarly if the object has been moved out of the
1928 * aperture, than pages mapped into userspace must be revoked. Removing the
1929 * mapping will then trigger a page fault on the next user access, allowing
1930 * fixup by i915_gem_fault().
1931 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001932void
Chris Wilson05394f32010-11-08 19:18:58 +00001933i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01001934{
Chris Wilson349f2cc2016-04-13 17:35:12 +01001935 /* Serialisation between user GTT access and our code depends upon
1936 * revoking the CPU's PTE whilst the mutex is held. The next user
1937 * pagefault then has to wait until we release the mutex.
1938 */
1939 lockdep_assert_held(&obj->base.dev->struct_mutex);
1940
Chris Wilson6299f992010-11-24 12:23:44 +00001941 if (!obj->fault_mappable)
1942 return;
Chris Wilson901782b2009-07-10 08:18:50 +01001943
David Herrmann6796cb12014-01-03 14:24:19 +01001944 drm_vma_node_unmap(&obj->base.vma_node,
1945 obj->base.dev->anon_inode->i_mapping);
Chris Wilson349f2cc2016-04-13 17:35:12 +01001946
1947 /* Ensure that the CPU's PTE are revoked and there are not outstanding
1948 * memory transactions from userspace before we return. The TLB
1949 * flushing implied above by changing the PTE above *should* be
1950 * sufficient, an extra barrier here just provides us with a bit
1951 * of paranoid documentation about our requirement to serialise
1952 * memory writes before touching registers / GSM.
1953 */
1954 wmb();
1955
Chris Wilson6299f992010-11-24 12:23:44 +00001956 obj->fault_mappable = false;
Chris Wilson901782b2009-07-10 08:18:50 +01001957}
1958
Chris Wilsoneedd10f2014-06-16 08:57:44 +01001959void
1960i915_gem_release_all_mmaps(struct drm_i915_private *dev_priv)
1961{
1962 struct drm_i915_gem_object *obj;
1963
1964 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list)
1965 i915_gem_release_mmap(obj);
1966}
1967
Imre Deak0fa87792013-01-07 21:47:35 +02001968uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001969i915_gem_get_gtt_size(struct drm_device *dev, uint32_t size, int tiling_mode)
Chris Wilson92b88ae2010-11-09 11:47:32 +00001970{
Chris Wilsone28f8712011-07-18 13:11:49 -07001971 uint32_t gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001972
1973 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001974 tiling_mode == I915_TILING_NONE)
1975 return size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001976
1977 /* Previous chips need a power-of-two fence region when tiling */
1978 if (INTEL_INFO(dev)->gen == 3)
Chris Wilsone28f8712011-07-18 13:11:49 -07001979 gtt_size = 1024*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001980 else
Chris Wilsone28f8712011-07-18 13:11:49 -07001981 gtt_size = 512*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001982
Chris Wilsone28f8712011-07-18 13:11:49 -07001983 while (gtt_size < size)
1984 gtt_size <<= 1;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001985
Chris Wilsone28f8712011-07-18 13:11:49 -07001986 return gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001987}
1988
Jesse Barnesde151cf2008-11-12 10:03:55 -08001989/**
1990 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1991 * @obj: object to check
1992 *
1993 * Return the required GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01001994 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08001995 */
Imre Deakd8651102013-01-07 21:47:33 +02001996uint32_t
1997i915_gem_get_gtt_alignment(struct drm_device *dev, uint32_t size,
1998 int tiling_mode, bool fenced)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001999{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002000 /*
2001 * Minimum alignment is 4k (GTT page size), but might be greater
2002 * if a fence register is needed for the object.
2003 */
Imre Deakd8651102013-01-07 21:47:33 +02002004 if (INTEL_INFO(dev)->gen >= 4 || (!fenced && IS_G33(dev)) ||
Chris Wilsone28f8712011-07-18 13:11:49 -07002005 tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002006 return 4096;
2007
2008 /*
2009 * Previous chips need to be aligned to the size of the smallest
2010 * fence register that can contain the object.
2011 */
Chris Wilsone28f8712011-07-18 13:11:49 -07002012 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01002013}
2014
Chris Wilsond8cb5082012-08-11 15:41:03 +01002015static int i915_gem_object_create_mmap_offset(struct drm_i915_gem_object *obj)
2016{
2017 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2018 int ret;
2019
David Herrmann0de23972013-07-24 21:07:52 +02002020 if (drm_vma_node_has_offset(&obj->base.vma_node))
Chris Wilsond8cb5082012-08-11 15:41:03 +01002021 return 0;
2022
Daniel Vetterda494d72012-12-20 15:11:16 +01002023 dev_priv->mm.shrinker_no_lock_stealing = true;
2024
Chris Wilsond8cb5082012-08-11 15:41:03 +01002025 ret = drm_gem_create_mmap_offset(&obj->base);
2026 if (ret != -ENOSPC)
Daniel Vetterda494d72012-12-20 15:11:16 +01002027 goto out;
Chris Wilsond8cb5082012-08-11 15:41:03 +01002028
2029 /* Badly fragmented mmap space? The only way we can recover
2030 * space is by destroying unwanted objects. We can't randomly release
2031 * mmap_offsets as userspace expects them to be persistent for the
2032 * lifetime of the objects. The closest we can is to release the
2033 * offsets on purgeable objects by truncating it and marking it purged,
2034 * which prevents userspace from ever using that object again.
2035 */
Chris Wilson21ab4e72014-09-09 11:16:08 +01002036 i915_gem_shrink(dev_priv,
2037 obj->base.size >> PAGE_SHIFT,
2038 I915_SHRINK_BOUND |
2039 I915_SHRINK_UNBOUND |
2040 I915_SHRINK_PURGEABLE);
Chris Wilsond8cb5082012-08-11 15:41:03 +01002041 ret = drm_gem_create_mmap_offset(&obj->base);
2042 if (ret != -ENOSPC)
Daniel Vetterda494d72012-12-20 15:11:16 +01002043 goto out;
Chris Wilsond8cb5082012-08-11 15:41:03 +01002044
2045 i915_gem_shrink_all(dev_priv);
Daniel Vetterda494d72012-12-20 15:11:16 +01002046 ret = drm_gem_create_mmap_offset(&obj->base);
2047out:
2048 dev_priv->mm.shrinker_no_lock_stealing = false;
2049
2050 return ret;
Chris Wilsond8cb5082012-08-11 15:41:03 +01002051}
2052
2053static void i915_gem_object_free_mmap_offset(struct drm_i915_gem_object *obj)
2054{
Chris Wilsond8cb5082012-08-11 15:41:03 +01002055 drm_gem_free_mmap_offset(&obj->base);
2056}
2057
Dave Airlieda6b51d2014-12-24 13:11:17 +10002058int
Dave Airlieff72145b2011-02-07 12:16:14 +10002059i915_gem_mmap_gtt(struct drm_file *file,
2060 struct drm_device *dev,
Dave Airlieda6b51d2014-12-24 13:11:17 +10002061 uint32_t handle,
Dave Airlieff72145b2011-02-07 12:16:14 +10002062 uint64_t *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002063{
Chris Wilson05394f32010-11-08 19:18:58 +00002064 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002065 int ret;
2066
Chris Wilson76c1dec2010-09-25 11:22:51 +01002067 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01002068 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01002069 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002070
Dave Airlieff72145b2011-02-07 12:16:14 +10002071 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00002072 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01002073 ret = -ENOENT;
2074 goto unlock;
2075 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08002076
Chris Wilson05394f32010-11-08 19:18:58 +00002077 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00002078 DRM_DEBUG("Attempting to mmap a purgeable buffer\n");
Chris Wilson8c99e572014-01-31 11:34:58 +00002079 ret = -EFAULT;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01002080 goto out;
Chris Wilsonab182822009-09-22 18:46:17 +01002081 }
2082
Chris Wilsond8cb5082012-08-11 15:41:03 +01002083 ret = i915_gem_object_create_mmap_offset(obj);
2084 if (ret)
2085 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002086
David Herrmann0de23972013-07-24 21:07:52 +02002087 *offset = drm_vma_node_offset_addr(&obj->base.vma_node);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002088
Chris Wilson1d7cfea2010-10-17 09:45:41 +01002089out:
Chris Wilson05394f32010-11-08 19:18:58 +00002090 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01002091unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08002092 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01002093 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002094}
2095
Dave Airlieff72145b2011-02-07 12:16:14 +10002096/**
2097 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
2098 * @dev: DRM device
2099 * @data: GTT mapping ioctl data
2100 * @file: GEM object info
2101 *
2102 * Simply returns the fake offset to userspace so it can mmap it.
2103 * The mmap call will end up in drm_gem_mmap(), which will set things
2104 * up so we can get faults in the handler above.
2105 *
2106 * The fault handler will take care of binding the object into the GTT
2107 * (since it may have been evicted to make room for something), allocating
2108 * a fence register, and mapping the appropriate aperture address into
2109 * userspace.
2110 */
2111int
2112i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
2113 struct drm_file *file)
2114{
2115 struct drm_i915_gem_mmap_gtt *args = data;
2116
Dave Airlieda6b51d2014-12-24 13:11:17 +10002117 return i915_gem_mmap_gtt(file, dev, args->handle, &args->offset);
Dave Airlieff72145b2011-02-07 12:16:14 +10002118}
2119
Daniel Vetter225067e2012-08-20 10:23:20 +02002120/* Immediately discard the backing storage */
2121static void
2122i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilsone5281cc2010-10-28 13:45:36 +01002123{
Chris Wilson4d6294bf2012-08-11 15:41:05 +01002124 i915_gem_object_free_mmap_offset(obj);
Daniel Vetter1286ff72012-05-10 15:25:09 +02002125
Chris Wilson4d6294bf2012-08-11 15:41:05 +01002126 if (obj->base.filp == NULL)
2127 return;
2128
Daniel Vetter225067e2012-08-20 10:23:20 +02002129 /* Our goal here is to return as much of the memory as
2130 * is possible back to the system as we are called from OOM.
2131 * To do this we must instruct the shmfs to drop all of its
2132 * backing pages, *now*.
Chris Wilsone5281cc2010-10-28 13:45:36 +01002133 */
Chris Wilson55372522014-03-25 13:23:06 +00002134 shmem_truncate_range(file_inode(obj->base.filp), 0, (loff_t)-1);
Daniel Vetter225067e2012-08-20 10:23:20 +02002135 obj->madv = __I915_MADV_PURGED;
Chris Wilsone5281cc2010-10-28 13:45:36 +01002136}
Chris Wilsone5281cc2010-10-28 13:45:36 +01002137
Chris Wilson55372522014-03-25 13:23:06 +00002138/* Try to discard unwanted pages */
2139static void
2140i915_gem_object_invalidate(struct drm_i915_gem_object *obj)
Daniel Vetter225067e2012-08-20 10:23:20 +02002141{
Chris Wilson55372522014-03-25 13:23:06 +00002142 struct address_space *mapping;
2143
2144 switch (obj->madv) {
2145 case I915_MADV_DONTNEED:
2146 i915_gem_object_truncate(obj);
2147 case __I915_MADV_PURGED:
2148 return;
2149 }
2150
2151 if (obj->base.filp == NULL)
2152 return;
2153
2154 mapping = file_inode(obj->base.filp)->i_mapping,
2155 invalidate_mapping_pages(mapping, 0, (loff_t)-1);
Chris Wilsone5281cc2010-10-28 13:45:36 +01002156}
2157
Chris Wilson5cdf5882010-09-27 15:51:07 +01002158static void
Chris Wilson05394f32010-11-08 19:18:58 +00002159i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002160{
Imre Deak90797e62013-02-18 19:28:03 +02002161 struct sg_page_iter sg_iter;
2162 int ret;
Daniel Vetter1286ff72012-05-10 15:25:09 +02002163
Chris Wilson05394f32010-11-08 19:18:58 +00002164 BUG_ON(obj->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07002165
Chris Wilson6c085a72012-08-20 11:40:46 +02002166 ret = i915_gem_object_set_to_cpu_domain(obj, true);
Chris Wilsonf4457ae2016-04-13 17:35:08 +01002167 if (WARN_ON(ret)) {
Chris Wilson6c085a72012-08-20 11:40:46 +02002168 /* In the event of a disaster, abandon all caches and
2169 * hope for the best.
2170 */
Chris Wilson2c225692013-08-09 12:26:45 +01002171 i915_gem_clflush_object(obj, true);
Chris Wilson6c085a72012-08-20 11:40:46 +02002172 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
2173 }
2174
Imre Deake2273302015-07-09 12:59:05 +03002175 i915_gem_gtt_finish_object(obj);
2176
Daniel Vetter6dacfd22011-09-12 21:30:02 +02002177 if (i915_gem_object_needs_bit17_swizzle(obj))
Eric Anholt280b7132009-03-12 16:56:27 -07002178 i915_gem_object_save_bit_17_swizzle(obj);
2179
Chris Wilson05394f32010-11-08 19:18:58 +00002180 if (obj->madv == I915_MADV_DONTNEED)
2181 obj->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01002182
Imre Deak90797e62013-02-18 19:28:03 +02002183 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents, 0) {
Imre Deak2db76d72013-03-26 15:14:18 +02002184 struct page *page = sg_page_iter_page(&sg_iter);
Chris Wilson9da3da62012-06-01 15:20:22 +01002185
Chris Wilson05394f32010-11-08 19:18:58 +00002186 if (obj->dirty)
Chris Wilson9da3da62012-06-01 15:20:22 +01002187 set_page_dirty(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01002188
Chris Wilson05394f32010-11-08 19:18:58 +00002189 if (obj->madv == I915_MADV_WILLNEED)
Chris Wilson9da3da62012-06-01 15:20:22 +01002190 mark_page_accessed(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01002191
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002192 put_page(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01002193 }
Chris Wilson05394f32010-11-08 19:18:58 +00002194 obj->dirty = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002195
Chris Wilson9da3da62012-06-01 15:20:22 +01002196 sg_free_table(obj->pages);
2197 kfree(obj->pages);
Chris Wilson37e680a2012-06-07 15:38:42 +01002198}
2199
Chris Wilsondd624af2013-01-15 12:39:35 +00002200int
Chris Wilson37e680a2012-06-07 15:38:42 +01002201i915_gem_object_put_pages(struct drm_i915_gem_object *obj)
2202{
2203 const struct drm_i915_gem_object_ops *ops = obj->ops;
2204
Chris Wilson2f745ad2012-09-04 21:02:58 +01002205 if (obj->pages == NULL)
Chris Wilson37e680a2012-06-07 15:38:42 +01002206 return 0;
2207
Chris Wilsona5570172012-09-04 21:02:54 +01002208 if (obj->pages_pin_count)
2209 return -EBUSY;
2210
Ben Widawsky98438772013-07-31 17:00:12 -07002211 BUG_ON(i915_gem_obj_bound_any(obj));
Ben Widawsky3e123022013-07-31 17:00:04 -07002212
Chris Wilsona2165e32012-12-03 11:49:00 +00002213 /* ->put_pages might need to allocate memory for the bit17 swizzle
2214 * array, hence protect them from being reaped by removing them from gtt
2215 * lists early. */
Ben Widawsky35c20a62013-05-31 11:28:48 -07002216 list_del(&obj->global_list);
Chris Wilsona2165e32012-12-03 11:49:00 +00002217
Chris Wilson0a798eb2016-04-08 12:11:11 +01002218 if (obj->mapping) {
Chris Wilsonfb8621d2016-04-08 12:11:14 +01002219 if (is_vmalloc_addr(obj->mapping))
2220 vunmap(obj->mapping);
2221 else
2222 kunmap(kmap_to_page(obj->mapping));
Chris Wilson0a798eb2016-04-08 12:11:11 +01002223 obj->mapping = NULL;
2224 }
2225
Chris Wilson37e680a2012-06-07 15:38:42 +01002226 ops->put_pages(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002227 obj->pages = NULL;
Chris Wilson6c085a72012-08-20 11:40:46 +02002228
Chris Wilson55372522014-03-25 13:23:06 +00002229 i915_gem_object_invalidate(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02002230
2231 return 0;
2232}
2233
Chris Wilson37e680a2012-06-07 15:38:42 +01002234static int
Chris Wilson6c085a72012-08-20 11:40:46 +02002235i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002236{
Chris Wilson6c085a72012-08-20 11:40:46 +02002237 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002238 int page_count, i;
2239 struct address_space *mapping;
Chris Wilson9da3da62012-06-01 15:20:22 +01002240 struct sg_table *st;
2241 struct scatterlist *sg;
Imre Deak90797e62013-02-18 19:28:03 +02002242 struct sg_page_iter sg_iter;
Eric Anholt673a3942008-07-30 12:06:12 -07002243 struct page *page;
Imre Deak90797e62013-02-18 19:28:03 +02002244 unsigned long last_pfn = 0; /* suppress gcc warning */
Imre Deake2273302015-07-09 12:59:05 +03002245 int ret;
Chris Wilson6c085a72012-08-20 11:40:46 +02002246 gfp_t gfp;
Eric Anholt673a3942008-07-30 12:06:12 -07002247
Chris Wilson6c085a72012-08-20 11:40:46 +02002248 /* Assert that the object is not currently in any GPU domain. As it
2249 * wasn't in the GTT, there shouldn't be any way it could have been in
2250 * a GPU cache
2251 */
2252 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
2253 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
2254
Chris Wilson9da3da62012-06-01 15:20:22 +01002255 st = kmalloc(sizeof(*st), GFP_KERNEL);
2256 if (st == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002257 return -ENOMEM;
2258
Chris Wilson9da3da62012-06-01 15:20:22 +01002259 page_count = obj->base.size / PAGE_SIZE;
2260 if (sg_alloc_table(st, page_count, GFP_KERNEL)) {
Chris Wilson9da3da62012-06-01 15:20:22 +01002261 kfree(st);
2262 return -ENOMEM;
2263 }
2264
2265 /* Get the list of pages out of our struct file. They'll be pinned
2266 * at this point until we release them.
2267 *
2268 * Fail silently without starting the shrinker
2269 */
Al Viro496ad9a2013-01-23 17:07:38 -05002270 mapping = file_inode(obj->base.filp)->i_mapping;
Michal Hockoc62d2552015-11-06 16:28:49 -08002271 gfp = mapping_gfp_constraint(mapping, ~(__GFP_IO | __GFP_RECLAIM));
Mel Gormand0164ad2015-11-06 16:28:21 -08002272 gfp |= __GFP_NORETRY | __GFP_NOWARN;
Imre Deak90797e62013-02-18 19:28:03 +02002273 sg = st->sgl;
2274 st->nents = 0;
2275 for (i = 0; i < page_count; i++) {
Chris Wilson6c085a72012-08-20 11:40:46 +02002276 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
2277 if (IS_ERR(page)) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002278 i915_gem_shrink(dev_priv,
2279 page_count,
2280 I915_SHRINK_BOUND |
2281 I915_SHRINK_UNBOUND |
2282 I915_SHRINK_PURGEABLE);
Chris Wilson6c085a72012-08-20 11:40:46 +02002283 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
2284 }
2285 if (IS_ERR(page)) {
2286 /* We've tried hard to allocate the memory by reaping
2287 * our own buffer, now let the real VM do its job and
2288 * go down in flames if truly OOM.
2289 */
Chris Wilson6c085a72012-08-20 11:40:46 +02002290 i915_gem_shrink_all(dev_priv);
David Herrmannf461d1b2014-05-25 14:34:10 +02002291 page = shmem_read_mapping_page(mapping, i);
Imre Deake2273302015-07-09 12:59:05 +03002292 if (IS_ERR(page)) {
2293 ret = PTR_ERR(page);
Chris Wilson6c085a72012-08-20 11:40:46 +02002294 goto err_pages;
Imre Deake2273302015-07-09 12:59:05 +03002295 }
Chris Wilson6c085a72012-08-20 11:40:46 +02002296 }
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04002297#ifdef CONFIG_SWIOTLB
2298 if (swiotlb_nr_tbl()) {
2299 st->nents++;
2300 sg_set_page(sg, page, PAGE_SIZE, 0);
2301 sg = sg_next(sg);
2302 continue;
2303 }
2304#endif
Imre Deak90797e62013-02-18 19:28:03 +02002305 if (!i || page_to_pfn(page) != last_pfn + 1) {
2306 if (i)
2307 sg = sg_next(sg);
2308 st->nents++;
2309 sg_set_page(sg, page, PAGE_SIZE, 0);
2310 } else {
2311 sg->length += PAGE_SIZE;
2312 }
2313 last_pfn = page_to_pfn(page);
Daniel Vetter3bbbe702013-10-07 17:15:45 -03002314
2315 /* Check that the i965g/gm workaround works. */
2316 WARN_ON((gfp & __GFP_DMA32) && (last_pfn >= 0x00100000UL));
Eric Anholt673a3942008-07-30 12:06:12 -07002317 }
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04002318#ifdef CONFIG_SWIOTLB
2319 if (!swiotlb_nr_tbl())
2320#endif
2321 sg_mark_end(sg);
Chris Wilson74ce6b62012-10-19 15:51:06 +01002322 obj->pages = st;
2323
Imre Deake2273302015-07-09 12:59:05 +03002324 ret = i915_gem_gtt_prepare_object(obj);
2325 if (ret)
2326 goto err_pages;
2327
Eric Anholt673a3942008-07-30 12:06:12 -07002328 if (i915_gem_object_needs_bit17_swizzle(obj))
2329 i915_gem_object_do_bit_17_swizzle(obj);
2330
Daniel Vetter656bfa32014-11-20 09:26:30 +01002331 if (obj->tiling_mode != I915_TILING_NONE &&
2332 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES)
2333 i915_gem_object_pin_pages(obj);
2334
Eric Anholt673a3942008-07-30 12:06:12 -07002335 return 0;
2336
2337err_pages:
Imre Deak90797e62013-02-18 19:28:03 +02002338 sg_mark_end(sg);
2339 for_each_sg_page(st->sgl, &sg_iter, st->nents, 0)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002340 put_page(sg_page_iter_page(&sg_iter));
Chris Wilson9da3da62012-06-01 15:20:22 +01002341 sg_free_table(st);
2342 kfree(st);
Chris Wilson0820baf2014-03-25 13:23:03 +00002343
2344 /* shmemfs first checks if there is enough memory to allocate the page
2345 * and reports ENOSPC should there be insufficient, along with the usual
2346 * ENOMEM for a genuine allocation failure.
2347 *
2348 * We use ENOSPC in our driver to mean that we have run out of aperture
2349 * space and so want to translate the error from shmemfs back to our
2350 * usual understanding of ENOMEM.
2351 */
Imre Deake2273302015-07-09 12:59:05 +03002352 if (ret == -ENOSPC)
2353 ret = -ENOMEM;
2354
2355 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002356}
2357
Chris Wilson37e680a2012-06-07 15:38:42 +01002358/* Ensure that the associated pages are gathered from the backing storage
2359 * and pinned into our object. i915_gem_object_get_pages() may be called
2360 * multiple times before they are released by a single call to
2361 * i915_gem_object_put_pages() - once the pages are no longer referenced
2362 * either as a result of memory pressure (reaping pages under the shrinker)
2363 * or as the object is itself released.
2364 */
2365int
2366i915_gem_object_get_pages(struct drm_i915_gem_object *obj)
2367{
2368 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2369 const struct drm_i915_gem_object_ops *ops = obj->ops;
2370 int ret;
2371
Chris Wilson2f745ad2012-09-04 21:02:58 +01002372 if (obj->pages)
Chris Wilson37e680a2012-06-07 15:38:42 +01002373 return 0;
2374
Chris Wilson43e28f02013-01-08 10:53:09 +00002375 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00002376 DRM_DEBUG("Attempting to obtain a purgeable object\n");
Chris Wilson8c99e572014-01-31 11:34:58 +00002377 return -EFAULT;
Chris Wilson43e28f02013-01-08 10:53:09 +00002378 }
2379
Chris Wilsona5570172012-09-04 21:02:54 +01002380 BUG_ON(obj->pages_pin_count);
2381
Chris Wilson37e680a2012-06-07 15:38:42 +01002382 ret = ops->get_pages(obj);
2383 if (ret)
2384 return ret;
2385
Ben Widawsky35c20a62013-05-31 11:28:48 -07002386 list_add_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Chris Wilsonee286372015-04-07 16:20:25 +01002387
2388 obj->get_page.sg = obj->pages->sgl;
2389 obj->get_page.last = 0;
2390
Chris Wilson37e680a2012-06-07 15:38:42 +01002391 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002392}
2393
Chris Wilson0a798eb2016-04-08 12:11:11 +01002394void *i915_gem_object_pin_map(struct drm_i915_gem_object *obj)
2395{
2396 int ret;
2397
2398 lockdep_assert_held(&obj->base.dev->struct_mutex);
2399
2400 ret = i915_gem_object_get_pages(obj);
2401 if (ret)
2402 return ERR_PTR(ret);
2403
2404 i915_gem_object_pin_pages(obj);
2405
2406 if (obj->mapping == NULL) {
Chris Wilson0a798eb2016-04-08 12:11:11 +01002407 struct page **pages;
Chris Wilson0a798eb2016-04-08 12:11:11 +01002408
Chris Wilsonfb8621d2016-04-08 12:11:14 +01002409 pages = NULL;
2410 if (obj->base.size == PAGE_SIZE)
2411 obj->mapping = kmap(sg_page(obj->pages->sgl));
2412 else
2413 pages = drm_malloc_gfp(obj->base.size >> PAGE_SHIFT,
2414 sizeof(*pages),
2415 GFP_TEMPORARY);
Chris Wilson0a798eb2016-04-08 12:11:11 +01002416 if (pages != NULL) {
Chris Wilsonfb8621d2016-04-08 12:11:14 +01002417 struct sg_page_iter sg_iter;
2418 int n;
2419
Chris Wilson0a798eb2016-04-08 12:11:11 +01002420 n = 0;
2421 for_each_sg_page(obj->pages->sgl, &sg_iter,
2422 obj->pages->nents, 0)
2423 pages[n++] = sg_page_iter_page(&sg_iter);
2424
2425 obj->mapping = vmap(pages, n, 0, PAGE_KERNEL);
2426 drm_free_large(pages);
2427 }
2428 if (obj->mapping == NULL) {
2429 i915_gem_object_unpin_pages(obj);
2430 return ERR_PTR(-ENOMEM);
2431 }
2432 }
2433
2434 return obj->mapping;
2435}
2436
Ben Widawskye2d05a82013-09-24 09:57:58 -07002437void i915_vma_move_to_active(struct i915_vma *vma,
John Harrisonb2af0372015-05-29 17:43:50 +01002438 struct drm_i915_gem_request *req)
Ben Widawskye2d05a82013-09-24 09:57:58 -07002439{
Chris Wilsonb4716182015-04-27 13:41:17 +01002440 struct drm_i915_gem_object *obj = vma->obj;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002441 struct intel_engine_cs *engine;
John Harrisonb2af0372015-05-29 17:43:50 +01002442
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00002443 engine = i915_gem_request_get_engine(req);
Chris Wilsonb4716182015-04-27 13:41:17 +01002444
2445 /* Add a reference if we're newly entering the active list. */
2446 if (obj->active == 0)
2447 drm_gem_object_reference(&obj->base);
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00002448 obj->active |= intel_engine_flag(engine);
Chris Wilsonb4716182015-04-27 13:41:17 +01002449
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00002450 list_move_tail(&obj->engine_list[engine->id], &engine->active_list);
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002451 i915_gem_request_assign(&obj->last_read_req[engine->id], req);
Chris Wilsonb4716182015-04-27 13:41:17 +01002452
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00002453 list_move_tail(&vma->vm_link, &vma->vm->active_list);
Ben Widawskye2d05a82013-09-24 09:57:58 -07002454}
2455
Chris Wilsoncaea7472010-11-12 13:53:37 +00002456static void
Chris Wilsonb4716182015-04-27 13:41:17 +01002457i915_gem_object_retire__write(struct drm_i915_gem_object *obj)
2458{
Chris Wilsond501b1d2016-04-13 17:35:02 +01002459 GEM_BUG_ON(obj->last_write_req == NULL);
2460 GEM_BUG_ON(!(obj->active & intel_engine_flag(obj->last_write_req->engine)));
Chris Wilsonb4716182015-04-27 13:41:17 +01002461
2462 i915_gem_request_assign(&obj->last_write_req, NULL);
Rodrigo Vivide152b62015-07-07 16:28:51 -07002463 intel_fb_obj_flush(obj, true, ORIGIN_CS);
Chris Wilsonb4716182015-04-27 13:41:17 +01002464}
2465
2466static void
2467i915_gem_object_retire__read(struct drm_i915_gem_object *obj, int ring)
Chris Wilsoncaea7472010-11-12 13:53:37 +00002468{
Ben Widawskyfeb822c2013-12-06 14:10:51 -08002469 struct i915_vma *vma;
Chris Wilsoncaea7472010-11-12 13:53:37 +00002470
Chris Wilsond501b1d2016-04-13 17:35:02 +01002471 GEM_BUG_ON(obj->last_read_req[ring] == NULL);
2472 GEM_BUG_ON(!(obj->active & (1 << ring)));
Chris Wilsonb4716182015-04-27 13:41:17 +01002473
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00002474 list_del_init(&obj->engine_list[ring]);
Chris Wilsonb4716182015-04-27 13:41:17 +01002475 i915_gem_request_assign(&obj->last_read_req[ring], NULL);
2476
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00002477 if (obj->last_write_req && obj->last_write_req->engine->id == ring)
Chris Wilsonb4716182015-04-27 13:41:17 +01002478 i915_gem_object_retire__write(obj);
2479
2480 obj->active &= ~(1 << ring);
2481 if (obj->active)
2482 return;
Chris Wilson65ce3022012-07-20 12:41:02 +01002483
Chris Wilson6c246952015-07-27 10:26:26 +01002484 /* Bump our place on the bound list to keep it roughly in LRU order
2485 * so that we don't steal from recently used but inactive objects
2486 * (unless we are forced to ofc!)
2487 */
2488 list_move_tail(&obj->global_list,
2489 &to_i915(obj->base.dev)->mm.bound_list);
2490
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00002491 list_for_each_entry(vma, &obj->vma_list, obj_link) {
2492 if (!list_empty(&vma->vm_link))
2493 list_move_tail(&vma->vm_link, &vma->vm->inactive_list);
Ben Widawskyfeb822c2013-12-06 14:10:51 -08002494 }
Chris Wilsoncaea7472010-11-12 13:53:37 +00002495
John Harrison97b2a6a2014-11-24 18:49:26 +00002496 i915_gem_request_assign(&obj->last_fenced_req, NULL);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002497 drm_gem_object_unreference(&obj->base);
Chris Wilsonc8725f32014-03-17 12:21:55 +00002498}
2499
Chris Wilson9d7730912012-11-27 16:22:52 +00002500static int
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002501i915_gem_init_seqno(struct drm_device *dev, u32 seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01002502{
Chris Wilson9d7730912012-11-27 16:22:52 +00002503 struct drm_i915_private *dev_priv = dev->dev_private;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002504 struct intel_engine_cs *engine;
Chris Wilson29dcb572016-04-07 07:29:13 +01002505 int ret;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002506
Chris Wilson107f27a52012-12-10 13:56:17 +02002507 /* Carefully retire all requests without writing to the rings */
Dave Gordonb4ac5af2016-03-24 11:20:38 +00002508 for_each_engine(engine, dev_priv) {
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00002509 ret = intel_engine_idle(engine);
Chris Wilson107f27a52012-12-10 13:56:17 +02002510 if (ret)
2511 return ret;
Chris Wilson9d7730912012-11-27 16:22:52 +00002512 }
Chris Wilson9d7730912012-11-27 16:22:52 +00002513 i915_gem_retire_requests(dev);
Chris Wilson107f27a52012-12-10 13:56:17 +02002514
2515 /* Finally reset hw state */
Chris Wilson29dcb572016-04-07 07:29:13 +01002516 for_each_engine(engine, dev_priv)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002517 intel_ring_init_seqno(engine, seqno);
Mika Kuoppala498d2ac2012-12-04 15:12:04 +02002518
Chris Wilson9d7730912012-11-27 16:22:52 +00002519 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002520}
2521
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002522int i915_gem_set_seqno(struct drm_device *dev, u32 seqno)
2523{
2524 struct drm_i915_private *dev_priv = dev->dev_private;
2525 int ret;
2526
2527 if (seqno == 0)
2528 return -EINVAL;
2529
2530 /* HWS page needs to be set less than what we
2531 * will inject to ring
2532 */
2533 ret = i915_gem_init_seqno(dev, seqno - 1);
2534 if (ret)
2535 return ret;
2536
2537 /* Carefully set the last_seqno value so that wrap
2538 * detection still works
2539 */
2540 dev_priv->next_seqno = seqno;
2541 dev_priv->last_seqno = seqno - 1;
2542 if (dev_priv->last_seqno == 0)
2543 dev_priv->last_seqno--;
2544
2545 return 0;
2546}
2547
Chris Wilson9d7730912012-11-27 16:22:52 +00002548int
2549i915_gem_get_seqno(struct drm_device *dev, u32 *seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01002550{
Chris Wilson9d7730912012-11-27 16:22:52 +00002551 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002552
Chris Wilson9d7730912012-11-27 16:22:52 +00002553 /* reserve 0 for non-seqno */
2554 if (dev_priv->next_seqno == 0) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002555 int ret = i915_gem_init_seqno(dev, 0);
Chris Wilson9d7730912012-11-27 16:22:52 +00002556 if (ret)
2557 return ret;
2558
2559 dev_priv->next_seqno = 1;
2560 }
2561
Mika Kuoppalaf72b3432012-12-10 15:41:48 +02002562 *seqno = dev_priv->last_seqno = dev_priv->next_seqno++;
Chris Wilson9d7730912012-11-27 16:22:52 +00002563 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002564}
2565
John Harrisonbf7dc5b2015-05-29 17:43:24 +01002566/*
2567 * NB: This function is not allowed to fail. Doing so would mean the the
2568 * request is not being tracked for completion but the work itself is
2569 * going to happen on the hardware. This would be a Bad Thing(tm).
2570 */
John Harrison75289872015-05-29 17:43:49 +01002571void __i915_add_request(struct drm_i915_gem_request *request,
John Harrison5b4a60c2015-05-29 17:43:34 +01002572 struct drm_i915_gem_object *obj,
2573 bool flush_caches)
Eric Anholt673a3942008-07-30 12:06:12 -07002574{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002575 struct intel_engine_cs *engine;
John Harrison75289872015-05-29 17:43:49 +01002576 struct drm_i915_private *dev_priv;
Oscar Mateo48e29f52014-07-24 17:04:29 +01002577 struct intel_ringbuffer *ringbuf;
Nick Hoath6d3d8272015-01-15 13:10:39 +00002578 u32 request_start;
Chris Wilson3cce4692010-10-27 16:11:02 +01002579 int ret;
2580
Oscar Mateo48e29f52014-07-24 17:04:29 +01002581 if (WARN_ON(request == NULL))
John Harrisonbf7dc5b2015-05-29 17:43:24 +01002582 return;
Oscar Mateo48e29f52014-07-24 17:04:29 +01002583
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00002584 engine = request->engine;
Tvrtko Ursulin39dabec2016-03-17 13:04:10 +00002585 dev_priv = request->i915;
John Harrison75289872015-05-29 17:43:49 +01002586 ringbuf = request->ringbuf;
2587
John Harrison29b1b412015-06-18 13:10:09 +01002588 /*
2589 * To ensure that this call will not fail, space for its emissions
2590 * should already have been reserved in the ring buffer. Let the ring
2591 * know that it is time to use that space up.
2592 */
2593 intel_ring_reserved_space_use(ringbuf);
2594
Oscar Mateo48e29f52014-07-24 17:04:29 +01002595 request_start = intel_ring_get_tail(ringbuf);
Daniel Vettercc889e02012-06-13 20:45:19 +02002596 /*
2597 * Emit any outstanding flushes - execbuf can fail to emit the flush
2598 * after having emitted the batchbuffer command. Hence we need to fix
2599 * things up similar to emitting the lazy request. The difference here
2600 * is that the flush _must_ happen before the next request, no matter
2601 * what.
2602 */
John Harrison5b4a60c2015-05-29 17:43:34 +01002603 if (flush_caches) {
2604 if (i915.enable_execlists)
John Harrison4866d722015-05-29 17:43:55 +01002605 ret = logical_ring_flush_all_caches(request);
John Harrison5b4a60c2015-05-29 17:43:34 +01002606 else
John Harrison4866d722015-05-29 17:43:55 +01002607 ret = intel_ring_flush_all_caches(request);
John Harrison5b4a60c2015-05-29 17:43:34 +01002608 /* Not allowed to fail! */
2609 WARN(ret, "*_ring_flush_all_caches failed: %d!\n", ret);
2610 }
Daniel Vettercc889e02012-06-13 20:45:19 +02002611
Chris Wilson7c90b7d2016-04-07 07:29:17 +01002612 trace_i915_gem_request_add(request);
2613
2614 request->head = request_start;
2615
2616 /* Whilst this request exists, batch_obj will be on the
2617 * active_list, and so will hold the active reference. Only when this
2618 * request is retired will the the batch_obj be moved onto the
2619 * inactive_list and lose its active reference. Hence we do not need
2620 * to explicitly hold another reference here.
2621 */
2622 request->batch_obj = obj;
2623
2624 /* Seal the request and mark it as pending execution. Note that
2625 * we may inspect this state, without holding any locks, during
2626 * hangcheck. Hence we apply the barrier to ensure that we do not
2627 * see a more recent value in the hws than we are tracking.
2628 */
2629 request->emitted_jiffies = jiffies;
2630 request->previous_seqno = engine->last_submitted_seqno;
2631 smp_store_mb(engine->last_submitted_seqno, request->seqno);
2632 list_add_tail(&request->list, &engine->request_list);
2633
Chris Wilsona71d8d92012-02-15 11:25:36 +00002634 /* Record the position of the start of the request so that
2635 * should we detect the updated seqno part-way through the
2636 * GPU processing the request, we never over-estimate the
2637 * position of the head.
2638 */
Nick Hoath6d3d8272015-01-15 13:10:39 +00002639 request->postfix = intel_ring_get_tail(ringbuf);
Chris Wilsona71d8d92012-02-15 11:25:36 +00002640
John Harrisonbf7dc5b2015-05-29 17:43:24 +01002641 if (i915.enable_execlists)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002642 ret = engine->emit_request(request);
John Harrisonbf7dc5b2015-05-29 17:43:24 +01002643 else {
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002644 ret = engine->add_request(request);
Michel Thierry53292cd2015-04-15 18:11:33 +01002645
2646 request->tail = intel_ring_get_tail(ringbuf);
Oscar Mateo48e29f52014-07-24 17:04:29 +01002647 }
John Harrisonbf7dc5b2015-05-29 17:43:24 +01002648 /* Not allowed to fail! */
2649 WARN(ret, "emit|add_request failed: %d!\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07002650
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002651 i915_queue_hangcheck(engine->dev);
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03002652
Daniel Vetter87255482014-11-19 20:36:48 +01002653 queue_delayed_work(dev_priv->wq,
2654 &dev_priv->mm.retire_work,
2655 round_jiffies_up_relative(HZ));
2656 intel_mark_busy(dev_priv->dev);
Daniel Vettercc889e02012-06-13 20:45:19 +02002657
John Harrison29b1b412015-06-18 13:10:09 +01002658 /* Sanity check that the reserved size was large enough. */
2659 intel_ring_reserved_space_end(ringbuf);
Eric Anholt673a3942008-07-30 12:06:12 -07002660}
2661
Mika Kuoppala939fd762014-01-30 19:04:44 +02002662static bool i915_context_is_banned(struct drm_i915_private *dev_priv,
Oscar Mateo273497e2014-05-22 14:13:37 +01002663 const struct intel_context *ctx)
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002664{
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002665 unsigned long elapsed;
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002666
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002667 elapsed = get_seconds() - ctx->hang_stats.guilty_ts;
2668
2669 if (ctx->hang_stats.banned)
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002670 return true;
2671
Chris Wilson676fa572014-12-24 08:13:39 -08002672 if (ctx->hang_stats.ban_period_seconds &&
2673 elapsed <= ctx->hang_stats.ban_period_seconds) {
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002674 if (!i915_gem_context_is_default(ctx)) {
Mika Kuoppala3fac8972014-01-30 16:05:48 +02002675 DRM_DEBUG("context hanging too fast, banning!\n");
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002676 return true;
Mika Kuoppala88b4aa82014-03-28 18:18:18 +02002677 } else if (i915_stop_ring_allow_ban(dev_priv)) {
2678 if (i915_stop_ring_allow_warn(dev_priv))
2679 DRM_ERROR("gpu hanging too fast, banning!\n");
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002680 return true;
Mika Kuoppala3fac8972014-01-30 16:05:48 +02002681 }
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002682 }
2683
2684 return false;
2685}
2686
Mika Kuoppala939fd762014-01-30 19:04:44 +02002687static void i915_set_reset_status(struct drm_i915_private *dev_priv,
Oscar Mateo273497e2014-05-22 14:13:37 +01002688 struct intel_context *ctx,
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002689 const bool guilty)
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002690{
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002691 struct i915_ctx_hang_stats *hs;
2692
2693 if (WARN_ON(!ctx))
2694 return;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002695
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002696 hs = &ctx->hang_stats;
2697
2698 if (guilty) {
Mika Kuoppala939fd762014-01-30 19:04:44 +02002699 hs->banned = i915_context_is_banned(dev_priv, ctx);
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002700 hs->batch_active++;
2701 hs->guilty_ts = get_seconds();
2702 } else {
2703 hs->batch_pending++;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002704 }
2705}
2706
John Harrisonabfe2622014-11-24 18:49:24 +00002707void i915_gem_request_free(struct kref *req_ref)
2708{
2709 struct drm_i915_gem_request *req = container_of(req_ref,
2710 typeof(*req), ref);
2711 struct intel_context *ctx = req->ctx;
2712
John Harrisonfcfa423c2015-05-29 17:44:12 +01002713 if (req->file_priv)
2714 i915_gem_request_remove_from_client(req);
2715
Thomas Daniel0794aed2014-11-25 10:39:25 +00002716 if (ctx) {
Dave Gordone28e4042016-01-19 19:02:55 +00002717 if (i915.enable_execlists && ctx != req->i915->kernel_context)
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00002718 intel_lr_context_unpin(ctx, req->engine);
John Harrisonabfe2622014-11-24 18:49:24 +00002719
Oscar Mateodcb4c122014-11-13 10:28:10 +00002720 i915_gem_context_unreference(ctx);
2721 }
John Harrisonabfe2622014-11-24 18:49:24 +00002722
Chris Wilsonefab6d82015-04-07 16:20:57 +01002723 kmem_cache_free(req->i915->requests, req);
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002724}
2725
Dave Gordon26827082016-01-19 19:02:53 +00002726static inline int
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002727__i915_gem_request_alloc(struct intel_engine_cs *engine,
Dave Gordon26827082016-01-19 19:02:53 +00002728 struct intel_context *ctx,
2729 struct drm_i915_gem_request **req_out)
John Harrison6689cb22015-03-19 12:30:08 +00002730{
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002731 struct drm_i915_private *dev_priv = to_i915(engine->dev);
Chris Wilson299259a2016-04-13 17:35:06 +01002732 unsigned reset_counter = i915_reset_counter(&dev_priv->gpu_error);
Daniel Vettereed29a52015-05-21 14:21:25 +02002733 struct drm_i915_gem_request *req;
John Harrison6689cb22015-03-19 12:30:08 +00002734 int ret;
John Harrison6689cb22015-03-19 12:30:08 +00002735
John Harrison217e46b2015-05-29 17:43:29 +01002736 if (!req_out)
2737 return -EINVAL;
2738
John Harrisonbccca492015-05-29 17:44:11 +01002739 *req_out = NULL;
John Harrison6689cb22015-03-19 12:30:08 +00002740
Chris Wilsonf4457ae2016-04-13 17:35:08 +01002741 /* ABI: Before userspace accesses the GPU (e.g. execbuffer), report
2742 * EIO if the GPU is already wedged, or EAGAIN to drop the struct_mutex
2743 * and restart.
2744 */
2745 ret = i915_gem_check_wedge(reset_counter, dev_priv->mm.interruptible);
Chris Wilson299259a2016-04-13 17:35:06 +01002746 if (ret)
2747 return ret;
2748
Daniel Vettereed29a52015-05-21 14:21:25 +02002749 req = kmem_cache_zalloc(dev_priv->requests, GFP_KERNEL);
2750 if (req == NULL)
John Harrison6689cb22015-03-19 12:30:08 +00002751 return -ENOMEM;
2752
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002753 ret = i915_gem_get_seqno(engine->dev, &req->seqno);
Chris Wilson9a0c1e22015-05-21 21:01:45 +01002754 if (ret)
2755 goto err;
John Harrison6689cb22015-03-19 12:30:08 +00002756
John Harrison40e895c2015-05-29 17:43:26 +01002757 kref_init(&req->ref);
2758 req->i915 = dev_priv;
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00002759 req->engine = engine;
Chris Wilson299259a2016-04-13 17:35:06 +01002760 req->reset_counter = reset_counter;
John Harrison40e895c2015-05-29 17:43:26 +01002761 req->ctx = ctx;
2762 i915_gem_context_reference(req->ctx);
John Harrison6689cb22015-03-19 12:30:08 +00002763
2764 if (i915.enable_execlists)
John Harrison40e895c2015-05-29 17:43:26 +01002765 ret = intel_logical_ring_alloc_request_extras(req);
John Harrison6689cb22015-03-19 12:30:08 +00002766 else
Daniel Vettereed29a52015-05-21 14:21:25 +02002767 ret = intel_ring_alloc_request_extras(req);
John Harrison40e895c2015-05-29 17:43:26 +01002768 if (ret) {
2769 i915_gem_context_unreference(req->ctx);
Chris Wilson9a0c1e22015-05-21 21:01:45 +01002770 goto err;
John Harrison40e895c2015-05-29 17:43:26 +01002771 }
John Harrison6689cb22015-03-19 12:30:08 +00002772
John Harrison29b1b412015-06-18 13:10:09 +01002773 /*
2774 * Reserve space in the ring buffer for all the commands required to
2775 * eventually emit this request. This is to guarantee that the
2776 * i915_add_request() call can't fail. Note that the reserve may need
2777 * to be redone if the request is not actually submitted straight
2778 * away, e.g. because a GPU scheduler has deferred it.
John Harrison29b1b412015-06-18 13:10:09 +01002779 */
John Harrisonccd98fe2015-05-29 17:44:09 +01002780 if (i915.enable_execlists)
2781 ret = intel_logical_ring_reserve_space(req);
2782 else
2783 ret = intel_ring_reserve_space(req);
2784 if (ret) {
2785 /*
2786 * At this point, the request is fully allocated even if not
2787 * fully prepared. Thus it can be cleaned up using the proper
2788 * free code.
2789 */
Chris Wilsonaa9b7812016-04-13 17:35:15 +01002790 intel_ring_reserved_space_cancel(req->ringbuf);
2791 i915_gem_request_unreference(req);
John Harrisonccd98fe2015-05-29 17:44:09 +01002792 return ret;
2793 }
John Harrison29b1b412015-06-18 13:10:09 +01002794
John Harrisonbccca492015-05-29 17:44:11 +01002795 *req_out = req;
John Harrison6689cb22015-03-19 12:30:08 +00002796 return 0;
Chris Wilson9a0c1e22015-05-21 21:01:45 +01002797
2798err:
2799 kmem_cache_free(dev_priv->requests, req);
2800 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002801}
2802
Dave Gordon26827082016-01-19 19:02:53 +00002803/**
2804 * i915_gem_request_alloc - allocate a request structure
2805 *
2806 * @engine: engine that we wish to issue the request on.
2807 * @ctx: context that the request will be associated with.
2808 * This can be NULL if the request is not directly related to
2809 * any specific user context, in which case this function will
2810 * choose an appropriate context to use.
2811 *
2812 * Returns a pointer to the allocated request if successful,
2813 * or an error code if not.
2814 */
2815struct drm_i915_gem_request *
2816i915_gem_request_alloc(struct intel_engine_cs *engine,
2817 struct intel_context *ctx)
2818{
2819 struct drm_i915_gem_request *req;
2820 int err;
2821
2822 if (ctx == NULL)
Dave Gordoned54c1a2016-01-19 19:02:54 +00002823 ctx = to_i915(engine->dev)->kernel_context;
Dave Gordon26827082016-01-19 19:02:53 +00002824 err = __i915_gem_request_alloc(engine, ctx, &req);
2825 return err ? ERR_PTR(err) : req;
2826}
2827
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002828struct drm_i915_gem_request *
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002829i915_gem_find_active_request(struct intel_engine_cs *engine)
Chris Wilson9375e442010-09-19 12:21:28 +01002830{
Chris Wilson4db080f2013-12-04 11:37:09 +00002831 struct drm_i915_gem_request *request;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002832
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002833 list_for_each_entry(request, &engine->request_list, list) {
John Harrison1b5a4332014-11-24 18:49:42 +00002834 if (i915_gem_request_completed(request, false))
Chris Wilson4db080f2013-12-04 11:37:09 +00002835 continue;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002836
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002837 return request;
Chris Wilson4db080f2013-12-04 11:37:09 +00002838 }
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002839
2840 return NULL;
2841}
2842
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00002843static void i915_gem_reset_engine_status(struct drm_i915_private *dev_priv,
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002844 struct intel_engine_cs *engine)
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002845{
2846 struct drm_i915_gem_request *request;
2847 bool ring_hung;
2848
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002849 request = i915_gem_find_active_request(engine);
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002850
2851 if (request == NULL)
2852 return;
2853
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002854 ring_hung = engine->hangcheck.score >= HANGCHECK_SCORE_RING_HUNG;
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002855
Mika Kuoppala939fd762014-01-30 19:04:44 +02002856 i915_set_reset_status(dev_priv, request->ctx, ring_hung);
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002857
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002858 list_for_each_entry_continue(request, &engine->request_list, list)
Mika Kuoppala939fd762014-01-30 19:04:44 +02002859 i915_set_reset_status(dev_priv, request->ctx, false);
Chris Wilson4db080f2013-12-04 11:37:09 +00002860}
2861
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00002862static void i915_gem_reset_engine_cleanup(struct drm_i915_private *dev_priv,
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002863 struct intel_engine_cs *engine)
Chris Wilson4db080f2013-12-04 11:37:09 +00002864{
Chris Wilson608c1a52015-09-03 13:01:40 +01002865 struct intel_ringbuffer *buffer;
2866
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002867 while (!list_empty(&engine->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00002868 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07002869
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002870 obj = list_first_entry(&engine->active_list,
Chris Wilson05394f32010-11-08 19:18:58 +00002871 struct drm_i915_gem_object,
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00002872 engine_list[engine->id]);
Eric Anholt673a3942008-07-30 12:06:12 -07002873
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002874 i915_gem_object_retire__read(obj, engine->id);
Eric Anholt673a3942008-07-30 12:06:12 -07002875 }
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002876
2877 /*
Oscar Mateodcb4c122014-11-13 10:28:10 +00002878 * Clear the execlists queue up before freeing the requests, as those
2879 * are the ones that keep the context and ringbuffer backing objects
2880 * pinned in place.
2881 */
Oscar Mateodcb4c122014-11-13 10:28:10 +00002882
Tomas Elf7de16912015-10-19 16:32:32 +01002883 if (i915.enable_execlists) {
Tvrtko Ursulin27af5ee2016-04-04 12:11:56 +01002884 /* Ensure irq handler finishes or is cancelled. */
2885 tasklet_kill(&engine->irq_tasklet);
Mika Kuoppala1197b4f2015-01-13 11:32:24 +02002886
Tvrtko Ursulin27af5ee2016-04-04 12:11:56 +01002887 spin_lock_bh(&engine->execlist_lock);
Tomas Elfc5baa562015-10-23 18:02:37 +01002888 /* list_splice_tail_init checks for empty lists */
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002889 list_splice_tail_init(&engine->execlist_queue,
2890 &engine->execlist_retired_req_list);
Tvrtko Ursulin27af5ee2016-04-04 12:11:56 +01002891 spin_unlock_bh(&engine->execlist_lock);
Mika Kuoppala1197b4f2015-01-13 11:32:24 +02002892
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002893 intel_execlists_retire_requests(engine);
Oscar Mateodcb4c122014-11-13 10:28:10 +00002894 }
2895
2896 /*
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002897 * We must free the requests after all the corresponding objects have
2898 * been moved off active lists. Which is the same order as the normal
2899 * retire_requests function does. This is important if object hold
2900 * implicit references on things like e.g. ppgtt address spaces through
2901 * the request.
2902 */
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002903 while (!list_empty(&engine->request_list)) {
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002904 struct drm_i915_gem_request *request;
2905
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002906 request = list_first_entry(&engine->request_list,
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002907 struct drm_i915_gem_request,
2908 list);
2909
Chris Wilsonb4716182015-04-27 13:41:17 +01002910 i915_gem_request_retire(request);
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002911 }
Chris Wilson608c1a52015-09-03 13:01:40 +01002912
2913 /* Having flushed all requests from all queues, we know that all
2914 * ringbuffers must now be empty. However, since we do not reclaim
2915 * all space when retiring the request (to prevent HEADs colliding
2916 * with rapid ringbuffer wraparound) the amount of available space
2917 * upon reset is less than when we start. Do one more pass over
2918 * all the ringbuffers to reset last_retired_head.
2919 */
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002920 list_for_each_entry(buffer, &engine->buffers, link) {
Chris Wilson608c1a52015-09-03 13:01:40 +01002921 buffer->last_retired_head = buffer->tail;
2922 intel_ring_update_space(buffer);
2923 }
Chris Wilson2ed53a92016-04-07 07:29:11 +01002924
2925 intel_ring_init_seqno(engine, engine->last_submitted_seqno);
Eric Anholt673a3942008-07-30 12:06:12 -07002926}
2927
Chris Wilson069efc12010-09-30 16:53:18 +01002928void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07002929{
Chris Wilsondfaae392010-09-22 10:31:52 +01002930 struct drm_i915_private *dev_priv = dev->dev_private;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002931 struct intel_engine_cs *engine;
Eric Anholt673a3942008-07-30 12:06:12 -07002932
Chris Wilson4db080f2013-12-04 11:37:09 +00002933 /*
2934 * Before we free the objects from the requests, we need to inspect
2935 * them for finding the guilty party. As the requests only borrow
2936 * their reference to the objects, the inspection must be done first.
2937 */
Dave Gordonb4ac5af2016-03-24 11:20:38 +00002938 for_each_engine(engine, dev_priv)
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00002939 i915_gem_reset_engine_status(dev_priv, engine);
Chris Wilson4db080f2013-12-04 11:37:09 +00002940
Dave Gordonb4ac5af2016-03-24 11:20:38 +00002941 for_each_engine(engine, dev_priv)
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00002942 i915_gem_reset_engine_cleanup(dev_priv, engine);
Chris Wilsondfaae392010-09-22 10:31:52 +01002943
Ben Widawskyacce9ff2013-12-06 14:11:03 -08002944 i915_gem_context_reset(dev);
2945
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002946 i915_gem_restore_fences(dev);
Chris Wilsonb4716182015-04-27 13:41:17 +01002947
2948 WARN_ON(i915_verify_lists(dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002949}
2950
2951/**
2952 * This function clears the request list as sequence numbers are passed.
2953 */
Chris Wilson1cf0ba12014-05-05 09:07:33 +01002954void
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002955i915_gem_retire_requests_ring(struct intel_engine_cs *engine)
Eric Anholt673a3942008-07-30 12:06:12 -07002956{
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002957 WARN_ON(i915_verify_lists(engine->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002958
Chris Wilson832a3aa2015-03-18 18:19:22 +00002959 /* Retire requests first as we use it above for the early return.
2960 * If we retire requests last, we may use a later seqno and so clear
2961 * the requests lists without clearing the active list, leading to
2962 * confusion.
Chris Wilsone9103032014-01-07 11:45:14 +00002963 */
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002964 while (!list_empty(&engine->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002965 struct drm_i915_gem_request *request;
Eric Anholt673a3942008-07-30 12:06:12 -07002966
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002967 request = list_first_entry(&engine->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07002968 struct drm_i915_gem_request,
2969 list);
Eric Anholt673a3942008-07-30 12:06:12 -07002970
John Harrison1b5a4332014-11-24 18:49:42 +00002971 if (!i915_gem_request_completed(request, true))
Eric Anholt673a3942008-07-30 12:06:12 -07002972 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002973
Chris Wilsonb4716182015-04-27 13:41:17 +01002974 i915_gem_request_retire(request);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002975 }
2976
Chris Wilson832a3aa2015-03-18 18:19:22 +00002977 /* Move any buffers on the active list that are no longer referenced
2978 * by the ringbuffer to the flushing/inactive lists as appropriate,
2979 * before we free the context associated with the requests.
2980 */
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002981 while (!list_empty(&engine->active_list)) {
Chris Wilson832a3aa2015-03-18 18:19:22 +00002982 struct drm_i915_gem_object *obj;
2983
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002984 obj = list_first_entry(&engine->active_list,
2985 struct drm_i915_gem_object,
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00002986 engine_list[engine->id]);
Chris Wilson832a3aa2015-03-18 18:19:22 +00002987
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002988 if (!list_empty(&obj->last_read_req[engine->id]->list))
Chris Wilson832a3aa2015-03-18 18:19:22 +00002989 break;
2990
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002991 i915_gem_object_retire__read(obj, engine->id);
Chris Wilson832a3aa2015-03-18 18:19:22 +00002992 }
2993
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002994 if (unlikely(engine->trace_irq_req &&
2995 i915_gem_request_completed(engine->trace_irq_req, true))) {
2996 engine->irq_put(engine);
2997 i915_gem_request_assign(&engine->trace_irq_req, NULL);
Chris Wilson9d34e5d2009-09-24 05:26:06 +01002998 }
Chris Wilson23bc5982010-09-29 16:10:57 +01002999
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00003000 WARN_ON(i915_verify_lists(engine->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07003001}
3002
Chris Wilsonb29c19b2013-09-25 17:34:56 +01003003bool
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01003004i915_gem_retire_requests(struct drm_device *dev)
3005{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003006 struct drm_i915_private *dev_priv = dev->dev_private;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003007 struct intel_engine_cs *engine;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01003008 bool idle = true;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01003009
Dave Gordonb4ac5af2016-03-24 11:20:38 +00003010 for_each_engine(engine, dev_priv) {
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003011 i915_gem_retire_requests_ring(engine);
3012 idle &= list_empty(&engine->request_list);
Thomas Danielc86ee3a92014-11-13 10:27:05 +00003013 if (i915.enable_execlists) {
Tvrtko Ursulin27af5ee2016-04-04 12:11:56 +01003014 spin_lock_bh(&engine->execlist_lock);
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003015 idle &= list_empty(&engine->execlist_queue);
Tvrtko Ursulin27af5ee2016-04-04 12:11:56 +01003016 spin_unlock_bh(&engine->execlist_lock);
Thomas Danielc86ee3a92014-11-13 10:27:05 +00003017
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003018 intel_execlists_retire_requests(engine);
Thomas Danielc86ee3a92014-11-13 10:27:05 +00003019 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01003020 }
3021
3022 if (idle)
3023 mod_delayed_work(dev_priv->wq,
3024 &dev_priv->mm.idle_work,
3025 msecs_to_jiffies(100));
3026
3027 return idle;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01003028}
3029
Daniel Vetter75ef9da2010-08-21 00:25:16 +02003030static void
Eric Anholt673a3942008-07-30 12:06:12 -07003031i915_gem_retire_work_handler(struct work_struct *work)
3032{
Chris Wilsonb29c19b2013-09-25 17:34:56 +01003033 struct drm_i915_private *dev_priv =
3034 container_of(work, typeof(*dev_priv), mm.retire_work.work);
3035 struct drm_device *dev = dev_priv->dev;
Chris Wilson0a587052011-01-09 21:05:44 +00003036 bool idle;
Eric Anholt673a3942008-07-30 12:06:12 -07003037
Chris Wilson891b48c2010-09-29 12:26:37 +01003038 /* Come back later if the device is busy... */
Chris Wilsonb29c19b2013-09-25 17:34:56 +01003039 idle = false;
3040 if (mutex_trylock(&dev->struct_mutex)) {
3041 idle = i915_gem_retire_requests(dev);
3042 mutex_unlock(&dev->struct_mutex);
3043 }
3044 if (!idle)
Chris Wilsonbcb45082012-10-05 17:02:57 +01003045 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work,
3046 round_jiffies_up_relative(HZ));
Chris Wilsonb29c19b2013-09-25 17:34:56 +01003047}
Chris Wilson891b48c2010-09-29 12:26:37 +01003048
Chris Wilsonb29c19b2013-09-25 17:34:56 +01003049static void
3050i915_gem_idle_work_handler(struct work_struct *work)
3051{
3052 struct drm_i915_private *dev_priv =
3053 container_of(work, typeof(*dev_priv), mm.idle_work.work);
Chris Wilson35c94182015-04-07 16:20:37 +01003054 struct drm_device *dev = dev_priv->dev;
Dave Gordonb4ac5af2016-03-24 11:20:38 +00003055 struct intel_engine_cs *engine;
Zou Nan haid1b851f2010-05-21 09:08:57 +08003056
Dave Gordonb4ac5af2016-03-24 11:20:38 +00003057 for_each_engine(engine, dev_priv)
3058 if (!list_empty(&engine->request_list))
Chris Wilson423795c2015-04-07 16:21:08 +01003059 return;
Zou Nan hai852835f2010-05-21 09:08:56 +08003060
Daniel Vetter30ecad72015-12-09 09:29:36 +01003061 /* we probably should sync with hangcheck here, using cancel_work_sync.
Dave Gordonb4ac5af2016-03-24 11:20:38 +00003062 * Also locking seems to be fubar here, engine->request_list is protected
Daniel Vetter30ecad72015-12-09 09:29:36 +01003063 * by dev->struct_mutex. */
3064
Chris Wilson35c94182015-04-07 16:20:37 +01003065 intel_mark_idle(dev);
3066
3067 if (mutex_trylock(&dev->struct_mutex)) {
Dave Gordonb4ac5af2016-03-24 11:20:38 +00003068 for_each_engine(engine, dev_priv)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003069 i915_gem_batch_pool_fini(&engine->batch_pool);
Chris Wilson35c94182015-04-07 16:20:37 +01003070
3071 mutex_unlock(&dev->struct_mutex);
3072 }
Eric Anholt673a3942008-07-30 12:06:12 -07003073}
3074
Ben Widawsky5816d642012-04-11 11:18:19 -07003075/**
Daniel Vetter30dfebf2012-06-01 15:21:23 +02003076 * Ensures that an object will eventually get non-busy by flushing any required
3077 * write domains, emitting any outstanding lazy request and retiring and
3078 * completed requests.
3079 */
3080static int
3081i915_gem_object_flush_active(struct drm_i915_gem_object *obj)
3082{
John Harrisona5ac0f92015-05-29 17:44:15 +01003083 int i;
Daniel Vetter30dfebf2012-06-01 15:21:23 +02003084
Chris Wilsonb4716182015-04-27 13:41:17 +01003085 if (!obj->active)
3086 return 0;
John Harrison41c52412014-11-24 18:49:43 +00003087
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00003088 for (i = 0; i < I915_NUM_ENGINES; i++) {
Chris Wilsonb4716182015-04-27 13:41:17 +01003089 struct drm_i915_gem_request *req;
3090
3091 req = obj->last_read_req[i];
3092 if (req == NULL)
3093 continue;
3094
3095 if (list_empty(&req->list))
3096 goto retire;
3097
Chris Wilsonb4716182015-04-27 13:41:17 +01003098 if (i915_gem_request_completed(req, true)) {
3099 __i915_gem_request_retire__upto(req);
3100retire:
3101 i915_gem_object_retire__read(obj, i);
3102 }
Daniel Vetter30dfebf2012-06-01 15:21:23 +02003103 }
3104
3105 return 0;
3106}
3107
3108/**
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07003109 * i915_gem_wait_ioctl - implements DRM_IOCTL_I915_GEM_WAIT
3110 * @DRM_IOCTL_ARGS: standard ioctl arguments
3111 *
3112 * Returns 0 if successful, else an error is returned with the remaining time in
3113 * the timeout parameter.
3114 * -ETIME: object is still busy after timeout
3115 * -ERESTARTSYS: signal interrupted the wait
3116 * -ENONENT: object doesn't exist
3117 * Also possible, but rare:
3118 * -EAGAIN: GPU wedged
3119 * -ENOMEM: damn
3120 * -ENODEV: Internal IRQ fail
3121 * -E?: The add request failed
3122 *
3123 * The wait ioctl with a timeout of 0 reimplements the busy ioctl. With any
3124 * non-zero timeout parameter the wait ioctl will wait for the given number of
3125 * nanoseconds on an object becoming unbusy. Since the wait itself does so
3126 * without holding struct_mutex the object may become re-busied before this
3127 * function completes. A similar but shorter * race condition exists in the busy
3128 * ioctl
3129 */
3130int
3131i915_gem_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
3132{
3133 struct drm_i915_gem_wait *args = data;
3134 struct drm_i915_gem_object *obj;
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00003135 struct drm_i915_gem_request *req[I915_NUM_ENGINES];
Chris Wilsonb4716182015-04-27 13:41:17 +01003136 int i, n = 0;
3137 int ret;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07003138
Daniel Vetter11b5d512014-09-29 15:31:26 +02003139 if (args->flags != 0)
3140 return -EINVAL;
3141
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07003142 ret = i915_mutex_lock_interruptible(dev);
3143 if (ret)
3144 return ret;
3145
3146 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->bo_handle));
3147 if (&obj->base == NULL) {
3148 mutex_unlock(&dev->struct_mutex);
3149 return -ENOENT;
3150 }
3151
Daniel Vetter30dfebf2012-06-01 15:21:23 +02003152 /* Need to make sure the object gets inactive eventually. */
3153 ret = i915_gem_object_flush_active(obj);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07003154 if (ret)
3155 goto out;
3156
Chris Wilsonb4716182015-04-27 13:41:17 +01003157 if (!obj->active)
John Harrison97b2a6a2014-11-24 18:49:26 +00003158 goto out;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07003159
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07003160 /* Do this after OLR check to make sure we make forward progress polling
Chris Wilson762e4582015-03-04 18:09:26 +00003161 * on this IOCTL with a timeout == 0 (like busy ioctl)
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07003162 */
Chris Wilson762e4582015-03-04 18:09:26 +00003163 if (args->timeout_ns == 0) {
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07003164 ret = -ETIME;
3165 goto out;
3166 }
3167
3168 drm_gem_object_unreference(&obj->base);
Chris Wilsonb4716182015-04-27 13:41:17 +01003169
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00003170 for (i = 0; i < I915_NUM_ENGINES; i++) {
Chris Wilsonb4716182015-04-27 13:41:17 +01003171 if (obj->last_read_req[i] == NULL)
3172 continue;
3173
3174 req[n++] = i915_gem_request_reference(obj->last_read_req[i]);
3175 }
3176
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07003177 mutex_unlock(&dev->struct_mutex);
3178
Chris Wilsonb4716182015-04-27 13:41:17 +01003179 for (i = 0; i < n; i++) {
3180 if (ret == 0)
Chris Wilson299259a2016-04-13 17:35:06 +01003181 ret = __i915_wait_request(req[i], true,
Chris Wilsonb4716182015-04-27 13:41:17 +01003182 args->timeout_ns > 0 ? &args->timeout_ns : NULL,
Chris Wilsonb6aa0872015-12-02 09:13:46 +00003183 to_rps_client(file));
Chris Wilsonb4716182015-04-27 13:41:17 +01003184 i915_gem_request_unreference__unlocked(req[i]);
3185 }
John Harrisonff865882014-11-24 18:49:28 +00003186 return ret;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07003187
3188out:
3189 drm_gem_object_unreference(&obj->base);
3190 mutex_unlock(&dev->struct_mutex);
3191 return ret;
3192}
3193
Chris Wilsonb4716182015-04-27 13:41:17 +01003194static int
3195__i915_gem_object_sync(struct drm_i915_gem_object *obj,
3196 struct intel_engine_cs *to,
John Harrison91af1272015-06-18 13:14:56 +01003197 struct drm_i915_gem_request *from_req,
3198 struct drm_i915_gem_request **to_req)
Chris Wilsonb4716182015-04-27 13:41:17 +01003199{
3200 struct intel_engine_cs *from;
3201 int ret;
3202
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00003203 from = i915_gem_request_get_engine(from_req);
Chris Wilsonb4716182015-04-27 13:41:17 +01003204 if (to == from)
3205 return 0;
3206
John Harrison91af1272015-06-18 13:14:56 +01003207 if (i915_gem_request_completed(from_req, true))
Chris Wilsonb4716182015-04-27 13:41:17 +01003208 return 0;
3209
Chris Wilsonb4716182015-04-27 13:41:17 +01003210 if (!i915_semaphore_is_enabled(obj->base.dev)) {
Chris Wilsona6f766f2015-04-27 13:41:20 +01003211 struct drm_i915_private *i915 = to_i915(obj->base.dev);
John Harrison91af1272015-06-18 13:14:56 +01003212 ret = __i915_wait_request(from_req,
Chris Wilsona6f766f2015-04-27 13:41:20 +01003213 i915->mm.interruptible,
3214 NULL,
3215 &i915->rps.semaphores);
Chris Wilsonb4716182015-04-27 13:41:17 +01003216 if (ret)
3217 return ret;
3218
John Harrison91af1272015-06-18 13:14:56 +01003219 i915_gem_object_retire_request(obj, from_req);
Chris Wilsonb4716182015-04-27 13:41:17 +01003220 } else {
3221 int idx = intel_ring_sync_index(from, to);
John Harrison91af1272015-06-18 13:14:56 +01003222 u32 seqno = i915_gem_request_get_seqno(from_req);
3223
3224 WARN_ON(!to_req);
Chris Wilsonb4716182015-04-27 13:41:17 +01003225
3226 if (seqno <= from->semaphore.sync_seqno[idx])
3227 return 0;
3228
John Harrison91af1272015-06-18 13:14:56 +01003229 if (*to_req == NULL) {
Dave Gordon26827082016-01-19 19:02:53 +00003230 struct drm_i915_gem_request *req;
3231
3232 req = i915_gem_request_alloc(to, NULL);
3233 if (IS_ERR(req))
3234 return PTR_ERR(req);
3235
3236 *to_req = req;
John Harrison91af1272015-06-18 13:14:56 +01003237 }
3238
John Harrison599d9242015-05-29 17:44:04 +01003239 trace_i915_gem_ring_sync_to(*to_req, from, from_req);
3240 ret = to->semaphore.sync_to(*to_req, from, seqno);
Chris Wilsonb4716182015-04-27 13:41:17 +01003241 if (ret)
3242 return ret;
3243
3244 /* We use last_read_req because sync_to()
3245 * might have just caused seqno wrap under
3246 * the radar.
3247 */
3248 from->semaphore.sync_seqno[idx] =
3249 i915_gem_request_get_seqno(obj->last_read_req[from->id]);
3250 }
3251
3252 return 0;
3253}
3254
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07003255/**
Ben Widawsky5816d642012-04-11 11:18:19 -07003256 * i915_gem_object_sync - sync an object to a ring.
3257 *
3258 * @obj: object which may be in use on another ring.
3259 * @to: ring we wish to use the object on. May be NULL.
John Harrison91af1272015-06-18 13:14:56 +01003260 * @to_req: request we wish to use the object for. See below.
3261 * This will be allocated and returned if a request is
3262 * required but not passed in.
Ben Widawsky5816d642012-04-11 11:18:19 -07003263 *
3264 * This code is meant to abstract object synchronization with the GPU.
3265 * Calling with NULL implies synchronizing the object with the CPU
Chris Wilsonb4716182015-04-27 13:41:17 +01003266 * rather than a particular GPU ring. Conceptually we serialise writes
John Harrison91af1272015-06-18 13:14:56 +01003267 * between engines inside the GPU. We only allow one engine to write
Chris Wilsonb4716182015-04-27 13:41:17 +01003268 * into a buffer at any time, but multiple readers. To ensure each has
3269 * a coherent view of memory, we must:
3270 *
3271 * - If there is an outstanding write request to the object, the new
3272 * request must wait for it to complete (either CPU or in hw, requests
3273 * on the same ring will be naturally ordered).
3274 *
3275 * - If we are a write request (pending_write_domain is set), the new
3276 * request must wait for outstanding read requests to complete.
Ben Widawsky5816d642012-04-11 11:18:19 -07003277 *
John Harrison91af1272015-06-18 13:14:56 +01003278 * For CPU synchronisation (NULL to) no request is required. For syncing with
3279 * rings to_req must be non-NULL. However, a request does not have to be
3280 * pre-allocated. If *to_req is NULL and sync commands will be emitted then a
3281 * request will be allocated automatically and returned through *to_req. Note
3282 * that it is not guaranteed that commands will be emitted (because the system
3283 * might already be idle). Hence there is no need to create a request that
3284 * might never have any work submitted. Note further that if a request is
3285 * returned in *to_req, it is the responsibility of the caller to submit
3286 * that request (after potentially adding more work to it).
3287 *
Ben Widawsky5816d642012-04-11 11:18:19 -07003288 * Returns 0 if successful, else propagates up the lower layer error.
3289 */
Ben Widawsky2911a352012-04-05 14:47:36 -07003290int
3291i915_gem_object_sync(struct drm_i915_gem_object *obj,
John Harrison91af1272015-06-18 13:14:56 +01003292 struct intel_engine_cs *to,
3293 struct drm_i915_gem_request **to_req)
Ben Widawsky2911a352012-04-05 14:47:36 -07003294{
Chris Wilsonb4716182015-04-27 13:41:17 +01003295 const bool readonly = obj->base.pending_write_domain == 0;
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00003296 struct drm_i915_gem_request *req[I915_NUM_ENGINES];
Chris Wilsonb4716182015-04-27 13:41:17 +01003297 int ret, i, n;
Ben Widawsky2911a352012-04-05 14:47:36 -07003298
Chris Wilsonb4716182015-04-27 13:41:17 +01003299 if (!obj->active)
Ben Widawsky2911a352012-04-05 14:47:36 -07003300 return 0;
3301
Chris Wilsonb4716182015-04-27 13:41:17 +01003302 if (to == NULL)
3303 return i915_gem_object_wait_rendering(obj, readonly);
Ben Widawsky2911a352012-04-05 14:47:36 -07003304
Chris Wilsonb4716182015-04-27 13:41:17 +01003305 n = 0;
3306 if (readonly) {
3307 if (obj->last_write_req)
3308 req[n++] = obj->last_write_req;
3309 } else {
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00003310 for (i = 0; i < I915_NUM_ENGINES; i++)
Chris Wilsonb4716182015-04-27 13:41:17 +01003311 if (obj->last_read_req[i])
3312 req[n++] = obj->last_read_req[i];
3313 }
3314 for (i = 0; i < n; i++) {
John Harrison91af1272015-06-18 13:14:56 +01003315 ret = __i915_gem_object_sync(obj, to, req[i], to_req);
Chris Wilsonb4716182015-04-27 13:41:17 +01003316 if (ret)
3317 return ret;
3318 }
Ben Widawsky2911a352012-04-05 14:47:36 -07003319
Chris Wilsonb4716182015-04-27 13:41:17 +01003320 return 0;
Ben Widawsky2911a352012-04-05 14:47:36 -07003321}
3322
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01003323static void i915_gem_object_finish_gtt(struct drm_i915_gem_object *obj)
3324{
3325 u32 old_write_domain, old_read_domains;
3326
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01003327 /* Force a pagefault for domain tracking on next user access */
3328 i915_gem_release_mmap(obj);
3329
Keith Packardb97c3d92011-06-24 21:02:59 -07003330 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
3331 return;
3332
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01003333 old_read_domains = obj->base.read_domains;
3334 old_write_domain = obj->base.write_domain;
3335
3336 obj->base.read_domains &= ~I915_GEM_DOMAIN_GTT;
3337 obj->base.write_domain &= ~I915_GEM_DOMAIN_GTT;
3338
3339 trace_i915_gem_object_change_domain(obj,
3340 old_read_domains,
3341 old_write_domain);
3342}
3343
Tvrtko Ursuline9f24d52015-10-05 13:26:36 +01003344static int __i915_vma_unbind(struct i915_vma *vma, bool wait)
Eric Anholt673a3942008-07-30 12:06:12 -07003345{
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003346 struct drm_i915_gem_object *obj = vma->obj;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003347 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson43e28f02013-01-08 10:53:09 +00003348 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003349
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00003350 if (list_empty(&vma->obj_link))
Eric Anholt673a3942008-07-30 12:06:12 -07003351 return 0;
3352
Daniel Vetter0ff501c2013-08-29 19:50:31 +02003353 if (!drm_mm_node_allocated(&vma->node)) {
3354 i915_gem_vma_destroy(vma);
Daniel Vetter0ff501c2013-08-29 19:50:31 +02003355 return 0;
3356 }
Ben Widawsky433544b2013-08-13 18:09:06 -07003357
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08003358 if (vma->pin_count)
Chris Wilson31d8d652012-05-24 19:11:20 +01003359 return -EBUSY;
Eric Anholt673a3942008-07-30 12:06:12 -07003360
Chris Wilsonc4670ad2012-08-20 10:23:27 +01003361 BUG_ON(obj->pages == NULL);
3362
Tvrtko Ursuline9f24d52015-10-05 13:26:36 +01003363 if (wait) {
3364 ret = i915_gem_object_wait_rendering(obj, false);
3365 if (ret)
3366 return ret;
3367 }
Chris Wilsona8198ee2011-04-13 22:04:09 +01003368
Chris Wilson596c5922016-02-26 11:03:20 +00003369 if (vma->is_ggtt && vma->ggtt_view.type == I915_GGTT_VIEW_NORMAL) {
Daniel Vetter8b1bc9b2014-02-14 14:06:07 +01003370 i915_gem_object_finish_gtt(obj);
Chris Wilsona8198ee2011-04-13 22:04:09 +01003371
Daniel Vetter8b1bc9b2014-02-14 14:06:07 +01003372 /* release the fence reg _after_ flushing */
3373 ret = i915_gem_object_put_fence(obj);
3374 if (ret)
3375 return ret;
3376 }
Daniel Vetter96b47b62009-12-15 17:50:00 +01003377
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003378 trace_i915_vma_unbind(vma);
Chris Wilsondb53a302011-02-03 11:57:46 +00003379
Daniel Vetter777dc5b2015-04-14 17:35:12 +02003380 vma->vm->unbind_vma(vma);
Mika Kuoppala5e562f12015-04-30 11:02:31 +03003381 vma->bound = 0;
Ben Widawsky6f65e292013-12-06 14:10:56 -08003382
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00003383 list_del_init(&vma->vm_link);
Chris Wilson596c5922016-02-26 11:03:20 +00003384 if (vma->is_ggtt) {
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003385 if (vma->ggtt_view.type == I915_GGTT_VIEW_NORMAL) {
3386 obj->map_and_fenceable = false;
3387 } else if (vma->ggtt_view.pages) {
3388 sg_free_table(vma->ggtt_view.pages);
3389 kfree(vma->ggtt_view.pages);
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003390 }
Chris Wilson016a65a2015-06-11 08:06:08 +01003391 vma->ggtt_view.pages = NULL;
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003392 }
Eric Anholt673a3942008-07-30 12:06:12 -07003393
Ben Widawsky2f633152013-07-17 12:19:03 -07003394 drm_mm_remove_node(&vma->node);
3395 i915_gem_vma_destroy(vma);
3396
3397 /* Since the unbound list is global, only move to that list if
Daniel Vetterb93dab62013-08-26 11:23:47 +02003398 * no more VMAs exist. */
Imre Deake2273302015-07-09 12:59:05 +03003399 if (list_empty(&obj->vma_list))
Ben Widawsky2f633152013-07-17 12:19:03 -07003400 list_move_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Eric Anholt673a3942008-07-30 12:06:12 -07003401
Chris Wilson70903c32013-12-04 09:59:09 +00003402 /* And finally now the object is completely decoupled from this vma,
3403 * we can drop its hold on the backing storage and allow it to be
3404 * reaped by the shrinker.
3405 */
3406 i915_gem_object_unpin_pages(obj);
3407
Chris Wilson88241782011-01-07 17:09:48 +00003408 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00003409}
3410
Tvrtko Ursuline9f24d52015-10-05 13:26:36 +01003411int i915_vma_unbind(struct i915_vma *vma)
3412{
3413 return __i915_vma_unbind(vma, true);
3414}
3415
3416int __i915_vma_unbind_no_wait(struct i915_vma *vma)
3417{
3418 return __i915_vma_unbind(vma, false);
3419}
3420
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07003421int i915_gpu_idle(struct drm_device *dev)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003422{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003423 struct drm_i915_private *dev_priv = dev->dev_private;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003424 struct intel_engine_cs *engine;
Dave Gordonb4ac5af2016-03-24 11:20:38 +00003425 int ret;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003426
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003427 /* Flush everything onto the inactive list. */
Dave Gordonb4ac5af2016-03-24 11:20:38 +00003428 for_each_engine(engine, dev_priv) {
Thomas Danielecdb5fd2014-08-20 16:29:24 +01003429 if (!i915.enable_execlists) {
John Harrison73cfa862015-05-29 17:43:35 +01003430 struct drm_i915_gem_request *req;
3431
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003432 req = i915_gem_request_alloc(engine, NULL);
Dave Gordon26827082016-01-19 19:02:53 +00003433 if (IS_ERR(req))
3434 return PTR_ERR(req);
John Harrison73cfa862015-05-29 17:43:35 +01003435
John Harrisonba01cc92015-05-29 17:43:41 +01003436 ret = i915_switch_context(req);
John Harrison75289872015-05-29 17:43:49 +01003437 i915_add_request_no_flush(req);
Chris Wilsonaa9b7812016-04-13 17:35:15 +01003438 if (ret)
3439 return ret;
Thomas Danielecdb5fd2014-08-20 16:29:24 +01003440 }
Ben Widawskyb6c74882012-08-14 14:35:14 -07003441
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00003442 ret = intel_engine_idle(engine);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003443 if (ret)
3444 return ret;
3445 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003446
Chris Wilsonb4716182015-04-27 13:41:17 +01003447 WARN_ON(i915_verify_lists(dev));
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01003448 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003449}
3450
Chris Wilson4144f9b2014-09-11 08:43:48 +01003451static bool i915_gem_valid_gtt_space(struct i915_vma *vma,
Chris Wilson42d6ab42012-07-26 11:49:32 +01003452 unsigned long cache_level)
3453{
Chris Wilson4144f9b2014-09-11 08:43:48 +01003454 struct drm_mm_node *gtt_space = &vma->node;
Chris Wilson42d6ab42012-07-26 11:49:32 +01003455 struct drm_mm_node *other;
3456
Chris Wilson4144f9b2014-09-11 08:43:48 +01003457 /*
3458 * On some machines we have to be careful when putting differing types
3459 * of snoopable memory together to avoid the prefetcher crossing memory
3460 * domains and dying. During vm initialisation, we decide whether or not
3461 * these constraints apply and set the drm_mm.color_adjust
3462 * appropriately.
Chris Wilson42d6ab42012-07-26 11:49:32 +01003463 */
Chris Wilson4144f9b2014-09-11 08:43:48 +01003464 if (vma->vm->mm.color_adjust == NULL)
Chris Wilson42d6ab42012-07-26 11:49:32 +01003465 return true;
3466
Ben Widawskyc6cfb322013-07-05 14:41:06 -07003467 if (!drm_mm_node_allocated(gtt_space))
Chris Wilson42d6ab42012-07-26 11:49:32 +01003468 return true;
3469
3470 if (list_empty(&gtt_space->node_list))
3471 return true;
3472
3473 other = list_entry(gtt_space->node_list.prev, struct drm_mm_node, node_list);
3474 if (other->allocated && !other->hole_follows && other->color != cache_level)
3475 return false;
3476
3477 other = list_entry(gtt_space->node_list.next, struct drm_mm_node, node_list);
3478 if (other->allocated && !gtt_space->hole_follows && other->color != cache_level)
3479 return false;
3480
3481 return true;
3482}
3483
Jesse Barnesde151cf2008-11-12 10:03:55 -08003484/**
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003485 * Finds free space in the GTT aperture and binds the object or a view of it
3486 * there.
Eric Anholt673a3942008-07-30 12:06:12 -07003487 */
Daniel Vetter262de142014-02-14 14:01:20 +01003488static struct i915_vma *
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003489i915_gem_object_bind_to_vm(struct drm_i915_gem_object *obj,
3490 struct i915_address_space *vm,
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003491 const struct i915_ggtt_view *ggtt_view,
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003492 unsigned alignment,
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003493 uint64_t flags)
Eric Anholt673a3942008-07-30 12:06:12 -07003494{
Chris Wilson05394f32010-11-08 19:18:58 +00003495 struct drm_device *dev = obj->base.dev;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03003496 struct drm_i915_private *dev_priv = to_i915(dev);
3497 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Michel Thierry65bd3422015-07-29 17:23:58 +01003498 u32 fence_alignment, unfenced_alignment;
Michel Thierry101b5062015-10-01 13:33:57 +01003499 u32 search_flag, alloc_flag;
3500 u64 start, end;
Michel Thierry65bd3422015-07-29 17:23:58 +01003501 u64 size, fence_size;
Ben Widawsky2f633152013-07-17 12:19:03 -07003502 struct i915_vma *vma;
Chris Wilson07f73f62009-09-14 16:50:30 +01003503 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003504
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003505 if (i915_is_ggtt(vm)) {
3506 u32 view_size;
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003507
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003508 if (WARN_ON(!ggtt_view))
3509 return ERR_PTR(-EINVAL);
3510
3511 view_size = i915_ggtt_view_size(obj, ggtt_view);
3512
3513 fence_size = i915_gem_get_gtt_size(dev,
3514 view_size,
3515 obj->tiling_mode);
3516 fence_alignment = i915_gem_get_gtt_alignment(dev,
3517 view_size,
3518 obj->tiling_mode,
3519 true);
3520 unfenced_alignment = i915_gem_get_gtt_alignment(dev,
3521 view_size,
3522 obj->tiling_mode,
3523 false);
3524 size = flags & PIN_MAPPABLE ? fence_size : view_size;
3525 } else {
3526 fence_size = i915_gem_get_gtt_size(dev,
3527 obj->base.size,
3528 obj->tiling_mode);
3529 fence_alignment = i915_gem_get_gtt_alignment(dev,
3530 obj->base.size,
3531 obj->tiling_mode,
3532 true);
3533 unfenced_alignment =
3534 i915_gem_get_gtt_alignment(dev,
3535 obj->base.size,
3536 obj->tiling_mode,
3537 false);
3538 size = flags & PIN_MAPPABLE ? fence_size : obj->base.size;
3539 }
Chris Wilsona00b10c2010-09-24 21:15:47 +01003540
Michel Thierry101b5062015-10-01 13:33:57 +01003541 start = flags & PIN_OFFSET_BIAS ? flags & PIN_OFFSET_MASK : 0;
3542 end = vm->total;
3543 if (flags & PIN_MAPPABLE)
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03003544 end = min_t(u64, end, ggtt->mappable_end);
Michel Thierry101b5062015-10-01 13:33:57 +01003545 if (flags & PIN_ZONE_4G)
Michel Thierry48ea1e32016-01-11 11:39:27 +00003546 end = min_t(u64, end, (1ULL << 32) - PAGE_SIZE);
Michel Thierry101b5062015-10-01 13:33:57 +01003547
Eric Anholt673a3942008-07-30 12:06:12 -07003548 if (alignment == 0)
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003549 alignment = flags & PIN_MAPPABLE ? fence_alignment :
Daniel Vetter5e783302010-11-14 22:32:36 +01003550 unfenced_alignment;
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003551 if (flags & PIN_MAPPABLE && alignment & (fence_alignment - 1)) {
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003552 DRM_DEBUG("Invalid object (view type=%u) alignment requested %u\n",
3553 ggtt_view ? ggtt_view->type : 0,
3554 alignment);
Daniel Vetter262de142014-02-14 14:01:20 +01003555 return ERR_PTR(-EINVAL);
Eric Anholt673a3942008-07-30 12:06:12 -07003556 }
3557
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003558 /* If binding the object/GGTT view requires more space than the entire
3559 * aperture has, reject it early before evicting everything in a vain
3560 * attempt to find space.
Chris Wilson654fc602010-05-27 13:18:21 +01003561 */
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003562 if (size > end) {
Michel Thierry65bd3422015-07-29 17:23:58 +01003563 DRM_DEBUG("Attempting to bind an object (view type=%u) larger than the aperture: size=%llu > %s aperture=%llu\n",
Joonas Lahtinen91e67112015-05-06 14:33:58 +03003564 ggtt_view ? ggtt_view->type : 0,
3565 size,
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003566 flags & PIN_MAPPABLE ? "mappable" : "total",
Chris Wilsond23db882014-05-23 08:48:08 +02003567 end);
Daniel Vetter262de142014-02-14 14:01:20 +01003568 return ERR_PTR(-E2BIG);
Chris Wilson654fc602010-05-27 13:18:21 +01003569 }
3570
Chris Wilson37e680a2012-06-07 15:38:42 +01003571 ret = i915_gem_object_get_pages(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02003572 if (ret)
Daniel Vetter262de142014-02-14 14:01:20 +01003573 return ERR_PTR(ret);
Chris Wilson6c085a72012-08-20 11:40:46 +02003574
Chris Wilsonfbdda6f2012-11-20 10:45:16 +00003575 i915_gem_object_pin_pages(obj);
3576
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02003577 vma = ggtt_view ? i915_gem_obj_lookup_or_create_ggtt_vma(obj, ggtt_view) :
3578 i915_gem_obj_lookup_or_create_vma(obj, vm);
3579
Daniel Vetter262de142014-02-14 14:01:20 +01003580 if (IS_ERR(vma))
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003581 goto err_unpin;
Ben Widawsky2f633152013-07-17 12:19:03 -07003582
Chris Wilson506a8e82015-12-08 11:55:07 +00003583 if (flags & PIN_OFFSET_FIXED) {
3584 uint64_t offset = flags & PIN_OFFSET_MASK;
3585
3586 if (offset & (alignment - 1) || offset + size > end) {
3587 ret = -EINVAL;
3588 goto err_free_vma;
3589 }
3590 vma->node.start = offset;
3591 vma->node.size = size;
3592 vma->node.color = obj->cache_level;
3593 ret = drm_mm_reserve_node(&vm->mm, &vma->node);
3594 if (ret) {
3595 ret = i915_gem_evict_for_vma(vma);
3596 if (ret == 0)
3597 ret = drm_mm_reserve_node(&vm->mm, &vma->node);
3598 }
3599 if (ret)
3600 goto err_free_vma;
Michel Thierry101b5062015-10-01 13:33:57 +01003601 } else {
Chris Wilson506a8e82015-12-08 11:55:07 +00003602 if (flags & PIN_HIGH) {
3603 search_flag = DRM_MM_SEARCH_BELOW;
3604 alloc_flag = DRM_MM_CREATE_TOP;
3605 } else {
3606 search_flag = DRM_MM_SEARCH_DEFAULT;
3607 alloc_flag = DRM_MM_CREATE_DEFAULT;
3608 }
Michel Thierry101b5062015-10-01 13:33:57 +01003609
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003610search_free:
Chris Wilson506a8e82015-12-08 11:55:07 +00003611 ret = drm_mm_insert_node_in_range_generic(&vm->mm, &vma->node,
3612 size, alignment,
3613 obj->cache_level,
3614 start, end,
3615 search_flag,
3616 alloc_flag);
3617 if (ret) {
3618 ret = i915_gem_evict_something(dev, vm, size, alignment,
3619 obj->cache_level,
3620 start, end,
3621 flags);
3622 if (ret == 0)
3623 goto search_free;
Chris Wilson97311292009-09-21 00:22:34 +01003624
Chris Wilson506a8e82015-12-08 11:55:07 +00003625 goto err_free_vma;
3626 }
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003627 }
Chris Wilson4144f9b2014-09-11 08:43:48 +01003628 if (WARN_ON(!i915_gem_valid_gtt_space(vma, obj->cache_level))) {
Ben Widawsky2f633152013-07-17 12:19:03 -07003629 ret = -EINVAL;
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003630 goto err_remove_node;
Eric Anholt673a3942008-07-30 12:06:12 -07003631 }
3632
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003633 trace_i915_vma_bind(vma, flags);
Daniel Vetter08755462015-04-20 09:04:05 -07003634 ret = i915_vma_bind(vma, obj->cache_level, flags);
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003635 if (ret)
Imre Deake2273302015-07-09 12:59:05 +03003636 goto err_remove_node;
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003637
Ben Widawsky35c20a62013-05-31 11:28:48 -07003638 list_move_tail(&obj->global_list, &dev_priv->mm.bound_list);
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00003639 list_add_tail(&vma->vm_link, &vm->inactive_list);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01003640
Daniel Vetter262de142014-02-14 14:01:20 +01003641 return vma;
Ben Widawsky2f633152013-07-17 12:19:03 -07003642
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003643err_remove_node:
Dan Carpenter6286ef92013-07-19 08:46:27 +03003644 drm_mm_remove_node(&vma->node);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003645err_free_vma:
Ben Widawsky2f633152013-07-17 12:19:03 -07003646 i915_gem_vma_destroy(vma);
Daniel Vetter262de142014-02-14 14:01:20 +01003647 vma = ERR_PTR(ret);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003648err_unpin:
Ben Widawsky2f633152013-07-17 12:19:03 -07003649 i915_gem_object_unpin_pages(obj);
Daniel Vetter262de142014-02-14 14:01:20 +01003650 return vma;
Eric Anholt673a3942008-07-30 12:06:12 -07003651}
3652
Chris Wilson000433b2013-08-08 14:41:09 +01003653bool
Chris Wilson2c225692013-08-09 12:26:45 +01003654i915_gem_clflush_object(struct drm_i915_gem_object *obj,
3655 bool force)
Eric Anholt673a3942008-07-30 12:06:12 -07003656{
Eric Anholt673a3942008-07-30 12:06:12 -07003657 /* If we don't have a page list set up, then we're not pinned
3658 * to GPU, and we can ignore the cache flush because it'll happen
3659 * again at bind time.
3660 */
Chris Wilson05394f32010-11-08 19:18:58 +00003661 if (obj->pages == NULL)
Chris Wilson000433b2013-08-08 14:41:09 +01003662 return false;
Eric Anholt673a3942008-07-30 12:06:12 -07003663
Imre Deak769ce462013-02-13 21:56:05 +02003664 /*
3665 * Stolen memory is always coherent with the GPU as it is explicitly
3666 * marked as wc by the system, or the system is cache-coherent.
3667 */
Chris Wilson6a2c4232014-11-04 04:51:40 -08003668 if (obj->stolen || obj->phys_handle)
Chris Wilson000433b2013-08-08 14:41:09 +01003669 return false;
Imre Deak769ce462013-02-13 21:56:05 +02003670
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003671 /* If the GPU is snooping the contents of the CPU cache,
3672 * we do not need to manually clear the CPU cache lines. However,
3673 * the caches are only snooped when the render cache is
3674 * flushed/invalidated. As we always have to emit invalidations
3675 * and flushes when moving into and out of the RENDER domain, correct
3676 * snooping behaviour occurs naturally as the result of our domain
3677 * tracking.
3678 */
Chris Wilson0f719792015-01-13 13:32:52 +00003679 if (!force && cpu_cache_is_coherent(obj->base.dev, obj->cache_level)) {
3680 obj->cache_dirty = true;
Chris Wilson000433b2013-08-08 14:41:09 +01003681 return false;
Chris Wilson0f719792015-01-13 13:32:52 +00003682 }
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003683
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003684 trace_i915_gem_object_clflush(obj);
Chris Wilson9da3da62012-06-01 15:20:22 +01003685 drm_clflush_sg(obj->pages);
Chris Wilson0f719792015-01-13 13:32:52 +00003686 obj->cache_dirty = false;
Chris Wilson000433b2013-08-08 14:41:09 +01003687
3688 return true;
Eric Anholte47c68e2008-11-14 13:35:19 -08003689}
3690
3691/** Flushes the GTT write domain for the object if it's dirty. */
3692static void
Chris Wilson05394f32010-11-08 19:18:58 +00003693i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003694{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003695 uint32_t old_write_domain;
3696
Chris Wilson05394f32010-11-08 19:18:58 +00003697 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08003698 return;
3699
Chris Wilson63256ec2011-01-04 18:42:07 +00003700 /* No actual flushing is required for the GTT write domain. Writes
Eric Anholte47c68e2008-11-14 13:35:19 -08003701 * to it immediately go to main memory as far as we know, so there's
3702 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00003703 *
3704 * However, we do have to enforce the order so that all writes through
3705 * the GTT land before any writes to the device, such as updates to
3706 * the GATT itself.
Eric Anholte47c68e2008-11-14 13:35:19 -08003707 */
Chris Wilson63256ec2011-01-04 18:42:07 +00003708 wmb();
3709
Chris Wilson05394f32010-11-08 19:18:58 +00003710 old_write_domain = obj->base.write_domain;
3711 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003712
Rodrigo Vivide152b62015-07-07 16:28:51 -07003713 intel_fb_obj_flush(obj, false, ORIGIN_GTT);
Daniel Vetterf99d7062014-06-19 16:01:59 +02003714
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003715 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003716 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003717 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003718}
3719
3720/** Flushes the CPU write domain for the object if it's dirty. */
3721static void
Daniel Vettere62b59e2015-01-21 14:53:48 +01003722i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003723{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003724 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08003725
Chris Wilson05394f32010-11-08 19:18:58 +00003726 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08003727 return;
3728
Daniel Vettere62b59e2015-01-21 14:53:48 +01003729 if (i915_gem_clflush_object(obj, obj->pin_display))
Chris Wilson000433b2013-08-08 14:41:09 +01003730 i915_gem_chipset_flush(obj->base.dev);
3731
Chris Wilson05394f32010-11-08 19:18:58 +00003732 old_write_domain = obj->base.write_domain;
3733 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003734
Rodrigo Vivide152b62015-07-07 16:28:51 -07003735 intel_fb_obj_flush(obj, false, ORIGIN_CPU);
Daniel Vetterf99d7062014-06-19 16:01:59 +02003736
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003737 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003738 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003739 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003740}
3741
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003742/**
3743 * Moves a single object to the GTT read, and possibly write domain.
3744 *
3745 * This function returns when the move is complete, including waiting on
3746 * flushes to occur.
3747 */
Jesse Barnes79e53942008-11-07 14:24:08 -08003748int
Chris Wilson20217462010-11-23 15:26:33 +00003749i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003750{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03003751 struct drm_device *dev = obj->base.dev;
3752 struct drm_i915_private *dev_priv = to_i915(dev);
3753 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003754 uint32_t old_write_domain, old_read_domains;
Chris Wilson43566de2015-01-02 16:29:29 +05303755 struct i915_vma *vma;
Eric Anholte47c68e2008-11-14 13:35:19 -08003756 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003757
Chris Wilson8d7e3de2011-02-07 15:23:02 +00003758 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
3759 return 0;
3760
Chris Wilson0201f1e2012-07-20 12:41:01 +01003761 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00003762 if (ret)
3763 return ret;
3764
Chris Wilson43566de2015-01-02 16:29:29 +05303765 /* Flush and acquire obj->pages so that we are coherent through
3766 * direct access in memory with previous cached writes through
3767 * shmemfs and that our cache domain tracking remains valid.
3768 * For example, if the obj->filp was moved to swap without us
3769 * being notified and releasing the pages, we would mistakenly
3770 * continue to assume that the obj remained out of the CPU cached
3771 * domain.
3772 */
3773 ret = i915_gem_object_get_pages(obj);
3774 if (ret)
3775 return ret;
3776
Daniel Vettere62b59e2015-01-21 14:53:48 +01003777 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003778
Chris Wilsond0a57782012-10-09 19:24:37 +01003779 /* Serialise direct access to this object with the barriers for
3780 * coherent writes from the GPU, by effectively invalidating the
3781 * GTT domain upon first access.
3782 */
3783 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
3784 mb();
3785
Chris Wilson05394f32010-11-08 19:18:58 +00003786 old_write_domain = obj->base.write_domain;
3787 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003788
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003789 /* It should now be out of any other write domains, and we can update
3790 * the domain values for our changes.
3791 */
Chris Wilson05394f32010-11-08 19:18:58 +00003792 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
3793 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08003794 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003795 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
3796 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
3797 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08003798 }
3799
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003800 trace_i915_gem_object_change_domain(obj,
3801 old_read_domains,
3802 old_write_domain);
3803
Chris Wilson8325a092012-04-24 15:52:35 +01003804 /* And bump the LRU for this access */
Chris Wilson43566de2015-01-02 16:29:29 +05303805 vma = i915_gem_obj_to_ggtt(obj);
3806 if (vma && drm_mm_node_allocated(&vma->node) && !obj->active)
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00003807 list_move_tail(&vma->vm_link,
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03003808 &ggtt->base.inactive_list);
Chris Wilson8325a092012-04-24 15:52:35 +01003809
Eric Anholte47c68e2008-11-14 13:35:19 -08003810 return 0;
3811}
3812
Chris Wilsonef55f922015-10-09 14:11:27 +01003813/**
3814 * Changes the cache-level of an object across all VMA.
3815 *
3816 * After this function returns, the object will be in the new cache-level
3817 * across all GTT and the contents of the backing storage will be coherent,
3818 * with respect to the new cache-level. In order to keep the backing storage
3819 * coherent for all users, we only allow a single cache level to be set
3820 * globally on the object and prevent it from being changed whilst the
3821 * hardware is reading from the object. That is if the object is currently
3822 * on the scanout it will be set to uncached (or equivalent display
3823 * cache coherency) and all non-MOCS GPU access will also be uncached so
3824 * that all direct access to the scanout remains coherent.
3825 */
Chris Wilsone4ffd172011-04-04 09:44:39 +01003826int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
3827 enum i915_cache_level cache_level)
3828{
Daniel Vetter7bddb012012-02-09 17:15:47 +01003829 struct drm_device *dev = obj->base.dev;
Chris Wilsondf6f7832014-03-21 07:40:56 +00003830 struct i915_vma *vma, *next;
Chris Wilsonef55f922015-10-09 14:11:27 +01003831 bool bound = false;
Ville Syrjäläed75a552015-08-11 19:47:10 +03003832 int ret = 0;
Chris Wilsone4ffd172011-04-04 09:44:39 +01003833
3834 if (obj->cache_level == cache_level)
Ville Syrjäläed75a552015-08-11 19:47:10 +03003835 goto out;
Chris Wilsone4ffd172011-04-04 09:44:39 +01003836
Chris Wilsonef55f922015-10-09 14:11:27 +01003837 /* Inspect the list of currently bound VMA and unbind any that would
3838 * be invalid given the new cache-level. This is principally to
3839 * catch the issue of the CS prefetch crossing page boundaries and
3840 * reading an invalid PTE on older architectures.
3841 */
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00003842 list_for_each_entry_safe(vma, next, &obj->vma_list, obj_link) {
Chris Wilsonef55f922015-10-09 14:11:27 +01003843 if (!drm_mm_node_allocated(&vma->node))
3844 continue;
3845
3846 if (vma->pin_count) {
3847 DRM_DEBUG("can not change the cache level of pinned objects\n");
3848 return -EBUSY;
3849 }
3850
Chris Wilson4144f9b2014-09-11 08:43:48 +01003851 if (!i915_gem_valid_gtt_space(vma, cache_level)) {
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003852 ret = i915_vma_unbind(vma);
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003853 if (ret)
3854 return ret;
Chris Wilsonef55f922015-10-09 14:11:27 +01003855 } else
3856 bound = true;
Chris Wilson42d6ab42012-07-26 11:49:32 +01003857 }
3858
Chris Wilsonef55f922015-10-09 14:11:27 +01003859 /* We can reuse the existing drm_mm nodes but need to change the
3860 * cache-level on the PTE. We could simply unbind them all and
3861 * rebind with the correct cache-level on next use. However since
3862 * we already have a valid slot, dma mapping, pages etc, we may as
3863 * rewrite the PTE in the belief that doing so tramples upon less
3864 * state and so involves less work.
3865 */
3866 if (bound) {
3867 /* Before we change the PTE, the GPU must not be accessing it.
3868 * If we wait upon the object, we know that all the bound
3869 * VMA are no longer active.
3870 */
Chris Wilson2e2f3512015-04-27 13:41:14 +01003871 ret = i915_gem_object_wait_rendering(obj, false);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003872 if (ret)
3873 return ret;
3874
Chris Wilsonef55f922015-10-09 14:11:27 +01003875 if (!HAS_LLC(dev) && cache_level != I915_CACHE_NONE) {
3876 /* Access to snoopable pages through the GTT is
3877 * incoherent and on some machines causes a hard
3878 * lockup. Relinquish the CPU mmaping to force
3879 * userspace to refault in the pages and we can
3880 * then double check if the GTT mapping is still
3881 * valid for that pointer access.
3882 */
3883 i915_gem_release_mmap(obj);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003884
Chris Wilsonef55f922015-10-09 14:11:27 +01003885 /* As we no longer need a fence for GTT access,
3886 * we can relinquish it now (and so prevent having
3887 * to steal a fence from someone else on the next
3888 * fence request). Note GPU activity would have
3889 * dropped the fence as all snoopable access is
3890 * supposed to be linear.
3891 */
Chris Wilsone4ffd172011-04-04 09:44:39 +01003892 ret = i915_gem_object_put_fence(obj);
3893 if (ret)
3894 return ret;
Chris Wilsonef55f922015-10-09 14:11:27 +01003895 } else {
3896 /* We either have incoherent backing store and
3897 * so no GTT access or the architecture is fully
3898 * coherent. In such cases, existing GTT mmaps
3899 * ignore the cache bit in the PTE and we can
3900 * rewrite it without confusing the GPU or having
3901 * to force userspace to fault back in its mmaps.
3902 */
Chris Wilsone4ffd172011-04-04 09:44:39 +01003903 }
3904
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00003905 list_for_each_entry(vma, &obj->vma_list, obj_link) {
Chris Wilsonef55f922015-10-09 14:11:27 +01003906 if (!drm_mm_node_allocated(&vma->node))
3907 continue;
3908
3909 ret = i915_vma_bind(vma, cache_level, PIN_UPDATE);
3910 if (ret)
3911 return ret;
3912 }
Chris Wilsone4ffd172011-04-04 09:44:39 +01003913 }
3914
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00003915 list_for_each_entry(vma, &obj->vma_list, obj_link)
Chris Wilson2c225692013-08-09 12:26:45 +01003916 vma->node.color = cache_level;
3917 obj->cache_level = cache_level;
3918
Ville Syrjäläed75a552015-08-11 19:47:10 +03003919out:
Chris Wilsonef55f922015-10-09 14:11:27 +01003920 /* Flush the dirty CPU caches to the backing storage so that the
3921 * object is now coherent at its new cache level (with respect
3922 * to the access domain).
3923 */
Chris Wilson0f719792015-01-13 13:32:52 +00003924 if (obj->cache_dirty &&
3925 obj->base.write_domain != I915_GEM_DOMAIN_CPU &&
3926 cpu_write_needs_clflush(obj)) {
3927 if (i915_gem_clflush_object(obj, true))
3928 i915_gem_chipset_flush(obj->base.dev);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003929 }
3930
Chris Wilsone4ffd172011-04-04 09:44:39 +01003931 return 0;
3932}
3933
Ben Widawsky199adf42012-09-21 17:01:20 -07003934int i915_gem_get_caching_ioctl(struct drm_device *dev, void *data,
3935 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003936{
Ben Widawsky199adf42012-09-21 17:01:20 -07003937 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003938 struct drm_i915_gem_object *obj;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003939
3940 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilson432be692015-05-07 12:14:55 +01003941 if (&obj->base == NULL)
3942 return -ENOENT;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003943
Chris Wilson651d7942013-08-08 14:41:10 +01003944 switch (obj->cache_level) {
3945 case I915_CACHE_LLC:
3946 case I915_CACHE_L3_LLC:
3947 args->caching = I915_CACHING_CACHED;
3948 break;
3949
Chris Wilson4257d3b2013-08-08 14:41:11 +01003950 case I915_CACHE_WT:
3951 args->caching = I915_CACHING_DISPLAY;
3952 break;
3953
Chris Wilson651d7942013-08-08 14:41:10 +01003954 default:
3955 args->caching = I915_CACHING_NONE;
3956 break;
3957 }
Chris Wilsone6994ae2012-07-10 10:27:08 +01003958
Chris Wilson432be692015-05-07 12:14:55 +01003959 drm_gem_object_unreference_unlocked(&obj->base);
3960 return 0;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003961}
3962
Ben Widawsky199adf42012-09-21 17:01:20 -07003963int i915_gem_set_caching_ioctl(struct drm_device *dev, void *data,
3964 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003965{
Imre Deakfd0fe6a2015-11-04 21:25:32 +02003966 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky199adf42012-09-21 17:01:20 -07003967 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003968 struct drm_i915_gem_object *obj;
3969 enum i915_cache_level level;
3970 int ret;
3971
Ben Widawsky199adf42012-09-21 17:01:20 -07003972 switch (args->caching) {
3973 case I915_CACHING_NONE:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003974 level = I915_CACHE_NONE;
3975 break;
Ben Widawsky199adf42012-09-21 17:01:20 -07003976 case I915_CACHING_CACHED:
Imre Deake5756c12015-08-14 18:43:30 +03003977 /*
3978 * Due to a HW issue on BXT A stepping, GPU stores via a
3979 * snooped mapping may leave stale data in a corresponding CPU
3980 * cacheline, whereas normally such cachelines would get
3981 * invalidated.
3982 */
Tvrtko Ursulinca377802016-03-02 12:10:31 +00003983 if (!HAS_LLC(dev) && !HAS_SNOOP(dev))
Imre Deake5756c12015-08-14 18:43:30 +03003984 return -ENODEV;
3985
Chris Wilsone6994ae2012-07-10 10:27:08 +01003986 level = I915_CACHE_LLC;
3987 break;
Chris Wilson4257d3b2013-08-08 14:41:11 +01003988 case I915_CACHING_DISPLAY:
3989 level = HAS_WT(dev) ? I915_CACHE_WT : I915_CACHE_NONE;
3990 break;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003991 default:
3992 return -EINVAL;
3993 }
3994
Imre Deakfd0fe6a2015-11-04 21:25:32 +02003995 intel_runtime_pm_get(dev_priv);
3996
Ben Widawsky3bc29132012-09-26 16:15:20 -07003997 ret = i915_mutex_lock_interruptible(dev);
3998 if (ret)
Imre Deakfd0fe6a2015-11-04 21:25:32 +02003999 goto rpm_put;
Ben Widawsky3bc29132012-09-26 16:15:20 -07004000
Chris Wilsone6994ae2012-07-10 10:27:08 +01004001 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
4002 if (&obj->base == NULL) {
4003 ret = -ENOENT;
4004 goto unlock;
4005 }
4006
4007 ret = i915_gem_object_set_cache_level(obj, level);
4008
4009 drm_gem_object_unreference(&obj->base);
4010unlock:
4011 mutex_unlock(&dev->struct_mutex);
Imre Deakfd0fe6a2015-11-04 21:25:32 +02004012rpm_put:
4013 intel_runtime_pm_put(dev_priv);
4014
Chris Wilsone6994ae2012-07-10 10:27:08 +01004015 return ret;
4016}
4017
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08004018/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01004019 * Prepare buffer for display plane (scanout, cursors, etc).
4020 * Can be called from an uninterruptible phase (modesetting) and allows
4021 * any flushes to be pipelined (for pageflips).
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08004022 */
4023int
Chris Wilson2da3b9b2011-04-14 09:41:17 +01004024i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
4025 u32 alignment,
Tvrtko Ursuline6617332015-03-23 11:10:33 +00004026 const struct i915_ggtt_view *view)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08004027{
Chris Wilson2da3b9b2011-04-14 09:41:17 +01004028 u32 old_read_domains, old_write_domain;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08004029 int ret;
4030
Chris Wilsoncc98b412013-08-09 12:25:09 +01004031 /* Mark the pin_display early so that we account for the
4032 * display coherency whilst setting up the cache domains.
4033 */
Tvrtko Ursulin8a0c39b2015-04-13 11:50:09 +01004034 obj->pin_display++;
Chris Wilsoncc98b412013-08-09 12:25:09 +01004035
Eric Anholta7ef0642011-03-29 16:59:54 -07004036 /* The display engine is not coherent with the LLC cache on gen6. As
4037 * a result, we make sure that the pinning that is about to occur is
4038 * done with uncached PTEs. This is lowest common denominator for all
4039 * chipsets.
4040 *
4041 * However for gen6+, we could do better by using the GFDT bit instead
4042 * of uncaching, which would allow us to flush all the LLC-cached data
4043 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
4044 */
Chris Wilson651d7942013-08-08 14:41:10 +01004045 ret = i915_gem_object_set_cache_level(obj,
4046 HAS_WT(obj->base.dev) ? I915_CACHE_WT : I915_CACHE_NONE);
Eric Anholta7ef0642011-03-29 16:59:54 -07004047 if (ret)
Chris Wilsoncc98b412013-08-09 12:25:09 +01004048 goto err_unpin_display;
Eric Anholta7ef0642011-03-29 16:59:54 -07004049
Chris Wilson2da3b9b2011-04-14 09:41:17 +01004050 /* As the user may map the buffer once pinned in the display plane
4051 * (e.g. libkms for the bootup splash), we have to ensure that we
4052 * always use map_and_fenceable for all scanout buffers.
4053 */
Tvrtko Ursulin50470bb2015-03-23 11:10:36 +00004054 ret = i915_gem_object_ggtt_pin(obj, view, alignment,
4055 view->type == I915_GGTT_VIEW_NORMAL ?
4056 PIN_MAPPABLE : 0);
Chris Wilson2da3b9b2011-04-14 09:41:17 +01004057 if (ret)
Chris Wilsoncc98b412013-08-09 12:25:09 +01004058 goto err_unpin_display;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01004059
Daniel Vettere62b59e2015-01-21 14:53:48 +01004060 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilsonb118c1e2010-05-27 13:18:14 +01004061
Chris Wilson2da3b9b2011-04-14 09:41:17 +01004062 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00004063 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01004064
4065 /* It should now be out of any other write domains, and we can update
4066 * the domain values for our changes.
4067 */
Chris Wilsone5f1d962012-07-20 12:41:00 +01004068 obj->base.write_domain = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00004069 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08004070
4071 trace_i915_gem_object_change_domain(obj,
4072 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01004073 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08004074
4075 return 0;
Chris Wilsoncc98b412013-08-09 12:25:09 +01004076
4077err_unpin_display:
Tvrtko Ursulin8a0c39b2015-04-13 11:50:09 +01004078 obj->pin_display--;
Chris Wilsoncc98b412013-08-09 12:25:09 +01004079 return ret;
4080}
4081
4082void
Tvrtko Ursuline6617332015-03-23 11:10:33 +00004083i915_gem_object_unpin_from_display_plane(struct drm_i915_gem_object *obj,
4084 const struct i915_ggtt_view *view)
Chris Wilsoncc98b412013-08-09 12:25:09 +01004085{
Tvrtko Ursulin8a0c39b2015-04-13 11:50:09 +01004086 if (WARN_ON(obj->pin_display == 0))
4087 return;
4088
Tvrtko Ursuline6617332015-03-23 11:10:33 +00004089 i915_gem_object_ggtt_unpin_view(obj, view);
4090
Tvrtko Ursulin8a0c39b2015-04-13 11:50:09 +01004091 obj->pin_display--;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08004092}
4093
Eric Anholte47c68e2008-11-14 13:35:19 -08004094/**
4095 * Moves a single object to the CPU read, and possibly write domain.
4096 *
4097 * This function returns when the move is complete, including waiting on
4098 * flushes to occur.
4099 */
Chris Wilsondabdfe02012-03-26 10:10:27 +02004100int
Chris Wilson919926a2010-11-12 13:42:53 +00004101i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08004102{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004103 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08004104 int ret;
4105
Chris Wilson8d7e3de2011-02-07 15:23:02 +00004106 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
4107 return 0;
4108
Chris Wilson0201f1e2012-07-20 12:41:01 +01004109 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00004110 if (ret)
4111 return ret;
4112
Eric Anholte47c68e2008-11-14 13:35:19 -08004113 i915_gem_object_flush_gtt_write_domain(obj);
4114
Chris Wilson05394f32010-11-08 19:18:58 +00004115 old_write_domain = obj->base.write_domain;
4116 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004117
Eric Anholte47c68e2008-11-14 13:35:19 -08004118 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00004119 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Chris Wilson2c225692013-08-09 12:26:45 +01004120 i915_gem_clflush_object(obj, false);
Eric Anholte47c68e2008-11-14 13:35:19 -08004121
Chris Wilson05394f32010-11-08 19:18:58 +00004122 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08004123 }
4124
4125 /* It should now be out of any other write domains, and we can update
4126 * the domain values for our changes.
4127 */
Chris Wilson05394f32010-11-08 19:18:58 +00004128 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08004129
4130 /* If we're writing through the CPU, then the GPU read domains will
4131 * need to be invalidated at next use.
4132 */
4133 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00004134 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4135 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08004136 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08004137
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004138 trace_i915_gem_object_change_domain(obj,
4139 old_read_domains,
4140 old_write_domain);
4141
Eric Anholt2ef7eea2008-11-10 10:53:25 -08004142 return 0;
4143}
4144
Eric Anholt673a3942008-07-30 12:06:12 -07004145/* Throttle our rendering by waiting until the ring has completed our requests
4146 * emitted over 20 msec ago.
4147 *
Eric Anholtb9624422009-06-03 07:27:35 +00004148 * Note that if we were to use the current jiffies each time around the loop,
4149 * we wouldn't escape the function with any frames outstanding if the time to
4150 * render a frame was over 20ms.
4151 *
Eric Anholt673a3942008-07-30 12:06:12 -07004152 * This should get us reasonable parallelism between CPU and GPU but also
4153 * relatively low latency when blocking on a particular request to finish.
4154 */
4155static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004156i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004157{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004158 struct drm_i915_private *dev_priv = dev->dev_private;
4159 struct drm_i915_file_private *file_priv = file->driver_priv;
Chris Wilsond0bc54f2015-05-21 21:01:48 +01004160 unsigned long recent_enough = jiffies - DRM_I915_THROTTLE_JIFFIES;
John Harrison54fb2412014-11-24 18:49:27 +00004161 struct drm_i915_gem_request *request, *target = NULL;
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004162 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004163
Daniel Vetter308887a2012-11-14 17:14:06 +01004164 ret = i915_gem_wait_for_error(&dev_priv->gpu_error);
4165 if (ret)
4166 return ret;
4167
Chris Wilsonf4457ae2016-04-13 17:35:08 +01004168 /* ABI: return -EIO if already wedged */
4169 if (i915_terminally_wedged(&dev_priv->gpu_error))
4170 return -EIO;
Chris Wilsone110e8d2011-01-26 15:39:14 +00004171
Chris Wilson1c255952010-09-26 11:03:27 +01004172 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004173 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00004174 if (time_after_eq(request->emitted_jiffies, recent_enough))
4175 break;
4176
John Harrisonfcfa423c2015-05-29 17:44:12 +01004177 /*
4178 * Note that the request might not have been submitted yet.
4179 * In which case emitted_jiffies will be zero.
4180 */
4181 if (!request->emitted_jiffies)
4182 continue;
4183
John Harrison54fb2412014-11-24 18:49:27 +00004184 target = request;
Eric Anholtb9624422009-06-03 07:27:35 +00004185 }
John Harrisonff865882014-11-24 18:49:28 +00004186 if (target)
4187 i915_gem_request_reference(target);
Chris Wilson1c255952010-09-26 11:03:27 +01004188 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004189
John Harrison54fb2412014-11-24 18:49:27 +00004190 if (target == NULL)
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004191 return 0;
4192
Chris Wilson299259a2016-04-13 17:35:06 +01004193 ret = __i915_wait_request(target, true, NULL, NULL);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004194 if (ret == 0)
4195 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00004196
Chris Wilson41037f92015-03-27 11:01:36 +00004197 i915_gem_request_unreference__unlocked(target);
John Harrisonff865882014-11-24 18:49:28 +00004198
Eric Anholt673a3942008-07-30 12:06:12 -07004199 return ret;
4200}
4201
Chris Wilsond23db882014-05-23 08:48:08 +02004202static bool
4203i915_vma_misplaced(struct i915_vma *vma, uint32_t alignment, uint64_t flags)
4204{
4205 struct drm_i915_gem_object *obj = vma->obj;
4206
4207 if (alignment &&
4208 vma->node.start & (alignment - 1))
4209 return true;
4210
4211 if (flags & PIN_MAPPABLE && !obj->map_and_fenceable)
4212 return true;
4213
4214 if (flags & PIN_OFFSET_BIAS &&
4215 vma->node.start < (flags & PIN_OFFSET_MASK))
4216 return true;
4217
Chris Wilson506a8e82015-12-08 11:55:07 +00004218 if (flags & PIN_OFFSET_FIXED &&
4219 vma->node.start != (flags & PIN_OFFSET_MASK))
4220 return true;
4221
Chris Wilsond23db882014-05-23 08:48:08 +02004222 return false;
4223}
4224
Chris Wilsond0710ab2015-11-20 14:16:39 +00004225void __i915_vma_set_map_and_fenceable(struct i915_vma *vma)
4226{
4227 struct drm_i915_gem_object *obj = vma->obj;
4228 bool mappable, fenceable;
4229 u32 fence_size, fence_alignment;
4230
4231 fence_size = i915_gem_get_gtt_size(obj->base.dev,
4232 obj->base.size,
4233 obj->tiling_mode);
4234 fence_alignment = i915_gem_get_gtt_alignment(obj->base.dev,
4235 obj->base.size,
4236 obj->tiling_mode,
4237 true);
4238
4239 fenceable = (vma->node.size == fence_size &&
4240 (vma->node.start & (fence_alignment - 1)) == 0);
4241
4242 mappable = (vma->node.start + fence_size <=
Joonas Lahtinen62106b42016-03-18 10:42:57 +02004243 to_i915(obj->base.dev)->ggtt.mappable_end);
Chris Wilsond0710ab2015-11-20 14:16:39 +00004244
4245 obj->map_and_fenceable = mappable && fenceable;
4246}
4247
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02004248static int
4249i915_gem_object_do_pin(struct drm_i915_gem_object *obj,
4250 struct i915_address_space *vm,
4251 const struct i915_ggtt_view *ggtt_view,
4252 uint32_t alignment,
4253 uint64_t flags)
Eric Anholt673a3942008-07-30 12:06:12 -07004254{
Ben Widawsky6e7186a2014-05-06 22:21:36 -07004255 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004256 struct i915_vma *vma;
Chris Wilsonef79e172014-10-31 13:53:52 +00004257 unsigned bound;
Eric Anholt673a3942008-07-30 12:06:12 -07004258 int ret;
4259
Ben Widawsky6e7186a2014-05-06 22:21:36 -07004260 if (WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base))
4261 return -ENODEV;
4262
Daniel Vetterbf3d1492014-02-14 14:01:12 +01004263 if (WARN_ON(flags & (PIN_GLOBAL | PIN_MAPPABLE) && !i915_is_ggtt(vm)))
Daniel Vetter1ec9e262014-02-14 14:01:11 +01004264 return -EINVAL;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004265
Chris Wilsonc826c442014-10-31 13:53:53 +00004266 if (WARN_ON((flags & (PIN_MAPPABLE | PIN_GLOBAL)) == PIN_MAPPABLE))
4267 return -EINVAL;
4268
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02004269 if (WARN_ON(i915_is_ggtt(vm) != !!ggtt_view))
4270 return -EINVAL;
4271
4272 vma = ggtt_view ? i915_gem_obj_to_ggtt_view(obj, ggtt_view) :
4273 i915_gem_obj_to_vma(obj, vm);
4274
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004275 if (vma) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004276 if (WARN_ON(vma->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT))
4277 return -EBUSY;
4278
Chris Wilsond23db882014-05-23 08:48:08 +02004279 if (i915_vma_misplaced(vma, alignment, flags)) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004280 WARN(vma->pin_count,
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02004281 "bo is already pinned in %s with incorrect alignment:"
Michel Thierry088e0df2015-08-07 17:40:17 +01004282 " offset=%08x %08x, req.alignment=%x, req.map_and_fenceable=%d,"
Daniel Vetter75e9e912010-11-04 17:11:09 +01004283 " obj->map_and_fenceable=%d\n",
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02004284 ggtt_view ? "ggtt" : "ppgtt",
Michel Thierry088e0df2015-08-07 17:40:17 +01004285 upper_32_bits(vma->node.start),
4286 lower_32_bits(vma->node.start),
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00004287 alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02004288 !!(flags & PIN_MAPPABLE),
Chris Wilson05394f32010-11-08 19:18:58 +00004289 obj->map_and_fenceable);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004290 ret = i915_vma_unbind(vma);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004291 if (ret)
4292 return ret;
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004293
4294 vma = NULL;
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004295 }
4296 }
4297
Chris Wilsonef79e172014-10-31 13:53:52 +00004298 bound = vma ? vma->bound : 0;
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004299 if (vma == NULL || !drm_mm_node_allocated(&vma->node)) {
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02004300 vma = i915_gem_object_bind_to_vm(obj, vm, ggtt_view, alignment,
4301 flags);
Daniel Vetter262de142014-02-14 14:01:20 +01004302 if (IS_ERR(vma))
4303 return PTR_ERR(vma);
Daniel Vetter08755462015-04-20 09:04:05 -07004304 } else {
4305 ret = i915_vma_bind(vma, obj->cache_level, flags);
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00004306 if (ret)
4307 return ret;
4308 }
Daniel Vetter74898d72012-02-15 23:50:22 +01004309
Joonas Lahtinen91e67112015-05-06 14:33:58 +03004310 if (ggtt_view && ggtt_view->type == I915_GGTT_VIEW_NORMAL &&
4311 (bound ^ vma->bound) & GLOBAL_BIND) {
Chris Wilsond0710ab2015-11-20 14:16:39 +00004312 __i915_vma_set_map_and_fenceable(vma);
Joonas Lahtinen91e67112015-05-06 14:33:58 +03004313 WARN_ON(flags & PIN_MAPPABLE && !obj->map_and_fenceable);
4314 }
Chris Wilsonef79e172014-10-31 13:53:52 +00004315
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004316 vma->pin_count++;
Eric Anholt673a3942008-07-30 12:06:12 -07004317 return 0;
4318}
4319
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02004320int
4321i915_gem_object_pin(struct drm_i915_gem_object *obj,
4322 struct i915_address_space *vm,
4323 uint32_t alignment,
4324 uint64_t flags)
4325{
4326 return i915_gem_object_do_pin(obj, vm,
4327 i915_is_ggtt(vm) ? &i915_ggtt_view_normal : NULL,
4328 alignment, flags);
4329}
4330
4331int
4332i915_gem_object_ggtt_pin(struct drm_i915_gem_object *obj,
4333 const struct i915_ggtt_view *view,
4334 uint32_t alignment,
4335 uint64_t flags)
4336{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03004337 struct drm_device *dev = obj->base.dev;
4338 struct drm_i915_private *dev_priv = to_i915(dev);
4339 struct i915_ggtt *ggtt = &dev_priv->ggtt;
4340
Matthew Auldade7daa2016-03-24 15:54:20 +00004341 BUG_ON(!view);
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02004342
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03004343 return i915_gem_object_do_pin(obj, &ggtt->base, view,
Tvrtko Ursulin6fafab72015-03-17 15:36:51 +00004344 alignment, flags | PIN_GLOBAL);
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02004345}
4346
Eric Anholt673a3942008-07-30 12:06:12 -07004347void
Tvrtko Ursuline6617332015-03-23 11:10:33 +00004348i915_gem_object_ggtt_unpin_view(struct drm_i915_gem_object *obj,
4349 const struct i915_ggtt_view *view)
Eric Anholt673a3942008-07-30 12:06:12 -07004350{
Tvrtko Ursuline6617332015-03-23 11:10:33 +00004351 struct i915_vma *vma = i915_gem_obj_to_ggtt_view(obj, view);
Eric Anholt673a3942008-07-30 12:06:12 -07004352
Tvrtko Ursuline6617332015-03-23 11:10:33 +00004353 WARN_ON(vma->pin_count == 0);
Joonas Lahtinen9abc4642015-03-27 13:09:22 +02004354 WARN_ON(!i915_gem_obj_ggtt_bound_view(obj, view));
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004355
Chris Wilson30154652015-04-07 17:28:24 +01004356 --vma->pin_count;
Eric Anholt673a3942008-07-30 12:06:12 -07004357}
4358
4359int
Eric Anholt673a3942008-07-30 12:06:12 -07004360i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00004361 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004362{
4363 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004364 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01004365 int ret;
4366
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004367 ret = i915_mutex_lock_interruptible(dev);
4368 if (ret)
4369 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004370
Chris Wilson05394f32010-11-08 19:18:58 +00004371 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004372 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004373 ret = -ENOENT;
4374 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07004375 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08004376
Chris Wilson0be555b2010-08-04 15:36:30 +01004377 /* Count all active objects as busy, even if they are currently not used
4378 * by the gpu. Users of this interface expect objects to eventually
4379 * become non-busy without any further actions, therefore emit any
4380 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08004381 */
Daniel Vetter30dfebf2012-06-01 15:21:23 +02004382 ret = i915_gem_object_flush_active(obj);
Chris Wilsonb4716182015-04-27 13:41:17 +01004383 if (ret)
4384 goto unref;
Daniel Vetter30dfebf2012-06-01 15:21:23 +02004385
Chris Wilson426960b2016-01-15 16:51:46 +00004386 args->busy = 0;
4387 if (obj->active) {
4388 int i;
4389
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00004390 for (i = 0; i < I915_NUM_ENGINES; i++) {
Chris Wilson426960b2016-01-15 16:51:46 +00004391 struct drm_i915_gem_request *req;
4392
4393 req = obj->last_read_req[i];
4394 if (req)
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00004395 args->busy |= 1 << (16 + req->engine->exec_id);
Chris Wilson426960b2016-01-15 16:51:46 +00004396 }
4397 if (obj->last_write_req)
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00004398 args->busy |= obj->last_write_req->engine->exec_id;
Chris Wilson426960b2016-01-15 16:51:46 +00004399 }
Eric Anholt673a3942008-07-30 12:06:12 -07004400
Chris Wilsonb4716182015-04-27 13:41:17 +01004401unref:
Chris Wilson05394f32010-11-08 19:18:58 +00004402 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004403unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07004404 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004405 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004406}
4407
4408int
4409i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
4410 struct drm_file *file_priv)
4411{
Akshay Joshi0206e352011-08-16 15:34:10 -04004412 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07004413}
4414
Chris Wilson3ef94da2009-09-14 16:50:29 +01004415int
4416i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
4417 struct drm_file *file_priv)
4418{
Daniel Vetter656bfa32014-11-20 09:26:30 +01004419 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004420 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004421 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01004422 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004423
4424 switch (args->madv) {
4425 case I915_MADV_DONTNEED:
4426 case I915_MADV_WILLNEED:
4427 break;
4428 default:
4429 return -EINVAL;
4430 }
4431
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004432 ret = i915_mutex_lock_interruptible(dev);
4433 if (ret)
4434 return ret;
4435
Chris Wilson05394f32010-11-08 19:18:58 +00004436 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004437 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004438 ret = -ENOENT;
4439 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004440 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01004441
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004442 if (i915_gem_obj_is_pinned(obj)) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004443 ret = -EINVAL;
4444 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004445 }
4446
Daniel Vetter656bfa32014-11-20 09:26:30 +01004447 if (obj->pages &&
4448 obj->tiling_mode != I915_TILING_NONE &&
4449 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES) {
4450 if (obj->madv == I915_MADV_WILLNEED)
4451 i915_gem_object_unpin_pages(obj);
4452 if (args->madv == I915_MADV_WILLNEED)
4453 i915_gem_object_pin_pages(obj);
4454 }
4455
Chris Wilson05394f32010-11-08 19:18:58 +00004456 if (obj->madv != __I915_MADV_PURGED)
4457 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004458
Chris Wilson6c085a72012-08-20 11:40:46 +02004459 /* if the object is no longer attached, discard its backing storage */
Daniel Vetterbe6a0372015-03-18 10:46:04 +01004460 if (obj->madv == I915_MADV_DONTNEED && obj->pages == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01004461 i915_gem_object_truncate(obj);
4462
Chris Wilson05394f32010-11-08 19:18:58 +00004463 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01004464
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004465out:
Chris Wilson05394f32010-11-08 19:18:58 +00004466 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004467unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01004468 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004469 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004470}
4471
Chris Wilson37e680a2012-06-07 15:38:42 +01004472void i915_gem_object_init(struct drm_i915_gem_object *obj,
4473 const struct drm_i915_gem_object_ops *ops)
Chris Wilson0327d6b2012-08-11 15:41:06 +01004474{
Chris Wilsonb4716182015-04-27 13:41:17 +01004475 int i;
4476
Ben Widawsky35c20a62013-05-31 11:28:48 -07004477 INIT_LIST_HEAD(&obj->global_list);
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00004478 for (i = 0; i < I915_NUM_ENGINES; i++)
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00004479 INIT_LIST_HEAD(&obj->engine_list[i]);
Ben Widawskyb25cb2f2013-08-14 11:38:33 +02004480 INIT_LIST_HEAD(&obj->obj_exec_link);
Ben Widawsky2f633152013-07-17 12:19:03 -07004481 INIT_LIST_HEAD(&obj->vma_list);
Chris Wilson8d9d5742015-04-07 16:20:38 +01004482 INIT_LIST_HEAD(&obj->batch_pool_link);
Chris Wilson0327d6b2012-08-11 15:41:06 +01004483
Chris Wilson37e680a2012-06-07 15:38:42 +01004484 obj->ops = ops;
4485
Chris Wilson0327d6b2012-08-11 15:41:06 +01004486 obj->fence_reg = I915_FENCE_REG_NONE;
4487 obj->madv = I915_MADV_WILLNEED;
Chris Wilson0327d6b2012-08-11 15:41:06 +01004488
4489 i915_gem_info_add_obj(obj->base.dev->dev_private, obj->base.size);
4490}
4491
Chris Wilson37e680a2012-06-07 15:38:42 +01004492static const struct drm_i915_gem_object_ops i915_gem_object_ops = {
Chris Wilsonde472662016-01-22 18:32:31 +00004493 .flags = I915_GEM_OBJECT_HAS_STRUCT_PAGE,
Chris Wilson37e680a2012-06-07 15:38:42 +01004494 .get_pages = i915_gem_object_get_pages_gtt,
4495 .put_pages = i915_gem_object_put_pages_gtt,
4496};
4497
Dave Gordond37cd8a2016-04-22 19:14:32 +01004498struct drm_i915_gem_object *i915_gem_object_create(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00004499 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00004500{
Daniel Vetterc397b902010-04-09 19:05:07 +00004501 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07004502 struct address_space *mapping;
Daniel Vetter1a240d42012-11-29 22:18:51 +01004503 gfp_t mask;
Chris Wilsonfe3db792016-04-25 13:32:13 +01004504 int ret;
Daniel Vetterc397b902010-04-09 19:05:07 +00004505
Chris Wilson42dcedd2012-11-15 11:32:30 +00004506 obj = i915_gem_object_alloc(dev);
Daniel Vetterc397b902010-04-09 19:05:07 +00004507 if (obj == NULL)
Chris Wilsonfe3db792016-04-25 13:32:13 +01004508 return ERR_PTR(-ENOMEM);
Daniel Vetterc397b902010-04-09 19:05:07 +00004509
Chris Wilsonfe3db792016-04-25 13:32:13 +01004510 ret = drm_gem_object_init(dev, &obj->base, size);
4511 if (ret)
4512 goto fail;
Daniel Vetterc397b902010-04-09 19:05:07 +00004513
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004514 mask = GFP_HIGHUSER | __GFP_RECLAIMABLE;
4515 if (IS_CRESTLINE(dev) || IS_BROADWATER(dev)) {
4516 /* 965gm cannot relocate objects above 4GiB. */
4517 mask &= ~__GFP_HIGHMEM;
4518 mask |= __GFP_DMA32;
4519 }
4520
Al Viro496ad9a2013-01-23 17:07:38 -05004521 mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004522 mapping_set_gfp_mask(mapping, mask);
Hugh Dickins5949eac2011-06-27 16:18:18 -07004523
Chris Wilson37e680a2012-06-07 15:38:42 +01004524 i915_gem_object_init(obj, &i915_gem_object_ops);
Chris Wilson73aa8082010-09-30 11:46:12 +01004525
Daniel Vetterc397b902010-04-09 19:05:07 +00004526 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
4527 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4528
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02004529 if (HAS_LLC(dev)) {
4530 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07004531 * cache) for about a 10% performance improvement
4532 * compared to uncached. Graphics requests other than
4533 * display scanout are coherent with the CPU in
4534 * accessing this cache. This means in this mode we
4535 * don't need to clflush on the CPU side, and on the
4536 * GPU side we only need to flush internal caches to
4537 * get data visible to the CPU.
4538 *
4539 * However, we maintain the display planes as UC, and so
4540 * need to rebind when first used as such.
4541 */
4542 obj->cache_level = I915_CACHE_LLC;
4543 } else
4544 obj->cache_level = I915_CACHE_NONE;
4545
Daniel Vetterd861e332013-07-24 23:25:03 +02004546 trace_i915_gem_object_create(obj);
4547
Chris Wilson05394f32010-11-08 19:18:58 +00004548 return obj;
Chris Wilsonfe3db792016-04-25 13:32:13 +01004549
4550fail:
4551 i915_gem_object_free(obj);
4552
4553 return ERR_PTR(ret);
Daniel Vetterac52bc52010-04-09 19:05:06 +00004554}
4555
Chris Wilson340fbd82014-05-22 09:16:52 +01004556static bool discard_backing_storage(struct drm_i915_gem_object *obj)
4557{
4558 /* If we are the last user of the backing storage (be it shmemfs
4559 * pages or stolen etc), we know that the pages are going to be
4560 * immediately released. In this case, we can then skip copying
4561 * back the contents from the GPU.
4562 */
4563
4564 if (obj->madv != I915_MADV_WILLNEED)
4565 return false;
4566
4567 if (obj->base.filp == NULL)
4568 return true;
4569
4570 /* At first glance, this looks racy, but then again so would be
4571 * userspace racing mmap against close. However, the first external
4572 * reference to the filp can only be obtained through the
4573 * i915_gem_mmap_ioctl() which safeguards us against the user
4574 * acquiring such a reference whilst we are in the middle of
4575 * freeing the object.
4576 */
4577 return atomic_long_read(&obj->base.filp->f_count) == 1;
4578}
4579
Chris Wilson1488fc02012-04-24 15:47:31 +01004580void i915_gem_free_object(struct drm_gem_object *gem_obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01004581{
Chris Wilson1488fc02012-04-24 15:47:31 +01004582 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00004583 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004584 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004585 struct i915_vma *vma, *next;
Chris Wilsonbe726152010-07-23 23:18:50 +01004586
Paulo Zanonif65c9162013-11-27 18:20:34 -02004587 intel_runtime_pm_get(dev_priv);
4588
Chris Wilson26e12f892011-03-20 11:20:19 +00004589 trace_i915_gem_object_destroy(obj);
4590
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00004591 list_for_each_entry_safe(vma, next, &obj->vma_list, obj_link) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004592 int ret;
4593
4594 vma->pin_count = 0;
4595 ret = i915_vma_unbind(vma);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004596 if (WARN_ON(ret == -ERESTARTSYS)) {
4597 bool was_interruptible;
Chris Wilson1488fc02012-04-24 15:47:31 +01004598
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004599 was_interruptible = dev_priv->mm.interruptible;
4600 dev_priv->mm.interruptible = false;
Chris Wilson1488fc02012-04-24 15:47:31 +01004601
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004602 WARN_ON(i915_vma_unbind(vma));
Chris Wilson1488fc02012-04-24 15:47:31 +01004603
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004604 dev_priv->mm.interruptible = was_interruptible;
4605 }
Chris Wilson1488fc02012-04-24 15:47:31 +01004606 }
4607
Ben Widawsky1d64ae72013-05-31 14:46:20 -07004608 /* Stolen objects don't hold a ref, but do hold pin count. Fix that up
4609 * before progressing. */
4610 if (obj->stolen)
4611 i915_gem_object_unpin_pages(obj);
4612
Daniel Vettera071fa02014-06-18 23:28:09 +02004613 WARN_ON(obj->frontbuffer_bits);
4614
Daniel Vetter656bfa32014-11-20 09:26:30 +01004615 if (obj->pages && obj->madv == I915_MADV_WILLNEED &&
4616 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES &&
4617 obj->tiling_mode != I915_TILING_NONE)
4618 i915_gem_object_unpin_pages(obj);
4619
Ben Widawsky401c29f2013-05-31 11:28:47 -07004620 if (WARN_ON(obj->pages_pin_count))
4621 obj->pages_pin_count = 0;
Chris Wilson340fbd82014-05-22 09:16:52 +01004622 if (discard_backing_storage(obj))
Chris Wilson55372522014-03-25 13:23:06 +00004623 obj->madv = I915_MADV_DONTNEED;
Chris Wilson37e680a2012-06-07 15:38:42 +01004624 i915_gem_object_put_pages(obj);
Chris Wilsond8cb5082012-08-11 15:41:03 +01004625 i915_gem_object_free_mmap_offset(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01004626
Chris Wilson9da3da62012-06-01 15:20:22 +01004627 BUG_ON(obj->pages);
4628
Chris Wilson2f745ad2012-09-04 21:02:58 +01004629 if (obj->base.import_attach)
4630 drm_prime_gem_destroy(&obj->base, NULL);
Chris Wilsonbe726152010-07-23 23:18:50 +01004631
Chris Wilson5cc9ed42014-05-16 14:22:37 +01004632 if (obj->ops->release)
4633 obj->ops->release(obj);
4634
Chris Wilson05394f32010-11-08 19:18:58 +00004635 drm_gem_object_release(&obj->base);
4636 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01004637
Chris Wilson05394f32010-11-08 19:18:58 +00004638 kfree(obj->bit_17);
Chris Wilson42dcedd2012-11-15 11:32:30 +00004639 i915_gem_object_free(obj);
Paulo Zanonif65c9162013-11-27 18:20:34 -02004640
4641 intel_runtime_pm_put(dev_priv);
Chris Wilsonbe726152010-07-23 23:18:50 +01004642}
4643
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02004644struct i915_vma *i915_gem_obj_to_vma(struct drm_i915_gem_object *obj,
4645 struct i915_address_space *vm)
Ben Widawsky2f633152013-07-17 12:19:03 -07004646{
Daniel Vettere656a6c2013-08-14 14:14:04 +02004647 struct i915_vma *vma;
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00004648 list_for_each_entry(vma, &obj->vma_list, obj_link) {
Tvrtko Ursulin1b683722015-11-12 11:59:55 +00004649 if (vma->ggtt_view.type == I915_GGTT_VIEW_NORMAL &&
4650 vma->vm == vm)
Daniel Vettere656a6c2013-08-14 14:14:04 +02004651 return vma;
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02004652 }
4653 return NULL;
4654}
Daniel Vettere656a6c2013-08-14 14:14:04 +02004655
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02004656struct i915_vma *i915_gem_obj_to_ggtt_view(struct drm_i915_gem_object *obj,
4657 const struct i915_ggtt_view *view)
4658{
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02004659 struct i915_vma *vma;
4660
Tvrtko Ursulin598b9ec2016-04-21 13:04:44 +01004661 GEM_BUG_ON(!view);
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02004662
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00004663 list_for_each_entry(vma, &obj->vma_list, obj_link)
Tvrtko Ursulin598b9ec2016-04-21 13:04:44 +01004664 if (vma->is_ggtt && i915_ggtt_view_equal(&vma->ggtt_view, view))
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02004665 return vma;
Daniel Vettere656a6c2013-08-14 14:14:04 +02004666 return NULL;
4667}
4668
Ben Widawsky2f633152013-07-17 12:19:03 -07004669void i915_gem_vma_destroy(struct i915_vma *vma)
4670{
4671 WARN_ON(vma->node.allocated);
Chris Wilsonaaa05662013-08-20 12:56:40 +01004672
4673 /* Keep the vma as a placeholder in the execbuffer reservation lists */
4674 if (!list_empty(&vma->exec_list))
4675 return;
4676
Chris Wilson596c5922016-02-26 11:03:20 +00004677 if (!vma->is_ggtt)
4678 i915_ppgtt_put(i915_vm_to_ppgtt(vma->vm));
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004679
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00004680 list_del(&vma->obj_link);
Daniel Vetterb93dab62013-08-26 11:23:47 +02004681
Chris Wilsone20d2ab2015-04-07 16:20:58 +01004682 kmem_cache_free(to_i915(vma->obj->base.dev)->vmas, vma);
Ben Widawsky2f633152013-07-17 12:19:03 -07004683}
4684
Chris Wilsone3efda42014-04-09 09:19:41 +01004685static void
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00004686i915_gem_stop_engines(struct drm_device *dev)
Chris Wilsone3efda42014-04-09 09:19:41 +01004687{
4688 struct drm_i915_private *dev_priv = dev->dev_private;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00004689 struct intel_engine_cs *engine;
Chris Wilsone3efda42014-04-09 09:19:41 +01004690
Dave Gordonb4ac5af2016-03-24 11:20:38 +00004691 for_each_engine(engine, dev_priv)
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00004692 dev_priv->gt.stop_engine(engine);
Chris Wilsone3efda42014-04-09 09:19:41 +01004693}
4694
Jesse Barnes5669fca2009-02-17 15:13:31 -08004695int
Chris Wilson45c5f202013-10-16 11:50:01 +01004696i915_gem_suspend(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07004697{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004698 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson45c5f202013-10-16 11:50:01 +01004699 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07004700
Chris Wilson45c5f202013-10-16 11:50:01 +01004701 mutex_lock(&dev->struct_mutex);
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004702 ret = i915_gpu_idle(dev);
Chris Wilsonf7403342013-09-13 23:57:04 +01004703 if (ret)
Chris Wilson45c5f202013-10-16 11:50:01 +01004704 goto err;
Chris Wilsonf7403342013-09-13 23:57:04 +01004705
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004706 i915_gem_retire_requests(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07004707
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00004708 i915_gem_stop_engines(dev);
Chris Wilson45c5f202013-10-16 11:50:01 +01004709 mutex_unlock(&dev->struct_mutex);
4710
Chris Wilson737b1502015-01-26 18:03:03 +02004711 cancel_delayed_work_sync(&dev_priv->gpu_error.hangcheck_work);
Chris Wilson29105cc2010-01-07 10:39:13 +00004712 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
Deepak S274fa1c2014-08-05 07:51:20 -07004713 flush_delayed_work(&dev_priv->mm.idle_work);
Chris Wilson29105cc2010-01-07 10:39:13 +00004714
Chris Wilsonbdcf1202014-11-25 11:56:33 +00004715 /* Assert that we sucessfully flushed all the work and
4716 * reset the GPU back to its idle, low power state.
4717 */
4718 WARN_ON(dev_priv->mm.busy);
4719
Eric Anholt673a3942008-07-30 12:06:12 -07004720 return 0;
Chris Wilson45c5f202013-10-16 11:50:01 +01004721
4722err:
4723 mutex_unlock(&dev->struct_mutex);
4724 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004725}
4726
John Harrison6909a662015-05-29 17:43:51 +01004727int i915_gem_l3_remap(struct drm_i915_gem_request *req, int slice)
Ben Widawskyb9524a12012-05-25 16:56:24 -07004728{
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +00004729 struct intel_engine_cs *engine = req->engine;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00004730 struct drm_device *dev = engine->dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004731 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07004732 u32 *remap_info = dev_priv->l3_parity.remap_info[slice];
Ben Widawskyc3787e22013-09-17 21:12:44 -07004733 int i, ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004734
Ben Widawsky040d2ba2013-09-19 11:01:40 -07004735 if (!HAS_L3_DPF(dev) || !remap_info)
Ben Widawskyc3787e22013-09-17 21:12:44 -07004736 return 0;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004737
John Harrison5fb9de12015-05-29 17:44:07 +01004738 ret = intel_ring_begin(req, GEN7_L3LOG_SIZE / 4 * 3);
Ben Widawskyc3787e22013-09-17 21:12:44 -07004739 if (ret)
4740 return ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004741
Ben Widawskyc3787e22013-09-17 21:12:44 -07004742 /*
4743 * Note: We do not worry about the concurrent register cacheline hang
4744 * here because no other code should access these registers other than
4745 * at initialization time.
4746 */
Ville Syrjälä6fa1c5f2015-11-04 23:20:02 +02004747 for (i = 0; i < GEN7_L3LOG_SIZE / 4; i++) {
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00004748 intel_ring_emit(engine, MI_LOAD_REGISTER_IMM(1));
4749 intel_ring_emit_reg(engine, GEN7_L3LOG(slice, i));
4750 intel_ring_emit(engine, remap_info[i]);
Ben Widawskyb9524a12012-05-25 16:56:24 -07004751 }
4752
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00004753 intel_ring_advance(engine);
Ben Widawskyb9524a12012-05-25 16:56:24 -07004754
Ben Widawskyc3787e22013-09-17 21:12:44 -07004755 return ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004756}
4757
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004758void i915_gem_init_swizzling(struct drm_device *dev)
4759{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004760 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004761
Daniel Vetter11782b02012-01-31 16:47:55 +01004762 if (INTEL_INFO(dev)->gen < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004763 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
4764 return;
4765
4766 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
4767 DISP_TILE_SURFACE_SWIZZLING);
4768
Daniel Vetter11782b02012-01-31 16:47:55 +01004769 if (IS_GEN5(dev))
4770 return;
4771
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004772 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
4773 if (IS_GEN6(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004774 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_SNB));
Ben Widawsky8782e262012-12-18 10:31:23 -08004775 else if (IS_GEN7(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004776 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_IVB));
Ben Widawsky31a53362013-11-02 21:07:04 -07004777 else if (IS_GEN8(dev))
4778 I915_WRITE(GAMTARBMODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_BDW));
Ben Widawsky8782e262012-12-18 10:31:23 -08004779 else
4780 BUG();
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004781}
Daniel Vettere21af882012-02-09 20:53:27 +01004782
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004783static void init_unused_ring(struct drm_device *dev, u32 base)
4784{
4785 struct drm_i915_private *dev_priv = dev->dev_private;
4786
4787 I915_WRITE(RING_CTL(base), 0);
4788 I915_WRITE(RING_HEAD(base), 0);
4789 I915_WRITE(RING_TAIL(base), 0);
4790 I915_WRITE(RING_START(base), 0);
4791}
4792
4793static void init_unused_rings(struct drm_device *dev)
4794{
4795 if (IS_I830(dev)) {
4796 init_unused_ring(dev, PRB1_BASE);
4797 init_unused_ring(dev, SRB0_BASE);
4798 init_unused_ring(dev, SRB1_BASE);
4799 init_unused_ring(dev, SRB2_BASE);
4800 init_unused_ring(dev, SRB3_BASE);
4801 } else if (IS_GEN2(dev)) {
4802 init_unused_ring(dev, SRB0_BASE);
4803 init_unused_ring(dev, SRB1_BASE);
4804 } else if (IS_GEN3(dev)) {
4805 init_unused_ring(dev, PRB1_BASE);
4806 init_unused_ring(dev, PRB2_BASE);
4807 }
4808}
4809
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00004810int i915_gem_init_engines(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004811{
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004812 struct drm_i915_private *dev_priv = dev->dev_private;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004813 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004814
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004815 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004816 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00004817 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004818
4819 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004820 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004821 if (ret)
4822 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08004823 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01004824
Jani Nikulad39398f2015-10-07 11:17:44 +03004825 if (HAS_BLT(dev)) {
Chris Wilson549f7362010-10-19 11:19:32 +01004826 ret = intel_init_blt_ring_buffer(dev);
4827 if (ret)
4828 goto cleanup_bsd_ring;
4829 }
4830
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004831 if (HAS_VEBOX(dev)) {
4832 ret = intel_init_vebox_ring_buffer(dev);
4833 if (ret)
4834 goto cleanup_blt_ring;
4835 }
4836
Zhao Yakui845f74a2014-04-17 10:37:37 +08004837 if (HAS_BSD2(dev)) {
4838 ret = intel_init_bsd2_ring_buffer(dev);
4839 if (ret)
4840 goto cleanup_vebox_ring;
4841 }
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004842
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004843 return 0;
4844
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004845cleanup_vebox_ring:
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00004846 intel_cleanup_engine(&dev_priv->engine[VECS]);
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004847cleanup_blt_ring:
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00004848 intel_cleanup_engine(&dev_priv->engine[BCS]);
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004849cleanup_bsd_ring:
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00004850 intel_cleanup_engine(&dev_priv->engine[VCS]);
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004851cleanup_render_ring:
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00004852 intel_cleanup_engine(&dev_priv->engine[RCS]);
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004853
4854 return ret;
4855}
4856
4857int
4858i915_gem_init_hw(struct drm_device *dev)
4859{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004860 struct drm_i915_private *dev_priv = dev->dev_private;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00004861 struct intel_engine_cs *engine;
Dave Gordonb4ac5af2016-03-24 11:20:38 +00004862 int ret, j;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004863
4864 if (INTEL_INFO(dev)->gen < 6 && !intel_enable_gtt())
4865 return -EIO;
4866
Chris Wilson5e4f5182015-02-13 14:35:59 +00004867 /* Double layer security blanket, see i915_gem_init() */
4868 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
4869
Mika Kuoppala3accaf72016-04-13 17:26:43 +03004870 if (HAS_EDRAM(dev) && INTEL_GEN(dev_priv) < 9)
Ben Widawsky05e21cc2013-07-04 11:02:04 -07004871 I915_WRITE(HSW_IDICR, I915_READ(HSW_IDICR) | IDIHASHMSK(0xf));
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004872
Ville Syrjälä0bf21342013-11-29 14:56:12 +02004873 if (IS_HASWELL(dev))
4874 I915_WRITE(MI_PREDICATE_RESULT_2, IS_HSW_GT3(dev) ?
4875 LOWER_SLICE_ENABLED : LOWER_SLICE_DISABLED);
Rodrigo Vivi94353732013-08-28 16:45:46 -03004876
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004877 if (HAS_PCH_NOP(dev)) {
Daniel Vetter6ba844b2014-01-22 23:39:30 +01004878 if (IS_IVYBRIDGE(dev)) {
4879 u32 temp = I915_READ(GEN7_MSG_CTL);
4880 temp &= ~(WAIT_FOR_PCH_FLR_ACK | WAIT_FOR_PCH_RESET_ACK);
4881 I915_WRITE(GEN7_MSG_CTL, temp);
4882 } else if (INTEL_INFO(dev)->gen >= 7) {
4883 u32 temp = I915_READ(HSW_NDE_RSTWRN_OPT);
4884 temp &= ~RESET_PCH_HANDSHAKE_ENABLE;
4885 I915_WRITE(HSW_NDE_RSTWRN_OPT, temp);
4886 }
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004887 }
4888
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004889 i915_gem_init_swizzling(dev);
4890
Daniel Vetterd5abdfd2014-11-20 09:45:19 +01004891 /*
4892 * At least 830 can leave some of the unused rings
4893 * "active" (ie. head != tail) after resume which
4894 * will prevent c3 entry. Makes sure all unused rings
4895 * are totally idle.
4896 */
4897 init_unused_rings(dev);
4898
Dave Gordoned54c1a2016-01-19 19:02:54 +00004899 BUG_ON(!dev_priv->kernel_context);
John Harrison90638cc2015-05-29 17:43:37 +01004900
John Harrison4ad2fd82015-06-18 13:11:20 +01004901 ret = i915_ppgtt_init_hw(dev);
4902 if (ret) {
4903 DRM_ERROR("PPGTT enable HW failed %d\n", ret);
4904 goto out;
4905 }
4906
4907 /* Need to do basic initialisation of all rings first: */
Dave Gordonb4ac5af2016-03-24 11:20:38 +00004908 for_each_engine(engine, dev_priv) {
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00004909 ret = engine->init_hw(engine);
Daniel Vetter35a57ff2014-11-20 00:33:07 +01004910 if (ret)
Chris Wilson5e4f5182015-02-13 14:35:59 +00004911 goto out;
Daniel Vetter35a57ff2014-11-20 00:33:07 +01004912 }
Mika Kuoppala99433932013-01-22 14:12:17 +02004913
Peter Antoine0ccdacf2016-04-13 15:03:25 +01004914 intel_mocs_init_l3cc_table(dev);
4915
Alex Dai33a732f2015-08-12 15:43:36 +01004916 /* We can't enable contexts until all firmware is loaded */
Jesse Barnes87bcdd22015-09-10 14:55:00 -07004917 if (HAS_GUC_UCODE(dev)) {
4918 ret = intel_guc_ucode_load(dev);
4919 if (ret) {
Daniel Vetter9f9e5392015-10-23 11:10:59 +02004920 DRM_ERROR("Failed to initialize GuC, error %d\n", ret);
4921 ret = -EIO;
4922 goto out;
Jesse Barnes87bcdd22015-09-10 14:55:00 -07004923 }
Alex Dai33a732f2015-08-12 15:43:36 +01004924 }
4925
Nick Hoathe84fe802015-09-11 12:53:46 +01004926 /*
4927 * Increment the next seqno by 0x100 so we have a visible break
4928 * on re-initialisation
4929 */
4930 ret = i915_gem_set_seqno(dev, dev_priv->next_seqno+0x100);
4931 if (ret)
4932 goto out;
4933
John Harrison4ad2fd82015-06-18 13:11:20 +01004934 /* Now it is safe to go back round and do everything else: */
Dave Gordonb4ac5af2016-03-24 11:20:38 +00004935 for_each_engine(engine, dev_priv) {
John Harrisondc4be60712015-05-29 17:43:39 +01004936 struct drm_i915_gem_request *req;
4937
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00004938 req = i915_gem_request_alloc(engine, NULL);
Dave Gordon26827082016-01-19 19:02:53 +00004939 if (IS_ERR(req)) {
4940 ret = PTR_ERR(req);
Chris Wilsonaa9b7812016-04-13 17:35:15 +01004941 break;
John Harrisondc4be60712015-05-29 17:43:39 +01004942 }
4943
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00004944 if (engine->id == RCS) {
Chris Wilsonaa9b7812016-04-13 17:35:15 +01004945 for (j = 0; j < NUM_L3_SLICES(dev); j++) {
4946 ret = i915_gem_l3_remap(req, j);
4947 if (ret)
4948 goto err_request;
4949 }
John Harrison4ad2fd82015-06-18 13:11:20 +01004950 }
Ben Widawskyc3787e22013-09-17 21:12:44 -07004951
John Harrisonb3dd6b92015-05-29 17:43:40 +01004952 ret = i915_ppgtt_init_ring(req);
Chris Wilsonaa9b7812016-04-13 17:35:15 +01004953 if (ret)
4954 goto err_request;
David Woodhousef48a0162015-01-20 17:21:42 +00004955
John Harrisonb3dd6b92015-05-29 17:43:40 +01004956 ret = i915_gem_context_enable(req);
Chris Wilsonaa9b7812016-04-13 17:35:15 +01004957 if (ret)
4958 goto err_request;
John Harrisondc4be60712015-05-29 17:43:39 +01004959
Chris Wilsonaa9b7812016-04-13 17:35:15 +01004960err_request:
John Harrison75289872015-05-29 17:43:49 +01004961 i915_add_request_no_flush(req);
Chris Wilsonaa9b7812016-04-13 17:35:15 +01004962 if (ret) {
4963 DRM_ERROR("Failed to enable %s, error=%d\n",
4964 engine->name, ret);
4965 i915_gem_cleanup_engines(dev);
4966 break;
4967 }
Daniel Vetter82460d92014-08-06 20:19:53 +02004968 }
4969
Chris Wilson5e4f5182015-02-13 14:35:59 +00004970out:
4971 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004972 return ret;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004973}
4974
Chris Wilson1070a422012-04-24 15:47:41 +01004975int i915_gem_init(struct drm_device *dev)
4976{
4977 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson1070a422012-04-24 15:47:41 +01004978 int ret;
4979
Oscar Mateo127f1002014-07-24 17:04:11 +01004980 i915.enable_execlists = intel_sanitize_enable_execlists(dev,
4981 i915.enable_execlists);
4982
Chris Wilson1070a422012-04-24 15:47:41 +01004983 mutex_lock(&dev->struct_mutex);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004984
Oscar Mateoa83014d2014-07-24 17:04:21 +01004985 if (!i915.enable_execlists) {
John Harrisonf3dc74c2015-03-19 12:30:06 +00004986 dev_priv->gt.execbuf_submit = i915_gem_ringbuffer_submission;
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00004987 dev_priv->gt.init_engines = i915_gem_init_engines;
4988 dev_priv->gt.cleanup_engine = intel_cleanup_engine;
4989 dev_priv->gt.stop_engine = intel_stop_engine;
Oscar Mateo454afeb2014-07-24 17:04:22 +01004990 } else {
John Harrisonf3dc74c2015-03-19 12:30:06 +00004991 dev_priv->gt.execbuf_submit = intel_execlists_submission;
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00004992 dev_priv->gt.init_engines = intel_logical_rings_init;
4993 dev_priv->gt.cleanup_engine = intel_logical_ring_cleanup;
4994 dev_priv->gt.stop_engine = intel_logical_ring_stop;
Oscar Mateoa83014d2014-07-24 17:04:21 +01004995 }
4996
Chris Wilson5e4f5182015-02-13 14:35:59 +00004997 /* This is just a security blanket to placate dragons.
4998 * On some systems, we very sporadically observe that the first TLBs
4999 * used by the CS may be stale, despite us poking the TLB reset. If
5000 * we hold the forcewake during initialisation these problems
5001 * just magically go away.
5002 */
5003 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
5004
Daniel Vetter6c5566a2014-08-06 15:04:50 +02005005 ret = i915_gem_init_userptr(dev);
Jani Nikula7bcc3772014-12-05 14:17:42 +02005006 if (ret)
5007 goto out_unlock;
Daniel Vetter6c5566a2014-08-06 15:04:50 +02005008
Joonas Lahtinend85489d2016-03-24 16:47:46 +02005009 i915_gem_init_ggtt(dev);
Jesse Barnesd62b4892013-03-08 10:45:53 -08005010
Ben Widawsky2fa48d82013-12-06 14:11:04 -08005011 ret = i915_gem_context_init(dev);
Jani Nikula7bcc3772014-12-05 14:17:42 +02005012 if (ret)
5013 goto out_unlock;
Ben Widawsky2fa48d82013-12-06 14:11:04 -08005014
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00005015 ret = dev_priv->gt.init_engines(dev);
Daniel Vetter35a57ff2014-11-20 00:33:07 +01005016 if (ret)
Jani Nikula7bcc3772014-12-05 14:17:42 +02005017 goto out_unlock;
Daniel Vetter53ca26c2012-04-26 23:28:03 +02005018
5019 ret = i915_gem_init_hw(dev);
Chris Wilson60990322014-04-09 09:19:42 +01005020 if (ret == -EIO) {
5021 /* Allow ring initialisation to fail by marking the GPU as
5022 * wedged. But we only want to do this where the GPU is angry,
5023 * for all other failure, such as an allocation failure, bail.
5024 */
5025 DRM_ERROR("Failed to initialize GPU, declaring it wedged\n");
Peter Zijlstra805de8f42015-04-24 01:12:32 +02005026 atomic_or(I915_WEDGED, &dev_priv->gpu_error.reset_counter);
Chris Wilson60990322014-04-09 09:19:42 +01005027 ret = 0;
Chris Wilson1070a422012-04-24 15:47:41 +01005028 }
Jani Nikula7bcc3772014-12-05 14:17:42 +02005029
5030out_unlock:
Chris Wilson5e4f5182015-02-13 14:35:59 +00005031 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Chris Wilson60990322014-04-09 09:19:42 +01005032 mutex_unlock(&dev->struct_mutex);
Chris Wilson1070a422012-04-24 15:47:41 +01005033
Chris Wilson60990322014-04-09 09:19:42 +01005034 return ret;
Chris Wilson1070a422012-04-24 15:47:41 +01005035}
5036
Zou Nan hai8187a2b2010-05-21 09:08:55 +08005037void
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00005038i915_gem_cleanup_engines(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08005039{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03005040 struct drm_i915_private *dev_priv = dev->dev_private;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005041 struct intel_engine_cs *engine;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08005042
Dave Gordonb4ac5af2016-03-24 11:20:38 +00005043 for_each_engine(engine, dev_priv)
Tvrtko Ursulin117897f2016-03-16 11:00:40 +00005044 dev_priv->gt.cleanup_engine(engine);
Niu,Binga6478282015-07-04 00:27:34 +08005045
Mika Kuoppalaee4b6fa2016-03-16 17:54:00 +02005046 if (i915.enable_execlists)
5047 /*
5048 * Neither the BIOS, ourselves or any other kernel
5049 * expects the system to be in execlists mode on startup,
5050 * so we need to reset the GPU back to legacy mode.
5051 */
5052 intel_gpu_reset(dev, ALL_ENGINES);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08005053}
5054
Chris Wilson64193402010-10-24 12:38:05 +01005055static void
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00005056init_engine_lists(struct intel_engine_cs *engine)
Chris Wilson64193402010-10-24 12:38:05 +01005057{
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00005058 INIT_LIST_HEAD(&engine->active_list);
5059 INIT_LIST_HEAD(&engine->request_list);
Chris Wilson64193402010-10-24 12:38:05 +01005060}
5061
Eric Anholt673a3942008-07-30 12:06:12 -07005062void
Imre Deak40ae4e12016-03-16 14:54:03 +02005063i915_gem_load_init_fences(struct drm_i915_private *dev_priv)
5064{
5065 struct drm_device *dev = dev_priv->dev;
5066
5067 if (INTEL_INFO(dev_priv)->gen >= 7 && !IS_VALLEYVIEW(dev_priv) &&
5068 !IS_CHERRYVIEW(dev_priv))
5069 dev_priv->num_fence_regs = 32;
5070 else if (INTEL_INFO(dev_priv)->gen >= 4 || IS_I945G(dev_priv) ||
5071 IS_I945GM(dev_priv) || IS_G33(dev_priv))
5072 dev_priv->num_fence_regs = 16;
5073 else
5074 dev_priv->num_fence_regs = 8;
5075
5076 if (intel_vgpu_active(dev))
5077 dev_priv->num_fence_regs =
5078 I915_READ(vgtif_reg(avail_rs.fence_num));
5079
5080 /* Initialize fence registers to zero */
5081 i915_gem_restore_fences(dev);
5082
5083 i915_gem_detect_bit_6_swizzle(dev);
5084}
5085
5086void
Imre Deakd64aa092016-01-19 15:26:29 +02005087i915_gem_load_init(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07005088{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03005089 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson42dcedd2012-11-15 11:32:30 +00005090 int i;
5091
Chris Wilsonefab6d82015-04-07 16:20:57 +01005092 dev_priv->objects =
Chris Wilson42dcedd2012-11-15 11:32:30 +00005093 kmem_cache_create("i915_gem_object",
5094 sizeof(struct drm_i915_gem_object), 0,
5095 SLAB_HWCACHE_ALIGN,
5096 NULL);
Chris Wilsone20d2ab2015-04-07 16:20:58 +01005097 dev_priv->vmas =
5098 kmem_cache_create("i915_gem_vma",
5099 sizeof(struct i915_vma), 0,
5100 SLAB_HWCACHE_ALIGN,
5101 NULL);
Chris Wilsonefab6d82015-04-07 16:20:57 +01005102 dev_priv->requests =
5103 kmem_cache_create("i915_gem_request",
5104 sizeof(struct drm_i915_gem_request), 0,
5105 SLAB_HWCACHE_ALIGN,
5106 NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07005107
Ben Widawskyfc8c0672013-07-31 16:59:54 -07005108 INIT_LIST_HEAD(&dev_priv->vm_list);
Ben Widawskya33afea2013-09-17 21:12:45 -07005109 INIT_LIST_HEAD(&dev_priv->context_list);
Chris Wilson6c085a72012-08-20 11:40:46 +02005110 INIT_LIST_HEAD(&dev_priv->mm.unbound_list);
5111 INIT_LIST_HEAD(&dev_priv->mm.bound_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07005112 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00005113 for (i = 0; i < I915_NUM_ENGINES; i++)
5114 init_engine_lists(&dev_priv->engine[i]);
Daniel Vetter4b9de732011-10-09 21:52:02 +02005115 for (i = 0; i < I915_MAX_NUM_FENCES; i++)
Daniel Vetter007cc8a2010-04-28 11:02:31 +02005116 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07005117 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
5118 i915_gem_retire_work_handler);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005119 INIT_DELAYED_WORK(&dev_priv->mm.idle_work,
5120 i915_gem_idle_work_handler);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01005121 init_waitqueue_head(&dev_priv->gpu_error.reset_queue);
Chris Wilson31169712009-09-14 16:50:28 +01005122
Chris Wilson72bfa192010-12-19 11:42:05 +00005123 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
5124
Nick Hoathe84fe802015-09-11 12:53:46 +01005125 /*
5126 * Set initial sequence number for requests.
5127 * Using this number allows the wraparound to happen early,
5128 * catching any obvious problems.
5129 */
5130 dev_priv->next_seqno = ((u32)~0 - 0x1100);
5131 dev_priv->last_seqno = ((u32)~0 - 0x1101);
5132
Chris Wilson19b2dbd2013-06-12 10:15:12 +01005133 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Eric Anholt10ed13e2011-05-06 13:53:49 -07005134
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005135 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01005136
Chris Wilsonce453d82011-02-21 14:43:56 +00005137 dev_priv->mm.interruptible = true;
5138
Daniel Vetterf99d7062014-06-19 16:01:59 +02005139 mutex_init(&dev_priv->fb_tracking.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07005140}
Dave Airlie71acb5e2008-12-30 20:31:46 +10005141
Imre Deakd64aa092016-01-19 15:26:29 +02005142void i915_gem_load_cleanup(struct drm_device *dev)
5143{
5144 struct drm_i915_private *dev_priv = to_i915(dev);
5145
5146 kmem_cache_destroy(dev_priv->requests);
5147 kmem_cache_destroy(dev_priv->vmas);
5148 kmem_cache_destroy(dev_priv->objects);
5149}
5150
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005151void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00005152{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005153 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00005154
5155 /* Clean up our request list when the client is going away, so that
5156 * later retire_requests won't dereference our soon-to-be-gone
5157 * file_priv.
5158 */
Chris Wilson1c255952010-09-26 11:03:27 +01005159 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005160 while (!list_empty(&file_priv->mm.request_list)) {
5161 struct drm_i915_gem_request *request;
5162
5163 request = list_first_entry(&file_priv->mm.request_list,
5164 struct drm_i915_gem_request,
5165 client_list);
5166 list_del(&request->client_list);
5167 request->file_priv = NULL;
5168 }
Chris Wilson1c255952010-09-26 11:03:27 +01005169 spin_unlock(&file_priv->mm.lock);
Chris Wilson31169712009-09-14 16:50:28 +01005170
Chris Wilson2e1b8732015-04-27 13:41:22 +01005171 if (!list_empty(&file_priv->rps.link)) {
Chris Wilson8d3afd72015-05-21 21:01:47 +01005172 spin_lock(&to_i915(dev)->rps.client_lock);
Chris Wilson2e1b8732015-04-27 13:41:22 +01005173 list_del(&file_priv->rps.link);
Chris Wilson8d3afd72015-05-21 21:01:47 +01005174 spin_unlock(&to_i915(dev)->rps.client_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01005175 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005176}
5177
5178int i915_gem_open(struct drm_device *dev, struct drm_file *file)
5179{
5180 struct drm_i915_file_private *file_priv;
Ben Widawskye422b882013-12-06 14:10:58 -08005181 int ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005182
5183 DRM_DEBUG_DRIVER("\n");
5184
5185 file_priv = kzalloc(sizeof(*file_priv), GFP_KERNEL);
5186 if (!file_priv)
5187 return -ENOMEM;
5188
5189 file->driver_priv = file_priv;
5190 file_priv->dev_priv = dev->dev_private;
Chris Wilsonab0e7ff2014-02-25 17:11:24 +02005191 file_priv->file = file;
Chris Wilson2e1b8732015-04-27 13:41:22 +01005192 INIT_LIST_HEAD(&file_priv->rps.link);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005193
5194 spin_lock_init(&file_priv->mm.lock);
5195 INIT_LIST_HEAD(&file_priv->mm.request_list);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005196
Tvrtko Ursulinde1add32016-01-15 15:12:50 +00005197 file_priv->bsd_ring = -1;
5198
Ben Widawskye422b882013-12-06 14:10:58 -08005199 ret = i915_gem_context_open(dev, file);
5200 if (ret)
5201 kfree(file_priv);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005202
Ben Widawskye422b882013-12-06 14:10:58 -08005203 return ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005204}
5205
Daniel Vetterb680c372014-09-19 18:27:27 +02005206/**
5207 * i915_gem_track_fb - update frontbuffer tracking
Geliang Tangd9072a32015-09-15 05:58:44 -07005208 * @old: current GEM buffer for the frontbuffer slots
5209 * @new: new GEM buffer for the frontbuffer slots
5210 * @frontbuffer_bits: bitmask of frontbuffer slots
Daniel Vetterb680c372014-09-19 18:27:27 +02005211 *
5212 * This updates the frontbuffer tracking bits @frontbuffer_bits by clearing them
5213 * from @old and setting them in @new. Both @old and @new can be NULL.
5214 */
Daniel Vettera071fa02014-06-18 23:28:09 +02005215void i915_gem_track_fb(struct drm_i915_gem_object *old,
5216 struct drm_i915_gem_object *new,
5217 unsigned frontbuffer_bits)
5218{
5219 if (old) {
5220 WARN_ON(!mutex_is_locked(&old->base.dev->struct_mutex));
5221 WARN_ON(!(old->frontbuffer_bits & frontbuffer_bits));
5222 old->frontbuffer_bits &= ~frontbuffer_bits;
5223 }
5224
5225 if (new) {
5226 WARN_ON(!mutex_is_locked(&new->base.dev->struct_mutex));
5227 WARN_ON(new->frontbuffer_bits & frontbuffer_bits);
5228 new->frontbuffer_bits |= frontbuffer_bits;
5229 }
5230}
5231
Ben Widawskya70a3142013-07-31 16:59:56 -07005232/* All the new VM stuff */
Michel Thierry088e0df2015-08-07 17:40:17 +01005233u64 i915_gem_obj_offset(struct drm_i915_gem_object *o,
5234 struct i915_address_space *vm)
Ben Widawskya70a3142013-07-31 16:59:56 -07005235{
5236 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
5237 struct i915_vma *vma;
5238
Daniel Vetter896ab1a2014-08-06 15:04:51 +02005239 WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base);
Ben Widawskya70a3142013-07-31 16:59:56 -07005240
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00005241 list_for_each_entry(vma, &o->vma_list, obj_link) {
Chris Wilson596c5922016-02-26 11:03:20 +00005242 if (vma->is_ggtt &&
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02005243 vma->ggtt_view.type != I915_GGTT_VIEW_NORMAL)
5244 continue;
5245 if (vma->vm == vm)
Ben Widawskya70a3142013-07-31 16:59:56 -07005246 return vma->node.start;
Ben Widawskya70a3142013-07-31 16:59:56 -07005247 }
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02005248
Daniel Vetterf25748ea2014-06-17 22:34:38 +02005249 WARN(1, "%s vma for this object not found.\n",
5250 i915_is_ggtt(vm) ? "global" : "ppgtt");
Ben Widawskya70a3142013-07-31 16:59:56 -07005251 return -1;
5252}
5253
Michel Thierry088e0df2015-08-07 17:40:17 +01005254u64 i915_gem_obj_ggtt_offset_view(struct drm_i915_gem_object *o,
5255 const struct i915_ggtt_view *view)
Ben Widawskya70a3142013-07-31 16:59:56 -07005256{
5257 struct i915_vma *vma;
5258
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00005259 list_for_each_entry(vma, &o->vma_list, obj_link)
Tvrtko Ursulin8aac2222016-04-21 13:04:45 +01005260 if (vma->is_ggtt && i915_ggtt_view_equal(&vma->ggtt_view, view))
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02005261 return vma->node.start;
5262
Tvrtko Ursulin5678ad72015-03-17 14:45:29 +00005263 WARN(1, "global vma for this object not found. (view=%u)\n", view->type);
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02005264 return -1;
5265}
5266
5267bool i915_gem_obj_bound(struct drm_i915_gem_object *o,
5268 struct i915_address_space *vm)
5269{
5270 struct i915_vma *vma;
5271
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00005272 list_for_each_entry(vma, &o->vma_list, obj_link) {
Chris Wilson596c5922016-02-26 11:03:20 +00005273 if (vma->is_ggtt &&
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02005274 vma->ggtt_view.type != I915_GGTT_VIEW_NORMAL)
5275 continue;
5276 if (vma->vm == vm && drm_mm_node_allocated(&vma->node))
5277 return true;
5278 }
5279
5280 return false;
5281}
5282
5283bool i915_gem_obj_ggtt_bound_view(struct drm_i915_gem_object *o,
Joonas Lahtinen9abc4642015-03-27 13:09:22 +02005284 const struct i915_ggtt_view *view)
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02005285{
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02005286 struct i915_vma *vma;
5287
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00005288 list_for_each_entry(vma, &o->vma_list, obj_link)
Tvrtko Ursulinff5ec222016-04-21 13:04:46 +01005289 if (vma->is_ggtt &&
Joonas Lahtinen9abc4642015-03-27 13:09:22 +02005290 i915_ggtt_view_equal(&vma->ggtt_view, view) &&
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00005291 drm_mm_node_allocated(&vma->node))
Ben Widawskya70a3142013-07-31 16:59:56 -07005292 return true;
5293
5294 return false;
5295}
5296
5297bool i915_gem_obj_bound_any(struct drm_i915_gem_object *o)
5298{
Chris Wilson5a1d5eb2013-09-10 11:27:37 +01005299 struct i915_vma *vma;
Ben Widawskya70a3142013-07-31 16:59:56 -07005300
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00005301 list_for_each_entry(vma, &o->vma_list, obj_link)
Chris Wilson5a1d5eb2013-09-10 11:27:37 +01005302 if (drm_mm_node_allocated(&vma->node))
Ben Widawskya70a3142013-07-31 16:59:56 -07005303 return true;
5304
5305 return false;
5306}
5307
Tvrtko Ursulin8da32722016-04-21 13:04:43 +01005308unsigned long i915_gem_obj_ggtt_size(struct drm_i915_gem_object *o)
Ben Widawskya70a3142013-07-31 16:59:56 -07005309{
Ben Widawskya70a3142013-07-31 16:59:56 -07005310 struct i915_vma *vma;
5311
Tvrtko Ursulin8da32722016-04-21 13:04:43 +01005312 GEM_BUG_ON(list_empty(&o->vma_list));
Ben Widawskya70a3142013-07-31 16:59:56 -07005313
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00005314 list_for_each_entry(vma, &o->vma_list, obj_link) {
Chris Wilson596c5922016-02-26 11:03:20 +00005315 if (vma->is_ggtt &&
Tvrtko Ursulin8da32722016-04-21 13:04:43 +01005316 vma->ggtt_view.type == I915_GGTT_VIEW_NORMAL)
Ben Widawskya70a3142013-07-31 16:59:56 -07005317 return vma->node.size;
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02005318 }
Tvrtko Ursulin8da32722016-04-21 13:04:43 +01005319
Ben Widawskya70a3142013-07-31 16:59:56 -07005320 return 0;
5321}
5322
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02005323bool i915_gem_obj_is_pinned(struct drm_i915_gem_object *obj)
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005324{
5325 struct i915_vma *vma;
Chris Wilson1c7f4bc2016-02-26 11:03:19 +00005326 list_for_each_entry(vma, &obj->vma_list, obj_link)
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02005327 if (vma->pin_count > 0)
5328 return true;
Joonas Lahtinena6631ae2015-05-06 14:34:58 +03005329
Joonas Lahtinenec7adb62015-03-16 14:11:13 +02005330 return false;
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005331}
Dave Gordonea702992015-07-09 19:29:02 +01005332
Dave Gordon033908a2015-12-10 18:51:23 +00005333/* Like i915_gem_object_get_page(), but mark the returned page dirty */
5334struct page *
5335i915_gem_object_get_dirty_page(struct drm_i915_gem_object *obj, int n)
5336{
5337 struct page *page;
5338
5339 /* Only default objects have per-page dirty tracking */
Chris Wilsonde472662016-01-22 18:32:31 +00005340 if (WARN_ON((obj->ops->flags & I915_GEM_OBJECT_HAS_STRUCT_PAGE) == 0))
Dave Gordon033908a2015-12-10 18:51:23 +00005341 return NULL;
5342
5343 page = i915_gem_object_get_page(obj, n);
5344 set_page_dirty(page);
5345 return page;
5346}
5347
Dave Gordonea702992015-07-09 19:29:02 +01005348/* Allocate a new GEM object and fill it with the supplied data */
5349struct drm_i915_gem_object *
5350i915_gem_object_create_from_data(struct drm_device *dev,
5351 const void *data, size_t size)
5352{
5353 struct drm_i915_gem_object *obj;
5354 struct sg_table *sg;
5355 size_t bytes;
5356 int ret;
5357
Dave Gordond37cd8a2016-04-22 19:14:32 +01005358 obj = i915_gem_object_create(dev, round_up(size, PAGE_SIZE));
Chris Wilsonfe3db792016-04-25 13:32:13 +01005359 if (IS_ERR(obj))
Dave Gordonea702992015-07-09 19:29:02 +01005360 return obj;
5361
5362 ret = i915_gem_object_set_to_cpu_domain(obj, true);
5363 if (ret)
5364 goto fail;
5365
5366 ret = i915_gem_object_get_pages(obj);
5367 if (ret)
5368 goto fail;
5369
5370 i915_gem_object_pin_pages(obj);
5371 sg = obj->pages;
5372 bytes = sg_copy_from_buffer(sg->sgl, sg->nents, (void *)data, size);
Dave Gordon9e7d18c2015-12-10 18:51:24 +00005373 obj->dirty = 1; /* Backing store is now out of date */
Dave Gordonea702992015-07-09 19:29:02 +01005374 i915_gem_object_unpin_pages(obj);
5375
5376 if (WARN_ON(bytes != size)) {
5377 DRM_ERROR("Incomplete copy, wrote %zu of %zu", bytes, size);
5378 ret = -EFAULT;
5379 goto fail;
5380 }
5381
5382 return obj;
5383
5384fail:
5385 drm_gem_object_unreference(&obj->base);
5386 return ERR_PTR(ret);
5387}