blob: 3c64eb6abf2d71084003ab43b6fb7467ac93cf92 [file] [log] [blame]
Eric Anholt673a3942008-07-30 12:06:12 -07001/*
2 * Copyright © 2008 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 *
26 */
27
David Howells760285e2012-10-02 18:01:07 +010028#include <drm/drmP.h>
David Herrmann0de23972013-07-24 21:07:52 +020029#include <drm/drm_vma_manager.h>
David Howells760285e2012-10-02 18:01:07 +010030#include <drm/i915_drm.h>
Eric Anholt673a3942008-07-30 12:06:12 -070031#include "i915_drv.h"
Chris Wilson1c5d22f2009-08-25 11:15:50 +010032#include "i915_trace.h"
Jesse Barnes652c3932009-08-17 13:31:43 -070033#include "intel_drv.h"
Chris Wilson2cfcd322014-05-20 08:28:43 +010034#include <linux/oom.h>
Hugh Dickins5949eac2011-06-27 16:18:18 -070035#include <linux/shmem_fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/slab.h>
Eric Anholt673a3942008-07-30 12:06:12 -070037#include <linux/swap.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080038#include <linux/pci.h>
Daniel Vetter1286ff72012-05-10 15:25:09 +020039#include <linux/dma-buf.h>
Eric Anholt673a3942008-07-30 12:06:12 -070040
Chris Wilson05394f32010-11-08 19:18:58 +000041static void i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj);
Chris Wilson2c225692013-08-09 12:26:45 +010042static void i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj,
43 bool force);
Ben Widawsky07fe0b12013-07-31 17:00:10 -070044static __must_check int
Ben Widawsky23f54482013-09-11 14:57:48 -070045i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj,
46 bool readonly);
Chris Wilsonc8725f32014-03-17 12:21:55 +000047static void
48i915_gem_object_retire(struct drm_i915_gem_object *obj);
49
Chris Wilson61050802012-04-17 15:31:31 +010050static void i915_gem_write_fence(struct drm_device *dev, int reg,
51 struct drm_i915_gem_object *obj);
52static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
53 struct drm_i915_fence_reg *fence,
54 bool enable);
55
Chris Wilsonceabbba52014-03-25 13:23:04 +000056static unsigned long i915_gem_shrinker_count(struct shrinker *shrinker,
Dave Chinner7dc19d52013-08-28 10:18:11 +100057 struct shrink_control *sc);
Chris Wilsonceabbba52014-03-25 13:23:04 +000058static unsigned long i915_gem_shrinker_scan(struct shrinker *shrinker,
Dave Chinner7dc19d52013-08-28 10:18:11 +100059 struct shrink_control *sc);
Chris Wilson2cfcd322014-05-20 08:28:43 +010060static int i915_gem_shrinker_oom(struct notifier_block *nb,
61 unsigned long event,
62 void *ptr);
Chris Wilsond9973b42013-10-04 10:33:00 +010063static unsigned long i915_gem_shrink_all(struct drm_i915_private *dev_priv);
Chris Wilson31169712009-09-14 16:50:28 +010064
Chris Wilsonc76ce032013-08-08 14:41:03 +010065static bool cpu_cache_is_coherent(struct drm_device *dev,
66 enum i915_cache_level level)
67{
68 return HAS_LLC(dev) || level != I915_CACHE_NONE;
69}
70
Chris Wilson2c225692013-08-09 12:26:45 +010071static bool cpu_write_needs_clflush(struct drm_i915_gem_object *obj)
72{
73 if (!cpu_cache_is_coherent(obj->base.dev, obj->cache_level))
74 return true;
75
76 return obj->pin_display;
77}
78
Chris Wilson61050802012-04-17 15:31:31 +010079static inline void i915_gem_object_fence_lost(struct drm_i915_gem_object *obj)
80{
81 if (obj->tiling_mode)
82 i915_gem_release_mmap(obj);
83
84 /* As we do not have an associated fence register, we will force
85 * a tiling change if we ever need to acquire one.
86 */
Chris Wilson5d82e3e2012-04-21 16:23:23 +010087 obj->fence_dirty = false;
Chris Wilson61050802012-04-17 15:31:31 +010088 obj->fence_reg = I915_FENCE_REG_NONE;
89}
90
Chris Wilson73aa8082010-09-30 11:46:12 +010091/* some bookkeeping */
92static void i915_gem_info_add_obj(struct drm_i915_private *dev_priv,
93 size_t size)
94{
Daniel Vetterc20e8352013-07-24 22:40:23 +020095 spin_lock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +010096 dev_priv->mm.object_count++;
97 dev_priv->mm.object_memory += size;
Daniel Vetterc20e8352013-07-24 22:40:23 +020098 spin_unlock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +010099}
100
101static void i915_gem_info_remove_obj(struct drm_i915_private *dev_priv,
102 size_t size)
103{
Daniel Vetterc20e8352013-07-24 22:40:23 +0200104 spin_lock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +0100105 dev_priv->mm.object_count--;
106 dev_priv->mm.object_memory -= size;
Daniel Vetterc20e8352013-07-24 22:40:23 +0200107 spin_unlock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +0100108}
109
Chris Wilson21dd3732011-01-26 15:55:56 +0000110static int
Daniel Vetter33196de2012-11-14 17:14:05 +0100111i915_gem_wait_for_error(struct i915_gpu_error *error)
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100112{
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100113 int ret;
114
Daniel Vetter7abb6902013-05-24 21:29:32 +0200115#define EXIT_COND (!i915_reset_in_progress(error) || \
116 i915_terminally_wedged(error))
Daniel Vetter1f83fee2012-11-15 17:17:22 +0100117 if (EXIT_COND)
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100118 return 0;
119
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200120 /*
121 * Only wait 10 seconds for the gpu reset to complete to avoid hanging
122 * userspace. If it takes that long something really bad is going on and
123 * we should simply try to bail out and fail as gracefully as possible.
124 */
Daniel Vetter1f83fee2012-11-15 17:17:22 +0100125 ret = wait_event_interruptible_timeout(error->reset_queue,
126 EXIT_COND,
127 10*HZ);
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200128 if (ret == 0) {
129 DRM_ERROR("Timed out waiting for the gpu reset to complete\n");
130 return -EIO;
131 } else if (ret < 0) {
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100132 return ret;
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200133 }
Daniel Vetter1f83fee2012-11-15 17:17:22 +0100134#undef EXIT_COND
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100135
Chris Wilson21dd3732011-01-26 15:55:56 +0000136 return 0;
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100137}
138
Chris Wilson54cf91d2010-11-25 18:00:26 +0000139int i915_mutex_lock_interruptible(struct drm_device *dev)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100140{
Daniel Vetter33196de2012-11-14 17:14:05 +0100141 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson76c1dec2010-09-25 11:22:51 +0100142 int ret;
143
Daniel Vetter33196de2012-11-14 17:14:05 +0100144 ret = i915_gem_wait_for_error(&dev_priv->gpu_error);
Chris Wilson76c1dec2010-09-25 11:22:51 +0100145 if (ret)
146 return ret;
147
148 ret = mutex_lock_interruptible(&dev->struct_mutex);
149 if (ret)
150 return ret;
151
Chris Wilson23bc5982010-09-29 16:10:57 +0100152 WARN_ON(i915_verify_lists(dev));
Chris Wilson76c1dec2010-09-25 11:22:51 +0100153 return 0;
154}
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100155
Chris Wilson7d1c4802010-08-07 21:45:03 +0100156static inline bool
Chris Wilson05394f32010-11-08 19:18:58 +0000157i915_gem_object_is_inactive(struct drm_i915_gem_object *obj)
Chris Wilson7d1c4802010-08-07 21:45:03 +0100158{
Ben Widawsky98438772013-07-31 17:00:12 -0700159 return i915_gem_obj_bound_any(obj) && !obj->active;
Chris Wilson7d1c4802010-08-07 21:45:03 +0100160}
161
Eric Anholt673a3942008-07-30 12:06:12 -0700162int
Eric Anholt5a125c32008-10-22 21:40:13 -0700163i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000164 struct drm_file *file)
Eric Anholt5a125c32008-10-22 21:40:13 -0700165{
Chris Wilson73aa8082010-09-30 11:46:12 +0100166 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt5a125c32008-10-22 21:40:13 -0700167 struct drm_i915_gem_get_aperture *args = data;
Chris Wilson6299f992010-11-24 12:23:44 +0000168 struct drm_i915_gem_object *obj;
169 size_t pinned;
Eric Anholt5a125c32008-10-22 21:40:13 -0700170
Chris Wilson6299f992010-11-24 12:23:44 +0000171 pinned = 0;
Chris Wilson73aa8082010-09-30 11:46:12 +0100172 mutex_lock(&dev->struct_mutex);
Ben Widawsky35c20a62013-05-31 11:28:48 -0700173 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list)
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800174 if (i915_gem_obj_is_pinned(obj))
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700175 pinned += i915_gem_obj_ggtt_size(obj);
Chris Wilson73aa8082010-09-30 11:46:12 +0100176 mutex_unlock(&dev->struct_mutex);
Eric Anholt5a125c32008-10-22 21:40:13 -0700177
Ben Widawsky853ba5d2013-07-16 16:50:05 -0700178 args->aper_size = dev_priv->gtt.base.total;
Akshay Joshi0206e352011-08-16 15:34:10 -0400179 args->aper_available_size = args->aper_size - pinned;
Chris Wilson6299f992010-11-24 12:23:44 +0000180
Eric Anholt5a125c32008-10-22 21:40:13 -0700181 return 0;
182}
183
Chris Wilson6a2c4232014-11-04 04:51:40 -0800184static int
185i915_gem_object_get_pages_phys(struct drm_i915_gem_object *obj)
Chris Wilson00731152014-05-21 12:42:56 +0100186{
Chris Wilson6a2c4232014-11-04 04:51:40 -0800187 struct address_space *mapping = file_inode(obj->base.filp)->i_mapping;
188 char *vaddr = obj->phys_handle->vaddr;
189 struct sg_table *st;
190 struct scatterlist *sg;
191 int i;
Chris Wilson00731152014-05-21 12:42:56 +0100192
Chris Wilson6a2c4232014-11-04 04:51:40 -0800193 if (WARN_ON(i915_gem_object_needs_bit17_swizzle(obj)))
194 return -EINVAL;
Chris Wilson00731152014-05-21 12:42:56 +0100195
Chris Wilson6a2c4232014-11-04 04:51:40 -0800196 for (i = 0; i < obj->base.size / PAGE_SIZE; i++) {
197 struct page *page;
198 char *src;
199
200 page = shmem_read_mapping_page(mapping, i);
201 if (IS_ERR(page))
202 return PTR_ERR(page);
203
204 src = kmap_atomic(page);
205 memcpy(vaddr, src, PAGE_SIZE);
206 drm_clflush_virt_range(vaddr, PAGE_SIZE);
207 kunmap_atomic(src);
208
209 page_cache_release(page);
210 vaddr += PAGE_SIZE;
211 }
212
213 i915_gem_chipset_flush(obj->base.dev);
214
215 st = kmalloc(sizeof(*st), GFP_KERNEL);
216 if (st == NULL)
217 return -ENOMEM;
218
219 if (sg_alloc_table(st, 1, GFP_KERNEL)) {
220 kfree(st);
221 return -ENOMEM;
222 }
223
224 sg = st->sgl;
225 sg->offset = 0;
226 sg->length = obj->base.size;
227
228 sg_dma_address(sg) = obj->phys_handle->busaddr;
229 sg_dma_len(sg) = obj->base.size;
230
231 obj->pages = st;
232 obj->has_dma_mapping = true;
233 return 0;
234}
235
236static void
237i915_gem_object_put_pages_phys(struct drm_i915_gem_object *obj)
238{
239 int ret;
240
241 BUG_ON(obj->madv == __I915_MADV_PURGED);
242
243 ret = i915_gem_object_set_to_cpu_domain(obj, true);
244 if (ret) {
245 /* In the event of a disaster, abandon all caches and
246 * hope for the best.
247 */
248 WARN_ON(ret != -EIO);
249 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
250 }
251
252 if (obj->madv == I915_MADV_DONTNEED)
253 obj->dirty = 0;
254
255 if (obj->dirty) {
Chris Wilson00731152014-05-21 12:42:56 +0100256 struct address_space *mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800257 char *vaddr = obj->phys_handle->vaddr;
Chris Wilson00731152014-05-21 12:42:56 +0100258 int i;
259
260 for (i = 0; i < obj->base.size / PAGE_SIZE; i++) {
Chris Wilson6a2c4232014-11-04 04:51:40 -0800261 struct page *page;
262 char *dst;
Chris Wilson00731152014-05-21 12:42:56 +0100263
Chris Wilson6a2c4232014-11-04 04:51:40 -0800264 page = shmem_read_mapping_page(mapping, i);
265 if (IS_ERR(page))
266 continue;
267
268 dst = kmap_atomic(page);
269 drm_clflush_virt_range(vaddr, PAGE_SIZE);
270 memcpy(dst, vaddr, PAGE_SIZE);
271 kunmap_atomic(dst);
272
273 set_page_dirty(page);
274 if (obj->madv == I915_MADV_WILLNEED)
Chris Wilson00731152014-05-21 12:42:56 +0100275 mark_page_accessed(page);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800276 page_cache_release(page);
Chris Wilson00731152014-05-21 12:42:56 +0100277 vaddr += PAGE_SIZE;
278 }
Chris Wilson6a2c4232014-11-04 04:51:40 -0800279 obj->dirty = 0;
Chris Wilson00731152014-05-21 12:42:56 +0100280 }
281
Chris Wilson6a2c4232014-11-04 04:51:40 -0800282 sg_free_table(obj->pages);
283 kfree(obj->pages);
284
285 obj->has_dma_mapping = false;
286}
287
288static void
289i915_gem_object_release_phys(struct drm_i915_gem_object *obj)
290{
291 drm_pci_free(obj->base.dev, obj->phys_handle);
292}
293
294static const struct drm_i915_gem_object_ops i915_gem_phys_ops = {
295 .get_pages = i915_gem_object_get_pages_phys,
296 .put_pages = i915_gem_object_put_pages_phys,
297 .release = i915_gem_object_release_phys,
298};
299
300static int
301drop_pages(struct drm_i915_gem_object *obj)
302{
303 struct i915_vma *vma, *next;
304 int ret;
305
306 drm_gem_object_reference(&obj->base);
307 list_for_each_entry_safe(vma, next, &obj->vma_list, vma_link)
308 if (i915_vma_unbind(vma))
309 break;
310
311 ret = i915_gem_object_put_pages(obj);
312 drm_gem_object_unreference(&obj->base);
313
314 return ret;
Chris Wilson00731152014-05-21 12:42:56 +0100315}
316
317int
318i915_gem_object_attach_phys(struct drm_i915_gem_object *obj,
319 int align)
320{
321 drm_dma_handle_t *phys;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800322 int ret;
Chris Wilson00731152014-05-21 12:42:56 +0100323
324 if (obj->phys_handle) {
325 if ((unsigned long)obj->phys_handle->vaddr & (align -1))
326 return -EBUSY;
327
328 return 0;
329 }
330
331 if (obj->madv != I915_MADV_WILLNEED)
332 return -EFAULT;
333
334 if (obj->base.filp == NULL)
335 return -EINVAL;
336
Chris Wilson6a2c4232014-11-04 04:51:40 -0800337 ret = drop_pages(obj);
338 if (ret)
339 return ret;
340
Chris Wilson00731152014-05-21 12:42:56 +0100341 /* create a new object */
342 phys = drm_pci_alloc(obj->base.dev, obj->base.size, align);
343 if (!phys)
344 return -ENOMEM;
345
Chris Wilson00731152014-05-21 12:42:56 +0100346 obj->phys_handle = phys;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800347 obj->ops = &i915_gem_phys_ops;
348
349 return i915_gem_object_get_pages(obj);
Chris Wilson00731152014-05-21 12:42:56 +0100350}
351
352static int
353i915_gem_phys_pwrite(struct drm_i915_gem_object *obj,
354 struct drm_i915_gem_pwrite *args,
355 struct drm_file *file_priv)
356{
357 struct drm_device *dev = obj->base.dev;
358 void *vaddr = obj->phys_handle->vaddr + args->offset;
359 char __user *user_data = to_user_ptr(args->data_ptr);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800360 int ret;
361
362 /* We manually control the domain here and pretend that it
363 * remains coherent i.e. in the GTT domain, like shmem_pwrite.
364 */
365 ret = i915_gem_object_wait_rendering(obj, false);
366 if (ret)
367 return ret;
Chris Wilson00731152014-05-21 12:42:56 +0100368
369 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
370 unsigned long unwritten;
371
372 /* The physical object once assigned is fixed for the lifetime
373 * of the obj, so we can safely drop the lock and continue
374 * to access vaddr.
375 */
376 mutex_unlock(&dev->struct_mutex);
377 unwritten = copy_from_user(vaddr, user_data, args->size);
378 mutex_lock(&dev->struct_mutex);
379 if (unwritten)
380 return -EFAULT;
381 }
382
Chris Wilson6a2c4232014-11-04 04:51:40 -0800383 drm_clflush_virt_range(vaddr, args->size);
Chris Wilson00731152014-05-21 12:42:56 +0100384 i915_gem_chipset_flush(dev);
385 return 0;
386}
387
Chris Wilson42dcedd2012-11-15 11:32:30 +0000388void *i915_gem_object_alloc(struct drm_device *dev)
389{
390 struct drm_i915_private *dev_priv = dev->dev_private;
Joe Perchesfac15c12013-08-29 13:11:07 -0700391 return kmem_cache_zalloc(dev_priv->slab, GFP_KERNEL);
Chris Wilson42dcedd2012-11-15 11:32:30 +0000392}
393
394void i915_gem_object_free(struct drm_i915_gem_object *obj)
395{
396 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
397 kmem_cache_free(dev_priv->slab, obj);
398}
399
Dave Airlieff72145b2011-02-07 12:16:14 +1000400static int
401i915_gem_create(struct drm_file *file,
402 struct drm_device *dev,
403 uint64_t size,
404 uint32_t *handle_p)
Eric Anholt673a3942008-07-30 12:06:12 -0700405{
Chris Wilson05394f32010-11-08 19:18:58 +0000406 struct drm_i915_gem_object *obj;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300407 int ret;
408 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700409
Dave Airlieff72145b2011-02-07 12:16:14 +1000410 size = roundup(size, PAGE_SIZE);
Chris Wilson8ffc0242011-09-14 14:14:28 +0200411 if (size == 0)
412 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700413
414 /* Allocate the new object */
Dave Airlieff72145b2011-02-07 12:16:14 +1000415 obj = i915_gem_alloc_object(dev, size);
Eric Anholt673a3942008-07-30 12:06:12 -0700416 if (obj == NULL)
417 return -ENOMEM;
418
Chris Wilson05394f32010-11-08 19:18:58 +0000419 ret = drm_gem_handle_create(file, &obj->base, &handle);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100420 /* drop reference from allocate - handle holds it now */
Daniel Vetterd861e332013-07-24 23:25:03 +0200421 drm_gem_object_unreference_unlocked(&obj->base);
422 if (ret)
423 return ret;
Chris Wilson202f2fe2010-10-14 13:20:40 +0100424
Dave Airlieff72145b2011-02-07 12:16:14 +1000425 *handle_p = handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700426 return 0;
427}
428
Dave Airlieff72145b2011-02-07 12:16:14 +1000429int
430i915_gem_dumb_create(struct drm_file *file,
431 struct drm_device *dev,
432 struct drm_mode_create_dumb *args)
433{
434 /* have to work out size/pitch and return them */
Paulo Zanonide45eaf2013-10-18 18:48:24 -0300435 args->pitch = ALIGN(args->width * DIV_ROUND_UP(args->bpp, 8), 64);
Dave Airlieff72145b2011-02-07 12:16:14 +1000436 args->size = args->pitch * args->height;
437 return i915_gem_create(file, dev,
438 args->size, &args->handle);
439}
440
Dave Airlieff72145b2011-02-07 12:16:14 +1000441/**
442 * Creates a new mm object and returns a handle to it.
443 */
444int
445i915_gem_create_ioctl(struct drm_device *dev, void *data,
446 struct drm_file *file)
447{
448 struct drm_i915_gem_create *args = data;
Daniel Vetter63ed2cb2012-04-23 16:50:50 +0200449
Dave Airlieff72145b2011-02-07 12:16:14 +1000450 return i915_gem_create(file, dev,
451 args->size, &args->handle);
452}
453
Daniel Vetter8c599672011-12-14 13:57:31 +0100454static inline int
Daniel Vetter8461d222011-12-14 13:57:32 +0100455__copy_to_user_swizzled(char __user *cpu_vaddr,
456 const char *gpu_vaddr, int gpu_offset,
457 int length)
458{
459 int ret, cpu_offset = 0;
460
461 while (length > 0) {
462 int cacheline_end = ALIGN(gpu_offset + 1, 64);
463 int this_length = min(cacheline_end - gpu_offset, length);
464 int swizzled_gpu_offset = gpu_offset ^ 64;
465
466 ret = __copy_to_user(cpu_vaddr + cpu_offset,
467 gpu_vaddr + swizzled_gpu_offset,
468 this_length);
469 if (ret)
470 return ret + length;
471
472 cpu_offset += this_length;
473 gpu_offset += this_length;
474 length -= this_length;
475 }
476
477 return 0;
478}
479
480static inline int
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700481__copy_from_user_swizzled(char *gpu_vaddr, int gpu_offset,
482 const char __user *cpu_vaddr,
Daniel Vetter8c599672011-12-14 13:57:31 +0100483 int length)
484{
485 int ret, cpu_offset = 0;
486
487 while (length > 0) {
488 int cacheline_end = ALIGN(gpu_offset + 1, 64);
489 int this_length = min(cacheline_end - gpu_offset, length);
490 int swizzled_gpu_offset = gpu_offset ^ 64;
491
492 ret = __copy_from_user(gpu_vaddr + swizzled_gpu_offset,
493 cpu_vaddr + cpu_offset,
494 this_length);
495 if (ret)
496 return ret + length;
497
498 cpu_offset += this_length;
499 gpu_offset += this_length;
500 length -= this_length;
501 }
502
503 return 0;
504}
505
Brad Volkin4c914c02014-02-18 10:15:45 -0800506/*
507 * Pins the specified object's pages and synchronizes the object with
508 * GPU accesses. Sets needs_clflush to non-zero if the caller should
509 * flush the object from the CPU cache.
510 */
511int i915_gem_obj_prepare_shmem_read(struct drm_i915_gem_object *obj,
512 int *needs_clflush)
513{
514 int ret;
515
516 *needs_clflush = 0;
517
518 if (!obj->base.filp)
519 return -EINVAL;
520
521 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU)) {
522 /* If we're not in the cpu read domain, set ourself into the gtt
523 * read domain and manually flush cachelines (if required). This
524 * optimizes for the case when the gpu will dirty the data
525 * anyway again before the next pread happens. */
526 *needs_clflush = !cpu_cache_is_coherent(obj->base.dev,
527 obj->cache_level);
528 ret = i915_gem_object_wait_rendering(obj, true);
529 if (ret)
530 return ret;
Chris Wilsonc8725f32014-03-17 12:21:55 +0000531
532 i915_gem_object_retire(obj);
Brad Volkin4c914c02014-02-18 10:15:45 -0800533 }
534
535 ret = i915_gem_object_get_pages(obj);
536 if (ret)
537 return ret;
538
539 i915_gem_object_pin_pages(obj);
540
541 return ret;
542}
543
Daniel Vetterd174bd62012-03-25 19:47:40 +0200544/* Per-page copy function for the shmem pread fastpath.
545 * Flushes invalid cachelines before reading the target if
546 * needs_clflush is set. */
Eric Anholteb014592009-03-10 11:44:52 -0700547static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200548shmem_pread_fast(struct page *page, int shmem_page_offset, int page_length,
549 char __user *user_data,
550 bool page_do_bit17_swizzling, bool needs_clflush)
551{
552 char *vaddr;
553 int ret;
554
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200555 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200556 return -EINVAL;
557
558 vaddr = kmap_atomic(page);
559 if (needs_clflush)
560 drm_clflush_virt_range(vaddr + shmem_page_offset,
561 page_length);
562 ret = __copy_to_user_inatomic(user_data,
563 vaddr + shmem_page_offset,
564 page_length);
565 kunmap_atomic(vaddr);
566
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100567 return ret ? -EFAULT : 0;
Daniel Vetterd174bd62012-03-25 19:47:40 +0200568}
569
Daniel Vetter23c18c72012-03-25 19:47:42 +0200570static void
571shmem_clflush_swizzled_range(char *addr, unsigned long length,
572 bool swizzled)
573{
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200574 if (unlikely(swizzled)) {
Daniel Vetter23c18c72012-03-25 19:47:42 +0200575 unsigned long start = (unsigned long) addr;
576 unsigned long end = (unsigned long) addr + length;
577
578 /* For swizzling simply ensure that we always flush both
579 * channels. Lame, but simple and it works. Swizzled
580 * pwrite/pread is far from a hotpath - current userspace
581 * doesn't use it at all. */
582 start = round_down(start, 128);
583 end = round_up(end, 128);
584
585 drm_clflush_virt_range((void *)start, end - start);
586 } else {
587 drm_clflush_virt_range(addr, length);
588 }
589
590}
591
Daniel Vetterd174bd62012-03-25 19:47:40 +0200592/* Only difference to the fast-path function is that this can handle bit17
593 * and uses non-atomic copy and kmap functions. */
594static int
595shmem_pread_slow(struct page *page, int shmem_page_offset, int page_length,
596 char __user *user_data,
597 bool page_do_bit17_swizzling, bool needs_clflush)
598{
599 char *vaddr;
600 int ret;
601
602 vaddr = kmap(page);
603 if (needs_clflush)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200604 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
605 page_length,
606 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200607
608 if (page_do_bit17_swizzling)
609 ret = __copy_to_user_swizzled(user_data,
610 vaddr, shmem_page_offset,
611 page_length);
612 else
613 ret = __copy_to_user(user_data,
614 vaddr + shmem_page_offset,
615 page_length);
616 kunmap(page);
617
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100618 return ret ? - EFAULT : 0;
Daniel Vetterd174bd62012-03-25 19:47:40 +0200619}
620
Eric Anholteb014592009-03-10 11:44:52 -0700621static int
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200622i915_gem_shmem_pread(struct drm_device *dev,
623 struct drm_i915_gem_object *obj,
624 struct drm_i915_gem_pread *args,
625 struct drm_file *file)
Eric Anholteb014592009-03-10 11:44:52 -0700626{
Daniel Vetter8461d222011-12-14 13:57:32 +0100627 char __user *user_data;
Eric Anholteb014592009-03-10 11:44:52 -0700628 ssize_t remain;
Daniel Vetter8461d222011-12-14 13:57:32 +0100629 loff_t offset;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100630 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8461d222011-12-14 13:57:32 +0100631 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vetter96d79b52012-03-25 19:47:36 +0200632 int prefaulted = 0;
Daniel Vetter84897312012-03-25 19:47:31 +0200633 int needs_clflush = 0;
Imre Deak67d5a502013-02-18 19:28:02 +0200634 struct sg_page_iter sg_iter;
Eric Anholteb014592009-03-10 11:44:52 -0700635
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200636 user_data = to_user_ptr(args->data_ptr);
Eric Anholteb014592009-03-10 11:44:52 -0700637 remain = args->size;
638
Daniel Vetter8461d222011-12-14 13:57:32 +0100639 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700640
Brad Volkin4c914c02014-02-18 10:15:45 -0800641 ret = i915_gem_obj_prepare_shmem_read(obj, &needs_clflush);
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100642 if (ret)
643 return ret;
644
Eric Anholteb014592009-03-10 11:44:52 -0700645 offset = args->offset;
Daniel Vetter8461d222011-12-14 13:57:32 +0100646
Imre Deak67d5a502013-02-18 19:28:02 +0200647 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents,
648 offset >> PAGE_SHIFT) {
Imre Deak2db76d72013-03-26 15:14:18 +0200649 struct page *page = sg_page_iter_page(&sg_iter);
Chris Wilson9da3da62012-06-01 15:20:22 +0100650
651 if (remain <= 0)
652 break;
653
Eric Anholteb014592009-03-10 11:44:52 -0700654 /* Operation in this page
655 *
Eric Anholteb014592009-03-10 11:44:52 -0700656 * shmem_page_offset = offset within page in shmem file
Eric Anholteb014592009-03-10 11:44:52 -0700657 * page_length = bytes to copy for this page
658 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100659 shmem_page_offset = offset_in_page(offset);
Eric Anholteb014592009-03-10 11:44:52 -0700660 page_length = remain;
661 if ((shmem_page_offset + page_length) > PAGE_SIZE)
662 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholteb014592009-03-10 11:44:52 -0700663
Daniel Vetter8461d222011-12-14 13:57:32 +0100664 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
665 (page_to_phys(page) & (1 << 17)) != 0;
666
Daniel Vetterd174bd62012-03-25 19:47:40 +0200667 ret = shmem_pread_fast(page, shmem_page_offset, page_length,
668 user_data, page_do_bit17_swizzling,
669 needs_clflush);
670 if (ret == 0)
671 goto next_page;
Eric Anholteb014592009-03-10 11:44:52 -0700672
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200673 mutex_unlock(&dev->struct_mutex);
674
Jani Nikulad330a952014-01-21 11:24:25 +0200675 if (likely(!i915.prefault_disable) && !prefaulted) {
Daniel Vetterf56f8212012-03-25 19:47:41 +0200676 ret = fault_in_multipages_writeable(user_data, remain);
Daniel Vetter96d79b52012-03-25 19:47:36 +0200677 /* Userspace is tricking us, but we've already clobbered
678 * its pages with the prefault and promised to write the
679 * data up to the first fault. Hence ignore any errors
680 * and just continue. */
681 (void)ret;
682 prefaulted = 1;
683 }
684
Daniel Vetterd174bd62012-03-25 19:47:40 +0200685 ret = shmem_pread_slow(page, shmem_page_offset, page_length,
686 user_data, page_do_bit17_swizzling,
687 needs_clflush);
Eric Anholteb014592009-03-10 11:44:52 -0700688
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200689 mutex_lock(&dev->struct_mutex);
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100690
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100691 if (ret)
Daniel Vetter8461d222011-12-14 13:57:32 +0100692 goto out;
Daniel Vetter8461d222011-12-14 13:57:32 +0100693
Chris Wilson17793c92014-03-07 08:30:36 +0000694next_page:
Eric Anholteb014592009-03-10 11:44:52 -0700695 remain -= page_length;
Daniel Vetter8461d222011-12-14 13:57:32 +0100696 user_data += page_length;
Eric Anholteb014592009-03-10 11:44:52 -0700697 offset += page_length;
698 }
699
Chris Wilson4f27b752010-10-14 15:26:45 +0100700out:
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100701 i915_gem_object_unpin_pages(obj);
702
Eric Anholteb014592009-03-10 11:44:52 -0700703 return ret;
704}
705
Eric Anholt673a3942008-07-30 12:06:12 -0700706/**
707 * Reads data from the object referenced by handle.
708 *
709 * On error, the contents of *data are undefined.
710 */
711int
712i915_gem_pread_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000713 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700714{
715 struct drm_i915_gem_pread *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000716 struct drm_i915_gem_object *obj;
Chris Wilson35b62a82010-09-26 20:23:38 +0100717 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700718
Chris Wilson51311d02010-11-17 09:10:42 +0000719 if (args->size == 0)
720 return 0;
721
722 if (!access_ok(VERIFY_WRITE,
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200723 to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +0000724 args->size))
725 return -EFAULT;
726
Chris Wilson4f27b752010-10-14 15:26:45 +0100727 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100728 if (ret)
Chris Wilson4f27b752010-10-14 15:26:45 +0100729 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700730
Chris Wilson05394f32010-11-08 19:18:58 +0000731 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000732 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100733 ret = -ENOENT;
734 goto unlock;
Chris Wilson4f27b752010-10-14 15:26:45 +0100735 }
Eric Anholt673a3942008-07-30 12:06:12 -0700736
Chris Wilson7dcd2492010-09-26 20:21:44 +0100737 /* Bounds check source. */
Chris Wilson05394f32010-11-08 19:18:58 +0000738 if (args->offset > obj->base.size ||
739 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100740 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100741 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100742 }
743
Daniel Vetter1286ff72012-05-10 15:25:09 +0200744 /* prime objects have no backing filp to GEM pread/pwrite
745 * pages from.
746 */
747 if (!obj->base.filp) {
748 ret = -EINVAL;
749 goto out;
750 }
751
Chris Wilsondb53a302011-02-03 11:57:46 +0000752 trace_i915_gem_object_pread(obj, args->offset, args->size);
753
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200754 ret = i915_gem_shmem_pread(dev, obj, args, file);
Eric Anholt673a3942008-07-30 12:06:12 -0700755
Chris Wilson35b62a82010-09-26 20:23:38 +0100756out:
Chris Wilson05394f32010-11-08 19:18:58 +0000757 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100758unlock:
Chris Wilson4f27b752010-10-14 15:26:45 +0100759 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700760 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700761}
762
Keith Packard0839ccb2008-10-30 19:38:48 -0700763/* This is the fast write path which cannot handle
764 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700765 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700766
Keith Packard0839ccb2008-10-30 19:38:48 -0700767static inline int
768fast_user_write(struct io_mapping *mapping,
769 loff_t page_base, int page_offset,
770 char __user *user_data,
771 int length)
772{
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700773 void __iomem *vaddr_atomic;
774 void *vaddr;
Keith Packard0839ccb2008-10-30 19:38:48 -0700775 unsigned long unwritten;
776
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700777 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base);
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700778 /* We can use the cpu mem copy function because this is X86. */
779 vaddr = (void __force*)vaddr_atomic + page_offset;
780 unwritten = __copy_from_user_inatomic_nocache(vaddr,
Keith Packard0839ccb2008-10-30 19:38:48 -0700781 user_data, length);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700782 io_mapping_unmap_atomic(vaddr_atomic);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100783 return unwritten;
Keith Packard0839ccb2008-10-30 19:38:48 -0700784}
785
Eric Anholt3de09aa2009-03-09 09:42:23 -0700786/**
787 * This is the fast pwrite path, where we copy the data directly from the
788 * user into the GTT, uncached.
789 */
Eric Anholt673a3942008-07-30 12:06:12 -0700790static int
Chris Wilson05394f32010-11-08 19:18:58 +0000791i915_gem_gtt_pwrite_fast(struct drm_device *dev,
792 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -0700793 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000794 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700795{
Jani Nikula3e31c6c2014-03-31 14:27:16 +0300796 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700797 ssize_t remain;
Keith Packard0839ccb2008-10-30 19:38:48 -0700798 loff_t offset, page_base;
Eric Anholt673a3942008-07-30 12:06:12 -0700799 char __user *user_data;
Daniel Vetter935aaa62012-03-25 19:47:35 +0200800 int page_offset, page_length, ret;
801
Daniel Vetter1ec9e262014-02-14 14:01:11 +0100802 ret = i915_gem_obj_ggtt_pin(obj, 0, PIN_MAPPABLE | PIN_NONBLOCK);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200803 if (ret)
804 goto out;
805
806 ret = i915_gem_object_set_to_gtt_domain(obj, true);
807 if (ret)
808 goto out_unpin;
809
810 ret = i915_gem_object_put_fence(obj);
811 if (ret)
812 goto out_unpin;
Eric Anholt673a3942008-07-30 12:06:12 -0700813
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200814 user_data = to_user_ptr(args->data_ptr);
Eric Anholt673a3942008-07-30 12:06:12 -0700815 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700816
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700817 offset = i915_gem_obj_ggtt_offset(obj) + args->offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700818
819 while (remain > 0) {
820 /* Operation in this page
821 *
Keith Packard0839ccb2008-10-30 19:38:48 -0700822 * page_base = page offset within aperture
823 * page_offset = offset within page
824 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -0700825 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100826 page_base = offset & PAGE_MASK;
827 page_offset = offset_in_page(offset);
Keith Packard0839ccb2008-10-30 19:38:48 -0700828 page_length = remain;
829 if ((page_offset + remain) > PAGE_SIZE)
830 page_length = PAGE_SIZE - page_offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700831
Keith Packard0839ccb2008-10-30 19:38:48 -0700832 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -0700833 * source page isn't available. Return the error and we'll
834 * retry in the slow path.
Keith Packard0839ccb2008-10-30 19:38:48 -0700835 */
Ben Widawsky5d4545a2013-01-17 12:45:15 -0800836 if (fast_user_write(dev_priv->gtt.mappable, page_base,
Daniel Vetter935aaa62012-03-25 19:47:35 +0200837 page_offset, user_data, page_length)) {
838 ret = -EFAULT;
839 goto out_unpin;
840 }
Eric Anholt673a3942008-07-30 12:06:12 -0700841
Keith Packard0839ccb2008-10-30 19:38:48 -0700842 remain -= page_length;
843 user_data += page_length;
844 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700845 }
Eric Anholt673a3942008-07-30 12:06:12 -0700846
Daniel Vetter935aaa62012-03-25 19:47:35 +0200847out_unpin:
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800848 i915_gem_object_ggtt_unpin(obj);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200849out:
Eric Anholt3de09aa2009-03-09 09:42:23 -0700850 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700851}
852
Daniel Vetterd174bd62012-03-25 19:47:40 +0200853/* Per-page copy function for the shmem pwrite fastpath.
854 * Flushes invalid cachelines before writing to the target if
855 * needs_clflush_before is set and flushes out any written cachelines after
856 * writing if needs_clflush is set. */
Eric Anholt673a3942008-07-30 12:06:12 -0700857static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200858shmem_pwrite_fast(struct page *page, int shmem_page_offset, int page_length,
859 char __user *user_data,
860 bool page_do_bit17_swizzling,
861 bool needs_clflush_before,
862 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700863{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200864 char *vaddr;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700865 int ret;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700866
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200867 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200868 return -EINVAL;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700869
Daniel Vetterd174bd62012-03-25 19:47:40 +0200870 vaddr = kmap_atomic(page);
871 if (needs_clflush_before)
872 drm_clflush_virt_range(vaddr + shmem_page_offset,
873 page_length);
Chris Wilsonc2831a92014-03-07 08:30:37 +0000874 ret = __copy_from_user_inatomic(vaddr + shmem_page_offset,
875 user_data, page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200876 if (needs_clflush_after)
877 drm_clflush_virt_range(vaddr + shmem_page_offset,
878 page_length);
879 kunmap_atomic(vaddr);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700880
Chris Wilson755d2212012-09-04 21:02:55 +0100881 return ret ? -EFAULT : 0;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700882}
883
Daniel Vetterd174bd62012-03-25 19:47:40 +0200884/* Only difference to the fast-path function is that this can handle bit17
885 * and uses non-atomic copy and kmap functions. */
Eric Anholt3043c602008-10-02 12:24:47 -0700886static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200887shmem_pwrite_slow(struct page *page, int shmem_page_offset, int page_length,
888 char __user *user_data,
889 bool page_do_bit17_swizzling,
890 bool needs_clflush_before,
891 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700892{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200893 char *vaddr;
894 int ret;
Eric Anholt40123c12009-03-09 13:42:30 -0700895
Daniel Vetterd174bd62012-03-25 19:47:40 +0200896 vaddr = kmap(page);
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200897 if (unlikely(needs_clflush_before || page_do_bit17_swizzling))
Daniel Vetter23c18c72012-03-25 19:47:42 +0200898 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
899 page_length,
900 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200901 if (page_do_bit17_swizzling)
902 ret = __copy_from_user_swizzled(vaddr, shmem_page_offset,
Chris Wilsone5281cc2010-10-28 13:45:36 +0100903 user_data,
904 page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200905 else
906 ret = __copy_from_user(vaddr + shmem_page_offset,
907 user_data,
908 page_length);
909 if (needs_clflush_after)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200910 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
911 page_length,
912 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200913 kunmap(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100914
Chris Wilson755d2212012-09-04 21:02:55 +0100915 return ret ? -EFAULT : 0;
Eric Anholt40123c12009-03-09 13:42:30 -0700916}
917
Eric Anholt40123c12009-03-09 13:42:30 -0700918static int
Daniel Vettere244a442012-03-25 19:47:28 +0200919i915_gem_shmem_pwrite(struct drm_device *dev,
920 struct drm_i915_gem_object *obj,
921 struct drm_i915_gem_pwrite *args,
922 struct drm_file *file)
Eric Anholt40123c12009-03-09 13:42:30 -0700923{
Eric Anholt40123c12009-03-09 13:42:30 -0700924 ssize_t remain;
Daniel Vetter8c599672011-12-14 13:57:31 +0100925 loff_t offset;
926 char __user *user_data;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100927 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8c599672011-12-14 13:57:31 +0100928 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vettere244a442012-03-25 19:47:28 +0200929 int hit_slowpath = 0;
Daniel Vetter58642882012-03-25 19:47:37 +0200930 int needs_clflush_after = 0;
931 int needs_clflush_before = 0;
Imre Deak67d5a502013-02-18 19:28:02 +0200932 struct sg_page_iter sg_iter;
Eric Anholt40123c12009-03-09 13:42:30 -0700933
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200934 user_data = to_user_ptr(args->data_ptr);
Eric Anholt40123c12009-03-09 13:42:30 -0700935 remain = args->size;
936
Daniel Vetter8c599672011-12-14 13:57:31 +0100937 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700938
Daniel Vetter58642882012-03-25 19:47:37 +0200939 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
940 /* If we're not in the cpu write domain, set ourself into the gtt
941 * write domain and manually flush cachelines (if required). This
942 * optimizes for the case when the gpu will use the data
943 * right away and we therefore have to clflush anyway. */
Chris Wilson2c225692013-08-09 12:26:45 +0100944 needs_clflush_after = cpu_write_needs_clflush(obj);
Ben Widawsky23f54482013-09-11 14:57:48 -0700945 ret = i915_gem_object_wait_rendering(obj, false);
946 if (ret)
947 return ret;
Chris Wilsonc8725f32014-03-17 12:21:55 +0000948
949 i915_gem_object_retire(obj);
Daniel Vetter58642882012-03-25 19:47:37 +0200950 }
Chris Wilsonc76ce032013-08-08 14:41:03 +0100951 /* Same trick applies to invalidate partially written cachelines read
952 * before writing. */
953 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0)
954 needs_clflush_before =
955 !cpu_cache_is_coherent(dev, obj->cache_level);
Daniel Vetter58642882012-03-25 19:47:37 +0200956
Chris Wilson755d2212012-09-04 21:02:55 +0100957 ret = i915_gem_object_get_pages(obj);
958 if (ret)
959 return ret;
960
961 i915_gem_object_pin_pages(obj);
962
Eric Anholt40123c12009-03-09 13:42:30 -0700963 offset = args->offset;
Chris Wilson05394f32010-11-08 19:18:58 +0000964 obj->dirty = 1;
Eric Anholt40123c12009-03-09 13:42:30 -0700965
Imre Deak67d5a502013-02-18 19:28:02 +0200966 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents,
967 offset >> PAGE_SHIFT) {
Imre Deak2db76d72013-03-26 15:14:18 +0200968 struct page *page = sg_page_iter_page(&sg_iter);
Daniel Vetter58642882012-03-25 19:47:37 +0200969 int partial_cacheline_write;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100970
Chris Wilson9da3da62012-06-01 15:20:22 +0100971 if (remain <= 0)
972 break;
973
Eric Anholt40123c12009-03-09 13:42:30 -0700974 /* Operation in this page
975 *
Eric Anholt40123c12009-03-09 13:42:30 -0700976 * shmem_page_offset = offset within page in shmem file
Eric Anholt40123c12009-03-09 13:42:30 -0700977 * page_length = bytes to copy for this page
978 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100979 shmem_page_offset = offset_in_page(offset);
Eric Anholt40123c12009-03-09 13:42:30 -0700980
981 page_length = remain;
982 if ((shmem_page_offset + page_length) > PAGE_SIZE)
983 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700984
Daniel Vetter58642882012-03-25 19:47:37 +0200985 /* If we don't overwrite a cacheline completely we need to be
986 * careful to have up-to-date data by first clflushing. Don't
987 * overcomplicate things and flush the entire patch. */
988 partial_cacheline_write = needs_clflush_before &&
989 ((shmem_page_offset | page_length)
990 & (boot_cpu_data.x86_clflush_size - 1));
991
Daniel Vetter8c599672011-12-14 13:57:31 +0100992 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
993 (page_to_phys(page) & (1 << 17)) != 0;
994
Daniel Vetterd174bd62012-03-25 19:47:40 +0200995 ret = shmem_pwrite_fast(page, shmem_page_offset, page_length,
996 user_data, page_do_bit17_swizzling,
997 partial_cacheline_write,
998 needs_clflush_after);
999 if (ret == 0)
1000 goto next_page;
Eric Anholt40123c12009-03-09 13:42:30 -07001001
Daniel Vettere244a442012-03-25 19:47:28 +02001002 hit_slowpath = 1;
Daniel Vettere244a442012-03-25 19:47:28 +02001003 mutex_unlock(&dev->struct_mutex);
Daniel Vetterd174bd62012-03-25 19:47:40 +02001004 ret = shmem_pwrite_slow(page, shmem_page_offset, page_length,
1005 user_data, page_do_bit17_swizzling,
1006 partial_cacheline_write,
1007 needs_clflush_after);
Eric Anholt40123c12009-03-09 13:42:30 -07001008
Daniel Vettere244a442012-03-25 19:47:28 +02001009 mutex_lock(&dev->struct_mutex);
Chris Wilson755d2212012-09-04 21:02:55 +01001010
Chris Wilson755d2212012-09-04 21:02:55 +01001011 if (ret)
Daniel Vetter8c599672011-12-14 13:57:31 +01001012 goto out;
Daniel Vetter8c599672011-12-14 13:57:31 +01001013
Chris Wilson17793c92014-03-07 08:30:36 +00001014next_page:
Eric Anholt40123c12009-03-09 13:42:30 -07001015 remain -= page_length;
Daniel Vetter8c599672011-12-14 13:57:31 +01001016 user_data += page_length;
Eric Anholt40123c12009-03-09 13:42:30 -07001017 offset += page_length;
1018 }
1019
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001020out:
Chris Wilson755d2212012-09-04 21:02:55 +01001021 i915_gem_object_unpin_pages(obj);
1022
Daniel Vettere244a442012-03-25 19:47:28 +02001023 if (hit_slowpath) {
Daniel Vetter8dcf0152012-11-15 16:53:58 +01001024 /*
1025 * Fixup: Flush cpu caches in case we didn't flush the dirty
1026 * cachelines in-line while writing and the object moved
1027 * out of the cpu write domain while we've dropped the lock.
1028 */
1029 if (!needs_clflush_after &&
1030 obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
Chris Wilson000433b2013-08-08 14:41:09 +01001031 if (i915_gem_clflush_object(obj, obj->pin_display))
1032 i915_gem_chipset_flush(dev);
Daniel Vettere244a442012-03-25 19:47:28 +02001033 }
Daniel Vetter8c599672011-12-14 13:57:31 +01001034 }
Eric Anholt40123c12009-03-09 13:42:30 -07001035
Daniel Vetter58642882012-03-25 19:47:37 +02001036 if (needs_clflush_after)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08001037 i915_gem_chipset_flush(dev);
Daniel Vetter58642882012-03-25 19:47:37 +02001038
Eric Anholt40123c12009-03-09 13:42:30 -07001039 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001040}
1041
1042/**
1043 * Writes data to the object referenced by handle.
1044 *
1045 * On error, the contents of the buffer that were to be modified are undefined.
1046 */
1047int
1048i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001049 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001050{
1051 struct drm_i915_gem_pwrite *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001052 struct drm_i915_gem_object *obj;
Chris Wilson51311d02010-11-17 09:10:42 +00001053 int ret;
1054
1055 if (args->size == 0)
1056 return 0;
1057
1058 if (!access_ok(VERIFY_READ,
Ville Syrjälä2bb46292013-02-22 16:12:51 +02001059 to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +00001060 args->size))
1061 return -EFAULT;
1062
Jani Nikulad330a952014-01-21 11:24:25 +02001063 if (likely(!i915.prefault_disable)) {
Xiong Zhang0b74b502013-07-19 13:51:24 +08001064 ret = fault_in_multipages_readable(to_user_ptr(args->data_ptr),
1065 args->size);
1066 if (ret)
1067 return -EFAULT;
1068 }
Eric Anholt673a3942008-07-30 12:06:12 -07001069
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001070 ret = i915_mutex_lock_interruptible(dev);
1071 if (ret)
1072 return ret;
1073
Chris Wilson05394f32010-11-08 19:18:58 +00001074 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001075 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001076 ret = -ENOENT;
1077 goto unlock;
1078 }
Eric Anholt673a3942008-07-30 12:06:12 -07001079
Chris Wilson7dcd2492010-09-26 20:21:44 +01001080 /* Bounds check destination. */
Chris Wilson05394f32010-11-08 19:18:58 +00001081 if (args->offset > obj->base.size ||
1082 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +01001083 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +01001084 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +01001085 }
1086
Daniel Vetter1286ff72012-05-10 15:25:09 +02001087 /* prime objects have no backing filp to GEM pread/pwrite
1088 * pages from.
1089 */
1090 if (!obj->base.filp) {
1091 ret = -EINVAL;
1092 goto out;
1093 }
1094
Chris Wilsondb53a302011-02-03 11:57:46 +00001095 trace_i915_gem_object_pwrite(obj, args->offset, args->size);
1096
Daniel Vetter935aaa62012-03-25 19:47:35 +02001097 ret = -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -07001098 /* We can only do the GTT pwrite on untiled buffers, as otherwise
1099 * it would end up going through the fenced access, and we'll get
1100 * different detiling behavior between reading and writing.
1101 * pread/pwrite currently are reading and writing from the CPU
1102 * perspective, requiring manual detiling by the client.
1103 */
Chris Wilson2c225692013-08-09 12:26:45 +01001104 if (obj->tiling_mode == I915_TILING_NONE &&
1105 obj->base.write_domain != I915_GEM_DOMAIN_CPU &&
1106 cpu_write_needs_clflush(obj)) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001107 ret = i915_gem_gtt_pwrite_fast(dev, obj, args, file);
Daniel Vetter935aaa62012-03-25 19:47:35 +02001108 /* Note that the gtt paths might fail with non-page-backed user
1109 * pointers (e.g. gtt mappings when moving data between
1110 * textures). Fallback to the shmem path in that case. */
Eric Anholt40123c12009-03-09 13:42:30 -07001111 }
Eric Anholt673a3942008-07-30 12:06:12 -07001112
Chris Wilson6a2c4232014-11-04 04:51:40 -08001113 if (ret == -EFAULT || ret == -ENOSPC) {
1114 if (obj->phys_handle)
1115 ret = i915_gem_phys_pwrite(obj, args, file);
1116 else
1117 ret = i915_gem_shmem_pwrite(dev, obj, args, file);
1118 }
Daniel Vetter5c0480f2011-12-14 13:57:30 +01001119
Chris Wilson35b62a82010-09-26 20:23:38 +01001120out:
Chris Wilson05394f32010-11-08 19:18:58 +00001121 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001122unlock:
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001123 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07001124 return ret;
1125}
1126
Chris Wilsonb3612372012-08-24 09:35:08 +01001127int
Daniel Vetter33196de2012-11-14 17:14:05 +01001128i915_gem_check_wedge(struct i915_gpu_error *error,
Chris Wilsonb3612372012-08-24 09:35:08 +01001129 bool interruptible)
1130{
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001131 if (i915_reset_in_progress(error)) {
Chris Wilsonb3612372012-08-24 09:35:08 +01001132 /* Non-interruptible callers can't handle -EAGAIN, hence return
1133 * -EIO unconditionally for these. */
1134 if (!interruptible)
1135 return -EIO;
1136
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001137 /* Recovery complete, but the reset failed ... */
1138 if (i915_terminally_wedged(error))
Chris Wilsonb3612372012-08-24 09:35:08 +01001139 return -EIO;
1140
McAulay, Alistair6689c162014-08-15 18:51:35 +01001141 /*
1142 * Check if GPU Reset is in progress - we need intel_ring_begin
1143 * to work properly to reinit the hw state while the gpu is
1144 * still marked as reset-in-progress. Handle this with a flag.
1145 */
1146 if (!error->reload_in_reset)
1147 return -EAGAIN;
Chris Wilsonb3612372012-08-24 09:35:08 +01001148 }
1149
1150 return 0;
1151}
1152
1153/*
1154 * Compare seqno against outstanding lazy request. Emit a request if they are
1155 * equal.
1156 */
Sourab Gupta84c33a62014-06-02 16:47:17 +05301157int
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001158i915_gem_check_olr(struct intel_engine_cs *ring, u32 seqno)
Chris Wilsonb3612372012-08-24 09:35:08 +01001159{
1160 int ret;
1161
1162 BUG_ON(!mutex_is_locked(&ring->dev->struct_mutex));
1163
1164 ret = 0;
Chris Wilson18235212013-09-04 10:45:51 +01001165 if (seqno == ring->outstanding_lazy_seqno)
Mika Kuoppala0025c072013-06-12 12:35:30 +03001166 ret = i915_add_request(ring, NULL);
Chris Wilsonb3612372012-08-24 09:35:08 +01001167
1168 return ret;
1169}
1170
Chris Wilson094f9a52013-09-25 17:34:55 +01001171static void fake_irq(unsigned long data)
1172{
1173 wake_up_process((struct task_struct *)data);
1174}
1175
1176static bool missed_irq(struct drm_i915_private *dev_priv,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001177 struct intel_engine_cs *ring)
Chris Wilson094f9a52013-09-25 17:34:55 +01001178{
1179 return test_bit(ring->id, &dev_priv->gpu_error.missed_irq_rings);
1180}
1181
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001182static bool can_wait_boost(struct drm_i915_file_private *file_priv)
1183{
1184 if (file_priv == NULL)
1185 return true;
1186
1187 return !atomic_xchg(&file_priv->rps_wait_boost, true);
1188}
1189
Chris Wilsonb3612372012-08-24 09:35:08 +01001190/**
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001191 * __i915_wait_seqno - wait until execution of seqno has finished
Chris Wilsonb3612372012-08-24 09:35:08 +01001192 * @ring: the ring expected to report seqno
1193 * @seqno: duh!
Daniel Vetterf69061b2012-12-06 09:01:42 +01001194 * @reset_counter: reset sequence associated with the given seqno
Chris Wilsonb3612372012-08-24 09:35:08 +01001195 * @interruptible: do an interruptible wait (normally yes)
1196 * @timeout: in - how long to wait (NULL forever); out - how much time remaining
1197 *
Daniel Vetterf69061b2012-12-06 09:01:42 +01001198 * Note: It is of utmost importance that the passed in seqno and reset_counter
1199 * values have been read by the caller in an smp safe manner. Where read-side
1200 * locks are involved, it is sufficient to read the reset_counter before
1201 * unlocking the lock that protects the seqno. For lockless tricks, the
1202 * reset_counter _must_ be read before, and an appropriate smp_rmb must be
1203 * inserted.
1204 *
Chris Wilsonb3612372012-08-24 09:35:08 +01001205 * Returns 0 if the seqno was found within the alloted time. Else returns the
1206 * errno with remaining time filled in timeout argument.
1207 */
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001208int __i915_wait_seqno(struct intel_engine_cs *ring, u32 seqno,
Daniel Vetterf69061b2012-12-06 09:01:42 +01001209 unsigned reset_counter,
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001210 bool interruptible,
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001211 s64 *timeout,
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001212 struct drm_i915_file_private *file_priv)
Chris Wilsonb3612372012-08-24 09:35:08 +01001213{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001214 struct drm_device *dev = ring->dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03001215 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001216 const bool irq_test_in_progress =
1217 ACCESS_ONCE(dev_priv->gpu_error.test_irq_rings) & intel_ring_flag(ring);
Chris Wilson094f9a52013-09-25 17:34:55 +01001218 DEFINE_WAIT(wait);
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001219 unsigned long timeout_expire;
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001220 s64 before, now;
Chris Wilsonb3612372012-08-24 09:35:08 +01001221 int ret;
1222
Jesse Barnes9df7575f2014-06-20 09:29:20 -07001223 WARN(!intel_irqs_enabled(dev_priv), "IRQs disabled");
Paulo Zanonic67a4702013-08-19 13:18:09 -03001224
Chris Wilsonb3612372012-08-24 09:35:08 +01001225 if (i915_seqno_passed(ring->get_seqno(ring, true), seqno))
1226 return 0;
1227
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001228 timeout_expire = timeout ? jiffies + nsecs_to_jiffies((u64)*timeout) : 0;
Chris Wilsonb3612372012-08-24 09:35:08 +01001229
Chris Wilsonec5cc0f2014-06-12 10:28:55 +01001230 if (INTEL_INFO(dev)->gen >= 6 && ring->id == RCS && can_wait_boost(file_priv)) {
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001231 gen6_rps_boost(dev_priv);
1232 if (file_priv)
1233 mod_delayed_work(dev_priv->wq,
1234 &file_priv->mm.idle_work,
1235 msecs_to_jiffies(100));
1236 }
1237
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001238 if (!irq_test_in_progress && WARN_ON(!ring->irq_get(ring)))
Chris Wilsonb3612372012-08-24 09:35:08 +01001239 return -ENODEV;
1240
Chris Wilson094f9a52013-09-25 17:34:55 +01001241 /* Record current time in case interrupted by signal, or wedged */
1242 trace_i915_gem_request_wait_begin(ring, seqno);
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001243 before = ktime_get_raw_ns();
Chris Wilson094f9a52013-09-25 17:34:55 +01001244 for (;;) {
1245 struct timer_list timer;
Chris Wilsonb3612372012-08-24 09:35:08 +01001246
Chris Wilson094f9a52013-09-25 17:34:55 +01001247 prepare_to_wait(&ring->irq_queue, &wait,
1248 interruptible ? TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE);
Chris Wilsonb3612372012-08-24 09:35:08 +01001249
Daniel Vetterf69061b2012-12-06 09:01:42 +01001250 /* We need to check whether any gpu reset happened in between
1251 * the caller grabbing the seqno and now ... */
Chris Wilson094f9a52013-09-25 17:34:55 +01001252 if (reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter)) {
1253 /* ... but upgrade the -EAGAIN to an -EIO if the gpu
1254 * is truely gone. */
1255 ret = i915_gem_check_wedge(&dev_priv->gpu_error, interruptible);
1256 if (ret == 0)
1257 ret = -EAGAIN;
1258 break;
1259 }
Daniel Vetterf69061b2012-12-06 09:01:42 +01001260
Chris Wilson094f9a52013-09-25 17:34:55 +01001261 if (i915_seqno_passed(ring->get_seqno(ring, false), seqno)) {
1262 ret = 0;
1263 break;
1264 }
Chris Wilsonb3612372012-08-24 09:35:08 +01001265
Chris Wilson094f9a52013-09-25 17:34:55 +01001266 if (interruptible && signal_pending(current)) {
1267 ret = -ERESTARTSYS;
1268 break;
1269 }
1270
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001271 if (timeout && time_after_eq(jiffies, timeout_expire)) {
Chris Wilson094f9a52013-09-25 17:34:55 +01001272 ret = -ETIME;
1273 break;
1274 }
1275
1276 timer.function = NULL;
1277 if (timeout || missed_irq(dev_priv, ring)) {
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001278 unsigned long expire;
1279
Chris Wilson094f9a52013-09-25 17:34:55 +01001280 setup_timer_on_stack(&timer, fake_irq, (unsigned long)current);
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001281 expire = missed_irq(dev_priv, ring) ? jiffies + 1 : timeout_expire;
Chris Wilson094f9a52013-09-25 17:34:55 +01001282 mod_timer(&timer, expire);
1283 }
1284
Chris Wilson5035c272013-10-04 09:58:46 +01001285 io_schedule();
Chris Wilson094f9a52013-09-25 17:34:55 +01001286
Chris Wilson094f9a52013-09-25 17:34:55 +01001287 if (timer.function) {
1288 del_singleshot_timer_sync(&timer);
1289 destroy_timer_on_stack(&timer);
1290 }
1291 }
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001292 now = ktime_get_raw_ns();
Chris Wilson094f9a52013-09-25 17:34:55 +01001293 trace_i915_gem_request_wait_end(ring, seqno);
Chris Wilsonb3612372012-08-24 09:35:08 +01001294
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001295 if (!irq_test_in_progress)
1296 ring->irq_put(ring);
Chris Wilson094f9a52013-09-25 17:34:55 +01001297
1298 finish_wait(&ring->irq_queue, &wait);
Chris Wilsonb3612372012-08-24 09:35:08 +01001299
1300 if (timeout) {
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001301 s64 tres = *timeout - (now - before);
1302
1303 *timeout = tres < 0 ? 0 : tres;
Chris Wilsonb3612372012-08-24 09:35:08 +01001304 }
1305
Chris Wilson094f9a52013-09-25 17:34:55 +01001306 return ret;
Chris Wilsonb3612372012-08-24 09:35:08 +01001307}
1308
1309/**
1310 * Waits for a sequence number to be signaled, and cleans up the
1311 * request and object lists appropriately for that event.
1312 */
1313int
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001314i915_wait_seqno(struct intel_engine_cs *ring, uint32_t seqno)
Chris Wilsonb3612372012-08-24 09:35:08 +01001315{
1316 struct drm_device *dev = ring->dev;
1317 struct drm_i915_private *dev_priv = dev->dev_private;
1318 bool interruptible = dev_priv->mm.interruptible;
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001319 unsigned reset_counter;
Chris Wilsonb3612372012-08-24 09:35:08 +01001320 int ret;
1321
1322 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
1323 BUG_ON(seqno == 0);
1324
Daniel Vetter33196de2012-11-14 17:14:05 +01001325 ret = i915_gem_check_wedge(&dev_priv->gpu_error, interruptible);
Chris Wilsonb3612372012-08-24 09:35:08 +01001326 if (ret)
1327 return ret;
1328
1329 ret = i915_gem_check_olr(ring, seqno);
1330 if (ret)
1331 return ret;
1332
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001333 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
1334 return __i915_wait_seqno(ring, seqno, reset_counter, interruptible,
1335 NULL, NULL);
Chris Wilsonb3612372012-08-24 09:35:08 +01001336}
1337
Chris Wilsond26e3af2013-06-29 22:05:26 +01001338static int
John Harrison8e6395492014-10-30 18:40:53 +00001339i915_gem_object_wait_rendering__tail(struct drm_i915_gem_object *obj)
Chris Wilsond26e3af2013-06-29 22:05:26 +01001340{
Chris Wilsonc8725f32014-03-17 12:21:55 +00001341 if (!obj->active)
1342 return 0;
Chris Wilsond26e3af2013-06-29 22:05:26 +01001343
1344 /* Manually manage the write flush as we may have not yet
1345 * retired the buffer.
1346 *
1347 * Note that the last_write_seqno is always the earlier of
1348 * the two (read/write) seqno, so if we haved successfully waited,
1349 * we know we have passed the last write.
1350 */
1351 obj->last_write_seqno = 0;
Chris Wilsond26e3af2013-06-29 22:05:26 +01001352
1353 return 0;
1354}
1355
Chris Wilsonb3612372012-08-24 09:35:08 +01001356/**
1357 * Ensures that all rendering to the object has completed and the object is
1358 * safe to unbind from the GTT or access from the CPU.
1359 */
1360static __must_check int
1361i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj,
1362 bool readonly)
1363{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001364 struct intel_engine_cs *ring = obj->ring;
Chris Wilsonb3612372012-08-24 09:35:08 +01001365 u32 seqno;
1366 int ret;
1367
1368 seqno = readonly ? obj->last_write_seqno : obj->last_read_seqno;
1369 if (seqno == 0)
1370 return 0;
1371
1372 ret = i915_wait_seqno(ring, seqno);
1373 if (ret)
1374 return ret;
1375
John Harrison8e6395492014-10-30 18:40:53 +00001376 return i915_gem_object_wait_rendering__tail(obj);
Chris Wilsonb3612372012-08-24 09:35:08 +01001377}
1378
Chris Wilson3236f572012-08-24 09:35:09 +01001379/* A nonblocking variant of the above wait. This is a highly dangerous routine
1380 * as the object state may change during this call.
1381 */
1382static __must_check int
1383i915_gem_object_wait_rendering__nonblocking(struct drm_i915_gem_object *obj,
Chris Wilson6e4930f2014-02-07 18:37:06 -02001384 struct drm_i915_file_private *file_priv,
Chris Wilson3236f572012-08-24 09:35:09 +01001385 bool readonly)
1386{
1387 struct drm_device *dev = obj->base.dev;
1388 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001389 struct intel_engine_cs *ring = obj->ring;
Daniel Vetterf69061b2012-12-06 09:01:42 +01001390 unsigned reset_counter;
Chris Wilson3236f572012-08-24 09:35:09 +01001391 u32 seqno;
1392 int ret;
1393
1394 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
1395 BUG_ON(!dev_priv->mm.interruptible);
1396
1397 seqno = readonly ? obj->last_write_seqno : obj->last_read_seqno;
1398 if (seqno == 0)
1399 return 0;
1400
Daniel Vetter33196de2012-11-14 17:14:05 +01001401 ret = i915_gem_check_wedge(&dev_priv->gpu_error, true);
Chris Wilson3236f572012-08-24 09:35:09 +01001402 if (ret)
1403 return ret;
1404
1405 ret = i915_gem_check_olr(ring, seqno);
1406 if (ret)
1407 return ret;
1408
Daniel Vetterf69061b2012-12-06 09:01:42 +01001409 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilson3236f572012-08-24 09:35:09 +01001410 mutex_unlock(&dev->struct_mutex);
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001411 ret = __i915_wait_seqno(ring, seqno, reset_counter, true, NULL,
1412 file_priv);
Chris Wilson3236f572012-08-24 09:35:09 +01001413 mutex_lock(&dev->struct_mutex);
Chris Wilsond26e3af2013-06-29 22:05:26 +01001414 if (ret)
1415 return ret;
Chris Wilson3236f572012-08-24 09:35:09 +01001416
John Harrison8e6395492014-10-30 18:40:53 +00001417 return i915_gem_object_wait_rendering__tail(obj);
Chris Wilson3236f572012-08-24 09:35:09 +01001418}
1419
Eric Anholt673a3942008-07-30 12:06:12 -07001420/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001421 * Called when user space prepares to use an object with the CPU, either
1422 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -07001423 */
1424int
1425i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001426 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001427{
1428 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001429 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001430 uint32_t read_domains = args->read_domains;
1431 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07001432 int ret;
1433
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001434 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +01001435 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001436 return -EINVAL;
1437
Chris Wilson21d509e2009-06-06 09:46:02 +01001438 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001439 return -EINVAL;
1440
1441 /* Having something in the write domain implies it's in the read
1442 * domain, and only that read domain. Enforce that in the request.
1443 */
1444 if (write_domain != 0 && read_domains != write_domain)
1445 return -EINVAL;
1446
Chris Wilson76c1dec2010-09-25 11:22:51 +01001447 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001448 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001449 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001450
Chris Wilson05394f32010-11-08 19:18:58 +00001451 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001452 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001453 ret = -ENOENT;
1454 goto unlock;
Chris Wilson76c1dec2010-09-25 11:22:51 +01001455 }
Jesse Barnes652c3932009-08-17 13:31:43 -07001456
Chris Wilson3236f572012-08-24 09:35:09 +01001457 /* Try to flush the object off the GPU without holding the lock.
1458 * We will repeat the flush holding the lock in the normal manner
1459 * to catch cases where we are gazumped.
1460 */
Chris Wilson6e4930f2014-02-07 18:37:06 -02001461 ret = i915_gem_object_wait_rendering__nonblocking(obj,
1462 file->driver_priv,
1463 !write_domain);
Chris Wilson3236f572012-08-24 09:35:09 +01001464 if (ret)
1465 goto unref;
1466
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001467 if (read_domains & I915_GEM_DOMAIN_GTT) {
1468 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Eric Anholt02354392008-11-26 13:58:13 -08001469
1470 /* Silently promote "you're not bound, there was nothing to do"
1471 * to success, since the client was just asking us to
1472 * make sure everything was done.
1473 */
1474 if (ret == -EINVAL)
1475 ret = 0;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001476 } else {
Eric Anholte47c68e2008-11-14 13:35:19 -08001477 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001478 }
1479
Chris Wilson3236f572012-08-24 09:35:09 +01001480unref:
Chris Wilson05394f32010-11-08 19:18:58 +00001481 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001482unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001483 mutex_unlock(&dev->struct_mutex);
1484 return ret;
1485}
1486
1487/**
1488 * Called when user space has done writes to this buffer
1489 */
1490int
1491i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001492 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001493{
1494 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001495 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001496 int ret = 0;
1497
Chris Wilson76c1dec2010-09-25 11:22:51 +01001498 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001499 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001500 return ret;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001501
Chris Wilson05394f32010-11-08 19:18:58 +00001502 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001503 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001504 ret = -ENOENT;
1505 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07001506 }
1507
Eric Anholt673a3942008-07-30 12:06:12 -07001508 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilson2c225692013-08-09 12:26:45 +01001509 if (obj->pin_display)
1510 i915_gem_object_flush_cpu_write_domain(obj, true);
Eric Anholte47c68e2008-11-14 13:35:19 -08001511
Chris Wilson05394f32010-11-08 19:18:58 +00001512 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001513unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001514 mutex_unlock(&dev->struct_mutex);
1515 return ret;
1516}
1517
1518/**
1519 * Maps the contents of an object, returning the address it is mapped
1520 * into.
1521 *
1522 * While the mapping holds a reference on the contents of the object, it doesn't
1523 * imply a ref on the object itself.
Daniel Vetter34367382014-10-16 12:28:18 +02001524 *
1525 * IMPORTANT:
1526 *
1527 * DRM driver writers who look a this function as an example for how to do GEM
1528 * mmap support, please don't implement mmap support like here. The modern way
1529 * to implement DRM mmap support is with an mmap offset ioctl (like
1530 * i915_gem_mmap_gtt) and then using the mmap syscall on the DRM fd directly.
1531 * That way debug tooling like valgrind will understand what's going on, hiding
1532 * the mmap call in a driver private ioctl will break that. The i915 driver only
1533 * does cpu mmaps this way because we didn't know better.
Eric Anholt673a3942008-07-30 12:06:12 -07001534 */
1535int
1536i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001537 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001538{
1539 struct drm_i915_gem_mmap *args = data;
1540 struct drm_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001541 unsigned long addr;
1542
Chris Wilson05394f32010-11-08 19:18:58 +00001543 obj = drm_gem_object_lookup(dev, file, args->handle);
Eric Anholt673a3942008-07-30 12:06:12 -07001544 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001545 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001546
Daniel Vetter1286ff72012-05-10 15:25:09 +02001547 /* prime objects have no backing filp to GEM mmap
1548 * pages from.
1549 */
1550 if (!obj->filp) {
1551 drm_gem_object_unreference_unlocked(obj);
1552 return -EINVAL;
1553 }
1554
Linus Torvalds6be5ceb2012-04-20 17:13:58 -07001555 addr = vm_mmap(obj->filp, 0, args->size,
Eric Anholt673a3942008-07-30 12:06:12 -07001556 PROT_READ | PROT_WRITE, MAP_SHARED,
1557 args->offset);
Luca Barbieribc9025b2010-02-09 05:49:12 +00001558 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001559 if (IS_ERR((void *)addr))
1560 return addr;
1561
1562 args->addr_ptr = (uint64_t) addr;
1563
1564 return 0;
1565}
1566
Jesse Barnesde151cf2008-11-12 10:03:55 -08001567/**
1568 * i915_gem_fault - fault a page into the GTT
1569 * vma: VMA in question
1570 * vmf: fault info
1571 *
1572 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1573 * from userspace. The fault handler takes care of binding the object to
1574 * the GTT (if needed), allocating and programming a fence register (again,
1575 * only if needed based on whether the old reg is still valid or the object
1576 * is tiled) and inserting a new PTE into the faulting process.
1577 *
1578 * Note that the faulting process may involve evicting existing objects
1579 * from the GTT and/or fence registers to make room. So performance may
1580 * suffer if the GTT working set is large or there are few fence registers
1581 * left.
1582 */
1583int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1584{
Chris Wilson05394f32010-11-08 19:18:58 +00001585 struct drm_i915_gem_object *obj = to_intel_bo(vma->vm_private_data);
1586 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03001587 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001588 pgoff_t page_offset;
1589 unsigned long pfn;
1590 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001591 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001592
Paulo Zanonif65c9162013-11-27 18:20:34 -02001593 intel_runtime_pm_get(dev_priv);
1594
Jesse Barnesde151cf2008-11-12 10:03:55 -08001595 /* We don't use vmf->pgoff since that has the fake offset */
1596 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1597 PAGE_SHIFT;
1598
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001599 ret = i915_mutex_lock_interruptible(dev);
1600 if (ret)
1601 goto out;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001602
Chris Wilsondb53a302011-02-03 11:57:46 +00001603 trace_i915_gem_object_fault(obj, page_offset, true, write);
1604
Chris Wilson6e4930f2014-02-07 18:37:06 -02001605 /* Try to flush the object off the GPU first without holding the lock.
1606 * Upon reacquiring the lock, we will perform our sanity checks and then
1607 * repeat the flush holding the lock in the normal manner to catch cases
1608 * where we are gazumped.
1609 */
1610 ret = i915_gem_object_wait_rendering__nonblocking(obj, NULL, !write);
1611 if (ret)
1612 goto unlock;
1613
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001614 /* Access to snoopable pages through the GTT is incoherent. */
1615 if (obj->cache_level != I915_CACHE_NONE && !HAS_LLC(dev)) {
Chris Wilsonddeff6e2014-05-28 16:16:41 +01001616 ret = -EFAULT;
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001617 goto unlock;
1618 }
1619
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001620 /* Now bind it into the GTT if needed */
Daniel Vetter1ec9e262014-02-14 14:01:11 +01001621 ret = i915_gem_obj_ggtt_pin(obj, 0, PIN_MAPPABLE);
Chris Wilsond9e86c02010-11-10 16:40:20 +00001622 if (ret)
1623 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001624
Chris Wilsonc9839302012-11-20 10:45:17 +00001625 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1626 if (ret)
1627 goto unpin;
1628
1629 ret = i915_gem_object_get_fence(obj);
1630 if (ret)
1631 goto unpin;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001632
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001633 /* Finally, remap it using the new GTT offset */
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001634 pfn = dev_priv->gtt.mappable_base + i915_gem_obj_ggtt_offset(obj);
1635 pfn >>= PAGE_SHIFT;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001636
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001637 if (!obj->fault_mappable) {
Ville Syrjäläbeff0d02014-06-17 21:03:00 +03001638 unsigned long size = min_t(unsigned long,
1639 vma->vm_end - vma->vm_start,
1640 obj->base.size);
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001641 int i;
1642
Ville Syrjäläbeff0d02014-06-17 21:03:00 +03001643 for (i = 0; i < size >> PAGE_SHIFT; i++) {
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001644 ret = vm_insert_pfn(vma,
1645 (unsigned long)vma->vm_start + i * PAGE_SIZE,
1646 pfn + i);
1647 if (ret)
1648 break;
1649 }
1650
1651 obj->fault_mappable = true;
1652 } else
1653 ret = vm_insert_pfn(vma,
1654 (unsigned long)vmf->virtual_address,
1655 pfn + page_offset);
Chris Wilsonc9839302012-11-20 10:45:17 +00001656unpin:
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08001657 i915_gem_object_ggtt_unpin(obj);
Chris Wilsonc7150892009-09-23 00:43:56 +01001658unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001659 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001660out:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001661 switch (ret) {
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001662 case -EIO:
Daniel Vetter2232f032014-09-04 09:36:18 +02001663 /*
1664 * We eat errors when the gpu is terminally wedged to avoid
1665 * userspace unduly crashing (gl has no provisions for mmaps to
1666 * fail). But any other -EIO isn't ours (e.g. swap in failure)
1667 * and so needs to be reported.
1668 */
1669 if (!i915_terminally_wedged(&dev_priv->gpu_error)) {
Paulo Zanonif65c9162013-11-27 18:20:34 -02001670 ret = VM_FAULT_SIGBUS;
1671 break;
1672 }
Chris Wilson045e7692010-11-07 09:18:22 +00001673 case -EAGAIN:
Daniel Vetter571c6082013-09-12 17:57:28 +02001674 /*
1675 * EAGAIN means the gpu is hung and we'll wait for the error
1676 * handler to reset everything when re-faulting in
1677 * i915_mutex_lock_interruptible.
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001678 */
Chris Wilsonc7150892009-09-23 00:43:56 +01001679 case 0:
1680 case -ERESTARTSYS:
Chris Wilsonbed636a2011-02-11 20:31:19 +00001681 case -EINTR:
Dmitry Rogozhkine79e0fe2012-10-03 17:15:26 +03001682 case -EBUSY:
1683 /*
1684 * EBUSY is ok: this just means that another thread
1685 * already did the job.
1686 */
Paulo Zanonif65c9162013-11-27 18:20:34 -02001687 ret = VM_FAULT_NOPAGE;
1688 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001689 case -ENOMEM:
Paulo Zanonif65c9162013-11-27 18:20:34 -02001690 ret = VM_FAULT_OOM;
1691 break;
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001692 case -ENOSPC:
Chris Wilson45d67812014-01-31 11:34:57 +00001693 case -EFAULT:
Paulo Zanonif65c9162013-11-27 18:20:34 -02001694 ret = VM_FAULT_SIGBUS;
1695 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001696 default:
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001697 WARN_ONCE(ret, "unhandled error in i915_gem_fault: %i\n", ret);
Paulo Zanonif65c9162013-11-27 18:20:34 -02001698 ret = VM_FAULT_SIGBUS;
1699 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001700 }
Paulo Zanonif65c9162013-11-27 18:20:34 -02001701
1702 intel_runtime_pm_put(dev_priv);
1703 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001704}
1705
1706/**
Chris Wilson901782b2009-07-10 08:18:50 +01001707 * i915_gem_release_mmap - remove physical page mappings
1708 * @obj: obj in question
1709 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001710 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001711 * relinquish ownership of the pages back to the system.
1712 *
1713 * It is vital that we remove the page mapping if we have mapped a tiled
1714 * object through the GTT and then lose the fence register due to
1715 * resource pressure. Similarly if the object has been moved out of the
1716 * aperture, than pages mapped into userspace must be revoked. Removing the
1717 * mapping will then trigger a page fault on the next user access, allowing
1718 * fixup by i915_gem_fault().
1719 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001720void
Chris Wilson05394f32010-11-08 19:18:58 +00001721i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01001722{
Chris Wilson6299f992010-11-24 12:23:44 +00001723 if (!obj->fault_mappable)
1724 return;
Chris Wilson901782b2009-07-10 08:18:50 +01001725
David Herrmann6796cb12014-01-03 14:24:19 +01001726 drm_vma_node_unmap(&obj->base.vma_node,
1727 obj->base.dev->anon_inode->i_mapping);
Chris Wilson6299f992010-11-24 12:23:44 +00001728 obj->fault_mappable = false;
Chris Wilson901782b2009-07-10 08:18:50 +01001729}
1730
Chris Wilsoneedd10f2014-06-16 08:57:44 +01001731void
1732i915_gem_release_all_mmaps(struct drm_i915_private *dev_priv)
1733{
1734 struct drm_i915_gem_object *obj;
1735
1736 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list)
1737 i915_gem_release_mmap(obj);
1738}
1739
Imre Deak0fa87792013-01-07 21:47:35 +02001740uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001741i915_gem_get_gtt_size(struct drm_device *dev, uint32_t size, int tiling_mode)
Chris Wilson92b88ae2010-11-09 11:47:32 +00001742{
Chris Wilsone28f8712011-07-18 13:11:49 -07001743 uint32_t gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001744
1745 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001746 tiling_mode == I915_TILING_NONE)
1747 return size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001748
1749 /* Previous chips need a power-of-two fence region when tiling */
1750 if (INTEL_INFO(dev)->gen == 3)
Chris Wilsone28f8712011-07-18 13:11:49 -07001751 gtt_size = 1024*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001752 else
Chris Wilsone28f8712011-07-18 13:11:49 -07001753 gtt_size = 512*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001754
Chris Wilsone28f8712011-07-18 13:11:49 -07001755 while (gtt_size < size)
1756 gtt_size <<= 1;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001757
Chris Wilsone28f8712011-07-18 13:11:49 -07001758 return gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001759}
1760
Jesse Barnesde151cf2008-11-12 10:03:55 -08001761/**
1762 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1763 * @obj: object to check
1764 *
1765 * Return the required GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01001766 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08001767 */
Imre Deakd8651102013-01-07 21:47:33 +02001768uint32_t
1769i915_gem_get_gtt_alignment(struct drm_device *dev, uint32_t size,
1770 int tiling_mode, bool fenced)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001771{
Jesse Barnesde151cf2008-11-12 10:03:55 -08001772 /*
1773 * Minimum alignment is 4k (GTT page size), but might be greater
1774 * if a fence register is needed for the object.
1775 */
Imre Deakd8651102013-01-07 21:47:33 +02001776 if (INTEL_INFO(dev)->gen >= 4 || (!fenced && IS_G33(dev)) ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001777 tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001778 return 4096;
1779
1780 /*
1781 * Previous chips need to be aligned to the size of the smallest
1782 * fence register that can contain the object.
1783 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001784 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01001785}
1786
Chris Wilsond8cb5082012-08-11 15:41:03 +01001787static int i915_gem_object_create_mmap_offset(struct drm_i915_gem_object *obj)
1788{
1789 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
1790 int ret;
1791
David Herrmann0de23972013-07-24 21:07:52 +02001792 if (drm_vma_node_has_offset(&obj->base.vma_node))
Chris Wilsond8cb5082012-08-11 15:41:03 +01001793 return 0;
1794
Daniel Vetterda494d72012-12-20 15:11:16 +01001795 dev_priv->mm.shrinker_no_lock_stealing = true;
1796
Chris Wilsond8cb5082012-08-11 15:41:03 +01001797 ret = drm_gem_create_mmap_offset(&obj->base);
1798 if (ret != -ENOSPC)
Daniel Vetterda494d72012-12-20 15:11:16 +01001799 goto out;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001800
1801 /* Badly fragmented mmap space? The only way we can recover
1802 * space is by destroying unwanted objects. We can't randomly release
1803 * mmap_offsets as userspace expects them to be persistent for the
1804 * lifetime of the objects. The closest we can is to release the
1805 * offsets on purgeable objects by truncating it and marking it purged,
1806 * which prevents userspace from ever using that object again.
1807 */
Chris Wilson21ab4e72014-09-09 11:16:08 +01001808 i915_gem_shrink(dev_priv,
1809 obj->base.size >> PAGE_SHIFT,
1810 I915_SHRINK_BOUND |
1811 I915_SHRINK_UNBOUND |
1812 I915_SHRINK_PURGEABLE);
Chris Wilsond8cb5082012-08-11 15:41:03 +01001813 ret = drm_gem_create_mmap_offset(&obj->base);
1814 if (ret != -ENOSPC)
Daniel Vetterda494d72012-12-20 15:11:16 +01001815 goto out;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001816
1817 i915_gem_shrink_all(dev_priv);
Daniel Vetterda494d72012-12-20 15:11:16 +01001818 ret = drm_gem_create_mmap_offset(&obj->base);
1819out:
1820 dev_priv->mm.shrinker_no_lock_stealing = false;
1821
1822 return ret;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001823}
1824
1825static void i915_gem_object_free_mmap_offset(struct drm_i915_gem_object *obj)
1826{
Chris Wilsond8cb5082012-08-11 15:41:03 +01001827 drm_gem_free_mmap_offset(&obj->base);
1828}
1829
Jesse Barnesde151cf2008-11-12 10:03:55 -08001830int
Dave Airlieff72145b2011-02-07 12:16:14 +10001831i915_gem_mmap_gtt(struct drm_file *file,
1832 struct drm_device *dev,
1833 uint32_t handle,
1834 uint64_t *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001835{
Chris Wilsonda761a62010-10-27 17:37:08 +01001836 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001837 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001838 int ret;
1839
Chris Wilson76c1dec2010-09-25 11:22:51 +01001840 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001841 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001842 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001843
Dave Airlieff72145b2011-02-07 12:16:14 +10001844 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001845 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001846 ret = -ENOENT;
1847 goto unlock;
1848 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001849
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001850 if (obj->base.size > dev_priv->gtt.mappable_end) {
Chris Wilsonda761a62010-10-27 17:37:08 +01001851 ret = -E2BIG;
Eric Anholtff56b0b2011-10-31 23:16:21 -07001852 goto out;
Chris Wilsonda761a62010-10-27 17:37:08 +01001853 }
1854
Chris Wilson05394f32010-11-08 19:18:58 +00001855 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00001856 DRM_DEBUG("Attempting to mmap a purgeable buffer\n");
Chris Wilson8c99e572014-01-31 11:34:58 +00001857 ret = -EFAULT;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001858 goto out;
Chris Wilsonab182822009-09-22 18:46:17 +01001859 }
1860
Chris Wilsond8cb5082012-08-11 15:41:03 +01001861 ret = i915_gem_object_create_mmap_offset(obj);
1862 if (ret)
1863 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001864
David Herrmann0de23972013-07-24 21:07:52 +02001865 *offset = drm_vma_node_offset_addr(&obj->base.vma_node);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001866
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001867out:
Chris Wilson05394f32010-11-08 19:18:58 +00001868 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001869unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001870 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001871 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001872}
1873
Dave Airlieff72145b2011-02-07 12:16:14 +10001874/**
1875 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1876 * @dev: DRM device
1877 * @data: GTT mapping ioctl data
1878 * @file: GEM object info
1879 *
1880 * Simply returns the fake offset to userspace so it can mmap it.
1881 * The mmap call will end up in drm_gem_mmap(), which will set things
1882 * up so we can get faults in the handler above.
1883 *
1884 * The fault handler will take care of binding the object into the GTT
1885 * (since it may have been evicted to make room for something), allocating
1886 * a fence register, and mapping the appropriate aperture address into
1887 * userspace.
1888 */
1889int
1890i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
1891 struct drm_file *file)
1892{
1893 struct drm_i915_gem_mmap_gtt *args = data;
1894
Dave Airlieff72145b2011-02-07 12:16:14 +10001895 return i915_gem_mmap_gtt(file, dev, args->handle, &args->offset);
1896}
1897
Chris Wilson55372522014-03-25 13:23:06 +00001898static inline int
1899i915_gem_object_is_purgeable(struct drm_i915_gem_object *obj)
1900{
1901 return obj->madv == I915_MADV_DONTNEED;
1902}
1903
Daniel Vetter225067e2012-08-20 10:23:20 +02001904/* Immediately discard the backing storage */
1905static void
1906i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001907{
Chris Wilson4d6294bf2012-08-11 15:41:05 +01001908 i915_gem_object_free_mmap_offset(obj);
Daniel Vetter1286ff72012-05-10 15:25:09 +02001909
Chris Wilson4d6294bf2012-08-11 15:41:05 +01001910 if (obj->base.filp == NULL)
1911 return;
1912
Daniel Vetter225067e2012-08-20 10:23:20 +02001913 /* Our goal here is to return as much of the memory as
1914 * is possible back to the system as we are called from OOM.
1915 * To do this we must instruct the shmfs to drop all of its
1916 * backing pages, *now*.
Chris Wilsone5281cc2010-10-28 13:45:36 +01001917 */
Chris Wilson55372522014-03-25 13:23:06 +00001918 shmem_truncate_range(file_inode(obj->base.filp), 0, (loff_t)-1);
Daniel Vetter225067e2012-08-20 10:23:20 +02001919 obj->madv = __I915_MADV_PURGED;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001920}
Chris Wilsone5281cc2010-10-28 13:45:36 +01001921
Chris Wilson55372522014-03-25 13:23:06 +00001922/* Try to discard unwanted pages */
1923static void
1924i915_gem_object_invalidate(struct drm_i915_gem_object *obj)
Daniel Vetter225067e2012-08-20 10:23:20 +02001925{
Chris Wilson55372522014-03-25 13:23:06 +00001926 struct address_space *mapping;
1927
1928 switch (obj->madv) {
1929 case I915_MADV_DONTNEED:
1930 i915_gem_object_truncate(obj);
1931 case __I915_MADV_PURGED:
1932 return;
1933 }
1934
1935 if (obj->base.filp == NULL)
1936 return;
1937
1938 mapping = file_inode(obj->base.filp)->i_mapping,
1939 invalidate_mapping_pages(mapping, 0, (loff_t)-1);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001940}
1941
Chris Wilson5cdf5882010-09-27 15:51:07 +01001942static void
Chris Wilson05394f32010-11-08 19:18:58 +00001943i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001944{
Imre Deak90797e62013-02-18 19:28:03 +02001945 struct sg_page_iter sg_iter;
1946 int ret;
Daniel Vetter1286ff72012-05-10 15:25:09 +02001947
Chris Wilson05394f32010-11-08 19:18:58 +00001948 BUG_ON(obj->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07001949
Chris Wilson6c085a72012-08-20 11:40:46 +02001950 ret = i915_gem_object_set_to_cpu_domain(obj, true);
1951 if (ret) {
1952 /* In the event of a disaster, abandon all caches and
1953 * hope for the best.
1954 */
1955 WARN_ON(ret != -EIO);
Chris Wilson2c225692013-08-09 12:26:45 +01001956 i915_gem_clflush_object(obj, true);
Chris Wilson6c085a72012-08-20 11:40:46 +02001957 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
1958 }
1959
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001960 if (i915_gem_object_needs_bit17_swizzle(obj))
Eric Anholt280b7132009-03-12 16:56:27 -07001961 i915_gem_object_save_bit_17_swizzle(obj);
1962
Chris Wilson05394f32010-11-08 19:18:58 +00001963 if (obj->madv == I915_MADV_DONTNEED)
1964 obj->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01001965
Imre Deak90797e62013-02-18 19:28:03 +02001966 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents, 0) {
Imre Deak2db76d72013-03-26 15:14:18 +02001967 struct page *page = sg_page_iter_page(&sg_iter);
Chris Wilson9da3da62012-06-01 15:20:22 +01001968
Chris Wilson05394f32010-11-08 19:18:58 +00001969 if (obj->dirty)
Chris Wilson9da3da62012-06-01 15:20:22 +01001970 set_page_dirty(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001971
Chris Wilson05394f32010-11-08 19:18:58 +00001972 if (obj->madv == I915_MADV_WILLNEED)
Chris Wilson9da3da62012-06-01 15:20:22 +01001973 mark_page_accessed(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001974
Chris Wilson9da3da62012-06-01 15:20:22 +01001975 page_cache_release(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001976 }
Chris Wilson05394f32010-11-08 19:18:58 +00001977 obj->dirty = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001978
Chris Wilson9da3da62012-06-01 15:20:22 +01001979 sg_free_table(obj->pages);
1980 kfree(obj->pages);
Chris Wilson37e680a2012-06-07 15:38:42 +01001981}
1982
Chris Wilsondd624af2013-01-15 12:39:35 +00001983int
Chris Wilson37e680a2012-06-07 15:38:42 +01001984i915_gem_object_put_pages(struct drm_i915_gem_object *obj)
1985{
1986 const struct drm_i915_gem_object_ops *ops = obj->ops;
1987
Chris Wilson2f745ad2012-09-04 21:02:58 +01001988 if (obj->pages == NULL)
Chris Wilson37e680a2012-06-07 15:38:42 +01001989 return 0;
1990
Chris Wilsona5570172012-09-04 21:02:54 +01001991 if (obj->pages_pin_count)
1992 return -EBUSY;
1993
Ben Widawsky98438772013-07-31 17:00:12 -07001994 BUG_ON(i915_gem_obj_bound_any(obj));
Ben Widawsky3e123022013-07-31 17:00:04 -07001995
Chris Wilsona2165e32012-12-03 11:49:00 +00001996 /* ->put_pages might need to allocate memory for the bit17 swizzle
1997 * array, hence protect them from being reaped by removing them from gtt
1998 * lists early. */
Ben Widawsky35c20a62013-05-31 11:28:48 -07001999 list_del(&obj->global_list);
Chris Wilsona2165e32012-12-03 11:49:00 +00002000
Chris Wilson37e680a2012-06-07 15:38:42 +01002001 ops->put_pages(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002002 obj->pages = NULL;
Chris Wilson6c085a72012-08-20 11:40:46 +02002003
Chris Wilson55372522014-03-25 13:23:06 +00002004 i915_gem_object_invalidate(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02002005
2006 return 0;
2007}
2008
Chris Wilson21ab4e72014-09-09 11:16:08 +01002009unsigned long
2010i915_gem_shrink(struct drm_i915_private *dev_priv,
2011 long target, unsigned flags)
Chris Wilson6c085a72012-08-20 11:40:46 +02002012{
Chris Wilson60a53722014-10-03 10:29:51 +01002013 const struct {
2014 struct list_head *list;
2015 unsigned int bit;
2016 } phases[] = {
2017 { &dev_priv->mm.unbound_list, I915_SHRINK_UNBOUND },
2018 { &dev_priv->mm.bound_list, I915_SHRINK_BOUND },
2019 { NULL, 0 },
2020 }, *phase;
Chris Wilsond9973b42013-10-04 10:33:00 +01002021 unsigned long count = 0;
Chris Wilson6c085a72012-08-20 11:40:46 +02002022
Chris Wilson57094f82013-09-04 10:45:50 +01002023 /*
Chris Wilsonc8725f32014-03-17 12:21:55 +00002024 * As we may completely rewrite the (un)bound list whilst unbinding
Chris Wilson57094f82013-09-04 10:45:50 +01002025 * (due to retiring requests) we have to strictly process only
2026 * one element of the list at the time, and recheck the list
2027 * on every iteration.
Chris Wilsonc8725f32014-03-17 12:21:55 +00002028 *
2029 * In particular, we must hold a reference whilst removing the
2030 * object as we may end up waiting for and/or retiring the objects.
2031 * This might release the final reference (held by the active list)
2032 * and result in the object being freed from under us. This is
2033 * similar to the precautions the eviction code must take whilst
2034 * removing objects.
2035 *
2036 * Also note that although these lists do not hold a reference to
2037 * the object we can safely grab one here: The final object
2038 * unreferencing and the bound_list are both protected by the
2039 * dev->struct_mutex and so we won't ever be able to observe an
2040 * object on the bound_list with a reference count equals 0.
Chris Wilson57094f82013-09-04 10:45:50 +01002041 */
Chris Wilson60a53722014-10-03 10:29:51 +01002042 for (phase = phases; phase->list; phase++) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002043 struct list_head still_in_list;
Chris Wilsonc8725f32014-03-17 12:21:55 +00002044
Chris Wilson60a53722014-10-03 10:29:51 +01002045 if ((flags & phase->bit) == 0)
2046 continue;
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07002047
Chris Wilson21ab4e72014-09-09 11:16:08 +01002048 INIT_LIST_HEAD(&still_in_list);
Chris Wilson60a53722014-10-03 10:29:51 +01002049 while (count < target && !list_empty(phase->list)) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002050 struct drm_i915_gem_object *obj;
2051 struct i915_vma *vma, *v;
Chris Wilson57094f82013-09-04 10:45:50 +01002052
Chris Wilson60a53722014-10-03 10:29:51 +01002053 obj = list_first_entry(phase->list,
Chris Wilson21ab4e72014-09-09 11:16:08 +01002054 typeof(*obj), global_list);
2055 list_move_tail(&obj->global_list, &still_in_list);
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07002056
Chris Wilson60a53722014-10-03 10:29:51 +01002057 if (flags & I915_SHRINK_PURGEABLE &&
2058 !i915_gem_object_is_purgeable(obj))
Chris Wilson21ab4e72014-09-09 11:16:08 +01002059 continue;
Chris Wilson57094f82013-09-04 10:45:50 +01002060
Chris Wilson21ab4e72014-09-09 11:16:08 +01002061 drm_gem_object_reference(&obj->base);
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07002062
Chris Wilson60a53722014-10-03 10:29:51 +01002063 /* For the unbound phase, this should be a no-op! */
2064 list_for_each_entry_safe(vma, v,
2065 &obj->vma_list, vma_link)
Chris Wilson21ab4e72014-09-09 11:16:08 +01002066 if (i915_vma_unbind(vma))
2067 break;
Chris Wilson57094f82013-09-04 10:45:50 +01002068
Chris Wilson21ab4e72014-09-09 11:16:08 +01002069 if (i915_gem_object_put_pages(obj) == 0)
2070 count += obj->base.size >> PAGE_SHIFT;
2071
2072 drm_gem_object_unreference(&obj->base);
2073 }
Chris Wilson60a53722014-10-03 10:29:51 +01002074 list_splice(&still_in_list, phase->list);
Chris Wilson6c085a72012-08-20 11:40:46 +02002075 }
2076
2077 return count;
2078}
2079
Chris Wilsond9973b42013-10-04 10:33:00 +01002080static unsigned long
Chris Wilson6c085a72012-08-20 11:40:46 +02002081i915_gem_shrink_all(struct drm_i915_private *dev_priv)
2082{
Chris Wilson6c085a72012-08-20 11:40:46 +02002083 i915_gem_evict_everything(dev_priv->dev);
Chris Wilson21ab4e72014-09-09 11:16:08 +01002084 return i915_gem_shrink(dev_priv, LONG_MAX,
2085 I915_SHRINK_BOUND | I915_SHRINK_UNBOUND);
Daniel Vetter225067e2012-08-20 10:23:20 +02002086}
2087
Chris Wilson37e680a2012-06-07 15:38:42 +01002088static int
Chris Wilson6c085a72012-08-20 11:40:46 +02002089i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002090{
Chris Wilson6c085a72012-08-20 11:40:46 +02002091 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002092 int page_count, i;
2093 struct address_space *mapping;
Chris Wilson9da3da62012-06-01 15:20:22 +01002094 struct sg_table *st;
2095 struct scatterlist *sg;
Imre Deak90797e62013-02-18 19:28:03 +02002096 struct sg_page_iter sg_iter;
Eric Anholt673a3942008-07-30 12:06:12 -07002097 struct page *page;
Imre Deak90797e62013-02-18 19:28:03 +02002098 unsigned long last_pfn = 0; /* suppress gcc warning */
Chris Wilson6c085a72012-08-20 11:40:46 +02002099 gfp_t gfp;
Eric Anholt673a3942008-07-30 12:06:12 -07002100
Chris Wilson6c085a72012-08-20 11:40:46 +02002101 /* Assert that the object is not currently in any GPU domain. As it
2102 * wasn't in the GTT, there shouldn't be any way it could have been in
2103 * a GPU cache
2104 */
2105 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
2106 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
2107
Chris Wilson9da3da62012-06-01 15:20:22 +01002108 st = kmalloc(sizeof(*st), GFP_KERNEL);
2109 if (st == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002110 return -ENOMEM;
2111
Chris Wilson9da3da62012-06-01 15:20:22 +01002112 page_count = obj->base.size / PAGE_SIZE;
2113 if (sg_alloc_table(st, page_count, GFP_KERNEL)) {
Chris Wilson9da3da62012-06-01 15:20:22 +01002114 kfree(st);
2115 return -ENOMEM;
2116 }
2117
2118 /* Get the list of pages out of our struct file. They'll be pinned
2119 * at this point until we release them.
2120 *
2121 * Fail silently without starting the shrinker
2122 */
Al Viro496ad9a2013-01-23 17:07:38 -05002123 mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilson6c085a72012-08-20 11:40:46 +02002124 gfp = mapping_gfp_mask(mapping);
Linus Torvaldscaf49192012-12-10 10:51:16 -08002125 gfp |= __GFP_NORETRY | __GFP_NOWARN | __GFP_NO_KSWAPD;
Chris Wilson6c085a72012-08-20 11:40:46 +02002126 gfp &= ~(__GFP_IO | __GFP_WAIT);
Imre Deak90797e62013-02-18 19:28:03 +02002127 sg = st->sgl;
2128 st->nents = 0;
2129 for (i = 0; i < page_count; i++) {
Chris Wilson6c085a72012-08-20 11:40:46 +02002130 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
2131 if (IS_ERR(page)) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002132 i915_gem_shrink(dev_priv,
2133 page_count,
2134 I915_SHRINK_BOUND |
2135 I915_SHRINK_UNBOUND |
2136 I915_SHRINK_PURGEABLE);
Chris Wilson6c085a72012-08-20 11:40:46 +02002137 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
2138 }
2139 if (IS_ERR(page)) {
2140 /* We've tried hard to allocate the memory by reaping
2141 * our own buffer, now let the real VM do its job and
2142 * go down in flames if truly OOM.
2143 */
Chris Wilson6c085a72012-08-20 11:40:46 +02002144 i915_gem_shrink_all(dev_priv);
David Herrmannf461d1b2014-05-25 14:34:10 +02002145 page = shmem_read_mapping_page(mapping, i);
Chris Wilson6c085a72012-08-20 11:40:46 +02002146 if (IS_ERR(page))
2147 goto err_pages;
Chris Wilson6c085a72012-08-20 11:40:46 +02002148 }
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04002149#ifdef CONFIG_SWIOTLB
2150 if (swiotlb_nr_tbl()) {
2151 st->nents++;
2152 sg_set_page(sg, page, PAGE_SIZE, 0);
2153 sg = sg_next(sg);
2154 continue;
2155 }
2156#endif
Imre Deak90797e62013-02-18 19:28:03 +02002157 if (!i || page_to_pfn(page) != last_pfn + 1) {
2158 if (i)
2159 sg = sg_next(sg);
2160 st->nents++;
2161 sg_set_page(sg, page, PAGE_SIZE, 0);
2162 } else {
2163 sg->length += PAGE_SIZE;
2164 }
2165 last_pfn = page_to_pfn(page);
Daniel Vetter3bbbe702013-10-07 17:15:45 -03002166
2167 /* Check that the i965g/gm workaround works. */
2168 WARN_ON((gfp & __GFP_DMA32) && (last_pfn >= 0x00100000UL));
Eric Anholt673a3942008-07-30 12:06:12 -07002169 }
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04002170#ifdef CONFIG_SWIOTLB
2171 if (!swiotlb_nr_tbl())
2172#endif
2173 sg_mark_end(sg);
Chris Wilson74ce6b62012-10-19 15:51:06 +01002174 obj->pages = st;
2175
Eric Anholt673a3942008-07-30 12:06:12 -07002176 if (i915_gem_object_needs_bit17_swizzle(obj))
2177 i915_gem_object_do_bit_17_swizzle(obj);
2178
Daniel Vetter656bfa32014-11-20 09:26:30 +01002179 if (obj->tiling_mode != I915_TILING_NONE &&
2180 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES)
2181 i915_gem_object_pin_pages(obj);
2182
Eric Anholt673a3942008-07-30 12:06:12 -07002183 return 0;
2184
2185err_pages:
Imre Deak90797e62013-02-18 19:28:03 +02002186 sg_mark_end(sg);
2187 for_each_sg_page(st->sgl, &sg_iter, st->nents, 0)
Imre Deak2db76d72013-03-26 15:14:18 +02002188 page_cache_release(sg_page_iter_page(&sg_iter));
Chris Wilson9da3da62012-06-01 15:20:22 +01002189 sg_free_table(st);
2190 kfree(st);
Chris Wilson0820baf2014-03-25 13:23:03 +00002191
2192 /* shmemfs first checks if there is enough memory to allocate the page
2193 * and reports ENOSPC should there be insufficient, along with the usual
2194 * ENOMEM for a genuine allocation failure.
2195 *
2196 * We use ENOSPC in our driver to mean that we have run out of aperture
2197 * space and so want to translate the error from shmemfs back to our
2198 * usual understanding of ENOMEM.
2199 */
2200 if (PTR_ERR(page) == -ENOSPC)
2201 return -ENOMEM;
2202 else
2203 return PTR_ERR(page);
Eric Anholt673a3942008-07-30 12:06:12 -07002204}
2205
Chris Wilson37e680a2012-06-07 15:38:42 +01002206/* Ensure that the associated pages are gathered from the backing storage
2207 * and pinned into our object. i915_gem_object_get_pages() may be called
2208 * multiple times before they are released by a single call to
2209 * i915_gem_object_put_pages() - once the pages are no longer referenced
2210 * either as a result of memory pressure (reaping pages under the shrinker)
2211 * or as the object is itself released.
2212 */
2213int
2214i915_gem_object_get_pages(struct drm_i915_gem_object *obj)
2215{
2216 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2217 const struct drm_i915_gem_object_ops *ops = obj->ops;
2218 int ret;
2219
Chris Wilson2f745ad2012-09-04 21:02:58 +01002220 if (obj->pages)
Chris Wilson37e680a2012-06-07 15:38:42 +01002221 return 0;
2222
Chris Wilson43e28f02013-01-08 10:53:09 +00002223 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00002224 DRM_DEBUG("Attempting to obtain a purgeable object\n");
Chris Wilson8c99e572014-01-31 11:34:58 +00002225 return -EFAULT;
Chris Wilson43e28f02013-01-08 10:53:09 +00002226 }
2227
Chris Wilsona5570172012-09-04 21:02:54 +01002228 BUG_ON(obj->pages_pin_count);
2229
Chris Wilson37e680a2012-06-07 15:38:42 +01002230 ret = ops->get_pages(obj);
2231 if (ret)
2232 return ret;
2233
Ben Widawsky35c20a62013-05-31 11:28:48 -07002234 list_add_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Chris Wilson37e680a2012-06-07 15:38:42 +01002235 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002236}
2237
Ben Widawskye2d05a82013-09-24 09:57:58 -07002238static void
Chris Wilson05394f32010-11-08 19:18:58 +00002239i915_gem_object_move_to_active(struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002240 struct intel_engine_cs *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07002241{
Chris Wilson9d7730912012-11-27 16:22:52 +00002242 u32 seqno = intel_ring_get_seqno(ring);
Daniel Vetter617dbe22010-02-11 22:16:02 +01002243
Zou Nan hai852835f2010-05-21 09:08:56 +08002244 BUG_ON(ring == NULL);
Chris Wilson02978ff2013-07-09 09:22:39 +01002245 if (obj->ring != ring && obj->last_write_seqno) {
2246 /* Keep the seqno relative to the current ring */
2247 obj->last_write_seqno = seqno;
2248 }
Chris Wilson05394f32010-11-08 19:18:58 +00002249 obj->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07002250
2251 /* Add a reference if we're newly entering the active list. */
Chris Wilson05394f32010-11-08 19:18:58 +00002252 if (!obj->active) {
2253 drm_gem_object_reference(&obj->base);
2254 obj->active = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07002255 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01002256
Chris Wilson05394f32010-11-08 19:18:58 +00002257 list_move_tail(&obj->ring_list, &ring->active_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002258
Chris Wilson0201f1e2012-07-20 12:41:01 +01002259 obj->last_read_seqno = seqno;
Chris Wilsoncaea7472010-11-12 13:53:37 +00002260}
2261
Ben Widawskye2d05a82013-09-24 09:57:58 -07002262void i915_vma_move_to_active(struct i915_vma *vma,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002263 struct intel_engine_cs *ring)
Ben Widawskye2d05a82013-09-24 09:57:58 -07002264{
2265 list_move_tail(&vma->mm_list, &vma->vm->active_list);
2266 return i915_gem_object_move_to_active(vma->obj, ring);
2267}
2268
Chris Wilsoncaea7472010-11-12 13:53:37 +00002269static void
Chris Wilsoncaea7472010-11-12 13:53:37 +00002270i915_gem_object_move_to_inactive(struct drm_i915_gem_object *obj)
2271{
Ben Widawskyca191b12013-07-31 17:00:14 -07002272 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Ben Widawskyfeb822c2013-12-06 14:10:51 -08002273 struct i915_address_space *vm;
2274 struct i915_vma *vma;
Chris Wilsoncaea7472010-11-12 13:53:37 +00002275
Chris Wilson65ce3022012-07-20 12:41:02 +01002276 BUG_ON(obj->base.write_domain & ~I915_GEM_GPU_DOMAINS);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002277 BUG_ON(!obj->active);
Chris Wilson65ce3022012-07-20 12:41:02 +01002278
Ben Widawskyfeb822c2013-12-06 14:10:51 -08002279 list_for_each_entry(vm, &dev_priv->vm_list, global_link) {
2280 vma = i915_gem_obj_to_vma(obj, vm);
2281 if (vma && !list_empty(&vma->mm_list))
2282 list_move_tail(&vma->mm_list, &vm->inactive_list);
2283 }
Chris Wilsoncaea7472010-11-12 13:53:37 +00002284
Daniel Vetterf99d7062014-06-19 16:01:59 +02002285 intel_fb_obj_flush(obj, true);
2286
Chris Wilson65ce3022012-07-20 12:41:02 +01002287 list_del_init(&obj->ring_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002288 obj->ring = NULL;
2289
Chris Wilson65ce3022012-07-20 12:41:02 +01002290 obj->last_read_seqno = 0;
2291 obj->last_write_seqno = 0;
2292 obj->base.write_domain = 0;
2293
2294 obj->last_fenced_seqno = 0;
Chris Wilsoncaea7472010-11-12 13:53:37 +00002295
2296 obj->active = 0;
2297 drm_gem_object_unreference(&obj->base);
2298
2299 WARN_ON(i915_verify_lists(dev));
Eric Anholtce44b0e2008-11-06 16:00:31 -08002300}
Eric Anholt673a3942008-07-30 12:06:12 -07002301
Chris Wilsonc8725f32014-03-17 12:21:55 +00002302static void
2303i915_gem_object_retire(struct drm_i915_gem_object *obj)
2304{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002305 struct intel_engine_cs *ring = obj->ring;
Chris Wilsonc8725f32014-03-17 12:21:55 +00002306
2307 if (ring == NULL)
2308 return;
2309
2310 if (i915_seqno_passed(ring->get_seqno(ring, true),
2311 obj->last_read_seqno))
2312 i915_gem_object_move_to_inactive(obj);
2313}
2314
Chris Wilson9d7730912012-11-27 16:22:52 +00002315static int
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002316i915_gem_init_seqno(struct drm_device *dev, u32 seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01002317{
Chris Wilson9d7730912012-11-27 16:22:52 +00002318 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002319 struct intel_engine_cs *ring;
Chris Wilson9d7730912012-11-27 16:22:52 +00002320 int ret, i, j;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002321
Chris Wilson107f27a52012-12-10 13:56:17 +02002322 /* Carefully retire all requests without writing to the rings */
Chris Wilson9d7730912012-11-27 16:22:52 +00002323 for_each_ring(ring, dev_priv, i) {
Chris Wilson107f27a52012-12-10 13:56:17 +02002324 ret = intel_ring_idle(ring);
2325 if (ret)
2326 return ret;
Chris Wilson9d7730912012-11-27 16:22:52 +00002327 }
Chris Wilson9d7730912012-11-27 16:22:52 +00002328 i915_gem_retire_requests(dev);
Chris Wilson107f27a52012-12-10 13:56:17 +02002329
2330 /* Finally reset hw state */
Chris Wilson9d7730912012-11-27 16:22:52 +00002331 for_each_ring(ring, dev_priv, i) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002332 intel_ring_init_seqno(ring, seqno);
Mika Kuoppala498d2ac2012-12-04 15:12:04 +02002333
Ben Widawskyebc348b2014-04-29 14:52:28 -07002334 for (j = 0; j < ARRAY_SIZE(ring->semaphore.sync_seqno); j++)
2335 ring->semaphore.sync_seqno[j] = 0;
Chris Wilson9d7730912012-11-27 16:22:52 +00002336 }
2337
2338 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002339}
2340
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002341int i915_gem_set_seqno(struct drm_device *dev, u32 seqno)
2342{
2343 struct drm_i915_private *dev_priv = dev->dev_private;
2344 int ret;
2345
2346 if (seqno == 0)
2347 return -EINVAL;
2348
2349 /* HWS page needs to be set less than what we
2350 * will inject to ring
2351 */
2352 ret = i915_gem_init_seqno(dev, seqno - 1);
2353 if (ret)
2354 return ret;
2355
2356 /* Carefully set the last_seqno value so that wrap
2357 * detection still works
2358 */
2359 dev_priv->next_seqno = seqno;
2360 dev_priv->last_seqno = seqno - 1;
2361 if (dev_priv->last_seqno == 0)
2362 dev_priv->last_seqno--;
2363
2364 return 0;
2365}
2366
Chris Wilson9d7730912012-11-27 16:22:52 +00002367int
2368i915_gem_get_seqno(struct drm_device *dev, u32 *seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01002369{
Chris Wilson9d7730912012-11-27 16:22:52 +00002370 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002371
Chris Wilson9d7730912012-11-27 16:22:52 +00002372 /* reserve 0 for non-seqno */
2373 if (dev_priv->next_seqno == 0) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002374 int ret = i915_gem_init_seqno(dev, 0);
Chris Wilson9d7730912012-11-27 16:22:52 +00002375 if (ret)
2376 return ret;
2377
2378 dev_priv->next_seqno = 1;
2379 }
2380
Mika Kuoppalaf72b3432012-12-10 15:41:48 +02002381 *seqno = dev_priv->last_seqno = dev_priv->next_seqno++;
Chris Wilson9d7730912012-11-27 16:22:52 +00002382 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002383}
2384
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002385int __i915_add_request(struct intel_engine_cs *ring,
Mika Kuoppala0025c072013-06-12 12:35:30 +03002386 struct drm_file *file,
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002387 struct drm_i915_gem_object *obj,
Mika Kuoppala0025c072013-06-12 12:35:30 +03002388 u32 *out_seqno)
Eric Anholt673a3942008-07-30 12:06:12 -07002389{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03002390 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Chris Wilsonacb868d2012-09-26 13:47:30 +01002391 struct drm_i915_gem_request *request;
Oscar Mateo48e29f52014-07-24 17:04:29 +01002392 struct intel_ringbuffer *ringbuf;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002393 u32 request_ring_position, request_start;
Chris Wilson3cce4692010-10-27 16:11:02 +01002394 int ret;
2395
Oscar Mateo48e29f52014-07-24 17:04:29 +01002396 request = ring->preallocated_lazy_request;
2397 if (WARN_ON(request == NULL))
2398 return -ENOMEM;
2399
2400 if (i915.enable_execlists) {
2401 struct intel_context *ctx = request->ctx;
2402 ringbuf = ctx->engine[ring->id].ringbuf;
2403 } else
2404 ringbuf = ring->buffer;
2405
2406 request_start = intel_ring_get_tail(ringbuf);
Daniel Vettercc889e02012-06-13 20:45:19 +02002407 /*
2408 * Emit any outstanding flushes - execbuf can fail to emit the flush
2409 * after having emitted the batchbuffer command. Hence we need to fix
2410 * things up similar to emitting the lazy request. The difference here
2411 * is that the flush _must_ happen before the next request, no matter
2412 * what.
2413 */
Oscar Mateo48e29f52014-07-24 17:04:29 +01002414 if (i915.enable_execlists) {
2415 ret = logical_ring_flush_all_caches(ringbuf);
2416 if (ret)
2417 return ret;
2418 } else {
2419 ret = intel_ring_flush_all_caches(ring);
2420 if (ret)
2421 return ret;
2422 }
Daniel Vettercc889e02012-06-13 20:45:19 +02002423
Chris Wilsona71d8d92012-02-15 11:25:36 +00002424 /* Record the position of the start of the request so that
2425 * should we detect the updated seqno part-way through the
2426 * GPU processing the request, we never over-estimate the
2427 * position of the head.
2428 */
Oscar Mateo48e29f52014-07-24 17:04:29 +01002429 request_ring_position = intel_ring_get_tail(ringbuf);
Chris Wilsona71d8d92012-02-15 11:25:36 +00002430
Oscar Mateo48e29f52014-07-24 17:04:29 +01002431 if (i915.enable_execlists) {
2432 ret = ring->emit_request(ringbuf);
2433 if (ret)
2434 return ret;
2435 } else {
2436 ret = ring->add_request(ring);
2437 if (ret)
2438 return ret;
2439 }
Eric Anholt673a3942008-07-30 12:06:12 -07002440
Chris Wilson9d7730912012-11-27 16:22:52 +00002441 request->seqno = intel_ring_get_seqno(ring);
Zou Nan hai852835f2010-05-21 09:08:56 +08002442 request->ring = ring;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002443 request->head = request_start;
Chris Wilsona71d8d92012-02-15 11:25:36 +00002444 request->tail = request_ring_position;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002445
2446 /* Whilst this request exists, batch_obj will be on the
2447 * active_list, and so will hold the active reference. Only when this
2448 * request is retired will the the batch_obj be moved onto the
2449 * inactive_list and lose its active reference. Hence we do not need
2450 * to explicitly hold another reference here.
2451 */
Chris Wilson9a7e0c22013-08-26 19:50:54 -03002452 request->batch_obj = obj;
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002453
Oscar Mateo48e29f52014-07-24 17:04:29 +01002454 if (!i915.enable_execlists) {
2455 /* Hold a reference to the current context so that we can inspect
2456 * it later in case a hangcheck error event fires.
2457 */
2458 request->ctx = ring->last_context;
2459 if (request->ctx)
2460 i915_gem_context_reference(request->ctx);
2461 }
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002462
Eric Anholt673a3942008-07-30 12:06:12 -07002463 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08002464 list_add_tail(&request->list, &ring->request_list);
Chris Wilson3bb73ab2012-07-20 12:40:59 +01002465 request->file_priv = NULL;
Zou Nan hai852835f2010-05-21 09:08:56 +08002466
Chris Wilsondb53a302011-02-03 11:57:46 +00002467 if (file) {
2468 struct drm_i915_file_private *file_priv = file->driver_priv;
2469
Chris Wilson1c255952010-09-26 11:03:27 +01002470 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002471 request->file_priv = file_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00002472 list_add_tail(&request->client_list,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002473 &file_priv->mm.request_list);
Chris Wilson1c255952010-09-26 11:03:27 +01002474 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00002475 }
Eric Anholt673a3942008-07-30 12:06:12 -07002476
Chris Wilson9d7730912012-11-27 16:22:52 +00002477 trace_i915_gem_request_add(ring, request->seqno);
Chris Wilson18235212013-09-04 10:45:51 +01002478 ring->outstanding_lazy_seqno = 0;
Chris Wilson3c0e2342013-09-04 10:45:52 +01002479 ring->preallocated_lazy_request = NULL;
Chris Wilsondb53a302011-02-03 11:57:46 +00002480
Daniel Vetter87255482014-11-19 20:36:48 +01002481 i915_queue_hangcheck(ring->dev);
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03002482
Daniel Vetter87255482014-11-19 20:36:48 +01002483 cancel_delayed_work_sync(&dev_priv->mm.idle_work);
2484 queue_delayed_work(dev_priv->wq,
2485 &dev_priv->mm.retire_work,
2486 round_jiffies_up_relative(HZ));
2487 intel_mark_busy(dev_priv->dev);
Daniel Vettercc889e02012-06-13 20:45:19 +02002488
Chris Wilsonacb868d2012-09-26 13:47:30 +01002489 if (out_seqno)
Chris Wilson9d7730912012-11-27 16:22:52 +00002490 *out_seqno = request->seqno;
Chris Wilson3cce4692010-10-27 16:11:02 +01002491 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002492}
2493
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002494static inline void
2495i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07002496{
Chris Wilson1c255952010-09-26 11:03:27 +01002497 struct drm_i915_file_private *file_priv = request->file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07002498
Chris Wilson1c255952010-09-26 11:03:27 +01002499 if (!file_priv)
2500 return;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002501
Chris Wilson1c255952010-09-26 11:03:27 +01002502 spin_lock(&file_priv->mm.lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002503 list_del(&request->client_list);
2504 request->file_priv = NULL;
Chris Wilson1c255952010-09-26 11:03:27 +01002505 spin_unlock(&file_priv->mm.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07002506}
2507
Mika Kuoppala939fd762014-01-30 19:04:44 +02002508static bool i915_context_is_banned(struct drm_i915_private *dev_priv,
Oscar Mateo273497e2014-05-22 14:13:37 +01002509 const struct intel_context *ctx)
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002510{
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002511 unsigned long elapsed;
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002512
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002513 elapsed = get_seconds() - ctx->hang_stats.guilty_ts;
2514
2515 if (ctx->hang_stats.banned)
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002516 return true;
2517
2518 if (elapsed <= DRM_I915_CTX_BAN_PERIOD) {
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002519 if (!i915_gem_context_is_default(ctx)) {
Mika Kuoppala3fac8972014-01-30 16:05:48 +02002520 DRM_DEBUG("context hanging too fast, banning!\n");
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002521 return true;
Mika Kuoppala88b4aa82014-03-28 18:18:18 +02002522 } else if (i915_stop_ring_allow_ban(dev_priv)) {
2523 if (i915_stop_ring_allow_warn(dev_priv))
2524 DRM_ERROR("gpu hanging too fast, banning!\n");
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002525 return true;
Mika Kuoppala3fac8972014-01-30 16:05:48 +02002526 }
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002527 }
2528
2529 return false;
2530}
2531
Mika Kuoppala939fd762014-01-30 19:04:44 +02002532static void i915_set_reset_status(struct drm_i915_private *dev_priv,
Oscar Mateo273497e2014-05-22 14:13:37 +01002533 struct intel_context *ctx,
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002534 const bool guilty)
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002535{
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002536 struct i915_ctx_hang_stats *hs;
2537
2538 if (WARN_ON(!ctx))
2539 return;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002540
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002541 hs = &ctx->hang_stats;
2542
2543 if (guilty) {
Mika Kuoppala939fd762014-01-30 19:04:44 +02002544 hs->banned = i915_context_is_banned(dev_priv, ctx);
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002545 hs->batch_active++;
2546 hs->guilty_ts = get_seconds();
2547 } else {
2548 hs->batch_pending++;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002549 }
2550}
2551
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002552static void i915_gem_free_request(struct drm_i915_gem_request *request)
2553{
Oscar Mateodcb4c122014-11-13 10:28:10 +00002554 struct intel_context *ctx = request->ctx;
2555
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002556 list_del(&request->list);
2557 i915_gem_request_remove_from_client(request);
2558
Oscar Mateodcb4c122014-11-13 10:28:10 +00002559 if (i915.enable_execlists && ctx) {
2560 struct intel_engine_cs *ring = request->ring;
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002561
Oscar Mateodcb4c122014-11-13 10:28:10 +00002562 if (ctx != ring->default_context)
2563 intel_lr_context_unpin(ring, ctx);
2564 i915_gem_context_unreference(ctx);
2565 }
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002566 kfree(request);
2567}
2568
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002569struct drm_i915_gem_request *
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002570i915_gem_find_active_request(struct intel_engine_cs *ring)
Chris Wilson9375e442010-09-19 12:21:28 +01002571{
Chris Wilson4db080f2013-12-04 11:37:09 +00002572 struct drm_i915_gem_request *request;
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002573 u32 completed_seqno;
2574
2575 completed_seqno = ring->get_seqno(ring, false);
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002576
Chris Wilson4db080f2013-12-04 11:37:09 +00002577 list_for_each_entry(request, &ring->request_list, list) {
2578 if (i915_seqno_passed(completed_seqno, request->seqno))
2579 continue;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002580
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002581 return request;
Chris Wilson4db080f2013-12-04 11:37:09 +00002582 }
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002583
2584 return NULL;
2585}
2586
2587static void i915_gem_reset_ring_status(struct drm_i915_private *dev_priv,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002588 struct intel_engine_cs *ring)
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002589{
2590 struct drm_i915_gem_request *request;
2591 bool ring_hung;
2592
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002593 request = i915_gem_find_active_request(ring);
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002594
2595 if (request == NULL)
2596 return;
2597
2598 ring_hung = ring->hangcheck.score >= HANGCHECK_SCORE_RING_HUNG;
2599
Mika Kuoppala939fd762014-01-30 19:04:44 +02002600 i915_set_reset_status(dev_priv, request->ctx, ring_hung);
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002601
2602 list_for_each_entry_continue(request, &ring->request_list, list)
Mika Kuoppala939fd762014-01-30 19:04:44 +02002603 i915_set_reset_status(dev_priv, request->ctx, false);
Chris Wilson4db080f2013-12-04 11:37:09 +00002604}
2605
2606static void i915_gem_reset_ring_cleanup(struct drm_i915_private *dev_priv,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002607 struct intel_engine_cs *ring)
Chris Wilson4db080f2013-12-04 11:37:09 +00002608{
Chris Wilsondfaae392010-09-22 10:31:52 +01002609 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00002610 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07002611
Chris Wilson05394f32010-11-08 19:18:58 +00002612 obj = list_first_entry(&ring->active_list,
2613 struct drm_i915_gem_object,
2614 ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07002615
Chris Wilson05394f32010-11-08 19:18:58 +00002616 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002617 }
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002618
2619 /*
Oscar Mateodcb4c122014-11-13 10:28:10 +00002620 * Clear the execlists queue up before freeing the requests, as those
2621 * are the ones that keep the context and ringbuffer backing objects
2622 * pinned in place.
2623 */
2624 while (!list_empty(&ring->execlist_queue)) {
2625 struct intel_ctx_submit_request *submit_req;
2626
2627 submit_req = list_first_entry(&ring->execlist_queue,
2628 struct intel_ctx_submit_request,
2629 execlist_link);
2630 list_del(&submit_req->execlist_link);
2631 intel_runtime_pm_put(dev_priv);
2632 i915_gem_context_unreference(submit_req->ctx);
2633 kfree(submit_req);
2634 }
2635
2636 /*
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002637 * We must free the requests after all the corresponding objects have
2638 * been moved off active lists. Which is the same order as the normal
2639 * retire_requests function does. This is important if object hold
2640 * implicit references on things like e.g. ppgtt address spaces through
2641 * the request.
2642 */
2643 while (!list_empty(&ring->request_list)) {
2644 struct drm_i915_gem_request *request;
2645
2646 request = list_first_entry(&ring->request_list,
2647 struct drm_i915_gem_request,
2648 list);
2649
2650 i915_gem_free_request(request);
2651 }
Chris Wilsone3efda42014-04-09 09:19:41 +01002652
2653 /* These may not have been flush before the reset, do so now */
2654 kfree(ring->preallocated_lazy_request);
2655 ring->preallocated_lazy_request = NULL;
2656 ring->outstanding_lazy_seqno = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002657}
2658
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002659void i915_gem_restore_fences(struct drm_device *dev)
Chris Wilson312817a2010-11-22 11:50:11 +00002660{
2661 struct drm_i915_private *dev_priv = dev->dev_private;
2662 int i;
2663
Daniel Vetter4b9de732011-10-09 21:52:02 +02002664 for (i = 0; i < dev_priv->num_fence_regs; i++) {
Chris Wilson312817a2010-11-22 11:50:11 +00002665 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
Chris Wilson7d2cb392010-11-27 17:38:29 +00002666
Daniel Vetter94a335d2013-07-17 14:51:28 +02002667 /*
2668 * Commit delayed tiling changes if we have an object still
2669 * attached to the fence, otherwise just clear the fence.
2670 */
2671 if (reg->obj) {
2672 i915_gem_object_update_fence(reg->obj, reg,
2673 reg->obj->tiling_mode);
2674 } else {
2675 i915_gem_write_fence(dev, i, NULL);
2676 }
Chris Wilson312817a2010-11-22 11:50:11 +00002677 }
2678}
2679
Chris Wilson069efc12010-09-30 16:53:18 +01002680void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07002681{
Chris Wilsondfaae392010-09-22 10:31:52 +01002682 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002683 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002684 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07002685
Chris Wilson4db080f2013-12-04 11:37:09 +00002686 /*
2687 * Before we free the objects from the requests, we need to inspect
2688 * them for finding the guilty party. As the requests only borrow
2689 * their reference to the objects, the inspection must be done first.
2690 */
Chris Wilsonb4519512012-05-11 14:29:30 +01002691 for_each_ring(ring, dev_priv, i)
Chris Wilson4db080f2013-12-04 11:37:09 +00002692 i915_gem_reset_ring_status(dev_priv, ring);
2693
2694 for_each_ring(ring, dev_priv, i)
2695 i915_gem_reset_ring_cleanup(dev_priv, ring);
Chris Wilsondfaae392010-09-22 10:31:52 +01002696
Ben Widawskyacce9ff2013-12-06 14:11:03 -08002697 i915_gem_context_reset(dev);
2698
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002699 i915_gem_restore_fences(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07002700}
2701
2702/**
2703 * This function clears the request list as sequence numbers are passed.
2704 */
Chris Wilson1cf0ba12014-05-05 09:07:33 +01002705void
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002706i915_gem_retire_requests_ring(struct intel_engine_cs *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07002707{
Eric Anholt673a3942008-07-30 12:06:12 -07002708 uint32_t seqno;
2709
Chris Wilsondb53a302011-02-03 11:57:46 +00002710 if (list_empty(&ring->request_list))
Karsten Wiese6c0594a2009-02-23 15:07:57 +01002711 return;
2712
Chris Wilsondb53a302011-02-03 11:57:46 +00002713 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002714
Chris Wilsonb2eadbc2012-08-09 10:58:30 +01002715 seqno = ring->get_seqno(ring, true);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002716
Chris Wilsone9103032014-01-07 11:45:14 +00002717 /* Move any buffers on the active list that are no longer referenced
2718 * by the ringbuffer to the flushing/inactive lists as appropriate,
2719 * before we free the context associated with the requests.
2720 */
2721 while (!list_empty(&ring->active_list)) {
2722 struct drm_i915_gem_object *obj;
2723
2724 obj = list_first_entry(&ring->active_list,
2725 struct drm_i915_gem_object,
2726 ring_list);
2727
2728 if (!i915_seqno_passed(seqno, obj->last_read_seqno))
2729 break;
2730
2731 i915_gem_object_move_to_inactive(obj);
2732 }
2733
2734
Zou Nan hai852835f2010-05-21 09:08:56 +08002735 while (!list_empty(&ring->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002736 struct drm_i915_gem_request *request;
Oscar Mateo48e29f52014-07-24 17:04:29 +01002737 struct intel_ringbuffer *ringbuf;
Eric Anholt673a3942008-07-30 12:06:12 -07002738
Zou Nan hai852835f2010-05-21 09:08:56 +08002739 request = list_first_entry(&ring->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07002740 struct drm_i915_gem_request,
2741 list);
Eric Anholt673a3942008-07-30 12:06:12 -07002742
Chris Wilsondfaae392010-09-22 10:31:52 +01002743 if (!i915_seqno_passed(seqno, request->seqno))
Eric Anholt673a3942008-07-30 12:06:12 -07002744 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002745
Chris Wilsondb53a302011-02-03 11:57:46 +00002746 trace_i915_gem_request_retire(ring, request->seqno);
Oscar Mateo48e29f52014-07-24 17:04:29 +01002747
2748 /* This is one of the few common intersection points
2749 * between legacy ringbuffer submission and execlists:
2750 * we need to tell them apart in order to find the correct
2751 * ringbuffer to which the request belongs to.
2752 */
2753 if (i915.enable_execlists) {
2754 struct intel_context *ctx = request->ctx;
2755 ringbuf = ctx->engine[ring->id].ringbuf;
2756 } else
2757 ringbuf = ring->buffer;
2758
Chris Wilsona71d8d92012-02-15 11:25:36 +00002759 /* We know the GPU must have read the request to have
2760 * sent us the seqno + interrupt, so use the position
2761 * of tail of the request to update the last known position
2762 * of the GPU head.
2763 */
Oscar Mateo48e29f52014-07-24 17:04:29 +01002764 ringbuf->last_retired_head = request->tail;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002765
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002766 i915_gem_free_request(request);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002767 }
2768
Chris Wilsondb53a302011-02-03 11:57:46 +00002769 if (unlikely(ring->trace_irq_seqno &&
2770 i915_seqno_passed(seqno, ring->trace_irq_seqno))) {
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002771 ring->irq_put(ring);
Chris Wilsondb53a302011-02-03 11:57:46 +00002772 ring->trace_irq_seqno = 0;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01002773 }
Chris Wilson23bc5982010-09-29 16:10:57 +01002774
Chris Wilsondb53a302011-02-03 11:57:46 +00002775 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002776}
2777
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002778bool
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002779i915_gem_retire_requests(struct drm_device *dev)
2780{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03002781 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002782 struct intel_engine_cs *ring;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002783 bool idle = true;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002784 int i;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002785
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002786 for_each_ring(ring, dev_priv, i) {
Chris Wilsonb4519512012-05-11 14:29:30 +01002787 i915_gem_retire_requests_ring(ring);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002788 idle &= list_empty(&ring->request_list);
Thomas Danielc86ee3a92014-11-13 10:27:05 +00002789 if (i915.enable_execlists) {
2790 unsigned long flags;
2791
2792 spin_lock_irqsave(&ring->execlist_lock, flags);
2793 idle &= list_empty(&ring->execlist_queue);
2794 spin_unlock_irqrestore(&ring->execlist_lock, flags);
2795
2796 intel_execlists_retire_requests(ring);
2797 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002798 }
2799
2800 if (idle)
2801 mod_delayed_work(dev_priv->wq,
2802 &dev_priv->mm.idle_work,
2803 msecs_to_jiffies(100));
2804
2805 return idle;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002806}
2807
Daniel Vetter75ef9da2010-08-21 00:25:16 +02002808static void
Eric Anholt673a3942008-07-30 12:06:12 -07002809i915_gem_retire_work_handler(struct work_struct *work)
2810{
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002811 struct drm_i915_private *dev_priv =
2812 container_of(work, typeof(*dev_priv), mm.retire_work.work);
2813 struct drm_device *dev = dev_priv->dev;
Chris Wilson0a587052011-01-09 21:05:44 +00002814 bool idle;
Eric Anholt673a3942008-07-30 12:06:12 -07002815
Chris Wilson891b48c2010-09-29 12:26:37 +01002816 /* Come back later if the device is busy... */
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002817 idle = false;
2818 if (mutex_trylock(&dev->struct_mutex)) {
2819 idle = i915_gem_retire_requests(dev);
2820 mutex_unlock(&dev->struct_mutex);
2821 }
2822 if (!idle)
Chris Wilsonbcb45082012-10-05 17:02:57 +01002823 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work,
2824 round_jiffies_up_relative(HZ));
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002825}
Chris Wilson891b48c2010-09-29 12:26:37 +01002826
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002827static void
2828i915_gem_idle_work_handler(struct work_struct *work)
2829{
2830 struct drm_i915_private *dev_priv =
2831 container_of(work, typeof(*dev_priv), mm.idle_work.work);
Zou Nan haid1b851f2010-05-21 09:08:57 +08002832
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002833 intel_mark_idle(dev_priv->dev);
Eric Anholt673a3942008-07-30 12:06:12 -07002834}
2835
Ben Widawsky5816d642012-04-11 11:18:19 -07002836/**
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002837 * Ensures that an object will eventually get non-busy by flushing any required
2838 * write domains, emitting any outstanding lazy request and retiring and
2839 * completed requests.
2840 */
2841static int
2842i915_gem_object_flush_active(struct drm_i915_gem_object *obj)
2843{
2844 int ret;
2845
2846 if (obj->active) {
Chris Wilson0201f1e2012-07-20 12:41:01 +01002847 ret = i915_gem_check_olr(obj->ring, obj->last_read_seqno);
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002848 if (ret)
2849 return ret;
2850
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002851 i915_gem_retire_requests_ring(obj->ring);
2852 }
2853
2854 return 0;
2855}
2856
2857/**
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002858 * i915_gem_wait_ioctl - implements DRM_IOCTL_I915_GEM_WAIT
2859 * @DRM_IOCTL_ARGS: standard ioctl arguments
2860 *
2861 * Returns 0 if successful, else an error is returned with the remaining time in
2862 * the timeout parameter.
2863 * -ETIME: object is still busy after timeout
2864 * -ERESTARTSYS: signal interrupted the wait
2865 * -ENONENT: object doesn't exist
2866 * Also possible, but rare:
2867 * -EAGAIN: GPU wedged
2868 * -ENOMEM: damn
2869 * -ENODEV: Internal IRQ fail
2870 * -E?: The add request failed
2871 *
2872 * The wait ioctl with a timeout of 0 reimplements the busy ioctl. With any
2873 * non-zero timeout parameter the wait ioctl will wait for the given number of
2874 * nanoseconds on an object becoming unbusy. Since the wait itself does so
2875 * without holding struct_mutex the object may become re-busied before this
2876 * function completes. A similar but shorter * race condition exists in the busy
2877 * ioctl
2878 */
2879int
2880i915_gem_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
2881{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03002882 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002883 struct drm_i915_gem_wait *args = data;
2884 struct drm_i915_gem_object *obj;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002885 struct intel_engine_cs *ring = NULL;
Daniel Vetterf69061b2012-12-06 09:01:42 +01002886 unsigned reset_counter;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002887 u32 seqno = 0;
2888 int ret = 0;
2889
Daniel Vetter11b5d512014-09-29 15:31:26 +02002890 if (args->flags != 0)
2891 return -EINVAL;
2892
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002893 ret = i915_mutex_lock_interruptible(dev);
2894 if (ret)
2895 return ret;
2896
2897 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->bo_handle));
2898 if (&obj->base == NULL) {
2899 mutex_unlock(&dev->struct_mutex);
2900 return -ENOENT;
2901 }
2902
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002903 /* Need to make sure the object gets inactive eventually. */
2904 ret = i915_gem_object_flush_active(obj);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002905 if (ret)
2906 goto out;
2907
2908 if (obj->active) {
Chris Wilson0201f1e2012-07-20 12:41:01 +01002909 seqno = obj->last_read_seqno;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002910 ring = obj->ring;
2911 }
2912
2913 if (seqno == 0)
2914 goto out;
2915
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002916 /* Do this after OLR check to make sure we make forward progress polling
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00002917 * on this IOCTL with a timeout <=0 (like busy ioctl)
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002918 */
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00002919 if (args->timeout_ns <= 0) {
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002920 ret = -ETIME;
2921 goto out;
2922 }
2923
2924 drm_gem_object_unreference(&obj->base);
Daniel Vetterf69061b2012-12-06 09:01:42 +01002925 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002926 mutex_unlock(&dev->struct_mutex);
2927
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02002928 return __i915_wait_seqno(ring, seqno, reset_counter, true,
2929 &args->timeout_ns, file->driver_priv);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002930
2931out:
2932 drm_gem_object_unreference(&obj->base);
2933 mutex_unlock(&dev->struct_mutex);
2934 return ret;
2935}
2936
2937/**
Ben Widawsky5816d642012-04-11 11:18:19 -07002938 * i915_gem_object_sync - sync an object to a ring.
2939 *
2940 * @obj: object which may be in use on another ring.
2941 * @to: ring we wish to use the object on. May be NULL.
2942 *
2943 * This code is meant to abstract object synchronization with the GPU.
2944 * Calling with NULL implies synchronizing the object with the CPU
2945 * rather than a particular GPU ring.
2946 *
2947 * Returns 0 if successful, else propagates up the lower layer error.
2948 */
Ben Widawsky2911a352012-04-05 14:47:36 -07002949int
2950i915_gem_object_sync(struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002951 struct intel_engine_cs *to)
Ben Widawsky2911a352012-04-05 14:47:36 -07002952{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002953 struct intel_engine_cs *from = obj->ring;
Ben Widawsky2911a352012-04-05 14:47:36 -07002954 u32 seqno;
2955 int ret, idx;
2956
2957 if (from == NULL || to == from)
2958 return 0;
2959
Ben Widawsky5816d642012-04-11 11:18:19 -07002960 if (to == NULL || !i915_semaphore_is_enabled(obj->base.dev))
Chris Wilson0201f1e2012-07-20 12:41:01 +01002961 return i915_gem_object_wait_rendering(obj, false);
Ben Widawsky2911a352012-04-05 14:47:36 -07002962
2963 idx = intel_ring_sync_index(from, to);
2964
Chris Wilson0201f1e2012-07-20 12:41:01 +01002965 seqno = obj->last_read_seqno;
Rodrigo Vividdd4dbc2014-06-30 09:51:11 -07002966 /* Optimization: Avoid semaphore sync when we are sure we already
2967 * waited for an object with higher seqno */
Ben Widawskyebc348b2014-04-29 14:52:28 -07002968 if (seqno <= from->semaphore.sync_seqno[idx])
Ben Widawsky2911a352012-04-05 14:47:36 -07002969 return 0;
2970
Ben Widawskyb4aca012012-04-25 20:50:12 -07002971 ret = i915_gem_check_olr(obj->ring, seqno);
2972 if (ret)
2973 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07002974
Chris Wilsonb52b89d2013-09-25 11:43:28 +01002975 trace_i915_gem_ring_sync_to(from, to, seqno);
Ben Widawskyebc348b2014-04-29 14:52:28 -07002976 ret = to->semaphore.sync_to(to, from, seqno);
Ben Widawskye3a5a222012-04-11 11:18:20 -07002977 if (!ret)
Mika Kuoppala7b01e262012-11-28 17:18:45 +02002978 /* We use last_read_seqno because sync_to()
2979 * might have just caused seqno wrap under
2980 * the radar.
2981 */
Ben Widawskyebc348b2014-04-29 14:52:28 -07002982 from->semaphore.sync_seqno[idx] = obj->last_read_seqno;
Ben Widawsky2911a352012-04-05 14:47:36 -07002983
Ben Widawskye3a5a222012-04-11 11:18:20 -07002984 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07002985}
2986
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002987static void i915_gem_object_finish_gtt(struct drm_i915_gem_object *obj)
2988{
2989 u32 old_write_domain, old_read_domains;
2990
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002991 /* Force a pagefault for domain tracking on next user access */
2992 i915_gem_release_mmap(obj);
2993
Keith Packardb97c3d92011-06-24 21:02:59 -07002994 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
2995 return;
2996
Chris Wilson97c809fd2012-10-09 19:24:38 +01002997 /* Wait for any direct GTT access to complete */
2998 mb();
2999
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01003000 old_read_domains = obj->base.read_domains;
3001 old_write_domain = obj->base.write_domain;
3002
3003 obj->base.read_domains &= ~I915_GEM_DOMAIN_GTT;
3004 obj->base.write_domain &= ~I915_GEM_DOMAIN_GTT;
3005
3006 trace_i915_gem_object_change_domain(obj,
3007 old_read_domains,
3008 old_write_domain);
3009}
3010
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003011int i915_vma_unbind(struct i915_vma *vma)
Eric Anholt673a3942008-07-30 12:06:12 -07003012{
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003013 struct drm_i915_gem_object *obj = vma->obj;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003014 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson43e28f02013-01-08 10:53:09 +00003015 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003016
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003017 if (list_empty(&vma->vma_link))
Eric Anholt673a3942008-07-30 12:06:12 -07003018 return 0;
3019
Daniel Vetter0ff501c2013-08-29 19:50:31 +02003020 if (!drm_mm_node_allocated(&vma->node)) {
3021 i915_gem_vma_destroy(vma);
Daniel Vetter0ff501c2013-08-29 19:50:31 +02003022 return 0;
3023 }
Ben Widawsky433544b2013-08-13 18:09:06 -07003024
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08003025 if (vma->pin_count)
Chris Wilson31d8d652012-05-24 19:11:20 +01003026 return -EBUSY;
Eric Anholt673a3942008-07-30 12:06:12 -07003027
Chris Wilsonc4670ad2012-08-20 10:23:27 +01003028 BUG_ON(obj->pages == NULL);
3029
Chris Wilsona8198ee2011-04-13 22:04:09 +01003030 ret = i915_gem_object_finish_gpu(obj);
Chris Wilson1488fc02012-04-24 15:47:31 +01003031 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07003032 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01003033 /* Continue on if we fail due to EIO, the GPU is hung so we
3034 * should be safe and we need to cleanup or else we might
3035 * cause memory corruption through use-after-free.
3036 */
Chris Wilsona8198ee2011-04-13 22:04:09 +01003037
Chris Wilson1d1ef21d2014-09-09 07:02:43 +01003038 /* Throw away the active reference before moving to the unbound list */
3039 i915_gem_object_retire(obj);
3040
Daniel Vetter8b1bc9b2014-02-14 14:06:07 +01003041 if (i915_is_ggtt(vma->vm)) {
3042 i915_gem_object_finish_gtt(obj);
Chris Wilsona8198ee2011-04-13 22:04:09 +01003043
Daniel Vetter8b1bc9b2014-02-14 14:06:07 +01003044 /* release the fence reg _after_ flushing */
3045 ret = i915_gem_object_put_fence(obj);
3046 if (ret)
3047 return ret;
3048 }
Daniel Vetter96b47b62009-12-15 17:50:00 +01003049
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003050 trace_i915_vma_unbind(vma);
Chris Wilsondb53a302011-02-03 11:57:46 +00003051
Ben Widawsky6f65e292013-12-06 14:10:56 -08003052 vma->unbind_vma(vma);
3053
Chris Wilson64bf9302014-02-25 14:23:28 +00003054 list_del_init(&vma->mm_list);
Ben Widawsky5cacaac2013-07-31 17:00:13 -07003055 if (i915_is_ggtt(vma->vm))
Chris Wilsone6a84462014-08-11 12:00:12 +02003056 obj->map_and_fenceable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07003057
Ben Widawsky2f633152013-07-17 12:19:03 -07003058 drm_mm_remove_node(&vma->node);
3059 i915_gem_vma_destroy(vma);
3060
3061 /* Since the unbound list is global, only move to that list if
Daniel Vetterb93dab62013-08-26 11:23:47 +02003062 * no more VMAs exist. */
Armin Reese9490edb2014-07-11 10:20:07 -07003063 if (list_empty(&obj->vma_list)) {
3064 i915_gem_gtt_finish_object(obj);
Ben Widawsky2f633152013-07-17 12:19:03 -07003065 list_move_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Armin Reese9490edb2014-07-11 10:20:07 -07003066 }
Eric Anholt673a3942008-07-30 12:06:12 -07003067
Chris Wilson70903c32013-12-04 09:59:09 +00003068 /* And finally now the object is completely decoupled from this vma,
3069 * we can drop its hold on the backing storage and allow it to be
3070 * reaped by the shrinker.
3071 */
3072 i915_gem_object_unpin_pages(obj);
3073
Chris Wilson88241782011-01-07 17:09:48 +00003074 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00003075}
3076
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07003077int i915_gpu_idle(struct drm_device *dev)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003078{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003079 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003080 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003081 int ret, i;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003082
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003083 /* Flush everything onto the inactive list. */
Chris Wilsonb4519512012-05-11 14:29:30 +01003084 for_each_ring(ring, dev_priv, i) {
Thomas Danielecdb5fd2014-08-20 16:29:24 +01003085 if (!i915.enable_execlists) {
3086 ret = i915_switch_context(ring, ring->default_context);
3087 if (ret)
3088 return ret;
3089 }
Ben Widawskyb6c74882012-08-14 14:35:14 -07003090
Chris Wilson3e960502012-11-27 16:22:54 +00003091 ret = intel_ring_idle(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003092 if (ret)
3093 return ret;
3094 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003095
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01003096 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003097}
3098
Chris Wilson9ce079e2012-04-17 15:31:30 +01003099static void i965_write_fence_reg(struct drm_device *dev, int reg,
3100 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003101{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003102 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak56c844e2013-01-07 21:47:34 +02003103 int fence_reg;
3104 int fence_pitch_shift;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003105
Imre Deak56c844e2013-01-07 21:47:34 +02003106 if (INTEL_INFO(dev)->gen >= 6) {
3107 fence_reg = FENCE_REG_SANDYBRIDGE_0;
3108 fence_pitch_shift = SANDYBRIDGE_FENCE_PITCH_SHIFT;
3109 } else {
3110 fence_reg = FENCE_REG_965_0;
3111 fence_pitch_shift = I965_FENCE_PITCH_SHIFT;
3112 }
3113
Chris Wilsond18b9612013-07-10 13:36:23 +01003114 fence_reg += reg * 8;
3115
3116 /* To w/a incoherency with non-atomic 64-bit register updates,
3117 * we split the 64-bit update into two 32-bit writes. In order
3118 * for a partial fence not to be evaluated between writes, we
3119 * precede the update with write to turn off the fence register,
3120 * and only enable the fence as the last step.
3121 *
3122 * For extra levels of paranoia, we make sure each step lands
3123 * before applying the next step.
3124 */
3125 I915_WRITE(fence_reg, 0);
3126 POSTING_READ(fence_reg);
3127
Chris Wilson9ce079e2012-04-17 15:31:30 +01003128 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003129 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilsond18b9612013-07-10 13:36:23 +01003130 uint64_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003131
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003132 val = (uint64_t)((i915_gem_obj_ggtt_offset(obj) + size - 4096) &
Chris Wilson9ce079e2012-04-17 15:31:30 +01003133 0xfffff000) << 32;
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003134 val |= i915_gem_obj_ggtt_offset(obj) & 0xfffff000;
Imre Deak56c844e2013-01-07 21:47:34 +02003135 val |= (uint64_t)((obj->stride / 128) - 1) << fence_pitch_shift;
Chris Wilson9ce079e2012-04-17 15:31:30 +01003136 if (obj->tiling_mode == I915_TILING_Y)
3137 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
3138 val |= I965_FENCE_REG_VALID;
Daniel Vetterc6642782010-11-12 13:46:18 +00003139
Chris Wilsond18b9612013-07-10 13:36:23 +01003140 I915_WRITE(fence_reg + 4, val >> 32);
3141 POSTING_READ(fence_reg + 4);
3142
3143 I915_WRITE(fence_reg + 0, val);
3144 POSTING_READ(fence_reg);
3145 } else {
3146 I915_WRITE(fence_reg + 4, 0);
3147 POSTING_READ(fence_reg + 4);
3148 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08003149}
3150
Chris Wilson9ce079e2012-04-17 15:31:30 +01003151static void i915_write_fence_reg(struct drm_device *dev, int reg,
3152 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003153{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003154 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9ce079e2012-04-17 15:31:30 +01003155 u32 val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003156
Chris Wilson9ce079e2012-04-17 15:31:30 +01003157 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003158 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003159 int pitch_val;
3160 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003161
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003162 WARN((i915_gem_obj_ggtt_offset(obj) & ~I915_FENCE_START_MASK) ||
Chris Wilson9ce079e2012-04-17 15:31:30 +01003163 (size & -size) != size ||
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003164 (i915_gem_obj_ggtt_offset(obj) & (size - 1)),
3165 "object 0x%08lx [fenceable? %d] not 1M or pot-size (0x%08x) aligned\n",
3166 i915_gem_obj_ggtt_offset(obj), obj->map_and_fenceable, size);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003167
3168 if (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev))
3169 tile_width = 128;
3170 else
3171 tile_width = 512;
3172
3173 /* Note: pitch better be a power of two tile widths */
3174 pitch_val = obj->stride / tile_width;
3175 pitch_val = ffs(pitch_val) - 1;
3176
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003177 val = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003178 if (obj->tiling_mode == I915_TILING_Y)
3179 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
3180 val |= I915_FENCE_SIZE_BITS(size);
3181 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
3182 val |= I830_FENCE_REG_VALID;
3183 } else
3184 val = 0;
3185
3186 if (reg < 8)
3187 reg = FENCE_REG_830_0 + reg * 4;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003188 else
Chris Wilson9ce079e2012-04-17 15:31:30 +01003189 reg = FENCE_REG_945_8 + (reg - 8) * 4;
Jesse Barnes0f973f22009-01-26 17:10:45 -08003190
Chris Wilson9ce079e2012-04-17 15:31:30 +01003191 I915_WRITE(reg, val);
3192 POSTING_READ(reg);
Jesse Barnesde151cf2008-11-12 10:03:55 -08003193}
3194
Chris Wilson9ce079e2012-04-17 15:31:30 +01003195static void i830_write_fence_reg(struct drm_device *dev, int reg,
3196 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003197{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003198 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003199 uint32_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003200
Chris Wilson9ce079e2012-04-17 15:31:30 +01003201 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003202 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003203 uint32_t pitch_val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003204
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003205 WARN((i915_gem_obj_ggtt_offset(obj) & ~I830_FENCE_START_MASK) ||
Chris Wilson9ce079e2012-04-17 15:31:30 +01003206 (size & -size) != size ||
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003207 (i915_gem_obj_ggtt_offset(obj) & (size - 1)),
3208 "object 0x%08lx not 512K or pot-size 0x%08x aligned\n",
3209 i915_gem_obj_ggtt_offset(obj), size);
Eric Anholte76a16d2009-05-26 17:44:56 -07003210
Chris Wilson9ce079e2012-04-17 15:31:30 +01003211 pitch_val = obj->stride / 128;
3212 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003213
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003214 val = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003215 if (obj->tiling_mode == I915_TILING_Y)
3216 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
3217 val |= I830_FENCE_SIZE_BITS(size);
3218 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
3219 val |= I830_FENCE_REG_VALID;
3220 } else
3221 val = 0;
Daniel Vetterc6642782010-11-12 13:46:18 +00003222
Chris Wilson9ce079e2012-04-17 15:31:30 +01003223 I915_WRITE(FENCE_REG_830_0 + reg * 4, val);
3224 POSTING_READ(FENCE_REG_830_0 + reg * 4);
3225}
3226
Chris Wilsond0a57782012-10-09 19:24:37 +01003227inline static bool i915_gem_object_needs_mb(struct drm_i915_gem_object *obj)
3228{
3229 return obj && obj->base.read_domains & I915_GEM_DOMAIN_GTT;
3230}
3231
Chris Wilson9ce079e2012-04-17 15:31:30 +01003232static void i915_gem_write_fence(struct drm_device *dev, int reg,
3233 struct drm_i915_gem_object *obj)
3234{
Chris Wilsond0a57782012-10-09 19:24:37 +01003235 struct drm_i915_private *dev_priv = dev->dev_private;
3236
3237 /* Ensure that all CPU reads are completed before installing a fence
3238 * and all writes before removing the fence.
3239 */
3240 if (i915_gem_object_needs_mb(dev_priv->fence_regs[reg].obj))
3241 mb();
3242
Daniel Vetter94a335d2013-07-17 14:51:28 +02003243 WARN(obj && (!obj->stride || !obj->tiling_mode),
3244 "bogus fence setup with stride: 0x%x, tiling mode: %i\n",
3245 obj->stride, obj->tiling_mode);
3246
Chris Wilson9ce079e2012-04-17 15:31:30 +01003247 switch (INTEL_INFO(dev)->gen) {
Damien Lespiau01209dd2013-02-13 15:27:25 +00003248 case 9:
Ben Widawsky5ab31332013-11-02 21:07:03 -07003249 case 8:
Chris Wilson9ce079e2012-04-17 15:31:30 +01003250 case 7:
Imre Deak56c844e2013-01-07 21:47:34 +02003251 case 6:
Chris Wilson9ce079e2012-04-17 15:31:30 +01003252 case 5:
3253 case 4: i965_write_fence_reg(dev, reg, obj); break;
3254 case 3: i915_write_fence_reg(dev, reg, obj); break;
3255 case 2: i830_write_fence_reg(dev, reg, obj); break;
Ben Widawsky7dbf9d62012-12-18 10:31:22 -08003256 default: BUG();
Chris Wilson9ce079e2012-04-17 15:31:30 +01003257 }
Chris Wilsond0a57782012-10-09 19:24:37 +01003258
3259 /* And similarly be paranoid that no direct access to this region
3260 * is reordered to before the fence is installed.
3261 */
3262 if (i915_gem_object_needs_mb(obj))
3263 mb();
Jesse Barnesde151cf2008-11-12 10:03:55 -08003264}
3265
Chris Wilson61050802012-04-17 15:31:31 +01003266static inline int fence_number(struct drm_i915_private *dev_priv,
3267 struct drm_i915_fence_reg *fence)
3268{
3269 return fence - dev_priv->fence_regs;
3270}
3271
3272static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
3273 struct drm_i915_fence_reg *fence,
3274 bool enable)
3275{
Chris Wilson2dc8aae2013-05-22 17:08:06 +01003276 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson46a0b632013-07-10 13:36:24 +01003277 int reg = fence_number(dev_priv, fence);
Chris Wilson61050802012-04-17 15:31:31 +01003278
Chris Wilson46a0b632013-07-10 13:36:24 +01003279 i915_gem_write_fence(obj->base.dev, reg, enable ? obj : NULL);
Chris Wilson61050802012-04-17 15:31:31 +01003280
3281 if (enable) {
Chris Wilson46a0b632013-07-10 13:36:24 +01003282 obj->fence_reg = reg;
Chris Wilson61050802012-04-17 15:31:31 +01003283 fence->obj = obj;
3284 list_move_tail(&fence->lru_list, &dev_priv->mm.fence_list);
3285 } else {
3286 obj->fence_reg = I915_FENCE_REG_NONE;
3287 fence->obj = NULL;
3288 list_del_init(&fence->lru_list);
3289 }
Daniel Vetter94a335d2013-07-17 14:51:28 +02003290 obj->fence_dirty = false;
Chris Wilson61050802012-04-17 15:31:31 +01003291}
3292
Chris Wilsond9e86c02010-11-10 16:40:20 +00003293static int
Chris Wilsond0a57782012-10-09 19:24:37 +01003294i915_gem_object_wait_fence(struct drm_i915_gem_object *obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003295{
Chris Wilson1c293ea2012-04-17 15:31:27 +01003296 if (obj->last_fenced_seqno) {
Chris Wilson86d5bc32012-07-20 12:41:04 +01003297 int ret = i915_wait_seqno(obj->ring, obj->last_fenced_seqno);
Chris Wilson18991842012-04-17 15:31:29 +01003298 if (ret)
3299 return ret;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003300
3301 obj->last_fenced_seqno = 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003302 }
3303
3304 return 0;
3305}
3306
3307int
3308i915_gem_object_put_fence(struct drm_i915_gem_object *obj)
3309{
Chris Wilson61050802012-04-17 15:31:31 +01003310 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003311 struct drm_i915_fence_reg *fence;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003312 int ret;
3313
Chris Wilsond0a57782012-10-09 19:24:37 +01003314 ret = i915_gem_object_wait_fence(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003315 if (ret)
3316 return ret;
3317
Chris Wilson61050802012-04-17 15:31:31 +01003318 if (obj->fence_reg == I915_FENCE_REG_NONE)
3319 return 0;
Chris Wilson1690e1e2011-12-14 13:57:08 +01003320
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003321 fence = &dev_priv->fence_regs[obj->fence_reg];
3322
Daniel Vetteraff10b302014-02-14 14:06:05 +01003323 if (WARN_ON(fence->pin_count))
3324 return -EBUSY;
3325
Chris Wilson61050802012-04-17 15:31:31 +01003326 i915_gem_object_fence_lost(obj);
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003327 i915_gem_object_update_fence(obj, fence, false);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003328
3329 return 0;
3330}
3331
3332static struct drm_i915_fence_reg *
Chris Wilsona360bb12012-04-17 15:31:25 +01003333i915_find_fence_reg(struct drm_device *dev)
Daniel Vetterae3db242010-02-19 11:51:58 +01003334{
Daniel Vetterae3db242010-02-19 11:51:58 +01003335 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson8fe301a2012-04-17 15:31:28 +01003336 struct drm_i915_fence_reg *reg, *avail;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003337 int i;
Daniel Vetterae3db242010-02-19 11:51:58 +01003338
3339 /* First try to find a free reg */
Chris Wilsond9e86c02010-11-10 16:40:20 +00003340 avail = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01003341 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
3342 reg = &dev_priv->fence_regs[i];
3343 if (!reg->obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003344 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003345
Chris Wilson1690e1e2011-12-14 13:57:08 +01003346 if (!reg->pin_count)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003347 avail = reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003348 }
3349
Chris Wilsond9e86c02010-11-10 16:40:20 +00003350 if (avail == NULL)
Chris Wilson5dce5b932014-01-20 10:17:36 +00003351 goto deadlock;
Daniel Vetterae3db242010-02-19 11:51:58 +01003352
3353 /* None available, try to steal one or wait for a user to finish */
Chris Wilsond9e86c02010-11-10 16:40:20 +00003354 list_for_each_entry(reg, &dev_priv->mm.fence_list, lru_list) {
Chris Wilson1690e1e2011-12-14 13:57:08 +01003355 if (reg->pin_count)
Daniel Vetterae3db242010-02-19 11:51:58 +01003356 continue;
3357
Chris Wilson8fe301a2012-04-17 15:31:28 +01003358 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003359 }
3360
Chris Wilson5dce5b932014-01-20 10:17:36 +00003361deadlock:
3362 /* Wait for completion of pending flips which consume fences */
3363 if (intel_has_pending_fb_unpin(dev))
3364 return ERR_PTR(-EAGAIN);
3365
3366 return ERR_PTR(-EDEADLK);
Daniel Vetterae3db242010-02-19 11:51:58 +01003367}
3368
Jesse Barnesde151cf2008-11-12 10:03:55 -08003369/**
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003370 * i915_gem_object_get_fence - set up fencing for an object
Jesse Barnesde151cf2008-11-12 10:03:55 -08003371 * @obj: object to map through a fence reg
3372 *
3373 * When mapping objects through the GTT, userspace wants to be able to write
3374 * to them without having to worry about swizzling if the object is tiled.
Jesse Barnesde151cf2008-11-12 10:03:55 -08003375 * This function walks the fence regs looking for a free one for @obj,
3376 * stealing one if it can't find any.
3377 *
3378 * It then sets up the reg based on the object's properties: address, pitch
3379 * and tiling format.
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003380 *
3381 * For an untiled surface, this removes any existing fence.
Jesse Barnesde151cf2008-11-12 10:03:55 -08003382 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01003383int
Chris Wilson06d98132012-04-17 15:31:24 +01003384i915_gem_object_get_fence(struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003385{
Chris Wilson05394f32010-11-08 19:18:58 +00003386 struct drm_device *dev = obj->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08003387 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson14415742012-04-17 15:31:33 +01003388 bool enable = obj->tiling_mode != I915_TILING_NONE;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003389 struct drm_i915_fence_reg *reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003390 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003391
Chris Wilson14415742012-04-17 15:31:33 +01003392 /* Have we updated the tiling parameters upon the object and so
3393 * will need to serialise the write to the associated fence register?
3394 */
Chris Wilson5d82e3e2012-04-21 16:23:23 +01003395 if (obj->fence_dirty) {
Chris Wilsond0a57782012-10-09 19:24:37 +01003396 ret = i915_gem_object_wait_fence(obj);
Chris Wilson14415742012-04-17 15:31:33 +01003397 if (ret)
3398 return ret;
3399 }
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003400
Chris Wilsond9e86c02010-11-10 16:40:20 +00003401 /* Just update our place in the LRU if our fence is getting reused. */
Chris Wilson05394f32010-11-08 19:18:58 +00003402 if (obj->fence_reg != I915_FENCE_REG_NONE) {
3403 reg = &dev_priv->fence_regs[obj->fence_reg];
Chris Wilson5d82e3e2012-04-21 16:23:23 +01003404 if (!obj->fence_dirty) {
Chris Wilson14415742012-04-17 15:31:33 +01003405 list_move_tail(&reg->lru_list,
3406 &dev_priv->mm.fence_list);
3407 return 0;
3408 }
3409 } else if (enable) {
Chris Wilsone6a84462014-08-11 12:00:12 +02003410 if (WARN_ON(!obj->map_and_fenceable))
3411 return -EINVAL;
3412
Chris Wilson14415742012-04-17 15:31:33 +01003413 reg = i915_find_fence_reg(dev);
Chris Wilson5dce5b932014-01-20 10:17:36 +00003414 if (IS_ERR(reg))
3415 return PTR_ERR(reg);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003416
Chris Wilson14415742012-04-17 15:31:33 +01003417 if (reg->obj) {
3418 struct drm_i915_gem_object *old = reg->obj;
3419
Chris Wilsond0a57782012-10-09 19:24:37 +01003420 ret = i915_gem_object_wait_fence(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00003421 if (ret)
3422 return ret;
3423
Chris Wilson14415742012-04-17 15:31:33 +01003424 i915_gem_object_fence_lost(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00003425 }
Chris Wilson14415742012-04-17 15:31:33 +01003426 } else
Eric Anholta09ba7f2009-08-29 12:49:51 -07003427 return 0;
Eric Anholta09ba7f2009-08-29 12:49:51 -07003428
Chris Wilson14415742012-04-17 15:31:33 +01003429 i915_gem_object_update_fence(obj, reg, enable);
Chris Wilson14415742012-04-17 15:31:33 +01003430
Chris Wilson9ce079e2012-04-17 15:31:30 +01003431 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003432}
3433
Chris Wilson4144f9b2014-09-11 08:43:48 +01003434static bool i915_gem_valid_gtt_space(struct i915_vma *vma,
Chris Wilson42d6ab42012-07-26 11:49:32 +01003435 unsigned long cache_level)
3436{
Chris Wilson4144f9b2014-09-11 08:43:48 +01003437 struct drm_mm_node *gtt_space = &vma->node;
Chris Wilson42d6ab42012-07-26 11:49:32 +01003438 struct drm_mm_node *other;
3439
Chris Wilson4144f9b2014-09-11 08:43:48 +01003440 /*
3441 * On some machines we have to be careful when putting differing types
3442 * of snoopable memory together to avoid the prefetcher crossing memory
3443 * domains and dying. During vm initialisation, we decide whether or not
3444 * these constraints apply and set the drm_mm.color_adjust
3445 * appropriately.
Chris Wilson42d6ab42012-07-26 11:49:32 +01003446 */
Chris Wilson4144f9b2014-09-11 08:43:48 +01003447 if (vma->vm->mm.color_adjust == NULL)
Chris Wilson42d6ab42012-07-26 11:49:32 +01003448 return true;
3449
Ben Widawskyc6cfb322013-07-05 14:41:06 -07003450 if (!drm_mm_node_allocated(gtt_space))
Chris Wilson42d6ab42012-07-26 11:49:32 +01003451 return true;
3452
3453 if (list_empty(&gtt_space->node_list))
3454 return true;
3455
3456 other = list_entry(gtt_space->node_list.prev, struct drm_mm_node, node_list);
3457 if (other->allocated && !other->hole_follows && other->color != cache_level)
3458 return false;
3459
3460 other = list_entry(gtt_space->node_list.next, struct drm_mm_node, node_list);
3461 if (other->allocated && !gtt_space->hole_follows && other->color != cache_level)
3462 return false;
3463
3464 return true;
3465}
3466
Jesse Barnesde151cf2008-11-12 10:03:55 -08003467/**
Eric Anholt673a3942008-07-30 12:06:12 -07003468 * Finds free space in the GTT aperture and binds the object there.
3469 */
Daniel Vetter262de142014-02-14 14:01:20 +01003470static struct i915_vma *
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003471i915_gem_object_bind_to_vm(struct drm_i915_gem_object *obj,
3472 struct i915_address_space *vm,
3473 unsigned alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02003474 uint64_t flags)
Eric Anholt673a3942008-07-30 12:06:12 -07003475{
Chris Wilson05394f32010-11-08 19:18:58 +00003476 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003477 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter5e783302010-11-14 22:32:36 +01003478 u32 size, fence_size, fence_alignment, unfenced_alignment;
Chris Wilsond23db882014-05-23 08:48:08 +02003479 unsigned long start =
3480 flags & PIN_OFFSET_BIAS ? flags & PIN_OFFSET_MASK : 0;
3481 unsigned long end =
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003482 flags & PIN_MAPPABLE ? dev_priv->gtt.mappable_end : vm->total;
Ben Widawsky2f633152013-07-17 12:19:03 -07003483 struct i915_vma *vma;
Chris Wilson07f73f62009-09-14 16:50:30 +01003484 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003485
Chris Wilsone28f8712011-07-18 13:11:49 -07003486 fence_size = i915_gem_get_gtt_size(dev,
3487 obj->base.size,
3488 obj->tiling_mode);
3489 fence_alignment = i915_gem_get_gtt_alignment(dev,
3490 obj->base.size,
Imre Deakd8651102013-01-07 21:47:33 +02003491 obj->tiling_mode, true);
Chris Wilsone28f8712011-07-18 13:11:49 -07003492 unfenced_alignment =
Imre Deakd8651102013-01-07 21:47:33 +02003493 i915_gem_get_gtt_alignment(dev,
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003494 obj->base.size,
3495 obj->tiling_mode, false);
Chris Wilsona00b10c2010-09-24 21:15:47 +01003496
Eric Anholt673a3942008-07-30 12:06:12 -07003497 if (alignment == 0)
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003498 alignment = flags & PIN_MAPPABLE ? fence_alignment :
Daniel Vetter5e783302010-11-14 22:32:36 +01003499 unfenced_alignment;
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003500 if (flags & PIN_MAPPABLE && alignment & (fence_alignment - 1)) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00003501 DRM_DEBUG("Invalid object alignment requested %u\n", alignment);
Daniel Vetter262de142014-02-14 14:01:20 +01003502 return ERR_PTR(-EINVAL);
Eric Anholt673a3942008-07-30 12:06:12 -07003503 }
3504
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003505 size = flags & PIN_MAPPABLE ? fence_size : obj->base.size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01003506
Chris Wilson654fc602010-05-27 13:18:21 +01003507 /* If the object is bigger than the entire aperture, reject it early
3508 * before evicting everything in a vain attempt to find space.
3509 */
Chris Wilsond23db882014-05-23 08:48:08 +02003510 if (obj->base.size > end) {
3511 DRM_DEBUG("Attempting to bind an object larger than the aperture: object=%zd > %s aperture=%lu\n",
Chris Wilsona36689c2013-05-21 16:58:49 +01003512 obj->base.size,
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003513 flags & PIN_MAPPABLE ? "mappable" : "total",
Chris Wilsond23db882014-05-23 08:48:08 +02003514 end);
Daniel Vetter262de142014-02-14 14:01:20 +01003515 return ERR_PTR(-E2BIG);
Chris Wilson654fc602010-05-27 13:18:21 +01003516 }
3517
Chris Wilson37e680a2012-06-07 15:38:42 +01003518 ret = i915_gem_object_get_pages(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02003519 if (ret)
Daniel Vetter262de142014-02-14 14:01:20 +01003520 return ERR_PTR(ret);
Chris Wilson6c085a72012-08-20 11:40:46 +02003521
Chris Wilsonfbdda6f2012-11-20 10:45:16 +00003522 i915_gem_object_pin_pages(obj);
3523
Ben Widawskyaccfef22013-08-14 11:38:35 +02003524 vma = i915_gem_obj_lookup_or_create_vma(obj, vm);
Daniel Vetter262de142014-02-14 14:01:20 +01003525 if (IS_ERR(vma))
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003526 goto err_unpin;
Ben Widawsky2f633152013-07-17 12:19:03 -07003527
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003528search_free:
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003529 ret = drm_mm_insert_node_in_range_generic(&vm->mm, &vma->node,
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003530 size, alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02003531 obj->cache_level,
3532 start, end,
Lauri Kasanen62347f92014-04-02 20:03:57 +03003533 DRM_MM_SEARCH_DEFAULT,
3534 DRM_MM_CREATE_DEFAULT);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003535 if (ret) {
Ben Widawskyf6cd1f12013-07-31 17:00:11 -07003536 ret = i915_gem_evict_something(dev, vm, size, alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02003537 obj->cache_level,
3538 start, end,
3539 flags);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003540 if (ret == 0)
3541 goto search_free;
Chris Wilson97311292009-09-21 00:22:34 +01003542
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003543 goto err_free_vma;
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003544 }
Chris Wilson4144f9b2014-09-11 08:43:48 +01003545 if (WARN_ON(!i915_gem_valid_gtt_space(vma, obj->cache_level))) {
Ben Widawsky2f633152013-07-17 12:19:03 -07003546 ret = -EINVAL;
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003547 goto err_remove_node;
Eric Anholt673a3942008-07-30 12:06:12 -07003548 }
3549
Daniel Vetter74163902012-02-15 23:50:21 +01003550 ret = i915_gem_gtt_prepare_object(obj);
Ben Widawsky2f633152013-07-17 12:19:03 -07003551 if (ret)
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003552 goto err_remove_node;
Eric Anholt673a3942008-07-30 12:06:12 -07003553
Ben Widawsky35c20a62013-05-31 11:28:48 -07003554 list_move_tail(&obj->global_list, &dev_priv->mm.bound_list);
Ben Widawskyca191b12013-07-31 17:00:14 -07003555 list_add_tail(&vma->mm_list, &vm->inactive_list);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01003556
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003557 trace_i915_vma_bind(vma, flags);
Daniel Vetter8ea99c92014-02-14 14:01:21 +01003558 vma->bind_vma(vma, obj->cache_level,
Chris Wilsonc826c442014-10-31 13:53:53 +00003559 flags & PIN_GLOBAL ? GLOBAL_BIND : 0);
Daniel Vetter8ea99c92014-02-14 14:01:21 +01003560
Daniel Vetter262de142014-02-14 14:01:20 +01003561 return vma;
Ben Widawsky2f633152013-07-17 12:19:03 -07003562
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003563err_remove_node:
Dan Carpenter6286ef92013-07-19 08:46:27 +03003564 drm_mm_remove_node(&vma->node);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003565err_free_vma:
Ben Widawsky2f633152013-07-17 12:19:03 -07003566 i915_gem_vma_destroy(vma);
Daniel Vetter262de142014-02-14 14:01:20 +01003567 vma = ERR_PTR(ret);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003568err_unpin:
Ben Widawsky2f633152013-07-17 12:19:03 -07003569 i915_gem_object_unpin_pages(obj);
Daniel Vetter262de142014-02-14 14:01:20 +01003570 return vma;
Eric Anholt673a3942008-07-30 12:06:12 -07003571}
3572
Chris Wilson000433b2013-08-08 14:41:09 +01003573bool
Chris Wilson2c225692013-08-09 12:26:45 +01003574i915_gem_clflush_object(struct drm_i915_gem_object *obj,
3575 bool force)
Eric Anholt673a3942008-07-30 12:06:12 -07003576{
Eric Anholt673a3942008-07-30 12:06:12 -07003577 /* If we don't have a page list set up, then we're not pinned
3578 * to GPU, and we can ignore the cache flush because it'll happen
3579 * again at bind time.
3580 */
Chris Wilson05394f32010-11-08 19:18:58 +00003581 if (obj->pages == NULL)
Chris Wilson000433b2013-08-08 14:41:09 +01003582 return false;
Eric Anholt673a3942008-07-30 12:06:12 -07003583
Imre Deak769ce462013-02-13 21:56:05 +02003584 /*
3585 * Stolen memory is always coherent with the GPU as it is explicitly
3586 * marked as wc by the system, or the system is cache-coherent.
3587 */
Chris Wilson6a2c4232014-11-04 04:51:40 -08003588 if (obj->stolen || obj->phys_handle)
Chris Wilson000433b2013-08-08 14:41:09 +01003589 return false;
Imre Deak769ce462013-02-13 21:56:05 +02003590
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003591 /* If the GPU is snooping the contents of the CPU cache,
3592 * we do not need to manually clear the CPU cache lines. However,
3593 * the caches are only snooped when the render cache is
3594 * flushed/invalidated. As we always have to emit invalidations
3595 * and flushes when moving into and out of the RENDER domain, correct
3596 * snooping behaviour occurs naturally as the result of our domain
3597 * tracking.
3598 */
Chris Wilson2c225692013-08-09 12:26:45 +01003599 if (!force && cpu_cache_is_coherent(obj->base.dev, obj->cache_level))
Chris Wilson000433b2013-08-08 14:41:09 +01003600 return false;
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003601
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003602 trace_i915_gem_object_clflush(obj);
Chris Wilson9da3da62012-06-01 15:20:22 +01003603 drm_clflush_sg(obj->pages);
Chris Wilson000433b2013-08-08 14:41:09 +01003604
3605 return true;
Eric Anholte47c68e2008-11-14 13:35:19 -08003606}
3607
3608/** Flushes the GTT write domain for the object if it's dirty. */
3609static void
Chris Wilson05394f32010-11-08 19:18:58 +00003610i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003611{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003612 uint32_t old_write_domain;
3613
Chris Wilson05394f32010-11-08 19:18:58 +00003614 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08003615 return;
3616
Chris Wilson63256ec2011-01-04 18:42:07 +00003617 /* No actual flushing is required for the GTT write domain. Writes
Eric Anholte47c68e2008-11-14 13:35:19 -08003618 * to it immediately go to main memory as far as we know, so there's
3619 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00003620 *
3621 * However, we do have to enforce the order so that all writes through
3622 * the GTT land before any writes to the device, such as updates to
3623 * the GATT itself.
Eric Anholte47c68e2008-11-14 13:35:19 -08003624 */
Chris Wilson63256ec2011-01-04 18:42:07 +00003625 wmb();
3626
Chris Wilson05394f32010-11-08 19:18:58 +00003627 old_write_domain = obj->base.write_domain;
3628 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003629
Daniel Vetterf99d7062014-06-19 16:01:59 +02003630 intel_fb_obj_flush(obj, false);
3631
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003632 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003633 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003634 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003635}
3636
3637/** Flushes the CPU write domain for the object if it's dirty. */
3638static void
Chris Wilson2c225692013-08-09 12:26:45 +01003639i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj,
3640 bool force)
Eric Anholte47c68e2008-11-14 13:35:19 -08003641{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003642 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08003643
Chris Wilson05394f32010-11-08 19:18:58 +00003644 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08003645 return;
3646
Chris Wilson000433b2013-08-08 14:41:09 +01003647 if (i915_gem_clflush_object(obj, force))
3648 i915_gem_chipset_flush(obj->base.dev);
3649
Chris Wilson05394f32010-11-08 19:18:58 +00003650 old_write_domain = obj->base.write_domain;
3651 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003652
Daniel Vetterf99d7062014-06-19 16:01:59 +02003653 intel_fb_obj_flush(obj, false);
3654
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003655 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003656 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003657 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003658}
3659
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003660/**
3661 * Moves a single object to the GTT read, and possibly write domain.
3662 *
3663 * This function returns when the move is complete, including waiting on
3664 * flushes to occur.
3665 */
Jesse Barnes79e53942008-11-07 14:24:08 -08003666int
Chris Wilson20217462010-11-23 15:26:33 +00003667i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003668{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003669 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilsondc8cd1e2014-08-09 17:37:22 +01003670 struct i915_vma *vma = i915_gem_obj_to_ggtt(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003671 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003672 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003673
Eric Anholt02354392008-11-26 13:58:13 -08003674 /* Not valid to be called on unbound objects. */
Chris Wilsondc8cd1e2014-08-09 17:37:22 +01003675 if (vma == NULL)
Eric Anholt02354392008-11-26 13:58:13 -08003676 return -EINVAL;
3677
Chris Wilson8d7e3de2011-02-07 15:23:02 +00003678 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
3679 return 0;
3680
Chris Wilson0201f1e2012-07-20 12:41:01 +01003681 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00003682 if (ret)
3683 return ret;
3684
Chris Wilsonc8725f32014-03-17 12:21:55 +00003685 i915_gem_object_retire(obj);
Chris Wilson2c225692013-08-09 12:26:45 +01003686 i915_gem_object_flush_cpu_write_domain(obj, false);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003687
Chris Wilsond0a57782012-10-09 19:24:37 +01003688 /* Serialise direct access to this object with the barriers for
3689 * coherent writes from the GPU, by effectively invalidating the
3690 * GTT domain upon first access.
3691 */
3692 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
3693 mb();
3694
Chris Wilson05394f32010-11-08 19:18:58 +00003695 old_write_domain = obj->base.write_domain;
3696 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003697
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003698 /* It should now be out of any other write domains, and we can update
3699 * the domain values for our changes.
3700 */
Chris Wilson05394f32010-11-08 19:18:58 +00003701 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
3702 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08003703 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003704 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
3705 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
3706 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08003707 }
3708
Daniel Vetterf99d7062014-06-19 16:01:59 +02003709 if (write)
3710 intel_fb_obj_invalidate(obj, NULL);
3711
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003712 trace_i915_gem_object_change_domain(obj,
3713 old_read_domains,
3714 old_write_domain);
3715
Chris Wilson8325a092012-04-24 15:52:35 +01003716 /* And bump the LRU for this access */
Chris Wilsondc8cd1e2014-08-09 17:37:22 +01003717 if (i915_gem_object_is_inactive(obj))
3718 list_move_tail(&vma->mm_list,
3719 &dev_priv->gtt.base.inactive_list);
Chris Wilson8325a092012-04-24 15:52:35 +01003720
Eric Anholte47c68e2008-11-14 13:35:19 -08003721 return 0;
3722}
3723
Chris Wilsone4ffd172011-04-04 09:44:39 +01003724int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
3725 enum i915_cache_level cache_level)
3726{
Daniel Vetter7bddb012012-02-09 17:15:47 +01003727 struct drm_device *dev = obj->base.dev;
Chris Wilsondf6f7832014-03-21 07:40:56 +00003728 struct i915_vma *vma, *next;
Chris Wilsone4ffd172011-04-04 09:44:39 +01003729 int ret;
3730
3731 if (obj->cache_level == cache_level)
3732 return 0;
3733
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08003734 if (i915_gem_obj_is_pinned(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003735 DRM_DEBUG("can not change the cache level of pinned objects\n");
3736 return -EBUSY;
3737 }
3738
Chris Wilsondf6f7832014-03-21 07:40:56 +00003739 list_for_each_entry_safe(vma, next, &obj->vma_list, vma_link) {
Chris Wilson4144f9b2014-09-11 08:43:48 +01003740 if (!i915_gem_valid_gtt_space(vma, cache_level)) {
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003741 ret = i915_vma_unbind(vma);
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003742 if (ret)
3743 return ret;
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003744 }
Chris Wilson42d6ab42012-07-26 11:49:32 +01003745 }
3746
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003747 if (i915_gem_obj_bound_any(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003748 ret = i915_gem_object_finish_gpu(obj);
3749 if (ret)
3750 return ret;
3751
3752 i915_gem_object_finish_gtt(obj);
3753
3754 /* Before SandyBridge, you could not use tiling or fence
3755 * registers with snooped memory, so relinquish any fences
3756 * currently pointing to our region in the aperture.
3757 */
Chris Wilson42d6ab42012-07-26 11:49:32 +01003758 if (INTEL_INFO(dev)->gen < 6) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003759 ret = i915_gem_object_put_fence(obj);
3760 if (ret)
3761 return ret;
3762 }
3763
Ben Widawsky6f65e292013-12-06 14:10:56 -08003764 list_for_each_entry(vma, &obj->vma_list, vma_link)
Daniel Vetter8ea99c92014-02-14 14:01:21 +01003765 if (drm_mm_node_allocated(&vma->node))
3766 vma->bind_vma(vma, cache_level,
Tvrtko Ursulinaff43762014-10-24 12:42:33 +01003767 vma->bound & GLOBAL_BIND);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003768 }
3769
Chris Wilson2c225692013-08-09 12:26:45 +01003770 list_for_each_entry(vma, &obj->vma_list, vma_link)
3771 vma->node.color = cache_level;
3772 obj->cache_level = cache_level;
3773
3774 if (cpu_write_needs_clflush(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003775 u32 old_read_domains, old_write_domain;
3776
3777 /* If we're coming from LLC cached, then we haven't
3778 * actually been tracking whether the data is in the
3779 * CPU cache or not, since we only allow one bit set
3780 * in obj->write_domain and have been skipping the clflushes.
3781 * Just set it to the CPU cache for now.
3782 */
Chris Wilsonc8725f32014-03-17 12:21:55 +00003783 i915_gem_object_retire(obj);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003784 WARN_ON(obj->base.write_domain & ~I915_GEM_DOMAIN_CPU);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003785
3786 old_read_domains = obj->base.read_domains;
3787 old_write_domain = obj->base.write_domain;
3788
3789 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3790 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3791
3792 trace_i915_gem_object_change_domain(obj,
3793 old_read_domains,
3794 old_write_domain);
3795 }
3796
Chris Wilsone4ffd172011-04-04 09:44:39 +01003797 return 0;
3798}
3799
Ben Widawsky199adf42012-09-21 17:01:20 -07003800int i915_gem_get_caching_ioctl(struct drm_device *dev, void *data,
3801 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003802{
Ben Widawsky199adf42012-09-21 17:01:20 -07003803 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003804 struct drm_i915_gem_object *obj;
3805 int ret;
3806
3807 ret = i915_mutex_lock_interruptible(dev);
3808 if (ret)
3809 return ret;
3810
3811 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3812 if (&obj->base == NULL) {
3813 ret = -ENOENT;
3814 goto unlock;
3815 }
3816
Chris Wilson651d7942013-08-08 14:41:10 +01003817 switch (obj->cache_level) {
3818 case I915_CACHE_LLC:
3819 case I915_CACHE_L3_LLC:
3820 args->caching = I915_CACHING_CACHED;
3821 break;
3822
Chris Wilson4257d3b2013-08-08 14:41:11 +01003823 case I915_CACHE_WT:
3824 args->caching = I915_CACHING_DISPLAY;
3825 break;
3826
Chris Wilson651d7942013-08-08 14:41:10 +01003827 default:
3828 args->caching = I915_CACHING_NONE;
3829 break;
3830 }
Chris Wilsone6994ae2012-07-10 10:27:08 +01003831
3832 drm_gem_object_unreference(&obj->base);
3833unlock:
3834 mutex_unlock(&dev->struct_mutex);
3835 return ret;
3836}
3837
Ben Widawsky199adf42012-09-21 17:01:20 -07003838int i915_gem_set_caching_ioctl(struct drm_device *dev, void *data,
3839 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003840{
Ben Widawsky199adf42012-09-21 17:01:20 -07003841 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003842 struct drm_i915_gem_object *obj;
3843 enum i915_cache_level level;
3844 int ret;
3845
Ben Widawsky199adf42012-09-21 17:01:20 -07003846 switch (args->caching) {
3847 case I915_CACHING_NONE:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003848 level = I915_CACHE_NONE;
3849 break;
Ben Widawsky199adf42012-09-21 17:01:20 -07003850 case I915_CACHING_CACHED:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003851 level = I915_CACHE_LLC;
3852 break;
Chris Wilson4257d3b2013-08-08 14:41:11 +01003853 case I915_CACHING_DISPLAY:
3854 level = HAS_WT(dev) ? I915_CACHE_WT : I915_CACHE_NONE;
3855 break;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003856 default:
3857 return -EINVAL;
3858 }
3859
Ben Widawsky3bc29132012-09-26 16:15:20 -07003860 ret = i915_mutex_lock_interruptible(dev);
3861 if (ret)
3862 return ret;
3863
Chris Wilsone6994ae2012-07-10 10:27:08 +01003864 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3865 if (&obj->base == NULL) {
3866 ret = -ENOENT;
3867 goto unlock;
3868 }
3869
3870 ret = i915_gem_object_set_cache_level(obj, level);
3871
3872 drm_gem_object_unreference(&obj->base);
3873unlock:
3874 mutex_unlock(&dev->struct_mutex);
3875 return ret;
3876}
3877
Chris Wilsoncc98b412013-08-09 12:25:09 +01003878static bool is_pin_display(struct drm_i915_gem_object *obj)
3879{
Oscar Mateo19656432014-05-16 14:20:43 +01003880 struct i915_vma *vma;
3881
Oscar Mateo19656432014-05-16 14:20:43 +01003882 vma = i915_gem_obj_to_ggtt(obj);
3883 if (!vma)
3884 return false;
3885
Chris Wilsoncc98b412013-08-09 12:25:09 +01003886 /* There are 3 sources that pin objects:
3887 * 1. The display engine (scanouts, sprites, cursors);
3888 * 2. Reservations for execbuffer;
3889 * 3. The user.
3890 *
3891 * We can ignore reservations as we hold the struct_mutex and
3892 * are only called outside of the reservation path. The user
3893 * can only increment pin_count once, and so if after
3894 * subtracting the potential reference by the user, any pin_count
3895 * remains, it must be due to another use by the display engine.
3896 */
Oscar Mateo19656432014-05-16 14:20:43 +01003897 return vma->pin_count - !!obj->user_pin_count;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003898}
3899
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003900/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003901 * Prepare buffer for display plane (scanout, cursors, etc).
3902 * Can be called from an uninterruptible phase (modesetting) and allows
3903 * any flushes to be pipelined (for pageflips).
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003904 */
3905int
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003906i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
3907 u32 alignment,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003908 struct intel_engine_cs *pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003909{
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003910 u32 old_read_domains, old_write_domain;
Oscar Mateo19656432014-05-16 14:20:43 +01003911 bool was_pin_display;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003912 int ret;
3913
Chris Wilson0be73282010-12-06 14:36:27 +00003914 if (pipelined != obj->ring) {
Ben Widawsky2911a352012-04-05 14:47:36 -07003915 ret = i915_gem_object_sync(obj, pipelined);
3916 if (ret)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003917 return ret;
3918 }
3919
Chris Wilsoncc98b412013-08-09 12:25:09 +01003920 /* Mark the pin_display early so that we account for the
3921 * display coherency whilst setting up the cache domains.
3922 */
Oscar Mateo19656432014-05-16 14:20:43 +01003923 was_pin_display = obj->pin_display;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003924 obj->pin_display = true;
3925
Eric Anholta7ef0642011-03-29 16:59:54 -07003926 /* The display engine is not coherent with the LLC cache on gen6. As
3927 * a result, we make sure that the pinning that is about to occur is
3928 * done with uncached PTEs. This is lowest common denominator for all
3929 * chipsets.
3930 *
3931 * However for gen6+, we could do better by using the GFDT bit instead
3932 * of uncaching, which would allow us to flush all the LLC-cached data
3933 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
3934 */
Chris Wilson651d7942013-08-08 14:41:10 +01003935 ret = i915_gem_object_set_cache_level(obj,
3936 HAS_WT(obj->base.dev) ? I915_CACHE_WT : I915_CACHE_NONE);
Eric Anholta7ef0642011-03-29 16:59:54 -07003937 if (ret)
Chris Wilsoncc98b412013-08-09 12:25:09 +01003938 goto err_unpin_display;
Eric Anholta7ef0642011-03-29 16:59:54 -07003939
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003940 /* As the user may map the buffer once pinned in the display plane
3941 * (e.g. libkms for the bootup splash), we have to ensure that we
3942 * always use map_and_fenceable for all scanout buffers.
3943 */
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003944 ret = i915_gem_obj_ggtt_pin(obj, alignment, PIN_MAPPABLE);
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003945 if (ret)
Chris Wilsoncc98b412013-08-09 12:25:09 +01003946 goto err_unpin_display;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003947
Chris Wilson2c225692013-08-09 12:26:45 +01003948 i915_gem_object_flush_cpu_write_domain(obj, true);
Chris Wilsonb118c1e2010-05-27 13:18:14 +01003949
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003950 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00003951 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003952
3953 /* It should now be out of any other write domains, and we can update
3954 * the domain values for our changes.
3955 */
Chris Wilsone5f1d962012-07-20 12:41:00 +01003956 obj->base.write_domain = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00003957 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003958
3959 trace_i915_gem_object_change_domain(obj,
3960 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003961 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003962
3963 return 0;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003964
3965err_unpin_display:
Oscar Mateo19656432014-05-16 14:20:43 +01003966 WARN_ON(was_pin_display != is_pin_display(obj));
3967 obj->pin_display = was_pin_display;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003968 return ret;
3969}
3970
3971void
3972i915_gem_object_unpin_from_display_plane(struct drm_i915_gem_object *obj)
3973{
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08003974 i915_gem_object_ggtt_unpin(obj);
Chris Wilsoncc98b412013-08-09 12:25:09 +01003975 obj->pin_display = is_pin_display(obj);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003976}
3977
Chris Wilson85345512010-11-13 09:49:11 +00003978int
Chris Wilsona8198ee2011-04-13 22:04:09 +01003979i915_gem_object_finish_gpu(struct drm_i915_gem_object *obj)
Chris Wilson85345512010-11-13 09:49:11 +00003980{
Chris Wilson88241782011-01-07 17:09:48 +00003981 int ret;
3982
Chris Wilsona8198ee2011-04-13 22:04:09 +01003983 if ((obj->base.read_domains & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson85345512010-11-13 09:49:11 +00003984 return 0;
3985
Chris Wilson0201f1e2012-07-20 12:41:01 +01003986 ret = i915_gem_object_wait_rendering(obj, false);
Chris Wilsonc501ae72011-12-14 13:57:23 +01003987 if (ret)
3988 return ret;
3989
Chris Wilsona8198ee2011-04-13 22:04:09 +01003990 /* Ensure that we invalidate the GPU's caches and TLBs. */
3991 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilsonc501ae72011-12-14 13:57:23 +01003992 return 0;
Chris Wilson85345512010-11-13 09:49:11 +00003993}
3994
Eric Anholte47c68e2008-11-14 13:35:19 -08003995/**
3996 * Moves a single object to the CPU read, and possibly write domain.
3997 *
3998 * This function returns when the move is complete, including waiting on
3999 * flushes to occur.
4000 */
Chris Wilsondabdfe02012-03-26 10:10:27 +02004001int
Chris Wilson919926a2010-11-12 13:42:53 +00004002i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08004003{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004004 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08004005 int ret;
4006
Chris Wilson8d7e3de2011-02-07 15:23:02 +00004007 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
4008 return 0;
4009
Chris Wilson0201f1e2012-07-20 12:41:01 +01004010 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00004011 if (ret)
4012 return ret;
4013
Chris Wilsonc8725f32014-03-17 12:21:55 +00004014 i915_gem_object_retire(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08004015 i915_gem_object_flush_gtt_write_domain(obj);
4016
Chris Wilson05394f32010-11-08 19:18:58 +00004017 old_write_domain = obj->base.write_domain;
4018 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004019
Eric Anholte47c68e2008-11-14 13:35:19 -08004020 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00004021 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Chris Wilson2c225692013-08-09 12:26:45 +01004022 i915_gem_clflush_object(obj, false);
Eric Anholte47c68e2008-11-14 13:35:19 -08004023
Chris Wilson05394f32010-11-08 19:18:58 +00004024 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08004025 }
4026
4027 /* It should now be out of any other write domains, and we can update
4028 * the domain values for our changes.
4029 */
Chris Wilson05394f32010-11-08 19:18:58 +00004030 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08004031
4032 /* If we're writing through the CPU, then the GPU read domains will
4033 * need to be invalidated at next use.
4034 */
4035 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00004036 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4037 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08004038 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08004039
Daniel Vetterf99d7062014-06-19 16:01:59 +02004040 if (write)
4041 intel_fb_obj_invalidate(obj, NULL);
4042
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004043 trace_i915_gem_object_change_domain(obj,
4044 old_read_domains,
4045 old_write_domain);
4046
Eric Anholt2ef7eea2008-11-10 10:53:25 -08004047 return 0;
4048}
4049
Eric Anholt673a3942008-07-30 12:06:12 -07004050/* Throttle our rendering by waiting until the ring has completed our requests
4051 * emitted over 20 msec ago.
4052 *
Eric Anholtb9624422009-06-03 07:27:35 +00004053 * Note that if we were to use the current jiffies each time around the loop,
4054 * we wouldn't escape the function with any frames outstanding if the time to
4055 * render a frame was over 20ms.
4056 *
Eric Anholt673a3942008-07-30 12:06:12 -07004057 * This should get us reasonable parallelism between CPU and GPU but also
4058 * relatively low latency when blocking on a particular request to finish.
4059 */
4060static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004061i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004062{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004063 struct drm_i915_private *dev_priv = dev->dev_private;
4064 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00004065 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004066 struct drm_i915_gem_request *request;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004067 struct intel_engine_cs *ring = NULL;
Daniel Vetterf69061b2012-12-06 09:01:42 +01004068 unsigned reset_counter;
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004069 u32 seqno = 0;
4070 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004071
Daniel Vetter308887a2012-11-14 17:14:06 +01004072 ret = i915_gem_wait_for_error(&dev_priv->gpu_error);
4073 if (ret)
4074 return ret;
4075
4076 ret = i915_gem_check_wedge(&dev_priv->gpu_error, false);
4077 if (ret)
4078 return ret;
Chris Wilsone110e8d2011-01-26 15:39:14 +00004079
Chris Wilson1c255952010-09-26 11:03:27 +01004080 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004081 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00004082 if (time_after_eq(request->emitted_jiffies, recent_enough))
4083 break;
4084
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004085 ring = request->ring;
4086 seqno = request->seqno;
Eric Anholtb9624422009-06-03 07:27:35 +00004087 }
Daniel Vetterf69061b2012-12-06 09:01:42 +01004088 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilson1c255952010-09-26 11:03:27 +01004089 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004090
4091 if (seqno == 0)
4092 return 0;
4093
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02004094 ret = __i915_wait_seqno(ring, seqno, reset_counter, true, NULL, NULL);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004095 if (ret == 0)
4096 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00004097
Eric Anholt673a3942008-07-30 12:06:12 -07004098 return ret;
4099}
4100
Chris Wilsond23db882014-05-23 08:48:08 +02004101static bool
4102i915_vma_misplaced(struct i915_vma *vma, uint32_t alignment, uint64_t flags)
4103{
4104 struct drm_i915_gem_object *obj = vma->obj;
4105
4106 if (alignment &&
4107 vma->node.start & (alignment - 1))
4108 return true;
4109
4110 if (flags & PIN_MAPPABLE && !obj->map_and_fenceable)
4111 return true;
4112
4113 if (flags & PIN_OFFSET_BIAS &&
4114 vma->node.start < (flags & PIN_OFFSET_MASK))
4115 return true;
4116
4117 return false;
4118}
4119
Eric Anholt673a3942008-07-30 12:06:12 -07004120int
Chris Wilson05394f32010-11-08 19:18:58 +00004121i915_gem_object_pin(struct drm_i915_gem_object *obj,
Ben Widawskyc37e2202013-07-31 16:59:58 -07004122 struct i915_address_space *vm,
Chris Wilson05394f32010-11-08 19:18:58 +00004123 uint32_t alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02004124 uint64_t flags)
Eric Anholt673a3942008-07-30 12:06:12 -07004125{
Ben Widawsky6e7186a2014-05-06 22:21:36 -07004126 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004127 struct i915_vma *vma;
Chris Wilsonef79e172014-10-31 13:53:52 +00004128 unsigned bound;
Eric Anholt673a3942008-07-30 12:06:12 -07004129 int ret;
4130
Ben Widawsky6e7186a2014-05-06 22:21:36 -07004131 if (WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base))
4132 return -ENODEV;
4133
Daniel Vetterbf3d1492014-02-14 14:01:12 +01004134 if (WARN_ON(flags & (PIN_GLOBAL | PIN_MAPPABLE) && !i915_is_ggtt(vm)))
Daniel Vetter1ec9e262014-02-14 14:01:11 +01004135 return -EINVAL;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004136
Chris Wilsonc826c442014-10-31 13:53:53 +00004137 if (WARN_ON((flags & (PIN_MAPPABLE | PIN_GLOBAL)) == PIN_MAPPABLE))
4138 return -EINVAL;
4139
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004140 vma = i915_gem_obj_to_vma(obj, vm);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004141 if (vma) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004142 if (WARN_ON(vma->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT))
4143 return -EBUSY;
4144
Chris Wilsond23db882014-05-23 08:48:08 +02004145 if (i915_vma_misplaced(vma, alignment, flags)) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004146 WARN(vma->pin_count,
Chris Wilsonae7d49d2010-08-04 12:37:41 +01004147 "bo is already pinned with incorrect alignment:"
Ben Widawskyf343c5f2013-07-05 14:41:04 -07004148 " offset=%lx, req.alignment=%x, req.map_and_fenceable=%d,"
Daniel Vetter75e9e912010-11-04 17:11:09 +01004149 " obj->map_and_fenceable=%d\n",
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004150 i915_gem_obj_offset(obj, vm), alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02004151 !!(flags & PIN_MAPPABLE),
Chris Wilson05394f32010-11-08 19:18:58 +00004152 obj->map_and_fenceable);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004153 ret = i915_vma_unbind(vma);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004154 if (ret)
4155 return ret;
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004156
4157 vma = NULL;
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004158 }
4159 }
4160
Chris Wilsonef79e172014-10-31 13:53:52 +00004161 bound = vma ? vma->bound : 0;
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004162 if (vma == NULL || !drm_mm_node_allocated(&vma->node)) {
Daniel Vetter262de142014-02-14 14:01:20 +01004163 vma = i915_gem_object_bind_to_vm(obj, vm, alignment, flags);
4164 if (IS_ERR(vma))
4165 return PTR_ERR(vma);
Chris Wilson22c344e2009-02-11 14:26:45 +00004166 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05004167
Tvrtko Ursulinaff43762014-10-24 12:42:33 +01004168 if (flags & PIN_GLOBAL && !(vma->bound & GLOBAL_BIND))
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004169 vma->bind_vma(vma, obj->cache_level, GLOBAL_BIND);
Daniel Vetter74898d72012-02-15 23:50:22 +01004170
Chris Wilsonef79e172014-10-31 13:53:52 +00004171 if ((bound ^ vma->bound) & GLOBAL_BIND) {
4172 bool mappable, fenceable;
4173 u32 fence_size, fence_alignment;
4174
4175 fence_size = i915_gem_get_gtt_size(obj->base.dev,
4176 obj->base.size,
4177 obj->tiling_mode);
4178 fence_alignment = i915_gem_get_gtt_alignment(obj->base.dev,
4179 obj->base.size,
4180 obj->tiling_mode,
4181 true);
4182
4183 fenceable = (vma->node.size == fence_size &&
4184 (vma->node.start & (fence_alignment - 1)) == 0);
4185
4186 mappable = (vma->node.start + obj->base.size <=
4187 dev_priv->gtt.mappable_end);
4188
4189 obj->map_and_fenceable = mappable && fenceable;
4190 }
4191
4192 WARN_ON(flags & PIN_MAPPABLE && !obj->map_and_fenceable);
4193
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004194 vma->pin_count++;
Daniel Vetter1ec9e262014-02-14 14:01:11 +01004195 if (flags & PIN_MAPPABLE)
4196 obj->pin_mappable |= true;
Eric Anholt673a3942008-07-30 12:06:12 -07004197
4198 return 0;
4199}
4200
4201void
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004202i915_gem_object_ggtt_unpin(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07004203{
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004204 struct i915_vma *vma = i915_gem_obj_to_ggtt(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004205
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004206 BUG_ON(!vma);
4207 BUG_ON(vma->pin_count == 0);
4208 BUG_ON(!i915_gem_obj_ggtt_bound(obj));
4209
4210 if (--vma->pin_count == 0)
Chris Wilson6299f992010-11-24 12:23:44 +00004211 obj->pin_mappable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07004212}
4213
Daniel Vetterd8ffa602014-05-13 12:11:26 +02004214bool
4215i915_gem_object_pin_fence(struct drm_i915_gem_object *obj)
4216{
4217 if (obj->fence_reg != I915_FENCE_REG_NONE) {
4218 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
4219 struct i915_vma *ggtt_vma = i915_gem_obj_to_ggtt(obj);
4220
4221 WARN_ON(!ggtt_vma ||
4222 dev_priv->fence_regs[obj->fence_reg].pin_count >
4223 ggtt_vma->pin_count);
4224 dev_priv->fence_regs[obj->fence_reg].pin_count++;
4225 return true;
4226 } else
4227 return false;
4228}
4229
4230void
4231i915_gem_object_unpin_fence(struct drm_i915_gem_object *obj)
4232{
4233 if (obj->fence_reg != I915_FENCE_REG_NONE) {
4234 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
4235 WARN_ON(dev_priv->fence_regs[obj->fence_reg].pin_count <= 0);
4236 dev_priv->fence_regs[obj->fence_reg].pin_count--;
4237 }
4238}
4239
Eric Anholt673a3942008-07-30 12:06:12 -07004240int
4241i915_gem_pin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00004242 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004243{
4244 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004245 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07004246 int ret;
4247
Daniel Vetter02f6bcc2013-12-18 16:30:22 +01004248 if (INTEL_INFO(dev)->gen >= 6)
4249 return -ENODEV;
4250
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004251 ret = i915_mutex_lock_interruptible(dev);
4252 if (ret)
4253 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004254
Chris Wilson05394f32010-11-08 19:18:58 +00004255 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004256 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004257 ret = -ENOENT;
4258 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07004259 }
Eric Anholt673a3942008-07-30 12:06:12 -07004260
Chris Wilson05394f32010-11-08 19:18:58 +00004261 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00004262 DRM_DEBUG("Attempting to pin a purgeable buffer\n");
Chris Wilson8c99e572014-01-31 11:34:58 +00004263 ret = -EFAULT;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004264 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004265 }
4266
Chris Wilson05394f32010-11-08 19:18:58 +00004267 if (obj->pin_filp != NULL && obj->pin_filp != file) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00004268 DRM_DEBUG("Already pinned in i915_gem_pin_ioctl(): %d\n",
Jesse Barnes79e53942008-11-07 14:24:08 -08004269 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004270 ret = -EINVAL;
4271 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08004272 }
4273
Daniel Vetteraa5f8022013-10-10 14:46:37 +02004274 if (obj->user_pin_count == ULONG_MAX) {
4275 ret = -EBUSY;
4276 goto out;
4277 }
4278
Chris Wilson93be8782013-01-02 10:31:22 +00004279 if (obj->user_pin_count == 0) {
Daniel Vetter1ec9e262014-02-14 14:01:11 +01004280 ret = i915_gem_obj_ggtt_pin(obj, args->alignment, PIN_MAPPABLE);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004281 if (ret)
4282 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07004283 }
4284
Chris Wilson93be8782013-01-02 10:31:22 +00004285 obj->user_pin_count++;
4286 obj->pin_filp = file;
4287
Ben Widawskyf343c5f2013-07-05 14:41:04 -07004288 args->offset = i915_gem_obj_ggtt_offset(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004289out:
Chris Wilson05394f32010-11-08 19:18:58 +00004290 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004291unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07004292 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004293 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004294}
4295
4296int
4297i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00004298 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004299{
4300 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004301 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01004302 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004303
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004304 ret = i915_mutex_lock_interruptible(dev);
4305 if (ret)
4306 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004307
Chris Wilson05394f32010-11-08 19:18:58 +00004308 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004309 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004310 ret = -ENOENT;
4311 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07004312 }
Chris Wilson76c1dec2010-09-25 11:22:51 +01004313
Chris Wilson05394f32010-11-08 19:18:58 +00004314 if (obj->pin_filp != file) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00004315 DRM_DEBUG("Not pinned by caller in i915_gem_pin_ioctl(): %d\n",
Jesse Barnes79e53942008-11-07 14:24:08 -08004316 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004317 ret = -EINVAL;
4318 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08004319 }
Chris Wilson05394f32010-11-08 19:18:58 +00004320 obj->user_pin_count--;
4321 if (obj->user_pin_count == 0) {
4322 obj->pin_filp = NULL;
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004323 i915_gem_object_ggtt_unpin(obj);
Jesse Barnes79e53942008-11-07 14:24:08 -08004324 }
Eric Anholt673a3942008-07-30 12:06:12 -07004325
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004326out:
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_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00004335 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004336{
4337 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004338 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01004339 int ret;
4340
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004341 ret = i915_mutex_lock_interruptible(dev);
4342 if (ret)
4343 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004344
Chris Wilson05394f32010-11-08 19:18:58 +00004345 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004346 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004347 ret = -ENOENT;
4348 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07004349 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08004350
Chris Wilson0be555b2010-08-04 15:36:30 +01004351 /* Count all active objects as busy, even if they are currently not used
4352 * by the gpu. Users of this interface expect objects to eventually
4353 * become non-busy without any further actions, therefore emit any
4354 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08004355 */
Daniel Vetter30dfebf2012-06-01 15:21:23 +02004356 ret = i915_gem_object_flush_active(obj);
4357
Chris Wilson05394f32010-11-08 19:18:58 +00004358 args->busy = obj->active;
Chris Wilsone9808ed2012-07-04 12:25:08 +01004359 if (obj->ring) {
4360 BUILD_BUG_ON(I915_NUM_RINGS > 16);
4361 args->busy |= intel_ring_flag(obj->ring) << 16;
4362 }
Eric Anholt673a3942008-07-30 12:06:12 -07004363
Chris Wilson05394f32010-11-08 19:18:58 +00004364 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004365unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07004366 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004367 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004368}
4369
4370int
4371i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
4372 struct drm_file *file_priv)
4373{
Akshay Joshi0206e352011-08-16 15:34:10 -04004374 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07004375}
4376
Chris Wilson3ef94da2009-09-14 16:50:29 +01004377int
4378i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
4379 struct drm_file *file_priv)
4380{
Daniel Vetter656bfa32014-11-20 09:26:30 +01004381 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004382 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004383 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01004384 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004385
4386 switch (args->madv) {
4387 case I915_MADV_DONTNEED:
4388 case I915_MADV_WILLNEED:
4389 break;
4390 default:
4391 return -EINVAL;
4392 }
4393
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004394 ret = i915_mutex_lock_interruptible(dev);
4395 if (ret)
4396 return ret;
4397
Chris Wilson05394f32010-11-08 19:18:58 +00004398 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004399 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004400 ret = -ENOENT;
4401 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004402 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01004403
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004404 if (i915_gem_obj_is_pinned(obj)) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004405 ret = -EINVAL;
4406 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004407 }
4408
Daniel Vetter656bfa32014-11-20 09:26:30 +01004409 if (obj->pages &&
4410 obj->tiling_mode != I915_TILING_NONE &&
4411 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES) {
4412 if (obj->madv == I915_MADV_WILLNEED)
4413 i915_gem_object_unpin_pages(obj);
4414 if (args->madv == I915_MADV_WILLNEED)
4415 i915_gem_object_pin_pages(obj);
4416 }
4417
Chris Wilson05394f32010-11-08 19:18:58 +00004418 if (obj->madv != __I915_MADV_PURGED)
4419 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004420
Chris Wilson6c085a72012-08-20 11:40:46 +02004421 /* if the object is no longer attached, discard its backing storage */
4422 if (i915_gem_object_is_purgeable(obj) && obj->pages == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01004423 i915_gem_object_truncate(obj);
4424
Chris Wilson05394f32010-11-08 19:18:58 +00004425 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01004426
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004427out:
Chris Wilson05394f32010-11-08 19:18:58 +00004428 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004429unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01004430 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004431 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004432}
4433
Chris Wilson37e680a2012-06-07 15:38:42 +01004434void i915_gem_object_init(struct drm_i915_gem_object *obj,
4435 const struct drm_i915_gem_object_ops *ops)
Chris Wilson0327d6b2012-08-11 15:41:06 +01004436{
Ben Widawsky35c20a62013-05-31 11:28:48 -07004437 INIT_LIST_HEAD(&obj->global_list);
Chris Wilson0327d6b2012-08-11 15:41:06 +01004438 INIT_LIST_HEAD(&obj->ring_list);
Ben Widawskyb25cb2f2013-08-14 11:38:33 +02004439 INIT_LIST_HEAD(&obj->obj_exec_link);
Ben Widawsky2f633152013-07-17 12:19:03 -07004440 INIT_LIST_HEAD(&obj->vma_list);
Chris Wilson0327d6b2012-08-11 15:41:06 +01004441
Chris Wilson37e680a2012-06-07 15:38:42 +01004442 obj->ops = ops;
4443
Chris Wilson0327d6b2012-08-11 15:41:06 +01004444 obj->fence_reg = I915_FENCE_REG_NONE;
4445 obj->madv = I915_MADV_WILLNEED;
Chris Wilson0327d6b2012-08-11 15:41:06 +01004446
4447 i915_gem_info_add_obj(obj->base.dev->dev_private, obj->base.size);
4448}
4449
Chris Wilson37e680a2012-06-07 15:38:42 +01004450static const struct drm_i915_gem_object_ops i915_gem_object_ops = {
4451 .get_pages = i915_gem_object_get_pages_gtt,
4452 .put_pages = i915_gem_object_put_pages_gtt,
4453};
4454
Chris Wilson05394f32010-11-08 19:18:58 +00004455struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
4456 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00004457{
Daniel Vetterc397b902010-04-09 19:05:07 +00004458 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07004459 struct address_space *mapping;
Daniel Vetter1a240d42012-11-29 22:18:51 +01004460 gfp_t mask;
Daniel Vetterc397b902010-04-09 19:05:07 +00004461
Chris Wilson42dcedd2012-11-15 11:32:30 +00004462 obj = i915_gem_object_alloc(dev);
Daniel Vetterc397b902010-04-09 19:05:07 +00004463 if (obj == NULL)
4464 return NULL;
4465
4466 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
Chris Wilson42dcedd2012-11-15 11:32:30 +00004467 i915_gem_object_free(obj);
Daniel Vetterc397b902010-04-09 19:05:07 +00004468 return NULL;
4469 }
4470
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004471 mask = GFP_HIGHUSER | __GFP_RECLAIMABLE;
4472 if (IS_CRESTLINE(dev) || IS_BROADWATER(dev)) {
4473 /* 965gm cannot relocate objects above 4GiB. */
4474 mask &= ~__GFP_HIGHMEM;
4475 mask |= __GFP_DMA32;
4476 }
4477
Al Viro496ad9a2013-01-23 17:07:38 -05004478 mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004479 mapping_set_gfp_mask(mapping, mask);
Hugh Dickins5949eac2011-06-27 16:18:18 -07004480
Chris Wilson37e680a2012-06-07 15:38:42 +01004481 i915_gem_object_init(obj, &i915_gem_object_ops);
Chris Wilson73aa8082010-09-30 11:46:12 +01004482
Daniel Vetterc397b902010-04-09 19:05:07 +00004483 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
4484 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4485
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02004486 if (HAS_LLC(dev)) {
4487 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07004488 * cache) for about a 10% performance improvement
4489 * compared to uncached. Graphics requests other than
4490 * display scanout are coherent with the CPU in
4491 * accessing this cache. This means in this mode we
4492 * don't need to clflush on the CPU side, and on the
4493 * GPU side we only need to flush internal caches to
4494 * get data visible to the CPU.
4495 *
4496 * However, we maintain the display planes as UC, and so
4497 * need to rebind when first used as such.
4498 */
4499 obj->cache_level = I915_CACHE_LLC;
4500 } else
4501 obj->cache_level = I915_CACHE_NONE;
4502
Daniel Vetterd861e332013-07-24 23:25:03 +02004503 trace_i915_gem_object_create(obj);
4504
Chris Wilson05394f32010-11-08 19:18:58 +00004505 return obj;
Daniel Vetterac52bc52010-04-09 19:05:06 +00004506}
4507
Chris Wilson340fbd82014-05-22 09:16:52 +01004508static bool discard_backing_storage(struct drm_i915_gem_object *obj)
4509{
4510 /* If we are the last user of the backing storage (be it shmemfs
4511 * pages or stolen etc), we know that the pages are going to be
4512 * immediately released. In this case, we can then skip copying
4513 * back the contents from the GPU.
4514 */
4515
4516 if (obj->madv != I915_MADV_WILLNEED)
4517 return false;
4518
4519 if (obj->base.filp == NULL)
4520 return true;
4521
4522 /* At first glance, this looks racy, but then again so would be
4523 * userspace racing mmap against close. However, the first external
4524 * reference to the filp can only be obtained through the
4525 * i915_gem_mmap_ioctl() which safeguards us against the user
4526 * acquiring such a reference whilst we are in the middle of
4527 * freeing the object.
4528 */
4529 return atomic_long_read(&obj->base.filp->f_count) == 1;
4530}
4531
Chris Wilson1488fc02012-04-24 15:47:31 +01004532void i915_gem_free_object(struct drm_gem_object *gem_obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01004533{
Chris Wilson1488fc02012-04-24 15:47:31 +01004534 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00004535 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004536 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004537 struct i915_vma *vma, *next;
Chris Wilsonbe726152010-07-23 23:18:50 +01004538
Paulo Zanonif65c9162013-11-27 18:20:34 -02004539 intel_runtime_pm_get(dev_priv);
4540
Chris Wilson26e12f892011-03-20 11:20:19 +00004541 trace_i915_gem_object_destroy(obj);
4542
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004543 list_for_each_entry_safe(vma, next, &obj->vma_list, vma_link) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004544 int ret;
4545
4546 vma->pin_count = 0;
4547 ret = i915_vma_unbind(vma);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004548 if (WARN_ON(ret == -ERESTARTSYS)) {
4549 bool was_interruptible;
Chris Wilson1488fc02012-04-24 15:47:31 +01004550
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004551 was_interruptible = dev_priv->mm.interruptible;
4552 dev_priv->mm.interruptible = false;
Chris Wilson1488fc02012-04-24 15:47:31 +01004553
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004554 WARN_ON(i915_vma_unbind(vma));
Chris Wilson1488fc02012-04-24 15:47:31 +01004555
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004556 dev_priv->mm.interruptible = was_interruptible;
4557 }
Chris Wilson1488fc02012-04-24 15:47:31 +01004558 }
4559
Ben Widawsky1d64ae72013-05-31 14:46:20 -07004560 /* Stolen objects don't hold a ref, but do hold pin count. Fix that up
4561 * before progressing. */
4562 if (obj->stolen)
4563 i915_gem_object_unpin_pages(obj);
4564
Daniel Vettera071fa02014-06-18 23:28:09 +02004565 WARN_ON(obj->frontbuffer_bits);
4566
Daniel Vetter656bfa32014-11-20 09:26:30 +01004567 if (obj->pages && obj->madv == I915_MADV_WILLNEED &&
4568 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES &&
4569 obj->tiling_mode != I915_TILING_NONE)
4570 i915_gem_object_unpin_pages(obj);
4571
Ben Widawsky401c29f2013-05-31 11:28:47 -07004572 if (WARN_ON(obj->pages_pin_count))
4573 obj->pages_pin_count = 0;
Chris Wilson340fbd82014-05-22 09:16:52 +01004574 if (discard_backing_storage(obj))
Chris Wilson55372522014-03-25 13:23:06 +00004575 obj->madv = I915_MADV_DONTNEED;
Chris Wilson37e680a2012-06-07 15:38:42 +01004576 i915_gem_object_put_pages(obj);
Chris Wilsond8cb5082012-08-11 15:41:03 +01004577 i915_gem_object_free_mmap_offset(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01004578
Chris Wilson9da3da62012-06-01 15:20:22 +01004579 BUG_ON(obj->pages);
4580
Chris Wilson2f745ad2012-09-04 21:02:58 +01004581 if (obj->base.import_attach)
4582 drm_prime_gem_destroy(&obj->base, NULL);
Chris Wilsonbe726152010-07-23 23:18:50 +01004583
Chris Wilson5cc9ed42014-05-16 14:22:37 +01004584 if (obj->ops->release)
4585 obj->ops->release(obj);
4586
Chris Wilson05394f32010-11-08 19:18:58 +00004587 drm_gem_object_release(&obj->base);
4588 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01004589
Chris Wilson05394f32010-11-08 19:18:58 +00004590 kfree(obj->bit_17);
Chris Wilson42dcedd2012-11-15 11:32:30 +00004591 i915_gem_object_free(obj);
Paulo Zanonif65c9162013-11-27 18:20:34 -02004592
4593 intel_runtime_pm_put(dev_priv);
Chris Wilsonbe726152010-07-23 23:18:50 +01004594}
4595
Daniel Vettere656a6c2013-08-14 14:14:04 +02004596struct i915_vma *i915_gem_obj_to_vma(struct drm_i915_gem_object *obj,
Ben Widawsky2f633152013-07-17 12:19:03 -07004597 struct i915_address_space *vm)
4598{
Daniel Vettere656a6c2013-08-14 14:14:04 +02004599 struct i915_vma *vma;
4600 list_for_each_entry(vma, &obj->vma_list, vma_link)
4601 if (vma->vm == vm)
4602 return vma;
4603
4604 return NULL;
4605}
4606
Ben Widawsky2f633152013-07-17 12:19:03 -07004607void i915_gem_vma_destroy(struct i915_vma *vma)
4608{
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004609 struct i915_address_space *vm = NULL;
Ben Widawsky2f633152013-07-17 12:19:03 -07004610 WARN_ON(vma->node.allocated);
Chris Wilsonaaa05662013-08-20 12:56:40 +01004611
4612 /* Keep the vma as a placeholder in the execbuffer reservation lists */
4613 if (!list_empty(&vma->exec_list))
4614 return;
4615
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004616 vm = vma->vm;
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004617
Daniel Vetter841cd772014-08-06 15:04:48 +02004618 if (!i915_is_ggtt(vm))
4619 i915_ppgtt_put(i915_vm_to_ppgtt(vm));
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004620
Ben Widawsky8b9c2b92013-07-31 17:00:16 -07004621 list_del(&vma->vma_link);
Daniel Vetterb93dab62013-08-26 11:23:47 +02004622
Ben Widawsky2f633152013-07-17 12:19:03 -07004623 kfree(vma);
4624}
4625
Chris Wilsone3efda42014-04-09 09:19:41 +01004626static void
4627i915_gem_stop_ringbuffers(struct drm_device *dev)
4628{
4629 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004630 struct intel_engine_cs *ring;
Chris Wilsone3efda42014-04-09 09:19:41 +01004631 int i;
4632
4633 for_each_ring(ring, dev_priv, i)
Oscar Mateoa83014d2014-07-24 17:04:21 +01004634 dev_priv->gt.stop_ring(ring);
Chris Wilsone3efda42014-04-09 09:19:41 +01004635}
4636
Jesse Barnes5669fca2009-02-17 15:13:31 -08004637int
Chris Wilson45c5f202013-10-16 11:50:01 +01004638i915_gem_suspend(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07004639{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004640 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson45c5f202013-10-16 11:50:01 +01004641 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07004642
Chris Wilson45c5f202013-10-16 11:50:01 +01004643 mutex_lock(&dev->struct_mutex);
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004644 ret = i915_gpu_idle(dev);
Chris Wilsonf7403342013-09-13 23:57:04 +01004645 if (ret)
Chris Wilson45c5f202013-10-16 11:50:01 +01004646 goto err;
Chris Wilsonf7403342013-09-13 23:57:04 +01004647
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004648 i915_gem_retire_requests(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07004649
Chris Wilson29105cc2010-01-07 10:39:13 +00004650 /* Under UMS, be paranoid and evict. */
Chris Wilsona39d7ef2012-04-24 18:22:52 +01004651 if (!drm_core_check_feature(dev, DRIVER_MODESET))
Chris Wilson6c085a72012-08-20 11:40:46 +02004652 i915_gem_evict_everything(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00004653
Chris Wilsone3efda42014-04-09 09:19:41 +01004654 i915_gem_stop_ringbuffers(dev);
Chris Wilson45c5f202013-10-16 11:50:01 +01004655 mutex_unlock(&dev->struct_mutex);
4656
4657 del_timer_sync(&dev_priv->gpu_error.hangcheck_timer);
Chris Wilson29105cc2010-01-07 10:39:13 +00004658 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
Deepak S274fa1c2014-08-05 07:51:20 -07004659 flush_delayed_work(&dev_priv->mm.idle_work);
Chris Wilson29105cc2010-01-07 10:39:13 +00004660
Eric Anholt673a3942008-07-30 12:06:12 -07004661 return 0;
Chris Wilson45c5f202013-10-16 11:50:01 +01004662
4663err:
4664 mutex_unlock(&dev->struct_mutex);
4665 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004666}
4667
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004668int i915_gem_l3_remap(struct intel_engine_cs *ring, int slice)
Ben Widawskyb9524a12012-05-25 16:56:24 -07004669{
Ben Widawskyc3787e22013-09-17 21:12:44 -07004670 struct drm_device *dev = ring->dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004671 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07004672 u32 reg_base = GEN7_L3LOG_BASE + (slice * 0x200);
4673 u32 *remap_info = dev_priv->l3_parity.remap_info[slice];
Ben Widawskyc3787e22013-09-17 21:12:44 -07004674 int i, ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004675
Ben Widawsky040d2ba2013-09-19 11:01:40 -07004676 if (!HAS_L3_DPF(dev) || !remap_info)
Ben Widawskyc3787e22013-09-17 21:12:44 -07004677 return 0;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004678
Ben Widawskyc3787e22013-09-17 21:12:44 -07004679 ret = intel_ring_begin(ring, GEN7_L3LOG_SIZE / 4 * 3);
4680 if (ret)
4681 return ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004682
Ben Widawskyc3787e22013-09-17 21:12:44 -07004683 /*
4684 * Note: We do not worry about the concurrent register cacheline hang
4685 * here because no other code should access these registers other than
4686 * at initialization time.
4687 */
Ben Widawskyb9524a12012-05-25 16:56:24 -07004688 for (i = 0; i < GEN7_L3LOG_SIZE; i += 4) {
Ben Widawskyc3787e22013-09-17 21:12:44 -07004689 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
4690 intel_ring_emit(ring, reg_base + i);
4691 intel_ring_emit(ring, remap_info[i/4]);
Ben Widawskyb9524a12012-05-25 16:56:24 -07004692 }
4693
Ben Widawskyc3787e22013-09-17 21:12:44 -07004694 intel_ring_advance(ring);
Ben Widawskyb9524a12012-05-25 16:56:24 -07004695
Ben Widawskyc3787e22013-09-17 21:12:44 -07004696 return ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004697}
4698
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004699void i915_gem_init_swizzling(struct drm_device *dev)
4700{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004701 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004702
Daniel Vetter11782b02012-01-31 16:47:55 +01004703 if (INTEL_INFO(dev)->gen < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004704 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
4705 return;
4706
4707 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
4708 DISP_TILE_SURFACE_SWIZZLING);
4709
Daniel Vetter11782b02012-01-31 16:47:55 +01004710 if (IS_GEN5(dev))
4711 return;
4712
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004713 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
4714 if (IS_GEN6(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004715 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_SNB));
Ben Widawsky8782e262012-12-18 10:31:23 -08004716 else if (IS_GEN7(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004717 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_IVB));
Ben Widawsky31a53362013-11-02 21:07:04 -07004718 else if (IS_GEN8(dev))
4719 I915_WRITE(GAMTARBMODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_BDW));
Ben Widawsky8782e262012-12-18 10:31:23 -08004720 else
4721 BUG();
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004722}
Daniel Vettere21af882012-02-09 20:53:27 +01004723
Chris Wilson67b1b572012-07-05 23:49:40 +01004724static bool
4725intel_enable_blt(struct drm_device *dev)
4726{
4727 if (!HAS_BLT(dev))
4728 return false;
4729
4730 /* The blitter was dysfunctional on early prototypes */
4731 if (IS_GEN6(dev) && dev->pdev->revision < 8) {
4732 DRM_INFO("BLT not supported on this pre-production hardware;"
4733 " graphics performance will be degraded.\n");
4734 return false;
4735 }
4736
4737 return true;
4738}
4739
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004740static void init_unused_ring(struct drm_device *dev, u32 base)
4741{
4742 struct drm_i915_private *dev_priv = dev->dev_private;
4743
4744 I915_WRITE(RING_CTL(base), 0);
4745 I915_WRITE(RING_HEAD(base), 0);
4746 I915_WRITE(RING_TAIL(base), 0);
4747 I915_WRITE(RING_START(base), 0);
4748}
4749
4750static void init_unused_rings(struct drm_device *dev)
4751{
4752 if (IS_I830(dev)) {
4753 init_unused_ring(dev, PRB1_BASE);
4754 init_unused_ring(dev, SRB0_BASE);
4755 init_unused_ring(dev, SRB1_BASE);
4756 init_unused_ring(dev, SRB2_BASE);
4757 init_unused_ring(dev, SRB3_BASE);
4758 } else if (IS_GEN2(dev)) {
4759 init_unused_ring(dev, SRB0_BASE);
4760 init_unused_ring(dev, SRB1_BASE);
4761 } else if (IS_GEN3(dev)) {
4762 init_unused_ring(dev, PRB1_BASE);
4763 init_unused_ring(dev, PRB2_BASE);
4764 }
4765}
4766
Oscar Mateoa83014d2014-07-24 17:04:21 +01004767int i915_gem_init_rings(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004768{
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004769 struct drm_i915_private *dev_priv = dev->dev_private;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004770 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004771
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004772 /*
4773 * At least 830 can leave some of the unused rings
4774 * "active" (ie. head != tail) after resume which
4775 * will prevent c3 entry. Makes sure all unused rings
4776 * are totally idle.
4777 */
4778 init_unused_rings(dev);
4779
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004780 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004781 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00004782 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004783
4784 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004785 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004786 if (ret)
4787 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08004788 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01004789
Chris Wilson67b1b572012-07-05 23:49:40 +01004790 if (intel_enable_blt(dev)) {
Chris Wilson549f7362010-10-19 11:19:32 +01004791 ret = intel_init_blt_ring_buffer(dev);
4792 if (ret)
4793 goto cleanup_bsd_ring;
4794 }
4795
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004796 if (HAS_VEBOX(dev)) {
4797 ret = intel_init_vebox_ring_buffer(dev);
4798 if (ret)
4799 goto cleanup_blt_ring;
4800 }
4801
Zhao Yakui845f74a2014-04-17 10:37:37 +08004802 if (HAS_BSD2(dev)) {
4803 ret = intel_init_bsd2_ring_buffer(dev);
4804 if (ret)
4805 goto cleanup_vebox_ring;
4806 }
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004807
Mika Kuoppala99433932013-01-22 14:12:17 +02004808 ret = i915_gem_set_seqno(dev, ((u32)~0 - 0x1000));
4809 if (ret)
Zhao Yakui845f74a2014-04-17 10:37:37 +08004810 goto cleanup_bsd2_ring;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004811
4812 return 0;
4813
Zhao Yakui845f74a2014-04-17 10:37:37 +08004814cleanup_bsd2_ring:
4815 intel_cleanup_ring_buffer(&dev_priv->ring[VCS2]);
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004816cleanup_vebox_ring:
4817 intel_cleanup_ring_buffer(&dev_priv->ring[VECS]);
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004818cleanup_blt_ring:
4819 intel_cleanup_ring_buffer(&dev_priv->ring[BCS]);
4820cleanup_bsd_ring:
4821 intel_cleanup_ring_buffer(&dev_priv->ring[VCS]);
4822cleanup_render_ring:
4823 intel_cleanup_ring_buffer(&dev_priv->ring[RCS]);
4824
4825 return ret;
4826}
4827
4828int
4829i915_gem_init_hw(struct drm_device *dev)
4830{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004831 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07004832 int ret, i;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004833
4834 if (INTEL_INFO(dev)->gen < 6 && !intel_enable_gtt())
4835 return -EIO;
4836
Ben Widawsky59124502013-07-04 11:02:05 -07004837 if (dev_priv->ellc_size)
Ben Widawsky05e21cc2013-07-04 11:02:04 -07004838 I915_WRITE(HSW_IDICR, I915_READ(HSW_IDICR) | IDIHASHMSK(0xf));
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004839
Ville Syrjälä0bf21342013-11-29 14:56:12 +02004840 if (IS_HASWELL(dev))
4841 I915_WRITE(MI_PREDICATE_RESULT_2, IS_HSW_GT3(dev) ?
4842 LOWER_SLICE_ENABLED : LOWER_SLICE_DISABLED);
Rodrigo Vivi94353732013-08-28 16:45:46 -03004843
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004844 if (HAS_PCH_NOP(dev)) {
Daniel Vetter6ba844b2014-01-22 23:39:30 +01004845 if (IS_IVYBRIDGE(dev)) {
4846 u32 temp = I915_READ(GEN7_MSG_CTL);
4847 temp &= ~(WAIT_FOR_PCH_FLR_ACK | WAIT_FOR_PCH_RESET_ACK);
4848 I915_WRITE(GEN7_MSG_CTL, temp);
4849 } else if (INTEL_INFO(dev)->gen >= 7) {
4850 u32 temp = I915_READ(HSW_NDE_RSTWRN_OPT);
4851 temp &= ~RESET_PCH_HANDSHAKE_ENABLE;
4852 I915_WRITE(HSW_NDE_RSTWRN_OPT, temp);
4853 }
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004854 }
4855
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004856 i915_gem_init_swizzling(dev);
4857
Oscar Mateoa83014d2014-07-24 17:04:21 +01004858 ret = dev_priv->gt.init_rings(dev);
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004859 if (ret)
Mika Kuoppala99433932013-01-22 14:12:17 +02004860 return ret;
4861
Ben Widawskyc3787e22013-09-17 21:12:44 -07004862 for (i = 0; i < NUM_L3_SLICES(dev); i++)
4863 i915_gem_l3_remap(&dev_priv->ring[RCS], i);
4864
Ben Widawsky254f9652012-06-04 14:42:42 -07004865 /*
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004866 * XXX: Contexts should only be initialized once. Doing a switch to the
4867 * default context switch however is something we'd like to do after
4868 * reset or thaw (the latter may not actually be necessary for HW, but
4869 * goes with our code better). Context switching requires rings (for
4870 * the do_switch), but before enabling PPGTT. So don't move this.
Ben Widawsky254f9652012-06-04 14:42:42 -07004871 */
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004872 ret = i915_gem_context_enable(dev_priv);
Chris Wilson60990322014-04-09 09:19:42 +01004873 if (ret && ret != -EIO) {
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004874 DRM_ERROR("Context enable failed %d\n", ret);
Chris Wilson60990322014-04-09 09:19:42 +01004875 i915_gem_cleanup_ringbuffer(dev);
Daniel Vetter82460d92014-08-06 20:19:53 +02004876
4877 return ret;
4878 }
4879
4880 ret = i915_ppgtt_init_hw(dev);
4881 if (ret && ret != -EIO) {
4882 DRM_ERROR("PPGTT enable failed %d\n", ret);
4883 i915_gem_cleanup_ringbuffer(dev);
Ben Widawskyb7c36d22013-04-08 18:43:56 -07004884 }
Daniel Vettere21af882012-02-09 20:53:27 +01004885
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004886 return ret;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004887}
4888
Chris Wilson1070a422012-04-24 15:47:41 +01004889int i915_gem_init(struct drm_device *dev)
4890{
4891 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson1070a422012-04-24 15:47:41 +01004892 int ret;
4893
Oscar Mateo127f1002014-07-24 17:04:11 +01004894 i915.enable_execlists = intel_sanitize_enable_execlists(dev,
4895 i915.enable_execlists);
4896
Chris Wilson1070a422012-04-24 15:47:41 +01004897 mutex_lock(&dev->struct_mutex);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004898
4899 if (IS_VALLEYVIEW(dev)) {
4900 /* VLVA0 (potential hack), BIOS isn't actually waking us */
Imre Deak981a5ae2014-04-14 20:24:22 +03004901 I915_WRITE(VLV_GTLC_WAKE_CTRL, VLV_GTLC_ALLOWWAKEREQ);
4902 if (wait_for((I915_READ(VLV_GTLC_PW_STATUS) &
4903 VLV_GTLC_ALLOWWAKEACK), 10))
Jesse Barnesd62b4892013-03-08 10:45:53 -08004904 DRM_DEBUG_DRIVER("allow wake ack timed out\n");
4905 }
4906
Oscar Mateoa83014d2014-07-24 17:04:21 +01004907 if (!i915.enable_execlists) {
4908 dev_priv->gt.do_execbuf = i915_gem_ringbuffer_submission;
4909 dev_priv->gt.init_rings = i915_gem_init_rings;
4910 dev_priv->gt.cleanup_ring = intel_cleanup_ring_buffer;
4911 dev_priv->gt.stop_ring = intel_stop_ring_buffer;
Oscar Mateo454afeb2014-07-24 17:04:22 +01004912 } else {
4913 dev_priv->gt.do_execbuf = intel_execlists_submission;
4914 dev_priv->gt.init_rings = intel_logical_rings_init;
4915 dev_priv->gt.cleanup_ring = intel_logical_ring_cleanup;
4916 dev_priv->gt.stop_ring = intel_logical_ring_stop;
Oscar Mateoa83014d2014-07-24 17:04:21 +01004917 }
4918
Daniel Vetter6c5566a2014-08-06 15:04:50 +02004919 ret = i915_gem_init_userptr(dev);
4920 if (ret) {
4921 mutex_unlock(&dev->struct_mutex);
4922 return ret;
4923 }
4924
Ben Widawskyd7e50082012-12-18 10:31:25 -08004925 i915_gem_init_global_gtt(dev);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004926
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004927 ret = i915_gem_context_init(dev);
Mika Kuoppalae3848692014-01-31 17:14:02 +02004928 if (ret) {
4929 mutex_unlock(&dev->struct_mutex);
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004930 return ret;
Mika Kuoppalae3848692014-01-31 17:14:02 +02004931 }
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004932
Chris Wilson1070a422012-04-24 15:47:41 +01004933 ret = i915_gem_init_hw(dev);
Chris Wilson60990322014-04-09 09:19:42 +01004934 if (ret == -EIO) {
4935 /* Allow ring initialisation to fail by marking the GPU as
4936 * wedged. But we only want to do this where the GPU is angry,
4937 * for all other failure, such as an allocation failure, bail.
4938 */
4939 DRM_ERROR("Failed to initialize GPU, declaring it wedged\n");
4940 atomic_set_mask(I915_WEDGED, &dev_priv->gpu_error.reset_counter);
4941 ret = 0;
Chris Wilson1070a422012-04-24 15:47:41 +01004942 }
Chris Wilson60990322014-04-09 09:19:42 +01004943 mutex_unlock(&dev->struct_mutex);
Chris Wilson1070a422012-04-24 15:47:41 +01004944
Chris Wilson60990322014-04-09 09:19:42 +01004945 return ret;
Chris Wilson1070a422012-04-24 15:47:41 +01004946}
4947
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004948void
4949i915_gem_cleanup_ringbuffer(struct drm_device *dev)
4950{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004951 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004952 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00004953 int i;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004954
Chris Wilsonb4519512012-05-11 14:29:30 +01004955 for_each_ring(ring, dev_priv, i)
Oscar Mateoa83014d2014-07-24 17:04:21 +01004956 dev_priv->gt.cleanup_ring(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004957}
4958
Chris Wilson64193402010-10-24 12:38:05 +01004959static void
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004960init_ring_lists(struct intel_engine_cs *ring)
Chris Wilson64193402010-10-24 12:38:05 +01004961{
4962 INIT_LIST_HEAD(&ring->active_list);
4963 INIT_LIST_HEAD(&ring->request_list);
Chris Wilson64193402010-10-24 12:38:05 +01004964}
4965
Ben Widawsky7e0d96b2013-12-06 14:11:26 -08004966void i915_init_vm(struct drm_i915_private *dev_priv,
4967 struct i915_address_space *vm)
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004968{
Ben Widawsky7e0d96b2013-12-06 14:11:26 -08004969 if (!i915_is_ggtt(vm))
4970 drm_mm_init(&vm->mm, vm->start, vm->total);
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004971 vm->dev = dev_priv->dev;
4972 INIT_LIST_HEAD(&vm->active_list);
4973 INIT_LIST_HEAD(&vm->inactive_list);
4974 INIT_LIST_HEAD(&vm->global_link);
Chris Wilsonf72d21e2014-01-09 22:57:22 +00004975 list_add_tail(&vm->global_link, &dev_priv->vm_list);
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004976}
4977
Eric Anholt673a3942008-07-30 12:06:12 -07004978void
4979i915_gem_load(struct drm_device *dev)
4980{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004981 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson42dcedd2012-11-15 11:32:30 +00004982 int i;
4983
4984 dev_priv->slab =
4985 kmem_cache_create("i915_gem_object",
4986 sizeof(struct drm_i915_gem_object), 0,
4987 SLAB_HWCACHE_ALIGN,
4988 NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07004989
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004990 INIT_LIST_HEAD(&dev_priv->vm_list);
4991 i915_init_vm(dev_priv, &dev_priv->gtt.base);
4992
Ben Widawskya33afea2013-09-17 21:12:45 -07004993 INIT_LIST_HEAD(&dev_priv->context_list);
Chris Wilson6c085a72012-08-20 11:40:46 +02004994 INIT_LIST_HEAD(&dev_priv->mm.unbound_list);
4995 INIT_LIST_HEAD(&dev_priv->mm.bound_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07004996 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00004997 for (i = 0; i < I915_NUM_RINGS; i++)
4998 init_ring_lists(&dev_priv->ring[i]);
Daniel Vetter4b9de732011-10-09 21:52:02 +02004999 for (i = 0; i < I915_MAX_NUM_FENCES; i++)
Daniel Vetter007cc8a2010-04-28 11:02:31 +02005000 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07005001 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
5002 i915_gem_retire_work_handler);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005003 INIT_DELAYED_WORK(&dev_priv->mm.idle_work,
5004 i915_gem_idle_work_handler);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01005005 init_waitqueue_head(&dev_priv->gpu_error.reset_queue);
Chris Wilson31169712009-09-14 16:50:28 +01005006
Dave Airlie94400122010-07-20 13:15:31 +10005007 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
Ville Syrjälädbb42742014-02-25 15:13:41 +02005008 if (!drm_core_check_feature(dev, DRIVER_MODESET) && IS_GEN3(dev)) {
Daniel Vetter50743292012-04-26 22:02:54 +02005009 I915_WRITE(MI_ARB_STATE,
5010 _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Dave Airlie94400122010-07-20 13:15:31 +10005011 }
5012
Chris Wilson72bfa192010-12-19 11:42:05 +00005013 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
5014
Jesse Barnesde151cf2008-11-12 10:03:55 -08005015 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08005016 if (!drm_core_check_feature(dev, DRIVER_MODESET))
5017 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08005018
Ville Syrjälä42b5aea2013-04-09 13:02:47 +03005019 if (INTEL_INFO(dev)->gen >= 7 && !IS_VALLEYVIEW(dev))
5020 dev_priv->num_fence_regs = 32;
5021 else if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08005022 dev_priv->num_fence_regs = 16;
5023 else
5024 dev_priv->num_fence_regs = 8;
5025
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02005026 /* Initialize fence registers to zero */
Chris Wilson19b2dbd2013-06-12 10:15:12 +01005027 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
5028 i915_gem_restore_fences(dev);
Eric Anholt10ed13e2011-05-06 13:53:49 -07005029
Eric Anholt673a3942008-07-30 12:06:12 -07005030 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005031 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01005032
Chris Wilsonce453d82011-02-21 14:43:56 +00005033 dev_priv->mm.interruptible = true;
5034
Chris Wilsonceabbba52014-03-25 13:23:04 +00005035 dev_priv->mm.shrinker.scan_objects = i915_gem_shrinker_scan;
5036 dev_priv->mm.shrinker.count_objects = i915_gem_shrinker_count;
5037 dev_priv->mm.shrinker.seeks = DEFAULT_SEEKS;
5038 register_shrinker(&dev_priv->mm.shrinker);
Chris Wilson2cfcd322014-05-20 08:28:43 +01005039
5040 dev_priv->mm.oom_notifier.notifier_call = i915_gem_shrinker_oom;
5041 register_oom_notifier(&dev_priv->mm.oom_notifier);
Daniel Vetterf99d7062014-06-19 16:01:59 +02005042
5043 mutex_init(&dev_priv->fb_tracking.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07005044}
Dave Airlie71acb5e2008-12-30 20:31:46 +10005045
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005046void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00005047{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005048 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00005049
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005050 cancel_delayed_work_sync(&file_priv->mm.idle_work);
5051
Eric Anholtb9624422009-06-03 07:27:35 +00005052 /* Clean up our request list when the client is going away, so that
5053 * later retire_requests won't dereference our soon-to-be-gone
5054 * file_priv.
5055 */
Chris Wilson1c255952010-09-26 11:03:27 +01005056 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005057 while (!list_empty(&file_priv->mm.request_list)) {
5058 struct drm_i915_gem_request *request;
5059
5060 request = list_first_entry(&file_priv->mm.request_list,
5061 struct drm_i915_gem_request,
5062 client_list);
5063 list_del(&request->client_list);
5064 request->file_priv = NULL;
5065 }
Chris Wilson1c255952010-09-26 11:03:27 +01005066 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00005067}
Chris Wilson31169712009-09-14 16:50:28 +01005068
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005069static void
5070i915_gem_file_idle_work_handler(struct work_struct *work)
5071{
5072 struct drm_i915_file_private *file_priv =
5073 container_of(work, typeof(*file_priv), mm.idle_work.work);
5074
5075 atomic_set(&file_priv->rps_wait_boost, false);
5076}
5077
5078int i915_gem_open(struct drm_device *dev, struct drm_file *file)
5079{
5080 struct drm_i915_file_private *file_priv;
Ben Widawskye422b882013-12-06 14:10:58 -08005081 int ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005082
5083 DRM_DEBUG_DRIVER("\n");
5084
5085 file_priv = kzalloc(sizeof(*file_priv), GFP_KERNEL);
5086 if (!file_priv)
5087 return -ENOMEM;
5088
5089 file->driver_priv = file_priv;
5090 file_priv->dev_priv = dev->dev_private;
Chris Wilsonab0e7ff2014-02-25 17:11:24 +02005091 file_priv->file = file;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005092
5093 spin_lock_init(&file_priv->mm.lock);
5094 INIT_LIST_HEAD(&file_priv->mm.request_list);
5095 INIT_DELAYED_WORK(&file_priv->mm.idle_work,
5096 i915_gem_file_idle_work_handler);
5097
Ben Widawskye422b882013-12-06 14:10:58 -08005098 ret = i915_gem_context_open(dev, file);
5099 if (ret)
5100 kfree(file_priv);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005101
Ben Widawskye422b882013-12-06 14:10:58 -08005102 return ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005103}
5104
Daniel Vetterb680c372014-09-19 18:27:27 +02005105/**
5106 * i915_gem_track_fb - update frontbuffer tracking
5107 * old: current GEM buffer for the frontbuffer slots
5108 * new: new GEM buffer for the frontbuffer slots
5109 * frontbuffer_bits: bitmask of frontbuffer slots
5110 *
5111 * This updates the frontbuffer tracking bits @frontbuffer_bits by clearing them
5112 * from @old and setting them in @new. Both @old and @new can be NULL.
5113 */
Daniel Vettera071fa02014-06-18 23:28:09 +02005114void i915_gem_track_fb(struct drm_i915_gem_object *old,
5115 struct drm_i915_gem_object *new,
5116 unsigned frontbuffer_bits)
5117{
5118 if (old) {
5119 WARN_ON(!mutex_is_locked(&old->base.dev->struct_mutex));
5120 WARN_ON(!(old->frontbuffer_bits & frontbuffer_bits));
5121 old->frontbuffer_bits &= ~frontbuffer_bits;
5122 }
5123
5124 if (new) {
5125 WARN_ON(!mutex_is_locked(&new->base.dev->struct_mutex));
5126 WARN_ON(new->frontbuffer_bits & frontbuffer_bits);
5127 new->frontbuffer_bits |= frontbuffer_bits;
5128 }
5129}
5130
Chris Wilson57745062012-11-21 13:04:04 +00005131static bool mutex_is_locked_by(struct mutex *mutex, struct task_struct *task)
5132{
5133 if (!mutex_is_locked(mutex))
5134 return false;
5135
5136#if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_MUTEXES)
5137 return mutex->owner == task;
5138#else
5139 /* Since UP may be pre-empted, we cannot assume that we own the lock */
5140 return false;
5141#endif
5142}
5143
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005144static bool i915_gem_shrinker_lock(struct drm_device *dev, bool *unlock)
5145{
5146 if (!mutex_trylock(&dev->struct_mutex)) {
5147 if (!mutex_is_locked_by(&dev->struct_mutex, current))
5148 return false;
5149
5150 if (to_i915(dev)->mm.shrinker_no_lock_stealing)
5151 return false;
5152
5153 *unlock = false;
5154 } else
5155 *unlock = true;
5156
5157 return true;
5158}
5159
Chris Wilsonceabbba52014-03-25 13:23:04 +00005160static int num_vma_bound(struct drm_i915_gem_object *obj)
5161{
5162 struct i915_vma *vma;
5163 int count = 0;
5164
5165 list_for_each_entry(vma, &obj->vma_list, vma_link)
5166 if (drm_mm_node_allocated(&vma->node))
5167 count++;
5168
5169 return count;
5170}
5171
Dave Chinner7dc19d52013-08-28 10:18:11 +10005172static unsigned long
Chris Wilsonceabbba52014-03-25 13:23:04 +00005173i915_gem_shrinker_count(struct shrinker *shrinker, struct shrink_control *sc)
Chris Wilson31169712009-09-14 16:50:28 +01005174{
Chris Wilson17250b72010-10-28 12:51:39 +01005175 struct drm_i915_private *dev_priv =
Chris Wilsonceabbba52014-03-25 13:23:04 +00005176 container_of(shrinker, struct drm_i915_private, mm.shrinker);
Chris Wilson17250b72010-10-28 12:51:39 +01005177 struct drm_device *dev = dev_priv->dev;
Chris Wilson6c085a72012-08-20 11:40:46 +02005178 struct drm_i915_gem_object *obj;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005179 unsigned long count;
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005180 bool unlock;
Chris Wilson17250b72010-10-28 12:51:39 +01005181
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005182 if (!i915_gem_shrinker_lock(dev, &unlock))
5183 return 0;
Chris Wilson31169712009-09-14 16:50:28 +01005184
Dave Chinner7dc19d52013-08-28 10:18:11 +10005185 count = 0;
Ben Widawsky35c20a62013-05-31 11:28:48 -07005186 list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list)
Chris Wilsona5570172012-09-04 21:02:54 +01005187 if (obj->pages_pin_count == 0)
Dave Chinner7dc19d52013-08-28 10:18:11 +10005188 count += obj->base.size >> PAGE_SHIFT;
Ben Widawskyfcb4a572013-07-31 16:59:57 -07005189
5190 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
Chris Wilsonceabbba52014-03-25 13:23:04 +00005191 if (!i915_gem_obj_is_pinned(obj) &&
5192 obj->pages_pin_count == num_vma_bound(obj))
Dave Chinner7dc19d52013-08-28 10:18:11 +10005193 count += obj->base.size >> PAGE_SHIFT;
Ben Widawskyfcb4a572013-07-31 16:59:57 -07005194 }
Chris Wilson31169712009-09-14 16:50:28 +01005195
Chris Wilson57745062012-11-21 13:04:04 +00005196 if (unlock)
5197 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9973b42013-10-04 10:33:00 +01005198
Dave Chinner7dc19d52013-08-28 10:18:11 +10005199 return count;
Chris Wilson31169712009-09-14 16:50:28 +01005200}
Ben Widawskya70a3142013-07-31 16:59:56 -07005201
5202/* All the new VM stuff */
5203unsigned long i915_gem_obj_offset(struct drm_i915_gem_object *o,
5204 struct i915_address_space *vm)
5205{
5206 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
5207 struct i915_vma *vma;
5208
Daniel Vetter896ab1a2014-08-06 15:04:51 +02005209 WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base);
Ben Widawskya70a3142013-07-31 16:59:56 -07005210
Ben Widawskya70a3142013-07-31 16:59:56 -07005211 list_for_each_entry(vma, &o->vma_list, vma_link) {
5212 if (vma->vm == vm)
5213 return vma->node.start;
5214
5215 }
Daniel Vetterf25748ea2014-06-17 22:34:38 +02005216 WARN(1, "%s vma for this object not found.\n",
5217 i915_is_ggtt(vm) ? "global" : "ppgtt");
Ben Widawskya70a3142013-07-31 16:59:56 -07005218 return -1;
5219}
5220
5221bool i915_gem_obj_bound(struct drm_i915_gem_object *o,
5222 struct i915_address_space *vm)
5223{
5224 struct i915_vma *vma;
5225
5226 list_for_each_entry(vma, &o->vma_list, vma_link)
Ben Widawsky8b9c2b92013-07-31 17:00:16 -07005227 if (vma->vm == vm && drm_mm_node_allocated(&vma->node))
Ben Widawskya70a3142013-07-31 16:59:56 -07005228 return true;
5229
5230 return false;
5231}
5232
5233bool i915_gem_obj_bound_any(struct drm_i915_gem_object *o)
5234{
Chris Wilson5a1d5eb2013-09-10 11:27:37 +01005235 struct i915_vma *vma;
Ben Widawskya70a3142013-07-31 16:59:56 -07005236
Chris Wilson5a1d5eb2013-09-10 11:27:37 +01005237 list_for_each_entry(vma, &o->vma_list, vma_link)
5238 if (drm_mm_node_allocated(&vma->node))
Ben Widawskya70a3142013-07-31 16:59:56 -07005239 return true;
5240
5241 return false;
5242}
5243
5244unsigned long i915_gem_obj_size(struct drm_i915_gem_object *o,
5245 struct i915_address_space *vm)
5246{
5247 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
5248 struct i915_vma *vma;
5249
Daniel Vetter896ab1a2014-08-06 15:04:51 +02005250 WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base);
Ben Widawskya70a3142013-07-31 16:59:56 -07005251
5252 BUG_ON(list_empty(&o->vma_list));
5253
5254 list_for_each_entry(vma, &o->vma_list, vma_link)
5255 if (vma->vm == vm)
5256 return vma->node.size;
5257
5258 return 0;
5259}
5260
Dave Chinner7dc19d52013-08-28 10:18:11 +10005261static unsigned long
Chris Wilsonceabbba52014-03-25 13:23:04 +00005262i915_gem_shrinker_scan(struct shrinker *shrinker, struct shrink_control *sc)
Dave Chinner7dc19d52013-08-28 10:18:11 +10005263{
5264 struct drm_i915_private *dev_priv =
Chris Wilsonceabbba52014-03-25 13:23:04 +00005265 container_of(shrinker, struct drm_i915_private, mm.shrinker);
Dave Chinner7dc19d52013-08-28 10:18:11 +10005266 struct drm_device *dev = dev_priv->dev;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005267 unsigned long freed;
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005268 bool unlock;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005269
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005270 if (!i915_gem_shrinker_lock(dev, &unlock))
5271 return SHRINK_STOP;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005272
Chris Wilson21ab4e72014-09-09 11:16:08 +01005273 freed = i915_gem_shrink(dev_priv,
5274 sc->nr_to_scan,
5275 I915_SHRINK_BOUND |
5276 I915_SHRINK_UNBOUND |
5277 I915_SHRINK_PURGEABLE);
Chris Wilsond9973b42013-10-04 10:33:00 +01005278 if (freed < sc->nr_to_scan)
Chris Wilson21ab4e72014-09-09 11:16:08 +01005279 freed += i915_gem_shrink(dev_priv,
5280 sc->nr_to_scan - freed,
5281 I915_SHRINK_BOUND |
5282 I915_SHRINK_UNBOUND);
Dave Chinner7dc19d52013-08-28 10:18:11 +10005283 if (unlock)
5284 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9973b42013-10-04 10:33:00 +01005285
Dave Chinner7dc19d52013-08-28 10:18:11 +10005286 return freed;
5287}
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005288
Chris Wilson2cfcd322014-05-20 08:28:43 +01005289static int
5290i915_gem_shrinker_oom(struct notifier_block *nb, unsigned long event, void *ptr)
5291{
5292 struct drm_i915_private *dev_priv =
5293 container_of(nb, struct drm_i915_private, mm.oom_notifier);
5294 struct drm_device *dev = dev_priv->dev;
5295 struct drm_i915_gem_object *obj;
5296 unsigned long timeout = msecs_to_jiffies(5000) + 1;
Chris Wilson005445c2014-10-08 11:25:16 +01005297 unsigned long pinned, bound, unbound, freed_pages;
Chris Wilson2cfcd322014-05-20 08:28:43 +01005298 bool was_interruptible;
5299 bool unlock;
5300
Chris Wilsona1db2fa2014-07-11 11:28:00 +01005301 while (!i915_gem_shrinker_lock(dev, &unlock) && --timeout) {
Chris Wilson2cfcd322014-05-20 08:28:43 +01005302 schedule_timeout_killable(1);
Chris Wilsona1db2fa2014-07-11 11:28:00 +01005303 if (fatal_signal_pending(current))
5304 return NOTIFY_DONE;
5305 }
Chris Wilson2cfcd322014-05-20 08:28:43 +01005306 if (timeout == 0) {
5307 pr_err("Unable to purge GPU memory due lock contention.\n");
5308 return NOTIFY_DONE;
5309 }
5310
5311 was_interruptible = dev_priv->mm.interruptible;
5312 dev_priv->mm.interruptible = false;
5313
Chris Wilson005445c2014-10-08 11:25:16 +01005314 freed_pages = i915_gem_shrink_all(dev_priv);
Chris Wilson2cfcd322014-05-20 08:28:43 +01005315
5316 dev_priv->mm.interruptible = was_interruptible;
5317
5318 /* Because we may be allocating inside our own driver, we cannot
5319 * assert that there are no objects with pinned pages that are not
5320 * being pointed to by hardware.
5321 */
5322 unbound = bound = pinned = 0;
5323 list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list) {
5324 if (!obj->base.filp) /* not backed by a freeable object */
5325 continue;
5326
5327 if (obj->pages_pin_count)
5328 pinned += obj->base.size;
5329 else
5330 unbound += obj->base.size;
5331 }
5332 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
5333 if (!obj->base.filp)
5334 continue;
5335
5336 if (obj->pages_pin_count)
5337 pinned += obj->base.size;
5338 else
5339 bound += obj->base.size;
5340 }
5341
5342 if (unlock)
5343 mutex_unlock(&dev->struct_mutex);
5344
Chris Wilsonbb9059d2014-10-08 11:25:17 +01005345 if (freed_pages || unbound || bound)
5346 pr_info("Purging GPU memory, %lu bytes freed, %lu bytes still pinned.\n",
5347 freed_pages << PAGE_SHIFT, pinned);
Chris Wilson2cfcd322014-05-20 08:28:43 +01005348 if (unbound || bound)
5349 pr_err("%lu and %lu bytes still available in the "
5350 "bound and unbound GPU page lists.\n",
5351 bound, unbound);
5352
Chris Wilson005445c2014-10-08 11:25:16 +01005353 *(unsigned long *)ptr += freed_pages;
Chris Wilson2cfcd322014-05-20 08:28:43 +01005354 return NOTIFY_DONE;
5355}
5356
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005357struct i915_vma *i915_gem_obj_to_ggtt(struct drm_i915_gem_object *obj)
5358{
5359 struct i915_vma *vma;
5360
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005361 vma = list_first_entry(&obj->vma_list, typeof(*vma), vma_link);
Daniel Vetter5dc383b2014-08-06 15:04:49 +02005362 if (vma->vm != i915_obj_to_ggtt(obj))
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005363 return NULL;
5364
5365 return vma;
5366}