blob: 27ea6bdebce761dbd8dca5340a4cd6e2bd32eaa3 [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);
Daniel Vettere62b59e2015-01-21 14:53:48 +010042static void i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj);
Ben Widawsky07fe0b12013-07-31 17:00:10 -070043static __must_check int
Ben Widawsky23f54482013-09-11 14:57:48 -070044i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj,
45 bool readonly);
Chris Wilsonc8725f32014-03-17 12:21:55 +000046static void
47i915_gem_object_retire(struct drm_i915_gem_object *obj);
48
Chris Wilson61050802012-04-17 15:31:31 +010049static void i915_gem_write_fence(struct drm_device *dev, int reg,
50 struct drm_i915_gem_object *obj);
51static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
52 struct drm_i915_fence_reg *fence,
53 bool enable);
54
Chris Wilsonceabbba52014-03-25 13:23:04 +000055static unsigned long i915_gem_shrinker_count(struct shrinker *shrinker,
Dave Chinner7dc19d52013-08-28 10:18:11 +100056 struct shrink_control *sc);
Chris Wilsonceabbba52014-03-25 13:23:04 +000057static unsigned long i915_gem_shrinker_scan(struct shrinker *shrinker,
Dave Chinner7dc19d52013-08-28 10:18:11 +100058 struct shrink_control *sc);
Chris Wilson2cfcd322014-05-20 08:28:43 +010059static int i915_gem_shrinker_oom(struct notifier_block *nb,
60 unsigned long event,
61 void *ptr);
Chris Wilsond9973b42013-10-04 10:33:00 +010062static unsigned long i915_gem_shrink_all(struct drm_i915_private *dev_priv);
Chris Wilson31169712009-09-14 16:50:28 +010063
Chris Wilsonc76ce032013-08-08 14:41:03 +010064static bool cpu_cache_is_coherent(struct drm_device *dev,
65 enum i915_cache_level level)
66{
67 return HAS_LLC(dev) || level != I915_CACHE_NONE;
68}
69
Chris Wilson2c225692013-08-09 12:26:45 +010070static bool cpu_write_needs_clflush(struct drm_i915_gem_object *obj)
71{
72 if (!cpu_cache_is_coherent(obj->base.dev, obj->cache_level))
73 return true;
74
75 return obj->pin_display;
76}
77
Chris Wilson61050802012-04-17 15:31:31 +010078static inline void i915_gem_object_fence_lost(struct drm_i915_gem_object *obj)
79{
80 if (obj->tiling_mode)
81 i915_gem_release_mmap(obj);
82
83 /* As we do not have an associated fence register, we will force
84 * a tiling change if we ever need to acquire one.
85 */
Chris Wilson5d82e3e2012-04-21 16:23:23 +010086 obj->fence_dirty = false;
Chris Wilson61050802012-04-17 15:31:31 +010087 obj->fence_reg = I915_FENCE_REG_NONE;
88}
89
Chris Wilson73aa8082010-09-30 11:46:12 +010090/* some bookkeeping */
91static void i915_gem_info_add_obj(struct drm_i915_private *dev_priv,
92 size_t size)
93{
Daniel Vetterc20e8352013-07-24 22:40:23 +020094 spin_lock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +010095 dev_priv->mm.object_count++;
96 dev_priv->mm.object_memory += size;
Daniel Vetterc20e8352013-07-24 22:40:23 +020097 spin_unlock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +010098}
99
100static void i915_gem_info_remove_obj(struct drm_i915_private *dev_priv,
101 size_t size)
102{
Daniel Vetterc20e8352013-07-24 22:40:23 +0200103 spin_lock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +0100104 dev_priv->mm.object_count--;
105 dev_priv->mm.object_memory -= size;
Daniel Vetterc20e8352013-07-24 22:40:23 +0200106 spin_unlock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +0100107}
108
Chris Wilson21dd3732011-01-26 15:55:56 +0000109static int
Daniel Vetter33196de2012-11-14 17:14:05 +0100110i915_gem_wait_for_error(struct i915_gpu_error *error)
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100111{
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100112 int ret;
113
Daniel Vetter7abb6902013-05-24 21:29:32 +0200114#define EXIT_COND (!i915_reset_in_progress(error) || \
115 i915_terminally_wedged(error))
Daniel Vetter1f83fee2012-11-15 17:17:22 +0100116 if (EXIT_COND)
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100117 return 0;
118
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200119 /*
120 * Only wait 10 seconds for the gpu reset to complete to avoid hanging
121 * userspace. If it takes that long something really bad is going on and
122 * we should simply try to bail out and fail as gracefully as possible.
123 */
Daniel Vetter1f83fee2012-11-15 17:17:22 +0100124 ret = wait_event_interruptible_timeout(error->reset_queue,
125 EXIT_COND,
126 10*HZ);
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200127 if (ret == 0) {
128 DRM_ERROR("Timed out waiting for the gpu reset to complete\n");
129 return -EIO;
130 } else if (ret < 0) {
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100131 return ret;
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200132 }
Daniel Vetter1f83fee2012-11-15 17:17:22 +0100133#undef EXIT_COND
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100134
Chris Wilson21dd3732011-01-26 15:55:56 +0000135 return 0;
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100136}
137
Chris Wilson54cf91d2010-11-25 18:00:26 +0000138int i915_mutex_lock_interruptible(struct drm_device *dev)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100139{
Daniel Vetter33196de2012-11-14 17:14:05 +0100140 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson76c1dec2010-09-25 11:22:51 +0100141 int ret;
142
Daniel Vetter33196de2012-11-14 17:14:05 +0100143 ret = i915_gem_wait_for_error(&dev_priv->gpu_error);
Chris Wilson76c1dec2010-09-25 11:22:51 +0100144 if (ret)
145 return ret;
146
147 ret = mutex_lock_interruptible(&dev->struct_mutex);
148 if (ret)
149 return ret;
150
Chris Wilson23bc5982010-09-29 16:10:57 +0100151 WARN_ON(i915_verify_lists(dev));
Chris Wilson76c1dec2010-09-25 11:22:51 +0100152 return 0;
153}
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100154
Eric Anholt673a3942008-07-30 12:06:12 -0700155int
Eric Anholt5a125c32008-10-22 21:40:13 -0700156i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000157 struct drm_file *file)
Eric Anholt5a125c32008-10-22 21:40:13 -0700158{
Chris Wilson73aa8082010-09-30 11:46:12 +0100159 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt5a125c32008-10-22 21:40:13 -0700160 struct drm_i915_gem_get_aperture *args = data;
Chris Wilson6299f992010-11-24 12:23:44 +0000161 struct drm_i915_gem_object *obj;
162 size_t pinned;
Eric Anholt5a125c32008-10-22 21:40:13 -0700163
Chris Wilson6299f992010-11-24 12:23:44 +0000164 pinned = 0;
Chris Wilson73aa8082010-09-30 11:46:12 +0100165 mutex_lock(&dev->struct_mutex);
Ben Widawsky35c20a62013-05-31 11:28:48 -0700166 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list)
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800167 if (i915_gem_obj_is_pinned(obj))
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700168 pinned += i915_gem_obj_ggtt_size(obj);
Chris Wilson73aa8082010-09-30 11:46:12 +0100169 mutex_unlock(&dev->struct_mutex);
Eric Anholt5a125c32008-10-22 21:40:13 -0700170
Ben Widawsky853ba5d2013-07-16 16:50:05 -0700171 args->aper_size = dev_priv->gtt.base.total;
Akshay Joshi0206e352011-08-16 15:34:10 -0400172 args->aper_available_size = args->aper_size - pinned;
Chris Wilson6299f992010-11-24 12:23:44 +0000173
Eric Anholt5a125c32008-10-22 21:40:13 -0700174 return 0;
175}
176
Chris Wilson6a2c4232014-11-04 04:51:40 -0800177static int
178i915_gem_object_get_pages_phys(struct drm_i915_gem_object *obj)
Chris Wilson00731152014-05-21 12:42:56 +0100179{
Chris Wilson6a2c4232014-11-04 04:51:40 -0800180 struct address_space *mapping = file_inode(obj->base.filp)->i_mapping;
181 char *vaddr = obj->phys_handle->vaddr;
182 struct sg_table *st;
183 struct scatterlist *sg;
184 int i;
Chris Wilson00731152014-05-21 12:42:56 +0100185
Chris Wilson6a2c4232014-11-04 04:51:40 -0800186 if (WARN_ON(i915_gem_object_needs_bit17_swizzle(obj)))
187 return -EINVAL;
Chris Wilson00731152014-05-21 12:42:56 +0100188
Chris Wilson6a2c4232014-11-04 04:51:40 -0800189 for (i = 0; i < obj->base.size / PAGE_SIZE; i++) {
190 struct page *page;
191 char *src;
192
193 page = shmem_read_mapping_page(mapping, i);
194 if (IS_ERR(page))
195 return PTR_ERR(page);
196
197 src = kmap_atomic(page);
198 memcpy(vaddr, src, PAGE_SIZE);
199 drm_clflush_virt_range(vaddr, PAGE_SIZE);
200 kunmap_atomic(src);
201
202 page_cache_release(page);
203 vaddr += PAGE_SIZE;
204 }
205
206 i915_gem_chipset_flush(obj->base.dev);
207
208 st = kmalloc(sizeof(*st), GFP_KERNEL);
209 if (st == NULL)
210 return -ENOMEM;
211
212 if (sg_alloc_table(st, 1, GFP_KERNEL)) {
213 kfree(st);
214 return -ENOMEM;
215 }
216
217 sg = st->sgl;
218 sg->offset = 0;
219 sg->length = obj->base.size;
220
221 sg_dma_address(sg) = obj->phys_handle->busaddr;
222 sg_dma_len(sg) = obj->base.size;
223
224 obj->pages = st;
225 obj->has_dma_mapping = true;
226 return 0;
227}
228
229static void
230i915_gem_object_put_pages_phys(struct drm_i915_gem_object *obj)
231{
232 int ret;
233
234 BUG_ON(obj->madv == __I915_MADV_PURGED);
235
236 ret = i915_gem_object_set_to_cpu_domain(obj, true);
237 if (ret) {
238 /* In the event of a disaster, abandon all caches and
239 * hope for the best.
240 */
241 WARN_ON(ret != -EIO);
242 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
243 }
244
245 if (obj->madv == I915_MADV_DONTNEED)
246 obj->dirty = 0;
247
248 if (obj->dirty) {
Chris Wilson00731152014-05-21 12:42:56 +0100249 struct address_space *mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800250 char *vaddr = obj->phys_handle->vaddr;
Chris Wilson00731152014-05-21 12:42:56 +0100251 int i;
252
253 for (i = 0; i < obj->base.size / PAGE_SIZE; i++) {
Chris Wilson6a2c4232014-11-04 04:51:40 -0800254 struct page *page;
255 char *dst;
Chris Wilson00731152014-05-21 12:42:56 +0100256
Chris Wilson6a2c4232014-11-04 04:51:40 -0800257 page = shmem_read_mapping_page(mapping, i);
258 if (IS_ERR(page))
259 continue;
260
261 dst = kmap_atomic(page);
262 drm_clflush_virt_range(vaddr, PAGE_SIZE);
263 memcpy(dst, vaddr, PAGE_SIZE);
264 kunmap_atomic(dst);
265
266 set_page_dirty(page);
267 if (obj->madv == I915_MADV_WILLNEED)
Chris Wilson00731152014-05-21 12:42:56 +0100268 mark_page_accessed(page);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800269 page_cache_release(page);
Chris Wilson00731152014-05-21 12:42:56 +0100270 vaddr += PAGE_SIZE;
271 }
Chris Wilson6a2c4232014-11-04 04:51:40 -0800272 obj->dirty = 0;
Chris Wilson00731152014-05-21 12:42:56 +0100273 }
274
Chris Wilson6a2c4232014-11-04 04:51:40 -0800275 sg_free_table(obj->pages);
276 kfree(obj->pages);
277
278 obj->has_dma_mapping = false;
279}
280
281static void
282i915_gem_object_release_phys(struct drm_i915_gem_object *obj)
283{
284 drm_pci_free(obj->base.dev, obj->phys_handle);
285}
286
287static const struct drm_i915_gem_object_ops i915_gem_phys_ops = {
288 .get_pages = i915_gem_object_get_pages_phys,
289 .put_pages = i915_gem_object_put_pages_phys,
290 .release = i915_gem_object_release_phys,
291};
292
293static int
294drop_pages(struct drm_i915_gem_object *obj)
295{
296 struct i915_vma *vma, *next;
297 int ret;
298
299 drm_gem_object_reference(&obj->base);
300 list_for_each_entry_safe(vma, next, &obj->vma_list, vma_link)
301 if (i915_vma_unbind(vma))
302 break;
303
304 ret = i915_gem_object_put_pages(obj);
305 drm_gem_object_unreference(&obj->base);
306
307 return ret;
Chris Wilson00731152014-05-21 12:42:56 +0100308}
309
310int
311i915_gem_object_attach_phys(struct drm_i915_gem_object *obj,
312 int align)
313{
314 drm_dma_handle_t *phys;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800315 int ret;
Chris Wilson00731152014-05-21 12:42:56 +0100316
317 if (obj->phys_handle) {
318 if ((unsigned long)obj->phys_handle->vaddr & (align -1))
319 return -EBUSY;
320
321 return 0;
322 }
323
324 if (obj->madv != I915_MADV_WILLNEED)
325 return -EFAULT;
326
327 if (obj->base.filp == NULL)
328 return -EINVAL;
329
Chris Wilson6a2c4232014-11-04 04:51:40 -0800330 ret = drop_pages(obj);
331 if (ret)
332 return ret;
333
Chris Wilson00731152014-05-21 12:42:56 +0100334 /* create a new object */
335 phys = drm_pci_alloc(obj->base.dev, obj->base.size, align);
336 if (!phys)
337 return -ENOMEM;
338
Chris Wilson00731152014-05-21 12:42:56 +0100339 obj->phys_handle = phys;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800340 obj->ops = &i915_gem_phys_ops;
341
342 return i915_gem_object_get_pages(obj);
Chris Wilson00731152014-05-21 12:42:56 +0100343}
344
345static int
346i915_gem_phys_pwrite(struct drm_i915_gem_object *obj,
347 struct drm_i915_gem_pwrite *args,
348 struct drm_file *file_priv)
349{
350 struct drm_device *dev = obj->base.dev;
351 void *vaddr = obj->phys_handle->vaddr + args->offset;
352 char __user *user_data = to_user_ptr(args->data_ptr);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800353 int ret;
354
355 /* We manually control the domain here and pretend that it
356 * remains coherent i.e. in the GTT domain, like shmem_pwrite.
357 */
358 ret = i915_gem_object_wait_rendering(obj, false);
359 if (ret)
360 return ret;
Chris Wilson00731152014-05-21 12:42:56 +0100361
362 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
363 unsigned long unwritten;
364
365 /* The physical object once assigned is fixed for the lifetime
366 * of the obj, so we can safely drop the lock and continue
367 * to access vaddr.
368 */
369 mutex_unlock(&dev->struct_mutex);
370 unwritten = copy_from_user(vaddr, user_data, args->size);
371 mutex_lock(&dev->struct_mutex);
372 if (unwritten)
373 return -EFAULT;
374 }
375
Chris Wilson6a2c4232014-11-04 04:51:40 -0800376 drm_clflush_virt_range(vaddr, args->size);
Chris Wilson00731152014-05-21 12:42:56 +0100377 i915_gem_chipset_flush(dev);
378 return 0;
379}
380
Chris Wilson42dcedd2012-11-15 11:32:30 +0000381void *i915_gem_object_alloc(struct drm_device *dev)
382{
383 struct drm_i915_private *dev_priv = dev->dev_private;
Joe Perchesfac15c12013-08-29 13:11:07 -0700384 return kmem_cache_zalloc(dev_priv->slab, GFP_KERNEL);
Chris Wilson42dcedd2012-11-15 11:32:30 +0000385}
386
387void i915_gem_object_free(struct drm_i915_gem_object *obj)
388{
389 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
390 kmem_cache_free(dev_priv->slab, obj);
391}
392
Dave Airlieff72145b2011-02-07 12:16:14 +1000393static int
394i915_gem_create(struct drm_file *file,
395 struct drm_device *dev,
396 uint64_t size,
397 uint32_t *handle_p)
Eric Anholt673a3942008-07-30 12:06:12 -0700398{
Chris Wilson05394f32010-11-08 19:18:58 +0000399 struct drm_i915_gem_object *obj;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300400 int ret;
401 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700402
Dave Airlieff72145b2011-02-07 12:16:14 +1000403 size = roundup(size, PAGE_SIZE);
Chris Wilson8ffc0242011-09-14 14:14:28 +0200404 if (size == 0)
405 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700406
407 /* Allocate the new object */
Dave Airlieff72145b2011-02-07 12:16:14 +1000408 obj = i915_gem_alloc_object(dev, size);
Eric Anholt673a3942008-07-30 12:06:12 -0700409 if (obj == NULL)
410 return -ENOMEM;
411
Chris Wilson05394f32010-11-08 19:18:58 +0000412 ret = drm_gem_handle_create(file, &obj->base, &handle);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100413 /* drop reference from allocate - handle holds it now */
Daniel Vetterd861e332013-07-24 23:25:03 +0200414 drm_gem_object_unreference_unlocked(&obj->base);
415 if (ret)
416 return ret;
Chris Wilson202f2fe2010-10-14 13:20:40 +0100417
Dave Airlieff72145b2011-02-07 12:16:14 +1000418 *handle_p = handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700419 return 0;
420}
421
Dave Airlieff72145b2011-02-07 12:16:14 +1000422int
423i915_gem_dumb_create(struct drm_file *file,
424 struct drm_device *dev,
425 struct drm_mode_create_dumb *args)
426{
427 /* have to work out size/pitch and return them */
Paulo Zanonide45eaf2013-10-18 18:48:24 -0300428 args->pitch = ALIGN(args->width * DIV_ROUND_UP(args->bpp, 8), 64);
Dave Airlieff72145b2011-02-07 12:16:14 +1000429 args->size = args->pitch * args->height;
430 return i915_gem_create(file, dev,
Dave Airlieda6b51d2014-12-24 13:11:17 +1000431 args->size, &args->handle);
Dave Airlieff72145b2011-02-07 12:16:14 +1000432}
433
Dave Airlieff72145b2011-02-07 12:16:14 +1000434/**
435 * Creates a new mm object and returns a handle to it.
436 */
437int
438i915_gem_create_ioctl(struct drm_device *dev, void *data,
439 struct drm_file *file)
440{
441 struct drm_i915_gem_create *args = data;
Daniel Vetter63ed2cb2012-04-23 16:50:50 +0200442
Dave Airlieff72145b2011-02-07 12:16:14 +1000443 return i915_gem_create(file, dev,
Dave Airlieda6b51d2014-12-24 13:11:17 +1000444 args->size, &args->handle);
Dave Airlieff72145b2011-02-07 12:16:14 +1000445}
446
Daniel Vetter8c599672011-12-14 13:57:31 +0100447static inline int
Daniel Vetter8461d222011-12-14 13:57:32 +0100448__copy_to_user_swizzled(char __user *cpu_vaddr,
449 const char *gpu_vaddr, int gpu_offset,
450 int length)
451{
452 int ret, cpu_offset = 0;
453
454 while (length > 0) {
455 int cacheline_end = ALIGN(gpu_offset + 1, 64);
456 int this_length = min(cacheline_end - gpu_offset, length);
457 int swizzled_gpu_offset = gpu_offset ^ 64;
458
459 ret = __copy_to_user(cpu_vaddr + cpu_offset,
460 gpu_vaddr + swizzled_gpu_offset,
461 this_length);
462 if (ret)
463 return ret + length;
464
465 cpu_offset += this_length;
466 gpu_offset += this_length;
467 length -= this_length;
468 }
469
470 return 0;
471}
472
473static inline int
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700474__copy_from_user_swizzled(char *gpu_vaddr, int gpu_offset,
475 const char __user *cpu_vaddr,
Daniel Vetter8c599672011-12-14 13:57:31 +0100476 int length)
477{
478 int ret, cpu_offset = 0;
479
480 while (length > 0) {
481 int cacheline_end = ALIGN(gpu_offset + 1, 64);
482 int this_length = min(cacheline_end - gpu_offset, length);
483 int swizzled_gpu_offset = gpu_offset ^ 64;
484
485 ret = __copy_from_user(gpu_vaddr + swizzled_gpu_offset,
486 cpu_vaddr + cpu_offset,
487 this_length);
488 if (ret)
489 return ret + length;
490
491 cpu_offset += this_length;
492 gpu_offset += this_length;
493 length -= this_length;
494 }
495
496 return 0;
497}
498
Brad Volkin4c914c02014-02-18 10:15:45 -0800499/*
500 * Pins the specified object's pages and synchronizes the object with
501 * GPU accesses. Sets needs_clflush to non-zero if the caller should
502 * flush the object from the CPU cache.
503 */
504int i915_gem_obj_prepare_shmem_read(struct drm_i915_gem_object *obj,
505 int *needs_clflush)
506{
507 int ret;
508
509 *needs_clflush = 0;
510
511 if (!obj->base.filp)
512 return -EINVAL;
513
514 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU)) {
515 /* If we're not in the cpu read domain, set ourself into the gtt
516 * read domain and manually flush cachelines (if required). This
517 * optimizes for the case when the gpu will dirty the data
518 * anyway again before the next pread happens. */
519 *needs_clflush = !cpu_cache_is_coherent(obj->base.dev,
520 obj->cache_level);
521 ret = i915_gem_object_wait_rendering(obj, true);
522 if (ret)
523 return ret;
Chris Wilsonc8725f32014-03-17 12:21:55 +0000524
525 i915_gem_object_retire(obj);
Brad Volkin4c914c02014-02-18 10:15:45 -0800526 }
527
528 ret = i915_gem_object_get_pages(obj);
529 if (ret)
530 return ret;
531
532 i915_gem_object_pin_pages(obj);
533
534 return ret;
535}
536
Daniel Vetterd174bd62012-03-25 19:47:40 +0200537/* Per-page copy function for the shmem pread fastpath.
538 * Flushes invalid cachelines before reading the target if
539 * needs_clflush is set. */
Eric Anholteb014592009-03-10 11:44:52 -0700540static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200541shmem_pread_fast(struct page *page, int shmem_page_offset, int page_length,
542 char __user *user_data,
543 bool page_do_bit17_swizzling, bool needs_clflush)
544{
545 char *vaddr;
546 int ret;
547
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200548 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200549 return -EINVAL;
550
551 vaddr = kmap_atomic(page);
552 if (needs_clflush)
553 drm_clflush_virt_range(vaddr + shmem_page_offset,
554 page_length);
555 ret = __copy_to_user_inatomic(user_data,
556 vaddr + shmem_page_offset,
557 page_length);
558 kunmap_atomic(vaddr);
559
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100560 return ret ? -EFAULT : 0;
Daniel Vetterd174bd62012-03-25 19:47:40 +0200561}
562
Daniel Vetter23c18c72012-03-25 19:47:42 +0200563static void
564shmem_clflush_swizzled_range(char *addr, unsigned long length,
565 bool swizzled)
566{
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200567 if (unlikely(swizzled)) {
Daniel Vetter23c18c72012-03-25 19:47:42 +0200568 unsigned long start = (unsigned long) addr;
569 unsigned long end = (unsigned long) addr + length;
570
571 /* For swizzling simply ensure that we always flush both
572 * channels. Lame, but simple and it works. Swizzled
573 * pwrite/pread is far from a hotpath - current userspace
574 * doesn't use it at all. */
575 start = round_down(start, 128);
576 end = round_up(end, 128);
577
578 drm_clflush_virt_range((void *)start, end - start);
579 } else {
580 drm_clflush_virt_range(addr, length);
581 }
582
583}
584
Daniel Vetterd174bd62012-03-25 19:47:40 +0200585/* Only difference to the fast-path function is that this can handle bit17
586 * and uses non-atomic copy and kmap functions. */
587static int
588shmem_pread_slow(struct page *page, int shmem_page_offset, int page_length,
589 char __user *user_data,
590 bool page_do_bit17_swizzling, bool needs_clflush)
591{
592 char *vaddr;
593 int ret;
594
595 vaddr = kmap(page);
596 if (needs_clflush)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200597 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
598 page_length,
599 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200600
601 if (page_do_bit17_swizzling)
602 ret = __copy_to_user_swizzled(user_data,
603 vaddr, shmem_page_offset,
604 page_length);
605 else
606 ret = __copy_to_user(user_data,
607 vaddr + shmem_page_offset,
608 page_length);
609 kunmap(page);
610
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100611 return ret ? - EFAULT : 0;
Daniel Vetterd174bd62012-03-25 19:47:40 +0200612}
613
Eric Anholteb014592009-03-10 11:44:52 -0700614static int
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200615i915_gem_shmem_pread(struct drm_device *dev,
616 struct drm_i915_gem_object *obj,
617 struct drm_i915_gem_pread *args,
618 struct drm_file *file)
Eric Anholteb014592009-03-10 11:44:52 -0700619{
Daniel Vetter8461d222011-12-14 13:57:32 +0100620 char __user *user_data;
Eric Anholteb014592009-03-10 11:44:52 -0700621 ssize_t remain;
Daniel Vetter8461d222011-12-14 13:57:32 +0100622 loff_t offset;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100623 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8461d222011-12-14 13:57:32 +0100624 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vetter96d79b52012-03-25 19:47:36 +0200625 int prefaulted = 0;
Daniel Vetter84897312012-03-25 19:47:31 +0200626 int needs_clflush = 0;
Imre Deak67d5a502013-02-18 19:28:02 +0200627 struct sg_page_iter sg_iter;
Eric Anholteb014592009-03-10 11:44:52 -0700628
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200629 user_data = to_user_ptr(args->data_ptr);
Eric Anholteb014592009-03-10 11:44:52 -0700630 remain = args->size;
631
Daniel Vetter8461d222011-12-14 13:57:32 +0100632 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700633
Brad Volkin4c914c02014-02-18 10:15:45 -0800634 ret = i915_gem_obj_prepare_shmem_read(obj, &needs_clflush);
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100635 if (ret)
636 return ret;
637
Eric Anholteb014592009-03-10 11:44:52 -0700638 offset = args->offset;
Daniel Vetter8461d222011-12-14 13:57:32 +0100639
Imre Deak67d5a502013-02-18 19:28:02 +0200640 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents,
641 offset >> PAGE_SHIFT) {
Imre Deak2db76d72013-03-26 15:14:18 +0200642 struct page *page = sg_page_iter_page(&sg_iter);
Chris Wilson9da3da62012-06-01 15:20:22 +0100643
644 if (remain <= 0)
645 break;
646
Eric Anholteb014592009-03-10 11:44:52 -0700647 /* Operation in this page
648 *
Eric Anholteb014592009-03-10 11:44:52 -0700649 * shmem_page_offset = offset within page in shmem file
Eric Anholteb014592009-03-10 11:44:52 -0700650 * page_length = bytes to copy for this page
651 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100652 shmem_page_offset = offset_in_page(offset);
Eric Anholteb014592009-03-10 11:44:52 -0700653 page_length = remain;
654 if ((shmem_page_offset + page_length) > PAGE_SIZE)
655 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholteb014592009-03-10 11:44:52 -0700656
Daniel Vetter8461d222011-12-14 13:57:32 +0100657 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
658 (page_to_phys(page) & (1 << 17)) != 0;
659
Daniel Vetterd174bd62012-03-25 19:47:40 +0200660 ret = shmem_pread_fast(page, shmem_page_offset, page_length,
661 user_data, page_do_bit17_swizzling,
662 needs_clflush);
663 if (ret == 0)
664 goto next_page;
Eric Anholteb014592009-03-10 11:44:52 -0700665
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200666 mutex_unlock(&dev->struct_mutex);
667
Jani Nikulad330a952014-01-21 11:24:25 +0200668 if (likely(!i915.prefault_disable) && !prefaulted) {
Daniel Vetterf56f8212012-03-25 19:47:41 +0200669 ret = fault_in_multipages_writeable(user_data, remain);
Daniel Vetter96d79b52012-03-25 19:47:36 +0200670 /* Userspace is tricking us, but we've already clobbered
671 * its pages with the prefault and promised to write the
672 * data up to the first fault. Hence ignore any errors
673 * and just continue. */
674 (void)ret;
675 prefaulted = 1;
676 }
677
Daniel Vetterd174bd62012-03-25 19:47:40 +0200678 ret = shmem_pread_slow(page, shmem_page_offset, page_length,
679 user_data, page_do_bit17_swizzling,
680 needs_clflush);
Eric Anholteb014592009-03-10 11:44:52 -0700681
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200682 mutex_lock(&dev->struct_mutex);
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100683
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100684 if (ret)
Daniel Vetter8461d222011-12-14 13:57:32 +0100685 goto out;
Daniel Vetter8461d222011-12-14 13:57:32 +0100686
Chris Wilson17793c92014-03-07 08:30:36 +0000687next_page:
Eric Anholteb014592009-03-10 11:44:52 -0700688 remain -= page_length;
Daniel Vetter8461d222011-12-14 13:57:32 +0100689 user_data += page_length;
Eric Anholteb014592009-03-10 11:44:52 -0700690 offset += page_length;
691 }
692
Chris Wilson4f27b752010-10-14 15:26:45 +0100693out:
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100694 i915_gem_object_unpin_pages(obj);
695
Eric Anholteb014592009-03-10 11:44:52 -0700696 return ret;
697}
698
Eric Anholt673a3942008-07-30 12:06:12 -0700699/**
700 * Reads data from the object referenced by handle.
701 *
702 * On error, the contents of *data are undefined.
703 */
704int
705i915_gem_pread_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000706 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700707{
708 struct drm_i915_gem_pread *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000709 struct drm_i915_gem_object *obj;
Chris Wilson35b62a82010-09-26 20:23:38 +0100710 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700711
Chris Wilson51311d02010-11-17 09:10:42 +0000712 if (args->size == 0)
713 return 0;
714
715 if (!access_ok(VERIFY_WRITE,
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200716 to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +0000717 args->size))
718 return -EFAULT;
719
Chris Wilson4f27b752010-10-14 15:26:45 +0100720 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100721 if (ret)
Chris Wilson4f27b752010-10-14 15:26:45 +0100722 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700723
Chris Wilson05394f32010-11-08 19:18:58 +0000724 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000725 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100726 ret = -ENOENT;
727 goto unlock;
Chris Wilson4f27b752010-10-14 15:26:45 +0100728 }
Eric Anholt673a3942008-07-30 12:06:12 -0700729
Chris Wilson7dcd2492010-09-26 20:21:44 +0100730 /* Bounds check source. */
Chris Wilson05394f32010-11-08 19:18:58 +0000731 if (args->offset > obj->base.size ||
732 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100733 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100734 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100735 }
736
Daniel Vetter1286ff72012-05-10 15:25:09 +0200737 /* prime objects have no backing filp to GEM pread/pwrite
738 * pages from.
739 */
740 if (!obj->base.filp) {
741 ret = -EINVAL;
742 goto out;
743 }
744
Chris Wilsondb53a302011-02-03 11:57:46 +0000745 trace_i915_gem_object_pread(obj, args->offset, args->size);
746
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200747 ret = i915_gem_shmem_pread(dev, obj, args, file);
Eric Anholt673a3942008-07-30 12:06:12 -0700748
Chris Wilson35b62a82010-09-26 20:23:38 +0100749out:
Chris Wilson05394f32010-11-08 19:18:58 +0000750 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100751unlock:
Chris Wilson4f27b752010-10-14 15:26:45 +0100752 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700753 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700754}
755
Keith Packard0839ccb2008-10-30 19:38:48 -0700756/* This is the fast write path which cannot handle
757 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700758 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700759
Keith Packard0839ccb2008-10-30 19:38:48 -0700760static inline int
761fast_user_write(struct io_mapping *mapping,
762 loff_t page_base, int page_offset,
763 char __user *user_data,
764 int length)
765{
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700766 void __iomem *vaddr_atomic;
767 void *vaddr;
Keith Packard0839ccb2008-10-30 19:38:48 -0700768 unsigned long unwritten;
769
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700770 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base);
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700771 /* We can use the cpu mem copy function because this is X86. */
772 vaddr = (void __force*)vaddr_atomic + page_offset;
773 unwritten = __copy_from_user_inatomic_nocache(vaddr,
Keith Packard0839ccb2008-10-30 19:38:48 -0700774 user_data, length);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700775 io_mapping_unmap_atomic(vaddr_atomic);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100776 return unwritten;
Keith Packard0839ccb2008-10-30 19:38:48 -0700777}
778
Eric Anholt3de09aa2009-03-09 09:42:23 -0700779/**
780 * This is the fast pwrite path, where we copy the data directly from the
781 * user into the GTT, uncached.
782 */
Eric Anholt673a3942008-07-30 12:06:12 -0700783static int
Chris Wilson05394f32010-11-08 19:18:58 +0000784i915_gem_gtt_pwrite_fast(struct drm_device *dev,
785 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -0700786 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000787 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700788{
Jani Nikula3e31c6c2014-03-31 14:27:16 +0300789 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700790 ssize_t remain;
Keith Packard0839ccb2008-10-30 19:38:48 -0700791 loff_t offset, page_base;
Eric Anholt673a3942008-07-30 12:06:12 -0700792 char __user *user_data;
Daniel Vetter935aaa62012-03-25 19:47:35 +0200793 int page_offset, page_length, ret;
794
Daniel Vetter1ec9e262014-02-14 14:01:11 +0100795 ret = i915_gem_obj_ggtt_pin(obj, 0, PIN_MAPPABLE | PIN_NONBLOCK);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200796 if (ret)
797 goto out;
798
799 ret = i915_gem_object_set_to_gtt_domain(obj, true);
800 if (ret)
801 goto out_unpin;
802
803 ret = i915_gem_object_put_fence(obj);
804 if (ret)
805 goto out_unpin;
Eric Anholt673a3942008-07-30 12:06:12 -0700806
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200807 user_data = to_user_ptr(args->data_ptr);
Eric Anholt673a3942008-07-30 12:06:12 -0700808 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700809
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700810 offset = i915_gem_obj_ggtt_offset(obj) + args->offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700811
812 while (remain > 0) {
813 /* Operation in this page
814 *
Keith Packard0839ccb2008-10-30 19:38:48 -0700815 * page_base = page offset within aperture
816 * page_offset = offset within page
817 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -0700818 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100819 page_base = offset & PAGE_MASK;
820 page_offset = offset_in_page(offset);
Keith Packard0839ccb2008-10-30 19:38:48 -0700821 page_length = remain;
822 if ((page_offset + remain) > PAGE_SIZE)
823 page_length = PAGE_SIZE - page_offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700824
Keith Packard0839ccb2008-10-30 19:38:48 -0700825 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -0700826 * source page isn't available. Return the error and we'll
827 * retry in the slow path.
Keith Packard0839ccb2008-10-30 19:38:48 -0700828 */
Ben Widawsky5d4545a2013-01-17 12:45:15 -0800829 if (fast_user_write(dev_priv->gtt.mappable, page_base,
Daniel Vetter935aaa62012-03-25 19:47:35 +0200830 page_offset, user_data, page_length)) {
831 ret = -EFAULT;
832 goto out_unpin;
833 }
Eric Anholt673a3942008-07-30 12:06:12 -0700834
Keith Packard0839ccb2008-10-30 19:38:48 -0700835 remain -= page_length;
836 user_data += page_length;
837 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700838 }
Eric Anholt673a3942008-07-30 12:06:12 -0700839
Daniel Vetter935aaa62012-03-25 19:47:35 +0200840out_unpin:
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800841 i915_gem_object_ggtt_unpin(obj);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200842out:
Eric Anholt3de09aa2009-03-09 09:42:23 -0700843 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700844}
845
Daniel Vetterd174bd62012-03-25 19:47:40 +0200846/* Per-page copy function for the shmem pwrite fastpath.
847 * Flushes invalid cachelines before writing to the target if
848 * needs_clflush_before is set and flushes out any written cachelines after
849 * writing if needs_clflush is set. */
Eric Anholt673a3942008-07-30 12:06:12 -0700850static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200851shmem_pwrite_fast(struct page *page, int shmem_page_offset, int page_length,
852 char __user *user_data,
853 bool page_do_bit17_swizzling,
854 bool needs_clflush_before,
855 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700856{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200857 char *vaddr;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700858 int ret;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700859
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200860 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200861 return -EINVAL;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700862
Daniel Vetterd174bd62012-03-25 19:47:40 +0200863 vaddr = kmap_atomic(page);
864 if (needs_clflush_before)
865 drm_clflush_virt_range(vaddr + shmem_page_offset,
866 page_length);
Chris Wilsonc2831a92014-03-07 08:30:37 +0000867 ret = __copy_from_user_inatomic(vaddr + shmem_page_offset,
868 user_data, page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200869 if (needs_clflush_after)
870 drm_clflush_virt_range(vaddr + shmem_page_offset,
871 page_length);
872 kunmap_atomic(vaddr);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700873
Chris Wilson755d2212012-09-04 21:02:55 +0100874 return ret ? -EFAULT : 0;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700875}
876
Daniel Vetterd174bd62012-03-25 19:47:40 +0200877/* Only difference to the fast-path function is that this can handle bit17
878 * and uses non-atomic copy and kmap functions. */
Eric Anholt3043c602008-10-02 12:24:47 -0700879static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200880shmem_pwrite_slow(struct page *page, int shmem_page_offset, int page_length,
881 char __user *user_data,
882 bool page_do_bit17_swizzling,
883 bool needs_clflush_before,
884 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700885{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200886 char *vaddr;
887 int ret;
Eric Anholt40123c12009-03-09 13:42:30 -0700888
Daniel Vetterd174bd62012-03-25 19:47:40 +0200889 vaddr = kmap(page);
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200890 if (unlikely(needs_clflush_before || page_do_bit17_swizzling))
Daniel Vetter23c18c72012-03-25 19:47:42 +0200891 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
892 page_length,
893 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200894 if (page_do_bit17_swizzling)
895 ret = __copy_from_user_swizzled(vaddr, shmem_page_offset,
Chris Wilsone5281cc2010-10-28 13:45:36 +0100896 user_data,
897 page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200898 else
899 ret = __copy_from_user(vaddr + shmem_page_offset,
900 user_data,
901 page_length);
902 if (needs_clflush_after)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200903 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
904 page_length,
905 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200906 kunmap(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100907
Chris Wilson755d2212012-09-04 21:02:55 +0100908 return ret ? -EFAULT : 0;
Eric Anholt40123c12009-03-09 13:42:30 -0700909}
910
Eric Anholt40123c12009-03-09 13:42:30 -0700911static int
Daniel Vettere244a442012-03-25 19:47:28 +0200912i915_gem_shmem_pwrite(struct drm_device *dev,
913 struct drm_i915_gem_object *obj,
914 struct drm_i915_gem_pwrite *args,
915 struct drm_file *file)
Eric Anholt40123c12009-03-09 13:42:30 -0700916{
Eric Anholt40123c12009-03-09 13:42:30 -0700917 ssize_t remain;
Daniel Vetter8c599672011-12-14 13:57:31 +0100918 loff_t offset;
919 char __user *user_data;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100920 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8c599672011-12-14 13:57:31 +0100921 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vettere244a442012-03-25 19:47:28 +0200922 int hit_slowpath = 0;
Daniel Vetter58642882012-03-25 19:47:37 +0200923 int needs_clflush_after = 0;
924 int needs_clflush_before = 0;
Imre Deak67d5a502013-02-18 19:28:02 +0200925 struct sg_page_iter sg_iter;
Eric Anholt40123c12009-03-09 13:42:30 -0700926
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200927 user_data = to_user_ptr(args->data_ptr);
Eric Anholt40123c12009-03-09 13:42:30 -0700928 remain = args->size;
929
Daniel Vetter8c599672011-12-14 13:57:31 +0100930 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700931
Daniel Vetter58642882012-03-25 19:47:37 +0200932 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
933 /* If we're not in the cpu write domain, set ourself into the gtt
934 * write domain and manually flush cachelines (if required). This
935 * optimizes for the case when the gpu will use the data
936 * right away and we therefore have to clflush anyway. */
Chris Wilson2c225692013-08-09 12:26:45 +0100937 needs_clflush_after = cpu_write_needs_clflush(obj);
Ben Widawsky23f54482013-09-11 14:57:48 -0700938 ret = i915_gem_object_wait_rendering(obj, false);
939 if (ret)
940 return ret;
Chris Wilsonc8725f32014-03-17 12:21:55 +0000941
942 i915_gem_object_retire(obj);
Daniel Vetter58642882012-03-25 19:47:37 +0200943 }
Chris Wilsonc76ce032013-08-08 14:41:03 +0100944 /* Same trick applies to invalidate partially written cachelines read
945 * before writing. */
946 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0)
947 needs_clflush_before =
948 !cpu_cache_is_coherent(dev, obj->cache_level);
Daniel Vetter58642882012-03-25 19:47:37 +0200949
Chris Wilson755d2212012-09-04 21:02:55 +0100950 ret = i915_gem_object_get_pages(obj);
951 if (ret)
952 return ret;
953
954 i915_gem_object_pin_pages(obj);
955
Eric Anholt40123c12009-03-09 13:42:30 -0700956 offset = args->offset;
Chris Wilson05394f32010-11-08 19:18:58 +0000957 obj->dirty = 1;
Eric Anholt40123c12009-03-09 13:42:30 -0700958
Imre Deak67d5a502013-02-18 19:28:02 +0200959 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents,
960 offset >> PAGE_SHIFT) {
Imre Deak2db76d72013-03-26 15:14:18 +0200961 struct page *page = sg_page_iter_page(&sg_iter);
Daniel Vetter58642882012-03-25 19:47:37 +0200962 int partial_cacheline_write;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100963
Chris Wilson9da3da62012-06-01 15:20:22 +0100964 if (remain <= 0)
965 break;
966
Eric Anholt40123c12009-03-09 13:42:30 -0700967 /* Operation in this page
968 *
Eric Anholt40123c12009-03-09 13:42:30 -0700969 * shmem_page_offset = offset within page in shmem file
Eric Anholt40123c12009-03-09 13:42:30 -0700970 * page_length = bytes to copy for this page
971 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100972 shmem_page_offset = offset_in_page(offset);
Eric Anholt40123c12009-03-09 13:42:30 -0700973
974 page_length = remain;
975 if ((shmem_page_offset + page_length) > PAGE_SIZE)
976 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700977
Daniel Vetter58642882012-03-25 19:47:37 +0200978 /* If we don't overwrite a cacheline completely we need to be
979 * careful to have up-to-date data by first clflushing. Don't
980 * overcomplicate things and flush the entire patch. */
981 partial_cacheline_write = needs_clflush_before &&
982 ((shmem_page_offset | page_length)
983 & (boot_cpu_data.x86_clflush_size - 1));
984
Daniel Vetter8c599672011-12-14 13:57:31 +0100985 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
986 (page_to_phys(page) & (1 << 17)) != 0;
987
Daniel Vetterd174bd62012-03-25 19:47:40 +0200988 ret = shmem_pwrite_fast(page, shmem_page_offset, page_length,
989 user_data, page_do_bit17_swizzling,
990 partial_cacheline_write,
991 needs_clflush_after);
992 if (ret == 0)
993 goto next_page;
Eric Anholt40123c12009-03-09 13:42:30 -0700994
Daniel Vettere244a442012-03-25 19:47:28 +0200995 hit_slowpath = 1;
Daniel Vettere244a442012-03-25 19:47:28 +0200996 mutex_unlock(&dev->struct_mutex);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200997 ret = shmem_pwrite_slow(page, shmem_page_offset, page_length,
998 user_data, page_do_bit17_swizzling,
999 partial_cacheline_write,
1000 needs_clflush_after);
Eric Anholt40123c12009-03-09 13:42:30 -07001001
Daniel Vettere244a442012-03-25 19:47:28 +02001002 mutex_lock(&dev->struct_mutex);
Chris Wilson755d2212012-09-04 21:02:55 +01001003
Chris Wilson755d2212012-09-04 21:02:55 +01001004 if (ret)
Daniel Vetter8c599672011-12-14 13:57:31 +01001005 goto out;
Daniel Vetter8c599672011-12-14 13:57:31 +01001006
Chris Wilson17793c92014-03-07 08:30:36 +00001007next_page:
Eric Anholt40123c12009-03-09 13:42:30 -07001008 remain -= page_length;
Daniel Vetter8c599672011-12-14 13:57:31 +01001009 user_data += page_length;
Eric Anholt40123c12009-03-09 13:42:30 -07001010 offset += page_length;
1011 }
1012
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001013out:
Chris Wilson755d2212012-09-04 21:02:55 +01001014 i915_gem_object_unpin_pages(obj);
1015
Daniel Vettere244a442012-03-25 19:47:28 +02001016 if (hit_slowpath) {
Daniel Vetter8dcf0152012-11-15 16:53:58 +01001017 /*
1018 * Fixup: Flush cpu caches in case we didn't flush the dirty
1019 * cachelines in-line while writing and the object moved
1020 * out of the cpu write domain while we've dropped the lock.
1021 */
1022 if (!needs_clflush_after &&
1023 obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
Chris Wilson000433b2013-08-08 14:41:09 +01001024 if (i915_gem_clflush_object(obj, obj->pin_display))
1025 i915_gem_chipset_flush(dev);
Daniel Vettere244a442012-03-25 19:47:28 +02001026 }
Daniel Vetter8c599672011-12-14 13:57:31 +01001027 }
Eric Anholt40123c12009-03-09 13:42:30 -07001028
Daniel Vetter58642882012-03-25 19:47:37 +02001029 if (needs_clflush_after)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08001030 i915_gem_chipset_flush(dev);
Daniel Vetter58642882012-03-25 19:47:37 +02001031
Eric Anholt40123c12009-03-09 13:42:30 -07001032 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001033}
1034
1035/**
1036 * Writes data to the object referenced by handle.
1037 *
1038 * On error, the contents of the buffer that were to be modified are undefined.
1039 */
1040int
1041i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001042 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001043{
Imre Deak5d77d9c2014-11-12 16:40:35 +02001044 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001045 struct drm_i915_gem_pwrite *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001046 struct drm_i915_gem_object *obj;
Chris Wilson51311d02010-11-17 09:10:42 +00001047 int ret;
1048
1049 if (args->size == 0)
1050 return 0;
1051
1052 if (!access_ok(VERIFY_READ,
Ville Syrjälä2bb46292013-02-22 16:12:51 +02001053 to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +00001054 args->size))
1055 return -EFAULT;
1056
Jani Nikulad330a952014-01-21 11:24:25 +02001057 if (likely(!i915.prefault_disable)) {
Xiong Zhang0b74b502013-07-19 13:51:24 +08001058 ret = fault_in_multipages_readable(to_user_ptr(args->data_ptr),
1059 args->size);
1060 if (ret)
1061 return -EFAULT;
1062 }
Eric Anholt673a3942008-07-30 12:06:12 -07001063
Imre Deak5d77d9c2014-11-12 16:40:35 +02001064 intel_runtime_pm_get(dev_priv);
1065
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001066 ret = i915_mutex_lock_interruptible(dev);
1067 if (ret)
Imre Deak5d77d9c2014-11-12 16:40:35 +02001068 goto put_rpm;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001069
Chris Wilson05394f32010-11-08 19:18:58 +00001070 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001071 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001072 ret = -ENOENT;
1073 goto unlock;
1074 }
Eric Anholt673a3942008-07-30 12:06:12 -07001075
Chris Wilson7dcd2492010-09-26 20:21:44 +01001076 /* Bounds check destination. */
Chris Wilson05394f32010-11-08 19:18:58 +00001077 if (args->offset > obj->base.size ||
1078 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +01001079 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +01001080 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +01001081 }
1082
Daniel Vetter1286ff72012-05-10 15:25:09 +02001083 /* prime objects have no backing filp to GEM pread/pwrite
1084 * pages from.
1085 */
1086 if (!obj->base.filp) {
1087 ret = -EINVAL;
1088 goto out;
1089 }
1090
Chris Wilsondb53a302011-02-03 11:57:46 +00001091 trace_i915_gem_object_pwrite(obj, args->offset, args->size);
1092
Daniel Vetter935aaa62012-03-25 19:47:35 +02001093 ret = -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -07001094 /* We can only do the GTT pwrite on untiled buffers, as otherwise
1095 * it would end up going through the fenced access, and we'll get
1096 * different detiling behavior between reading and writing.
1097 * pread/pwrite currently are reading and writing from the CPU
1098 * perspective, requiring manual detiling by the client.
1099 */
Chris Wilson2c225692013-08-09 12:26:45 +01001100 if (obj->tiling_mode == I915_TILING_NONE &&
1101 obj->base.write_domain != I915_GEM_DOMAIN_CPU &&
1102 cpu_write_needs_clflush(obj)) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001103 ret = i915_gem_gtt_pwrite_fast(dev, obj, args, file);
Daniel Vetter935aaa62012-03-25 19:47:35 +02001104 /* Note that the gtt paths might fail with non-page-backed user
1105 * pointers (e.g. gtt mappings when moving data between
1106 * textures). Fallback to the shmem path in that case. */
Eric Anholt40123c12009-03-09 13:42:30 -07001107 }
Eric Anholt673a3942008-07-30 12:06:12 -07001108
Chris Wilson6a2c4232014-11-04 04:51:40 -08001109 if (ret == -EFAULT || ret == -ENOSPC) {
1110 if (obj->phys_handle)
1111 ret = i915_gem_phys_pwrite(obj, args, file);
1112 else
1113 ret = i915_gem_shmem_pwrite(dev, obj, args, file);
1114 }
Daniel Vetter5c0480f2011-12-14 13:57:30 +01001115
Chris Wilson35b62a82010-09-26 20:23:38 +01001116out:
Chris Wilson05394f32010-11-08 19:18:58 +00001117 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001118unlock:
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001119 mutex_unlock(&dev->struct_mutex);
Imre Deak5d77d9c2014-11-12 16:40:35 +02001120put_rpm:
1121 intel_runtime_pm_put(dev_priv);
1122
Eric Anholt673a3942008-07-30 12:06:12 -07001123 return ret;
1124}
1125
Chris Wilsonb3612372012-08-24 09:35:08 +01001126int
Daniel Vetter33196de2012-11-14 17:14:05 +01001127i915_gem_check_wedge(struct i915_gpu_error *error,
Chris Wilsonb3612372012-08-24 09:35:08 +01001128 bool interruptible)
1129{
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001130 if (i915_reset_in_progress(error)) {
Chris Wilsonb3612372012-08-24 09:35:08 +01001131 /* Non-interruptible callers can't handle -EAGAIN, hence return
1132 * -EIO unconditionally for these. */
1133 if (!interruptible)
1134 return -EIO;
1135
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001136 /* Recovery complete, but the reset failed ... */
1137 if (i915_terminally_wedged(error))
Chris Wilsonb3612372012-08-24 09:35:08 +01001138 return -EIO;
1139
McAulay, Alistair6689c162014-08-15 18:51:35 +01001140 /*
1141 * Check if GPU Reset is in progress - we need intel_ring_begin
1142 * to work properly to reinit the hw state while the gpu is
1143 * still marked as reset-in-progress. Handle this with a flag.
1144 */
1145 if (!error->reload_in_reset)
1146 return -EAGAIN;
Chris Wilsonb3612372012-08-24 09:35:08 +01001147 }
1148
1149 return 0;
1150}
1151
1152/*
John Harrisonb6660d52014-11-24 18:49:30 +00001153 * Compare arbitrary request against outstanding lazy request. Emit on match.
Chris Wilsonb3612372012-08-24 09:35:08 +01001154 */
Sourab Gupta84c33a62014-06-02 16:47:17 +05301155int
John Harrisonb6660d52014-11-24 18:49:30 +00001156i915_gem_check_olr(struct drm_i915_gem_request *req)
Chris Wilsonb3612372012-08-24 09:35:08 +01001157{
1158 int ret;
1159
John Harrisonb6660d52014-11-24 18:49:30 +00001160 WARN_ON(!mutex_is_locked(&req->ring->dev->struct_mutex));
Chris Wilsonb3612372012-08-24 09:35:08 +01001161
1162 ret = 0;
John Harrisonb6660d52014-11-24 18:49:30 +00001163 if (req == req->ring->outstanding_lazy_request)
John Harrison9400ae52014-11-24 18:49:36 +00001164 ret = i915_add_request(req->ring);
Chris Wilsonb3612372012-08-24 09:35:08 +01001165
1166 return ret;
1167}
1168
Chris Wilson094f9a52013-09-25 17:34:55 +01001169static void fake_irq(unsigned long data)
1170{
1171 wake_up_process((struct task_struct *)data);
1172}
1173
1174static bool missed_irq(struct drm_i915_private *dev_priv,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001175 struct intel_engine_cs *ring)
Chris Wilson094f9a52013-09-25 17:34:55 +01001176{
1177 return test_bit(ring->id, &dev_priv->gpu_error.missed_irq_rings);
1178}
1179
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001180static bool can_wait_boost(struct drm_i915_file_private *file_priv)
1181{
1182 if (file_priv == NULL)
1183 return true;
1184
1185 return !atomic_xchg(&file_priv->rps_wait_boost, true);
1186}
1187
Chris Wilsonb3612372012-08-24 09:35:08 +01001188/**
John Harrison9c654812014-11-24 18:49:35 +00001189 * __i915_wait_request - wait until execution of request has finished
1190 * @req: duh!
1191 * @reset_counter: reset sequence associated with the given request
Chris Wilsonb3612372012-08-24 09:35:08 +01001192 * @interruptible: do an interruptible wait (normally yes)
1193 * @timeout: in - how long to wait (NULL forever); out - how much time remaining
1194 *
Daniel Vetterf69061b2012-12-06 09:01:42 +01001195 * Note: It is of utmost importance that the passed in seqno and reset_counter
1196 * values have been read by the caller in an smp safe manner. Where read-side
1197 * locks are involved, it is sufficient to read the reset_counter before
1198 * unlocking the lock that protects the seqno. For lockless tricks, the
1199 * reset_counter _must_ be read before, and an appropriate smp_rmb must be
1200 * inserted.
1201 *
John Harrison9c654812014-11-24 18:49:35 +00001202 * Returns 0 if the request was found within the alloted time. Else returns the
Chris Wilsonb3612372012-08-24 09:35:08 +01001203 * errno with remaining time filled in timeout argument.
1204 */
John Harrison9c654812014-11-24 18:49:35 +00001205int __i915_wait_request(struct drm_i915_gem_request *req,
Daniel Vetterf69061b2012-12-06 09:01:42 +01001206 unsigned reset_counter,
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001207 bool interruptible,
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001208 s64 *timeout,
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001209 struct drm_i915_file_private *file_priv)
Chris Wilsonb3612372012-08-24 09:35:08 +01001210{
John Harrison9c654812014-11-24 18:49:35 +00001211 struct intel_engine_cs *ring = i915_gem_request_get_ring(req);
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001212 struct drm_device *dev = ring->dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03001213 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001214 const bool irq_test_in_progress =
1215 ACCESS_ONCE(dev_priv->gpu_error.test_irq_rings) & intel_ring_flag(ring);
Chris Wilson094f9a52013-09-25 17:34:55 +01001216 DEFINE_WAIT(wait);
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001217 unsigned long timeout_expire;
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001218 s64 before, now;
Chris Wilsonb3612372012-08-24 09:35:08 +01001219 int ret;
1220
Jesse Barnes9df7575f2014-06-20 09:29:20 -07001221 WARN(!intel_irqs_enabled(dev_priv), "IRQs disabled");
Paulo Zanonic67a4702013-08-19 13:18:09 -03001222
John Harrison1b5a4332014-11-24 18:49:42 +00001223 if (i915_gem_request_completed(req, true))
Chris Wilsonb3612372012-08-24 09:35:08 +01001224 return 0;
1225
Daniel Vetter7bd0e222014-12-04 11:12:54 +01001226 timeout_expire = timeout ?
1227 jiffies + nsecs_to_jiffies_timeout((u64)*timeout) : 0;
Chris Wilsonb3612372012-08-24 09:35:08 +01001228
Chris Wilsonec5cc0f2014-06-12 10:28:55 +01001229 if (INTEL_INFO(dev)->gen >= 6 && ring->id == RCS && can_wait_boost(file_priv)) {
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001230 gen6_rps_boost(dev_priv);
1231 if (file_priv)
1232 mod_delayed_work(dev_priv->wq,
1233 &file_priv->mm.idle_work,
1234 msecs_to_jiffies(100));
1235 }
1236
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001237 if (!irq_test_in_progress && WARN_ON(!ring->irq_get(ring)))
Chris Wilsonb3612372012-08-24 09:35:08 +01001238 return -ENODEV;
1239
Chris Wilson094f9a52013-09-25 17:34:55 +01001240 /* Record current time in case interrupted by signal, or wedged */
John Harrison74328ee2014-11-24 18:49:38 +00001241 trace_i915_gem_request_wait_begin(req);
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001242 before = ktime_get_raw_ns();
Chris Wilson094f9a52013-09-25 17:34:55 +01001243 for (;;) {
1244 struct timer_list timer;
Chris Wilsonb3612372012-08-24 09:35:08 +01001245
Chris Wilson094f9a52013-09-25 17:34:55 +01001246 prepare_to_wait(&ring->irq_queue, &wait,
1247 interruptible ? TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE);
Chris Wilsonb3612372012-08-24 09:35:08 +01001248
Daniel Vetterf69061b2012-12-06 09:01:42 +01001249 /* We need to check whether any gpu reset happened in between
1250 * the caller grabbing the seqno and now ... */
Chris Wilson094f9a52013-09-25 17:34:55 +01001251 if (reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter)) {
1252 /* ... but upgrade the -EAGAIN to an -EIO if the gpu
1253 * is truely gone. */
1254 ret = i915_gem_check_wedge(&dev_priv->gpu_error, interruptible);
1255 if (ret == 0)
1256 ret = -EAGAIN;
1257 break;
1258 }
Daniel Vetterf69061b2012-12-06 09:01:42 +01001259
John Harrison1b5a4332014-11-24 18:49:42 +00001260 if (i915_gem_request_completed(req, false)) {
Chris Wilson094f9a52013-09-25 17:34:55 +01001261 ret = 0;
1262 break;
1263 }
Chris Wilsonb3612372012-08-24 09:35:08 +01001264
Chris Wilson094f9a52013-09-25 17:34:55 +01001265 if (interruptible && signal_pending(current)) {
1266 ret = -ERESTARTSYS;
1267 break;
1268 }
1269
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001270 if (timeout && time_after_eq(jiffies, timeout_expire)) {
Chris Wilson094f9a52013-09-25 17:34:55 +01001271 ret = -ETIME;
1272 break;
1273 }
1274
1275 timer.function = NULL;
1276 if (timeout || missed_irq(dev_priv, ring)) {
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001277 unsigned long expire;
1278
Chris Wilson094f9a52013-09-25 17:34:55 +01001279 setup_timer_on_stack(&timer, fake_irq, (unsigned long)current);
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001280 expire = missed_irq(dev_priv, ring) ? jiffies + 1 : timeout_expire;
Chris Wilson094f9a52013-09-25 17:34:55 +01001281 mod_timer(&timer, expire);
1282 }
1283
Chris Wilson5035c272013-10-04 09:58:46 +01001284 io_schedule();
Chris Wilson094f9a52013-09-25 17:34:55 +01001285
Chris Wilson094f9a52013-09-25 17:34:55 +01001286 if (timer.function) {
1287 del_singleshot_timer_sync(&timer);
1288 destroy_timer_on_stack(&timer);
1289 }
1290 }
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001291 now = ktime_get_raw_ns();
John Harrison74328ee2014-11-24 18:49:38 +00001292 trace_i915_gem_request_wait_end(req);
Chris Wilsonb3612372012-08-24 09:35:08 +01001293
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001294 if (!irq_test_in_progress)
1295 ring->irq_put(ring);
Chris Wilson094f9a52013-09-25 17:34:55 +01001296
1297 finish_wait(&ring->irq_queue, &wait);
Chris Wilsonb3612372012-08-24 09:35:08 +01001298
1299 if (timeout) {
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001300 s64 tres = *timeout - (now - before);
1301
1302 *timeout = tres < 0 ? 0 : tres;
Daniel Vetter9cca3062014-11-28 10:29:55 +01001303
1304 /*
1305 * Apparently ktime isn't accurate enough and occasionally has a
1306 * bit of mismatch in the jiffies<->nsecs<->ktime loop. So patch
1307 * things up to make the test happy. We allow up to 1 jiffy.
1308 *
1309 * This is a regrssion from the timespec->ktime conversion.
1310 */
1311 if (ret == -ETIME && *timeout < jiffies_to_usecs(1)*1000)
1312 *timeout = 0;
Chris Wilsonb3612372012-08-24 09:35:08 +01001313 }
1314
Chris Wilson094f9a52013-09-25 17:34:55 +01001315 return ret;
Chris Wilsonb3612372012-08-24 09:35:08 +01001316}
1317
1318/**
Daniel Vettera4b3a572014-11-26 14:17:05 +01001319 * Waits for a request to be signaled, and cleans up the
Chris Wilsonb3612372012-08-24 09:35:08 +01001320 * request and object lists appropriately for that event.
1321 */
1322int
Daniel Vettera4b3a572014-11-26 14:17:05 +01001323i915_wait_request(struct drm_i915_gem_request *req)
Chris Wilsonb3612372012-08-24 09:35:08 +01001324{
Daniel Vettera4b3a572014-11-26 14:17:05 +01001325 struct drm_device *dev;
1326 struct drm_i915_private *dev_priv;
1327 bool interruptible;
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001328 unsigned reset_counter;
Chris Wilsonb3612372012-08-24 09:35:08 +01001329 int ret;
1330
Daniel Vettera4b3a572014-11-26 14:17:05 +01001331 BUG_ON(req == NULL);
1332
1333 dev = req->ring->dev;
1334 dev_priv = dev->dev_private;
1335 interruptible = dev_priv->mm.interruptible;
1336
Chris Wilsonb3612372012-08-24 09:35:08 +01001337 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
Chris Wilsonb3612372012-08-24 09:35:08 +01001338
Daniel Vetter33196de2012-11-14 17:14:05 +01001339 ret = i915_gem_check_wedge(&dev_priv->gpu_error, interruptible);
Chris Wilsonb3612372012-08-24 09:35:08 +01001340 if (ret)
1341 return ret;
1342
Daniel Vettera4b3a572014-11-26 14:17:05 +01001343 ret = i915_gem_check_olr(req);
Chris Wilsonb3612372012-08-24 09:35:08 +01001344 if (ret)
1345 return ret;
1346
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001347 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Daniel Vettera4b3a572014-11-26 14:17:05 +01001348 i915_gem_request_reference(req);
John Harrison9c654812014-11-24 18:49:35 +00001349 ret = __i915_wait_request(req, reset_counter,
1350 interruptible, NULL, NULL);
Daniel Vettera4b3a572014-11-26 14:17:05 +01001351 i915_gem_request_unreference(req);
1352 return ret;
Chris Wilsonb3612372012-08-24 09:35:08 +01001353}
1354
Chris Wilsond26e3af2013-06-29 22:05:26 +01001355static int
John Harrison8e6395492014-10-30 18:40:53 +00001356i915_gem_object_wait_rendering__tail(struct drm_i915_gem_object *obj)
Chris Wilsond26e3af2013-06-29 22:05:26 +01001357{
Chris Wilsonc8725f32014-03-17 12:21:55 +00001358 if (!obj->active)
1359 return 0;
Chris Wilsond26e3af2013-06-29 22:05:26 +01001360
1361 /* Manually manage the write flush as we may have not yet
1362 * retired the buffer.
1363 *
John Harrison97b2a6a2014-11-24 18:49:26 +00001364 * Note that the last_write_req is always the earlier of
1365 * the two (read/write) requests, so if we haved successfully waited,
Chris Wilsond26e3af2013-06-29 22:05:26 +01001366 * we know we have passed the last write.
1367 */
John Harrison97b2a6a2014-11-24 18:49:26 +00001368 i915_gem_request_assign(&obj->last_write_req, NULL);
Chris Wilsond26e3af2013-06-29 22:05:26 +01001369
1370 return 0;
1371}
1372
Chris Wilsonb3612372012-08-24 09:35:08 +01001373/**
1374 * Ensures that all rendering to the object has completed and the object is
1375 * safe to unbind from the GTT or access from the CPU.
1376 */
1377static __must_check int
1378i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj,
1379 bool readonly)
1380{
John Harrison97b2a6a2014-11-24 18:49:26 +00001381 struct drm_i915_gem_request *req;
Chris Wilsonb3612372012-08-24 09:35:08 +01001382 int ret;
1383
John Harrison97b2a6a2014-11-24 18:49:26 +00001384 req = readonly ? obj->last_write_req : obj->last_read_req;
1385 if (!req)
Chris Wilsonb3612372012-08-24 09:35:08 +01001386 return 0;
1387
Daniel Vettera4b3a572014-11-26 14:17:05 +01001388 ret = i915_wait_request(req);
Chris Wilsonb3612372012-08-24 09:35:08 +01001389 if (ret)
1390 return ret;
1391
John Harrison8e6395492014-10-30 18:40:53 +00001392 return i915_gem_object_wait_rendering__tail(obj);
Chris Wilsonb3612372012-08-24 09:35:08 +01001393}
1394
Chris Wilson3236f572012-08-24 09:35:09 +01001395/* A nonblocking variant of the above wait. This is a highly dangerous routine
1396 * as the object state may change during this call.
1397 */
1398static __must_check int
1399i915_gem_object_wait_rendering__nonblocking(struct drm_i915_gem_object *obj,
Chris Wilson6e4930f2014-02-07 18:37:06 -02001400 struct drm_i915_file_private *file_priv,
Chris Wilson3236f572012-08-24 09:35:09 +01001401 bool readonly)
1402{
John Harrison97b2a6a2014-11-24 18:49:26 +00001403 struct drm_i915_gem_request *req;
Chris Wilson3236f572012-08-24 09:35:09 +01001404 struct drm_device *dev = obj->base.dev;
1405 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf69061b2012-12-06 09:01:42 +01001406 unsigned reset_counter;
Chris Wilson3236f572012-08-24 09:35:09 +01001407 int ret;
1408
1409 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
1410 BUG_ON(!dev_priv->mm.interruptible);
1411
John Harrison97b2a6a2014-11-24 18:49:26 +00001412 req = readonly ? obj->last_write_req : obj->last_read_req;
1413 if (!req)
Chris Wilson3236f572012-08-24 09:35:09 +01001414 return 0;
1415
Daniel Vetter33196de2012-11-14 17:14:05 +01001416 ret = i915_gem_check_wedge(&dev_priv->gpu_error, true);
Chris Wilson3236f572012-08-24 09:35:09 +01001417 if (ret)
1418 return ret;
1419
John Harrisonb6660d52014-11-24 18:49:30 +00001420 ret = i915_gem_check_olr(req);
Chris Wilson3236f572012-08-24 09:35:09 +01001421 if (ret)
1422 return ret;
1423
Daniel Vetterf69061b2012-12-06 09:01:42 +01001424 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
John Harrisonff865882014-11-24 18:49:28 +00001425 i915_gem_request_reference(req);
Chris Wilson3236f572012-08-24 09:35:09 +01001426 mutex_unlock(&dev->struct_mutex);
John Harrison9c654812014-11-24 18:49:35 +00001427 ret = __i915_wait_request(req, reset_counter, true, NULL, file_priv);
Chris Wilson3236f572012-08-24 09:35:09 +01001428 mutex_lock(&dev->struct_mutex);
John Harrisonff865882014-11-24 18:49:28 +00001429 i915_gem_request_unreference(req);
Chris Wilsond26e3af2013-06-29 22:05:26 +01001430 if (ret)
1431 return ret;
Chris Wilson3236f572012-08-24 09:35:09 +01001432
John Harrison8e6395492014-10-30 18:40:53 +00001433 return i915_gem_object_wait_rendering__tail(obj);
Chris Wilson3236f572012-08-24 09:35:09 +01001434}
1435
Eric Anholt673a3942008-07-30 12:06:12 -07001436/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001437 * Called when user space prepares to use an object with the CPU, either
1438 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -07001439 */
1440int
1441i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001442 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001443{
1444 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001445 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001446 uint32_t read_domains = args->read_domains;
1447 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07001448 int ret;
1449
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001450 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +01001451 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001452 return -EINVAL;
1453
Chris Wilson21d509e2009-06-06 09:46:02 +01001454 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001455 return -EINVAL;
1456
1457 /* Having something in the write domain implies it's in the read
1458 * domain, and only that read domain. Enforce that in the request.
1459 */
1460 if (write_domain != 0 && read_domains != write_domain)
1461 return -EINVAL;
1462
Chris Wilson76c1dec2010-09-25 11:22:51 +01001463 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001464 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001465 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001466
Chris Wilson05394f32010-11-08 19:18:58 +00001467 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001468 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001469 ret = -ENOENT;
1470 goto unlock;
Chris Wilson76c1dec2010-09-25 11:22:51 +01001471 }
Jesse Barnes652c3932009-08-17 13:31:43 -07001472
Chris Wilson3236f572012-08-24 09:35:09 +01001473 /* Try to flush the object off the GPU without holding the lock.
1474 * We will repeat the flush holding the lock in the normal manner
1475 * to catch cases where we are gazumped.
1476 */
Chris Wilson6e4930f2014-02-07 18:37:06 -02001477 ret = i915_gem_object_wait_rendering__nonblocking(obj,
1478 file->driver_priv,
1479 !write_domain);
Chris Wilson3236f572012-08-24 09:35:09 +01001480 if (ret)
1481 goto unref;
1482
Chris Wilson43566de2015-01-02 16:29:29 +05301483 if (read_domains & I915_GEM_DOMAIN_GTT)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001484 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Chris Wilson43566de2015-01-02 16:29:29 +05301485 else
Eric Anholte47c68e2008-11-14 13:35:19 -08001486 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001487
Chris Wilson3236f572012-08-24 09:35:09 +01001488unref:
Chris Wilson05394f32010-11-08 19:18:58 +00001489 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001490unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001491 mutex_unlock(&dev->struct_mutex);
1492 return ret;
1493}
1494
1495/**
1496 * Called when user space has done writes to this buffer
1497 */
1498int
1499i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001500 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001501{
1502 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001503 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001504 int ret = 0;
1505
Chris Wilson76c1dec2010-09-25 11:22:51 +01001506 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001507 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001508 return ret;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001509
Chris Wilson05394f32010-11-08 19:18:58 +00001510 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001511 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001512 ret = -ENOENT;
1513 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07001514 }
1515
Eric Anholt673a3942008-07-30 12:06:12 -07001516 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilson2c225692013-08-09 12:26:45 +01001517 if (obj->pin_display)
Daniel Vettere62b59e2015-01-21 14:53:48 +01001518 i915_gem_object_flush_cpu_write_domain(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08001519
Chris Wilson05394f32010-11-08 19:18:58 +00001520 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001521unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001522 mutex_unlock(&dev->struct_mutex);
1523 return ret;
1524}
1525
1526/**
1527 * Maps the contents of an object, returning the address it is mapped
1528 * into.
1529 *
1530 * While the mapping holds a reference on the contents of the object, it doesn't
1531 * imply a ref on the object itself.
Daniel Vetter34367382014-10-16 12:28:18 +02001532 *
1533 * IMPORTANT:
1534 *
1535 * DRM driver writers who look a this function as an example for how to do GEM
1536 * mmap support, please don't implement mmap support like here. The modern way
1537 * to implement DRM mmap support is with an mmap offset ioctl (like
1538 * i915_gem_mmap_gtt) and then using the mmap syscall on the DRM fd directly.
1539 * That way debug tooling like valgrind will understand what's going on, hiding
1540 * the mmap call in a driver private ioctl will break that. The i915 driver only
1541 * does cpu mmaps this way because we didn't know better.
Eric Anholt673a3942008-07-30 12:06:12 -07001542 */
1543int
1544i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001545 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001546{
1547 struct drm_i915_gem_mmap *args = data;
1548 struct drm_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001549 unsigned long addr;
1550
Akash Goel1816f922015-01-02 16:29:30 +05301551 if (args->flags & ~(I915_MMAP_WC))
1552 return -EINVAL;
1553
1554 if (args->flags & I915_MMAP_WC && !cpu_has_pat)
1555 return -ENODEV;
1556
Chris Wilson05394f32010-11-08 19:18:58 +00001557 obj = drm_gem_object_lookup(dev, file, args->handle);
Eric Anholt673a3942008-07-30 12:06:12 -07001558 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001559 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001560
Daniel Vetter1286ff72012-05-10 15:25:09 +02001561 /* prime objects have no backing filp to GEM mmap
1562 * pages from.
1563 */
1564 if (!obj->filp) {
1565 drm_gem_object_unreference_unlocked(obj);
1566 return -EINVAL;
1567 }
1568
Linus Torvalds6be5ceb2012-04-20 17:13:58 -07001569 addr = vm_mmap(obj->filp, 0, args->size,
Eric Anholt673a3942008-07-30 12:06:12 -07001570 PROT_READ | PROT_WRITE, MAP_SHARED,
1571 args->offset);
Akash Goel1816f922015-01-02 16:29:30 +05301572 if (args->flags & I915_MMAP_WC) {
1573 struct mm_struct *mm = current->mm;
1574 struct vm_area_struct *vma;
1575
1576 down_write(&mm->mmap_sem);
1577 vma = find_vma(mm, addr);
1578 if (vma)
1579 vma->vm_page_prot =
1580 pgprot_writecombine(vm_get_page_prot(vma->vm_flags));
1581 else
1582 addr = -ENOMEM;
1583 up_write(&mm->mmap_sem);
1584 }
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
Dave Airlieda6b51d2014-12-24 13:11:17 +10001857int
Dave Airlieff72145b2011-02-07 12:16:14 +10001858i915_gem_mmap_gtt(struct drm_file *file,
1859 struct drm_device *dev,
Dave Airlieda6b51d2014-12-24 13:11:17 +10001860 uint32_t handle,
Dave Airlieff72145b2011-02-07 12:16:14 +10001861 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 Airlieda6b51d2014-12-24 13:11:17 +10001922 return i915_gem_mmap_gtt(file, dev, args->handle, &args->offset);
Dave Airlieff72145b2011-02-07 12:16:14 +10001923}
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
Daniel Vetter656bfa32014-11-20 09:26:30 +01002206 if (obj->tiling_mode != I915_TILING_NONE &&
2207 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES)
2208 i915_gem_object_pin_pages(obj);
2209
Eric Anholt673a3942008-07-30 12:06:12 -07002210 return 0;
2211
2212err_pages:
Imre Deak90797e62013-02-18 19:28:03 +02002213 sg_mark_end(sg);
2214 for_each_sg_page(st->sgl, &sg_iter, st->nents, 0)
Imre Deak2db76d72013-03-26 15:14:18 +02002215 page_cache_release(sg_page_iter_page(&sg_iter));
Chris Wilson9da3da62012-06-01 15:20:22 +01002216 sg_free_table(st);
2217 kfree(st);
Chris Wilson0820baf2014-03-25 13:23:03 +00002218
2219 /* shmemfs first checks if there is enough memory to allocate the page
2220 * and reports ENOSPC should there be insufficient, along with the usual
2221 * ENOMEM for a genuine allocation failure.
2222 *
2223 * We use ENOSPC in our driver to mean that we have run out of aperture
2224 * space and so want to translate the error from shmemfs back to our
2225 * usual understanding of ENOMEM.
2226 */
2227 if (PTR_ERR(page) == -ENOSPC)
2228 return -ENOMEM;
2229 else
2230 return PTR_ERR(page);
Eric Anholt673a3942008-07-30 12:06:12 -07002231}
2232
Chris Wilson37e680a2012-06-07 15:38:42 +01002233/* Ensure that the associated pages are gathered from the backing storage
2234 * and pinned into our object. i915_gem_object_get_pages() may be called
2235 * multiple times before they are released by a single call to
2236 * i915_gem_object_put_pages() - once the pages are no longer referenced
2237 * either as a result of memory pressure (reaping pages under the shrinker)
2238 * or as the object is itself released.
2239 */
2240int
2241i915_gem_object_get_pages(struct drm_i915_gem_object *obj)
2242{
2243 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2244 const struct drm_i915_gem_object_ops *ops = obj->ops;
2245 int ret;
2246
Chris Wilson2f745ad2012-09-04 21:02:58 +01002247 if (obj->pages)
Chris Wilson37e680a2012-06-07 15:38:42 +01002248 return 0;
2249
Chris Wilson43e28f02013-01-08 10:53:09 +00002250 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00002251 DRM_DEBUG("Attempting to obtain a purgeable object\n");
Chris Wilson8c99e572014-01-31 11:34:58 +00002252 return -EFAULT;
Chris Wilson43e28f02013-01-08 10:53:09 +00002253 }
2254
Chris Wilsona5570172012-09-04 21:02:54 +01002255 BUG_ON(obj->pages_pin_count);
2256
Chris Wilson37e680a2012-06-07 15:38:42 +01002257 ret = ops->get_pages(obj);
2258 if (ret)
2259 return ret;
2260
Ben Widawsky35c20a62013-05-31 11:28:48 -07002261 list_add_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Chris Wilson37e680a2012-06-07 15:38:42 +01002262 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002263}
2264
Ben Widawskye2d05a82013-09-24 09:57:58 -07002265static void
Chris Wilson05394f32010-11-08 19:18:58 +00002266i915_gem_object_move_to_active(struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002267 struct intel_engine_cs *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07002268{
John Harrison41c52412014-11-24 18:49:43 +00002269 struct drm_i915_gem_request *req;
2270 struct intel_engine_cs *old_ring;
Daniel Vetter617dbe22010-02-11 22:16:02 +01002271
Zou Nan hai852835f2010-05-21 09:08:56 +08002272 BUG_ON(ring == NULL);
John Harrison41c52412014-11-24 18:49:43 +00002273
2274 req = intel_ring_get_request(ring);
2275 old_ring = i915_gem_request_get_ring(obj->last_read_req);
2276
2277 if (old_ring != ring && obj->last_write_req) {
John Harrison97b2a6a2014-11-24 18:49:26 +00002278 /* Keep the request relative to the current ring */
2279 i915_gem_request_assign(&obj->last_write_req, req);
Chris Wilson02978ff2013-07-09 09:22:39 +01002280 }
Eric Anholt673a3942008-07-30 12:06:12 -07002281
2282 /* Add a reference if we're newly entering the active list. */
Chris Wilson05394f32010-11-08 19:18:58 +00002283 if (!obj->active) {
2284 drm_gem_object_reference(&obj->base);
2285 obj->active = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07002286 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01002287
Chris Wilson05394f32010-11-08 19:18:58 +00002288 list_move_tail(&obj->ring_list, &ring->active_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002289
John Harrison97b2a6a2014-11-24 18:49:26 +00002290 i915_gem_request_assign(&obj->last_read_req, req);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002291}
2292
Ben Widawskye2d05a82013-09-24 09:57:58 -07002293void i915_vma_move_to_active(struct i915_vma *vma,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002294 struct intel_engine_cs *ring)
Ben Widawskye2d05a82013-09-24 09:57:58 -07002295{
2296 list_move_tail(&vma->mm_list, &vma->vm->active_list);
2297 return i915_gem_object_move_to_active(vma->obj, ring);
2298}
2299
Chris Wilsoncaea7472010-11-12 13:53:37 +00002300static void
Chris Wilsoncaea7472010-11-12 13:53:37 +00002301i915_gem_object_move_to_inactive(struct drm_i915_gem_object *obj)
2302{
Ben Widawskyfeb822c2013-12-06 14:10:51 -08002303 struct i915_vma *vma;
Chris Wilsoncaea7472010-11-12 13:53:37 +00002304
Chris Wilson65ce3022012-07-20 12:41:02 +01002305 BUG_ON(obj->base.write_domain & ~I915_GEM_GPU_DOMAINS);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002306 BUG_ON(!obj->active);
Chris Wilson65ce3022012-07-20 12:41:02 +01002307
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00002308 list_for_each_entry(vma, &obj->vma_list, vma_link) {
2309 if (!list_empty(&vma->mm_list))
2310 list_move_tail(&vma->mm_list, &vma->vm->inactive_list);
Ben Widawskyfeb822c2013-12-06 14:10:51 -08002311 }
Chris Wilsoncaea7472010-11-12 13:53:37 +00002312
Daniel Vetterf99d7062014-06-19 16:01:59 +02002313 intel_fb_obj_flush(obj, true);
2314
Chris Wilson65ce3022012-07-20 12:41:02 +01002315 list_del_init(&obj->ring_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002316
John Harrison97b2a6a2014-11-24 18:49:26 +00002317 i915_gem_request_assign(&obj->last_read_req, NULL);
2318 i915_gem_request_assign(&obj->last_write_req, NULL);
Chris Wilson65ce3022012-07-20 12:41:02 +01002319 obj->base.write_domain = 0;
2320
John Harrison97b2a6a2014-11-24 18:49:26 +00002321 i915_gem_request_assign(&obj->last_fenced_req, NULL);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002322
2323 obj->active = 0;
2324 drm_gem_object_unreference(&obj->base);
2325
2326 WARN_ON(i915_verify_lists(dev));
Eric Anholtce44b0e2008-11-06 16:00:31 -08002327}
Eric Anholt673a3942008-07-30 12:06:12 -07002328
Chris Wilsonc8725f32014-03-17 12:21:55 +00002329static void
2330i915_gem_object_retire(struct drm_i915_gem_object *obj)
2331{
John Harrison41c52412014-11-24 18:49:43 +00002332 if (obj->last_read_req == NULL)
Chris Wilsonc8725f32014-03-17 12:21:55 +00002333 return;
2334
John Harrison1b5a4332014-11-24 18:49:42 +00002335 if (i915_gem_request_completed(obj->last_read_req, true))
Chris Wilsonc8725f32014-03-17 12:21:55 +00002336 i915_gem_object_move_to_inactive(obj);
2337}
2338
Chris Wilson9d7730912012-11-27 16:22:52 +00002339static int
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002340i915_gem_init_seqno(struct drm_device *dev, u32 seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01002341{
Chris Wilson9d7730912012-11-27 16:22:52 +00002342 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002343 struct intel_engine_cs *ring;
Chris Wilson9d7730912012-11-27 16:22:52 +00002344 int ret, i, j;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002345
Chris Wilson107f27a52012-12-10 13:56:17 +02002346 /* Carefully retire all requests without writing to the rings */
Chris Wilson9d7730912012-11-27 16:22:52 +00002347 for_each_ring(ring, dev_priv, i) {
Chris Wilson107f27a52012-12-10 13:56:17 +02002348 ret = intel_ring_idle(ring);
2349 if (ret)
2350 return ret;
Chris Wilson9d7730912012-11-27 16:22:52 +00002351 }
Chris Wilson9d7730912012-11-27 16:22:52 +00002352 i915_gem_retire_requests(dev);
Chris Wilson107f27a52012-12-10 13:56:17 +02002353
2354 /* Finally reset hw state */
Chris Wilson9d7730912012-11-27 16:22:52 +00002355 for_each_ring(ring, dev_priv, i) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002356 intel_ring_init_seqno(ring, seqno);
Mika Kuoppala498d2ac2012-12-04 15:12:04 +02002357
Ben Widawskyebc348b2014-04-29 14:52:28 -07002358 for (j = 0; j < ARRAY_SIZE(ring->semaphore.sync_seqno); j++)
2359 ring->semaphore.sync_seqno[j] = 0;
Chris Wilson9d7730912012-11-27 16:22:52 +00002360 }
2361
2362 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002363}
2364
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002365int i915_gem_set_seqno(struct drm_device *dev, u32 seqno)
2366{
2367 struct drm_i915_private *dev_priv = dev->dev_private;
2368 int ret;
2369
2370 if (seqno == 0)
2371 return -EINVAL;
2372
2373 /* HWS page needs to be set less than what we
2374 * will inject to ring
2375 */
2376 ret = i915_gem_init_seqno(dev, seqno - 1);
2377 if (ret)
2378 return ret;
2379
2380 /* Carefully set the last_seqno value so that wrap
2381 * detection still works
2382 */
2383 dev_priv->next_seqno = seqno;
2384 dev_priv->last_seqno = seqno - 1;
2385 if (dev_priv->last_seqno == 0)
2386 dev_priv->last_seqno--;
2387
2388 return 0;
2389}
2390
Chris Wilson9d7730912012-11-27 16:22:52 +00002391int
2392i915_gem_get_seqno(struct drm_device *dev, u32 *seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01002393{
Chris Wilson9d7730912012-11-27 16:22:52 +00002394 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002395
Chris Wilson9d7730912012-11-27 16:22:52 +00002396 /* reserve 0 for non-seqno */
2397 if (dev_priv->next_seqno == 0) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002398 int ret = i915_gem_init_seqno(dev, 0);
Chris Wilson9d7730912012-11-27 16:22:52 +00002399 if (ret)
2400 return ret;
2401
2402 dev_priv->next_seqno = 1;
2403 }
2404
Mika Kuoppalaf72b3432012-12-10 15:41:48 +02002405 *seqno = dev_priv->last_seqno = dev_priv->next_seqno++;
Chris Wilson9d7730912012-11-27 16:22:52 +00002406 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002407}
2408
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002409int __i915_add_request(struct intel_engine_cs *ring,
Mika Kuoppala0025c072013-06-12 12:35:30 +03002410 struct drm_file *file,
John Harrison9400ae52014-11-24 18:49:36 +00002411 struct drm_i915_gem_object *obj)
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;
Nick Hoath6d3d8272015-01-15 13:10:39 +00002416 u32 request_start;
Chris Wilson3cce4692010-10-27 16:11:02 +01002417 int ret;
2418
John Harrison6259cea2014-11-24 18:49:29 +00002419 request = ring->outstanding_lazy_request;
Oscar Mateo48e29f52014-07-24 17:04:29 +01002420 if (WARN_ON(request == NULL))
2421 return -ENOMEM;
2422
2423 if (i915.enable_execlists) {
Nick Hoath21076372015-01-15 13:10:38 +00002424 ringbuf = request->ctx->engine[ring->id].ringbuf;
Oscar Mateo48e29f52014-07-24 17:04:29 +01002425 } else
2426 ringbuf = ring->buffer;
2427
2428 request_start = intel_ring_get_tail(ringbuf);
Daniel Vettercc889e02012-06-13 20:45:19 +02002429 /*
2430 * Emit any outstanding flushes - execbuf can fail to emit the flush
2431 * after having emitted the batchbuffer command. Hence we need to fix
2432 * things up similar to emitting the lazy request. The difference here
2433 * is that the flush _must_ happen before the next request, no matter
2434 * what.
2435 */
Oscar Mateo48e29f52014-07-24 17:04:29 +01002436 if (i915.enable_execlists) {
Nick Hoath21076372015-01-15 13:10:38 +00002437 ret = logical_ring_flush_all_caches(ringbuf, request->ctx);
Oscar Mateo48e29f52014-07-24 17:04:29 +01002438 if (ret)
2439 return ret;
2440 } else {
2441 ret = intel_ring_flush_all_caches(ring);
2442 if (ret)
2443 return ret;
2444 }
Daniel Vettercc889e02012-06-13 20:45:19 +02002445
Chris Wilsona71d8d92012-02-15 11:25:36 +00002446 /* Record the position of the start of the request so that
2447 * should we detect the updated seqno part-way through the
2448 * GPU processing the request, we never over-estimate the
2449 * position of the head.
2450 */
Nick Hoath6d3d8272015-01-15 13:10:39 +00002451 request->postfix = intel_ring_get_tail(ringbuf);
Chris Wilsona71d8d92012-02-15 11:25:36 +00002452
Oscar Mateo48e29f52014-07-24 17:04:29 +01002453 if (i915.enable_execlists) {
Nick Hoath72f95af2015-01-15 13:10:37 +00002454 ret = ring->emit_request(ringbuf, request);
Oscar Mateo48e29f52014-07-24 17:04:29 +01002455 if (ret)
2456 return ret;
2457 } else {
2458 ret = ring->add_request(ring);
2459 if (ret)
2460 return ret;
2461 }
Eric Anholt673a3942008-07-30 12:06:12 -07002462
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002463 request->head = request_start;
Nick Hoath6d3d8272015-01-15 13:10:39 +00002464 request->tail = intel_ring_get_tail(ringbuf);
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002465
2466 /* Whilst this request exists, batch_obj will be on the
2467 * active_list, and so will hold the active reference. Only when this
2468 * request is retired will the the batch_obj be moved onto the
2469 * inactive_list and lose its active reference. Hence we do not need
2470 * to explicitly hold another reference here.
2471 */
Chris Wilson9a7e0c22013-08-26 19:50:54 -03002472 request->batch_obj = obj;
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002473
Oscar Mateo48e29f52014-07-24 17:04:29 +01002474 if (!i915.enable_execlists) {
2475 /* Hold a reference to the current context so that we can inspect
2476 * it later in case a hangcheck error event fires.
2477 */
2478 request->ctx = ring->last_context;
2479 if (request->ctx)
2480 i915_gem_context_reference(request->ctx);
2481 }
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002482
Eric Anholt673a3942008-07-30 12:06:12 -07002483 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08002484 list_add_tail(&request->list, &ring->request_list);
Chris Wilson3bb73ab2012-07-20 12:40:59 +01002485 request->file_priv = NULL;
Zou Nan hai852835f2010-05-21 09:08:56 +08002486
Chris Wilsondb53a302011-02-03 11:57:46 +00002487 if (file) {
2488 struct drm_i915_file_private *file_priv = file->driver_priv;
2489
Chris Wilson1c255952010-09-26 11:03:27 +01002490 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002491 request->file_priv = file_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00002492 list_add_tail(&request->client_list,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002493 &file_priv->mm.request_list);
Chris Wilson1c255952010-09-26 11:03:27 +01002494 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00002495 }
Eric Anholt673a3942008-07-30 12:06:12 -07002496
John Harrison74328ee2014-11-24 18:49:38 +00002497 trace_i915_gem_request_add(request);
John Harrison6259cea2014-11-24 18:49:29 +00002498 ring->outstanding_lazy_request = NULL;
Chris Wilsondb53a302011-02-03 11:57:46 +00002499
Daniel Vetter87255482014-11-19 20:36:48 +01002500 i915_queue_hangcheck(ring->dev);
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03002501
Daniel Vetter87255482014-11-19 20:36:48 +01002502 cancel_delayed_work_sync(&dev_priv->mm.idle_work);
2503 queue_delayed_work(dev_priv->wq,
2504 &dev_priv->mm.retire_work,
2505 round_jiffies_up_relative(HZ));
2506 intel_mark_busy(dev_priv->dev);
Daniel Vettercc889e02012-06-13 20:45:19 +02002507
Chris Wilson3cce4692010-10-27 16:11:02 +01002508 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002509}
2510
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002511static inline void
2512i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07002513{
Chris Wilson1c255952010-09-26 11:03:27 +01002514 struct drm_i915_file_private *file_priv = request->file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07002515
Chris Wilson1c255952010-09-26 11:03:27 +01002516 if (!file_priv)
2517 return;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002518
Chris Wilson1c255952010-09-26 11:03:27 +01002519 spin_lock(&file_priv->mm.lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002520 list_del(&request->client_list);
2521 request->file_priv = NULL;
Chris Wilson1c255952010-09-26 11:03:27 +01002522 spin_unlock(&file_priv->mm.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07002523}
2524
Mika Kuoppala939fd762014-01-30 19:04:44 +02002525static bool i915_context_is_banned(struct drm_i915_private *dev_priv,
Oscar Mateo273497e2014-05-22 14:13:37 +01002526 const struct intel_context *ctx)
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002527{
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002528 unsigned long elapsed;
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002529
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002530 elapsed = get_seconds() - ctx->hang_stats.guilty_ts;
2531
2532 if (ctx->hang_stats.banned)
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002533 return true;
2534
Chris Wilson676fa572014-12-24 08:13:39 -08002535 if (ctx->hang_stats.ban_period_seconds &&
2536 elapsed <= ctx->hang_stats.ban_period_seconds) {
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002537 if (!i915_gem_context_is_default(ctx)) {
Mika Kuoppala3fac8972014-01-30 16:05:48 +02002538 DRM_DEBUG("context hanging too fast, banning!\n");
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002539 return true;
Mika Kuoppala88b4aa82014-03-28 18:18:18 +02002540 } else if (i915_stop_ring_allow_ban(dev_priv)) {
2541 if (i915_stop_ring_allow_warn(dev_priv))
2542 DRM_ERROR("gpu hanging too fast, banning!\n");
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002543 return true;
Mika Kuoppala3fac8972014-01-30 16:05:48 +02002544 }
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002545 }
2546
2547 return false;
2548}
2549
Mika Kuoppala939fd762014-01-30 19:04:44 +02002550static void i915_set_reset_status(struct drm_i915_private *dev_priv,
Oscar Mateo273497e2014-05-22 14:13:37 +01002551 struct intel_context *ctx,
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002552 const bool guilty)
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002553{
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002554 struct i915_ctx_hang_stats *hs;
2555
2556 if (WARN_ON(!ctx))
2557 return;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002558
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002559 hs = &ctx->hang_stats;
2560
2561 if (guilty) {
Mika Kuoppala939fd762014-01-30 19:04:44 +02002562 hs->banned = i915_context_is_banned(dev_priv, ctx);
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002563 hs->batch_active++;
2564 hs->guilty_ts = get_seconds();
2565 } else {
2566 hs->batch_pending++;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002567 }
2568}
2569
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002570static void i915_gem_free_request(struct drm_i915_gem_request *request)
2571{
2572 list_del(&request->list);
2573 i915_gem_request_remove_from_client(request);
2574
John Harrisonabfe2622014-11-24 18:49:24 +00002575 i915_gem_request_unreference(request);
2576}
2577
2578void i915_gem_request_free(struct kref *req_ref)
2579{
2580 struct drm_i915_gem_request *req = container_of(req_ref,
2581 typeof(*req), ref);
2582 struct intel_context *ctx = req->ctx;
2583
Thomas Daniel0794aed2014-11-25 10:39:25 +00002584 if (ctx) {
2585 if (i915.enable_execlists) {
John Harrisonabfe2622014-11-24 18:49:24 +00002586 struct intel_engine_cs *ring = req->ring;
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002587
Thomas Daniel0794aed2014-11-25 10:39:25 +00002588 if (ctx != ring->default_context)
2589 intel_lr_context_unpin(ring, ctx);
2590 }
John Harrisonabfe2622014-11-24 18:49:24 +00002591
Oscar Mateodcb4c122014-11-13 10:28:10 +00002592 i915_gem_context_unreference(ctx);
2593 }
John Harrisonabfe2622014-11-24 18:49:24 +00002594
2595 kfree(req);
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002596}
2597
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002598struct drm_i915_gem_request *
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002599i915_gem_find_active_request(struct intel_engine_cs *ring)
Chris Wilson9375e442010-09-19 12:21:28 +01002600{
Chris Wilson4db080f2013-12-04 11:37:09 +00002601 struct drm_i915_gem_request *request;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002602
Chris Wilson4db080f2013-12-04 11:37:09 +00002603 list_for_each_entry(request, &ring->request_list, list) {
John Harrison1b5a4332014-11-24 18:49:42 +00002604 if (i915_gem_request_completed(request, false))
Chris Wilson4db080f2013-12-04 11:37:09 +00002605 continue;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002606
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002607 return request;
Chris Wilson4db080f2013-12-04 11:37:09 +00002608 }
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002609
2610 return NULL;
2611}
2612
2613static void i915_gem_reset_ring_status(struct drm_i915_private *dev_priv,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002614 struct intel_engine_cs *ring)
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002615{
2616 struct drm_i915_gem_request *request;
2617 bool ring_hung;
2618
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002619 request = i915_gem_find_active_request(ring);
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002620
2621 if (request == NULL)
2622 return;
2623
2624 ring_hung = ring->hangcheck.score >= HANGCHECK_SCORE_RING_HUNG;
2625
Mika Kuoppala939fd762014-01-30 19:04:44 +02002626 i915_set_reset_status(dev_priv, request->ctx, ring_hung);
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002627
2628 list_for_each_entry_continue(request, &ring->request_list, list)
Mika Kuoppala939fd762014-01-30 19:04:44 +02002629 i915_set_reset_status(dev_priv, request->ctx, false);
Chris Wilson4db080f2013-12-04 11:37:09 +00002630}
2631
2632static void i915_gem_reset_ring_cleanup(struct drm_i915_private *dev_priv,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002633 struct intel_engine_cs *ring)
Chris Wilson4db080f2013-12-04 11:37:09 +00002634{
Chris Wilsondfaae392010-09-22 10:31:52 +01002635 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00002636 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07002637
Chris Wilson05394f32010-11-08 19:18:58 +00002638 obj = list_first_entry(&ring->active_list,
2639 struct drm_i915_gem_object,
2640 ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07002641
Chris Wilson05394f32010-11-08 19:18:58 +00002642 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002643 }
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002644
2645 /*
Oscar Mateodcb4c122014-11-13 10:28:10 +00002646 * Clear the execlists queue up before freeing the requests, as those
2647 * are the ones that keep the context and ringbuffer backing objects
2648 * pinned in place.
2649 */
2650 while (!list_empty(&ring->execlist_queue)) {
Nick Hoath6d3d8272015-01-15 13:10:39 +00002651 struct drm_i915_gem_request *submit_req;
Oscar Mateodcb4c122014-11-13 10:28:10 +00002652
2653 submit_req = list_first_entry(&ring->execlist_queue,
Nick Hoath6d3d8272015-01-15 13:10:39 +00002654 struct drm_i915_gem_request,
Oscar Mateodcb4c122014-11-13 10:28:10 +00002655 execlist_link);
2656 list_del(&submit_req->execlist_link);
2657 intel_runtime_pm_put(dev_priv);
Mika Kuoppala1197b4f2015-01-13 11:32:24 +02002658
2659 if (submit_req->ctx != ring->default_context)
2660 intel_lr_context_unpin(ring, submit_req->ctx);
2661
Nick Hoathb3a38992015-02-19 16:30:47 +00002662 i915_gem_request_unreference(submit_req);
Oscar Mateodcb4c122014-11-13 10:28:10 +00002663 }
2664
2665 /*
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002666 * We must free the requests after all the corresponding objects have
2667 * been moved off active lists. Which is the same order as the normal
2668 * retire_requests function does. This is important if object hold
2669 * implicit references on things like e.g. ppgtt address spaces through
2670 * the request.
2671 */
2672 while (!list_empty(&ring->request_list)) {
2673 struct drm_i915_gem_request *request;
2674
2675 request = list_first_entry(&ring->request_list,
2676 struct drm_i915_gem_request,
2677 list);
2678
2679 i915_gem_free_request(request);
2680 }
Chris Wilsone3efda42014-04-09 09:19:41 +01002681
John Harrison6259cea2014-11-24 18:49:29 +00002682 /* This may not have been flushed before the reset, so clean it now */
2683 i915_gem_request_assign(&ring->outstanding_lazy_request, NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07002684}
2685
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002686void i915_gem_restore_fences(struct drm_device *dev)
Chris Wilson312817a2010-11-22 11:50:11 +00002687{
2688 struct drm_i915_private *dev_priv = dev->dev_private;
2689 int i;
2690
Daniel Vetter4b9de732011-10-09 21:52:02 +02002691 for (i = 0; i < dev_priv->num_fence_regs; i++) {
Chris Wilson312817a2010-11-22 11:50:11 +00002692 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
Chris Wilson7d2cb392010-11-27 17:38:29 +00002693
Daniel Vetter94a335d2013-07-17 14:51:28 +02002694 /*
2695 * Commit delayed tiling changes if we have an object still
2696 * attached to the fence, otherwise just clear the fence.
2697 */
2698 if (reg->obj) {
2699 i915_gem_object_update_fence(reg->obj, reg,
2700 reg->obj->tiling_mode);
2701 } else {
2702 i915_gem_write_fence(dev, i, NULL);
2703 }
Chris Wilson312817a2010-11-22 11:50:11 +00002704 }
2705}
2706
Chris Wilson069efc12010-09-30 16:53:18 +01002707void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07002708{
Chris Wilsondfaae392010-09-22 10:31:52 +01002709 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002710 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002711 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07002712
Chris Wilson4db080f2013-12-04 11:37:09 +00002713 /*
2714 * Before we free the objects from the requests, we need to inspect
2715 * them for finding the guilty party. As the requests only borrow
2716 * their reference to the objects, the inspection must be done first.
2717 */
Chris Wilsonb4519512012-05-11 14:29:30 +01002718 for_each_ring(ring, dev_priv, i)
Chris Wilson4db080f2013-12-04 11:37:09 +00002719 i915_gem_reset_ring_status(dev_priv, ring);
2720
2721 for_each_ring(ring, dev_priv, i)
2722 i915_gem_reset_ring_cleanup(dev_priv, ring);
Chris Wilsondfaae392010-09-22 10:31:52 +01002723
Ben Widawskyacce9ff2013-12-06 14:11:03 -08002724 i915_gem_context_reset(dev);
2725
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002726 i915_gem_restore_fences(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07002727}
2728
2729/**
2730 * This function clears the request list as sequence numbers are passed.
2731 */
Chris Wilson1cf0ba12014-05-05 09:07:33 +01002732void
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002733i915_gem_retire_requests_ring(struct intel_engine_cs *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07002734{
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 Wilson832a3aa2015-03-18 18:19:22 +00002740 /* Retire requests first as we use it above for the early return.
2741 * If we retire requests last, we may use a later seqno and so clear
2742 * the requests lists without clearing the active list, leading to
2743 * confusion.
Chris Wilsone9103032014-01-07 11:45:14 +00002744 */
Zou Nan hai852835f2010-05-21 09:08:56 +08002745 while (!list_empty(&ring->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002746 struct drm_i915_gem_request *request;
Oscar Mateo48e29f52014-07-24 17:04:29 +01002747 struct intel_ringbuffer *ringbuf;
Eric Anholt673a3942008-07-30 12:06:12 -07002748
Zou Nan hai852835f2010-05-21 09:08:56 +08002749 request = list_first_entry(&ring->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07002750 struct drm_i915_gem_request,
2751 list);
Eric Anholt673a3942008-07-30 12:06:12 -07002752
John Harrison1b5a4332014-11-24 18:49:42 +00002753 if (!i915_gem_request_completed(request, true))
Eric Anholt673a3942008-07-30 12:06:12 -07002754 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002755
John Harrison74328ee2014-11-24 18:49:38 +00002756 trace_i915_gem_request_retire(request);
Oscar Mateo48e29f52014-07-24 17:04:29 +01002757
2758 /* This is one of the few common intersection points
2759 * between legacy ringbuffer submission and execlists:
2760 * we need to tell them apart in order to find the correct
2761 * ringbuffer to which the request belongs to.
2762 */
2763 if (i915.enable_execlists) {
2764 struct intel_context *ctx = request->ctx;
2765 ringbuf = ctx->engine[ring->id].ringbuf;
2766 } else
2767 ringbuf = ring->buffer;
2768
Chris Wilsona71d8d92012-02-15 11:25:36 +00002769 /* We know the GPU must have read the request to have
2770 * sent us the seqno + interrupt, so use the position
2771 * of tail of the request to update the last known position
2772 * of the GPU head.
2773 */
Nick Hoath72f95af2015-01-15 13:10:37 +00002774 ringbuf->last_retired_head = request->postfix;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002775
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002776 i915_gem_free_request(request);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002777 }
2778
Chris Wilson832a3aa2015-03-18 18:19:22 +00002779 /* Move any buffers on the active list that are no longer referenced
2780 * by the ringbuffer to the flushing/inactive lists as appropriate,
2781 * before we free the context associated with the requests.
2782 */
2783 while (!list_empty(&ring->active_list)) {
2784 struct drm_i915_gem_object *obj;
2785
2786 obj = list_first_entry(&ring->active_list,
2787 struct drm_i915_gem_object,
2788 ring_list);
2789
2790 if (!i915_gem_request_completed(obj->last_read_req, true))
2791 break;
2792
2793 i915_gem_object_move_to_inactive(obj);
2794 }
2795
John Harrison581c26e82014-11-24 18:49:39 +00002796 if (unlikely(ring->trace_irq_req &&
2797 i915_gem_request_completed(ring->trace_irq_req, true))) {
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002798 ring->irq_put(ring);
John Harrison581c26e82014-11-24 18:49:39 +00002799 i915_gem_request_assign(&ring->trace_irq_req, NULL);
Chris Wilson9d34e5d2009-09-24 05:26:06 +01002800 }
Chris Wilson23bc5982010-09-29 16:10:57 +01002801
Chris Wilsondb53a302011-02-03 11:57:46 +00002802 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002803}
2804
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002805bool
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002806i915_gem_retire_requests(struct drm_device *dev)
2807{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03002808 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002809 struct intel_engine_cs *ring;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002810 bool idle = true;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002811 int i;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002812
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002813 for_each_ring(ring, dev_priv, i) {
Chris Wilsonb4519512012-05-11 14:29:30 +01002814 i915_gem_retire_requests_ring(ring);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002815 idle &= list_empty(&ring->request_list);
Thomas Danielc86ee3a92014-11-13 10:27:05 +00002816 if (i915.enable_execlists) {
2817 unsigned long flags;
2818
2819 spin_lock_irqsave(&ring->execlist_lock, flags);
2820 idle &= list_empty(&ring->execlist_queue);
2821 spin_unlock_irqrestore(&ring->execlist_lock, flags);
2822
2823 intel_execlists_retire_requests(ring);
2824 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002825 }
2826
2827 if (idle)
2828 mod_delayed_work(dev_priv->wq,
2829 &dev_priv->mm.idle_work,
2830 msecs_to_jiffies(100));
2831
2832 return idle;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002833}
2834
Daniel Vetter75ef9da2010-08-21 00:25:16 +02002835static void
Eric Anholt673a3942008-07-30 12:06:12 -07002836i915_gem_retire_work_handler(struct work_struct *work)
2837{
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002838 struct drm_i915_private *dev_priv =
2839 container_of(work, typeof(*dev_priv), mm.retire_work.work);
2840 struct drm_device *dev = dev_priv->dev;
Chris Wilson0a587052011-01-09 21:05:44 +00002841 bool idle;
Eric Anholt673a3942008-07-30 12:06:12 -07002842
Chris Wilson891b48c2010-09-29 12:26:37 +01002843 /* Come back later if the device is busy... */
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002844 idle = false;
2845 if (mutex_trylock(&dev->struct_mutex)) {
2846 idle = i915_gem_retire_requests(dev);
2847 mutex_unlock(&dev->struct_mutex);
2848 }
2849 if (!idle)
Chris Wilsonbcb45082012-10-05 17:02:57 +01002850 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work,
2851 round_jiffies_up_relative(HZ));
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002852}
Chris Wilson891b48c2010-09-29 12:26:37 +01002853
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002854static void
2855i915_gem_idle_work_handler(struct work_struct *work)
2856{
2857 struct drm_i915_private *dev_priv =
2858 container_of(work, typeof(*dev_priv), mm.idle_work.work);
Zou Nan haid1b851f2010-05-21 09:08:57 +08002859
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002860 intel_mark_idle(dev_priv->dev);
Eric Anholt673a3942008-07-30 12:06:12 -07002861}
2862
Ben Widawsky5816d642012-04-11 11:18:19 -07002863/**
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002864 * Ensures that an object will eventually get non-busy by flushing any required
2865 * write domains, emitting any outstanding lazy request and retiring and
2866 * completed requests.
2867 */
2868static int
2869i915_gem_object_flush_active(struct drm_i915_gem_object *obj)
2870{
John Harrison41c52412014-11-24 18:49:43 +00002871 struct intel_engine_cs *ring;
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002872 int ret;
2873
2874 if (obj->active) {
John Harrison41c52412014-11-24 18:49:43 +00002875 ring = i915_gem_request_get_ring(obj->last_read_req);
2876
John Harrisonb6660d52014-11-24 18:49:30 +00002877 ret = i915_gem_check_olr(obj->last_read_req);
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002878 if (ret)
2879 return ret;
2880
John Harrison41c52412014-11-24 18:49:43 +00002881 i915_gem_retire_requests_ring(ring);
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002882 }
2883
2884 return 0;
2885}
2886
2887/**
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002888 * i915_gem_wait_ioctl - implements DRM_IOCTL_I915_GEM_WAIT
2889 * @DRM_IOCTL_ARGS: standard ioctl arguments
2890 *
2891 * Returns 0 if successful, else an error is returned with the remaining time in
2892 * the timeout parameter.
2893 * -ETIME: object is still busy after timeout
2894 * -ERESTARTSYS: signal interrupted the wait
2895 * -ENONENT: object doesn't exist
2896 * Also possible, but rare:
2897 * -EAGAIN: GPU wedged
2898 * -ENOMEM: damn
2899 * -ENODEV: Internal IRQ fail
2900 * -E?: The add request failed
2901 *
2902 * The wait ioctl with a timeout of 0 reimplements the busy ioctl. With any
2903 * non-zero timeout parameter the wait ioctl will wait for the given number of
2904 * nanoseconds on an object becoming unbusy. Since the wait itself does so
2905 * without holding struct_mutex the object may become re-busied before this
2906 * function completes. A similar but shorter * race condition exists in the busy
2907 * ioctl
2908 */
2909int
2910i915_gem_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
2911{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03002912 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002913 struct drm_i915_gem_wait *args = data;
2914 struct drm_i915_gem_object *obj;
John Harrisonff865882014-11-24 18:49:28 +00002915 struct drm_i915_gem_request *req;
Daniel Vetterf69061b2012-12-06 09:01:42 +01002916 unsigned reset_counter;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002917 int ret = 0;
2918
Daniel Vetter11b5d512014-09-29 15:31:26 +02002919 if (args->flags != 0)
2920 return -EINVAL;
2921
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002922 ret = i915_mutex_lock_interruptible(dev);
2923 if (ret)
2924 return ret;
2925
2926 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->bo_handle));
2927 if (&obj->base == NULL) {
2928 mutex_unlock(&dev->struct_mutex);
2929 return -ENOENT;
2930 }
2931
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002932 /* Need to make sure the object gets inactive eventually. */
2933 ret = i915_gem_object_flush_active(obj);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002934 if (ret)
2935 goto out;
2936
John Harrison97b2a6a2014-11-24 18:49:26 +00002937 if (!obj->active || !obj->last_read_req)
2938 goto out;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002939
John Harrisonff865882014-11-24 18:49:28 +00002940 req = obj->last_read_req;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002941
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002942 /* Do this after OLR check to make sure we make forward progress polling
Chris Wilson762e4582015-03-04 18:09:26 +00002943 * on this IOCTL with a timeout == 0 (like busy ioctl)
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002944 */
Chris Wilson762e4582015-03-04 18:09:26 +00002945 if (args->timeout_ns == 0) {
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002946 ret = -ETIME;
2947 goto out;
2948 }
2949
2950 drm_gem_object_unreference(&obj->base);
Daniel Vetterf69061b2012-12-06 09:01:42 +01002951 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
John Harrisonff865882014-11-24 18:49:28 +00002952 i915_gem_request_reference(req);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002953 mutex_unlock(&dev->struct_mutex);
2954
Chris Wilson762e4582015-03-04 18:09:26 +00002955 ret = __i915_wait_request(req, reset_counter, true,
2956 args->timeout_ns > 0 ? &args->timeout_ns : NULL,
John Harrison9c654812014-11-24 18:49:35 +00002957 file->driver_priv);
John Harrisonff865882014-11-24 18:49:28 +00002958 mutex_lock(&dev->struct_mutex);
2959 i915_gem_request_unreference(req);
2960 mutex_unlock(&dev->struct_mutex);
2961 return ret;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002962
2963out:
2964 drm_gem_object_unreference(&obj->base);
2965 mutex_unlock(&dev->struct_mutex);
2966 return ret;
2967}
2968
2969/**
Ben Widawsky5816d642012-04-11 11:18:19 -07002970 * i915_gem_object_sync - sync an object to a ring.
2971 *
2972 * @obj: object which may be in use on another ring.
2973 * @to: ring we wish to use the object on. May be NULL.
2974 *
2975 * This code is meant to abstract object synchronization with the GPU.
2976 * Calling with NULL implies synchronizing the object with the CPU
2977 * rather than a particular GPU ring.
2978 *
2979 * Returns 0 if successful, else propagates up the lower layer error.
2980 */
Ben Widawsky2911a352012-04-05 14:47:36 -07002981int
2982i915_gem_object_sync(struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002983 struct intel_engine_cs *to)
Ben Widawsky2911a352012-04-05 14:47:36 -07002984{
John Harrison41c52412014-11-24 18:49:43 +00002985 struct intel_engine_cs *from;
Ben Widawsky2911a352012-04-05 14:47:36 -07002986 u32 seqno;
2987 int ret, idx;
2988
John Harrison41c52412014-11-24 18:49:43 +00002989 from = i915_gem_request_get_ring(obj->last_read_req);
2990
Ben Widawsky2911a352012-04-05 14:47:36 -07002991 if (from == NULL || to == from)
2992 return 0;
2993
Ben Widawsky5816d642012-04-11 11:18:19 -07002994 if (to == NULL || !i915_semaphore_is_enabled(obj->base.dev))
Chris Wilson0201f1e2012-07-20 12:41:01 +01002995 return i915_gem_object_wait_rendering(obj, false);
Ben Widawsky2911a352012-04-05 14:47:36 -07002996
2997 idx = intel_ring_sync_index(from, to);
2998
John Harrison97b2a6a2014-11-24 18:49:26 +00002999 seqno = i915_gem_request_get_seqno(obj->last_read_req);
Rodrigo Vividdd4dbc2014-06-30 09:51:11 -07003000 /* Optimization: Avoid semaphore sync when we are sure we already
3001 * waited for an object with higher seqno */
Ben Widawskyebc348b2014-04-29 14:52:28 -07003002 if (seqno <= from->semaphore.sync_seqno[idx])
Ben Widawsky2911a352012-04-05 14:47:36 -07003003 return 0;
3004
John Harrisonb6660d52014-11-24 18:49:30 +00003005 ret = i915_gem_check_olr(obj->last_read_req);
Ben Widawskyb4aca012012-04-25 20:50:12 -07003006 if (ret)
3007 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07003008
John Harrison74328ee2014-11-24 18:49:38 +00003009 trace_i915_gem_ring_sync_to(from, to, obj->last_read_req);
Ben Widawskyebc348b2014-04-29 14:52:28 -07003010 ret = to->semaphore.sync_to(to, from, seqno);
Ben Widawskye3a5a222012-04-11 11:18:20 -07003011 if (!ret)
John Harrison97b2a6a2014-11-24 18:49:26 +00003012 /* We use last_read_req because sync_to()
Mika Kuoppala7b01e262012-11-28 17:18:45 +02003013 * might have just caused seqno wrap under
3014 * the radar.
3015 */
John Harrison97b2a6a2014-11-24 18:49:26 +00003016 from->semaphore.sync_seqno[idx] =
3017 i915_gem_request_get_seqno(obj->last_read_req);
Ben Widawsky2911a352012-04-05 14:47:36 -07003018
Ben Widawskye3a5a222012-04-11 11:18:20 -07003019 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07003020}
3021
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01003022static void i915_gem_object_finish_gtt(struct drm_i915_gem_object *obj)
3023{
3024 u32 old_write_domain, old_read_domains;
3025
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01003026 /* Force a pagefault for domain tracking on next user access */
3027 i915_gem_release_mmap(obj);
3028
Keith Packardb97c3d92011-06-24 21:02:59 -07003029 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
3030 return;
3031
Chris Wilson97c809fd2012-10-09 19:24:38 +01003032 /* Wait for any direct GTT access to complete */
3033 mb();
3034
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01003035 old_read_domains = obj->base.read_domains;
3036 old_write_domain = obj->base.write_domain;
3037
3038 obj->base.read_domains &= ~I915_GEM_DOMAIN_GTT;
3039 obj->base.write_domain &= ~I915_GEM_DOMAIN_GTT;
3040
3041 trace_i915_gem_object_change_domain(obj,
3042 old_read_domains,
3043 old_write_domain);
3044}
3045
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003046int i915_vma_unbind(struct i915_vma *vma)
Eric Anholt673a3942008-07-30 12:06:12 -07003047{
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003048 struct drm_i915_gem_object *obj = vma->obj;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003049 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson43e28f02013-01-08 10:53:09 +00003050 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003051
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003052 if (list_empty(&vma->vma_link))
Eric Anholt673a3942008-07-30 12:06:12 -07003053 return 0;
3054
Daniel Vetter0ff501c2013-08-29 19:50:31 +02003055 if (!drm_mm_node_allocated(&vma->node)) {
3056 i915_gem_vma_destroy(vma);
Daniel Vetter0ff501c2013-08-29 19:50:31 +02003057 return 0;
3058 }
Ben Widawsky433544b2013-08-13 18:09:06 -07003059
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08003060 if (vma->pin_count)
Chris Wilson31d8d652012-05-24 19:11:20 +01003061 return -EBUSY;
Eric Anholt673a3942008-07-30 12:06:12 -07003062
Chris Wilsonc4670ad2012-08-20 10:23:27 +01003063 BUG_ON(obj->pages == NULL);
3064
Chris Wilsona8198ee2011-04-13 22:04:09 +01003065 ret = i915_gem_object_finish_gpu(obj);
Chris Wilson1488fc02012-04-24 15:47:31 +01003066 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07003067 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01003068 /* Continue on if we fail due to EIO, the GPU is hung so we
3069 * should be safe and we need to cleanup or else we might
3070 * cause memory corruption through use-after-free.
3071 */
Chris Wilsona8198ee2011-04-13 22:04:09 +01003072
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003073 if (i915_is_ggtt(vma->vm) &&
3074 vma->ggtt_view.type == I915_GGTT_VIEW_NORMAL) {
Daniel Vetter8b1bc9b2014-02-14 14:06:07 +01003075 i915_gem_object_finish_gtt(obj);
Chris Wilsona8198ee2011-04-13 22:04:09 +01003076
Daniel Vetter8b1bc9b2014-02-14 14:06:07 +01003077 /* release the fence reg _after_ flushing */
3078 ret = i915_gem_object_put_fence(obj);
3079 if (ret)
3080 return ret;
3081 }
Daniel Vetter96b47b62009-12-15 17:50:00 +01003082
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003083 trace_i915_vma_unbind(vma);
Chris Wilsondb53a302011-02-03 11:57:46 +00003084
Ben Widawsky6f65e292013-12-06 14:10:56 -08003085 vma->unbind_vma(vma);
3086
Chris Wilson64bf9302014-02-25 14:23:28 +00003087 list_del_init(&vma->mm_list);
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003088 if (i915_is_ggtt(vma->vm)) {
3089 if (vma->ggtt_view.type == I915_GGTT_VIEW_NORMAL) {
3090 obj->map_and_fenceable = false;
3091 } else if (vma->ggtt_view.pages) {
3092 sg_free_table(vma->ggtt_view.pages);
3093 kfree(vma->ggtt_view.pages);
3094 vma->ggtt_view.pages = NULL;
3095 }
3096 }
Eric Anholt673a3942008-07-30 12:06:12 -07003097
Ben Widawsky2f633152013-07-17 12:19:03 -07003098 drm_mm_remove_node(&vma->node);
3099 i915_gem_vma_destroy(vma);
3100
3101 /* Since the unbound list is global, only move to that list if
Daniel Vetterb93dab62013-08-26 11:23:47 +02003102 * no more VMAs exist. */
Armin Reese9490edb2014-07-11 10:20:07 -07003103 if (list_empty(&obj->vma_list)) {
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003104 /* Throw away the active reference before
3105 * moving to the unbound list. */
3106 i915_gem_object_retire(obj);
3107
Armin Reese9490edb2014-07-11 10:20:07 -07003108 i915_gem_gtt_finish_object(obj);
Ben Widawsky2f633152013-07-17 12:19:03 -07003109 list_move_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Armin Reese9490edb2014-07-11 10:20:07 -07003110 }
Eric Anholt673a3942008-07-30 12:06:12 -07003111
Chris Wilson70903c32013-12-04 09:59:09 +00003112 /* And finally now the object is completely decoupled from this vma,
3113 * we can drop its hold on the backing storage and allow it to be
3114 * reaped by the shrinker.
3115 */
3116 i915_gem_object_unpin_pages(obj);
3117
Chris Wilson88241782011-01-07 17:09:48 +00003118 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00003119}
3120
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07003121int i915_gpu_idle(struct drm_device *dev)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003122{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003123 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003124 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003125 int ret, i;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003126
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003127 /* Flush everything onto the inactive list. */
Chris Wilsonb4519512012-05-11 14:29:30 +01003128 for_each_ring(ring, dev_priv, i) {
Thomas Danielecdb5fd2014-08-20 16:29:24 +01003129 if (!i915.enable_execlists) {
3130 ret = i915_switch_context(ring, ring->default_context);
3131 if (ret)
3132 return ret;
3133 }
Ben Widawskyb6c74882012-08-14 14:35:14 -07003134
Chris Wilson3e960502012-11-27 16:22:54 +00003135 ret = intel_ring_idle(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003136 if (ret)
3137 return ret;
3138 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003139
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01003140 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003141}
3142
Chris Wilson9ce079e2012-04-17 15:31:30 +01003143static void i965_write_fence_reg(struct drm_device *dev, int reg,
3144 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003145{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003146 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak56c844e2013-01-07 21:47:34 +02003147 int fence_reg;
3148 int fence_pitch_shift;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003149
Imre Deak56c844e2013-01-07 21:47:34 +02003150 if (INTEL_INFO(dev)->gen >= 6) {
3151 fence_reg = FENCE_REG_SANDYBRIDGE_0;
3152 fence_pitch_shift = SANDYBRIDGE_FENCE_PITCH_SHIFT;
3153 } else {
3154 fence_reg = FENCE_REG_965_0;
3155 fence_pitch_shift = I965_FENCE_PITCH_SHIFT;
3156 }
3157
Chris Wilsond18b9612013-07-10 13:36:23 +01003158 fence_reg += reg * 8;
3159
3160 /* To w/a incoherency with non-atomic 64-bit register updates,
3161 * we split the 64-bit update into two 32-bit writes. In order
3162 * for a partial fence not to be evaluated between writes, we
3163 * precede the update with write to turn off the fence register,
3164 * and only enable the fence as the last step.
3165 *
3166 * For extra levels of paranoia, we make sure each step lands
3167 * before applying the next step.
3168 */
3169 I915_WRITE(fence_reg, 0);
3170 POSTING_READ(fence_reg);
3171
Chris Wilson9ce079e2012-04-17 15:31:30 +01003172 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003173 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilsond18b9612013-07-10 13:36:23 +01003174 uint64_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003175
Bob Paauweaf1a7302014-12-18 09:51:26 -08003176 /* Adjust fence size to match tiled area */
3177 if (obj->tiling_mode != I915_TILING_NONE) {
3178 uint32_t row_size = obj->stride *
3179 (obj->tiling_mode == I915_TILING_Y ? 32 : 8);
3180 size = (size / row_size) * row_size;
3181 }
3182
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003183 val = (uint64_t)((i915_gem_obj_ggtt_offset(obj) + size - 4096) &
Chris Wilson9ce079e2012-04-17 15:31:30 +01003184 0xfffff000) << 32;
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003185 val |= i915_gem_obj_ggtt_offset(obj) & 0xfffff000;
Imre Deak56c844e2013-01-07 21:47:34 +02003186 val |= (uint64_t)((obj->stride / 128) - 1) << fence_pitch_shift;
Chris Wilson9ce079e2012-04-17 15:31:30 +01003187 if (obj->tiling_mode == I915_TILING_Y)
3188 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
3189 val |= I965_FENCE_REG_VALID;
Daniel Vetterc6642782010-11-12 13:46:18 +00003190
Chris Wilsond18b9612013-07-10 13:36:23 +01003191 I915_WRITE(fence_reg + 4, val >> 32);
3192 POSTING_READ(fence_reg + 4);
3193
3194 I915_WRITE(fence_reg + 0, val);
3195 POSTING_READ(fence_reg);
3196 } else {
3197 I915_WRITE(fence_reg + 4, 0);
3198 POSTING_READ(fence_reg + 4);
3199 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08003200}
3201
Chris Wilson9ce079e2012-04-17 15:31:30 +01003202static void i915_write_fence_reg(struct drm_device *dev, int reg,
3203 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003204{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003205 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9ce079e2012-04-17 15:31:30 +01003206 u32 val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003207
Chris Wilson9ce079e2012-04-17 15:31:30 +01003208 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003209 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003210 int pitch_val;
3211 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003212
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003213 WARN((i915_gem_obj_ggtt_offset(obj) & ~I915_FENCE_START_MASK) ||
Chris Wilson9ce079e2012-04-17 15:31:30 +01003214 (size & -size) != size ||
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003215 (i915_gem_obj_ggtt_offset(obj) & (size - 1)),
3216 "object 0x%08lx [fenceable? %d] not 1M or pot-size (0x%08x) aligned\n",
3217 i915_gem_obj_ggtt_offset(obj), obj->map_and_fenceable, size);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003218
3219 if (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev))
3220 tile_width = 128;
3221 else
3222 tile_width = 512;
3223
3224 /* Note: pitch better be a power of two tile widths */
3225 pitch_val = obj->stride / tile_width;
3226 pitch_val = ffs(pitch_val) - 1;
3227
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003228 val = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003229 if (obj->tiling_mode == I915_TILING_Y)
3230 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
3231 val |= I915_FENCE_SIZE_BITS(size);
3232 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
3233 val |= I830_FENCE_REG_VALID;
3234 } else
3235 val = 0;
3236
3237 if (reg < 8)
3238 reg = FENCE_REG_830_0 + reg * 4;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003239 else
Chris Wilson9ce079e2012-04-17 15:31:30 +01003240 reg = FENCE_REG_945_8 + (reg - 8) * 4;
Jesse Barnes0f973f22009-01-26 17:10:45 -08003241
Chris Wilson9ce079e2012-04-17 15:31:30 +01003242 I915_WRITE(reg, val);
3243 POSTING_READ(reg);
Jesse Barnesde151cf2008-11-12 10:03:55 -08003244}
3245
Chris Wilson9ce079e2012-04-17 15:31:30 +01003246static void i830_write_fence_reg(struct drm_device *dev, int reg,
3247 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003248{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003249 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003250 uint32_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003251
Chris Wilson9ce079e2012-04-17 15:31:30 +01003252 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003253 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003254 uint32_t pitch_val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003255
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003256 WARN((i915_gem_obj_ggtt_offset(obj) & ~I830_FENCE_START_MASK) ||
Chris Wilson9ce079e2012-04-17 15:31:30 +01003257 (size & -size) != size ||
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003258 (i915_gem_obj_ggtt_offset(obj) & (size - 1)),
3259 "object 0x%08lx not 512K or pot-size 0x%08x aligned\n",
3260 i915_gem_obj_ggtt_offset(obj), size);
Eric Anholte76a16d2009-05-26 17:44:56 -07003261
Chris Wilson9ce079e2012-04-17 15:31:30 +01003262 pitch_val = obj->stride / 128;
3263 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003264
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003265 val = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003266 if (obj->tiling_mode == I915_TILING_Y)
3267 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
3268 val |= I830_FENCE_SIZE_BITS(size);
3269 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
3270 val |= I830_FENCE_REG_VALID;
3271 } else
3272 val = 0;
Daniel Vetterc6642782010-11-12 13:46:18 +00003273
Chris Wilson9ce079e2012-04-17 15:31:30 +01003274 I915_WRITE(FENCE_REG_830_0 + reg * 4, val);
3275 POSTING_READ(FENCE_REG_830_0 + reg * 4);
3276}
3277
Chris Wilsond0a57782012-10-09 19:24:37 +01003278inline static bool i915_gem_object_needs_mb(struct drm_i915_gem_object *obj)
3279{
3280 return obj && obj->base.read_domains & I915_GEM_DOMAIN_GTT;
3281}
3282
Chris Wilson9ce079e2012-04-17 15:31:30 +01003283static void i915_gem_write_fence(struct drm_device *dev, int reg,
3284 struct drm_i915_gem_object *obj)
3285{
Chris Wilsond0a57782012-10-09 19:24:37 +01003286 struct drm_i915_private *dev_priv = dev->dev_private;
3287
3288 /* Ensure that all CPU reads are completed before installing a fence
3289 * and all writes before removing the fence.
3290 */
3291 if (i915_gem_object_needs_mb(dev_priv->fence_regs[reg].obj))
3292 mb();
3293
Daniel Vetter94a335d2013-07-17 14:51:28 +02003294 WARN(obj && (!obj->stride || !obj->tiling_mode),
3295 "bogus fence setup with stride: 0x%x, tiling mode: %i\n",
3296 obj->stride, obj->tiling_mode);
3297
Rodrigo Vivice38ab02014-12-04 06:48:10 -08003298 if (IS_GEN2(dev))
3299 i830_write_fence_reg(dev, reg, obj);
3300 else if (IS_GEN3(dev))
3301 i915_write_fence_reg(dev, reg, obj);
3302 else if (INTEL_INFO(dev)->gen >= 4)
3303 i965_write_fence_reg(dev, reg, obj);
Chris Wilsond0a57782012-10-09 19:24:37 +01003304
3305 /* And similarly be paranoid that no direct access to this region
3306 * is reordered to before the fence is installed.
3307 */
3308 if (i915_gem_object_needs_mb(obj))
3309 mb();
Jesse Barnesde151cf2008-11-12 10:03:55 -08003310}
3311
Chris Wilson61050802012-04-17 15:31:31 +01003312static inline int fence_number(struct drm_i915_private *dev_priv,
3313 struct drm_i915_fence_reg *fence)
3314{
3315 return fence - dev_priv->fence_regs;
3316}
3317
3318static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
3319 struct drm_i915_fence_reg *fence,
3320 bool enable)
3321{
Chris Wilson2dc8aae2013-05-22 17:08:06 +01003322 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson46a0b632013-07-10 13:36:24 +01003323 int reg = fence_number(dev_priv, fence);
Chris Wilson61050802012-04-17 15:31:31 +01003324
Chris Wilson46a0b632013-07-10 13:36:24 +01003325 i915_gem_write_fence(obj->base.dev, reg, enable ? obj : NULL);
Chris Wilson61050802012-04-17 15:31:31 +01003326
3327 if (enable) {
Chris Wilson46a0b632013-07-10 13:36:24 +01003328 obj->fence_reg = reg;
Chris Wilson61050802012-04-17 15:31:31 +01003329 fence->obj = obj;
3330 list_move_tail(&fence->lru_list, &dev_priv->mm.fence_list);
3331 } else {
3332 obj->fence_reg = I915_FENCE_REG_NONE;
3333 fence->obj = NULL;
3334 list_del_init(&fence->lru_list);
3335 }
Daniel Vetter94a335d2013-07-17 14:51:28 +02003336 obj->fence_dirty = false;
Chris Wilson61050802012-04-17 15:31:31 +01003337}
3338
Chris Wilsond9e86c02010-11-10 16:40:20 +00003339static int
Chris Wilsond0a57782012-10-09 19:24:37 +01003340i915_gem_object_wait_fence(struct drm_i915_gem_object *obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003341{
John Harrison97b2a6a2014-11-24 18:49:26 +00003342 if (obj->last_fenced_req) {
Daniel Vettera4b3a572014-11-26 14:17:05 +01003343 int ret = i915_wait_request(obj->last_fenced_req);
Chris Wilson18991842012-04-17 15:31:29 +01003344 if (ret)
3345 return ret;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003346
John Harrison97b2a6a2014-11-24 18:49:26 +00003347 i915_gem_request_assign(&obj->last_fenced_req, NULL);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003348 }
3349
3350 return 0;
3351}
3352
3353int
3354i915_gem_object_put_fence(struct drm_i915_gem_object *obj)
3355{
Chris Wilson61050802012-04-17 15:31:31 +01003356 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003357 struct drm_i915_fence_reg *fence;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003358 int ret;
3359
Chris Wilsond0a57782012-10-09 19:24:37 +01003360 ret = i915_gem_object_wait_fence(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003361 if (ret)
3362 return ret;
3363
Chris Wilson61050802012-04-17 15:31:31 +01003364 if (obj->fence_reg == I915_FENCE_REG_NONE)
3365 return 0;
Chris Wilson1690e1e2011-12-14 13:57:08 +01003366
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003367 fence = &dev_priv->fence_regs[obj->fence_reg];
3368
Daniel Vetteraff10b302014-02-14 14:06:05 +01003369 if (WARN_ON(fence->pin_count))
3370 return -EBUSY;
3371
Chris Wilson61050802012-04-17 15:31:31 +01003372 i915_gem_object_fence_lost(obj);
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003373 i915_gem_object_update_fence(obj, fence, false);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003374
3375 return 0;
3376}
3377
3378static struct drm_i915_fence_reg *
Chris Wilsona360bb12012-04-17 15:31:25 +01003379i915_find_fence_reg(struct drm_device *dev)
Daniel Vetterae3db242010-02-19 11:51:58 +01003380{
Daniel Vetterae3db242010-02-19 11:51:58 +01003381 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson8fe301a2012-04-17 15:31:28 +01003382 struct drm_i915_fence_reg *reg, *avail;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003383 int i;
Daniel Vetterae3db242010-02-19 11:51:58 +01003384
3385 /* First try to find a free reg */
Chris Wilsond9e86c02010-11-10 16:40:20 +00003386 avail = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01003387 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
3388 reg = &dev_priv->fence_regs[i];
3389 if (!reg->obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003390 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003391
Chris Wilson1690e1e2011-12-14 13:57:08 +01003392 if (!reg->pin_count)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003393 avail = reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003394 }
3395
Chris Wilsond9e86c02010-11-10 16:40:20 +00003396 if (avail == NULL)
Chris Wilson5dce5b932014-01-20 10:17:36 +00003397 goto deadlock;
Daniel Vetterae3db242010-02-19 11:51:58 +01003398
3399 /* None available, try to steal one or wait for a user to finish */
Chris Wilsond9e86c02010-11-10 16:40:20 +00003400 list_for_each_entry(reg, &dev_priv->mm.fence_list, lru_list) {
Chris Wilson1690e1e2011-12-14 13:57:08 +01003401 if (reg->pin_count)
Daniel Vetterae3db242010-02-19 11:51:58 +01003402 continue;
3403
Chris Wilson8fe301a2012-04-17 15:31:28 +01003404 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003405 }
3406
Chris Wilson5dce5b932014-01-20 10:17:36 +00003407deadlock:
3408 /* Wait for completion of pending flips which consume fences */
3409 if (intel_has_pending_fb_unpin(dev))
3410 return ERR_PTR(-EAGAIN);
3411
3412 return ERR_PTR(-EDEADLK);
Daniel Vetterae3db242010-02-19 11:51:58 +01003413}
3414
Jesse Barnesde151cf2008-11-12 10:03:55 -08003415/**
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003416 * i915_gem_object_get_fence - set up fencing for an object
Jesse Barnesde151cf2008-11-12 10:03:55 -08003417 * @obj: object to map through a fence reg
3418 *
3419 * When mapping objects through the GTT, userspace wants to be able to write
3420 * to them without having to worry about swizzling if the object is tiled.
Jesse Barnesde151cf2008-11-12 10:03:55 -08003421 * This function walks the fence regs looking for a free one for @obj,
3422 * stealing one if it can't find any.
3423 *
3424 * It then sets up the reg based on the object's properties: address, pitch
3425 * and tiling format.
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003426 *
3427 * For an untiled surface, this removes any existing fence.
Jesse Barnesde151cf2008-11-12 10:03:55 -08003428 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01003429int
Chris Wilson06d98132012-04-17 15:31:24 +01003430i915_gem_object_get_fence(struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003431{
Chris Wilson05394f32010-11-08 19:18:58 +00003432 struct drm_device *dev = obj->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08003433 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson14415742012-04-17 15:31:33 +01003434 bool enable = obj->tiling_mode != I915_TILING_NONE;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003435 struct drm_i915_fence_reg *reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003436 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003437
Chris Wilson14415742012-04-17 15:31:33 +01003438 /* Have we updated the tiling parameters upon the object and so
3439 * will need to serialise the write to the associated fence register?
3440 */
Chris Wilson5d82e3e2012-04-21 16:23:23 +01003441 if (obj->fence_dirty) {
Chris Wilsond0a57782012-10-09 19:24:37 +01003442 ret = i915_gem_object_wait_fence(obj);
Chris Wilson14415742012-04-17 15:31:33 +01003443 if (ret)
3444 return ret;
3445 }
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003446
Chris Wilsond9e86c02010-11-10 16:40:20 +00003447 /* Just update our place in the LRU if our fence is getting reused. */
Chris Wilson05394f32010-11-08 19:18:58 +00003448 if (obj->fence_reg != I915_FENCE_REG_NONE) {
3449 reg = &dev_priv->fence_regs[obj->fence_reg];
Chris Wilson5d82e3e2012-04-21 16:23:23 +01003450 if (!obj->fence_dirty) {
Chris Wilson14415742012-04-17 15:31:33 +01003451 list_move_tail(&reg->lru_list,
3452 &dev_priv->mm.fence_list);
3453 return 0;
3454 }
3455 } else if (enable) {
Chris Wilsone6a84462014-08-11 12:00:12 +02003456 if (WARN_ON(!obj->map_and_fenceable))
3457 return -EINVAL;
3458
Chris Wilson14415742012-04-17 15:31:33 +01003459 reg = i915_find_fence_reg(dev);
Chris Wilson5dce5b932014-01-20 10:17:36 +00003460 if (IS_ERR(reg))
3461 return PTR_ERR(reg);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003462
Chris Wilson14415742012-04-17 15:31:33 +01003463 if (reg->obj) {
3464 struct drm_i915_gem_object *old = reg->obj;
3465
Chris Wilsond0a57782012-10-09 19:24:37 +01003466 ret = i915_gem_object_wait_fence(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00003467 if (ret)
3468 return ret;
3469
Chris Wilson14415742012-04-17 15:31:33 +01003470 i915_gem_object_fence_lost(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00003471 }
Chris Wilson14415742012-04-17 15:31:33 +01003472 } else
Eric Anholta09ba7f2009-08-29 12:49:51 -07003473 return 0;
Eric Anholta09ba7f2009-08-29 12:49:51 -07003474
Chris Wilson14415742012-04-17 15:31:33 +01003475 i915_gem_object_update_fence(obj, reg, enable);
Chris Wilson14415742012-04-17 15:31:33 +01003476
Chris Wilson9ce079e2012-04-17 15:31:30 +01003477 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003478}
3479
Chris Wilson4144f9b2014-09-11 08:43:48 +01003480static bool i915_gem_valid_gtt_space(struct i915_vma *vma,
Chris Wilson42d6ab42012-07-26 11:49:32 +01003481 unsigned long cache_level)
3482{
Chris Wilson4144f9b2014-09-11 08:43:48 +01003483 struct drm_mm_node *gtt_space = &vma->node;
Chris Wilson42d6ab42012-07-26 11:49:32 +01003484 struct drm_mm_node *other;
3485
Chris Wilson4144f9b2014-09-11 08:43:48 +01003486 /*
3487 * On some machines we have to be careful when putting differing types
3488 * of snoopable memory together to avoid the prefetcher crossing memory
3489 * domains and dying. During vm initialisation, we decide whether or not
3490 * these constraints apply and set the drm_mm.color_adjust
3491 * appropriately.
Chris Wilson42d6ab42012-07-26 11:49:32 +01003492 */
Chris Wilson4144f9b2014-09-11 08:43:48 +01003493 if (vma->vm->mm.color_adjust == NULL)
Chris Wilson42d6ab42012-07-26 11:49:32 +01003494 return true;
3495
Ben Widawskyc6cfb322013-07-05 14:41:06 -07003496 if (!drm_mm_node_allocated(gtt_space))
Chris Wilson42d6ab42012-07-26 11:49:32 +01003497 return true;
3498
3499 if (list_empty(&gtt_space->node_list))
3500 return true;
3501
3502 other = list_entry(gtt_space->node_list.prev, struct drm_mm_node, node_list);
3503 if (other->allocated && !other->hole_follows && other->color != cache_level)
3504 return false;
3505
3506 other = list_entry(gtt_space->node_list.next, struct drm_mm_node, node_list);
3507 if (other->allocated && !gtt_space->hole_follows && other->color != cache_level)
3508 return false;
3509
3510 return true;
3511}
3512
Jesse Barnesde151cf2008-11-12 10:03:55 -08003513/**
Eric Anholt673a3942008-07-30 12:06:12 -07003514 * Finds free space in the GTT aperture and binds the object there.
3515 */
Daniel Vetter262de142014-02-14 14:01:20 +01003516static struct i915_vma *
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003517i915_gem_object_bind_to_vm(struct drm_i915_gem_object *obj,
3518 struct i915_address_space *vm,
3519 unsigned alignment,
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003520 uint64_t flags,
3521 const struct i915_ggtt_view *view)
Eric Anholt673a3942008-07-30 12:06:12 -07003522{
Chris Wilson05394f32010-11-08 19:18:58 +00003523 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003524 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter5e783302010-11-14 22:32:36 +01003525 u32 size, fence_size, fence_alignment, unfenced_alignment;
Chris Wilsond23db882014-05-23 08:48:08 +02003526 unsigned long start =
3527 flags & PIN_OFFSET_BIAS ? flags & PIN_OFFSET_MASK : 0;
3528 unsigned long end =
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003529 flags & PIN_MAPPABLE ? dev_priv->gtt.mappable_end : vm->total;
Ben Widawsky2f633152013-07-17 12:19:03 -07003530 struct i915_vma *vma;
Chris Wilson07f73f62009-09-14 16:50:30 +01003531 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003532
Chris Wilsone28f8712011-07-18 13:11:49 -07003533 fence_size = i915_gem_get_gtt_size(dev,
3534 obj->base.size,
3535 obj->tiling_mode);
3536 fence_alignment = i915_gem_get_gtt_alignment(dev,
3537 obj->base.size,
Imre Deakd8651102013-01-07 21:47:33 +02003538 obj->tiling_mode, true);
Chris Wilsone28f8712011-07-18 13:11:49 -07003539 unfenced_alignment =
Imre Deakd8651102013-01-07 21:47:33 +02003540 i915_gem_get_gtt_alignment(dev,
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003541 obj->base.size,
3542 obj->tiling_mode, false);
Chris Wilsona00b10c2010-09-24 21:15:47 +01003543
Eric Anholt673a3942008-07-30 12:06:12 -07003544 if (alignment == 0)
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003545 alignment = flags & PIN_MAPPABLE ? fence_alignment :
Daniel Vetter5e783302010-11-14 22:32:36 +01003546 unfenced_alignment;
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003547 if (flags & PIN_MAPPABLE && alignment & (fence_alignment - 1)) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00003548 DRM_DEBUG("Invalid object alignment requested %u\n", alignment);
Daniel Vetter262de142014-02-14 14:01:20 +01003549 return ERR_PTR(-EINVAL);
Eric Anholt673a3942008-07-30 12:06:12 -07003550 }
3551
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003552 size = flags & PIN_MAPPABLE ? fence_size : obj->base.size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01003553
Chris Wilson654fc602010-05-27 13:18:21 +01003554 /* If the object is bigger than the entire aperture, reject it early
3555 * before evicting everything in a vain attempt to find space.
3556 */
Chris Wilsond23db882014-05-23 08:48:08 +02003557 if (obj->base.size > end) {
3558 DRM_DEBUG("Attempting to bind an object larger than the aperture: object=%zd > %s aperture=%lu\n",
Chris Wilsona36689c2013-05-21 16:58:49 +01003559 obj->base.size,
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003560 flags & PIN_MAPPABLE ? "mappable" : "total",
Chris Wilsond23db882014-05-23 08:48:08 +02003561 end);
Daniel Vetter262de142014-02-14 14:01:20 +01003562 return ERR_PTR(-E2BIG);
Chris Wilson654fc602010-05-27 13:18:21 +01003563 }
3564
Chris Wilson37e680a2012-06-07 15:38:42 +01003565 ret = i915_gem_object_get_pages(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02003566 if (ret)
Daniel Vetter262de142014-02-14 14:01:20 +01003567 return ERR_PTR(ret);
Chris Wilson6c085a72012-08-20 11:40:46 +02003568
Chris Wilsonfbdda6f2012-11-20 10:45:16 +00003569 i915_gem_object_pin_pages(obj);
3570
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003571 vma = i915_gem_obj_lookup_or_create_vma_view(obj, vm, view);
Daniel Vetter262de142014-02-14 14:01:20 +01003572 if (IS_ERR(vma))
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003573 goto err_unpin;
Ben Widawsky2f633152013-07-17 12:19:03 -07003574
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003575search_free:
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003576 ret = drm_mm_insert_node_in_range_generic(&vm->mm, &vma->node,
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003577 size, alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02003578 obj->cache_level,
3579 start, end,
Lauri Kasanen62347f92014-04-02 20:03:57 +03003580 DRM_MM_SEARCH_DEFAULT,
3581 DRM_MM_CREATE_DEFAULT);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003582 if (ret) {
Ben Widawskyf6cd1f12013-07-31 17:00:11 -07003583 ret = i915_gem_evict_something(dev, vm, size, alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02003584 obj->cache_level,
3585 start, end,
3586 flags);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003587 if (ret == 0)
3588 goto search_free;
Chris Wilson97311292009-09-21 00:22:34 +01003589
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003590 goto err_free_vma;
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003591 }
Chris Wilson4144f9b2014-09-11 08:43:48 +01003592 if (WARN_ON(!i915_gem_valid_gtt_space(vma, obj->cache_level))) {
Ben Widawsky2f633152013-07-17 12:19:03 -07003593 ret = -EINVAL;
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003594 goto err_remove_node;
Eric Anholt673a3942008-07-30 12:06:12 -07003595 }
3596
Daniel Vetter74163902012-02-15 23:50:21 +01003597 ret = i915_gem_gtt_prepare_object(obj);
Ben Widawsky2f633152013-07-17 12:19:03 -07003598 if (ret)
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003599 goto err_remove_node;
Eric Anholt673a3942008-07-30 12:06:12 -07003600
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003601 trace_i915_vma_bind(vma, flags);
3602 ret = i915_vma_bind(vma, obj->cache_level,
3603 flags & PIN_GLOBAL ? GLOBAL_BIND : 0);
3604 if (ret)
3605 goto err_finish_gtt;
3606
Ben Widawsky35c20a62013-05-31 11:28:48 -07003607 list_move_tail(&obj->global_list, &dev_priv->mm.bound_list);
Ben Widawskyca191b12013-07-31 17:00:14 -07003608 list_add_tail(&vma->mm_list, &vm->inactive_list);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01003609
Daniel Vetter262de142014-02-14 14:01:20 +01003610 return vma;
Ben Widawsky2f633152013-07-17 12:19:03 -07003611
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003612err_finish_gtt:
3613 i915_gem_gtt_finish_object(obj);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003614err_remove_node:
Dan Carpenter6286ef92013-07-19 08:46:27 +03003615 drm_mm_remove_node(&vma->node);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003616err_free_vma:
Ben Widawsky2f633152013-07-17 12:19:03 -07003617 i915_gem_vma_destroy(vma);
Daniel Vetter262de142014-02-14 14:01:20 +01003618 vma = ERR_PTR(ret);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003619err_unpin:
Ben Widawsky2f633152013-07-17 12:19:03 -07003620 i915_gem_object_unpin_pages(obj);
Daniel Vetter262de142014-02-14 14:01:20 +01003621 return vma;
Eric Anholt673a3942008-07-30 12:06:12 -07003622}
3623
Chris Wilson000433b2013-08-08 14:41:09 +01003624bool
Chris Wilson2c225692013-08-09 12:26:45 +01003625i915_gem_clflush_object(struct drm_i915_gem_object *obj,
3626 bool force)
Eric Anholt673a3942008-07-30 12:06:12 -07003627{
Eric Anholt673a3942008-07-30 12:06:12 -07003628 /* If we don't have a page list set up, then we're not pinned
3629 * to GPU, and we can ignore the cache flush because it'll happen
3630 * again at bind time.
3631 */
Chris Wilson05394f32010-11-08 19:18:58 +00003632 if (obj->pages == NULL)
Chris Wilson000433b2013-08-08 14:41:09 +01003633 return false;
Eric Anholt673a3942008-07-30 12:06:12 -07003634
Imre Deak769ce462013-02-13 21:56:05 +02003635 /*
3636 * Stolen memory is always coherent with the GPU as it is explicitly
3637 * marked as wc by the system, or the system is cache-coherent.
3638 */
Chris Wilson6a2c4232014-11-04 04:51:40 -08003639 if (obj->stolen || obj->phys_handle)
Chris Wilson000433b2013-08-08 14:41:09 +01003640 return false;
Imre Deak769ce462013-02-13 21:56:05 +02003641
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003642 /* If the GPU is snooping the contents of the CPU cache,
3643 * we do not need to manually clear the CPU cache lines. However,
3644 * the caches are only snooped when the render cache is
3645 * flushed/invalidated. As we always have to emit invalidations
3646 * and flushes when moving into and out of the RENDER domain, correct
3647 * snooping behaviour occurs naturally as the result of our domain
3648 * tracking.
3649 */
Chris Wilson0f719792015-01-13 13:32:52 +00003650 if (!force && cpu_cache_is_coherent(obj->base.dev, obj->cache_level)) {
3651 obj->cache_dirty = true;
Chris Wilson000433b2013-08-08 14:41:09 +01003652 return false;
Chris Wilson0f719792015-01-13 13:32:52 +00003653 }
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003654
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003655 trace_i915_gem_object_clflush(obj);
Chris Wilson9da3da62012-06-01 15:20:22 +01003656 drm_clflush_sg(obj->pages);
Chris Wilson0f719792015-01-13 13:32:52 +00003657 obj->cache_dirty = false;
Chris Wilson000433b2013-08-08 14:41:09 +01003658
3659 return true;
Eric Anholte47c68e2008-11-14 13:35:19 -08003660}
3661
3662/** Flushes the GTT write domain for the object if it's dirty. */
3663static void
Chris Wilson05394f32010-11-08 19:18:58 +00003664i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003665{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003666 uint32_t old_write_domain;
3667
Chris Wilson05394f32010-11-08 19:18:58 +00003668 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08003669 return;
3670
Chris Wilson63256ec2011-01-04 18:42:07 +00003671 /* No actual flushing is required for the GTT write domain. Writes
Eric Anholte47c68e2008-11-14 13:35:19 -08003672 * to it immediately go to main memory as far as we know, so there's
3673 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00003674 *
3675 * However, we do have to enforce the order so that all writes through
3676 * the GTT land before any writes to the device, such as updates to
3677 * the GATT itself.
Eric Anholte47c68e2008-11-14 13:35:19 -08003678 */
Chris Wilson63256ec2011-01-04 18:42:07 +00003679 wmb();
3680
Chris Wilson05394f32010-11-08 19:18:58 +00003681 old_write_domain = obj->base.write_domain;
3682 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003683
Daniel Vetterf99d7062014-06-19 16:01:59 +02003684 intel_fb_obj_flush(obj, false);
3685
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003686 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003687 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003688 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003689}
3690
3691/** Flushes the CPU write domain for the object if it's dirty. */
3692static void
Daniel Vettere62b59e2015-01-21 14:53:48 +01003693i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003694{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003695 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08003696
Chris Wilson05394f32010-11-08 19:18:58 +00003697 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08003698 return;
3699
Daniel Vettere62b59e2015-01-21 14:53:48 +01003700 if (i915_gem_clflush_object(obj, obj->pin_display))
Chris Wilson000433b2013-08-08 14:41:09 +01003701 i915_gem_chipset_flush(obj->base.dev);
3702
Chris Wilson05394f32010-11-08 19:18:58 +00003703 old_write_domain = obj->base.write_domain;
3704 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003705
Daniel Vetterf99d7062014-06-19 16:01:59 +02003706 intel_fb_obj_flush(obj, false);
3707
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003708 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003709 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003710 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003711}
3712
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003713/**
3714 * Moves a single object to the GTT read, and possibly write domain.
3715 *
3716 * This function returns when the move is complete, including waiting on
3717 * flushes to occur.
3718 */
Jesse Barnes79e53942008-11-07 14:24:08 -08003719int
Chris Wilson20217462010-11-23 15:26:33 +00003720i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003721{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003722 uint32_t old_write_domain, old_read_domains;
Chris Wilson43566de2015-01-02 16:29:29 +05303723 struct i915_vma *vma;
Eric Anholte47c68e2008-11-14 13:35:19 -08003724 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003725
Chris Wilson8d7e3de2011-02-07 15:23:02 +00003726 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
3727 return 0;
3728
Chris Wilson0201f1e2012-07-20 12:41:01 +01003729 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00003730 if (ret)
3731 return ret;
3732
Chris Wilsonc8725f32014-03-17 12:21:55 +00003733 i915_gem_object_retire(obj);
Chris Wilson43566de2015-01-02 16:29:29 +05303734
3735 /* Flush and acquire obj->pages so that we are coherent through
3736 * direct access in memory with previous cached writes through
3737 * shmemfs and that our cache domain tracking remains valid.
3738 * For example, if the obj->filp was moved to swap without us
3739 * being notified and releasing the pages, we would mistakenly
3740 * continue to assume that the obj remained out of the CPU cached
3741 * domain.
3742 */
3743 ret = i915_gem_object_get_pages(obj);
3744 if (ret)
3745 return ret;
3746
Daniel Vettere62b59e2015-01-21 14:53:48 +01003747 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003748
Chris Wilsond0a57782012-10-09 19:24:37 +01003749 /* Serialise direct access to this object with the barriers for
3750 * coherent writes from the GPU, by effectively invalidating the
3751 * GTT domain upon first access.
3752 */
3753 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
3754 mb();
3755
Chris Wilson05394f32010-11-08 19:18:58 +00003756 old_write_domain = obj->base.write_domain;
3757 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003758
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003759 /* It should now be out of any other write domains, and we can update
3760 * the domain values for our changes.
3761 */
Chris Wilson05394f32010-11-08 19:18:58 +00003762 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
3763 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08003764 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003765 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
3766 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
3767 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08003768 }
3769
Daniel Vetterf99d7062014-06-19 16:01:59 +02003770 if (write)
3771 intel_fb_obj_invalidate(obj, NULL);
3772
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003773 trace_i915_gem_object_change_domain(obj,
3774 old_read_domains,
3775 old_write_domain);
3776
Chris Wilson8325a092012-04-24 15:52:35 +01003777 /* And bump the LRU for this access */
Chris Wilson43566de2015-01-02 16:29:29 +05303778 vma = i915_gem_obj_to_ggtt(obj);
3779 if (vma && drm_mm_node_allocated(&vma->node) && !obj->active)
Chris Wilsondc8cd1e2014-08-09 17:37:22 +01003780 list_move_tail(&vma->mm_list,
Chris Wilson43566de2015-01-02 16:29:29 +05303781 &to_i915(obj->base.dev)->gtt.base.inactive_list);
Chris Wilson8325a092012-04-24 15:52:35 +01003782
Eric Anholte47c68e2008-11-14 13:35:19 -08003783 return 0;
3784}
3785
Chris Wilsone4ffd172011-04-04 09:44:39 +01003786int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
3787 enum i915_cache_level cache_level)
3788{
Daniel Vetter7bddb012012-02-09 17:15:47 +01003789 struct drm_device *dev = obj->base.dev;
Chris Wilsondf6f7832014-03-21 07:40:56 +00003790 struct i915_vma *vma, *next;
Chris Wilsone4ffd172011-04-04 09:44:39 +01003791 int ret;
3792
3793 if (obj->cache_level == cache_level)
3794 return 0;
3795
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08003796 if (i915_gem_obj_is_pinned(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003797 DRM_DEBUG("can not change the cache level of pinned objects\n");
3798 return -EBUSY;
3799 }
3800
Chris Wilsondf6f7832014-03-21 07:40:56 +00003801 list_for_each_entry_safe(vma, next, &obj->vma_list, vma_link) {
Chris Wilson4144f9b2014-09-11 08:43:48 +01003802 if (!i915_gem_valid_gtt_space(vma, cache_level)) {
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003803 ret = i915_vma_unbind(vma);
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003804 if (ret)
3805 return ret;
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003806 }
Chris Wilson42d6ab42012-07-26 11:49:32 +01003807 }
3808
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003809 if (i915_gem_obj_bound_any(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003810 ret = i915_gem_object_finish_gpu(obj);
3811 if (ret)
3812 return ret;
3813
3814 i915_gem_object_finish_gtt(obj);
3815
3816 /* Before SandyBridge, you could not use tiling or fence
3817 * registers with snooped memory, so relinquish any fences
3818 * currently pointing to our region in the aperture.
3819 */
Chris Wilson42d6ab42012-07-26 11:49:32 +01003820 if (INTEL_INFO(dev)->gen < 6) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003821 ret = i915_gem_object_put_fence(obj);
3822 if (ret)
3823 return ret;
3824 }
3825
Ben Widawsky6f65e292013-12-06 14:10:56 -08003826 list_for_each_entry(vma, &obj->vma_list, vma_link)
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003827 if (drm_mm_node_allocated(&vma->node)) {
3828 ret = i915_vma_bind(vma, cache_level,
3829 vma->bound & GLOBAL_BIND);
3830 if (ret)
3831 return ret;
3832 }
Chris Wilsone4ffd172011-04-04 09:44:39 +01003833 }
3834
Chris Wilson2c225692013-08-09 12:26:45 +01003835 list_for_each_entry(vma, &obj->vma_list, vma_link)
3836 vma->node.color = cache_level;
3837 obj->cache_level = cache_level;
3838
Chris Wilson0f719792015-01-13 13:32:52 +00003839 if (obj->cache_dirty &&
3840 obj->base.write_domain != I915_GEM_DOMAIN_CPU &&
3841 cpu_write_needs_clflush(obj)) {
3842 if (i915_gem_clflush_object(obj, true))
3843 i915_gem_chipset_flush(obj->base.dev);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003844 }
3845
Chris Wilsone4ffd172011-04-04 09:44:39 +01003846 return 0;
3847}
3848
Ben Widawsky199adf42012-09-21 17:01:20 -07003849int i915_gem_get_caching_ioctl(struct drm_device *dev, void *data,
3850 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003851{
Ben Widawsky199adf42012-09-21 17:01:20 -07003852 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003853 struct drm_i915_gem_object *obj;
3854 int ret;
3855
3856 ret = i915_mutex_lock_interruptible(dev);
3857 if (ret)
3858 return ret;
3859
3860 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3861 if (&obj->base == NULL) {
3862 ret = -ENOENT;
3863 goto unlock;
3864 }
3865
Chris Wilson651d7942013-08-08 14:41:10 +01003866 switch (obj->cache_level) {
3867 case I915_CACHE_LLC:
3868 case I915_CACHE_L3_LLC:
3869 args->caching = I915_CACHING_CACHED;
3870 break;
3871
Chris Wilson4257d3b2013-08-08 14:41:11 +01003872 case I915_CACHE_WT:
3873 args->caching = I915_CACHING_DISPLAY;
3874 break;
3875
Chris Wilson651d7942013-08-08 14:41:10 +01003876 default:
3877 args->caching = I915_CACHING_NONE;
3878 break;
3879 }
Chris Wilsone6994ae2012-07-10 10:27:08 +01003880
3881 drm_gem_object_unreference(&obj->base);
3882unlock:
3883 mutex_unlock(&dev->struct_mutex);
3884 return ret;
3885}
3886
Ben Widawsky199adf42012-09-21 17:01:20 -07003887int i915_gem_set_caching_ioctl(struct drm_device *dev, void *data,
3888 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003889{
Ben Widawsky199adf42012-09-21 17:01:20 -07003890 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003891 struct drm_i915_gem_object *obj;
3892 enum i915_cache_level level;
3893 int ret;
3894
Ben Widawsky199adf42012-09-21 17:01:20 -07003895 switch (args->caching) {
3896 case I915_CACHING_NONE:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003897 level = I915_CACHE_NONE;
3898 break;
Ben Widawsky199adf42012-09-21 17:01:20 -07003899 case I915_CACHING_CACHED:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003900 level = I915_CACHE_LLC;
3901 break;
Chris Wilson4257d3b2013-08-08 14:41:11 +01003902 case I915_CACHING_DISPLAY:
3903 level = HAS_WT(dev) ? I915_CACHE_WT : I915_CACHE_NONE;
3904 break;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003905 default:
3906 return -EINVAL;
3907 }
3908
Ben Widawsky3bc29132012-09-26 16:15:20 -07003909 ret = i915_mutex_lock_interruptible(dev);
3910 if (ret)
3911 return ret;
3912
Chris Wilsone6994ae2012-07-10 10:27:08 +01003913 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3914 if (&obj->base == NULL) {
3915 ret = -ENOENT;
3916 goto unlock;
3917 }
3918
3919 ret = i915_gem_object_set_cache_level(obj, level);
3920
3921 drm_gem_object_unreference(&obj->base);
3922unlock:
3923 mutex_unlock(&dev->struct_mutex);
3924 return ret;
3925}
3926
Chris Wilsoncc98b412013-08-09 12:25:09 +01003927static bool is_pin_display(struct drm_i915_gem_object *obj)
3928{
Oscar Mateo19656432014-05-16 14:20:43 +01003929 struct i915_vma *vma;
3930
Oscar Mateo19656432014-05-16 14:20:43 +01003931 vma = i915_gem_obj_to_ggtt(obj);
3932 if (!vma)
3933 return false;
3934
Daniel Vetter4feb7652014-11-24 11:21:52 +01003935 /* There are 2 sources that pin objects:
Chris Wilsoncc98b412013-08-09 12:25:09 +01003936 * 1. The display engine (scanouts, sprites, cursors);
3937 * 2. Reservations for execbuffer;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003938 *
3939 * We can ignore reservations as we hold the struct_mutex and
Daniel Vetter4feb7652014-11-24 11:21:52 +01003940 * are only called outside of the reservation path.
Chris Wilsoncc98b412013-08-09 12:25:09 +01003941 */
Daniel Vetter4feb7652014-11-24 11:21:52 +01003942 return vma->pin_count;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003943}
3944
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003945/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003946 * Prepare buffer for display plane (scanout, cursors, etc).
3947 * Can be called from an uninterruptible phase (modesetting) and allows
3948 * any flushes to be pipelined (for pageflips).
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003949 */
3950int
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003951i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
3952 u32 alignment,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003953 struct intel_engine_cs *pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003954{
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003955 u32 old_read_domains, old_write_domain;
Oscar Mateo19656432014-05-16 14:20:43 +01003956 bool was_pin_display;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003957 int ret;
3958
John Harrison41c52412014-11-24 18:49:43 +00003959 if (pipelined != i915_gem_request_get_ring(obj->last_read_req)) {
Ben Widawsky2911a352012-04-05 14:47:36 -07003960 ret = i915_gem_object_sync(obj, pipelined);
3961 if (ret)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003962 return ret;
3963 }
3964
Chris Wilsoncc98b412013-08-09 12:25:09 +01003965 /* Mark the pin_display early so that we account for the
3966 * display coherency whilst setting up the cache domains.
3967 */
Oscar Mateo19656432014-05-16 14:20:43 +01003968 was_pin_display = obj->pin_display;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003969 obj->pin_display = true;
3970
Eric Anholta7ef0642011-03-29 16:59:54 -07003971 /* The display engine is not coherent with the LLC cache on gen6. As
3972 * a result, we make sure that the pinning that is about to occur is
3973 * done with uncached PTEs. This is lowest common denominator for all
3974 * chipsets.
3975 *
3976 * However for gen6+, we could do better by using the GFDT bit instead
3977 * of uncaching, which would allow us to flush all the LLC-cached data
3978 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
3979 */
Chris Wilson651d7942013-08-08 14:41:10 +01003980 ret = i915_gem_object_set_cache_level(obj,
3981 HAS_WT(obj->base.dev) ? I915_CACHE_WT : I915_CACHE_NONE);
Eric Anholta7ef0642011-03-29 16:59:54 -07003982 if (ret)
Chris Wilsoncc98b412013-08-09 12:25:09 +01003983 goto err_unpin_display;
Eric Anholta7ef0642011-03-29 16:59:54 -07003984
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003985 /* As the user may map the buffer once pinned in the display plane
3986 * (e.g. libkms for the bootup splash), we have to ensure that we
3987 * always use map_and_fenceable for all scanout buffers.
3988 */
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003989 ret = i915_gem_obj_ggtt_pin(obj, alignment, PIN_MAPPABLE);
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003990 if (ret)
Chris Wilsoncc98b412013-08-09 12:25:09 +01003991 goto err_unpin_display;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003992
Daniel Vettere62b59e2015-01-21 14:53:48 +01003993 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilsonb118c1e2010-05-27 13:18:14 +01003994
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003995 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00003996 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003997
3998 /* It should now be out of any other write domains, and we can update
3999 * the domain values for our changes.
4000 */
Chris Wilsone5f1d962012-07-20 12:41:00 +01004001 obj->base.write_domain = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00004002 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08004003
4004 trace_i915_gem_object_change_domain(obj,
4005 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01004006 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08004007
4008 return 0;
Chris Wilsoncc98b412013-08-09 12:25:09 +01004009
4010err_unpin_display:
Oscar Mateo19656432014-05-16 14:20:43 +01004011 WARN_ON(was_pin_display != is_pin_display(obj));
4012 obj->pin_display = was_pin_display;
Chris Wilsoncc98b412013-08-09 12:25:09 +01004013 return ret;
4014}
4015
4016void
4017i915_gem_object_unpin_from_display_plane(struct drm_i915_gem_object *obj)
4018{
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004019 i915_gem_object_ggtt_unpin(obj);
Chris Wilsoncc98b412013-08-09 12:25:09 +01004020 obj->pin_display = is_pin_display(obj);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08004021}
4022
Chris Wilson85345512010-11-13 09:49:11 +00004023int
Chris Wilsona8198ee2011-04-13 22:04:09 +01004024i915_gem_object_finish_gpu(struct drm_i915_gem_object *obj)
Chris Wilson85345512010-11-13 09:49:11 +00004025{
Chris Wilson88241782011-01-07 17:09:48 +00004026 int ret;
4027
Chris Wilsona8198ee2011-04-13 22:04:09 +01004028 if ((obj->base.read_domains & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson85345512010-11-13 09:49:11 +00004029 return 0;
4030
Chris Wilson0201f1e2012-07-20 12:41:01 +01004031 ret = i915_gem_object_wait_rendering(obj, false);
Chris Wilsonc501ae72011-12-14 13:57:23 +01004032 if (ret)
4033 return ret;
4034
Chris Wilsona8198ee2011-04-13 22:04:09 +01004035 /* Ensure that we invalidate the GPU's caches and TLBs. */
4036 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilsonc501ae72011-12-14 13:57:23 +01004037 return 0;
Chris Wilson85345512010-11-13 09:49:11 +00004038}
4039
Eric Anholte47c68e2008-11-14 13:35:19 -08004040/**
4041 * Moves a single object to the CPU read, and possibly write domain.
4042 *
4043 * This function returns when the move is complete, including waiting on
4044 * flushes to occur.
4045 */
Chris Wilsondabdfe02012-03-26 10:10:27 +02004046int
Chris Wilson919926a2010-11-12 13:42:53 +00004047i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08004048{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004049 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08004050 int ret;
4051
Chris Wilson8d7e3de2011-02-07 15:23:02 +00004052 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
4053 return 0;
4054
Chris Wilson0201f1e2012-07-20 12:41:01 +01004055 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00004056 if (ret)
4057 return ret;
4058
Chris Wilsonc8725f32014-03-17 12:21:55 +00004059 i915_gem_object_retire(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08004060 i915_gem_object_flush_gtt_write_domain(obj);
4061
Chris Wilson05394f32010-11-08 19:18:58 +00004062 old_write_domain = obj->base.write_domain;
4063 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004064
Eric Anholte47c68e2008-11-14 13:35:19 -08004065 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00004066 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Chris Wilson2c225692013-08-09 12:26:45 +01004067 i915_gem_clflush_object(obj, false);
Eric Anholte47c68e2008-11-14 13:35:19 -08004068
Chris Wilson05394f32010-11-08 19:18:58 +00004069 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08004070 }
4071
4072 /* It should now be out of any other write domains, and we can update
4073 * the domain values for our changes.
4074 */
Chris Wilson05394f32010-11-08 19:18:58 +00004075 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08004076
4077 /* If we're writing through the CPU, then the GPU read domains will
4078 * need to be invalidated at next use.
4079 */
4080 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00004081 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4082 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08004083 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08004084
Daniel Vetterf99d7062014-06-19 16:01:59 +02004085 if (write)
4086 intel_fb_obj_invalidate(obj, NULL);
4087
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004088 trace_i915_gem_object_change_domain(obj,
4089 old_read_domains,
4090 old_write_domain);
4091
Eric Anholt2ef7eea2008-11-10 10:53:25 -08004092 return 0;
4093}
4094
Eric Anholt673a3942008-07-30 12:06:12 -07004095/* Throttle our rendering by waiting until the ring has completed our requests
4096 * emitted over 20 msec ago.
4097 *
Eric Anholtb9624422009-06-03 07:27:35 +00004098 * Note that if we were to use the current jiffies each time around the loop,
4099 * we wouldn't escape the function with any frames outstanding if the time to
4100 * render a frame was over 20ms.
4101 *
Eric Anholt673a3942008-07-30 12:06:12 -07004102 * This should get us reasonable parallelism between CPU and GPU but also
4103 * relatively low latency when blocking on a particular request to finish.
4104 */
4105static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004106i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004107{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004108 struct drm_i915_private *dev_priv = dev->dev_private;
4109 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00004110 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
John Harrison54fb2412014-11-24 18:49:27 +00004111 struct drm_i915_gem_request *request, *target = NULL;
Daniel Vetterf69061b2012-12-06 09:01:42 +01004112 unsigned reset_counter;
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004113 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004114
Daniel Vetter308887a2012-11-14 17:14:06 +01004115 ret = i915_gem_wait_for_error(&dev_priv->gpu_error);
4116 if (ret)
4117 return ret;
4118
4119 ret = i915_gem_check_wedge(&dev_priv->gpu_error, false);
4120 if (ret)
4121 return ret;
Chris Wilsone110e8d2011-01-26 15:39:14 +00004122
Chris Wilson1c255952010-09-26 11:03:27 +01004123 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004124 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00004125 if (time_after_eq(request->emitted_jiffies, recent_enough))
4126 break;
4127
John Harrison54fb2412014-11-24 18:49:27 +00004128 target = request;
Eric Anholtb9624422009-06-03 07:27:35 +00004129 }
Daniel Vetterf69061b2012-12-06 09:01:42 +01004130 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
John Harrisonff865882014-11-24 18:49:28 +00004131 if (target)
4132 i915_gem_request_reference(target);
Chris Wilson1c255952010-09-26 11:03:27 +01004133 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004134
John Harrison54fb2412014-11-24 18:49:27 +00004135 if (target == NULL)
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004136 return 0;
4137
John Harrison9c654812014-11-24 18:49:35 +00004138 ret = __i915_wait_request(target, reset_counter, true, NULL, NULL);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004139 if (ret == 0)
4140 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00004141
John Harrisonff865882014-11-24 18:49:28 +00004142 mutex_lock(&dev->struct_mutex);
4143 i915_gem_request_unreference(target);
4144 mutex_unlock(&dev->struct_mutex);
4145
Eric Anholt673a3942008-07-30 12:06:12 -07004146 return ret;
4147}
4148
Chris Wilsond23db882014-05-23 08:48:08 +02004149static bool
4150i915_vma_misplaced(struct i915_vma *vma, uint32_t alignment, uint64_t flags)
4151{
4152 struct drm_i915_gem_object *obj = vma->obj;
4153
4154 if (alignment &&
4155 vma->node.start & (alignment - 1))
4156 return true;
4157
4158 if (flags & PIN_MAPPABLE && !obj->map_and_fenceable)
4159 return true;
4160
4161 if (flags & PIN_OFFSET_BIAS &&
4162 vma->node.start < (flags & PIN_OFFSET_MASK))
4163 return true;
4164
4165 return false;
4166}
4167
Eric Anholt673a3942008-07-30 12:06:12 -07004168int
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00004169i915_gem_object_pin_view(struct drm_i915_gem_object *obj,
4170 struct i915_address_space *vm,
4171 uint32_t alignment,
4172 uint64_t flags,
4173 const struct i915_ggtt_view *view)
Eric Anholt673a3942008-07-30 12:06:12 -07004174{
Ben Widawsky6e7186a2014-05-06 22:21:36 -07004175 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004176 struct i915_vma *vma;
Chris Wilsonef79e172014-10-31 13:53:52 +00004177 unsigned bound;
Eric Anholt673a3942008-07-30 12:06:12 -07004178 int ret;
4179
Ben Widawsky6e7186a2014-05-06 22:21:36 -07004180 if (WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base))
4181 return -ENODEV;
4182
Daniel Vetterbf3d1492014-02-14 14:01:12 +01004183 if (WARN_ON(flags & (PIN_GLOBAL | PIN_MAPPABLE) && !i915_is_ggtt(vm)))
Daniel Vetter1ec9e262014-02-14 14:01:11 +01004184 return -EINVAL;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004185
Chris Wilsonc826c442014-10-31 13:53:53 +00004186 if (WARN_ON((flags & (PIN_MAPPABLE | PIN_GLOBAL)) == PIN_MAPPABLE))
4187 return -EINVAL;
4188
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00004189 vma = i915_gem_obj_to_vma_view(obj, vm, view);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004190 if (vma) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004191 if (WARN_ON(vma->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT))
4192 return -EBUSY;
4193
Chris Wilsond23db882014-05-23 08:48:08 +02004194 if (i915_vma_misplaced(vma, alignment, flags)) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004195 WARN(vma->pin_count,
Chris Wilsonae7d49d2010-08-04 12:37:41 +01004196 "bo is already pinned with incorrect alignment:"
Ben Widawskyf343c5f2013-07-05 14:41:04 -07004197 " offset=%lx, req.alignment=%x, req.map_and_fenceable=%d,"
Daniel Vetter75e9e912010-11-04 17:11:09 +01004198 " obj->map_and_fenceable=%d\n",
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00004199 i915_gem_obj_offset_view(obj, vm, view->type),
4200 alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02004201 !!(flags & PIN_MAPPABLE),
Chris Wilson05394f32010-11-08 19:18:58 +00004202 obj->map_and_fenceable);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004203 ret = i915_vma_unbind(vma);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004204 if (ret)
4205 return ret;
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004206
4207 vma = NULL;
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004208 }
4209 }
4210
Chris Wilsonef79e172014-10-31 13:53:52 +00004211 bound = vma ? vma->bound : 0;
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004212 if (vma == NULL || !drm_mm_node_allocated(&vma->node)) {
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00004213 vma = i915_gem_object_bind_to_vm(obj, vm, alignment,
4214 flags, view);
Daniel Vetter262de142014-02-14 14:01:20 +01004215 if (IS_ERR(vma))
4216 return PTR_ERR(vma);
Chris Wilson22c344e2009-02-11 14:26:45 +00004217 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05004218
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00004219 if (flags & PIN_GLOBAL && !(vma->bound & GLOBAL_BIND)) {
4220 ret = i915_vma_bind(vma, obj->cache_level, GLOBAL_BIND);
4221 if (ret)
4222 return ret;
4223 }
Daniel Vetter74898d72012-02-15 23:50:22 +01004224
Chris Wilsonef79e172014-10-31 13:53:52 +00004225 if ((bound ^ vma->bound) & GLOBAL_BIND) {
4226 bool mappable, fenceable;
4227 u32 fence_size, fence_alignment;
4228
4229 fence_size = i915_gem_get_gtt_size(obj->base.dev,
4230 obj->base.size,
4231 obj->tiling_mode);
4232 fence_alignment = i915_gem_get_gtt_alignment(obj->base.dev,
4233 obj->base.size,
4234 obj->tiling_mode,
4235 true);
4236
4237 fenceable = (vma->node.size == fence_size &&
4238 (vma->node.start & (fence_alignment - 1)) == 0);
4239
4240 mappable = (vma->node.start + obj->base.size <=
4241 dev_priv->gtt.mappable_end);
4242
4243 obj->map_and_fenceable = mappable && fenceable;
4244 }
4245
4246 WARN_ON(flags & PIN_MAPPABLE && !obj->map_and_fenceable);
4247
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004248 vma->pin_count++;
Daniel Vetter1ec9e262014-02-14 14:01:11 +01004249 if (flags & PIN_MAPPABLE)
4250 obj->pin_mappable |= true;
Eric Anholt673a3942008-07-30 12:06:12 -07004251
4252 return 0;
4253}
4254
4255void
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004256i915_gem_object_ggtt_unpin(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07004257{
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004258 struct i915_vma *vma = i915_gem_obj_to_ggtt(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004259
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004260 BUG_ON(!vma);
4261 BUG_ON(vma->pin_count == 0);
4262 BUG_ON(!i915_gem_obj_ggtt_bound(obj));
4263
4264 if (--vma->pin_count == 0)
Chris Wilson6299f992010-11-24 12:23:44 +00004265 obj->pin_mappable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07004266}
4267
Daniel Vetterd8ffa602014-05-13 12:11:26 +02004268bool
4269i915_gem_object_pin_fence(struct drm_i915_gem_object *obj)
4270{
4271 if (obj->fence_reg != I915_FENCE_REG_NONE) {
4272 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
4273 struct i915_vma *ggtt_vma = i915_gem_obj_to_ggtt(obj);
4274
4275 WARN_ON(!ggtt_vma ||
4276 dev_priv->fence_regs[obj->fence_reg].pin_count >
4277 ggtt_vma->pin_count);
4278 dev_priv->fence_regs[obj->fence_reg].pin_count++;
4279 return true;
4280 } else
4281 return false;
4282}
4283
4284void
4285i915_gem_object_unpin_fence(struct drm_i915_gem_object *obj)
4286{
4287 if (obj->fence_reg != I915_FENCE_REG_NONE) {
4288 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
4289 WARN_ON(dev_priv->fence_regs[obj->fence_reg].pin_count <= 0);
4290 dev_priv->fence_regs[obj->fence_reg].pin_count--;
4291 }
4292}
4293
Eric Anholt673a3942008-07-30 12:06:12 -07004294int
Eric Anholt673a3942008-07-30 12:06:12 -07004295i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00004296 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004297{
4298 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004299 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01004300 int ret;
4301
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004302 ret = i915_mutex_lock_interruptible(dev);
4303 if (ret)
4304 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004305
Chris Wilson05394f32010-11-08 19:18:58 +00004306 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004307 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004308 ret = -ENOENT;
4309 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07004310 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08004311
Chris Wilson0be555b2010-08-04 15:36:30 +01004312 /* Count all active objects as busy, even if they are currently not used
4313 * by the gpu. Users of this interface expect objects to eventually
4314 * become non-busy without any further actions, therefore emit any
4315 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08004316 */
Daniel Vetter30dfebf2012-06-01 15:21:23 +02004317 ret = i915_gem_object_flush_active(obj);
4318
Chris Wilson05394f32010-11-08 19:18:58 +00004319 args->busy = obj->active;
John Harrison41c52412014-11-24 18:49:43 +00004320 if (obj->last_read_req) {
4321 struct intel_engine_cs *ring;
Chris Wilsone9808ed2012-07-04 12:25:08 +01004322 BUILD_BUG_ON(I915_NUM_RINGS > 16);
John Harrison41c52412014-11-24 18:49:43 +00004323 ring = i915_gem_request_get_ring(obj->last_read_req);
4324 args->busy |= intel_ring_flag(ring) << 16;
Chris Wilsone9808ed2012-07-04 12:25:08 +01004325 }
Eric Anholt673a3942008-07-30 12:06:12 -07004326
Chris Wilson05394f32010-11-08 19:18:58 +00004327 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004328unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07004329 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004330 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004331}
4332
4333int
4334i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
4335 struct drm_file *file_priv)
4336{
Akshay Joshi0206e352011-08-16 15:34:10 -04004337 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07004338}
4339
Chris Wilson3ef94da2009-09-14 16:50:29 +01004340int
4341i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
4342 struct drm_file *file_priv)
4343{
Daniel Vetter656bfa32014-11-20 09:26:30 +01004344 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004345 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004346 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01004347 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004348
4349 switch (args->madv) {
4350 case I915_MADV_DONTNEED:
4351 case I915_MADV_WILLNEED:
4352 break;
4353 default:
4354 return -EINVAL;
4355 }
4356
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004357 ret = i915_mutex_lock_interruptible(dev);
4358 if (ret)
4359 return ret;
4360
Chris Wilson05394f32010-11-08 19:18:58 +00004361 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004362 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004363 ret = -ENOENT;
4364 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004365 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01004366
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004367 if (i915_gem_obj_is_pinned(obj)) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004368 ret = -EINVAL;
4369 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004370 }
4371
Daniel Vetter656bfa32014-11-20 09:26:30 +01004372 if (obj->pages &&
4373 obj->tiling_mode != I915_TILING_NONE &&
4374 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES) {
4375 if (obj->madv == I915_MADV_WILLNEED)
4376 i915_gem_object_unpin_pages(obj);
4377 if (args->madv == I915_MADV_WILLNEED)
4378 i915_gem_object_pin_pages(obj);
4379 }
4380
Chris Wilson05394f32010-11-08 19:18:58 +00004381 if (obj->madv != __I915_MADV_PURGED)
4382 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004383
Chris Wilson6c085a72012-08-20 11:40:46 +02004384 /* if the object is no longer attached, discard its backing storage */
4385 if (i915_gem_object_is_purgeable(obj) && obj->pages == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01004386 i915_gem_object_truncate(obj);
4387
Chris Wilson05394f32010-11-08 19:18:58 +00004388 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01004389
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004390out:
Chris Wilson05394f32010-11-08 19:18:58 +00004391 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004392unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01004393 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004394 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004395}
4396
Chris Wilson37e680a2012-06-07 15:38:42 +01004397void i915_gem_object_init(struct drm_i915_gem_object *obj,
4398 const struct drm_i915_gem_object_ops *ops)
Chris Wilson0327d6b2012-08-11 15:41:06 +01004399{
Ben Widawsky35c20a62013-05-31 11:28:48 -07004400 INIT_LIST_HEAD(&obj->global_list);
Chris Wilson0327d6b2012-08-11 15:41:06 +01004401 INIT_LIST_HEAD(&obj->ring_list);
Ben Widawskyb25cb2f2013-08-14 11:38:33 +02004402 INIT_LIST_HEAD(&obj->obj_exec_link);
Ben Widawsky2f633152013-07-17 12:19:03 -07004403 INIT_LIST_HEAD(&obj->vma_list);
Brad Volkin493018d2014-12-11 12:13:08 -08004404 INIT_LIST_HEAD(&obj->batch_pool_list);
Chris Wilson0327d6b2012-08-11 15:41:06 +01004405
Chris Wilson37e680a2012-06-07 15:38:42 +01004406 obj->ops = ops;
4407
Chris Wilson0327d6b2012-08-11 15:41:06 +01004408 obj->fence_reg = I915_FENCE_REG_NONE;
4409 obj->madv = I915_MADV_WILLNEED;
Chris Wilson0327d6b2012-08-11 15:41:06 +01004410
4411 i915_gem_info_add_obj(obj->base.dev->dev_private, obj->base.size);
4412}
4413
Chris Wilson37e680a2012-06-07 15:38:42 +01004414static const struct drm_i915_gem_object_ops i915_gem_object_ops = {
4415 .get_pages = i915_gem_object_get_pages_gtt,
4416 .put_pages = i915_gem_object_put_pages_gtt,
4417};
4418
Chris Wilson05394f32010-11-08 19:18:58 +00004419struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
4420 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00004421{
Daniel Vetterc397b902010-04-09 19:05:07 +00004422 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07004423 struct address_space *mapping;
Daniel Vetter1a240d42012-11-29 22:18:51 +01004424 gfp_t mask;
Daniel Vetterc397b902010-04-09 19:05:07 +00004425
Chris Wilson42dcedd2012-11-15 11:32:30 +00004426 obj = i915_gem_object_alloc(dev);
Daniel Vetterc397b902010-04-09 19:05:07 +00004427 if (obj == NULL)
4428 return NULL;
4429
4430 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
Chris Wilson42dcedd2012-11-15 11:32:30 +00004431 i915_gem_object_free(obj);
Daniel Vetterc397b902010-04-09 19:05:07 +00004432 return NULL;
4433 }
4434
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004435 mask = GFP_HIGHUSER | __GFP_RECLAIMABLE;
4436 if (IS_CRESTLINE(dev) || IS_BROADWATER(dev)) {
4437 /* 965gm cannot relocate objects above 4GiB. */
4438 mask &= ~__GFP_HIGHMEM;
4439 mask |= __GFP_DMA32;
4440 }
4441
Al Viro496ad9a2013-01-23 17:07:38 -05004442 mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004443 mapping_set_gfp_mask(mapping, mask);
Hugh Dickins5949eac2011-06-27 16:18:18 -07004444
Chris Wilson37e680a2012-06-07 15:38:42 +01004445 i915_gem_object_init(obj, &i915_gem_object_ops);
Chris Wilson73aa8082010-09-30 11:46:12 +01004446
Daniel Vetterc397b902010-04-09 19:05:07 +00004447 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
4448 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4449
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02004450 if (HAS_LLC(dev)) {
4451 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07004452 * cache) for about a 10% performance improvement
4453 * compared to uncached. Graphics requests other than
4454 * display scanout are coherent with the CPU in
4455 * accessing this cache. This means in this mode we
4456 * don't need to clflush on the CPU side, and on the
4457 * GPU side we only need to flush internal caches to
4458 * get data visible to the CPU.
4459 *
4460 * However, we maintain the display planes as UC, and so
4461 * need to rebind when first used as such.
4462 */
4463 obj->cache_level = I915_CACHE_LLC;
4464 } else
4465 obj->cache_level = I915_CACHE_NONE;
4466
Daniel Vetterd861e332013-07-24 23:25:03 +02004467 trace_i915_gem_object_create(obj);
4468
Chris Wilson05394f32010-11-08 19:18:58 +00004469 return obj;
Daniel Vetterac52bc52010-04-09 19:05:06 +00004470}
4471
Chris Wilson340fbd82014-05-22 09:16:52 +01004472static bool discard_backing_storage(struct drm_i915_gem_object *obj)
4473{
4474 /* If we are the last user of the backing storage (be it shmemfs
4475 * pages or stolen etc), we know that the pages are going to be
4476 * immediately released. In this case, we can then skip copying
4477 * back the contents from the GPU.
4478 */
4479
4480 if (obj->madv != I915_MADV_WILLNEED)
4481 return false;
4482
4483 if (obj->base.filp == NULL)
4484 return true;
4485
4486 /* At first glance, this looks racy, but then again so would be
4487 * userspace racing mmap against close. However, the first external
4488 * reference to the filp can only be obtained through the
4489 * i915_gem_mmap_ioctl() which safeguards us against the user
4490 * acquiring such a reference whilst we are in the middle of
4491 * freeing the object.
4492 */
4493 return atomic_long_read(&obj->base.filp->f_count) == 1;
4494}
4495
Chris Wilson1488fc02012-04-24 15:47:31 +01004496void i915_gem_free_object(struct drm_gem_object *gem_obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01004497{
Chris Wilson1488fc02012-04-24 15:47:31 +01004498 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00004499 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004500 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004501 struct i915_vma *vma, *next;
Chris Wilsonbe726152010-07-23 23:18:50 +01004502
Paulo Zanonif65c9162013-11-27 18:20:34 -02004503 intel_runtime_pm_get(dev_priv);
4504
Chris Wilson26e12f892011-03-20 11:20:19 +00004505 trace_i915_gem_object_destroy(obj);
4506
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004507 list_for_each_entry_safe(vma, next, &obj->vma_list, vma_link) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004508 int ret;
4509
4510 vma->pin_count = 0;
4511 ret = i915_vma_unbind(vma);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004512 if (WARN_ON(ret == -ERESTARTSYS)) {
4513 bool was_interruptible;
Chris Wilson1488fc02012-04-24 15:47:31 +01004514
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004515 was_interruptible = dev_priv->mm.interruptible;
4516 dev_priv->mm.interruptible = false;
Chris Wilson1488fc02012-04-24 15:47:31 +01004517
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004518 WARN_ON(i915_vma_unbind(vma));
Chris Wilson1488fc02012-04-24 15:47:31 +01004519
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004520 dev_priv->mm.interruptible = was_interruptible;
4521 }
Chris Wilson1488fc02012-04-24 15:47:31 +01004522 }
4523
Ben Widawsky1d64ae72013-05-31 14:46:20 -07004524 /* Stolen objects don't hold a ref, but do hold pin count. Fix that up
4525 * before progressing. */
4526 if (obj->stolen)
4527 i915_gem_object_unpin_pages(obj);
4528
Daniel Vettera071fa02014-06-18 23:28:09 +02004529 WARN_ON(obj->frontbuffer_bits);
4530
Daniel Vetter656bfa32014-11-20 09:26:30 +01004531 if (obj->pages && obj->madv == I915_MADV_WILLNEED &&
4532 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES &&
4533 obj->tiling_mode != I915_TILING_NONE)
4534 i915_gem_object_unpin_pages(obj);
4535
Ben Widawsky401c29f2013-05-31 11:28:47 -07004536 if (WARN_ON(obj->pages_pin_count))
4537 obj->pages_pin_count = 0;
Chris Wilson340fbd82014-05-22 09:16:52 +01004538 if (discard_backing_storage(obj))
Chris Wilson55372522014-03-25 13:23:06 +00004539 obj->madv = I915_MADV_DONTNEED;
Chris Wilson37e680a2012-06-07 15:38:42 +01004540 i915_gem_object_put_pages(obj);
Chris Wilsond8cb5082012-08-11 15:41:03 +01004541 i915_gem_object_free_mmap_offset(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01004542
Chris Wilson9da3da62012-06-01 15:20:22 +01004543 BUG_ON(obj->pages);
4544
Chris Wilson2f745ad2012-09-04 21:02:58 +01004545 if (obj->base.import_attach)
4546 drm_prime_gem_destroy(&obj->base, NULL);
Chris Wilsonbe726152010-07-23 23:18:50 +01004547
Chris Wilson5cc9ed42014-05-16 14:22:37 +01004548 if (obj->ops->release)
4549 obj->ops->release(obj);
4550
Chris Wilson05394f32010-11-08 19:18:58 +00004551 drm_gem_object_release(&obj->base);
4552 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01004553
Chris Wilson05394f32010-11-08 19:18:58 +00004554 kfree(obj->bit_17);
Chris Wilson42dcedd2012-11-15 11:32:30 +00004555 i915_gem_object_free(obj);
Paulo Zanonif65c9162013-11-27 18:20:34 -02004556
4557 intel_runtime_pm_put(dev_priv);
Chris Wilsonbe726152010-07-23 23:18:50 +01004558}
4559
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00004560struct i915_vma *i915_gem_obj_to_vma_view(struct drm_i915_gem_object *obj,
4561 struct i915_address_space *vm,
4562 const struct i915_ggtt_view *view)
Ben Widawsky2f633152013-07-17 12:19:03 -07004563{
Daniel Vettere656a6c2013-08-14 14:14:04 +02004564 struct i915_vma *vma;
4565 list_for_each_entry(vma, &obj->vma_list, vma_link)
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00004566 if (vma->vm == vm && vma->ggtt_view.type == view->type)
Daniel Vettere656a6c2013-08-14 14:14:04 +02004567 return vma;
4568
4569 return NULL;
4570}
4571
Ben Widawsky2f633152013-07-17 12:19:03 -07004572void i915_gem_vma_destroy(struct i915_vma *vma)
4573{
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004574 struct i915_address_space *vm = NULL;
Ben Widawsky2f633152013-07-17 12:19:03 -07004575 WARN_ON(vma->node.allocated);
Chris Wilsonaaa05662013-08-20 12:56:40 +01004576
4577 /* Keep the vma as a placeholder in the execbuffer reservation lists */
4578 if (!list_empty(&vma->exec_list))
4579 return;
4580
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004581 vm = vma->vm;
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004582
Daniel Vetter841cd772014-08-06 15:04:48 +02004583 if (!i915_is_ggtt(vm))
4584 i915_ppgtt_put(i915_vm_to_ppgtt(vm));
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004585
Ben Widawsky8b9c2b92013-07-31 17:00:16 -07004586 list_del(&vma->vma_link);
Daniel Vetterb93dab62013-08-26 11:23:47 +02004587
Ben Widawsky2f633152013-07-17 12:19:03 -07004588 kfree(vma);
4589}
4590
Chris Wilsone3efda42014-04-09 09:19:41 +01004591static void
4592i915_gem_stop_ringbuffers(struct drm_device *dev)
4593{
4594 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004595 struct intel_engine_cs *ring;
Chris Wilsone3efda42014-04-09 09:19:41 +01004596 int i;
4597
4598 for_each_ring(ring, dev_priv, i)
Oscar Mateoa83014d2014-07-24 17:04:21 +01004599 dev_priv->gt.stop_ring(ring);
Chris Wilsone3efda42014-04-09 09:19:41 +01004600}
4601
Jesse Barnes5669fca2009-02-17 15:13:31 -08004602int
Chris Wilson45c5f202013-10-16 11:50:01 +01004603i915_gem_suspend(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07004604{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004605 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson45c5f202013-10-16 11:50:01 +01004606 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07004607
Chris Wilson45c5f202013-10-16 11:50:01 +01004608 mutex_lock(&dev->struct_mutex);
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004609 ret = i915_gpu_idle(dev);
Chris Wilsonf7403342013-09-13 23:57:04 +01004610 if (ret)
Chris Wilson45c5f202013-10-16 11:50:01 +01004611 goto err;
Chris Wilsonf7403342013-09-13 23:57:04 +01004612
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004613 i915_gem_retire_requests(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07004614
Chris Wilson29105cc2010-01-07 10:39:13 +00004615 /* Under UMS, be paranoid and evict. */
Chris Wilsona39d7ef2012-04-24 18:22:52 +01004616 if (!drm_core_check_feature(dev, DRIVER_MODESET))
Chris Wilson6c085a72012-08-20 11:40:46 +02004617 i915_gem_evict_everything(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00004618
Chris Wilsone3efda42014-04-09 09:19:41 +01004619 i915_gem_stop_ringbuffers(dev);
Chris Wilson45c5f202013-10-16 11:50:01 +01004620 mutex_unlock(&dev->struct_mutex);
4621
Chris Wilson737b1502015-01-26 18:03:03 +02004622 cancel_delayed_work_sync(&dev_priv->gpu_error.hangcheck_work);
Chris Wilson29105cc2010-01-07 10:39:13 +00004623 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
Deepak S274fa1c2014-08-05 07:51:20 -07004624 flush_delayed_work(&dev_priv->mm.idle_work);
Chris Wilson29105cc2010-01-07 10:39:13 +00004625
Chris Wilsonbdcf1202014-11-25 11:56:33 +00004626 /* Assert that we sucessfully flushed all the work and
4627 * reset the GPU back to its idle, low power state.
4628 */
4629 WARN_ON(dev_priv->mm.busy);
4630
Eric Anholt673a3942008-07-30 12:06:12 -07004631 return 0;
Chris Wilson45c5f202013-10-16 11:50:01 +01004632
4633err:
4634 mutex_unlock(&dev->struct_mutex);
4635 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004636}
4637
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004638int i915_gem_l3_remap(struct intel_engine_cs *ring, int slice)
Ben Widawskyb9524a12012-05-25 16:56:24 -07004639{
Ben Widawskyc3787e22013-09-17 21:12:44 -07004640 struct drm_device *dev = ring->dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004641 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07004642 u32 reg_base = GEN7_L3LOG_BASE + (slice * 0x200);
4643 u32 *remap_info = dev_priv->l3_parity.remap_info[slice];
Ben Widawskyc3787e22013-09-17 21:12:44 -07004644 int i, ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004645
Ben Widawsky040d2ba2013-09-19 11:01:40 -07004646 if (!HAS_L3_DPF(dev) || !remap_info)
Ben Widawskyc3787e22013-09-17 21:12:44 -07004647 return 0;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004648
Ben Widawskyc3787e22013-09-17 21:12:44 -07004649 ret = intel_ring_begin(ring, GEN7_L3LOG_SIZE / 4 * 3);
4650 if (ret)
4651 return ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004652
Ben Widawskyc3787e22013-09-17 21:12:44 -07004653 /*
4654 * Note: We do not worry about the concurrent register cacheline hang
4655 * here because no other code should access these registers other than
4656 * at initialization time.
4657 */
Ben Widawskyb9524a12012-05-25 16:56:24 -07004658 for (i = 0; i < GEN7_L3LOG_SIZE; i += 4) {
Ben Widawskyc3787e22013-09-17 21:12:44 -07004659 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
4660 intel_ring_emit(ring, reg_base + i);
4661 intel_ring_emit(ring, remap_info[i/4]);
Ben Widawskyb9524a12012-05-25 16:56:24 -07004662 }
4663
Ben Widawskyc3787e22013-09-17 21:12:44 -07004664 intel_ring_advance(ring);
Ben Widawskyb9524a12012-05-25 16:56:24 -07004665
Ben Widawskyc3787e22013-09-17 21:12:44 -07004666 return ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004667}
4668
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004669void i915_gem_init_swizzling(struct drm_device *dev)
4670{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004671 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004672
Daniel Vetter11782b02012-01-31 16:47:55 +01004673 if (INTEL_INFO(dev)->gen < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004674 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
4675 return;
4676
4677 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
4678 DISP_TILE_SURFACE_SWIZZLING);
4679
Daniel Vetter11782b02012-01-31 16:47:55 +01004680 if (IS_GEN5(dev))
4681 return;
4682
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004683 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
4684 if (IS_GEN6(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004685 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_SNB));
Ben Widawsky8782e262012-12-18 10:31:23 -08004686 else if (IS_GEN7(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004687 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_IVB));
Ben Widawsky31a53362013-11-02 21:07:04 -07004688 else if (IS_GEN8(dev))
4689 I915_WRITE(GAMTARBMODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_BDW));
Ben Widawsky8782e262012-12-18 10:31:23 -08004690 else
4691 BUG();
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004692}
Daniel Vettere21af882012-02-09 20:53:27 +01004693
Chris Wilson67b1b572012-07-05 23:49:40 +01004694static bool
4695intel_enable_blt(struct drm_device *dev)
4696{
4697 if (!HAS_BLT(dev))
4698 return false;
4699
4700 /* The blitter was dysfunctional on early prototypes */
4701 if (IS_GEN6(dev) && dev->pdev->revision < 8) {
4702 DRM_INFO("BLT not supported on this pre-production hardware;"
4703 " graphics performance will be degraded.\n");
4704 return false;
4705 }
4706
4707 return true;
4708}
4709
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004710static void init_unused_ring(struct drm_device *dev, u32 base)
4711{
4712 struct drm_i915_private *dev_priv = dev->dev_private;
4713
4714 I915_WRITE(RING_CTL(base), 0);
4715 I915_WRITE(RING_HEAD(base), 0);
4716 I915_WRITE(RING_TAIL(base), 0);
4717 I915_WRITE(RING_START(base), 0);
4718}
4719
4720static void init_unused_rings(struct drm_device *dev)
4721{
4722 if (IS_I830(dev)) {
4723 init_unused_ring(dev, PRB1_BASE);
4724 init_unused_ring(dev, SRB0_BASE);
4725 init_unused_ring(dev, SRB1_BASE);
4726 init_unused_ring(dev, SRB2_BASE);
4727 init_unused_ring(dev, SRB3_BASE);
4728 } else if (IS_GEN2(dev)) {
4729 init_unused_ring(dev, SRB0_BASE);
4730 init_unused_ring(dev, SRB1_BASE);
4731 } else if (IS_GEN3(dev)) {
4732 init_unused_ring(dev, PRB1_BASE);
4733 init_unused_ring(dev, PRB2_BASE);
4734 }
4735}
4736
Oscar Mateoa83014d2014-07-24 17:04:21 +01004737int i915_gem_init_rings(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004738{
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004739 struct drm_i915_private *dev_priv = dev->dev_private;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004740 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004741
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004742 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004743 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00004744 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004745
4746 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004747 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004748 if (ret)
4749 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08004750 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01004751
Chris Wilson67b1b572012-07-05 23:49:40 +01004752 if (intel_enable_blt(dev)) {
Chris Wilson549f7362010-10-19 11:19:32 +01004753 ret = intel_init_blt_ring_buffer(dev);
4754 if (ret)
4755 goto cleanup_bsd_ring;
4756 }
4757
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004758 if (HAS_VEBOX(dev)) {
4759 ret = intel_init_vebox_ring_buffer(dev);
4760 if (ret)
4761 goto cleanup_blt_ring;
4762 }
4763
Zhao Yakui845f74a2014-04-17 10:37:37 +08004764 if (HAS_BSD2(dev)) {
4765 ret = intel_init_bsd2_ring_buffer(dev);
4766 if (ret)
4767 goto cleanup_vebox_ring;
4768 }
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004769
Mika Kuoppala99433932013-01-22 14:12:17 +02004770 ret = i915_gem_set_seqno(dev, ((u32)~0 - 0x1000));
4771 if (ret)
Zhao Yakui845f74a2014-04-17 10:37:37 +08004772 goto cleanup_bsd2_ring;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004773
4774 return 0;
4775
Zhao Yakui845f74a2014-04-17 10:37:37 +08004776cleanup_bsd2_ring:
4777 intel_cleanup_ring_buffer(&dev_priv->ring[VCS2]);
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004778cleanup_vebox_ring:
4779 intel_cleanup_ring_buffer(&dev_priv->ring[VECS]);
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004780cleanup_blt_ring:
4781 intel_cleanup_ring_buffer(&dev_priv->ring[BCS]);
4782cleanup_bsd_ring:
4783 intel_cleanup_ring_buffer(&dev_priv->ring[VCS]);
4784cleanup_render_ring:
4785 intel_cleanup_ring_buffer(&dev_priv->ring[RCS]);
4786
4787 return ret;
4788}
4789
4790int
4791i915_gem_init_hw(struct drm_device *dev)
4792{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004793 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter35a57ff2014-11-20 00:33:07 +01004794 struct intel_engine_cs *ring;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07004795 int ret, i;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004796
4797 if (INTEL_INFO(dev)->gen < 6 && !intel_enable_gtt())
4798 return -EIO;
4799
Chris Wilson5e4f5182015-02-13 14:35:59 +00004800 /* Double layer security blanket, see i915_gem_init() */
4801 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
4802
Ben Widawsky59124502013-07-04 11:02:05 -07004803 if (dev_priv->ellc_size)
Ben Widawsky05e21cc2013-07-04 11:02:04 -07004804 I915_WRITE(HSW_IDICR, I915_READ(HSW_IDICR) | IDIHASHMSK(0xf));
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004805
Ville Syrjälä0bf21342013-11-29 14:56:12 +02004806 if (IS_HASWELL(dev))
4807 I915_WRITE(MI_PREDICATE_RESULT_2, IS_HSW_GT3(dev) ?
4808 LOWER_SLICE_ENABLED : LOWER_SLICE_DISABLED);
Rodrigo Vivi94353732013-08-28 16:45:46 -03004809
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004810 if (HAS_PCH_NOP(dev)) {
Daniel Vetter6ba844b2014-01-22 23:39:30 +01004811 if (IS_IVYBRIDGE(dev)) {
4812 u32 temp = I915_READ(GEN7_MSG_CTL);
4813 temp &= ~(WAIT_FOR_PCH_FLR_ACK | WAIT_FOR_PCH_RESET_ACK);
4814 I915_WRITE(GEN7_MSG_CTL, temp);
4815 } else if (INTEL_INFO(dev)->gen >= 7) {
4816 u32 temp = I915_READ(HSW_NDE_RSTWRN_OPT);
4817 temp &= ~RESET_PCH_HANDSHAKE_ENABLE;
4818 I915_WRITE(HSW_NDE_RSTWRN_OPT, temp);
4819 }
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004820 }
4821
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004822 i915_gem_init_swizzling(dev);
4823
Daniel Vetterd5abdfd2014-11-20 09:45:19 +01004824 /*
4825 * At least 830 can leave some of the unused rings
4826 * "active" (ie. head != tail) after resume which
4827 * will prevent c3 entry. Makes sure all unused rings
4828 * are totally idle.
4829 */
4830 init_unused_rings(dev);
4831
Daniel Vetter35a57ff2014-11-20 00:33:07 +01004832 for_each_ring(ring, dev_priv, i) {
4833 ret = ring->init_hw(ring);
4834 if (ret)
Chris Wilson5e4f5182015-02-13 14:35:59 +00004835 goto out;
Daniel Vetter35a57ff2014-11-20 00:33:07 +01004836 }
Mika Kuoppala99433932013-01-22 14:12:17 +02004837
Ben Widawskyc3787e22013-09-17 21:12:44 -07004838 for (i = 0; i < NUM_L3_SLICES(dev); i++)
4839 i915_gem_l3_remap(&dev_priv->ring[RCS], i);
4840
David Woodhousef48a0162015-01-20 17:21:42 +00004841 ret = i915_ppgtt_init_hw(dev);
4842 if (ret && ret != -EIO) {
4843 DRM_ERROR("PPGTT enable failed %d\n", ret);
4844 i915_gem_cleanup_ringbuffer(dev);
4845 }
4846
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004847 ret = i915_gem_context_enable(dev_priv);
Chris Wilson60990322014-04-09 09:19:42 +01004848 if (ret && ret != -EIO) {
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004849 DRM_ERROR("Context enable failed %d\n", ret);
Chris Wilson60990322014-04-09 09:19:42 +01004850 i915_gem_cleanup_ringbuffer(dev);
Daniel Vetter82460d92014-08-06 20:19:53 +02004851
Chris Wilson5e4f5182015-02-13 14:35:59 +00004852 goto out;
Daniel Vetter82460d92014-08-06 20:19:53 +02004853 }
4854
Chris Wilson5e4f5182015-02-13 14:35:59 +00004855out:
4856 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004857 return ret;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004858}
4859
Chris Wilson1070a422012-04-24 15:47:41 +01004860int i915_gem_init(struct drm_device *dev)
4861{
4862 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson1070a422012-04-24 15:47:41 +01004863 int ret;
4864
Oscar Mateo127f1002014-07-24 17:04:11 +01004865 i915.enable_execlists = intel_sanitize_enable_execlists(dev,
4866 i915.enable_execlists);
4867
Chris Wilson1070a422012-04-24 15:47:41 +01004868 mutex_lock(&dev->struct_mutex);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004869
4870 if (IS_VALLEYVIEW(dev)) {
4871 /* VLVA0 (potential hack), BIOS isn't actually waking us */
Imre Deak981a5ae2014-04-14 20:24:22 +03004872 I915_WRITE(VLV_GTLC_WAKE_CTRL, VLV_GTLC_ALLOWWAKEREQ);
4873 if (wait_for((I915_READ(VLV_GTLC_PW_STATUS) &
4874 VLV_GTLC_ALLOWWAKEACK), 10))
Jesse Barnesd62b4892013-03-08 10:45:53 -08004875 DRM_DEBUG_DRIVER("allow wake ack timed out\n");
4876 }
4877
Oscar Mateoa83014d2014-07-24 17:04:21 +01004878 if (!i915.enable_execlists) {
4879 dev_priv->gt.do_execbuf = i915_gem_ringbuffer_submission;
4880 dev_priv->gt.init_rings = i915_gem_init_rings;
4881 dev_priv->gt.cleanup_ring = intel_cleanup_ring_buffer;
4882 dev_priv->gt.stop_ring = intel_stop_ring_buffer;
Oscar Mateo454afeb2014-07-24 17:04:22 +01004883 } else {
4884 dev_priv->gt.do_execbuf = intel_execlists_submission;
4885 dev_priv->gt.init_rings = intel_logical_rings_init;
4886 dev_priv->gt.cleanup_ring = intel_logical_ring_cleanup;
4887 dev_priv->gt.stop_ring = intel_logical_ring_stop;
Oscar Mateoa83014d2014-07-24 17:04:21 +01004888 }
4889
Chris Wilson5e4f5182015-02-13 14:35:59 +00004890 /* This is just a security blanket to placate dragons.
4891 * On some systems, we very sporadically observe that the first TLBs
4892 * used by the CS may be stale, despite us poking the TLB reset. If
4893 * we hold the forcewake during initialisation these problems
4894 * just magically go away.
4895 */
4896 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
4897
Daniel Vetter6c5566a2014-08-06 15:04:50 +02004898 ret = i915_gem_init_userptr(dev);
Jani Nikula7bcc3772014-12-05 14:17:42 +02004899 if (ret)
4900 goto out_unlock;
Daniel Vetter6c5566a2014-08-06 15:04:50 +02004901
Ben Widawskyd7e50082012-12-18 10:31:25 -08004902 i915_gem_init_global_gtt(dev);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004903
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004904 ret = i915_gem_context_init(dev);
Jani Nikula7bcc3772014-12-05 14:17:42 +02004905 if (ret)
4906 goto out_unlock;
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004907
Daniel Vetter35a57ff2014-11-20 00:33:07 +01004908 ret = dev_priv->gt.init_rings(dev);
4909 if (ret)
Jani Nikula7bcc3772014-12-05 14:17:42 +02004910 goto out_unlock;
Daniel Vetter53ca26c2012-04-26 23:28:03 +02004911
4912 ret = i915_gem_init_hw(dev);
Chris Wilson60990322014-04-09 09:19:42 +01004913 if (ret == -EIO) {
4914 /* Allow ring initialisation to fail by marking the GPU as
4915 * wedged. But we only want to do this where the GPU is angry,
4916 * for all other failure, such as an allocation failure, bail.
4917 */
4918 DRM_ERROR("Failed to initialize GPU, declaring it wedged\n");
4919 atomic_set_mask(I915_WEDGED, &dev_priv->gpu_error.reset_counter);
4920 ret = 0;
Chris Wilson1070a422012-04-24 15:47:41 +01004921 }
Jani Nikula7bcc3772014-12-05 14:17:42 +02004922
4923out_unlock:
Chris Wilson5e4f5182015-02-13 14:35:59 +00004924 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Chris Wilson60990322014-04-09 09:19:42 +01004925 mutex_unlock(&dev->struct_mutex);
Chris Wilson1070a422012-04-24 15:47:41 +01004926
Chris Wilson60990322014-04-09 09:19:42 +01004927 return ret;
Chris Wilson1070a422012-04-24 15:47:41 +01004928}
4929
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004930void
4931i915_gem_cleanup_ringbuffer(struct drm_device *dev)
4932{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004933 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004934 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00004935 int i;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004936
Chris Wilsonb4519512012-05-11 14:29:30 +01004937 for_each_ring(ring, dev_priv, i)
Oscar Mateoa83014d2014-07-24 17:04:21 +01004938 dev_priv->gt.cleanup_ring(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004939}
4940
Chris Wilson64193402010-10-24 12:38:05 +01004941static void
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004942init_ring_lists(struct intel_engine_cs *ring)
Chris Wilson64193402010-10-24 12:38:05 +01004943{
4944 INIT_LIST_HEAD(&ring->active_list);
4945 INIT_LIST_HEAD(&ring->request_list);
Chris Wilson64193402010-10-24 12:38:05 +01004946}
4947
Ben Widawsky7e0d96b2013-12-06 14:11:26 -08004948void i915_init_vm(struct drm_i915_private *dev_priv,
4949 struct i915_address_space *vm)
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004950{
Ben Widawsky7e0d96b2013-12-06 14:11:26 -08004951 if (!i915_is_ggtt(vm))
4952 drm_mm_init(&vm->mm, vm->start, vm->total);
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004953 vm->dev = dev_priv->dev;
4954 INIT_LIST_HEAD(&vm->active_list);
4955 INIT_LIST_HEAD(&vm->inactive_list);
4956 INIT_LIST_HEAD(&vm->global_link);
Chris Wilsonf72d21e2014-01-09 22:57:22 +00004957 list_add_tail(&vm->global_link, &dev_priv->vm_list);
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004958}
4959
Eric Anholt673a3942008-07-30 12:06:12 -07004960void
4961i915_gem_load(struct drm_device *dev)
4962{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004963 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson42dcedd2012-11-15 11:32:30 +00004964 int i;
4965
4966 dev_priv->slab =
4967 kmem_cache_create("i915_gem_object",
4968 sizeof(struct drm_i915_gem_object), 0,
4969 SLAB_HWCACHE_ALIGN,
4970 NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07004971
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004972 INIT_LIST_HEAD(&dev_priv->vm_list);
4973 i915_init_vm(dev_priv, &dev_priv->gtt.base);
4974
Ben Widawskya33afea2013-09-17 21:12:45 -07004975 INIT_LIST_HEAD(&dev_priv->context_list);
Chris Wilson6c085a72012-08-20 11:40:46 +02004976 INIT_LIST_HEAD(&dev_priv->mm.unbound_list);
4977 INIT_LIST_HEAD(&dev_priv->mm.bound_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07004978 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00004979 for (i = 0; i < I915_NUM_RINGS; i++)
4980 init_ring_lists(&dev_priv->ring[i]);
Daniel Vetter4b9de732011-10-09 21:52:02 +02004981 for (i = 0; i < I915_MAX_NUM_FENCES; i++)
Daniel Vetter007cc8a2010-04-28 11:02:31 +02004982 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07004983 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
4984 i915_gem_retire_work_handler);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004985 INIT_DELAYED_WORK(&dev_priv->mm.idle_work,
4986 i915_gem_idle_work_handler);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01004987 init_waitqueue_head(&dev_priv->gpu_error.reset_queue);
Chris Wilson31169712009-09-14 16:50:28 +01004988
Dave Airlie94400122010-07-20 13:15:31 +10004989 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
Ville Syrjälädbb42742014-02-25 15:13:41 +02004990 if (!drm_core_check_feature(dev, DRIVER_MODESET) && IS_GEN3(dev)) {
Daniel Vetter50743292012-04-26 22:02:54 +02004991 I915_WRITE(MI_ARB_STATE,
4992 _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Dave Airlie94400122010-07-20 13:15:31 +10004993 }
4994
Chris Wilson72bfa192010-12-19 11:42:05 +00004995 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
4996
Jesse Barnesde151cf2008-11-12 10:03:55 -08004997 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08004998 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4999 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08005000
Ville Syrjälä42b5aea2013-04-09 13:02:47 +03005001 if (INTEL_INFO(dev)->gen >= 7 && !IS_VALLEYVIEW(dev))
5002 dev_priv->num_fence_regs = 32;
5003 else if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08005004 dev_priv->num_fence_regs = 16;
5005 else
5006 dev_priv->num_fence_regs = 8;
5007
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02005008 /* Initialize fence registers to zero */
Chris Wilson19b2dbd2013-06-12 10:15:12 +01005009 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
5010 i915_gem_restore_fences(dev);
Eric Anholt10ed13e2011-05-06 13:53:49 -07005011
Eric Anholt673a3942008-07-30 12:06:12 -07005012 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005013 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01005014
Chris Wilsonce453d82011-02-21 14:43:56 +00005015 dev_priv->mm.interruptible = true;
5016
Chris Wilsonceabbba52014-03-25 13:23:04 +00005017 dev_priv->mm.shrinker.scan_objects = i915_gem_shrinker_scan;
5018 dev_priv->mm.shrinker.count_objects = i915_gem_shrinker_count;
5019 dev_priv->mm.shrinker.seeks = DEFAULT_SEEKS;
5020 register_shrinker(&dev_priv->mm.shrinker);
Chris Wilson2cfcd322014-05-20 08:28:43 +01005021
5022 dev_priv->mm.oom_notifier.notifier_call = i915_gem_shrinker_oom;
5023 register_oom_notifier(&dev_priv->mm.oom_notifier);
Daniel Vetterf99d7062014-06-19 16:01:59 +02005024
Brad Volkin78a42372014-12-11 12:13:09 -08005025 i915_gem_batch_pool_init(dev, &dev_priv->mm.batch_pool);
5026
Daniel Vetterf99d7062014-06-19 16:01:59 +02005027 mutex_init(&dev_priv->fb_tracking.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07005028}
Dave Airlie71acb5e2008-12-30 20:31:46 +10005029
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005030void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00005031{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005032 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00005033
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005034 cancel_delayed_work_sync(&file_priv->mm.idle_work);
5035
Eric Anholtb9624422009-06-03 07:27:35 +00005036 /* Clean up our request list when the client is going away, so that
5037 * later retire_requests won't dereference our soon-to-be-gone
5038 * file_priv.
5039 */
Chris Wilson1c255952010-09-26 11:03:27 +01005040 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005041 while (!list_empty(&file_priv->mm.request_list)) {
5042 struct drm_i915_gem_request *request;
5043
5044 request = list_first_entry(&file_priv->mm.request_list,
5045 struct drm_i915_gem_request,
5046 client_list);
5047 list_del(&request->client_list);
5048 request->file_priv = NULL;
5049 }
Chris Wilson1c255952010-09-26 11:03:27 +01005050 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00005051}
Chris Wilson31169712009-09-14 16:50:28 +01005052
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005053static void
5054i915_gem_file_idle_work_handler(struct work_struct *work)
5055{
5056 struct drm_i915_file_private *file_priv =
5057 container_of(work, typeof(*file_priv), mm.idle_work.work);
5058
5059 atomic_set(&file_priv->rps_wait_boost, false);
5060}
5061
5062int i915_gem_open(struct drm_device *dev, struct drm_file *file)
5063{
5064 struct drm_i915_file_private *file_priv;
Ben Widawskye422b882013-12-06 14:10:58 -08005065 int ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005066
5067 DRM_DEBUG_DRIVER("\n");
5068
5069 file_priv = kzalloc(sizeof(*file_priv), GFP_KERNEL);
5070 if (!file_priv)
5071 return -ENOMEM;
5072
5073 file->driver_priv = file_priv;
5074 file_priv->dev_priv = dev->dev_private;
Chris Wilsonab0e7ff2014-02-25 17:11:24 +02005075 file_priv->file = file;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005076
5077 spin_lock_init(&file_priv->mm.lock);
5078 INIT_LIST_HEAD(&file_priv->mm.request_list);
5079 INIT_DELAYED_WORK(&file_priv->mm.idle_work,
5080 i915_gem_file_idle_work_handler);
5081
Ben Widawskye422b882013-12-06 14:10:58 -08005082 ret = i915_gem_context_open(dev, file);
5083 if (ret)
5084 kfree(file_priv);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005085
Ben Widawskye422b882013-12-06 14:10:58 -08005086 return ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005087}
5088
Daniel Vetterb680c372014-09-19 18:27:27 +02005089/**
5090 * i915_gem_track_fb - update frontbuffer tracking
5091 * old: current GEM buffer for the frontbuffer slots
5092 * new: new GEM buffer for the frontbuffer slots
5093 * frontbuffer_bits: bitmask of frontbuffer slots
5094 *
5095 * This updates the frontbuffer tracking bits @frontbuffer_bits by clearing them
5096 * from @old and setting them in @new. Both @old and @new can be NULL.
5097 */
Daniel Vettera071fa02014-06-18 23:28:09 +02005098void i915_gem_track_fb(struct drm_i915_gem_object *old,
5099 struct drm_i915_gem_object *new,
5100 unsigned frontbuffer_bits)
5101{
5102 if (old) {
5103 WARN_ON(!mutex_is_locked(&old->base.dev->struct_mutex));
5104 WARN_ON(!(old->frontbuffer_bits & frontbuffer_bits));
5105 old->frontbuffer_bits &= ~frontbuffer_bits;
5106 }
5107
5108 if (new) {
5109 WARN_ON(!mutex_is_locked(&new->base.dev->struct_mutex));
5110 WARN_ON(new->frontbuffer_bits & frontbuffer_bits);
5111 new->frontbuffer_bits |= frontbuffer_bits;
5112 }
5113}
5114
Chris Wilson57745062012-11-21 13:04:04 +00005115static bool mutex_is_locked_by(struct mutex *mutex, struct task_struct *task)
5116{
5117 if (!mutex_is_locked(mutex))
5118 return false;
5119
Chris Wilsona5094052015-01-26 04:43:22 -08005120#if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_MUTEXES)
Chris Wilson57745062012-11-21 13:04:04 +00005121 return mutex->owner == task;
5122#else
5123 /* Since UP may be pre-empted, we cannot assume that we own the lock */
5124 return false;
5125#endif
5126}
5127
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005128static bool i915_gem_shrinker_lock(struct drm_device *dev, bool *unlock)
5129{
5130 if (!mutex_trylock(&dev->struct_mutex)) {
5131 if (!mutex_is_locked_by(&dev->struct_mutex, current))
5132 return false;
5133
5134 if (to_i915(dev)->mm.shrinker_no_lock_stealing)
5135 return false;
5136
5137 *unlock = false;
5138 } else
5139 *unlock = true;
5140
5141 return true;
5142}
5143
Chris Wilsonceabbba52014-03-25 13:23:04 +00005144static int num_vma_bound(struct drm_i915_gem_object *obj)
5145{
5146 struct i915_vma *vma;
5147 int count = 0;
5148
5149 list_for_each_entry(vma, &obj->vma_list, vma_link)
5150 if (drm_mm_node_allocated(&vma->node))
5151 count++;
5152
5153 return count;
5154}
5155
Dave Chinner7dc19d52013-08-28 10:18:11 +10005156static unsigned long
Chris Wilsonceabbba52014-03-25 13:23:04 +00005157i915_gem_shrinker_count(struct shrinker *shrinker, struct shrink_control *sc)
Chris Wilson31169712009-09-14 16:50:28 +01005158{
Chris Wilson17250b72010-10-28 12:51:39 +01005159 struct drm_i915_private *dev_priv =
Chris Wilsonceabbba52014-03-25 13:23:04 +00005160 container_of(shrinker, struct drm_i915_private, mm.shrinker);
Chris Wilson17250b72010-10-28 12:51:39 +01005161 struct drm_device *dev = dev_priv->dev;
Chris Wilson6c085a72012-08-20 11:40:46 +02005162 struct drm_i915_gem_object *obj;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005163 unsigned long count;
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005164 bool unlock;
Chris Wilson17250b72010-10-28 12:51:39 +01005165
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005166 if (!i915_gem_shrinker_lock(dev, &unlock))
5167 return 0;
Chris Wilson31169712009-09-14 16:50:28 +01005168
Dave Chinner7dc19d52013-08-28 10:18:11 +10005169 count = 0;
Ben Widawsky35c20a62013-05-31 11:28:48 -07005170 list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list)
Chris Wilsona5570172012-09-04 21:02:54 +01005171 if (obj->pages_pin_count == 0)
Dave Chinner7dc19d52013-08-28 10:18:11 +10005172 count += obj->base.size >> PAGE_SHIFT;
Ben Widawskyfcb4a572013-07-31 16:59:57 -07005173
5174 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
Chris Wilsonceabbba52014-03-25 13:23:04 +00005175 if (!i915_gem_obj_is_pinned(obj) &&
5176 obj->pages_pin_count == num_vma_bound(obj))
Dave Chinner7dc19d52013-08-28 10:18:11 +10005177 count += obj->base.size >> PAGE_SHIFT;
Ben Widawskyfcb4a572013-07-31 16:59:57 -07005178 }
Chris Wilson31169712009-09-14 16:50:28 +01005179
Chris Wilson57745062012-11-21 13:04:04 +00005180 if (unlock)
5181 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9973b42013-10-04 10:33:00 +01005182
Dave Chinner7dc19d52013-08-28 10:18:11 +10005183 return count;
Chris Wilson31169712009-09-14 16:50:28 +01005184}
Ben Widawskya70a3142013-07-31 16:59:56 -07005185
5186/* All the new VM stuff */
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00005187unsigned long i915_gem_obj_offset_view(struct drm_i915_gem_object *o,
5188 struct i915_address_space *vm,
5189 enum i915_ggtt_view_type view)
Ben Widawskya70a3142013-07-31 16:59:56 -07005190{
5191 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
5192 struct i915_vma *vma;
5193
Daniel Vetter896ab1a2014-08-06 15:04:51 +02005194 WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base);
Ben Widawskya70a3142013-07-31 16:59:56 -07005195
Ben Widawskya70a3142013-07-31 16:59:56 -07005196 list_for_each_entry(vma, &o->vma_list, vma_link) {
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00005197 if (vma->vm == vm && vma->ggtt_view.type == view)
Ben Widawskya70a3142013-07-31 16:59:56 -07005198 return vma->node.start;
5199
5200 }
Daniel Vetterf25748ea2014-06-17 22:34:38 +02005201 WARN(1, "%s vma for this object not found.\n",
5202 i915_is_ggtt(vm) ? "global" : "ppgtt");
Ben Widawskya70a3142013-07-31 16:59:56 -07005203 return -1;
5204}
5205
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00005206bool i915_gem_obj_bound_view(struct drm_i915_gem_object *o,
5207 struct i915_address_space *vm,
5208 enum i915_ggtt_view_type view)
Ben Widawskya70a3142013-07-31 16:59:56 -07005209{
5210 struct i915_vma *vma;
5211
5212 list_for_each_entry(vma, &o->vma_list, vma_link)
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00005213 if (vma->vm == vm &&
5214 vma->ggtt_view.type == view &&
5215 drm_mm_node_allocated(&vma->node))
Ben Widawskya70a3142013-07-31 16:59:56 -07005216 return true;
5217
5218 return false;
5219}
5220
5221bool i915_gem_obj_bound_any(struct drm_i915_gem_object *o)
5222{
Chris Wilson5a1d5eb2013-09-10 11:27:37 +01005223 struct i915_vma *vma;
Ben Widawskya70a3142013-07-31 16:59:56 -07005224
Chris Wilson5a1d5eb2013-09-10 11:27:37 +01005225 list_for_each_entry(vma, &o->vma_list, vma_link)
5226 if (drm_mm_node_allocated(&vma->node))
Ben Widawskya70a3142013-07-31 16:59:56 -07005227 return true;
5228
5229 return false;
5230}
5231
5232unsigned long i915_gem_obj_size(struct drm_i915_gem_object *o,
5233 struct i915_address_space *vm)
5234{
5235 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
5236 struct i915_vma *vma;
5237
Daniel Vetter896ab1a2014-08-06 15:04:51 +02005238 WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base);
Ben Widawskya70a3142013-07-31 16:59:56 -07005239
5240 BUG_ON(list_empty(&o->vma_list));
5241
5242 list_for_each_entry(vma, &o->vma_list, vma_link)
5243 if (vma->vm == vm)
5244 return vma->node.size;
5245
5246 return 0;
5247}
5248
Dave Chinner7dc19d52013-08-28 10:18:11 +10005249static unsigned long
Chris Wilsonceabbba52014-03-25 13:23:04 +00005250i915_gem_shrinker_scan(struct shrinker *shrinker, struct shrink_control *sc)
Dave Chinner7dc19d52013-08-28 10:18:11 +10005251{
5252 struct drm_i915_private *dev_priv =
Chris Wilsonceabbba52014-03-25 13:23:04 +00005253 container_of(shrinker, struct drm_i915_private, mm.shrinker);
Dave Chinner7dc19d52013-08-28 10:18:11 +10005254 struct drm_device *dev = dev_priv->dev;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005255 unsigned long freed;
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005256 bool unlock;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005257
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005258 if (!i915_gem_shrinker_lock(dev, &unlock))
5259 return SHRINK_STOP;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005260
Chris Wilson21ab4e72014-09-09 11:16:08 +01005261 freed = i915_gem_shrink(dev_priv,
5262 sc->nr_to_scan,
5263 I915_SHRINK_BOUND |
5264 I915_SHRINK_UNBOUND |
5265 I915_SHRINK_PURGEABLE);
Chris Wilsond9973b42013-10-04 10:33:00 +01005266 if (freed < sc->nr_to_scan)
Chris Wilson21ab4e72014-09-09 11:16:08 +01005267 freed += i915_gem_shrink(dev_priv,
5268 sc->nr_to_scan - freed,
5269 I915_SHRINK_BOUND |
5270 I915_SHRINK_UNBOUND);
Dave Chinner7dc19d52013-08-28 10:18:11 +10005271 if (unlock)
5272 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9973b42013-10-04 10:33:00 +01005273
Dave Chinner7dc19d52013-08-28 10:18:11 +10005274 return freed;
5275}
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005276
Chris Wilson2cfcd322014-05-20 08:28:43 +01005277static int
5278i915_gem_shrinker_oom(struct notifier_block *nb, unsigned long event, void *ptr)
5279{
5280 struct drm_i915_private *dev_priv =
5281 container_of(nb, struct drm_i915_private, mm.oom_notifier);
5282 struct drm_device *dev = dev_priv->dev;
5283 struct drm_i915_gem_object *obj;
5284 unsigned long timeout = msecs_to_jiffies(5000) + 1;
Chris Wilson005445c2014-10-08 11:25:16 +01005285 unsigned long pinned, bound, unbound, freed_pages;
Chris Wilson2cfcd322014-05-20 08:28:43 +01005286 bool was_interruptible;
5287 bool unlock;
5288
Chris Wilsona1db2fa2014-07-11 11:28:00 +01005289 while (!i915_gem_shrinker_lock(dev, &unlock) && --timeout) {
Chris Wilson2cfcd322014-05-20 08:28:43 +01005290 schedule_timeout_killable(1);
Chris Wilsona1db2fa2014-07-11 11:28:00 +01005291 if (fatal_signal_pending(current))
5292 return NOTIFY_DONE;
5293 }
Chris Wilson2cfcd322014-05-20 08:28:43 +01005294 if (timeout == 0) {
5295 pr_err("Unable to purge GPU memory due lock contention.\n");
5296 return NOTIFY_DONE;
5297 }
5298
5299 was_interruptible = dev_priv->mm.interruptible;
5300 dev_priv->mm.interruptible = false;
5301
Chris Wilson005445c2014-10-08 11:25:16 +01005302 freed_pages = i915_gem_shrink_all(dev_priv);
Chris Wilson2cfcd322014-05-20 08:28:43 +01005303
5304 dev_priv->mm.interruptible = was_interruptible;
5305
5306 /* Because we may be allocating inside our own driver, we cannot
5307 * assert that there are no objects with pinned pages that are not
5308 * being pointed to by hardware.
5309 */
5310 unbound = bound = pinned = 0;
5311 list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list) {
5312 if (!obj->base.filp) /* not backed by a freeable object */
5313 continue;
5314
5315 if (obj->pages_pin_count)
5316 pinned += obj->base.size;
5317 else
5318 unbound += obj->base.size;
5319 }
5320 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
5321 if (!obj->base.filp)
5322 continue;
5323
5324 if (obj->pages_pin_count)
5325 pinned += obj->base.size;
5326 else
5327 bound += obj->base.size;
5328 }
5329
5330 if (unlock)
5331 mutex_unlock(&dev->struct_mutex);
5332
Chris Wilsonbb9059d2014-10-08 11:25:17 +01005333 if (freed_pages || unbound || bound)
5334 pr_info("Purging GPU memory, %lu bytes freed, %lu bytes still pinned.\n",
5335 freed_pages << PAGE_SHIFT, pinned);
Chris Wilson2cfcd322014-05-20 08:28:43 +01005336 if (unbound || bound)
5337 pr_err("%lu and %lu bytes still available in the "
5338 "bound and unbound GPU page lists.\n",
5339 bound, unbound);
5340
Chris Wilson005445c2014-10-08 11:25:16 +01005341 *(unsigned long *)ptr += freed_pages;
Chris Wilson2cfcd322014-05-20 08:28:43 +01005342 return NOTIFY_DONE;
5343}
5344
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005345struct i915_vma *i915_gem_obj_to_ggtt(struct drm_i915_gem_object *obj)
5346{
Tvrtko Ursulinf7635662014-12-03 14:59:24 +00005347 struct i915_address_space *ggtt = i915_obj_to_ggtt(obj);
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005348 struct i915_vma *vma;
5349
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00005350 list_for_each_entry(vma, &obj->vma_list, vma_link)
5351 if (vma->vm == ggtt &&
5352 vma->ggtt_view.type == I915_GGTT_VIEW_NORMAL)
Tvrtko Ursulinf7635662014-12-03 14:59:24 +00005353 return vma;
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005354
Tvrtko Ursulinf7635662014-12-03 14:59:24 +00005355 return NULL;
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005356}