blob: 7f95d8ff28af06a3b97d7f0a7fc71e82009223c2 [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 Wilson6a2c4232014-11-04 04:51:40 -0800211static int
212i915_gem_object_get_pages_phys(struct drm_i915_gem_object *obj)
Chris Wilson00731152014-05-21 12:42:56 +0100213{
Chris Wilson6a2c4232014-11-04 04:51:40 -0800214 struct address_space *mapping = file_inode(obj->base.filp)->i_mapping;
215 char *vaddr = obj->phys_handle->vaddr;
216 struct sg_table *st;
217 struct scatterlist *sg;
218 int i;
Chris Wilson00731152014-05-21 12:42:56 +0100219
Chris Wilson6a2c4232014-11-04 04:51:40 -0800220 if (WARN_ON(i915_gem_object_needs_bit17_swizzle(obj)))
221 return -EINVAL;
Chris Wilson00731152014-05-21 12:42:56 +0100222
Chris Wilson6a2c4232014-11-04 04:51:40 -0800223 for (i = 0; i < obj->base.size / PAGE_SIZE; i++) {
224 struct page *page;
225 char *src;
226
227 page = shmem_read_mapping_page(mapping, i);
228 if (IS_ERR(page))
229 return PTR_ERR(page);
230
231 src = kmap_atomic(page);
232 memcpy(vaddr, src, PAGE_SIZE);
233 drm_clflush_virt_range(vaddr, PAGE_SIZE);
234 kunmap_atomic(src);
235
236 page_cache_release(page);
237 vaddr += PAGE_SIZE;
238 }
239
240 i915_gem_chipset_flush(obj->base.dev);
241
242 st = kmalloc(sizeof(*st), GFP_KERNEL);
243 if (st == NULL)
244 return -ENOMEM;
245
246 if (sg_alloc_table(st, 1, GFP_KERNEL)) {
247 kfree(st);
248 return -ENOMEM;
249 }
250
251 sg = st->sgl;
252 sg->offset = 0;
253 sg->length = obj->base.size;
254
255 sg_dma_address(sg) = obj->phys_handle->busaddr;
256 sg_dma_len(sg) = obj->base.size;
257
258 obj->pages = st;
259 obj->has_dma_mapping = true;
260 return 0;
261}
262
263static void
264i915_gem_object_put_pages_phys(struct drm_i915_gem_object *obj)
265{
266 int ret;
267
268 BUG_ON(obj->madv == __I915_MADV_PURGED);
269
270 ret = i915_gem_object_set_to_cpu_domain(obj, true);
271 if (ret) {
272 /* In the event of a disaster, abandon all caches and
273 * hope for the best.
274 */
275 WARN_ON(ret != -EIO);
276 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
277 }
278
279 if (obj->madv == I915_MADV_DONTNEED)
280 obj->dirty = 0;
281
282 if (obj->dirty) {
Chris Wilson00731152014-05-21 12:42:56 +0100283 struct address_space *mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800284 char *vaddr = obj->phys_handle->vaddr;
Chris Wilson00731152014-05-21 12:42:56 +0100285 int i;
286
287 for (i = 0; i < obj->base.size / PAGE_SIZE; i++) {
Chris Wilson6a2c4232014-11-04 04:51:40 -0800288 struct page *page;
289 char *dst;
Chris Wilson00731152014-05-21 12:42:56 +0100290
Chris Wilson6a2c4232014-11-04 04:51:40 -0800291 page = shmem_read_mapping_page(mapping, i);
292 if (IS_ERR(page))
293 continue;
294
295 dst = kmap_atomic(page);
296 drm_clflush_virt_range(vaddr, PAGE_SIZE);
297 memcpy(dst, vaddr, PAGE_SIZE);
298 kunmap_atomic(dst);
299
300 set_page_dirty(page);
301 if (obj->madv == I915_MADV_WILLNEED)
Chris Wilson00731152014-05-21 12:42:56 +0100302 mark_page_accessed(page);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800303 page_cache_release(page);
Chris Wilson00731152014-05-21 12:42:56 +0100304 vaddr += PAGE_SIZE;
305 }
Chris Wilson6a2c4232014-11-04 04:51:40 -0800306 obj->dirty = 0;
Chris Wilson00731152014-05-21 12:42:56 +0100307 }
308
Chris Wilson6a2c4232014-11-04 04:51:40 -0800309 sg_free_table(obj->pages);
310 kfree(obj->pages);
311
312 obj->has_dma_mapping = false;
313}
314
315static void
316i915_gem_object_release_phys(struct drm_i915_gem_object *obj)
317{
318 drm_pci_free(obj->base.dev, obj->phys_handle);
319}
320
321static const struct drm_i915_gem_object_ops i915_gem_phys_ops = {
322 .get_pages = i915_gem_object_get_pages_phys,
323 .put_pages = i915_gem_object_put_pages_phys,
324 .release = i915_gem_object_release_phys,
325};
326
327static int
328drop_pages(struct drm_i915_gem_object *obj)
329{
330 struct i915_vma *vma, *next;
331 int ret;
332
333 drm_gem_object_reference(&obj->base);
334 list_for_each_entry_safe(vma, next, &obj->vma_list, vma_link)
335 if (i915_vma_unbind(vma))
336 break;
337
338 ret = i915_gem_object_put_pages(obj);
339 drm_gem_object_unreference(&obj->base);
340
341 return ret;
Chris Wilson00731152014-05-21 12:42:56 +0100342}
343
344int
345i915_gem_object_attach_phys(struct drm_i915_gem_object *obj,
346 int align)
347{
348 drm_dma_handle_t *phys;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800349 int ret;
Chris Wilson00731152014-05-21 12:42:56 +0100350
351 if (obj->phys_handle) {
352 if ((unsigned long)obj->phys_handle->vaddr & (align -1))
353 return -EBUSY;
354
355 return 0;
356 }
357
358 if (obj->madv != I915_MADV_WILLNEED)
359 return -EFAULT;
360
361 if (obj->base.filp == NULL)
362 return -EINVAL;
363
Chris Wilson6a2c4232014-11-04 04:51:40 -0800364 ret = drop_pages(obj);
365 if (ret)
366 return ret;
367
Chris Wilson00731152014-05-21 12:42:56 +0100368 /* create a new object */
369 phys = drm_pci_alloc(obj->base.dev, obj->base.size, align);
370 if (!phys)
371 return -ENOMEM;
372
Chris Wilson00731152014-05-21 12:42:56 +0100373 obj->phys_handle = phys;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800374 obj->ops = &i915_gem_phys_ops;
375
376 return i915_gem_object_get_pages(obj);
Chris Wilson00731152014-05-21 12:42:56 +0100377}
378
379static int
380i915_gem_phys_pwrite(struct drm_i915_gem_object *obj,
381 struct drm_i915_gem_pwrite *args,
382 struct drm_file *file_priv)
383{
384 struct drm_device *dev = obj->base.dev;
385 void *vaddr = obj->phys_handle->vaddr + args->offset;
386 char __user *user_data = to_user_ptr(args->data_ptr);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800387 int ret;
388
389 /* We manually control the domain here and pretend that it
390 * remains coherent i.e. in the GTT domain, like shmem_pwrite.
391 */
392 ret = i915_gem_object_wait_rendering(obj, false);
393 if (ret)
394 return ret;
Chris Wilson00731152014-05-21 12:42:56 +0100395
396 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
397 unsigned long unwritten;
398
399 /* The physical object once assigned is fixed for the lifetime
400 * of the obj, so we can safely drop the lock and continue
401 * to access vaddr.
402 */
403 mutex_unlock(&dev->struct_mutex);
404 unwritten = copy_from_user(vaddr, user_data, args->size);
405 mutex_lock(&dev->struct_mutex);
406 if (unwritten)
407 return -EFAULT;
408 }
409
Chris Wilson6a2c4232014-11-04 04:51:40 -0800410 drm_clflush_virt_range(vaddr, args->size);
Chris Wilson00731152014-05-21 12:42:56 +0100411 i915_gem_chipset_flush(dev);
412 return 0;
413}
414
Chris Wilson42dcedd2012-11-15 11:32:30 +0000415void *i915_gem_object_alloc(struct drm_device *dev)
416{
417 struct drm_i915_private *dev_priv = dev->dev_private;
Joe Perchesfac15c12013-08-29 13:11:07 -0700418 return kmem_cache_zalloc(dev_priv->slab, GFP_KERNEL);
Chris Wilson42dcedd2012-11-15 11:32:30 +0000419}
420
421void i915_gem_object_free(struct drm_i915_gem_object *obj)
422{
423 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
424 kmem_cache_free(dev_priv->slab, obj);
425}
426
Dave Airlieff72145b2011-02-07 12:16:14 +1000427static int
428i915_gem_create(struct drm_file *file,
429 struct drm_device *dev,
430 uint64_t size,
431 uint32_t *handle_p)
Eric Anholt673a3942008-07-30 12:06:12 -0700432{
Chris Wilson05394f32010-11-08 19:18:58 +0000433 struct drm_i915_gem_object *obj;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300434 int ret;
435 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700436
Dave Airlieff72145b2011-02-07 12:16:14 +1000437 size = roundup(size, PAGE_SIZE);
Chris Wilson8ffc0242011-09-14 14:14:28 +0200438 if (size == 0)
439 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700440
441 /* Allocate the new object */
Dave Airlieff72145b2011-02-07 12:16:14 +1000442 obj = i915_gem_alloc_object(dev, size);
Eric Anholt673a3942008-07-30 12:06:12 -0700443 if (obj == NULL)
444 return -ENOMEM;
445
Chris Wilson05394f32010-11-08 19:18:58 +0000446 ret = drm_gem_handle_create(file, &obj->base, &handle);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100447 /* drop reference from allocate - handle holds it now */
Daniel Vetterd861e332013-07-24 23:25:03 +0200448 drm_gem_object_unreference_unlocked(&obj->base);
449 if (ret)
450 return ret;
Chris Wilson202f2fe2010-10-14 13:20:40 +0100451
Dave Airlieff72145b2011-02-07 12:16:14 +1000452 *handle_p = handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700453 return 0;
454}
455
Dave Airlieff72145b2011-02-07 12:16:14 +1000456int
457i915_gem_dumb_create(struct drm_file *file,
458 struct drm_device *dev,
459 struct drm_mode_create_dumb *args)
460{
461 /* have to work out size/pitch and return them */
Paulo Zanonide45eaf2013-10-18 18:48:24 -0300462 args->pitch = ALIGN(args->width * DIV_ROUND_UP(args->bpp, 8), 64);
Dave Airlieff72145b2011-02-07 12:16:14 +1000463 args->size = args->pitch * args->height;
464 return i915_gem_create(file, dev,
465 args->size, &args->handle);
466}
467
Dave Airlieff72145b2011-02-07 12:16:14 +1000468/**
469 * Creates a new mm object and returns a handle to it.
470 */
471int
472i915_gem_create_ioctl(struct drm_device *dev, void *data,
473 struct drm_file *file)
474{
475 struct drm_i915_gem_create *args = data;
Daniel Vetter63ed2cb2012-04-23 16:50:50 +0200476
Dave Airlieff72145b2011-02-07 12:16:14 +1000477 return i915_gem_create(file, dev,
478 args->size, &args->handle);
479}
480
Daniel Vetter8c599672011-12-14 13:57:31 +0100481static inline int
Daniel Vetter8461d222011-12-14 13:57:32 +0100482__copy_to_user_swizzled(char __user *cpu_vaddr,
483 const char *gpu_vaddr, int gpu_offset,
484 int length)
485{
486 int ret, cpu_offset = 0;
487
488 while (length > 0) {
489 int cacheline_end = ALIGN(gpu_offset + 1, 64);
490 int this_length = min(cacheline_end - gpu_offset, length);
491 int swizzled_gpu_offset = gpu_offset ^ 64;
492
493 ret = __copy_to_user(cpu_vaddr + cpu_offset,
494 gpu_vaddr + swizzled_gpu_offset,
495 this_length);
496 if (ret)
497 return ret + length;
498
499 cpu_offset += this_length;
500 gpu_offset += this_length;
501 length -= this_length;
502 }
503
504 return 0;
505}
506
507static inline int
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700508__copy_from_user_swizzled(char *gpu_vaddr, int gpu_offset,
509 const char __user *cpu_vaddr,
Daniel Vetter8c599672011-12-14 13:57:31 +0100510 int length)
511{
512 int ret, cpu_offset = 0;
513
514 while (length > 0) {
515 int cacheline_end = ALIGN(gpu_offset + 1, 64);
516 int this_length = min(cacheline_end - gpu_offset, length);
517 int swizzled_gpu_offset = gpu_offset ^ 64;
518
519 ret = __copy_from_user(gpu_vaddr + swizzled_gpu_offset,
520 cpu_vaddr + cpu_offset,
521 this_length);
522 if (ret)
523 return ret + length;
524
525 cpu_offset += this_length;
526 gpu_offset += this_length;
527 length -= this_length;
528 }
529
530 return 0;
531}
532
Brad Volkin4c914c02014-02-18 10:15:45 -0800533/*
534 * Pins the specified object's pages and synchronizes the object with
535 * GPU accesses. Sets needs_clflush to non-zero if the caller should
536 * flush the object from the CPU cache.
537 */
538int i915_gem_obj_prepare_shmem_read(struct drm_i915_gem_object *obj,
539 int *needs_clflush)
540{
541 int ret;
542
543 *needs_clflush = 0;
544
545 if (!obj->base.filp)
546 return -EINVAL;
547
548 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU)) {
549 /* If we're not in the cpu read domain, set ourself into the gtt
550 * read domain and manually flush cachelines (if required). This
551 * optimizes for the case when the gpu will dirty the data
552 * anyway again before the next pread happens. */
553 *needs_clflush = !cpu_cache_is_coherent(obj->base.dev,
554 obj->cache_level);
555 ret = i915_gem_object_wait_rendering(obj, true);
556 if (ret)
557 return ret;
Chris Wilsonc8725f32014-03-17 12:21:55 +0000558
559 i915_gem_object_retire(obj);
Brad Volkin4c914c02014-02-18 10:15:45 -0800560 }
561
562 ret = i915_gem_object_get_pages(obj);
563 if (ret)
564 return ret;
565
566 i915_gem_object_pin_pages(obj);
567
568 return ret;
569}
570
Daniel Vetterd174bd62012-03-25 19:47:40 +0200571/* Per-page copy function for the shmem pread fastpath.
572 * Flushes invalid cachelines before reading the target if
573 * needs_clflush is set. */
Eric Anholteb014592009-03-10 11:44:52 -0700574static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200575shmem_pread_fast(struct page *page, int shmem_page_offset, int page_length,
576 char __user *user_data,
577 bool page_do_bit17_swizzling, bool needs_clflush)
578{
579 char *vaddr;
580 int ret;
581
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200582 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200583 return -EINVAL;
584
585 vaddr = kmap_atomic(page);
586 if (needs_clflush)
587 drm_clflush_virt_range(vaddr + shmem_page_offset,
588 page_length);
589 ret = __copy_to_user_inatomic(user_data,
590 vaddr + shmem_page_offset,
591 page_length);
592 kunmap_atomic(vaddr);
593
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100594 return ret ? -EFAULT : 0;
Daniel Vetterd174bd62012-03-25 19:47:40 +0200595}
596
Daniel Vetter23c18c72012-03-25 19:47:42 +0200597static void
598shmem_clflush_swizzled_range(char *addr, unsigned long length,
599 bool swizzled)
600{
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200601 if (unlikely(swizzled)) {
Daniel Vetter23c18c72012-03-25 19:47:42 +0200602 unsigned long start = (unsigned long) addr;
603 unsigned long end = (unsigned long) addr + length;
604
605 /* For swizzling simply ensure that we always flush both
606 * channels. Lame, but simple and it works. Swizzled
607 * pwrite/pread is far from a hotpath - current userspace
608 * doesn't use it at all. */
609 start = round_down(start, 128);
610 end = round_up(end, 128);
611
612 drm_clflush_virt_range((void *)start, end - start);
613 } else {
614 drm_clflush_virt_range(addr, length);
615 }
616
617}
618
Daniel Vetterd174bd62012-03-25 19:47:40 +0200619/* Only difference to the fast-path function is that this can handle bit17
620 * and uses non-atomic copy and kmap functions. */
621static int
622shmem_pread_slow(struct page *page, int shmem_page_offset, int page_length,
623 char __user *user_data,
624 bool page_do_bit17_swizzling, bool needs_clflush)
625{
626 char *vaddr;
627 int ret;
628
629 vaddr = kmap(page);
630 if (needs_clflush)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200631 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
632 page_length,
633 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200634
635 if (page_do_bit17_swizzling)
636 ret = __copy_to_user_swizzled(user_data,
637 vaddr, shmem_page_offset,
638 page_length);
639 else
640 ret = __copy_to_user(user_data,
641 vaddr + shmem_page_offset,
642 page_length);
643 kunmap(page);
644
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100645 return ret ? - EFAULT : 0;
Daniel Vetterd174bd62012-03-25 19:47:40 +0200646}
647
Eric Anholteb014592009-03-10 11:44:52 -0700648static int
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200649i915_gem_shmem_pread(struct drm_device *dev,
650 struct drm_i915_gem_object *obj,
651 struct drm_i915_gem_pread *args,
652 struct drm_file *file)
Eric Anholteb014592009-03-10 11:44:52 -0700653{
Daniel Vetter8461d222011-12-14 13:57:32 +0100654 char __user *user_data;
Eric Anholteb014592009-03-10 11:44:52 -0700655 ssize_t remain;
Daniel Vetter8461d222011-12-14 13:57:32 +0100656 loff_t offset;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100657 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8461d222011-12-14 13:57:32 +0100658 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vetter96d79b52012-03-25 19:47:36 +0200659 int prefaulted = 0;
Daniel Vetter84897312012-03-25 19:47:31 +0200660 int needs_clflush = 0;
Imre Deak67d5a502013-02-18 19:28:02 +0200661 struct sg_page_iter sg_iter;
Eric Anholteb014592009-03-10 11:44:52 -0700662
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200663 user_data = to_user_ptr(args->data_ptr);
Eric Anholteb014592009-03-10 11:44:52 -0700664 remain = args->size;
665
Daniel Vetter8461d222011-12-14 13:57:32 +0100666 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700667
Brad Volkin4c914c02014-02-18 10:15:45 -0800668 ret = i915_gem_obj_prepare_shmem_read(obj, &needs_clflush);
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100669 if (ret)
670 return ret;
671
Eric Anholteb014592009-03-10 11:44:52 -0700672 offset = args->offset;
Daniel Vetter8461d222011-12-14 13:57:32 +0100673
Imre Deak67d5a502013-02-18 19:28:02 +0200674 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents,
675 offset >> PAGE_SHIFT) {
Imre Deak2db76d72013-03-26 15:14:18 +0200676 struct page *page = sg_page_iter_page(&sg_iter);
Chris Wilson9da3da62012-06-01 15:20:22 +0100677
678 if (remain <= 0)
679 break;
680
Eric Anholteb014592009-03-10 11:44:52 -0700681 /* Operation in this page
682 *
Eric Anholteb014592009-03-10 11:44:52 -0700683 * shmem_page_offset = offset within page in shmem file
Eric Anholteb014592009-03-10 11:44:52 -0700684 * page_length = bytes to copy for this page
685 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100686 shmem_page_offset = offset_in_page(offset);
Eric Anholteb014592009-03-10 11:44:52 -0700687 page_length = remain;
688 if ((shmem_page_offset + page_length) > PAGE_SIZE)
689 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholteb014592009-03-10 11:44:52 -0700690
Daniel Vetter8461d222011-12-14 13:57:32 +0100691 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
692 (page_to_phys(page) & (1 << 17)) != 0;
693
Daniel Vetterd174bd62012-03-25 19:47:40 +0200694 ret = shmem_pread_fast(page, shmem_page_offset, page_length,
695 user_data, page_do_bit17_swizzling,
696 needs_clflush);
697 if (ret == 0)
698 goto next_page;
Eric Anholteb014592009-03-10 11:44:52 -0700699
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200700 mutex_unlock(&dev->struct_mutex);
701
Jani Nikulad330a952014-01-21 11:24:25 +0200702 if (likely(!i915.prefault_disable) && !prefaulted) {
Daniel Vetterf56f8212012-03-25 19:47:41 +0200703 ret = fault_in_multipages_writeable(user_data, remain);
Daniel Vetter96d79b52012-03-25 19:47:36 +0200704 /* Userspace is tricking us, but we've already clobbered
705 * its pages with the prefault and promised to write the
706 * data up to the first fault. Hence ignore any errors
707 * and just continue. */
708 (void)ret;
709 prefaulted = 1;
710 }
711
Daniel Vetterd174bd62012-03-25 19:47:40 +0200712 ret = shmem_pread_slow(page, shmem_page_offset, page_length,
713 user_data, page_do_bit17_swizzling,
714 needs_clflush);
Eric Anholteb014592009-03-10 11:44:52 -0700715
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200716 mutex_lock(&dev->struct_mutex);
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100717
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100718 if (ret)
Daniel Vetter8461d222011-12-14 13:57:32 +0100719 goto out;
Daniel Vetter8461d222011-12-14 13:57:32 +0100720
Chris Wilson17793c92014-03-07 08:30:36 +0000721next_page:
Eric Anholteb014592009-03-10 11:44:52 -0700722 remain -= page_length;
Daniel Vetter8461d222011-12-14 13:57:32 +0100723 user_data += page_length;
Eric Anholteb014592009-03-10 11:44:52 -0700724 offset += page_length;
725 }
726
Chris Wilson4f27b752010-10-14 15:26:45 +0100727out:
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100728 i915_gem_object_unpin_pages(obj);
729
Eric Anholteb014592009-03-10 11:44:52 -0700730 return ret;
731}
732
Eric Anholt673a3942008-07-30 12:06:12 -0700733/**
734 * Reads data from the object referenced by handle.
735 *
736 * On error, the contents of *data are undefined.
737 */
738int
739i915_gem_pread_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000740 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700741{
742 struct drm_i915_gem_pread *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000743 struct drm_i915_gem_object *obj;
Chris Wilson35b62a82010-09-26 20:23:38 +0100744 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700745
Chris Wilson51311d02010-11-17 09:10:42 +0000746 if (args->size == 0)
747 return 0;
748
749 if (!access_ok(VERIFY_WRITE,
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200750 to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +0000751 args->size))
752 return -EFAULT;
753
Chris Wilson4f27b752010-10-14 15:26:45 +0100754 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100755 if (ret)
Chris Wilson4f27b752010-10-14 15:26:45 +0100756 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700757
Chris Wilson05394f32010-11-08 19:18:58 +0000758 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000759 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100760 ret = -ENOENT;
761 goto unlock;
Chris Wilson4f27b752010-10-14 15:26:45 +0100762 }
Eric Anholt673a3942008-07-30 12:06:12 -0700763
Chris Wilson7dcd2492010-09-26 20:21:44 +0100764 /* Bounds check source. */
Chris Wilson05394f32010-11-08 19:18:58 +0000765 if (args->offset > obj->base.size ||
766 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100767 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100768 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100769 }
770
Daniel Vetter1286ff72012-05-10 15:25:09 +0200771 /* prime objects have no backing filp to GEM pread/pwrite
772 * pages from.
773 */
774 if (!obj->base.filp) {
775 ret = -EINVAL;
776 goto out;
777 }
778
Chris Wilsondb53a302011-02-03 11:57:46 +0000779 trace_i915_gem_object_pread(obj, args->offset, args->size);
780
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200781 ret = i915_gem_shmem_pread(dev, obj, args, file);
Eric Anholt673a3942008-07-30 12:06:12 -0700782
Chris Wilson35b62a82010-09-26 20:23:38 +0100783out:
Chris Wilson05394f32010-11-08 19:18:58 +0000784 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100785unlock:
Chris Wilson4f27b752010-10-14 15:26:45 +0100786 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700787 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700788}
789
Keith Packard0839ccb2008-10-30 19:38:48 -0700790/* This is the fast write path which cannot handle
791 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700792 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700793
Keith Packard0839ccb2008-10-30 19:38:48 -0700794static inline int
795fast_user_write(struct io_mapping *mapping,
796 loff_t page_base, int page_offset,
797 char __user *user_data,
798 int length)
799{
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700800 void __iomem *vaddr_atomic;
801 void *vaddr;
Keith Packard0839ccb2008-10-30 19:38:48 -0700802 unsigned long unwritten;
803
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700804 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base);
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700805 /* We can use the cpu mem copy function because this is X86. */
806 vaddr = (void __force*)vaddr_atomic + page_offset;
807 unwritten = __copy_from_user_inatomic_nocache(vaddr,
Keith Packard0839ccb2008-10-30 19:38:48 -0700808 user_data, length);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700809 io_mapping_unmap_atomic(vaddr_atomic);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100810 return unwritten;
Keith Packard0839ccb2008-10-30 19:38:48 -0700811}
812
Eric Anholt3de09aa2009-03-09 09:42:23 -0700813/**
814 * This is the fast pwrite path, where we copy the data directly from the
815 * user into the GTT, uncached.
816 */
Eric Anholt673a3942008-07-30 12:06:12 -0700817static int
Chris Wilson05394f32010-11-08 19:18:58 +0000818i915_gem_gtt_pwrite_fast(struct drm_device *dev,
819 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -0700820 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000821 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700822{
Jani Nikula3e31c6c2014-03-31 14:27:16 +0300823 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700824 ssize_t remain;
Keith Packard0839ccb2008-10-30 19:38:48 -0700825 loff_t offset, page_base;
Eric Anholt673a3942008-07-30 12:06:12 -0700826 char __user *user_data;
Daniel Vetter935aaa62012-03-25 19:47:35 +0200827 int page_offset, page_length, ret;
828
Daniel Vetter1ec9e262014-02-14 14:01:11 +0100829 ret = i915_gem_obj_ggtt_pin(obj, 0, PIN_MAPPABLE | PIN_NONBLOCK);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200830 if (ret)
831 goto out;
832
833 ret = i915_gem_object_set_to_gtt_domain(obj, true);
834 if (ret)
835 goto out_unpin;
836
837 ret = i915_gem_object_put_fence(obj);
838 if (ret)
839 goto out_unpin;
Eric Anholt673a3942008-07-30 12:06:12 -0700840
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200841 user_data = to_user_ptr(args->data_ptr);
Eric Anholt673a3942008-07-30 12:06:12 -0700842 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700843
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700844 offset = i915_gem_obj_ggtt_offset(obj) + args->offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700845
846 while (remain > 0) {
847 /* Operation in this page
848 *
Keith Packard0839ccb2008-10-30 19:38:48 -0700849 * page_base = page offset within aperture
850 * page_offset = offset within page
851 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -0700852 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100853 page_base = offset & PAGE_MASK;
854 page_offset = offset_in_page(offset);
Keith Packard0839ccb2008-10-30 19:38:48 -0700855 page_length = remain;
856 if ((page_offset + remain) > PAGE_SIZE)
857 page_length = PAGE_SIZE - page_offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700858
Keith Packard0839ccb2008-10-30 19:38:48 -0700859 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -0700860 * source page isn't available. Return the error and we'll
861 * retry in the slow path.
Keith Packard0839ccb2008-10-30 19:38:48 -0700862 */
Ben Widawsky5d4545a2013-01-17 12:45:15 -0800863 if (fast_user_write(dev_priv->gtt.mappable, page_base,
Daniel Vetter935aaa62012-03-25 19:47:35 +0200864 page_offset, user_data, page_length)) {
865 ret = -EFAULT;
866 goto out_unpin;
867 }
Eric Anholt673a3942008-07-30 12:06:12 -0700868
Keith Packard0839ccb2008-10-30 19:38:48 -0700869 remain -= page_length;
870 user_data += page_length;
871 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700872 }
Eric Anholt673a3942008-07-30 12:06:12 -0700873
Daniel Vetter935aaa62012-03-25 19:47:35 +0200874out_unpin:
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800875 i915_gem_object_ggtt_unpin(obj);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200876out:
Eric Anholt3de09aa2009-03-09 09:42:23 -0700877 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700878}
879
Daniel Vetterd174bd62012-03-25 19:47:40 +0200880/* Per-page copy function for the shmem pwrite fastpath.
881 * Flushes invalid cachelines before writing to the target if
882 * needs_clflush_before is set and flushes out any written cachelines after
883 * writing if needs_clflush is set. */
Eric Anholt673a3942008-07-30 12:06:12 -0700884static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200885shmem_pwrite_fast(struct page *page, int shmem_page_offset, int page_length,
886 char __user *user_data,
887 bool page_do_bit17_swizzling,
888 bool needs_clflush_before,
889 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700890{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200891 char *vaddr;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700892 int ret;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700893
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200894 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200895 return -EINVAL;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700896
Daniel Vetterd174bd62012-03-25 19:47:40 +0200897 vaddr = kmap_atomic(page);
898 if (needs_clflush_before)
899 drm_clflush_virt_range(vaddr + shmem_page_offset,
900 page_length);
Chris Wilsonc2831a92014-03-07 08:30:37 +0000901 ret = __copy_from_user_inatomic(vaddr + shmem_page_offset,
902 user_data, page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200903 if (needs_clflush_after)
904 drm_clflush_virt_range(vaddr + shmem_page_offset,
905 page_length);
906 kunmap_atomic(vaddr);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700907
Chris Wilson755d2212012-09-04 21:02:55 +0100908 return ret ? -EFAULT : 0;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700909}
910
Daniel Vetterd174bd62012-03-25 19:47:40 +0200911/* Only difference to the fast-path function is that this can handle bit17
912 * and uses non-atomic copy and kmap functions. */
Eric Anholt3043c602008-10-02 12:24:47 -0700913static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200914shmem_pwrite_slow(struct page *page, int shmem_page_offset, int page_length,
915 char __user *user_data,
916 bool page_do_bit17_swizzling,
917 bool needs_clflush_before,
918 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700919{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200920 char *vaddr;
921 int ret;
Eric Anholt40123c12009-03-09 13:42:30 -0700922
Daniel Vetterd174bd62012-03-25 19:47:40 +0200923 vaddr = kmap(page);
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200924 if (unlikely(needs_clflush_before || page_do_bit17_swizzling))
Daniel Vetter23c18c72012-03-25 19:47:42 +0200925 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
926 page_length,
927 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200928 if (page_do_bit17_swizzling)
929 ret = __copy_from_user_swizzled(vaddr, shmem_page_offset,
Chris Wilsone5281cc2010-10-28 13:45:36 +0100930 user_data,
931 page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200932 else
933 ret = __copy_from_user(vaddr + shmem_page_offset,
934 user_data,
935 page_length);
936 if (needs_clflush_after)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200937 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
938 page_length,
939 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200940 kunmap(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100941
Chris Wilson755d2212012-09-04 21:02:55 +0100942 return ret ? -EFAULT : 0;
Eric Anholt40123c12009-03-09 13:42:30 -0700943}
944
Eric Anholt40123c12009-03-09 13:42:30 -0700945static int
Daniel Vettere244a442012-03-25 19:47:28 +0200946i915_gem_shmem_pwrite(struct drm_device *dev,
947 struct drm_i915_gem_object *obj,
948 struct drm_i915_gem_pwrite *args,
949 struct drm_file *file)
Eric Anholt40123c12009-03-09 13:42:30 -0700950{
Eric Anholt40123c12009-03-09 13:42:30 -0700951 ssize_t remain;
Daniel Vetter8c599672011-12-14 13:57:31 +0100952 loff_t offset;
953 char __user *user_data;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100954 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8c599672011-12-14 13:57:31 +0100955 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vettere244a442012-03-25 19:47:28 +0200956 int hit_slowpath = 0;
Daniel Vetter58642882012-03-25 19:47:37 +0200957 int needs_clflush_after = 0;
958 int needs_clflush_before = 0;
Imre Deak67d5a502013-02-18 19:28:02 +0200959 struct sg_page_iter sg_iter;
Eric Anholt40123c12009-03-09 13:42:30 -0700960
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200961 user_data = to_user_ptr(args->data_ptr);
Eric Anholt40123c12009-03-09 13:42:30 -0700962 remain = args->size;
963
Daniel Vetter8c599672011-12-14 13:57:31 +0100964 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700965
Daniel Vetter58642882012-03-25 19:47:37 +0200966 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
967 /* If we're not in the cpu write domain, set ourself into the gtt
968 * write domain and manually flush cachelines (if required). This
969 * optimizes for the case when the gpu will use the data
970 * right away and we therefore have to clflush anyway. */
Chris Wilson2c225692013-08-09 12:26:45 +0100971 needs_clflush_after = cpu_write_needs_clflush(obj);
Ben Widawsky23f54482013-09-11 14:57:48 -0700972 ret = i915_gem_object_wait_rendering(obj, false);
973 if (ret)
974 return ret;
Chris Wilsonc8725f32014-03-17 12:21:55 +0000975
976 i915_gem_object_retire(obj);
Daniel Vetter58642882012-03-25 19:47:37 +0200977 }
Chris Wilsonc76ce032013-08-08 14:41:03 +0100978 /* Same trick applies to invalidate partially written cachelines read
979 * before writing. */
980 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0)
981 needs_clflush_before =
982 !cpu_cache_is_coherent(dev, obj->cache_level);
Daniel Vetter58642882012-03-25 19:47:37 +0200983
Chris Wilson755d2212012-09-04 21:02:55 +0100984 ret = i915_gem_object_get_pages(obj);
985 if (ret)
986 return ret;
987
988 i915_gem_object_pin_pages(obj);
989
Eric Anholt40123c12009-03-09 13:42:30 -0700990 offset = args->offset;
Chris Wilson05394f32010-11-08 19:18:58 +0000991 obj->dirty = 1;
Eric Anholt40123c12009-03-09 13:42:30 -0700992
Imre Deak67d5a502013-02-18 19:28:02 +0200993 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents,
994 offset >> PAGE_SHIFT) {
Imre Deak2db76d72013-03-26 15:14:18 +0200995 struct page *page = sg_page_iter_page(&sg_iter);
Daniel Vetter58642882012-03-25 19:47:37 +0200996 int partial_cacheline_write;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100997
Chris Wilson9da3da62012-06-01 15:20:22 +0100998 if (remain <= 0)
999 break;
1000
Eric Anholt40123c12009-03-09 13:42:30 -07001001 /* Operation in this page
1002 *
Eric Anholt40123c12009-03-09 13:42:30 -07001003 * shmem_page_offset = offset within page in shmem file
Eric Anholt40123c12009-03-09 13:42:30 -07001004 * page_length = bytes to copy for this page
1005 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +01001006 shmem_page_offset = offset_in_page(offset);
Eric Anholt40123c12009-03-09 13:42:30 -07001007
1008 page_length = remain;
1009 if ((shmem_page_offset + page_length) > PAGE_SIZE)
1010 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholt40123c12009-03-09 13:42:30 -07001011
Daniel Vetter58642882012-03-25 19:47:37 +02001012 /* If we don't overwrite a cacheline completely we need to be
1013 * careful to have up-to-date data by first clflushing. Don't
1014 * overcomplicate things and flush the entire patch. */
1015 partial_cacheline_write = needs_clflush_before &&
1016 ((shmem_page_offset | page_length)
1017 & (boot_cpu_data.x86_clflush_size - 1));
1018
Daniel Vetter8c599672011-12-14 13:57:31 +01001019 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
1020 (page_to_phys(page) & (1 << 17)) != 0;
1021
Daniel Vetterd174bd62012-03-25 19:47:40 +02001022 ret = shmem_pwrite_fast(page, shmem_page_offset, page_length,
1023 user_data, page_do_bit17_swizzling,
1024 partial_cacheline_write,
1025 needs_clflush_after);
1026 if (ret == 0)
1027 goto next_page;
Eric Anholt40123c12009-03-09 13:42:30 -07001028
Daniel Vettere244a442012-03-25 19:47:28 +02001029 hit_slowpath = 1;
Daniel Vettere244a442012-03-25 19:47:28 +02001030 mutex_unlock(&dev->struct_mutex);
Daniel Vetterd174bd62012-03-25 19:47:40 +02001031 ret = shmem_pwrite_slow(page, shmem_page_offset, page_length,
1032 user_data, page_do_bit17_swizzling,
1033 partial_cacheline_write,
1034 needs_clflush_after);
Eric Anholt40123c12009-03-09 13:42:30 -07001035
Daniel Vettere244a442012-03-25 19:47:28 +02001036 mutex_lock(&dev->struct_mutex);
Chris Wilson755d2212012-09-04 21:02:55 +01001037
Chris Wilson755d2212012-09-04 21:02:55 +01001038 if (ret)
Daniel Vetter8c599672011-12-14 13:57:31 +01001039 goto out;
Daniel Vetter8c599672011-12-14 13:57:31 +01001040
Chris Wilson17793c92014-03-07 08:30:36 +00001041next_page:
Eric Anholt40123c12009-03-09 13:42:30 -07001042 remain -= page_length;
Daniel Vetter8c599672011-12-14 13:57:31 +01001043 user_data += page_length;
Eric Anholt40123c12009-03-09 13:42:30 -07001044 offset += page_length;
1045 }
1046
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001047out:
Chris Wilson755d2212012-09-04 21:02:55 +01001048 i915_gem_object_unpin_pages(obj);
1049
Daniel Vettere244a442012-03-25 19:47:28 +02001050 if (hit_slowpath) {
Daniel Vetter8dcf0152012-11-15 16:53:58 +01001051 /*
1052 * Fixup: Flush cpu caches in case we didn't flush the dirty
1053 * cachelines in-line while writing and the object moved
1054 * out of the cpu write domain while we've dropped the lock.
1055 */
1056 if (!needs_clflush_after &&
1057 obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
Chris Wilson000433b2013-08-08 14:41:09 +01001058 if (i915_gem_clflush_object(obj, obj->pin_display))
1059 i915_gem_chipset_flush(dev);
Daniel Vettere244a442012-03-25 19:47:28 +02001060 }
Daniel Vetter8c599672011-12-14 13:57:31 +01001061 }
Eric Anholt40123c12009-03-09 13:42:30 -07001062
Daniel Vetter58642882012-03-25 19:47:37 +02001063 if (needs_clflush_after)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08001064 i915_gem_chipset_flush(dev);
Daniel Vetter58642882012-03-25 19:47:37 +02001065
Eric Anholt40123c12009-03-09 13:42:30 -07001066 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001067}
1068
1069/**
1070 * Writes data to the object referenced by handle.
1071 *
1072 * On error, the contents of the buffer that were to be modified are undefined.
1073 */
1074int
1075i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001076 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001077{
1078 struct drm_i915_gem_pwrite *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001079 struct drm_i915_gem_object *obj;
Chris Wilson51311d02010-11-17 09:10:42 +00001080 int ret;
1081
1082 if (args->size == 0)
1083 return 0;
1084
1085 if (!access_ok(VERIFY_READ,
Ville Syrjälä2bb46292013-02-22 16:12:51 +02001086 to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +00001087 args->size))
1088 return -EFAULT;
1089
Jani Nikulad330a952014-01-21 11:24:25 +02001090 if (likely(!i915.prefault_disable)) {
Xiong Zhang0b74b502013-07-19 13:51:24 +08001091 ret = fault_in_multipages_readable(to_user_ptr(args->data_ptr),
1092 args->size);
1093 if (ret)
1094 return -EFAULT;
1095 }
Eric Anholt673a3942008-07-30 12:06:12 -07001096
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001097 ret = i915_mutex_lock_interruptible(dev);
1098 if (ret)
1099 return ret;
1100
Chris Wilson05394f32010-11-08 19:18:58 +00001101 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001102 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001103 ret = -ENOENT;
1104 goto unlock;
1105 }
Eric Anholt673a3942008-07-30 12:06:12 -07001106
Chris Wilson7dcd2492010-09-26 20:21:44 +01001107 /* Bounds check destination. */
Chris Wilson05394f32010-11-08 19:18:58 +00001108 if (args->offset > obj->base.size ||
1109 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +01001110 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +01001111 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +01001112 }
1113
Daniel Vetter1286ff72012-05-10 15:25:09 +02001114 /* prime objects have no backing filp to GEM pread/pwrite
1115 * pages from.
1116 */
1117 if (!obj->base.filp) {
1118 ret = -EINVAL;
1119 goto out;
1120 }
1121
Chris Wilsondb53a302011-02-03 11:57:46 +00001122 trace_i915_gem_object_pwrite(obj, args->offset, args->size);
1123
Daniel Vetter935aaa62012-03-25 19:47:35 +02001124 ret = -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -07001125 /* We can only do the GTT pwrite on untiled buffers, as otherwise
1126 * it would end up going through the fenced access, and we'll get
1127 * different detiling behavior between reading and writing.
1128 * pread/pwrite currently are reading and writing from the CPU
1129 * perspective, requiring manual detiling by the client.
1130 */
Chris Wilson2c225692013-08-09 12:26:45 +01001131 if (obj->tiling_mode == I915_TILING_NONE &&
1132 obj->base.write_domain != I915_GEM_DOMAIN_CPU &&
1133 cpu_write_needs_clflush(obj)) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001134 ret = i915_gem_gtt_pwrite_fast(dev, obj, args, file);
Daniel Vetter935aaa62012-03-25 19:47:35 +02001135 /* Note that the gtt paths might fail with non-page-backed user
1136 * pointers (e.g. gtt mappings when moving data between
1137 * textures). Fallback to the shmem path in that case. */
Eric Anholt40123c12009-03-09 13:42:30 -07001138 }
Eric Anholt673a3942008-07-30 12:06:12 -07001139
Chris Wilson6a2c4232014-11-04 04:51:40 -08001140 if (ret == -EFAULT || ret == -ENOSPC) {
1141 if (obj->phys_handle)
1142 ret = i915_gem_phys_pwrite(obj, args, file);
1143 else
1144 ret = i915_gem_shmem_pwrite(dev, obj, args, file);
1145 }
Daniel Vetter5c0480f2011-12-14 13:57:30 +01001146
Chris Wilson35b62a82010-09-26 20:23:38 +01001147out:
Chris Wilson05394f32010-11-08 19:18:58 +00001148 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001149unlock:
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001150 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07001151 return ret;
1152}
1153
Chris Wilsonb3612372012-08-24 09:35:08 +01001154int
Daniel Vetter33196de2012-11-14 17:14:05 +01001155i915_gem_check_wedge(struct i915_gpu_error *error,
Chris Wilsonb3612372012-08-24 09:35:08 +01001156 bool interruptible)
1157{
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001158 if (i915_reset_in_progress(error)) {
Chris Wilsonb3612372012-08-24 09:35:08 +01001159 /* Non-interruptible callers can't handle -EAGAIN, hence return
1160 * -EIO unconditionally for these. */
1161 if (!interruptible)
1162 return -EIO;
1163
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001164 /* Recovery complete, but the reset failed ... */
1165 if (i915_terminally_wedged(error))
Chris Wilsonb3612372012-08-24 09:35:08 +01001166 return -EIO;
1167
McAulay, Alistair6689c162014-08-15 18:51:35 +01001168 /*
1169 * Check if GPU Reset is in progress - we need intel_ring_begin
1170 * to work properly to reinit the hw state while the gpu is
1171 * still marked as reset-in-progress. Handle this with a flag.
1172 */
1173 if (!error->reload_in_reset)
1174 return -EAGAIN;
Chris Wilsonb3612372012-08-24 09:35:08 +01001175 }
1176
1177 return 0;
1178}
1179
1180/*
1181 * Compare seqno against outstanding lazy request. Emit a request if they are
1182 * equal.
1183 */
Sourab Gupta84c33a62014-06-02 16:47:17 +05301184int
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001185i915_gem_check_olr(struct intel_engine_cs *ring, u32 seqno)
Chris Wilsonb3612372012-08-24 09:35:08 +01001186{
1187 int ret;
1188
1189 BUG_ON(!mutex_is_locked(&ring->dev->struct_mutex));
1190
1191 ret = 0;
Chris Wilson18235212013-09-04 10:45:51 +01001192 if (seqno == ring->outstanding_lazy_seqno)
Mika Kuoppala0025c072013-06-12 12:35:30 +03001193 ret = i915_add_request(ring, NULL);
Chris Wilsonb3612372012-08-24 09:35:08 +01001194
1195 return ret;
1196}
1197
Chris Wilson094f9a52013-09-25 17:34:55 +01001198static void fake_irq(unsigned long data)
1199{
1200 wake_up_process((struct task_struct *)data);
1201}
1202
1203static bool missed_irq(struct drm_i915_private *dev_priv,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001204 struct intel_engine_cs *ring)
Chris Wilson094f9a52013-09-25 17:34:55 +01001205{
1206 return test_bit(ring->id, &dev_priv->gpu_error.missed_irq_rings);
1207}
1208
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001209static bool can_wait_boost(struct drm_i915_file_private *file_priv)
1210{
1211 if (file_priv == NULL)
1212 return true;
1213
1214 return !atomic_xchg(&file_priv->rps_wait_boost, true);
1215}
1216
Chris Wilsonb3612372012-08-24 09:35:08 +01001217/**
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001218 * __i915_wait_seqno - wait until execution of seqno has finished
Chris Wilsonb3612372012-08-24 09:35:08 +01001219 * @ring: the ring expected to report seqno
1220 * @seqno: duh!
Daniel Vetterf69061b2012-12-06 09:01:42 +01001221 * @reset_counter: reset sequence associated with the given seqno
Chris Wilsonb3612372012-08-24 09:35:08 +01001222 * @interruptible: do an interruptible wait (normally yes)
1223 * @timeout: in - how long to wait (NULL forever); out - how much time remaining
1224 *
Daniel Vetterf69061b2012-12-06 09:01:42 +01001225 * Note: It is of utmost importance that the passed in seqno and reset_counter
1226 * values have been read by the caller in an smp safe manner. Where read-side
1227 * locks are involved, it is sufficient to read the reset_counter before
1228 * unlocking the lock that protects the seqno. For lockless tricks, the
1229 * reset_counter _must_ be read before, and an appropriate smp_rmb must be
1230 * inserted.
1231 *
Chris Wilsonb3612372012-08-24 09:35:08 +01001232 * Returns 0 if the seqno was found within the alloted time. Else returns the
1233 * errno with remaining time filled in timeout argument.
1234 */
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001235int __i915_wait_seqno(struct intel_engine_cs *ring, u32 seqno,
Daniel Vetterf69061b2012-12-06 09:01:42 +01001236 unsigned reset_counter,
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001237 bool interruptible,
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001238 s64 *timeout,
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001239 struct drm_i915_file_private *file_priv)
Chris Wilsonb3612372012-08-24 09:35:08 +01001240{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001241 struct drm_device *dev = ring->dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03001242 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001243 const bool irq_test_in_progress =
1244 ACCESS_ONCE(dev_priv->gpu_error.test_irq_rings) & intel_ring_flag(ring);
Chris Wilson094f9a52013-09-25 17:34:55 +01001245 DEFINE_WAIT(wait);
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001246 unsigned long timeout_expire;
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001247 s64 before, now;
Chris Wilsonb3612372012-08-24 09:35:08 +01001248 int ret;
1249
Jesse Barnes9df7575f2014-06-20 09:29:20 -07001250 WARN(!intel_irqs_enabled(dev_priv), "IRQs disabled");
Paulo Zanonic67a4702013-08-19 13:18:09 -03001251
Chris Wilsonb3612372012-08-24 09:35:08 +01001252 if (i915_seqno_passed(ring->get_seqno(ring, true), seqno))
1253 return 0;
1254
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001255 timeout_expire = timeout ? jiffies + nsecs_to_jiffies((u64)*timeout) : 0;
Chris Wilsonb3612372012-08-24 09:35:08 +01001256
Chris Wilsonec5cc0f2014-06-12 10:28:55 +01001257 if (INTEL_INFO(dev)->gen >= 6 && ring->id == RCS && can_wait_boost(file_priv)) {
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001258 gen6_rps_boost(dev_priv);
1259 if (file_priv)
1260 mod_delayed_work(dev_priv->wq,
1261 &file_priv->mm.idle_work,
1262 msecs_to_jiffies(100));
1263 }
1264
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001265 if (!irq_test_in_progress && WARN_ON(!ring->irq_get(ring)))
Chris Wilsonb3612372012-08-24 09:35:08 +01001266 return -ENODEV;
1267
Chris Wilson094f9a52013-09-25 17:34:55 +01001268 /* Record current time in case interrupted by signal, or wedged */
1269 trace_i915_gem_request_wait_begin(ring, seqno);
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001270 before = ktime_get_raw_ns();
Chris Wilson094f9a52013-09-25 17:34:55 +01001271 for (;;) {
1272 struct timer_list timer;
Chris Wilsonb3612372012-08-24 09:35:08 +01001273
Chris Wilson094f9a52013-09-25 17:34:55 +01001274 prepare_to_wait(&ring->irq_queue, &wait,
1275 interruptible ? TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE);
Chris Wilsonb3612372012-08-24 09:35:08 +01001276
Daniel Vetterf69061b2012-12-06 09:01:42 +01001277 /* We need to check whether any gpu reset happened in between
1278 * the caller grabbing the seqno and now ... */
Chris Wilson094f9a52013-09-25 17:34:55 +01001279 if (reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter)) {
1280 /* ... but upgrade the -EAGAIN to an -EIO if the gpu
1281 * is truely gone. */
1282 ret = i915_gem_check_wedge(&dev_priv->gpu_error, interruptible);
1283 if (ret == 0)
1284 ret = -EAGAIN;
1285 break;
1286 }
Daniel Vetterf69061b2012-12-06 09:01:42 +01001287
Chris Wilson094f9a52013-09-25 17:34:55 +01001288 if (i915_seqno_passed(ring->get_seqno(ring, false), seqno)) {
1289 ret = 0;
1290 break;
1291 }
Chris Wilsonb3612372012-08-24 09:35:08 +01001292
Chris Wilson094f9a52013-09-25 17:34:55 +01001293 if (interruptible && signal_pending(current)) {
1294 ret = -ERESTARTSYS;
1295 break;
1296 }
1297
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001298 if (timeout && time_after_eq(jiffies, timeout_expire)) {
Chris Wilson094f9a52013-09-25 17:34:55 +01001299 ret = -ETIME;
1300 break;
1301 }
1302
1303 timer.function = NULL;
1304 if (timeout || missed_irq(dev_priv, ring)) {
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001305 unsigned long expire;
1306
Chris Wilson094f9a52013-09-25 17:34:55 +01001307 setup_timer_on_stack(&timer, fake_irq, (unsigned long)current);
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001308 expire = missed_irq(dev_priv, ring) ? jiffies + 1 : timeout_expire;
Chris Wilson094f9a52013-09-25 17:34:55 +01001309 mod_timer(&timer, expire);
1310 }
1311
Chris Wilson5035c272013-10-04 09:58:46 +01001312 io_schedule();
Chris Wilson094f9a52013-09-25 17:34:55 +01001313
Chris Wilson094f9a52013-09-25 17:34:55 +01001314 if (timer.function) {
1315 del_singleshot_timer_sync(&timer);
1316 destroy_timer_on_stack(&timer);
1317 }
1318 }
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001319 now = ktime_get_raw_ns();
Chris Wilson094f9a52013-09-25 17:34:55 +01001320 trace_i915_gem_request_wait_end(ring, seqno);
Chris Wilsonb3612372012-08-24 09:35:08 +01001321
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001322 if (!irq_test_in_progress)
1323 ring->irq_put(ring);
Chris Wilson094f9a52013-09-25 17:34:55 +01001324
1325 finish_wait(&ring->irq_queue, &wait);
Chris Wilsonb3612372012-08-24 09:35:08 +01001326
1327 if (timeout) {
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001328 s64 tres = *timeout - (now - before);
1329
1330 *timeout = tres < 0 ? 0 : tres;
Chris Wilsonb3612372012-08-24 09:35:08 +01001331 }
1332
Chris Wilson094f9a52013-09-25 17:34:55 +01001333 return ret;
Chris Wilsonb3612372012-08-24 09:35:08 +01001334}
1335
1336/**
1337 * Waits for a sequence number to be signaled, and cleans up the
1338 * request and object lists appropriately for that event.
1339 */
1340int
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001341i915_wait_seqno(struct intel_engine_cs *ring, uint32_t seqno)
Chris Wilsonb3612372012-08-24 09:35:08 +01001342{
1343 struct drm_device *dev = ring->dev;
1344 struct drm_i915_private *dev_priv = dev->dev_private;
1345 bool interruptible = dev_priv->mm.interruptible;
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001346 unsigned reset_counter;
Chris Wilsonb3612372012-08-24 09:35:08 +01001347 int ret;
1348
1349 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
1350 BUG_ON(seqno == 0);
1351
Daniel Vetter33196de2012-11-14 17:14:05 +01001352 ret = i915_gem_check_wedge(&dev_priv->gpu_error, interruptible);
Chris Wilsonb3612372012-08-24 09:35:08 +01001353 if (ret)
1354 return ret;
1355
1356 ret = i915_gem_check_olr(ring, seqno);
1357 if (ret)
1358 return ret;
1359
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001360 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
1361 return __i915_wait_seqno(ring, seqno, reset_counter, interruptible,
1362 NULL, NULL);
Chris Wilsonb3612372012-08-24 09:35:08 +01001363}
1364
Chris Wilsond26e3af2013-06-29 22:05:26 +01001365static int
John Harrison8e6395492014-10-30 18:40:53 +00001366i915_gem_object_wait_rendering__tail(struct drm_i915_gem_object *obj)
Chris Wilsond26e3af2013-06-29 22:05:26 +01001367{
Chris Wilsonc8725f32014-03-17 12:21:55 +00001368 if (!obj->active)
1369 return 0;
Chris Wilsond26e3af2013-06-29 22:05:26 +01001370
1371 /* Manually manage the write flush as we may have not yet
1372 * retired the buffer.
1373 *
1374 * Note that the last_write_seqno is always the earlier of
1375 * the two (read/write) seqno, so if we haved successfully waited,
1376 * we know we have passed the last write.
1377 */
1378 obj->last_write_seqno = 0;
Chris Wilsond26e3af2013-06-29 22:05:26 +01001379
1380 return 0;
1381}
1382
Chris Wilsonb3612372012-08-24 09:35:08 +01001383/**
1384 * Ensures that all rendering to the object has completed and the object is
1385 * safe to unbind from the GTT or access from the CPU.
1386 */
1387static __must_check int
1388i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj,
1389 bool readonly)
1390{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001391 struct intel_engine_cs *ring = obj->ring;
Chris Wilsonb3612372012-08-24 09:35:08 +01001392 u32 seqno;
1393 int ret;
1394
1395 seqno = readonly ? obj->last_write_seqno : obj->last_read_seqno;
1396 if (seqno == 0)
1397 return 0;
1398
1399 ret = i915_wait_seqno(ring, seqno);
1400 if (ret)
1401 return ret;
1402
John Harrison8e6395492014-10-30 18:40:53 +00001403 return i915_gem_object_wait_rendering__tail(obj);
Chris Wilsonb3612372012-08-24 09:35:08 +01001404}
1405
Chris Wilson3236f572012-08-24 09:35:09 +01001406/* A nonblocking variant of the above wait. This is a highly dangerous routine
1407 * as the object state may change during this call.
1408 */
1409static __must_check int
1410i915_gem_object_wait_rendering__nonblocking(struct drm_i915_gem_object *obj,
Chris Wilson6e4930f2014-02-07 18:37:06 -02001411 struct drm_i915_file_private *file_priv,
Chris Wilson3236f572012-08-24 09:35:09 +01001412 bool readonly)
1413{
1414 struct drm_device *dev = obj->base.dev;
1415 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001416 struct intel_engine_cs *ring = obj->ring;
Daniel Vetterf69061b2012-12-06 09:01:42 +01001417 unsigned reset_counter;
Chris Wilson3236f572012-08-24 09:35:09 +01001418 u32 seqno;
1419 int ret;
1420
1421 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
1422 BUG_ON(!dev_priv->mm.interruptible);
1423
1424 seqno = readonly ? obj->last_write_seqno : obj->last_read_seqno;
1425 if (seqno == 0)
1426 return 0;
1427
Daniel Vetter33196de2012-11-14 17:14:05 +01001428 ret = i915_gem_check_wedge(&dev_priv->gpu_error, true);
Chris Wilson3236f572012-08-24 09:35:09 +01001429 if (ret)
1430 return ret;
1431
1432 ret = i915_gem_check_olr(ring, seqno);
1433 if (ret)
1434 return ret;
1435
Daniel Vetterf69061b2012-12-06 09:01:42 +01001436 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilson3236f572012-08-24 09:35:09 +01001437 mutex_unlock(&dev->struct_mutex);
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001438 ret = __i915_wait_seqno(ring, seqno, reset_counter, true, NULL,
1439 file_priv);
Chris Wilson3236f572012-08-24 09:35:09 +01001440 mutex_lock(&dev->struct_mutex);
Chris Wilsond26e3af2013-06-29 22:05:26 +01001441 if (ret)
1442 return ret;
Chris Wilson3236f572012-08-24 09:35:09 +01001443
John Harrison8e6395492014-10-30 18:40:53 +00001444 return i915_gem_object_wait_rendering__tail(obj);
Chris Wilson3236f572012-08-24 09:35:09 +01001445}
1446
Eric Anholt673a3942008-07-30 12:06:12 -07001447/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001448 * Called when user space prepares to use an object with the CPU, either
1449 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -07001450 */
1451int
1452i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001453 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001454{
1455 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001456 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001457 uint32_t read_domains = args->read_domains;
1458 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07001459 int ret;
1460
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001461 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +01001462 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001463 return -EINVAL;
1464
Chris Wilson21d509e2009-06-06 09:46:02 +01001465 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001466 return -EINVAL;
1467
1468 /* Having something in the write domain implies it's in the read
1469 * domain, and only that read domain. Enforce that in the request.
1470 */
1471 if (write_domain != 0 && read_domains != write_domain)
1472 return -EINVAL;
1473
Chris Wilson76c1dec2010-09-25 11:22:51 +01001474 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001475 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001476 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001477
Chris Wilson05394f32010-11-08 19:18:58 +00001478 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001479 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001480 ret = -ENOENT;
1481 goto unlock;
Chris Wilson76c1dec2010-09-25 11:22:51 +01001482 }
Jesse Barnes652c3932009-08-17 13:31:43 -07001483
Chris Wilson3236f572012-08-24 09:35:09 +01001484 /* Try to flush the object off the GPU without holding the lock.
1485 * We will repeat the flush holding the lock in the normal manner
1486 * to catch cases where we are gazumped.
1487 */
Chris Wilson6e4930f2014-02-07 18:37:06 -02001488 ret = i915_gem_object_wait_rendering__nonblocking(obj,
1489 file->driver_priv,
1490 !write_domain);
Chris Wilson3236f572012-08-24 09:35:09 +01001491 if (ret)
1492 goto unref;
1493
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001494 if (read_domains & I915_GEM_DOMAIN_GTT) {
1495 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Eric Anholt02354392008-11-26 13:58:13 -08001496
1497 /* Silently promote "you're not bound, there was nothing to do"
1498 * to success, since the client was just asking us to
1499 * make sure everything was done.
1500 */
1501 if (ret == -EINVAL)
1502 ret = 0;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001503 } else {
Eric Anholte47c68e2008-11-14 13:35:19 -08001504 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001505 }
1506
Chris Wilson3236f572012-08-24 09:35:09 +01001507unref:
Chris Wilson05394f32010-11-08 19:18:58 +00001508 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001509unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001510 mutex_unlock(&dev->struct_mutex);
1511 return ret;
1512}
1513
1514/**
1515 * Called when user space has done writes to this buffer
1516 */
1517int
1518i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001519 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001520{
1521 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001522 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001523 int ret = 0;
1524
Chris Wilson76c1dec2010-09-25 11:22:51 +01001525 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001526 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001527 return ret;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001528
Chris Wilson05394f32010-11-08 19:18:58 +00001529 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001530 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001531 ret = -ENOENT;
1532 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07001533 }
1534
Eric Anholt673a3942008-07-30 12:06:12 -07001535 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilson2c225692013-08-09 12:26:45 +01001536 if (obj->pin_display)
1537 i915_gem_object_flush_cpu_write_domain(obj, true);
Eric Anholte47c68e2008-11-14 13:35:19 -08001538
Chris Wilson05394f32010-11-08 19:18:58 +00001539 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001540unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001541 mutex_unlock(&dev->struct_mutex);
1542 return ret;
1543}
1544
1545/**
1546 * Maps the contents of an object, returning the address it is mapped
1547 * into.
1548 *
1549 * While the mapping holds a reference on the contents of the object, it doesn't
1550 * imply a ref on the object itself.
Daniel Vetter34367382014-10-16 12:28:18 +02001551 *
1552 * IMPORTANT:
1553 *
1554 * DRM driver writers who look a this function as an example for how to do GEM
1555 * mmap support, please don't implement mmap support like here. The modern way
1556 * to implement DRM mmap support is with an mmap offset ioctl (like
1557 * i915_gem_mmap_gtt) and then using the mmap syscall on the DRM fd directly.
1558 * That way debug tooling like valgrind will understand what's going on, hiding
1559 * the mmap call in a driver private ioctl will break that. The i915 driver only
1560 * does cpu mmaps this way because we didn't know better.
Eric Anholt673a3942008-07-30 12:06:12 -07001561 */
1562int
1563i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001564 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001565{
1566 struct drm_i915_gem_mmap *args = data;
1567 struct drm_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001568 unsigned long addr;
1569
Chris Wilson05394f32010-11-08 19:18:58 +00001570 obj = drm_gem_object_lookup(dev, file, args->handle);
Eric Anholt673a3942008-07-30 12:06:12 -07001571 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001572 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001573
Daniel Vetter1286ff72012-05-10 15:25:09 +02001574 /* prime objects have no backing filp to GEM mmap
1575 * pages from.
1576 */
1577 if (!obj->filp) {
1578 drm_gem_object_unreference_unlocked(obj);
1579 return -EINVAL;
1580 }
1581
Linus Torvalds6be5ceb2012-04-20 17:13:58 -07001582 addr = vm_mmap(obj->filp, 0, args->size,
Eric Anholt673a3942008-07-30 12:06:12 -07001583 PROT_READ | PROT_WRITE, MAP_SHARED,
1584 args->offset);
Luca Barbieribc9025b2010-02-09 05:49:12 +00001585 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001586 if (IS_ERR((void *)addr))
1587 return addr;
1588
1589 args->addr_ptr = (uint64_t) addr;
1590
1591 return 0;
1592}
1593
Jesse Barnesde151cf2008-11-12 10:03:55 -08001594/**
1595 * i915_gem_fault - fault a page into the GTT
1596 * vma: VMA in question
1597 * vmf: fault info
1598 *
1599 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1600 * from userspace. The fault handler takes care of binding the object to
1601 * the GTT (if needed), allocating and programming a fence register (again,
1602 * only if needed based on whether the old reg is still valid or the object
1603 * is tiled) and inserting a new PTE into the faulting process.
1604 *
1605 * Note that the faulting process may involve evicting existing objects
1606 * from the GTT and/or fence registers to make room. So performance may
1607 * suffer if the GTT working set is large or there are few fence registers
1608 * left.
1609 */
1610int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1611{
Chris Wilson05394f32010-11-08 19:18:58 +00001612 struct drm_i915_gem_object *obj = to_intel_bo(vma->vm_private_data);
1613 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03001614 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001615 pgoff_t page_offset;
1616 unsigned long pfn;
1617 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001618 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001619
Paulo Zanonif65c9162013-11-27 18:20:34 -02001620 intel_runtime_pm_get(dev_priv);
1621
Jesse Barnesde151cf2008-11-12 10:03:55 -08001622 /* We don't use vmf->pgoff since that has the fake offset */
1623 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1624 PAGE_SHIFT;
1625
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001626 ret = i915_mutex_lock_interruptible(dev);
1627 if (ret)
1628 goto out;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001629
Chris Wilsondb53a302011-02-03 11:57:46 +00001630 trace_i915_gem_object_fault(obj, page_offset, true, write);
1631
Chris Wilson6e4930f2014-02-07 18:37:06 -02001632 /* Try to flush the object off the GPU first without holding the lock.
1633 * Upon reacquiring the lock, we will perform our sanity checks and then
1634 * repeat the flush holding the lock in the normal manner to catch cases
1635 * where we are gazumped.
1636 */
1637 ret = i915_gem_object_wait_rendering__nonblocking(obj, NULL, !write);
1638 if (ret)
1639 goto unlock;
1640
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001641 /* Access to snoopable pages through the GTT is incoherent. */
1642 if (obj->cache_level != I915_CACHE_NONE && !HAS_LLC(dev)) {
Chris Wilsonddeff6e2014-05-28 16:16:41 +01001643 ret = -EFAULT;
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001644 goto unlock;
1645 }
1646
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001647 /* Now bind it into the GTT if needed */
Daniel Vetter1ec9e262014-02-14 14:01:11 +01001648 ret = i915_gem_obj_ggtt_pin(obj, 0, PIN_MAPPABLE);
Chris Wilsond9e86c02010-11-10 16:40:20 +00001649 if (ret)
1650 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001651
Chris Wilsonc9839302012-11-20 10:45:17 +00001652 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1653 if (ret)
1654 goto unpin;
1655
1656 ret = i915_gem_object_get_fence(obj);
1657 if (ret)
1658 goto unpin;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001659
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001660 /* Finally, remap it using the new GTT offset */
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001661 pfn = dev_priv->gtt.mappable_base + i915_gem_obj_ggtt_offset(obj);
1662 pfn >>= PAGE_SHIFT;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001663
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001664 if (!obj->fault_mappable) {
Ville Syrjäläbeff0d02014-06-17 21:03:00 +03001665 unsigned long size = min_t(unsigned long,
1666 vma->vm_end - vma->vm_start,
1667 obj->base.size);
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001668 int i;
1669
Ville Syrjäläbeff0d02014-06-17 21:03:00 +03001670 for (i = 0; i < size >> PAGE_SHIFT; i++) {
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001671 ret = vm_insert_pfn(vma,
1672 (unsigned long)vma->vm_start + i * PAGE_SIZE,
1673 pfn + i);
1674 if (ret)
1675 break;
1676 }
1677
1678 obj->fault_mappable = true;
1679 } else
1680 ret = vm_insert_pfn(vma,
1681 (unsigned long)vmf->virtual_address,
1682 pfn + page_offset);
Chris Wilsonc9839302012-11-20 10:45:17 +00001683unpin:
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08001684 i915_gem_object_ggtt_unpin(obj);
Chris Wilsonc7150892009-09-23 00:43:56 +01001685unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001686 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001687out:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001688 switch (ret) {
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001689 case -EIO:
Daniel Vetter2232f032014-09-04 09:36:18 +02001690 /*
1691 * We eat errors when the gpu is terminally wedged to avoid
1692 * userspace unduly crashing (gl has no provisions for mmaps to
1693 * fail). But any other -EIO isn't ours (e.g. swap in failure)
1694 * and so needs to be reported.
1695 */
1696 if (!i915_terminally_wedged(&dev_priv->gpu_error)) {
Paulo Zanonif65c9162013-11-27 18:20:34 -02001697 ret = VM_FAULT_SIGBUS;
1698 break;
1699 }
Chris Wilson045e7692010-11-07 09:18:22 +00001700 case -EAGAIN:
Daniel Vetter571c6082013-09-12 17:57:28 +02001701 /*
1702 * EAGAIN means the gpu is hung and we'll wait for the error
1703 * handler to reset everything when re-faulting in
1704 * i915_mutex_lock_interruptible.
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001705 */
Chris Wilsonc7150892009-09-23 00:43:56 +01001706 case 0:
1707 case -ERESTARTSYS:
Chris Wilsonbed636a2011-02-11 20:31:19 +00001708 case -EINTR:
Dmitry Rogozhkine79e0fe2012-10-03 17:15:26 +03001709 case -EBUSY:
1710 /*
1711 * EBUSY is ok: this just means that another thread
1712 * already did the job.
1713 */
Paulo Zanonif65c9162013-11-27 18:20:34 -02001714 ret = VM_FAULT_NOPAGE;
1715 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001716 case -ENOMEM:
Paulo Zanonif65c9162013-11-27 18:20:34 -02001717 ret = VM_FAULT_OOM;
1718 break;
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001719 case -ENOSPC:
Chris Wilson45d67812014-01-31 11:34:57 +00001720 case -EFAULT:
Paulo Zanonif65c9162013-11-27 18:20:34 -02001721 ret = VM_FAULT_SIGBUS;
1722 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001723 default:
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001724 WARN_ONCE(ret, "unhandled error in i915_gem_fault: %i\n", ret);
Paulo Zanonif65c9162013-11-27 18:20:34 -02001725 ret = VM_FAULT_SIGBUS;
1726 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001727 }
Paulo Zanonif65c9162013-11-27 18:20:34 -02001728
1729 intel_runtime_pm_put(dev_priv);
1730 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001731}
1732
1733/**
Chris Wilson901782b2009-07-10 08:18:50 +01001734 * i915_gem_release_mmap - remove physical page mappings
1735 * @obj: obj in question
1736 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001737 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001738 * relinquish ownership of the pages back to the system.
1739 *
1740 * It is vital that we remove the page mapping if we have mapped a tiled
1741 * object through the GTT and then lose the fence register due to
1742 * resource pressure. Similarly if the object has been moved out of the
1743 * aperture, than pages mapped into userspace must be revoked. Removing the
1744 * mapping will then trigger a page fault on the next user access, allowing
1745 * fixup by i915_gem_fault().
1746 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001747void
Chris Wilson05394f32010-11-08 19:18:58 +00001748i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01001749{
Chris Wilson6299f992010-11-24 12:23:44 +00001750 if (!obj->fault_mappable)
1751 return;
Chris Wilson901782b2009-07-10 08:18:50 +01001752
David Herrmann6796cb12014-01-03 14:24:19 +01001753 drm_vma_node_unmap(&obj->base.vma_node,
1754 obj->base.dev->anon_inode->i_mapping);
Chris Wilson6299f992010-11-24 12:23:44 +00001755 obj->fault_mappable = false;
Chris Wilson901782b2009-07-10 08:18:50 +01001756}
1757
Chris Wilsoneedd10f2014-06-16 08:57:44 +01001758void
1759i915_gem_release_all_mmaps(struct drm_i915_private *dev_priv)
1760{
1761 struct drm_i915_gem_object *obj;
1762
1763 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list)
1764 i915_gem_release_mmap(obj);
1765}
1766
Imre Deak0fa87792013-01-07 21:47:35 +02001767uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001768i915_gem_get_gtt_size(struct drm_device *dev, uint32_t size, int tiling_mode)
Chris Wilson92b88ae2010-11-09 11:47:32 +00001769{
Chris Wilsone28f8712011-07-18 13:11:49 -07001770 uint32_t gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001771
1772 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001773 tiling_mode == I915_TILING_NONE)
1774 return size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001775
1776 /* Previous chips need a power-of-two fence region when tiling */
1777 if (INTEL_INFO(dev)->gen == 3)
Chris Wilsone28f8712011-07-18 13:11:49 -07001778 gtt_size = 1024*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001779 else
Chris Wilsone28f8712011-07-18 13:11:49 -07001780 gtt_size = 512*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001781
Chris Wilsone28f8712011-07-18 13:11:49 -07001782 while (gtt_size < size)
1783 gtt_size <<= 1;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001784
Chris Wilsone28f8712011-07-18 13:11:49 -07001785 return gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001786}
1787
Jesse Barnesde151cf2008-11-12 10:03:55 -08001788/**
1789 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1790 * @obj: object to check
1791 *
1792 * Return the required GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01001793 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08001794 */
Imre Deakd8651102013-01-07 21:47:33 +02001795uint32_t
1796i915_gem_get_gtt_alignment(struct drm_device *dev, uint32_t size,
1797 int tiling_mode, bool fenced)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001798{
Jesse Barnesde151cf2008-11-12 10:03:55 -08001799 /*
1800 * Minimum alignment is 4k (GTT page size), but might be greater
1801 * if a fence register is needed for the object.
1802 */
Imre Deakd8651102013-01-07 21:47:33 +02001803 if (INTEL_INFO(dev)->gen >= 4 || (!fenced && IS_G33(dev)) ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001804 tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001805 return 4096;
1806
1807 /*
1808 * Previous chips need to be aligned to the size of the smallest
1809 * fence register that can contain the object.
1810 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001811 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01001812}
1813
Chris Wilsond8cb5082012-08-11 15:41:03 +01001814static int i915_gem_object_create_mmap_offset(struct drm_i915_gem_object *obj)
1815{
1816 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
1817 int ret;
1818
David Herrmann0de23972013-07-24 21:07:52 +02001819 if (drm_vma_node_has_offset(&obj->base.vma_node))
Chris Wilsond8cb5082012-08-11 15:41:03 +01001820 return 0;
1821
Daniel Vetterda494d72012-12-20 15:11:16 +01001822 dev_priv->mm.shrinker_no_lock_stealing = true;
1823
Chris Wilsond8cb5082012-08-11 15:41:03 +01001824 ret = drm_gem_create_mmap_offset(&obj->base);
1825 if (ret != -ENOSPC)
Daniel Vetterda494d72012-12-20 15:11:16 +01001826 goto out;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001827
1828 /* Badly fragmented mmap space? The only way we can recover
1829 * space is by destroying unwanted objects. We can't randomly release
1830 * mmap_offsets as userspace expects them to be persistent for the
1831 * lifetime of the objects. The closest we can is to release the
1832 * offsets on purgeable objects by truncating it and marking it purged,
1833 * which prevents userspace from ever using that object again.
1834 */
Chris Wilson21ab4e72014-09-09 11:16:08 +01001835 i915_gem_shrink(dev_priv,
1836 obj->base.size >> PAGE_SHIFT,
1837 I915_SHRINK_BOUND |
1838 I915_SHRINK_UNBOUND |
1839 I915_SHRINK_PURGEABLE);
Chris Wilsond8cb5082012-08-11 15:41:03 +01001840 ret = drm_gem_create_mmap_offset(&obj->base);
1841 if (ret != -ENOSPC)
Daniel Vetterda494d72012-12-20 15:11:16 +01001842 goto out;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001843
1844 i915_gem_shrink_all(dev_priv);
Daniel Vetterda494d72012-12-20 15:11:16 +01001845 ret = drm_gem_create_mmap_offset(&obj->base);
1846out:
1847 dev_priv->mm.shrinker_no_lock_stealing = false;
1848
1849 return ret;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001850}
1851
1852static void i915_gem_object_free_mmap_offset(struct drm_i915_gem_object *obj)
1853{
Chris Wilsond8cb5082012-08-11 15:41:03 +01001854 drm_gem_free_mmap_offset(&obj->base);
1855}
1856
Jesse Barnesde151cf2008-11-12 10:03:55 -08001857int
Dave Airlieff72145b2011-02-07 12:16:14 +10001858i915_gem_mmap_gtt(struct drm_file *file,
1859 struct drm_device *dev,
1860 uint32_t handle,
1861 uint64_t *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001862{
Chris Wilsonda761a62010-10-27 17:37:08 +01001863 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001864 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001865 int ret;
1866
Chris Wilson76c1dec2010-09-25 11:22:51 +01001867 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001868 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001869 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001870
Dave Airlieff72145b2011-02-07 12:16:14 +10001871 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001872 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001873 ret = -ENOENT;
1874 goto unlock;
1875 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001876
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001877 if (obj->base.size > dev_priv->gtt.mappable_end) {
Chris Wilsonda761a62010-10-27 17:37:08 +01001878 ret = -E2BIG;
Eric Anholtff56b0b2011-10-31 23:16:21 -07001879 goto out;
Chris Wilsonda761a62010-10-27 17:37:08 +01001880 }
1881
Chris Wilson05394f32010-11-08 19:18:58 +00001882 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00001883 DRM_DEBUG("Attempting to mmap a purgeable buffer\n");
Chris Wilson8c99e572014-01-31 11:34:58 +00001884 ret = -EFAULT;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001885 goto out;
Chris Wilsonab182822009-09-22 18:46:17 +01001886 }
1887
Chris Wilsond8cb5082012-08-11 15:41:03 +01001888 ret = i915_gem_object_create_mmap_offset(obj);
1889 if (ret)
1890 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001891
David Herrmann0de23972013-07-24 21:07:52 +02001892 *offset = drm_vma_node_offset_addr(&obj->base.vma_node);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001893
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001894out:
Chris Wilson05394f32010-11-08 19:18:58 +00001895 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001896unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001897 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001898 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001899}
1900
Dave Airlieff72145b2011-02-07 12:16:14 +10001901/**
1902 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1903 * @dev: DRM device
1904 * @data: GTT mapping ioctl data
1905 * @file: GEM object info
1906 *
1907 * Simply returns the fake offset to userspace so it can mmap it.
1908 * The mmap call will end up in drm_gem_mmap(), which will set things
1909 * up so we can get faults in the handler above.
1910 *
1911 * The fault handler will take care of binding the object into the GTT
1912 * (since it may have been evicted to make room for something), allocating
1913 * a fence register, and mapping the appropriate aperture address into
1914 * userspace.
1915 */
1916int
1917i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
1918 struct drm_file *file)
1919{
1920 struct drm_i915_gem_mmap_gtt *args = data;
1921
Dave Airlieff72145b2011-02-07 12:16:14 +10001922 return i915_gem_mmap_gtt(file, dev, args->handle, &args->offset);
1923}
1924
Chris Wilson55372522014-03-25 13:23:06 +00001925static inline int
1926i915_gem_object_is_purgeable(struct drm_i915_gem_object *obj)
1927{
1928 return obj->madv == I915_MADV_DONTNEED;
1929}
1930
Daniel Vetter225067e2012-08-20 10:23:20 +02001931/* Immediately discard the backing storage */
1932static void
1933i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001934{
Chris Wilson4d6294bf2012-08-11 15:41:05 +01001935 i915_gem_object_free_mmap_offset(obj);
Daniel Vetter1286ff72012-05-10 15:25:09 +02001936
Chris Wilson4d6294bf2012-08-11 15:41:05 +01001937 if (obj->base.filp == NULL)
1938 return;
1939
Daniel Vetter225067e2012-08-20 10:23:20 +02001940 /* Our goal here is to return as much of the memory as
1941 * is possible back to the system as we are called from OOM.
1942 * To do this we must instruct the shmfs to drop all of its
1943 * backing pages, *now*.
Chris Wilsone5281cc2010-10-28 13:45:36 +01001944 */
Chris Wilson55372522014-03-25 13:23:06 +00001945 shmem_truncate_range(file_inode(obj->base.filp), 0, (loff_t)-1);
Daniel Vetter225067e2012-08-20 10:23:20 +02001946 obj->madv = __I915_MADV_PURGED;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001947}
Chris Wilsone5281cc2010-10-28 13:45:36 +01001948
Chris Wilson55372522014-03-25 13:23:06 +00001949/* Try to discard unwanted pages */
1950static void
1951i915_gem_object_invalidate(struct drm_i915_gem_object *obj)
Daniel Vetter225067e2012-08-20 10:23:20 +02001952{
Chris Wilson55372522014-03-25 13:23:06 +00001953 struct address_space *mapping;
1954
1955 switch (obj->madv) {
1956 case I915_MADV_DONTNEED:
1957 i915_gem_object_truncate(obj);
1958 case __I915_MADV_PURGED:
1959 return;
1960 }
1961
1962 if (obj->base.filp == NULL)
1963 return;
1964
1965 mapping = file_inode(obj->base.filp)->i_mapping,
1966 invalidate_mapping_pages(mapping, 0, (loff_t)-1);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001967}
1968
Chris Wilson5cdf5882010-09-27 15:51:07 +01001969static void
Chris Wilson05394f32010-11-08 19:18:58 +00001970i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001971{
Imre Deak90797e62013-02-18 19:28:03 +02001972 struct sg_page_iter sg_iter;
1973 int ret;
Daniel Vetter1286ff72012-05-10 15:25:09 +02001974
Chris Wilson05394f32010-11-08 19:18:58 +00001975 BUG_ON(obj->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07001976
Chris Wilson6c085a72012-08-20 11:40:46 +02001977 ret = i915_gem_object_set_to_cpu_domain(obj, true);
1978 if (ret) {
1979 /* In the event of a disaster, abandon all caches and
1980 * hope for the best.
1981 */
1982 WARN_ON(ret != -EIO);
Chris Wilson2c225692013-08-09 12:26:45 +01001983 i915_gem_clflush_object(obj, true);
Chris Wilson6c085a72012-08-20 11:40:46 +02001984 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
1985 }
1986
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001987 if (i915_gem_object_needs_bit17_swizzle(obj))
Eric Anholt280b7132009-03-12 16:56:27 -07001988 i915_gem_object_save_bit_17_swizzle(obj);
1989
Chris Wilson05394f32010-11-08 19:18:58 +00001990 if (obj->madv == I915_MADV_DONTNEED)
1991 obj->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01001992
Imre Deak90797e62013-02-18 19:28:03 +02001993 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents, 0) {
Imre Deak2db76d72013-03-26 15:14:18 +02001994 struct page *page = sg_page_iter_page(&sg_iter);
Chris Wilson9da3da62012-06-01 15:20:22 +01001995
Chris Wilson05394f32010-11-08 19:18:58 +00001996 if (obj->dirty)
Chris Wilson9da3da62012-06-01 15:20:22 +01001997 set_page_dirty(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001998
Chris Wilson05394f32010-11-08 19:18:58 +00001999 if (obj->madv == I915_MADV_WILLNEED)
Chris Wilson9da3da62012-06-01 15:20:22 +01002000 mark_page_accessed(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01002001
Chris Wilson9da3da62012-06-01 15:20:22 +01002002 page_cache_release(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01002003 }
Chris Wilson05394f32010-11-08 19:18:58 +00002004 obj->dirty = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002005
Chris Wilson9da3da62012-06-01 15:20:22 +01002006 sg_free_table(obj->pages);
2007 kfree(obj->pages);
Chris Wilson37e680a2012-06-07 15:38:42 +01002008}
2009
Chris Wilsondd624af2013-01-15 12:39:35 +00002010int
Chris Wilson37e680a2012-06-07 15:38:42 +01002011i915_gem_object_put_pages(struct drm_i915_gem_object *obj)
2012{
2013 const struct drm_i915_gem_object_ops *ops = obj->ops;
2014
Chris Wilson2f745ad2012-09-04 21:02:58 +01002015 if (obj->pages == NULL)
Chris Wilson37e680a2012-06-07 15:38:42 +01002016 return 0;
2017
Chris Wilsona5570172012-09-04 21:02:54 +01002018 if (obj->pages_pin_count)
2019 return -EBUSY;
2020
Ben Widawsky98438772013-07-31 17:00:12 -07002021 BUG_ON(i915_gem_obj_bound_any(obj));
Ben Widawsky3e123022013-07-31 17:00:04 -07002022
Chris Wilsona2165e32012-12-03 11:49:00 +00002023 /* ->put_pages might need to allocate memory for the bit17 swizzle
2024 * array, hence protect them from being reaped by removing them from gtt
2025 * lists early. */
Ben Widawsky35c20a62013-05-31 11:28:48 -07002026 list_del(&obj->global_list);
Chris Wilsona2165e32012-12-03 11:49:00 +00002027
Chris Wilson37e680a2012-06-07 15:38:42 +01002028 ops->put_pages(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002029 obj->pages = NULL;
Chris Wilson6c085a72012-08-20 11:40:46 +02002030
Chris Wilson55372522014-03-25 13:23:06 +00002031 i915_gem_object_invalidate(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02002032
2033 return 0;
2034}
2035
Chris Wilson21ab4e72014-09-09 11:16:08 +01002036unsigned long
2037i915_gem_shrink(struct drm_i915_private *dev_priv,
2038 long target, unsigned flags)
Chris Wilson6c085a72012-08-20 11:40:46 +02002039{
Chris Wilson60a53722014-10-03 10:29:51 +01002040 const struct {
2041 struct list_head *list;
2042 unsigned int bit;
2043 } phases[] = {
2044 { &dev_priv->mm.unbound_list, I915_SHRINK_UNBOUND },
2045 { &dev_priv->mm.bound_list, I915_SHRINK_BOUND },
2046 { NULL, 0 },
2047 }, *phase;
Chris Wilsond9973b42013-10-04 10:33:00 +01002048 unsigned long count = 0;
Chris Wilson6c085a72012-08-20 11:40:46 +02002049
Chris Wilson57094f82013-09-04 10:45:50 +01002050 /*
Chris Wilsonc8725f32014-03-17 12:21:55 +00002051 * As we may completely rewrite the (un)bound list whilst unbinding
Chris Wilson57094f82013-09-04 10:45:50 +01002052 * (due to retiring requests) we have to strictly process only
2053 * one element of the list at the time, and recheck the list
2054 * on every iteration.
Chris Wilsonc8725f32014-03-17 12:21:55 +00002055 *
2056 * In particular, we must hold a reference whilst removing the
2057 * object as we may end up waiting for and/or retiring the objects.
2058 * This might release the final reference (held by the active list)
2059 * and result in the object being freed from under us. This is
2060 * similar to the precautions the eviction code must take whilst
2061 * removing objects.
2062 *
2063 * Also note that although these lists do not hold a reference to
2064 * the object we can safely grab one here: The final object
2065 * unreferencing and the bound_list are both protected by the
2066 * dev->struct_mutex and so we won't ever be able to observe an
2067 * object on the bound_list with a reference count equals 0.
Chris Wilson57094f82013-09-04 10:45:50 +01002068 */
Chris Wilson60a53722014-10-03 10:29:51 +01002069 for (phase = phases; phase->list; phase++) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002070 struct list_head still_in_list;
Chris Wilsonc8725f32014-03-17 12:21:55 +00002071
Chris Wilson60a53722014-10-03 10:29:51 +01002072 if ((flags & phase->bit) == 0)
2073 continue;
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07002074
Chris Wilson21ab4e72014-09-09 11:16:08 +01002075 INIT_LIST_HEAD(&still_in_list);
Chris Wilson60a53722014-10-03 10:29:51 +01002076 while (count < target && !list_empty(phase->list)) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002077 struct drm_i915_gem_object *obj;
2078 struct i915_vma *vma, *v;
Chris Wilson57094f82013-09-04 10:45:50 +01002079
Chris Wilson60a53722014-10-03 10:29:51 +01002080 obj = list_first_entry(phase->list,
Chris Wilson21ab4e72014-09-09 11:16:08 +01002081 typeof(*obj), global_list);
2082 list_move_tail(&obj->global_list, &still_in_list);
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07002083
Chris Wilson60a53722014-10-03 10:29:51 +01002084 if (flags & I915_SHRINK_PURGEABLE &&
2085 !i915_gem_object_is_purgeable(obj))
Chris Wilson21ab4e72014-09-09 11:16:08 +01002086 continue;
Chris Wilson57094f82013-09-04 10:45:50 +01002087
Chris Wilson21ab4e72014-09-09 11:16:08 +01002088 drm_gem_object_reference(&obj->base);
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07002089
Chris Wilson60a53722014-10-03 10:29:51 +01002090 /* For the unbound phase, this should be a no-op! */
2091 list_for_each_entry_safe(vma, v,
2092 &obj->vma_list, vma_link)
Chris Wilson21ab4e72014-09-09 11:16:08 +01002093 if (i915_vma_unbind(vma))
2094 break;
Chris Wilson57094f82013-09-04 10:45:50 +01002095
Chris Wilson21ab4e72014-09-09 11:16:08 +01002096 if (i915_gem_object_put_pages(obj) == 0)
2097 count += obj->base.size >> PAGE_SHIFT;
2098
2099 drm_gem_object_unreference(&obj->base);
2100 }
Chris Wilson60a53722014-10-03 10:29:51 +01002101 list_splice(&still_in_list, phase->list);
Chris Wilson6c085a72012-08-20 11:40:46 +02002102 }
2103
2104 return count;
2105}
2106
Chris Wilsond9973b42013-10-04 10:33:00 +01002107static unsigned long
Chris Wilson6c085a72012-08-20 11:40:46 +02002108i915_gem_shrink_all(struct drm_i915_private *dev_priv)
2109{
Chris Wilson6c085a72012-08-20 11:40:46 +02002110 i915_gem_evict_everything(dev_priv->dev);
Chris Wilson21ab4e72014-09-09 11:16:08 +01002111 return i915_gem_shrink(dev_priv, LONG_MAX,
2112 I915_SHRINK_BOUND | I915_SHRINK_UNBOUND);
Daniel Vetter225067e2012-08-20 10:23:20 +02002113}
2114
Chris Wilson37e680a2012-06-07 15:38:42 +01002115static int
Chris Wilson6c085a72012-08-20 11:40:46 +02002116i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002117{
Chris Wilson6c085a72012-08-20 11:40:46 +02002118 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002119 int page_count, i;
2120 struct address_space *mapping;
Chris Wilson9da3da62012-06-01 15:20:22 +01002121 struct sg_table *st;
2122 struct scatterlist *sg;
Imre Deak90797e62013-02-18 19:28:03 +02002123 struct sg_page_iter sg_iter;
Eric Anholt673a3942008-07-30 12:06:12 -07002124 struct page *page;
Imre Deak90797e62013-02-18 19:28:03 +02002125 unsigned long last_pfn = 0; /* suppress gcc warning */
Chris Wilson6c085a72012-08-20 11:40:46 +02002126 gfp_t gfp;
Eric Anholt673a3942008-07-30 12:06:12 -07002127
Chris Wilson6c085a72012-08-20 11:40:46 +02002128 /* Assert that the object is not currently in any GPU domain. As it
2129 * wasn't in the GTT, there shouldn't be any way it could have been in
2130 * a GPU cache
2131 */
2132 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
2133 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
2134
Chris Wilson9da3da62012-06-01 15:20:22 +01002135 st = kmalloc(sizeof(*st), GFP_KERNEL);
2136 if (st == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002137 return -ENOMEM;
2138
Chris Wilson9da3da62012-06-01 15:20:22 +01002139 page_count = obj->base.size / PAGE_SIZE;
2140 if (sg_alloc_table(st, page_count, GFP_KERNEL)) {
Chris Wilson9da3da62012-06-01 15:20:22 +01002141 kfree(st);
2142 return -ENOMEM;
2143 }
2144
2145 /* Get the list of pages out of our struct file. They'll be pinned
2146 * at this point until we release them.
2147 *
2148 * Fail silently without starting the shrinker
2149 */
Al Viro496ad9a2013-01-23 17:07:38 -05002150 mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilson6c085a72012-08-20 11:40:46 +02002151 gfp = mapping_gfp_mask(mapping);
Linus Torvaldscaf49192012-12-10 10:51:16 -08002152 gfp |= __GFP_NORETRY | __GFP_NOWARN | __GFP_NO_KSWAPD;
Chris Wilson6c085a72012-08-20 11:40:46 +02002153 gfp &= ~(__GFP_IO | __GFP_WAIT);
Imre Deak90797e62013-02-18 19:28:03 +02002154 sg = st->sgl;
2155 st->nents = 0;
2156 for (i = 0; i < page_count; i++) {
Chris Wilson6c085a72012-08-20 11:40:46 +02002157 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
2158 if (IS_ERR(page)) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002159 i915_gem_shrink(dev_priv,
2160 page_count,
2161 I915_SHRINK_BOUND |
2162 I915_SHRINK_UNBOUND |
2163 I915_SHRINK_PURGEABLE);
Chris Wilson6c085a72012-08-20 11:40:46 +02002164 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
2165 }
2166 if (IS_ERR(page)) {
2167 /* We've tried hard to allocate the memory by reaping
2168 * our own buffer, now let the real VM do its job and
2169 * go down in flames if truly OOM.
2170 */
Chris Wilson6c085a72012-08-20 11:40:46 +02002171 i915_gem_shrink_all(dev_priv);
David Herrmannf461d1b2014-05-25 14:34:10 +02002172 page = shmem_read_mapping_page(mapping, i);
Chris Wilson6c085a72012-08-20 11:40:46 +02002173 if (IS_ERR(page))
2174 goto err_pages;
Chris Wilson6c085a72012-08-20 11:40:46 +02002175 }
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04002176#ifdef CONFIG_SWIOTLB
2177 if (swiotlb_nr_tbl()) {
2178 st->nents++;
2179 sg_set_page(sg, page, PAGE_SIZE, 0);
2180 sg = sg_next(sg);
2181 continue;
2182 }
2183#endif
Imre Deak90797e62013-02-18 19:28:03 +02002184 if (!i || page_to_pfn(page) != last_pfn + 1) {
2185 if (i)
2186 sg = sg_next(sg);
2187 st->nents++;
2188 sg_set_page(sg, page, PAGE_SIZE, 0);
2189 } else {
2190 sg->length += PAGE_SIZE;
2191 }
2192 last_pfn = page_to_pfn(page);
Daniel Vetter3bbbe702013-10-07 17:15:45 -03002193
2194 /* Check that the i965g/gm workaround works. */
2195 WARN_ON((gfp & __GFP_DMA32) && (last_pfn >= 0x00100000UL));
Eric Anholt673a3942008-07-30 12:06:12 -07002196 }
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04002197#ifdef CONFIG_SWIOTLB
2198 if (!swiotlb_nr_tbl())
2199#endif
2200 sg_mark_end(sg);
Chris Wilson74ce6b62012-10-19 15:51:06 +01002201 obj->pages = st;
2202
Eric Anholt673a3942008-07-30 12:06:12 -07002203 if (i915_gem_object_needs_bit17_swizzle(obj))
2204 i915_gem_object_do_bit_17_swizzle(obj);
2205
2206 return 0;
2207
2208err_pages:
Imre Deak90797e62013-02-18 19:28:03 +02002209 sg_mark_end(sg);
2210 for_each_sg_page(st->sgl, &sg_iter, st->nents, 0)
Imre Deak2db76d72013-03-26 15:14:18 +02002211 page_cache_release(sg_page_iter_page(&sg_iter));
Chris Wilson9da3da62012-06-01 15:20:22 +01002212 sg_free_table(st);
2213 kfree(st);
Chris Wilson0820baf2014-03-25 13:23:03 +00002214
2215 /* shmemfs first checks if there is enough memory to allocate the page
2216 * and reports ENOSPC should there be insufficient, along with the usual
2217 * ENOMEM for a genuine allocation failure.
2218 *
2219 * We use ENOSPC in our driver to mean that we have run out of aperture
2220 * space and so want to translate the error from shmemfs back to our
2221 * usual understanding of ENOMEM.
2222 */
2223 if (PTR_ERR(page) == -ENOSPC)
2224 return -ENOMEM;
2225 else
2226 return PTR_ERR(page);
Eric Anholt673a3942008-07-30 12:06:12 -07002227}
2228
Chris Wilson37e680a2012-06-07 15:38:42 +01002229/* Ensure that the associated pages are gathered from the backing storage
2230 * and pinned into our object. i915_gem_object_get_pages() may be called
2231 * multiple times before they are released by a single call to
2232 * i915_gem_object_put_pages() - once the pages are no longer referenced
2233 * either as a result of memory pressure (reaping pages under the shrinker)
2234 * or as the object is itself released.
2235 */
2236int
2237i915_gem_object_get_pages(struct drm_i915_gem_object *obj)
2238{
2239 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2240 const struct drm_i915_gem_object_ops *ops = obj->ops;
2241 int ret;
2242
Chris Wilson2f745ad2012-09-04 21:02:58 +01002243 if (obj->pages)
Chris Wilson37e680a2012-06-07 15:38:42 +01002244 return 0;
2245
Chris Wilson43e28f02013-01-08 10:53:09 +00002246 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00002247 DRM_DEBUG("Attempting to obtain a purgeable object\n");
Chris Wilson8c99e572014-01-31 11:34:58 +00002248 return -EFAULT;
Chris Wilson43e28f02013-01-08 10:53:09 +00002249 }
2250
Chris Wilsona5570172012-09-04 21:02:54 +01002251 BUG_ON(obj->pages_pin_count);
2252
Chris Wilson37e680a2012-06-07 15:38:42 +01002253 ret = ops->get_pages(obj);
2254 if (ret)
2255 return ret;
2256
Ben Widawsky35c20a62013-05-31 11:28:48 -07002257 list_add_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Chris Wilson37e680a2012-06-07 15:38:42 +01002258 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002259}
2260
Ben Widawskye2d05a82013-09-24 09:57:58 -07002261static void
Chris Wilson05394f32010-11-08 19:18:58 +00002262i915_gem_object_move_to_active(struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002263 struct intel_engine_cs *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07002264{
Chris Wilson9d7730912012-11-27 16:22:52 +00002265 u32 seqno = intel_ring_get_seqno(ring);
Daniel Vetter617dbe22010-02-11 22:16:02 +01002266
Zou Nan hai852835f2010-05-21 09:08:56 +08002267 BUG_ON(ring == NULL);
Chris Wilson02978ff2013-07-09 09:22:39 +01002268 if (obj->ring != ring && obj->last_write_seqno) {
2269 /* Keep the seqno relative to the current ring */
2270 obj->last_write_seqno = seqno;
2271 }
Chris Wilson05394f32010-11-08 19:18:58 +00002272 obj->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07002273
2274 /* Add a reference if we're newly entering the active list. */
Chris Wilson05394f32010-11-08 19:18:58 +00002275 if (!obj->active) {
2276 drm_gem_object_reference(&obj->base);
2277 obj->active = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07002278 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01002279
Chris Wilson05394f32010-11-08 19:18:58 +00002280 list_move_tail(&obj->ring_list, &ring->active_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002281
Chris Wilson0201f1e2012-07-20 12:41:01 +01002282 obj->last_read_seqno = seqno;
Chris Wilsoncaea7472010-11-12 13:53:37 +00002283}
2284
Ben Widawskye2d05a82013-09-24 09:57:58 -07002285void i915_vma_move_to_active(struct i915_vma *vma,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002286 struct intel_engine_cs *ring)
Ben Widawskye2d05a82013-09-24 09:57:58 -07002287{
2288 list_move_tail(&vma->mm_list, &vma->vm->active_list);
2289 return i915_gem_object_move_to_active(vma->obj, ring);
2290}
2291
Chris Wilsoncaea7472010-11-12 13:53:37 +00002292static void
Chris Wilsoncaea7472010-11-12 13:53:37 +00002293i915_gem_object_move_to_inactive(struct drm_i915_gem_object *obj)
2294{
Ben Widawskyca191b12013-07-31 17:00:14 -07002295 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Ben Widawskyfeb822c2013-12-06 14:10:51 -08002296 struct i915_address_space *vm;
2297 struct i915_vma *vma;
Chris Wilsoncaea7472010-11-12 13:53:37 +00002298
Chris Wilson65ce3022012-07-20 12:41:02 +01002299 BUG_ON(obj->base.write_domain & ~I915_GEM_GPU_DOMAINS);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002300 BUG_ON(!obj->active);
Chris Wilson65ce3022012-07-20 12:41:02 +01002301
Ben Widawskyfeb822c2013-12-06 14:10:51 -08002302 list_for_each_entry(vm, &dev_priv->vm_list, global_link) {
2303 vma = i915_gem_obj_to_vma(obj, vm);
2304 if (vma && !list_empty(&vma->mm_list))
2305 list_move_tail(&vma->mm_list, &vm->inactive_list);
2306 }
Chris Wilsoncaea7472010-11-12 13:53:37 +00002307
Daniel Vetterf99d7062014-06-19 16:01:59 +02002308 intel_fb_obj_flush(obj, true);
2309
Chris Wilson65ce3022012-07-20 12:41:02 +01002310 list_del_init(&obj->ring_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002311 obj->ring = NULL;
2312
Chris Wilson65ce3022012-07-20 12:41:02 +01002313 obj->last_read_seqno = 0;
2314 obj->last_write_seqno = 0;
2315 obj->base.write_domain = 0;
2316
2317 obj->last_fenced_seqno = 0;
Chris Wilsoncaea7472010-11-12 13:53:37 +00002318
2319 obj->active = 0;
2320 drm_gem_object_unreference(&obj->base);
2321
2322 WARN_ON(i915_verify_lists(dev));
Eric Anholtce44b0e2008-11-06 16:00:31 -08002323}
Eric Anholt673a3942008-07-30 12:06:12 -07002324
Chris Wilsonc8725f32014-03-17 12:21:55 +00002325static void
2326i915_gem_object_retire(struct drm_i915_gem_object *obj)
2327{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002328 struct intel_engine_cs *ring = obj->ring;
Chris Wilsonc8725f32014-03-17 12:21:55 +00002329
2330 if (ring == NULL)
2331 return;
2332
2333 if (i915_seqno_passed(ring->get_seqno(ring, true),
2334 obj->last_read_seqno))
2335 i915_gem_object_move_to_inactive(obj);
2336}
2337
Chris Wilson9d7730912012-11-27 16:22:52 +00002338static int
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002339i915_gem_init_seqno(struct drm_device *dev, u32 seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01002340{
Chris Wilson9d7730912012-11-27 16:22:52 +00002341 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002342 struct intel_engine_cs *ring;
Chris Wilson9d7730912012-11-27 16:22:52 +00002343 int ret, i, j;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002344
Chris Wilson107f27a52012-12-10 13:56:17 +02002345 /* Carefully retire all requests without writing to the rings */
Chris Wilson9d7730912012-11-27 16:22:52 +00002346 for_each_ring(ring, dev_priv, i) {
Chris Wilson107f27a52012-12-10 13:56:17 +02002347 ret = intel_ring_idle(ring);
2348 if (ret)
2349 return ret;
Chris Wilson9d7730912012-11-27 16:22:52 +00002350 }
Chris Wilson9d7730912012-11-27 16:22:52 +00002351 i915_gem_retire_requests(dev);
Chris Wilson107f27a52012-12-10 13:56:17 +02002352
2353 /* Finally reset hw state */
Chris Wilson9d7730912012-11-27 16:22:52 +00002354 for_each_ring(ring, dev_priv, i) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002355 intel_ring_init_seqno(ring, seqno);
Mika Kuoppala498d2ac2012-12-04 15:12:04 +02002356
Ben Widawskyebc348b2014-04-29 14:52:28 -07002357 for (j = 0; j < ARRAY_SIZE(ring->semaphore.sync_seqno); j++)
2358 ring->semaphore.sync_seqno[j] = 0;
Chris Wilson9d7730912012-11-27 16:22:52 +00002359 }
2360
2361 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002362}
2363
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002364int i915_gem_set_seqno(struct drm_device *dev, u32 seqno)
2365{
2366 struct drm_i915_private *dev_priv = dev->dev_private;
2367 int ret;
2368
2369 if (seqno == 0)
2370 return -EINVAL;
2371
2372 /* HWS page needs to be set less than what we
2373 * will inject to ring
2374 */
2375 ret = i915_gem_init_seqno(dev, seqno - 1);
2376 if (ret)
2377 return ret;
2378
2379 /* Carefully set the last_seqno value so that wrap
2380 * detection still works
2381 */
2382 dev_priv->next_seqno = seqno;
2383 dev_priv->last_seqno = seqno - 1;
2384 if (dev_priv->last_seqno == 0)
2385 dev_priv->last_seqno--;
2386
2387 return 0;
2388}
2389
Chris Wilson9d7730912012-11-27 16:22:52 +00002390int
2391i915_gem_get_seqno(struct drm_device *dev, u32 *seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01002392{
Chris Wilson9d7730912012-11-27 16:22:52 +00002393 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002394
Chris Wilson9d7730912012-11-27 16:22:52 +00002395 /* reserve 0 for non-seqno */
2396 if (dev_priv->next_seqno == 0) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002397 int ret = i915_gem_init_seqno(dev, 0);
Chris Wilson9d7730912012-11-27 16:22:52 +00002398 if (ret)
2399 return ret;
2400
2401 dev_priv->next_seqno = 1;
2402 }
2403
Mika Kuoppalaf72b3432012-12-10 15:41:48 +02002404 *seqno = dev_priv->last_seqno = dev_priv->next_seqno++;
Chris Wilson9d7730912012-11-27 16:22:52 +00002405 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002406}
2407
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002408int __i915_add_request(struct intel_engine_cs *ring,
Mika Kuoppala0025c072013-06-12 12:35:30 +03002409 struct drm_file *file,
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002410 struct drm_i915_gem_object *obj,
Mika Kuoppala0025c072013-06-12 12:35:30 +03002411 u32 *out_seqno)
Eric Anholt673a3942008-07-30 12:06:12 -07002412{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03002413 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Chris Wilsonacb868d2012-09-26 13:47:30 +01002414 struct drm_i915_gem_request *request;
Oscar Mateo48e29f52014-07-24 17:04:29 +01002415 struct intel_ringbuffer *ringbuf;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002416 u32 request_ring_position, request_start;
Chris Wilson3cce4692010-10-27 16:11:02 +01002417 int ret;
2418
Oscar Mateo48e29f52014-07-24 17:04:29 +01002419 request = ring->preallocated_lazy_request;
2420 if (WARN_ON(request == NULL))
2421 return -ENOMEM;
2422
2423 if (i915.enable_execlists) {
2424 struct intel_context *ctx = request->ctx;
2425 ringbuf = ctx->engine[ring->id].ringbuf;
2426 } else
2427 ringbuf = ring->buffer;
2428
2429 request_start = intel_ring_get_tail(ringbuf);
Daniel Vettercc889e02012-06-13 20:45:19 +02002430 /*
2431 * Emit any outstanding flushes - execbuf can fail to emit the flush
2432 * after having emitted the batchbuffer command. Hence we need to fix
2433 * things up similar to emitting the lazy request. The difference here
2434 * is that the flush _must_ happen before the next request, no matter
2435 * what.
2436 */
Oscar Mateo48e29f52014-07-24 17:04:29 +01002437 if (i915.enable_execlists) {
2438 ret = logical_ring_flush_all_caches(ringbuf);
2439 if (ret)
2440 return ret;
2441 } else {
2442 ret = intel_ring_flush_all_caches(ring);
2443 if (ret)
2444 return ret;
2445 }
Daniel Vettercc889e02012-06-13 20:45:19 +02002446
Chris Wilsona71d8d92012-02-15 11:25:36 +00002447 /* Record the position of the start of the request so that
2448 * should we detect the updated seqno part-way through the
2449 * GPU processing the request, we never over-estimate the
2450 * position of the head.
2451 */
Oscar Mateo48e29f52014-07-24 17:04:29 +01002452 request_ring_position = intel_ring_get_tail(ringbuf);
Chris Wilsona71d8d92012-02-15 11:25:36 +00002453
Oscar Mateo48e29f52014-07-24 17:04:29 +01002454 if (i915.enable_execlists) {
2455 ret = ring->emit_request(ringbuf);
2456 if (ret)
2457 return ret;
2458 } else {
2459 ret = ring->add_request(ring);
2460 if (ret)
2461 return ret;
2462 }
Eric Anholt673a3942008-07-30 12:06:12 -07002463
Chris Wilson9d7730912012-11-27 16:22:52 +00002464 request->seqno = intel_ring_get_seqno(ring);
Zou Nan hai852835f2010-05-21 09:08:56 +08002465 request->ring = ring;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002466 request->head = request_start;
Chris Wilsona71d8d92012-02-15 11:25:36 +00002467 request->tail = request_ring_position;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002468
2469 /* Whilst this request exists, batch_obj will be on the
2470 * active_list, and so will hold the active reference. Only when this
2471 * request is retired will the the batch_obj be moved onto the
2472 * inactive_list and lose its active reference. Hence we do not need
2473 * to explicitly hold another reference here.
2474 */
Chris Wilson9a7e0c22013-08-26 19:50:54 -03002475 request->batch_obj = obj;
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002476
Oscar Mateo48e29f52014-07-24 17:04:29 +01002477 if (!i915.enable_execlists) {
2478 /* Hold a reference to the current context so that we can inspect
2479 * it later in case a hangcheck error event fires.
2480 */
2481 request->ctx = ring->last_context;
2482 if (request->ctx)
2483 i915_gem_context_reference(request->ctx);
2484 }
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002485
Eric Anholt673a3942008-07-30 12:06:12 -07002486 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08002487 list_add_tail(&request->list, &ring->request_list);
Chris Wilson3bb73ab2012-07-20 12:40:59 +01002488 request->file_priv = NULL;
Zou Nan hai852835f2010-05-21 09:08:56 +08002489
Chris Wilsondb53a302011-02-03 11:57:46 +00002490 if (file) {
2491 struct drm_i915_file_private *file_priv = file->driver_priv;
2492
Chris Wilson1c255952010-09-26 11:03:27 +01002493 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002494 request->file_priv = file_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00002495 list_add_tail(&request->client_list,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002496 &file_priv->mm.request_list);
Chris Wilson1c255952010-09-26 11:03:27 +01002497 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00002498 }
Eric Anholt673a3942008-07-30 12:06:12 -07002499
Chris Wilson9d7730912012-11-27 16:22:52 +00002500 trace_i915_gem_request_add(ring, request->seqno);
Chris Wilson18235212013-09-04 10:45:51 +01002501 ring->outstanding_lazy_seqno = 0;
Chris Wilson3c0e2342013-09-04 10:45:52 +01002502 ring->preallocated_lazy_request = NULL;
Chris Wilsondb53a302011-02-03 11:57:46 +00002503
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02002504 if (!dev_priv->ums.mm_suspended) {
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03002505 i915_queue_hangcheck(ring->dev);
2506
Chris Wilsonf62a0072014-02-21 17:55:39 +00002507 cancel_delayed_work_sync(&dev_priv->mm.idle_work);
2508 queue_delayed_work(dev_priv->wq,
2509 &dev_priv->mm.retire_work,
2510 round_jiffies_up_relative(HZ));
2511 intel_mark_busy(dev_priv->dev);
Ben Gamarif65d9422009-09-14 17:48:44 -04002512 }
Daniel Vettercc889e02012-06-13 20:45:19 +02002513
Chris Wilsonacb868d2012-09-26 13:47:30 +01002514 if (out_seqno)
Chris Wilson9d7730912012-11-27 16:22:52 +00002515 *out_seqno = request->seqno;
Chris Wilson3cce4692010-10-27 16:11:02 +01002516 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002517}
2518
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002519static inline void
2520i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07002521{
Chris Wilson1c255952010-09-26 11:03:27 +01002522 struct drm_i915_file_private *file_priv = request->file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07002523
Chris Wilson1c255952010-09-26 11:03:27 +01002524 if (!file_priv)
2525 return;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002526
Chris Wilson1c255952010-09-26 11:03:27 +01002527 spin_lock(&file_priv->mm.lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002528 list_del(&request->client_list);
2529 request->file_priv = NULL;
Chris Wilson1c255952010-09-26 11:03:27 +01002530 spin_unlock(&file_priv->mm.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07002531}
2532
Mika Kuoppala939fd762014-01-30 19:04:44 +02002533static bool i915_context_is_banned(struct drm_i915_private *dev_priv,
Oscar Mateo273497e2014-05-22 14:13:37 +01002534 const struct intel_context *ctx)
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002535{
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002536 unsigned long elapsed;
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002537
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002538 elapsed = get_seconds() - ctx->hang_stats.guilty_ts;
2539
2540 if (ctx->hang_stats.banned)
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002541 return true;
2542
2543 if (elapsed <= DRM_I915_CTX_BAN_PERIOD) {
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002544 if (!i915_gem_context_is_default(ctx)) {
Mika Kuoppala3fac8972014-01-30 16:05:48 +02002545 DRM_DEBUG("context hanging too fast, banning!\n");
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002546 return true;
Mika Kuoppala88b4aa82014-03-28 18:18:18 +02002547 } else if (i915_stop_ring_allow_ban(dev_priv)) {
2548 if (i915_stop_ring_allow_warn(dev_priv))
2549 DRM_ERROR("gpu hanging too fast, banning!\n");
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002550 return true;
Mika Kuoppala3fac8972014-01-30 16:05:48 +02002551 }
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002552 }
2553
2554 return false;
2555}
2556
Mika Kuoppala939fd762014-01-30 19:04:44 +02002557static void i915_set_reset_status(struct drm_i915_private *dev_priv,
Oscar Mateo273497e2014-05-22 14:13:37 +01002558 struct intel_context *ctx,
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002559 const bool guilty)
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002560{
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002561 struct i915_ctx_hang_stats *hs;
2562
2563 if (WARN_ON(!ctx))
2564 return;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002565
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002566 hs = &ctx->hang_stats;
2567
2568 if (guilty) {
Mika Kuoppala939fd762014-01-30 19:04:44 +02002569 hs->banned = i915_context_is_banned(dev_priv, ctx);
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002570 hs->batch_active++;
2571 hs->guilty_ts = get_seconds();
2572 } else {
2573 hs->batch_pending++;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002574 }
2575}
2576
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002577static void i915_gem_free_request(struct drm_i915_gem_request *request)
2578{
Oscar Mateodcb4c122014-11-13 10:28:10 +00002579 struct intel_context *ctx = request->ctx;
2580
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002581 list_del(&request->list);
2582 i915_gem_request_remove_from_client(request);
2583
Oscar Mateodcb4c122014-11-13 10:28:10 +00002584 if (i915.enable_execlists && ctx) {
2585 struct intel_engine_cs *ring = request->ring;
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002586
Oscar Mateodcb4c122014-11-13 10:28:10 +00002587 if (ctx != ring->default_context)
2588 intel_lr_context_unpin(ring, ctx);
2589 i915_gem_context_unreference(ctx);
2590 }
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002591 kfree(request);
2592}
2593
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002594struct drm_i915_gem_request *
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002595i915_gem_find_active_request(struct intel_engine_cs *ring)
Chris Wilson9375e442010-09-19 12:21:28 +01002596{
Chris Wilson4db080f2013-12-04 11:37:09 +00002597 struct drm_i915_gem_request *request;
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002598 u32 completed_seqno;
2599
2600 completed_seqno = ring->get_seqno(ring, false);
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002601
Chris Wilson4db080f2013-12-04 11:37:09 +00002602 list_for_each_entry(request, &ring->request_list, list) {
2603 if (i915_seqno_passed(completed_seqno, request->seqno))
2604 continue;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002605
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002606 return request;
Chris Wilson4db080f2013-12-04 11:37:09 +00002607 }
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002608
2609 return NULL;
2610}
2611
2612static void i915_gem_reset_ring_status(struct drm_i915_private *dev_priv,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002613 struct intel_engine_cs *ring)
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002614{
2615 struct drm_i915_gem_request *request;
2616 bool ring_hung;
2617
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002618 request = i915_gem_find_active_request(ring);
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002619
2620 if (request == NULL)
2621 return;
2622
2623 ring_hung = ring->hangcheck.score >= HANGCHECK_SCORE_RING_HUNG;
2624
Mika Kuoppala939fd762014-01-30 19:04:44 +02002625 i915_set_reset_status(dev_priv, request->ctx, ring_hung);
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002626
2627 list_for_each_entry_continue(request, &ring->request_list, list)
Mika Kuoppala939fd762014-01-30 19:04:44 +02002628 i915_set_reset_status(dev_priv, request->ctx, false);
Chris Wilson4db080f2013-12-04 11:37:09 +00002629}
2630
2631static void i915_gem_reset_ring_cleanup(struct drm_i915_private *dev_priv,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002632 struct intel_engine_cs *ring)
Chris Wilson4db080f2013-12-04 11:37:09 +00002633{
Chris Wilsondfaae392010-09-22 10:31:52 +01002634 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00002635 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07002636
Chris Wilson05394f32010-11-08 19:18:58 +00002637 obj = list_first_entry(&ring->active_list,
2638 struct drm_i915_gem_object,
2639 ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07002640
Chris Wilson05394f32010-11-08 19:18:58 +00002641 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002642 }
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002643
2644 /*
Oscar Mateodcb4c122014-11-13 10:28:10 +00002645 * Clear the execlists queue up before freeing the requests, as those
2646 * are the ones that keep the context and ringbuffer backing objects
2647 * pinned in place.
2648 */
2649 while (!list_empty(&ring->execlist_queue)) {
2650 struct intel_ctx_submit_request *submit_req;
2651
2652 submit_req = list_first_entry(&ring->execlist_queue,
2653 struct intel_ctx_submit_request,
2654 execlist_link);
2655 list_del(&submit_req->execlist_link);
2656 intel_runtime_pm_put(dev_priv);
2657 i915_gem_context_unreference(submit_req->ctx);
2658 kfree(submit_req);
2659 }
2660
2661 /*
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002662 * We must free the requests after all the corresponding objects have
2663 * been moved off active lists. Which is the same order as the normal
2664 * retire_requests function does. This is important if object hold
2665 * implicit references on things like e.g. ppgtt address spaces through
2666 * the request.
2667 */
2668 while (!list_empty(&ring->request_list)) {
2669 struct drm_i915_gem_request *request;
2670
2671 request = list_first_entry(&ring->request_list,
2672 struct drm_i915_gem_request,
2673 list);
2674
2675 i915_gem_free_request(request);
2676 }
Chris Wilsone3efda42014-04-09 09:19:41 +01002677
2678 /* These may not have been flush before the reset, do so now */
2679 kfree(ring->preallocated_lazy_request);
2680 ring->preallocated_lazy_request = NULL;
2681 ring->outstanding_lazy_seqno = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002682}
2683
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002684void i915_gem_restore_fences(struct drm_device *dev)
Chris Wilson312817a2010-11-22 11:50:11 +00002685{
2686 struct drm_i915_private *dev_priv = dev->dev_private;
2687 int i;
2688
Daniel Vetter4b9de732011-10-09 21:52:02 +02002689 for (i = 0; i < dev_priv->num_fence_regs; i++) {
Chris Wilson312817a2010-11-22 11:50:11 +00002690 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
Chris Wilson7d2cb392010-11-27 17:38:29 +00002691
Daniel Vetter94a335d2013-07-17 14:51:28 +02002692 /*
2693 * Commit delayed tiling changes if we have an object still
2694 * attached to the fence, otherwise just clear the fence.
2695 */
2696 if (reg->obj) {
2697 i915_gem_object_update_fence(reg->obj, reg,
2698 reg->obj->tiling_mode);
2699 } else {
2700 i915_gem_write_fence(dev, i, NULL);
2701 }
Chris Wilson312817a2010-11-22 11:50:11 +00002702 }
2703}
2704
Chris Wilson069efc12010-09-30 16:53:18 +01002705void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07002706{
Chris Wilsondfaae392010-09-22 10:31:52 +01002707 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002708 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002709 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07002710
Chris Wilson4db080f2013-12-04 11:37:09 +00002711 /*
2712 * Before we free the objects from the requests, we need to inspect
2713 * them for finding the guilty party. As the requests only borrow
2714 * their reference to the objects, the inspection must be done first.
2715 */
Chris Wilsonb4519512012-05-11 14:29:30 +01002716 for_each_ring(ring, dev_priv, i)
Chris Wilson4db080f2013-12-04 11:37:09 +00002717 i915_gem_reset_ring_status(dev_priv, ring);
2718
2719 for_each_ring(ring, dev_priv, i)
2720 i915_gem_reset_ring_cleanup(dev_priv, ring);
Chris Wilsondfaae392010-09-22 10:31:52 +01002721
Ben Widawskyacce9ff2013-12-06 14:11:03 -08002722 i915_gem_context_reset(dev);
2723
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002724 i915_gem_restore_fences(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07002725}
2726
2727/**
2728 * This function clears the request list as sequence numbers are passed.
2729 */
Chris Wilson1cf0ba12014-05-05 09:07:33 +01002730void
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002731i915_gem_retire_requests_ring(struct intel_engine_cs *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07002732{
Eric Anholt673a3942008-07-30 12:06:12 -07002733 uint32_t seqno;
2734
Chris Wilsondb53a302011-02-03 11:57:46 +00002735 if (list_empty(&ring->request_list))
Karsten Wiese6c0594a2009-02-23 15:07:57 +01002736 return;
2737
Chris Wilsondb53a302011-02-03 11:57:46 +00002738 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002739
Chris Wilsonb2eadbc2012-08-09 10:58:30 +01002740 seqno = ring->get_seqno(ring, true);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002741
Chris Wilsone9103032014-01-07 11:45:14 +00002742 /* Move any buffers on the active list that are no longer referenced
2743 * by the ringbuffer to the flushing/inactive lists as appropriate,
2744 * before we free the context associated with the requests.
2745 */
2746 while (!list_empty(&ring->active_list)) {
2747 struct drm_i915_gem_object *obj;
2748
2749 obj = list_first_entry(&ring->active_list,
2750 struct drm_i915_gem_object,
2751 ring_list);
2752
2753 if (!i915_seqno_passed(seqno, obj->last_read_seqno))
2754 break;
2755
2756 i915_gem_object_move_to_inactive(obj);
2757 }
2758
2759
Zou Nan hai852835f2010-05-21 09:08:56 +08002760 while (!list_empty(&ring->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002761 struct drm_i915_gem_request *request;
Oscar Mateo48e29f52014-07-24 17:04:29 +01002762 struct intel_ringbuffer *ringbuf;
Eric Anholt673a3942008-07-30 12:06:12 -07002763
Zou Nan hai852835f2010-05-21 09:08:56 +08002764 request = list_first_entry(&ring->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07002765 struct drm_i915_gem_request,
2766 list);
Eric Anholt673a3942008-07-30 12:06:12 -07002767
Chris Wilsondfaae392010-09-22 10:31:52 +01002768 if (!i915_seqno_passed(seqno, request->seqno))
Eric Anholt673a3942008-07-30 12:06:12 -07002769 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002770
Chris Wilsondb53a302011-02-03 11:57:46 +00002771 trace_i915_gem_request_retire(ring, request->seqno);
Oscar Mateo48e29f52014-07-24 17:04:29 +01002772
2773 /* This is one of the few common intersection points
2774 * between legacy ringbuffer submission and execlists:
2775 * we need to tell them apart in order to find the correct
2776 * ringbuffer to which the request belongs to.
2777 */
2778 if (i915.enable_execlists) {
2779 struct intel_context *ctx = request->ctx;
2780 ringbuf = ctx->engine[ring->id].ringbuf;
2781 } else
2782 ringbuf = ring->buffer;
2783
Chris Wilsona71d8d92012-02-15 11:25:36 +00002784 /* We know the GPU must have read the request to have
2785 * sent us the seqno + interrupt, so use the position
2786 * of tail of the request to update the last known position
2787 * of the GPU head.
2788 */
Oscar Mateo48e29f52014-07-24 17:04:29 +01002789 ringbuf->last_retired_head = request->tail;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002790
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002791 i915_gem_free_request(request);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002792 }
2793
Chris Wilsondb53a302011-02-03 11:57:46 +00002794 if (unlikely(ring->trace_irq_seqno &&
2795 i915_seqno_passed(seqno, ring->trace_irq_seqno))) {
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002796 ring->irq_put(ring);
Chris Wilsondb53a302011-02-03 11:57:46 +00002797 ring->trace_irq_seqno = 0;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01002798 }
Chris Wilson23bc5982010-09-29 16:10:57 +01002799
Chris Wilsondb53a302011-02-03 11:57:46 +00002800 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002801}
2802
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002803bool
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002804i915_gem_retire_requests(struct drm_device *dev)
2805{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03002806 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002807 struct intel_engine_cs *ring;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002808 bool idle = true;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002809 int i;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002810
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002811 for_each_ring(ring, dev_priv, i) {
Chris Wilsonb4519512012-05-11 14:29:30 +01002812 i915_gem_retire_requests_ring(ring);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002813 idle &= list_empty(&ring->request_list);
Thomas Danielc86ee3a92014-11-13 10:27:05 +00002814 if (i915.enable_execlists) {
2815 unsigned long flags;
2816
2817 spin_lock_irqsave(&ring->execlist_lock, flags);
2818 idle &= list_empty(&ring->execlist_queue);
2819 spin_unlock_irqrestore(&ring->execlist_lock, flags);
2820
2821 intel_execlists_retire_requests(ring);
2822 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002823 }
2824
2825 if (idle)
2826 mod_delayed_work(dev_priv->wq,
2827 &dev_priv->mm.idle_work,
2828 msecs_to_jiffies(100));
2829
2830 return idle;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002831}
2832
Daniel Vetter75ef9da2010-08-21 00:25:16 +02002833static void
Eric Anholt673a3942008-07-30 12:06:12 -07002834i915_gem_retire_work_handler(struct work_struct *work)
2835{
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002836 struct drm_i915_private *dev_priv =
2837 container_of(work, typeof(*dev_priv), mm.retire_work.work);
2838 struct drm_device *dev = dev_priv->dev;
Chris Wilson0a587052011-01-09 21:05:44 +00002839 bool idle;
Eric Anholt673a3942008-07-30 12:06:12 -07002840
Chris Wilson891b48c2010-09-29 12:26:37 +01002841 /* Come back later if the device is busy... */
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002842 idle = false;
2843 if (mutex_trylock(&dev->struct_mutex)) {
2844 idle = i915_gem_retire_requests(dev);
2845 mutex_unlock(&dev->struct_mutex);
2846 }
2847 if (!idle)
Chris Wilsonbcb45082012-10-05 17:02:57 +01002848 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work,
2849 round_jiffies_up_relative(HZ));
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002850}
Chris Wilson891b48c2010-09-29 12:26:37 +01002851
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002852static void
2853i915_gem_idle_work_handler(struct work_struct *work)
2854{
2855 struct drm_i915_private *dev_priv =
2856 container_of(work, typeof(*dev_priv), mm.idle_work.work);
Zou Nan haid1b851f2010-05-21 09:08:57 +08002857
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002858 intel_mark_idle(dev_priv->dev);
Eric Anholt673a3942008-07-30 12:06:12 -07002859}
2860
Ben Widawsky5816d642012-04-11 11:18:19 -07002861/**
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002862 * Ensures that an object will eventually get non-busy by flushing any required
2863 * write domains, emitting any outstanding lazy request and retiring and
2864 * completed requests.
2865 */
2866static int
2867i915_gem_object_flush_active(struct drm_i915_gem_object *obj)
2868{
2869 int ret;
2870
2871 if (obj->active) {
Chris Wilson0201f1e2012-07-20 12:41:01 +01002872 ret = i915_gem_check_olr(obj->ring, obj->last_read_seqno);
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002873 if (ret)
2874 return ret;
2875
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002876 i915_gem_retire_requests_ring(obj->ring);
2877 }
2878
2879 return 0;
2880}
2881
2882/**
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002883 * i915_gem_wait_ioctl - implements DRM_IOCTL_I915_GEM_WAIT
2884 * @DRM_IOCTL_ARGS: standard ioctl arguments
2885 *
2886 * Returns 0 if successful, else an error is returned with the remaining time in
2887 * the timeout parameter.
2888 * -ETIME: object is still busy after timeout
2889 * -ERESTARTSYS: signal interrupted the wait
2890 * -ENONENT: object doesn't exist
2891 * Also possible, but rare:
2892 * -EAGAIN: GPU wedged
2893 * -ENOMEM: damn
2894 * -ENODEV: Internal IRQ fail
2895 * -E?: The add request failed
2896 *
2897 * The wait ioctl with a timeout of 0 reimplements the busy ioctl. With any
2898 * non-zero timeout parameter the wait ioctl will wait for the given number of
2899 * nanoseconds on an object becoming unbusy. Since the wait itself does so
2900 * without holding struct_mutex the object may become re-busied before this
2901 * function completes. A similar but shorter * race condition exists in the busy
2902 * ioctl
2903 */
2904int
2905i915_gem_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
2906{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03002907 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002908 struct drm_i915_gem_wait *args = data;
2909 struct drm_i915_gem_object *obj;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002910 struct intel_engine_cs *ring = NULL;
Daniel Vetterf69061b2012-12-06 09:01:42 +01002911 unsigned reset_counter;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002912 u32 seqno = 0;
2913 int ret = 0;
2914
Daniel Vetter11b5d512014-09-29 15:31:26 +02002915 if (args->flags != 0)
2916 return -EINVAL;
2917
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002918 ret = i915_mutex_lock_interruptible(dev);
2919 if (ret)
2920 return ret;
2921
2922 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->bo_handle));
2923 if (&obj->base == NULL) {
2924 mutex_unlock(&dev->struct_mutex);
2925 return -ENOENT;
2926 }
2927
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002928 /* Need to make sure the object gets inactive eventually. */
2929 ret = i915_gem_object_flush_active(obj);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002930 if (ret)
2931 goto out;
2932
2933 if (obj->active) {
Chris Wilson0201f1e2012-07-20 12:41:01 +01002934 seqno = obj->last_read_seqno;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002935 ring = obj->ring;
2936 }
2937
2938 if (seqno == 0)
2939 goto out;
2940
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002941 /* Do this after OLR check to make sure we make forward progress polling
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00002942 * on this IOCTL with a timeout <=0 (like busy ioctl)
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002943 */
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00002944 if (args->timeout_ns <= 0) {
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002945 ret = -ETIME;
2946 goto out;
2947 }
2948
2949 drm_gem_object_unreference(&obj->base);
Daniel Vetterf69061b2012-12-06 09:01:42 +01002950 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002951 mutex_unlock(&dev->struct_mutex);
2952
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02002953 return __i915_wait_seqno(ring, seqno, reset_counter, true,
2954 &args->timeout_ns, file->driver_priv);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002955
2956out:
2957 drm_gem_object_unreference(&obj->base);
2958 mutex_unlock(&dev->struct_mutex);
2959 return ret;
2960}
2961
2962/**
Ben Widawsky5816d642012-04-11 11:18:19 -07002963 * i915_gem_object_sync - sync an object to a ring.
2964 *
2965 * @obj: object which may be in use on another ring.
2966 * @to: ring we wish to use the object on. May be NULL.
2967 *
2968 * This code is meant to abstract object synchronization with the GPU.
2969 * Calling with NULL implies synchronizing the object with the CPU
2970 * rather than a particular GPU ring.
2971 *
2972 * Returns 0 if successful, else propagates up the lower layer error.
2973 */
Ben Widawsky2911a352012-04-05 14:47:36 -07002974int
2975i915_gem_object_sync(struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002976 struct intel_engine_cs *to)
Ben Widawsky2911a352012-04-05 14:47:36 -07002977{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002978 struct intel_engine_cs *from = obj->ring;
Ben Widawsky2911a352012-04-05 14:47:36 -07002979 u32 seqno;
2980 int ret, idx;
2981
2982 if (from == NULL || to == from)
2983 return 0;
2984
Ben Widawsky5816d642012-04-11 11:18:19 -07002985 if (to == NULL || !i915_semaphore_is_enabled(obj->base.dev))
Chris Wilson0201f1e2012-07-20 12:41:01 +01002986 return i915_gem_object_wait_rendering(obj, false);
Ben Widawsky2911a352012-04-05 14:47:36 -07002987
2988 idx = intel_ring_sync_index(from, to);
2989
Chris Wilson0201f1e2012-07-20 12:41:01 +01002990 seqno = obj->last_read_seqno;
Rodrigo Vividdd4dbc2014-06-30 09:51:11 -07002991 /* Optimization: Avoid semaphore sync when we are sure we already
2992 * waited for an object with higher seqno */
Ben Widawskyebc348b2014-04-29 14:52:28 -07002993 if (seqno <= from->semaphore.sync_seqno[idx])
Ben Widawsky2911a352012-04-05 14:47:36 -07002994 return 0;
2995
Ben Widawskyb4aca012012-04-25 20:50:12 -07002996 ret = i915_gem_check_olr(obj->ring, seqno);
2997 if (ret)
2998 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07002999
Chris Wilsonb52b89d2013-09-25 11:43:28 +01003000 trace_i915_gem_ring_sync_to(from, to, seqno);
Ben Widawskyebc348b2014-04-29 14:52:28 -07003001 ret = to->semaphore.sync_to(to, from, seqno);
Ben Widawskye3a5a222012-04-11 11:18:20 -07003002 if (!ret)
Mika Kuoppala7b01e262012-11-28 17:18:45 +02003003 /* We use last_read_seqno because sync_to()
3004 * might have just caused seqno wrap under
3005 * the radar.
3006 */
Ben Widawskyebc348b2014-04-29 14:52:28 -07003007 from->semaphore.sync_seqno[idx] = obj->last_read_seqno;
Ben Widawsky2911a352012-04-05 14:47:36 -07003008
Ben Widawskye3a5a222012-04-11 11:18:20 -07003009 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07003010}
3011
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01003012static void i915_gem_object_finish_gtt(struct drm_i915_gem_object *obj)
3013{
3014 u32 old_write_domain, old_read_domains;
3015
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01003016 /* Force a pagefault for domain tracking on next user access */
3017 i915_gem_release_mmap(obj);
3018
Keith Packardb97c3d92011-06-24 21:02:59 -07003019 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
3020 return;
3021
Chris Wilson97c809fd2012-10-09 19:24:38 +01003022 /* Wait for any direct GTT access to complete */
3023 mb();
3024
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01003025 old_read_domains = obj->base.read_domains;
3026 old_write_domain = obj->base.write_domain;
3027
3028 obj->base.read_domains &= ~I915_GEM_DOMAIN_GTT;
3029 obj->base.write_domain &= ~I915_GEM_DOMAIN_GTT;
3030
3031 trace_i915_gem_object_change_domain(obj,
3032 old_read_domains,
3033 old_write_domain);
3034}
3035
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003036int i915_vma_unbind(struct i915_vma *vma)
Eric Anholt673a3942008-07-30 12:06:12 -07003037{
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003038 struct drm_i915_gem_object *obj = vma->obj;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003039 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson43e28f02013-01-08 10:53:09 +00003040 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003041
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003042 if (list_empty(&vma->vma_link))
Eric Anholt673a3942008-07-30 12:06:12 -07003043 return 0;
3044
Daniel Vetter0ff501c2013-08-29 19:50:31 +02003045 if (!drm_mm_node_allocated(&vma->node)) {
3046 i915_gem_vma_destroy(vma);
Daniel Vetter0ff501c2013-08-29 19:50:31 +02003047 return 0;
3048 }
Ben Widawsky433544b2013-08-13 18:09:06 -07003049
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08003050 if (vma->pin_count)
Chris Wilson31d8d652012-05-24 19:11:20 +01003051 return -EBUSY;
Eric Anholt673a3942008-07-30 12:06:12 -07003052
Chris Wilsonc4670ad2012-08-20 10:23:27 +01003053 BUG_ON(obj->pages == NULL);
3054
Chris Wilsona8198ee2011-04-13 22:04:09 +01003055 ret = i915_gem_object_finish_gpu(obj);
Chris Wilson1488fc02012-04-24 15:47:31 +01003056 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07003057 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01003058 /* Continue on if we fail due to EIO, the GPU is hung so we
3059 * should be safe and we need to cleanup or else we might
3060 * cause memory corruption through use-after-free.
3061 */
Chris Wilsona8198ee2011-04-13 22:04:09 +01003062
Chris Wilson1d1ef21d2014-09-09 07:02:43 +01003063 /* Throw away the active reference before moving to the unbound list */
3064 i915_gem_object_retire(obj);
3065
Daniel Vetter8b1bc9b2014-02-14 14:06:07 +01003066 if (i915_is_ggtt(vma->vm)) {
3067 i915_gem_object_finish_gtt(obj);
Chris Wilsona8198ee2011-04-13 22:04:09 +01003068
Daniel Vetter8b1bc9b2014-02-14 14:06:07 +01003069 /* release the fence reg _after_ flushing */
3070 ret = i915_gem_object_put_fence(obj);
3071 if (ret)
3072 return ret;
3073 }
Daniel Vetter96b47b62009-12-15 17:50:00 +01003074
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003075 trace_i915_vma_unbind(vma);
Chris Wilsondb53a302011-02-03 11:57:46 +00003076
Ben Widawsky6f65e292013-12-06 14:10:56 -08003077 vma->unbind_vma(vma);
3078
Chris Wilson64bf9302014-02-25 14:23:28 +00003079 list_del_init(&vma->mm_list);
Ben Widawsky5cacaac2013-07-31 17:00:13 -07003080 if (i915_is_ggtt(vma->vm))
Chris Wilsone6a84462014-08-11 12:00:12 +02003081 obj->map_and_fenceable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07003082
Ben Widawsky2f633152013-07-17 12:19:03 -07003083 drm_mm_remove_node(&vma->node);
3084 i915_gem_vma_destroy(vma);
3085
3086 /* Since the unbound list is global, only move to that list if
Daniel Vetterb93dab62013-08-26 11:23:47 +02003087 * no more VMAs exist. */
Armin Reese9490edb2014-07-11 10:20:07 -07003088 if (list_empty(&obj->vma_list)) {
3089 i915_gem_gtt_finish_object(obj);
Ben Widawsky2f633152013-07-17 12:19:03 -07003090 list_move_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Armin Reese9490edb2014-07-11 10:20:07 -07003091 }
Eric Anholt673a3942008-07-30 12:06:12 -07003092
Chris Wilson70903c32013-12-04 09:59:09 +00003093 /* And finally now the object is completely decoupled from this vma,
3094 * we can drop its hold on the backing storage and allow it to be
3095 * reaped by the shrinker.
3096 */
3097 i915_gem_object_unpin_pages(obj);
3098
Chris Wilson88241782011-01-07 17:09:48 +00003099 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00003100}
3101
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07003102int i915_gpu_idle(struct drm_device *dev)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003103{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003104 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003105 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003106 int ret, i;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003107
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003108 /* Flush everything onto the inactive list. */
Chris Wilsonb4519512012-05-11 14:29:30 +01003109 for_each_ring(ring, dev_priv, i) {
Thomas Danielecdb5fd2014-08-20 16:29:24 +01003110 if (!i915.enable_execlists) {
3111 ret = i915_switch_context(ring, ring->default_context);
3112 if (ret)
3113 return ret;
3114 }
Ben Widawskyb6c74882012-08-14 14:35:14 -07003115
Chris Wilson3e960502012-11-27 16:22:54 +00003116 ret = intel_ring_idle(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003117 if (ret)
3118 return ret;
3119 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003120
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01003121 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003122}
3123
Chris Wilson9ce079e2012-04-17 15:31:30 +01003124static void i965_write_fence_reg(struct drm_device *dev, int reg,
3125 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003126{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003127 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak56c844e2013-01-07 21:47:34 +02003128 int fence_reg;
3129 int fence_pitch_shift;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003130
Imre Deak56c844e2013-01-07 21:47:34 +02003131 if (INTEL_INFO(dev)->gen >= 6) {
3132 fence_reg = FENCE_REG_SANDYBRIDGE_0;
3133 fence_pitch_shift = SANDYBRIDGE_FENCE_PITCH_SHIFT;
3134 } else {
3135 fence_reg = FENCE_REG_965_0;
3136 fence_pitch_shift = I965_FENCE_PITCH_SHIFT;
3137 }
3138
Chris Wilsond18b9612013-07-10 13:36:23 +01003139 fence_reg += reg * 8;
3140
3141 /* To w/a incoherency with non-atomic 64-bit register updates,
3142 * we split the 64-bit update into two 32-bit writes. In order
3143 * for a partial fence not to be evaluated between writes, we
3144 * precede the update with write to turn off the fence register,
3145 * and only enable the fence as the last step.
3146 *
3147 * For extra levels of paranoia, we make sure each step lands
3148 * before applying the next step.
3149 */
3150 I915_WRITE(fence_reg, 0);
3151 POSTING_READ(fence_reg);
3152
Chris Wilson9ce079e2012-04-17 15:31:30 +01003153 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003154 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilsond18b9612013-07-10 13:36:23 +01003155 uint64_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003156
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003157 val = (uint64_t)((i915_gem_obj_ggtt_offset(obj) + size - 4096) &
Chris Wilson9ce079e2012-04-17 15:31:30 +01003158 0xfffff000) << 32;
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003159 val |= i915_gem_obj_ggtt_offset(obj) & 0xfffff000;
Imre Deak56c844e2013-01-07 21:47:34 +02003160 val |= (uint64_t)((obj->stride / 128) - 1) << fence_pitch_shift;
Chris Wilson9ce079e2012-04-17 15:31:30 +01003161 if (obj->tiling_mode == I915_TILING_Y)
3162 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
3163 val |= I965_FENCE_REG_VALID;
Daniel Vetterc6642782010-11-12 13:46:18 +00003164
Chris Wilsond18b9612013-07-10 13:36:23 +01003165 I915_WRITE(fence_reg + 4, val >> 32);
3166 POSTING_READ(fence_reg + 4);
3167
3168 I915_WRITE(fence_reg + 0, val);
3169 POSTING_READ(fence_reg);
3170 } else {
3171 I915_WRITE(fence_reg + 4, 0);
3172 POSTING_READ(fence_reg + 4);
3173 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08003174}
3175
Chris Wilson9ce079e2012-04-17 15:31:30 +01003176static void i915_write_fence_reg(struct drm_device *dev, int reg,
3177 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003178{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003179 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9ce079e2012-04-17 15:31:30 +01003180 u32 val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003181
Chris Wilson9ce079e2012-04-17 15:31:30 +01003182 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003183 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003184 int pitch_val;
3185 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003186
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003187 WARN((i915_gem_obj_ggtt_offset(obj) & ~I915_FENCE_START_MASK) ||
Chris Wilson9ce079e2012-04-17 15:31:30 +01003188 (size & -size) != size ||
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003189 (i915_gem_obj_ggtt_offset(obj) & (size - 1)),
3190 "object 0x%08lx [fenceable? %d] not 1M or pot-size (0x%08x) aligned\n",
3191 i915_gem_obj_ggtt_offset(obj), obj->map_and_fenceable, size);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003192
3193 if (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev))
3194 tile_width = 128;
3195 else
3196 tile_width = 512;
3197
3198 /* Note: pitch better be a power of two tile widths */
3199 pitch_val = obj->stride / tile_width;
3200 pitch_val = ffs(pitch_val) - 1;
3201
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003202 val = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003203 if (obj->tiling_mode == I915_TILING_Y)
3204 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
3205 val |= I915_FENCE_SIZE_BITS(size);
3206 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
3207 val |= I830_FENCE_REG_VALID;
3208 } else
3209 val = 0;
3210
3211 if (reg < 8)
3212 reg = FENCE_REG_830_0 + reg * 4;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003213 else
Chris Wilson9ce079e2012-04-17 15:31:30 +01003214 reg = FENCE_REG_945_8 + (reg - 8) * 4;
Jesse Barnes0f973f22009-01-26 17:10:45 -08003215
Chris Wilson9ce079e2012-04-17 15:31:30 +01003216 I915_WRITE(reg, val);
3217 POSTING_READ(reg);
Jesse Barnesde151cf2008-11-12 10:03:55 -08003218}
3219
Chris Wilson9ce079e2012-04-17 15:31:30 +01003220static void i830_write_fence_reg(struct drm_device *dev, int reg,
3221 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003222{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003223 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003224 uint32_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003225
Chris Wilson9ce079e2012-04-17 15:31:30 +01003226 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003227 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003228 uint32_t pitch_val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003229
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003230 WARN((i915_gem_obj_ggtt_offset(obj) & ~I830_FENCE_START_MASK) ||
Chris Wilson9ce079e2012-04-17 15:31:30 +01003231 (size & -size) != size ||
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003232 (i915_gem_obj_ggtt_offset(obj) & (size - 1)),
3233 "object 0x%08lx not 512K or pot-size 0x%08x aligned\n",
3234 i915_gem_obj_ggtt_offset(obj), size);
Eric Anholte76a16d2009-05-26 17:44:56 -07003235
Chris Wilson9ce079e2012-04-17 15:31:30 +01003236 pitch_val = obj->stride / 128;
3237 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003238
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003239 val = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003240 if (obj->tiling_mode == I915_TILING_Y)
3241 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
3242 val |= I830_FENCE_SIZE_BITS(size);
3243 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
3244 val |= I830_FENCE_REG_VALID;
3245 } else
3246 val = 0;
Daniel Vetterc6642782010-11-12 13:46:18 +00003247
Chris Wilson9ce079e2012-04-17 15:31:30 +01003248 I915_WRITE(FENCE_REG_830_0 + reg * 4, val);
3249 POSTING_READ(FENCE_REG_830_0 + reg * 4);
3250}
3251
Chris Wilsond0a57782012-10-09 19:24:37 +01003252inline static bool i915_gem_object_needs_mb(struct drm_i915_gem_object *obj)
3253{
3254 return obj && obj->base.read_domains & I915_GEM_DOMAIN_GTT;
3255}
3256
Chris Wilson9ce079e2012-04-17 15:31:30 +01003257static void i915_gem_write_fence(struct drm_device *dev, int reg,
3258 struct drm_i915_gem_object *obj)
3259{
Chris Wilsond0a57782012-10-09 19:24:37 +01003260 struct drm_i915_private *dev_priv = dev->dev_private;
3261
3262 /* Ensure that all CPU reads are completed before installing a fence
3263 * and all writes before removing the fence.
3264 */
3265 if (i915_gem_object_needs_mb(dev_priv->fence_regs[reg].obj))
3266 mb();
3267
Daniel Vetter94a335d2013-07-17 14:51:28 +02003268 WARN(obj && (!obj->stride || !obj->tiling_mode),
3269 "bogus fence setup with stride: 0x%x, tiling mode: %i\n",
3270 obj->stride, obj->tiling_mode);
3271
Chris Wilson9ce079e2012-04-17 15:31:30 +01003272 switch (INTEL_INFO(dev)->gen) {
Damien Lespiau01209dd2013-02-13 15:27:25 +00003273 case 9:
Ben Widawsky5ab31332013-11-02 21:07:03 -07003274 case 8:
Chris Wilson9ce079e2012-04-17 15:31:30 +01003275 case 7:
Imre Deak56c844e2013-01-07 21:47:34 +02003276 case 6:
Chris Wilson9ce079e2012-04-17 15:31:30 +01003277 case 5:
3278 case 4: i965_write_fence_reg(dev, reg, obj); break;
3279 case 3: i915_write_fence_reg(dev, reg, obj); break;
3280 case 2: i830_write_fence_reg(dev, reg, obj); break;
Ben Widawsky7dbf9d62012-12-18 10:31:22 -08003281 default: BUG();
Chris Wilson9ce079e2012-04-17 15:31:30 +01003282 }
Chris Wilsond0a57782012-10-09 19:24:37 +01003283
3284 /* And similarly be paranoid that no direct access to this region
3285 * is reordered to before the fence is installed.
3286 */
3287 if (i915_gem_object_needs_mb(obj))
3288 mb();
Jesse Barnesde151cf2008-11-12 10:03:55 -08003289}
3290
Chris Wilson61050802012-04-17 15:31:31 +01003291static inline int fence_number(struct drm_i915_private *dev_priv,
3292 struct drm_i915_fence_reg *fence)
3293{
3294 return fence - dev_priv->fence_regs;
3295}
3296
3297static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
3298 struct drm_i915_fence_reg *fence,
3299 bool enable)
3300{
Chris Wilson2dc8aae2013-05-22 17:08:06 +01003301 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson46a0b632013-07-10 13:36:24 +01003302 int reg = fence_number(dev_priv, fence);
Chris Wilson61050802012-04-17 15:31:31 +01003303
Chris Wilson46a0b632013-07-10 13:36:24 +01003304 i915_gem_write_fence(obj->base.dev, reg, enable ? obj : NULL);
Chris Wilson61050802012-04-17 15:31:31 +01003305
3306 if (enable) {
Chris Wilson46a0b632013-07-10 13:36:24 +01003307 obj->fence_reg = reg;
Chris Wilson61050802012-04-17 15:31:31 +01003308 fence->obj = obj;
3309 list_move_tail(&fence->lru_list, &dev_priv->mm.fence_list);
3310 } else {
3311 obj->fence_reg = I915_FENCE_REG_NONE;
3312 fence->obj = NULL;
3313 list_del_init(&fence->lru_list);
3314 }
Daniel Vetter94a335d2013-07-17 14:51:28 +02003315 obj->fence_dirty = false;
Chris Wilson61050802012-04-17 15:31:31 +01003316}
3317
Chris Wilsond9e86c02010-11-10 16:40:20 +00003318static int
Chris Wilsond0a57782012-10-09 19:24:37 +01003319i915_gem_object_wait_fence(struct drm_i915_gem_object *obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003320{
Chris Wilson1c293ea2012-04-17 15:31:27 +01003321 if (obj->last_fenced_seqno) {
Chris Wilson86d5bc32012-07-20 12:41:04 +01003322 int ret = i915_wait_seqno(obj->ring, obj->last_fenced_seqno);
Chris Wilson18991842012-04-17 15:31:29 +01003323 if (ret)
3324 return ret;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003325
3326 obj->last_fenced_seqno = 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003327 }
3328
3329 return 0;
3330}
3331
3332int
3333i915_gem_object_put_fence(struct drm_i915_gem_object *obj)
3334{
Chris Wilson61050802012-04-17 15:31:31 +01003335 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003336 struct drm_i915_fence_reg *fence;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003337 int ret;
3338
Chris Wilsond0a57782012-10-09 19:24:37 +01003339 ret = i915_gem_object_wait_fence(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003340 if (ret)
3341 return ret;
3342
Chris Wilson61050802012-04-17 15:31:31 +01003343 if (obj->fence_reg == I915_FENCE_REG_NONE)
3344 return 0;
Chris Wilson1690e1e2011-12-14 13:57:08 +01003345
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003346 fence = &dev_priv->fence_regs[obj->fence_reg];
3347
Daniel Vetteraff10b302014-02-14 14:06:05 +01003348 if (WARN_ON(fence->pin_count))
3349 return -EBUSY;
3350
Chris Wilson61050802012-04-17 15:31:31 +01003351 i915_gem_object_fence_lost(obj);
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003352 i915_gem_object_update_fence(obj, fence, false);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003353
3354 return 0;
3355}
3356
3357static struct drm_i915_fence_reg *
Chris Wilsona360bb12012-04-17 15:31:25 +01003358i915_find_fence_reg(struct drm_device *dev)
Daniel Vetterae3db242010-02-19 11:51:58 +01003359{
Daniel Vetterae3db242010-02-19 11:51:58 +01003360 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson8fe301a2012-04-17 15:31:28 +01003361 struct drm_i915_fence_reg *reg, *avail;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003362 int i;
Daniel Vetterae3db242010-02-19 11:51:58 +01003363
3364 /* First try to find a free reg */
Chris Wilsond9e86c02010-11-10 16:40:20 +00003365 avail = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01003366 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
3367 reg = &dev_priv->fence_regs[i];
3368 if (!reg->obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003369 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003370
Chris Wilson1690e1e2011-12-14 13:57:08 +01003371 if (!reg->pin_count)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003372 avail = reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003373 }
3374
Chris Wilsond9e86c02010-11-10 16:40:20 +00003375 if (avail == NULL)
Chris Wilson5dce5b932014-01-20 10:17:36 +00003376 goto deadlock;
Daniel Vetterae3db242010-02-19 11:51:58 +01003377
3378 /* None available, try to steal one or wait for a user to finish */
Chris Wilsond9e86c02010-11-10 16:40:20 +00003379 list_for_each_entry(reg, &dev_priv->mm.fence_list, lru_list) {
Chris Wilson1690e1e2011-12-14 13:57:08 +01003380 if (reg->pin_count)
Daniel Vetterae3db242010-02-19 11:51:58 +01003381 continue;
3382
Chris Wilson8fe301a2012-04-17 15:31:28 +01003383 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003384 }
3385
Chris Wilson5dce5b932014-01-20 10:17:36 +00003386deadlock:
3387 /* Wait for completion of pending flips which consume fences */
3388 if (intel_has_pending_fb_unpin(dev))
3389 return ERR_PTR(-EAGAIN);
3390
3391 return ERR_PTR(-EDEADLK);
Daniel Vetterae3db242010-02-19 11:51:58 +01003392}
3393
Jesse Barnesde151cf2008-11-12 10:03:55 -08003394/**
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003395 * i915_gem_object_get_fence - set up fencing for an object
Jesse Barnesde151cf2008-11-12 10:03:55 -08003396 * @obj: object to map through a fence reg
3397 *
3398 * When mapping objects through the GTT, userspace wants to be able to write
3399 * to them without having to worry about swizzling if the object is tiled.
Jesse Barnesde151cf2008-11-12 10:03:55 -08003400 * This function walks the fence regs looking for a free one for @obj,
3401 * stealing one if it can't find any.
3402 *
3403 * It then sets up the reg based on the object's properties: address, pitch
3404 * and tiling format.
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003405 *
3406 * For an untiled surface, this removes any existing fence.
Jesse Barnesde151cf2008-11-12 10:03:55 -08003407 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01003408int
Chris Wilson06d98132012-04-17 15:31:24 +01003409i915_gem_object_get_fence(struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003410{
Chris Wilson05394f32010-11-08 19:18:58 +00003411 struct drm_device *dev = obj->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08003412 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson14415742012-04-17 15:31:33 +01003413 bool enable = obj->tiling_mode != I915_TILING_NONE;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003414 struct drm_i915_fence_reg *reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003415 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003416
Chris Wilson14415742012-04-17 15:31:33 +01003417 /* Have we updated the tiling parameters upon the object and so
3418 * will need to serialise the write to the associated fence register?
3419 */
Chris Wilson5d82e3e2012-04-21 16:23:23 +01003420 if (obj->fence_dirty) {
Chris Wilsond0a57782012-10-09 19:24:37 +01003421 ret = i915_gem_object_wait_fence(obj);
Chris Wilson14415742012-04-17 15:31:33 +01003422 if (ret)
3423 return ret;
3424 }
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003425
Chris Wilsond9e86c02010-11-10 16:40:20 +00003426 /* Just update our place in the LRU if our fence is getting reused. */
Chris Wilson05394f32010-11-08 19:18:58 +00003427 if (obj->fence_reg != I915_FENCE_REG_NONE) {
3428 reg = &dev_priv->fence_regs[obj->fence_reg];
Chris Wilson5d82e3e2012-04-21 16:23:23 +01003429 if (!obj->fence_dirty) {
Chris Wilson14415742012-04-17 15:31:33 +01003430 list_move_tail(&reg->lru_list,
3431 &dev_priv->mm.fence_list);
3432 return 0;
3433 }
3434 } else if (enable) {
Chris Wilsone6a84462014-08-11 12:00:12 +02003435 if (WARN_ON(!obj->map_and_fenceable))
3436 return -EINVAL;
3437
Chris Wilson14415742012-04-17 15:31:33 +01003438 reg = i915_find_fence_reg(dev);
Chris Wilson5dce5b932014-01-20 10:17:36 +00003439 if (IS_ERR(reg))
3440 return PTR_ERR(reg);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003441
Chris Wilson14415742012-04-17 15:31:33 +01003442 if (reg->obj) {
3443 struct drm_i915_gem_object *old = reg->obj;
3444
Chris Wilsond0a57782012-10-09 19:24:37 +01003445 ret = i915_gem_object_wait_fence(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00003446 if (ret)
3447 return ret;
3448
Chris Wilson14415742012-04-17 15:31:33 +01003449 i915_gem_object_fence_lost(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00003450 }
Chris Wilson14415742012-04-17 15:31:33 +01003451 } else
Eric Anholta09ba7f2009-08-29 12:49:51 -07003452 return 0;
Eric Anholta09ba7f2009-08-29 12:49:51 -07003453
Chris Wilson14415742012-04-17 15:31:33 +01003454 i915_gem_object_update_fence(obj, reg, enable);
Chris Wilson14415742012-04-17 15:31:33 +01003455
Chris Wilson9ce079e2012-04-17 15:31:30 +01003456 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003457}
3458
Chris Wilson4144f9b2014-09-11 08:43:48 +01003459static bool i915_gem_valid_gtt_space(struct i915_vma *vma,
Chris Wilson42d6ab42012-07-26 11:49:32 +01003460 unsigned long cache_level)
3461{
Chris Wilson4144f9b2014-09-11 08:43:48 +01003462 struct drm_mm_node *gtt_space = &vma->node;
Chris Wilson42d6ab42012-07-26 11:49:32 +01003463 struct drm_mm_node *other;
3464
Chris Wilson4144f9b2014-09-11 08:43:48 +01003465 /*
3466 * On some machines we have to be careful when putting differing types
3467 * of snoopable memory together to avoid the prefetcher crossing memory
3468 * domains and dying. During vm initialisation, we decide whether or not
3469 * these constraints apply and set the drm_mm.color_adjust
3470 * appropriately.
Chris Wilson42d6ab42012-07-26 11:49:32 +01003471 */
Chris Wilson4144f9b2014-09-11 08:43:48 +01003472 if (vma->vm->mm.color_adjust == NULL)
Chris Wilson42d6ab42012-07-26 11:49:32 +01003473 return true;
3474
Ben Widawskyc6cfb322013-07-05 14:41:06 -07003475 if (!drm_mm_node_allocated(gtt_space))
Chris Wilson42d6ab42012-07-26 11:49:32 +01003476 return true;
3477
3478 if (list_empty(&gtt_space->node_list))
3479 return true;
3480
3481 other = list_entry(gtt_space->node_list.prev, struct drm_mm_node, node_list);
3482 if (other->allocated && !other->hole_follows && other->color != cache_level)
3483 return false;
3484
3485 other = list_entry(gtt_space->node_list.next, struct drm_mm_node, node_list);
3486 if (other->allocated && !gtt_space->hole_follows && other->color != cache_level)
3487 return false;
3488
3489 return true;
3490}
3491
Jesse Barnesde151cf2008-11-12 10:03:55 -08003492/**
Eric Anholt673a3942008-07-30 12:06:12 -07003493 * Finds free space in the GTT aperture and binds the object there.
3494 */
Daniel Vetter262de142014-02-14 14:01:20 +01003495static struct i915_vma *
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003496i915_gem_object_bind_to_vm(struct drm_i915_gem_object *obj,
3497 struct i915_address_space *vm,
3498 unsigned alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02003499 uint64_t flags)
Eric Anholt673a3942008-07-30 12:06:12 -07003500{
Chris Wilson05394f32010-11-08 19:18:58 +00003501 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003502 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter5e783302010-11-14 22:32:36 +01003503 u32 size, fence_size, fence_alignment, unfenced_alignment;
Chris Wilsond23db882014-05-23 08:48:08 +02003504 unsigned long start =
3505 flags & PIN_OFFSET_BIAS ? flags & PIN_OFFSET_MASK : 0;
3506 unsigned long end =
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003507 flags & PIN_MAPPABLE ? dev_priv->gtt.mappable_end : vm->total;
Ben Widawsky2f633152013-07-17 12:19:03 -07003508 struct i915_vma *vma;
Chris Wilson07f73f62009-09-14 16:50:30 +01003509 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003510
Chris Wilsone28f8712011-07-18 13:11:49 -07003511 fence_size = i915_gem_get_gtt_size(dev,
3512 obj->base.size,
3513 obj->tiling_mode);
3514 fence_alignment = i915_gem_get_gtt_alignment(dev,
3515 obj->base.size,
Imre Deakd8651102013-01-07 21:47:33 +02003516 obj->tiling_mode, true);
Chris Wilsone28f8712011-07-18 13:11:49 -07003517 unfenced_alignment =
Imre Deakd8651102013-01-07 21:47:33 +02003518 i915_gem_get_gtt_alignment(dev,
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003519 obj->base.size,
3520 obj->tiling_mode, false);
Chris Wilsona00b10c2010-09-24 21:15:47 +01003521
Eric Anholt673a3942008-07-30 12:06:12 -07003522 if (alignment == 0)
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003523 alignment = flags & PIN_MAPPABLE ? fence_alignment :
Daniel Vetter5e783302010-11-14 22:32:36 +01003524 unfenced_alignment;
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003525 if (flags & PIN_MAPPABLE && alignment & (fence_alignment - 1)) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00003526 DRM_DEBUG("Invalid object alignment requested %u\n", alignment);
Daniel Vetter262de142014-02-14 14:01:20 +01003527 return ERR_PTR(-EINVAL);
Eric Anholt673a3942008-07-30 12:06:12 -07003528 }
3529
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003530 size = flags & PIN_MAPPABLE ? fence_size : obj->base.size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01003531
Chris Wilson654fc602010-05-27 13:18:21 +01003532 /* If the object is bigger than the entire aperture, reject it early
3533 * before evicting everything in a vain attempt to find space.
3534 */
Chris Wilsond23db882014-05-23 08:48:08 +02003535 if (obj->base.size > end) {
3536 DRM_DEBUG("Attempting to bind an object larger than the aperture: object=%zd > %s aperture=%lu\n",
Chris Wilsona36689c2013-05-21 16:58:49 +01003537 obj->base.size,
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003538 flags & PIN_MAPPABLE ? "mappable" : "total",
Chris Wilsond23db882014-05-23 08:48:08 +02003539 end);
Daniel Vetter262de142014-02-14 14:01:20 +01003540 return ERR_PTR(-E2BIG);
Chris Wilson654fc602010-05-27 13:18:21 +01003541 }
3542
Chris Wilson37e680a2012-06-07 15:38:42 +01003543 ret = i915_gem_object_get_pages(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02003544 if (ret)
Daniel Vetter262de142014-02-14 14:01:20 +01003545 return ERR_PTR(ret);
Chris Wilson6c085a72012-08-20 11:40:46 +02003546
Chris Wilsonfbdda6f2012-11-20 10:45:16 +00003547 i915_gem_object_pin_pages(obj);
3548
Ben Widawskyaccfef22013-08-14 11:38:35 +02003549 vma = i915_gem_obj_lookup_or_create_vma(obj, vm);
Daniel Vetter262de142014-02-14 14:01:20 +01003550 if (IS_ERR(vma))
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003551 goto err_unpin;
Ben Widawsky2f633152013-07-17 12:19:03 -07003552
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003553search_free:
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003554 ret = drm_mm_insert_node_in_range_generic(&vm->mm, &vma->node,
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003555 size, alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02003556 obj->cache_level,
3557 start, end,
Lauri Kasanen62347f92014-04-02 20:03:57 +03003558 DRM_MM_SEARCH_DEFAULT,
3559 DRM_MM_CREATE_DEFAULT);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003560 if (ret) {
Ben Widawskyf6cd1f12013-07-31 17:00:11 -07003561 ret = i915_gem_evict_something(dev, vm, size, alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02003562 obj->cache_level,
3563 start, end,
3564 flags);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003565 if (ret == 0)
3566 goto search_free;
Chris Wilson97311292009-09-21 00:22:34 +01003567
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003568 goto err_free_vma;
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003569 }
Chris Wilson4144f9b2014-09-11 08:43:48 +01003570 if (WARN_ON(!i915_gem_valid_gtt_space(vma, obj->cache_level))) {
Ben Widawsky2f633152013-07-17 12:19:03 -07003571 ret = -EINVAL;
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003572 goto err_remove_node;
Eric Anholt673a3942008-07-30 12:06:12 -07003573 }
3574
Daniel Vetter74163902012-02-15 23:50:21 +01003575 ret = i915_gem_gtt_prepare_object(obj);
Ben Widawsky2f633152013-07-17 12:19:03 -07003576 if (ret)
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003577 goto err_remove_node;
Eric Anholt673a3942008-07-30 12:06:12 -07003578
Ben Widawsky35c20a62013-05-31 11:28:48 -07003579 list_move_tail(&obj->global_list, &dev_priv->mm.bound_list);
Ben Widawskyca191b12013-07-31 17:00:14 -07003580 list_add_tail(&vma->mm_list, &vm->inactive_list);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01003581
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003582 trace_i915_vma_bind(vma, flags);
Daniel Vetter8ea99c92014-02-14 14:01:21 +01003583 vma->bind_vma(vma, obj->cache_level,
Chris Wilsonc826c442014-10-31 13:53:53 +00003584 flags & PIN_GLOBAL ? GLOBAL_BIND : 0);
Daniel Vetter8ea99c92014-02-14 14:01:21 +01003585
Daniel Vetter262de142014-02-14 14:01:20 +01003586 return vma;
Ben Widawsky2f633152013-07-17 12:19:03 -07003587
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003588err_remove_node:
Dan Carpenter6286ef92013-07-19 08:46:27 +03003589 drm_mm_remove_node(&vma->node);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003590err_free_vma:
Ben Widawsky2f633152013-07-17 12:19:03 -07003591 i915_gem_vma_destroy(vma);
Daniel Vetter262de142014-02-14 14:01:20 +01003592 vma = ERR_PTR(ret);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003593err_unpin:
Ben Widawsky2f633152013-07-17 12:19:03 -07003594 i915_gem_object_unpin_pages(obj);
Daniel Vetter262de142014-02-14 14:01:20 +01003595 return vma;
Eric Anholt673a3942008-07-30 12:06:12 -07003596}
3597
Chris Wilson000433b2013-08-08 14:41:09 +01003598bool
Chris Wilson2c225692013-08-09 12:26:45 +01003599i915_gem_clflush_object(struct drm_i915_gem_object *obj,
3600 bool force)
Eric Anholt673a3942008-07-30 12:06:12 -07003601{
Eric Anholt673a3942008-07-30 12:06:12 -07003602 /* If we don't have a page list set up, then we're not pinned
3603 * to GPU, and we can ignore the cache flush because it'll happen
3604 * again at bind time.
3605 */
Chris Wilson05394f32010-11-08 19:18:58 +00003606 if (obj->pages == NULL)
Chris Wilson000433b2013-08-08 14:41:09 +01003607 return false;
Eric Anholt673a3942008-07-30 12:06:12 -07003608
Imre Deak769ce462013-02-13 21:56:05 +02003609 /*
3610 * Stolen memory is always coherent with the GPU as it is explicitly
3611 * marked as wc by the system, or the system is cache-coherent.
3612 */
Chris Wilson6a2c4232014-11-04 04:51:40 -08003613 if (obj->stolen || obj->phys_handle)
Chris Wilson000433b2013-08-08 14:41:09 +01003614 return false;
Imre Deak769ce462013-02-13 21:56:05 +02003615
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003616 /* If the GPU is snooping the contents of the CPU cache,
3617 * we do not need to manually clear the CPU cache lines. However,
3618 * the caches are only snooped when the render cache is
3619 * flushed/invalidated. As we always have to emit invalidations
3620 * and flushes when moving into and out of the RENDER domain, correct
3621 * snooping behaviour occurs naturally as the result of our domain
3622 * tracking.
3623 */
Chris Wilson2c225692013-08-09 12:26:45 +01003624 if (!force && cpu_cache_is_coherent(obj->base.dev, obj->cache_level))
Chris Wilson000433b2013-08-08 14:41:09 +01003625 return false;
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003626
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003627 trace_i915_gem_object_clflush(obj);
Chris Wilson9da3da62012-06-01 15:20:22 +01003628 drm_clflush_sg(obj->pages);
Chris Wilson000433b2013-08-08 14:41:09 +01003629
3630 return true;
Eric Anholte47c68e2008-11-14 13:35:19 -08003631}
3632
3633/** Flushes the GTT write domain for the object if it's dirty. */
3634static void
Chris Wilson05394f32010-11-08 19:18:58 +00003635i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003636{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003637 uint32_t old_write_domain;
3638
Chris Wilson05394f32010-11-08 19:18:58 +00003639 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08003640 return;
3641
Chris Wilson63256ec2011-01-04 18:42:07 +00003642 /* No actual flushing is required for the GTT write domain. Writes
Eric Anholte47c68e2008-11-14 13:35:19 -08003643 * to it immediately go to main memory as far as we know, so there's
3644 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00003645 *
3646 * However, we do have to enforce the order so that all writes through
3647 * the GTT land before any writes to the device, such as updates to
3648 * the GATT itself.
Eric Anholte47c68e2008-11-14 13:35:19 -08003649 */
Chris Wilson63256ec2011-01-04 18:42:07 +00003650 wmb();
3651
Chris Wilson05394f32010-11-08 19:18:58 +00003652 old_write_domain = obj->base.write_domain;
3653 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003654
Daniel Vetterf99d7062014-06-19 16:01:59 +02003655 intel_fb_obj_flush(obj, false);
3656
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003657 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003658 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003659 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003660}
3661
3662/** Flushes the CPU write domain for the object if it's dirty. */
3663static void
Chris Wilson2c225692013-08-09 12:26:45 +01003664i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj,
3665 bool force)
Eric Anholte47c68e2008-11-14 13:35:19 -08003666{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003667 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08003668
Chris Wilson05394f32010-11-08 19:18:58 +00003669 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08003670 return;
3671
Chris Wilson000433b2013-08-08 14:41:09 +01003672 if (i915_gem_clflush_object(obj, force))
3673 i915_gem_chipset_flush(obj->base.dev);
3674
Chris Wilson05394f32010-11-08 19:18:58 +00003675 old_write_domain = obj->base.write_domain;
3676 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003677
Daniel Vetterf99d7062014-06-19 16:01:59 +02003678 intel_fb_obj_flush(obj, false);
3679
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003680 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003681 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003682 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003683}
3684
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003685/**
3686 * Moves a single object to the GTT read, and possibly write domain.
3687 *
3688 * This function returns when the move is complete, including waiting on
3689 * flushes to occur.
3690 */
Jesse Barnes79e53942008-11-07 14:24:08 -08003691int
Chris Wilson20217462010-11-23 15:26:33 +00003692i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003693{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003694 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilsondc8cd1e2014-08-09 17:37:22 +01003695 struct i915_vma *vma = i915_gem_obj_to_ggtt(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003696 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003697 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003698
Eric Anholt02354392008-11-26 13:58:13 -08003699 /* Not valid to be called on unbound objects. */
Chris Wilsondc8cd1e2014-08-09 17:37:22 +01003700 if (vma == NULL)
Eric Anholt02354392008-11-26 13:58:13 -08003701 return -EINVAL;
3702
Chris Wilson8d7e3de2011-02-07 15:23:02 +00003703 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
3704 return 0;
3705
Chris Wilson0201f1e2012-07-20 12:41:01 +01003706 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00003707 if (ret)
3708 return ret;
3709
Chris Wilsonc8725f32014-03-17 12:21:55 +00003710 i915_gem_object_retire(obj);
Chris Wilson2c225692013-08-09 12:26:45 +01003711 i915_gem_object_flush_cpu_write_domain(obj, false);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003712
Chris Wilsond0a57782012-10-09 19:24:37 +01003713 /* Serialise direct access to this object with the barriers for
3714 * coherent writes from the GPU, by effectively invalidating the
3715 * GTT domain upon first access.
3716 */
3717 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
3718 mb();
3719
Chris Wilson05394f32010-11-08 19:18:58 +00003720 old_write_domain = obj->base.write_domain;
3721 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003722
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003723 /* It should now be out of any other write domains, and we can update
3724 * the domain values for our changes.
3725 */
Chris Wilson05394f32010-11-08 19:18:58 +00003726 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
3727 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08003728 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003729 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
3730 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
3731 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08003732 }
3733
Daniel Vetterf99d7062014-06-19 16:01:59 +02003734 if (write)
3735 intel_fb_obj_invalidate(obj, NULL);
3736
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003737 trace_i915_gem_object_change_domain(obj,
3738 old_read_domains,
3739 old_write_domain);
3740
Chris Wilson8325a092012-04-24 15:52:35 +01003741 /* And bump the LRU for this access */
Chris Wilsondc8cd1e2014-08-09 17:37:22 +01003742 if (i915_gem_object_is_inactive(obj))
3743 list_move_tail(&vma->mm_list,
3744 &dev_priv->gtt.base.inactive_list);
Chris Wilson8325a092012-04-24 15:52:35 +01003745
Eric Anholte47c68e2008-11-14 13:35:19 -08003746 return 0;
3747}
3748
Chris Wilsone4ffd172011-04-04 09:44:39 +01003749int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
3750 enum i915_cache_level cache_level)
3751{
Daniel Vetter7bddb012012-02-09 17:15:47 +01003752 struct drm_device *dev = obj->base.dev;
Chris Wilsondf6f7832014-03-21 07:40:56 +00003753 struct i915_vma *vma, *next;
Chris Wilsone4ffd172011-04-04 09:44:39 +01003754 int ret;
3755
3756 if (obj->cache_level == cache_level)
3757 return 0;
3758
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08003759 if (i915_gem_obj_is_pinned(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003760 DRM_DEBUG("can not change the cache level of pinned objects\n");
3761 return -EBUSY;
3762 }
3763
Chris Wilsondf6f7832014-03-21 07:40:56 +00003764 list_for_each_entry_safe(vma, next, &obj->vma_list, vma_link) {
Chris Wilson4144f9b2014-09-11 08:43:48 +01003765 if (!i915_gem_valid_gtt_space(vma, cache_level)) {
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003766 ret = i915_vma_unbind(vma);
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003767 if (ret)
3768 return ret;
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003769 }
Chris Wilson42d6ab42012-07-26 11:49:32 +01003770 }
3771
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003772 if (i915_gem_obj_bound_any(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003773 ret = i915_gem_object_finish_gpu(obj);
3774 if (ret)
3775 return ret;
3776
3777 i915_gem_object_finish_gtt(obj);
3778
3779 /* Before SandyBridge, you could not use tiling or fence
3780 * registers with snooped memory, so relinquish any fences
3781 * currently pointing to our region in the aperture.
3782 */
Chris Wilson42d6ab42012-07-26 11:49:32 +01003783 if (INTEL_INFO(dev)->gen < 6) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003784 ret = i915_gem_object_put_fence(obj);
3785 if (ret)
3786 return ret;
3787 }
3788
Ben Widawsky6f65e292013-12-06 14:10:56 -08003789 list_for_each_entry(vma, &obj->vma_list, vma_link)
Daniel Vetter8ea99c92014-02-14 14:01:21 +01003790 if (drm_mm_node_allocated(&vma->node))
3791 vma->bind_vma(vma, cache_level,
Tvrtko Ursulinaff43762014-10-24 12:42:33 +01003792 vma->bound & GLOBAL_BIND);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003793 }
3794
Chris Wilson2c225692013-08-09 12:26:45 +01003795 list_for_each_entry(vma, &obj->vma_list, vma_link)
3796 vma->node.color = cache_level;
3797 obj->cache_level = cache_level;
3798
3799 if (cpu_write_needs_clflush(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003800 u32 old_read_domains, old_write_domain;
3801
3802 /* If we're coming from LLC cached, then we haven't
3803 * actually been tracking whether the data is in the
3804 * CPU cache or not, since we only allow one bit set
3805 * in obj->write_domain and have been skipping the clflushes.
3806 * Just set it to the CPU cache for now.
3807 */
Chris Wilsonc8725f32014-03-17 12:21:55 +00003808 i915_gem_object_retire(obj);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003809 WARN_ON(obj->base.write_domain & ~I915_GEM_DOMAIN_CPU);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003810
3811 old_read_domains = obj->base.read_domains;
3812 old_write_domain = obj->base.write_domain;
3813
3814 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3815 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3816
3817 trace_i915_gem_object_change_domain(obj,
3818 old_read_domains,
3819 old_write_domain);
3820 }
3821
Chris Wilsone4ffd172011-04-04 09:44:39 +01003822 return 0;
3823}
3824
Ben Widawsky199adf42012-09-21 17:01:20 -07003825int i915_gem_get_caching_ioctl(struct drm_device *dev, void *data,
3826 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003827{
Ben Widawsky199adf42012-09-21 17:01:20 -07003828 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003829 struct drm_i915_gem_object *obj;
3830 int ret;
3831
3832 ret = i915_mutex_lock_interruptible(dev);
3833 if (ret)
3834 return ret;
3835
3836 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3837 if (&obj->base == NULL) {
3838 ret = -ENOENT;
3839 goto unlock;
3840 }
3841
Chris Wilson651d7942013-08-08 14:41:10 +01003842 switch (obj->cache_level) {
3843 case I915_CACHE_LLC:
3844 case I915_CACHE_L3_LLC:
3845 args->caching = I915_CACHING_CACHED;
3846 break;
3847
Chris Wilson4257d3b2013-08-08 14:41:11 +01003848 case I915_CACHE_WT:
3849 args->caching = I915_CACHING_DISPLAY;
3850 break;
3851
Chris Wilson651d7942013-08-08 14:41:10 +01003852 default:
3853 args->caching = I915_CACHING_NONE;
3854 break;
3855 }
Chris Wilsone6994ae2012-07-10 10:27:08 +01003856
3857 drm_gem_object_unreference(&obj->base);
3858unlock:
3859 mutex_unlock(&dev->struct_mutex);
3860 return ret;
3861}
3862
Ben Widawsky199adf42012-09-21 17:01:20 -07003863int i915_gem_set_caching_ioctl(struct drm_device *dev, void *data,
3864 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003865{
Ben Widawsky199adf42012-09-21 17:01:20 -07003866 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003867 struct drm_i915_gem_object *obj;
3868 enum i915_cache_level level;
3869 int ret;
3870
Ben Widawsky199adf42012-09-21 17:01:20 -07003871 switch (args->caching) {
3872 case I915_CACHING_NONE:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003873 level = I915_CACHE_NONE;
3874 break;
Ben Widawsky199adf42012-09-21 17:01:20 -07003875 case I915_CACHING_CACHED:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003876 level = I915_CACHE_LLC;
3877 break;
Chris Wilson4257d3b2013-08-08 14:41:11 +01003878 case I915_CACHING_DISPLAY:
3879 level = HAS_WT(dev) ? I915_CACHE_WT : I915_CACHE_NONE;
3880 break;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003881 default:
3882 return -EINVAL;
3883 }
3884
Ben Widawsky3bc29132012-09-26 16:15:20 -07003885 ret = i915_mutex_lock_interruptible(dev);
3886 if (ret)
3887 return ret;
3888
Chris Wilsone6994ae2012-07-10 10:27:08 +01003889 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3890 if (&obj->base == NULL) {
3891 ret = -ENOENT;
3892 goto unlock;
3893 }
3894
3895 ret = i915_gem_object_set_cache_level(obj, level);
3896
3897 drm_gem_object_unreference(&obj->base);
3898unlock:
3899 mutex_unlock(&dev->struct_mutex);
3900 return ret;
3901}
3902
Chris Wilsoncc98b412013-08-09 12:25:09 +01003903static bool is_pin_display(struct drm_i915_gem_object *obj)
3904{
Oscar Mateo19656432014-05-16 14:20:43 +01003905 struct i915_vma *vma;
3906
Oscar Mateo19656432014-05-16 14:20:43 +01003907 vma = i915_gem_obj_to_ggtt(obj);
3908 if (!vma)
3909 return false;
3910
Chris Wilsoncc98b412013-08-09 12:25:09 +01003911 /* There are 3 sources that pin objects:
3912 * 1. The display engine (scanouts, sprites, cursors);
3913 * 2. Reservations for execbuffer;
3914 * 3. The user.
3915 *
3916 * We can ignore reservations as we hold the struct_mutex and
3917 * are only called outside of the reservation path. The user
3918 * can only increment pin_count once, and so if after
3919 * subtracting the potential reference by the user, any pin_count
3920 * remains, it must be due to another use by the display engine.
3921 */
Oscar Mateo19656432014-05-16 14:20:43 +01003922 return vma->pin_count - !!obj->user_pin_count;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003923}
3924
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003925/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003926 * Prepare buffer for display plane (scanout, cursors, etc).
3927 * Can be called from an uninterruptible phase (modesetting) and allows
3928 * any flushes to be pipelined (for pageflips).
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003929 */
3930int
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003931i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
3932 u32 alignment,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003933 struct intel_engine_cs *pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003934{
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003935 u32 old_read_domains, old_write_domain;
Oscar Mateo19656432014-05-16 14:20:43 +01003936 bool was_pin_display;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003937 int ret;
3938
Chris Wilson0be73282010-12-06 14:36:27 +00003939 if (pipelined != obj->ring) {
Ben Widawsky2911a352012-04-05 14:47:36 -07003940 ret = i915_gem_object_sync(obj, pipelined);
3941 if (ret)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003942 return ret;
3943 }
3944
Chris Wilsoncc98b412013-08-09 12:25:09 +01003945 /* Mark the pin_display early so that we account for the
3946 * display coherency whilst setting up the cache domains.
3947 */
Oscar Mateo19656432014-05-16 14:20:43 +01003948 was_pin_display = obj->pin_display;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003949 obj->pin_display = true;
3950
Eric Anholta7ef0642011-03-29 16:59:54 -07003951 /* The display engine is not coherent with the LLC cache on gen6. As
3952 * a result, we make sure that the pinning that is about to occur is
3953 * done with uncached PTEs. This is lowest common denominator for all
3954 * chipsets.
3955 *
3956 * However for gen6+, we could do better by using the GFDT bit instead
3957 * of uncaching, which would allow us to flush all the LLC-cached data
3958 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
3959 */
Chris Wilson651d7942013-08-08 14:41:10 +01003960 ret = i915_gem_object_set_cache_level(obj,
3961 HAS_WT(obj->base.dev) ? I915_CACHE_WT : I915_CACHE_NONE);
Eric Anholta7ef0642011-03-29 16:59:54 -07003962 if (ret)
Chris Wilsoncc98b412013-08-09 12:25:09 +01003963 goto err_unpin_display;
Eric Anholta7ef0642011-03-29 16:59:54 -07003964
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003965 /* As the user may map the buffer once pinned in the display plane
3966 * (e.g. libkms for the bootup splash), we have to ensure that we
3967 * always use map_and_fenceable for all scanout buffers.
3968 */
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003969 ret = i915_gem_obj_ggtt_pin(obj, alignment, PIN_MAPPABLE);
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003970 if (ret)
Chris Wilsoncc98b412013-08-09 12:25:09 +01003971 goto err_unpin_display;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003972
Chris Wilson2c225692013-08-09 12:26:45 +01003973 i915_gem_object_flush_cpu_write_domain(obj, true);
Chris Wilsonb118c1e2010-05-27 13:18:14 +01003974
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003975 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00003976 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003977
3978 /* It should now be out of any other write domains, and we can update
3979 * the domain values for our changes.
3980 */
Chris Wilsone5f1d962012-07-20 12:41:00 +01003981 obj->base.write_domain = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00003982 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003983
3984 trace_i915_gem_object_change_domain(obj,
3985 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003986 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003987
3988 return 0;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003989
3990err_unpin_display:
Oscar Mateo19656432014-05-16 14:20:43 +01003991 WARN_ON(was_pin_display != is_pin_display(obj));
3992 obj->pin_display = was_pin_display;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003993 return ret;
3994}
3995
3996void
3997i915_gem_object_unpin_from_display_plane(struct drm_i915_gem_object *obj)
3998{
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08003999 i915_gem_object_ggtt_unpin(obj);
Chris Wilsoncc98b412013-08-09 12:25:09 +01004000 obj->pin_display = is_pin_display(obj);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08004001}
4002
Chris Wilson85345512010-11-13 09:49:11 +00004003int
Chris Wilsona8198ee2011-04-13 22:04:09 +01004004i915_gem_object_finish_gpu(struct drm_i915_gem_object *obj)
Chris Wilson85345512010-11-13 09:49:11 +00004005{
Chris Wilson88241782011-01-07 17:09:48 +00004006 int ret;
4007
Chris Wilsona8198ee2011-04-13 22:04:09 +01004008 if ((obj->base.read_domains & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson85345512010-11-13 09:49:11 +00004009 return 0;
4010
Chris Wilson0201f1e2012-07-20 12:41:01 +01004011 ret = i915_gem_object_wait_rendering(obj, false);
Chris Wilsonc501ae72011-12-14 13:57:23 +01004012 if (ret)
4013 return ret;
4014
Chris Wilsona8198ee2011-04-13 22:04:09 +01004015 /* Ensure that we invalidate the GPU's caches and TLBs. */
4016 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilsonc501ae72011-12-14 13:57:23 +01004017 return 0;
Chris Wilson85345512010-11-13 09:49:11 +00004018}
4019
Eric Anholte47c68e2008-11-14 13:35:19 -08004020/**
4021 * Moves a single object to the CPU read, and possibly write domain.
4022 *
4023 * This function returns when the move is complete, including waiting on
4024 * flushes to occur.
4025 */
Chris Wilsondabdfe02012-03-26 10:10:27 +02004026int
Chris Wilson919926a2010-11-12 13:42:53 +00004027i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08004028{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004029 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08004030 int ret;
4031
Chris Wilson8d7e3de2011-02-07 15:23:02 +00004032 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
4033 return 0;
4034
Chris Wilson0201f1e2012-07-20 12:41:01 +01004035 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00004036 if (ret)
4037 return ret;
4038
Chris Wilsonc8725f32014-03-17 12:21:55 +00004039 i915_gem_object_retire(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08004040 i915_gem_object_flush_gtt_write_domain(obj);
4041
Chris Wilson05394f32010-11-08 19:18:58 +00004042 old_write_domain = obj->base.write_domain;
4043 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004044
Eric Anholte47c68e2008-11-14 13:35:19 -08004045 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00004046 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Chris Wilson2c225692013-08-09 12:26:45 +01004047 i915_gem_clflush_object(obj, false);
Eric Anholte47c68e2008-11-14 13:35:19 -08004048
Chris Wilson05394f32010-11-08 19:18:58 +00004049 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08004050 }
4051
4052 /* It should now be out of any other write domains, and we can update
4053 * the domain values for our changes.
4054 */
Chris Wilson05394f32010-11-08 19:18:58 +00004055 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08004056
4057 /* If we're writing through the CPU, then the GPU read domains will
4058 * need to be invalidated at next use.
4059 */
4060 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00004061 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4062 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08004063 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08004064
Daniel Vetterf99d7062014-06-19 16:01:59 +02004065 if (write)
4066 intel_fb_obj_invalidate(obj, NULL);
4067
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004068 trace_i915_gem_object_change_domain(obj,
4069 old_read_domains,
4070 old_write_domain);
4071
Eric Anholt2ef7eea2008-11-10 10:53:25 -08004072 return 0;
4073}
4074
Eric Anholt673a3942008-07-30 12:06:12 -07004075/* Throttle our rendering by waiting until the ring has completed our requests
4076 * emitted over 20 msec ago.
4077 *
Eric Anholtb9624422009-06-03 07:27:35 +00004078 * Note that if we were to use the current jiffies each time around the loop,
4079 * we wouldn't escape the function with any frames outstanding if the time to
4080 * render a frame was over 20ms.
4081 *
Eric Anholt673a3942008-07-30 12:06:12 -07004082 * This should get us reasonable parallelism between CPU and GPU but also
4083 * relatively low latency when blocking on a particular request to finish.
4084 */
4085static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004086i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004087{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004088 struct drm_i915_private *dev_priv = dev->dev_private;
4089 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00004090 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004091 struct drm_i915_gem_request *request;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004092 struct intel_engine_cs *ring = NULL;
Daniel Vetterf69061b2012-12-06 09:01:42 +01004093 unsigned reset_counter;
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004094 u32 seqno = 0;
4095 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004096
Daniel Vetter308887a2012-11-14 17:14:06 +01004097 ret = i915_gem_wait_for_error(&dev_priv->gpu_error);
4098 if (ret)
4099 return ret;
4100
4101 ret = i915_gem_check_wedge(&dev_priv->gpu_error, false);
4102 if (ret)
4103 return ret;
Chris Wilsone110e8d2011-01-26 15:39:14 +00004104
Chris Wilson1c255952010-09-26 11:03:27 +01004105 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004106 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00004107 if (time_after_eq(request->emitted_jiffies, recent_enough))
4108 break;
4109
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004110 ring = request->ring;
4111 seqno = request->seqno;
Eric Anholtb9624422009-06-03 07:27:35 +00004112 }
Daniel Vetterf69061b2012-12-06 09:01:42 +01004113 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilson1c255952010-09-26 11:03:27 +01004114 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004115
4116 if (seqno == 0)
4117 return 0;
4118
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02004119 ret = __i915_wait_seqno(ring, seqno, reset_counter, true, NULL, NULL);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004120 if (ret == 0)
4121 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00004122
Eric Anholt673a3942008-07-30 12:06:12 -07004123 return ret;
4124}
4125
Chris Wilsond23db882014-05-23 08:48:08 +02004126static bool
4127i915_vma_misplaced(struct i915_vma *vma, uint32_t alignment, uint64_t flags)
4128{
4129 struct drm_i915_gem_object *obj = vma->obj;
4130
4131 if (alignment &&
4132 vma->node.start & (alignment - 1))
4133 return true;
4134
4135 if (flags & PIN_MAPPABLE && !obj->map_and_fenceable)
4136 return true;
4137
4138 if (flags & PIN_OFFSET_BIAS &&
4139 vma->node.start < (flags & PIN_OFFSET_MASK))
4140 return true;
4141
4142 return false;
4143}
4144
Eric Anholt673a3942008-07-30 12:06:12 -07004145int
Chris Wilson05394f32010-11-08 19:18:58 +00004146i915_gem_object_pin(struct drm_i915_gem_object *obj,
Ben Widawskyc37e2202013-07-31 16:59:58 -07004147 struct i915_address_space *vm,
Chris Wilson05394f32010-11-08 19:18:58 +00004148 uint32_t alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02004149 uint64_t flags)
Eric Anholt673a3942008-07-30 12:06:12 -07004150{
Ben Widawsky6e7186a2014-05-06 22:21:36 -07004151 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004152 struct i915_vma *vma;
Chris Wilsonef79e172014-10-31 13:53:52 +00004153 unsigned bound;
Eric Anholt673a3942008-07-30 12:06:12 -07004154 int ret;
4155
Ben Widawsky6e7186a2014-05-06 22:21:36 -07004156 if (WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base))
4157 return -ENODEV;
4158
Daniel Vetterbf3d1492014-02-14 14:01:12 +01004159 if (WARN_ON(flags & (PIN_GLOBAL | PIN_MAPPABLE) && !i915_is_ggtt(vm)))
Daniel Vetter1ec9e262014-02-14 14:01:11 +01004160 return -EINVAL;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004161
Chris Wilsonc826c442014-10-31 13:53:53 +00004162 if (WARN_ON((flags & (PIN_MAPPABLE | PIN_GLOBAL)) == PIN_MAPPABLE))
4163 return -EINVAL;
4164
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004165 vma = i915_gem_obj_to_vma(obj, vm);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004166 if (vma) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004167 if (WARN_ON(vma->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT))
4168 return -EBUSY;
4169
Chris Wilsond23db882014-05-23 08:48:08 +02004170 if (i915_vma_misplaced(vma, alignment, flags)) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004171 WARN(vma->pin_count,
Chris Wilsonae7d49d2010-08-04 12:37:41 +01004172 "bo is already pinned with incorrect alignment:"
Ben Widawskyf343c5f2013-07-05 14:41:04 -07004173 " offset=%lx, req.alignment=%x, req.map_and_fenceable=%d,"
Daniel Vetter75e9e912010-11-04 17:11:09 +01004174 " obj->map_and_fenceable=%d\n",
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004175 i915_gem_obj_offset(obj, vm), alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02004176 !!(flags & PIN_MAPPABLE),
Chris Wilson05394f32010-11-08 19:18:58 +00004177 obj->map_and_fenceable);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004178 ret = i915_vma_unbind(vma);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004179 if (ret)
4180 return ret;
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004181
4182 vma = NULL;
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004183 }
4184 }
4185
Chris Wilsonef79e172014-10-31 13:53:52 +00004186 bound = vma ? vma->bound : 0;
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004187 if (vma == NULL || !drm_mm_node_allocated(&vma->node)) {
Daniel Vetter262de142014-02-14 14:01:20 +01004188 vma = i915_gem_object_bind_to_vm(obj, vm, alignment, flags);
4189 if (IS_ERR(vma))
4190 return PTR_ERR(vma);
Chris Wilson22c344e2009-02-11 14:26:45 +00004191 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05004192
Tvrtko Ursulinaff43762014-10-24 12:42:33 +01004193 if (flags & PIN_GLOBAL && !(vma->bound & GLOBAL_BIND))
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004194 vma->bind_vma(vma, obj->cache_level, GLOBAL_BIND);
Daniel Vetter74898d72012-02-15 23:50:22 +01004195
Chris Wilsonef79e172014-10-31 13:53:52 +00004196 if ((bound ^ vma->bound) & GLOBAL_BIND) {
4197 bool mappable, fenceable;
4198 u32 fence_size, fence_alignment;
4199
4200 fence_size = i915_gem_get_gtt_size(obj->base.dev,
4201 obj->base.size,
4202 obj->tiling_mode);
4203 fence_alignment = i915_gem_get_gtt_alignment(obj->base.dev,
4204 obj->base.size,
4205 obj->tiling_mode,
4206 true);
4207
4208 fenceable = (vma->node.size == fence_size &&
4209 (vma->node.start & (fence_alignment - 1)) == 0);
4210
4211 mappable = (vma->node.start + obj->base.size <=
4212 dev_priv->gtt.mappable_end);
4213
4214 obj->map_and_fenceable = mappable && fenceable;
4215 }
4216
4217 WARN_ON(flags & PIN_MAPPABLE && !obj->map_and_fenceable);
4218
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004219 vma->pin_count++;
Daniel Vetter1ec9e262014-02-14 14:01:11 +01004220 if (flags & PIN_MAPPABLE)
4221 obj->pin_mappable |= true;
Eric Anholt673a3942008-07-30 12:06:12 -07004222
4223 return 0;
4224}
4225
4226void
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004227i915_gem_object_ggtt_unpin(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07004228{
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004229 struct i915_vma *vma = i915_gem_obj_to_ggtt(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004230
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004231 BUG_ON(!vma);
4232 BUG_ON(vma->pin_count == 0);
4233 BUG_ON(!i915_gem_obj_ggtt_bound(obj));
4234
4235 if (--vma->pin_count == 0)
Chris Wilson6299f992010-11-24 12:23:44 +00004236 obj->pin_mappable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07004237}
4238
Daniel Vetterd8ffa602014-05-13 12:11:26 +02004239bool
4240i915_gem_object_pin_fence(struct drm_i915_gem_object *obj)
4241{
4242 if (obj->fence_reg != I915_FENCE_REG_NONE) {
4243 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
4244 struct i915_vma *ggtt_vma = i915_gem_obj_to_ggtt(obj);
4245
4246 WARN_ON(!ggtt_vma ||
4247 dev_priv->fence_regs[obj->fence_reg].pin_count >
4248 ggtt_vma->pin_count);
4249 dev_priv->fence_regs[obj->fence_reg].pin_count++;
4250 return true;
4251 } else
4252 return false;
4253}
4254
4255void
4256i915_gem_object_unpin_fence(struct drm_i915_gem_object *obj)
4257{
4258 if (obj->fence_reg != I915_FENCE_REG_NONE) {
4259 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
4260 WARN_ON(dev_priv->fence_regs[obj->fence_reg].pin_count <= 0);
4261 dev_priv->fence_regs[obj->fence_reg].pin_count--;
4262 }
4263}
4264
Eric Anholt673a3942008-07-30 12:06:12 -07004265int
4266i915_gem_pin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00004267 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004268{
4269 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004270 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07004271 int ret;
4272
Daniel Vetter02f6bcc2013-12-18 16:30:22 +01004273 if (INTEL_INFO(dev)->gen >= 6)
4274 return -ENODEV;
4275
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004276 ret = i915_mutex_lock_interruptible(dev);
4277 if (ret)
4278 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004279
Chris Wilson05394f32010-11-08 19:18:58 +00004280 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004281 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004282 ret = -ENOENT;
4283 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07004284 }
Eric Anholt673a3942008-07-30 12:06:12 -07004285
Chris Wilson05394f32010-11-08 19:18:58 +00004286 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00004287 DRM_DEBUG("Attempting to pin a purgeable buffer\n");
Chris Wilson8c99e572014-01-31 11:34:58 +00004288 ret = -EFAULT;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004289 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004290 }
4291
Chris Wilson05394f32010-11-08 19:18:58 +00004292 if (obj->pin_filp != NULL && obj->pin_filp != file) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00004293 DRM_DEBUG("Already pinned in i915_gem_pin_ioctl(): %d\n",
Jesse Barnes79e53942008-11-07 14:24:08 -08004294 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004295 ret = -EINVAL;
4296 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08004297 }
4298
Daniel Vetteraa5f8022013-10-10 14:46:37 +02004299 if (obj->user_pin_count == ULONG_MAX) {
4300 ret = -EBUSY;
4301 goto out;
4302 }
4303
Chris Wilson93be8782013-01-02 10:31:22 +00004304 if (obj->user_pin_count == 0) {
Daniel Vetter1ec9e262014-02-14 14:01:11 +01004305 ret = i915_gem_obj_ggtt_pin(obj, args->alignment, PIN_MAPPABLE);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004306 if (ret)
4307 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07004308 }
4309
Chris Wilson93be8782013-01-02 10:31:22 +00004310 obj->user_pin_count++;
4311 obj->pin_filp = file;
4312
Ben Widawskyf343c5f2013-07-05 14:41:04 -07004313 args->offset = i915_gem_obj_ggtt_offset(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004314out:
Chris Wilson05394f32010-11-08 19:18:58 +00004315 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004316unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07004317 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004318 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004319}
4320
4321int
4322i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00004323 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004324{
4325 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004326 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01004327 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004328
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004329 ret = i915_mutex_lock_interruptible(dev);
4330 if (ret)
4331 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004332
Chris Wilson05394f32010-11-08 19:18:58 +00004333 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004334 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004335 ret = -ENOENT;
4336 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07004337 }
Chris Wilson76c1dec2010-09-25 11:22:51 +01004338
Chris Wilson05394f32010-11-08 19:18:58 +00004339 if (obj->pin_filp != file) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00004340 DRM_DEBUG("Not pinned by caller in i915_gem_pin_ioctl(): %d\n",
Jesse Barnes79e53942008-11-07 14:24:08 -08004341 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004342 ret = -EINVAL;
4343 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08004344 }
Chris Wilson05394f32010-11-08 19:18:58 +00004345 obj->user_pin_count--;
4346 if (obj->user_pin_count == 0) {
4347 obj->pin_filp = NULL;
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004348 i915_gem_object_ggtt_unpin(obj);
Jesse Barnes79e53942008-11-07 14:24:08 -08004349 }
Eric Anholt673a3942008-07-30 12:06:12 -07004350
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004351out:
Chris Wilson05394f32010-11-08 19:18:58 +00004352 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004353unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07004354 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004355 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004356}
4357
4358int
4359i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00004360 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004361{
4362 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004363 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01004364 int ret;
4365
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004366 ret = i915_mutex_lock_interruptible(dev);
4367 if (ret)
4368 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004369
Chris Wilson05394f32010-11-08 19:18:58 +00004370 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004371 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004372 ret = -ENOENT;
4373 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07004374 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08004375
Chris Wilson0be555b2010-08-04 15:36:30 +01004376 /* Count all active objects as busy, even if they are currently not used
4377 * by the gpu. Users of this interface expect objects to eventually
4378 * become non-busy without any further actions, therefore emit any
4379 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08004380 */
Daniel Vetter30dfebf2012-06-01 15:21:23 +02004381 ret = i915_gem_object_flush_active(obj);
4382
Chris Wilson05394f32010-11-08 19:18:58 +00004383 args->busy = obj->active;
Chris Wilsone9808ed2012-07-04 12:25:08 +01004384 if (obj->ring) {
4385 BUILD_BUG_ON(I915_NUM_RINGS > 16);
4386 args->busy |= intel_ring_flag(obj->ring) << 16;
4387 }
Eric Anholt673a3942008-07-30 12:06:12 -07004388
Chris Wilson05394f32010-11-08 19:18:58 +00004389 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004390unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07004391 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004392 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004393}
4394
4395int
4396i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
4397 struct drm_file *file_priv)
4398{
Akshay Joshi0206e352011-08-16 15:34:10 -04004399 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07004400}
4401
Chris Wilson3ef94da2009-09-14 16:50:29 +01004402int
4403i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
4404 struct drm_file *file_priv)
4405{
4406 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004407 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01004408 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004409
4410 switch (args->madv) {
4411 case I915_MADV_DONTNEED:
4412 case I915_MADV_WILLNEED:
4413 break;
4414 default:
4415 return -EINVAL;
4416 }
4417
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004418 ret = i915_mutex_lock_interruptible(dev);
4419 if (ret)
4420 return ret;
4421
Chris Wilson05394f32010-11-08 19:18:58 +00004422 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004423 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004424 ret = -ENOENT;
4425 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004426 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01004427
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004428 if (i915_gem_obj_is_pinned(obj)) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004429 ret = -EINVAL;
4430 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004431 }
4432
Chris Wilson05394f32010-11-08 19:18:58 +00004433 if (obj->madv != __I915_MADV_PURGED)
4434 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004435
Chris Wilson6c085a72012-08-20 11:40:46 +02004436 /* if the object is no longer attached, discard its backing storage */
4437 if (i915_gem_object_is_purgeable(obj) && obj->pages == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01004438 i915_gem_object_truncate(obj);
4439
Chris Wilson05394f32010-11-08 19:18:58 +00004440 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01004441
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004442out:
Chris Wilson05394f32010-11-08 19:18:58 +00004443 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004444unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01004445 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004446 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004447}
4448
Chris Wilson37e680a2012-06-07 15:38:42 +01004449void i915_gem_object_init(struct drm_i915_gem_object *obj,
4450 const struct drm_i915_gem_object_ops *ops)
Chris Wilson0327d6b2012-08-11 15:41:06 +01004451{
Ben Widawsky35c20a62013-05-31 11:28:48 -07004452 INIT_LIST_HEAD(&obj->global_list);
Chris Wilson0327d6b2012-08-11 15:41:06 +01004453 INIT_LIST_HEAD(&obj->ring_list);
Ben Widawskyb25cb2f2013-08-14 11:38:33 +02004454 INIT_LIST_HEAD(&obj->obj_exec_link);
Ben Widawsky2f633152013-07-17 12:19:03 -07004455 INIT_LIST_HEAD(&obj->vma_list);
Chris Wilson0327d6b2012-08-11 15:41:06 +01004456
Chris Wilson37e680a2012-06-07 15:38:42 +01004457 obj->ops = ops;
4458
Chris Wilson0327d6b2012-08-11 15:41:06 +01004459 obj->fence_reg = I915_FENCE_REG_NONE;
4460 obj->madv = I915_MADV_WILLNEED;
Chris Wilson0327d6b2012-08-11 15:41:06 +01004461
4462 i915_gem_info_add_obj(obj->base.dev->dev_private, obj->base.size);
4463}
4464
Chris Wilson37e680a2012-06-07 15:38:42 +01004465static const struct drm_i915_gem_object_ops i915_gem_object_ops = {
4466 .get_pages = i915_gem_object_get_pages_gtt,
4467 .put_pages = i915_gem_object_put_pages_gtt,
4468};
4469
Chris Wilson05394f32010-11-08 19:18:58 +00004470struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
4471 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00004472{
Daniel Vetterc397b902010-04-09 19:05:07 +00004473 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07004474 struct address_space *mapping;
Daniel Vetter1a240d42012-11-29 22:18:51 +01004475 gfp_t mask;
Daniel Vetterc397b902010-04-09 19:05:07 +00004476
Chris Wilson42dcedd2012-11-15 11:32:30 +00004477 obj = i915_gem_object_alloc(dev);
Daniel Vetterc397b902010-04-09 19:05:07 +00004478 if (obj == NULL)
4479 return NULL;
4480
4481 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
Chris Wilson42dcedd2012-11-15 11:32:30 +00004482 i915_gem_object_free(obj);
Daniel Vetterc397b902010-04-09 19:05:07 +00004483 return NULL;
4484 }
4485
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004486 mask = GFP_HIGHUSER | __GFP_RECLAIMABLE;
4487 if (IS_CRESTLINE(dev) || IS_BROADWATER(dev)) {
4488 /* 965gm cannot relocate objects above 4GiB. */
4489 mask &= ~__GFP_HIGHMEM;
4490 mask |= __GFP_DMA32;
4491 }
4492
Al Viro496ad9a2013-01-23 17:07:38 -05004493 mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004494 mapping_set_gfp_mask(mapping, mask);
Hugh Dickins5949eac2011-06-27 16:18:18 -07004495
Chris Wilson37e680a2012-06-07 15:38:42 +01004496 i915_gem_object_init(obj, &i915_gem_object_ops);
Chris Wilson73aa8082010-09-30 11:46:12 +01004497
Daniel Vetterc397b902010-04-09 19:05:07 +00004498 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
4499 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4500
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02004501 if (HAS_LLC(dev)) {
4502 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07004503 * cache) for about a 10% performance improvement
4504 * compared to uncached. Graphics requests other than
4505 * display scanout are coherent with the CPU in
4506 * accessing this cache. This means in this mode we
4507 * don't need to clflush on the CPU side, and on the
4508 * GPU side we only need to flush internal caches to
4509 * get data visible to the CPU.
4510 *
4511 * However, we maintain the display planes as UC, and so
4512 * need to rebind when first used as such.
4513 */
4514 obj->cache_level = I915_CACHE_LLC;
4515 } else
4516 obj->cache_level = I915_CACHE_NONE;
4517
Daniel Vetterd861e332013-07-24 23:25:03 +02004518 trace_i915_gem_object_create(obj);
4519
Chris Wilson05394f32010-11-08 19:18:58 +00004520 return obj;
Daniel Vetterac52bc52010-04-09 19:05:06 +00004521}
4522
Chris Wilson340fbd82014-05-22 09:16:52 +01004523static bool discard_backing_storage(struct drm_i915_gem_object *obj)
4524{
4525 /* If we are the last user of the backing storage (be it shmemfs
4526 * pages or stolen etc), we know that the pages are going to be
4527 * immediately released. In this case, we can then skip copying
4528 * back the contents from the GPU.
4529 */
4530
4531 if (obj->madv != I915_MADV_WILLNEED)
4532 return false;
4533
4534 if (obj->base.filp == NULL)
4535 return true;
4536
4537 /* At first glance, this looks racy, but then again so would be
4538 * userspace racing mmap against close. However, the first external
4539 * reference to the filp can only be obtained through the
4540 * i915_gem_mmap_ioctl() which safeguards us against the user
4541 * acquiring such a reference whilst we are in the middle of
4542 * freeing the object.
4543 */
4544 return atomic_long_read(&obj->base.filp->f_count) == 1;
4545}
4546
Chris Wilson1488fc02012-04-24 15:47:31 +01004547void i915_gem_free_object(struct drm_gem_object *gem_obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01004548{
Chris Wilson1488fc02012-04-24 15:47:31 +01004549 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00004550 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004551 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004552 struct i915_vma *vma, *next;
Chris Wilsonbe726152010-07-23 23:18:50 +01004553
Paulo Zanonif65c9162013-11-27 18:20:34 -02004554 intel_runtime_pm_get(dev_priv);
4555
Chris Wilson26e12f892011-03-20 11:20:19 +00004556 trace_i915_gem_object_destroy(obj);
4557
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004558 list_for_each_entry_safe(vma, next, &obj->vma_list, vma_link) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004559 int ret;
4560
4561 vma->pin_count = 0;
4562 ret = i915_vma_unbind(vma);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004563 if (WARN_ON(ret == -ERESTARTSYS)) {
4564 bool was_interruptible;
Chris Wilson1488fc02012-04-24 15:47:31 +01004565
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004566 was_interruptible = dev_priv->mm.interruptible;
4567 dev_priv->mm.interruptible = false;
Chris Wilson1488fc02012-04-24 15:47:31 +01004568
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004569 WARN_ON(i915_vma_unbind(vma));
Chris Wilson1488fc02012-04-24 15:47:31 +01004570
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004571 dev_priv->mm.interruptible = was_interruptible;
4572 }
Chris Wilson1488fc02012-04-24 15:47:31 +01004573 }
4574
Ben Widawsky1d64ae72013-05-31 14:46:20 -07004575 /* Stolen objects don't hold a ref, but do hold pin count. Fix that up
4576 * before progressing. */
4577 if (obj->stolen)
4578 i915_gem_object_unpin_pages(obj);
4579
Daniel Vettera071fa02014-06-18 23:28:09 +02004580 WARN_ON(obj->frontbuffer_bits);
4581
Ben Widawsky401c29f2013-05-31 11:28:47 -07004582 if (WARN_ON(obj->pages_pin_count))
4583 obj->pages_pin_count = 0;
Chris Wilson340fbd82014-05-22 09:16:52 +01004584 if (discard_backing_storage(obj))
Chris Wilson55372522014-03-25 13:23:06 +00004585 obj->madv = I915_MADV_DONTNEED;
Chris Wilson37e680a2012-06-07 15:38:42 +01004586 i915_gem_object_put_pages(obj);
Chris Wilsond8cb5082012-08-11 15:41:03 +01004587 i915_gem_object_free_mmap_offset(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01004588
Chris Wilson9da3da62012-06-01 15:20:22 +01004589 BUG_ON(obj->pages);
4590
Chris Wilson2f745ad2012-09-04 21:02:58 +01004591 if (obj->base.import_attach)
4592 drm_prime_gem_destroy(&obj->base, NULL);
Chris Wilsonbe726152010-07-23 23:18:50 +01004593
Chris Wilson5cc9ed42014-05-16 14:22:37 +01004594 if (obj->ops->release)
4595 obj->ops->release(obj);
4596
Chris Wilson05394f32010-11-08 19:18:58 +00004597 drm_gem_object_release(&obj->base);
4598 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01004599
Chris Wilson05394f32010-11-08 19:18:58 +00004600 kfree(obj->bit_17);
Chris Wilson42dcedd2012-11-15 11:32:30 +00004601 i915_gem_object_free(obj);
Paulo Zanonif65c9162013-11-27 18:20:34 -02004602
4603 intel_runtime_pm_put(dev_priv);
Chris Wilsonbe726152010-07-23 23:18:50 +01004604}
4605
Daniel Vettere656a6c2013-08-14 14:14:04 +02004606struct i915_vma *i915_gem_obj_to_vma(struct drm_i915_gem_object *obj,
Ben Widawsky2f633152013-07-17 12:19:03 -07004607 struct i915_address_space *vm)
4608{
Daniel Vettere656a6c2013-08-14 14:14:04 +02004609 struct i915_vma *vma;
4610 list_for_each_entry(vma, &obj->vma_list, vma_link)
4611 if (vma->vm == vm)
4612 return vma;
4613
4614 return NULL;
4615}
4616
Ben Widawsky2f633152013-07-17 12:19:03 -07004617void i915_gem_vma_destroy(struct i915_vma *vma)
4618{
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004619 struct i915_address_space *vm = NULL;
Ben Widawsky2f633152013-07-17 12:19:03 -07004620 WARN_ON(vma->node.allocated);
Chris Wilsonaaa05662013-08-20 12:56:40 +01004621
4622 /* Keep the vma as a placeholder in the execbuffer reservation lists */
4623 if (!list_empty(&vma->exec_list))
4624 return;
4625
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004626 vm = vma->vm;
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004627
Daniel Vetter841cd772014-08-06 15:04:48 +02004628 if (!i915_is_ggtt(vm))
4629 i915_ppgtt_put(i915_vm_to_ppgtt(vm));
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004630
Ben Widawsky8b9c2b92013-07-31 17:00:16 -07004631 list_del(&vma->vma_link);
Daniel Vetterb93dab62013-08-26 11:23:47 +02004632
Ben Widawsky2f633152013-07-17 12:19:03 -07004633 kfree(vma);
4634}
4635
Chris Wilsone3efda42014-04-09 09:19:41 +01004636static void
4637i915_gem_stop_ringbuffers(struct drm_device *dev)
4638{
4639 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004640 struct intel_engine_cs *ring;
Chris Wilsone3efda42014-04-09 09:19:41 +01004641 int i;
4642
4643 for_each_ring(ring, dev_priv, i)
Oscar Mateoa83014d2014-07-24 17:04:21 +01004644 dev_priv->gt.stop_ring(ring);
Chris Wilsone3efda42014-04-09 09:19:41 +01004645}
4646
Jesse Barnes5669fca2009-02-17 15:13:31 -08004647int
Chris Wilson45c5f202013-10-16 11:50:01 +01004648i915_gem_suspend(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07004649{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004650 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson45c5f202013-10-16 11:50:01 +01004651 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07004652
Chris Wilson45c5f202013-10-16 11:50:01 +01004653 mutex_lock(&dev->struct_mutex);
Chris Wilsonf7403342013-09-13 23:57:04 +01004654 if (dev_priv->ums.mm_suspended)
Chris Wilson45c5f202013-10-16 11:50:01 +01004655 goto err;
Eric Anholt673a3942008-07-30 12:06:12 -07004656
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004657 ret = i915_gpu_idle(dev);
Chris Wilsonf7403342013-09-13 23:57:04 +01004658 if (ret)
Chris Wilson45c5f202013-10-16 11:50:01 +01004659 goto err;
Chris Wilsonf7403342013-09-13 23:57:04 +01004660
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004661 i915_gem_retire_requests(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07004662
Chris Wilson29105cc2010-01-07 10:39:13 +00004663 /* Under UMS, be paranoid and evict. */
Chris Wilsona39d7ef2012-04-24 18:22:52 +01004664 if (!drm_core_check_feature(dev, DRIVER_MODESET))
Chris Wilson6c085a72012-08-20 11:40:46 +02004665 i915_gem_evict_everything(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00004666
Chris Wilson29105cc2010-01-07 10:39:13 +00004667 i915_kernel_lost_context(dev);
Chris Wilsone3efda42014-04-09 09:19:41 +01004668 i915_gem_stop_ringbuffers(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00004669
Chris Wilson45c5f202013-10-16 11:50:01 +01004670 /* Hack! Don't let anybody do execbuf while we don't control the chip.
4671 * We need to replace this with a semaphore, or something.
4672 * And not confound ums.mm_suspended!
4673 */
4674 dev_priv->ums.mm_suspended = !drm_core_check_feature(dev,
4675 DRIVER_MODESET);
4676 mutex_unlock(&dev->struct_mutex);
4677
4678 del_timer_sync(&dev_priv->gpu_error.hangcheck_timer);
Chris Wilson29105cc2010-01-07 10:39:13 +00004679 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
Deepak S274fa1c2014-08-05 07:51:20 -07004680 flush_delayed_work(&dev_priv->mm.idle_work);
Chris Wilson29105cc2010-01-07 10:39:13 +00004681
Eric Anholt673a3942008-07-30 12:06:12 -07004682 return 0;
Chris Wilson45c5f202013-10-16 11:50:01 +01004683
4684err:
4685 mutex_unlock(&dev->struct_mutex);
4686 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004687}
4688
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004689int i915_gem_l3_remap(struct intel_engine_cs *ring, int slice)
Ben Widawskyb9524a12012-05-25 16:56:24 -07004690{
Ben Widawskyc3787e22013-09-17 21:12:44 -07004691 struct drm_device *dev = ring->dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004692 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07004693 u32 reg_base = GEN7_L3LOG_BASE + (slice * 0x200);
4694 u32 *remap_info = dev_priv->l3_parity.remap_info[slice];
Ben Widawskyc3787e22013-09-17 21:12:44 -07004695 int i, ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004696
Ben Widawsky040d2ba2013-09-19 11:01:40 -07004697 if (!HAS_L3_DPF(dev) || !remap_info)
Ben Widawskyc3787e22013-09-17 21:12:44 -07004698 return 0;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004699
Ben Widawskyc3787e22013-09-17 21:12:44 -07004700 ret = intel_ring_begin(ring, GEN7_L3LOG_SIZE / 4 * 3);
4701 if (ret)
4702 return ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004703
Ben Widawskyc3787e22013-09-17 21:12:44 -07004704 /*
4705 * Note: We do not worry about the concurrent register cacheline hang
4706 * here because no other code should access these registers other than
4707 * at initialization time.
4708 */
Ben Widawskyb9524a12012-05-25 16:56:24 -07004709 for (i = 0; i < GEN7_L3LOG_SIZE; i += 4) {
Ben Widawskyc3787e22013-09-17 21:12:44 -07004710 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
4711 intel_ring_emit(ring, reg_base + i);
4712 intel_ring_emit(ring, remap_info[i/4]);
Ben Widawskyb9524a12012-05-25 16:56:24 -07004713 }
4714
Ben Widawskyc3787e22013-09-17 21:12:44 -07004715 intel_ring_advance(ring);
Ben Widawskyb9524a12012-05-25 16:56:24 -07004716
Ben Widawskyc3787e22013-09-17 21:12:44 -07004717 return ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004718}
4719
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004720void i915_gem_init_swizzling(struct drm_device *dev)
4721{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004722 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004723
Daniel Vetter11782b02012-01-31 16:47:55 +01004724 if (INTEL_INFO(dev)->gen < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004725 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
4726 return;
4727
4728 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
4729 DISP_TILE_SURFACE_SWIZZLING);
4730
Daniel Vetter11782b02012-01-31 16:47:55 +01004731 if (IS_GEN5(dev))
4732 return;
4733
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004734 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
4735 if (IS_GEN6(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004736 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_SNB));
Ben Widawsky8782e262012-12-18 10:31:23 -08004737 else if (IS_GEN7(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004738 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_IVB));
Ben Widawsky31a53362013-11-02 21:07:04 -07004739 else if (IS_GEN8(dev))
4740 I915_WRITE(GAMTARBMODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_BDW));
Ben Widawsky8782e262012-12-18 10:31:23 -08004741 else
4742 BUG();
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004743}
Daniel Vettere21af882012-02-09 20:53:27 +01004744
Chris Wilson67b1b572012-07-05 23:49:40 +01004745static bool
4746intel_enable_blt(struct drm_device *dev)
4747{
4748 if (!HAS_BLT(dev))
4749 return false;
4750
4751 /* The blitter was dysfunctional on early prototypes */
4752 if (IS_GEN6(dev) && dev->pdev->revision < 8) {
4753 DRM_INFO("BLT not supported on this pre-production hardware;"
4754 " graphics performance will be degraded.\n");
4755 return false;
4756 }
4757
4758 return true;
4759}
4760
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004761static void init_unused_ring(struct drm_device *dev, u32 base)
4762{
4763 struct drm_i915_private *dev_priv = dev->dev_private;
4764
4765 I915_WRITE(RING_CTL(base), 0);
4766 I915_WRITE(RING_HEAD(base), 0);
4767 I915_WRITE(RING_TAIL(base), 0);
4768 I915_WRITE(RING_START(base), 0);
4769}
4770
4771static void init_unused_rings(struct drm_device *dev)
4772{
4773 if (IS_I830(dev)) {
4774 init_unused_ring(dev, PRB1_BASE);
4775 init_unused_ring(dev, SRB0_BASE);
4776 init_unused_ring(dev, SRB1_BASE);
4777 init_unused_ring(dev, SRB2_BASE);
4778 init_unused_ring(dev, SRB3_BASE);
4779 } else if (IS_GEN2(dev)) {
4780 init_unused_ring(dev, SRB0_BASE);
4781 init_unused_ring(dev, SRB1_BASE);
4782 } else if (IS_GEN3(dev)) {
4783 init_unused_ring(dev, PRB1_BASE);
4784 init_unused_ring(dev, PRB2_BASE);
4785 }
4786}
4787
Oscar Mateoa83014d2014-07-24 17:04:21 +01004788int i915_gem_init_rings(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004789{
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004790 struct drm_i915_private *dev_priv = dev->dev_private;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004791 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004792
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004793 /*
4794 * At least 830 can leave some of the unused rings
4795 * "active" (ie. head != tail) after resume which
4796 * will prevent c3 entry. Makes sure all unused rings
4797 * are totally idle.
4798 */
4799 init_unused_rings(dev);
4800
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004801 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004802 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00004803 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004804
4805 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004806 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004807 if (ret)
4808 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08004809 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01004810
Chris Wilson67b1b572012-07-05 23:49:40 +01004811 if (intel_enable_blt(dev)) {
Chris Wilson549f7362010-10-19 11:19:32 +01004812 ret = intel_init_blt_ring_buffer(dev);
4813 if (ret)
4814 goto cleanup_bsd_ring;
4815 }
4816
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004817 if (HAS_VEBOX(dev)) {
4818 ret = intel_init_vebox_ring_buffer(dev);
4819 if (ret)
4820 goto cleanup_blt_ring;
4821 }
4822
Zhao Yakui845f74a2014-04-17 10:37:37 +08004823 if (HAS_BSD2(dev)) {
4824 ret = intel_init_bsd2_ring_buffer(dev);
4825 if (ret)
4826 goto cleanup_vebox_ring;
4827 }
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004828
Mika Kuoppala99433932013-01-22 14:12:17 +02004829 ret = i915_gem_set_seqno(dev, ((u32)~0 - 0x1000));
4830 if (ret)
Zhao Yakui845f74a2014-04-17 10:37:37 +08004831 goto cleanup_bsd2_ring;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004832
4833 return 0;
4834
Zhao Yakui845f74a2014-04-17 10:37:37 +08004835cleanup_bsd2_ring:
4836 intel_cleanup_ring_buffer(&dev_priv->ring[VCS2]);
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004837cleanup_vebox_ring:
4838 intel_cleanup_ring_buffer(&dev_priv->ring[VECS]);
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004839cleanup_blt_ring:
4840 intel_cleanup_ring_buffer(&dev_priv->ring[BCS]);
4841cleanup_bsd_ring:
4842 intel_cleanup_ring_buffer(&dev_priv->ring[VCS]);
4843cleanup_render_ring:
4844 intel_cleanup_ring_buffer(&dev_priv->ring[RCS]);
4845
4846 return ret;
4847}
4848
4849int
4850i915_gem_init_hw(struct drm_device *dev)
4851{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004852 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07004853 int ret, i;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004854
4855 if (INTEL_INFO(dev)->gen < 6 && !intel_enable_gtt())
4856 return -EIO;
4857
Ben Widawsky59124502013-07-04 11:02:05 -07004858 if (dev_priv->ellc_size)
Ben Widawsky05e21cc2013-07-04 11:02:04 -07004859 I915_WRITE(HSW_IDICR, I915_READ(HSW_IDICR) | IDIHASHMSK(0xf));
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004860
Ville Syrjälä0bf21342013-11-29 14:56:12 +02004861 if (IS_HASWELL(dev))
4862 I915_WRITE(MI_PREDICATE_RESULT_2, IS_HSW_GT3(dev) ?
4863 LOWER_SLICE_ENABLED : LOWER_SLICE_DISABLED);
Rodrigo Vivi94353732013-08-28 16:45:46 -03004864
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004865 if (HAS_PCH_NOP(dev)) {
Daniel Vetter6ba844b2014-01-22 23:39:30 +01004866 if (IS_IVYBRIDGE(dev)) {
4867 u32 temp = I915_READ(GEN7_MSG_CTL);
4868 temp &= ~(WAIT_FOR_PCH_FLR_ACK | WAIT_FOR_PCH_RESET_ACK);
4869 I915_WRITE(GEN7_MSG_CTL, temp);
4870 } else if (INTEL_INFO(dev)->gen >= 7) {
4871 u32 temp = I915_READ(HSW_NDE_RSTWRN_OPT);
4872 temp &= ~RESET_PCH_HANDSHAKE_ENABLE;
4873 I915_WRITE(HSW_NDE_RSTWRN_OPT, temp);
4874 }
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004875 }
4876
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004877 i915_gem_init_swizzling(dev);
4878
Oscar Mateoa83014d2014-07-24 17:04:21 +01004879 ret = dev_priv->gt.init_rings(dev);
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004880 if (ret)
Mika Kuoppala99433932013-01-22 14:12:17 +02004881 return ret;
4882
Ben Widawskyc3787e22013-09-17 21:12:44 -07004883 for (i = 0; i < NUM_L3_SLICES(dev); i++)
4884 i915_gem_l3_remap(&dev_priv->ring[RCS], i);
4885
Ben Widawsky254f9652012-06-04 14:42:42 -07004886 /*
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004887 * XXX: Contexts should only be initialized once. Doing a switch to the
4888 * default context switch however is something we'd like to do after
4889 * reset or thaw (the latter may not actually be necessary for HW, but
4890 * goes with our code better). Context switching requires rings (for
4891 * the do_switch), but before enabling PPGTT. So don't move this.
Ben Widawsky254f9652012-06-04 14:42:42 -07004892 */
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004893 ret = i915_gem_context_enable(dev_priv);
Chris Wilson60990322014-04-09 09:19:42 +01004894 if (ret && ret != -EIO) {
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004895 DRM_ERROR("Context enable failed %d\n", ret);
Chris Wilson60990322014-04-09 09:19:42 +01004896 i915_gem_cleanup_ringbuffer(dev);
Daniel Vetter82460d92014-08-06 20:19:53 +02004897
4898 return ret;
4899 }
4900
4901 ret = i915_ppgtt_init_hw(dev);
4902 if (ret && ret != -EIO) {
4903 DRM_ERROR("PPGTT enable failed %d\n", ret);
4904 i915_gem_cleanup_ringbuffer(dev);
Ben Widawskyb7c36d22013-04-08 18:43:56 -07004905 }
Daniel Vettere21af882012-02-09 20:53:27 +01004906
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004907 return ret;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004908}
4909
Chris Wilson1070a422012-04-24 15:47:41 +01004910int i915_gem_init(struct drm_device *dev)
4911{
4912 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson1070a422012-04-24 15:47:41 +01004913 int ret;
4914
Oscar Mateo127f1002014-07-24 17:04:11 +01004915 i915.enable_execlists = intel_sanitize_enable_execlists(dev,
4916 i915.enable_execlists);
4917
Chris Wilson1070a422012-04-24 15:47:41 +01004918 mutex_lock(&dev->struct_mutex);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004919
4920 if (IS_VALLEYVIEW(dev)) {
4921 /* VLVA0 (potential hack), BIOS isn't actually waking us */
Imre Deak981a5ae2014-04-14 20:24:22 +03004922 I915_WRITE(VLV_GTLC_WAKE_CTRL, VLV_GTLC_ALLOWWAKEREQ);
4923 if (wait_for((I915_READ(VLV_GTLC_PW_STATUS) &
4924 VLV_GTLC_ALLOWWAKEACK), 10))
Jesse Barnesd62b4892013-03-08 10:45:53 -08004925 DRM_DEBUG_DRIVER("allow wake ack timed out\n");
4926 }
4927
Oscar Mateoa83014d2014-07-24 17:04:21 +01004928 if (!i915.enable_execlists) {
4929 dev_priv->gt.do_execbuf = i915_gem_ringbuffer_submission;
4930 dev_priv->gt.init_rings = i915_gem_init_rings;
4931 dev_priv->gt.cleanup_ring = intel_cleanup_ring_buffer;
4932 dev_priv->gt.stop_ring = intel_stop_ring_buffer;
Oscar Mateo454afeb2014-07-24 17:04:22 +01004933 } else {
4934 dev_priv->gt.do_execbuf = intel_execlists_submission;
4935 dev_priv->gt.init_rings = intel_logical_rings_init;
4936 dev_priv->gt.cleanup_ring = intel_logical_ring_cleanup;
4937 dev_priv->gt.stop_ring = intel_logical_ring_stop;
Oscar Mateoa83014d2014-07-24 17:04:21 +01004938 }
4939
Daniel Vetter6c5566a2014-08-06 15:04:50 +02004940 ret = i915_gem_init_userptr(dev);
4941 if (ret) {
4942 mutex_unlock(&dev->struct_mutex);
4943 return ret;
4944 }
4945
Ben Widawskyd7e50082012-12-18 10:31:25 -08004946 i915_gem_init_global_gtt(dev);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004947
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004948 ret = i915_gem_context_init(dev);
Mika Kuoppalae3848692014-01-31 17:14:02 +02004949 if (ret) {
4950 mutex_unlock(&dev->struct_mutex);
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004951 return ret;
Mika Kuoppalae3848692014-01-31 17:14:02 +02004952 }
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004953
Chris Wilson1070a422012-04-24 15:47:41 +01004954 ret = i915_gem_init_hw(dev);
Chris Wilson60990322014-04-09 09:19:42 +01004955 if (ret == -EIO) {
4956 /* Allow ring initialisation to fail by marking the GPU as
4957 * wedged. But we only want to do this where the GPU is angry,
4958 * for all other failure, such as an allocation failure, bail.
4959 */
4960 DRM_ERROR("Failed to initialize GPU, declaring it wedged\n");
4961 atomic_set_mask(I915_WEDGED, &dev_priv->gpu_error.reset_counter);
4962 ret = 0;
Chris Wilson1070a422012-04-24 15:47:41 +01004963 }
Chris Wilson60990322014-04-09 09:19:42 +01004964 mutex_unlock(&dev->struct_mutex);
Chris Wilson1070a422012-04-24 15:47:41 +01004965
Daniel Vetter53ca26c2012-04-26 23:28:03 +02004966 /* Allow hardware batchbuffers unless told otherwise, but not for KMS. */
4967 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4968 dev_priv->dri1.allow_batchbuffer = 1;
Chris Wilson60990322014-04-09 09:19:42 +01004969 return ret;
Chris Wilson1070a422012-04-24 15:47:41 +01004970}
4971
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004972void
4973i915_gem_cleanup_ringbuffer(struct drm_device *dev)
4974{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004975 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004976 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00004977 int i;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004978
Chris Wilsonb4519512012-05-11 14:29:30 +01004979 for_each_ring(ring, dev_priv, i)
Oscar Mateoa83014d2014-07-24 17:04:21 +01004980 dev_priv->gt.cleanup_ring(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004981}
4982
4983int
Eric Anholt673a3942008-07-30 12:06:12 -07004984i915_gem_entervt_ioctl(struct drm_device *dev, void *data,
4985 struct drm_file *file_priv)
4986{
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004987 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01004988 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004989
Jesse Barnes79e53942008-11-07 14:24:08 -08004990 if (drm_core_check_feature(dev, DRIVER_MODESET))
4991 return 0;
4992
Daniel Vetter1f83fee2012-11-15 17:17:22 +01004993 if (i915_reset_in_progress(&dev_priv->gpu_error)) {
Eric Anholt673a3942008-07-30 12:06:12 -07004994 DRM_ERROR("Reenabling wedged hardware, good luck\n");
Daniel Vetter1f83fee2012-11-15 17:17:22 +01004995 atomic_set(&dev_priv->gpu_error.reset_counter, 0);
Eric Anholt673a3942008-07-30 12:06:12 -07004996 }
4997
Eric Anholt673a3942008-07-30 12:06:12 -07004998 mutex_lock(&dev->struct_mutex);
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004999 dev_priv->ums.mm_suspended = 0;
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08005000
Daniel Vetterf691e2f2012-02-02 09:58:12 +01005001 ret = i915_gem_init_hw(dev);
Wu Fengguangd816f6a2009-04-18 10:43:32 +08005002 if (ret != 0) {
5003 mutex_unlock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08005004 return ret;
Wu Fengguangd816f6a2009-04-18 10:43:32 +08005005 }
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08005006
Ben Widawsky5cef07e2013-07-16 16:50:08 -07005007 BUG_ON(!list_empty(&dev_priv->gtt.base.active_list));
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04005008
Daniel Vetterbb0f1b52013-11-03 21:09:27 +01005009 ret = drm_irq_install(dev, dev->pdev->irq);
Chris Wilson5f353082010-06-07 14:03:03 +01005010 if (ret)
5011 goto cleanup_ringbuffer;
Daniel Vettere090c532013-11-03 20:27:05 +01005012 mutex_unlock(&dev->struct_mutex);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04005013
Eric Anholt673a3942008-07-30 12:06:12 -07005014 return 0;
Chris Wilson5f353082010-06-07 14:03:03 +01005015
5016cleanup_ringbuffer:
Chris Wilson5f353082010-06-07 14:03:03 +01005017 i915_gem_cleanup_ringbuffer(dev);
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02005018 dev_priv->ums.mm_suspended = 1;
Chris Wilson5f353082010-06-07 14:03:03 +01005019 mutex_unlock(&dev->struct_mutex);
5020
5021 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07005022}
5023
5024int
5025i915_gem_leavevt_ioctl(struct drm_device *dev, void *data,
5026 struct drm_file *file_priv)
5027{
Jesse Barnes79e53942008-11-07 14:24:08 -08005028 if (drm_core_check_feature(dev, DRIVER_MODESET))
5029 return 0;
5030
Daniel Vettere090c532013-11-03 20:27:05 +01005031 mutex_lock(&dev->struct_mutex);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04005032 drm_irq_uninstall(dev);
Daniel Vettere090c532013-11-03 20:27:05 +01005033 mutex_unlock(&dev->struct_mutex);
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02005034
Chris Wilson45c5f202013-10-16 11:50:01 +01005035 return i915_gem_suspend(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07005036}
5037
5038void
5039i915_gem_lastclose(struct drm_device *dev)
5040{
5041 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07005042
Eric Anholte806b492009-01-22 09:56:58 -08005043 if (drm_core_check_feature(dev, DRIVER_MODESET))
5044 return;
5045
Chris Wilson45c5f202013-10-16 11:50:01 +01005046 ret = i915_gem_suspend(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07005047 if (ret)
5048 DRM_ERROR("failed to idle hardware: %d\n", ret);
Eric Anholt673a3942008-07-30 12:06:12 -07005049}
5050
Chris Wilson64193402010-10-24 12:38:05 +01005051static void
Oscar Mateoa4872ba2014-05-22 14:13:33 +01005052init_ring_lists(struct intel_engine_cs *ring)
Chris Wilson64193402010-10-24 12:38:05 +01005053{
5054 INIT_LIST_HEAD(&ring->active_list);
5055 INIT_LIST_HEAD(&ring->request_list);
Chris Wilson64193402010-10-24 12:38:05 +01005056}
5057
Ben Widawsky7e0d96b2013-12-06 14:11:26 -08005058void i915_init_vm(struct drm_i915_private *dev_priv,
5059 struct i915_address_space *vm)
Ben Widawskyfc8c0672013-07-31 16:59:54 -07005060{
Ben Widawsky7e0d96b2013-12-06 14:11:26 -08005061 if (!i915_is_ggtt(vm))
5062 drm_mm_init(&vm->mm, vm->start, vm->total);
Ben Widawskyfc8c0672013-07-31 16:59:54 -07005063 vm->dev = dev_priv->dev;
5064 INIT_LIST_HEAD(&vm->active_list);
5065 INIT_LIST_HEAD(&vm->inactive_list);
5066 INIT_LIST_HEAD(&vm->global_link);
Chris Wilsonf72d21e2014-01-09 22:57:22 +00005067 list_add_tail(&vm->global_link, &dev_priv->vm_list);
Ben Widawskyfc8c0672013-07-31 16:59:54 -07005068}
5069
Eric Anholt673a3942008-07-30 12:06:12 -07005070void
5071i915_gem_load(struct drm_device *dev)
5072{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03005073 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson42dcedd2012-11-15 11:32:30 +00005074 int i;
5075
5076 dev_priv->slab =
5077 kmem_cache_create("i915_gem_object",
5078 sizeof(struct drm_i915_gem_object), 0,
5079 SLAB_HWCACHE_ALIGN,
5080 NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07005081
Ben Widawskyfc8c0672013-07-31 16:59:54 -07005082 INIT_LIST_HEAD(&dev_priv->vm_list);
5083 i915_init_vm(dev_priv, &dev_priv->gtt.base);
5084
Ben Widawskya33afea2013-09-17 21:12:45 -07005085 INIT_LIST_HEAD(&dev_priv->context_list);
Chris Wilson6c085a72012-08-20 11:40:46 +02005086 INIT_LIST_HEAD(&dev_priv->mm.unbound_list);
5087 INIT_LIST_HEAD(&dev_priv->mm.bound_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07005088 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00005089 for (i = 0; i < I915_NUM_RINGS; i++)
5090 init_ring_lists(&dev_priv->ring[i]);
Daniel Vetter4b9de732011-10-09 21:52:02 +02005091 for (i = 0; i < I915_MAX_NUM_FENCES; i++)
Daniel Vetter007cc8a2010-04-28 11:02:31 +02005092 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07005093 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
5094 i915_gem_retire_work_handler);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005095 INIT_DELAYED_WORK(&dev_priv->mm.idle_work,
5096 i915_gem_idle_work_handler);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01005097 init_waitqueue_head(&dev_priv->gpu_error.reset_queue);
Chris Wilson31169712009-09-14 16:50:28 +01005098
Dave Airlie94400122010-07-20 13:15:31 +10005099 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
Ville Syrjälädbb42742014-02-25 15:13:41 +02005100 if (!drm_core_check_feature(dev, DRIVER_MODESET) && IS_GEN3(dev)) {
Daniel Vetter50743292012-04-26 22:02:54 +02005101 I915_WRITE(MI_ARB_STATE,
5102 _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Dave Airlie94400122010-07-20 13:15:31 +10005103 }
5104
Chris Wilson72bfa192010-12-19 11:42:05 +00005105 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
5106
Jesse Barnesde151cf2008-11-12 10:03:55 -08005107 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08005108 if (!drm_core_check_feature(dev, DRIVER_MODESET))
5109 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08005110
Ville Syrjälä42b5aea2013-04-09 13:02:47 +03005111 if (INTEL_INFO(dev)->gen >= 7 && !IS_VALLEYVIEW(dev))
5112 dev_priv->num_fence_regs = 32;
5113 else if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08005114 dev_priv->num_fence_regs = 16;
5115 else
5116 dev_priv->num_fence_regs = 8;
5117
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02005118 /* Initialize fence registers to zero */
Chris Wilson19b2dbd2013-06-12 10:15:12 +01005119 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
5120 i915_gem_restore_fences(dev);
Eric Anholt10ed13e2011-05-06 13:53:49 -07005121
Eric Anholt673a3942008-07-30 12:06:12 -07005122 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005123 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01005124
Chris Wilsonce453d82011-02-21 14:43:56 +00005125 dev_priv->mm.interruptible = true;
5126
Chris Wilsonceabbba52014-03-25 13:23:04 +00005127 dev_priv->mm.shrinker.scan_objects = i915_gem_shrinker_scan;
5128 dev_priv->mm.shrinker.count_objects = i915_gem_shrinker_count;
5129 dev_priv->mm.shrinker.seeks = DEFAULT_SEEKS;
5130 register_shrinker(&dev_priv->mm.shrinker);
Chris Wilson2cfcd322014-05-20 08:28:43 +01005131
5132 dev_priv->mm.oom_notifier.notifier_call = i915_gem_shrinker_oom;
5133 register_oom_notifier(&dev_priv->mm.oom_notifier);
Daniel Vetterf99d7062014-06-19 16:01:59 +02005134
5135 mutex_init(&dev_priv->fb_tracking.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07005136}
Dave Airlie71acb5e2008-12-30 20:31:46 +10005137
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005138void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00005139{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005140 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00005141
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005142 cancel_delayed_work_sync(&file_priv->mm.idle_work);
5143
Eric Anholtb9624422009-06-03 07:27:35 +00005144 /* Clean up our request list when the client is going away, so that
5145 * later retire_requests won't dereference our soon-to-be-gone
5146 * file_priv.
5147 */
Chris Wilson1c255952010-09-26 11:03:27 +01005148 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005149 while (!list_empty(&file_priv->mm.request_list)) {
5150 struct drm_i915_gem_request *request;
5151
5152 request = list_first_entry(&file_priv->mm.request_list,
5153 struct drm_i915_gem_request,
5154 client_list);
5155 list_del(&request->client_list);
5156 request->file_priv = NULL;
5157 }
Chris Wilson1c255952010-09-26 11:03:27 +01005158 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00005159}
Chris Wilson31169712009-09-14 16:50:28 +01005160
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005161static void
5162i915_gem_file_idle_work_handler(struct work_struct *work)
5163{
5164 struct drm_i915_file_private *file_priv =
5165 container_of(work, typeof(*file_priv), mm.idle_work.work);
5166
5167 atomic_set(&file_priv->rps_wait_boost, false);
5168}
5169
5170int i915_gem_open(struct drm_device *dev, struct drm_file *file)
5171{
5172 struct drm_i915_file_private *file_priv;
Ben Widawskye422b882013-12-06 14:10:58 -08005173 int ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005174
5175 DRM_DEBUG_DRIVER("\n");
5176
5177 file_priv = kzalloc(sizeof(*file_priv), GFP_KERNEL);
5178 if (!file_priv)
5179 return -ENOMEM;
5180
5181 file->driver_priv = file_priv;
5182 file_priv->dev_priv = dev->dev_private;
Chris Wilsonab0e7ff2014-02-25 17:11:24 +02005183 file_priv->file = file;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005184
5185 spin_lock_init(&file_priv->mm.lock);
5186 INIT_LIST_HEAD(&file_priv->mm.request_list);
5187 INIT_DELAYED_WORK(&file_priv->mm.idle_work,
5188 i915_gem_file_idle_work_handler);
5189
Ben Widawskye422b882013-12-06 14:10:58 -08005190 ret = i915_gem_context_open(dev, file);
5191 if (ret)
5192 kfree(file_priv);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005193
Ben Widawskye422b882013-12-06 14:10:58 -08005194 return ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005195}
5196
Daniel Vetterb680c372014-09-19 18:27:27 +02005197/**
5198 * i915_gem_track_fb - update frontbuffer tracking
5199 * old: current GEM buffer for the frontbuffer slots
5200 * new: new GEM buffer for the frontbuffer slots
5201 * frontbuffer_bits: bitmask of frontbuffer slots
5202 *
5203 * This updates the frontbuffer tracking bits @frontbuffer_bits by clearing them
5204 * from @old and setting them in @new. Both @old and @new can be NULL.
5205 */
Daniel Vettera071fa02014-06-18 23:28:09 +02005206void i915_gem_track_fb(struct drm_i915_gem_object *old,
5207 struct drm_i915_gem_object *new,
5208 unsigned frontbuffer_bits)
5209{
5210 if (old) {
5211 WARN_ON(!mutex_is_locked(&old->base.dev->struct_mutex));
5212 WARN_ON(!(old->frontbuffer_bits & frontbuffer_bits));
5213 old->frontbuffer_bits &= ~frontbuffer_bits;
5214 }
5215
5216 if (new) {
5217 WARN_ON(!mutex_is_locked(&new->base.dev->struct_mutex));
5218 WARN_ON(new->frontbuffer_bits & frontbuffer_bits);
5219 new->frontbuffer_bits |= frontbuffer_bits;
5220 }
5221}
5222
Chris Wilson57745062012-11-21 13:04:04 +00005223static bool mutex_is_locked_by(struct mutex *mutex, struct task_struct *task)
5224{
5225 if (!mutex_is_locked(mutex))
5226 return false;
5227
5228#if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_MUTEXES)
5229 return mutex->owner == task;
5230#else
5231 /* Since UP may be pre-empted, we cannot assume that we own the lock */
5232 return false;
5233#endif
5234}
5235
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005236static bool i915_gem_shrinker_lock(struct drm_device *dev, bool *unlock)
5237{
5238 if (!mutex_trylock(&dev->struct_mutex)) {
5239 if (!mutex_is_locked_by(&dev->struct_mutex, current))
5240 return false;
5241
5242 if (to_i915(dev)->mm.shrinker_no_lock_stealing)
5243 return false;
5244
5245 *unlock = false;
5246 } else
5247 *unlock = true;
5248
5249 return true;
5250}
5251
Chris Wilsonceabbba52014-03-25 13:23:04 +00005252static int num_vma_bound(struct drm_i915_gem_object *obj)
5253{
5254 struct i915_vma *vma;
5255 int count = 0;
5256
5257 list_for_each_entry(vma, &obj->vma_list, vma_link)
5258 if (drm_mm_node_allocated(&vma->node))
5259 count++;
5260
5261 return count;
5262}
5263
Dave Chinner7dc19d52013-08-28 10:18:11 +10005264static unsigned long
Chris Wilsonceabbba52014-03-25 13:23:04 +00005265i915_gem_shrinker_count(struct shrinker *shrinker, struct shrink_control *sc)
Chris Wilson31169712009-09-14 16:50:28 +01005266{
Chris Wilson17250b72010-10-28 12:51:39 +01005267 struct drm_i915_private *dev_priv =
Chris Wilsonceabbba52014-03-25 13:23:04 +00005268 container_of(shrinker, struct drm_i915_private, mm.shrinker);
Chris Wilson17250b72010-10-28 12:51:39 +01005269 struct drm_device *dev = dev_priv->dev;
Chris Wilson6c085a72012-08-20 11:40:46 +02005270 struct drm_i915_gem_object *obj;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005271 unsigned long count;
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005272 bool unlock;
Chris Wilson17250b72010-10-28 12:51:39 +01005273
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005274 if (!i915_gem_shrinker_lock(dev, &unlock))
5275 return 0;
Chris Wilson31169712009-09-14 16:50:28 +01005276
Dave Chinner7dc19d52013-08-28 10:18:11 +10005277 count = 0;
Ben Widawsky35c20a62013-05-31 11:28:48 -07005278 list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list)
Chris Wilsona5570172012-09-04 21:02:54 +01005279 if (obj->pages_pin_count == 0)
Dave Chinner7dc19d52013-08-28 10:18:11 +10005280 count += obj->base.size >> PAGE_SHIFT;
Ben Widawskyfcb4a572013-07-31 16:59:57 -07005281
5282 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
Chris Wilsonceabbba52014-03-25 13:23:04 +00005283 if (!i915_gem_obj_is_pinned(obj) &&
5284 obj->pages_pin_count == num_vma_bound(obj))
Dave Chinner7dc19d52013-08-28 10:18:11 +10005285 count += obj->base.size >> PAGE_SHIFT;
Ben Widawskyfcb4a572013-07-31 16:59:57 -07005286 }
Chris Wilson31169712009-09-14 16:50:28 +01005287
Chris Wilson57745062012-11-21 13:04:04 +00005288 if (unlock)
5289 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9973b42013-10-04 10:33:00 +01005290
Dave Chinner7dc19d52013-08-28 10:18:11 +10005291 return count;
Chris Wilson31169712009-09-14 16:50:28 +01005292}
Ben Widawskya70a3142013-07-31 16:59:56 -07005293
5294/* All the new VM stuff */
5295unsigned long i915_gem_obj_offset(struct drm_i915_gem_object *o,
5296 struct i915_address_space *vm)
5297{
5298 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
5299 struct i915_vma *vma;
5300
Daniel Vetter896ab1a2014-08-06 15:04:51 +02005301 WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base);
Ben Widawskya70a3142013-07-31 16:59:56 -07005302
Ben Widawskya70a3142013-07-31 16:59:56 -07005303 list_for_each_entry(vma, &o->vma_list, vma_link) {
5304 if (vma->vm == vm)
5305 return vma->node.start;
5306
5307 }
Daniel Vetterf25748ea2014-06-17 22:34:38 +02005308 WARN(1, "%s vma for this object not found.\n",
5309 i915_is_ggtt(vm) ? "global" : "ppgtt");
Ben Widawskya70a3142013-07-31 16:59:56 -07005310 return -1;
5311}
5312
5313bool i915_gem_obj_bound(struct drm_i915_gem_object *o,
5314 struct i915_address_space *vm)
5315{
5316 struct i915_vma *vma;
5317
5318 list_for_each_entry(vma, &o->vma_list, vma_link)
Ben Widawsky8b9c2b92013-07-31 17:00:16 -07005319 if (vma->vm == vm && drm_mm_node_allocated(&vma->node))
Ben Widawskya70a3142013-07-31 16:59:56 -07005320 return true;
5321
5322 return false;
5323}
5324
5325bool i915_gem_obj_bound_any(struct drm_i915_gem_object *o)
5326{
Chris Wilson5a1d5eb2013-09-10 11:27:37 +01005327 struct i915_vma *vma;
Ben Widawskya70a3142013-07-31 16:59:56 -07005328
Chris Wilson5a1d5eb2013-09-10 11:27:37 +01005329 list_for_each_entry(vma, &o->vma_list, vma_link)
5330 if (drm_mm_node_allocated(&vma->node))
Ben Widawskya70a3142013-07-31 16:59:56 -07005331 return true;
5332
5333 return false;
5334}
5335
5336unsigned long i915_gem_obj_size(struct drm_i915_gem_object *o,
5337 struct i915_address_space *vm)
5338{
5339 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
5340 struct i915_vma *vma;
5341
Daniel Vetter896ab1a2014-08-06 15:04:51 +02005342 WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base);
Ben Widawskya70a3142013-07-31 16:59:56 -07005343
5344 BUG_ON(list_empty(&o->vma_list));
5345
5346 list_for_each_entry(vma, &o->vma_list, vma_link)
5347 if (vma->vm == vm)
5348 return vma->node.size;
5349
5350 return 0;
5351}
5352
Dave Chinner7dc19d52013-08-28 10:18:11 +10005353static unsigned long
Chris Wilsonceabbba52014-03-25 13:23:04 +00005354i915_gem_shrinker_scan(struct shrinker *shrinker, struct shrink_control *sc)
Dave Chinner7dc19d52013-08-28 10:18:11 +10005355{
5356 struct drm_i915_private *dev_priv =
Chris Wilsonceabbba52014-03-25 13:23:04 +00005357 container_of(shrinker, struct drm_i915_private, mm.shrinker);
Dave Chinner7dc19d52013-08-28 10:18:11 +10005358 struct drm_device *dev = dev_priv->dev;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005359 unsigned long freed;
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005360 bool unlock;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005361
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005362 if (!i915_gem_shrinker_lock(dev, &unlock))
5363 return SHRINK_STOP;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005364
Chris Wilson21ab4e72014-09-09 11:16:08 +01005365 freed = i915_gem_shrink(dev_priv,
5366 sc->nr_to_scan,
5367 I915_SHRINK_BOUND |
5368 I915_SHRINK_UNBOUND |
5369 I915_SHRINK_PURGEABLE);
Chris Wilsond9973b42013-10-04 10:33:00 +01005370 if (freed < sc->nr_to_scan)
Chris Wilson21ab4e72014-09-09 11:16:08 +01005371 freed += i915_gem_shrink(dev_priv,
5372 sc->nr_to_scan - freed,
5373 I915_SHRINK_BOUND |
5374 I915_SHRINK_UNBOUND);
Dave Chinner7dc19d52013-08-28 10:18:11 +10005375 if (unlock)
5376 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9973b42013-10-04 10:33:00 +01005377
Dave Chinner7dc19d52013-08-28 10:18:11 +10005378 return freed;
5379}
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005380
Chris Wilson2cfcd322014-05-20 08:28:43 +01005381static int
5382i915_gem_shrinker_oom(struct notifier_block *nb, unsigned long event, void *ptr)
5383{
5384 struct drm_i915_private *dev_priv =
5385 container_of(nb, struct drm_i915_private, mm.oom_notifier);
5386 struct drm_device *dev = dev_priv->dev;
5387 struct drm_i915_gem_object *obj;
5388 unsigned long timeout = msecs_to_jiffies(5000) + 1;
Chris Wilson005445c2014-10-08 11:25:16 +01005389 unsigned long pinned, bound, unbound, freed_pages;
Chris Wilson2cfcd322014-05-20 08:28:43 +01005390 bool was_interruptible;
5391 bool unlock;
5392
Chris Wilsona1db2fa2014-07-11 11:28:00 +01005393 while (!i915_gem_shrinker_lock(dev, &unlock) && --timeout) {
Chris Wilson2cfcd322014-05-20 08:28:43 +01005394 schedule_timeout_killable(1);
Chris Wilsona1db2fa2014-07-11 11:28:00 +01005395 if (fatal_signal_pending(current))
5396 return NOTIFY_DONE;
5397 }
Chris Wilson2cfcd322014-05-20 08:28:43 +01005398 if (timeout == 0) {
5399 pr_err("Unable to purge GPU memory due lock contention.\n");
5400 return NOTIFY_DONE;
5401 }
5402
5403 was_interruptible = dev_priv->mm.interruptible;
5404 dev_priv->mm.interruptible = false;
5405
Chris Wilson005445c2014-10-08 11:25:16 +01005406 freed_pages = i915_gem_shrink_all(dev_priv);
Chris Wilson2cfcd322014-05-20 08:28:43 +01005407
5408 dev_priv->mm.interruptible = was_interruptible;
5409
5410 /* Because we may be allocating inside our own driver, we cannot
5411 * assert that there are no objects with pinned pages that are not
5412 * being pointed to by hardware.
5413 */
5414 unbound = bound = pinned = 0;
5415 list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list) {
5416 if (!obj->base.filp) /* not backed by a freeable object */
5417 continue;
5418
5419 if (obj->pages_pin_count)
5420 pinned += obj->base.size;
5421 else
5422 unbound += obj->base.size;
5423 }
5424 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
5425 if (!obj->base.filp)
5426 continue;
5427
5428 if (obj->pages_pin_count)
5429 pinned += obj->base.size;
5430 else
5431 bound += obj->base.size;
5432 }
5433
5434 if (unlock)
5435 mutex_unlock(&dev->struct_mutex);
5436
Chris Wilsonbb9059d2014-10-08 11:25:17 +01005437 if (freed_pages || unbound || bound)
5438 pr_info("Purging GPU memory, %lu bytes freed, %lu bytes still pinned.\n",
5439 freed_pages << PAGE_SHIFT, pinned);
Chris Wilson2cfcd322014-05-20 08:28:43 +01005440 if (unbound || bound)
5441 pr_err("%lu and %lu bytes still available in the "
5442 "bound and unbound GPU page lists.\n",
5443 bound, unbound);
5444
Chris Wilson005445c2014-10-08 11:25:16 +01005445 *(unsigned long *)ptr += freed_pages;
Chris Wilson2cfcd322014-05-20 08:28:43 +01005446 return NOTIFY_DONE;
5447}
5448
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005449struct i915_vma *i915_gem_obj_to_ggtt(struct drm_i915_gem_object *obj)
5450{
5451 struct i915_vma *vma;
5452
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005453 vma = list_first_entry(&obj->vma_list, typeof(*vma), vma_link);
Daniel Vetter5dc383b2014-08-06 15:04:49 +02005454 if (vma->vm != i915_obj_to_ggtt(obj))
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005455 return NULL;
5456
5457 return vma;
5458}