blob: 28f91df2604db0bfb867a548e701a5e9a48b7fa3 [file] [log] [blame]
Eric Anholt673a3942008-07-30 12:06:12 -07001/*
2 * Copyright © 2008 Intel Corporation
3 *
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"
Chris Wilson1c5d22f2009-08-25 11:15:50 +010032#include "i915_trace.h"
Jesse Barnes652c3932009-08-17 13:31:43 -070033#include "intel_drv.h"
Chris Wilson2cfcd322014-05-20 08:28:43 +010034#include <linux/oom.h>
Hugh Dickins5949eac2011-06-27 16:18:18 -070035#include <linux/shmem_fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/slab.h>
Eric Anholt673a3942008-07-30 12:06:12 -070037#include <linux/swap.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080038#include <linux/pci.h>
Daniel Vetter1286ff72012-05-10 15:25:09 +020039#include <linux/dma-buf.h>
Eric Anholt673a3942008-07-30 12:06:12 -070040
Chris Wilson05394f32010-11-08 19:18:58 +000041static void i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj);
Chris Wilson2c225692013-08-09 12:26:45 +010042static void i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj,
43 bool force);
Ben Widawsky07fe0b12013-07-31 17:00:10 -070044static __must_check int
Ben Widawsky23f54482013-09-11 14:57:48 -070045i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj,
46 bool readonly);
Chris Wilsonc8725f32014-03-17 12:21:55 +000047static void
48i915_gem_object_retire(struct drm_i915_gem_object *obj);
49
Chris Wilson61050802012-04-17 15:31:31 +010050static void i915_gem_write_fence(struct drm_device *dev, int reg,
51 struct drm_i915_gem_object *obj);
52static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
53 struct drm_i915_fence_reg *fence,
54 bool enable);
55
Chris Wilsonceabbba52014-03-25 13:23:04 +000056static unsigned long i915_gem_shrinker_count(struct shrinker *shrinker,
Dave Chinner7dc19d52013-08-28 10:18:11 +100057 struct shrink_control *sc);
Chris Wilsonceabbba52014-03-25 13:23:04 +000058static unsigned long i915_gem_shrinker_scan(struct shrinker *shrinker,
Dave Chinner7dc19d52013-08-28 10:18:11 +100059 struct shrink_control *sc);
Chris Wilson2cfcd322014-05-20 08:28:43 +010060static int i915_gem_shrinker_oom(struct notifier_block *nb,
61 unsigned long event,
62 void *ptr);
Chris Wilsond9973b42013-10-04 10:33:00 +010063static unsigned long i915_gem_shrink_all(struct drm_i915_private *dev_priv);
Chris Wilson31169712009-09-14 16:50:28 +010064
Chris Wilsonc76ce032013-08-08 14:41:03 +010065static bool cpu_cache_is_coherent(struct drm_device *dev,
66 enum i915_cache_level level)
67{
68 return HAS_LLC(dev) || level != I915_CACHE_NONE;
69}
70
Chris Wilson2c225692013-08-09 12:26:45 +010071static bool cpu_write_needs_clflush(struct drm_i915_gem_object *obj)
72{
73 if (!cpu_cache_is_coherent(obj->base.dev, obj->cache_level))
74 return true;
75
76 return obj->pin_display;
77}
78
Chris Wilson61050802012-04-17 15:31:31 +010079static inline void i915_gem_object_fence_lost(struct drm_i915_gem_object *obj)
80{
81 if (obj->tiling_mode)
82 i915_gem_release_mmap(obj);
83
84 /* As we do not have an associated fence register, we will force
85 * a tiling change if we ever need to acquire one.
86 */
Chris Wilson5d82e3e2012-04-21 16:23:23 +010087 obj->fence_dirty = false;
Chris Wilson61050802012-04-17 15:31:31 +010088 obj->fence_reg = I915_FENCE_REG_NONE;
89}
90
Chris Wilson73aa8082010-09-30 11:46:12 +010091/* some bookkeeping */
92static void i915_gem_info_add_obj(struct drm_i915_private *dev_priv,
93 size_t size)
94{
Daniel Vetterc20e8352013-07-24 22:40:23 +020095 spin_lock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +010096 dev_priv->mm.object_count++;
97 dev_priv->mm.object_memory += size;
Daniel Vetterc20e8352013-07-24 22:40:23 +020098 spin_unlock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +010099}
100
101static void i915_gem_info_remove_obj(struct drm_i915_private *dev_priv,
102 size_t size)
103{
Daniel Vetterc20e8352013-07-24 22:40:23 +0200104 spin_lock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +0100105 dev_priv->mm.object_count--;
106 dev_priv->mm.object_memory -= size;
Daniel Vetterc20e8352013-07-24 22:40:23 +0200107 spin_unlock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +0100108}
109
Chris Wilson21dd3732011-01-26 15:55:56 +0000110static int
Daniel Vetter33196de2012-11-14 17:14:05 +0100111i915_gem_wait_for_error(struct i915_gpu_error *error)
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100112{
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100113 int ret;
114
Daniel Vetter7abb6902013-05-24 21:29:32 +0200115#define EXIT_COND (!i915_reset_in_progress(error) || \
116 i915_terminally_wedged(error))
Daniel Vetter1f83fee2012-11-15 17:17:22 +0100117 if (EXIT_COND)
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100118 return 0;
119
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200120 /*
121 * Only wait 10 seconds for the gpu reset to complete to avoid hanging
122 * userspace. If it takes that long something really bad is going on and
123 * we should simply try to bail out and fail as gracefully as possible.
124 */
Daniel Vetter1f83fee2012-11-15 17:17:22 +0100125 ret = wait_event_interruptible_timeout(error->reset_queue,
126 EXIT_COND,
127 10*HZ);
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200128 if (ret == 0) {
129 DRM_ERROR("Timed out waiting for the gpu reset to complete\n");
130 return -EIO;
131 } else if (ret < 0) {
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100132 return ret;
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200133 }
Daniel Vetter1f83fee2012-11-15 17:17:22 +0100134#undef EXIT_COND
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100135
Chris Wilson21dd3732011-01-26 15:55:56 +0000136 return 0;
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100137}
138
Chris Wilson54cf91d2010-11-25 18:00:26 +0000139int i915_mutex_lock_interruptible(struct drm_device *dev)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100140{
Daniel Vetter33196de2012-11-14 17:14:05 +0100141 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson76c1dec2010-09-25 11:22:51 +0100142 int ret;
143
Daniel Vetter33196de2012-11-14 17:14:05 +0100144 ret = i915_gem_wait_for_error(&dev_priv->gpu_error);
Chris Wilson76c1dec2010-09-25 11:22:51 +0100145 if (ret)
146 return ret;
147
148 ret = mutex_lock_interruptible(&dev->struct_mutex);
149 if (ret)
150 return ret;
151
Chris Wilson23bc5982010-09-29 16:10:57 +0100152 WARN_ON(i915_verify_lists(dev));
Chris Wilson76c1dec2010-09-25 11:22:51 +0100153 return 0;
154}
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100155
Chris Wilson7d1c4802010-08-07 21:45:03 +0100156static inline bool
Chris Wilson05394f32010-11-08 19:18:58 +0000157i915_gem_object_is_inactive(struct drm_i915_gem_object *obj)
Chris Wilson7d1c4802010-08-07 21:45:03 +0100158{
Ben Widawsky98438772013-07-31 17:00:12 -0700159 return i915_gem_obj_bound_any(obj) && !obj->active;
Chris Wilson7d1c4802010-08-07 21:45:03 +0100160}
161
Eric Anholt673a3942008-07-30 12:06:12 -0700162int
163i915_gem_init_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000164 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700165{
Ben Widawsky93d18792013-01-17 12:45:17 -0800166 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700167 struct drm_i915_gem_init *args = data;
Chris Wilson20217462010-11-23 15:26:33 +0000168
Daniel Vetter7bb6fb82012-04-24 08:22:52 +0200169 if (drm_core_check_feature(dev, DRIVER_MODESET))
170 return -ENODEV;
171
Chris Wilson20217462010-11-23 15:26:33 +0000172 if (args->gtt_start >= args->gtt_end ||
173 (args->gtt_end | args->gtt_start) & (PAGE_SIZE - 1))
174 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700175
Daniel Vetterf534bc02012-03-26 22:37:04 +0200176 /* GEM with user mode setting was never supported on ilk and later. */
177 if (INTEL_INFO(dev)->gen >= 5)
178 return -ENODEV;
179
Eric Anholt673a3942008-07-30 12:06:12 -0700180 mutex_lock(&dev->struct_mutex);
Ben Widawskyd7e50082012-12-18 10:31:25 -0800181 i915_gem_setup_global_gtt(dev, args->gtt_start, args->gtt_end,
182 args->gtt_end);
Ben Widawsky93d18792013-01-17 12:45:17 -0800183 dev_priv->gtt.mappable_end = args->gtt_end;
Eric Anholt673a3942008-07-30 12:06:12 -0700184 mutex_unlock(&dev->struct_mutex);
185
Chris Wilson20217462010-11-23 15:26:33 +0000186 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700187}
188
Eric Anholt5a125c32008-10-22 21:40:13 -0700189int
190i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000191 struct drm_file *file)
Eric Anholt5a125c32008-10-22 21:40:13 -0700192{
Chris Wilson73aa8082010-09-30 11:46:12 +0100193 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt5a125c32008-10-22 21:40:13 -0700194 struct drm_i915_gem_get_aperture *args = data;
Chris Wilson6299f992010-11-24 12:23:44 +0000195 struct drm_i915_gem_object *obj;
196 size_t pinned;
Eric Anholt5a125c32008-10-22 21:40:13 -0700197
Chris Wilson6299f992010-11-24 12:23:44 +0000198 pinned = 0;
Chris Wilson73aa8082010-09-30 11:46:12 +0100199 mutex_lock(&dev->struct_mutex);
Ben Widawsky35c20a62013-05-31 11:28:48 -0700200 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list)
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800201 if (i915_gem_obj_is_pinned(obj))
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700202 pinned += i915_gem_obj_ggtt_size(obj);
Chris Wilson73aa8082010-09-30 11:46:12 +0100203 mutex_unlock(&dev->struct_mutex);
Eric Anholt5a125c32008-10-22 21:40:13 -0700204
Ben Widawsky853ba5d2013-07-16 16:50:05 -0700205 args->aper_size = dev_priv->gtt.base.total;
Akshay Joshi0206e352011-08-16 15:34:10 -0400206 args->aper_available_size = args->aper_size - pinned;
Chris Wilson6299f992010-11-24 12:23:44 +0000207
Eric Anholt5a125c32008-10-22 21:40:13 -0700208 return 0;
209}
210
Chris Wilson00731152014-05-21 12:42:56 +0100211static void i915_gem_object_detach_phys(struct drm_i915_gem_object *obj)
212{
213 drm_dma_handle_t *phys = obj->phys_handle;
214
215 if (!phys)
216 return;
217
218 if (obj->madv == I915_MADV_WILLNEED) {
219 struct address_space *mapping = file_inode(obj->base.filp)->i_mapping;
220 char *vaddr = phys->vaddr;
221 int i;
222
223 for (i = 0; i < obj->base.size / PAGE_SIZE; i++) {
224 struct page *page = shmem_read_mapping_page(mapping, i);
225 if (!IS_ERR(page)) {
226 char *dst = kmap_atomic(page);
227 memcpy(dst, vaddr, PAGE_SIZE);
228 drm_clflush_virt_range(dst, PAGE_SIZE);
229 kunmap_atomic(dst);
230
231 set_page_dirty(page);
232 mark_page_accessed(page);
233 page_cache_release(page);
234 }
235 vaddr += PAGE_SIZE;
236 }
237 i915_gem_chipset_flush(obj->base.dev);
238 }
239
240#ifdef CONFIG_X86
241 set_memory_wb((unsigned long)phys->vaddr, phys->size / PAGE_SIZE);
242#endif
243 drm_pci_free(obj->base.dev, phys);
244 obj->phys_handle = NULL;
245}
246
247int
248i915_gem_object_attach_phys(struct drm_i915_gem_object *obj,
249 int align)
250{
251 drm_dma_handle_t *phys;
252 struct address_space *mapping;
253 char *vaddr;
254 int i;
255
256 if (obj->phys_handle) {
257 if ((unsigned long)obj->phys_handle->vaddr & (align -1))
258 return -EBUSY;
259
260 return 0;
261 }
262
263 if (obj->madv != I915_MADV_WILLNEED)
264 return -EFAULT;
265
266 if (obj->base.filp == NULL)
267 return -EINVAL;
268
269 /* create a new object */
270 phys = drm_pci_alloc(obj->base.dev, obj->base.size, align);
271 if (!phys)
272 return -ENOMEM;
273
274 vaddr = phys->vaddr;
275#ifdef CONFIG_X86
276 set_memory_wc((unsigned long)vaddr, phys->size / PAGE_SIZE);
277#endif
278 mapping = file_inode(obj->base.filp)->i_mapping;
279 for (i = 0; i < obj->base.size / PAGE_SIZE; i++) {
280 struct page *page;
281 char *src;
282
283 page = shmem_read_mapping_page(mapping, i);
284 if (IS_ERR(page)) {
285#ifdef CONFIG_X86
286 set_memory_wb((unsigned long)phys->vaddr, phys->size / PAGE_SIZE);
287#endif
288 drm_pci_free(obj->base.dev, phys);
289 return PTR_ERR(page);
290 }
291
292 src = kmap_atomic(page);
293 memcpy(vaddr, src, PAGE_SIZE);
294 kunmap_atomic(src);
295
296 mark_page_accessed(page);
297 page_cache_release(page);
298
299 vaddr += PAGE_SIZE;
300 }
301
302 obj->phys_handle = phys;
303 return 0;
304}
305
306static int
307i915_gem_phys_pwrite(struct drm_i915_gem_object *obj,
308 struct drm_i915_gem_pwrite *args,
309 struct drm_file *file_priv)
310{
311 struct drm_device *dev = obj->base.dev;
312 void *vaddr = obj->phys_handle->vaddr + args->offset;
313 char __user *user_data = to_user_ptr(args->data_ptr);
314
315 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
316 unsigned long unwritten;
317
318 /* The physical object once assigned is fixed for the lifetime
319 * of the obj, so we can safely drop the lock and continue
320 * to access vaddr.
321 */
322 mutex_unlock(&dev->struct_mutex);
323 unwritten = copy_from_user(vaddr, user_data, args->size);
324 mutex_lock(&dev->struct_mutex);
325 if (unwritten)
326 return -EFAULT;
327 }
328
329 i915_gem_chipset_flush(dev);
330 return 0;
331}
332
Chris Wilson42dcedd2012-11-15 11:32:30 +0000333void *i915_gem_object_alloc(struct drm_device *dev)
334{
335 struct drm_i915_private *dev_priv = dev->dev_private;
Joe Perchesfac15c12013-08-29 13:11:07 -0700336 return kmem_cache_zalloc(dev_priv->slab, GFP_KERNEL);
Chris Wilson42dcedd2012-11-15 11:32:30 +0000337}
338
339void i915_gem_object_free(struct drm_i915_gem_object *obj)
340{
341 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
342 kmem_cache_free(dev_priv->slab, obj);
343}
344
Dave Airlieff72145b2011-02-07 12:16:14 +1000345static int
346i915_gem_create(struct drm_file *file,
347 struct drm_device *dev,
348 uint64_t size,
349 uint32_t *handle_p)
Eric Anholt673a3942008-07-30 12:06:12 -0700350{
Chris Wilson05394f32010-11-08 19:18:58 +0000351 struct drm_i915_gem_object *obj;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300352 int ret;
353 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700354
Dave Airlieff72145b2011-02-07 12:16:14 +1000355 size = roundup(size, PAGE_SIZE);
Chris Wilson8ffc0242011-09-14 14:14:28 +0200356 if (size == 0)
357 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700358
359 /* Allocate the new object */
Dave Airlieff72145b2011-02-07 12:16:14 +1000360 obj = i915_gem_alloc_object(dev, size);
Eric Anholt673a3942008-07-30 12:06:12 -0700361 if (obj == NULL)
362 return -ENOMEM;
363
Chris Wilson05394f32010-11-08 19:18:58 +0000364 ret = drm_gem_handle_create(file, &obj->base, &handle);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100365 /* drop reference from allocate - handle holds it now */
Daniel Vetterd861e332013-07-24 23:25:03 +0200366 drm_gem_object_unreference_unlocked(&obj->base);
367 if (ret)
368 return ret;
Chris Wilson202f2fe2010-10-14 13:20:40 +0100369
Dave Airlieff72145b2011-02-07 12:16:14 +1000370 *handle_p = handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700371 return 0;
372}
373
Dave Airlieff72145b2011-02-07 12:16:14 +1000374int
375i915_gem_dumb_create(struct drm_file *file,
376 struct drm_device *dev,
377 struct drm_mode_create_dumb *args)
378{
379 /* have to work out size/pitch and return them */
Paulo Zanonide45eaf2013-10-18 18:48:24 -0300380 args->pitch = ALIGN(args->width * DIV_ROUND_UP(args->bpp, 8), 64);
Dave Airlieff72145b2011-02-07 12:16:14 +1000381 args->size = args->pitch * args->height;
382 return i915_gem_create(file, dev,
383 args->size, &args->handle);
384}
385
Dave Airlieff72145b2011-02-07 12:16:14 +1000386/**
387 * Creates a new mm object and returns a handle to it.
388 */
389int
390i915_gem_create_ioctl(struct drm_device *dev, void *data,
391 struct drm_file *file)
392{
393 struct drm_i915_gem_create *args = data;
Daniel Vetter63ed2cb2012-04-23 16:50:50 +0200394
Dave Airlieff72145b2011-02-07 12:16:14 +1000395 return i915_gem_create(file, dev,
396 args->size, &args->handle);
397}
398
Daniel Vetter8c599672011-12-14 13:57:31 +0100399static inline int
Daniel Vetter8461d222011-12-14 13:57:32 +0100400__copy_to_user_swizzled(char __user *cpu_vaddr,
401 const char *gpu_vaddr, int gpu_offset,
402 int length)
403{
404 int ret, cpu_offset = 0;
405
406 while (length > 0) {
407 int cacheline_end = ALIGN(gpu_offset + 1, 64);
408 int this_length = min(cacheline_end - gpu_offset, length);
409 int swizzled_gpu_offset = gpu_offset ^ 64;
410
411 ret = __copy_to_user(cpu_vaddr + cpu_offset,
412 gpu_vaddr + swizzled_gpu_offset,
413 this_length);
414 if (ret)
415 return ret + length;
416
417 cpu_offset += this_length;
418 gpu_offset += this_length;
419 length -= this_length;
420 }
421
422 return 0;
423}
424
425static inline int
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700426__copy_from_user_swizzled(char *gpu_vaddr, int gpu_offset,
427 const char __user *cpu_vaddr,
Daniel Vetter8c599672011-12-14 13:57:31 +0100428 int length)
429{
430 int ret, cpu_offset = 0;
431
432 while (length > 0) {
433 int cacheline_end = ALIGN(gpu_offset + 1, 64);
434 int this_length = min(cacheline_end - gpu_offset, length);
435 int swizzled_gpu_offset = gpu_offset ^ 64;
436
437 ret = __copy_from_user(gpu_vaddr + swizzled_gpu_offset,
438 cpu_vaddr + cpu_offset,
439 this_length);
440 if (ret)
441 return ret + length;
442
443 cpu_offset += this_length;
444 gpu_offset += this_length;
445 length -= this_length;
446 }
447
448 return 0;
449}
450
Brad Volkin4c914c02014-02-18 10:15:45 -0800451/*
452 * Pins the specified object's pages and synchronizes the object with
453 * GPU accesses. Sets needs_clflush to non-zero if the caller should
454 * flush the object from the CPU cache.
455 */
456int i915_gem_obj_prepare_shmem_read(struct drm_i915_gem_object *obj,
457 int *needs_clflush)
458{
459 int ret;
460
461 *needs_clflush = 0;
462
463 if (!obj->base.filp)
464 return -EINVAL;
465
466 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU)) {
467 /* If we're not in the cpu read domain, set ourself into the gtt
468 * read domain and manually flush cachelines (if required). This
469 * optimizes for the case when the gpu will dirty the data
470 * anyway again before the next pread happens. */
471 *needs_clflush = !cpu_cache_is_coherent(obj->base.dev,
472 obj->cache_level);
473 ret = i915_gem_object_wait_rendering(obj, true);
474 if (ret)
475 return ret;
Chris Wilsonc8725f32014-03-17 12:21:55 +0000476
477 i915_gem_object_retire(obj);
Brad Volkin4c914c02014-02-18 10:15:45 -0800478 }
479
480 ret = i915_gem_object_get_pages(obj);
481 if (ret)
482 return ret;
483
484 i915_gem_object_pin_pages(obj);
485
486 return ret;
487}
488
Daniel Vetterd174bd62012-03-25 19:47:40 +0200489/* Per-page copy function for the shmem pread fastpath.
490 * Flushes invalid cachelines before reading the target if
491 * needs_clflush is set. */
Eric Anholteb014592009-03-10 11:44:52 -0700492static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200493shmem_pread_fast(struct page *page, int shmem_page_offset, int page_length,
494 char __user *user_data,
495 bool page_do_bit17_swizzling, bool needs_clflush)
496{
497 char *vaddr;
498 int ret;
499
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200500 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200501 return -EINVAL;
502
503 vaddr = kmap_atomic(page);
504 if (needs_clflush)
505 drm_clflush_virt_range(vaddr + shmem_page_offset,
506 page_length);
507 ret = __copy_to_user_inatomic(user_data,
508 vaddr + shmem_page_offset,
509 page_length);
510 kunmap_atomic(vaddr);
511
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100512 return ret ? -EFAULT : 0;
Daniel Vetterd174bd62012-03-25 19:47:40 +0200513}
514
Daniel Vetter23c18c72012-03-25 19:47:42 +0200515static void
516shmem_clflush_swizzled_range(char *addr, unsigned long length,
517 bool swizzled)
518{
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200519 if (unlikely(swizzled)) {
Daniel Vetter23c18c72012-03-25 19:47:42 +0200520 unsigned long start = (unsigned long) addr;
521 unsigned long end = (unsigned long) addr + length;
522
523 /* For swizzling simply ensure that we always flush both
524 * channels. Lame, but simple and it works. Swizzled
525 * pwrite/pread is far from a hotpath - current userspace
526 * doesn't use it at all. */
527 start = round_down(start, 128);
528 end = round_up(end, 128);
529
530 drm_clflush_virt_range((void *)start, end - start);
531 } else {
532 drm_clflush_virt_range(addr, length);
533 }
534
535}
536
Daniel Vetterd174bd62012-03-25 19:47:40 +0200537/* Only difference to the fast-path function is that this can handle bit17
538 * and uses non-atomic copy and kmap functions. */
539static int
540shmem_pread_slow(struct page *page, int shmem_page_offset, int page_length,
541 char __user *user_data,
542 bool page_do_bit17_swizzling, bool needs_clflush)
543{
544 char *vaddr;
545 int ret;
546
547 vaddr = kmap(page);
548 if (needs_clflush)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200549 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
550 page_length,
551 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200552
553 if (page_do_bit17_swizzling)
554 ret = __copy_to_user_swizzled(user_data,
555 vaddr, shmem_page_offset,
556 page_length);
557 else
558 ret = __copy_to_user(user_data,
559 vaddr + shmem_page_offset,
560 page_length);
561 kunmap(page);
562
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100563 return ret ? - EFAULT : 0;
Daniel Vetterd174bd62012-03-25 19:47:40 +0200564}
565
Eric Anholteb014592009-03-10 11:44:52 -0700566static int
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200567i915_gem_shmem_pread(struct drm_device *dev,
568 struct drm_i915_gem_object *obj,
569 struct drm_i915_gem_pread *args,
570 struct drm_file *file)
Eric Anholteb014592009-03-10 11:44:52 -0700571{
Daniel Vetter8461d222011-12-14 13:57:32 +0100572 char __user *user_data;
Eric Anholteb014592009-03-10 11:44:52 -0700573 ssize_t remain;
Daniel Vetter8461d222011-12-14 13:57:32 +0100574 loff_t offset;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100575 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8461d222011-12-14 13:57:32 +0100576 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vetter96d79b52012-03-25 19:47:36 +0200577 int prefaulted = 0;
Daniel Vetter84897312012-03-25 19:47:31 +0200578 int needs_clflush = 0;
Imre Deak67d5a502013-02-18 19:28:02 +0200579 struct sg_page_iter sg_iter;
Eric Anholteb014592009-03-10 11:44:52 -0700580
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200581 user_data = to_user_ptr(args->data_ptr);
Eric Anholteb014592009-03-10 11:44:52 -0700582 remain = args->size;
583
Daniel Vetter8461d222011-12-14 13:57:32 +0100584 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700585
Brad Volkin4c914c02014-02-18 10:15:45 -0800586 ret = i915_gem_obj_prepare_shmem_read(obj, &needs_clflush);
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100587 if (ret)
588 return ret;
589
Eric Anholteb014592009-03-10 11:44:52 -0700590 offset = args->offset;
Daniel Vetter8461d222011-12-14 13:57:32 +0100591
Imre Deak67d5a502013-02-18 19:28:02 +0200592 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents,
593 offset >> PAGE_SHIFT) {
Imre Deak2db76d72013-03-26 15:14:18 +0200594 struct page *page = sg_page_iter_page(&sg_iter);
Chris Wilson9da3da62012-06-01 15:20:22 +0100595
596 if (remain <= 0)
597 break;
598
Eric Anholteb014592009-03-10 11:44:52 -0700599 /* Operation in this page
600 *
Eric Anholteb014592009-03-10 11:44:52 -0700601 * shmem_page_offset = offset within page in shmem file
Eric Anholteb014592009-03-10 11:44:52 -0700602 * page_length = bytes to copy for this page
603 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100604 shmem_page_offset = offset_in_page(offset);
Eric Anholteb014592009-03-10 11:44:52 -0700605 page_length = remain;
606 if ((shmem_page_offset + page_length) > PAGE_SIZE)
607 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholteb014592009-03-10 11:44:52 -0700608
Daniel Vetter8461d222011-12-14 13:57:32 +0100609 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
610 (page_to_phys(page) & (1 << 17)) != 0;
611
Daniel Vetterd174bd62012-03-25 19:47:40 +0200612 ret = shmem_pread_fast(page, shmem_page_offset, page_length,
613 user_data, page_do_bit17_swizzling,
614 needs_clflush);
615 if (ret == 0)
616 goto next_page;
Eric Anholteb014592009-03-10 11:44:52 -0700617
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200618 mutex_unlock(&dev->struct_mutex);
619
Jani Nikulad330a952014-01-21 11:24:25 +0200620 if (likely(!i915.prefault_disable) && !prefaulted) {
Daniel Vetterf56f8212012-03-25 19:47:41 +0200621 ret = fault_in_multipages_writeable(user_data, remain);
Daniel Vetter96d79b52012-03-25 19:47:36 +0200622 /* Userspace is tricking us, but we've already clobbered
623 * its pages with the prefault and promised to write the
624 * data up to the first fault. Hence ignore any errors
625 * and just continue. */
626 (void)ret;
627 prefaulted = 1;
628 }
629
Daniel Vetterd174bd62012-03-25 19:47:40 +0200630 ret = shmem_pread_slow(page, shmem_page_offset, page_length,
631 user_data, page_do_bit17_swizzling,
632 needs_clflush);
Eric Anholteb014592009-03-10 11:44:52 -0700633
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200634 mutex_lock(&dev->struct_mutex);
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100635
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100636 if (ret)
Daniel Vetter8461d222011-12-14 13:57:32 +0100637 goto out;
Daniel Vetter8461d222011-12-14 13:57:32 +0100638
Chris Wilson17793c92014-03-07 08:30:36 +0000639next_page:
Eric Anholteb014592009-03-10 11:44:52 -0700640 remain -= page_length;
Daniel Vetter8461d222011-12-14 13:57:32 +0100641 user_data += page_length;
Eric Anholteb014592009-03-10 11:44:52 -0700642 offset += page_length;
643 }
644
Chris Wilson4f27b752010-10-14 15:26:45 +0100645out:
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100646 i915_gem_object_unpin_pages(obj);
647
Eric Anholteb014592009-03-10 11:44:52 -0700648 return ret;
649}
650
Eric Anholt673a3942008-07-30 12:06:12 -0700651/**
652 * Reads data from the object referenced by handle.
653 *
654 * On error, the contents of *data are undefined.
655 */
656int
657i915_gem_pread_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000658 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700659{
660 struct drm_i915_gem_pread *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000661 struct drm_i915_gem_object *obj;
Chris Wilson35b62a82010-09-26 20:23:38 +0100662 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700663
Chris Wilson51311d02010-11-17 09:10:42 +0000664 if (args->size == 0)
665 return 0;
666
667 if (!access_ok(VERIFY_WRITE,
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200668 to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +0000669 args->size))
670 return -EFAULT;
671
Chris Wilson4f27b752010-10-14 15:26:45 +0100672 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100673 if (ret)
Chris Wilson4f27b752010-10-14 15:26:45 +0100674 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700675
Chris Wilson05394f32010-11-08 19:18:58 +0000676 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000677 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100678 ret = -ENOENT;
679 goto unlock;
Chris Wilson4f27b752010-10-14 15:26:45 +0100680 }
Eric Anholt673a3942008-07-30 12:06:12 -0700681
Chris Wilson7dcd2492010-09-26 20:21:44 +0100682 /* Bounds check source. */
Chris Wilson05394f32010-11-08 19:18:58 +0000683 if (args->offset > obj->base.size ||
684 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100685 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100686 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100687 }
688
Daniel Vetter1286ff72012-05-10 15:25:09 +0200689 /* prime objects have no backing filp to GEM pread/pwrite
690 * pages from.
691 */
692 if (!obj->base.filp) {
693 ret = -EINVAL;
694 goto out;
695 }
696
Chris Wilsondb53a302011-02-03 11:57:46 +0000697 trace_i915_gem_object_pread(obj, args->offset, args->size);
698
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200699 ret = i915_gem_shmem_pread(dev, obj, args, file);
Eric Anholt673a3942008-07-30 12:06:12 -0700700
Chris Wilson35b62a82010-09-26 20:23:38 +0100701out:
Chris Wilson05394f32010-11-08 19:18:58 +0000702 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100703unlock:
Chris Wilson4f27b752010-10-14 15:26:45 +0100704 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700705 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700706}
707
Keith Packard0839ccb2008-10-30 19:38:48 -0700708/* This is the fast write path which cannot handle
709 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700710 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700711
Keith Packard0839ccb2008-10-30 19:38:48 -0700712static inline int
713fast_user_write(struct io_mapping *mapping,
714 loff_t page_base, int page_offset,
715 char __user *user_data,
716 int length)
717{
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700718 void __iomem *vaddr_atomic;
719 void *vaddr;
Keith Packard0839ccb2008-10-30 19:38:48 -0700720 unsigned long unwritten;
721
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700722 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base);
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700723 /* We can use the cpu mem copy function because this is X86. */
724 vaddr = (void __force*)vaddr_atomic + page_offset;
725 unwritten = __copy_from_user_inatomic_nocache(vaddr,
Keith Packard0839ccb2008-10-30 19:38:48 -0700726 user_data, length);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700727 io_mapping_unmap_atomic(vaddr_atomic);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100728 return unwritten;
Keith Packard0839ccb2008-10-30 19:38:48 -0700729}
730
Eric Anholt3de09aa2009-03-09 09:42:23 -0700731/**
732 * This is the fast pwrite path, where we copy the data directly from the
733 * user into the GTT, uncached.
734 */
Eric Anholt673a3942008-07-30 12:06:12 -0700735static int
Chris Wilson05394f32010-11-08 19:18:58 +0000736i915_gem_gtt_pwrite_fast(struct drm_device *dev,
737 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -0700738 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000739 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700740{
Jani Nikula3e31c6c2014-03-31 14:27:16 +0300741 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700742 ssize_t remain;
Keith Packard0839ccb2008-10-30 19:38:48 -0700743 loff_t offset, page_base;
Eric Anholt673a3942008-07-30 12:06:12 -0700744 char __user *user_data;
Daniel Vetter935aaa62012-03-25 19:47:35 +0200745 int page_offset, page_length, ret;
746
Daniel Vetter1ec9e262014-02-14 14:01:11 +0100747 ret = i915_gem_obj_ggtt_pin(obj, 0, PIN_MAPPABLE | PIN_NONBLOCK);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200748 if (ret)
749 goto out;
750
751 ret = i915_gem_object_set_to_gtt_domain(obj, true);
752 if (ret)
753 goto out_unpin;
754
755 ret = i915_gem_object_put_fence(obj);
756 if (ret)
757 goto out_unpin;
Eric Anholt673a3942008-07-30 12:06:12 -0700758
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200759 user_data = to_user_ptr(args->data_ptr);
Eric Anholt673a3942008-07-30 12:06:12 -0700760 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700761
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700762 offset = i915_gem_obj_ggtt_offset(obj) + args->offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700763
764 while (remain > 0) {
765 /* Operation in this page
766 *
Keith Packard0839ccb2008-10-30 19:38:48 -0700767 * page_base = page offset within aperture
768 * page_offset = offset within page
769 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -0700770 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100771 page_base = offset & PAGE_MASK;
772 page_offset = offset_in_page(offset);
Keith Packard0839ccb2008-10-30 19:38:48 -0700773 page_length = remain;
774 if ((page_offset + remain) > PAGE_SIZE)
775 page_length = PAGE_SIZE - page_offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700776
Keith Packard0839ccb2008-10-30 19:38:48 -0700777 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -0700778 * source page isn't available. Return the error and we'll
779 * retry in the slow path.
Keith Packard0839ccb2008-10-30 19:38:48 -0700780 */
Ben Widawsky5d4545a2013-01-17 12:45:15 -0800781 if (fast_user_write(dev_priv->gtt.mappable, page_base,
Daniel Vetter935aaa62012-03-25 19:47:35 +0200782 page_offset, user_data, page_length)) {
783 ret = -EFAULT;
784 goto out_unpin;
785 }
Eric Anholt673a3942008-07-30 12:06:12 -0700786
Keith Packard0839ccb2008-10-30 19:38:48 -0700787 remain -= page_length;
788 user_data += page_length;
789 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700790 }
Eric Anholt673a3942008-07-30 12:06:12 -0700791
Daniel Vetter935aaa62012-03-25 19:47:35 +0200792out_unpin:
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800793 i915_gem_object_ggtt_unpin(obj);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200794out:
Eric Anholt3de09aa2009-03-09 09:42:23 -0700795 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700796}
797
Daniel Vetterd174bd62012-03-25 19:47:40 +0200798/* Per-page copy function for the shmem pwrite fastpath.
799 * Flushes invalid cachelines before writing to the target if
800 * needs_clflush_before is set and flushes out any written cachelines after
801 * writing if needs_clflush is set. */
Eric Anholt673a3942008-07-30 12:06:12 -0700802static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200803shmem_pwrite_fast(struct page *page, int shmem_page_offset, int page_length,
804 char __user *user_data,
805 bool page_do_bit17_swizzling,
806 bool needs_clflush_before,
807 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700808{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200809 char *vaddr;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700810 int ret;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700811
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200812 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200813 return -EINVAL;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700814
Daniel Vetterd174bd62012-03-25 19:47:40 +0200815 vaddr = kmap_atomic(page);
816 if (needs_clflush_before)
817 drm_clflush_virt_range(vaddr + shmem_page_offset,
818 page_length);
Chris Wilsonc2831a92014-03-07 08:30:37 +0000819 ret = __copy_from_user_inatomic(vaddr + shmem_page_offset,
820 user_data, page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200821 if (needs_clflush_after)
822 drm_clflush_virt_range(vaddr + shmem_page_offset,
823 page_length);
824 kunmap_atomic(vaddr);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700825
Chris Wilson755d2212012-09-04 21:02:55 +0100826 return ret ? -EFAULT : 0;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700827}
828
Daniel Vetterd174bd62012-03-25 19:47:40 +0200829/* Only difference to the fast-path function is that this can handle bit17
830 * and uses non-atomic copy and kmap functions. */
Eric Anholt3043c602008-10-02 12:24:47 -0700831static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200832shmem_pwrite_slow(struct page *page, int shmem_page_offset, int page_length,
833 char __user *user_data,
834 bool page_do_bit17_swizzling,
835 bool needs_clflush_before,
836 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700837{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200838 char *vaddr;
839 int ret;
Eric Anholt40123c12009-03-09 13:42:30 -0700840
Daniel Vetterd174bd62012-03-25 19:47:40 +0200841 vaddr = kmap(page);
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200842 if (unlikely(needs_clflush_before || page_do_bit17_swizzling))
Daniel Vetter23c18c72012-03-25 19:47:42 +0200843 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
844 page_length,
845 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200846 if (page_do_bit17_swizzling)
847 ret = __copy_from_user_swizzled(vaddr, shmem_page_offset,
Chris Wilsone5281cc2010-10-28 13:45:36 +0100848 user_data,
849 page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200850 else
851 ret = __copy_from_user(vaddr + shmem_page_offset,
852 user_data,
853 page_length);
854 if (needs_clflush_after)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200855 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
856 page_length,
857 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200858 kunmap(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100859
Chris Wilson755d2212012-09-04 21:02:55 +0100860 return ret ? -EFAULT : 0;
Eric Anholt40123c12009-03-09 13:42:30 -0700861}
862
Eric Anholt40123c12009-03-09 13:42:30 -0700863static int
Daniel Vettere244a442012-03-25 19:47:28 +0200864i915_gem_shmem_pwrite(struct drm_device *dev,
865 struct drm_i915_gem_object *obj,
866 struct drm_i915_gem_pwrite *args,
867 struct drm_file *file)
Eric Anholt40123c12009-03-09 13:42:30 -0700868{
Eric Anholt40123c12009-03-09 13:42:30 -0700869 ssize_t remain;
Daniel Vetter8c599672011-12-14 13:57:31 +0100870 loff_t offset;
871 char __user *user_data;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100872 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8c599672011-12-14 13:57:31 +0100873 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vettere244a442012-03-25 19:47:28 +0200874 int hit_slowpath = 0;
Daniel Vetter58642882012-03-25 19:47:37 +0200875 int needs_clflush_after = 0;
876 int needs_clflush_before = 0;
Imre Deak67d5a502013-02-18 19:28:02 +0200877 struct sg_page_iter sg_iter;
Eric Anholt40123c12009-03-09 13:42:30 -0700878
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200879 user_data = to_user_ptr(args->data_ptr);
Eric Anholt40123c12009-03-09 13:42:30 -0700880 remain = args->size;
881
Daniel Vetter8c599672011-12-14 13:57:31 +0100882 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700883
Daniel Vetter58642882012-03-25 19:47:37 +0200884 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
885 /* If we're not in the cpu write domain, set ourself into the gtt
886 * write domain and manually flush cachelines (if required). This
887 * optimizes for the case when the gpu will use the data
888 * right away and we therefore have to clflush anyway. */
Chris Wilson2c225692013-08-09 12:26:45 +0100889 needs_clflush_after = cpu_write_needs_clflush(obj);
Ben Widawsky23f54482013-09-11 14:57:48 -0700890 ret = i915_gem_object_wait_rendering(obj, false);
891 if (ret)
892 return ret;
Chris Wilsonc8725f32014-03-17 12:21:55 +0000893
894 i915_gem_object_retire(obj);
Daniel Vetter58642882012-03-25 19:47:37 +0200895 }
Chris Wilsonc76ce032013-08-08 14:41:03 +0100896 /* Same trick applies to invalidate partially written cachelines read
897 * before writing. */
898 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0)
899 needs_clflush_before =
900 !cpu_cache_is_coherent(dev, obj->cache_level);
Daniel Vetter58642882012-03-25 19:47:37 +0200901
Chris Wilson755d2212012-09-04 21:02:55 +0100902 ret = i915_gem_object_get_pages(obj);
903 if (ret)
904 return ret;
905
906 i915_gem_object_pin_pages(obj);
907
Eric Anholt40123c12009-03-09 13:42:30 -0700908 offset = args->offset;
Chris Wilson05394f32010-11-08 19:18:58 +0000909 obj->dirty = 1;
Eric Anholt40123c12009-03-09 13:42:30 -0700910
Imre Deak67d5a502013-02-18 19:28:02 +0200911 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents,
912 offset >> PAGE_SHIFT) {
Imre Deak2db76d72013-03-26 15:14:18 +0200913 struct page *page = sg_page_iter_page(&sg_iter);
Daniel Vetter58642882012-03-25 19:47:37 +0200914 int partial_cacheline_write;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100915
Chris Wilson9da3da62012-06-01 15:20:22 +0100916 if (remain <= 0)
917 break;
918
Eric Anholt40123c12009-03-09 13:42:30 -0700919 /* Operation in this page
920 *
Eric Anholt40123c12009-03-09 13:42:30 -0700921 * shmem_page_offset = offset within page in shmem file
Eric Anholt40123c12009-03-09 13:42:30 -0700922 * page_length = bytes to copy for this page
923 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100924 shmem_page_offset = offset_in_page(offset);
Eric Anholt40123c12009-03-09 13:42:30 -0700925
926 page_length = remain;
927 if ((shmem_page_offset + page_length) > PAGE_SIZE)
928 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700929
Daniel Vetter58642882012-03-25 19:47:37 +0200930 /* If we don't overwrite a cacheline completely we need to be
931 * careful to have up-to-date data by first clflushing. Don't
932 * overcomplicate things and flush the entire patch. */
933 partial_cacheline_write = needs_clflush_before &&
934 ((shmem_page_offset | page_length)
935 & (boot_cpu_data.x86_clflush_size - 1));
936
Daniel Vetter8c599672011-12-14 13:57:31 +0100937 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
938 (page_to_phys(page) & (1 << 17)) != 0;
939
Daniel Vetterd174bd62012-03-25 19:47:40 +0200940 ret = shmem_pwrite_fast(page, shmem_page_offset, page_length,
941 user_data, page_do_bit17_swizzling,
942 partial_cacheline_write,
943 needs_clflush_after);
944 if (ret == 0)
945 goto next_page;
Eric Anholt40123c12009-03-09 13:42:30 -0700946
Daniel Vettere244a442012-03-25 19:47:28 +0200947 hit_slowpath = 1;
Daniel Vettere244a442012-03-25 19:47:28 +0200948 mutex_unlock(&dev->struct_mutex);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200949 ret = shmem_pwrite_slow(page, shmem_page_offset, page_length,
950 user_data, page_do_bit17_swizzling,
951 partial_cacheline_write,
952 needs_clflush_after);
Eric Anholt40123c12009-03-09 13:42:30 -0700953
Daniel Vettere244a442012-03-25 19:47:28 +0200954 mutex_lock(&dev->struct_mutex);
Chris Wilson755d2212012-09-04 21:02:55 +0100955
Chris Wilson755d2212012-09-04 21:02:55 +0100956 if (ret)
Daniel Vetter8c599672011-12-14 13:57:31 +0100957 goto out;
Daniel Vetter8c599672011-12-14 13:57:31 +0100958
Chris Wilson17793c92014-03-07 08:30:36 +0000959next_page:
Eric Anholt40123c12009-03-09 13:42:30 -0700960 remain -= page_length;
Daniel Vetter8c599672011-12-14 13:57:31 +0100961 user_data += page_length;
Eric Anholt40123c12009-03-09 13:42:30 -0700962 offset += page_length;
963 }
964
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100965out:
Chris Wilson755d2212012-09-04 21:02:55 +0100966 i915_gem_object_unpin_pages(obj);
967
Daniel Vettere244a442012-03-25 19:47:28 +0200968 if (hit_slowpath) {
Daniel Vetter8dcf0152012-11-15 16:53:58 +0100969 /*
970 * Fixup: Flush cpu caches in case we didn't flush the dirty
971 * cachelines in-line while writing and the object moved
972 * out of the cpu write domain while we've dropped the lock.
973 */
974 if (!needs_clflush_after &&
975 obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
Chris Wilson000433b2013-08-08 14:41:09 +0100976 if (i915_gem_clflush_object(obj, obj->pin_display))
977 i915_gem_chipset_flush(dev);
Daniel Vettere244a442012-03-25 19:47:28 +0200978 }
Daniel Vetter8c599672011-12-14 13:57:31 +0100979 }
Eric Anholt40123c12009-03-09 13:42:30 -0700980
Daniel Vetter58642882012-03-25 19:47:37 +0200981 if (needs_clflush_after)
Ben Widawskye76e9ae2012-11-04 09:21:27 -0800982 i915_gem_chipset_flush(dev);
Daniel Vetter58642882012-03-25 19:47:37 +0200983
Eric Anholt40123c12009-03-09 13:42:30 -0700984 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700985}
986
987/**
988 * Writes data to the object referenced by handle.
989 *
990 * On error, the contents of the buffer that were to be modified are undefined.
991 */
992int
993i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100994 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700995{
996 struct drm_i915_gem_pwrite *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000997 struct drm_i915_gem_object *obj;
Chris Wilson51311d02010-11-17 09:10:42 +0000998 int ret;
999
1000 if (args->size == 0)
1001 return 0;
1002
1003 if (!access_ok(VERIFY_READ,
Ville Syrjälä2bb46292013-02-22 16:12:51 +02001004 to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +00001005 args->size))
1006 return -EFAULT;
1007
Jani Nikulad330a952014-01-21 11:24:25 +02001008 if (likely(!i915.prefault_disable)) {
Xiong Zhang0b74b502013-07-19 13:51:24 +08001009 ret = fault_in_multipages_readable(to_user_ptr(args->data_ptr),
1010 args->size);
1011 if (ret)
1012 return -EFAULT;
1013 }
Eric Anholt673a3942008-07-30 12:06:12 -07001014
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001015 ret = i915_mutex_lock_interruptible(dev);
1016 if (ret)
1017 return ret;
1018
Chris Wilson05394f32010-11-08 19:18:58 +00001019 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001020 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001021 ret = -ENOENT;
1022 goto unlock;
1023 }
Eric Anholt673a3942008-07-30 12:06:12 -07001024
Chris Wilson7dcd2492010-09-26 20:21:44 +01001025 /* Bounds check destination. */
Chris Wilson05394f32010-11-08 19:18:58 +00001026 if (args->offset > obj->base.size ||
1027 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +01001028 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +01001029 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +01001030 }
1031
Daniel Vetter1286ff72012-05-10 15:25:09 +02001032 /* prime objects have no backing filp to GEM pread/pwrite
1033 * pages from.
1034 */
1035 if (!obj->base.filp) {
1036 ret = -EINVAL;
1037 goto out;
1038 }
1039
Chris Wilsondb53a302011-02-03 11:57:46 +00001040 trace_i915_gem_object_pwrite(obj, args->offset, args->size);
1041
Daniel Vetter935aaa62012-03-25 19:47:35 +02001042 ret = -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -07001043 /* We can only do the GTT pwrite on untiled buffers, as otherwise
1044 * it would end up going through the fenced access, and we'll get
1045 * different detiling behavior between reading and writing.
1046 * pread/pwrite currently are reading and writing from the CPU
1047 * perspective, requiring manual detiling by the client.
1048 */
Chris Wilson00731152014-05-21 12:42:56 +01001049 if (obj->phys_handle) {
1050 ret = i915_gem_phys_pwrite(obj, args, file);
Daniel Vetter5c0480f2011-12-14 13:57:30 +01001051 goto out;
1052 }
1053
Chris Wilson2c225692013-08-09 12:26:45 +01001054 if (obj->tiling_mode == I915_TILING_NONE &&
1055 obj->base.write_domain != I915_GEM_DOMAIN_CPU &&
1056 cpu_write_needs_clflush(obj)) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001057 ret = i915_gem_gtt_pwrite_fast(dev, obj, args, file);
Daniel Vetter935aaa62012-03-25 19:47:35 +02001058 /* Note that the gtt paths might fail with non-page-backed user
1059 * pointers (e.g. gtt mappings when moving data between
1060 * textures). Fallback to the shmem path in that case. */
Eric Anholt40123c12009-03-09 13:42:30 -07001061 }
Eric Anholt673a3942008-07-30 12:06:12 -07001062
Chris Wilson86a1ee22012-08-11 15:41:04 +01001063 if (ret == -EFAULT || ret == -ENOSPC)
Daniel Vetter935aaa62012-03-25 19:47:35 +02001064 ret = i915_gem_shmem_pwrite(dev, obj, args, file);
Daniel Vetter5c0480f2011-12-14 13:57:30 +01001065
Chris Wilson35b62a82010-09-26 20:23:38 +01001066out:
Chris Wilson05394f32010-11-08 19:18:58 +00001067 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001068unlock:
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001069 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07001070 return ret;
1071}
1072
Chris Wilsonb3612372012-08-24 09:35:08 +01001073int
Daniel Vetter33196de2012-11-14 17:14:05 +01001074i915_gem_check_wedge(struct i915_gpu_error *error,
Chris Wilsonb3612372012-08-24 09:35:08 +01001075 bool interruptible)
1076{
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001077 if (i915_reset_in_progress(error)) {
Chris Wilsonb3612372012-08-24 09:35:08 +01001078 /* Non-interruptible callers can't handle -EAGAIN, hence return
1079 * -EIO unconditionally for these. */
1080 if (!interruptible)
1081 return -EIO;
1082
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001083 /* Recovery complete, but the reset failed ... */
1084 if (i915_terminally_wedged(error))
Chris Wilsonb3612372012-08-24 09:35:08 +01001085 return -EIO;
1086
McAulay, Alistair6689c162014-08-15 18:51:35 +01001087 /*
1088 * Check if GPU Reset is in progress - we need intel_ring_begin
1089 * to work properly to reinit the hw state while the gpu is
1090 * still marked as reset-in-progress. Handle this with a flag.
1091 */
1092 if (!error->reload_in_reset)
1093 return -EAGAIN;
Chris Wilsonb3612372012-08-24 09:35:08 +01001094 }
1095
1096 return 0;
1097}
1098
1099/*
1100 * Compare seqno against outstanding lazy request. Emit a request if they are
1101 * equal.
1102 */
Sourab Gupta84c33a62014-06-02 16:47:17 +05301103int
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001104i915_gem_check_olr(struct intel_engine_cs *ring, u32 seqno)
Chris Wilsonb3612372012-08-24 09:35:08 +01001105{
1106 int ret;
1107
1108 BUG_ON(!mutex_is_locked(&ring->dev->struct_mutex));
1109
1110 ret = 0;
Chris Wilson18235212013-09-04 10:45:51 +01001111 if (seqno == ring->outstanding_lazy_seqno)
Mika Kuoppala0025c072013-06-12 12:35:30 +03001112 ret = i915_add_request(ring, NULL);
Chris Wilsonb3612372012-08-24 09:35:08 +01001113
1114 return ret;
1115}
1116
Chris Wilson094f9a52013-09-25 17:34:55 +01001117static void fake_irq(unsigned long data)
1118{
1119 wake_up_process((struct task_struct *)data);
1120}
1121
1122static bool missed_irq(struct drm_i915_private *dev_priv,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001123 struct intel_engine_cs *ring)
Chris Wilson094f9a52013-09-25 17:34:55 +01001124{
1125 return test_bit(ring->id, &dev_priv->gpu_error.missed_irq_rings);
1126}
1127
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001128static bool can_wait_boost(struct drm_i915_file_private *file_priv)
1129{
1130 if (file_priv == NULL)
1131 return true;
1132
1133 return !atomic_xchg(&file_priv->rps_wait_boost, true);
1134}
1135
Chris Wilsonb3612372012-08-24 09:35:08 +01001136/**
1137 * __wait_seqno - wait until execution of seqno has finished
1138 * @ring: the ring expected to report seqno
1139 * @seqno: duh!
Daniel Vetterf69061b2012-12-06 09:01:42 +01001140 * @reset_counter: reset sequence associated with the given seqno
Chris Wilsonb3612372012-08-24 09:35:08 +01001141 * @interruptible: do an interruptible wait (normally yes)
1142 * @timeout: in - how long to wait (NULL forever); out - how much time remaining
1143 *
Daniel Vetterf69061b2012-12-06 09:01:42 +01001144 * Note: It is of utmost importance that the passed in seqno and reset_counter
1145 * values have been read by the caller in an smp safe manner. Where read-side
1146 * locks are involved, it is sufficient to read the reset_counter before
1147 * unlocking the lock that protects the seqno. For lockless tricks, the
1148 * reset_counter _must_ be read before, and an appropriate smp_rmb must be
1149 * inserted.
1150 *
Chris Wilsonb3612372012-08-24 09:35:08 +01001151 * Returns 0 if the seqno was found within the alloted time. Else returns the
1152 * errno with remaining time filled in timeout argument.
1153 */
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001154static int __wait_seqno(struct intel_engine_cs *ring, u32 seqno,
Daniel Vetterf69061b2012-12-06 09:01:42 +01001155 unsigned reset_counter,
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001156 bool interruptible,
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001157 s64 *timeout,
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001158 struct drm_i915_file_private *file_priv)
Chris Wilsonb3612372012-08-24 09:35:08 +01001159{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001160 struct drm_device *dev = ring->dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03001161 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001162 const bool irq_test_in_progress =
1163 ACCESS_ONCE(dev_priv->gpu_error.test_irq_rings) & intel_ring_flag(ring);
Chris Wilson094f9a52013-09-25 17:34:55 +01001164 DEFINE_WAIT(wait);
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001165 unsigned long timeout_expire;
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001166 s64 before, now;
Chris Wilsonb3612372012-08-24 09:35:08 +01001167 int ret;
1168
Jesse Barnes9df7575f2014-06-20 09:29:20 -07001169 WARN(!intel_irqs_enabled(dev_priv), "IRQs disabled");
Paulo Zanonic67a4702013-08-19 13:18:09 -03001170
Chris Wilsonb3612372012-08-24 09:35:08 +01001171 if (i915_seqno_passed(ring->get_seqno(ring, true), seqno))
1172 return 0;
1173
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001174 timeout_expire = timeout ? jiffies + nsecs_to_jiffies((u64)*timeout) : 0;
Chris Wilsonb3612372012-08-24 09:35:08 +01001175
Chris Wilsonec5cc0f2014-06-12 10:28:55 +01001176 if (INTEL_INFO(dev)->gen >= 6 && ring->id == RCS && can_wait_boost(file_priv)) {
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001177 gen6_rps_boost(dev_priv);
1178 if (file_priv)
1179 mod_delayed_work(dev_priv->wq,
1180 &file_priv->mm.idle_work,
1181 msecs_to_jiffies(100));
1182 }
1183
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001184 if (!irq_test_in_progress && WARN_ON(!ring->irq_get(ring)))
Chris Wilsonb3612372012-08-24 09:35:08 +01001185 return -ENODEV;
1186
Chris Wilson094f9a52013-09-25 17:34:55 +01001187 /* Record current time in case interrupted by signal, or wedged */
1188 trace_i915_gem_request_wait_begin(ring, seqno);
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001189 before = ktime_get_raw_ns();
Chris Wilson094f9a52013-09-25 17:34:55 +01001190 for (;;) {
1191 struct timer_list timer;
Chris Wilsonb3612372012-08-24 09:35:08 +01001192
Chris Wilson094f9a52013-09-25 17:34:55 +01001193 prepare_to_wait(&ring->irq_queue, &wait,
1194 interruptible ? TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE);
Chris Wilsonb3612372012-08-24 09:35:08 +01001195
Daniel Vetterf69061b2012-12-06 09:01:42 +01001196 /* We need to check whether any gpu reset happened in between
1197 * the caller grabbing the seqno and now ... */
Chris Wilson094f9a52013-09-25 17:34:55 +01001198 if (reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter)) {
1199 /* ... but upgrade the -EAGAIN to an -EIO if the gpu
1200 * is truely gone. */
1201 ret = i915_gem_check_wedge(&dev_priv->gpu_error, interruptible);
1202 if (ret == 0)
1203 ret = -EAGAIN;
1204 break;
1205 }
Daniel Vetterf69061b2012-12-06 09:01:42 +01001206
Chris Wilson094f9a52013-09-25 17:34:55 +01001207 if (i915_seqno_passed(ring->get_seqno(ring, false), seqno)) {
1208 ret = 0;
1209 break;
1210 }
Chris Wilsonb3612372012-08-24 09:35:08 +01001211
Chris Wilson094f9a52013-09-25 17:34:55 +01001212 if (interruptible && signal_pending(current)) {
1213 ret = -ERESTARTSYS;
1214 break;
1215 }
1216
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001217 if (timeout && time_after_eq(jiffies, timeout_expire)) {
Chris Wilson094f9a52013-09-25 17:34:55 +01001218 ret = -ETIME;
1219 break;
1220 }
1221
1222 timer.function = NULL;
1223 if (timeout || missed_irq(dev_priv, ring)) {
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001224 unsigned long expire;
1225
Chris Wilson094f9a52013-09-25 17:34:55 +01001226 setup_timer_on_stack(&timer, fake_irq, (unsigned long)current);
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001227 expire = missed_irq(dev_priv, ring) ? jiffies + 1 : timeout_expire;
Chris Wilson094f9a52013-09-25 17:34:55 +01001228 mod_timer(&timer, expire);
1229 }
1230
Chris Wilson5035c272013-10-04 09:58:46 +01001231 io_schedule();
Chris Wilson094f9a52013-09-25 17:34:55 +01001232
Chris Wilson094f9a52013-09-25 17:34:55 +01001233 if (timer.function) {
1234 del_singleshot_timer_sync(&timer);
1235 destroy_timer_on_stack(&timer);
1236 }
1237 }
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001238 now = ktime_get_raw_ns();
Chris Wilson094f9a52013-09-25 17:34:55 +01001239 trace_i915_gem_request_wait_end(ring, seqno);
Chris Wilsonb3612372012-08-24 09:35:08 +01001240
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001241 if (!irq_test_in_progress)
1242 ring->irq_put(ring);
Chris Wilson094f9a52013-09-25 17:34:55 +01001243
1244 finish_wait(&ring->irq_queue, &wait);
Chris Wilsonb3612372012-08-24 09:35:08 +01001245
1246 if (timeout) {
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001247 s64 tres = *timeout - (now - before);
1248
1249 *timeout = tres < 0 ? 0 : tres;
Chris Wilsonb3612372012-08-24 09:35:08 +01001250 }
1251
Chris Wilson094f9a52013-09-25 17:34:55 +01001252 return ret;
Chris Wilsonb3612372012-08-24 09:35:08 +01001253}
1254
1255/**
1256 * Waits for a sequence number to be signaled, and cleans up the
1257 * request and object lists appropriately for that event.
1258 */
1259int
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001260i915_wait_seqno(struct intel_engine_cs *ring, uint32_t seqno)
Chris Wilsonb3612372012-08-24 09:35:08 +01001261{
1262 struct drm_device *dev = ring->dev;
1263 struct drm_i915_private *dev_priv = dev->dev_private;
1264 bool interruptible = dev_priv->mm.interruptible;
1265 int ret;
1266
1267 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
1268 BUG_ON(seqno == 0);
1269
Daniel Vetter33196de2012-11-14 17:14:05 +01001270 ret = i915_gem_check_wedge(&dev_priv->gpu_error, interruptible);
Chris Wilsonb3612372012-08-24 09:35:08 +01001271 if (ret)
1272 return ret;
1273
1274 ret = i915_gem_check_olr(ring, seqno);
1275 if (ret)
1276 return ret;
1277
Daniel Vetterf69061b2012-12-06 09:01:42 +01001278 return __wait_seqno(ring, seqno,
1279 atomic_read(&dev_priv->gpu_error.reset_counter),
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001280 interruptible, NULL, NULL);
Chris Wilsonb3612372012-08-24 09:35:08 +01001281}
1282
Chris Wilsond26e3af2013-06-29 22:05:26 +01001283static int
1284i915_gem_object_wait_rendering__tail(struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001285 struct intel_engine_cs *ring)
Chris Wilsond26e3af2013-06-29 22:05:26 +01001286{
Chris Wilsonc8725f32014-03-17 12:21:55 +00001287 if (!obj->active)
1288 return 0;
Chris Wilsond26e3af2013-06-29 22:05:26 +01001289
1290 /* Manually manage the write flush as we may have not yet
1291 * retired the buffer.
1292 *
1293 * Note that the last_write_seqno is always the earlier of
1294 * the two (read/write) seqno, so if we haved successfully waited,
1295 * we know we have passed the last write.
1296 */
1297 obj->last_write_seqno = 0;
Chris Wilsond26e3af2013-06-29 22:05:26 +01001298
1299 return 0;
1300}
1301
Chris Wilsonb3612372012-08-24 09:35:08 +01001302/**
1303 * Ensures that all rendering to the object has completed and the object is
1304 * safe to unbind from the GTT or access from the CPU.
1305 */
1306static __must_check int
1307i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj,
1308 bool readonly)
1309{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001310 struct intel_engine_cs *ring = obj->ring;
Chris Wilsonb3612372012-08-24 09:35:08 +01001311 u32 seqno;
1312 int ret;
1313
1314 seqno = readonly ? obj->last_write_seqno : obj->last_read_seqno;
1315 if (seqno == 0)
1316 return 0;
1317
1318 ret = i915_wait_seqno(ring, seqno);
1319 if (ret)
1320 return ret;
1321
Chris Wilsond26e3af2013-06-29 22:05:26 +01001322 return i915_gem_object_wait_rendering__tail(obj, ring);
Chris Wilsonb3612372012-08-24 09:35:08 +01001323}
1324
Chris Wilson3236f572012-08-24 09:35:09 +01001325/* A nonblocking variant of the above wait. This is a highly dangerous routine
1326 * as the object state may change during this call.
1327 */
1328static __must_check int
1329i915_gem_object_wait_rendering__nonblocking(struct drm_i915_gem_object *obj,
Chris Wilson6e4930f2014-02-07 18:37:06 -02001330 struct drm_i915_file_private *file_priv,
Chris Wilson3236f572012-08-24 09:35:09 +01001331 bool readonly)
1332{
1333 struct drm_device *dev = obj->base.dev;
1334 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001335 struct intel_engine_cs *ring = obj->ring;
Daniel Vetterf69061b2012-12-06 09:01:42 +01001336 unsigned reset_counter;
Chris Wilson3236f572012-08-24 09:35:09 +01001337 u32 seqno;
1338 int ret;
1339
1340 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
1341 BUG_ON(!dev_priv->mm.interruptible);
1342
1343 seqno = readonly ? obj->last_write_seqno : obj->last_read_seqno;
1344 if (seqno == 0)
1345 return 0;
1346
Daniel Vetter33196de2012-11-14 17:14:05 +01001347 ret = i915_gem_check_wedge(&dev_priv->gpu_error, true);
Chris Wilson3236f572012-08-24 09:35:09 +01001348 if (ret)
1349 return ret;
1350
1351 ret = i915_gem_check_olr(ring, seqno);
1352 if (ret)
1353 return ret;
1354
Daniel Vetterf69061b2012-12-06 09:01:42 +01001355 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilson3236f572012-08-24 09:35:09 +01001356 mutex_unlock(&dev->struct_mutex);
Chris Wilson6e4930f2014-02-07 18:37:06 -02001357 ret = __wait_seqno(ring, seqno, reset_counter, true, NULL, file_priv);
Chris Wilson3236f572012-08-24 09:35:09 +01001358 mutex_lock(&dev->struct_mutex);
Chris Wilsond26e3af2013-06-29 22:05:26 +01001359 if (ret)
1360 return ret;
Chris Wilson3236f572012-08-24 09:35:09 +01001361
Chris Wilsond26e3af2013-06-29 22:05:26 +01001362 return i915_gem_object_wait_rendering__tail(obj, ring);
Chris Wilson3236f572012-08-24 09:35:09 +01001363}
1364
Eric Anholt673a3942008-07-30 12:06:12 -07001365/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001366 * Called when user space prepares to use an object with the CPU, either
1367 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -07001368 */
1369int
1370i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001371 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001372{
1373 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001374 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001375 uint32_t read_domains = args->read_domains;
1376 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07001377 int ret;
1378
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001379 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +01001380 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001381 return -EINVAL;
1382
Chris Wilson21d509e2009-06-06 09:46:02 +01001383 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001384 return -EINVAL;
1385
1386 /* Having something in the write domain implies it's in the read
1387 * domain, and only that read domain. Enforce that in the request.
1388 */
1389 if (write_domain != 0 && read_domains != write_domain)
1390 return -EINVAL;
1391
Chris Wilson76c1dec2010-09-25 11:22:51 +01001392 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001393 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001394 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001395
Chris Wilson05394f32010-11-08 19:18:58 +00001396 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001397 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001398 ret = -ENOENT;
1399 goto unlock;
Chris Wilson76c1dec2010-09-25 11:22:51 +01001400 }
Jesse Barnes652c3932009-08-17 13:31:43 -07001401
Chris Wilson3236f572012-08-24 09:35:09 +01001402 /* Try to flush the object off the GPU without holding the lock.
1403 * We will repeat the flush holding the lock in the normal manner
1404 * to catch cases where we are gazumped.
1405 */
Chris Wilson6e4930f2014-02-07 18:37:06 -02001406 ret = i915_gem_object_wait_rendering__nonblocking(obj,
1407 file->driver_priv,
1408 !write_domain);
Chris Wilson3236f572012-08-24 09:35:09 +01001409 if (ret)
1410 goto unref;
1411
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001412 if (read_domains & I915_GEM_DOMAIN_GTT) {
1413 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Eric Anholt02354392008-11-26 13:58:13 -08001414
1415 /* Silently promote "you're not bound, there was nothing to do"
1416 * to success, since the client was just asking us to
1417 * make sure everything was done.
1418 */
1419 if (ret == -EINVAL)
1420 ret = 0;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001421 } else {
Eric Anholte47c68e2008-11-14 13:35:19 -08001422 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001423 }
1424
Chris Wilson3236f572012-08-24 09:35:09 +01001425unref:
Chris Wilson05394f32010-11-08 19:18:58 +00001426 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001427unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001428 mutex_unlock(&dev->struct_mutex);
1429 return ret;
1430}
1431
1432/**
1433 * Called when user space has done writes to this buffer
1434 */
1435int
1436i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001437 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001438{
1439 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001440 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001441 int ret = 0;
1442
Chris Wilson76c1dec2010-09-25 11:22:51 +01001443 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001444 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001445 return ret;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001446
Chris Wilson05394f32010-11-08 19:18:58 +00001447 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001448 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001449 ret = -ENOENT;
1450 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07001451 }
1452
Eric Anholt673a3942008-07-30 12:06:12 -07001453 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilson2c225692013-08-09 12:26:45 +01001454 if (obj->pin_display)
1455 i915_gem_object_flush_cpu_write_domain(obj, true);
Eric Anholte47c68e2008-11-14 13:35:19 -08001456
Chris Wilson05394f32010-11-08 19:18:58 +00001457 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001458unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001459 mutex_unlock(&dev->struct_mutex);
1460 return ret;
1461}
1462
1463/**
1464 * Maps the contents of an object, returning the address it is mapped
1465 * into.
1466 *
1467 * While the mapping holds a reference on the contents of the object, it doesn't
1468 * imply a ref on the object itself.
1469 */
1470int
1471i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001472 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001473{
1474 struct drm_i915_gem_mmap *args = data;
1475 struct drm_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001476 unsigned long addr;
1477
Chris Wilson05394f32010-11-08 19:18:58 +00001478 obj = drm_gem_object_lookup(dev, file, args->handle);
Eric Anholt673a3942008-07-30 12:06:12 -07001479 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001480 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001481
Daniel Vetter1286ff72012-05-10 15:25:09 +02001482 /* prime objects have no backing filp to GEM mmap
1483 * pages from.
1484 */
1485 if (!obj->filp) {
1486 drm_gem_object_unreference_unlocked(obj);
1487 return -EINVAL;
1488 }
1489
Linus Torvalds6be5ceb2012-04-20 17:13:58 -07001490 addr = vm_mmap(obj->filp, 0, args->size,
Eric Anholt673a3942008-07-30 12:06:12 -07001491 PROT_READ | PROT_WRITE, MAP_SHARED,
1492 args->offset);
Luca Barbieribc9025b2010-02-09 05:49:12 +00001493 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001494 if (IS_ERR((void *)addr))
1495 return addr;
1496
1497 args->addr_ptr = (uint64_t) addr;
1498
1499 return 0;
1500}
1501
Jesse Barnesde151cf2008-11-12 10:03:55 -08001502/**
1503 * i915_gem_fault - fault a page into the GTT
1504 * vma: VMA in question
1505 * vmf: fault info
1506 *
1507 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1508 * from userspace. The fault handler takes care of binding the object to
1509 * the GTT (if needed), allocating and programming a fence register (again,
1510 * only if needed based on whether the old reg is still valid or the object
1511 * is tiled) and inserting a new PTE into the faulting process.
1512 *
1513 * Note that the faulting process may involve evicting existing objects
1514 * from the GTT and/or fence registers to make room. So performance may
1515 * suffer if the GTT working set is large or there are few fence registers
1516 * left.
1517 */
1518int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1519{
Chris Wilson05394f32010-11-08 19:18:58 +00001520 struct drm_i915_gem_object *obj = to_intel_bo(vma->vm_private_data);
1521 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03001522 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001523 pgoff_t page_offset;
1524 unsigned long pfn;
1525 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001526 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001527
Paulo Zanonif65c9162013-11-27 18:20:34 -02001528 intel_runtime_pm_get(dev_priv);
1529
Jesse Barnesde151cf2008-11-12 10:03:55 -08001530 /* We don't use vmf->pgoff since that has the fake offset */
1531 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1532 PAGE_SHIFT;
1533
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001534 ret = i915_mutex_lock_interruptible(dev);
1535 if (ret)
1536 goto out;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001537
Chris Wilsondb53a302011-02-03 11:57:46 +00001538 trace_i915_gem_object_fault(obj, page_offset, true, write);
1539
Chris Wilson6e4930f2014-02-07 18:37:06 -02001540 /* Try to flush the object off the GPU first without holding the lock.
1541 * Upon reacquiring the lock, we will perform our sanity checks and then
1542 * repeat the flush holding the lock in the normal manner to catch cases
1543 * where we are gazumped.
1544 */
1545 ret = i915_gem_object_wait_rendering__nonblocking(obj, NULL, !write);
1546 if (ret)
1547 goto unlock;
1548
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001549 /* Access to snoopable pages through the GTT is incoherent. */
1550 if (obj->cache_level != I915_CACHE_NONE && !HAS_LLC(dev)) {
Chris Wilsonddeff6e2014-05-28 16:16:41 +01001551 ret = -EFAULT;
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001552 goto unlock;
1553 }
1554
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001555 /* Now bind it into the GTT if needed */
Daniel Vetter1ec9e262014-02-14 14:01:11 +01001556 ret = i915_gem_obj_ggtt_pin(obj, 0, PIN_MAPPABLE);
Chris Wilsond9e86c02010-11-10 16:40:20 +00001557 if (ret)
1558 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001559
Chris Wilsonc9839302012-11-20 10:45:17 +00001560 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1561 if (ret)
1562 goto unpin;
1563
1564 ret = i915_gem_object_get_fence(obj);
1565 if (ret)
1566 goto unpin;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001567
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001568 /* Finally, remap it using the new GTT offset */
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001569 pfn = dev_priv->gtt.mappable_base + i915_gem_obj_ggtt_offset(obj);
1570 pfn >>= PAGE_SHIFT;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001571
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001572 if (!obj->fault_mappable) {
Ville Syrjäläbeff0d02014-06-17 21:03:00 +03001573 unsigned long size = min_t(unsigned long,
1574 vma->vm_end - vma->vm_start,
1575 obj->base.size);
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001576 int i;
1577
Ville Syrjäläbeff0d02014-06-17 21:03:00 +03001578 for (i = 0; i < size >> PAGE_SHIFT; i++) {
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001579 ret = vm_insert_pfn(vma,
1580 (unsigned long)vma->vm_start + i * PAGE_SIZE,
1581 pfn + i);
1582 if (ret)
1583 break;
1584 }
1585
1586 obj->fault_mappable = true;
1587 } else
1588 ret = vm_insert_pfn(vma,
1589 (unsigned long)vmf->virtual_address,
1590 pfn + page_offset);
Chris Wilsonc9839302012-11-20 10:45:17 +00001591unpin:
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08001592 i915_gem_object_ggtt_unpin(obj);
Chris Wilsonc7150892009-09-23 00:43:56 +01001593unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001594 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001595out:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001596 switch (ret) {
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001597 case -EIO:
Daniel Vetter2232f032014-09-04 09:36:18 +02001598 /*
1599 * We eat errors when the gpu is terminally wedged to avoid
1600 * userspace unduly crashing (gl has no provisions for mmaps to
1601 * fail). But any other -EIO isn't ours (e.g. swap in failure)
1602 * and so needs to be reported.
1603 */
1604 if (!i915_terminally_wedged(&dev_priv->gpu_error)) {
Paulo Zanonif65c9162013-11-27 18:20:34 -02001605 ret = VM_FAULT_SIGBUS;
1606 break;
1607 }
Chris Wilson045e7692010-11-07 09:18:22 +00001608 case -EAGAIN:
Daniel Vetter571c6082013-09-12 17:57:28 +02001609 /*
1610 * EAGAIN means the gpu is hung and we'll wait for the error
1611 * handler to reset everything when re-faulting in
1612 * i915_mutex_lock_interruptible.
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001613 */
Chris Wilsonc7150892009-09-23 00:43:56 +01001614 case 0:
1615 case -ERESTARTSYS:
Chris Wilsonbed636a2011-02-11 20:31:19 +00001616 case -EINTR:
Dmitry Rogozhkine79e0fe2012-10-03 17:15:26 +03001617 case -EBUSY:
1618 /*
1619 * EBUSY is ok: this just means that another thread
1620 * already did the job.
1621 */
Paulo Zanonif65c9162013-11-27 18:20:34 -02001622 ret = VM_FAULT_NOPAGE;
1623 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001624 case -ENOMEM:
Paulo Zanonif65c9162013-11-27 18:20:34 -02001625 ret = VM_FAULT_OOM;
1626 break;
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001627 case -ENOSPC:
Chris Wilson45d67812014-01-31 11:34:57 +00001628 case -EFAULT:
Paulo Zanonif65c9162013-11-27 18:20:34 -02001629 ret = VM_FAULT_SIGBUS;
1630 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001631 default:
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001632 WARN_ONCE(ret, "unhandled error in i915_gem_fault: %i\n", ret);
Paulo Zanonif65c9162013-11-27 18:20:34 -02001633 ret = VM_FAULT_SIGBUS;
1634 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001635 }
Paulo Zanonif65c9162013-11-27 18:20:34 -02001636
1637 intel_runtime_pm_put(dev_priv);
1638 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001639}
1640
1641/**
Chris Wilson901782b2009-07-10 08:18:50 +01001642 * i915_gem_release_mmap - remove physical page mappings
1643 * @obj: obj in question
1644 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001645 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001646 * relinquish ownership of the pages back to the system.
1647 *
1648 * It is vital that we remove the page mapping if we have mapped a tiled
1649 * object through the GTT and then lose the fence register due to
1650 * resource pressure. Similarly if the object has been moved out of the
1651 * aperture, than pages mapped into userspace must be revoked. Removing the
1652 * mapping will then trigger a page fault on the next user access, allowing
1653 * fixup by i915_gem_fault().
1654 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001655void
Chris Wilson05394f32010-11-08 19:18:58 +00001656i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01001657{
Chris Wilson6299f992010-11-24 12:23:44 +00001658 if (!obj->fault_mappable)
1659 return;
Chris Wilson901782b2009-07-10 08:18:50 +01001660
David Herrmann6796cb12014-01-03 14:24:19 +01001661 drm_vma_node_unmap(&obj->base.vma_node,
1662 obj->base.dev->anon_inode->i_mapping);
Chris Wilson6299f992010-11-24 12:23:44 +00001663 obj->fault_mappable = false;
Chris Wilson901782b2009-07-10 08:18:50 +01001664}
1665
Chris Wilsoneedd10f2014-06-16 08:57:44 +01001666void
1667i915_gem_release_all_mmaps(struct drm_i915_private *dev_priv)
1668{
1669 struct drm_i915_gem_object *obj;
1670
1671 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list)
1672 i915_gem_release_mmap(obj);
1673}
1674
Imre Deak0fa87792013-01-07 21:47:35 +02001675uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001676i915_gem_get_gtt_size(struct drm_device *dev, uint32_t size, int tiling_mode)
Chris Wilson92b88ae2010-11-09 11:47:32 +00001677{
Chris Wilsone28f8712011-07-18 13:11:49 -07001678 uint32_t gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001679
1680 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001681 tiling_mode == I915_TILING_NONE)
1682 return size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001683
1684 /* Previous chips need a power-of-two fence region when tiling */
1685 if (INTEL_INFO(dev)->gen == 3)
Chris Wilsone28f8712011-07-18 13:11:49 -07001686 gtt_size = 1024*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001687 else
Chris Wilsone28f8712011-07-18 13:11:49 -07001688 gtt_size = 512*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001689
Chris Wilsone28f8712011-07-18 13:11:49 -07001690 while (gtt_size < size)
1691 gtt_size <<= 1;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001692
Chris Wilsone28f8712011-07-18 13:11:49 -07001693 return gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001694}
1695
Jesse Barnesde151cf2008-11-12 10:03:55 -08001696/**
1697 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1698 * @obj: object to check
1699 *
1700 * Return the required GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01001701 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08001702 */
Imre Deakd8651102013-01-07 21:47:33 +02001703uint32_t
1704i915_gem_get_gtt_alignment(struct drm_device *dev, uint32_t size,
1705 int tiling_mode, bool fenced)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001706{
Jesse Barnesde151cf2008-11-12 10:03:55 -08001707 /*
1708 * Minimum alignment is 4k (GTT page size), but might be greater
1709 * if a fence register is needed for the object.
1710 */
Imre Deakd8651102013-01-07 21:47:33 +02001711 if (INTEL_INFO(dev)->gen >= 4 || (!fenced && IS_G33(dev)) ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001712 tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001713 return 4096;
1714
1715 /*
1716 * Previous chips need to be aligned to the size of the smallest
1717 * fence register that can contain the object.
1718 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001719 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01001720}
1721
Chris Wilsond8cb5082012-08-11 15:41:03 +01001722static int i915_gem_object_create_mmap_offset(struct drm_i915_gem_object *obj)
1723{
1724 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
1725 int ret;
1726
David Herrmann0de23972013-07-24 21:07:52 +02001727 if (drm_vma_node_has_offset(&obj->base.vma_node))
Chris Wilsond8cb5082012-08-11 15:41:03 +01001728 return 0;
1729
Daniel Vetterda494d72012-12-20 15:11:16 +01001730 dev_priv->mm.shrinker_no_lock_stealing = true;
1731
Chris Wilsond8cb5082012-08-11 15:41:03 +01001732 ret = drm_gem_create_mmap_offset(&obj->base);
1733 if (ret != -ENOSPC)
Daniel Vetterda494d72012-12-20 15:11:16 +01001734 goto out;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001735
1736 /* Badly fragmented mmap space? The only way we can recover
1737 * space is by destroying unwanted objects. We can't randomly release
1738 * mmap_offsets as userspace expects them to be persistent for the
1739 * lifetime of the objects. The closest we can is to release the
1740 * offsets on purgeable objects by truncating it and marking it purged,
1741 * which prevents userspace from ever using that object again.
1742 */
Chris Wilson21ab4e72014-09-09 11:16:08 +01001743 i915_gem_shrink(dev_priv,
1744 obj->base.size >> PAGE_SHIFT,
1745 I915_SHRINK_BOUND |
1746 I915_SHRINK_UNBOUND |
1747 I915_SHRINK_PURGEABLE);
Chris Wilsond8cb5082012-08-11 15:41:03 +01001748 ret = drm_gem_create_mmap_offset(&obj->base);
1749 if (ret != -ENOSPC)
Daniel Vetterda494d72012-12-20 15:11:16 +01001750 goto out;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001751
1752 i915_gem_shrink_all(dev_priv);
Daniel Vetterda494d72012-12-20 15:11:16 +01001753 ret = drm_gem_create_mmap_offset(&obj->base);
1754out:
1755 dev_priv->mm.shrinker_no_lock_stealing = false;
1756
1757 return ret;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001758}
1759
1760static void i915_gem_object_free_mmap_offset(struct drm_i915_gem_object *obj)
1761{
Chris Wilsond8cb5082012-08-11 15:41:03 +01001762 drm_gem_free_mmap_offset(&obj->base);
1763}
1764
Jesse Barnesde151cf2008-11-12 10:03:55 -08001765int
Dave Airlieff72145b2011-02-07 12:16:14 +10001766i915_gem_mmap_gtt(struct drm_file *file,
1767 struct drm_device *dev,
1768 uint32_t handle,
1769 uint64_t *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001770{
Chris Wilsonda761a62010-10-27 17:37:08 +01001771 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001772 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001773 int ret;
1774
Chris Wilson76c1dec2010-09-25 11:22:51 +01001775 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001776 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001777 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001778
Dave Airlieff72145b2011-02-07 12:16:14 +10001779 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001780 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001781 ret = -ENOENT;
1782 goto unlock;
1783 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001784
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001785 if (obj->base.size > dev_priv->gtt.mappable_end) {
Chris Wilsonda761a62010-10-27 17:37:08 +01001786 ret = -E2BIG;
Eric Anholtff56b0b2011-10-31 23:16:21 -07001787 goto out;
Chris Wilsonda761a62010-10-27 17:37:08 +01001788 }
1789
Chris Wilson05394f32010-11-08 19:18:58 +00001790 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00001791 DRM_DEBUG("Attempting to mmap a purgeable buffer\n");
Chris Wilson8c99e572014-01-31 11:34:58 +00001792 ret = -EFAULT;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001793 goto out;
Chris Wilsonab182822009-09-22 18:46:17 +01001794 }
1795
Chris Wilsond8cb5082012-08-11 15:41:03 +01001796 ret = i915_gem_object_create_mmap_offset(obj);
1797 if (ret)
1798 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001799
David Herrmann0de23972013-07-24 21:07:52 +02001800 *offset = drm_vma_node_offset_addr(&obj->base.vma_node);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001801
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001802out:
Chris Wilson05394f32010-11-08 19:18:58 +00001803 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001804unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001805 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001806 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001807}
1808
Dave Airlieff72145b2011-02-07 12:16:14 +10001809/**
1810 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1811 * @dev: DRM device
1812 * @data: GTT mapping ioctl data
1813 * @file: GEM object info
1814 *
1815 * Simply returns the fake offset to userspace so it can mmap it.
1816 * The mmap call will end up in drm_gem_mmap(), which will set things
1817 * up so we can get faults in the handler above.
1818 *
1819 * The fault handler will take care of binding the object into the GTT
1820 * (since it may have been evicted to make room for something), allocating
1821 * a fence register, and mapping the appropriate aperture address into
1822 * userspace.
1823 */
1824int
1825i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
1826 struct drm_file *file)
1827{
1828 struct drm_i915_gem_mmap_gtt *args = data;
1829
Dave Airlieff72145b2011-02-07 12:16:14 +10001830 return i915_gem_mmap_gtt(file, dev, args->handle, &args->offset);
1831}
1832
Chris Wilson55372522014-03-25 13:23:06 +00001833static inline int
1834i915_gem_object_is_purgeable(struct drm_i915_gem_object *obj)
1835{
1836 return obj->madv == I915_MADV_DONTNEED;
1837}
1838
Daniel Vetter225067e2012-08-20 10:23:20 +02001839/* Immediately discard the backing storage */
1840static void
1841i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001842{
Chris Wilson4d6294bf2012-08-11 15:41:05 +01001843 i915_gem_object_free_mmap_offset(obj);
Daniel Vetter1286ff72012-05-10 15:25:09 +02001844
Chris Wilson4d6294bf2012-08-11 15:41:05 +01001845 if (obj->base.filp == NULL)
1846 return;
1847
Daniel Vetter225067e2012-08-20 10:23:20 +02001848 /* Our goal here is to return as much of the memory as
1849 * is possible back to the system as we are called from OOM.
1850 * To do this we must instruct the shmfs to drop all of its
1851 * backing pages, *now*.
Chris Wilsone5281cc2010-10-28 13:45:36 +01001852 */
Chris Wilson55372522014-03-25 13:23:06 +00001853 shmem_truncate_range(file_inode(obj->base.filp), 0, (loff_t)-1);
Daniel Vetter225067e2012-08-20 10:23:20 +02001854 obj->madv = __I915_MADV_PURGED;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001855}
Chris Wilsone5281cc2010-10-28 13:45:36 +01001856
Chris Wilson55372522014-03-25 13:23:06 +00001857/* Try to discard unwanted pages */
1858static void
1859i915_gem_object_invalidate(struct drm_i915_gem_object *obj)
Daniel Vetter225067e2012-08-20 10:23:20 +02001860{
Chris Wilson55372522014-03-25 13:23:06 +00001861 struct address_space *mapping;
1862
1863 switch (obj->madv) {
1864 case I915_MADV_DONTNEED:
1865 i915_gem_object_truncate(obj);
1866 case __I915_MADV_PURGED:
1867 return;
1868 }
1869
1870 if (obj->base.filp == NULL)
1871 return;
1872
1873 mapping = file_inode(obj->base.filp)->i_mapping,
1874 invalidate_mapping_pages(mapping, 0, (loff_t)-1);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001875}
1876
Chris Wilson5cdf5882010-09-27 15:51:07 +01001877static void
Chris Wilson05394f32010-11-08 19:18:58 +00001878i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001879{
Imre Deak90797e62013-02-18 19:28:03 +02001880 struct sg_page_iter sg_iter;
1881 int ret;
Daniel Vetter1286ff72012-05-10 15:25:09 +02001882
Chris Wilson05394f32010-11-08 19:18:58 +00001883 BUG_ON(obj->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07001884
Chris Wilson6c085a72012-08-20 11:40:46 +02001885 ret = i915_gem_object_set_to_cpu_domain(obj, true);
1886 if (ret) {
1887 /* In the event of a disaster, abandon all caches and
1888 * hope for the best.
1889 */
1890 WARN_ON(ret != -EIO);
Chris Wilson2c225692013-08-09 12:26:45 +01001891 i915_gem_clflush_object(obj, true);
Chris Wilson6c085a72012-08-20 11:40:46 +02001892 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
1893 }
1894
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001895 if (i915_gem_object_needs_bit17_swizzle(obj))
Eric Anholt280b7132009-03-12 16:56:27 -07001896 i915_gem_object_save_bit_17_swizzle(obj);
1897
Chris Wilson05394f32010-11-08 19:18:58 +00001898 if (obj->madv == I915_MADV_DONTNEED)
1899 obj->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01001900
Imre Deak90797e62013-02-18 19:28:03 +02001901 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents, 0) {
Imre Deak2db76d72013-03-26 15:14:18 +02001902 struct page *page = sg_page_iter_page(&sg_iter);
Chris Wilson9da3da62012-06-01 15:20:22 +01001903
Chris Wilson05394f32010-11-08 19:18:58 +00001904 if (obj->dirty)
Chris Wilson9da3da62012-06-01 15:20:22 +01001905 set_page_dirty(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001906
Chris Wilson05394f32010-11-08 19:18:58 +00001907 if (obj->madv == I915_MADV_WILLNEED)
Chris Wilson9da3da62012-06-01 15:20:22 +01001908 mark_page_accessed(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001909
Chris Wilson9da3da62012-06-01 15:20:22 +01001910 page_cache_release(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001911 }
Chris Wilson05394f32010-11-08 19:18:58 +00001912 obj->dirty = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001913
Chris Wilson9da3da62012-06-01 15:20:22 +01001914 sg_free_table(obj->pages);
1915 kfree(obj->pages);
Chris Wilson37e680a2012-06-07 15:38:42 +01001916}
1917
Chris Wilsondd624af2013-01-15 12:39:35 +00001918int
Chris Wilson37e680a2012-06-07 15:38:42 +01001919i915_gem_object_put_pages(struct drm_i915_gem_object *obj)
1920{
1921 const struct drm_i915_gem_object_ops *ops = obj->ops;
1922
Chris Wilson2f745ad2012-09-04 21:02:58 +01001923 if (obj->pages == NULL)
Chris Wilson37e680a2012-06-07 15:38:42 +01001924 return 0;
1925
Chris Wilsona5570172012-09-04 21:02:54 +01001926 if (obj->pages_pin_count)
1927 return -EBUSY;
1928
Ben Widawsky98438772013-07-31 17:00:12 -07001929 BUG_ON(i915_gem_obj_bound_any(obj));
Ben Widawsky3e123022013-07-31 17:00:04 -07001930
Chris Wilsona2165e32012-12-03 11:49:00 +00001931 /* ->put_pages might need to allocate memory for the bit17 swizzle
1932 * array, hence protect them from being reaped by removing them from gtt
1933 * lists early. */
Ben Widawsky35c20a62013-05-31 11:28:48 -07001934 list_del(&obj->global_list);
Chris Wilsona2165e32012-12-03 11:49:00 +00001935
Chris Wilson37e680a2012-06-07 15:38:42 +01001936 ops->put_pages(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00001937 obj->pages = NULL;
Chris Wilson6c085a72012-08-20 11:40:46 +02001938
Chris Wilson55372522014-03-25 13:23:06 +00001939 i915_gem_object_invalidate(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02001940
1941 return 0;
1942}
1943
Chris Wilson21ab4e72014-09-09 11:16:08 +01001944unsigned long
1945i915_gem_shrink(struct drm_i915_private *dev_priv,
1946 long target, unsigned flags)
Chris Wilson6c085a72012-08-20 11:40:46 +02001947{
Chris Wilson21ab4e72014-09-09 11:16:08 +01001948 const bool purgeable_only = flags & I915_SHRINK_PURGEABLE;
Chris Wilsond9973b42013-10-04 10:33:00 +01001949 unsigned long count = 0;
Chris Wilson6c085a72012-08-20 11:40:46 +02001950
Chris Wilson57094f82013-09-04 10:45:50 +01001951 /*
Chris Wilsonc8725f32014-03-17 12:21:55 +00001952 * As we may completely rewrite the (un)bound list whilst unbinding
Chris Wilson57094f82013-09-04 10:45:50 +01001953 * (due to retiring requests) we have to strictly process only
1954 * one element of the list at the time, and recheck the list
1955 * on every iteration.
Chris Wilsonc8725f32014-03-17 12:21:55 +00001956 *
1957 * In particular, we must hold a reference whilst removing the
1958 * object as we may end up waiting for and/or retiring the objects.
1959 * This might release the final reference (held by the active list)
1960 * and result in the object being freed from under us. This is
1961 * similar to the precautions the eviction code must take whilst
1962 * removing objects.
1963 *
1964 * Also note that although these lists do not hold a reference to
1965 * the object we can safely grab one here: The final object
1966 * unreferencing and the bound_list are both protected by the
1967 * dev->struct_mutex and so we won't ever be able to observe an
1968 * object on the bound_list with a reference count equals 0.
Chris Wilson57094f82013-09-04 10:45:50 +01001969 */
Chris Wilson21ab4e72014-09-09 11:16:08 +01001970 if (flags & I915_SHRINK_UNBOUND) {
1971 struct list_head still_in_list;
Chris Wilsonc8725f32014-03-17 12:21:55 +00001972
Chris Wilson21ab4e72014-09-09 11:16:08 +01001973 INIT_LIST_HEAD(&still_in_list);
1974 while (count < target && !list_empty(&dev_priv->mm.unbound_list)) {
1975 struct drm_i915_gem_object *obj;
Chris Wilsonc8725f32014-03-17 12:21:55 +00001976
Chris Wilson21ab4e72014-09-09 11:16:08 +01001977 obj = list_first_entry(&dev_priv->mm.unbound_list,
1978 typeof(*obj), global_list);
1979 list_move_tail(&obj->global_list, &still_in_list);
Chris Wilsonc8725f32014-03-17 12:21:55 +00001980
Chris Wilson21ab4e72014-09-09 11:16:08 +01001981 if (!i915_gem_object_is_purgeable(obj) && purgeable_only)
1982 continue;
Chris Wilsonc8725f32014-03-17 12:21:55 +00001983
Chris Wilson21ab4e72014-09-09 11:16:08 +01001984 drm_gem_object_reference(&obj->base);
1985
1986 if (i915_gem_object_put_pages(obj) == 0)
1987 count += obj->base.size >> PAGE_SHIFT;
1988
1989 drm_gem_object_unreference(&obj->base);
1990 }
1991 list_splice(&still_in_list, &dev_priv->mm.unbound_list);
Chris Wilsonc8725f32014-03-17 12:21:55 +00001992 }
Chris Wilsonc8725f32014-03-17 12:21:55 +00001993
Chris Wilson21ab4e72014-09-09 11:16:08 +01001994 if (flags & I915_SHRINK_BOUND) {
1995 struct list_head still_in_list;
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07001996
Chris Wilson21ab4e72014-09-09 11:16:08 +01001997 INIT_LIST_HEAD(&still_in_list);
1998 while (count < target && !list_empty(&dev_priv->mm.bound_list)) {
1999 struct drm_i915_gem_object *obj;
2000 struct i915_vma *vma, *v;
Chris Wilson57094f82013-09-04 10:45:50 +01002001
Chris Wilson21ab4e72014-09-09 11:16:08 +01002002 obj = list_first_entry(&dev_priv->mm.bound_list,
2003 typeof(*obj), global_list);
2004 list_move_tail(&obj->global_list, &still_in_list);
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07002005
Chris Wilson21ab4e72014-09-09 11:16:08 +01002006 if (!i915_gem_object_is_purgeable(obj) && purgeable_only)
2007 continue;
Chris Wilson57094f82013-09-04 10:45:50 +01002008
Chris Wilson21ab4e72014-09-09 11:16:08 +01002009 drm_gem_object_reference(&obj->base);
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07002010
Chris Wilson21ab4e72014-09-09 11:16:08 +01002011 list_for_each_entry_safe(vma, v, &obj->vma_list, vma_link)
2012 if (i915_vma_unbind(vma))
2013 break;
Chris Wilson57094f82013-09-04 10:45:50 +01002014
Chris Wilson21ab4e72014-09-09 11:16:08 +01002015 if (i915_gem_object_put_pages(obj) == 0)
2016 count += obj->base.size >> PAGE_SHIFT;
2017
2018 drm_gem_object_unreference(&obj->base);
2019 }
2020 list_splice(&still_in_list, &dev_priv->mm.bound_list);
Chris Wilson6c085a72012-08-20 11:40:46 +02002021 }
2022
2023 return count;
2024}
2025
Chris Wilsond9973b42013-10-04 10:33:00 +01002026static unsigned long
Chris Wilson6c085a72012-08-20 11:40:46 +02002027i915_gem_shrink_all(struct drm_i915_private *dev_priv)
2028{
Chris Wilson6c085a72012-08-20 11:40:46 +02002029 i915_gem_evict_everything(dev_priv->dev);
Chris Wilson21ab4e72014-09-09 11:16:08 +01002030 return i915_gem_shrink(dev_priv, LONG_MAX,
2031 I915_SHRINK_BOUND | I915_SHRINK_UNBOUND);
Daniel Vetter225067e2012-08-20 10:23:20 +02002032}
2033
Chris Wilson37e680a2012-06-07 15:38:42 +01002034static int
Chris Wilson6c085a72012-08-20 11:40:46 +02002035i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002036{
Chris Wilson6c085a72012-08-20 11:40:46 +02002037 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002038 int page_count, i;
2039 struct address_space *mapping;
Chris Wilson9da3da62012-06-01 15:20:22 +01002040 struct sg_table *st;
2041 struct scatterlist *sg;
Imre Deak90797e62013-02-18 19:28:03 +02002042 struct sg_page_iter sg_iter;
Eric Anholt673a3942008-07-30 12:06:12 -07002043 struct page *page;
Imre Deak90797e62013-02-18 19:28:03 +02002044 unsigned long last_pfn = 0; /* suppress gcc warning */
Chris Wilson6c085a72012-08-20 11:40:46 +02002045 gfp_t gfp;
Eric Anholt673a3942008-07-30 12:06:12 -07002046
Chris Wilson6c085a72012-08-20 11:40:46 +02002047 /* Assert that the object is not currently in any GPU domain. As it
2048 * wasn't in the GTT, there shouldn't be any way it could have been in
2049 * a GPU cache
2050 */
2051 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
2052 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
2053
Chris Wilson9da3da62012-06-01 15:20:22 +01002054 st = kmalloc(sizeof(*st), GFP_KERNEL);
2055 if (st == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002056 return -ENOMEM;
2057
Chris Wilson9da3da62012-06-01 15:20:22 +01002058 page_count = obj->base.size / PAGE_SIZE;
2059 if (sg_alloc_table(st, page_count, GFP_KERNEL)) {
Chris Wilson9da3da62012-06-01 15:20:22 +01002060 kfree(st);
2061 return -ENOMEM;
2062 }
2063
2064 /* Get the list of pages out of our struct file. They'll be pinned
2065 * at this point until we release them.
2066 *
2067 * Fail silently without starting the shrinker
2068 */
Al Viro496ad9a2013-01-23 17:07:38 -05002069 mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilson6c085a72012-08-20 11:40:46 +02002070 gfp = mapping_gfp_mask(mapping);
Linus Torvaldscaf49192012-12-10 10:51:16 -08002071 gfp |= __GFP_NORETRY | __GFP_NOWARN | __GFP_NO_KSWAPD;
Chris Wilson6c085a72012-08-20 11:40:46 +02002072 gfp &= ~(__GFP_IO | __GFP_WAIT);
Imre Deak90797e62013-02-18 19:28:03 +02002073 sg = st->sgl;
2074 st->nents = 0;
2075 for (i = 0; i < page_count; i++) {
Chris Wilson6c085a72012-08-20 11:40:46 +02002076 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
2077 if (IS_ERR(page)) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002078 i915_gem_shrink(dev_priv,
2079 page_count,
2080 I915_SHRINK_BOUND |
2081 I915_SHRINK_UNBOUND |
2082 I915_SHRINK_PURGEABLE);
Chris Wilson6c085a72012-08-20 11:40:46 +02002083 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
2084 }
2085 if (IS_ERR(page)) {
2086 /* We've tried hard to allocate the memory by reaping
2087 * our own buffer, now let the real VM do its job and
2088 * go down in flames if truly OOM.
2089 */
Chris Wilson6c085a72012-08-20 11:40:46 +02002090 i915_gem_shrink_all(dev_priv);
David Herrmannf461d1b2014-05-25 14:34:10 +02002091 page = shmem_read_mapping_page(mapping, i);
Chris Wilson6c085a72012-08-20 11:40:46 +02002092 if (IS_ERR(page))
2093 goto err_pages;
Chris Wilson6c085a72012-08-20 11:40:46 +02002094 }
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04002095#ifdef CONFIG_SWIOTLB
2096 if (swiotlb_nr_tbl()) {
2097 st->nents++;
2098 sg_set_page(sg, page, PAGE_SIZE, 0);
2099 sg = sg_next(sg);
2100 continue;
2101 }
2102#endif
Imre Deak90797e62013-02-18 19:28:03 +02002103 if (!i || page_to_pfn(page) != last_pfn + 1) {
2104 if (i)
2105 sg = sg_next(sg);
2106 st->nents++;
2107 sg_set_page(sg, page, PAGE_SIZE, 0);
2108 } else {
2109 sg->length += PAGE_SIZE;
2110 }
2111 last_pfn = page_to_pfn(page);
Daniel Vetter3bbbe702013-10-07 17:15:45 -03002112
2113 /* Check that the i965g/gm workaround works. */
2114 WARN_ON((gfp & __GFP_DMA32) && (last_pfn >= 0x00100000UL));
Eric Anholt673a3942008-07-30 12:06:12 -07002115 }
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04002116#ifdef CONFIG_SWIOTLB
2117 if (!swiotlb_nr_tbl())
2118#endif
2119 sg_mark_end(sg);
Chris Wilson74ce6b62012-10-19 15:51:06 +01002120 obj->pages = st;
2121
Eric Anholt673a3942008-07-30 12:06:12 -07002122 if (i915_gem_object_needs_bit17_swizzle(obj))
2123 i915_gem_object_do_bit_17_swizzle(obj);
2124
2125 return 0;
2126
2127err_pages:
Imre Deak90797e62013-02-18 19:28:03 +02002128 sg_mark_end(sg);
2129 for_each_sg_page(st->sgl, &sg_iter, st->nents, 0)
Imre Deak2db76d72013-03-26 15:14:18 +02002130 page_cache_release(sg_page_iter_page(&sg_iter));
Chris Wilson9da3da62012-06-01 15:20:22 +01002131 sg_free_table(st);
2132 kfree(st);
Chris Wilson0820baf2014-03-25 13:23:03 +00002133
2134 /* shmemfs first checks if there is enough memory to allocate the page
2135 * and reports ENOSPC should there be insufficient, along with the usual
2136 * ENOMEM for a genuine allocation failure.
2137 *
2138 * We use ENOSPC in our driver to mean that we have run out of aperture
2139 * space and so want to translate the error from shmemfs back to our
2140 * usual understanding of ENOMEM.
2141 */
2142 if (PTR_ERR(page) == -ENOSPC)
2143 return -ENOMEM;
2144 else
2145 return PTR_ERR(page);
Eric Anholt673a3942008-07-30 12:06:12 -07002146}
2147
Chris Wilson37e680a2012-06-07 15:38:42 +01002148/* Ensure that the associated pages are gathered from the backing storage
2149 * and pinned into our object. i915_gem_object_get_pages() may be called
2150 * multiple times before they are released by a single call to
2151 * i915_gem_object_put_pages() - once the pages are no longer referenced
2152 * either as a result of memory pressure (reaping pages under the shrinker)
2153 * or as the object is itself released.
2154 */
2155int
2156i915_gem_object_get_pages(struct drm_i915_gem_object *obj)
2157{
2158 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2159 const struct drm_i915_gem_object_ops *ops = obj->ops;
2160 int ret;
2161
Chris Wilson2f745ad2012-09-04 21:02:58 +01002162 if (obj->pages)
Chris Wilson37e680a2012-06-07 15:38:42 +01002163 return 0;
2164
Chris Wilson43e28f02013-01-08 10:53:09 +00002165 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00002166 DRM_DEBUG("Attempting to obtain a purgeable object\n");
Chris Wilson8c99e572014-01-31 11:34:58 +00002167 return -EFAULT;
Chris Wilson43e28f02013-01-08 10:53:09 +00002168 }
2169
Chris Wilsona5570172012-09-04 21:02:54 +01002170 BUG_ON(obj->pages_pin_count);
2171
Chris Wilson37e680a2012-06-07 15:38:42 +01002172 ret = ops->get_pages(obj);
2173 if (ret)
2174 return ret;
2175
Ben Widawsky35c20a62013-05-31 11:28:48 -07002176 list_add_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Chris Wilson37e680a2012-06-07 15:38:42 +01002177 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002178}
2179
Ben Widawskye2d05a82013-09-24 09:57:58 -07002180static void
Chris Wilson05394f32010-11-08 19:18:58 +00002181i915_gem_object_move_to_active(struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002182 struct intel_engine_cs *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07002183{
Chris Wilson9d7730912012-11-27 16:22:52 +00002184 u32 seqno = intel_ring_get_seqno(ring);
Daniel Vetter617dbe22010-02-11 22:16:02 +01002185
Zou Nan hai852835f2010-05-21 09:08:56 +08002186 BUG_ON(ring == NULL);
Chris Wilson02978ff2013-07-09 09:22:39 +01002187 if (obj->ring != ring && obj->last_write_seqno) {
2188 /* Keep the seqno relative to the current ring */
2189 obj->last_write_seqno = seqno;
2190 }
Chris Wilson05394f32010-11-08 19:18:58 +00002191 obj->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07002192
2193 /* Add a reference if we're newly entering the active list. */
Chris Wilson05394f32010-11-08 19:18:58 +00002194 if (!obj->active) {
2195 drm_gem_object_reference(&obj->base);
2196 obj->active = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07002197 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01002198
Chris Wilson05394f32010-11-08 19:18:58 +00002199 list_move_tail(&obj->ring_list, &ring->active_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002200
Chris Wilson0201f1e2012-07-20 12:41:01 +01002201 obj->last_read_seqno = seqno;
Chris Wilsoncaea7472010-11-12 13:53:37 +00002202}
2203
Ben Widawskye2d05a82013-09-24 09:57:58 -07002204void i915_vma_move_to_active(struct i915_vma *vma,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002205 struct intel_engine_cs *ring)
Ben Widawskye2d05a82013-09-24 09:57:58 -07002206{
2207 list_move_tail(&vma->mm_list, &vma->vm->active_list);
2208 return i915_gem_object_move_to_active(vma->obj, ring);
2209}
2210
Chris Wilsoncaea7472010-11-12 13:53:37 +00002211static void
Chris Wilsoncaea7472010-11-12 13:53:37 +00002212i915_gem_object_move_to_inactive(struct drm_i915_gem_object *obj)
2213{
Ben Widawskyca191b12013-07-31 17:00:14 -07002214 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Ben Widawskyfeb822c2013-12-06 14:10:51 -08002215 struct i915_address_space *vm;
2216 struct i915_vma *vma;
Chris Wilsoncaea7472010-11-12 13:53:37 +00002217
Chris Wilson65ce3022012-07-20 12:41:02 +01002218 BUG_ON(obj->base.write_domain & ~I915_GEM_GPU_DOMAINS);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002219 BUG_ON(!obj->active);
Chris Wilson65ce3022012-07-20 12:41:02 +01002220
Ben Widawskyfeb822c2013-12-06 14:10:51 -08002221 list_for_each_entry(vm, &dev_priv->vm_list, global_link) {
2222 vma = i915_gem_obj_to_vma(obj, vm);
2223 if (vma && !list_empty(&vma->mm_list))
2224 list_move_tail(&vma->mm_list, &vm->inactive_list);
2225 }
Chris Wilsoncaea7472010-11-12 13:53:37 +00002226
Daniel Vetterf99d7062014-06-19 16:01:59 +02002227 intel_fb_obj_flush(obj, true);
2228
Chris Wilson65ce3022012-07-20 12:41:02 +01002229 list_del_init(&obj->ring_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002230 obj->ring = NULL;
2231
Chris Wilson65ce3022012-07-20 12:41:02 +01002232 obj->last_read_seqno = 0;
2233 obj->last_write_seqno = 0;
2234 obj->base.write_domain = 0;
2235
2236 obj->last_fenced_seqno = 0;
Chris Wilsoncaea7472010-11-12 13:53:37 +00002237
2238 obj->active = 0;
2239 drm_gem_object_unreference(&obj->base);
2240
2241 WARN_ON(i915_verify_lists(dev));
Eric Anholtce44b0e2008-11-06 16:00:31 -08002242}
Eric Anholt673a3942008-07-30 12:06:12 -07002243
Chris Wilsonc8725f32014-03-17 12:21:55 +00002244static void
2245i915_gem_object_retire(struct drm_i915_gem_object *obj)
2246{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002247 struct intel_engine_cs *ring = obj->ring;
Chris Wilsonc8725f32014-03-17 12:21:55 +00002248
2249 if (ring == NULL)
2250 return;
2251
2252 if (i915_seqno_passed(ring->get_seqno(ring, true),
2253 obj->last_read_seqno))
2254 i915_gem_object_move_to_inactive(obj);
2255}
2256
Chris Wilson9d7730912012-11-27 16:22:52 +00002257static int
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002258i915_gem_init_seqno(struct drm_device *dev, u32 seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01002259{
Chris Wilson9d7730912012-11-27 16:22:52 +00002260 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002261 struct intel_engine_cs *ring;
Chris Wilson9d7730912012-11-27 16:22:52 +00002262 int ret, i, j;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002263
Chris Wilson107f27a52012-12-10 13:56:17 +02002264 /* Carefully retire all requests without writing to the rings */
Chris Wilson9d7730912012-11-27 16:22:52 +00002265 for_each_ring(ring, dev_priv, i) {
Chris Wilson107f27a52012-12-10 13:56:17 +02002266 ret = intel_ring_idle(ring);
2267 if (ret)
2268 return ret;
Chris Wilson9d7730912012-11-27 16:22:52 +00002269 }
Chris Wilson9d7730912012-11-27 16:22:52 +00002270 i915_gem_retire_requests(dev);
Chris Wilson107f27a52012-12-10 13:56:17 +02002271
2272 /* Finally reset hw state */
Chris Wilson9d7730912012-11-27 16:22:52 +00002273 for_each_ring(ring, dev_priv, i) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002274 intel_ring_init_seqno(ring, seqno);
Mika Kuoppala498d2ac2012-12-04 15:12:04 +02002275
Ben Widawskyebc348b2014-04-29 14:52:28 -07002276 for (j = 0; j < ARRAY_SIZE(ring->semaphore.sync_seqno); j++)
2277 ring->semaphore.sync_seqno[j] = 0;
Chris Wilson9d7730912012-11-27 16:22:52 +00002278 }
2279
2280 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002281}
2282
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002283int i915_gem_set_seqno(struct drm_device *dev, u32 seqno)
2284{
2285 struct drm_i915_private *dev_priv = dev->dev_private;
2286 int ret;
2287
2288 if (seqno == 0)
2289 return -EINVAL;
2290
2291 /* HWS page needs to be set less than what we
2292 * will inject to ring
2293 */
2294 ret = i915_gem_init_seqno(dev, seqno - 1);
2295 if (ret)
2296 return ret;
2297
2298 /* Carefully set the last_seqno value so that wrap
2299 * detection still works
2300 */
2301 dev_priv->next_seqno = seqno;
2302 dev_priv->last_seqno = seqno - 1;
2303 if (dev_priv->last_seqno == 0)
2304 dev_priv->last_seqno--;
2305
2306 return 0;
2307}
2308
Chris Wilson9d7730912012-11-27 16:22:52 +00002309int
2310i915_gem_get_seqno(struct drm_device *dev, u32 *seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01002311{
Chris Wilson9d7730912012-11-27 16:22:52 +00002312 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002313
Chris Wilson9d7730912012-11-27 16:22:52 +00002314 /* reserve 0 for non-seqno */
2315 if (dev_priv->next_seqno == 0) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002316 int ret = i915_gem_init_seqno(dev, 0);
Chris Wilson9d7730912012-11-27 16:22:52 +00002317 if (ret)
2318 return ret;
2319
2320 dev_priv->next_seqno = 1;
2321 }
2322
Mika Kuoppalaf72b3432012-12-10 15:41:48 +02002323 *seqno = dev_priv->last_seqno = dev_priv->next_seqno++;
Chris Wilson9d7730912012-11-27 16:22:52 +00002324 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002325}
2326
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002327int __i915_add_request(struct intel_engine_cs *ring,
Mika Kuoppala0025c072013-06-12 12:35:30 +03002328 struct drm_file *file,
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002329 struct drm_i915_gem_object *obj,
Mika Kuoppala0025c072013-06-12 12:35:30 +03002330 u32 *out_seqno)
Eric Anholt673a3942008-07-30 12:06:12 -07002331{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03002332 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Chris Wilsonacb868d2012-09-26 13:47:30 +01002333 struct drm_i915_gem_request *request;
Oscar Mateo48e29f52014-07-24 17:04:29 +01002334 struct intel_ringbuffer *ringbuf;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002335 u32 request_ring_position, request_start;
Chris Wilson3cce4692010-10-27 16:11:02 +01002336 int ret;
2337
Oscar Mateo48e29f52014-07-24 17:04:29 +01002338 request = ring->preallocated_lazy_request;
2339 if (WARN_ON(request == NULL))
2340 return -ENOMEM;
2341
2342 if (i915.enable_execlists) {
2343 struct intel_context *ctx = request->ctx;
2344 ringbuf = ctx->engine[ring->id].ringbuf;
2345 } else
2346 ringbuf = ring->buffer;
2347
2348 request_start = intel_ring_get_tail(ringbuf);
Daniel Vettercc889e02012-06-13 20:45:19 +02002349 /*
2350 * Emit any outstanding flushes - execbuf can fail to emit the flush
2351 * after having emitted the batchbuffer command. Hence we need to fix
2352 * things up similar to emitting the lazy request. The difference here
2353 * is that the flush _must_ happen before the next request, no matter
2354 * what.
2355 */
Oscar Mateo48e29f52014-07-24 17:04:29 +01002356 if (i915.enable_execlists) {
2357 ret = logical_ring_flush_all_caches(ringbuf);
2358 if (ret)
2359 return ret;
2360 } else {
2361 ret = intel_ring_flush_all_caches(ring);
2362 if (ret)
2363 return ret;
2364 }
Daniel Vettercc889e02012-06-13 20:45:19 +02002365
Chris Wilsona71d8d92012-02-15 11:25:36 +00002366 /* Record the position of the start of the request so that
2367 * should we detect the updated seqno part-way through the
2368 * GPU processing the request, we never over-estimate the
2369 * position of the head.
2370 */
Oscar Mateo48e29f52014-07-24 17:04:29 +01002371 request_ring_position = intel_ring_get_tail(ringbuf);
Chris Wilsona71d8d92012-02-15 11:25:36 +00002372
Oscar Mateo48e29f52014-07-24 17:04:29 +01002373 if (i915.enable_execlists) {
2374 ret = ring->emit_request(ringbuf);
2375 if (ret)
2376 return ret;
2377 } else {
2378 ret = ring->add_request(ring);
2379 if (ret)
2380 return ret;
2381 }
Eric Anholt673a3942008-07-30 12:06:12 -07002382
Chris Wilson9d7730912012-11-27 16:22:52 +00002383 request->seqno = intel_ring_get_seqno(ring);
Zou Nan hai852835f2010-05-21 09:08:56 +08002384 request->ring = ring;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002385 request->head = request_start;
Chris Wilsona71d8d92012-02-15 11:25:36 +00002386 request->tail = request_ring_position;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002387
2388 /* Whilst this request exists, batch_obj will be on the
2389 * active_list, and so will hold the active reference. Only when this
2390 * request is retired will the the batch_obj be moved onto the
2391 * inactive_list and lose its active reference. Hence we do not need
2392 * to explicitly hold another reference here.
2393 */
Chris Wilson9a7e0c22013-08-26 19:50:54 -03002394 request->batch_obj = obj;
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002395
Oscar Mateo48e29f52014-07-24 17:04:29 +01002396 if (!i915.enable_execlists) {
2397 /* Hold a reference to the current context so that we can inspect
2398 * it later in case a hangcheck error event fires.
2399 */
2400 request->ctx = ring->last_context;
2401 if (request->ctx)
2402 i915_gem_context_reference(request->ctx);
2403 }
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002404
Eric Anholt673a3942008-07-30 12:06:12 -07002405 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08002406 list_add_tail(&request->list, &ring->request_list);
Chris Wilson3bb73ab2012-07-20 12:40:59 +01002407 request->file_priv = NULL;
Zou Nan hai852835f2010-05-21 09:08:56 +08002408
Chris Wilsondb53a302011-02-03 11:57:46 +00002409 if (file) {
2410 struct drm_i915_file_private *file_priv = file->driver_priv;
2411
Chris Wilson1c255952010-09-26 11:03:27 +01002412 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002413 request->file_priv = file_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00002414 list_add_tail(&request->client_list,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002415 &file_priv->mm.request_list);
Chris Wilson1c255952010-09-26 11:03:27 +01002416 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00002417 }
Eric Anholt673a3942008-07-30 12:06:12 -07002418
Chris Wilson9d7730912012-11-27 16:22:52 +00002419 trace_i915_gem_request_add(ring, request->seqno);
Chris Wilson18235212013-09-04 10:45:51 +01002420 ring->outstanding_lazy_seqno = 0;
Chris Wilson3c0e2342013-09-04 10:45:52 +01002421 ring->preallocated_lazy_request = NULL;
Chris Wilsondb53a302011-02-03 11:57:46 +00002422
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02002423 if (!dev_priv->ums.mm_suspended) {
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03002424 i915_queue_hangcheck(ring->dev);
2425
Chris Wilsonf62a0072014-02-21 17:55:39 +00002426 cancel_delayed_work_sync(&dev_priv->mm.idle_work);
2427 queue_delayed_work(dev_priv->wq,
2428 &dev_priv->mm.retire_work,
2429 round_jiffies_up_relative(HZ));
2430 intel_mark_busy(dev_priv->dev);
Ben Gamarif65d9422009-09-14 17:48:44 -04002431 }
Daniel Vettercc889e02012-06-13 20:45:19 +02002432
Chris Wilsonacb868d2012-09-26 13:47:30 +01002433 if (out_seqno)
Chris Wilson9d7730912012-11-27 16:22:52 +00002434 *out_seqno = request->seqno;
Chris Wilson3cce4692010-10-27 16:11:02 +01002435 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002436}
2437
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002438static inline void
2439i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07002440{
Chris Wilson1c255952010-09-26 11:03:27 +01002441 struct drm_i915_file_private *file_priv = request->file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07002442
Chris Wilson1c255952010-09-26 11:03:27 +01002443 if (!file_priv)
2444 return;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002445
Chris Wilson1c255952010-09-26 11:03:27 +01002446 spin_lock(&file_priv->mm.lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002447 list_del(&request->client_list);
2448 request->file_priv = NULL;
Chris Wilson1c255952010-09-26 11:03:27 +01002449 spin_unlock(&file_priv->mm.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07002450}
2451
Mika Kuoppala939fd762014-01-30 19:04:44 +02002452static bool i915_context_is_banned(struct drm_i915_private *dev_priv,
Oscar Mateo273497e2014-05-22 14:13:37 +01002453 const struct intel_context *ctx)
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002454{
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002455 unsigned long elapsed;
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002456
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002457 elapsed = get_seconds() - ctx->hang_stats.guilty_ts;
2458
2459 if (ctx->hang_stats.banned)
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002460 return true;
2461
2462 if (elapsed <= DRM_I915_CTX_BAN_PERIOD) {
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002463 if (!i915_gem_context_is_default(ctx)) {
Mika Kuoppala3fac8972014-01-30 16:05:48 +02002464 DRM_DEBUG("context hanging too fast, banning!\n");
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002465 return true;
Mika Kuoppala88b4aa82014-03-28 18:18:18 +02002466 } else if (i915_stop_ring_allow_ban(dev_priv)) {
2467 if (i915_stop_ring_allow_warn(dev_priv))
2468 DRM_ERROR("gpu hanging too fast, banning!\n");
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002469 return true;
Mika Kuoppala3fac8972014-01-30 16:05:48 +02002470 }
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002471 }
2472
2473 return false;
2474}
2475
Mika Kuoppala939fd762014-01-30 19:04:44 +02002476static void i915_set_reset_status(struct drm_i915_private *dev_priv,
Oscar Mateo273497e2014-05-22 14:13:37 +01002477 struct intel_context *ctx,
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002478 const bool guilty)
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002479{
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002480 struct i915_ctx_hang_stats *hs;
2481
2482 if (WARN_ON(!ctx))
2483 return;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002484
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002485 hs = &ctx->hang_stats;
2486
2487 if (guilty) {
Mika Kuoppala939fd762014-01-30 19:04:44 +02002488 hs->banned = i915_context_is_banned(dev_priv, ctx);
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002489 hs->batch_active++;
2490 hs->guilty_ts = get_seconds();
2491 } else {
2492 hs->batch_pending++;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002493 }
2494}
2495
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002496static void i915_gem_free_request(struct drm_i915_gem_request *request)
2497{
2498 list_del(&request->list);
2499 i915_gem_request_remove_from_client(request);
2500
2501 if (request->ctx)
2502 i915_gem_context_unreference(request->ctx);
2503
2504 kfree(request);
2505}
2506
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002507struct drm_i915_gem_request *
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002508i915_gem_find_active_request(struct intel_engine_cs *ring)
Chris Wilson9375e442010-09-19 12:21:28 +01002509{
Chris Wilson4db080f2013-12-04 11:37:09 +00002510 struct drm_i915_gem_request *request;
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002511 u32 completed_seqno;
2512
2513 completed_seqno = ring->get_seqno(ring, false);
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002514
Chris Wilson4db080f2013-12-04 11:37:09 +00002515 list_for_each_entry(request, &ring->request_list, list) {
2516 if (i915_seqno_passed(completed_seqno, request->seqno))
2517 continue;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002518
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002519 return request;
Chris Wilson4db080f2013-12-04 11:37:09 +00002520 }
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002521
2522 return NULL;
2523}
2524
2525static void i915_gem_reset_ring_status(struct drm_i915_private *dev_priv,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002526 struct intel_engine_cs *ring)
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002527{
2528 struct drm_i915_gem_request *request;
2529 bool ring_hung;
2530
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002531 request = i915_gem_find_active_request(ring);
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002532
2533 if (request == NULL)
2534 return;
2535
2536 ring_hung = ring->hangcheck.score >= HANGCHECK_SCORE_RING_HUNG;
2537
Mika Kuoppala939fd762014-01-30 19:04:44 +02002538 i915_set_reset_status(dev_priv, request->ctx, ring_hung);
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002539
2540 list_for_each_entry_continue(request, &ring->request_list, list)
Mika Kuoppala939fd762014-01-30 19:04:44 +02002541 i915_set_reset_status(dev_priv, request->ctx, false);
Chris Wilson4db080f2013-12-04 11:37:09 +00002542}
2543
2544static void i915_gem_reset_ring_cleanup(struct drm_i915_private *dev_priv,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002545 struct intel_engine_cs *ring)
Chris Wilson4db080f2013-12-04 11:37:09 +00002546{
Chris Wilsondfaae392010-09-22 10:31:52 +01002547 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00002548 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07002549
Chris Wilson05394f32010-11-08 19:18:58 +00002550 obj = list_first_entry(&ring->active_list,
2551 struct drm_i915_gem_object,
2552 ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07002553
Chris Wilson05394f32010-11-08 19:18:58 +00002554 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002555 }
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002556
2557 /*
2558 * We must free the requests after all the corresponding objects have
2559 * been moved off active lists. Which is the same order as the normal
2560 * retire_requests function does. This is important if object hold
2561 * implicit references on things like e.g. ppgtt address spaces through
2562 * the request.
2563 */
2564 while (!list_empty(&ring->request_list)) {
2565 struct drm_i915_gem_request *request;
2566
2567 request = list_first_entry(&ring->request_list,
2568 struct drm_i915_gem_request,
2569 list);
2570
2571 i915_gem_free_request(request);
2572 }
Chris Wilsone3efda42014-04-09 09:19:41 +01002573
Oscar Mateocc9130b2014-07-24 17:04:42 +01002574 while (!list_empty(&ring->execlist_queue)) {
2575 struct intel_ctx_submit_request *submit_req;
2576
2577 submit_req = list_first_entry(&ring->execlist_queue,
2578 struct intel_ctx_submit_request,
2579 execlist_link);
2580 list_del(&submit_req->execlist_link);
2581 intel_runtime_pm_put(dev_priv);
2582 i915_gem_context_unreference(submit_req->ctx);
2583 kfree(submit_req);
2584 }
2585
Chris Wilsone3efda42014-04-09 09:19:41 +01002586 /* These may not have been flush before the reset, do so now */
2587 kfree(ring->preallocated_lazy_request);
2588 ring->preallocated_lazy_request = NULL;
2589 ring->outstanding_lazy_seqno = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002590}
2591
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002592void i915_gem_restore_fences(struct drm_device *dev)
Chris Wilson312817a2010-11-22 11:50:11 +00002593{
2594 struct drm_i915_private *dev_priv = dev->dev_private;
2595 int i;
2596
Daniel Vetter4b9de732011-10-09 21:52:02 +02002597 for (i = 0; i < dev_priv->num_fence_regs; i++) {
Chris Wilson312817a2010-11-22 11:50:11 +00002598 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
Chris Wilson7d2cb392010-11-27 17:38:29 +00002599
Daniel Vetter94a335d2013-07-17 14:51:28 +02002600 /*
2601 * Commit delayed tiling changes if we have an object still
2602 * attached to the fence, otherwise just clear the fence.
2603 */
2604 if (reg->obj) {
2605 i915_gem_object_update_fence(reg->obj, reg,
2606 reg->obj->tiling_mode);
2607 } else {
2608 i915_gem_write_fence(dev, i, NULL);
2609 }
Chris Wilson312817a2010-11-22 11:50:11 +00002610 }
2611}
2612
Chris Wilson069efc12010-09-30 16:53:18 +01002613void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07002614{
Chris Wilsondfaae392010-09-22 10:31:52 +01002615 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002616 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002617 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07002618
Chris Wilson4db080f2013-12-04 11:37:09 +00002619 /*
2620 * Before we free the objects from the requests, we need to inspect
2621 * them for finding the guilty party. As the requests only borrow
2622 * their reference to the objects, the inspection must be done first.
2623 */
Chris Wilsonb4519512012-05-11 14:29:30 +01002624 for_each_ring(ring, dev_priv, i)
Chris Wilson4db080f2013-12-04 11:37:09 +00002625 i915_gem_reset_ring_status(dev_priv, ring);
2626
2627 for_each_ring(ring, dev_priv, i)
2628 i915_gem_reset_ring_cleanup(dev_priv, ring);
Chris Wilsondfaae392010-09-22 10:31:52 +01002629
Ben Widawskyacce9ff2013-12-06 14:11:03 -08002630 i915_gem_context_reset(dev);
2631
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002632 i915_gem_restore_fences(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07002633}
2634
2635/**
2636 * This function clears the request list as sequence numbers are passed.
2637 */
Chris Wilson1cf0ba12014-05-05 09:07:33 +01002638void
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002639i915_gem_retire_requests_ring(struct intel_engine_cs *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07002640{
Eric Anholt673a3942008-07-30 12:06:12 -07002641 uint32_t seqno;
2642
Chris Wilsondb53a302011-02-03 11:57:46 +00002643 if (list_empty(&ring->request_list))
Karsten Wiese6c0594a2009-02-23 15:07:57 +01002644 return;
2645
Chris Wilsondb53a302011-02-03 11:57:46 +00002646 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002647
Chris Wilsonb2eadbc2012-08-09 10:58:30 +01002648 seqno = ring->get_seqno(ring, true);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002649
Chris Wilsone9103032014-01-07 11:45:14 +00002650 /* Move any buffers on the active list that are no longer referenced
2651 * by the ringbuffer to the flushing/inactive lists as appropriate,
2652 * before we free the context associated with the requests.
2653 */
2654 while (!list_empty(&ring->active_list)) {
2655 struct drm_i915_gem_object *obj;
2656
2657 obj = list_first_entry(&ring->active_list,
2658 struct drm_i915_gem_object,
2659 ring_list);
2660
2661 if (!i915_seqno_passed(seqno, obj->last_read_seqno))
2662 break;
2663
2664 i915_gem_object_move_to_inactive(obj);
2665 }
2666
2667
Zou Nan hai852835f2010-05-21 09:08:56 +08002668 while (!list_empty(&ring->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002669 struct drm_i915_gem_request *request;
Oscar Mateo48e29f52014-07-24 17:04:29 +01002670 struct intel_ringbuffer *ringbuf;
Eric Anholt673a3942008-07-30 12:06:12 -07002671
Zou Nan hai852835f2010-05-21 09:08:56 +08002672 request = list_first_entry(&ring->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07002673 struct drm_i915_gem_request,
2674 list);
Eric Anholt673a3942008-07-30 12:06:12 -07002675
Chris Wilsondfaae392010-09-22 10:31:52 +01002676 if (!i915_seqno_passed(seqno, request->seqno))
Eric Anholt673a3942008-07-30 12:06:12 -07002677 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002678
Chris Wilsondb53a302011-02-03 11:57:46 +00002679 trace_i915_gem_request_retire(ring, request->seqno);
Oscar Mateo48e29f52014-07-24 17:04:29 +01002680
2681 /* This is one of the few common intersection points
2682 * between legacy ringbuffer submission and execlists:
2683 * we need to tell them apart in order to find the correct
2684 * ringbuffer to which the request belongs to.
2685 */
2686 if (i915.enable_execlists) {
2687 struct intel_context *ctx = request->ctx;
2688 ringbuf = ctx->engine[ring->id].ringbuf;
2689 } else
2690 ringbuf = ring->buffer;
2691
Chris Wilsona71d8d92012-02-15 11:25:36 +00002692 /* We know the GPU must have read the request to have
2693 * sent us the seqno + interrupt, so use the position
2694 * of tail of the request to update the last known position
2695 * of the GPU head.
2696 */
Oscar Mateo48e29f52014-07-24 17:04:29 +01002697 ringbuf->last_retired_head = request->tail;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002698
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002699 i915_gem_free_request(request);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002700 }
2701
Chris Wilsondb53a302011-02-03 11:57:46 +00002702 if (unlikely(ring->trace_irq_seqno &&
2703 i915_seqno_passed(seqno, ring->trace_irq_seqno))) {
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002704 ring->irq_put(ring);
Chris Wilsondb53a302011-02-03 11:57:46 +00002705 ring->trace_irq_seqno = 0;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01002706 }
Chris Wilson23bc5982010-09-29 16:10:57 +01002707
Chris Wilsondb53a302011-02-03 11:57:46 +00002708 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002709}
2710
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002711bool
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002712i915_gem_retire_requests(struct drm_device *dev)
2713{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03002714 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002715 struct intel_engine_cs *ring;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002716 bool idle = true;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002717 int i;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002718
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002719 for_each_ring(ring, dev_priv, i) {
Chris Wilsonb4519512012-05-11 14:29:30 +01002720 i915_gem_retire_requests_ring(ring);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002721 idle &= list_empty(&ring->request_list);
2722 }
2723
2724 if (idle)
2725 mod_delayed_work(dev_priv->wq,
2726 &dev_priv->mm.idle_work,
2727 msecs_to_jiffies(100));
2728
2729 return idle;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002730}
2731
Daniel Vetter75ef9da2010-08-21 00:25:16 +02002732static void
Eric Anholt673a3942008-07-30 12:06:12 -07002733i915_gem_retire_work_handler(struct work_struct *work)
2734{
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002735 struct drm_i915_private *dev_priv =
2736 container_of(work, typeof(*dev_priv), mm.retire_work.work);
2737 struct drm_device *dev = dev_priv->dev;
Chris Wilson0a587052011-01-09 21:05:44 +00002738 bool idle;
Eric Anholt673a3942008-07-30 12:06:12 -07002739
Chris Wilson891b48c2010-09-29 12:26:37 +01002740 /* Come back later if the device is busy... */
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002741 idle = false;
2742 if (mutex_trylock(&dev->struct_mutex)) {
2743 idle = i915_gem_retire_requests(dev);
2744 mutex_unlock(&dev->struct_mutex);
2745 }
2746 if (!idle)
Chris Wilsonbcb45082012-10-05 17:02:57 +01002747 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work,
2748 round_jiffies_up_relative(HZ));
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002749}
Chris Wilson891b48c2010-09-29 12:26:37 +01002750
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002751static void
2752i915_gem_idle_work_handler(struct work_struct *work)
2753{
2754 struct drm_i915_private *dev_priv =
2755 container_of(work, typeof(*dev_priv), mm.idle_work.work);
Zou Nan haid1b851f2010-05-21 09:08:57 +08002756
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002757 intel_mark_idle(dev_priv->dev);
Eric Anholt673a3942008-07-30 12:06:12 -07002758}
2759
Ben Widawsky5816d642012-04-11 11:18:19 -07002760/**
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002761 * Ensures that an object will eventually get non-busy by flushing any required
2762 * write domains, emitting any outstanding lazy request and retiring and
2763 * completed requests.
2764 */
2765static int
2766i915_gem_object_flush_active(struct drm_i915_gem_object *obj)
2767{
2768 int ret;
2769
2770 if (obj->active) {
Chris Wilson0201f1e2012-07-20 12:41:01 +01002771 ret = i915_gem_check_olr(obj->ring, obj->last_read_seqno);
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002772 if (ret)
2773 return ret;
2774
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002775 i915_gem_retire_requests_ring(obj->ring);
2776 }
2777
2778 return 0;
2779}
2780
2781/**
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002782 * i915_gem_wait_ioctl - implements DRM_IOCTL_I915_GEM_WAIT
2783 * @DRM_IOCTL_ARGS: standard ioctl arguments
2784 *
2785 * Returns 0 if successful, else an error is returned with the remaining time in
2786 * the timeout parameter.
2787 * -ETIME: object is still busy after timeout
2788 * -ERESTARTSYS: signal interrupted the wait
2789 * -ENONENT: object doesn't exist
2790 * Also possible, but rare:
2791 * -EAGAIN: GPU wedged
2792 * -ENOMEM: damn
2793 * -ENODEV: Internal IRQ fail
2794 * -E?: The add request failed
2795 *
2796 * The wait ioctl with a timeout of 0 reimplements the busy ioctl. With any
2797 * non-zero timeout parameter the wait ioctl will wait for the given number of
2798 * nanoseconds on an object becoming unbusy. Since the wait itself does so
2799 * without holding struct_mutex the object may become re-busied before this
2800 * function completes. A similar but shorter * race condition exists in the busy
2801 * ioctl
2802 */
2803int
2804i915_gem_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
2805{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03002806 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002807 struct drm_i915_gem_wait *args = data;
2808 struct drm_i915_gem_object *obj;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002809 struct intel_engine_cs *ring = NULL;
Daniel Vetterf69061b2012-12-06 09:01:42 +01002810 unsigned reset_counter;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002811 u32 seqno = 0;
2812 int ret = 0;
2813
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002814 ret = i915_mutex_lock_interruptible(dev);
2815 if (ret)
2816 return ret;
2817
2818 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->bo_handle));
2819 if (&obj->base == NULL) {
2820 mutex_unlock(&dev->struct_mutex);
2821 return -ENOENT;
2822 }
2823
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002824 /* Need to make sure the object gets inactive eventually. */
2825 ret = i915_gem_object_flush_active(obj);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002826 if (ret)
2827 goto out;
2828
2829 if (obj->active) {
Chris Wilson0201f1e2012-07-20 12:41:01 +01002830 seqno = obj->last_read_seqno;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002831 ring = obj->ring;
2832 }
2833
2834 if (seqno == 0)
2835 goto out;
2836
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002837 /* Do this after OLR check to make sure we make forward progress polling
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00002838 * on this IOCTL with a timeout <=0 (like busy ioctl)
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002839 */
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00002840 if (args->timeout_ns <= 0) {
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002841 ret = -ETIME;
2842 goto out;
2843 }
2844
2845 drm_gem_object_unreference(&obj->base);
Daniel Vetterf69061b2012-12-06 09:01:42 +01002846 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002847 mutex_unlock(&dev->struct_mutex);
2848
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00002849 return __wait_seqno(ring, seqno, reset_counter, true, &args->timeout_ns,
2850 file->driver_priv);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002851
2852out:
2853 drm_gem_object_unreference(&obj->base);
2854 mutex_unlock(&dev->struct_mutex);
2855 return ret;
2856}
2857
2858/**
Ben Widawsky5816d642012-04-11 11:18:19 -07002859 * i915_gem_object_sync - sync an object to a ring.
2860 *
2861 * @obj: object which may be in use on another ring.
2862 * @to: ring we wish to use the object on. May be NULL.
2863 *
2864 * This code is meant to abstract object synchronization with the GPU.
2865 * Calling with NULL implies synchronizing the object with the CPU
2866 * rather than a particular GPU ring.
2867 *
2868 * Returns 0 if successful, else propagates up the lower layer error.
2869 */
Ben Widawsky2911a352012-04-05 14:47:36 -07002870int
2871i915_gem_object_sync(struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002872 struct intel_engine_cs *to)
Ben Widawsky2911a352012-04-05 14:47:36 -07002873{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002874 struct intel_engine_cs *from = obj->ring;
Ben Widawsky2911a352012-04-05 14:47:36 -07002875 u32 seqno;
2876 int ret, idx;
2877
2878 if (from == NULL || to == from)
2879 return 0;
2880
Ben Widawsky5816d642012-04-11 11:18:19 -07002881 if (to == NULL || !i915_semaphore_is_enabled(obj->base.dev))
Chris Wilson0201f1e2012-07-20 12:41:01 +01002882 return i915_gem_object_wait_rendering(obj, false);
Ben Widawsky2911a352012-04-05 14:47:36 -07002883
2884 idx = intel_ring_sync_index(from, to);
2885
Chris Wilson0201f1e2012-07-20 12:41:01 +01002886 seqno = obj->last_read_seqno;
Rodrigo Vividdd4dbc2014-06-30 09:51:11 -07002887 /* Optimization: Avoid semaphore sync when we are sure we already
2888 * waited for an object with higher seqno */
Ben Widawskyebc348b2014-04-29 14:52:28 -07002889 if (seqno <= from->semaphore.sync_seqno[idx])
Ben Widawsky2911a352012-04-05 14:47:36 -07002890 return 0;
2891
Ben Widawskyb4aca012012-04-25 20:50:12 -07002892 ret = i915_gem_check_olr(obj->ring, seqno);
2893 if (ret)
2894 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07002895
Chris Wilsonb52b89d2013-09-25 11:43:28 +01002896 trace_i915_gem_ring_sync_to(from, to, seqno);
Ben Widawskyebc348b2014-04-29 14:52:28 -07002897 ret = to->semaphore.sync_to(to, from, seqno);
Ben Widawskye3a5a222012-04-11 11:18:20 -07002898 if (!ret)
Mika Kuoppala7b01e262012-11-28 17:18:45 +02002899 /* We use last_read_seqno because sync_to()
2900 * might have just caused seqno wrap under
2901 * the radar.
2902 */
Ben Widawskyebc348b2014-04-29 14:52:28 -07002903 from->semaphore.sync_seqno[idx] = obj->last_read_seqno;
Ben Widawsky2911a352012-04-05 14:47:36 -07002904
Ben Widawskye3a5a222012-04-11 11:18:20 -07002905 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07002906}
2907
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002908static void i915_gem_object_finish_gtt(struct drm_i915_gem_object *obj)
2909{
2910 u32 old_write_domain, old_read_domains;
2911
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002912 /* Force a pagefault for domain tracking on next user access */
2913 i915_gem_release_mmap(obj);
2914
Keith Packardb97c3d92011-06-24 21:02:59 -07002915 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
2916 return;
2917
Chris Wilson97c809fd2012-10-09 19:24:38 +01002918 /* Wait for any direct GTT access to complete */
2919 mb();
2920
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002921 old_read_domains = obj->base.read_domains;
2922 old_write_domain = obj->base.write_domain;
2923
2924 obj->base.read_domains &= ~I915_GEM_DOMAIN_GTT;
2925 obj->base.write_domain &= ~I915_GEM_DOMAIN_GTT;
2926
2927 trace_i915_gem_object_change_domain(obj,
2928 old_read_domains,
2929 old_write_domain);
2930}
2931
Ben Widawsky07fe0b12013-07-31 17:00:10 -07002932int i915_vma_unbind(struct i915_vma *vma)
Eric Anholt673a3942008-07-30 12:06:12 -07002933{
Ben Widawsky07fe0b12013-07-31 17:00:10 -07002934 struct drm_i915_gem_object *obj = vma->obj;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03002935 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson43e28f02013-01-08 10:53:09 +00002936 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002937
Ben Widawsky07fe0b12013-07-31 17:00:10 -07002938 if (list_empty(&vma->vma_link))
Eric Anholt673a3942008-07-30 12:06:12 -07002939 return 0;
2940
Daniel Vetter0ff501c2013-08-29 19:50:31 +02002941 if (!drm_mm_node_allocated(&vma->node)) {
2942 i915_gem_vma_destroy(vma);
Daniel Vetter0ff501c2013-08-29 19:50:31 +02002943 return 0;
2944 }
Ben Widawsky433544b2013-08-13 18:09:06 -07002945
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08002946 if (vma->pin_count)
Chris Wilson31d8d652012-05-24 19:11:20 +01002947 return -EBUSY;
Eric Anholt673a3942008-07-30 12:06:12 -07002948
Chris Wilsonc4670ad2012-08-20 10:23:27 +01002949 BUG_ON(obj->pages == NULL);
2950
Chris Wilsona8198ee2011-04-13 22:04:09 +01002951 ret = i915_gem_object_finish_gpu(obj);
Chris Wilson1488fc02012-04-24 15:47:31 +01002952 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002953 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01002954 /* Continue on if we fail due to EIO, the GPU is hung so we
2955 * should be safe and we need to cleanup or else we might
2956 * cause memory corruption through use-after-free.
2957 */
Chris Wilsona8198ee2011-04-13 22:04:09 +01002958
Chris Wilson1d1ef21d2014-09-09 07:02:43 +01002959 /* Throw away the active reference before moving to the unbound list */
2960 i915_gem_object_retire(obj);
2961
Daniel Vetter8b1bc9b2014-02-14 14:06:07 +01002962 if (i915_is_ggtt(vma->vm)) {
2963 i915_gem_object_finish_gtt(obj);
Chris Wilsona8198ee2011-04-13 22:04:09 +01002964
Daniel Vetter8b1bc9b2014-02-14 14:06:07 +01002965 /* release the fence reg _after_ flushing */
2966 ret = i915_gem_object_put_fence(obj);
2967 if (ret)
2968 return ret;
2969 }
Daniel Vetter96b47b62009-12-15 17:50:00 +01002970
Ben Widawsky07fe0b12013-07-31 17:00:10 -07002971 trace_i915_vma_unbind(vma);
Chris Wilsondb53a302011-02-03 11:57:46 +00002972
Ben Widawsky6f65e292013-12-06 14:10:56 -08002973 vma->unbind_vma(vma);
2974
Chris Wilson64bf9302014-02-25 14:23:28 +00002975 list_del_init(&vma->mm_list);
Ben Widawsky5cacaac2013-07-31 17:00:13 -07002976 if (i915_is_ggtt(vma->vm))
Chris Wilsone6a84462014-08-11 12:00:12 +02002977 obj->map_and_fenceable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07002978
Ben Widawsky2f633152013-07-17 12:19:03 -07002979 drm_mm_remove_node(&vma->node);
2980 i915_gem_vma_destroy(vma);
2981
2982 /* Since the unbound list is global, only move to that list if
Daniel Vetterb93dab62013-08-26 11:23:47 +02002983 * no more VMAs exist. */
Armin Reese9490edb2014-07-11 10:20:07 -07002984 if (list_empty(&obj->vma_list)) {
2985 i915_gem_gtt_finish_object(obj);
Ben Widawsky2f633152013-07-17 12:19:03 -07002986 list_move_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Armin Reese9490edb2014-07-11 10:20:07 -07002987 }
Eric Anholt673a3942008-07-30 12:06:12 -07002988
Chris Wilson70903c32013-12-04 09:59:09 +00002989 /* And finally now the object is completely decoupled from this vma,
2990 * we can drop its hold on the backing storage and allow it to be
2991 * reaped by the shrinker.
2992 */
2993 i915_gem_object_unpin_pages(obj);
2994
Chris Wilson88241782011-01-07 17:09:48 +00002995 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002996}
2997
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07002998int i915_gpu_idle(struct drm_device *dev)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002999{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003000 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003001 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003002 int ret, i;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003003
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003004 /* Flush everything onto the inactive list. */
Chris Wilsonb4519512012-05-11 14:29:30 +01003005 for_each_ring(ring, dev_priv, i) {
Thomas Danielecdb5fd2014-08-20 16:29:24 +01003006 if (!i915.enable_execlists) {
3007 ret = i915_switch_context(ring, ring->default_context);
3008 if (ret)
3009 return ret;
3010 }
Ben Widawskyb6c74882012-08-14 14:35:14 -07003011
Chris Wilson3e960502012-11-27 16:22:54 +00003012 ret = intel_ring_idle(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003013 if (ret)
3014 return ret;
3015 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003016
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01003017 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003018}
3019
Chris Wilson9ce079e2012-04-17 15:31:30 +01003020static void i965_write_fence_reg(struct drm_device *dev, int reg,
3021 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003022{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003023 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak56c844e2013-01-07 21:47:34 +02003024 int fence_reg;
3025 int fence_pitch_shift;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003026
Imre Deak56c844e2013-01-07 21:47:34 +02003027 if (INTEL_INFO(dev)->gen >= 6) {
3028 fence_reg = FENCE_REG_SANDYBRIDGE_0;
3029 fence_pitch_shift = SANDYBRIDGE_FENCE_PITCH_SHIFT;
3030 } else {
3031 fence_reg = FENCE_REG_965_0;
3032 fence_pitch_shift = I965_FENCE_PITCH_SHIFT;
3033 }
3034
Chris Wilsond18b9612013-07-10 13:36:23 +01003035 fence_reg += reg * 8;
3036
3037 /* To w/a incoherency with non-atomic 64-bit register updates,
3038 * we split the 64-bit update into two 32-bit writes. In order
3039 * for a partial fence not to be evaluated between writes, we
3040 * precede the update with write to turn off the fence register,
3041 * and only enable the fence as the last step.
3042 *
3043 * For extra levels of paranoia, we make sure each step lands
3044 * before applying the next step.
3045 */
3046 I915_WRITE(fence_reg, 0);
3047 POSTING_READ(fence_reg);
3048
Chris Wilson9ce079e2012-04-17 15:31:30 +01003049 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003050 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilsond18b9612013-07-10 13:36:23 +01003051 uint64_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003052
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003053 val = (uint64_t)((i915_gem_obj_ggtt_offset(obj) + size - 4096) &
Chris Wilson9ce079e2012-04-17 15:31:30 +01003054 0xfffff000) << 32;
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003055 val |= i915_gem_obj_ggtt_offset(obj) & 0xfffff000;
Imre Deak56c844e2013-01-07 21:47:34 +02003056 val |= (uint64_t)((obj->stride / 128) - 1) << fence_pitch_shift;
Chris Wilson9ce079e2012-04-17 15:31:30 +01003057 if (obj->tiling_mode == I915_TILING_Y)
3058 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
3059 val |= I965_FENCE_REG_VALID;
Daniel Vetterc6642782010-11-12 13:46:18 +00003060
Chris Wilsond18b9612013-07-10 13:36:23 +01003061 I915_WRITE(fence_reg + 4, val >> 32);
3062 POSTING_READ(fence_reg + 4);
3063
3064 I915_WRITE(fence_reg + 0, val);
3065 POSTING_READ(fence_reg);
3066 } else {
3067 I915_WRITE(fence_reg + 4, 0);
3068 POSTING_READ(fence_reg + 4);
3069 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08003070}
3071
Chris Wilson9ce079e2012-04-17 15:31:30 +01003072static void i915_write_fence_reg(struct drm_device *dev, int reg,
3073 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003074{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003075 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9ce079e2012-04-17 15:31:30 +01003076 u32 val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003077
Chris Wilson9ce079e2012-04-17 15:31:30 +01003078 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003079 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003080 int pitch_val;
3081 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003082
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003083 WARN((i915_gem_obj_ggtt_offset(obj) & ~I915_FENCE_START_MASK) ||
Chris Wilson9ce079e2012-04-17 15:31:30 +01003084 (size & -size) != size ||
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003085 (i915_gem_obj_ggtt_offset(obj) & (size - 1)),
3086 "object 0x%08lx [fenceable? %d] not 1M or pot-size (0x%08x) aligned\n",
3087 i915_gem_obj_ggtt_offset(obj), obj->map_and_fenceable, size);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003088
3089 if (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev))
3090 tile_width = 128;
3091 else
3092 tile_width = 512;
3093
3094 /* Note: pitch better be a power of two tile widths */
3095 pitch_val = obj->stride / tile_width;
3096 pitch_val = ffs(pitch_val) - 1;
3097
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003098 val = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003099 if (obj->tiling_mode == I915_TILING_Y)
3100 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
3101 val |= I915_FENCE_SIZE_BITS(size);
3102 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
3103 val |= I830_FENCE_REG_VALID;
3104 } else
3105 val = 0;
3106
3107 if (reg < 8)
3108 reg = FENCE_REG_830_0 + reg * 4;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003109 else
Chris Wilson9ce079e2012-04-17 15:31:30 +01003110 reg = FENCE_REG_945_8 + (reg - 8) * 4;
Jesse Barnes0f973f22009-01-26 17:10:45 -08003111
Chris Wilson9ce079e2012-04-17 15:31:30 +01003112 I915_WRITE(reg, val);
3113 POSTING_READ(reg);
Jesse Barnesde151cf2008-11-12 10:03:55 -08003114}
3115
Chris Wilson9ce079e2012-04-17 15:31:30 +01003116static void i830_write_fence_reg(struct drm_device *dev, int reg,
3117 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003118{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003119 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003120 uint32_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003121
Chris Wilson9ce079e2012-04-17 15:31:30 +01003122 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003123 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003124 uint32_t pitch_val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003125
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003126 WARN((i915_gem_obj_ggtt_offset(obj) & ~I830_FENCE_START_MASK) ||
Chris Wilson9ce079e2012-04-17 15:31:30 +01003127 (size & -size) != size ||
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003128 (i915_gem_obj_ggtt_offset(obj) & (size - 1)),
3129 "object 0x%08lx not 512K or pot-size 0x%08x aligned\n",
3130 i915_gem_obj_ggtt_offset(obj), size);
Eric Anholte76a16d2009-05-26 17:44:56 -07003131
Chris Wilson9ce079e2012-04-17 15:31:30 +01003132 pitch_val = obj->stride / 128;
3133 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003134
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003135 val = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003136 if (obj->tiling_mode == I915_TILING_Y)
3137 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
3138 val |= I830_FENCE_SIZE_BITS(size);
3139 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
3140 val |= I830_FENCE_REG_VALID;
3141 } else
3142 val = 0;
Daniel Vetterc6642782010-11-12 13:46:18 +00003143
Chris Wilson9ce079e2012-04-17 15:31:30 +01003144 I915_WRITE(FENCE_REG_830_0 + reg * 4, val);
3145 POSTING_READ(FENCE_REG_830_0 + reg * 4);
3146}
3147
Chris Wilsond0a57782012-10-09 19:24:37 +01003148inline static bool i915_gem_object_needs_mb(struct drm_i915_gem_object *obj)
3149{
3150 return obj && obj->base.read_domains & I915_GEM_DOMAIN_GTT;
3151}
3152
Chris Wilson9ce079e2012-04-17 15:31:30 +01003153static void i915_gem_write_fence(struct drm_device *dev, int reg,
3154 struct drm_i915_gem_object *obj)
3155{
Chris Wilsond0a57782012-10-09 19:24:37 +01003156 struct drm_i915_private *dev_priv = dev->dev_private;
3157
3158 /* Ensure that all CPU reads are completed before installing a fence
3159 * and all writes before removing the fence.
3160 */
3161 if (i915_gem_object_needs_mb(dev_priv->fence_regs[reg].obj))
3162 mb();
3163
Daniel Vetter94a335d2013-07-17 14:51:28 +02003164 WARN(obj && (!obj->stride || !obj->tiling_mode),
3165 "bogus fence setup with stride: 0x%x, tiling mode: %i\n",
3166 obj->stride, obj->tiling_mode);
3167
Chris Wilson9ce079e2012-04-17 15:31:30 +01003168 switch (INTEL_INFO(dev)->gen) {
Ben Widawsky5ab31332013-11-02 21:07:03 -07003169 case 8:
Chris Wilson9ce079e2012-04-17 15:31:30 +01003170 case 7:
Imre Deak56c844e2013-01-07 21:47:34 +02003171 case 6:
Chris Wilson9ce079e2012-04-17 15:31:30 +01003172 case 5:
3173 case 4: i965_write_fence_reg(dev, reg, obj); break;
3174 case 3: i915_write_fence_reg(dev, reg, obj); break;
3175 case 2: i830_write_fence_reg(dev, reg, obj); break;
Ben Widawsky7dbf9d62012-12-18 10:31:22 -08003176 default: BUG();
Chris Wilson9ce079e2012-04-17 15:31:30 +01003177 }
Chris Wilsond0a57782012-10-09 19:24:37 +01003178
3179 /* And similarly be paranoid that no direct access to this region
3180 * is reordered to before the fence is installed.
3181 */
3182 if (i915_gem_object_needs_mb(obj))
3183 mb();
Jesse Barnesde151cf2008-11-12 10:03:55 -08003184}
3185
Chris Wilson61050802012-04-17 15:31:31 +01003186static inline int fence_number(struct drm_i915_private *dev_priv,
3187 struct drm_i915_fence_reg *fence)
3188{
3189 return fence - dev_priv->fence_regs;
3190}
3191
3192static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
3193 struct drm_i915_fence_reg *fence,
3194 bool enable)
3195{
Chris Wilson2dc8aae2013-05-22 17:08:06 +01003196 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson46a0b632013-07-10 13:36:24 +01003197 int reg = fence_number(dev_priv, fence);
Chris Wilson61050802012-04-17 15:31:31 +01003198
Chris Wilson46a0b632013-07-10 13:36:24 +01003199 i915_gem_write_fence(obj->base.dev, reg, enable ? obj : NULL);
Chris Wilson61050802012-04-17 15:31:31 +01003200
3201 if (enable) {
Chris Wilson46a0b632013-07-10 13:36:24 +01003202 obj->fence_reg = reg;
Chris Wilson61050802012-04-17 15:31:31 +01003203 fence->obj = obj;
3204 list_move_tail(&fence->lru_list, &dev_priv->mm.fence_list);
3205 } else {
3206 obj->fence_reg = I915_FENCE_REG_NONE;
3207 fence->obj = NULL;
3208 list_del_init(&fence->lru_list);
3209 }
Daniel Vetter94a335d2013-07-17 14:51:28 +02003210 obj->fence_dirty = false;
Chris Wilson61050802012-04-17 15:31:31 +01003211}
3212
Chris Wilsond9e86c02010-11-10 16:40:20 +00003213static int
Chris Wilsond0a57782012-10-09 19:24:37 +01003214i915_gem_object_wait_fence(struct drm_i915_gem_object *obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003215{
Chris Wilson1c293ea2012-04-17 15:31:27 +01003216 if (obj->last_fenced_seqno) {
Chris Wilson86d5bc32012-07-20 12:41:04 +01003217 int ret = i915_wait_seqno(obj->ring, obj->last_fenced_seqno);
Chris Wilson18991842012-04-17 15:31:29 +01003218 if (ret)
3219 return ret;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003220
3221 obj->last_fenced_seqno = 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003222 }
3223
3224 return 0;
3225}
3226
3227int
3228i915_gem_object_put_fence(struct drm_i915_gem_object *obj)
3229{
Chris Wilson61050802012-04-17 15:31:31 +01003230 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003231 struct drm_i915_fence_reg *fence;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003232 int ret;
3233
Chris Wilsond0a57782012-10-09 19:24:37 +01003234 ret = i915_gem_object_wait_fence(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003235 if (ret)
3236 return ret;
3237
Chris Wilson61050802012-04-17 15:31:31 +01003238 if (obj->fence_reg == I915_FENCE_REG_NONE)
3239 return 0;
Chris Wilson1690e1e2011-12-14 13:57:08 +01003240
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003241 fence = &dev_priv->fence_regs[obj->fence_reg];
3242
Daniel Vetteraff10b302014-02-14 14:06:05 +01003243 if (WARN_ON(fence->pin_count))
3244 return -EBUSY;
3245
Chris Wilson61050802012-04-17 15:31:31 +01003246 i915_gem_object_fence_lost(obj);
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003247 i915_gem_object_update_fence(obj, fence, false);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003248
3249 return 0;
3250}
3251
3252static struct drm_i915_fence_reg *
Chris Wilsona360bb12012-04-17 15:31:25 +01003253i915_find_fence_reg(struct drm_device *dev)
Daniel Vetterae3db242010-02-19 11:51:58 +01003254{
Daniel Vetterae3db242010-02-19 11:51:58 +01003255 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson8fe301a2012-04-17 15:31:28 +01003256 struct drm_i915_fence_reg *reg, *avail;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003257 int i;
Daniel Vetterae3db242010-02-19 11:51:58 +01003258
3259 /* First try to find a free reg */
Chris Wilsond9e86c02010-11-10 16:40:20 +00003260 avail = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01003261 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
3262 reg = &dev_priv->fence_regs[i];
3263 if (!reg->obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003264 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003265
Chris Wilson1690e1e2011-12-14 13:57:08 +01003266 if (!reg->pin_count)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003267 avail = reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003268 }
3269
Chris Wilsond9e86c02010-11-10 16:40:20 +00003270 if (avail == NULL)
Chris Wilson5dce5b932014-01-20 10:17:36 +00003271 goto deadlock;
Daniel Vetterae3db242010-02-19 11:51:58 +01003272
3273 /* None available, try to steal one or wait for a user to finish */
Chris Wilsond9e86c02010-11-10 16:40:20 +00003274 list_for_each_entry(reg, &dev_priv->mm.fence_list, lru_list) {
Chris Wilson1690e1e2011-12-14 13:57:08 +01003275 if (reg->pin_count)
Daniel Vetterae3db242010-02-19 11:51:58 +01003276 continue;
3277
Chris Wilson8fe301a2012-04-17 15:31:28 +01003278 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003279 }
3280
Chris Wilson5dce5b932014-01-20 10:17:36 +00003281deadlock:
3282 /* Wait for completion of pending flips which consume fences */
3283 if (intel_has_pending_fb_unpin(dev))
3284 return ERR_PTR(-EAGAIN);
3285
3286 return ERR_PTR(-EDEADLK);
Daniel Vetterae3db242010-02-19 11:51:58 +01003287}
3288
Jesse Barnesde151cf2008-11-12 10:03:55 -08003289/**
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003290 * i915_gem_object_get_fence - set up fencing for an object
Jesse Barnesde151cf2008-11-12 10:03:55 -08003291 * @obj: object to map through a fence reg
3292 *
3293 * When mapping objects through the GTT, userspace wants to be able to write
3294 * to them without having to worry about swizzling if the object is tiled.
Jesse Barnesde151cf2008-11-12 10:03:55 -08003295 * This function walks the fence regs looking for a free one for @obj,
3296 * stealing one if it can't find any.
3297 *
3298 * It then sets up the reg based on the object's properties: address, pitch
3299 * and tiling format.
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003300 *
3301 * For an untiled surface, this removes any existing fence.
Jesse Barnesde151cf2008-11-12 10:03:55 -08003302 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01003303int
Chris Wilson06d98132012-04-17 15:31:24 +01003304i915_gem_object_get_fence(struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003305{
Chris Wilson05394f32010-11-08 19:18:58 +00003306 struct drm_device *dev = obj->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08003307 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson14415742012-04-17 15:31:33 +01003308 bool enable = obj->tiling_mode != I915_TILING_NONE;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003309 struct drm_i915_fence_reg *reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003310 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003311
Chris Wilson14415742012-04-17 15:31:33 +01003312 /* Have we updated the tiling parameters upon the object and so
3313 * will need to serialise the write to the associated fence register?
3314 */
Chris Wilson5d82e3e2012-04-21 16:23:23 +01003315 if (obj->fence_dirty) {
Chris Wilsond0a57782012-10-09 19:24:37 +01003316 ret = i915_gem_object_wait_fence(obj);
Chris Wilson14415742012-04-17 15:31:33 +01003317 if (ret)
3318 return ret;
3319 }
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003320
Chris Wilsond9e86c02010-11-10 16:40:20 +00003321 /* Just update our place in the LRU if our fence is getting reused. */
Chris Wilson05394f32010-11-08 19:18:58 +00003322 if (obj->fence_reg != I915_FENCE_REG_NONE) {
3323 reg = &dev_priv->fence_regs[obj->fence_reg];
Chris Wilson5d82e3e2012-04-21 16:23:23 +01003324 if (!obj->fence_dirty) {
Chris Wilson14415742012-04-17 15:31:33 +01003325 list_move_tail(&reg->lru_list,
3326 &dev_priv->mm.fence_list);
3327 return 0;
3328 }
3329 } else if (enable) {
Chris Wilsone6a84462014-08-11 12:00:12 +02003330 if (WARN_ON(!obj->map_and_fenceable))
3331 return -EINVAL;
3332
Chris Wilson14415742012-04-17 15:31:33 +01003333 reg = i915_find_fence_reg(dev);
Chris Wilson5dce5b932014-01-20 10:17:36 +00003334 if (IS_ERR(reg))
3335 return PTR_ERR(reg);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003336
Chris Wilson14415742012-04-17 15:31:33 +01003337 if (reg->obj) {
3338 struct drm_i915_gem_object *old = reg->obj;
3339
Chris Wilsond0a57782012-10-09 19:24:37 +01003340 ret = i915_gem_object_wait_fence(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00003341 if (ret)
3342 return ret;
3343
Chris Wilson14415742012-04-17 15:31:33 +01003344 i915_gem_object_fence_lost(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00003345 }
Chris Wilson14415742012-04-17 15:31:33 +01003346 } else
Eric Anholta09ba7f2009-08-29 12:49:51 -07003347 return 0;
Eric Anholta09ba7f2009-08-29 12:49:51 -07003348
Chris Wilson14415742012-04-17 15:31:33 +01003349 i915_gem_object_update_fence(obj, reg, enable);
Chris Wilson14415742012-04-17 15:31:33 +01003350
Chris Wilson9ce079e2012-04-17 15:31:30 +01003351 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003352}
3353
Chris Wilson4144f9b2014-09-11 08:43:48 +01003354static bool i915_gem_valid_gtt_space(struct i915_vma *vma,
Chris Wilson42d6ab42012-07-26 11:49:32 +01003355 unsigned long cache_level)
3356{
Chris Wilson4144f9b2014-09-11 08:43:48 +01003357 struct drm_mm_node *gtt_space = &vma->node;
Chris Wilson42d6ab42012-07-26 11:49:32 +01003358 struct drm_mm_node *other;
3359
Chris Wilson4144f9b2014-09-11 08:43:48 +01003360 /*
3361 * On some machines we have to be careful when putting differing types
3362 * of snoopable memory together to avoid the prefetcher crossing memory
3363 * domains and dying. During vm initialisation, we decide whether or not
3364 * these constraints apply and set the drm_mm.color_adjust
3365 * appropriately.
Chris Wilson42d6ab42012-07-26 11:49:32 +01003366 */
Chris Wilson4144f9b2014-09-11 08:43:48 +01003367 if (vma->vm->mm.color_adjust == NULL)
Chris Wilson42d6ab42012-07-26 11:49:32 +01003368 return true;
3369
Ben Widawskyc6cfb322013-07-05 14:41:06 -07003370 if (!drm_mm_node_allocated(gtt_space))
Chris Wilson42d6ab42012-07-26 11:49:32 +01003371 return true;
3372
3373 if (list_empty(&gtt_space->node_list))
3374 return true;
3375
3376 other = list_entry(gtt_space->node_list.prev, struct drm_mm_node, node_list);
3377 if (other->allocated && !other->hole_follows && other->color != cache_level)
3378 return false;
3379
3380 other = list_entry(gtt_space->node_list.next, struct drm_mm_node, node_list);
3381 if (other->allocated && !gtt_space->hole_follows && other->color != cache_level)
3382 return false;
3383
3384 return true;
3385}
3386
3387static void i915_gem_verify_gtt(struct drm_device *dev)
3388{
3389#if WATCH_GTT
3390 struct drm_i915_private *dev_priv = dev->dev_private;
3391 struct drm_i915_gem_object *obj;
3392 int err = 0;
3393
Ben Widawsky35c20a62013-05-31 11:28:48 -07003394 list_for_each_entry(obj, &dev_priv->mm.gtt_list, global_list) {
Chris Wilson42d6ab42012-07-26 11:49:32 +01003395 if (obj->gtt_space == NULL) {
3396 printk(KERN_ERR "object found on GTT list with no space reserved\n");
3397 err++;
3398 continue;
3399 }
3400
3401 if (obj->cache_level != obj->gtt_space->color) {
3402 printk(KERN_ERR "object reserved space [%08lx, %08lx] with wrong color, cache_level=%x, color=%lx\n",
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003403 i915_gem_obj_ggtt_offset(obj),
3404 i915_gem_obj_ggtt_offset(obj) + i915_gem_obj_ggtt_size(obj),
Chris Wilson42d6ab42012-07-26 11:49:32 +01003405 obj->cache_level,
3406 obj->gtt_space->color);
3407 err++;
3408 continue;
3409 }
3410
3411 if (!i915_gem_valid_gtt_space(dev,
3412 obj->gtt_space,
3413 obj->cache_level)) {
3414 printk(KERN_ERR "invalid GTT space found at [%08lx, %08lx] - color=%x\n",
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003415 i915_gem_obj_ggtt_offset(obj),
3416 i915_gem_obj_ggtt_offset(obj) + i915_gem_obj_ggtt_size(obj),
Chris Wilson42d6ab42012-07-26 11:49:32 +01003417 obj->cache_level);
3418 err++;
3419 continue;
3420 }
3421 }
3422
3423 WARN_ON(err);
3424#endif
3425}
3426
Jesse Barnesde151cf2008-11-12 10:03:55 -08003427/**
Eric Anholt673a3942008-07-30 12:06:12 -07003428 * Finds free space in the GTT aperture and binds the object there.
3429 */
Daniel Vetter262de142014-02-14 14:01:20 +01003430static struct i915_vma *
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003431i915_gem_object_bind_to_vm(struct drm_i915_gem_object *obj,
3432 struct i915_address_space *vm,
3433 unsigned alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02003434 uint64_t flags)
Eric Anholt673a3942008-07-30 12:06:12 -07003435{
Chris Wilson05394f32010-11-08 19:18:58 +00003436 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003437 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter5e783302010-11-14 22:32:36 +01003438 u32 size, fence_size, fence_alignment, unfenced_alignment;
Chris Wilsond23db882014-05-23 08:48:08 +02003439 unsigned long start =
3440 flags & PIN_OFFSET_BIAS ? flags & PIN_OFFSET_MASK : 0;
3441 unsigned long end =
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003442 flags & PIN_MAPPABLE ? dev_priv->gtt.mappable_end : vm->total;
Ben Widawsky2f633152013-07-17 12:19:03 -07003443 struct i915_vma *vma;
Chris Wilson07f73f62009-09-14 16:50:30 +01003444 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003445
Chris Wilsone28f8712011-07-18 13:11:49 -07003446 fence_size = i915_gem_get_gtt_size(dev,
3447 obj->base.size,
3448 obj->tiling_mode);
3449 fence_alignment = i915_gem_get_gtt_alignment(dev,
3450 obj->base.size,
Imre Deakd8651102013-01-07 21:47:33 +02003451 obj->tiling_mode, true);
Chris Wilsone28f8712011-07-18 13:11:49 -07003452 unfenced_alignment =
Imre Deakd8651102013-01-07 21:47:33 +02003453 i915_gem_get_gtt_alignment(dev,
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003454 obj->base.size,
3455 obj->tiling_mode, false);
Chris Wilsona00b10c2010-09-24 21:15:47 +01003456
Eric Anholt673a3942008-07-30 12:06:12 -07003457 if (alignment == 0)
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003458 alignment = flags & PIN_MAPPABLE ? fence_alignment :
Daniel Vetter5e783302010-11-14 22:32:36 +01003459 unfenced_alignment;
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003460 if (flags & PIN_MAPPABLE && alignment & (fence_alignment - 1)) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00003461 DRM_DEBUG("Invalid object alignment requested %u\n", alignment);
Daniel Vetter262de142014-02-14 14:01:20 +01003462 return ERR_PTR(-EINVAL);
Eric Anholt673a3942008-07-30 12:06:12 -07003463 }
3464
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003465 size = flags & PIN_MAPPABLE ? fence_size : obj->base.size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01003466
Chris Wilson654fc602010-05-27 13:18:21 +01003467 /* If the object is bigger than the entire aperture, reject it early
3468 * before evicting everything in a vain attempt to find space.
3469 */
Chris Wilsond23db882014-05-23 08:48:08 +02003470 if (obj->base.size > end) {
3471 DRM_DEBUG("Attempting to bind an object larger than the aperture: object=%zd > %s aperture=%lu\n",
Chris Wilsona36689c2013-05-21 16:58:49 +01003472 obj->base.size,
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003473 flags & PIN_MAPPABLE ? "mappable" : "total",
Chris Wilsond23db882014-05-23 08:48:08 +02003474 end);
Daniel Vetter262de142014-02-14 14:01:20 +01003475 return ERR_PTR(-E2BIG);
Chris Wilson654fc602010-05-27 13:18:21 +01003476 }
3477
Chris Wilson37e680a2012-06-07 15:38:42 +01003478 ret = i915_gem_object_get_pages(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02003479 if (ret)
Daniel Vetter262de142014-02-14 14:01:20 +01003480 return ERR_PTR(ret);
Chris Wilson6c085a72012-08-20 11:40:46 +02003481
Chris Wilsonfbdda6f2012-11-20 10:45:16 +00003482 i915_gem_object_pin_pages(obj);
3483
Ben Widawskyaccfef22013-08-14 11:38:35 +02003484 vma = i915_gem_obj_lookup_or_create_vma(obj, vm);
Daniel Vetter262de142014-02-14 14:01:20 +01003485 if (IS_ERR(vma))
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003486 goto err_unpin;
Ben Widawsky2f633152013-07-17 12:19:03 -07003487
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003488search_free:
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003489 ret = drm_mm_insert_node_in_range_generic(&vm->mm, &vma->node,
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003490 size, alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02003491 obj->cache_level,
3492 start, end,
Lauri Kasanen62347f92014-04-02 20:03:57 +03003493 DRM_MM_SEARCH_DEFAULT,
3494 DRM_MM_CREATE_DEFAULT);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003495 if (ret) {
Ben Widawskyf6cd1f12013-07-31 17:00:11 -07003496 ret = i915_gem_evict_something(dev, vm, size, alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02003497 obj->cache_level,
3498 start, end,
3499 flags);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003500 if (ret == 0)
3501 goto search_free;
Chris Wilson97311292009-09-21 00:22:34 +01003502
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003503 goto err_free_vma;
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003504 }
Chris Wilson4144f9b2014-09-11 08:43:48 +01003505 if (WARN_ON(!i915_gem_valid_gtt_space(vma, obj->cache_level))) {
Ben Widawsky2f633152013-07-17 12:19:03 -07003506 ret = -EINVAL;
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003507 goto err_remove_node;
Eric Anholt673a3942008-07-30 12:06:12 -07003508 }
3509
Daniel Vetter74163902012-02-15 23:50:21 +01003510 ret = i915_gem_gtt_prepare_object(obj);
Ben Widawsky2f633152013-07-17 12:19:03 -07003511 if (ret)
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003512 goto err_remove_node;
Eric Anholt673a3942008-07-30 12:06:12 -07003513
Ben Widawsky35c20a62013-05-31 11:28:48 -07003514 list_move_tail(&obj->global_list, &dev_priv->mm.bound_list);
Ben Widawskyca191b12013-07-31 17:00:14 -07003515 list_add_tail(&vma->mm_list, &vm->inactive_list);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01003516
Ben Widawsky4bd561b2013-08-13 18:09:07 -07003517 if (i915_is_ggtt(vm)) {
3518 bool mappable, fenceable;
Chris Wilsona00b10c2010-09-24 21:15:47 +01003519
Daniel Vetter49987092013-08-14 10:21:23 +02003520 fenceable = (vma->node.size == fence_size &&
3521 (vma->node.start & (fence_alignment - 1)) == 0);
Chris Wilsona00b10c2010-09-24 21:15:47 +01003522
Daniel Vetter49987092013-08-14 10:21:23 +02003523 mappable = (vma->node.start + obj->base.size <=
3524 dev_priv->gtt.mappable_end);
Ben Widawsky4bd561b2013-08-13 18:09:07 -07003525
Ben Widawsky5cacaac2013-07-31 17:00:13 -07003526 obj->map_and_fenceable = mappable && fenceable;
Ben Widawsky4bd561b2013-08-13 18:09:07 -07003527 }
Daniel Vetter75e9e912010-11-04 17:11:09 +01003528
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003529 WARN_ON(flags & PIN_MAPPABLE && !obj->map_and_fenceable);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003530
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003531 trace_i915_vma_bind(vma, flags);
Daniel Vetter8ea99c92014-02-14 14:01:21 +01003532 vma->bind_vma(vma, obj->cache_level,
3533 flags & (PIN_MAPPABLE | PIN_GLOBAL) ? GLOBAL_BIND : 0);
3534
Chris Wilson42d6ab42012-07-26 11:49:32 +01003535 i915_gem_verify_gtt(dev);
Daniel Vetter262de142014-02-14 14:01:20 +01003536 return vma;
Ben Widawsky2f633152013-07-17 12:19:03 -07003537
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003538err_remove_node:
Dan Carpenter6286ef92013-07-19 08:46:27 +03003539 drm_mm_remove_node(&vma->node);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003540err_free_vma:
Ben Widawsky2f633152013-07-17 12:19:03 -07003541 i915_gem_vma_destroy(vma);
Daniel Vetter262de142014-02-14 14:01:20 +01003542 vma = ERR_PTR(ret);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003543err_unpin:
Ben Widawsky2f633152013-07-17 12:19:03 -07003544 i915_gem_object_unpin_pages(obj);
Daniel Vetter262de142014-02-14 14:01:20 +01003545 return vma;
Eric Anholt673a3942008-07-30 12:06:12 -07003546}
3547
Chris Wilson000433b2013-08-08 14:41:09 +01003548bool
Chris Wilson2c225692013-08-09 12:26:45 +01003549i915_gem_clflush_object(struct drm_i915_gem_object *obj,
3550 bool force)
Eric Anholt673a3942008-07-30 12:06:12 -07003551{
Eric Anholt673a3942008-07-30 12:06:12 -07003552 /* If we don't have a page list set up, then we're not pinned
3553 * to GPU, and we can ignore the cache flush because it'll happen
3554 * again at bind time.
3555 */
Chris Wilson05394f32010-11-08 19:18:58 +00003556 if (obj->pages == NULL)
Chris Wilson000433b2013-08-08 14:41:09 +01003557 return false;
Eric Anholt673a3942008-07-30 12:06:12 -07003558
Imre Deak769ce462013-02-13 21:56:05 +02003559 /*
3560 * Stolen memory is always coherent with the GPU as it is explicitly
3561 * marked as wc by the system, or the system is cache-coherent.
3562 */
3563 if (obj->stolen)
Chris Wilson000433b2013-08-08 14:41:09 +01003564 return false;
Imre Deak769ce462013-02-13 21:56:05 +02003565
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003566 /* If the GPU is snooping the contents of the CPU cache,
3567 * we do not need to manually clear the CPU cache lines. However,
3568 * the caches are only snooped when the render cache is
3569 * flushed/invalidated. As we always have to emit invalidations
3570 * and flushes when moving into and out of the RENDER domain, correct
3571 * snooping behaviour occurs naturally as the result of our domain
3572 * tracking.
3573 */
Chris Wilson2c225692013-08-09 12:26:45 +01003574 if (!force && cpu_cache_is_coherent(obj->base.dev, obj->cache_level))
Chris Wilson000433b2013-08-08 14:41:09 +01003575 return false;
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003576
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003577 trace_i915_gem_object_clflush(obj);
Chris Wilson9da3da62012-06-01 15:20:22 +01003578 drm_clflush_sg(obj->pages);
Chris Wilson000433b2013-08-08 14:41:09 +01003579
3580 return true;
Eric Anholte47c68e2008-11-14 13:35:19 -08003581}
3582
3583/** Flushes the GTT write domain for the object if it's dirty. */
3584static void
Chris Wilson05394f32010-11-08 19:18:58 +00003585i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003586{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003587 uint32_t old_write_domain;
3588
Chris Wilson05394f32010-11-08 19:18:58 +00003589 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08003590 return;
3591
Chris Wilson63256ec2011-01-04 18:42:07 +00003592 /* No actual flushing is required for the GTT write domain. Writes
Eric Anholte47c68e2008-11-14 13:35:19 -08003593 * to it immediately go to main memory as far as we know, so there's
3594 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00003595 *
3596 * However, we do have to enforce the order so that all writes through
3597 * the GTT land before any writes to the device, such as updates to
3598 * the GATT itself.
Eric Anholte47c68e2008-11-14 13:35:19 -08003599 */
Chris Wilson63256ec2011-01-04 18:42:07 +00003600 wmb();
3601
Chris Wilson05394f32010-11-08 19:18:58 +00003602 old_write_domain = obj->base.write_domain;
3603 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003604
Daniel Vetterf99d7062014-06-19 16:01:59 +02003605 intel_fb_obj_flush(obj, false);
3606
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003607 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003608 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003609 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003610}
3611
3612/** Flushes the CPU write domain for the object if it's dirty. */
3613static void
Chris Wilson2c225692013-08-09 12:26:45 +01003614i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj,
3615 bool force)
Eric Anholte47c68e2008-11-14 13:35:19 -08003616{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003617 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08003618
Chris Wilson05394f32010-11-08 19:18:58 +00003619 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08003620 return;
3621
Chris Wilson000433b2013-08-08 14:41:09 +01003622 if (i915_gem_clflush_object(obj, force))
3623 i915_gem_chipset_flush(obj->base.dev);
3624
Chris Wilson05394f32010-11-08 19:18:58 +00003625 old_write_domain = obj->base.write_domain;
3626 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003627
Daniel Vetterf99d7062014-06-19 16:01:59 +02003628 intel_fb_obj_flush(obj, false);
3629
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003630 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003631 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003632 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003633}
3634
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003635/**
3636 * Moves a single object to the GTT read, and possibly write domain.
3637 *
3638 * This function returns when the move is complete, including waiting on
3639 * flushes to occur.
3640 */
Jesse Barnes79e53942008-11-07 14:24:08 -08003641int
Chris Wilson20217462010-11-23 15:26:33 +00003642i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003643{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003644 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilsondc8cd1e2014-08-09 17:37:22 +01003645 struct i915_vma *vma = i915_gem_obj_to_ggtt(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003646 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003647 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003648
Eric Anholt02354392008-11-26 13:58:13 -08003649 /* Not valid to be called on unbound objects. */
Chris Wilsondc8cd1e2014-08-09 17:37:22 +01003650 if (vma == NULL)
Eric Anholt02354392008-11-26 13:58:13 -08003651 return -EINVAL;
3652
Chris Wilson8d7e3de2011-02-07 15:23:02 +00003653 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
3654 return 0;
3655
Chris Wilson0201f1e2012-07-20 12:41:01 +01003656 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00003657 if (ret)
3658 return ret;
3659
Chris Wilsonc8725f32014-03-17 12:21:55 +00003660 i915_gem_object_retire(obj);
Chris Wilson2c225692013-08-09 12:26:45 +01003661 i915_gem_object_flush_cpu_write_domain(obj, false);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003662
Chris Wilsond0a57782012-10-09 19:24:37 +01003663 /* Serialise direct access to this object with the barriers for
3664 * coherent writes from the GPU, by effectively invalidating the
3665 * GTT domain upon first access.
3666 */
3667 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
3668 mb();
3669
Chris Wilson05394f32010-11-08 19:18:58 +00003670 old_write_domain = obj->base.write_domain;
3671 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003672
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003673 /* It should now be out of any other write domains, and we can update
3674 * the domain values for our changes.
3675 */
Chris Wilson05394f32010-11-08 19:18:58 +00003676 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
3677 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08003678 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003679 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
3680 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
3681 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08003682 }
3683
Daniel Vetterf99d7062014-06-19 16:01:59 +02003684 if (write)
3685 intel_fb_obj_invalidate(obj, NULL);
3686
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003687 trace_i915_gem_object_change_domain(obj,
3688 old_read_domains,
3689 old_write_domain);
3690
Chris Wilson8325a092012-04-24 15:52:35 +01003691 /* And bump the LRU for this access */
Chris Wilsondc8cd1e2014-08-09 17:37:22 +01003692 if (i915_gem_object_is_inactive(obj))
3693 list_move_tail(&vma->mm_list,
3694 &dev_priv->gtt.base.inactive_list);
Chris Wilson8325a092012-04-24 15:52:35 +01003695
Eric Anholte47c68e2008-11-14 13:35:19 -08003696 return 0;
3697}
3698
Chris Wilsone4ffd172011-04-04 09:44:39 +01003699int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
3700 enum i915_cache_level cache_level)
3701{
Daniel Vetter7bddb012012-02-09 17:15:47 +01003702 struct drm_device *dev = obj->base.dev;
Chris Wilsondf6f7832014-03-21 07:40:56 +00003703 struct i915_vma *vma, *next;
Chris Wilsone4ffd172011-04-04 09:44:39 +01003704 int ret;
3705
3706 if (obj->cache_level == cache_level)
3707 return 0;
3708
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08003709 if (i915_gem_obj_is_pinned(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003710 DRM_DEBUG("can not change the cache level of pinned objects\n");
3711 return -EBUSY;
3712 }
3713
Chris Wilsondf6f7832014-03-21 07:40:56 +00003714 list_for_each_entry_safe(vma, next, &obj->vma_list, vma_link) {
Chris Wilson4144f9b2014-09-11 08:43:48 +01003715 if (!i915_gem_valid_gtt_space(vma, cache_level)) {
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003716 ret = i915_vma_unbind(vma);
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003717 if (ret)
3718 return ret;
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003719 }
Chris Wilson42d6ab42012-07-26 11:49:32 +01003720 }
3721
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003722 if (i915_gem_obj_bound_any(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003723 ret = i915_gem_object_finish_gpu(obj);
3724 if (ret)
3725 return ret;
3726
3727 i915_gem_object_finish_gtt(obj);
3728
3729 /* Before SandyBridge, you could not use tiling or fence
3730 * registers with snooped memory, so relinquish any fences
3731 * currently pointing to our region in the aperture.
3732 */
Chris Wilson42d6ab42012-07-26 11:49:32 +01003733 if (INTEL_INFO(dev)->gen < 6) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003734 ret = i915_gem_object_put_fence(obj);
3735 if (ret)
3736 return ret;
3737 }
3738
Ben Widawsky6f65e292013-12-06 14:10:56 -08003739 list_for_each_entry(vma, &obj->vma_list, vma_link)
Daniel Vetter8ea99c92014-02-14 14:01:21 +01003740 if (drm_mm_node_allocated(&vma->node))
3741 vma->bind_vma(vma, cache_level,
3742 obj->has_global_gtt_mapping ? GLOBAL_BIND : 0);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003743 }
3744
Chris Wilson2c225692013-08-09 12:26:45 +01003745 list_for_each_entry(vma, &obj->vma_list, vma_link)
3746 vma->node.color = cache_level;
3747 obj->cache_level = cache_level;
3748
3749 if (cpu_write_needs_clflush(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003750 u32 old_read_domains, old_write_domain;
3751
3752 /* If we're coming from LLC cached, then we haven't
3753 * actually been tracking whether the data is in the
3754 * CPU cache or not, since we only allow one bit set
3755 * in obj->write_domain and have been skipping the clflushes.
3756 * Just set it to the CPU cache for now.
3757 */
Chris Wilsonc8725f32014-03-17 12:21:55 +00003758 i915_gem_object_retire(obj);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003759 WARN_ON(obj->base.write_domain & ~I915_GEM_DOMAIN_CPU);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003760
3761 old_read_domains = obj->base.read_domains;
3762 old_write_domain = obj->base.write_domain;
3763
3764 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3765 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3766
3767 trace_i915_gem_object_change_domain(obj,
3768 old_read_domains,
3769 old_write_domain);
3770 }
3771
Chris Wilson42d6ab42012-07-26 11:49:32 +01003772 i915_gem_verify_gtt(dev);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003773 return 0;
3774}
3775
Ben Widawsky199adf42012-09-21 17:01:20 -07003776int i915_gem_get_caching_ioctl(struct drm_device *dev, void *data,
3777 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003778{
Ben Widawsky199adf42012-09-21 17:01:20 -07003779 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003780 struct drm_i915_gem_object *obj;
3781 int ret;
3782
3783 ret = i915_mutex_lock_interruptible(dev);
3784 if (ret)
3785 return ret;
3786
3787 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3788 if (&obj->base == NULL) {
3789 ret = -ENOENT;
3790 goto unlock;
3791 }
3792
Chris Wilson651d7942013-08-08 14:41:10 +01003793 switch (obj->cache_level) {
3794 case I915_CACHE_LLC:
3795 case I915_CACHE_L3_LLC:
3796 args->caching = I915_CACHING_CACHED;
3797 break;
3798
Chris Wilson4257d3b2013-08-08 14:41:11 +01003799 case I915_CACHE_WT:
3800 args->caching = I915_CACHING_DISPLAY;
3801 break;
3802
Chris Wilson651d7942013-08-08 14:41:10 +01003803 default:
3804 args->caching = I915_CACHING_NONE;
3805 break;
3806 }
Chris Wilsone6994ae2012-07-10 10:27:08 +01003807
3808 drm_gem_object_unreference(&obj->base);
3809unlock:
3810 mutex_unlock(&dev->struct_mutex);
3811 return ret;
3812}
3813
Ben Widawsky199adf42012-09-21 17:01:20 -07003814int i915_gem_set_caching_ioctl(struct drm_device *dev, void *data,
3815 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003816{
Ben Widawsky199adf42012-09-21 17:01:20 -07003817 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003818 struct drm_i915_gem_object *obj;
3819 enum i915_cache_level level;
3820 int ret;
3821
Ben Widawsky199adf42012-09-21 17:01:20 -07003822 switch (args->caching) {
3823 case I915_CACHING_NONE:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003824 level = I915_CACHE_NONE;
3825 break;
Ben Widawsky199adf42012-09-21 17:01:20 -07003826 case I915_CACHING_CACHED:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003827 level = I915_CACHE_LLC;
3828 break;
Chris Wilson4257d3b2013-08-08 14:41:11 +01003829 case I915_CACHING_DISPLAY:
3830 level = HAS_WT(dev) ? I915_CACHE_WT : I915_CACHE_NONE;
3831 break;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003832 default:
3833 return -EINVAL;
3834 }
3835
Ben Widawsky3bc29132012-09-26 16:15:20 -07003836 ret = i915_mutex_lock_interruptible(dev);
3837 if (ret)
3838 return ret;
3839
Chris Wilsone6994ae2012-07-10 10:27:08 +01003840 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3841 if (&obj->base == NULL) {
3842 ret = -ENOENT;
3843 goto unlock;
3844 }
3845
3846 ret = i915_gem_object_set_cache_level(obj, level);
3847
3848 drm_gem_object_unreference(&obj->base);
3849unlock:
3850 mutex_unlock(&dev->struct_mutex);
3851 return ret;
3852}
3853
Chris Wilsoncc98b412013-08-09 12:25:09 +01003854static bool is_pin_display(struct drm_i915_gem_object *obj)
3855{
Oscar Mateo19656432014-05-16 14:20:43 +01003856 struct i915_vma *vma;
3857
Oscar Mateo19656432014-05-16 14:20:43 +01003858 vma = i915_gem_obj_to_ggtt(obj);
3859 if (!vma)
3860 return false;
3861
Chris Wilsoncc98b412013-08-09 12:25:09 +01003862 /* There are 3 sources that pin objects:
3863 * 1. The display engine (scanouts, sprites, cursors);
3864 * 2. Reservations for execbuffer;
3865 * 3. The user.
3866 *
3867 * We can ignore reservations as we hold the struct_mutex and
3868 * are only called outside of the reservation path. The user
3869 * can only increment pin_count once, and so if after
3870 * subtracting the potential reference by the user, any pin_count
3871 * remains, it must be due to another use by the display engine.
3872 */
Oscar Mateo19656432014-05-16 14:20:43 +01003873 return vma->pin_count - !!obj->user_pin_count;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003874}
3875
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003876/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003877 * Prepare buffer for display plane (scanout, cursors, etc).
3878 * Can be called from an uninterruptible phase (modesetting) and allows
3879 * any flushes to be pipelined (for pageflips).
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003880 */
3881int
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003882i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
3883 u32 alignment,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003884 struct intel_engine_cs *pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003885{
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003886 u32 old_read_domains, old_write_domain;
Oscar Mateo19656432014-05-16 14:20:43 +01003887 bool was_pin_display;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003888 int ret;
3889
Chris Wilson0be73282010-12-06 14:36:27 +00003890 if (pipelined != obj->ring) {
Ben Widawsky2911a352012-04-05 14:47:36 -07003891 ret = i915_gem_object_sync(obj, pipelined);
3892 if (ret)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003893 return ret;
3894 }
3895
Chris Wilsoncc98b412013-08-09 12:25:09 +01003896 /* Mark the pin_display early so that we account for the
3897 * display coherency whilst setting up the cache domains.
3898 */
Oscar Mateo19656432014-05-16 14:20:43 +01003899 was_pin_display = obj->pin_display;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003900 obj->pin_display = true;
3901
Eric Anholta7ef0642011-03-29 16:59:54 -07003902 /* The display engine is not coherent with the LLC cache on gen6. As
3903 * a result, we make sure that the pinning that is about to occur is
3904 * done with uncached PTEs. This is lowest common denominator for all
3905 * chipsets.
3906 *
3907 * However for gen6+, we could do better by using the GFDT bit instead
3908 * of uncaching, which would allow us to flush all the LLC-cached data
3909 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
3910 */
Chris Wilson651d7942013-08-08 14:41:10 +01003911 ret = i915_gem_object_set_cache_level(obj,
3912 HAS_WT(obj->base.dev) ? I915_CACHE_WT : I915_CACHE_NONE);
Eric Anholta7ef0642011-03-29 16:59:54 -07003913 if (ret)
Chris Wilsoncc98b412013-08-09 12:25:09 +01003914 goto err_unpin_display;
Eric Anholta7ef0642011-03-29 16:59:54 -07003915
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003916 /* As the user may map the buffer once pinned in the display plane
3917 * (e.g. libkms for the bootup splash), we have to ensure that we
3918 * always use map_and_fenceable for all scanout buffers.
3919 */
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003920 ret = i915_gem_obj_ggtt_pin(obj, alignment, PIN_MAPPABLE);
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003921 if (ret)
Chris Wilsoncc98b412013-08-09 12:25:09 +01003922 goto err_unpin_display;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003923
Chris Wilson2c225692013-08-09 12:26:45 +01003924 i915_gem_object_flush_cpu_write_domain(obj, true);
Chris Wilsonb118c1e2010-05-27 13:18:14 +01003925
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003926 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00003927 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003928
3929 /* It should now be out of any other write domains, and we can update
3930 * the domain values for our changes.
3931 */
Chris Wilsone5f1d962012-07-20 12:41:00 +01003932 obj->base.write_domain = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00003933 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003934
3935 trace_i915_gem_object_change_domain(obj,
3936 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003937 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003938
3939 return 0;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003940
3941err_unpin_display:
Oscar Mateo19656432014-05-16 14:20:43 +01003942 WARN_ON(was_pin_display != is_pin_display(obj));
3943 obj->pin_display = was_pin_display;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003944 return ret;
3945}
3946
3947void
3948i915_gem_object_unpin_from_display_plane(struct drm_i915_gem_object *obj)
3949{
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08003950 i915_gem_object_ggtt_unpin(obj);
Chris Wilsoncc98b412013-08-09 12:25:09 +01003951 obj->pin_display = is_pin_display(obj);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003952}
3953
Chris Wilson85345512010-11-13 09:49:11 +00003954int
Chris Wilsona8198ee2011-04-13 22:04:09 +01003955i915_gem_object_finish_gpu(struct drm_i915_gem_object *obj)
Chris Wilson85345512010-11-13 09:49:11 +00003956{
Chris Wilson88241782011-01-07 17:09:48 +00003957 int ret;
3958
Chris Wilsona8198ee2011-04-13 22:04:09 +01003959 if ((obj->base.read_domains & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson85345512010-11-13 09:49:11 +00003960 return 0;
3961
Chris Wilson0201f1e2012-07-20 12:41:01 +01003962 ret = i915_gem_object_wait_rendering(obj, false);
Chris Wilsonc501ae72011-12-14 13:57:23 +01003963 if (ret)
3964 return ret;
3965
Chris Wilsona8198ee2011-04-13 22:04:09 +01003966 /* Ensure that we invalidate the GPU's caches and TLBs. */
3967 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilsonc501ae72011-12-14 13:57:23 +01003968 return 0;
Chris Wilson85345512010-11-13 09:49:11 +00003969}
3970
Eric Anholte47c68e2008-11-14 13:35:19 -08003971/**
3972 * Moves a single object to the CPU read, and possibly write domain.
3973 *
3974 * This function returns when the move is complete, including waiting on
3975 * flushes to occur.
3976 */
Chris Wilsondabdfe02012-03-26 10:10:27 +02003977int
Chris Wilson919926a2010-11-12 13:42:53 +00003978i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08003979{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003980 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003981 int ret;
3982
Chris Wilson8d7e3de2011-02-07 15:23:02 +00003983 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
3984 return 0;
3985
Chris Wilson0201f1e2012-07-20 12:41:01 +01003986 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00003987 if (ret)
3988 return ret;
3989
Chris Wilsonc8725f32014-03-17 12:21:55 +00003990 i915_gem_object_retire(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08003991 i915_gem_object_flush_gtt_write_domain(obj);
3992
Chris Wilson05394f32010-11-08 19:18:58 +00003993 old_write_domain = obj->base.write_domain;
3994 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003995
Eric Anholte47c68e2008-11-14 13:35:19 -08003996 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00003997 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Chris Wilson2c225692013-08-09 12:26:45 +01003998 i915_gem_clflush_object(obj, false);
Eric Anholte47c68e2008-11-14 13:35:19 -08003999
Chris Wilson05394f32010-11-08 19:18:58 +00004000 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08004001 }
4002
4003 /* It should now be out of any other write domains, and we can update
4004 * the domain values for our changes.
4005 */
Chris Wilson05394f32010-11-08 19:18:58 +00004006 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08004007
4008 /* If we're writing through the CPU, then the GPU read domains will
4009 * need to be invalidated at next use.
4010 */
4011 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00004012 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4013 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08004014 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08004015
Daniel Vetterf99d7062014-06-19 16:01:59 +02004016 if (write)
4017 intel_fb_obj_invalidate(obj, NULL);
4018
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004019 trace_i915_gem_object_change_domain(obj,
4020 old_read_domains,
4021 old_write_domain);
4022
Eric Anholt2ef7eea2008-11-10 10:53:25 -08004023 return 0;
4024}
4025
Eric Anholt673a3942008-07-30 12:06:12 -07004026/* Throttle our rendering by waiting until the ring has completed our requests
4027 * emitted over 20 msec ago.
4028 *
Eric Anholtb9624422009-06-03 07:27:35 +00004029 * Note that if we were to use the current jiffies each time around the loop,
4030 * we wouldn't escape the function with any frames outstanding if the time to
4031 * render a frame was over 20ms.
4032 *
Eric Anholt673a3942008-07-30 12:06:12 -07004033 * This should get us reasonable parallelism between CPU and GPU but also
4034 * relatively low latency when blocking on a particular request to finish.
4035 */
4036static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004037i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004038{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004039 struct drm_i915_private *dev_priv = dev->dev_private;
4040 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00004041 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004042 struct drm_i915_gem_request *request;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004043 struct intel_engine_cs *ring = NULL;
Daniel Vetterf69061b2012-12-06 09:01:42 +01004044 unsigned reset_counter;
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004045 u32 seqno = 0;
4046 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004047
Daniel Vetter308887a2012-11-14 17:14:06 +01004048 ret = i915_gem_wait_for_error(&dev_priv->gpu_error);
4049 if (ret)
4050 return ret;
4051
4052 ret = i915_gem_check_wedge(&dev_priv->gpu_error, false);
4053 if (ret)
4054 return ret;
Chris Wilsone110e8d2011-01-26 15:39:14 +00004055
Chris Wilson1c255952010-09-26 11:03:27 +01004056 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004057 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00004058 if (time_after_eq(request->emitted_jiffies, recent_enough))
4059 break;
4060
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004061 ring = request->ring;
4062 seqno = request->seqno;
Eric Anholtb9624422009-06-03 07:27:35 +00004063 }
Daniel Vetterf69061b2012-12-06 09:01:42 +01004064 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilson1c255952010-09-26 11:03:27 +01004065 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004066
4067 if (seqno == 0)
4068 return 0;
4069
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004070 ret = __wait_seqno(ring, seqno, reset_counter, true, NULL, NULL);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004071 if (ret == 0)
4072 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00004073
Eric Anholt673a3942008-07-30 12:06:12 -07004074 return ret;
4075}
4076
Chris Wilsond23db882014-05-23 08:48:08 +02004077static bool
4078i915_vma_misplaced(struct i915_vma *vma, uint32_t alignment, uint64_t flags)
4079{
4080 struct drm_i915_gem_object *obj = vma->obj;
4081
4082 if (alignment &&
4083 vma->node.start & (alignment - 1))
4084 return true;
4085
4086 if (flags & PIN_MAPPABLE && !obj->map_and_fenceable)
4087 return true;
4088
4089 if (flags & PIN_OFFSET_BIAS &&
4090 vma->node.start < (flags & PIN_OFFSET_MASK))
4091 return true;
4092
4093 return false;
4094}
4095
Eric Anholt673a3942008-07-30 12:06:12 -07004096int
Chris Wilson05394f32010-11-08 19:18:58 +00004097i915_gem_object_pin(struct drm_i915_gem_object *obj,
Ben Widawskyc37e2202013-07-31 16:59:58 -07004098 struct i915_address_space *vm,
Chris Wilson05394f32010-11-08 19:18:58 +00004099 uint32_t alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02004100 uint64_t flags)
Eric Anholt673a3942008-07-30 12:06:12 -07004101{
Ben Widawsky6e7186a2014-05-06 22:21:36 -07004102 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004103 struct i915_vma *vma;
Eric Anholt673a3942008-07-30 12:06:12 -07004104 int ret;
4105
Ben Widawsky6e7186a2014-05-06 22:21:36 -07004106 if (WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base))
4107 return -ENODEV;
4108
Daniel Vetterbf3d1492014-02-14 14:01:12 +01004109 if (WARN_ON(flags & (PIN_GLOBAL | PIN_MAPPABLE) && !i915_is_ggtt(vm)))
Daniel Vetter1ec9e262014-02-14 14:01:11 +01004110 return -EINVAL;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004111
4112 vma = i915_gem_obj_to_vma(obj, vm);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004113 if (vma) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004114 if (WARN_ON(vma->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT))
4115 return -EBUSY;
4116
Chris Wilsond23db882014-05-23 08:48:08 +02004117 if (i915_vma_misplaced(vma, alignment, flags)) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004118 WARN(vma->pin_count,
Chris Wilsonae7d49d2010-08-04 12:37:41 +01004119 "bo is already pinned with incorrect alignment:"
Ben Widawskyf343c5f2013-07-05 14:41:04 -07004120 " offset=%lx, req.alignment=%x, req.map_and_fenceable=%d,"
Daniel Vetter75e9e912010-11-04 17:11:09 +01004121 " obj->map_and_fenceable=%d\n",
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004122 i915_gem_obj_offset(obj, vm), alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02004123 !!(flags & PIN_MAPPABLE),
Chris Wilson05394f32010-11-08 19:18:58 +00004124 obj->map_and_fenceable);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004125 ret = i915_vma_unbind(vma);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004126 if (ret)
4127 return ret;
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004128
4129 vma = NULL;
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004130 }
4131 }
4132
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004133 if (vma == NULL || !drm_mm_node_allocated(&vma->node)) {
Daniel Vetter262de142014-02-14 14:01:20 +01004134 vma = i915_gem_object_bind_to_vm(obj, vm, alignment, flags);
4135 if (IS_ERR(vma))
4136 return PTR_ERR(vma);
Chris Wilson22c344e2009-02-11 14:26:45 +00004137 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05004138
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004139 if (flags & PIN_GLOBAL && !obj->has_global_gtt_mapping)
4140 vma->bind_vma(vma, obj->cache_level, GLOBAL_BIND);
Daniel Vetter74898d72012-02-15 23:50:22 +01004141
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004142 vma->pin_count++;
Daniel Vetter1ec9e262014-02-14 14:01:11 +01004143 if (flags & PIN_MAPPABLE)
4144 obj->pin_mappable |= true;
Eric Anholt673a3942008-07-30 12:06:12 -07004145
4146 return 0;
4147}
4148
4149void
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004150i915_gem_object_ggtt_unpin(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07004151{
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004152 struct i915_vma *vma = i915_gem_obj_to_ggtt(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004153
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004154 BUG_ON(!vma);
4155 BUG_ON(vma->pin_count == 0);
4156 BUG_ON(!i915_gem_obj_ggtt_bound(obj));
4157
4158 if (--vma->pin_count == 0)
Chris Wilson6299f992010-11-24 12:23:44 +00004159 obj->pin_mappable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07004160}
4161
Daniel Vetterd8ffa602014-05-13 12:11:26 +02004162bool
4163i915_gem_object_pin_fence(struct drm_i915_gem_object *obj)
4164{
4165 if (obj->fence_reg != I915_FENCE_REG_NONE) {
4166 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
4167 struct i915_vma *ggtt_vma = i915_gem_obj_to_ggtt(obj);
4168
4169 WARN_ON(!ggtt_vma ||
4170 dev_priv->fence_regs[obj->fence_reg].pin_count >
4171 ggtt_vma->pin_count);
4172 dev_priv->fence_regs[obj->fence_reg].pin_count++;
4173 return true;
4174 } else
4175 return false;
4176}
4177
4178void
4179i915_gem_object_unpin_fence(struct drm_i915_gem_object *obj)
4180{
4181 if (obj->fence_reg != I915_FENCE_REG_NONE) {
4182 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
4183 WARN_ON(dev_priv->fence_regs[obj->fence_reg].pin_count <= 0);
4184 dev_priv->fence_regs[obj->fence_reg].pin_count--;
4185 }
4186}
4187
Eric Anholt673a3942008-07-30 12:06:12 -07004188int
4189i915_gem_pin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00004190 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004191{
4192 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004193 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07004194 int ret;
4195
Daniel Vetter02f6bcc2013-12-18 16:30:22 +01004196 if (INTEL_INFO(dev)->gen >= 6)
4197 return -ENODEV;
4198
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004199 ret = i915_mutex_lock_interruptible(dev);
4200 if (ret)
4201 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004202
Chris Wilson05394f32010-11-08 19:18:58 +00004203 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004204 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004205 ret = -ENOENT;
4206 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07004207 }
Eric Anholt673a3942008-07-30 12:06:12 -07004208
Chris Wilson05394f32010-11-08 19:18:58 +00004209 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00004210 DRM_DEBUG("Attempting to pin a purgeable buffer\n");
Chris Wilson8c99e572014-01-31 11:34:58 +00004211 ret = -EFAULT;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004212 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004213 }
4214
Chris Wilson05394f32010-11-08 19:18:58 +00004215 if (obj->pin_filp != NULL && obj->pin_filp != file) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00004216 DRM_DEBUG("Already pinned in i915_gem_pin_ioctl(): %d\n",
Jesse Barnes79e53942008-11-07 14:24:08 -08004217 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004218 ret = -EINVAL;
4219 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08004220 }
4221
Daniel Vetteraa5f8022013-10-10 14:46:37 +02004222 if (obj->user_pin_count == ULONG_MAX) {
4223 ret = -EBUSY;
4224 goto out;
4225 }
4226
Chris Wilson93be8782013-01-02 10:31:22 +00004227 if (obj->user_pin_count == 0) {
Daniel Vetter1ec9e262014-02-14 14:01:11 +01004228 ret = i915_gem_obj_ggtt_pin(obj, args->alignment, PIN_MAPPABLE);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004229 if (ret)
4230 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07004231 }
4232
Chris Wilson93be8782013-01-02 10:31:22 +00004233 obj->user_pin_count++;
4234 obj->pin_filp = file;
4235
Ben Widawskyf343c5f2013-07-05 14:41:04 -07004236 args->offset = i915_gem_obj_ggtt_offset(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004237out:
Chris Wilson05394f32010-11-08 19:18:58 +00004238 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004239unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07004240 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004241 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004242}
4243
4244int
4245i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00004246 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004247{
4248 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004249 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01004250 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004251
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004252 ret = i915_mutex_lock_interruptible(dev);
4253 if (ret)
4254 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004255
Chris Wilson05394f32010-11-08 19:18:58 +00004256 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004257 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004258 ret = -ENOENT;
4259 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07004260 }
Chris Wilson76c1dec2010-09-25 11:22:51 +01004261
Chris Wilson05394f32010-11-08 19:18:58 +00004262 if (obj->pin_filp != file) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00004263 DRM_DEBUG("Not pinned by caller in i915_gem_pin_ioctl(): %d\n",
Jesse Barnes79e53942008-11-07 14:24:08 -08004264 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004265 ret = -EINVAL;
4266 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08004267 }
Chris Wilson05394f32010-11-08 19:18:58 +00004268 obj->user_pin_count--;
4269 if (obj->user_pin_count == 0) {
4270 obj->pin_filp = NULL;
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004271 i915_gem_object_ggtt_unpin(obj);
Jesse Barnes79e53942008-11-07 14:24:08 -08004272 }
Eric Anholt673a3942008-07-30 12:06:12 -07004273
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004274out:
Chris Wilson05394f32010-11-08 19:18:58 +00004275 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004276unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07004277 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004278 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004279}
4280
4281int
4282i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00004283 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004284{
4285 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004286 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01004287 int ret;
4288
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004289 ret = i915_mutex_lock_interruptible(dev);
4290 if (ret)
4291 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004292
Chris Wilson05394f32010-11-08 19:18:58 +00004293 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004294 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004295 ret = -ENOENT;
4296 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07004297 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08004298
Chris Wilson0be555b2010-08-04 15:36:30 +01004299 /* Count all active objects as busy, even if they are currently not used
4300 * by the gpu. Users of this interface expect objects to eventually
4301 * become non-busy without any further actions, therefore emit any
4302 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08004303 */
Daniel Vetter30dfebf2012-06-01 15:21:23 +02004304 ret = i915_gem_object_flush_active(obj);
4305
Chris Wilson05394f32010-11-08 19:18:58 +00004306 args->busy = obj->active;
Chris Wilsone9808ed2012-07-04 12:25:08 +01004307 if (obj->ring) {
4308 BUILD_BUG_ON(I915_NUM_RINGS > 16);
4309 args->busy |= intel_ring_flag(obj->ring) << 16;
4310 }
Eric Anholt673a3942008-07-30 12:06:12 -07004311
Chris Wilson05394f32010-11-08 19:18:58 +00004312 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004313unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07004314 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004315 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004316}
4317
4318int
4319i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
4320 struct drm_file *file_priv)
4321{
Akshay Joshi0206e352011-08-16 15:34:10 -04004322 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07004323}
4324
Chris Wilson3ef94da2009-09-14 16:50:29 +01004325int
4326i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
4327 struct drm_file *file_priv)
4328{
4329 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004330 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01004331 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004332
4333 switch (args->madv) {
4334 case I915_MADV_DONTNEED:
4335 case I915_MADV_WILLNEED:
4336 break;
4337 default:
4338 return -EINVAL;
4339 }
4340
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004341 ret = i915_mutex_lock_interruptible(dev);
4342 if (ret)
4343 return ret;
4344
Chris Wilson05394f32010-11-08 19:18:58 +00004345 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004346 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004347 ret = -ENOENT;
4348 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004349 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01004350
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004351 if (i915_gem_obj_is_pinned(obj)) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004352 ret = -EINVAL;
4353 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004354 }
4355
Chris Wilson05394f32010-11-08 19:18:58 +00004356 if (obj->madv != __I915_MADV_PURGED)
4357 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004358
Chris Wilson6c085a72012-08-20 11:40:46 +02004359 /* if the object is no longer attached, discard its backing storage */
4360 if (i915_gem_object_is_purgeable(obj) && obj->pages == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01004361 i915_gem_object_truncate(obj);
4362
Chris Wilson05394f32010-11-08 19:18:58 +00004363 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01004364
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004365out:
Chris Wilson05394f32010-11-08 19:18:58 +00004366 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004367unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01004368 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004369 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004370}
4371
Chris Wilson37e680a2012-06-07 15:38:42 +01004372void i915_gem_object_init(struct drm_i915_gem_object *obj,
4373 const struct drm_i915_gem_object_ops *ops)
Chris Wilson0327d6b2012-08-11 15:41:06 +01004374{
Ben Widawsky35c20a62013-05-31 11:28:48 -07004375 INIT_LIST_HEAD(&obj->global_list);
Chris Wilson0327d6b2012-08-11 15:41:06 +01004376 INIT_LIST_HEAD(&obj->ring_list);
Ben Widawskyb25cb2f2013-08-14 11:38:33 +02004377 INIT_LIST_HEAD(&obj->obj_exec_link);
Ben Widawsky2f633152013-07-17 12:19:03 -07004378 INIT_LIST_HEAD(&obj->vma_list);
Chris Wilson0327d6b2012-08-11 15:41:06 +01004379
Chris Wilson37e680a2012-06-07 15:38:42 +01004380 obj->ops = ops;
4381
Chris Wilson0327d6b2012-08-11 15:41:06 +01004382 obj->fence_reg = I915_FENCE_REG_NONE;
4383 obj->madv = I915_MADV_WILLNEED;
Chris Wilson0327d6b2012-08-11 15:41:06 +01004384
4385 i915_gem_info_add_obj(obj->base.dev->dev_private, obj->base.size);
4386}
4387
Chris Wilson37e680a2012-06-07 15:38:42 +01004388static const struct drm_i915_gem_object_ops i915_gem_object_ops = {
4389 .get_pages = i915_gem_object_get_pages_gtt,
4390 .put_pages = i915_gem_object_put_pages_gtt,
4391};
4392
Chris Wilson05394f32010-11-08 19:18:58 +00004393struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
4394 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00004395{
Daniel Vetterc397b902010-04-09 19:05:07 +00004396 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07004397 struct address_space *mapping;
Daniel Vetter1a240d42012-11-29 22:18:51 +01004398 gfp_t mask;
Daniel Vetterc397b902010-04-09 19:05:07 +00004399
Chris Wilson42dcedd2012-11-15 11:32:30 +00004400 obj = i915_gem_object_alloc(dev);
Daniel Vetterc397b902010-04-09 19:05:07 +00004401 if (obj == NULL)
4402 return NULL;
4403
4404 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
Chris Wilson42dcedd2012-11-15 11:32:30 +00004405 i915_gem_object_free(obj);
Daniel Vetterc397b902010-04-09 19:05:07 +00004406 return NULL;
4407 }
4408
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004409 mask = GFP_HIGHUSER | __GFP_RECLAIMABLE;
4410 if (IS_CRESTLINE(dev) || IS_BROADWATER(dev)) {
4411 /* 965gm cannot relocate objects above 4GiB. */
4412 mask &= ~__GFP_HIGHMEM;
4413 mask |= __GFP_DMA32;
4414 }
4415
Al Viro496ad9a2013-01-23 17:07:38 -05004416 mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004417 mapping_set_gfp_mask(mapping, mask);
Hugh Dickins5949eac2011-06-27 16:18:18 -07004418
Chris Wilson37e680a2012-06-07 15:38:42 +01004419 i915_gem_object_init(obj, &i915_gem_object_ops);
Chris Wilson73aa8082010-09-30 11:46:12 +01004420
Daniel Vetterc397b902010-04-09 19:05:07 +00004421 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
4422 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4423
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02004424 if (HAS_LLC(dev)) {
4425 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07004426 * cache) for about a 10% performance improvement
4427 * compared to uncached. Graphics requests other than
4428 * display scanout are coherent with the CPU in
4429 * accessing this cache. This means in this mode we
4430 * don't need to clflush on the CPU side, and on the
4431 * GPU side we only need to flush internal caches to
4432 * get data visible to the CPU.
4433 *
4434 * However, we maintain the display planes as UC, and so
4435 * need to rebind when first used as such.
4436 */
4437 obj->cache_level = I915_CACHE_LLC;
4438 } else
4439 obj->cache_level = I915_CACHE_NONE;
4440
Daniel Vetterd861e332013-07-24 23:25:03 +02004441 trace_i915_gem_object_create(obj);
4442
Chris Wilson05394f32010-11-08 19:18:58 +00004443 return obj;
Daniel Vetterac52bc52010-04-09 19:05:06 +00004444}
4445
Chris Wilson340fbd82014-05-22 09:16:52 +01004446static bool discard_backing_storage(struct drm_i915_gem_object *obj)
4447{
4448 /* If we are the last user of the backing storage (be it shmemfs
4449 * pages or stolen etc), we know that the pages are going to be
4450 * immediately released. In this case, we can then skip copying
4451 * back the contents from the GPU.
4452 */
4453
4454 if (obj->madv != I915_MADV_WILLNEED)
4455 return false;
4456
4457 if (obj->base.filp == NULL)
4458 return true;
4459
4460 /* At first glance, this looks racy, but then again so would be
4461 * userspace racing mmap against close. However, the first external
4462 * reference to the filp can only be obtained through the
4463 * i915_gem_mmap_ioctl() which safeguards us against the user
4464 * acquiring such a reference whilst we are in the middle of
4465 * freeing the object.
4466 */
4467 return atomic_long_read(&obj->base.filp->f_count) == 1;
4468}
4469
Chris Wilson1488fc02012-04-24 15:47:31 +01004470void i915_gem_free_object(struct drm_gem_object *gem_obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01004471{
Chris Wilson1488fc02012-04-24 15:47:31 +01004472 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00004473 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004474 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004475 struct i915_vma *vma, *next;
Chris Wilsonbe726152010-07-23 23:18:50 +01004476
Paulo Zanonif65c9162013-11-27 18:20:34 -02004477 intel_runtime_pm_get(dev_priv);
4478
Chris Wilson26e12f892011-03-20 11:20:19 +00004479 trace_i915_gem_object_destroy(obj);
4480
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004481 list_for_each_entry_safe(vma, next, &obj->vma_list, vma_link) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004482 int ret;
4483
4484 vma->pin_count = 0;
4485 ret = i915_vma_unbind(vma);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004486 if (WARN_ON(ret == -ERESTARTSYS)) {
4487 bool was_interruptible;
Chris Wilson1488fc02012-04-24 15:47:31 +01004488
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004489 was_interruptible = dev_priv->mm.interruptible;
4490 dev_priv->mm.interruptible = false;
Chris Wilson1488fc02012-04-24 15:47:31 +01004491
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004492 WARN_ON(i915_vma_unbind(vma));
Chris Wilson1488fc02012-04-24 15:47:31 +01004493
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004494 dev_priv->mm.interruptible = was_interruptible;
4495 }
Chris Wilson1488fc02012-04-24 15:47:31 +01004496 }
4497
Chris Wilson00731152014-05-21 12:42:56 +01004498 i915_gem_object_detach_phys(obj);
4499
Ben Widawsky1d64ae72013-05-31 14:46:20 -07004500 /* Stolen objects don't hold a ref, but do hold pin count. Fix that up
4501 * before progressing. */
4502 if (obj->stolen)
4503 i915_gem_object_unpin_pages(obj);
4504
Daniel Vettera071fa02014-06-18 23:28:09 +02004505 WARN_ON(obj->frontbuffer_bits);
4506
Ben Widawsky401c29f2013-05-31 11:28:47 -07004507 if (WARN_ON(obj->pages_pin_count))
4508 obj->pages_pin_count = 0;
Chris Wilson340fbd82014-05-22 09:16:52 +01004509 if (discard_backing_storage(obj))
Chris Wilson55372522014-03-25 13:23:06 +00004510 obj->madv = I915_MADV_DONTNEED;
Chris Wilson37e680a2012-06-07 15:38:42 +01004511 i915_gem_object_put_pages(obj);
Chris Wilsond8cb5082012-08-11 15:41:03 +01004512 i915_gem_object_free_mmap_offset(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01004513
Chris Wilson9da3da62012-06-01 15:20:22 +01004514 BUG_ON(obj->pages);
4515
Chris Wilson2f745ad2012-09-04 21:02:58 +01004516 if (obj->base.import_attach)
4517 drm_prime_gem_destroy(&obj->base, NULL);
Chris Wilsonbe726152010-07-23 23:18:50 +01004518
Chris Wilson5cc9ed42014-05-16 14:22:37 +01004519 if (obj->ops->release)
4520 obj->ops->release(obj);
4521
Chris Wilson05394f32010-11-08 19:18:58 +00004522 drm_gem_object_release(&obj->base);
4523 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01004524
Chris Wilson05394f32010-11-08 19:18:58 +00004525 kfree(obj->bit_17);
Chris Wilson42dcedd2012-11-15 11:32:30 +00004526 i915_gem_object_free(obj);
Paulo Zanonif65c9162013-11-27 18:20:34 -02004527
4528 intel_runtime_pm_put(dev_priv);
Chris Wilsonbe726152010-07-23 23:18:50 +01004529}
4530
Daniel Vettere656a6c2013-08-14 14:14:04 +02004531struct i915_vma *i915_gem_obj_to_vma(struct drm_i915_gem_object *obj,
Ben Widawsky2f633152013-07-17 12:19:03 -07004532 struct i915_address_space *vm)
4533{
Daniel Vettere656a6c2013-08-14 14:14:04 +02004534 struct i915_vma *vma;
4535 list_for_each_entry(vma, &obj->vma_list, vma_link)
4536 if (vma->vm == vm)
4537 return vma;
4538
4539 return NULL;
4540}
4541
Ben Widawsky2f633152013-07-17 12:19:03 -07004542void i915_gem_vma_destroy(struct i915_vma *vma)
4543{
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004544 struct i915_address_space *vm = NULL;
Ben Widawsky2f633152013-07-17 12:19:03 -07004545 WARN_ON(vma->node.allocated);
Chris Wilsonaaa05662013-08-20 12:56:40 +01004546
4547 /* Keep the vma as a placeholder in the execbuffer reservation lists */
4548 if (!list_empty(&vma->exec_list))
4549 return;
4550
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004551 vm = vma->vm;
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004552
Daniel Vetter841cd772014-08-06 15:04:48 +02004553 if (!i915_is_ggtt(vm))
4554 i915_ppgtt_put(i915_vm_to_ppgtt(vm));
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004555
Ben Widawsky8b9c2b92013-07-31 17:00:16 -07004556 list_del(&vma->vma_link);
Daniel Vetterb93dab62013-08-26 11:23:47 +02004557
Ben Widawsky2f633152013-07-17 12:19:03 -07004558 kfree(vma);
4559}
4560
Chris Wilsone3efda42014-04-09 09:19:41 +01004561static void
4562i915_gem_stop_ringbuffers(struct drm_device *dev)
4563{
4564 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004565 struct intel_engine_cs *ring;
Chris Wilsone3efda42014-04-09 09:19:41 +01004566 int i;
4567
4568 for_each_ring(ring, dev_priv, i)
Oscar Mateoa83014d2014-07-24 17:04:21 +01004569 dev_priv->gt.stop_ring(ring);
Chris Wilsone3efda42014-04-09 09:19:41 +01004570}
4571
Jesse Barnes5669fca2009-02-17 15:13:31 -08004572int
Chris Wilson45c5f202013-10-16 11:50:01 +01004573i915_gem_suspend(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07004574{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004575 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson45c5f202013-10-16 11:50:01 +01004576 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07004577
Chris Wilson45c5f202013-10-16 11:50:01 +01004578 mutex_lock(&dev->struct_mutex);
Chris Wilsonf7403342013-09-13 23:57:04 +01004579 if (dev_priv->ums.mm_suspended)
Chris Wilson45c5f202013-10-16 11:50:01 +01004580 goto err;
Eric Anholt673a3942008-07-30 12:06:12 -07004581
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004582 ret = i915_gpu_idle(dev);
Chris Wilsonf7403342013-09-13 23:57:04 +01004583 if (ret)
Chris Wilson45c5f202013-10-16 11:50:01 +01004584 goto err;
Chris Wilsonf7403342013-09-13 23:57:04 +01004585
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004586 i915_gem_retire_requests(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07004587
Chris Wilson29105cc2010-01-07 10:39:13 +00004588 /* Under UMS, be paranoid and evict. */
Chris Wilsona39d7ef2012-04-24 18:22:52 +01004589 if (!drm_core_check_feature(dev, DRIVER_MODESET))
Chris Wilson6c085a72012-08-20 11:40:46 +02004590 i915_gem_evict_everything(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00004591
Chris Wilson29105cc2010-01-07 10:39:13 +00004592 i915_kernel_lost_context(dev);
Chris Wilsone3efda42014-04-09 09:19:41 +01004593 i915_gem_stop_ringbuffers(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00004594
Chris Wilson45c5f202013-10-16 11:50:01 +01004595 /* Hack! Don't let anybody do execbuf while we don't control the chip.
4596 * We need to replace this with a semaphore, or something.
4597 * And not confound ums.mm_suspended!
4598 */
4599 dev_priv->ums.mm_suspended = !drm_core_check_feature(dev,
4600 DRIVER_MODESET);
4601 mutex_unlock(&dev->struct_mutex);
4602
4603 del_timer_sync(&dev_priv->gpu_error.hangcheck_timer);
Chris Wilson29105cc2010-01-07 10:39:13 +00004604 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
Deepak S274fa1c2014-08-05 07:51:20 -07004605 flush_delayed_work(&dev_priv->mm.idle_work);
Chris Wilson29105cc2010-01-07 10:39:13 +00004606
Eric Anholt673a3942008-07-30 12:06:12 -07004607 return 0;
Chris Wilson45c5f202013-10-16 11:50:01 +01004608
4609err:
4610 mutex_unlock(&dev->struct_mutex);
4611 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004612}
4613
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004614int i915_gem_l3_remap(struct intel_engine_cs *ring, int slice)
Ben Widawskyb9524a12012-05-25 16:56:24 -07004615{
Ben Widawskyc3787e22013-09-17 21:12:44 -07004616 struct drm_device *dev = ring->dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004617 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07004618 u32 reg_base = GEN7_L3LOG_BASE + (slice * 0x200);
4619 u32 *remap_info = dev_priv->l3_parity.remap_info[slice];
Ben Widawskyc3787e22013-09-17 21:12:44 -07004620 int i, ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004621
Ben Widawsky040d2ba2013-09-19 11:01:40 -07004622 if (!HAS_L3_DPF(dev) || !remap_info)
Ben Widawskyc3787e22013-09-17 21:12:44 -07004623 return 0;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004624
Ben Widawskyc3787e22013-09-17 21:12:44 -07004625 ret = intel_ring_begin(ring, GEN7_L3LOG_SIZE / 4 * 3);
4626 if (ret)
4627 return ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004628
Ben Widawskyc3787e22013-09-17 21:12:44 -07004629 /*
4630 * Note: We do not worry about the concurrent register cacheline hang
4631 * here because no other code should access these registers other than
4632 * at initialization time.
4633 */
Ben Widawskyb9524a12012-05-25 16:56:24 -07004634 for (i = 0; i < GEN7_L3LOG_SIZE; i += 4) {
Ben Widawskyc3787e22013-09-17 21:12:44 -07004635 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
4636 intel_ring_emit(ring, reg_base + i);
4637 intel_ring_emit(ring, remap_info[i/4]);
Ben Widawskyb9524a12012-05-25 16:56:24 -07004638 }
4639
Ben Widawskyc3787e22013-09-17 21:12:44 -07004640 intel_ring_advance(ring);
Ben Widawskyb9524a12012-05-25 16:56:24 -07004641
Ben Widawskyc3787e22013-09-17 21:12:44 -07004642 return ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004643}
4644
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004645void i915_gem_init_swizzling(struct drm_device *dev)
4646{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004647 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004648
Daniel Vetter11782b02012-01-31 16:47:55 +01004649 if (INTEL_INFO(dev)->gen < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004650 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
4651 return;
4652
4653 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
4654 DISP_TILE_SURFACE_SWIZZLING);
4655
Daniel Vetter11782b02012-01-31 16:47:55 +01004656 if (IS_GEN5(dev))
4657 return;
4658
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004659 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
4660 if (IS_GEN6(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004661 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_SNB));
Ben Widawsky8782e262012-12-18 10:31:23 -08004662 else if (IS_GEN7(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004663 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_IVB));
Ben Widawsky31a53362013-11-02 21:07:04 -07004664 else if (IS_GEN8(dev))
4665 I915_WRITE(GAMTARBMODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_BDW));
Ben Widawsky8782e262012-12-18 10:31:23 -08004666 else
4667 BUG();
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004668}
Daniel Vettere21af882012-02-09 20:53:27 +01004669
Chris Wilson67b1b572012-07-05 23:49:40 +01004670static bool
4671intel_enable_blt(struct drm_device *dev)
4672{
4673 if (!HAS_BLT(dev))
4674 return false;
4675
4676 /* The blitter was dysfunctional on early prototypes */
4677 if (IS_GEN6(dev) && dev->pdev->revision < 8) {
4678 DRM_INFO("BLT not supported on this pre-production hardware;"
4679 " graphics performance will be degraded.\n");
4680 return false;
4681 }
4682
4683 return true;
4684}
4685
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004686static void init_unused_ring(struct drm_device *dev, u32 base)
4687{
4688 struct drm_i915_private *dev_priv = dev->dev_private;
4689
4690 I915_WRITE(RING_CTL(base), 0);
4691 I915_WRITE(RING_HEAD(base), 0);
4692 I915_WRITE(RING_TAIL(base), 0);
4693 I915_WRITE(RING_START(base), 0);
4694}
4695
4696static void init_unused_rings(struct drm_device *dev)
4697{
4698 if (IS_I830(dev)) {
4699 init_unused_ring(dev, PRB1_BASE);
4700 init_unused_ring(dev, SRB0_BASE);
4701 init_unused_ring(dev, SRB1_BASE);
4702 init_unused_ring(dev, SRB2_BASE);
4703 init_unused_ring(dev, SRB3_BASE);
4704 } else if (IS_GEN2(dev)) {
4705 init_unused_ring(dev, SRB0_BASE);
4706 init_unused_ring(dev, SRB1_BASE);
4707 } else if (IS_GEN3(dev)) {
4708 init_unused_ring(dev, PRB1_BASE);
4709 init_unused_ring(dev, PRB2_BASE);
4710 }
4711}
4712
Oscar Mateoa83014d2014-07-24 17:04:21 +01004713int i915_gem_init_rings(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004714{
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004715 struct drm_i915_private *dev_priv = dev->dev_private;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004716 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004717
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004718 /*
4719 * At least 830 can leave some of the unused rings
4720 * "active" (ie. head != tail) after resume which
4721 * will prevent c3 entry. Makes sure all unused rings
4722 * are totally idle.
4723 */
4724 init_unused_rings(dev);
4725
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004726 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004727 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00004728 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004729
4730 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004731 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004732 if (ret)
4733 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08004734 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01004735
Chris Wilson67b1b572012-07-05 23:49:40 +01004736 if (intel_enable_blt(dev)) {
Chris Wilson549f7362010-10-19 11:19:32 +01004737 ret = intel_init_blt_ring_buffer(dev);
4738 if (ret)
4739 goto cleanup_bsd_ring;
4740 }
4741
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004742 if (HAS_VEBOX(dev)) {
4743 ret = intel_init_vebox_ring_buffer(dev);
4744 if (ret)
4745 goto cleanup_blt_ring;
4746 }
4747
Zhao Yakui845f74a2014-04-17 10:37:37 +08004748 if (HAS_BSD2(dev)) {
4749 ret = intel_init_bsd2_ring_buffer(dev);
4750 if (ret)
4751 goto cleanup_vebox_ring;
4752 }
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004753
Mika Kuoppala99433932013-01-22 14:12:17 +02004754 ret = i915_gem_set_seqno(dev, ((u32)~0 - 0x1000));
4755 if (ret)
Zhao Yakui845f74a2014-04-17 10:37:37 +08004756 goto cleanup_bsd2_ring;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004757
4758 return 0;
4759
Zhao Yakui845f74a2014-04-17 10:37:37 +08004760cleanup_bsd2_ring:
4761 intel_cleanup_ring_buffer(&dev_priv->ring[VCS2]);
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004762cleanup_vebox_ring:
4763 intel_cleanup_ring_buffer(&dev_priv->ring[VECS]);
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004764cleanup_blt_ring:
4765 intel_cleanup_ring_buffer(&dev_priv->ring[BCS]);
4766cleanup_bsd_ring:
4767 intel_cleanup_ring_buffer(&dev_priv->ring[VCS]);
4768cleanup_render_ring:
4769 intel_cleanup_ring_buffer(&dev_priv->ring[RCS]);
4770
4771 return ret;
4772}
4773
4774int
4775i915_gem_init_hw(struct drm_device *dev)
4776{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004777 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07004778 int ret, i;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004779
4780 if (INTEL_INFO(dev)->gen < 6 && !intel_enable_gtt())
4781 return -EIO;
4782
Ben Widawsky59124502013-07-04 11:02:05 -07004783 if (dev_priv->ellc_size)
Ben Widawsky05e21cc2013-07-04 11:02:04 -07004784 I915_WRITE(HSW_IDICR, I915_READ(HSW_IDICR) | IDIHASHMSK(0xf));
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004785
Ville Syrjälä0bf21342013-11-29 14:56:12 +02004786 if (IS_HASWELL(dev))
4787 I915_WRITE(MI_PREDICATE_RESULT_2, IS_HSW_GT3(dev) ?
4788 LOWER_SLICE_ENABLED : LOWER_SLICE_DISABLED);
Rodrigo Vivi94353732013-08-28 16:45:46 -03004789
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004790 if (HAS_PCH_NOP(dev)) {
Daniel Vetter6ba844b2014-01-22 23:39:30 +01004791 if (IS_IVYBRIDGE(dev)) {
4792 u32 temp = I915_READ(GEN7_MSG_CTL);
4793 temp &= ~(WAIT_FOR_PCH_FLR_ACK | WAIT_FOR_PCH_RESET_ACK);
4794 I915_WRITE(GEN7_MSG_CTL, temp);
4795 } else if (INTEL_INFO(dev)->gen >= 7) {
4796 u32 temp = I915_READ(HSW_NDE_RSTWRN_OPT);
4797 temp &= ~RESET_PCH_HANDSHAKE_ENABLE;
4798 I915_WRITE(HSW_NDE_RSTWRN_OPT, temp);
4799 }
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004800 }
4801
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004802 i915_gem_init_swizzling(dev);
4803
Oscar Mateoa83014d2014-07-24 17:04:21 +01004804 ret = dev_priv->gt.init_rings(dev);
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004805 if (ret)
Mika Kuoppala99433932013-01-22 14:12:17 +02004806 return ret;
4807
Ben Widawskyc3787e22013-09-17 21:12:44 -07004808 for (i = 0; i < NUM_L3_SLICES(dev); i++)
4809 i915_gem_l3_remap(&dev_priv->ring[RCS], i);
4810
Ben Widawsky254f9652012-06-04 14:42:42 -07004811 /*
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004812 * XXX: Contexts should only be initialized once. Doing a switch to the
4813 * default context switch however is something we'd like to do after
4814 * reset or thaw (the latter may not actually be necessary for HW, but
4815 * goes with our code better). Context switching requires rings (for
4816 * the do_switch), but before enabling PPGTT. So don't move this.
Ben Widawsky254f9652012-06-04 14:42:42 -07004817 */
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004818 ret = i915_gem_context_enable(dev_priv);
Chris Wilson60990322014-04-09 09:19:42 +01004819 if (ret && ret != -EIO) {
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004820 DRM_ERROR("Context enable failed %d\n", ret);
Chris Wilson60990322014-04-09 09:19:42 +01004821 i915_gem_cleanup_ringbuffer(dev);
Daniel Vetter82460d92014-08-06 20:19:53 +02004822
4823 return ret;
4824 }
4825
4826 ret = i915_ppgtt_init_hw(dev);
4827 if (ret && ret != -EIO) {
4828 DRM_ERROR("PPGTT enable failed %d\n", ret);
4829 i915_gem_cleanup_ringbuffer(dev);
Ben Widawskyb7c36d22013-04-08 18:43:56 -07004830 }
Daniel Vettere21af882012-02-09 20:53:27 +01004831
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004832 return ret;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004833}
4834
Chris Wilson1070a422012-04-24 15:47:41 +01004835int i915_gem_init(struct drm_device *dev)
4836{
4837 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson1070a422012-04-24 15:47:41 +01004838 int ret;
4839
Oscar Mateo127f1002014-07-24 17:04:11 +01004840 i915.enable_execlists = intel_sanitize_enable_execlists(dev,
4841 i915.enable_execlists);
4842
Chris Wilson1070a422012-04-24 15:47:41 +01004843 mutex_lock(&dev->struct_mutex);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004844
4845 if (IS_VALLEYVIEW(dev)) {
4846 /* VLVA0 (potential hack), BIOS isn't actually waking us */
Imre Deak981a5ae2014-04-14 20:24:22 +03004847 I915_WRITE(VLV_GTLC_WAKE_CTRL, VLV_GTLC_ALLOWWAKEREQ);
4848 if (wait_for((I915_READ(VLV_GTLC_PW_STATUS) &
4849 VLV_GTLC_ALLOWWAKEACK), 10))
Jesse Barnesd62b4892013-03-08 10:45:53 -08004850 DRM_DEBUG_DRIVER("allow wake ack timed out\n");
4851 }
4852
Oscar Mateoa83014d2014-07-24 17:04:21 +01004853 if (!i915.enable_execlists) {
4854 dev_priv->gt.do_execbuf = i915_gem_ringbuffer_submission;
4855 dev_priv->gt.init_rings = i915_gem_init_rings;
4856 dev_priv->gt.cleanup_ring = intel_cleanup_ring_buffer;
4857 dev_priv->gt.stop_ring = intel_stop_ring_buffer;
Oscar Mateo454afeb2014-07-24 17:04:22 +01004858 } else {
4859 dev_priv->gt.do_execbuf = intel_execlists_submission;
4860 dev_priv->gt.init_rings = intel_logical_rings_init;
4861 dev_priv->gt.cleanup_ring = intel_logical_ring_cleanup;
4862 dev_priv->gt.stop_ring = intel_logical_ring_stop;
Oscar Mateoa83014d2014-07-24 17:04:21 +01004863 }
4864
Daniel Vetter6c5566a2014-08-06 15:04:50 +02004865 ret = i915_gem_init_userptr(dev);
4866 if (ret) {
4867 mutex_unlock(&dev->struct_mutex);
4868 return ret;
4869 }
4870
Ben Widawskyd7e50082012-12-18 10:31:25 -08004871 i915_gem_init_global_gtt(dev);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004872
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004873 ret = i915_gem_context_init(dev);
Mika Kuoppalae3848692014-01-31 17:14:02 +02004874 if (ret) {
4875 mutex_unlock(&dev->struct_mutex);
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004876 return ret;
Mika Kuoppalae3848692014-01-31 17:14:02 +02004877 }
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004878
Chris Wilson1070a422012-04-24 15:47:41 +01004879 ret = i915_gem_init_hw(dev);
Chris Wilson60990322014-04-09 09:19:42 +01004880 if (ret == -EIO) {
4881 /* Allow ring initialisation to fail by marking the GPU as
4882 * wedged. But we only want to do this where the GPU is angry,
4883 * for all other failure, such as an allocation failure, bail.
4884 */
4885 DRM_ERROR("Failed to initialize GPU, declaring it wedged\n");
4886 atomic_set_mask(I915_WEDGED, &dev_priv->gpu_error.reset_counter);
4887 ret = 0;
Chris Wilson1070a422012-04-24 15:47:41 +01004888 }
Chris Wilson60990322014-04-09 09:19:42 +01004889 mutex_unlock(&dev->struct_mutex);
Chris Wilson1070a422012-04-24 15:47:41 +01004890
Daniel Vetter53ca26c2012-04-26 23:28:03 +02004891 /* Allow hardware batchbuffers unless told otherwise, but not for KMS. */
4892 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4893 dev_priv->dri1.allow_batchbuffer = 1;
Chris Wilson60990322014-04-09 09:19:42 +01004894 return ret;
Chris Wilson1070a422012-04-24 15:47:41 +01004895}
4896
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004897void
4898i915_gem_cleanup_ringbuffer(struct drm_device *dev)
4899{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004900 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004901 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00004902 int i;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004903
Chris Wilsonb4519512012-05-11 14:29:30 +01004904 for_each_ring(ring, dev_priv, i)
Oscar Mateoa83014d2014-07-24 17:04:21 +01004905 dev_priv->gt.cleanup_ring(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004906}
4907
4908int
Eric Anholt673a3942008-07-30 12:06:12 -07004909i915_gem_entervt_ioctl(struct drm_device *dev, void *data,
4910 struct drm_file *file_priv)
4911{
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004912 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01004913 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004914
Jesse Barnes79e53942008-11-07 14:24:08 -08004915 if (drm_core_check_feature(dev, DRIVER_MODESET))
4916 return 0;
4917
Daniel Vetter1f83fee2012-11-15 17:17:22 +01004918 if (i915_reset_in_progress(&dev_priv->gpu_error)) {
Eric Anholt673a3942008-07-30 12:06:12 -07004919 DRM_ERROR("Reenabling wedged hardware, good luck\n");
Daniel Vetter1f83fee2012-11-15 17:17:22 +01004920 atomic_set(&dev_priv->gpu_error.reset_counter, 0);
Eric Anholt673a3942008-07-30 12:06:12 -07004921 }
4922
Eric Anholt673a3942008-07-30 12:06:12 -07004923 mutex_lock(&dev->struct_mutex);
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004924 dev_priv->ums.mm_suspended = 0;
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004925
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004926 ret = i915_gem_init_hw(dev);
Wu Fengguangd816f6a2009-04-18 10:43:32 +08004927 if (ret != 0) {
4928 mutex_unlock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004929 return ret;
Wu Fengguangd816f6a2009-04-18 10:43:32 +08004930 }
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004931
Ben Widawsky5cef07e2013-07-16 16:50:08 -07004932 BUG_ON(!list_empty(&dev_priv->gtt.base.active_list));
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004933
Daniel Vetterbb0f1b52013-11-03 21:09:27 +01004934 ret = drm_irq_install(dev, dev->pdev->irq);
Chris Wilson5f353082010-06-07 14:03:03 +01004935 if (ret)
4936 goto cleanup_ringbuffer;
Daniel Vettere090c532013-11-03 20:27:05 +01004937 mutex_unlock(&dev->struct_mutex);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004938
Eric Anholt673a3942008-07-30 12:06:12 -07004939 return 0;
Chris Wilson5f353082010-06-07 14:03:03 +01004940
4941cleanup_ringbuffer:
Chris Wilson5f353082010-06-07 14:03:03 +01004942 i915_gem_cleanup_ringbuffer(dev);
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004943 dev_priv->ums.mm_suspended = 1;
Chris Wilson5f353082010-06-07 14:03:03 +01004944 mutex_unlock(&dev->struct_mutex);
4945
4946 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004947}
4948
4949int
4950i915_gem_leavevt_ioctl(struct drm_device *dev, void *data,
4951 struct drm_file *file_priv)
4952{
Jesse Barnes79e53942008-11-07 14:24:08 -08004953 if (drm_core_check_feature(dev, DRIVER_MODESET))
4954 return 0;
4955
Daniel Vettere090c532013-11-03 20:27:05 +01004956 mutex_lock(&dev->struct_mutex);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004957 drm_irq_uninstall(dev);
Daniel Vettere090c532013-11-03 20:27:05 +01004958 mutex_unlock(&dev->struct_mutex);
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004959
Chris Wilson45c5f202013-10-16 11:50:01 +01004960 return i915_gem_suspend(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07004961}
4962
4963void
4964i915_gem_lastclose(struct drm_device *dev)
4965{
4966 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004967
Eric Anholte806b492009-01-22 09:56:58 -08004968 if (drm_core_check_feature(dev, DRIVER_MODESET))
4969 return;
4970
Chris Wilson45c5f202013-10-16 11:50:01 +01004971 ret = i915_gem_suspend(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07004972 if (ret)
4973 DRM_ERROR("failed to idle hardware: %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07004974}
4975
Chris Wilson64193402010-10-24 12:38:05 +01004976static void
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004977init_ring_lists(struct intel_engine_cs *ring)
Chris Wilson64193402010-10-24 12:38:05 +01004978{
4979 INIT_LIST_HEAD(&ring->active_list);
4980 INIT_LIST_HEAD(&ring->request_list);
Chris Wilson64193402010-10-24 12:38:05 +01004981}
4982
Ben Widawsky7e0d96b2013-12-06 14:11:26 -08004983void i915_init_vm(struct drm_i915_private *dev_priv,
4984 struct i915_address_space *vm)
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004985{
Ben Widawsky7e0d96b2013-12-06 14:11:26 -08004986 if (!i915_is_ggtt(vm))
4987 drm_mm_init(&vm->mm, vm->start, vm->total);
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004988 vm->dev = dev_priv->dev;
4989 INIT_LIST_HEAD(&vm->active_list);
4990 INIT_LIST_HEAD(&vm->inactive_list);
4991 INIT_LIST_HEAD(&vm->global_link);
Chris Wilsonf72d21e2014-01-09 22:57:22 +00004992 list_add_tail(&vm->global_link, &dev_priv->vm_list);
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004993}
4994
Eric Anholt673a3942008-07-30 12:06:12 -07004995void
4996i915_gem_load(struct drm_device *dev)
4997{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004998 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson42dcedd2012-11-15 11:32:30 +00004999 int i;
5000
5001 dev_priv->slab =
5002 kmem_cache_create("i915_gem_object",
5003 sizeof(struct drm_i915_gem_object), 0,
5004 SLAB_HWCACHE_ALIGN,
5005 NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07005006
Ben Widawskyfc8c0672013-07-31 16:59:54 -07005007 INIT_LIST_HEAD(&dev_priv->vm_list);
5008 i915_init_vm(dev_priv, &dev_priv->gtt.base);
5009
Ben Widawskya33afea2013-09-17 21:12:45 -07005010 INIT_LIST_HEAD(&dev_priv->context_list);
Chris Wilson6c085a72012-08-20 11:40:46 +02005011 INIT_LIST_HEAD(&dev_priv->mm.unbound_list);
5012 INIT_LIST_HEAD(&dev_priv->mm.bound_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07005013 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00005014 for (i = 0; i < I915_NUM_RINGS; i++)
5015 init_ring_lists(&dev_priv->ring[i]);
Daniel Vetter4b9de732011-10-09 21:52:02 +02005016 for (i = 0; i < I915_MAX_NUM_FENCES; i++)
Daniel Vetter007cc8a2010-04-28 11:02:31 +02005017 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07005018 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
5019 i915_gem_retire_work_handler);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005020 INIT_DELAYED_WORK(&dev_priv->mm.idle_work,
5021 i915_gem_idle_work_handler);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01005022 init_waitqueue_head(&dev_priv->gpu_error.reset_queue);
Chris Wilson31169712009-09-14 16:50:28 +01005023
Dave Airlie94400122010-07-20 13:15:31 +10005024 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
Ville Syrjälädbb42742014-02-25 15:13:41 +02005025 if (!drm_core_check_feature(dev, DRIVER_MODESET) && IS_GEN3(dev)) {
Daniel Vetter50743292012-04-26 22:02:54 +02005026 I915_WRITE(MI_ARB_STATE,
5027 _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Dave Airlie94400122010-07-20 13:15:31 +10005028 }
5029
Chris Wilson72bfa192010-12-19 11:42:05 +00005030 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
5031
Jesse Barnesde151cf2008-11-12 10:03:55 -08005032 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08005033 if (!drm_core_check_feature(dev, DRIVER_MODESET))
5034 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08005035
Ville Syrjälä42b5aea2013-04-09 13:02:47 +03005036 if (INTEL_INFO(dev)->gen >= 7 && !IS_VALLEYVIEW(dev))
5037 dev_priv->num_fence_regs = 32;
5038 else if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08005039 dev_priv->num_fence_regs = 16;
5040 else
5041 dev_priv->num_fence_regs = 8;
5042
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02005043 /* Initialize fence registers to zero */
Chris Wilson19b2dbd2013-06-12 10:15:12 +01005044 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
5045 i915_gem_restore_fences(dev);
Eric Anholt10ed13e2011-05-06 13:53:49 -07005046
Eric Anholt673a3942008-07-30 12:06:12 -07005047 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005048 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01005049
Chris Wilsonce453d82011-02-21 14:43:56 +00005050 dev_priv->mm.interruptible = true;
5051
Chris Wilsonceabbba52014-03-25 13:23:04 +00005052 dev_priv->mm.shrinker.scan_objects = i915_gem_shrinker_scan;
5053 dev_priv->mm.shrinker.count_objects = i915_gem_shrinker_count;
5054 dev_priv->mm.shrinker.seeks = DEFAULT_SEEKS;
5055 register_shrinker(&dev_priv->mm.shrinker);
Chris Wilson2cfcd322014-05-20 08:28:43 +01005056
5057 dev_priv->mm.oom_notifier.notifier_call = i915_gem_shrinker_oom;
5058 register_oom_notifier(&dev_priv->mm.oom_notifier);
Daniel Vetterf99d7062014-06-19 16:01:59 +02005059
5060 mutex_init(&dev_priv->fb_tracking.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07005061}
Dave Airlie71acb5e2008-12-30 20:31:46 +10005062
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005063void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00005064{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005065 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00005066
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005067 cancel_delayed_work_sync(&file_priv->mm.idle_work);
5068
Eric Anholtb9624422009-06-03 07:27:35 +00005069 /* Clean up our request list when the client is going away, so that
5070 * later retire_requests won't dereference our soon-to-be-gone
5071 * file_priv.
5072 */
Chris Wilson1c255952010-09-26 11:03:27 +01005073 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005074 while (!list_empty(&file_priv->mm.request_list)) {
5075 struct drm_i915_gem_request *request;
5076
5077 request = list_first_entry(&file_priv->mm.request_list,
5078 struct drm_i915_gem_request,
5079 client_list);
5080 list_del(&request->client_list);
5081 request->file_priv = NULL;
5082 }
Chris Wilson1c255952010-09-26 11:03:27 +01005083 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00005084}
Chris Wilson31169712009-09-14 16:50:28 +01005085
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005086static void
5087i915_gem_file_idle_work_handler(struct work_struct *work)
5088{
5089 struct drm_i915_file_private *file_priv =
5090 container_of(work, typeof(*file_priv), mm.idle_work.work);
5091
5092 atomic_set(&file_priv->rps_wait_boost, false);
5093}
5094
5095int i915_gem_open(struct drm_device *dev, struct drm_file *file)
5096{
5097 struct drm_i915_file_private *file_priv;
Ben Widawskye422b882013-12-06 14:10:58 -08005098 int ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005099
5100 DRM_DEBUG_DRIVER("\n");
5101
5102 file_priv = kzalloc(sizeof(*file_priv), GFP_KERNEL);
5103 if (!file_priv)
5104 return -ENOMEM;
5105
5106 file->driver_priv = file_priv;
5107 file_priv->dev_priv = dev->dev_private;
Chris Wilsonab0e7ff2014-02-25 17:11:24 +02005108 file_priv->file = file;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005109
5110 spin_lock_init(&file_priv->mm.lock);
5111 INIT_LIST_HEAD(&file_priv->mm.request_list);
5112 INIT_DELAYED_WORK(&file_priv->mm.idle_work,
5113 i915_gem_file_idle_work_handler);
5114
Ben Widawskye422b882013-12-06 14:10:58 -08005115 ret = i915_gem_context_open(dev, file);
5116 if (ret)
5117 kfree(file_priv);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005118
Ben Widawskye422b882013-12-06 14:10:58 -08005119 return ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005120}
5121
Daniel Vettera071fa02014-06-18 23:28:09 +02005122void i915_gem_track_fb(struct drm_i915_gem_object *old,
5123 struct drm_i915_gem_object *new,
5124 unsigned frontbuffer_bits)
5125{
5126 if (old) {
5127 WARN_ON(!mutex_is_locked(&old->base.dev->struct_mutex));
5128 WARN_ON(!(old->frontbuffer_bits & frontbuffer_bits));
5129 old->frontbuffer_bits &= ~frontbuffer_bits;
5130 }
5131
5132 if (new) {
5133 WARN_ON(!mutex_is_locked(&new->base.dev->struct_mutex));
5134 WARN_ON(new->frontbuffer_bits & frontbuffer_bits);
5135 new->frontbuffer_bits |= frontbuffer_bits;
5136 }
5137}
5138
Chris Wilson57745062012-11-21 13:04:04 +00005139static bool mutex_is_locked_by(struct mutex *mutex, struct task_struct *task)
5140{
5141 if (!mutex_is_locked(mutex))
5142 return false;
5143
5144#if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_MUTEXES)
5145 return mutex->owner == task;
5146#else
5147 /* Since UP may be pre-empted, we cannot assume that we own the lock */
5148 return false;
5149#endif
5150}
5151
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005152static bool i915_gem_shrinker_lock(struct drm_device *dev, bool *unlock)
5153{
5154 if (!mutex_trylock(&dev->struct_mutex)) {
5155 if (!mutex_is_locked_by(&dev->struct_mutex, current))
5156 return false;
5157
5158 if (to_i915(dev)->mm.shrinker_no_lock_stealing)
5159 return false;
5160
5161 *unlock = false;
5162 } else
5163 *unlock = true;
5164
5165 return true;
5166}
5167
Chris Wilsonceabbba52014-03-25 13:23:04 +00005168static int num_vma_bound(struct drm_i915_gem_object *obj)
5169{
5170 struct i915_vma *vma;
5171 int count = 0;
5172
5173 list_for_each_entry(vma, &obj->vma_list, vma_link)
5174 if (drm_mm_node_allocated(&vma->node))
5175 count++;
5176
5177 return count;
5178}
5179
Dave Chinner7dc19d52013-08-28 10:18:11 +10005180static unsigned long
Chris Wilsonceabbba52014-03-25 13:23:04 +00005181i915_gem_shrinker_count(struct shrinker *shrinker, struct shrink_control *sc)
Chris Wilson31169712009-09-14 16:50:28 +01005182{
Chris Wilson17250b72010-10-28 12:51:39 +01005183 struct drm_i915_private *dev_priv =
Chris Wilsonceabbba52014-03-25 13:23:04 +00005184 container_of(shrinker, struct drm_i915_private, mm.shrinker);
Chris Wilson17250b72010-10-28 12:51:39 +01005185 struct drm_device *dev = dev_priv->dev;
Chris Wilson6c085a72012-08-20 11:40:46 +02005186 struct drm_i915_gem_object *obj;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005187 unsigned long count;
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005188 bool unlock;
Chris Wilson17250b72010-10-28 12:51:39 +01005189
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005190 if (!i915_gem_shrinker_lock(dev, &unlock))
5191 return 0;
Chris Wilson31169712009-09-14 16:50:28 +01005192
Dave Chinner7dc19d52013-08-28 10:18:11 +10005193 count = 0;
Ben Widawsky35c20a62013-05-31 11:28:48 -07005194 list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list)
Chris Wilsona5570172012-09-04 21:02:54 +01005195 if (obj->pages_pin_count == 0)
Dave Chinner7dc19d52013-08-28 10:18:11 +10005196 count += obj->base.size >> PAGE_SHIFT;
Ben Widawskyfcb4a572013-07-31 16:59:57 -07005197
5198 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
Chris Wilsonceabbba52014-03-25 13:23:04 +00005199 if (!i915_gem_obj_is_pinned(obj) &&
5200 obj->pages_pin_count == num_vma_bound(obj))
Dave Chinner7dc19d52013-08-28 10:18:11 +10005201 count += obj->base.size >> PAGE_SHIFT;
Ben Widawskyfcb4a572013-07-31 16:59:57 -07005202 }
Chris Wilson31169712009-09-14 16:50:28 +01005203
Chris Wilson57745062012-11-21 13:04:04 +00005204 if (unlock)
5205 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9973b42013-10-04 10:33:00 +01005206
Dave Chinner7dc19d52013-08-28 10:18:11 +10005207 return count;
Chris Wilson31169712009-09-14 16:50:28 +01005208}
Ben Widawskya70a3142013-07-31 16:59:56 -07005209
5210/* All the new VM stuff */
5211unsigned long i915_gem_obj_offset(struct drm_i915_gem_object *o,
5212 struct i915_address_space *vm)
5213{
5214 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
5215 struct i915_vma *vma;
5216
Daniel Vetter896ab1a2014-08-06 15:04:51 +02005217 WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base);
Ben Widawskya70a3142013-07-31 16:59:56 -07005218
Ben Widawskya70a3142013-07-31 16:59:56 -07005219 list_for_each_entry(vma, &o->vma_list, vma_link) {
5220 if (vma->vm == vm)
5221 return vma->node.start;
5222
5223 }
Daniel Vetterf25748ea2014-06-17 22:34:38 +02005224 WARN(1, "%s vma for this object not found.\n",
5225 i915_is_ggtt(vm) ? "global" : "ppgtt");
Ben Widawskya70a3142013-07-31 16:59:56 -07005226 return -1;
5227}
5228
5229bool i915_gem_obj_bound(struct drm_i915_gem_object *o,
5230 struct i915_address_space *vm)
5231{
5232 struct i915_vma *vma;
5233
5234 list_for_each_entry(vma, &o->vma_list, vma_link)
Ben Widawsky8b9c2b92013-07-31 17:00:16 -07005235 if (vma->vm == vm && drm_mm_node_allocated(&vma->node))
Ben Widawskya70a3142013-07-31 16:59:56 -07005236 return true;
5237
5238 return false;
5239}
5240
5241bool i915_gem_obj_bound_any(struct drm_i915_gem_object *o)
5242{
Chris Wilson5a1d5eb2013-09-10 11:27:37 +01005243 struct i915_vma *vma;
Ben Widawskya70a3142013-07-31 16:59:56 -07005244
Chris Wilson5a1d5eb2013-09-10 11:27:37 +01005245 list_for_each_entry(vma, &o->vma_list, vma_link)
5246 if (drm_mm_node_allocated(&vma->node))
Ben Widawskya70a3142013-07-31 16:59:56 -07005247 return true;
5248
5249 return false;
5250}
5251
5252unsigned long i915_gem_obj_size(struct drm_i915_gem_object *o,
5253 struct i915_address_space *vm)
5254{
5255 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
5256 struct i915_vma *vma;
5257
Daniel Vetter896ab1a2014-08-06 15:04:51 +02005258 WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base);
Ben Widawskya70a3142013-07-31 16:59:56 -07005259
5260 BUG_ON(list_empty(&o->vma_list));
5261
5262 list_for_each_entry(vma, &o->vma_list, vma_link)
5263 if (vma->vm == vm)
5264 return vma->node.size;
5265
5266 return 0;
5267}
5268
Dave Chinner7dc19d52013-08-28 10:18:11 +10005269static unsigned long
Chris Wilsonceabbba52014-03-25 13:23:04 +00005270i915_gem_shrinker_scan(struct shrinker *shrinker, struct shrink_control *sc)
Dave Chinner7dc19d52013-08-28 10:18:11 +10005271{
5272 struct drm_i915_private *dev_priv =
Chris Wilsonceabbba52014-03-25 13:23:04 +00005273 container_of(shrinker, struct drm_i915_private, mm.shrinker);
Dave Chinner7dc19d52013-08-28 10:18:11 +10005274 struct drm_device *dev = dev_priv->dev;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005275 unsigned long freed;
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005276 bool unlock;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005277
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005278 if (!i915_gem_shrinker_lock(dev, &unlock))
5279 return SHRINK_STOP;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005280
Chris Wilson21ab4e72014-09-09 11:16:08 +01005281 freed = i915_gem_shrink(dev_priv,
5282 sc->nr_to_scan,
5283 I915_SHRINK_BOUND |
5284 I915_SHRINK_UNBOUND |
5285 I915_SHRINK_PURGEABLE);
Chris Wilsond9973b42013-10-04 10:33:00 +01005286 if (freed < sc->nr_to_scan)
Chris Wilson21ab4e72014-09-09 11:16:08 +01005287 freed += i915_gem_shrink(dev_priv,
5288 sc->nr_to_scan - freed,
5289 I915_SHRINK_BOUND |
5290 I915_SHRINK_UNBOUND);
Dave Chinner7dc19d52013-08-28 10:18:11 +10005291 if (unlock)
5292 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9973b42013-10-04 10:33:00 +01005293
Dave Chinner7dc19d52013-08-28 10:18:11 +10005294 return freed;
5295}
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005296
Chris Wilson2cfcd322014-05-20 08:28:43 +01005297static int
5298i915_gem_shrinker_oom(struct notifier_block *nb, unsigned long event, void *ptr)
5299{
5300 struct drm_i915_private *dev_priv =
5301 container_of(nb, struct drm_i915_private, mm.oom_notifier);
5302 struct drm_device *dev = dev_priv->dev;
5303 struct drm_i915_gem_object *obj;
5304 unsigned long timeout = msecs_to_jiffies(5000) + 1;
5305 unsigned long pinned, bound, unbound, freed;
5306 bool was_interruptible;
5307 bool unlock;
5308
Chris Wilsona1db2fa2014-07-11 11:28:00 +01005309 while (!i915_gem_shrinker_lock(dev, &unlock) && --timeout) {
Chris Wilson2cfcd322014-05-20 08:28:43 +01005310 schedule_timeout_killable(1);
Chris Wilsona1db2fa2014-07-11 11:28:00 +01005311 if (fatal_signal_pending(current))
5312 return NOTIFY_DONE;
5313 }
Chris Wilson2cfcd322014-05-20 08:28:43 +01005314 if (timeout == 0) {
5315 pr_err("Unable to purge GPU memory due lock contention.\n");
5316 return NOTIFY_DONE;
5317 }
5318
5319 was_interruptible = dev_priv->mm.interruptible;
5320 dev_priv->mm.interruptible = false;
5321
5322 freed = i915_gem_shrink_all(dev_priv);
5323
5324 dev_priv->mm.interruptible = was_interruptible;
5325
5326 /* Because we may be allocating inside our own driver, we cannot
5327 * assert that there are no objects with pinned pages that are not
5328 * being pointed to by hardware.
5329 */
5330 unbound = bound = pinned = 0;
5331 list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list) {
5332 if (!obj->base.filp) /* not backed by a freeable object */
5333 continue;
5334
5335 if (obj->pages_pin_count)
5336 pinned += obj->base.size;
5337 else
5338 unbound += obj->base.size;
5339 }
5340 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
5341 if (!obj->base.filp)
5342 continue;
5343
5344 if (obj->pages_pin_count)
5345 pinned += obj->base.size;
5346 else
5347 bound += obj->base.size;
5348 }
5349
5350 if (unlock)
5351 mutex_unlock(&dev->struct_mutex);
5352
5353 pr_info("Purging GPU memory, %lu bytes freed, %lu bytes still pinned.\n",
5354 freed, pinned);
5355 if (unbound || bound)
5356 pr_err("%lu and %lu bytes still available in the "
5357 "bound and unbound GPU page lists.\n",
5358 bound, unbound);
5359
5360 *(unsigned long *)ptr += freed;
5361 return NOTIFY_DONE;
5362}
5363
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005364struct i915_vma *i915_gem_obj_to_ggtt(struct drm_i915_gem_object *obj)
5365{
5366 struct i915_vma *vma;
5367
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005368 vma = list_first_entry(&obj->vma_list, typeof(*vma), vma_link);
Daniel Vetter5dc383b2014-08-06 15:04:49 +02005369 if (vma->vm != i915_obj_to_ggtt(obj))
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005370 return NULL;
5371
5372 return vma;
5373}