blob: 3831cc0cbbf4ed537677b82a20d9f90b4f956f63 [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"
Yu Zhangeb822892015-02-10 19:05:49 +080032#include "i915_vgpu.h"
Chris Wilson1c5d22f2009-08-25 11:15:50 +010033#include "i915_trace.h"
Jesse Barnes652c3932009-08-17 13:31:43 -070034#include "intel_drv.h"
Chris Wilson2cfcd322014-05-20 08:28:43 +010035#include <linux/oom.h>
Hugh Dickins5949eac2011-06-27 16:18:18 -070036#include <linux/shmem_fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/slab.h>
Eric Anholt673a3942008-07-30 12:06:12 -070038#include <linux/swap.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080039#include <linux/pci.h>
Daniel Vetter1286ff72012-05-10 15:25:09 +020040#include <linux/dma-buf.h>
Eric Anholt673a3942008-07-30 12:06:12 -070041
Chris Wilson05394f32010-11-08 19:18:58 +000042static void i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj);
Daniel Vettere62b59e2015-01-21 14:53:48 +010043static void i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj);
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
Eric Anholt673a3942008-07-30 12:06:12 -0700156int
Eric Anholt5a125c32008-10-22 21:40:13 -0700157i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000158 struct drm_file *file)
Eric Anholt5a125c32008-10-22 21:40:13 -0700159{
Chris Wilson73aa8082010-09-30 11:46:12 +0100160 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt5a125c32008-10-22 21:40:13 -0700161 struct drm_i915_gem_get_aperture *args = data;
Chris Wilson6299f992010-11-24 12:23:44 +0000162 struct drm_i915_gem_object *obj;
163 size_t pinned;
Eric Anholt5a125c32008-10-22 21:40:13 -0700164
Chris Wilson6299f992010-11-24 12:23:44 +0000165 pinned = 0;
Chris Wilson73aa8082010-09-30 11:46:12 +0100166 mutex_lock(&dev->struct_mutex);
Ben Widawsky35c20a62013-05-31 11:28:48 -0700167 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list)
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800168 if (i915_gem_obj_is_pinned(obj))
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700169 pinned += i915_gem_obj_ggtt_size(obj);
Chris Wilson73aa8082010-09-30 11:46:12 +0100170 mutex_unlock(&dev->struct_mutex);
Eric Anholt5a125c32008-10-22 21:40:13 -0700171
Ben Widawsky853ba5d2013-07-16 16:50:05 -0700172 args->aper_size = dev_priv->gtt.base.total;
Akshay Joshi0206e352011-08-16 15:34:10 -0400173 args->aper_available_size = args->aper_size - pinned;
Chris Wilson6299f992010-11-24 12:23:44 +0000174
Eric Anholt5a125c32008-10-22 21:40:13 -0700175 return 0;
176}
177
Chris Wilson6a2c4232014-11-04 04:51:40 -0800178static int
179i915_gem_object_get_pages_phys(struct drm_i915_gem_object *obj)
Chris Wilson00731152014-05-21 12:42:56 +0100180{
Chris Wilson6a2c4232014-11-04 04:51:40 -0800181 struct address_space *mapping = file_inode(obj->base.filp)->i_mapping;
182 char *vaddr = obj->phys_handle->vaddr;
183 struct sg_table *st;
184 struct scatterlist *sg;
185 int i;
Chris Wilson00731152014-05-21 12:42:56 +0100186
Chris Wilson6a2c4232014-11-04 04:51:40 -0800187 if (WARN_ON(i915_gem_object_needs_bit17_swizzle(obj)))
188 return -EINVAL;
Chris Wilson00731152014-05-21 12:42:56 +0100189
Chris Wilson6a2c4232014-11-04 04:51:40 -0800190 for (i = 0; i < obj->base.size / PAGE_SIZE; i++) {
191 struct page *page;
192 char *src;
193
194 page = shmem_read_mapping_page(mapping, i);
195 if (IS_ERR(page))
196 return PTR_ERR(page);
197
198 src = kmap_atomic(page);
199 memcpy(vaddr, src, PAGE_SIZE);
200 drm_clflush_virt_range(vaddr, PAGE_SIZE);
201 kunmap_atomic(src);
202
203 page_cache_release(page);
204 vaddr += PAGE_SIZE;
205 }
206
207 i915_gem_chipset_flush(obj->base.dev);
208
209 st = kmalloc(sizeof(*st), GFP_KERNEL);
210 if (st == NULL)
211 return -ENOMEM;
212
213 if (sg_alloc_table(st, 1, GFP_KERNEL)) {
214 kfree(st);
215 return -ENOMEM;
216 }
217
218 sg = st->sgl;
219 sg->offset = 0;
220 sg->length = obj->base.size;
221
222 sg_dma_address(sg) = obj->phys_handle->busaddr;
223 sg_dma_len(sg) = obj->base.size;
224
225 obj->pages = st;
226 obj->has_dma_mapping = true;
227 return 0;
228}
229
230static void
231i915_gem_object_put_pages_phys(struct drm_i915_gem_object *obj)
232{
233 int ret;
234
235 BUG_ON(obj->madv == __I915_MADV_PURGED);
236
237 ret = i915_gem_object_set_to_cpu_domain(obj, true);
238 if (ret) {
239 /* In the event of a disaster, abandon all caches and
240 * hope for the best.
241 */
242 WARN_ON(ret != -EIO);
243 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
244 }
245
246 if (obj->madv == I915_MADV_DONTNEED)
247 obj->dirty = 0;
248
249 if (obj->dirty) {
Chris Wilson00731152014-05-21 12:42:56 +0100250 struct address_space *mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800251 char *vaddr = obj->phys_handle->vaddr;
Chris Wilson00731152014-05-21 12:42:56 +0100252 int i;
253
254 for (i = 0; i < obj->base.size / PAGE_SIZE; i++) {
Chris Wilson6a2c4232014-11-04 04:51:40 -0800255 struct page *page;
256 char *dst;
Chris Wilson00731152014-05-21 12:42:56 +0100257
Chris Wilson6a2c4232014-11-04 04:51:40 -0800258 page = shmem_read_mapping_page(mapping, i);
259 if (IS_ERR(page))
260 continue;
261
262 dst = kmap_atomic(page);
263 drm_clflush_virt_range(vaddr, PAGE_SIZE);
264 memcpy(dst, vaddr, PAGE_SIZE);
265 kunmap_atomic(dst);
266
267 set_page_dirty(page);
268 if (obj->madv == I915_MADV_WILLNEED)
Chris Wilson00731152014-05-21 12:42:56 +0100269 mark_page_accessed(page);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800270 page_cache_release(page);
Chris Wilson00731152014-05-21 12:42:56 +0100271 vaddr += PAGE_SIZE;
272 }
Chris Wilson6a2c4232014-11-04 04:51:40 -0800273 obj->dirty = 0;
Chris Wilson00731152014-05-21 12:42:56 +0100274 }
275
Chris Wilson6a2c4232014-11-04 04:51:40 -0800276 sg_free_table(obj->pages);
277 kfree(obj->pages);
278
279 obj->has_dma_mapping = false;
280}
281
282static void
283i915_gem_object_release_phys(struct drm_i915_gem_object *obj)
284{
285 drm_pci_free(obj->base.dev, obj->phys_handle);
286}
287
288static const struct drm_i915_gem_object_ops i915_gem_phys_ops = {
289 .get_pages = i915_gem_object_get_pages_phys,
290 .put_pages = i915_gem_object_put_pages_phys,
291 .release = i915_gem_object_release_phys,
292};
293
294static int
295drop_pages(struct drm_i915_gem_object *obj)
296{
297 struct i915_vma *vma, *next;
298 int ret;
299
300 drm_gem_object_reference(&obj->base);
301 list_for_each_entry_safe(vma, next, &obj->vma_list, vma_link)
302 if (i915_vma_unbind(vma))
303 break;
304
305 ret = i915_gem_object_put_pages(obj);
306 drm_gem_object_unreference(&obj->base);
307
308 return ret;
Chris Wilson00731152014-05-21 12:42:56 +0100309}
310
311int
312i915_gem_object_attach_phys(struct drm_i915_gem_object *obj,
313 int align)
314{
315 drm_dma_handle_t *phys;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800316 int ret;
Chris Wilson00731152014-05-21 12:42:56 +0100317
318 if (obj->phys_handle) {
319 if ((unsigned long)obj->phys_handle->vaddr & (align -1))
320 return -EBUSY;
321
322 return 0;
323 }
324
325 if (obj->madv != I915_MADV_WILLNEED)
326 return -EFAULT;
327
328 if (obj->base.filp == NULL)
329 return -EINVAL;
330
Chris Wilson6a2c4232014-11-04 04:51:40 -0800331 ret = drop_pages(obj);
332 if (ret)
333 return ret;
334
Chris Wilson00731152014-05-21 12:42:56 +0100335 /* create a new object */
336 phys = drm_pci_alloc(obj->base.dev, obj->base.size, align);
337 if (!phys)
338 return -ENOMEM;
339
Chris Wilson00731152014-05-21 12:42:56 +0100340 obj->phys_handle = phys;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800341 obj->ops = &i915_gem_phys_ops;
342
343 return i915_gem_object_get_pages(obj);
Chris Wilson00731152014-05-21 12:42:56 +0100344}
345
346static int
347i915_gem_phys_pwrite(struct drm_i915_gem_object *obj,
348 struct drm_i915_gem_pwrite *args,
349 struct drm_file *file_priv)
350{
351 struct drm_device *dev = obj->base.dev;
352 void *vaddr = obj->phys_handle->vaddr + args->offset;
353 char __user *user_data = to_user_ptr(args->data_ptr);
Paulo Zanoni063e4e62015-02-13 17:23:45 -0200354 int ret = 0;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800355
356 /* We manually control the domain here and pretend that it
357 * remains coherent i.e. in the GTT domain, like shmem_pwrite.
358 */
359 ret = i915_gem_object_wait_rendering(obj, false);
360 if (ret)
361 return ret;
Chris Wilson00731152014-05-21 12:42:56 +0100362
Paulo Zanoni063e4e62015-02-13 17:23:45 -0200363 intel_fb_obj_invalidate(obj, NULL, ORIGIN_CPU);
Chris Wilson00731152014-05-21 12:42:56 +0100364 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
365 unsigned long unwritten;
366
367 /* The physical object once assigned is fixed for the lifetime
368 * of the obj, so we can safely drop the lock and continue
369 * to access vaddr.
370 */
371 mutex_unlock(&dev->struct_mutex);
372 unwritten = copy_from_user(vaddr, user_data, args->size);
373 mutex_lock(&dev->struct_mutex);
Paulo Zanoni063e4e62015-02-13 17:23:45 -0200374 if (unwritten) {
375 ret = -EFAULT;
376 goto out;
377 }
Chris Wilson00731152014-05-21 12:42:56 +0100378 }
379
Chris Wilson6a2c4232014-11-04 04:51:40 -0800380 drm_clflush_virt_range(vaddr, args->size);
Chris Wilson00731152014-05-21 12:42:56 +0100381 i915_gem_chipset_flush(dev);
Paulo Zanoni063e4e62015-02-13 17:23:45 -0200382
383out:
384 intel_fb_obj_flush(obj, false);
385 return ret;
Chris Wilson00731152014-05-21 12:42:56 +0100386}
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,
Dave Airlieda6b51d2014-12-24 13:11:17 +1000438 args->size, &args->handle);
Dave Airlieff72145b2011-02-07 12:16:14 +1000439}
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,
Dave Airlieda6b51d2014-12-24 13:11:17 +1000451 args->size, &args->handle);
Dave Airlieff72145b2011-02-07 12:16:14 +1000452}
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
Paulo Zanoni063e4e62015-02-13 17:23:45 -0200819 intel_fb_obj_invalidate(obj, NULL, ORIGIN_GTT);
820
Eric Anholt673a3942008-07-30 12:06:12 -0700821 while (remain > 0) {
822 /* Operation in this page
823 *
Keith Packard0839ccb2008-10-30 19:38:48 -0700824 * page_base = page offset within aperture
825 * page_offset = offset within page
826 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -0700827 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100828 page_base = offset & PAGE_MASK;
829 page_offset = offset_in_page(offset);
Keith Packard0839ccb2008-10-30 19:38:48 -0700830 page_length = remain;
831 if ((page_offset + remain) > PAGE_SIZE)
832 page_length = PAGE_SIZE - page_offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700833
Keith Packard0839ccb2008-10-30 19:38:48 -0700834 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -0700835 * source page isn't available. Return the error and we'll
836 * retry in the slow path.
Keith Packard0839ccb2008-10-30 19:38:48 -0700837 */
Ben Widawsky5d4545a2013-01-17 12:45:15 -0800838 if (fast_user_write(dev_priv->gtt.mappable, page_base,
Daniel Vetter935aaa62012-03-25 19:47:35 +0200839 page_offset, user_data, page_length)) {
840 ret = -EFAULT;
Paulo Zanoni063e4e62015-02-13 17:23:45 -0200841 goto out_flush;
Daniel Vetter935aaa62012-03-25 19:47:35 +0200842 }
Eric Anholt673a3942008-07-30 12:06:12 -0700843
Keith Packard0839ccb2008-10-30 19:38:48 -0700844 remain -= page_length;
845 user_data += page_length;
846 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700847 }
Eric Anholt673a3942008-07-30 12:06:12 -0700848
Paulo Zanoni063e4e62015-02-13 17:23:45 -0200849out_flush:
850 intel_fb_obj_flush(obj, false);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200851out_unpin:
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800852 i915_gem_object_ggtt_unpin(obj);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200853out:
Eric Anholt3de09aa2009-03-09 09:42:23 -0700854 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700855}
856
Daniel Vetterd174bd62012-03-25 19:47:40 +0200857/* Per-page copy function for the shmem pwrite fastpath.
858 * Flushes invalid cachelines before writing to the target if
859 * needs_clflush_before is set and flushes out any written cachelines after
860 * writing if needs_clflush is set. */
Eric Anholt673a3942008-07-30 12:06:12 -0700861static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200862shmem_pwrite_fast(struct page *page, int shmem_page_offset, int page_length,
863 char __user *user_data,
864 bool page_do_bit17_swizzling,
865 bool needs_clflush_before,
866 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700867{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200868 char *vaddr;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700869 int ret;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700870
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200871 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200872 return -EINVAL;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700873
Daniel Vetterd174bd62012-03-25 19:47:40 +0200874 vaddr = kmap_atomic(page);
875 if (needs_clflush_before)
876 drm_clflush_virt_range(vaddr + shmem_page_offset,
877 page_length);
Chris Wilsonc2831a92014-03-07 08:30:37 +0000878 ret = __copy_from_user_inatomic(vaddr + shmem_page_offset,
879 user_data, page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200880 if (needs_clflush_after)
881 drm_clflush_virt_range(vaddr + shmem_page_offset,
882 page_length);
883 kunmap_atomic(vaddr);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700884
Chris Wilson755d2212012-09-04 21:02:55 +0100885 return ret ? -EFAULT : 0;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700886}
887
Daniel Vetterd174bd62012-03-25 19:47:40 +0200888/* Only difference to the fast-path function is that this can handle bit17
889 * and uses non-atomic copy and kmap functions. */
Eric Anholt3043c602008-10-02 12:24:47 -0700890static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200891shmem_pwrite_slow(struct page *page, int shmem_page_offset, int page_length,
892 char __user *user_data,
893 bool page_do_bit17_swizzling,
894 bool needs_clflush_before,
895 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700896{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200897 char *vaddr;
898 int ret;
Eric Anholt40123c12009-03-09 13:42:30 -0700899
Daniel Vetterd174bd62012-03-25 19:47:40 +0200900 vaddr = kmap(page);
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200901 if (unlikely(needs_clflush_before || page_do_bit17_swizzling))
Daniel Vetter23c18c72012-03-25 19:47:42 +0200902 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
903 page_length,
904 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200905 if (page_do_bit17_swizzling)
906 ret = __copy_from_user_swizzled(vaddr, shmem_page_offset,
Chris Wilsone5281cc2010-10-28 13:45:36 +0100907 user_data,
908 page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200909 else
910 ret = __copy_from_user(vaddr + shmem_page_offset,
911 user_data,
912 page_length);
913 if (needs_clflush_after)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200914 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
915 page_length,
916 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200917 kunmap(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100918
Chris Wilson755d2212012-09-04 21:02:55 +0100919 return ret ? -EFAULT : 0;
Eric Anholt40123c12009-03-09 13:42:30 -0700920}
921
Eric Anholt40123c12009-03-09 13:42:30 -0700922static int
Daniel Vettere244a442012-03-25 19:47:28 +0200923i915_gem_shmem_pwrite(struct drm_device *dev,
924 struct drm_i915_gem_object *obj,
925 struct drm_i915_gem_pwrite *args,
926 struct drm_file *file)
Eric Anholt40123c12009-03-09 13:42:30 -0700927{
Eric Anholt40123c12009-03-09 13:42:30 -0700928 ssize_t remain;
Daniel Vetter8c599672011-12-14 13:57:31 +0100929 loff_t offset;
930 char __user *user_data;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100931 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8c599672011-12-14 13:57:31 +0100932 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vettere244a442012-03-25 19:47:28 +0200933 int hit_slowpath = 0;
Daniel Vetter58642882012-03-25 19:47:37 +0200934 int needs_clflush_after = 0;
935 int needs_clflush_before = 0;
Imre Deak67d5a502013-02-18 19:28:02 +0200936 struct sg_page_iter sg_iter;
Eric Anholt40123c12009-03-09 13:42:30 -0700937
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200938 user_data = to_user_ptr(args->data_ptr);
Eric Anholt40123c12009-03-09 13:42:30 -0700939 remain = args->size;
940
Daniel Vetter8c599672011-12-14 13:57:31 +0100941 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700942
Daniel Vetter58642882012-03-25 19:47:37 +0200943 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
944 /* If we're not in the cpu write domain, set ourself into the gtt
945 * write domain and manually flush cachelines (if required). This
946 * optimizes for the case when the gpu will use the data
947 * right away and we therefore have to clflush anyway. */
Chris Wilson2c225692013-08-09 12:26:45 +0100948 needs_clflush_after = cpu_write_needs_clflush(obj);
Ben Widawsky23f54482013-09-11 14:57:48 -0700949 ret = i915_gem_object_wait_rendering(obj, false);
950 if (ret)
951 return ret;
Chris Wilsonc8725f32014-03-17 12:21:55 +0000952
953 i915_gem_object_retire(obj);
Daniel Vetter58642882012-03-25 19:47:37 +0200954 }
Chris Wilsonc76ce032013-08-08 14:41:03 +0100955 /* Same trick applies to invalidate partially written cachelines read
956 * before writing. */
957 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0)
958 needs_clflush_before =
959 !cpu_cache_is_coherent(dev, obj->cache_level);
Daniel Vetter58642882012-03-25 19:47:37 +0200960
Chris Wilson755d2212012-09-04 21:02:55 +0100961 ret = i915_gem_object_get_pages(obj);
962 if (ret)
963 return ret;
964
Paulo Zanoni063e4e62015-02-13 17:23:45 -0200965 intel_fb_obj_invalidate(obj, NULL, ORIGIN_CPU);
966
Chris Wilson755d2212012-09-04 21:02:55 +0100967 i915_gem_object_pin_pages(obj);
968
Eric Anholt40123c12009-03-09 13:42:30 -0700969 offset = args->offset;
Chris Wilson05394f32010-11-08 19:18:58 +0000970 obj->dirty = 1;
Eric Anholt40123c12009-03-09 13:42:30 -0700971
Imre Deak67d5a502013-02-18 19:28:02 +0200972 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents,
973 offset >> PAGE_SHIFT) {
Imre Deak2db76d72013-03-26 15:14:18 +0200974 struct page *page = sg_page_iter_page(&sg_iter);
Daniel Vetter58642882012-03-25 19:47:37 +0200975 int partial_cacheline_write;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100976
Chris Wilson9da3da62012-06-01 15:20:22 +0100977 if (remain <= 0)
978 break;
979
Eric Anholt40123c12009-03-09 13:42:30 -0700980 /* Operation in this page
981 *
Eric Anholt40123c12009-03-09 13:42:30 -0700982 * shmem_page_offset = offset within page in shmem file
Eric Anholt40123c12009-03-09 13:42:30 -0700983 * page_length = bytes to copy for this page
984 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100985 shmem_page_offset = offset_in_page(offset);
Eric Anholt40123c12009-03-09 13:42:30 -0700986
987 page_length = remain;
988 if ((shmem_page_offset + page_length) > PAGE_SIZE)
989 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700990
Daniel Vetter58642882012-03-25 19:47:37 +0200991 /* If we don't overwrite a cacheline completely we need to be
992 * careful to have up-to-date data by first clflushing. Don't
993 * overcomplicate things and flush the entire patch. */
994 partial_cacheline_write = needs_clflush_before &&
995 ((shmem_page_offset | page_length)
996 & (boot_cpu_data.x86_clflush_size - 1));
997
Daniel Vetter8c599672011-12-14 13:57:31 +0100998 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
999 (page_to_phys(page) & (1 << 17)) != 0;
1000
Daniel Vetterd174bd62012-03-25 19:47:40 +02001001 ret = shmem_pwrite_fast(page, shmem_page_offset, page_length,
1002 user_data, page_do_bit17_swizzling,
1003 partial_cacheline_write,
1004 needs_clflush_after);
1005 if (ret == 0)
1006 goto next_page;
Eric Anholt40123c12009-03-09 13:42:30 -07001007
Daniel Vettere244a442012-03-25 19:47:28 +02001008 hit_slowpath = 1;
Daniel Vettere244a442012-03-25 19:47:28 +02001009 mutex_unlock(&dev->struct_mutex);
Daniel Vetterd174bd62012-03-25 19:47:40 +02001010 ret = shmem_pwrite_slow(page, shmem_page_offset, page_length,
1011 user_data, page_do_bit17_swizzling,
1012 partial_cacheline_write,
1013 needs_clflush_after);
Eric Anholt40123c12009-03-09 13:42:30 -07001014
Daniel Vettere244a442012-03-25 19:47:28 +02001015 mutex_lock(&dev->struct_mutex);
Chris Wilson755d2212012-09-04 21:02:55 +01001016
Chris Wilson755d2212012-09-04 21:02:55 +01001017 if (ret)
Daniel Vetter8c599672011-12-14 13:57:31 +01001018 goto out;
Daniel Vetter8c599672011-12-14 13:57:31 +01001019
Chris Wilson17793c92014-03-07 08:30:36 +00001020next_page:
Eric Anholt40123c12009-03-09 13:42:30 -07001021 remain -= page_length;
Daniel Vetter8c599672011-12-14 13:57:31 +01001022 user_data += page_length;
Eric Anholt40123c12009-03-09 13:42:30 -07001023 offset += page_length;
1024 }
1025
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001026out:
Chris Wilson755d2212012-09-04 21:02:55 +01001027 i915_gem_object_unpin_pages(obj);
1028
Daniel Vettere244a442012-03-25 19:47:28 +02001029 if (hit_slowpath) {
Daniel Vetter8dcf0152012-11-15 16:53:58 +01001030 /*
1031 * Fixup: Flush cpu caches in case we didn't flush the dirty
1032 * cachelines in-line while writing and the object moved
1033 * out of the cpu write domain while we've dropped the lock.
1034 */
1035 if (!needs_clflush_after &&
1036 obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
Chris Wilson000433b2013-08-08 14:41:09 +01001037 if (i915_gem_clflush_object(obj, obj->pin_display))
1038 i915_gem_chipset_flush(dev);
Daniel Vettere244a442012-03-25 19:47:28 +02001039 }
Daniel Vetter8c599672011-12-14 13:57:31 +01001040 }
Eric Anholt40123c12009-03-09 13:42:30 -07001041
Daniel Vetter58642882012-03-25 19:47:37 +02001042 if (needs_clflush_after)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08001043 i915_gem_chipset_flush(dev);
Daniel Vetter58642882012-03-25 19:47:37 +02001044
Paulo Zanoni063e4e62015-02-13 17:23:45 -02001045 intel_fb_obj_flush(obj, false);
Eric Anholt40123c12009-03-09 13:42:30 -07001046 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001047}
1048
1049/**
1050 * Writes data to the object referenced by handle.
1051 *
1052 * On error, the contents of the buffer that were to be modified are undefined.
1053 */
1054int
1055i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001056 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001057{
Imre Deak5d77d9c2014-11-12 16:40:35 +02001058 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001059 struct drm_i915_gem_pwrite *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001060 struct drm_i915_gem_object *obj;
Chris Wilson51311d02010-11-17 09:10:42 +00001061 int ret;
1062
1063 if (args->size == 0)
1064 return 0;
1065
1066 if (!access_ok(VERIFY_READ,
Ville Syrjälä2bb46292013-02-22 16:12:51 +02001067 to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +00001068 args->size))
1069 return -EFAULT;
1070
Jani Nikulad330a952014-01-21 11:24:25 +02001071 if (likely(!i915.prefault_disable)) {
Xiong Zhang0b74b502013-07-19 13:51:24 +08001072 ret = fault_in_multipages_readable(to_user_ptr(args->data_ptr),
1073 args->size);
1074 if (ret)
1075 return -EFAULT;
1076 }
Eric Anholt673a3942008-07-30 12:06:12 -07001077
Imre Deak5d77d9c2014-11-12 16:40:35 +02001078 intel_runtime_pm_get(dev_priv);
1079
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001080 ret = i915_mutex_lock_interruptible(dev);
1081 if (ret)
Imre Deak5d77d9c2014-11-12 16:40:35 +02001082 goto put_rpm;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001083
Chris Wilson05394f32010-11-08 19:18:58 +00001084 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001085 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001086 ret = -ENOENT;
1087 goto unlock;
1088 }
Eric Anholt673a3942008-07-30 12:06:12 -07001089
Chris Wilson7dcd2492010-09-26 20:21:44 +01001090 /* Bounds check destination. */
Chris Wilson05394f32010-11-08 19:18:58 +00001091 if (args->offset > obj->base.size ||
1092 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +01001093 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +01001094 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +01001095 }
1096
Daniel Vetter1286ff72012-05-10 15:25:09 +02001097 /* prime objects have no backing filp to GEM pread/pwrite
1098 * pages from.
1099 */
1100 if (!obj->base.filp) {
1101 ret = -EINVAL;
1102 goto out;
1103 }
1104
Chris Wilsondb53a302011-02-03 11:57:46 +00001105 trace_i915_gem_object_pwrite(obj, args->offset, args->size);
1106
Daniel Vetter935aaa62012-03-25 19:47:35 +02001107 ret = -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -07001108 /* We can only do the GTT pwrite on untiled buffers, as otherwise
1109 * it would end up going through the fenced access, and we'll get
1110 * different detiling behavior between reading and writing.
1111 * pread/pwrite currently are reading and writing from the CPU
1112 * perspective, requiring manual detiling by the client.
1113 */
Chris Wilson2c225692013-08-09 12:26:45 +01001114 if (obj->tiling_mode == I915_TILING_NONE &&
1115 obj->base.write_domain != I915_GEM_DOMAIN_CPU &&
1116 cpu_write_needs_clflush(obj)) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001117 ret = i915_gem_gtt_pwrite_fast(dev, obj, args, file);
Daniel Vetter935aaa62012-03-25 19:47:35 +02001118 /* Note that the gtt paths might fail with non-page-backed user
1119 * pointers (e.g. gtt mappings when moving data between
1120 * textures). Fallback to the shmem path in that case. */
Eric Anholt40123c12009-03-09 13:42:30 -07001121 }
Eric Anholt673a3942008-07-30 12:06:12 -07001122
Chris Wilson6a2c4232014-11-04 04:51:40 -08001123 if (ret == -EFAULT || ret == -ENOSPC) {
1124 if (obj->phys_handle)
1125 ret = i915_gem_phys_pwrite(obj, args, file);
1126 else
1127 ret = i915_gem_shmem_pwrite(dev, obj, args, file);
1128 }
Daniel Vetter5c0480f2011-12-14 13:57:30 +01001129
Chris Wilson35b62a82010-09-26 20:23:38 +01001130out:
Chris Wilson05394f32010-11-08 19:18:58 +00001131 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001132unlock:
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001133 mutex_unlock(&dev->struct_mutex);
Imre Deak5d77d9c2014-11-12 16:40:35 +02001134put_rpm:
1135 intel_runtime_pm_put(dev_priv);
1136
Eric Anholt673a3942008-07-30 12:06:12 -07001137 return ret;
1138}
1139
Chris Wilsonb3612372012-08-24 09:35:08 +01001140int
Daniel Vetter33196de2012-11-14 17:14:05 +01001141i915_gem_check_wedge(struct i915_gpu_error *error,
Chris Wilsonb3612372012-08-24 09:35:08 +01001142 bool interruptible)
1143{
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001144 if (i915_reset_in_progress(error)) {
Chris Wilsonb3612372012-08-24 09:35:08 +01001145 /* Non-interruptible callers can't handle -EAGAIN, hence return
1146 * -EIO unconditionally for these. */
1147 if (!interruptible)
1148 return -EIO;
1149
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001150 /* Recovery complete, but the reset failed ... */
1151 if (i915_terminally_wedged(error))
Chris Wilsonb3612372012-08-24 09:35:08 +01001152 return -EIO;
1153
McAulay, Alistair6689c162014-08-15 18:51:35 +01001154 /*
1155 * Check if GPU Reset is in progress - we need intel_ring_begin
1156 * to work properly to reinit the hw state while the gpu is
1157 * still marked as reset-in-progress. Handle this with a flag.
1158 */
1159 if (!error->reload_in_reset)
1160 return -EAGAIN;
Chris Wilsonb3612372012-08-24 09:35:08 +01001161 }
1162
1163 return 0;
1164}
1165
1166/*
John Harrisonb6660d52014-11-24 18:49:30 +00001167 * Compare arbitrary request against outstanding lazy request. Emit on match.
Chris Wilsonb3612372012-08-24 09:35:08 +01001168 */
Sourab Gupta84c33a62014-06-02 16:47:17 +05301169int
John Harrisonb6660d52014-11-24 18:49:30 +00001170i915_gem_check_olr(struct drm_i915_gem_request *req)
Chris Wilsonb3612372012-08-24 09:35:08 +01001171{
1172 int ret;
1173
John Harrisonb6660d52014-11-24 18:49:30 +00001174 WARN_ON(!mutex_is_locked(&req->ring->dev->struct_mutex));
Chris Wilsonb3612372012-08-24 09:35:08 +01001175
1176 ret = 0;
John Harrisonb6660d52014-11-24 18:49:30 +00001177 if (req == req->ring->outstanding_lazy_request)
John Harrison9400ae52014-11-24 18:49:36 +00001178 ret = i915_add_request(req->ring);
Chris Wilsonb3612372012-08-24 09:35:08 +01001179
1180 return ret;
1181}
1182
Chris Wilson094f9a52013-09-25 17:34:55 +01001183static void fake_irq(unsigned long data)
1184{
1185 wake_up_process((struct task_struct *)data);
1186}
1187
1188static bool missed_irq(struct drm_i915_private *dev_priv,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001189 struct intel_engine_cs *ring)
Chris Wilson094f9a52013-09-25 17:34:55 +01001190{
1191 return test_bit(ring->id, &dev_priv->gpu_error.missed_irq_rings);
1192}
1193
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001194static bool can_wait_boost(struct drm_i915_file_private *file_priv)
1195{
1196 if (file_priv == NULL)
1197 return true;
1198
1199 return !atomic_xchg(&file_priv->rps_wait_boost, true);
1200}
1201
Chris Wilsonb3612372012-08-24 09:35:08 +01001202/**
John Harrison9c654812014-11-24 18:49:35 +00001203 * __i915_wait_request - wait until execution of request has finished
1204 * @req: duh!
1205 * @reset_counter: reset sequence associated with the given request
Chris Wilsonb3612372012-08-24 09:35:08 +01001206 * @interruptible: do an interruptible wait (normally yes)
1207 * @timeout: in - how long to wait (NULL forever); out - how much time remaining
1208 *
Daniel Vetterf69061b2012-12-06 09:01:42 +01001209 * Note: It is of utmost importance that the passed in seqno and reset_counter
1210 * values have been read by the caller in an smp safe manner. Where read-side
1211 * locks are involved, it is sufficient to read the reset_counter before
1212 * unlocking the lock that protects the seqno. For lockless tricks, the
1213 * reset_counter _must_ be read before, and an appropriate smp_rmb must be
1214 * inserted.
1215 *
John Harrison9c654812014-11-24 18:49:35 +00001216 * Returns 0 if the request was found within the alloted time. Else returns the
Chris Wilsonb3612372012-08-24 09:35:08 +01001217 * errno with remaining time filled in timeout argument.
1218 */
John Harrison9c654812014-11-24 18:49:35 +00001219int __i915_wait_request(struct drm_i915_gem_request *req,
Daniel Vetterf69061b2012-12-06 09:01:42 +01001220 unsigned reset_counter,
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001221 bool interruptible,
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001222 s64 *timeout,
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001223 struct drm_i915_file_private *file_priv)
Chris Wilsonb3612372012-08-24 09:35:08 +01001224{
John Harrison9c654812014-11-24 18:49:35 +00001225 struct intel_engine_cs *ring = i915_gem_request_get_ring(req);
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001226 struct drm_device *dev = ring->dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03001227 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001228 const bool irq_test_in_progress =
1229 ACCESS_ONCE(dev_priv->gpu_error.test_irq_rings) & intel_ring_flag(ring);
Chris Wilson094f9a52013-09-25 17:34:55 +01001230 DEFINE_WAIT(wait);
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001231 unsigned long timeout_expire;
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001232 s64 before, now;
Chris Wilsonb3612372012-08-24 09:35:08 +01001233 int ret;
1234
Jesse Barnes9df7575f2014-06-20 09:29:20 -07001235 WARN(!intel_irqs_enabled(dev_priv), "IRQs disabled");
Paulo Zanonic67a4702013-08-19 13:18:09 -03001236
John Harrison1b5a4332014-11-24 18:49:42 +00001237 if (i915_gem_request_completed(req, true))
Chris Wilsonb3612372012-08-24 09:35:08 +01001238 return 0;
1239
Daniel Vetter7bd0e222014-12-04 11:12:54 +01001240 timeout_expire = timeout ?
1241 jiffies + nsecs_to_jiffies_timeout((u64)*timeout) : 0;
Chris Wilsonb3612372012-08-24 09:35:08 +01001242
Chris Wilsonec5cc0f2014-06-12 10:28:55 +01001243 if (INTEL_INFO(dev)->gen >= 6 && ring->id == RCS && can_wait_boost(file_priv)) {
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001244 gen6_rps_boost(dev_priv);
1245 if (file_priv)
1246 mod_delayed_work(dev_priv->wq,
1247 &file_priv->mm.idle_work,
1248 msecs_to_jiffies(100));
1249 }
1250
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001251 if (!irq_test_in_progress && WARN_ON(!ring->irq_get(ring)))
Chris Wilsonb3612372012-08-24 09:35:08 +01001252 return -ENODEV;
1253
Chris Wilson094f9a52013-09-25 17:34:55 +01001254 /* Record current time in case interrupted by signal, or wedged */
John Harrison74328ee2014-11-24 18:49:38 +00001255 trace_i915_gem_request_wait_begin(req);
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001256 before = ktime_get_raw_ns();
Chris Wilson094f9a52013-09-25 17:34:55 +01001257 for (;;) {
1258 struct timer_list timer;
Chris Wilsonb3612372012-08-24 09:35:08 +01001259
Chris Wilson094f9a52013-09-25 17:34:55 +01001260 prepare_to_wait(&ring->irq_queue, &wait,
1261 interruptible ? TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE);
Chris Wilsonb3612372012-08-24 09:35:08 +01001262
Daniel Vetterf69061b2012-12-06 09:01:42 +01001263 /* We need to check whether any gpu reset happened in between
1264 * the caller grabbing the seqno and now ... */
Chris Wilson094f9a52013-09-25 17:34:55 +01001265 if (reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter)) {
1266 /* ... but upgrade the -EAGAIN to an -EIO if the gpu
1267 * is truely gone. */
1268 ret = i915_gem_check_wedge(&dev_priv->gpu_error, interruptible);
1269 if (ret == 0)
1270 ret = -EAGAIN;
1271 break;
1272 }
Daniel Vetterf69061b2012-12-06 09:01:42 +01001273
John Harrison1b5a4332014-11-24 18:49:42 +00001274 if (i915_gem_request_completed(req, false)) {
Chris Wilson094f9a52013-09-25 17:34:55 +01001275 ret = 0;
1276 break;
1277 }
Chris Wilsonb3612372012-08-24 09:35:08 +01001278
Chris Wilson094f9a52013-09-25 17:34:55 +01001279 if (interruptible && signal_pending(current)) {
1280 ret = -ERESTARTSYS;
1281 break;
1282 }
1283
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001284 if (timeout && time_after_eq(jiffies, timeout_expire)) {
Chris Wilson094f9a52013-09-25 17:34:55 +01001285 ret = -ETIME;
1286 break;
1287 }
1288
1289 timer.function = NULL;
1290 if (timeout || missed_irq(dev_priv, ring)) {
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001291 unsigned long expire;
1292
Chris Wilson094f9a52013-09-25 17:34:55 +01001293 setup_timer_on_stack(&timer, fake_irq, (unsigned long)current);
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001294 expire = missed_irq(dev_priv, ring) ? jiffies + 1 : timeout_expire;
Chris Wilson094f9a52013-09-25 17:34:55 +01001295 mod_timer(&timer, expire);
1296 }
1297
Chris Wilson5035c272013-10-04 09:58:46 +01001298 io_schedule();
Chris Wilson094f9a52013-09-25 17:34:55 +01001299
Chris Wilson094f9a52013-09-25 17:34:55 +01001300 if (timer.function) {
1301 del_singleshot_timer_sync(&timer);
1302 destroy_timer_on_stack(&timer);
1303 }
1304 }
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001305 now = ktime_get_raw_ns();
John Harrison74328ee2014-11-24 18:49:38 +00001306 trace_i915_gem_request_wait_end(req);
Chris Wilsonb3612372012-08-24 09:35:08 +01001307
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001308 if (!irq_test_in_progress)
1309 ring->irq_put(ring);
Chris Wilson094f9a52013-09-25 17:34:55 +01001310
1311 finish_wait(&ring->irq_queue, &wait);
Chris Wilsonb3612372012-08-24 09:35:08 +01001312
1313 if (timeout) {
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001314 s64 tres = *timeout - (now - before);
1315
1316 *timeout = tres < 0 ? 0 : tres;
Daniel Vetter9cca3062014-11-28 10:29:55 +01001317
1318 /*
1319 * Apparently ktime isn't accurate enough and occasionally has a
1320 * bit of mismatch in the jiffies<->nsecs<->ktime loop. So patch
1321 * things up to make the test happy. We allow up to 1 jiffy.
1322 *
1323 * This is a regrssion from the timespec->ktime conversion.
1324 */
1325 if (ret == -ETIME && *timeout < jiffies_to_usecs(1)*1000)
1326 *timeout = 0;
Chris Wilsonb3612372012-08-24 09:35:08 +01001327 }
1328
Chris Wilson094f9a52013-09-25 17:34:55 +01001329 return ret;
Chris Wilsonb3612372012-08-24 09:35:08 +01001330}
1331
1332/**
Daniel Vettera4b3a572014-11-26 14:17:05 +01001333 * Waits for a request to be signaled, and cleans up the
Chris Wilsonb3612372012-08-24 09:35:08 +01001334 * request and object lists appropriately for that event.
1335 */
1336int
Daniel Vettera4b3a572014-11-26 14:17:05 +01001337i915_wait_request(struct drm_i915_gem_request *req)
Chris Wilsonb3612372012-08-24 09:35:08 +01001338{
Daniel Vettera4b3a572014-11-26 14:17:05 +01001339 struct drm_device *dev;
1340 struct drm_i915_private *dev_priv;
1341 bool interruptible;
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001342 unsigned reset_counter;
Chris Wilsonb3612372012-08-24 09:35:08 +01001343 int ret;
1344
Daniel Vettera4b3a572014-11-26 14:17:05 +01001345 BUG_ON(req == NULL);
1346
1347 dev = req->ring->dev;
1348 dev_priv = dev->dev_private;
1349 interruptible = dev_priv->mm.interruptible;
1350
Chris Wilsonb3612372012-08-24 09:35:08 +01001351 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
Chris Wilsonb3612372012-08-24 09:35:08 +01001352
Daniel Vetter33196de2012-11-14 17:14:05 +01001353 ret = i915_gem_check_wedge(&dev_priv->gpu_error, interruptible);
Chris Wilsonb3612372012-08-24 09:35:08 +01001354 if (ret)
1355 return ret;
1356
Daniel Vettera4b3a572014-11-26 14:17:05 +01001357 ret = i915_gem_check_olr(req);
Chris Wilsonb3612372012-08-24 09:35:08 +01001358 if (ret)
1359 return ret;
1360
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001361 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Daniel Vettera4b3a572014-11-26 14:17:05 +01001362 i915_gem_request_reference(req);
John Harrison9c654812014-11-24 18:49:35 +00001363 ret = __i915_wait_request(req, reset_counter,
1364 interruptible, NULL, NULL);
Daniel Vettera4b3a572014-11-26 14:17:05 +01001365 i915_gem_request_unreference(req);
1366 return ret;
Chris Wilsonb3612372012-08-24 09:35:08 +01001367}
1368
Chris Wilsond26e3af2013-06-29 22:05:26 +01001369static int
John Harrison8e6395492014-10-30 18:40:53 +00001370i915_gem_object_wait_rendering__tail(struct drm_i915_gem_object *obj)
Chris Wilsond26e3af2013-06-29 22:05:26 +01001371{
Chris Wilsonc8725f32014-03-17 12:21:55 +00001372 if (!obj->active)
1373 return 0;
Chris Wilsond26e3af2013-06-29 22:05:26 +01001374
1375 /* Manually manage the write flush as we may have not yet
1376 * retired the buffer.
1377 *
John Harrison97b2a6a2014-11-24 18:49:26 +00001378 * Note that the last_write_req is always the earlier of
1379 * the two (read/write) requests, so if we haved successfully waited,
Chris Wilsond26e3af2013-06-29 22:05:26 +01001380 * we know we have passed the last write.
1381 */
John Harrison97b2a6a2014-11-24 18:49:26 +00001382 i915_gem_request_assign(&obj->last_write_req, NULL);
Chris Wilsond26e3af2013-06-29 22:05:26 +01001383
1384 return 0;
1385}
1386
Chris Wilsonb3612372012-08-24 09:35:08 +01001387/**
1388 * Ensures that all rendering to the object has completed and the object is
1389 * safe to unbind from the GTT or access from the CPU.
1390 */
1391static __must_check int
1392i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj,
1393 bool readonly)
1394{
John Harrison97b2a6a2014-11-24 18:49:26 +00001395 struct drm_i915_gem_request *req;
Chris Wilsonb3612372012-08-24 09:35:08 +01001396 int ret;
1397
John Harrison97b2a6a2014-11-24 18:49:26 +00001398 req = readonly ? obj->last_write_req : obj->last_read_req;
1399 if (!req)
Chris Wilsonb3612372012-08-24 09:35:08 +01001400 return 0;
1401
Daniel Vettera4b3a572014-11-26 14:17:05 +01001402 ret = i915_wait_request(req);
Chris Wilsonb3612372012-08-24 09:35:08 +01001403 if (ret)
1404 return ret;
1405
John Harrison8e6395492014-10-30 18:40:53 +00001406 return i915_gem_object_wait_rendering__tail(obj);
Chris Wilsonb3612372012-08-24 09:35:08 +01001407}
1408
Chris Wilson3236f572012-08-24 09:35:09 +01001409/* A nonblocking variant of the above wait. This is a highly dangerous routine
1410 * as the object state may change during this call.
1411 */
1412static __must_check int
1413i915_gem_object_wait_rendering__nonblocking(struct drm_i915_gem_object *obj,
Chris Wilson6e4930f2014-02-07 18:37:06 -02001414 struct drm_i915_file_private *file_priv,
Chris Wilson3236f572012-08-24 09:35:09 +01001415 bool readonly)
1416{
John Harrison97b2a6a2014-11-24 18:49:26 +00001417 struct drm_i915_gem_request *req;
Chris Wilson3236f572012-08-24 09:35:09 +01001418 struct drm_device *dev = obj->base.dev;
1419 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf69061b2012-12-06 09:01:42 +01001420 unsigned reset_counter;
Chris Wilson3236f572012-08-24 09:35:09 +01001421 int ret;
1422
1423 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
1424 BUG_ON(!dev_priv->mm.interruptible);
1425
John Harrison97b2a6a2014-11-24 18:49:26 +00001426 req = readonly ? obj->last_write_req : obj->last_read_req;
1427 if (!req)
Chris Wilson3236f572012-08-24 09:35:09 +01001428 return 0;
1429
Daniel Vetter33196de2012-11-14 17:14:05 +01001430 ret = i915_gem_check_wedge(&dev_priv->gpu_error, true);
Chris Wilson3236f572012-08-24 09:35:09 +01001431 if (ret)
1432 return ret;
1433
John Harrisonb6660d52014-11-24 18:49:30 +00001434 ret = i915_gem_check_olr(req);
Chris Wilson3236f572012-08-24 09:35:09 +01001435 if (ret)
1436 return ret;
1437
Daniel Vetterf69061b2012-12-06 09:01:42 +01001438 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
John Harrisonff865882014-11-24 18:49:28 +00001439 i915_gem_request_reference(req);
Chris Wilson3236f572012-08-24 09:35:09 +01001440 mutex_unlock(&dev->struct_mutex);
John Harrison9c654812014-11-24 18:49:35 +00001441 ret = __i915_wait_request(req, reset_counter, true, NULL, file_priv);
Chris Wilson3236f572012-08-24 09:35:09 +01001442 mutex_lock(&dev->struct_mutex);
John Harrisonff865882014-11-24 18:49:28 +00001443 i915_gem_request_unreference(req);
Chris Wilsond26e3af2013-06-29 22:05:26 +01001444 if (ret)
1445 return ret;
Chris Wilson3236f572012-08-24 09:35:09 +01001446
John Harrison8e6395492014-10-30 18:40:53 +00001447 return i915_gem_object_wait_rendering__tail(obj);
Chris Wilson3236f572012-08-24 09:35:09 +01001448}
1449
Eric Anholt673a3942008-07-30 12:06:12 -07001450/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001451 * Called when user space prepares to use an object with the CPU, either
1452 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -07001453 */
1454int
1455i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001456 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001457{
1458 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001459 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001460 uint32_t read_domains = args->read_domains;
1461 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07001462 int ret;
1463
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001464 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +01001465 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001466 return -EINVAL;
1467
Chris Wilson21d509e2009-06-06 09:46:02 +01001468 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001469 return -EINVAL;
1470
1471 /* Having something in the write domain implies it's in the read
1472 * domain, and only that read domain. Enforce that in the request.
1473 */
1474 if (write_domain != 0 && read_domains != write_domain)
1475 return -EINVAL;
1476
Chris Wilson76c1dec2010-09-25 11:22:51 +01001477 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001478 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001479 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001480
Chris Wilson05394f32010-11-08 19:18:58 +00001481 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001482 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001483 ret = -ENOENT;
1484 goto unlock;
Chris Wilson76c1dec2010-09-25 11:22:51 +01001485 }
Jesse Barnes652c3932009-08-17 13:31:43 -07001486
Chris Wilson3236f572012-08-24 09:35:09 +01001487 /* Try to flush the object off the GPU without holding the lock.
1488 * We will repeat the flush holding the lock in the normal manner
1489 * to catch cases where we are gazumped.
1490 */
Chris Wilson6e4930f2014-02-07 18:37:06 -02001491 ret = i915_gem_object_wait_rendering__nonblocking(obj,
1492 file->driver_priv,
1493 !write_domain);
Chris Wilson3236f572012-08-24 09:35:09 +01001494 if (ret)
1495 goto unref;
1496
Chris Wilson43566de2015-01-02 16:29:29 +05301497 if (read_domains & I915_GEM_DOMAIN_GTT)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001498 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Chris Wilson43566de2015-01-02 16:29:29 +05301499 else
Eric Anholte47c68e2008-11-14 13:35:19 -08001500 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001501
Chris Wilson3236f572012-08-24 09:35:09 +01001502unref:
Chris Wilson05394f32010-11-08 19:18:58 +00001503 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001504unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001505 mutex_unlock(&dev->struct_mutex);
1506 return ret;
1507}
1508
1509/**
1510 * Called when user space has done writes to this buffer
1511 */
1512int
1513i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001514 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001515{
1516 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001517 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001518 int ret = 0;
1519
Chris Wilson76c1dec2010-09-25 11:22:51 +01001520 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001521 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001522 return ret;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001523
Chris Wilson05394f32010-11-08 19:18:58 +00001524 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001525 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001526 ret = -ENOENT;
1527 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07001528 }
1529
Eric Anholt673a3942008-07-30 12:06:12 -07001530 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilson2c225692013-08-09 12:26:45 +01001531 if (obj->pin_display)
Daniel Vettere62b59e2015-01-21 14:53:48 +01001532 i915_gem_object_flush_cpu_write_domain(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08001533
Chris Wilson05394f32010-11-08 19:18:58 +00001534 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001535unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001536 mutex_unlock(&dev->struct_mutex);
1537 return ret;
1538}
1539
1540/**
1541 * Maps the contents of an object, returning the address it is mapped
1542 * into.
1543 *
1544 * While the mapping holds a reference on the contents of the object, it doesn't
1545 * imply a ref on the object itself.
Daniel Vetter34367382014-10-16 12:28:18 +02001546 *
1547 * IMPORTANT:
1548 *
1549 * DRM driver writers who look a this function as an example for how to do GEM
1550 * mmap support, please don't implement mmap support like here. The modern way
1551 * to implement DRM mmap support is with an mmap offset ioctl (like
1552 * i915_gem_mmap_gtt) and then using the mmap syscall on the DRM fd directly.
1553 * That way debug tooling like valgrind will understand what's going on, hiding
1554 * the mmap call in a driver private ioctl will break that. The i915 driver only
1555 * does cpu mmaps this way because we didn't know better.
Eric Anholt673a3942008-07-30 12:06:12 -07001556 */
1557int
1558i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001559 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001560{
1561 struct drm_i915_gem_mmap *args = data;
1562 struct drm_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001563 unsigned long addr;
1564
Akash Goel1816f922015-01-02 16:29:30 +05301565 if (args->flags & ~(I915_MMAP_WC))
1566 return -EINVAL;
1567
1568 if (args->flags & I915_MMAP_WC && !cpu_has_pat)
1569 return -ENODEV;
1570
Chris Wilson05394f32010-11-08 19:18:58 +00001571 obj = drm_gem_object_lookup(dev, file, args->handle);
Eric Anholt673a3942008-07-30 12:06:12 -07001572 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001573 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001574
Daniel Vetter1286ff72012-05-10 15:25:09 +02001575 /* prime objects have no backing filp to GEM mmap
1576 * pages from.
1577 */
1578 if (!obj->filp) {
1579 drm_gem_object_unreference_unlocked(obj);
1580 return -EINVAL;
1581 }
1582
Linus Torvalds6be5ceb2012-04-20 17:13:58 -07001583 addr = vm_mmap(obj->filp, 0, args->size,
Eric Anholt673a3942008-07-30 12:06:12 -07001584 PROT_READ | PROT_WRITE, MAP_SHARED,
1585 args->offset);
Akash Goel1816f922015-01-02 16:29:30 +05301586 if (args->flags & I915_MMAP_WC) {
1587 struct mm_struct *mm = current->mm;
1588 struct vm_area_struct *vma;
1589
1590 down_write(&mm->mmap_sem);
1591 vma = find_vma(mm, addr);
1592 if (vma)
1593 vma->vm_page_prot =
1594 pgprot_writecombine(vm_get_page_prot(vma->vm_flags));
1595 else
1596 addr = -ENOMEM;
1597 up_write(&mm->mmap_sem);
1598 }
Luca Barbieribc9025b2010-02-09 05:49:12 +00001599 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001600 if (IS_ERR((void *)addr))
1601 return addr;
1602
1603 args->addr_ptr = (uint64_t) addr;
1604
1605 return 0;
1606}
1607
Jesse Barnesde151cf2008-11-12 10:03:55 -08001608/**
1609 * i915_gem_fault - fault a page into the GTT
1610 * vma: VMA in question
1611 * vmf: fault info
1612 *
1613 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1614 * from userspace. The fault handler takes care of binding the object to
1615 * the GTT (if needed), allocating and programming a fence register (again,
1616 * only if needed based on whether the old reg is still valid or the object
1617 * is tiled) and inserting a new PTE into the faulting process.
1618 *
1619 * Note that the faulting process may involve evicting existing objects
1620 * from the GTT and/or fence registers to make room. So performance may
1621 * suffer if the GTT working set is large or there are few fence registers
1622 * left.
1623 */
1624int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1625{
Chris Wilson05394f32010-11-08 19:18:58 +00001626 struct drm_i915_gem_object *obj = to_intel_bo(vma->vm_private_data);
1627 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03001628 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001629 pgoff_t page_offset;
1630 unsigned long pfn;
1631 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001632 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001633
Paulo Zanonif65c9162013-11-27 18:20:34 -02001634 intel_runtime_pm_get(dev_priv);
1635
Jesse Barnesde151cf2008-11-12 10:03:55 -08001636 /* We don't use vmf->pgoff since that has the fake offset */
1637 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1638 PAGE_SHIFT;
1639
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001640 ret = i915_mutex_lock_interruptible(dev);
1641 if (ret)
1642 goto out;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001643
Chris Wilsondb53a302011-02-03 11:57:46 +00001644 trace_i915_gem_object_fault(obj, page_offset, true, write);
1645
Chris Wilson6e4930f2014-02-07 18:37:06 -02001646 /* Try to flush the object off the GPU first without holding the lock.
1647 * Upon reacquiring the lock, we will perform our sanity checks and then
1648 * repeat the flush holding the lock in the normal manner to catch cases
1649 * where we are gazumped.
1650 */
1651 ret = i915_gem_object_wait_rendering__nonblocking(obj, NULL, !write);
1652 if (ret)
1653 goto unlock;
1654
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001655 /* Access to snoopable pages through the GTT is incoherent. */
1656 if (obj->cache_level != I915_CACHE_NONE && !HAS_LLC(dev)) {
Chris Wilsonddeff6e2014-05-28 16:16:41 +01001657 ret = -EFAULT;
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001658 goto unlock;
1659 }
1660
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001661 /* Now bind it into the GTT if needed */
Daniel Vetter1ec9e262014-02-14 14:01:11 +01001662 ret = i915_gem_obj_ggtt_pin(obj, 0, PIN_MAPPABLE);
Chris Wilsond9e86c02010-11-10 16:40:20 +00001663 if (ret)
1664 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001665
Chris Wilsonc9839302012-11-20 10:45:17 +00001666 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1667 if (ret)
1668 goto unpin;
1669
1670 ret = i915_gem_object_get_fence(obj);
1671 if (ret)
1672 goto unpin;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001673
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001674 /* Finally, remap it using the new GTT offset */
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001675 pfn = dev_priv->gtt.mappable_base + i915_gem_obj_ggtt_offset(obj);
1676 pfn >>= PAGE_SHIFT;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001677
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001678 if (!obj->fault_mappable) {
Ville Syrjäläbeff0d02014-06-17 21:03:00 +03001679 unsigned long size = min_t(unsigned long,
1680 vma->vm_end - vma->vm_start,
1681 obj->base.size);
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001682 int i;
1683
Ville Syrjäläbeff0d02014-06-17 21:03:00 +03001684 for (i = 0; i < size >> PAGE_SHIFT; i++) {
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001685 ret = vm_insert_pfn(vma,
1686 (unsigned long)vma->vm_start + i * PAGE_SIZE,
1687 pfn + i);
1688 if (ret)
1689 break;
1690 }
1691
1692 obj->fault_mappable = true;
1693 } else
1694 ret = vm_insert_pfn(vma,
1695 (unsigned long)vmf->virtual_address,
1696 pfn + page_offset);
Chris Wilsonc9839302012-11-20 10:45:17 +00001697unpin:
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08001698 i915_gem_object_ggtt_unpin(obj);
Chris Wilsonc7150892009-09-23 00:43:56 +01001699unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001700 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001701out:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001702 switch (ret) {
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001703 case -EIO:
Daniel Vetter2232f032014-09-04 09:36:18 +02001704 /*
1705 * We eat errors when the gpu is terminally wedged to avoid
1706 * userspace unduly crashing (gl has no provisions for mmaps to
1707 * fail). But any other -EIO isn't ours (e.g. swap in failure)
1708 * and so needs to be reported.
1709 */
1710 if (!i915_terminally_wedged(&dev_priv->gpu_error)) {
Paulo Zanonif65c9162013-11-27 18:20:34 -02001711 ret = VM_FAULT_SIGBUS;
1712 break;
1713 }
Chris Wilson045e7692010-11-07 09:18:22 +00001714 case -EAGAIN:
Daniel Vetter571c6082013-09-12 17:57:28 +02001715 /*
1716 * EAGAIN means the gpu is hung and we'll wait for the error
1717 * handler to reset everything when re-faulting in
1718 * i915_mutex_lock_interruptible.
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001719 */
Chris Wilsonc7150892009-09-23 00:43:56 +01001720 case 0:
1721 case -ERESTARTSYS:
Chris Wilsonbed636a2011-02-11 20:31:19 +00001722 case -EINTR:
Dmitry Rogozhkine79e0fe2012-10-03 17:15:26 +03001723 case -EBUSY:
1724 /*
1725 * EBUSY is ok: this just means that another thread
1726 * already did the job.
1727 */
Paulo Zanonif65c9162013-11-27 18:20:34 -02001728 ret = VM_FAULT_NOPAGE;
1729 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001730 case -ENOMEM:
Paulo Zanonif65c9162013-11-27 18:20:34 -02001731 ret = VM_FAULT_OOM;
1732 break;
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001733 case -ENOSPC:
Chris Wilson45d67812014-01-31 11:34:57 +00001734 case -EFAULT:
Paulo Zanonif65c9162013-11-27 18:20:34 -02001735 ret = VM_FAULT_SIGBUS;
1736 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001737 default:
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001738 WARN_ONCE(ret, "unhandled error in i915_gem_fault: %i\n", ret);
Paulo Zanonif65c9162013-11-27 18:20:34 -02001739 ret = VM_FAULT_SIGBUS;
1740 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001741 }
Paulo Zanonif65c9162013-11-27 18:20:34 -02001742
1743 intel_runtime_pm_put(dev_priv);
1744 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001745}
1746
1747/**
Chris Wilson901782b2009-07-10 08:18:50 +01001748 * i915_gem_release_mmap - remove physical page mappings
1749 * @obj: obj in question
1750 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001751 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001752 * relinquish ownership of the pages back to the system.
1753 *
1754 * It is vital that we remove the page mapping if we have mapped a tiled
1755 * object through the GTT and then lose the fence register due to
1756 * resource pressure. Similarly if the object has been moved out of the
1757 * aperture, than pages mapped into userspace must be revoked. Removing the
1758 * mapping will then trigger a page fault on the next user access, allowing
1759 * fixup by i915_gem_fault().
1760 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001761void
Chris Wilson05394f32010-11-08 19:18:58 +00001762i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01001763{
Chris Wilson6299f992010-11-24 12:23:44 +00001764 if (!obj->fault_mappable)
1765 return;
Chris Wilson901782b2009-07-10 08:18:50 +01001766
David Herrmann6796cb12014-01-03 14:24:19 +01001767 drm_vma_node_unmap(&obj->base.vma_node,
1768 obj->base.dev->anon_inode->i_mapping);
Chris Wilson6299f992010-11-24 12:23:44 +00001769 obj->fault_mappable = false;
Chris Wilson901782b2009-07-10 08:18:50 +01001770}
1771
Chris Wilsoneedd10f2014-06-16 08:57:44 +01001772void
1773i915_gem_release_all_mmaps(struct drm_i915_private *dev_priv)
1774{
1775 struct drm_i915_gem_object *obj;
1776
1777 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list)
1778 i915_gem_release_mmap(obj);
1779}
1780
Imre Deak0fa87792013-01-07 21:47:35 +02001781uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001782i915_gem_get_gtt_size(struct drm_device *dev, uint32_t size, int tiling_mode)
Chris Wilson92b88ae2010-11-09 11:47:32 +00001783{
Chris Wilsone28f8712011-07-18 13:11:49 -07001784 uint32_t gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001785
1786 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001787 tiling_mode == I915_TILING_NONE)
1788 return size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001789
1790 /* Previous chips need a power-of-two fence region when tiling */
1791 if (INTEL_INFO(dev)->gen == 3)
Chris Wilsone28f8712011-07-18 13:11:49 -07001792 gtt_size = 1024*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001793 else
Chris Wilsone28f8712011-07-18 13:11:49 -07001794 gtt_size = 512*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001795
Chris Wilsone28f8712011-07-18 13:11:49 -07001796 while (gtt_size < size)
1797 gtt_size <<= 1;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001798
Chris Wilsone28f8712011-07-18 13:11:49 -07001799 return gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001800}
1801
Jesse Barnesde151cf2008-11-12 10:03:55 -08001802/**
1803 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1804 * @obj: object to check
1805 *
1806 * Return the required GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01001807 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08001808 */
Imre Deakd8651102013-01-07 21:47:33 +02001809uint32_t
1810i915_gem_get_gtt_alignment(struct drm_device *dev, uint32_t size,
1811 int tiling_mode, bool fenced)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001812{
Jesse Barnesde151cf2008-11-12 10:03:55 -08001813 /*
1814 * Minimum alignment is 4k (GTT page size), but might be greater
1815 * if a fence register is needed for the object.
1816 */
Imre Deakd8651102013-01-07 21:47:33 +02001817 if (INTEL_INFO(dev)->gen >= 4 || (!fenced && IS_G33(dev)) ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001818 tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001819 return 4096;
1820
1821 /*
1822 * Previous chips need to be aligned to the size of the smallest
1823 * fence register that can contain the object.
1824 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001825 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01001826}
1827
Chris Wilsond8cb5082012-08-11 15:41:03 +01001828static int i915_gem_object_create_mmap_offset(struct drm_i915_gem_object *obj)
1829{
1830 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
1831 int ret;
1832
David Herrmann0de23972013-07-24 21:07:52 +02001833 if (drm_vma_node_has_offset(&obj->base.vma_node))
Chris Wilsond8cb5082012-08-11 15:41:03 +01001834 return 0;
1835
Daniel Vetterda494d72012-12-20 15:11:16 +01001836 dev_priv->mm.shrinker_no_lock_stealing = true;
1837
Chris Wilsond8cb5082012-08-11 15:41:03 +01001838 ret = drm_gem_create_mmap_offset(&obj->base);
1839 if (ret != -ENOSPC)
Daniel Vetterda494d72012-12-20 15:11:16 +01001840 goto out;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001841
1842 /* Badly fragmented mmap space? The only way we can recover
1843 * space is by destroying unwanted objects. We can't randomly release
1844 * mmap_offsets as userspace expects them to be persistent for the
1845 * lifetime of the objects. The closest we can is to release the
1846 * offsets on purgeable objects by truncating it and marking it purged,
1847 * which prevents userspace from ever using that object again.
1848 */
Chris Wilson21ab4e72014-09-09 11:16:08 +01001849 i915_gem_shrink(dev_priv,
1850 obj->base.size >> PAGE_SHIFT,
1851 I915_SHRINK_BOUND |
1852 I915_SHRINK_UNBOUND |
1853 I915_SHRINK_PURGEABLE);
Chris Wilsond8cb5082012-08-11 15:41:03 +01001854 ret = drm_gem_create_mmap_offset(&obj->base);
1855 if (ret != -ENOSPC)
Daniel Vetterda494d72012-12-20 15:11:16 +01001856 goto out;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001857
1858 i915_gem_shrink_all(dev_priv);
Daniel Vetterda494d72012-12-20 15:11:16 +01001859 ret = drm_gem_create_mmap_offset(&obj->base);
1860out:
1861 dev_priv->mm.shrinker_no_lock_stealing = false;
1862
1863 return ret;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001864}
1865
1866static void i915_gem_object_free_mmap_offset(struct drm_i915_gem_object *obj)
1867{
Chris Wilsond8cb5082012-08-11 15:41:03 +01001868 drm_gem_free_mmap_offset(&obj->base);
1869}
1870
Dave Airlieda6b51d2014-12-24 13:11:17 +10001871int
Dave Airlieff72145b2011-02-07 12:16:14 +10001872i915_gem_mmap_gtt(struct drm_file *file,
1873 struct drm_device *dev,
Dave Airlieda6b51d2014-12-24 13:11:17 +10001874 uint32_t handle,
Dave Airlieff72145b2011-02-07 12:16:14 +10001875 uint64_t *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001876{
Chris Wilsonda761a62010-10-27 17:37:08 +01001877 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001878 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001879 int ret;
1880
Chris Wilson76c1dec2010-09-25 11:22:51 +01001881 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001882 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001883 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001884
Dave Airlieff72145b2011-02-07 12:16:14 +10001885 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001886 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001887 ret = -ENOENT;
1888 goto unlock;
1889 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001890
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001891 if (obj->base.size > dev_priv->gtt.mappable_end) {
Chris Wilsonda761a62010-10-27 17:37:08 +01001892 ret = -E2BIG;
Eric Anholtff56b0b2011-10-31 23:16:21 -07001893 goto out;
Chris Wilsonda761a62010-10-27 17:37:08 +01001894 }
1895
Chris Wilson05394f32010-11-08 19:18:58 +00001896 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00001897 DRM_DEBUG("Attempting to mmap a purgeable buffer\n");
Chris Wilson8c99e572014-01-31 11:34:58 +00001898 ret = -EFAULT;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001899 goto out;
Chris Wilsonab182822009-09-22 18:46:17 +01001900 }
1901
Chris Wilsond8cb5082012-08-11 15:41:03 +01001902 ret = i915_gem_object_create_mmap_offset(obj);
1903 if (ret)
1904 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001905
David Herrmann0de23972013-07-24 21:07:52 +02001906 *offset = drm_vma_node_offset_addr(&obj->base.vma_node);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001907
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001908out:
Chris Wilson05394f32010-11-08 19:18:58 +00001909 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001910unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001911 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001912 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001913}
1914
Dave Airlieff72145b2011-02-07 12:16:14 +10001915/**
1916 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1917 * @dev: DRM device
1918 * @data: GTT mapping ioctl data
1919 * @file: GEM object info
1920 *
1921 * Simply returns the fake offset to userspace so it can mmap it.
1922 * The mmap call will end up in drm_gem_mmap(), which will set things
1923 * up so we can get faults in the handler above.
1924 *
1925 * The fault handler will take care of binding the object into the GTT
1926 * (since it may have been evicted to make room for something), allocating
1927 * a fence register, and mapping the appropriate aperture address into
1928 * userspace.
1929 */
1930int
1931i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
1932 struct drm_file *file)
1933{
1934 struct drm_i915_gem_mmap_gtt *args = data;
1935
Dave Airlieda6b51d2014-12-24 13:11:17 +10001936 return i915_gem_mmap_gtt(file, dev, args->handle, &args->offset);
Dave Airlieff72145b2011-02-07 12:16:14 +10001937}
1938
Chris Wilson55372522014-03-25 13:23:06 +00001939static inline int
1940i915_gem_object_is_purgeable(struct drm_i915_gem_object *obj)
1941{
1942 return obj->madv == I915_MADV_DONTNEED;
1943}
1944
Daniel Vetter225067e2012-08-20 10:23:20 +02001945/* Immediately discard the backing storage */
1946static void
1947i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001948{
Chris Wilson4d6294bf2012-08-11 15:41:05 +01001949 i915_gem_object_free_mmap_offset(obj);
Daniel Vetter1286ff72012-05-10 15:25:09 +02001950
Chris Wilson4d6294bf2012-08-11 15:41:05 +01001951 if (obj->base.filp == NULL)
1952 return;
1953
Daniel Vetter225067e2012-08-20 10:23:20 +02001954 /* Our goal here is to return as much of the memory as
1955 * is possible back to the system as we are called from OOM.
1956 * To do this we must instruct the shmfs to drop all of its
1957 * backing pages, *now*.
Chris Wilsone5281cc2010-10-28 13:45:36 +01001958 */
Chris Wilson55372522014-03-25 13:23:06 +00001959 shmem_truncate_range(file_inode(obj->base.filp), 0, (loff_t)-1);
Daniel Vetter225067e2012-08-20 10:23:20 +02001960 obj->madv = __I915_MADV_PURGED;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001961}
Chris Wilsone5281cc2010-10-28 13:45:36 +01001962
Chris Wilson55372522014-03-25 13:23:06 +00001963/* Try to discard unwanted pages */
1964static void
1965i915_gem_object_invalidate(struct drm_i915_gem_object *obj)
Daniel Vetter225067e2012-08-20 10:23:20 +02001966{
Chris Wilson55372522014-03-25 13:23:06 +00001967 struct address_space *mapping;
1968
1969 switch (obj->madv) {
1970 case I915_MADV_DONTNEED:
1971 i915_gem_object_truncate(obj);
1972 case __I915_MADV_PURGED:
1973 return;
1974 }
1975
1976 if (obj->base.filp == NULL)
1977 return;
1978
1979 mapping = file_inode(obj->base.filp)->i_mapping,
1980 invalidate_mapping_pages(mapping, 0, (loff_t)-1);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001981}
1982
Chris Wilson5cdf5882010-09-27 15:51:07 +01001983static void
Chris Wilson05394f32010-11-08 19:18:58 +00001984i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001985{
Imre Deak90797e62013-02-18 19:28:03 +02001986 struct sg_page_iter sg_iter;
1987 int ret;
Daniel Vetter1286ff72012-05-10 15:25:09 +02001988
Chris Wilson05394f32010-11-08 19:18:58 +00001989 BUG_ON(obj->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07001990
Chris Wilson6c085a72012-08-20 11:40:46 +02001991 ret = i915_gem_object_set_to_cpu_domain(obj, true);
1992 if (ret) {
1993 /* In the event of a disaster, abandon all caches and
1994 * hope for the best.
1995 */
1996 WARN_ON(ret != -EIO);
Chris Wilson2c225692013-08-09 12:26:45 +01001997 i915_gem_clflush_object(obj, true);
Chris Wilson6c085a72012-08-20 11:40:46 +02001998 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
1999 }
2000
Daniel Vetter6dacfd22011-09-12 21:30:02 +02002001 if (i915_gem_object_needs_bit17_swizzle(obj))
Eric Anholt280b7132009-03-12 16:56:27 -07002002 i915_gem_object_save_bit_17_swizzle(obj);
2003
Chris Wilson05394f32010-11-08 19:18:58 +00002004 if (obj->madv == I915_MADV_DONTNEED)
2005 obj->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01002006
Imre Deak90797e62013-02-18 19:28:03 +02002007 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents, 0) {
Imre Deak2db76d72013-03-26 15:14:18 +02002008 struct page *page = sg_page_iter_page(&sg_iter);
Chris Wilson9da3da62012-06-01 15:20:22 +01002009
Chris Wilson05394f32010-11-08 19:18:58 +00002010 if (obj->dirty)
Chris Wilson9da3da62012-06-01 15:20:22 +01002011 set_page_dirty(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01002012
Chris Wilson05394f32010-11-08 19:18:58 +00002013 if (obj->madv == I915_MADV_WILLNEED)
Chris Wilson9da3da62012-06-01 15:20:22 +01002014 mark_page_accessed(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01002015
Chris Wilson9da3da62012-06-01 15:20:22 +01002016 page_cache_release(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01002017 }
Chris Wilson05394f32010-11-08 19:18:58 +00002018 obj->dirty = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002019
Chris Wilson9da3da62012-06-01 15:20:22 +01002020 sg_free_table(obj->pages);
2021 kfree(obj->pages);
Chris Wilson37e680a2012-06-07 15:38:42 +01002022}
2023
Chris Wilsondd624af2013-01-15 12:39:35 +00002024int
Chris Wilson37e680a2012-06-07 15:38:42 +01002025i915_gem_object_put_pages(struct drm_i915_gem_object *obj)
2026{
2027 const struct drm_i915_gem_object_ops *ops = obj->ops;
2028
Chris Wilson2f745ad2012-09-04 21:02:58 +01002029 if (obj->pages == NULL)
Chris Wilson37e680a2012-06-07 15:38:42 +01002030 return 0;
2031
Chris Wilsona5570172012-09-04 21:02:54 +01002032 if (obj->pages_pin_count)
2033 return -EBUSY;
2034
Ben Widawsky98438772013-07-31 17:00:12 -07002035 BUG_ON(i915_gem_obj_bound_any(obj));
Ben Widawsky3e123022013-07-31 17:00:04 -07002036
Chris Wilsona2165e32012-12-03 11:49:00 +00002037 /* ->put_pages might need to allocate memory for the bit17 swizzle
2038 * array, hence protect them from being reaped by removing them from gtt
2039 * lists early. */
Ben Widawsky35c20a62013-05-31 11:28:48 -07002040 list_del(&obj->global_list);
Chris Wilsona2165e32012-12-03 11:49:00 +00002041
Chris Wilson37e680a2012-06-07 15:38:42 +01002042 ops->put_pages(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002043 obj->pages = NULL;
Chris Wilson6c085a72012-08-20 11:40:46 +02002044
Chris Wilson55372522014-03-25 13:23:06 +00002045 i915_gem_object_invalidate(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02002046
2047 return 0;
2048}
2049
Chris Wilson21ab4e72014-09-09 11:16:08 +01002050unsigned long
2051i915_gem_shrink(struct drm_i915_private *dev_priv,
2052 long target, unsigned flags)
Chris Wilson6c085a72012-08-20 11:40:46 +02002053{
Chris Wilson60a53722014-10-03 10:29:51 +01002054 const struct {
2055 struct list_head *list;
2056 unsigned int bit;
2057 } phases[] = {
2058 { &dev_priv->mm.unbound_list, I915_SHRINK_UNBOUND },
2059 { &dev_priv->mm.bound_list, I915_SHRINK_BOUND },
2060 { NULL, 0 },
2061 }, *phase;
Chris Wilsond9973b42013-10-04 10:33:00 +01002062 unsigned long count = 0;
Chris Wilson6c085a72012-08-20 11:40:46 +02002063
Chris Wilson57094f82013-09-04 10:45:50 +01002064 /*
Chris Wilsonc8725f32014-03-17 12:21:55 +00002065 * As we may completely rewrite the (un)bound list whilst unbinding
Chris Wilson57094f82013-09-04 10:45:50 +01002066 * (due to retiring requests) we have to strictly process only
2067 * one element of the list at the time, and recheck the list
2068 * on every iteration.
Chris Wilsonc8725f32014-03-17 12:21:55 +00002069 *
2070 * In particular, we must hold a reference whilst removing the
2071 * object as we may end up waiting for and/or retiring the objects.
2072 * This might release the final reference (held by the active list)
2073 * and result in the object being freed from under us. This is
2074 * similar to the precautions the eviction code must take whilst
2075 * removing objects.
2076 *
2077 * Also note that although these lists do not hold a reference to
2078 * the object we can safely grab one here: The final object
2079 * unreferencing and the bound_list are both protected by the
2080 * dev->struct_mutex and so we won't ever be able to observe an
2081 * object on the bound_list with a reference count equals 0.
Chris Wilson57094f82013-09-04 10:45:50 +01002082 */
Chris Wilson60a53722014-10-03 10:29:51 +01002083 for (phase = phases; phase->list; phase++) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002084 struct list_head still_in_list;
Chris Wilsonc8725f32014-03-17 12:21:55 +00002085
Chris Wilson60a53722014-10-03 10:29:51 +01002086 if ((flags & phase->bit) == 0)
2087 continue;
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07002088
Chris Wilson21ab4e72014-09-09 11:16:08 +01002089 INIT_LIST_HEAD(&still_in_list);
Chris Wilson60a53722014-10-03 10:29:51 +01002090 while (count < target && !list_empty(phase->list)) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002091 struct drm_i915_gem_object *obj;
2092 struct i915_vma *vma, *v;
Chris Wilson57094f82013-09-04 10:45:50 +01002093
Chris Wilson60a53722014-10-03 10:29:51 +01002094 obj = list_first_entry(phase->list,
Chris Wilson21ab4e72014-09-09 11:16:08 +01002095 typeof(*obj), global_list);
2096 list_move_tail(&obj->global_list, &still_in_list);
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07002097
Chris Wilson60a53722014-10-03 10:29:51 +01002098 if (flags & I915_SHRINK_PURGEABLE &&
2099 !i915_gem_object_is_purgeable(obj))
Chris Wilson21ab4e72014-09-09 11:16:08 +01002100 continue;
Chris Wilson57094f82013-09-04 10:45:50 +01002101
Chris Wilson21ab4e72014-09-09 11:16:08 +01002102 drm_gem_object_reference(&obj->base);
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07002103
Chris Wilson60a53722014-10-03 10:29:51 +01002104 /* For the unbound phase, this should be a no-op! */
2105 list_for_each_entry_safe(vma, v,
2106 &obj->vma_list, vma_link)
Chris Wilson21ab4e72014-09-09 11:16:08 +01002107 if (i915_vma_unbind(vma))
2108 break;
Chris Wilson57094f82013-09-04 10:45:50 +01002109
Chris Wilson21ab4e72014-09-09 11:16:08 +01002110 if (i915_gem_object_put_pages(obj) == 0)
2111 count += obj->base.size >> PAGE_SHIFT;
2112
2113 drm_gem_object_unreference(&obj->base);
2114 }
Chris Wilson60a53722014-10-03 10:29:51 +01002115 list_splice(&still_in_list, phase->list);
Chris Wilson6c085a72012-08-20 11:40:46 +02002116 }
2117
2118 return count;
2119}
2120
Chris Wilsond9973b42013-10-04 10:33:00 +01002121static unsigned long
Chris Wilson6c085a72012-08-20 11:40:46 +02002122i915_gem_shrink_all(struct drm_i915_private *dev_priv)
2123{
Chris Wilson6c085a72012-08-20 11:40:46 +02002124 i915_gem_evict_everything(dev_priv->dev);
Chris Wilson21ab4e72014-09-09 11:16:08 +01002125 return i915_gem_shrink(dev_priv, LONG_MAX,
2126 I915_SHRINK_BOUND | I915_SHRINK_UNBOUND);
Daniel Vetter225067e2012-08-20 10:23:20 +02002127}
2128
Chris Wilson37e680a2012-06-07 15:38:42 +01002129static int
Chris Wilson6c085a72012-08-20 11:40:46 +02002130i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002131{
Chris Wilson6c085a72012-08-20 11:40:46 +02002132 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002133 int page_count, i;
2134 struct address_space *mapping;
Chris Wilson9da3da62012-06-01 15:20:22 +01002135 struct sg_table *st;
2136 struct scatterlist *sg;
Imre Deak90797e62013-02-18 19:28:03 +02002137 struct sg_page_iter sg_iter;
Eric Anholt673a3942008-07-30 12:06:12 -07002138 struct page *page;
Imre Deak90797e62013-02-18 19:28:03 +02002139 unsigned long last_pfn = 0; /* suppress gcc warning */
Chris Wilson6c085a72012-08-20 11:40:46 +02002140 gfp_t gfp;
Eric Anholt673a3942008-07-30 12:06:12 -07002141
Chris Wilson6c085a72012-08-20 11:40:46 +02002142 /* Assert that the object is not currently in any GPU domain. As it
2143 * wasn't in the GTT, there shouldn't be any way it could have been in
2144 * a GPU cache
2145 */
2146 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
2147 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
2148
Chris Wilson9da3da62012-06-01 15:20:22 +01002149 st = kmalloc(sizeof(*st), GFP_KERNEL);
2150 if (st == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002151 return -ENOMEM;
2152
Chris Wilson9da3da62012-06-01 15:20:22 +01002153 page_count = obj->base.size / PAGE_SIZE;
2154 if (sg_alloc_table(st, page_count, GFP_KERNEL)) {
Chris Wilson9da3da62012-06-01 15:20:22 +01002155 kfree(st);
2156 return -ENOMEM;
2157 }
2158
2159 /* Get the list of pages out of our struct file. They'll be pinned
2160 * at this point until we release them.
2161 *
2162 * Fail silently without starting the shrinker
2163 */
Al Viro496ad9a2013-01-23 17:07:38 -05002164 mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilson6c085a72012-08-20 11:40:46 +02002165 gfp = mapping_gfp_mask(mapping);
Linus Torvaldscaf49192012-12-10 10:51:16 -08002166 gfp |= __GFP_NORETRY | __GFP_NOWARN | __GFP_NO_KSWAPD;
Chris Wilson6c085a72012-08-20 11:40:46 +02002167 gfp &= ~(__GFP_IO | __GFP_WAIT);
Imre Deak90797e62013-02-18 19:28:03 +02002168 sg = st->sgl;
2169 st->nents = 0;
2170 for (i = 0; i < page_count; i++) {
Chris Wilson6c085a72012-08-20 11:40:46 +02002171 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
2172 if (IS_ERR(page)) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002173 i915_gem_shrink(dev_priv,
2174 page_count,
2175 I915_SHRINK_BOUND |
2176 I915_SHRINK_UNBOUND |
2177 I915_SHRINK_PURGEABLE);
Chris Wilson6c085a72012-08-20 11:40:46 +02002178 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
2179 }
2180 if (IS_ERR(page)) {
2181 /* We've tried hard to allocate the memory by reaping
2182 * our own buffer, now let the real VM do its job and
2183 * go down in flames if truly OOM.
2184 */
Chris Wilson6c085a72012-08-20 11:40:46 +02002185 i915_gem_shrink_all(dev_priv);
David Herrmannf461d1b2014-05-25 14:34:10 +02002186 page = shmem_read_mapping_page(mapping, i);
Chris Wilson6c085a72012-08-20 11:40:46 +02002187 if (IS_ERR(page))
2188 goto err_pages;
Chris Wilson6c085a72012-08-20 11:40:46 +02002189 }
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04002190#ifdef CONFIG_SWIOTLB
2191 if (swiotlb_nr_tbl()) {
2192 st->nents++;
2193 sg_set_page(sg, page, PAGE_SIZE, 0);
2194 sg = sg_next(sg);
2195 continue;
2196 }
2197#endif
Imre Deak90797e62013-02-18 19:28:03 +02002198 if (!i || page_to_pfn(page) != last_pfn + 1) {
2199 if (i)
2200 sg = sg_next(sg);
2201 st->nents++;
2202 sg_set_page(sg, page, PAGE_SIZE, 0);
2203 } else {
2204 sg->length += PAGE_SIZE;
2205 }
2206 last_pfn = page_to_pfn(page);
Daniel Vetter3bbbe702013-10-07 17:15:45 -03002207
2208 /* Check that the i965g/gm workaround works. */
2209 WARN_ON((gfp & __GFP_DMA32) && (last_pfn >= 0x00100000UL));
Eric Anholt673a3942008-07-30 12:06:12 -07002210 }
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04002211#ifdef CONFIG_SWIOTLB
2212 if (!swiotlb_nr_tbl())
2213#endif
2214 sg_mark_end(sg);
Chris Wilson74ce6b62012-10-19 15:51:06 +01002215 obj->pages = st;
2216
Eric Anholt673a3942008-07-30 12:06:12 -07002217 if (i915_gem_object_needs_bit17_swizzle(obj))
2218 i915_gem_object_do_bit_17_swizzle(obj);
2219
Daniel Vetter656bfa32014-11-20 09:26:30 +01002220 if (obj->tiling_mode != I915_TILING_NONE &&
2221 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES)
2222 i915_gem_object_pin_pages(obj);
2223
Eric Anholt673a3942008-07-30 12:06:12 -07002224 return 0;
2225
2226err_pages:
Imre Deak90797e62013-02-18 19:28:03 +02002227 sg_mark_end(sg);
2228 for_each_sg_page(st->sgl, &sg_iter, st->nents, 0)
Imre Deak2db76d72013-03-26 15:14:18 +02002229 page_cache_release(sg_page_iter_page(&sg_iter));
Chris Wilson9da3da62012-06-01 15:20:22 +01002230 sg_free_table(st);
2231 kfree(st);
Chris Wilson0820baf2014-03-25 13:23:03 +00002232
2233 /* shmemfs first checks if there is enough memory to allocate the page
2234 * and reports ENOSPC should there be insufficient, along with the usual
2235 * ENOMEM for a genuine allocation failure.
2236 *
2237 * We use ENOSPC in our driver to mean that we have run out of aperture
2238 * space and so want to translate the error from shmemfs back to our
2239 * usual understanding of ENOMEM.
2240 */
2241 if (PTR_ERR(page) == -ENOSPC)
2242 return -ENOMEM;
2243 else
2244 return PTR_ERR(page);
Eric Anholt673a3942008-07-30 12:06:12 -07002245}
2246
Chris Wilson37e680a2012-06-07 15:38:42 +01002247/* Ensure that the associated pages are gathered from the backing storage
2248 * and pinned into our object. i915_gem_object_get_pages() may be called
2249 * multiple times before they are released by a single call to
2250 * i915_gem_object_put_pages() - once the pages are no longer referenced
2251 * either as a result of memory pressure (reaping pages under the shrinker)
2252 * or as the object is itself released.
2253 */
2254int
2255i915_gem_object_get_pages(struct drm_i915_gem_object *obj)
2256{
2257 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2258 const struct drm_i915_gem_object_ops *ops = obj->ops;
2259 int ret;
2260
Chris Wilson2f745ad2012-09-04 21:02:58 +01002261 if (obj->pages)
Chris Wilson37e680a2012-06-07 15:38:42 +01002262 return 0;
2263
Chris Wilson43e28f02013-01-08 10:53:09 +00002264 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00002265 DRM_DEBUG("Attempting to obtain a purgeable object\n");
Chris Wilson8c99e572014-01-31 11:34:58 +00002266 return -EFAULT;
Chris Wilson43e28f02013-01-08 10:53:09 +00002267 }
2268
Chris Wilsona5570172012-09-04 21:02:54 +01002269 BUG_ON(obj->pages_pin_count);
2270
Chris Wilson37e680a2012-06-07 15:38:42 +01002271 ret = ops->get_pages(obj);
2272 if (ret)
2273 return ret;
2274
Ben Widawsky35c20a62013-05-31 11:28:48 -07002275 list_add_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Chris Wilson37e680a2012-06-07 15:38:42 +01002276 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002277}
2278
Ben Widawskye2d05a82013-09-24 09:57:58 -07002279static void
Chris Wilson05394f32010-11-08 19:18:58 +00002280i915_gem_object_move_to_active(struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002281 struct intel_engine_cs *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07002282{
John Harrison41c52412014-11-24 18:49:43 +00002283 struct drm_i915_gem_request *req;
2284 struct intel_engine_cs *old_ring;
Daniel Vetter617dbe22010-02-11 22:16:02 +01002285
Zou Nan hai852835f2010-05-21 09:08:56 +08002286 BUG_ON(ring == NULL);
John Harrison41c52412014-11-24 18:49:43 +00002287
2288 req = intel_ring_get_request(ring);
2289 old_ring = i915_gem_request_get_ring(obj->last_read_req);
2290
2291 if (old_ring != ring && obj->last_write_req) {
John Harrison97b2a6a2014-11-24 18:49:26 +00002292 /* Keep the request relative to the current ring */
2293 i915_gem_request_assign(&obj->last_write_req, req);
Chris Wilson02978ff2013-07-09 09:22:39 +01002294 }
Eric Anholt673a3942008-07-30 12:06:12 -07002295
2296 /* Add a reference if we're newly entering the active list. */
Chris Wilson05394f32010-11-08 19:18:58 +00002297 if (!obj->active) {
2298 drm_gem_object_reference(&obj->base);
2299 obj->active = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07002300 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01002301
Chris Wilson05394f32010-11-08 19:18:58 +00002302 list_move_tail(&obj->ring_list, &ring->active_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002303
John Harrison97b2a6a2014-11-24 18:49:26 +00002304 i915_gem_request_assign(&obj->last_read_req, req);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002305}
2306
Ben Widawskye2d05a82013-09-24 09:57:58 -07002307void i915_vma_move_to_active(struct i915_vma *vma,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002308 struct intel_engine_cs *ring)
Ben Widawskye2d05a82013-09-24 09:57:58 -07002309{
2310 list_move_tail(&vma->mm_list, &vma->vm->active_list);
2311 return i915_gem_object_move_to_active(vma->obj, ring);
2312}
2313
Chris Wilsoncaea7472010-11-12 13:53:37 +00002314static void
Chris Wilsoncaea7472010-11-12 13:53:37 +00002315i915_gem_object_move_to_inactive(struct drm_i915_gem_object *obj)
2316{
Ben Widawskyfeb822c2013-12-06 14:10:51 -08002317 struct i915_vma *vma;
Chris Wilsoncaea7472010-11-12 13:53:37 +00002318
Chris Wilson65ce3022012-07-20 12:41:02 +01002319 BUG_ON(obj->base.write_domain & ~I915_GEM_GPU_DOMAINS);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002320 BUG_ON(!obj->active);
Chris Wilson65ce3022012-07-20 12:41:02 +01002321
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00002322 list_for_each_entry(vma, &obj->vma_list, vma_link) {
2323 if (!list_empty(&vma->mm_list))
2324 list_move_tail(&vma->mm_list, &vma->vm->inactive_list);
Ben Widawskyfeb822c2013-12-06 14:10:51 -08002325 }
Chris Wilsoncaea7472010-11-12 13:53:37 +00002326
Daniel Vetterf99d7062014-06-19 16:01:59 +02002327 intel_fb_obj_flush(obj, true);
2328
Chris Wilson65ce3022012-07-20 12:41:02 +01002329 list_del_init(&obj->ring_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002330
John Harrison97b2a6a2014-11-24 18:49:26 +00002331 i915_gem_request_assign(&obj->last_read_req, NULL);
2332 i915_gem_request_assign(&obj->last_write_req, NULL);
Chris Wilson65ce3022012-07-20 12:41:02 +01002333 obj->base.write_domain = 0;
2334
John Harrison97b2a6a2014-11-24 18:49:26 +00002335 i915_gem_request_assign(&obj->last_fenced_req, NULL);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002336
2337 obj->active = 0;
2338 drm_gem_object_unreference(&obj->base);
2339
2340 WARN_ON(i915_verify_lists(dev));
Eric Anholtce44b0e2008-11-06 16:00:31 -08002341}
Eric Anholt673a3942008-07-30 12:06:12 -07002342
Chris Wilsonc8725f32014-03-17 12:21:55 +00002343static void
2344i915_gem_object_retire(struct drm_i915_gem_object *obj)
2345{
John Harrison41c52412014-11-24 18:49:43 +00002346 if (obj->last_read_req == NULL)
Chris Wilsonc8725f32014-03-17 12:21:55 +00002347 return;
2348
John Harrison1b5a4332014-11-24 18:49:42 +00002349 if (i915_gem_request_completed(obj->last_read_req, true))
Chris Wilsonc8725f32014-03-17 12:21:55 +00002350 i915_gem_object_move_to_inactive(obj);
2351}
2352
Chris Wilson9d7730912012-11-27 16:22:52 +00002353static int
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002354i915_gem_init_seqno(struct drm_device *dev, u32 seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01002355{
Chris Wilson9d7730912012-11-27 16:22:52 +00002356 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002357 struct intel_engine_cs *ring;
Chris Wilson9d7730912012-11-27 16:22:52 +00002358 int ret, i, j;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002359
Chris Wilson107f27a52012-12-10 13:56:17 +02002360 /* Carefully retire all requests without writing to the rings */
Chris Wilson9d7730912012-11-27 16:22:52 +00002361 for_each_ring(ring, dev_priv, i) {
Chris Wilson107f27a52012-12-10 13:56:17 +02002362 ret = intel_ring_idle(ring);
2363 if (ret)
2364 return ret;
Chris Wilson9d7730912012-11-27 16:22:52 +00002365 }
Chris Wilson9d7730912012-11-27 16:22:52 +00002366 i915_gem_retire_requests(dev);
Chris Wilson107f27a52012-12-10 13:56:17 +02002367
2368 /* Finally reset hw state */
Chris Wilson9d7730912012-11-27 16:22:52 +00002369 for_each_ring(ring, dev_priv, i) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002370 intel_ring_init_seqno(ring, seqno);
Mika Kuoppala498d2ac2012-12-04 15:12:04 +02002371
Ben Widawskyebc348b2014-04-29 14:52:28 -07002372 for (j = 0; j < ARRAY_SIZE(ring->semaphore.sync_seqno); j++)
2373 ring->semaphore.sync_seqno[j] = 0;
Chris Wilson9d7730912012-11-27 16:22:52 +00002374 }
2375
2376 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002377}
2378
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002379int i915_gem_set_seqno(struct drm_device *dev, u32 seqno)
2380{
2381 struct drm_i915_private *dev_priv = dev->dev_private;
2382 int ret;
2383
2384 if (seqno == 0)
2385 return -EINVAL;
2386
2387 /* HWS page needs to be set less than what we
2388 * will inject to ring
2389 */
2390 ret = i915_gem_init_seqno(dev, seqno - 1);
2391 if (ret)
2392 return ret;
2393
2394 /* Carefully set the last_seqno value so that wrap
2395 * detection still works
2396 */
2397 dev_priv->next_seqno = seqno;
2398 dev_priv->last_seqno = seqno - 1;
2399 if (dev_priv->last_seqno == 0)
2400 dev_priv->last_seqno--;
2401
2402 return 0;
2403}
2404
Chris Wilson9d7730912012-11-27 16:22:52 +00002405int
2406i915_gem_get_seqno(struct drm_device *dev, u32 *seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01002407{
Chris Wilson9d7730912012-11-27 16:22:52 +00002408 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002409
Chris Wilson9d7730912012-11-27 16:22:52 +00002410 /* reserve 0 for non-seqno */
2411 if (dev_priv->next_seqno == 0) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002412 int ret = i915_gem_init_seqno(dev, 0);
Chris Wilson9d7730912012-11-27 16:22:52 +00002413 if (ret)
2414 return ret;
2415
2416 dev_priv->next_seqno = 1;
2417 }
2418
Mika Kuoppalaf72b3432012-12-10 15:41:48 +02002419 *seqno = dev_priv->last_seqno = dev_priv->next_seqno++;
Chris Wilson9d7730912012-11-27 16:22:52 +00002420 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002421}
2422
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002423int __i915_add_request(struct intel_engine_cs *ring,
Mika Kuoppala0025c072013-06-12 12:35:30 +03002424 struct drm_file *file,
John Harrison9400ae52014-11-24 18:49:36 +00002425 struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002426{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03002427 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Chris Wilsonacb868d2012-09-26 13:47:30 +01002428 struct drm_i915_gem_request *request;
Oscar Mateo48e29f52014-07-24 17:04:29 +01002429 struct intel_ringbuffer *ringbuf;
Nick Hoath6d3d8272015-01-15 13:10:39 +00002430 u32 request_start;
Chris Wilson3cce4692010-10-27 16:11:02 +01002431 int ret;
2432
John Harrison6259cea2014-11-24 18:49:29 +00002433 request = ring->outstanding_lazy_request;
Oscar Mateo48e29f52014-07-24 17:04:29 +01002434 if (WARN_ON(request == NULL))
2435 return -ENOMEM;
2436
2437 if (i915.enable_execlists) {
Nick Hoath21076372015-01-15 13:10:38 +00002438 ringbuf = request->ctx->engine[ring->id].ringbuf;
Oscar Mateo48e29f52014-07-24 17:04:29 +01002439 } else
2440 ringbuf = ring->buffer;
2441
2442 request_start = intel_ring_get_tail(ringbuf);
Daniel Vettercc889e02012-06-13 20:45:19 +02002443 /*
2444 * Emit any outstanding flushes - execbuf can fail to emit the flush
2445 * after having emitted the batchbuffer command. Hence we need to fix
2446 * things up similar to emitting the lazy request. The difference here
2447 * is that the flush _must_ happen before the next request, no matter
2448 * what.
2449 */
Oscar Mateo48e29f52014-07-24 17:04:29 +01002450 if (i915.enable_execlists) {
Nick Hoath21076372015-01-15 13:10:38 +00002451 ret = logical_ring_flush_all_caches(ringbuf, request->ctx);
Oscar Mateo48e29f52014-07-24 17:04:29 +01002452 if (ret)
2453 return ret;
2454 } else {
2455 ret = intel_ring_flush_all_caches(ring);
2456 if (ret)
2457 return ret;
2458 }
Daniel Vettercc889e02012-06-13 20:45:19 +02002459
Chris Wilsona71d8d92012-02-15 11:25:36 +00002460 /* Record the position of the start of the request so that
2461 * should we detect the updated seqno part-way through the
2462 * GPU processing the request, we never over-estimate the
2463 * position of the head.
2464 */
Nick Hoath6d3d8272015-01-15 13:10:39 +00002465 request->postfix = intel_ring_get_tail(ringbuf);
Chris Wilsona71d8d92012-02-15 11:25:36 +00002466
Oscar Mateo48e29f52014-07-24 17:04:29 +01002467 if (i915.enable_execlists) {
Nick Hoath72f95af2015-01-15 13:10:37 +00002468 ret = ring->emit_request(ringbuf, request);
Oscar Mateo48e29f52014-07-24 17:04:29 +01002469 if (ret)
2470 return ret;
2471 } else {
2472 ret = ring->add_request(ring);
2473 if (ret)
2474 return ret;
2475 }
Eric Anholt673a3942008-07-30 12:06:12 -07002476
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002477 request->head = request_start;
Nick Hoath6d3d8272015-01-15 13:10:39 +00002478 request->tail = intel_ring_get_tail(ringbuf);
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002479
2480 /* Whilst this request exists, batch_obj will be on the
2481 * active_list, and so will hold the active reference. Only when this
2482 * request is retired will the the batch_obj be moved onto the
2483 * inactive_list and lose its active reference. Hence we do not need
2484 * to explicitly hold another reference here.
2485 */
Chris Wilson9a7e0c22013-08-26 19:50:54 -03002486 request->batch_obj = obj;
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002487
Oscar Mateo48e29f52014-07-24 17:04:29 +01002488 if (!i915.enable_execlists) {
2489 /* Hold a reference to the current context so that we can inspect
2490 * it later in case a hangcheck error event fires.
2491 */
2492 request->ctx = ring->last_context;
2493 if (request->ctx)
2494 i915_gem_context_reference(request->ctx);
2495 }
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002496
Eric Anholt673a3942008-07-30 12:06:12 -07002497 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08002498 list_add_tail(&request->list, &ring->request_list);
Chris Wilson3bb73ab2012-07-20 12:40:59 +01002499 request->file_priv = NULL;
Zou Nan hai852835f2010-05-21 09:08:56 +08002500
Chris Wilsondb53a302011-02-03 11:57:46 +00002501 if (file) {
2502 struct drm_i915_file_private *file_priv = file->driver_priv;
2503
Chris Wilson1c255952010-09-26 11:03:27 +01002504 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002505 request->file_priv = file_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00002506 list_add_tail(&request->client_list,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002507 &file_priv->mm.request_list);
Chris Wilson1c255952010-09-26 11:03:27 +01002508 spin_unlock(&file_priv->mm.lock);
Mika Kuoppala071c92d2015-02-12 10:26:02 +02002509
2510 request->pid = get_pid(task_pid(current));
Eric Anholtb9624422009-06-03 07:27:35 +00002511 }
Eric Anholt673a3942008-07-30 12:06:12 -07002512
John Harrison74328ee2014-11-24 18:49:38 +00002513 trace_i915_gem_request_add(request);
John Harrison6259cea2014-11-24 18:49:29 +00002514 ring->outstanding_lazy_request = NULL;
Chris Wilsondb53a302011-02-03 11:57:46 +00002515
Daniel Vetter87255482014-11-19 20:36:48 +01002516 i915_queue_hangcheck(ring->dev);
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03002517
Daniel Vetter87255482014-11-19 20:36:48 +01002518 cancel_delayed_work_sync(&dev_priv->mm.idle_work);
2519 queue_delayed_work(dev_priv->wq,
2520 &dev_priv->mm.retire_work,
2521 round_jiffies_up_relative(HZ));
2522 intel_mark_busy(dev_priv->dev);
Daniel Vettercc889e02012-06-13 20:45:19 +02002523
Chris Wilson3cce4692010-10-27 16:11:02 +01002524 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002525}
2526
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002527static inline void
2528i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07002529{
Chris Wilson1c255952010-09-26 11:03:27 +01002530 struct drm_i915_file_private *file_priv = request->file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07002531
Chris Wilson1c255952010-09-26 11:03:27 +01002532 if (!file_priv)
2533 return;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002534
Chris Wilson1c255952010-09-26 11:03:27 +01002535 spin_lock(&file_priv->mm.lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002536 list_del(&request->client_list);
2537 request->file_priv = NULL;
Chris Wilson1c255952010-09-26 11:03:27 +01002538 spin_unlock(&file_priv->mm.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07002539}
2540
Mika Kuoppala939fd762014-01-30 19:04:44 +02002541static bool i915_context_is_banned(struct drm_i915_private *dev_priv,
Oscar Mateo273497e2014-05-22 14:13:37 +01002542 const struct intel_context *ctx)
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002543{
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002544 unsigned long elapsed;
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002545
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002546 elapsed = get_seconds() - ctx->hang_stats.guilty_ts;
2547
2548 if (ctx->hang_stats.banned)
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002549 return true;
2550
Chris Wilson676fa572014-12-24 08:13:39 -08002551 if (ctx->hang_stats.ban_period_seconds &&
2552 elapsed <= ctx->hang_stats.ban_period_seconds) {
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002553 if (!i915_gem_context_is_default(ctx)) {
Mika Kuoppala3fac8972014-01-30 16:05:48 +02002554 DRM_DEBUG("context hanging too fast, banning!\n");
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002555 return true;
Mika Kuoppala88b4aa82014-03-28 18:18:18 +02002556 } else if (i915_stop_ring_allow_ban(dev_priv)) {
2557 if (i915_stop_ring_allow_warn(dev_priv))
2558 DRM_ERROR("gpu hanging too fast, banning!\n");
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002559 return true;
Mika Kuoppala3fac8972014-01-30 16:05:48 +02002560 }
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002561 }
2562
2563 return false;
2564}
2565
Mika Kuoppala939fd762014-01-30 19:04:44 +02002566static void i915_set_reset_status(struct drm_i915_private *dev_priv,
Oscar Mateo273497e2014-05-22 14:13:37 +01002567 struct intel_context *ctx,
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002568 const bool guilty)
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002569{
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002570 struct i915_ctx_hang_stats *hs;
2571
2572 if (WARN_ON(!ctx))
2573 return;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002574
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002575 hs = &ctx->hang_stats;
2576
2577 if (guilty) {
Mika Kuoppala939fd762014-01-30 19:04:44 +02002578 hs->banned = i915_context_is_banned(dev_priv, ctx);
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002579 hs->batch_active++;
2580 hs->guilty_ts = get_seconds();
2581 } else {
2582 hs->batch_pending++;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002583 }
2584}
2585
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002586static void i915_gem_free_request(struct drm_i915_gem_request *request)
2587{
2588 list_del(&request->list);
2589 i915_gem_request_remove_from_client(request);
2590
Mika Kuoppala071c92d2015-02-12 10:26:02 +02002591 put_pid(request->pid);
2592
John Harrisonabfe2622014-11-24 18:49:24 +00002593 i915_gem_request_unreference(request);
2594}
2595
2596void i915_gem_request_free(struct kref *req_ref)
2597{
2598 struct drm_i915_gem_request *req = container_of(req_ref,
2599 typeof(*req), ref);
2600 struct intel_context *ctx = req->ctx;
2601
Thomas Daniel0794aed2014-11-25 10:39:25 +00002602 if (ctx) {
2603 if (i915.enable_execlists) {
John Harrisonabfe2622014-11-24 18:49:24 +00002604 struct intel_engine_cs *ring = req->ring;
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002605
Thomas Daniel0794aed2014-11-25 10:39:25 +00002606 if (ctx != ring->default_context)
2607 intel_lr_context_unpin(ring, ctx);
2608 }
John Harrisonabfe2622014-11-24 18:49:24 +00002609
Oscar Mateodcb4c122014-11-13 10:28:10 +00002610 i915_gem_context_unreference(ctx);
2611 }
John Harrisonabfe2622014-11-24 18:49:24 +00002612
2613 kfree(req);
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002614}
2615
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002616struct drm_i915_gem_request *
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002617i915_gem_find_active_request(struct intel_engine_cs *ring)
Chris Wilson9375e442010-09-19 12:21:28 +01002618{
Chris Wilson4db080f2013-12-04 11:37:09 +00002619 struct drm_i915_gem_request *request;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002620
Chris Wilson4db080f2013-12-04 11:37:09 +00002621 list_for_each_entry(request, &ring->request_list, list) {
John Harrison1b5a4332014-11-24 18:49:42 +00002622 if (i915_gem_request_completed(request, false))
Chris Wilson4db080f2013-12-04 11:37:09 +00002623 continue;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002624
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002625 return request;
Chris Wilson4db080f2013-12-04 11:37:09 +00002626 }
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002627
2628 return NULL;
2629}
2630
2631static void i915_gem_reset_ring_status(struct drm_i915_private *dev_priv,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002632 struct intel_engine_cs *ring)
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002633{
2634 struct drm_i915_gem_request *request;
2635 bool ring_hung;
2636
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002637 request = i915_gem_find_active_request(ring);
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002638
2639 if (request == NULL)
2640 return;
2641
2642 ring_hung = ring->hangcheck.score >= HANGCHECK_SCORE_RING_HUNG;
2643
Mika Kuoppala939fd762014-01-30 19:04:44 +02002644 i915_set_reset_status(dev_priv, request->ctx, ring_hung);
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002645
2646 list_for_each_entry_continue(request, &ring->request_list, list)
Mika Kuoppala939fd762014-01-30 19:04:44 +02002647 i915_set_reset_status(dev_priv, request->ctx, false);
Chris Wilson4db080f2013-12-04 11:37:09 +00002648}
2649
2650static void i915_gem_reset_ring_cleanup(struct drm_i915_private *dev_priv,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002651 struct intel_engine_cs *ring)
Chris Wilson4db080f2013-12-04 11:37:09 +00002652{
Chris Wilsondfaae392010-09-22 10:31:52 +01002653 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00002654 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07002655
Chris Wilson05394f32010-11-08 19:18:58 +00002656 obj = list_first_entry(&ring->active_list,
2657 struct drm_i915_gem_object,
2658 ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07002659
Chris Wilson05394f32010-11-08 19:18:58 +00002660 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002661 }
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002662
2663 /*
Oscar Mateodcb4c122014-11-13 10:28:10 +00002664 * Clear the execlists queue up before freeing the requests, as those
2665 * are the ones that keep the context and ringbuffer backing objects
2666 * pinned in place.
2667 */
2668 while (!list_empty(&ring->execlist_queue)) {
Nick Hoath6d3d8272015-01-15 13:10:39 +00002669 struct drm_i915_gem_request *submit_req;
Oscar Mateodcb4c122014-11-13 10:28:10 +00002670
2671 submit_req = list_first_entry(&ring->execlist_queue,
Nick Hoath6d3d8272015-01-15 13:10:39 +00002672 struct drm_i915_gem_request,
Oscar Mateodcb4c122014-11-13 10:28:10 +00002673 execlist_link);
2674 list_del(&submit_req->execlist_link);
2675 intel_runtime_pm_put(dev_priv);
Mika Kuoppala1197b4f2015-01-13 11:32:24 +02002676
2677 if (submit_req->ctx != ring->default_context)
2678 intel_lr_context_unpin(ring, submit_req->ctx);
2679
Nick Hoathb3a38992015-02-19 16:30:47 +00002680 i915_gem_request_unreference(submit_req);
Oscar Mateodcb4c122014-11-13 10:28:10 +00002681 }
2682
2683 /*
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002684 * We must free the requests after all the corresponding objects have
2685 * been moved off active lists. Which is the same order as the normal
2686 * retire_requests function does. This is important if object hold
2687 * implicit references on things like e.g. ppgtt address spaces through
2688 * the request.
2689 */
2690 while (!list_empty(&ring->request_list)) {
2691 struct drm_i915_gem_request *request;
2692
2693 request = list_first_entry(&ring->request_list,
2694 struct drm_i915_gem_request,
2695 list);
2696
2697 i915_gem_free_request(request);
2698 }
Chris Wilsone3efda42014-04-09 09:19:41 +01002699
John Harrison6259cea2014-11-24 18:49:29 +00002700 /* This may not have been flushed before the reset, so clean it now */
2701 i915_gem_request_assign(&ring->outstanding_lazy_request, NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07002702}
2703
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002704void i915_gem_restore_fences(struct drm_device *dev)
Chris Wilson312817a2010-11-22 11:50:11 +00002705{
2706 struct drm_i915_private *dev_priv = dev->dev_private;
2707 int i;
2708
Daniel Vetter4b9de732011-10-09 21:52:02 +02002709 for (i = 0; i < dev_priv->num_fence_regs; i++) {
Chris Wilson312817a2010-11-22 11:50:11 +00002710 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
Chris Wilson7d2cb392010-11-27 17:38:29 +00002711
Daniel Vetter94a335d2013-07-17 14:51:28 +02002712 /*
2713 * Commit delayed tiling changes if we have an object still
2714 * attached to the fence, otherwise just clear the fence.
2715 */
2716 if (reg->obj) {
2717 i915_gem_object_update_fence(reg->obj, reg,
2718 reg->obj->tiling_mode);
2719 } else {
2720 i915_gem_write_fence(dev, i, NULL);
2721 }
Chris Wilson312817a2010-11-22 11:50:11 +00002722 }
2723}
2724
Chris Wilson069efc12010-09-30 16:53:18 +01002725void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07002726{
Chris Wilsondfaae392010-09-22 10:31:52 +01002727 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002728 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002729 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07002730
Chris Wilson4db080f2013-12-04 11:37:09 +00002731 /*
2732 * Before we free the objects from the requests, we need to inspect
2733 * them for finding the guilty party. As the requests only borrow
2734 * their reference to the objects, the inspection must be done first.
2735 */
Chris Wilsonb4519512012-05-11 14:29:30 +01002736 for_each_ring(ring, dev_priv, i)
Chris Wilson4db080f2013-12-04 11:37:09 +00002737 i915_gem_reset_ring_status(dev_priv, ring);
2738
2739 for_each_ring(ring, dev_priv, i)
2740 i915_gem_reset_ring_cleanup(dev_priv, ring);
Chris Wilsondfaae392010-09-22 10:31:52 +01002741
Ben Widawskyacce9ff2013-12-06 14:11:03 -08002742 i915_gem_context_reset(dev);
2743
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002744 i915_gem_restore_fences(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07002745}
2746
2747/**
2748 * This function clears the request list as sequence numbers are passed.
2749 */
Chris Wilson1cf0ba12014-05-05 09:07:33 +01002750void
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002751i915_gem_retire_requests_ring(struct intel_engine_cs *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07002752{
Chris Wilsondb53a302011-02-03 11:57:46 +00002753 if (list_empty(&ring->request_list))
Karsten Wiese6c0594a2009-02-23 15:07:57 +01002754 return;
2755
Chris Wilsondb53a302011-02-03 11:57:46 +00002756 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002757
Chris Wilsone9103032014-01-07 11:45:14 +00002758 /* Move any buffers on the active list that are no longer referenced
2759 * by the ringbuffer to the flushing/inactive lists as appropriate,
2760 * before we free the context associated with the requests.
2761 */
2762 while (!list_empty(&ring->active_list)) {
2763 struct drm_i915_gem_object *obj;
2764
2765 obj = list_first_entry(&ring->active_list,
2766 struct drm_i915_gem_object,
2767 ring_list);
2768
John Harrison1b5a4332014-11-24 18:49:42 +00002769 if (!i915_gem_request_completed(obj->last_read_req, true))
Chris Wilsone9103032014-01-07 11:45:14 +00002770 break;
2771
2772 i915_gem_object_move_to_inactive(obj);
2773 }
2774
2775
Zou Nan hai852835f2010-05-21 09:08:56 +08002776 while (!list_empty(&ring->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002777 struct drm_i915_gem_request *request;
Eric Anholt673a3942008-07-30 12:06:12 -07002778
Zou Nan hai852835f2010-05-21 09:08:56 +08002779 request = list_first_entry(&ring->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07002780 struct drm_i915_gem_request,
2781 list);
Eric Anholt673a3942008-07-30 12:06:12 -07002782
John Harrison1b5a4332014-11-24 18:49:42 +00002783 if (!i915_gem_request_completed(request, true))
Eric Anholt673a3942008-07-30 12:06:12 -07002784 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002785
John Harrison74328ee2014-11-24 18:49:38 +00002786 trace_i915_gem_request_retire(request);
Oscar Mateo48e29f52014-07-24 17:04:29 +01002787
Chris Wilsona71d8d92012-02-15 11:25:36 +00002788 /* We know the GPU must have read the request to have
2789 * sent us the seqno + interrupt, so use the position
2790 * of tail of the request to update the last known position
2791 * of the GPU head.
2792 */
John Harrison98e1bd42015-02-13 11:48:12 +00002793 request->ringbuf->last_retired_head = request->postfix;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002794
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002795 i915_gem_free_request(request);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002796 }
2797
John Harrison581c26e82014-11-24 18:49:39 +00002798 if (unlikely(ring->trace_irq_req &&
2799 i915_gem_request_completed(ring->trace_irq_req, true))) {
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002800 ring->irq_put(ring);
John Harrison581c26e82014-11-24 18:49:39 +00002801 i915_gem_request_assign(&ring->trace_irq_req, NULL);
Chris Wilson9d34e5d2009-09-24 05:26:06 +01002802 }
Chris Wilson23bc5982010-09-29 16:10:57 +01002803
Chris Wilsondb53a302011-02-03 11:57:46 +00002804 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002805}
2806
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002807bool
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002808i915_gem_retire_requests(struct drm_device *dev)
2809{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03002810 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002811 struct intel_engine_cs *ring;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002812 bool idle = true;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002813 int i;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002814
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002815 for_each_ring(ring, dev_priv, i) {
Chris Wilsonb4519512012-05-11 14:29:30 +01002816 i915_gem_retire_requests_ring(ring);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002817 idle &= list_empty(&ring->request_list);
Thomas Danielc86ee3a92014-11-13 10:27:05 +00002818 if (i915.enable_execlists) {
2819 unsigned long flags;
2820
2821 spin_lock_irqsave(&ring->execlist_lock, flags);
2822 idle &= list_empty(&ring->execlist_queue);
2823 spin_unlock_irqrestore(&ring->execlist_lock, flags);
2824
2825 intel_execlists_retire_requests(ring);
2826 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002827 }
2828
2829 if (idle)
2830 mod_delayed_work(dev_priv->wq,
2831 &dev_priv->mm.idle_work,
2832 msecs_to_jiffies(100));
2833
2834 return idle;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002835}
2836
Daniel Vetter75ef9da2010-08-21 00:25:16 +02002837static void
Eric Anholt673a3942008-07-30 12:06:12 -07002838i915_gem_retire_work_handler(struct work_struct *work)
2839{
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002840 struct drm_i915_private *dev_priv =
2841 container_of(work, typeof(*dev_priv), mm.retire_work.work);
2842 struct drm_device *dev = dev_priv->dev;
Chris Wilson0a587052011-01-09 21:05:44 +00002843 bool idle;
Eric Anholt673a3942008-07-30 12:06:12 -07002844
Chris Wilson891b48c2010-09-29 12:26:37 +01002845 /* Come back later if the device is busy... */
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002846 idle = false;
2847 if (mutex_trylock(&dev->struct_mutex)) {
2848 idle = i915_gem_retire_requests(dev);
2849 mutex_unlock(&dev->struct_mutex);
2850 }
2851 if (!idle)
Chris Wilsonbcb45082012-10-05 17:02:57 +01002852 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work,
2853 round_jiffies_up_relative(HZ));
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002854}
Chris Wilson891b48c2010-09-29 12:26:37 +01002855
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002856static void
2857i915_gem_idle_work_handler(struct work_struct *work)
2858{
2859 struct drm_i915_private *dev_priv =
2860 container_of(work, typeof(*dev_priv), mm.idle_work.work);
Zou Nan haid1b851f2010-05-21 09:08:57 +08002861
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002862 intel_mark_idle(dev_priv->dev);
Eric Anholt673a3942008-07-30 12:06:12 -07002863}
2864
Ben Widawsky5816d642012-04-11 11:18:19 -07002865/**
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002866 * Ensures that an object will eventually get non-busy by flushing any required
2867 * write domains, emitting any outstanding lazy request and retiring and
2868 * completed requests.
2869 */
2870static int
2871i915_gem_object_flush_active(struct drm_i915_gem_object *obj)
2872{
John Harrison41c52412014-11-24 18:49:43 +00002873 struct intel_engine_cs *ring;
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002874 int ret;
2875
2876 if (obj->active) {
John Harrison41c52412014-11-24 18:49:43 +00002877 ring = i915_gem_request_get_ring(obj->last_read_req);
2878
John Harrisonb6660d52014-11-24 18:49:30 +00002879 ret = i915_gem_check_olr(obj->last_read_req);
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002880 if (ret)
2881 return ret;
2882
John Harrison41c52412014-11-24 18:49:43 +00002883 i915_gem_retire_requests_ring(ring);
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002884 }
2885
2886 return 0;
2887}
2888
2889/**
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002890 * i915_gem_wait_ioctl - implements DRM_IOCTL_I915_GEM_WAIT
2891 * @DRM_IOCTL_ARGS: standard ioctl arguments
2892 *
2893 * Returns 0 if successful, else an error is returned with the remaining time in
2894 * the timeout parameter.
2895 * -ETIME: object is still busy after timeout
2896 * -ERESTARTSYS: signal interrupted the wait
2897 * -ENONENT: object doesn't exist
2898 * Also possible, but rare:
2899 * -EAGAIN: GPU wedged
2900 * -ENOMEM: damn
2901 * -ENODEV: Internal IRQ fail
2902 * -E?: The add request failed
2903 *
2904 * The wait ioctl with a timeout of 0 reimplements the busy ioctl. With any
2905 * non-zero timeout parameter the wait ioctl will wait for the given number of
2906 * nanoseconds on an object becoming unbusy. Since the wait itself does so
2907 * without holding struct_mutex the object may become re-busied before this
2908 * function completes. A similar but shorter * race condition exists in the busy
2909 * ioctl
2910 */
2911int
2912i915_gem_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
2913{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03002914 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002915 struct drm_i915_gem_wait *args = data;
2916 struct drm_i915_gem_object *obj;
John Harrisonff865882014-11-24 18:49:28 +00002917 struct drm_i915_gem_request *req;
Daniel Vetterf69061b2012-12-06 09:01:42 +01002918 unsigned reset_counter;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002919 int ret = 0;
2920
Daniel Vetter11b5d512014-09-29 15:31:26 +02002921 if (args->flags != 0)
2922 return -EINVAL;
2923
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002924 ret = i915_mutex_lock_interruptible(dev);
2925 if (ret)
2926 return ret;
2927
2928 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->bo_handle));
2929 if (&obj->base == NULL) {
2930 mutex_unlock(&dev->struct_mutex);
2931 return -ENOENT;
2932 }
2933
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002934 /* Need to make sure the object gets inactive eventually. */
2935 ret = i915_gem_object_flush_active(obj);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002936 if (ret)
2937 goto out;
2938
John Harrison97b2a6a2014-11-24 18:49:26 +00002939 if (!obj->active || !obj->last_read_req)
2940 goto out;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002941
John Harrisonff865882014-11-24 18:49:28 +00002942 req = obj->last_read_req;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002943
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002944 /* Do this after OLR check to make sure we make forward progress polling
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00002945 * on this IOCTL with a timeout <=0 (like busy ioctl)
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002946 */
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00002947 if (args->timeout_ns <= 0) {
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002948 ret = -ETIME;
2949 goto out;
2950 }
2951
2952 drm_gem_object_unreference(&obj->base);
Daniel Vetterf69061b2012-12-06 09:01:42 +01002953 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
John Harrisonff865882014-11-24 18:49:28 +00002954 i915_gem_request_reference(req);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002955 mutex_unlock(&dev->struct_mutex);
2956
John Harrison9c654812014-11-24 18:49:35 +00002957 ret = __i915_wait_request(req, reset_counter, true, &args->timeout_ns,
2958 file->driver_priv);
John Harrisonff865882014-11-24 18:49:28 +00002959 mutex_lock(&dev->struct_mutex);
2960 i915_gem_request_unreference(req);
2961 mutex_unlock(&dev->struct_mutex);
2962 return ret;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002963
2964out:
2965 drm_gem_object_unreference(&obj->base);
2966 mutex_unlock(&dev->struct_mutex);
2967 return ret;
2968}
2969
2970/**
Ben Widawsky5816d642012-04-11 11:18:19 -07002971 * i915_gem_object_sync - sync an object to a ring.
2972 *
2973 * @obj: object which may be in use on another ring.
2974 * @to: ring we wish to use the object on. May be NULL.
2975 *
2976 * This code is meant to abstract object synchronization with the GPU.
2977 * Calling with NULL implies synchronizing the object with the CPU
2978 * rather than a particular GPU ring.
2979 *
2980 * Returns 0 if successful, else propagates up the lower layer error.
2981 */
Ben Widawsky2911a352012-04-05 14:47:36 -07002982int
2983i915_gem_object_sync(struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002984 struct intel_engine_cs *to)
Ben Widawsky2911a352012-04-05 14:47:36 -07002985{
John Harrison41c52412014-11-24 18:49:43 +00002986 struct intel_engine_cs *from;
Ben Widawsky2911a352012-04-05 14:47:36 -07002987 u32 seqno;
2988 int ret, idx;
2989
John Harrison41c52412014-11-24 18:49:43 +00002990 from = i915_gem_request_get_ring(obj->last_read_req);
2991
Ben Widawsky2911a352012-04-05 14:47:36 -07002992 if (from == NULL || to == from)
2993 return 0;
2994
Ben Widawsky5816d642012-04-11 11:18:19 -07002995 if (to == NULL || !i915_semaphore_is_enabled(obj->base.dev))
Chris Wilson0201f1e2012-07-20 12:41:01 +01002996 return i915_gem_object_wait_rendering(obj, false);
Ben Widawsky2911a352012-04-05 14:47:36 -07002997
2998 idx = intel_ring_sync_index(from, to);
2999
John Harrison97b2a6a2014-11-24 18:49:26 +00003000 seqno = i915_gem_request_get_seqno(obj->last_read_req);
Rodrigo Vividdd4dbc2014-06-30 09:51:11 -07003001 /* Optimization: Avoid semaphore sync when we are sure we already
3002 * waited for an object with higher seqno */
Ben Widawskyebc348b2014-04-29 14:52:28 -07003003 if (seqno <= from->semaphore.sync_seqno[idx])
Ben Widawsky2911a352012-04-05 14:47:36 -07003004 return 0;
3005
John Harrisonb6660d52014-11-24 18:49:30 +00003006 ret = i915_gem_check_olr(obj->last_read_req);
Ben Widawskyb4aca012012-04-25 20:50:12 -07003007 if (ret)
3008 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07003009
John Harrison74328ee2014-11-24 18:49:38 +00003010 trace_i915_gem_ring_sync_to(from, to, obj->last_read_req);
Ben Widawskyebc348b2014-04-29 14:52:28 -07003011 ret = to->semaphore.sync_to(to, from, seqno);
Ben Widawskye3a5a222012-04-11 11:18:20 -07003012 if (!ret)
John Harrison97b2a6a2014-11-24 18:49:26 +00003013 /* We use last_read_req because sync_to()
Mika Kuoppala7b01e262012-11-28 17:18:45 +02003014 * might have just caused seqno wrap under
3015 * the radar.
3016 */
John Harrison97b2a6a2014-11-24 18:49:26 +00003017 from->semaphore.sync_seqno[idx] =
3018 i915_gem_request_get_seqno(obj->last_read_req);
Ben Widawsky2911a352012-04-05 14:47:36 -07003019
Ben Widawskye3a5a222012-04-11 11:18:20 -07003020 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07003021}
3022
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01003023static void i915_gem_object_finish_gtt(struct drm_i915_gem_object *obj)
3024{
3025 u32 old_write_domain, old_read_domains;
3026
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01003027 /* Force a pagefault for domain tracking on next user access */
3028 i915_gem_release_mmap(obj);
3029
Keith Packardb97c3d92011-06-24 21:02:59 -07003030 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
3031 return;
3032
Chris Wilson97c809fd2012-10-09 19:24:38 +01003033 /* Wait for any direct GTT access to complete */
3034 mb();
3035
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01003036 old_read_domains = obj->base.read_domains;
3037 old_write_domain = obj->base.write_domain;
3038
3039 obj->base.read_domains &= ~I915_GEM_DOMAIN_GTT;
3040 obj->base.write_domain &= ~I915_GEM_DOMAIN_GTT;
3041
3042 trace_i915_gem_object_change_domain(obj,
3043 old_read_domains,
3044 old_write_domain);
3045}
3046
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003047int i915_vma_unbind(struct i915_vma *vma)
Eric Anholt673a3942008-07-30 12:06:12 -07003048{
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003049 struct drm_i915_gem_object *obj = vma->obj;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003050 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson43e28f02013-01-08 10:53:09 +00003051 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003052
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003053 if (list_empty(&vma->vma_link))
Eric Anholt673a3942008-07-30 12:06:12 -07003054 return 0;
3055
Daniel Vetter0ff501c2013-08-29 19:50:31 +02003056 if (!drm_mm_node_allocated(&vma->node)) {
3057 i915_gem_vma_destroy(vma);
Daniel Vetter0ff501c2013-08-29 19:50:31 +02003058 return 0;
3059 }
Ben Widawsky433544b2013-08-13 18:09:06 -07003060
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08003061 if (vma->pin_count)
Chris Wilson31d8d652012-05-24 19:11:20 +01003062 return -EBUSY;
Eric Anholt673a3942008-07-30 12:06:12 -07003063
Chris Wilsonc4670ad2012-08-20 10:23:27 +01003064 BUG_ON(obj->pages == NULL);
3065
Chris Wilsona8198ee2011-04-13 22:04:09 +01003066 ret = i915_gem_object_finish_gpu(obj);
Chris Wilson1488fc02012-04-24 15:47:31 +01003067 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07003068 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01003069 /* Continue on if we fail due to EIO, the GPU is hung so we
3070 * should be safe and we need to cleanup or else we might
3071 * cause memory corruption through use-after-free.
3072 */
Chris Wilsona8198ee2011-04-13 22:04:09 +01003073
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003074 if (i915_is_ggtt(vma->vm) &&
3075 vma->ggtt_view.type == I915_GGTT_VIEW_NORMAL) {
Daniel Vetter8b1bc9b2014-02-14 14:06:07 +01003076 i915_gem_object_finish_gtt(obj);
Chris Wilsona8198ee2011-04-13 22:04:09 +01003077
Daniel Vetter8b1bc9b2014-02-14 14:06:07 +01003078 /* release the fence reg _after_ flushing */
3079 ret = i915_gem_object_put_fence(obj);
3080 if (ret)
3081 return ret;
3082 }
Daniel Vetter96b47b62009-12-15 17:50:00 +01003083
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003084 trace_i915_vma_unbind(vma);
Chris Wilsondb53a302011-02-03 11:57:46 +00003085
Ben Widawsky6f65e292013-12-06 14:10:56 -08003086 vma->unbind_vma(vma);
3087
Chris Wilson64bf9302014-02-25 14:23:28 +00003088 list_del_init(&vma->mm_list);
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003089 if (i915_is_ggtt(vma->vm)) {
3090 if (vma->ggtt_view.type == I915_GGTT_VIEW_NORMAL) {
3091 obj->map_and_fenceable = false;
3092 } else if (vma->ggtt_view.pages) {
3093 sg_free_table(vma->ggtt_view.pages);
3094 kfree(vma->ggtt_view.pages);
3095 vma->ggtt_view.pages = NULL;
3096 }
3097 }
Eric Anholt673a3942008-07-30 12:06:12 -07003098
Ben Widawsky2f633152013-07-17 12:19:03 -07003099 drm_mm_remove_node(&vma->node);
3100 i915_gem_vma_destroy(vma);
3101
3102 /* Since the unbound list is global, only move to that list if
Daniel Vetterb93dab62013-08-26 11:23:47 +02003103 * no more VMAs exist. */
Armin Reese9490edb2014-07-11 10:20:07 -07003104 if (list_empty(&obj->vma_list)) {
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003105 /* Throw away the active reference before
3106 * moving to the unbound list. */
3107 i915_gem_object_retire(obj);
3108
Armin Reese9490edb2014-07-11 10:20:07 -07003109 i915_gem_gtt_finish_object(obj);
Ben Widawsky2f633152013-07-17 12:19:03 -07003110 list_move_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Armin Reese9490edb2014-07-11 10:20:07 -07003111 }
Eric Anholt673a3942008-07-30 12:06:12 -07003112
Chris Wilson70903c32013-12-04 09:59:09 +00003113 /* And finally now the object is completely decoupled from this vma,
3114 * we can drop its hold on the backing storage and allow it to be
3115 * reaped by the shrinker.
3116 */
3117 i915_gem_object_unpin_pages(obj);
3118
Chris Wilson88241782011-01-07 17:09:48 +00003119 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00003120}
3121
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07003122int i915_gpu_idle(struct drm_device *dev)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003123{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003124 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003125 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003126 int ret, i;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003127
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003128 /* Flush everything onto the inactive list. */
Chris Wilsonb4519512012-05-11 14:29:30 +01003129 for_each_ring(ring, dev_priv, i) {
Thomas Danielecdb5fd2014-08-20 16:29:24 +01003130 if (!i915.enable_execlists) {
3131 ret = i915_switch_context(ring, ring->default_context);
3132 if (ret)
3133 return ret;
3134 }
Ben Widawskyb6c74882012-08-14 14:35:14 -07003135
Chris Wilson3e960502012-11-27 16:22:54 +00003136 ret = intel_ring_idle(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003137 if (ret)
3138 return ret;
3139 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003140
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01003141 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003142}
3143
Chris Wilson9ce079e2012-04-17 15:31:30 +01003144static void i965_write_fence_reg(struct drm_device *dev, int reg,
3145 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003146{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003147 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak56c844e2013-01-07 21:47:34 +02003148 int fence_reg;
3149 int fence_pitch_shift;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003150
Imre Deak56c844e2013-01-07 21:47:34 +02003151 if (INTEL_INFO(dev)->gen >= 6) {
3152 fence_reg = FENCE_REG_SANDYBRIDGE_0;
3153 fence_pitch_shift = SANDYBRIDGE_FENCE_PITCH_SHIFT;
3154 } else {
3155 fence_reg = FENCE_REG_965_0;
3156 fence_pitch_shift = I965_FENCE_PITCH_SHIFT;
3157 }
3158
Chris Wilsond18b9612013-07-10 13:36:23 +01003159 fence_reg += reg * 8;
3160
3161 /* To w/a incoherency with non-atomic 64-bit register updates,
3162 * we split the 64-bit update into two 32-bit writes. In order
3163 * for a partial fence not to be evaluated between writes, we
3164 * precede the update with write to turn off the fence register,
3165 * and only enable the fence as the last step.
3166 *
3167 * For extra levels of paranoia, we make sure each step lands
3168 * before applying the next step.
3169 */
3170 I915_WRITE(fence_reg, 0);
3171 POSTING_READ(fence_reg);
3172
Chris Wilson9ce079e2012-04-17 15:31:30 +01003173 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003174 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilsond18b9612013-07-10 13:36:23 +01003175 uint64_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003176
Bob Paauweaf1a7302014-12-18 09:51:26 -08003177 /* Adjust fence size to match tiled area */
3178 if (obj->tiling_mode != I915_TILING_NONE) {
3179 uint32_t row_size = obj->stride *
3180 (obj->tiling_mode == I915_TILING_Y ? 32 : 8);
3181 size = (size / row_size) * row_size;
3182 }
3183
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003184 val = (uint64_t)((i915_gem_obj_ggtt_offset(obj) + size - 4096) &
Chris Wilson9ce079e2012-04-17 15:31:30 +01003185 0xfffff000) << 32;
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003186 val |= i915_gem_obj_ggtt_offset(obj) & 0xfffff000;
Imre Deak56c844e2013-01-07 21:47:34 +02003187 val |= (uint64_t)((obj->stride / 128) - 1) << fence_pitch_shift;
Chris Wilson9ce079e2012-04-17 15:31:30 +01003188 if (obj->tiling_mode == I915_TILING_Y)
3189 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
3190 val |= I965_FENCE_REG_VALID;
Daniel Vetterc6642782010-11-12 13:46:18 +00003191
Chris Wilsond18b9612013-07-10 13:36:23 +01003192 I915_WRITE(fence_reg + 4, val >> 32);
3193 POSTING_READ(fence_reg + 4);
3194
3195 I915_WRITE(fence_reg + 0, val);
3196 POSTING_READ(fence_reg);
3197 } else {
3198 I915_WRITE(fence_reg + 4, 0);
3199 POSTING_READ(fence_reg + 4);
3200 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08003201}
3202
Chris Wilson9ce079e2012-04-17 15:31:30 +01003203static void i915_write_fence_reg(struct drm_device *dev, int reg,
3204 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003205{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003206 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9ce079e2012-04-17 15:31:30 +01003207 u32 val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003208
Chris Wilson9ce079e2012-04-17 15:31:30 +01003209 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003210 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003211 int pitch_val;
3212 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003213
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003214 WARN((i915_gem_obj_ggtt_offset(obj) & ~I915_FENCE_START_MASK) ||
Chris Wilson9ce079e2012-04-17 15:31:30 +01003215 (size & -size) != size ||
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003216 (i915_gem_obj_ggtt_offset(obj) & (size - 1)),
3217 "object 0x%08lx [fenceable? %d] not 1M or pot-size (0x%08x) aligned\n",
3218 i915_gem_obj_ggtt_offset(obj), obj->map_and_fenceable, size);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003219
3220 if (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev))
3221 tile_width = 128;
3222 else
3223 tile_width = 512;
3224
3225 /* Note: pitch better be a power of two tile widths */
3226 pitch_val = obj->stride / tile_width;
3227 pitch_val = ffs(pitch_val) - 1;
3228
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003229 val = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003230 if (obj->tiling_mode == I915_TILING_Y)
3231 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
3232 val |= I915_FENCE_SIZE_BITS(size);
3233 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
3234 val |= I830_FENCE_REG_VALID;
3235 } else
3236 val = 0;
3237
3238 if (reg < 8)
3239 reg = FENCE_REG_830_0 + reg * 4;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003240 else
Chris Wilson9ce079e2012-04-17 15:31:30 +01003241 reg = FENCE_REG_945_8 + (reg - 8) * 4;
Jesse Barnes0f973f22009-01-26 17:10:45 -08003242
Chris Wilson9ce079e2012-04-17 15:31:30 +01003243 I915_WRITE(reg, val);
3244 POSTING_READ(reg);
Jesse Barnesde151cf2008-11-12 10:03:55 -08003245}
3246
Chris Wilson9ce079e2012-04-17 15:31:30 +01003247static void i830_write_fence_reg(struct drm_device *dev, int reg,
3248 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003249{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003250 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003251 uint32_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003252
Chris Wilson9ce079e2012-04-17 15:31:30 +01003253 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003254 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003255 uint32_t pitch_val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003256
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003257 WARN((i915_gem_obj_ggtt_offset(obj) & ~I830_FENCE_START_MASK) ||
Chris Wilson9ce079e2012-04-17 15:31:30 +01003258 (size & -size) != size ||
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003259 (i915_gem_obj_ggtt_offset(obj) & (size - 1)),
3260 "object 0x%08lx not 512K or pot-size 0x%08x aligned\n",
3261 i915_gem_obj_ggtt_offset(obj), size);
Eric Anholte76a16d2009-05-26 17:44:56 -07003262
Chris Wilson9ce079e2012-04-17 15:31:30 +01003263 pitch_val = obj->stride / 128;
3264 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003265
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003266 val = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003267 if (obj->tiling_mode == I915_TILING_Y)
3268 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
3269 val |= I830_FENCE_SIZE_BITS(size);
3270 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
3271 val |= I830_FENCE_REG_VALID;
3272 } else
3273 val = 0;
Daniel Vetterc6642782010-11-12 13:46:18 +00003274
Chris Wilson9ce079e2012-04-17 15:31:30 +01003275 I915_WRITE(FENCE_REG_830_0 + reg * 4, val);
3276 POSTING_READ(FENCE_REG_830_0 + reg * 4);
3277}
3278
Chris Wilsond0a57782012-10-09 19:24:37 +01003279inline static bool i915_gem_object_needs_mb(struct drm_i915_gem_object *obj)
3280{
3281 return obj && obj->base.read_domains & I915_GEM_DOMAIN_GTT;
3282}
3283
Chris Wilson9ce079e2012-04-17 15:31:30 +01003284static void i915_gem_write_fence(struct drm_device *dev, int reg,
3285 struct drm_i915_gem_object *obj)
3286{
Chris Wilsond0a57782012-10-09 19:24:37 +01003287 struct drm_i915_private *dev_priv = dev->dev_private;
3288
3289 /* Ensure that all CPU reads are completed before installing a fence
3290 * and all writes before removing the fence.
3291 */
3292 if (i915_gem_object_needs_mb(dev_priv->fence_regs[reg].obj))
3293 mb();
3294
Daniel Vetter94a335d2013-07-17 14:51:28 +02003295 WARN(obj && (!obj->stride || !obj->tiling_mode),
3296 "bogus fence setup with stride: 0x%x, tiling mode: %i\n",
3297 obj->stride, obj->tiling_mode);
3298
Rodrigo Vivice38ab02014-12-04 06:48:10 -08003299 if (IS_GEN2(dev))
3300 i830_write_fence_reg(dev, reg, obj);
3301 else if (IS_GEN3(dev))
3302 i915_write_fence_reg(dev, reg, obj);
3303 else if (INTEL_INFO(dev)->gen >= 4)
3304 i965_write_fence_reg(dev, reg, obj);
Chris Wilsond0a57782012-10-09 19:24:37 +01003305
3306 /* And similarly be paranoid that no direct access to this region
3307 * is reordered to before the fence is installed.
3308 */
3309 if (i915_gem_object_needs_mb(obj))
3310 mb();
Jesse Barnesde151cf2008-11-12 10:03:55 -08003311}
3312
Chris Wilson61050802012-04-17 15:31:31 +01003313static inline int fence_number(struct drm_i915_private *dev_priv,
3314 struct drm_i915_fence_reg *fence)
3315{
3316 return fence - dev_priv->fence_regs;
3317}
3318
3319static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
3320 struct drm_i915_fence_reg *fence,
3321 bool enable)
3322{
Chris Wilson2dc8aae2013-05-22 17:08:06 +01003323 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson46a0b632013-07-10 13:36:24 +01003324 int reg = fence_number(dev_priv, fence);
Chris Wilson61050802012-04-17 15:31:31 +01003325
Chris Wilson46a0b632013-07-10 13:36:24 +01003326 i915_gem_write_fence(obj->base.dev, reg, enable ? obj : NULL);
Chris Wilson61050802012-04-17 15:31:31 +01003327
3328 if (enable) {
Chris Wilson46a0b632013-07-10 13:36:24 +01003329 obj->fence_reg = reg;
Chris Wilson61050802012-04-17 15:31:31 +01003330 fence->obj = obj;
3331 list_move_tail(&fence->lru_list, &dev_priv->mm.fence_list);
3332 } else {
3333 obj->fence_reg = I915_FENCE_REG_NONE;
3334 fence->obj = NULL;
3335 list_del_init(&fence->lru_list);
3336 }
Daniel Vetter94a335d2013-07-17 14:51:28 +02003337 obj->fence_dirty = false;
Chris Wilson61050802012-04-17 15:31:31 +01003338}
3339
Chris Wilsond9e86c02010-11-10 16:40:20 +00003340static int
Chris Wilsond0a57782012-10-09 19:24:37 +01003341i915_gem_object_wait_fence(struct drm_i915_gem_object *obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003342{
John Harrison97b2a6a2014-11-24 18:49:26 +00003343 if (obj->last_fenced_req) {
Daniel Vettera4b3a572014-11-26 14:17:05 +01003344 int ret = i915_wait_request(obj->last_fenced_req);
Chris Wilson18991842012-04-17 15:31:29 +01003345 if (ret)
3346 return ret;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003347
John Harrison97b2a6a2014-11-24 18:49:26 +00003348 i915_gem_request_assign(&obj->last_fenced_req, NULL);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003349 }
3350
3351 return 0;
3352}
3353
3354int
3355i915_gem_object_put_fence(struct drm_i915_gem_object *obj)
3356{
Chris Wilson61050802012-04-17 15:31:31 +01003357 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003358 struct drm_i915_fence_reg *fence;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003359 int ret;
3360
Chris Wilsond0a57782012-10-09 19:24:37 +01003361 ret = i915_gem_object_wait_fence(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003362 if (ret)
3363 return ret;
3364
Chris Wilson61050802012-04-17 15:31:31 +01003365 if (obj->fence_reg == I915_FENCE_REG_NONE)
3366 return 0;
Chris Wilson1690e1e2011-12-14 13:57:08 +01003367
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003368 fence = &dev_priv->fence_regs[obj->fence_reg];
3369
Daniel Vetteraff10b302014-02-14 14:06:05 +01003370 if (WARN_ON(fence->pin_count))
3371 return -EBUSY;
3372
Chris Wilson61050802012-04-17 15:31:31 +01003373 i915_gem_object_fence_lost(obj);
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003374 i915_gem_object_update_fence(obj, fence, false);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003375
3376 return 0;
3377}
3378
3379static struct drm_i915_fence_reg *
Chris Wilsona360bb12012-04-17 15:31:25 +01003380i915_find_fence_reg(struct drm_device *dev)
Daniel Vetterae3db242010-02-19 11:51:58 +01003381{
Daniel Vetterae3db242010-02-19 11:51:58 +01003382 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson8fe301a2012-04-17 15:31:28 +01003383 struct drm_i915_fence_reg *reg, *avail;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003384 int i;
Daniel Vetterae3db242010-02-19 11:51:58 +01003385
3386 /* First try to find a free reg */
Chris Wilsond9e86c02010-11-10 16:40:20 +00003387 avail = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01003388 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
3389 reg = &dev_priv->fence_regs[i];
3390 if (!reg->obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003391 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003392
Chris Wilson1690e1e2011-12-14 13:57:08 +01003393 if (!reg->pin_count)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003394 avail = reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003395 }
3396
Chris Wilsond9e86c02010-11-10 16:40:20 +00003397 if (avail == NULL)
Chris Wilson5dce5b932014-01-20 10:17:36 +00003398 goto deadlock;
Daniel Vetterae3db242010-02-19 11:51:58 +01003399
3400 /* None available, try to steal one or wait for a user to finish */
Chris Wilsond9e86c02010-11-10 16:40:20 +00003401 list_for_each_entry(reg, &dev_priv->mm.fence_list, lru_list) {
Chris Wilson1690e1e2011-12-14 13:57:08 +01003402 if (reg->pin_count)
Daniel Vetterae3db242010-02-19 11:51:58 +01003403 continue;
3404
Chris Wilson8fe301a2012-04-17 15:31:28 +01003405 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003406 }
3407
Chris Wilson5dce5b932014-01-20 10:17:36 +00003408deadlock:
3409 /* Wait for completion of pending flips which consume fences */
3410 if (intel_has_pending_fb_unpin(dev))
3411 return ERR_PTR(-EAGAIN);
3412
3413 return ERR_PTR(-EDEADLK);
Daniel Vetterae3db242010-02-19 11:51:58 +01003414}
3415
Jesse Barnesde151cf2008-11-12 10:03:55 -08003416/**
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003417 * i915_gem_object_get_fence - set up fencing for an object
Jesse Barnesde151cf2008-11-12 10:03:55 -08003418 * @obj: object to map through a fence reg
3419 *
3420 * When mapping objects through the GTT, userspace wants to be able to write
3421 * to them without having to worry about swizzling if the object is tiled.
Jesse Barnesde151cf2008-11-12 10:03:55 -08003422 * This function walks the fence regs looking for a free one for @obj,
3423 * stealing one if it can't find any.
3424 *
3425 * It then sets up the reg based on the object's properties: address, pitch
3426 * and tiling format.
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003427 *
3428 * For an untiled surface, this removes any existing fence.
Jesse Barnesde151cf2008-11-12 10:03:55 -08003429 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01003430int
Chris Wilson06d98132012-04-17 15:31:24 +01003431i915_gem_object_get_fence(struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003432{
Chris Wilson05394f32010-11-08 19:18:58 +00003433 struct drm_device *dev = obj->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08003434 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson14415742012-04-17 15:31:33 +01003435 bool enable = obj->tiling_mode != I915_TILING_NONE;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003436 struct drm_i915_fence_reg *reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003437 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003438
Chris Wilson14415742012-04-17 15:31:33 +01003439 /* Have we updated the tiling parameters upon the object and so
3440 * will need to serialise the write to the associated fence register?
3441 */
Chris Wilson5d82e3e2012-04-21 16:23:23 +01003442 if (obj->fence_dirty) {
Chris Wilsond0a57782012-10-09 19:24:37 +01003443 ret = i915_gem_object_wait_fence(obj);
Chris Wilson14415742012-04-17 15:31:33 +01003444 if (ret)
3445 return ret;
3446 }
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003447
Chris Wilsond9e86c02010-11-10 16:40:20 +00003448 /* Just update our place in the LRU if our fence is getting reused. */
Chris Wilson05394f32010-11-08 19:18:58 +00003449 if (obj->fence_reg != I915_FENCE_REG_NONE) {
3450 reg = &dev_priv->fence_regs[obj->fence_reg];
Chris Wilson5d82e3e2012-04-21 16:23:23 +01003451 if (!obj->fence_dirty) {
Chris Wilson14415742012-04-17 15:31:33 +01003452 list_move_tail(&reg->lru_list,
3453 &dev_priv->mm.fence_list);
3454 return 0;
3455 }
3456 } else if (enable) {
Chris Wilsone6a84462014-08-11 12:00:12 +02003457 if (WARN_ON(!obj->map_and_fenceable))
3458 return -EINVAL;
3459
Chris Wilson14415742012-04-17 15:31:33 +01003460 reg = i915_find_fence_reg(dev);
Chris Wilson5dce5b932014-01-20 10:17:36 +00003461 if (IS_ERR(reg))
3462 return PTR_ERR(reg);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003463
Chris Wilson14415742012-04-17 15:31:33 +01003464 if (reg->obj) {
3465 struct drm_i915_gem_object *old = reg->obj;
3466
Chris Wilsond0a57782012-10-09 19:24:37 +01003467 ret = i915_gem_object_wait_fence(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00003468 if (ret)
3469 return ret;
3470
Chris Wilson14415742012-04-17 15:31:33 +01003471 i915_gem_object_fence_lost(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00003472 }
Chris Wilson14415742012-04-17 15:31:33 +01003473 } else
Eric Anholta09ba7f2009-08-29 12:49:51 -07003474 return 0;
Eric Anholta09ba7f2009-08-29 12:49:51 -07003475
Chris Wilson14415742012-04-17 15:31:33 +01003476 i915_gem_object_update_fence(obj, reg, enable);
Chris Wilson14415742012-04-17 15:31:33 +01003477
Chris Wilson9ce079e2012-04-17 15:31:30 +01003478 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003479}
3480
Chris Wilson4144f9b2014-09-11 08:43:48 +01003481static bool i915_gem_valid_gtt_space(struct i915_vma *vma,
Chris Wilson42d6ab42012-07-26 11:49:32 +01003482 unsigned long cache_level)
3483{
Chris Wilson4144f9b2014-09-11 08:43:48 +01003484 struct drm_mm_node *gtt_space = &vma->node;
Chris Wilson42d6ab42012-07-26 11:49:32 +01003485 struct drm_mm_node *other;
3486
Chris Wilson4144f9b2014-09-11 08:43:48 +01003487 /*
3488 * On some machines we have to be careful when putting differing types
3489 * of snoopable memory together to avoid the prefetcher crossing memory
3490 * domains and dying. During vm initialisation, we decide whether or not
3491 * these constraints apply and set the drm_mm.color_adjust
3492 * appropriately.
Chris Wilson42d6ab42012-07-26 11:49:32 +01003493 */
Chris Wilson4144f9b2014-09-11 08:43:48 +01003494 if (vma->vm->mm.color_adjust == NULL)
Chris Wilson42d6ab42012-07-26 11:49:32 +01003495 return true;
3496
Ben Widawskyc6cfb322013-07-05 14:41:06 -07003497 if (!drm_mm_node_allocated(gtt_space))
Chris Wilson42d6ab42012-07-26 11:49:32 +01003498 return true;
3499
3500 if (list_empty(&gtt_space->node_list))
3501 return true;
3502
3503 other = list_entry(gtt_space->node_list.prev, struct drm_mm_node, node_list);
3504 if (other->allocated && !other->hole_follows && other->color != cache_level)
3505 return false;
3506
3507 other = list_entry(gtt_space->node_list.next, struct drm_mm_node, node_list);
3508 if (other->allocated && !gtt_space->hole_follows && other->color != cache_level)
3509 return false;
3510
3511 return true;
3512}
3513
Jesse Barnesde151cf2008-11-12 10:03:55 -08003514/**
Eric Anholt673a3942008-07-30 12:06:12 -07003515 * Finds free space in the GTT aperture and binds the object there.
3516 */
Daniel Vetter262de142014-02-14 14:01:20 +01003517static struct i915_vma *
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003518i915_gem_object_bind_to_vm(struct drm_i915_gem_object *obj,
3519 struct i915_address_space *vm,
3520 unsigned alignment,
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003521 uint64_t flags,
3522 const struct i915_ggtt_view *view)
Eric Anholt673a3942008-07-30 12:06:12 -07003523{
Chris Wilson05394f32010-11-08 19:18:58 +00003524 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003525 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter5e783302010-11-14 22:32:36 +01003526 u32 size, fence_size, fence_alignment, unfenced_alignment;
Chris Wilsond23db882014-05-23 08:48:08 +02003527 unsigned long start =
3528 flags & PIN_OFFSET_BIAS ? flags & PIN_OFFSET_MASK : 0;
3529 unsigned long end =
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003530 flags & PIN_MAPPABLE ? dev_priv->gtt.mappable_end : vm->total;
Ben Widawsky2f633152013-07-17 12:19:03 -07003531 struct i915_vma *vma;
Chris Wilson07f73f62009-09-14 16:50:30 +01003532 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003533
Chris Wilsone28f8712011-07-18 13:11:49 -07003534 fence_size = i915_gem_get_gtt_size(dev,
3535 obj->base.size,
3536 obj->tiling_mode);
3537 fence_alignment = i915_gem_get_gtt_alignment(dev,
3538 obj->base.size,
Imre Deakd8651102013-01-07 21:47:33 +02003539 obj->tiling_mode, true);
Chris Wilsone28f8712011-07-18 13:11:49 -07003540 unfenced_alignment =
Imre Deakd8651102013-01-07 21:47:33 +02003541 i915_gem_get_gtt_alignment(dev,
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003542 obj->base.size,
3543 obj->tiling_mode, false);
Chris Wilsona00b10c2010-09-24 21:15:47 +01003544
Eric Anholt673a3942008-07-30 12:06:12 -07003545 if (alignment == 0)
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003546 alignment = flags & PIN_MAPPABLE ? fence_alignment :
Daniel Vetter5e783302010-11-14 22:32:36 +01003547 unfenced_alignment;
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003548 if (flags & PIN_MAPPABLE && alignment & (fence_alignment - 1)) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00003549 DRM_DEBUG("Invalid object alignment requested %u\n", alignment);
Daniel Vetter262de142014-02-14 14:01:20 +01003550 return ERR_PTR(-EINVAL);
Eric Anholt673a3942008-07-30 12:06:12 -07003551 }
3552
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003553 size = flags & PIN_MAPPABLE ? fence_size : obj->base.size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01003554
Chris Wilson654fc602010-05-27 13:18:21 +01003555 /* If the object is bigger than the entire aperture, reject it early
3556 * before evicting everything in a vain attempt to find space.
3557 */
Chris Wilsond23db882014-05-23 08:48:08 +02003558 if (obj->base.size > end) {
3559 DRM_DEBUG("Attempting to bind an object larger than the aperture: object=%zd > %s aperture=%lu\n",
Chris Wilsona36689c2013-05-21 16:58:49 +01003560 obj->base.size,
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003561 flags & PIN_MAPPABLE ? "mappable" : "total",
Chris Wilsond23db882014-05-23 08:48:08 +02003562 end);
Daniel Vetter262de142014-02-14 14:01:20 +01003563 return ERR_PTR(-E2BIG);
Chris Wilson654fc602010-05-27 13:18:21 +01003564 }
3565
Chris Wilson37e680a2012-06-07 15:38:42 +01003566 ret = i915_gem_object_get_pages(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02003567 if (ret)
Daniel Vetter262de142014-02-14 14:01:20 +01003568 return ERR_PTR(ret);
Chris Wilson6c085a72012-08-20 11:40:46 +02003569
Chris Wilsonfbdda6f2012-11-20 10:45:16 +00003570 i915_gem_object_pin_pages(obj);
3571
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003572 vma = i915_gem_obj_lookup_or_create_vma_view(obj, vm, view);
Daniel Vetter262de142014-02-14 14:01:20 +01003573 if (IS_ERR(vma))
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003574 goto err_unpin;
Ben Widawsky2f633152013-07-17 12:19:03 -07003575
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003576search_free:
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003577 ret = drm_mm_insert_node_in_range_generic(&vm->mm, &vma->node,
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003578 size, alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02003579 obj->cache_level,
3580 start, end,
Lauri Kasanen62347f92014-04-02 20:03:57 +03003581 DRM_MM_SEARCH_DEFAULT,
3582 DRM_MM_CREATE_DEFAULT);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003583 if (ret) {
Ben Widawskyf6cd1f12013-07-31 17:00:11 -07003584 ret = i915_gem_evict_something(dev, vm, size, alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02003585 obj->cache_level,
3586 start, end,
3587 flags);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003588 if (ret == 0)
3589 goto search_free;
Chris Wilson97311292009-09-21 00:22:34 +01003590
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003591 goto err_free_vma;
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003592 }
Chris Wilson4144f9b2014-09-11 08:43:48 +01003593 if (WARN_ON(!i915_gem_valid_gtt_space(vma, obj->cache_level))) {
Ben Widawsky2f633152013-07-17 12:19:03 -07003594 ret = -EINVAL;
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003595 goto err_remove_node;
Eric Anholt673a3942008-07-30 12:06:12 -07003596 }
3597
Daniel Vetter74163902012-02-15 23:50:21 +01003598 ret = i915_gem_gtt_prepare_object(obj);
Ben Widawsky2f633152013-07-17 12:19:03 -07003599 if (ret)
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003600 goto err_remove_node;
Eric Anholt673a3942008-07-30 12:06:12 -07003601
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003602 trace_i915_vma_bind(vma, flags);
3603 ret = i915_vma_bind(vma, obj->cache_level,
3604 flags & PIN_GLOBAL ? GLOBAL_BIND : 0);
3605 if (ret)
3606 goto err_finish_gtt;
3607
Ben Widawsky35c20a62013-05-31 11:28:48 -07003608 list_move_tail(&obj->global_list, &dev_priv->mm.bound_list);
Ben Widawskyca191b12013-07-31 17:00:14 -07003609 list_add_tail(&vma->mm_list, &vm->inactive_list);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01003610
Daniel Vetter262de142014-02-14 14:01:20 +01003611 return vma;
Ben Widawsky2f633152013-07-17 12:19:03 -07003612
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003613err_finish_gtt:
3614 i915_gem_gtt_finish_object(obj);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003615err_remove_node:
Dan Carpenter6286ef92013-07-19 08:46:27 +03003616 drm_mm_remove_node(&vma->node);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003617err_free_vma:
Ben Widawsky2f633152013-07-17 12:19:03 -07003618 i915_gem_vma_destroy(vma);
Daniel Vetter262de142014-02-14 14:01:20 +01003619 vma = ERR_PTR(ret);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003620err_unpin:
Ben Widawsky2f633152013-07-17 12:19:03 -07003621 i915_gem_object_unpin_pages(obj);
Daniel Vetter262de142014-02-14 14:01:20 +01003622 return vma;
Eric Anholt673a3942008-07-30 12:06:12 -07003623}
3624
Chris Wilson000433b2013-08-08 14:41:09 +01003625bool
Chris Wilson2c225692013-08-09 12:26:45 +01003626i915_gem_clflush_object(struct drm_i915_gem_object *obj,
3627 bool force)
Eric Anholt673a3942008-07-30 12:06:12 -07003628{
Eric Anholt673a3942008-07-30 12:06:12 -07003629 /* If we don't have a page list set up, then we're not pinned
3630 * to GPU, and we can ignore the cache flush because it'll happen
3631 * again at bind time.
3632 */
Chris Wilson05394f32010-11-08 19:18:58 +00003633 if (obj->pages == NULL)
Chris Wilson000433b2013-08-08 14:41:09 +01003634 return false;
Eric Anholt673a3942008-07-30 12:06:12 -07003635
Imre Deak769ce462013-02-13 21:56:05 +02003636 /*
3637 * Stolen memory is always coherent with the GPU as it is explicitly
3638 * marked as wc by the system, or the system is cache-coherent.
3639 */
Chris Wilson6a2c4232014-11-04 04:51:40 -08003640 if (obj->stolen || obj->phys_handle)
Chris Wilson000433b2013-08-08 14:41:09 +01003641 return false;
Imre Deak769ce462013-02-13 21:56:05 +02003642
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003643 /* If the GPU is snooping the contents of the CPU cache,
3644 * we do not need to manually clear the CPU cache lines. However,
3645 * the caches are only snooped when the render cache is
3646 * flushed/invalidated. As we always have to emit invalidations
3647 * and flushes when moving into and out of the RENDER domain, correct
3648 * snooping behaviour occurs naturally as the result of our domain
3649 * tracking.
3650 */
Chris Wilson0f719792015-01-13 13:32:52 +00003651 if (!force && cpu_cache_is_coherent(obj->base.dev, obj->cache_level)) {
3652 obj->cache_dirty = true;
Chris Wilson000433b2013-08-08 14:41:09 +01003653 return false;
Chris Wilson0f719792015-01-13 13:32:52 +00003654 }
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003655
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003656 trace_i915_gem_object_clflush(obj);
Chris Wilson9da3da62012-06-01 15:20:22 +01003657 drm_clflush_sg(obj->pages);
Chris Wilson0f719792015-01-13 13:32:52 +00003658 obj->cache_dirty = false;
Chris Wilson000433b2013-08-08 14:41:09 +01003659
3660 return true;
Eric Anholte47c68e2008-11-14 13:35:19 -08003661}
3662
3663/** Flushes the GTT write domain for the object if it's dirty. */
3664static void
Chris Wilson05394f32010-11-08 19:18:58 +00003665i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003666{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003667 uint32_t old_write_domain;
3668
Chris Wilson05394f32010-11-08 19:18:58 +00003669 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08003670 return;
3671
Chris Wilson63256ec2011-01-04 18:42:07 +00003672 /* No actual flushing is required for the GTT write domain. Writes
Eric Anholte47c68e2008-11-14 13:35:19 -08003673 * to it immediately go to main memory as far as we know, so there's
3674 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00003675 *
3676 * However, we do have to enforce the order so that all writes through
3677 * the GTT land before any writes to the device, such as updates to
3678 * the GATT itself.
Eric Anholte47c68e2008-11-14 13:35:19 -08003679 */
Chris Wilson63256ec2011-01-04 18:42:07 +00003680 wmb();
3681
Chris Wilson05394f32010-11-08 19:18:58 +00003682 old_write_domain = obj->base.write_domain;
3683 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003684
Daniel Vetterf99d7062014-06-19 16:01:59 +02003685 intel_fb_obj_flush(obj, false);
3686
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003687 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003688 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003689 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003690}
3691
3692/** Flushes the CPU write domain for the object if it's dirty. */
3693static void
Daniel Vettere62b59e2015-01-21 14:53:48 +01003694i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003695{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003696 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08003697
Chris Wilson05394f32010-11-08 19:18:58 +00003698 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08003699 return;
3700
Daniel Vettere62b59e2015-01-21 14:53:48 +01003701 if (i915_gem_clflush_object(obj, obj->pin_display))
Chris Wilson000433b2013-08-08 14:41:09 +01003702 i915_gem_chipset_flush(obj->base.dev);
3703
Chris Wilson05394f32010-11-08 19:18:58 +00003704 old_write_domain = obj->base.write_domain;
3705 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003706
Daniel Vetterf99d7062014-06-19 16:01:59 +02003707 intel_fb_obj_flush(obj, false);
3708
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003709 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003710 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003711 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003712}
3713
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003714/**
3715 * Moves a single object to the GTT read, and possibly write domain.
3716 *
3717 * This function returns when the move is complete, including waiting on
3718 * flushes to occur.
3719 */
Jesse Barnes79e53942008-11-07 14:24:08 -08003720int
Chris Wilson20217462010-11-23 15:26:33 +00003721i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003722{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003723 uint32_t old_write_domain, old_read_domains;
Chris Wilson43566de2015-01-02 16:29:29 +05303724 struct i915_vma *vma;
Eric Anholte47c68e2008-11-14 13:35:19 -08003725 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003726
Chris Wilson8d7e3de2011-02-07 15:23:02 +00003727 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
3728 return 0;
3729
Chris Wilson0201f1e2012-07-20 12:41:01 +01003730 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00003731 if (ret)
3732 return ret;
3733
Chris Wilsonc8725f32014-03-17 12:21:55 +00003734 i915_gem_object_retire(obj);
Chris Wilson43566de2015-01-02 16:29:29 +05303735
3736 /* Flush and acquire obj->pages so that we are coherent through
3737 * direct access in memory with previous cached writes through
3738 * shmemfs and that our cache domain tracking remains valid.
3739 * For example, if the obj->filp was moved to swap without us
3740 * being notified and releasing the pages, we would mistakenly
3741 * continue to assume that the obj remained out of the CPU cached
3742 * domain.
3743 */
3744 ret = i915_gem_object_get_pages(obj);
3745 if (ret)
3746 return ret;
3747
Daniel Vettere62b59e2015-01-21 14:53:48 +01003748 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003749
Chris Wilsond0a57782012-10-09 19:24:37 +01003750 /* Serialise direct access to this object with the barriers for
3751 * coherent writes from the GPU, by effectively invalidating the
3752 * GTT domain upon first access.
3753 */
3754 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
3755 mb();
3756
Chris Wilson05394f32010-11-08 19:18:58 +00003757 old_write_domain = obj->base.write_domain;
3758 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003759
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003760 /* It should now be out of any other write domains, and we can update
3761 * the domain values for our changes.
3762 */
Chris Wilson05394f32010-11-08 19:18:58 +00003763 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
3764 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08003765 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003766 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
3767 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
3768 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08003769 }
3770
Daniel Vetterf99d7062014-06-19 16:01:59 +02003771 if (write)
Paulo Zanonia4001f12015-02-13 17:23:44 -02003772 intel_fb_obj_invalidate(obj, NULL, ORIGIN_GTT);
Daniel Vetterf99d7062014-06-19 16:01:59 +02003773
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003774 trace_i915_gem_object_change_domain(obj,
3775 old_read_domains,
3776 old_write_domain);
3777
Chris Wilson8325a092012-04-24 15:52:35 +01003778 /* And bump the LRU for this access */
Chris Wilson43566de2015-01-02 16:29:29 +05303779 vma = i915_gem_obj_to_ggtt(obj);
3780 if (vma && drm_mm_node_allocated(&vma->node) && !obj->active)
Chris Wilsondc8cd1e2014-08-09 17:37:22 +01003781 list_move_tail(&vma->mm_list,
Chris Wilson43566de2015-01-02 16:29:29 +05303782 &to_i915(obj->base.dev)->gtt.base.inactive_list);
Chris Wilson8325a092012-04-24 15:52:35 +01003783
Eric Anholte47c68e2008-11-14 13:35:19 -08003784 return 0;
3785}
3786
Chris Wilsone4ffd172011-04-04 09:44:39 +01003787int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
3788 enum i915_cache_level cache_level)
3789{
Daniel Vetter7bddb012012-02-09 17:15:47 +01003790 struct drm_device *dev = obj->base.dev;
Chris Wilsondf6f7832014-03-21 07:40:56 +00003791 struct i915_vma *vma, *next;
Chris Wilsone4ffd172011-04-04 09:44:39 +01003792 int ret;
3793
3794 if (obj->cache_level == cache_level)
3795 return 0;
3796
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08003797 if (i915_gem_obj_is_pinned(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003798 DRM_DEBUG("can not change the cache level of pinned objects\n");
3799 return -EBUSY;
3800 }
3801
Chris Wilsondf6f7832014-03-21 07:40:56 +00003802 list_for_each_entry_safe(vma, next, &obj->vma_list, vma_link) {
Chris Wilson4144f9b2014-09-11 08:43:48 +01003803 if (!i915_gem_valid_gtt_space(vma, cache_level)) {
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003804 ret = i915_vma_unbind(vma);
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003805 if (ret)
3806 return ret;
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003807 }
Chris Wilson42d6ab42012-07-26 11:49:32 +01003808 }
3809
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003810 if (i915_gem_obj_bound_any(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003811 ret = i915_gem_object_finish_gpu(obj);
3812 if (ret)
3813 return ret;
3814
3815 i915_gem_object_finish_gtt(obj);
3816
3817 /* Before SandyBridge, you could not use tiling or fence
3818 * registers with snooped memory, so relinquish any fences
3819 * currently pointing to our region in the aperture.
3820 */
Chris Wilson42d6ab42012-07-26 11:49:32 +01003821 if (INTEL_INFO(dev)->gen < 6) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003822 ret = i915_gem_object_put_fence(obj);
3823 if (ret)
3824 return ret;
3825 }
3826
Ben Widawsky6f65e292013-12-06 14:10:56 -08003827 list_for_each_entry(vma, &obj->vma_list, vma_link)
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003828 if (drm_mm_node_allocated(&vma->node)) {
3829 ret = i915_vma_bind(vma, cache_level,
3830 vma->bound & GLOBAL_BIND);
3831 if (ret)
3832 return ret;
3833 }
Chris Wilsone4ffd172011-04-04 09:44:39 +01003834 }
3835
Chris Wilson2c225692013-08-09 12:26:45 +01003836 list_for_each_entry(vma, &obj->vma_list, vma_link)
3837 vma->node.color = cache_level;
3838 obj->cache_level = cache_level;
3839
Chris Wilson0f719792015-01-13 13:32:52 +00003840 if (obj->cache_dirty &&
3841 obj->base.write_domain != I915_GEM_DOMAIN_CPU &&
3842 cpu_write_needs_clflush(obj)) {
3843 if (i915_gem_clflush_object(obj, true))
3844 i915_gem_chipset_flush(obj->base.dev);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003845 }
3846
Chris Wilsone4ffd172011-04-04 09:44:39 +01003847 return 0;
3848}
3849
Ben Widawsky199adf42012-09-21 17:01:20 -07003850int i915_gem_get_caching_ioctl(struct drm_device *dev, void *data,
3851 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003852{
Ben Widawsky199adf42012-09-21 17:01:20 -07003853 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003854 struct drm_i915_gem_object *obj;
3855 int ret;
3856
3857 ret = i915_mutex_lock_interruptible(dev);
3858 if (ret)
3859 return ret;
3860
3861 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3862 if (&obj->base == NULL) {
3863 ret = -ENOENT;
3864 goto unlock;
3865 }
3866
Chris Wilson651d7942013-08-08 14:41:10 +01003867 switch (obj->cache_level) {
3868 case I915_CACHE_LLC:
3869 case I915_CACHE_L3_LLC:
3870 args->caching = I915_CACHING_CACHED;
3871 break;
3872
Chris Wilson4257d3b2013-08-08 14:41:11 +01003873 case I915_CACHE_WT:
3874 args->caching = I915_CACHING_DISPLAY;
3875 break;
3876
Chris Wilson651d7942013-08-08 14:41:10 +01003877 default:
3878 args->caching = I915_CACHING_NONE;
3879 break;
3880 }
Chris Wilsone6994ae2012-07-10 10:27:08 +01003881
3882 drm_gem_object_unreference(&obj->base);
3883unlock:
3884 mutex_unlock(&dev->struct_mutex);
3885 return ret;
3886}
3887
Ben Widawsky199adf42012-09-21 17:01:20 -07003888int i915_gem_set_caching_ioctl(struct drm_device *dev, void *data,
3889 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003890{
Ben Widawsky199adf42012-09-21 17:01:20 -07003891 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003892 struct drm_i915_gem_object *obj;
3893 enum i915_cache_level level;
3894 int ret;
3895
Ben Widawsky199adf42012-09-21 17:01:20 -07003896 switch (args->caching) {
3897 case I915_CACHING_NONE:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003898 level = I915_CACHE_NONE;
3899 break;
Ben Widawsky199adf42012-09-21 17:01:20 -07003900 case I915_CACHING_CACHED:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003901 level = I915_CACHE_LLC;
3902 break;
Chris Wilson4257d3b2013-08-08 14:41:11 +01003903 case I915_CACHING_DISPLAY:
3904 level = HAS_WT(dev) ? I915_CACHE_WT : I915_CACHE_NONE;
3905 break;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003906 default:
3907 return -EINVAL;
3908 }
3909
Ben Widawsky3bc29132012-09-26 16:15:20 -07003910 ret = i915_mutex_lock_interruptible(dev);
3911 if (ret)
3912 return ret;
3913
Chris Wilsone6994ae2012-07-10 10:27:08 +01003914 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3915 if (&obj->base == NULL) {
3916 ret = -ENOENT;
3917 goto unlock;
3918 }
3919
3920 ret = i915_gem_object_set_cache_level(obj, level);
3921
3922 drm_gem_object_unreference(&obj->base);
3923unlock:
3924 mutex_unlock(&dev->struct_mutex);
3925 return ret;
3926}
3927
Chris Wilsoncc98b412013-08-09 12:25:09 +01003928static bool is_pin_display(struct drm_i915_gem_object *obj)
3929{
Oscar Mateo19656432014-05-16 14:20:43 +01003930 struct i915_vma *vma;
3931
Oscar Mateo19656432014-05-16 14:20:43 +01003932 vma = i915_gem_obj_to_ggtt(obj);
3933 if (!vma)
3934 return false;
3935
Daniel Vetter4feb7652014-11-24 11:21:52 +01003936 /* There are 2 sources that pin objects:
Chris Wilsoncc98b412013-08-09 12:25:09 +01003937 * 1. The display engine (scanouts, sprites, cursors);
3938 * 2. Reservations for execbuffer;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003939 *
3940 * We can ignore reservations as we hold the struct_mutex and
Daniel Vetter4feb7652014-11-24 11:21:52 +01003941 * are only called outside of the reservation path.
Chris Wilsoncc98b412013-08-09 12:25:09 +01003942 */
Daniel Vetter4feb7652014-11-24 11:21:52 +01003943 return vma->pin_count;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003944}
3945
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003946/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003947 * Prepare buffer for display plane (scanout, cursors, etc).
3948 * Can be called from an uninterruptible phase (modesetting) and allows
3949 * any flushes to be pipelined (for pageflips).
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003950 */
3951int
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003952i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
3953 u32 alignment,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003954 struct intel_engine_cs *pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003955{
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003956 u32 old_read_domains, old_write_domain;
Oscar Mateo19656432014-05-16 14:20:43 +01003957 bool was_pin_display;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003958 int ret;
3959
John Harrison41c52412014-11-24 18:49:43 +00003960 if (pipelined != i915_gem_request_get_ring(obj->last_read_req)) {
Ben Widawsky2911a352012-04-05 14:47:36 -07003961 ret = i915_gem_object_sync(obj, pipelined);
3962 if (ret)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003963 return ret;
3964 }
3965
Chris Wilsoncc98b412013-08-09 12:25:09 +01003966 /* Mark the pin_display early so that we account for the
3967 * display coherency whilst setting up the cache domains.
3968 */
Oscar Mateo19656432014-05-16 14:20:43 +01003969 was_pin_display = obj->pin_display;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003970 obj->pin_display = true;
3971
Eric Anholta7ef0642011-03-29 16:59:54 -07003972 /* The display engine is not coherent with the LLC cache on gen6. As
3973 * a result, we make sure that the pinning that is about to occur is
3974 * done with uncached PTEs. This is lowest common denominator for all
3975 * chipsets.
3976 *
3977 * However for gen6+, we could do better by using the GFDT bit instead
3978 * of uncaching, which would allow us to flush all the LLC-cached data
3979 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
3980 */
Chris Wilson651d7942013-08-08 14:41:10 +01003981 ret = i915_gem_object_set_cache_level(obj,
3982 HAS_WT(obj->base.dev) ? I915_CACHE_WT : I915_CACHE_NONE);
Eric Anholta7ef0642011-03-29 16:59:54 -07003983 if (ret)
Chris Wilsoncc98b412013-08-09 12:25:09 +01003984 goto err_unpin_display;
Eric Anholta7ef0642011-03-29 16:59:54 -07003985
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003986 /* As the user may map the buffer once pinned in the display plane
3987 * (e.g. libkms for the bootup splash), we have to ensure that we
3988 * always use map_and_fenceable for all scanout buffers.
3989 */
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003990 ret = i915_gem_obj_ggtt_pin(obj, alignment, PIN_MAPPABLE);
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003991 if (ret)
Chris Wilsoncc98b412013-08-09 12:25:09 +01003992 goto err_unpin_display;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003993
Daniel Vettere62b59e2015-01-21 14:53:48 +01003994 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilsonb118c1e2010-05-27 13:18:14 +01003995
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003996 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00003997 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003998
3999 /* It should now be out of any other write domains, and we can update
4000 * the domain values for our changes.
4001 */
Chris Wilsone5f1d962012-07-20 12:41:00 +01004002 obj->base.write_domain = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00004003 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08004004
4005 trace_i915_gem_object_change_domain(obj,
4006 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01004007 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08004008
4009 return 0;
Chris Wilsoncc98b412013-08-09 12:25:09 +01004010
4011err_unpin_display:
Oscar Mateo19656432014-05-16 14:20:43 +01004012 WARN_ON(was_pin_display != is_pin_display(obj));
4013 obj->pin_display = was_pin_display;
Chris Wilsoncc98b412013-08-09 12:25:09 +01004014 return ret;
4015}
4016
4017void
4018i915_gem_object_unpin_from_display_plane(struct drm_i915_gem_object *obj)
4019{
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004020 i915_gem_object_ggtt_unpin(obj);
Chris Wilsoncc98b412013-08-09 12:25:09 +01004021 obj->pin_display = is_pin_display(obj);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08004022}
4023
Chris Wilson85345512010-11-13 09:49:11 +00004024int
Chris Wilsona8198ee2011-04-13 22:04:09 +01004025i915_gem_object_finish_gpu(struct drm_i915_gem_object *obj)
Chris Wilson85345512010-11-13 09:49:11 +00004026{
Chris Wilson88241782011-01-07 17:09:48 +00004027 int ret;
4028
Chris Wilsona8198ee2011-04-13 22:04:09 +01004029 if ((obj->base.read_domains & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson85345512010-11-13 09:49:11 +00004030 return 0;
4031
Chris Wilson0201f1e2012-07-20 12:41:01 +01004032 ret = i915_gem_object_wait_rendering(obj, false);
Chris Wilsonc501ae72011-12-14 13:57:23 +01004033 if (ret)
4034 return ret;
4035
Chris Wilsona8198ee2011-04-13 22:04:09 +01004036 /* Ensure that we invalidate the GPU's caches and TLBs. */
4037 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilsonc501ae72011-12-14 13:57:23 +01004038 return 0;
Chris Wilson85345512010-11-13 09:49:11 +00004039}
4040
Eric Anholte47c68e2008-11-14 13:35:19 -08004041/**
4042 * Moves a single object to the CPU read, and possibly write domain.
4043 *
4044 * This function returns when the move is complete, including waiting on
4045 * flushes to occur.
4046 */
Chris Wilsondabdfe02012-03-26 10:10:27 +02004047int
Chris Wilson919926a2010-11-12 13:42:53 +00004048i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08004049{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004050 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08004051 int ret;
4052
Chris Wilson8d7e3de2011-02-07 15:23:02 +00004053 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
4054 return 0;
4055
Chris Wilson0201f1e2012-07-20 12:41:01 +01004056 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00004057 if (ret)
4058 return ret;
4059
Chris Wilsonc8725f32014-03-17 12:21:55 +00004060 i915_gem_object_retire(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08004061 i915_gem_object_flush_gtt_write_domain(obj);
4062
Chris Wilson05394f32010-11-08 19:18:58 +00004063 old_write_domain = obj->base.write_domain;
4064 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004065
Eric Anholte47c68e2008-11-14 13:35:19 -08004066 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00004067 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Chris Wilson2c225692013-08-09 12:26:45 +01004068 i915_gem_clflush_object(obj, false);
Eric Anholte47c68e2008-11-14 13:35:19 -08004069
Chris Wilson05394f32010-11-08 19:18:58 +00004070 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08004071 }
4072
4073 /* It should now be out of any other write domains, and we can update
4074 * the domain values for our changes.
4075 */
Chris Wilson05394f32010-11-08 19:18:58 +00004076 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08004077
4078 /* If we're writing through the CPU, then the GPU read domains will
4079 * need to be invalidated at next use.
4080 */
4081 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00004082 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4083 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08004084 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08004085
Daniel Vetterf99d7062014-06-19 16:01:59 +02004086 if (write)
Paulo Zanonia4001f12015-02-13 17:23:44 -02004087 intel_fb_obj_invalidate(obj, NULL, ORIGIN_CPU);
Daniel Vetterf99d7062014-06-19 16:01:59 +02004088
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004089 trace_i915_gem_object_change_domain(obj,
4090 old_read_domains,
4091 old_write_domain);
4092
Eric Anholt2ef7eea2008-11-10 10:53:25 -08004093 return 0;
4094}
4095
Eric Anholt673a3942008-07-30 12:06:12 -07004096/* Throttle our rendering by waiting until the ring has completed our requests
4097 * emitted over 20 msec ago.
4098 *
Eric Anholtb9624422009-06-03 07:27:35 +00004099 * Note that if we were to use the current jiffies each time around the loop,
4100 * we wouldn't escape the function with any frames outstanding if the time to
4101 * render a frame was over 20ms.
4102 *
Eric Anholt673a3942008-07-30 12:06:12 -07004103 * This should get us reasonable parallelism between CPU and GPU but also
4104 * relatively low latency when blocking on a particular request to finish.
4105 */
4106static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004107i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004108{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004109 struct drm_i915_private *dev_priv = dev->dev_private;
4110 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00004111 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
John Harrison54fb2412014-11-24 18:49:27 +00004112 struct drm_i915_gem_request *request, *target = NULL;
Daniel Vetterf69061b2012-12-06 09:01:42 +01004113 unsigned reset_counter;
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004114 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004115
Daniel Vetter308887a2012-11-14 17:14:06 +01004116 ret = i915_gem_wait_for_error(&dev_priv->gpu_error);
4117 if (ret)
4118 return ret;
4119
4120 ret = i915_gem_check_wedge(&dev_priv->gpu_error, false);
4121 if (ret)
4122 return ret;
Chris Wilsone110e8d2011-01-26 15:39:14 +00004123
Chris Wilson1c255952010-09-26 11:03:27 +01004124 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004125 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00004126 if (time_after_eq(request->emitted_jiffies, recent_enough))
4127 break;
4128
John Harrison54fb2412014-11-24 18:49:27 +00004129 target = request;
Eric Anholtb9624422009-06-03 07:27:35 +00004130 }
Daniel Vetterf69061b2012-12-06 09:01:42 +01004131 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
John Harrisonff865882014-11-24 18:49:28 +00004132 if (target)
4133 i915_gem_request_reference(target);
Chris Wilson1c255952010-09-26 11:03:27 +01004134 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004135
John Harrison54fb2412014-11-24 18:49:27 +00004136 if (target == NULL)
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004137 return 0;
4138
John Harrison9c654812014-11-24 18:49:35 +00004139 ret = __i915_wait_request(target, reset_counter, true, NULL, NULL);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004140 if (ret == 0)
4141 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00004142
John Harrisonff865882014-11-24 18:49:28 +00004143 mutex_lock(&dev->struct_mutex);
4144 i915_gem_request_unreference(target);
4145 mutex_unlock(&dev->struct_mutex);
4146
Eric Anholt673a3942008-07-30 12:06:12 -07004147 return ret;
4148}
4149
Chris Wilsond23db882014-05-23 08:48:08 +02004150static bool
4151i915_vma_misplaced(struct i915_vma *vma, uint32_t alignment, uint64_t flags)
4152{
4153 struct drm_i915_gem_object *obj = vma->obj;
4154
4155 if (alignment &&
4156 vma->node.start & (alignment - 1))
4157 return true;
4158
4159 if (flags & PIN_MAPPABLE && !obj->map_and_fenceable)
4160 return true;
4161
4162 if (flags & PIN_OFFSET_BIAS &&
4163 vma->node.start < (flags & PIN_OFFSET_MASK))
4164 return true;
4165
4166 return false;
4167}
4168
Eric Anholt673a3942008-07-30 12:06:12 -07004169int
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00004170i915_gem_object_pin_view(struct drm_i915_gem_object *obj,
4171 struct i915_address_space *vm,
4172 uint32_t alignment,
4173 uint64_t flags,
4174 const struct i915_ggtt_view *view)
Eric Anholt673a3942008-07-30 12:06:12 -07004175{
Ben Widawsky6e7186a2014-05-06 22:21:36 -07004176 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004177 struct i915_vma *vma;
Chris Wilsonef79e172014-10-31 13:53:52 +00004178 unsigned bound;
Eric Anholt673a3942008-07-30 12:06:12 -07004179 int ret;
4180
Ben Widawsky6e7186a2014-05-06 22:21:36 -07004181 if (WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base))
4182 return -ENODEV;
4183
Daniel Vetterbf3d1492014-02-14 14:01:12 +01004184 if (WARN_ON(flags & (PIN_GLOBAL | PIN_MAPPABLE) && !i915_is_ggtt(vm)))
Daniel Vetter1ec9e262014-02-14 14:01:11 +01004185 return -EINVAL;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004186
Chris Wilsonc826c442014-10-31 13:53:53 +00004187 if (WARN_ON((flags & (PIN_MAPPABLE | PIN_GLOBAL)) == PIN_MAPPABLE))
4188 return -EINVAL;
4189
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00004190 vma = i915_gem_obj_to_vma_view(obj, vm, view);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004191 if (vma) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004192 if (WARN_ON(vma->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT))
4193 return -EBUSY;
4194
Chris Wilsond23db882014-05-23 08:48:08 +02004195 if (i915_vma_misplaced(vma, alignment, flags)) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004196 WARN(vma->pin_count,
Chris Wilsonae7d49d2010-08-04 12:37:41 +01004197 "bo is already pinned with incorrect alignment:"
Ben Widawskyf343c5f2013-07-05 14:41:04 -07004198 " offset=%lx, req.alignment=%x, req.map_and_fenceable=%d,"
Daniel Vetter75e9e912010-11-04 17:11:09 +01004199 " obj->map_and_fenceable=%d\n",
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00004200 i915_gem_obj_offset_view(obj, vm, view->type),
4201 alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02004202 !!(flags & PIN_MAPPABLE),
Chris Wilson05394f32010-11-08 19:18:58 +00004203 obj->map_and_fenceable);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004204 ret = i915_vma_unbind(vma);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004205 if (ret)
4206 return ret;
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004207
4208 vma = NULL;
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004209 }
4210 }
4211
Chris Wilsonef79e172014-10-31 13:53:52 +00004212 bound = vma ? vma->bound : 0;
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004213 if (vma == NULL || !drm_mm_node_allocated(&vma->node)) {
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00004214 vma = i915_gem_object_bind_to_vm(obj, vm, alignment,
4215 flags, view);
Daniel Vetter262de142014-02-14 14:01:20 +01004216 if (IS_ERR(vma))
4217 return PTR_ERR(vma);
Chris Wilson22c344e2009-02-11 14:26:45 +00004218 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05004219
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00004220 if (flags & PIN_GLOBAL && !(vma->bound & GLOBAL_BIND)) {
4221 ret = i915_vma_bind(vma, obj->cache_level, GLOBAL_BIND);
4222 if (ret)
4223 return ret;
4224 }
Daniel Vetter74898d72012-02-15 23:50:22 +01004225
Chris Wilsonef79e172014-10-31 13:53:52 +00004226 if ((bound ^ vma->bound) & GLOBAL_BIND) {
4227 bool mappable, fenceable;
4228 u32 fence_size, fence_alignment;
4229
4230 fence_size = i915_gem_get_gtt_size(obj->base.dev,
4231 obj->base.size,
4232 obj->tiling_mode);
4233 fence_alignment = i915_gem_get_gtt_alignment(obj->base.dev,
4234 obj->base.size,
4235 obj->tiling_mode,
4236 true);
4237
4238 fenceable = (vma->node.size == fence_size &&
4239 (vma->node.start & (fence_alignment - 1)) == 0);
4240
Chris Wilsone8dec1d2015-02-27 13:58:43 +00004241 mappable = (vma->node.start + fence_size <=
Chris Wilsonef79e172014-10-31 13:53:52 +00004242 dev_priv->gtt.mappable_end);
4243
4244 obj->map_and_fenceable = mappable && fenceable;
4245 }
4246
4247 WARN_ON(flags & PIN_MAPPABLE && !obj->map_and_fenceable);
4248
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004249 vma->pin_count++;
Daniel Vetter1ec9e262014-02-14 14:01:11 +01004250 if (flags & PIN_MAPPABLE)
4251 obj->pin_mappable |= true;
Eric Anholt673a3942008-07-30 12:06:12 -07004252
4253 return 0;
4254}
4255
4256void
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004257i915_gem_object_ggtt_unpin(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07004258{
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004259 struct i915_vma *vma = i915_gem_obj_to_ggtt(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004260
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004261 BUG_ON(!vma);
4262 BUG_ON(vma->pin_count == 0);
4263 BUG_ON(!i915_gem_obj_ggtt_bound(obj));
4264
4265 if (--vma->pin_count == 0)
Chris Wilson6299f992010-11-24 12:23:44 +00004266 obj->pin_mappable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07004267}
4268
Daniel Vetterd8ffa602014-05-13 12:11:26 +02004269bool
4270i915_gem_object_pin_fence(struct drm_i915_gem_object *obj)
4271{
4272 if (obj->fence_reg != I915_FENCE_REG_NONE) {
4273 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
4274 struct i915_vma *ggtt_vma = i915_gem_obj_to_ggtt(obj);
4275
4276 WARN_ON(!ggtt_vma ||
4277 dev_priv->fence_regs[obj->fence_reg].pin_count >
4278 ggtt_vma->pin_count);
4279 dev_priv->fence_regs[obj->fence_reg].pin_count++;
4280 return true;
4281 } else
4282 return false;
4283}
4284
4285void
4286i915_gem_object_unpin_fence(struct drm_i915_gem_object *obj)
4287{
4288 if (obj->fence_reg != I915_FENCE_REG_NONE) {
4289 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
4290 WARN_ON(dev_priv->fence_regs[obj->fence_reg].pin_count <= 0);
4291 dev_priv->fence_regs[obj->fence_reg].pin_count--;
4292 }
4293}
4294
Eric Anholt673a3942008-07-30 12:06:12 -07004295int
Eric Anholt673a3942008-07-30 12:06:12 -07004296i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00004297 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004298{
4299 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004300 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01004301 int ret;
4302
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004303 ret = i915_mutex_lock_interruptible(dev);
4304 if (ret)
4305 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004306
Chris Wilson05394f32010-11-08 19:18:58 +00004307 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004308 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004309 ret = -ENOENT;
4310 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07004311 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08004312
Chris Wilson0be555b2010-08-04 15:36:30 +01004313 /* Count all active objects as busy, even if they are currently not used
4314 * by the gpu. Users of this interface expect objects to eventually
4315 * become non-busy without any further actions, therefore emit any
4316 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08004317 */
Daniel Vetter30dfebf2012-06-01 15:21:23 +02004318 ret = i915_gem_object_flush_active(obj);
4319
Chris Wilson05394f32010-11-08 19:18:58 +00004320 args->busy = obj->active;
John Harrison41c52412014-11-24 18:49:43 +00004321 if (obj->last_read_req) {
4322 struct intel_engine_cs *ring;
Chris Wilsone9808ed2012-07-04 12:25:08 +01004323 BUILD_BUG_ON(I915_NUM_RINGS > 16);
John Harrison41c52412014-11-24 18:49:43 +00004324 ring = i915_gem_request_get_ring(obj->last_read_req);
4325 args->busy |= intel_ring_flag(ring) << 16;
Chris Wilsone9808ed2012-07-04 12:25:08 +01004326 }
Eric Anholt673a3942008-07-30 12:06:12 -07004327
Chris Wilson05394f32010-11-08 19:18:58 +00004328 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004329unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07004330 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004331 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004332}
4333
4334int
4335i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
4336 struct drm_file *file_priv)
4337{
Akshay Joshi0206e352011-08-16 15:34:10 -04004338 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07004339}
4340
Chris Wilson3ef94da2009-09-14 16:50:29 +01004341int
4342i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
4343 struct drm_file *file_priv)
4344{
Daniel Vetter656bfa32014-11-20 09:26:30 +01004345 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004346 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004347 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01004348 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004349
4350 switch (args->madv) {
4351 case I915_MADV_DONTNEED:
4352 case I915_MADV_WILLNEED:
4353 break;
4354 default:
4355 return -EINVAL;
4356 }
4357
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004358 ret = i915_mutex_lock_interruptible(dev);
4359 if (ret)
4360 return ret;
4361
Chris Wilson05394f32010-11-08 19:18:58 +00004362 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004363 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004364 ret = -ENOENT;
4365 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004366 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01004367
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004368 if (i915_gem_obj_is_pinned(obj)) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004369 ret = -EINVAL;
4370 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004371 }
4372
Daniel Vetter656bfa32014-11-20 09:26:30 +01004373 if (obj->pages &&
4374 obj->tiling_mode != I915_TILING_NONE &&
4375 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES) {
4376 if (obj->madv == I915_MADV_WILLNEED)
4377 i915_gem_object_unpin_pages(obj);
4378 if (args->madv == I915_MADV_WILLNEED)
4379 i915_gem_object_pin_pages(obj);
4380 }
4381
Chris Wilson05394f32010-11-08 19:18:58 +00004382 if (obj->madv != __I915_MADV_PURGED)
4383 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004384
Chris Wilson6c085a72012-08-20 11:40:46 +02004385 /* if the object is no longer attached, discard its backing storage */
4386 if (i915_gem_object_is_purgeable(obj) && obj->pages == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01004387 i915_gem_object_truncate(obj);
4388
Chris Wilson05394f32010-11-08 19:18:58 +00004389 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01004390
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004391out:
Chris Wilson05394f32010-11-08 19:18:58 +00004392 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004393unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01004394 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004395 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004396}
4397
Chris Wilson37e680a2012-06-07 15:38:42 +01004398void i915_gem_object_init(struct drm_i915_gem_object *obj,
4399 const struct drm_i915_gem_object_ops *ops)
Chris Wilson0327d6b2012-08-11 15:41:06 +01004400{
Ben Widawsky35c20a62013-05-31 11:28:48 -07004401 INIT_LIST_HEAD(&obj->global_list);
Chris Wilson0327d6b2012-08-11 15:41:06 +01004402 INIT_LIST_HEAD(&obj->ring_list);
Ben Widawskyb25cb2f2013-08-14 11:38:33 +02004403 INIT_LIST_HEAD(&obj->obj_exec_link);
Ben Widawsky2f633152013-07-17 12:19:03 -07004404 INIT_LIST_HEAD(&obj->vma_list);
Brad Volkin493018d2014-12-11 12:13:08 -08004405 INIT_LIST_HEAD(&obj->batch_pool_list);
Chris Wilson0327d6b2012-08-11 15:41:06 +01004406
Chris Wilson37e680a2012-06-07 15:38:42 +01004407 obj->ops = ops;
4408
Chris Wilson0327d6b2012-08-11 15:41:06 +01004409 obj->fence_reg = I915_FENCE_REG_NONE;
4410 obj->madv = I915_MADV_WILLNEED;
Chris Wilson0327d6b2012-08-11 15:41:06 +01004411
4412 i915_gem_info_add_obj(obj->base.dev->dev_private, obj->base.size);
4413}
4414
Chris Wilson37e680a2012-06-07 15:38:42 +01004415static const struct drm_i915_gem_object_ops i915_gem_object_ops = {
4416 .get_pages = i915_gem_object_get_pages_gtt,
4417 .put_pages = i915_gem_object_put_pages_gtt,
4418};
4419
Chris Wilson05394f32010-11-08 19:18:58 +00004420struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
4421 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00004422{
Daniel Vetterc397b902010-04-09 19:05:07 +00004423 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07004424 struct address_space *mapping;
Daniel Vetter1a240d42012-11-29 22:18:51 +01004425 gfp_t mask;
Daniel Vetterc397b902010-04-09 19:05:07 +00004426
Chris Wilson42dcedd2012-11-15 11:32:30 +00004427 obj = i915_gem_object_alloc(dev);
Daniel Vetterc397b902010-04-09 19:05:07 +00004428 if (obj == NULL)
4429 return NULL;
4430
4431 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
Chris Wilson42dcedd2012-11-15 11:32:30 +00004432 i915_gem_object_free(obj);
Daniel Vetterc397b902010-04-09 19:05:07 +00004433 return NULL;
4434 }
4435
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004436 mask = GFP_HIGHUSER | __GFP_RECLAIMABLE;
4437 if (IS_CRESTLINE(dev) || IS_BROADWATER(dev)) {
4438 /* 965gm cannot relocate objects above 4GiB. */
4439 mask &= ~__GFP_HIGHMEM;
4440 mask |= __GFP_DMA32;
4441 }
4442
Al Viro496ad9a2013-01-23 17:07:38 -05004443 mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004444 mapping_set_gfp_mask(mapping, mask);
Hugh Dickins5949eac2011-06-27 16:18:18 -07004445
Chris Wilson37e680a2012-06-07 15:38:42 +01004446 i915_gem_object_init(obj, &i915_gem_object_ops);
Chris Wilson73aa8082010-09-30 11:46:12 +01004447
Daniel Vetterc397b902010-04-09 19:05:07 +00004448 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
4449 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4450
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02004451 if (HAS_LLC(dev)) {
4452 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07004453 * cache) for about a 10% performance improvement
4454 * compared to uncached. Graphics requests other than
4455 * display scanout are coherent with the CPU in
4456 * accessing this cache. This means in this mode we
4457 * don't need to clflush on the CPU side, and on the
4458 * GPU side we only need to flush internal caches to
4459 * get data visible to the CPU.
4460 *
4461 * However, we maintain the display planes as UC, and so
4462 * need to rebind when first used as such.
4463 */
4464 obj->cache_level = I915_CACHE_LLC;
4465 } else
4466 obj->cache_level = I915_CACHE_NONE;
4467
Daniel Vetterd861e332013-07-24 23:25:03 +02004468 trace_i915_gem_object_create(obj);
4469
Chris Wilson05394f32010-11-08 19:18:58 +00004470 return obj;
Daniel Vetterac52bc52010-04-09 19:05:06 +00004471}
4472
Chris Wilson340fbd82014-05-22 09:16:52 +01004473static bool discard_backing_storage(struct drm_i915_gem_object *obj)
4474{
4475 /* If we are the last user of the backing storage (be it shmemfs
4476 * pages or stolen etc), we know that the pages are going to be
4477 * immediately released. In this case, we can then skip copying
4478 * back the contents from the GPU.
4479 */
4480
4481 if (obj->madv != I915_MADV_WILLNEED)
4482 return false;
4483
4484 if (obj->base.filp == NULL)
4485 return true;
4486
4487 /* At first glance, this looks racy, but then again so would be
4488 * userspace racing mmap against close. However, the first external
4489 * reference to the filp can only be obtained through the
4490 * i915_gem_mmap_ioctl() which safeguards us against the user
4491 * acquiring such a reference whilst we are in the middle of
4492 * freeing the object.
4493 */
4494 return atomic_long_read(&obj->base.filp->f_count) == 1;
4495}
4496
Chris Wilson1488fc02012-04-24 15:47:31 +01004497void i915_gem_free_object(struct drm_gem_object *gem_obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01004498{
Chris Wilson1488fc02012-04-24 15:47:31 +01004499 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00004500 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004501 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004502 struct i915_vma *vma, *next;
Chris Wilsonbe726152010-07-23 23:18:50 +01004503
Paulo Zanonif65c9162013-11-27 18:20:34 -02004504 intel_runtime_pm_get(dev_priv);
4505
Chris Wilson26e12f892011-03-20 11:20:19 +00004506 trace_i915_gem_object_destroy(obj);
4507
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004508 list_for_each_entry_safe(vma, next, &obj->vma_list, vma_link) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004509 int ret;
4510
4511 vma->pin_count = 0;
4512 ret = i915_vma_unbind(vma);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004513 if (WARN_ON(ret == -ERESTARTSYS)) {
4514 bool was_interruptible;
Chris Wilson1488fc02012-04-24 15:47:31 +01004515
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004516 was_interruptible = dev_priv->mm.interruptible;
4517 dev_priv->mm.interruptible = false;
Chris Wilson1488fc02012-04-24 15:47:31 +01004518
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004519 WARN_ON(i915_vma_unbind(vma));
Chris Wilson1488fc02012-04-24 15:47:31 +01004520
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004521 dev_priv->mm.interruptible = was_interruptible;
4522 }
Chris Wilson1488fc02012-04-24 15:47:31 +01004523 }
4524
Ben Widawsky1d64ae72013-05-31 14:46:20 -07004525 /* Stolen objects don't hold a ref, but do hold pin count. Fix that up
4526 * before progressing. */
4527 if (obj->stolen)
4528 i915_gem_object_unpin_pages(obj);
4529
Daniel Vettera071fa02014-06-18 23:28:09 +02004530 WARN_ON(obj->frontbuffer_bits);
4531
Daniel Vetter656bfa32014-11-20 09:26:30 +01004532 if (obj->pages && obj->madv == I915_MADV_WILLNEED &&
4533 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES &&
4534 obj->tiling_mode != I915_TILING_NONE)
4535 i915_gem_object_unpin_pages(obj);
4536
Ben Widawsky401c29f2013-05-31 11:28:47 -07004537 if (WARN_ON(obj->pages_pin_count))
4538 obj->pages_pin_count = 0;
Chris Wilson340fbd82014-05-22 09:16:52 +01004539 if (discard_backing_storage(obj))
Chris Wilson55372522014-03-25 13:23:06 +00004540 obj->madv = I915_MADV_DONTNEED;
Chris Wilson37e680a2012-06-07 15:38:42 +01004541 i915_gem_object_put_pages(obj);
Chris Wilsond8cb5082012-08-11 15:41:03 +01004542 i915_gem_object_free_mmap_offset(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01004543
Chris Wilson9da3da62012-06-01 15:20:22 +01004544 BUG_ON(obj->pages);
4545
Chris Wilson2f745ad2012-09-04 21:02:58 +01004546 if (obj->base.import_attach)
4547 drm_prime_gem_destroy(&obj->base, NULL);
Chris Wilsonbe726152010-07-23 23:18:50 +01004548
Chris Wilson5cc9ed42014-05-16 14:22:37 +01004549 if (obj->ops->release)
4550 obj->ops->release(obj);
4551
Chris Wilson05394f32010-11-08 19:18:58 +00004552 drm_gem_object_release(&obj->base);
4553 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01004554
Chris Wilson05394f32010-11-08 19:18:58 +00004555 kfree(obj->bit_17);
Chris Wilson42dcedd2012-11-15 11:32:30 +00004556 i915_gem_object_free(obj);
Paulo Zanonif65c9162013-11-27 18:20:34 -02004557
4558 intel_runtime_pm_put(dev_priv);
Chris Wilsonbe726152010-07-23 23:18:50 +01004559}
4560
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00004561struct i915_vma *i915_gem_obj_to_vma_view(struct drm_i915_gem_object *obj,
4562 struct i915_address_space *vm,
4563 const struct i915_ggtt_view *view)
Ben Widawsky2f633152013-07-17 12:19:03 -07004564{
Daniel Vettere656a6c2013-08-14 14:14:04 +02004565 struct i915_vma *vma;
4566 list_for_each_entry(vma, &obj->vma_list, vma_link)
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00004567 if (vma->vm == vm && vma->ggtt_view.type == view->type)
Daniel Vettere656a6c2013-08-14 14:14:04 +02004568 return vma;
4569
4570 return NULL;
4571}
4572
Ben Widawsky2f633152013-07-17 12:19:03 -07004573void i915_gem_vma_destroy(struct i915_vma *vma)
4574{
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004575 struct i915_address_space *vm = NULL;
Ben Widawsky2f633152013-07-17 12:19:03 -07004576 WARN_ON(vma->node.allocated);
Chris Wilsonaaa05662013-08-20 12:56:40 +01004577
4578 /* Keep the vma as a placeholder in the execbuffer reservation lists */
4579 if (!list_empty(&vma->exec_list))
4580 return;
4581
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004582 vm = vma->vm;
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004583
Daniel Vetter841cd772014-08-06 15:04:48 +02004584 if (!i915_is_ggtt(vm))
4585 i915_ppgtt_put(i915_vm_to_ppgtt(vm));
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004586
Ben Widawsky8b9c2b92013-07-31 17:00:16 -07004587 list_del(&vma->vma_link);
Daniel Vetterb93dab62013-08-26 11:23:47 +02004588
Ben Widawsky2f633152013-07-17 12:19:03 -07004589 kfree(vma);
4590}
4591
Chris Wilsone3efda42014-04-09 09:19:41 +01004592static void
4593i915_gem_stop_ringbuffers(struct drm_device *dev)
4594{
4595 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004596 struct intel_engine_cs *ring;
Chris Wilsone3efda42014-04-09 09:19:41 +01004597 int i;
4598
4599 for_each_ring(ring, dev_priv, i)
Oscar Mateoa83014d2014-07-24 17:04:21 +01004600 dev_priv->gt.stop_ring(ring);
Chris Wilsone3efda42014-04-09 09:19:41 +01004601}
4602
Jesse Barnes5669fca2009-02-17 15:13:31 -08004603int
Chris Wilson45c5f202013-10-16 11:50:01 +01004604i915_gem_suspend(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07004605{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004606 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson45c5f202013-10-16 11:50:01 +01004607 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07004608
Chris Wilson45c5f202013-10-16 11:50:01 +01004609 mutex_lock(&dev->struct_mutex);
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004610 ret = i915_gpu_idle(dev);
Chris Wilsonf7403342013-09-13 23:57:04 +01004611 if (ret)
Chris Wilson45c5f202013-10-16 11:50:01 +01004612 goto err;
Chris Wilsonf7403342013-09-13 23:57:04 +01004613
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004614 i915_gem_retire_requests(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07004615
Chris Wilsone3efda42014-04-09 09:19:41 +01004616 i915_gem_stop_ringbuffers(dev);
Chris Wilson45c5f202013-10-16 11:50:01 +01004617 mutex_unlock(&dev->struct_mutex);
4618
Chris Wilson737b1502015-01-26 18:03:03 +02004619 cancel_delayed_work_sync(&dev_priv->gpu_error.hangcheck_work);
Chris Wilson29105cc2010-01-07 10:39:13 +00004620 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
Deepak S274fa1c2014-08-05 07:51:20 -07004621 flush_delayed_work(&dev_priv->mm.idle_work);
Chris Wilson29105cc2010-01-07 10:39:13 +00004622
Chris Wilsonbdcf1202014-11-25 11:56:33 +00004623 /* Assert that we sucessfully flushed all the work and
4624 * reset the GPU back to its idle, low power state.
4625 */
4626 WARN_ON(dev_priv->mm.busy);
4627
Eric Anholt673a3942008-07-30 12:06:12 -07004628 return 0;
Chris Wilson45c5f202013-10-16 11:50:01 +01004629
4630err:
4631 mutex_unlock(&dev->struct_mutex);
4632 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004633}
4634
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004635int i915_gem_l3_remap(struct intel_engine_cs *ring, int slice)
Ben Widawskyb9524a12012-05-25 16:56:24 -07004636{
Ben Widawskyc3787e22013-09-17 21:12:44 -07004637 struct drm_device *dev = ring->dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004638 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07004639 u32 reg_base = GEN7_L3LOG_BASE + (slice * 0x200);
4640 u32 *remap_info = dev_priv->l3_parity.remap_info[slice];
Ben Widawskyc3787e22013-09-17 21:12:44 -07004641 int i, ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004642
Ben Widawsky040d2ba2013-09-19 11:01:40 -07004643 if (!HAS_L3_DPF(dev) || !remap_info)
Ben Widawskyc3787e22013-09-17 21:12:44 -07004644 return 0;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004645
Ben Widawskyc3787e22013-09-17 21:12:44 -07004646 ret = intel_ring_begin(ring, GEN7_L3LOG_SIZE / 4 * 3);
4647 if (ret)
4648 return ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004649
Ben Widawskyc3787e22013-09-17 21:12:44 -07004650 /*
4651 * Note: We do not worry about the concurrent register cacheline hang
4652 * here because no other code should access these registers other than
4653 * at initialization time.
4654 */
Ben Widawskyb9524a12012-05-25 16:56:24 -07004655 for (i = 0; i < GEN7_L3LOG_SIZE; i += 4) {
Ben Widawskyc3787e22013-09-17 21:12:44 -07004656 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
4657 intel_ring_emit(ring, reg_base + i);
4658 intel_ring_emit(ring, remap_info[i/4]);
Ben Widawskyb9524a12012-05-25 16:56:24 -07004659 }
4660
Ben Widawskyc3787e22013-09-17 21:12:44 -07004661 intel_ring_advance(ring);
Ben Widawskyb9524a12012-05-25 16:56:24 -07004662
Ben Widawskyc3787e22013-09-17 21:12:44 -07004663 return ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004664}
4665
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004666void i915_gem_init_swizzling(struct drm_device *dev)
4667{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004668 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004669
Daniel Vetter11782b02012-01-31 16:47:55 +01004670 if (INTEL_INFO(dev)->gen < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004671 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
4672 return;
4673
4674 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
4675 DISP_TILE_SURFACE_SWIZZLING);
4676
Daniel Vetter11782b02012-01-31 16:47:55 +01004677 if (IS_GEN5(dev))
4678 return;
4679
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004680 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
4681 if (IS_GEN6(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004682 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_SNB));
Ben Widawsky8782e262012-12-18 10:31:23 -08004683 else if (IS_GEN7(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004684 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_IVB));
Ben Widawsky31a53362013-11-02 21:07:04 -07004685 else if (IS_GEN8(dev))
4686 I915_WRITE(GAMTARBMODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_BDW));
Ben Widawsky8782e262012-12-18 10:31:23 -08004687 else
4688 BUG();
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004689}
Daniel Vettere21af882012-02-09 20:53:27 +01004690
Chris Wilson67b1b572012-07-05 23:49:40 +01004691static bool
4692intel_enable_blt(struct drm_device *dev)
4693{
4694 if (!HAS_BLT(dev))
4695 return false;
4696
4697 /* The blitter was dysfunctional on early prototypes */
4698 if (IS_GEN6(dev) && dev->pdev->revision < 8) {
4699 DRM_INFO("BLT not supported on this pre-production hardware;"
4700 " graphics performance will be degraded.\n");
4701 return false;
4702 }
4703
4704 return true;
4705}
4706
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004707static void init_unused_ring(struct drm_device *dev, u32 base)
4708{
4709 struct drm_i915_private *dev_priv = dev->dev_private;
4710
4711 I915_WRITE(RING_CTL(base), 0);
4712 I915_WRITE(RING_HEAD(base), 0);
4713 I915_WRITE(RING_TAIL(base), 0);
4714 I915_WRITE(RING_START(base), 0);
4715}
4716
4717static void init_unused_rings(struct drm_device *dev)
4718{
4719 if (IS_I830(dev)) {
4720 init_unused_ring(dev, PRB1_BASE);
4721 init_unused_ring(dev, SRB0_BASE);
4722 init_unused_ring(dev, SRB1_BASE);
4723 init_unused_ring(dev, SRB2_BASE);
4724 init_unused_ring(dev, SRB3_BASE);
4725 } else if (IS_GEN2(dev)) {
4726 init_unused_ring(dev, SRB0_BASE);
4727 init_unused_ring(dev, SRB1_BASE);
4728 } else if (IS_GEN3(dev)) {
4729 init_unused_ring(dev, PRB1_BASE);
4730 init_unused_ring(dev, PRB2_BASE);
4731 }
4732}
4733
Oscar Mateoa83014d2014-07-24 17:04:21 +01004734int i915_gem_init_rings(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004735{
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004736 struct drm_i915_private *dev_priv = dev->dev_private;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004737 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004738
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004739 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004740 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00004741 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004742
4743 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004744 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004745 if (ret)
4746 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08004747 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01004748
Chris Wilson67b1b572012-07-05 23:49:40 +01004749 if (intel_enable_blt(dev)) {
Chris Wilson549f7362010-10-19 11:19:32 +01004750 ret = intel_init_blt_ring_buffer(dev);
4751 if (ret)
4752 goto cleanup_bsd_ring;
4753 }
4754
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004755 if (HAS_VEBOX(dev)) {
4756 ret = intel_init_vebox_ring_buffer(dev);
4757 if (ret)
4758 goto cleanup_blt_ring;
4759 }
4760
Zhao Yakui845f74a2014-04-17 10:37:37 +08004761 if (HAS_BSD2(dev)) {
4762 ret = intel_init_bsd2_ring_buffer(dev);
4763 if (ret)
4764 goto cleanup_vebox_ring;
4765 }
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004766
Mika Kuoppala99433932013-01-22 14:12:17 +02004767 ret = i915_gem_set_seqno(dev, ((u32)~0 - 0x1000));
4768 if (ret)
Zhao Yakui845f74a2014-04-17 10:37:37 +08004769 goto cleanup_bsd2_ring;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004770
4771 return 0;
4772
Zhao Yakui845f74a2014-04-17 10:37:37 +08004773cleanup_bsd2_ring:
4774 intel_cleanup_ring_buffer(&dev_priv->ring[VCS2]);
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004775cleanup_vebox_ring:
4776 intel_cleanup_ring_buffer(&dev_priv->ring[VECS]);
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004777cleanup_blt_ring:
4778 intel_cleanup_ring_buffer(&dev_priv->ring[BCS]);
4779cleanup_bsd_ring:
4780 intel_cleanup_ring_buffer(&dev_priv->ring[VCS]);
4781cleanup_render_ring:
4782 intel_cleanup_ring_buffer(&dev_priv->ring[RCS]);
4783
4784 return ret;
4785}
4786
4787int
4788i915_gem_init_hw(struct drm_device *dev)
4789{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004790 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter35a57ff2014-11-20 00:33:07 +01004791 struct intel_engine_cs *ring;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07004792 int ret, i;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004793
4794 if (INTEL_INFO(dev)->gen < 6 && !intel_enable_gtt())
4795 return -EIO;
4796
Ben Widawsky59124502013-07-04 11:02:05 -07004797 if (dev_priv->ellc_size)
Ben Widawsky05e21cc2013-07-04 11:02:04 -07004798 I915_WRITE(HSW_IDICR, I915_READ(HSW_IDICR) | IDIHASHMSK(0xf));
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004799
Ville Syrjälä0bf21342013-11-29 14:56:12 +02004800 if (IS_HASWELL(dev))
4801 I915_WRITE(MI_PREDICATE_RESULT_2, IS_HSW_GT3(dev) ?
4802 LOWER_SLICE_ENABLED : LOWER_SLICE_DISABLED);
Rodrigo Vivi94353732013-08-28 16:45:46 -03004803
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004804 if (HAS_PCH_NOP(dev)) {
Daniel Vetter6ba844b2014-01-22 23:39:30 +01004805 if (IS_IVYBRIDGE(dev)) {
4806 u32 temp = I915_READ(GEN7_MSG_CTL);
4807 temp &= ~(WAIT_FOR_PCH_FLR_ACK | WAIT_FOR_PCH_RESET_ACK);
4808 I915_WRITE(GEN7_MSG_CTL, temp);
4809 } else if (INTEL_INFO(dev)->gen >= 7) {
4810 u32 temp = I915_READ(HSW_NDE_RSTWRN_OPT);
4811 temp &= ~RESET_PCH_HANDSHAKE_ENABLE;
4812 I915_WRITE(HSW_NDE_RSTWRN_OPT, temp);
4813 }
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004814 }
4815
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004816 i915_gem_init_swizzling(dev);
4817
Daniel Vetterd5abdfd2014-11-20 09:45:19 +01004818 /*
4819 * At least 830 can leave some of the unused rings
4820 * "active" (ie. head != tail) after resume which
4821 * will prevent c3 entry. Makes sure all unused rings
4822 * are totally idle.
4823 */
4824 init_unused_rings(dev);
4825
Daniel Vetter35a57ff2014-11-20 00:33:07 +01004826 for_each_ring(ring, dev_priv, i) {
4827 ret = ring->init_hw(ring);
4828 if (ret)
4829 return ret;
4830 }
Mika Kuoppala99433932013-01-22 14:12:17 +02004831
Ben Widawskyc3787e22013-09-17 21:12:44 -07004832 for (i = 0; i < NUM_L3_SLICES(dev); i++)
4833 i915_gem_l3_remap(&dev_priv->ring[RCS], i);
4834
David Woodhousef48a0162015-01-20 17:21:42 +00004835 ret = i915_ppgtt_init_hw(dev);
4836 if (ret && ret != -EIO) {
4837 DRM_ERROR("PPGTT enable failed %d\n", ret);
4838 i915_gem_cleanup_ringbuffer(dev);
4839 }
4840
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004841 ret = i915_gem_context_enable(dev_priv);
Chris Wilson60990322014-04-09 09:19:42 +01004842 if (ret && ret != -EIO) {
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004843 DRM_ERROR("Context enable failed %d\n", ret);
Chris Wilson60990322014-04-09 09:19:42 +01004844 i915_gem_cleanup_ringbuffer(dev);
Daniel Vetter82460d92014-08-06 20:19:53 +02004845
4846 return ret;
4847 }
4848
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004849 return ret;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004850}
4851
Chris Wilson1070a422012-04-24 15:47:41 +01004852int i915_gem_init(struct drm_device *dev)
4853{
4854 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson1070a422012-04-24 15:47:41 +01004855 int ret;
4856
Oscar Mateo127f1002014-07-24 17:04:11 +01004857 i915.enable_execlists = intel_sanitize_enable_execlists(dev,
4858 i915.enable_execlists);
4859
Chris Wilson1070a422012-04-24 15:47:41 +01004860 mutex_lock(&dev->struct_mutex);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004861
4862 if (IS_VALLEYVIEW(dev)) {
4863 /* VLVA0 (potential hack), BIOS isn't actually waking us */
Imre Deak981a5ae2014-04-14 20:24:22 +03004864 I915_WRITE(VLV_GTLC_WAKE_CTRL, VLV_GTLC_ALLOWWAKEREQ);
4865 if (wait_for((I915_READ(VLV_GTLC_PW_STATUS) &
4866 VLV_GTLC_ALLOWWAKEACK), 10))
Jesse Barnesd62b4892013-03-08 10:45:53 -08004867 DRM_DEBUG_DRIVER("allow wake ack timed out\n");
4868 }
4869
Oscar Mateoa83014d2014-07-24 17:04:21 +01004870 if (!i915.enable_execlists) {
4871 dev_priv->gt.do_execbuf = i915_gem_ringbuffer_submission;
4872 dev_priv->gt.init_rings = i915_gem_init_rings;
4873 dev_priv->gt.cleanup_ring = intel_cleanup_ring_buffer;
4874 dev_priv->gt.stop_ring = intel_stop_ring_buffer;
Oscar Mateo454afeb2014-07-24 17:04:22 +01004875 } else {
4876 dev_priv->gt.do_execbuf = intel_execlists_submission;
4877 dev_priv->gt.init_rings = intel_logical_rings_init;
4878 dev_priv->gt.cleanup_ring = intel_logical_ring_cleanup;
4879 dev_priv->gt.stop_ring = intel_logical_ring_stop;
Oscar Mateoa83014d2014-07-24 17:04:21 +01004880 }
4881
Daniel Vetter6c5566a2014-08-06 15:04:50 +02004882 ret = i915_gem_init_userptr(dev);
Jani Nikula7bcc3772014-12-05 14:17:42 +02004883 if (ret)
4884 goto out_unlock;
Daniel Vetter6c5566a2014-08-06 15:04:50 +02004885
Ben Widawskyd7e50082012-12-18 10:31:25 -08004886 i915_gem_init_global_gtt(dev);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004887
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004888 ret = i915_gem_context_init(dev);
Jani Nikula7bcc3772014-12-05 14:17:42 +02004889 if (ret)
4890 goto out_unlock;
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004891
Daniel Vetter35a57ff2014-11-20 00:33:07 +01004892 ret = dev_priv->gt.init_rings(dev);
4893 if (ret)
Jani Nikula7bcc3772014-12-05 14:17:42 +02004894 goto out_unlock;
Daniel Vetter53ca26c2012-04-26 23:28:03 +02004895
4896 ret = i915_gem_init_hw(dev);
Chris Wilson60990322014-04-09 09:19:42 +01004897 if (ret == -EIO) {
4898 /* Allow ring initialisation to fail by marking the GPU as
4899 * wedged. But we only want to do this where the GPU is angry,
4900 * for all other failure, such as an allocation failure, bail.
4901 */
4902 DRM_ERROR("Failed to initialize GPU, declaring it wedged\n");
4903 atomic_set_mask(I915_WEDGED, &dev_priv->gpu_error.reset_counter);
4904 ret = 0;
Chris Wilson1070a422012-04-24 15:47:41 +01004905 }
Jani Nikula7bcc3772014-12-05 14:17:42 +02004906
4907out_unlock:
Chris Wilson60990322014-04-09 09:19:42 +01004908 mutex_unlock(&dev->struct_mutex);
Chris Wilson1070a422012-04-24 15:47:41 +01004909
Chris Wilson60990322014-04-09 09:19:42 +01004910 return ret;
Chris Wilson1070a422012-04-24 15:47:41 +01004911}
4912
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004913void
4914i915_gem_cleanup_ringbuffer(struct drm_device *dev)
4915{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004916 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004917 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00004918 int i;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004919
Chris Wilsonb4519512012-05-11 14:29:30 +01004920 for_each_ring(ring, dev_priv, i)
Oscar Mateoa83014d2014-07-24 17:04:21 +01004921 dev_priv->gt.cleanup_ring(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004922}
4923
Chris Wilson64193402010-10-24 12:38:05 +01004924static void
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004925init_ring_lists(struct intel_engine_cs *ring)
Chris Wilson64193402010-10-24 12:38:05 +01004926{
4927 INIT_LIST_HEAD(&ring->active_list);
4928 INIT_LIST_HEAD(&ring->request_list);
Chris Wilson64193402010-10-24 12:38:05 +01004929}
4930
Ben Widawsky7e0d96b2013-12-06 14:11:26 -08004931void i915_init_vm(struct drm_i915_private *dev_priv,
4932 struct i915_address_space *vm)
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004933{
Ben Widawsky7e0d96b2013-12-06 14:11:26 -08004934 if (!i915_is_ggtt(vm))
4935 drm_mm_init(&vm->mm, vm->start, vm->total);
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004936 vm->dev = dev_priv->dev;
4937 INIT_LIST_HEAD(&vm->active_list);
4938 INIT_LIST_HEAD(&vm->inactive_list);
4939 INIT_LIST_HEAD(&vm->global_link);
Chris Wilsonf72d21e2014-01-09 22:57:22 +00004940 list_add_tail(&vm->global_link, &dev_priv->vm_list);
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004941}
4942
Eric Anholt673a3942008-07-30 12:06:12 -07004943void
4944i915_gem_load(struct drm_device *dev)
4945{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004946 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson42dcedd2012-11-15 11:32:30 +00004947 int i;
4948
4949 dev_priv->slab =
4950 kmem_cache_create("i915_gem_object",
4951 sizeof(struct drm_i915_gem_object), 0,
4952 SLAB_HWCACHE_ALIGN,
4953 NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07004954
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004955 INIT_LIST_HEAD(&dev_priv->vm_list);
4956 i915_init_vm(dev_priv, &dev_priv->gtt.base);
4957
Ben Widawskya33afea2013-09-17 21:12:45 -07004958 INIT_LIST_HEAD(&dev_priv->context_list);
Chris Wilson6c085a72012-08-20 11:40:46 +02004959 INIT_LIST_HEAD(&dev_priv->mm.unbound_list);
4960 INIT_LIST_HEAD(&dev_priv->mm.bound_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07004961 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00004962 for (i = 0; i < I915_NUM_RINGS; i++)
4963 init_ring_lists(&dev_priv->ring[i]);
Daniel Vetter4b9de732011-10-09 21:52:02 +02004964 for (i = 0; i < I915_MAX_NUM_FENCES; i++)
Daniel Vetter007cc8a2010-04-28 11:02:31 +02004965 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07004966 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
4967 i915_gem_retire_work_handler);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004968 INIT_DELAYED_WORK(&dev_priv->mm.idle_work,
4969 i915_gem_idle_work_handler);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01004970 init_waitqueue_head(&dev_priv->gpu_error.reset_queue);
Chris Wilson31169712009-09-14 16:50:28 +01004971
Chris Wilson72bfa192010-12-19 11:42:05 +00004972 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
4973
Ville Syrjälä42b5aea2013-04-09 13:02:47 +03004974 if (INTEL_INFO(dev)->gen >= 7 && !IS_VALLEYVIEW(dev))
4975 dev_priv->num_fence_regs = 32;
4976 else if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08004977 dev_priv->num_fence_regs = 16;
4978 else
4979 dev_priv->num_fence_regs = 8;
4980
Yu Zhangeb822892015-02-10 19:05:49 +08004981 if (intel_vgpu_active(dev))
4982 dev_priv->num_fence_regs =
4983 I915_READ(vgtif_reg(avail_rs.fence_num));
4984
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02004985 /* Initialize fence registers to zero */
Chris Wilson19b2dbd2013-06-12 10:15:12 +01004986 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
4987 i915_gem_restore_fences(dev);
Eric Anholt10ed13e2011-05-06 13:53:49 -07004988
Eric Anholt673a3942008-07-30 12:06:12 -07004989 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004990 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01004991
Chris Wilsonce453d82011-02-21 14:43:56 +00004992 dev_priv->mm.interruptible = true;
4993
Chris Wilsonceabbba52014-03-25 13:23:04 +00004994 dev_priv->mm.shrinker.scan_objects = i915_gem_shrinker_scan;
4995 dev_priv->mm.shrinker.count_objects = i915_gem_shrinker_count;
4996 dev_priv->mm.shrinker.seeks = DEFAULT_SEEKS;
4997 register_shrinker(&dev_priv->mm.shrinker);
Chris Wilson2cfcd322014-05-20 08:28:43 +01004998
4999 dev_priv->mm.oom_notifier.notifier_call = i915_gem_shrinker_oom;
5000 register_oom_notifier(&dev_priv->mm.oom_notifier);
Daniel Vetterf99d7062014-06-19 16:01:59 +02005001
Brad Volkin78a42372014-12-11 12:13:09 -08005002 i915_gem_batch_pool_init(dev, &dev_priv->mm.batch_pool);
5003
Daniel Vetterf99d7062014-06-19 16:01:59 +02005004 mutex_init(&dev_priv->fb_tracking.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07005005}
Dave Airlie71acb5e2008-12-30 20:31:46 +10005006
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005007void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00005008{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005009 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00005010
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005011 cancel_delayed_work_sync(&file_priv->mm.idle_work);
5012
Eric Anholtb9624422009-06-03 07:27:35 +00005013 /* Clean up our request list when the client is going away, so that
5014 * later retire_requests won't dereference our soon-to-be-gone
5015 * file_priv.
5016 */
Chris Wilson1c255952010-09-26 11:03:27 +01005017 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005018 while (!list_empty(&file_priv->mm.request_list)) {
5019 struct drm_i915_gem_request *request;
5020
5021 request = list_first_entry(&file_priv->mm.request_list,
5022 struct drm_i915_gem_request,
5023 client_list);
5024 list_del(&request->client_list);
5025 request->file_priv = NULL;
5026 }
Chris Wilson1c255952010-09-26 11:03:27 +01005027 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00005028}
Chris Wilson31169712009-09-14 16:50:28 +01005029
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005030static void
5031i915_gem_file_idle_work_handler(struct work_struct *work)
5032{
5033 struct drm_i915_file_private *file_priv =
5034 container_of(work, typeof(*file_priv), mm.idle_work.work);
5035
5036 atomic_set(&file_priv->rps_wait_boost, false);
5037}
5038
5039int i915_gem_open(struct drm_device *dev, struct drm_file *file)
5040{
5041 struct drm_i915_file_private *file_priv;
Ben Widawskye422b882013-12-06 14:10:58 -08005042 int ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005043
5044 DRM_DEBUG_DRIVER("\n");
5045
5046 file_priv = kzalloc(sizeof(*file_priv), GFP_KERNEL);
5047 if (!file_priv)
5048 return -ENOMEM;
5049
5050 file->driver_priv = file_priv;
5051 file_priv->dev_priv = dev->dev_private;
Chris Wilsonab0e7ff2014-02-25 17:11:24 +02005052 file_priv->file = file;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005053
5054 spin_lock_init(&file_priv->mm.lock);
5055 INIT_LIST_HEAD(&file_priv->mm.request_list);
5056 INIT_DELAYED_WORK(&file_priv->mm.idle_work,
5057 i915_gem_file_idle_work_handler);
5058
Ben Widawskye422b882013-12-06 14:10:58 -08005059 ret = i915_gem_context_open(dev, file);
5060 if (ret)
5061 kfree(file_priv);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005062
Ben Widawskye422b882013-12-06 14:10:58 -08005063 return ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005064}
5065
Daniel Vetterb680c372014-09-19 18:27:27 +02005066/**
5067 * i915_gem_track_fb - update frontbuffer tracking
5068 * old: current GEM buffer for the frontbuffer slots
5069 * new: new GEM buffer for the frontbuffer slots
5070 * frontbuffer_bits: bitmask of frontbuffer slots
5071 *
5072 * This updates the frontbuffer tracking bits @frontbuffer_bits by clearing them
5073 * from @old and setting them in @new. Both @old and @new can be NULL.
5074 */
Daniel Vettera071fa02014-06-18 23:28:09 +02005075void i915_gem_track_fb(struct drm_i915_gem_object *old,
5076 struct drm_i915_gem_object *new,
5077 unsigned frontbuffer_bits)
5078{
5079 if (old) {
5080 WARN_ON(!mutex_is_locked(&old->base.dev->struct_mutex));
5081 WARN_ON(!(old->frontbuffer_bits & frontbuffer_bits));
5082 old->frontbuffer_bits &= ~frontbuffer_bits;
5083 }
5084
5085 if (new) {
5086 WARN_ON(!mutex_is_locked(&new->base.dev->struct_mutex));
5087 WARN_ON(new->frontbuffer_bits & frontbuffer_bits);
5088 new->frontbuffer_bits |= frontbuffer_bits;
5089 }
5090}
5091
Chris Wilson57745062012-11-21 13:04:04 +00005092static bool mutex_is_locked_by(struct mutex *mutex, struct task_struct *task)
5093{
5094 if (!mutex_is_locked(mutex))
5095 return false;
5096
Chris Wilsona5094052015-01-26 04:43:22 -08005097#if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_MUTEXES)
Chris Wilson57745062012-11-21 13:04:04 +00005098 return mutex->owner == task;
5099#else
5100 /* Since UP may be pre-empted, we cannot assume that we own the lock */
5101 return false;
5102#endif
5103}
5104
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005105static bool i915_gem_shrinker_lock(struct drm_device *dev, bool *unlock)
5106{
5107 if (!mutex_trylock(&dev->struct_mutex)) {
5108 if (!mutex_is_locked_by(&dev->struct_mutex, current))
5109 return false;
5110
5111 if (to_i915(dev)->mm.shrinker_no_lock_stealing)
5112 return false;
5113
5114 *unlock = false;
5115 } else
5116 *unlock = true;
5117
5118 return true;
5119}
5120
Chris Wilsonceabbba52014-03-25 13:23:04 +00005121static int num_vma_bound(struct drm_i915_gem_object *obj)
5122{
5123 struct i915_vma *vma;
5124 int count = 0;
5125
5126 list_for_each_entry(vma, &obj->vma_list, vma_link)
5127 if (drm_mm_node_allocated(&vma->node))
5128 count++;
5129
5130 return count;
5131}
5132
Dave Chinner7dc19d52013-08-28 10:18:11 +10005133static unsigned long
Chris Wilsonceabbba52014-03-25 13:23:04 +00005134i915_gem_shrinker_count(struct shrinker *shrinker, struct shrink_control *sc)
Chris Wilson31169712009-09-14 16:50:28 +01005135{
Chris Wilson17250b72010-10-28 12:51:39 +01005136 struct drm_i915_private *dev_priv =
Chris Wilsonceabbba52014-03-25 13:23:04 +00005137 container_of(shrinker, struct drm_i915_private, mm.shrinker);
Chris Wilson17250b72010-10-28 12:51:39 +01005138 struct drm_device *dev = dev_priv->dev;
Chris Wilson6c085a72012-08-20 11:40:46 +02005139 struct drm_i915_gem_object *obj;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005140 unsigned long count;
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005141 bool unlock;
Chris Wilson17250b72010-10-28 12:51:39 +01005142
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005143 if (!i915_gem_shrinker_lock(dev, &unlock))
5144 return 0;
Chris Wilson31169712009-09-14 16:50:28 +01005145
Dave Chinner7dc19d52013-08-28 10:18:11 +10005146 count = 0;
Ben Widawsky35c20a62013-05-31 11:28:48 -07005147 list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list)
Chris Wilsona5570172012-09-04 21:02:54 +01005148 if (obj->pages_pin_count == 0)
Dave Chinner7dc19d52013-08-28 10:18:11 +10005149 count += obj->base.size >> PAGE_SHIFT;
Ben Widawskyfcb4a572013-07-31 16:59:57 -07005150
5151 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
Chris Wilsonceabbba52014-03-25 13:23:04 +00005152 if (!i915_gem_obj_is_pinned(obj) &&
5153 obj->pages_pin_count == num_vma_bound(obj))
Dave Chinner7dc19d52013-08-28 10:18:11 +10005154 count += obj->base.size >> PAGE_SHIFT;
Ben Widawskyfcb4a572013-07-31 16:59:57 -07005155 }
Chris Wilson31169712009-09-14 16:50:28 +01005156
Chris Wilson57745062012-11-21 13:04:04 +00005157 if (unlock)
5158 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9973b42013-10-04 10:33:00 +01005159
Dave Chinner7dc19d52013-08-28 10:18:11 +10005160 return count;
Chris Wilson31169712009-09-14 16:50:28 +01005161}
Ben Widawskya70a3142013-07-31 16:59:56 -07005162
5163/* All the new VM stuff */
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00005164unsigned long i915_gem_obj_offset_view(struct drm_i915_gem_object *o,
5165 struct i915_address_space *vm,
5166 enum i915_ggtt_view_type view)
Ben Widawskya70a3142013-07-31 16:59:56 -07005167{
5168 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
5169 struct i915_vma *vma;
5170
Daniel Vetter896ab1a2014-08-06 15:04:51 +02005171 WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base);
Ben Widawskya70a3142013-07-31 16:59:56 -07005172
Ben Widawskya70a3142013-07-31 16:59:56 -07005173 list_for_each_entry(vma, &o->vma_list, vma_link) {
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00005174 if (vma->vm == vm && vma->ggtt_view.type == view)
Ben Widawskya70a3142013-07-31 16:59:56 -07005175 return vma->node.start;
5176
5177 }
Daniel Vetterf25748ea2014-06-17 22:34:38 +02005178 WARN(1, "%s vma for this object not found.\n",
5179 i915_is_ggtt(vm) ? "global" : "ppgtt");
Ben Widawskya70a3142013-07-31 16:59:56 -07005180 return -1;
5181}
5182
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00005183bool i915_gem_obj_bound_view(struct drm_i915_gem_object *o,
5184 struct i915_address_space *vm,
5185 enum i915_ggtt_view_type view)
Ben Widawskya70a3142013-07-31 16:59:56 -07005186{
5187 struct i915_vma *vma;
5188
5189 list_for_each_entry(vma, &o->vma_list, vma_link)
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00005190 if (vma->vm == vm &&
5191 vma->ggtt_view.type == view &&
5192 drm_mm_node_allocated(&vma->node))
Ben Widawskya70a3142013-07-31 16:59:56 -07005193 return true;
5194
5195 return false;
5196}
5197
5198bool i915_gem_obj_bound_any(struct drm_i915_gem_object *o)
5199{
Chris Wilson5a1d5eb2013-09-10 11:27:37 +01005200 struct i915_vma *vma;
Ben Widawskya70a3142013-07-31 16:59:56 -07005201
Chris Wilson5a1d5eb2013-09-10 11:27:37 +01005202 list_for_each_entry(vma, &o->vma_list, vma_link)
5203 if (drm_mm_node_allocated(&vma->node))
Ben Widawskya70a3142013-07-31 16:59:56 -07005204 return true;
5205
5206 return false;
5207}
5208
5209unsigned long i915_gem_obj_size(struct drm_i915_gem_object *o,
5210 struct i915_address_space *vm)
5211{
5212 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
5213 struct i915_vma *vma;
5214
Daniel Vetter896ab1a2014-08-06 15:04:51 +02005215 WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base);
Ben Widawskya70a3142013-07-31 16:59:56 -07005216
5217 BUG_ON(list_empty(&o->vma_list));
5218
5219 list_for_each_entry(vma, &o->vma_list, vma_link)
5220 if (vma->vm == vm)
5221 return vma->node.size;
5222
5223 return 0;
5224}
5225
Dave Chinner7dc19d52013-08-28 10:18:11 +10005226static unsigned long
Chris Wilsonceabbba52014-03-25 13:23:04 +00005227i915_gem_shrinker_scan(struct shrinker *shrinker, struct shrink_control *sc)
Dave Chinner7dc19d52013-08-28 10:18:11 +10005228{
5229 struct drm_i915_private *dev_priv =
Chris Wilsonceabbba52014-03-25 13:23:04 +00005230 container_of(shrinker, struct drm_i915_private, mm.shrinker);
Dave Chinner7dc19d52013-08-28 10:18:11 +10005231 struct drm_device *dev = dev_priv->dev;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005232 unsigned long freed;
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005233 bool unlock;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005234
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005235 if (!i915_gem_shrinker_lock(dev, &unlock))
5236 return SHRINK_STOP;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005237
Chris Wilson21ab4e72014-09-09 11:16:08 +01005238 freed = i915_gem_shrink(dev_priv,
5239 sc->nr_to_scan,
5240 I915_SHRINK_BOUND |
5241 I915_SHRINK_UNBOUND |
5242 I915_SHRINK_PURGEABLE);
Chris Wilsond9973b42013-10-04 10:33:00 +01005243 if (freed < sc->nr_to_scan)
Chris Wilson21ab4e72014-09-09 11:16:08 +01005244 freed += i915_gem_shrink(dev_priv,
5245 sc->nr_to_scan - freed,
5246 I915_SHRINK_BOUND |
5247 I915_SHRINK_UNBOUND);
Dave Chinner7dc19d52013-08-28 10:18:11 +10005248 if (unlock)
5249 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9973b42013-10-04 10:33:00 +01005250
Dave Chinner7dc19d52013-08-28 10:18:11 +10005251 return freed;
5252}
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005253
Chris Wilson2cfcd322014-05-20 08:28:43 +01005254static int
5255i915_gem_shrinker_oom(struct notifier_block *nb, unsigned long event, void *ptr)
5256{
5257 struct drm_i915_private *dev_priv =
5258 container_of(nb, struct drm_i915_private, mm.oom_notifier);
5259 struct drm_device *dev = dev_priv->dev;
5260 struct drm_i915_gem_object *obj;
5261 unsigned long timeout = msecs_to_jiffies(5000) + 1;
Chris Wilson005445c2014-10-08 11:25:16 +01005262 unsigned long pinned, bound, unbound, freed_pages;
Chris Wilson2cfcd322014-05-20 08:28:43 +01005263 bool was_interruptible;
5264 bool unlock;
5265
Chris Wilsona1db2fa2014-07-11 11:28:00 +01005266 while (!i915_gem_shrinker_lock(dev, &unlock) && --timeout) {
Chris Wilson2cfcd322014-05-20 08:28:43 +01005267 schedule_timeout_killable(1);
Chris Wilsona1db2fa2014-07-11 11:28:00 +01005268 if (fatal_signal_pending(current))
5269 return NOTIFY_DONE;
5270 }
Chris Wilson2cfcd322014-05-20 08:28:43 +01005271 if (timeout == 0) {
5272 pr_err("Unable to purge GPU memory due lock contention.\n");
5273 return NOTIFY_DONE;
5274 }
5275
5276 was_interruptible = dev_priv->mm.interruptible;
5277 dev_priv->mm.interruptible = false;
5278
Chris Wilson005445c2014-10-08 11:25:16 +01005279 freed_pages = i915_gem_shrink_all(dev_priv);
Chris Wilson2cfcd322014-05-20 08:28:43 +01005280
5281 dev_priv->mm.interruptible = was_interruptible;
5282
5283 /* Because we may be allocating inside our own driver, we cannot
5284 * assert that there are no objects with pinned pages that are not
5285 * being pointed to by hardware.
5286 */
5287 unbound = bound = pinned = 0;
5288 list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list) {
5289 if (!obj->base.filp) /* not backed by a freeable object */
5290 continue;
5291
5292 if (obj->pages_pin_count)
5293 pinned += obj->base.size;
5294 else
5295 unbound += obj->base.size;
5296 }
5297 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
5298 if (!obj->base.filp)
5299 continue;
5300
5301 if (obj->pages_pin_count)
5302 pinned += obj->base.size;
5303 else
5304 bound += obj->base.size;
5305 }
5306
5307 if (unlock)
5308 mutex_unlock(&dev->struct_mutex);
5309
Chris Wilsonbb9059d2014-10-08 11:25:17 +01005310 if (freed_pages || unbound || bound)
5311 pr_info("Purging GPU memory, %lu bytes freed, %lu bytes still pinned.\n",
5312 freed_pages << PAGE_SHIFT, pinned);
Chris Wilson2cfcd322014-05-20 08:28:43 +01005313 if (unbound || bound)
5314 pr_err("%lu and %lu bytes still available in the "
5315 "bound and unbound GPU page lists.\n",
5316 bound, unbound);
5317
Chris Wilson005445c2014-10-08 11:25:16 +01005318 *(unsigned long *)ptr += freed_pages;
Chris Wilson2cfcd322014-05-20 08:28:43 +01005319 return NOTIFY_DONE;
5320}
5321
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005322struct i915_vma *i915_gem_obj_to_ggtt(struct drm_i915_gem_object *obj)
5323{
Tvrtko Ursulinf7635662014-12-03 14:59:24 +00005324 struct i915_address_space *ggtt = i915_obj_to_ggtt(obj);
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005325 struct i915_vma *vma;
5326
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00005327 list_for_each_entry(vma, &obj->vma_list, vma_link)
5328 if (vma->vm == ggtt &&
5329 vma->ggtt_view.type == I915_GGTT_VIEW_NORMAL)
Tvrtko Ursulinf7635662014-12-03 14:59:24 +00005330 return vma;
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005331
Tvrtko Ursulinf7635662014-12-03 14:59:24 +00005332 return NULL;
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005333}