blob: f28f0dea6c96fda10950aa7980ba2624d6590a9f [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);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800354 int ret;
355
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
363 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
364 unsigned long unwritten;
365
366 /* The physical object once assigned is fixed for the lifetime
367 * of the obj, so we can safely drop the lock and continue
368 * to access vaddr.
369 */
370 mutex_unlock(&dev->struct_mutex);
371 unwritten = copy_from_user(vaddr, user_data, args->size);
372 mutex_lock(&dev->struct_mutex);
373 if (unwritten)
374 return -EFAULT;
375 }
376
Chris Wilson6a2c4232014-11-04 04:51:40 -0800377 drm_clflush_virt_range(vaddr, args->size);
Chris Wilson00731152014-05-21 12:42:56 +0100378 i915_gem_chipset_flush(dev);
379 return 0;
380}
381
Chris Wilson42dcedd2012-11-15 11:32:30 +0000382void *i915_gem_object_alloc(struct drm_device *dev)
383{
384 struct drm_i915_private *dev_priv = dev->dev_private;
Joe Perchesfac15c12013-08-29 13:11:07 -0700385 return kmem_cache_zalloc(dev_priv->slab, GFP_KERNEL);
Chris Wilson42dcedd2012-11-15 11:32:30 +0000386}
387
388void i915_gem_object_free(struct drm_i915_gem_object *obj)
389{
390 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
391 kmem_cache_free(dev_priv->slab, obj);
392}
393
Dave Airlieff72145b2011-02-07 12:16:14 +1000394static int
395i915_gem_create(struct drm_file *file,
396 struct drm_device *dev,
397 uint64_t size,
398 uint32_t *handle_p)
Eric Anholt673a3942008-07-30 12:06:12 -0700399{
Chris Wilson05394f32010-11-08 19:18:58 +0000400 struct drm_i915_gem_object *obj;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300401 int ret;
402 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700403
Dave Airlieff72145b2011-02-07 12:16:14 +1000404 size = roundup(size, PAGE_SIZE);
Chris Wilson8ffc0242011-09-14 14:14:28 +0200405 if (size == 0)
406 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700407
408 /* Allocate the new object */
Dave Airlieff72145b2011-02-07 12:16:14 +1000409 obj = i915_gem_alloc_object(dev, size);
Eric Anholt673a3942008-07-30 12:06:12 -0700410 if (obj == NULL)
411 return -ENOMEM;
412
Chris Wilson05394f32010-11-08 19:18:58 +0000413 ret = drm_gem_handle_create(file, &obj->base, &handle);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100414 /* drop reference from allocate - handle holds it now */
Daniel Vetterd861e332013-07-24 23:25:03 +0200415 drm_gem_object_unreference_unlocked(&obj->base);
416 if (ret)
417 return ret;
Chris Wilson202f2fe2010-10-14 13:20:40 +0100418
Dave Airlieff72145b2011-02-07 12:16:14 +1000419 *handle_p = handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700420 return 0;
421}
422
Dave Airlieff72145b2011-02-07 12:16:14 +1000423int
424i915_gem_dumb_create(struct drm_file *file,
425 struct drm_device *dev,
426 struct drm_mode_create_dumb *args)
427{
428 /* have to work out size/pitch and return them */
Paulo Zanonide45eaf2013-10-18 18:48:24 -0300429 args->pitch = ALIGN(args->width * DIV_ROUND_UP(args->bpp, 8), 64);
Dave Airlieff72145b2011-02-07 12:16:14 +1000430 args->size = args->pitch * args->height;
431 return i915_gem_create(file, dev,
Dave Airlieda6b51d2014-12-24 13:11:17 +1000432 args->size, &args->handle);
Dave Airlieff72145b2011-02-07 12:16:14 +1000433}
434
Dave Airlieff72145b2011-02-07 12:16:14 +1000435/**
436 * Creates a new mm object and returns a handle to it.
437 */
438int
439i915_gem_create_ioctl(struct drm_device *dev, void *data,
440 struct drm_file *file)
441{
442 struct drm_i915_gem_create *args = data;
Daniel Vetter63ed2cb2012-04-23 16:50:50 +0200443
Dave Airlieff72145b2011-02-07 12:16:14 +1000444 return i915_gem_create(file, dev,
Dave Airlieda6b51d2014-12-24 13:11:17 +1000445 args->size, &args->handle);
Dave Airlieff72145b2011-02-07 12:16:14 +1000446}
447
Daniel Vetter8c599672011-12-14 13:57:31 +0100448static inline int
Daniel Vetter8461d222011-12-14 13:57:32 +0100449__copy_to_user_swizzled(char __user *cpu_vaddr,
450 const char *gpu_vaddr, int gpu_offset,
451 int length)
452{
453 int ret, cpu_offset = 0;
454
455 while (length > 0) {
456 int cacheline_end = ALIGN(gpu_offset + 1, 64);
457 int this_length = min(cacheline_end - gpu_offset, length);
458 int swizzled_gpu_offset = gpu_offset ^ 64;
459
460 ret = __copy_to_user(cpu_vaddr + cpu_offset,
461 gpu_vaddr + swizzled_gpu_offset,
462 this_length);
463 if (ret)
464 return ret + length;
465
466 cpu_offset += this_length;
467 gpu_offset += this_length;
468 length -= this_length;
469 }
470
471 return 0;
472}
473
474static inline int
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700475__copy_from_user_swizzled(char *gpu_vaddr, int gpu_offset,
476 const char __user *cpu_vaddr,
Daniel Vetter8c599672011-12-14 13:57:31 +0100477 int length)
478{
479 int ret, cpu_offset = 0;
480
481 while (length > 0) {
482 int cacheline_end = ALIGN(gpu_offset + 1, 64);
483 int this_length = min(cacheline_end - gpu_offset, length);
484 int swizzled_gpu_offset = gpu_offset ^ 64;
485
486 ret = __copy_from_user(gpu_vaddr + swizzled_gpu_offset,
487 cpu_vaddr + cpu_offset,
488 this_length);
489 if (ret)
490 return ret + length;
491
492 cpu_offset += this_length;
493 gpu_offset += this_length;
494 length -= this_length;
495 }
496
497 return 0;
498}
499
Brad Volkin4c914c02014-02-18 10:15:45 -0800500/*
501 * Pins the specified object's pages and synchronizes the object with
502 * GPU accesses. Sets needs_clflush to non-zero if the caller should
503 * flush the object from the CPU cache.
504 */
505int i915_gem_obj_prepare_shmem_read(struct drm_i915_gem_object *obj,
506 int *needs_clflush)
507{
508 int ret;
509
510 *needs_clflush = 0;
511
512 if (!obj->base.filp)
513 return -EINVAL;
514
515 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU)) {
516 /* If we're not in the cpu read domain, set ourself into the gtt
517 * read domain and manually flush cachelines (if required). This
518 * optimizes for the case when the gpu will dirty the data
519 * anyway again before the next pread happens. */
520 *needs_clflush = !cpu_cache_is_coherent(obj->base.dev,
521 obj->cache_level);
522 ret = i915_gem_object_wait_rendering(obj, true);
523 if (ret)
524 return ret;
Chris Wilsonc8725f32014-03-17 12:21:55 +0000525
526 i915_gem_object_retire(obj);
Brad Volkin4c914c02014-02-18 10:15:45 -0800527 }
528
529 ret = i915_gem_object_get_pages(obj);
530 if (ret)
531 return ret;
532
533 i915_gem_object_pin_pages(obj);
534
535 return ret;
536}
537
Daniel Vetterd174bd62012-03-25 19:47:40 +0200538/* Per-page copy function for the shmem pread fastpath.
539 * Flushes invalid cachelines before reading the target if
540 * needs_clflush is set. */
Eric Anholteb014592009-03-10 11:44:52 -0700541static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200542shmem_pread_fast(struct page *page, int shmem_page_offset, int page_length,
543 char __user *user_data,
544 bool page_do_bit17_swizzling, bool needs_clflush)
545{
546 char *vaddr;
547 int ret;
548
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200549 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200550 return -EINVAL;
551
552 vaddr = kmap_atomic(page);
553 if (needs_clflush)
554 drm_clflush_virt_range(vaddr + shmem_page_offset,
555 page_length);
556 ret = __copy_to_user_inatomic(user_data,
557 vaddr + shmem_page_offset,
558 page_length);
559 kunmap_atomic(vaddr);
560
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100561 return ret ? -EFAULT : 0;
Daniel Vetterd174bd62012-03-25 19:47:40 +0200562}
563
Daniel Vetter23c18c72012-03-25 19:47:42 +0200564static void
565shmem_clflush_swizzled_range(char *addr, unsigned long length,
566 bool swizzled)
567{
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200568 if (unlikely(swizzled)) {
Daniel Vetter23c18c72012-03-25 19:47:42 +0200569 unsigned long start = (unsigned long) addr;
570 unsigned long end = (unsigned long) addr + length;
571
572 /* For swizzling simply ensure that we always flush both
573 * channels. Lame, but simple and it works. Swizzled
574 * pwrite/pread is far from a hotpath - current userspace
575 * doesn't use it at all. */
576 start = round_down(start, 128);
577 end = round_up(end, 128);
578
579 drm_clflush_virt_range((void *)start, end - start);
580 } else {
581 drm_clflush_virt_range(addr, length);
582 }
583
584}
585
Daniel Vetterd174bd62012-03-25 19:47:40 +0200586/* Only difference to the fast-path function is that this can handle bit17
587 * and uses non-atomic copy and kmap functions. */
588static int
589shmem_pread_slow(struct page *page, int shmem_page_offset, int page_length,
590 char __user *user_data,
591 bool page_do_bit17_swizzling, bool needs_clflush)
592{
593 char *vaddr;
594 int ret;
595
596 vaddr = kmap(page);
597 if (needs_clflush)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200598 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
599 page_length,
600 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200601
602 if (page_do_bit17_swizzling)
603 ret = __copy_to_user_swizzled(user_data,
604 vaddr, shmem_page_offset,
605 page_length);
606 else
607 ret = __copy_to_user(user_data,
608 vaddr + shmem_page_offset,
609 page_length);
610 kunmap(page);
611
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100612 return ret ? - EFAULT : 0;
Daniel Vetterd174bd62012-03-25 19:47:40 +0200613}
614
Eric Anholteb014592009-03-10 11:44:52 -0700615static int
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200616i915_gem_shmem_pread(struct drm_device *dev,
617 struct drm_i915_gem_object *obj,
618 struct drm_i915_gem_pread *args,
619 struct drm_file *file)
Eric Anholteb014592009-03-10 11:44:52 -0700620{
Daniel Vetter8461d222011-12-14 13:57:32 +0100621 char __user *user_data;
Eric Anholteb014592009-03-10 11:44:52 -0700622 ssize_t remain;
Daniel Vetter8461d222011-12-14 13:57:32 +0100623 loff_t offset;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100624 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8461d222011-12-14 13:57:32 +0100625 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vetter96d79b52012-03-25 19:47:36 +0200626 int prefaulted = 0;
Daniel Vetter84897312012-03-25 19:47:31 +0200627 int needs_clflush = 0;
Imre Deak67d5a502013-02-18 19:28:02 +0200628 struct sg_page_iter sg_iter;
Eric Anholteb014592009-03-10 11:44:52 -0700629
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200630 user_data = to_user_ptr(args->data_ptr);
Eric Anholteb014592009-03-10 11:44:52 -0700631 remain = args->size;
632
Daniel Vetter8461d222011-12-14 13:57:32 +0100633 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700634
Brad Volkin4c914c02014-02-18 10:15:45 -0800635 ret = i915_gem_obj_prepare_shmem_read(obj, &needs_clflush);
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100636 if (ret)
637 return ret;
638
Eric Anholteb014592009-03-10 11:44:52 -0700639 offset = args->offset;
Daniel Vetter8461d222011-12-14 13:57:32 +0100640
Imre Deak67d5a502013-02-18 19:28:02 +0200641 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents,
642 offset >> PAGE_SHIFT) {
Imre Deak2db76d72013-03-26 15:14:18 +0200643 struct page *page = sg_page_iter_page(&sg_iter);
Chris Wilson9da3da62012-06-01 15:20:22 +0100644
645 if (remain <= 0)
646 break;
647
Eric Anholteb014592009-03-10 11:44:52 -0700648 /* Operation in this page
649 *
Eric Anholteb014592009-03-10 11:44:52 -0700650 * shmem_page_offset = offset within page in shmem file
Eric Anholteb014592009-03-10 11:44:52 -0700651 * page_length = bytes to copy for this page
652 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100653 shmem_page_offset = offset_in_page(offset);
Eric Anholteb014592009-03-10 11:44:52 -0700654 page_length = remain;
655 if ((shmem_page_offset + page_length) > PAGE_SIZE)
656 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholteb014592009-03-10 11:44:52 -0700657
Daniel Vetter8461d222011-12-14 13:57:32 +0100658 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
659 (page_to_phys(page) & (1 << 17)) != 0;
660
Daniel Vetterd174bd62012-03-25 19:47:40 +0200661 ret = shmem_pread_fast(page, shmem_page_offset, page_length,
662 user_data, page_do_bit17_swizzling,
663 needs_clflush);
664 if (ret == 0)
665 goto next_page;
Eric Anholteb014592009-03-10 11:44:52 -0700666
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200667 mutex_unlock(&dev->struct_mutex);
668
Jani Nikulad330a952014-01-21 11:24:25 +0200669 if (likely(!i915.prefault_disable) && !prefaulted) {
Daniel Vetterf56f8212012-03-25 19:47:41 +0200670 ret = fault_in_multipages_writeable(user_data, remain);
Daniel Vetter96d79b52012-03-25 19:47:36 +0200671 /* Userspace is tricking us, but we've already clobbered
672 * its pages with the prefault and promised to write the
673 * data up to the first fault. Hence ignore any errors
674 * and just continue. */
675 (void)ret;
676 prefaulted = 1;
677 }
678
Daniel Vetterd174bd62012-03-25 19:47:40 +0200679 ret = shmem_pread_slow(page, shmem_page_offset, page_length,
680 user_data, page_do_bit17_swizzling,
681 needs_clflush);
Eric Anholteb014592009-03-10 11:44:52 -0700682
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200683 mutex_lock(&dev->struct_mutex);
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100684
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100685 if (ret)
Daniel Vetter8461d222011-12-14 13:57:32 +0100686 goto out;
Daniel Vetter8461d222011-12-14 13:57:32 +0100687
Chris Wilson17793c92014-03-07 08:30:36 +0000688next_page:
Eric Anholteb014592009-03-10 11:44:52 -0700689 remain -= page_length;
Daniel Vetter8461d222011-12-14 13:57:32 +0100690 user_data += page_length;
Eric Anholteb014592009-03-10 11:44:52 -0700691 offset += page_length;
692 }
693
Chris Wilson4f27b752010-10-14 15:26:45 +0100694out:
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100695 i915_gem_object_unpin_pages(obj);
696
Eric Anholteb014592009-03-10 11:44:52 -0700697 return ret;
698}
699
Eric Anholt673a3942008-07-30 12:06:12 -0700700/**
701 * Reads data from the object referenced by handle.
702 *
703 * On error, the contents of *data are undefined.
704 */
705int
706i915_gem_pread_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000707 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700708{
709 struct drm_i915_gem_pread *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000710 struct drm_i915_gem_object *obj;
Chris Wilson35b62a82010-09-26 20:23:38 +0100711 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700712
Chris Wilson51311d02010-11-17 09:10:42 +0000713 if (args->size == 0)
714 return 0;
715
716 if (!access_ok(VERIFY_WRITE,
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200717 to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +0000718 args->size))
719 return -EFAULT;
720
Chris Wilson4f27b752010-10-14 15:26:45 +0100721 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100722 if (ret)
Chris Wilson4f27b752010-10-14 15:26:45 +0100723 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700724
Chris Wilson05394f32010-11-08 19:18:58 +0000725 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000726 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100727 ret = -ENOENT;
728 goto unlock;
Chris Wilson4f27b752010-10-14 15:26:45 +0100729 }
Eric Anholt673a3942008-07-30 12:06:12 -0700730
Chris Wilson7dcd2492010-09-26 20:21:44 +0100731 /* Bounds check source. */
Chris Wilson05394f32010-11-08 19:18:58 +0000732 if (args->offset > obj->base.size ||
733 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100734 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100735 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100736 }
737
Daniel Vetter1286ff72012-05-10 15:25:09 +0200738 /* prime objects have no backing filp to GEM pread/pwrite
739 * pages from.
740 */
741 if (!obj->base.filp) {
742 ret = -EINVAL;
743 goto out;
744 }
745
Chris Wilsondb53a302011-02-03 11:57:46 +0000746 trace_i915_gem_object_pread(obj, args->offset, args->size);
747
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200748 ret = i915_gem_shmem_pread(dev, obj, args, file);
Eric Anholt673a3942008-07-30 12:06:12 -0700749
Chris Wilson35b62a82010-09-26 20:23:38 +0100750out:
Chris Wilson05394f32010-11-08 19:18:58 +0000751 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100752unlock:
Chris Wilson4f27b752010-10-14 15:26:45 +0100753 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700754 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700755}
756
Keith Packard0839ccb2008-10-30 19:38:48 -0700757/* This is the fast write path which cannot handle
758 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700759 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700760
Keith Packard0839ccb2008-10-30 19:38:48 -0700761static inline int
762fast_user_write(struct io_mapping *mapping,
763 loff_t page_base, int page_offset,
764 char __user *user_data,
765 int length)
766{
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700767 void __iomem *vaddr_atomic;
768 void *vaddr;
Keith Packard0839ccb2008-10-30 19:38:48 -0700769 unsigned long unwritten;
770
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700771 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base);
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700772 /* We can use the cpu mem copy function because this is X86. */
773 vaddr = (void __force*)vaddr_atomic + page_offset;
774 unwritten = __copy_from_user_inatomic_nocache(vaddr,
Keith Packard0839ccb2008-10-30 19:38:48 -0700775 user_data, length);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700776 io_mapping_unmap_atomic(vaddr_atomic);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100777 return unwritten;
Keith Packard0839ccb2008-10-30 19:38:48 -0700778}
779
Eric Anholt3de09aa2009-03-09 09:42:23 -0700780/**
781 * This is the fast pwrite path, where we copy the data directly from the
782 * user into the GTT, uncached.
783 */
Eric Anholt673a3942008-07-30 12:06:12 -0700784static int
Chris Wilson05394f32010-11-08 19:18:58 +0000785i915_gem_gtt_pwrite_fast(struct drm_device *dev,
786 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -0700787 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000788 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700789{
Jani Nikula3e31c6c2014-03-31 14:27:16 +0300790 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700791 ssize_t remain;
Keith Packard0839ccb2008-10-30 19:38:48 -0700792 loff_t offset, page_base;
Eric Anholt673a3942008-07-30 12:06:12 -0700793 char __user *user_data;
Daniel Vetter935aaa62012-03-25 19:47:35 +0200794 int page_offset, page_length, ret;
795
Daniel Vetter1ec9e262014-02-14 14:01:11 +0100796 ret = i915_gem_obj_ggtt_pin(obj, 0, PIN_MAPPABLE | PIN_NONBLOCK);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200797 if (ret)
798 goto out;
799
800 ret = i915_gem_object_set_to_gtt_domain(obj, true);
801 if (ret)
802 goto out_unpin;
803
804 ret = i915_gem_object_put_fence(obj);
805 if (ret)
806 goto out_unpin;
Eric Anholt673a3942008-07-30 12:06:12 -0700807
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200808 user_data = to_user_ptr(args->data_ptr);
Eric Anholt673a3942008-07-30 12:06:12 -0700809 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700810
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700811 offset = i915_gem_obj_ggtt_offset(obj) + args->offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700812
813 while (remain > 0) {
814 /* Operation in this page
815 *
Keith Packard0839ccb2008-10-30 19:38:48 -0700816 * page_base = page offset within aperture
817 * page_offset = offset within page
818 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -0700819 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100820 page_base = offset & PAGE_MASK;
821 page_offset = offset_in_page(offset);
Keith Packard0839ccb2008-10-30 19:38:48 -0700822 page_length = remain;
823 if ((page_offset + remain) > PAGE_SIZE)
824 page_length = PAGE_SIZE - page_offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700825
Keith Packard0839ccb2008-10-30 19:38:48 -0700826 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -0700827 * source page isn't available. Return the error and we'll
828 * retry in the slow path.
Keith Packard0839ccb2008-10-30 19:38:48 -0700829 */
Ben Widawsky5d4545a2013-01-17 12:45:15 -0800830 if (fast_user_write(dev_priv->gtt.mappable, page_base,
Daniel Vetter935aaa62012-03-25 19:47:35 +0200831 page_offset, user_data, page_length)) {
832 ret = -EFAULT;
833 goto out_unpin;
834 }
Eric Anholt673a3942008-07-30 12:06:12 -0700835
Keith Packard0839ccb2008-10-30 19:38:48 -0700836 remain -= page_length;
837 user_data += page_length;
838 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700839 }
Eric Anholt673a3942008-07-30 12:06:12 -0700840
Daniel Vetter935aaa62012-03-25 19:47:35 +0200841out_unpin:
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800842 i915_gem_object_ggtt_unpin(obj);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200843out:
Eric Anholt3de09aa2009-03-09 09:42:23 -0700844 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700845}
846
Daniel Vetterd174bd62012-03-25 19:47:40 +0200847/* Per-page copy function for the shmem pwrite fastpath.
848 * Flushes invalid cachelines before writing to the target if
849 * needs_clflush_before is set and flushes out any written cachelines after
850 * writing if needs_clflush is set. */
Eric Anholt673a3942008-07-30 12:06:12 -0700851static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200852shmem_pwrite_fast(struct page *page, int shmem_page_offset, int page_length,
853 char __user *user_data,
854 bool page_do_bit17_swizzling,
855 bool needs_clflush_before,
856 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700857{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200858 char *vaddr;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700859 int ret;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700860
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200861 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200862 return -EINVAL;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700863
Daniel Vetterd174bd62012-03-25 19:47:40 +0200864 vaddr = kmap_atomic(page);
865 if (needs_clflush_before)
866 drm_clflush_virt_range(vaddr + shmem_page_offset,
867 page_length);
Chris Wilsonc2831a92014-03-07 08:30:37 +0000868 ret = __copy_from_user_inatomic(vaddr + shmem_page_offset,
869 user_data, page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200870 if (needs_clflush_after)
871 drm_clflush_virt_range(vaddr + shmem_page_offset,
872 page_length);
873 kunmap_atomic(vaddr);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700874
Chris Wilson755d2212012-09-04 21:02:55 +0100875 return ret ? -EFAULT : 0;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700876}
877
Daniel Vetterd174bd62012-03-25 19:47:40 +0200878/* Only difference to the fast-path function is that this can handle bit17
879 * and uses non-atomic copy and kmap functions. */
Eric Anholt3043c602008-10-02 12:24:47 -0700880static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200881shmem_pwrite_slow(struct page *page, int shmem_page_offset, int page_length,
882 char __user *user_data,
883 bool page_do_bit17_swizzling,
884 bool needs_clflush_before,
885 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700886{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200887 char *vaddr;
888 int ret;
Eric Anholt40123c12009-03-09 13:42:30 -0700889
Daniel Vetterd174bd62012-03-25 19:47:40 +0200890 vaddr = kmap(page);
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200891 if (unlikely(needs_clflush_before || page_do_bit17_swizzling))
Daniel Vetter23c18c72012-03-25 19:47:42 +0200892 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
893 page_length,
894 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200895 if (page_do_bit17_swizzling)
896 ret = __copy_from_user_swizzled(vaddr, shmem_page_offset,
Chris Wilsone5281cc2010-10-28 13:45:36 +0100897 user_data,
898 page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200899 else
900 ret = __copy_from_user(vaddr + shmem_page_offset,
901 user_data,
902 page_length);
903 if (needs_clflush_after)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200904 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
905 page_length,
906 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200907 kunmap(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100908
Chris Wilson755d2212012-09-04 21:02:55 +0100909 return ret ? -EFAULT : 0;
Eric Anholt40123c12009-03-09 13:42:30 -0700910}
911
Eric Anholt40123c12009-03-09 13:42:30 -0700912static int
Daniel Vettere244a442012-03-25 19:47:28 +0200913i915_gem_shmem_pwrite(struct drm_device *dev,
914 struct drm_i915_gem_object *obj,
915 struct drm_i915_gem_pwrite *args,
916 struct drm_file *file)
Eric Anholt40123c12009-03-09 13:42:30 -0700917{
Eric Anholt40123c12009-03-09 13:42:30 -0700918 ssize_t remain;
Daniel Vetter8c599672011-12-14 13:57:31 +0100919 loff_t offset;
920 char __user *user_data;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100921 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8c599672011-12-14 13:57:31 +0100922 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vettere244a442012-03-25 19:47:28 +0200923 int hit_slowpath = 0;
Daniel Vetter58642882012-03-25 19:47:37 +0200924 int needs_clflush_after = 0;
925 int needs_clflush_before = 0;
Imre Deak67d5a502013-02-18 19:28:02 +0200926 struct sg_page_iter sg_iter;
Eric Anholt40123c12009-03-09 13:42:30 -0700927
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200928 user_data = to_user_ptr(args->data_ptr);
Eric Anholt40123c12009-03-09 13:42:30 -0700929 remain = args->size;
930
Daniel Vetter8c599672011-12-14 13:57:31 +0100931 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700932
Daniel Vetter58642882012-03-25 19:47:37 +0200933 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
934 /* If we're not in the cpu write domain, set ourself into the gtt
935 * write domain and manually flush cachelines (if required). This
936 * optimizes for the case when the gpu will use the data
937 * right away and we therefore have to clflush anyway. */
Chris Wilson2c225692013-08-09 12:26:45 +0100938 needs_clflush_after = cpu_write_needs_clflush(obj);
Ben Widawsky23f54482013-09-11 14:57:48 -0700939 ret = i915_gem_object_wait_rendering(obj, false);
940 if (ret)
941 return ret;
Chris Wilsonc8725f32014-03-17 12:21:55 +0000942
943 i915_gem_object_retire(obj);
Daniel Vetter58642882012-03-25 19:47:37 +0200944 }
Chris Wilsonc76ce032013-08-08 14:41:03 +0100945 /* Same trick applies to invalidate partially written cachelines read
946 * before writing. */
947 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0)
948 needs_clflush_before =
949 !cpu_cache_is_coherent(dev, obj->cache_level);
Daniel Vetter58642882012-03-25 19:47:37 +0200950
Chris Wilson755d2212012-09-04 21:02:55 +0100951 ret = i915_gem_object_get_pages(obj);
952 if (ret)
953 return ret;
954
955 i915_gem_object_pin_pages(obj);
956
Eric Anholt40123c12009-03-09 13:42:30 -0700957 offset = args->offset;
Chris Wilson05394f32010-11-08 19:18:58 +0000958 obj->dirty = 1;
Eric Anholt40123c12009-03-09 13:42:30 -0700959
Imre Deak67d5a502013-02-18 19:28:02 +0200960 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents,
961 offset >> PAGE_SHIFT) {
Imre Deak2db76d72013-03-26 15:14:18 +0200962 struct page *page = sg_page_iter_page(&sg_iter);
Daniel Vetter58642882012-03-25 19:47:37 +0200963 int partial_cacheline_write;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100964
Chris Wilson9da3da62012-06-01 15:20:22 +0100965 if (remain <= 0)
966 break;
967
Eric Anholt40123c12009-03-09 13:42:30 -0700968 /* Operation in this page
969 *
Eric Anholt40123c12009-03-09 13:42:30 -0700970 * shmem_page_offset = offset within page in shmem file
Eric Anholt40123c12009-03-09 13:42:30 -0700971 * page_length = bytes to copy for this page
972 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100973 shmem_page_offset = offset_in_page(offset);
Eric Anholt40123c12009-03-09 13:42:30 -0700974
975 page_length = remain;
976 if ((shmem_page_offset + page_length) > PAGE_SIZE)
977 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700978
Daniel Vetter58642882012-03-25 19:47:37 +0200979 /* If we don't overwrite a cacheline completely we need to be
980 * careful to have up-to-date data by first clflushing. Don't
981 * overcomplicate things and flush the entire patch. */
982 partial_cacheline_write = needs_clflush_before &&
983 ((shmem_page_offset | page_length)
984 & (boot_cpu_data.x86_clflush_size - 1));
985
Daniel Vetter8c599672011-12-14 13:57:31 +0100986 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
987 (page_to_phys(page) & (1 << 17)) != 0;
988
Daniel Vetterd174bd62012-03-25 19:47:40 +0200989 ret = shmem_pwrite_fast(page, shmem_page_offset, page_length,
990 user_data, page_do_bit17_swizzling,
991 partial_cacheline_write,
992 needs_clflush_after);
993 if (ret == 0)
994 goto next_page;
Eric Anholt40123c12009-03-09 13:42:30 -0700995
Daniel Vettere244a442012-03-25 19:47:28 +0200996 hit_slowpath = 1;
Daniel Vettere244a442012-03-25 19:47:28 +0200997 mutex_unlock(&dev->struct_mutex);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200998 ret = shmem_pwrite_slow(page, shmem_page_offset, page_length,
999 user_data, page_do_bit17_swizzling,
1000 partial_cacheline_write,
1001 needs_clflush_after);
Eric Anholt40123c12009-03-09 13:42:30 -07001002
Daniel Vettere244a442012-03-25 19:47:28 +02001003 mutex_lock(&dev->struct_mutex);
Chris Wilson755d2212012-09-04 21:02:55 +01001004
Chris Wilson755d2212012-09-04 21:02:55 +01001005 if (ret)
Daniel Vetter8c599672011-12-14 13:57:31 +01001006 goto out;
Daniel Vetter8c599672011-12-14 13:57:31 +01001007
Chris Wilson17793c92014-03-07 08:30:36 +00001008next_page:
Eric Anholt40123c12009-03-09 13:42:30 -07001009 remain -= page_length;
Daniel Vetter8c599672011-12-14 13:57:31 +01001010 user_data += page_length;
Eric Anholt40123c12009-03-09 13:42:30 -07001011 offset += page_length;
1012 }
1013
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001014out:
Chris Wilson755d2212012-09-04 21:02:55 +01001015 i915_gem_object_unpin_pages(obj);
1016
Daniel Vettere244a442012-03-25 19:47:28 +02001017 if (hit_slowpath) {
Daniel Vetter8dcf0152012-11-15 16:53:58 +01001018 /*
1019 * Fixup: Flush cpu caches in case we didn't flush the dirty
1020 * cachelines in-line while writing and the object moved
1021 * out of the cpu write domain while we've dropped the lock.
1022 */
1023 if (!needs_clflush_after &&
1024 obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
Chris Wilson000433b2013-08-08 14:41:09 +01001025 if (i915_gem_clflush_object(obj, obj->pin_display))
1026 i915_gem_chipset_flush(dev);
Daniel Vettere244a442012-03-25 19:47:28 +02001027 }
Daniel Vetter8c599672011-12-14 13:57:31 +01001028 }
Eric Anholt40123c12009-03-09 13:42:30 -07001029
Daniel Vetter58642882012-03-25 19:47:37 +02001030 if (needs_clflush_after)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08001031 i915_gem_chipset_flush(dev);
Daniel Vetter58642882012-03-25 19:47:37 +02001032
Eric Anholt40123c12009-03-09 13:42:30 -07001033 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001034}
1035
1036/**
1037 * Writes data to the object referenced by handle.
1038 *
1039 * On error, the contents of the buffer that were to be modified are undefined.
1040 */
1041int
1042i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001043 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001044{
Imre Deak5d77d9c2014-11-12 16:40:35 +02001045 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001046 struct drm_i915_gem_pwrite *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001047 struct drm_i915_gem_object *obj;
Chris Wilson51311d02010-11-17 09:10:42 +00001048 int ret;
1049
1050 if (args->size == 0)
1051 return 0;
1052
1053 if (!access_ok(VERIFY_READ,
Ville Syrjälä2bb46292013-02-22 16:12:51 +02001054 to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +00001055 args->size))
1056 return -EFAULT;
1057
Jani Nikulad330a952014-01-21 11:24:25 +02001058 if (likely(!i915.prefault_disable)) {
Xiong Zhang0b74b502013-07-19 13:51:24 +08001059 ret = fault_in_multipages_readable(to_user_ptr(args->data_ptr),
1060 args->size);
1061 if (ret)
1062 return -EFAULT;
1063 }
Eric Anholt673a3942008-07-30 12:06:12 -07001064
Imre Deak5d77d9c2014-11-12 16:40:35 +02001065 intel_runtime_pm_get(dev_priv);
1066
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001067 ret = i915_mutex_lock_interruptible(dev);
1068 if (ret)
Imre Deak5d77d9c2014-11-12 16:40:35 +02001069 goto put_rpm;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001070
Chris Wilson05394f32010-11-08 19:18:58 +00001071 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001072 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001073 ret = -ENOENT;
1074 goto unlock;
1075 }
Eric Anholt673a3942008-07-30 12:06:12 -07001076
Chris Wilson7dcd2492010-09-26 20:21:44 +01001077 /* Bounds check destination. */
Chris Wilson05394f32010-11-08 19:18:58 +00001078 if (args->offset > obj->base.size ||
1079 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +01001080 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +01001081 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +01001082 }
1083
Daniel Vetter1286ff72012-05-10 15:25:09 +02001084 /* prime objects have no backing filp to GEM pread/pwrite
1085 * pages from.
1086 */
1087 if (!obj->base.filp) {
1088 ret = -EINVAL;
1089 goto out;
1090 }
1091
Chris Wilsondb53a302011-02-03 11:57:46 +00001092 trace_i915_gem_object_pwrite(obj, args->offset, args->size);
1093
Daniel Vetter935aaa62012-03-25 19:47:35 +02001094 ret = -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -07001095 /* We can only do the GTT pwrite on untiled buffers, as otherwise
1096 * it would end up going through the fenced access, and we'll get
1097 * different detiling behavior between reading and writing.
1098 * pread/pwrite currently are reading and writing from the CPU
1099 * perspective, requiring manual detiling by the client.
1100 */
Chris Wilson2c225692013-08-09 12:26:45 +01001101 if (obj->tiling_mode == I915_TILING_NONE &&
1102 obj->base.write_domain != I915_GEM_DOMAIN_CPU &&
1103 cpu_write_needs_clflush(obj)) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001104 ret = i915_gem_gtt_pwrite_fast(dev, obj, args, file);
Daniel Vetter935aaa62012-03-25 19:47:35 +02001105 /* Note that the gtt paths might fail with non-page-backed user
1106 * pointers (e.g. gtt mappings when moving data between
1107 * textures). Fallback to the shmem path in that case. */
Eric Anholt40123c12009-03-09 13:42:30 -07001108 }
Eric Anholt673a3942008-07-30 12:06:12 -07001109
Chris Wilson6a2c4232014-11-04 04:51:40 -08001110 if (ret == -EFAULT || ret == -ENOSPC) {
1111 if (obj->phys_handle)
1112 ret = i915_gem_phys_pwrite(obj, args, file);
1113 else
1114 ret = i915_gem_shmem_pwrite(dev, obj, args, file);
1115 }
Daniel Vetter5c0480f2011-12-14 13:57:30 +01001116
Chris Wilson35b62a82010-09-26 20:23:38 +01001117out:
Chris Wilson05394f32010-11-08 19:18:58 +00001118 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001119unlock:
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001120 mutex_unlock(&dev->struct_mutex);
Imre Deak5d77d9c2014-11-12 16:40:35 +02001121put_rpm:
1122 intel_runtime_pm_put(dev_priv);
1123
Eric Anholt673a3942008-07-30 12:06:12 -07001124 return ret;
1125}
1126
Chris Wilsonb3612372012-08-24 09:35:08 +01001127int
Daniel Vetter33196de2012-11-14 17:14:05 +01001128i915_gem_check_wedge(struct i915_gpu_error *error,
Chris Wilsonb3612372012-08-24 09:35:08 +01001129 bool interruptible)
1130{
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001131 if (i915_reset_in_progress(error)) {
Chris Wilsonb3612372012-08-24 09:35:08 +01001132 /* Non-interruptible callers can't handle -EAGAIN, hence return
1133 * -EIO unconditionally for these. */
1134 if (!interruptible)
1135 return -EIO;
1136
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001137 /* Recovery complete, but the reset failed ... */
1138 if (i915_terminally_wedged(error))
Chris Wilsonb3612372012-08-24 09:35:08 +01001139 return -EIO;
1140
McAulay, Alistair6689c162014-08-15 18:51:35 +01001141 /*
1142 * Check if GPU Reset is in progress - we need intel_ring_begin
1143 * to work properly to reinit the hw state while the gpu is
1144 * still marked as reset-in-progress. Handle this with a flag.
1145 */
1146 if (!error->reload_in_reset)
1147 return -EAGAIN;
Chris Wilsonb3612372012-08-24 09:35:08 +01001148 }
1149
1150 return 0;
1151}
1152
1153/*
John Harrisonb6660d52014-11-24 18:49:30 +00001154 * Compare arbitrary request against outstanding lazy request. Emit on match.
Chris Wilsonb3612372012-08-24 09:35:08 +01001155 */
Sourab Gupta84c33a62014-06-02 16:47:17 +05301156int
John Harrisonb6660d52014-11-24 18:49:30 +00001157i915_gem_check_olr(struct drm_i915_gem_request *req)
Chris Wilsonb3612372012-08-24 09:35:08 +01001158{
1159 int ret;
1160
John Harrisonb6660d52014-11-24 18:49:30 +00001161 WARN_ON(!mutex_is_locked(&req->ring->dev->struct_mutex));
Chris Wilsonb3612372012-08-24 09:35:08 +01001162
1163 ret = 0;
John Harrisonb6660d52014-11-24 18:49:30 +00001164 if (req == req->ring->outstanding_lazy_request)
John Harrison9400ae52014-11-24 18:49:36 +00001165 ret = i915_add_request(req->ring);
Chris Wilsonb3612372012-08-24 09:35:08 +01001166
1167 return ret;
1168}
1169
Chris Wilson094f9a52013-09-25 17:34:55 +01001170static void fake_irq(unsigned long data)
1171{
1172 wake_up_process((struct task_struct *)data);
1173}
1174
1175static bool missed_irq(struct drm_i915_private *dev_priv,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001176 struct intel_engine_cs *ring)
Chris Wilson094f9a52013-09-25 17:34:55 +01001177{
1178 return test_bit(ring->id, &dev_priv->gpu_error.missed_irq_rings);
1179}
1180
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001181static bool can_wait_boost(struct drm_i915_file_private *file_priv)
1182{
1183 if (file_priv == NULL)
1184 return true;
1185
1186 return !atomic_xchg(&file_priv->rps_wait_boost, true);
1187}
1188
Chris Wilsonb3612372012-08-24 09:35:08 +01001189/**
John Harrison9c654812014-11-24 18:49:35 +00001190 * __i915_wait_request - wait until execution of request has finished
1191 * @req: duh!
1192 * @reset_counter: reset sequence associated with the given request
Chris Wilsonb3612372012-08-24 09:35:08 +01001193 * @interruptible: do an interruptible wait (normally yes)
1194 * @timeout: in - how long to wait (NULL forever); out - how much time remaining
1195 *
Daniel Vetterf69061b2012-12-06 09:01:42 +01001196 * Note: It is of utmost importance that the passed in seqno and reset_counter
1197 * values have been read by the caller in an smp safe manner. Where read-side
1198 * locks are involved, it is sufficient to read the reset_counter before
1199 * unlocking the lock that protects the seqno. For lockless tricks, the
1200 * reset_counter _must_ be read before, and an appropriate smp_rmb must be
1201 * inserted.
1202 *
John Harrison9c654812014-11-24 18:49:35 +00001203 * Returns 0 if the request was found within the alloted time. Else returns the
Chris Wilsonb3612372012-08-24 09:35:08 +01001204 * errno with remaining time filled in timeout argument.
1205 */
John Harrison9c654812014-11-24 18:49:35 +00001206int __i915_wait_request(struct drm_i915_gem_request *req,
Daniel Vetterf69061b2012-12-06 09:01:42 +01001207 unsigned reset_counter,
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001208 bool interruptible,
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001209 s64 *timeout,
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001210 struct drm_i915_file_private *file_priv)
Chris Wilsonb3612372012-08-24 09:35:08 +01001211{
John Harrison9c654812014-11-24 18:49:35 +00001212 struct intel_engine_cs *ring = i915_gem_request_get_ring(req);
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001213 struct drm_device *dev = ring->dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03001214 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001215 const bool irq_test_in_progress =
1216 ACCESS_ONCE(dev_priv->gpu_error.test_irq_rings) & intel_ring_flag(ring);
Chris Wilson094f9a52013-09-25 17:34:55 +01001217 DEFINE_WAIT(wait);
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001218 unsigned long timeout_expire;
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001219 s64 before, now;
Chris Wilsonb3612372012-08-24 09:35:08 +01001220 int ret;
1221
Jesse Barnes9df7575f2014-06-20 09:29:20 -07001222 WARN(!intel_irqs_enabled(dev_priv), "IRQs disabled");
Paulo Zanonic67a4702013-08-19 13:18:09 -03001223
John Harrison1b5a4332014-11-24 18:49:42 +00001224 if (i915_gem_request_completed(req, true))
Chris Wilsonb3612372012-08-24 09:35:08 +01001225 return 0;
1226
Daniel Vetter7bd0e222014-12-04 11:12:54 +01001227 timeout_expire = timeout ?
1228 jiffies + nsecs_to_jiffies_timeout((u64)*timeout) : 0;
Chris Wilsonb3612372012-08-24 09:35:08 +01001229
Chris Wilsonec5cc0f2014-06-12 10:28:55 +01001230 if (INTEL_INFO(dev)->gen >= 6 && ring->id == RCS && can_wait_boost(file_priv)) {
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001231 gen6_rps_boost(dev_priv);
1232 if (file_priv)
1233 mod_delayed_work(dev_priv->wq,
1234 &file_priv->mm.idle_work,
1235 msecs_to_jiffies(100));
1236 }
1237
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001238 if (!irq_test_in_progress && WARN_ON(!ring->irq_get(ring)))
Chris Wilsonb3612372012-08-24 09:35:08 +01001239 return -ENODEV;
1240
Chris Wilson094f9a52013-09-25 17:34:55 +01001241 /* Record current time in case interrupted by signal, or wedged */
John Harrison74328ee2014-11-24 18:49:38 +00001242 trace_i915_gem_request_wait_begin(req);
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001243 before = ktime_get_raw_ns();
Chris Wilson094f9a52013-09-25 17:34:55 +01001244 for (;;) {
1245 struct timer_list timer;
Chris Wilsonb3612372012-08-24 09:35:08 +01001246
Chris Wilson094f9a52013-09-25 17:34:55 +01001247 prepare_to_wait(&ring->irq_queue, &wait,
1248 interruptible ? TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE);
Chris Wilsonb3612372012-08-24 09:35:08 +01001249
Daniel Vetterf69061b2012-12-06 09:01:42 +01001250 /* We need to check whether any gpu reset happened in between
1251 * the caller grabbing the seqno and now ... */
Chris Wilson094f9a52013-09-25 17:34:55 +01001252 if (reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter)) {
1253 /* ... but upgrade the -EAGAIN to an -EIO if the gpu
1254 * is truely gone. */
1255 ret = i915_gem_check_wedge(&dev_priv->gpu_error, interruptible);
1256 if (ret == 0)
1257 ret = -EAGAIN;
1258 break;
1259 }
Daniel Vetterf69061b2012-12-06 09:01:42 +01001260
John Harrison1b5a4332014-11-24 18:49:42 +00001261 if (i915_gem_request_completed(req, false)) {
Chris Wilson094f9a52013-09-25 17:34:55 +01001262 ret = 0;
1263 break;
1264 }
Chris Wilsonb3612372012-08-24 09:35:08 +01001265
Chris Wilson094f9a52013-09-25 17:34:55 +01001266 if (interruptible && signal_pending(current)) {
1267 ret = -ERESTARTSYS;
1268 break;
1269 }
1270
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001271 if (timeout && time_after_eq(jiffies, timeout_expire)) {
Chris Wilson094f9a52013-09-25 17:34:55 +01001272 ret = -ETIME;
1273 break;
1274 }
1275
1276 timer.function = NULL;
1277 if (timeout || missed_irq(dev_priv, ring)) {
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001278 unsigned long expire;
1279
Chris Wilson094f9a52013-09-25 17:34:55 +01001280 setup_timer_on_stack(&timer, fake_irq, (unsigned long)current);
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001281 expire = missed_irq(dev_priv, ring) ? jiffies + 1 : timeout_expire;
Chris Wilson094f9a52013-09-25 17:34:55 +01001282 mod_timer(&timer, expire);
1283 }
1284
Chris Wilson5035c272013-10-04 09:58:46 +01001285 io_schedule();
Chris Wilson094f9a52013-09-25 17:34:55 +01001286
Chris Wilson094f9a52013-09-25 17:34:55 +01001287 if (timer.function) {
1288 del_singleshot_timer_sync(&timer);
1289 destroy_timer_on_stack(&timer);
1290 }
1291 }
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001292 now = ktime_get_raw_ns();
John Harrison74328ee2014-11-24 18:49:38 +00001293 trace_i915_gem_request_wait_end(req);
Chris Wilsonb3612372012-08-24 09:35:08 +01001294
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001295 if (!irq_test_in_progress)
1296 ring->irq_put(ring);
Chris Wilson094f9a52013-09-25 17:34:55 +01001297
1298 finish_wait(&ring->irq_queue, &wait);
Chris Wilsonb3612372012-08-24 09:35:08 +01001299
1300 if (timeout) {
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001301 s64 tres = *timeout - (now - before);
1302
1303 *timeout = tres < 0 ? 0 : tres;
Daniel Vetter9cca3062014-11-28 10:29:55 +01001304
1305 /*
1306 * Apparently ktime isn't accurate enough and occasionally has a
1307 * bit of mismatch in the jiffies<->nsecs<->ktime loop. So patch
1308 * things up to make the test happy. We allow up to 1 jiffy.
1309 *
1310 * This is a regrssion from the timespec->ktime conversion.
1311 */
1312 if (ret == -ETIME && *timeout < jiffies_to_usecs(1)*1000)
1313 *timeout = 0;
Chris Wilsonb3612372012-08-24 09:35:08 +01001314 }
1315
Chris Wilson094f9a52013-09-25 17:34:55 +01001316 return ret;
Chris Wilsonb3612372012-08-24 09:35:08 +01001317}
1318
1319/**
Daniel Vettera4b3a572014-11-26 14:17:05 +01001320 * Waits for a request to be signaled, and cleans up the
Chris Wilsonb3612372012-08-24 09:35:08 +01001321 * request and object lists appropriately for that event.
1322 */
1323int
Daniel Vettera4b3a572014-11-26 14:17:05 +01001324i915_wait_request(struct drm_i915_gem_request *req)
Chris Wilsonb3612372012-08-24 09:35:08 +01001325{
Daniel Vettera4b3a572014-11-26 14:17:05 +01001326 struct drm_device *dev;
1327 struct drm_i915_private *dev_priv;
1328 bool interruptible;
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001329 unsigned reset_counter;
Chris Wilsonb3612372012-08-24 09:35:08 +01001330 int ret;
1331
Daniel Vettera4b3a572014-11-26 14:17:05 +01001332 BUG_ON(req == NULL);
1333
1334 dev = req->ring->dev;
1335 dev_priv = dev->dev_private;
1336 interruptible = dev_priv->mm.interruptible;
1337
Chris Wilsonb3612372012-08-24 09:35:08 +01001338 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
Chris Wilsonb3612372012-08-24 09:35:08 +01001339
Daniel Vetter33196de2012-11-14 17:14:05 +01001340 ret = i915_gem_check_wedge(&dev_priv->gpu_error, interruptible);
Chris Wilsonb3612372012-08-24 09:35:08 +01001341 if (ret)
1342 return ret;
1343
Daniel Vettera4b3a572014-11-26 14:17:05 +01001344 ret = i915_gem_check_olr(req);
Chris Wilsonb3612372012-08-24 09:35:08 +01001345 if (ret)
1346 return ret;
1347
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001348 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Daniel Vettera4b3a572014-11-26 14:17:05 +01001349 i915_gem_request_reference(req);
John Harrison9c654812014-11-24 18:49:35 +00001350 ret = __i915_wait_request(req, reset_counter,
1351 interruptible, NULL, NULL);
Daniel Vettera4b3a572014-11-26 14:17:05 +01001352 i915_gem_request_unreference(req);
1353 return ret;
Chris Wilsonb3612372012-08-24 09:35:08 +01001354}
1355
Chris Wilsond26e3af2013-06-29 22:05:26 +01001356static int
John Harrison8e6395492014-10-30 18:40:53 +00001357i915_gem_object_wait_rendering__tail(struct drm_i915_gem_object *obj)
Chris Wilsond26e3af2013-06-29 22:05:26 +01001358{
Chris Wilsonc8725f32014-03-17 12:21:55 +00001359 if (!obj->active)
1360 return 0;
Chris Wilsond26e3af2013-06-29 22:05:26 +01001361
1362 /* Manually manage the write flush as we may have not yet
1363 * retired the buffer.
1364 *
John Harrison97b2a6a2014-11-24 18:49:26 +00001365 * Note that the last_write_req is always the earlier of
1366 * the two (read/write) requests, so if we haved successfully waited,
Chris Wilsond26e3af2013-06-29 22:05:26 +01001367 * we know we have passed the last write.
1368 */
John Harrison97b2a6a2014-11-24 18:49:26 +00001369 i915_gem_request_assign(&obj->last_write_req, NULL);
Chris Wilsond26e3af2013-06-29 22:05:26 +01001370
1371 return 0;
1372}
1373
Chris Wilsonb3612372012-08-24 09:35:08 +01001374/**
1375 * Ensures that all rendering to the object has completed and the object is
1376 * safe to unbind from the GTT or access from the CPU.
1377 */
1378static __must_check int
1379i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj,
1380 bool readonly)
1381{
John Harrison97b2a6a2014-11-24 18:49:26 +00001382 struct drm_i915_gem_request *req;
Chris Wilsonb3612372012-08-24 09:35:08 +01001383 int ret;
1384
John Harrison97b2a6a2014-11-24 18:49:26 +00001385 req = readonly ? obj->last_write_req : obj->last_read_req;
1386 if (!req)
Chris Wilsonb3612372012-08-24 09:35:08 +01001387 return 0;
1388
Daniel Vettera4b3a572014-11-26 14:17:05 +01001389 ret = i915_wait_request(req);
Chris Wilsonb3612372012-08-24 09:35:08 +01001390 if (ret)
1391 return ret;
1392
John Harrison8e6395492014-10-30 18:40:53 +00001393 return i915_gem_object_wait_rendering__tail(obj);
Chris Wilsonb3612372012-08-24 09:35:08 +01001394}
1395
Chris Wilson3236f572012-08-24 09:35:09 +01001396/* A nonblocking variant of the above wait. This is a highly dangerous routine
1397 * as the object state may change during this call.
1398 */
1399static __must_check int
1400i915_gem_object_wait_rendering__nonblocking(struct drm_i915_gem_object *obj,
Chris Wilson6e4930f2014-02-07 18:37:06 -02001401 struct drm_i915_file_private *file_priv,
Chris Wilson3236f572012-08-24 09:35:09 +01001402 bool readonly)
1403{
John Harrison97b2a6a2014-11-24 18:49:26 +00001404 struct drm_i915_gem_request *req;
Chris Wilson3236f572012-08-24 09:35:09 +01001405 struct drm_device *dev = obj->base.dev;
1406 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf69061b2012-12-06 09:01:42 +01001407 unsigned reset_counter;
Chris Wilson3236f572012-08-24 09:35:09 +01001408 int ret;
1409
1410 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
1411 BUG_ON(!dev_priv->mm.interruptible);
1412
John Harrison97b2a6a2014-11-24 18:49:26 +00001413 req = readonly ? obj->last_write_req : obj->last_read_req;
1414 if (!req)
Chris Wilson3236f572012-08-24 09:35:09 +01001415 return 0;
1416
Daniel Vetter33196de2012-11-14 17:14:05 +01001417 ret = i915_gem_check_wedge(&dev_priv->gpu_error, true);
Chris Wilson3236f572012-08-24 09:35:09 +01001418 if (ret)
1419 return ret;
1420
John Harrisonb6660d52014-11-24 18:49:30 +00001421 ret = i915_gem_check_olr(req);
Chris Wilson3236f572012-08-24 09:35:09 +01001422 if (ret)
1423 return ret;
1424
Daniel Vetterf69061b2012-12-06 09:01:42 +01001425 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
John Harrisonff865882014-11-24 18:49:28 +00001426 i915_gem_request_reference(req);
Chris Wilson3236f572012-08-24 09:35:09 +01001427 mutex_unlock(&dev->struct_mutex);
John Harrison9c654812014-11-24 18:49:35 +00001428 ret = __i915_wait_request(req, reset_counter, true, NULL, file_priv);
Chris Wilson3236f572012-08-24 09:35:09 +01001429 mutex_lock(&dev->struct_mutex);
John Harrisonff865882014-11-24 18:49:28 +00001430 i915_gem_request_unreference(req);
Chris Wilsond26e3af2013-06-29 22:05:26 +01001431 if (ret)
1432 return ret;
Chris Wilson3236f572012-08-24 09:35:09 +01001433
John Harrison8e6395492014-10-30 18:40:53 +00001434 return i915_gem_object_wait_rendering__tail(obj);
Chris Wilson3236f572012-08-24 09:35:09 +01001435}
1436
Eric Anholt673a3942008-07-30 12:06:12 -07001437/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001438 * Called when user space prepares to use an object with the CPU, either
1439 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -07001440 */
1441int
1442i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001443 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001444{
1445 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001446 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001447 uint32_t read_domains = args->read_domains;
1448 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07001449 int ret;
1450
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001451 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +01001452 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001453 return -EINVAL;
1454
Chris Wilson21d509e2009-06-06 09:46:02 +01001455 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001456 return -EINVAL;
1457
1458 /* Having something in the write domain implies it's in the read
1459 * domain, and only that read domain. Enforce that in the request.
1460 */
1461 if (write_domain != 0 && read_domains != write_domain)
1462 return -EINVAL;
1463
Chris Wilson76c1dec2010-09-25 11:22:51 +01001464 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001465 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001466 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001467
Chris Wilson05394f32010-11-08 19:18:58 +00001468 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001469 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001470 ret = -ENOENT;
1471 goto unlock;
Chris Wilson76c1dec2010-09-25 11:22:51 +01001472 }
Jesse Barnes652c3932009-08-17 13:31:43 -07001473
Chris Wilson3236f572012-08-24 09:35:09 +01001474 /* Try to flush the object off the GPU without holding the lock.
1475 * We will repeat the flush holding the lock in the normal manner
1476 * to catch cases where we are gazumped.
1477 */
Chris Wilson6e4930f2014-02-07 18:37:06 -02001478 ret = i915_gem_object_wait_rendering__nonblocking(obj,
1479 file->driver_priv,
1480 !write_domain);
Chris Wilson3236f572012-08-24 09:35:09 +01001481 if (ret)
1482 goto unref;
1483
Chris Wilson43566de2015-01-02 16:29:29 +05301484 if (read_domains & I915_GEM_DOMAIN_GTT)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001485 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Chris Wilson43566de2015-01-02 16:29:29 +05301486 else
Eric Anholte47c68e2008-11-14 13:35:19 -08001487 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001488
Chris Wilson3236f572012-08-24 09:35:09 +01001489unref:
Chris Wilson05394f32010-11-08 19:18:58 +00001490 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001491unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001492 mutex_unlock(&dev->struct_mutex);
1493 return ret;
1494}
1495
1496/**
1497 * Called when user space has done writes to this buffer
1498 */
1499int
1500i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001501 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001502{
1503 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001504 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001505 int ret = 0;
1506
Chris Wilson76c1dec2010-09-25 11:22:51 +01001507 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001508 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001509 return ret;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001510
Chris Wilson05394f32010-11-08 19:18:58 +00001511 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001512 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001513 ret = -ENOENT;
1514 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07001515 }
1516
Eric Anholt673a3942008-07-30 12:06:12 -07001517 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilson2c225692013-08-09 12:26:45 +01001518 if (obj->pin_display)
Daniel Vettere62b59e2015-01-21 14:53:48 +01001519 i915_gem_object_flush_cpu_write_domain(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08001520
Chris Wilson05394f32010-11-08 19:18:58 +00001521 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001522unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001523 mutex_unlock(&dev->struct_mutex);
1524 return ret;
1525}
1526
1527/**
1528 * Maps the contents of an object, returning the address it is mapped
1529 * into.
1530 *
1531 * While the mapping holds a reference on the contents of the object, it doesn't
1532 * imply a ref on the object itself.
Daniel Vetter34367382014-10-16 12:28:18 +02001533 *
1534 * IMPORTANT:
1535 *
1536 * DRM driver writers who look a this function as an example for how to do GEM
1537 * mmap support, please don't implement mmap support like here. The modern way
1538 * to implement DRM mmap support is with an mmap offset ioctl (like
1539 * i915_gem_mmap_gtt) and then using the mmap syscall on the DRM fd directly.
1540 * That way debug tooling like valgrind will understand what's going on, hiding
1541 * the mmap call in a driver private ioctl will break that. The i915 driver only
1542 * does cpu mmaps this way because we didn't know better.
Eric Anholt673a3942008-07-30 12:06:12 -07001543 */
1544int
1545i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001546 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001547{
1548 struct drm_i915_gem_mmap *args = data;
1549 struct drm_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001550 unsigned long addr;
1551
Akash Goel1816f922015-01-02 16:29:30 +05301552 if (args->flags & ~(I915_MMAP_WC))
1553 return -EINVAL;
1554
1555 if (args->flags & I915_MMAP_WC && !cpu_has_pat)
1556 return -ENODEV;
1557
Chris Wilson05394f32010-11-08 19:18:58 +00001558 obj = drm_gem_object_lookup(dev, file, args->handle);
Eric Anholt673a3942008-07-30 12:06:12 -07001559 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001560 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001561
Daniel Vetter1286ff72012-05-10 15:25:09 +02001562 /* prime objects have no backing filp to GEM mmap
1563 * pages from.
1564 */
1565 if (!obj->filp) {
1566 drm_gem_object_unreference_unlocked(obj);
1567 return -EINVAL;
1568 }
1569
Linus Torvalds6be5ceb2012-04-20 17:13:58 -07001570 addr = vm_mmap(obj->filp, 0, args->size,
Eric Anholt673a3942008-07-30 12:06:12 -07001571 PROT_READ | PROT_WRITE, MAP_SHARED,
1572 args->offset);
Akash Goel1816f922015-01-02 16:29:30 +05301573 if (args->flags & I915_MMAP_WC) {
1574 struct mm_struct *mm = current->mm;
1575 struct vm_area_struct *vma;
1576
1577 down_write(&mm->mmap_sem);
1578 vma = find_vma(mm, addr);
1579 if (vma)
1580 vma->vm_page_prot =
1581 pgprot_writecombine(vm_get_page_prot(vma->vm_flags));
1582 else
1583 addr = -ENOMEM;
1584 up_write(&mm->mmap_sem);
1585 }
Luca Barbieribc9025b2010-02-09 05:49:12 +00001586 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001587 if (IS_ERR((void *)addr))
1588 return addr;
1589
1590 args->addr_ptr = (uint64_t) addr;
1591
1592 return 0;
1593}
1594
Jesse Barnesde151cf2008-11-12 10:03:55 -08001595/**
1596 * i915_gem_fault - fault a page into the GTT
1597 * vma: VMA in question
1598 * vmf: fault info
1599 *
1600 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1601 * from userspace. The fault handler takes care of binding the object to
1602 * the GTT (if needed), allocating and programming a fence register (again,
1603 * only if needed based on whether the old reg is still valid or the object
1604 * is tiled) and inserting a new PTE into the faulting process.
1605 *
1606 * Note that the faulting process may involve evicting existing objects
1607 * from the GTT and/or fence registers to make room. So performance may
1608 * suffer if the GTT working set is large or there are few fence registers
1609 * left.
1610 */
1611int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1612{
Chris Wilson05394f32010-11-08 19:18:58 +00001613 struct drm_i915_gem_object *obj = to_intel_bo(vma->vm_private_data);
1614 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03001615 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001616 pgoff_t page_offset;
1617 unsigned long pfn;
1618 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001619 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001620
Paulo Zanonif65c9162013-11-27 18:20:34 -02001621 intel_runtime_pm_get(dev_priv);
1622
Jesse Barnesde151cf2008-11-12 10:03:55 -08001623 /* We don't use vmf->pgoff since that has the fake offset */
1624 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1625 PAGE_SHIFT;
1626
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001627 ret = i915_mutex_lock_interruptible(dev);
1628 if (ret)
1629 goto out;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001630
Chris Wilsondb53a302011-02-03 11:57:46 +00001631 trace_i915_gem_object_fault(obj, page_offset, true, write);
1632
Chris Wilson6e4930f2014-02-07 18:37:06 -02001633 /* Try to flush the object off the GPU first without holding the lock.
1634 * Upon reacquiring the lock, we will perform our sanity checks and then
1635 * repeat the flush holding the lock in the normal manner to catch cases
1636 * where we are gazumped.
1637 */
1638 ret = i915_gem_object_wait_rendering__nonblocking(obj, NULL, !write);
1639 if (ret)
1640 goto unlock;
1641
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001642 /* Access to snoopable pages through the GTT is incoherent. */
1643 if (obj->cache_level != I915_CACHE_NONE && !HAS_LLC(dev)) {
Chris Wilsonddeff6e2014-05-28 16:16:41 +01001644 ret = -EFAULT;
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001645 goto unlock;
1646 }
1647
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001648 /* Now bind it into the GTT if needed */
Daniel Vetter1ec9e262014-02-14 14:01:11 +01001649 ret = i915_gem_obj_ggtt_pin(obj, 0, PIN_MAPPABLE);
Chris Wilsond9e86c02010-11-10 16:40:20 +00001650 if (ret)
1651 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001652
Chris Wilsonc9839302012-11-20 10:45:17 +00001653 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1654 if (ret)
1655 goto unpin;
1656
1657 ret = i915_gem_object_get_fence(obj);
1658 if (ret)
1659 goto unpin;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001660
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001661 /* Finally, remap it using the new GTT offset */
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001662 pfn = dev_priv->gtt.mappable_base + i915_gem_obj_ggtt_offset(obj);
1663 pfn >>= PAGE_SHIFT;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001664
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001665 if (!obj->fault_mappable) {
Ville Syrjäläbeff0d02014-06-17 21:03:00 +03001666 unsigned long size = min_t(unsigned long,
1667 vma->vm_end - vma->vm_start,
1668 obj->base.size);
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001669 int i;
1670
Ville Syrjäläbeff0d02014-06-17 21:03:00 +03001671 for (i = 0; i < size >> PAGE_SHIFT; i++) {
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001672 ret = vm_insert_pfn(vma,
1673 (unsigned long)vma->vm_start + i * PAGE_SIZE,
1674 pfn + i);
1675 if (ret)
1676 break;
1677 }
1678
1679 obj->fault_mappable = true;
1680 } else
1681 ret = vm_insert_pfn(vma,
1682 (unsigned long)vmf->virtual_address,
1683 pfn + page_offset);
Chris Wilsonc9839302012-11-20 10:45:17 +00001684unpin:
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08001685 i915_gem_object_ggtt_unpin(obj);
Chris Wilsonc7150892009-09-23 00:43:56 +01001686unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001687 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001688out:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001689 switch (ret) {
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001690 case -EIO:
Daniel Vetter2232f032014-09-04 09:36:18 +02001691 /*
1692 * We eat errors when the gpu is terminally wedged to avoid
1693 * userspace unduly crashing (gl has no provisions for mmaps to
1694 * fail). But any other -EIO isn't ours (e.g. swap in failure)
1695 * and so needs to be reported.
1696 */
1697 if (!i915_terminally_wedged(&dev_priv->gpu_error)) {
Paulo Zanonif65c9162013-11-27 18:20:34 -02001698 ret = VM_FAULT_SIGBUS;
1699 break;
1700 }
Chris Wilson045e7692010-11-07 09:18:22 +00001701 case -EAGAIN:
Daniel Vetter571c6082013-09-12 17:57:28 +02001702 /*
1703 * EAGAIN means the gpu is hung and we'll wait for the error
1704 * handler to reset everything when re-faulting in
1705 * i915_mutex_lock_interruptible.
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001706 */
Chris Wilsonc7150892009-09-23 00:43:56 +01001707 case 0:
1708 case -ERESTARTSYS:
Chris Wilsonbed636a2011-02-11 20:31:19 +00001709 case -EINTR:
Dmitry Rogozhkine79e0fe2012-10-03 17:15:26 +03001710 case -EBUSY:
1711 /*
1712 * EBUSY is ok: this just means that another thread
1713 * already did the job.
1714 */
Paulo Zanonif65c9162013-11-27 18:20:34 -02001715 ret = VM_FAULT_NOPAGE;
1716 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001717 case -ENOMEM:
Paulo Zanonif65c9162013-11-27 18:20:34 -02001718 ret = VM_FAULT_OOM;
1719 break;
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001720 case -ENOSPC:
Chris Wilson45d67812014-01-31 11:34:57 +00001721 case -EFAULT:
Paulo Zanonif65c9162013-11-27 18:20:34 -02001722 ret = VM_FAULT_SIGBUS;
1723 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001724 default:
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001725 WARN_ONCE(ret, "unhandled error in i915_gem_fault: %i\n", ret);
Paulo Zanonif65c9162013-11-27 18:20:34 -02001726 ret = VM_FAULT_SIGBUS;
1727 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001728 }
Paulo Zanonif65c9162013-11-27 18:20:34 -02001729
1730 intel_runtime_pm_put(dev_priv);
1731 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001732}
1733
1734/**
Chris Wilson901782b2009-07-10 08:18:50 +01001735 * i915_gem_release_mmap - remove physical page mappings
1736 * @obj: obj in question
1737 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001738 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001739 * relinquish ownership of the pages back to the system.
1740 *
1741 * It is vital that we remove the page mapping if we have mapped a tiled
1742 * object through the GTT and then lose the fence register due to
1743 * resource pressure. Similarly if the object has been moved out of the
1744 * aperture, than pages mapped into userspace must be revoked. Removing the
1745 * mapping will then trigger a page fault on the next user access, allowing
1746 * fixup by i915_gem_fault().
1747 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001748void
Chris Wilson05394f32010-11-08 19:18:58 +00001749i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01001750{
Chris Wilson6299f992010-11-24 12:23:44 +00001751 if (!obj->fault_mappable)
1752 return;
Chris Wilson901782b2009-07-10 08:18:50 +01001753
David Herrmann6796cb12014-01-03 14:24:19 +01001754 drm_vma_node_unmap(&obj->base.vma_node,
1755 obj->base.dev->anon_inode->i_mapping);
Chris Wilson6299f992010-11-24 12:23:44 +00001756 obj->fault_mappable = false;
Chris Wilson901782b2009-07-10 08:18:50 +01001757}
1758
Chris Wilsoneedd10f2014-06-16 08:57:44 +01001759void
1760i915_gem_release_all_mmaps(struct drm_i915_private *dev_priv)
1761{
1762 struct drm_i915_gem_object *obj;
1763
1764 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list)
1765 i915_gem_release_mmap(obj);
1766}
1767
Imre Deak0fa87792013-01-07 21:47:35 +02001768uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001769i915_gem_get_gtt_size(struct drm_device *dev, uint32_t size, int tiling_mode)
Chris Wilson92b88ae2010-11-09 11:47:32 +00001770{
Chris Wilsone28f8712011-07-18 13:11:49 -07001771 uint32_t gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001772
1773 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001774 tiling_mode == I915_TILING_NONE)
1775 return size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001776
1777 /* Previous chips need a power-of-two fence region when tiling */
1778 if (INTEL_INFO(dev)->gen == 3)
Chris Wilsone28f8712011-07-18 13:11:49 -07001779 gtt_size = 1024*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001780 else
Chris Wilsone28f8712011-07-18 13:11:49 -07001781 gtt_size = 512*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001782
Chris Wilsone28f8712011-07-18 13:11:49 -07001783 while (gtt_size < size)
1784 gtt_size <<= 1;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001785
Chris Wilsone28f8712011-07-18 13:11:49 -07001786 return gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001787}
1788
Jesse Barnesde151cf2008-11-12 10:03:55 -08001789/**
1790 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1791 * @obj: object to check
1792 *
1793 * Return the required GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01001794 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08001795 */
Imre Deakd8651102013-01-07 21:47:33 +02001796uint32_t
1797i915_gem_get_gtt_alignment(struct drm_device *dev, uint32_t size,
1798 int tiling_mode, bool fenced)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001799{
Jesse Barnesde151cf2008-11-12 10:03:55 -08001800 /*
1801 * Minimum alignment is 4k (GTT page size), but might be greater
1802 * if a fence register is needed for the object.
1803 */
Imre Deakd8651102013-01-07 21:47:33 +02001804 if (INTEL_INFO(dev)->gen >= 4 || (!fenced && IS_G33(dev)) ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001805 tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001806 return 4096;
1807
1808 /*
1809 * Previous chips need to be aligned to the size of the smallest
1810 * fence register that can contain the object.
1811 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001812 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01001813}
1814
Chris Wilsond8cb5082012-08-11 15:41:03 +01001815static int i915_gem_object_create_mmap_offset(struct drm_i915_gem_object *obj)
1816{
1817 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
1818 int ret;
1819
David Herrmann0de23972013-07-24 21:07:52 +02001820 if (drm_vma_node_has_offset(&obj->base.vma_node))
Chris Wilsond8cb5082012-08-11 15:41:03 +01001821 return 0;
1822
Daniel Vetterda494d72012-12-20 15:11:16 +01001823 dev_priv->mm.shrinker_no_lock_stealing = true;
1824
Chris Wilsond8cb5082012-08-11 15:41:03 +01001825 ret = drm_gem_create_mmap_offset(&obj->base);
1826 if (ret != -ENOSPC)
Daniel Vetterda494d72012-12-20 15:11:16 +01001827 goto out;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001828
1829 /* Badly fragmented mmap space? The only way we can recover
1830 * space is by destroying unwanted objects. We can't randomly release
1831 * mmap_offsets as userspace expects them to be persistent for the
1832 * lifetime of the objects. The closest we can is to release the
1833 * offsets on purgeable objects by truncating it and marking it purged,
1834 * which prevents userspace from ever using that object again.
1835 */
Chris Wilson21ab4e72014-09-09 11:16:08 +01001836 i915_gem_shrink(dev_priv,
1837 obj->base.size >> PAGE_SHIFT,
1838 I915_SHRINK_BOUND |
1839 I915_SHRINK_UNBOUND |
1840 I915_SHRINK_PURGEABLE);
Chris Wilsond8cb5082012-08-11 15:41:03 +01001841 ret = drm_gem_create_mmap_offset(&obj->base);
1842 if (ret != -ENOSPC)
Daniel Vetterda494d72012-12-20 15:11:16 +01001843 goto out;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001844
1845 i915_gem_shrink_all(dev_priv);
Daniel Vetterda494d72012-12-20 15:11:16 +01001846 ret = drm_gem_create_mmap_offset(&obj->base);
1847out:
1848 dev_priv->mm.shrinker_no_lock_stealing = false;
1849
1850 return ret;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001851}
1852
1853static void i915_gem_object_free_mmap_offset(struct drm_i915_gem_object *obj)
1854{
Chris Wilsond8cb5082012-08-11 15:41:03 +01001855 drm_gem_free_mmap_offset(&obj->base);
1856}
1857
Dave Airlieda6b51d2014-12-24 13:11:17 +10001858int
Dave Airlieff72145b2011-02-07 12:16:14 +10001859i915_gem_mmap_gtt(struct drm_file *file,
1860 struct drm_device *dev,
Dave Airlieda6b51d2014-12-24 13:11:17 +10001861 uint32_t handle,
Dave Airlieff72145b2011-02-07 12:16:14 +10001862 uint64_t *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001863{
Chris Wilsonda761a62010-10-27 17:37:08 +01001864 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001865 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001866 int ret;
1867
Chris Wilson76c1dec2010-09-25 11:22:51 +01001868 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001869 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001870 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001871
Dave Airlieff72145b2011-02-07 12:16:14 +10001872 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001873 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001874 ret = -ENOENT;
1875 goto unlock;
1876 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001877
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001878 if (obj->base.size > dev_priv->gtt.mappable_end) {
Chris Wilsonda761a62010-10-27 17:37:08 +01001879 ret = -E2BIG;
Eric Anholtff56b0b2011-10-31 23:16:21 -07001880 goto out;
Chris Wilsonda761a62010-10-27 17:37:08 +01001881 }
1882
Chris Wilson05394f32010-11-08 19:18:58 +00001883 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00001884 DRM_DEBUG("Attempting to mmap a purgeable buffer\n");
Chris Wilson8c99e572014-01-31 11:34:58 +00001885 ret = -EFAULT;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001886 goto out;
Chris Wilsonab182822009-09-22 18:46:17 +01001887 }
1888
Chris Wilsond8cb5082012-08-11 15:41:03 +01001889 ret = i915_gem_object_create_mmap_offset(obj);
1890 if (ret)
1891 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001892
David Herrmann0de23972013-07-24 21:07:52 +02001893 *offset = drm_vma_node_offset_addr(&obj->base.vma_node);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001894
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001895out:
Chris Wilson05394f32010-11-08 19:18:58 +00001896 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001897unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001898 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001899 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001900}
1901
Dave Airlieff72145b2011-02-07 12:16:14 +10001902/**
1903 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1904 * @dev: DRM device
1905 * @data: GTT mapping ioctl data
1906 * @file: GEM object info
1907 *
1908 * Simply returns the fake offset to userspace so it can mmap it.
1909 * The mmap call will end up in drm_gem_mmap(), which will set things
1910 * up so we can get faults in the handler above.
1911 *
1912 * The fault handler will take care of binding the object into the GTT
1913 * (since it may have been evicted to make room for something), allocating
1914 * a fence register, and mapping the appropriate aperture address into
1915 * userspace.
1916 */
1917int
1918i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
1919 struct drm_file *file)
1920{
1921 struct drm_i915_gem_mmap_gtt *args = data;
1922
Dave Airlieda6b51d2014-12-24 13:11:17 +10001923 return i915_gem_mmap_gtt(file, dev, args->handle, &args->offset);
Dave Airlieff72145b2011-02-07 12:16:14 +10001924}
1925
Chris Wilson55372522014-03-25 13:23:06 +00001926static inline int
1927i915_gem_object_is_purgeable(struct drm_i915_gem_object *obj)
1928{
1929 return obj->madv == I915_MADV_DONTNEED;
1930}
1931
Daniel Vetter225067e2012-08-20 10:23:20 +02001932/* Immediately discard the backing storage */
1933static void
1934i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001935{
Chris Wilson4d6294bf2012-08-11 15:41:05 +01001936 i915_gem_object_free_mmap_offset(obj);
Daniel Vetter1286ff72012-05-10 15:25:09 +02001937
Chris Wilson4d6294bf2012-08-11 15:41:05 +01001938 if (obj->base.filp == NULL)
1939 return;
1940
Daniel Vetter225067e2012-08-20 10:23:20 +02001941 /* Our goal here is to return as much of the memory as
1942 * is possible back to the system as we are called from OOM.
1943 * To do this we must instruct the shmfs to drop all of its
1944 * backing pages, *now*.
Chris Wilsone5281cc2010-10-28 13:45:36 +01001945 */
Chris Wilson55372522014-03-25 13:23:06 +00001946 shmem_truncate_range(file_inode(obj->base.filp), 0, (loff_t)-1);
Daniel Vetter225067e2012-08-20 10:23:20 +02001947 obj->madv = __I915_MADV_PURGED;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001948}
Chris Wilsone5281cc2010-10-28 13:45:36 +01001949
Chris Wilson55372522014-03-25 13:23:06 +00001950/* Try to discard unwanted pages */
1951static void
1952i915_gem_object_invalidate(struct drm_i915_gem_object *obj)
Daniel Vetter225067e2012-08-20 10:23:20 +02001953{
Chris Wilson55372522014-03-25 13:23:06 +00001954 struct address_space *mapping;
1955
1956 switch (obj->madv) {
1957 case I915_MADV_DONTNEED:
1958 i915_gem_object_truncate(obj);
1959 case __I915_MADV_PURGED:
1960 return;
1961 }
1962
1963 if (obj->base.filp == NULL)
1964 return;
1965
1966 mapping = file_inode(obj->base.filp)->i_mapping,
1967 invalidate_mapping_pages(mapping, 0, (loff_t)-1);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001968}
1969
Chris Wilson5cdf5882010-09-27 15:51:07 +01001970static void
Chris Wilson05394f32010-11-08 19:18:58 +00001971i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001972{
Imre Deak90797e62013-02-18 19:28:03 +02001973 struct sg_page_iter sg_iter;
1974 int ret;
Daniel Vetter1286ff72012-05-10 15:25:09 +02001975
Chris Wilson05394f32010-11-08 19:18:58 +00001976 BUG_ON(obj->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07001977
Chris Wilson6c085a72012-08-20 11:40:46 +02001978 ret = i915_gem_object_set_to_cpu_domain(obj, true);
1979 if (ret) {
1980 /* In the event of a disaster, abandon all caches and
1981 * hope for the best.
1982 */
1983 WARN_ON(ret != -EIO);
Chris Wilson2c225692013-08-09 12:26:45 +01001984 i915_gem_clflush_object(obj, true);
Chris Wilson6c085a72012-08-20 11:40:46 +02001985 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
1986 }
1987
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001988 if (i915_gem_object_needs_bit17_swizzle(obj))
Eric Anholt280b7132009-03-12 16:56:27 -07001989 i915_gem_object_save_bit_17_swizzle(obj);
1990
Chris Wilson05394f32010-11-08 19:18:58 +00001991 if (obj->madv == I915_MADV_DONTNEED)
1992 obj->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01001993
Imre Deak90797e62013-02-18 19:28:03 +02001994 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents, 0) {
Imre Deak2db76d72013-03-26 15:14:18 +02001995 struct page *page = sg_page_iter_page(&sg_iter);
Chris Wilson9da3da62012-06-01 15:20:22 +01001996
Chris Wilson05394f32010-11-08 19:18:58 +00001997 if (obj->dirty)
Chris Wilson9da3da62012-06-01 15:20:22 +01001998 set_page_dirty(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001999
Chris Wilson05394f32010-11-08 19:18:58 +00002000 if (obj->madv == I915_MADV_WILLNEED)
Chris Wilson9da3da62012-06-01 15:20:22 +01002001 mark_page_accessed(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01002002
Chris Wilson9da3da62012-06-01 15:20:22 +01002003 page_cache_release(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01002004 }
Chris Wilson05394f32010-11-08 19:18:58 +00002005 obj->dirty = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002006
Chris Wilson9da3da62012-06-01 15:20:22 +01002007 sg_free_table(obj->pages);
2008 kfree(obj->pages);
Chris Wilson37e680a2012-06-07 15:38:42 +01002009}
2010
Chris Wilsondd624af2013-01-15 12:39:35 +00002011int
Chris Wilson37e680a2012-06-07 15:38:42 +01002012i915_gem_object_put_pages(struct drm_i915_gem_object *obj)
2013{
2014 const struct drm_i915_gem_object_ops *ops = obj->ops;
2015
Chris Wilson2f745ad2012-09-04 21:02:58 +01002016 if (obj->pages == NULL)
Chris Wilson37e680a2012-06-07 15:38:42 +01002017 return 0;
2018
Chris Wilsona5570172012-09-04 21:02:54 +01002019 if (obj->pages_pin_count)
2020 return -EBUSY;
2021
Ben Widawsky98438772013-07-31 17:00:12 -07002022 BUG_ON(i915_gem_obj_bound_any(obj));
Ben Widawsky3e123022013-07-31 17:00:04 -07002023
Chris Wilsona2165e32012-12-03 11:49:00 +00002024 /* ->put_pages might need to allocate memory for the bit17 swizzle
2025 * array, hence protect them from being reaped by removing them from gtt
2026 * lists early. */
Ben Widawsky35c20a62013-05-31 11:28:48 -07002027 list_del(&obj->global_list);
Chris Wilsona2165e32012-12-03 11:49:00 +00002028
Chris Wilson37e680a2012-06-07 15:38:42 +01002029 ops->put_pages(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002030 obj->pages = NULL;
Chris Wilson6c085a72012-08-20 11:40:46 +02002031
Chris Wilson55372522014-03-25 13:23:06 +00002032 i915_gem_object_invalidate(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02002033
2034 return 0;
2035}
2036
Chris Wilson21ab4e72014-09-09 11:16:08 +01002037unsigned long
2038i915_gem_shrink(struct drm_i915_private *dev_priv,
2039 long target, unsigned flags)
Chris Wilson6c085a72012-08-20 11:40:46 +02002040{
Chris Wilson60a53722014-10-03 10:29:51 +01002041 const struct {
2042 struct list_head *list;
2043 unsigned int bit;
2044 } phases[] = {
2045 { &dev_priv->mm.unbound_list, I915_SHRINK_UNBOUND },
2046 { &dev_priv->mm.bound_list, I915_SHRINK_BOUND },
2047 { NULL, 0 },
2048 }, *phase;
Chris Wilsond9973b42013-10-04 10:33:00 +01002049 unsigned long count = 0;
Chris Wilson6c085a72012-08-20 11:40:46 +02002050
Chris Wilson57094f82013-09-04 10:45:50 +01002051 /*
Chris Wilsonc8725f32014-03-17 12:21:55 +00002052 * As we may completely rewrite the (un)bound list whilst unbinding
Chris Wilson57094f82013-09-04 10:45:50 +01002053 * (due to retiring requests) we have to strictly process only
2054 * one element of the list at the time, and recheck the list
2055 * on every iteration.
Chris Wilsonc8725f32014-03-17 12:21:55 +00002056 *
2057 * In particular, we must hold a reference whilst removing the
2058 * object as we may end up waiting for and/or retiring the objects.
2059 * This might release the final reference (held by the active list)
2060 * and result in the object being freed from under us. This is
2061 * similar to the precautions the eviction code must take whilst
2062 * removing objects.
2063 *
2064 * Also note that although these lists do not hold a reference to
2065 * the object we can safely grab one here: The final object
2066 * unreferencing and the bound_list are both protected by the
2067 * dev->struct_mutex and so we won't ever be able to observe an
2068 * object on the bound_list with a reference count equals 0.
Chris Wilson57094f82013-09-04 10:45:50 +01002069 */
Chris Wilson60a53722014-10-03 10:29:51 +01002070 for (phase = phases; phase->list; phase++) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002071 struct list_head still_in_list;
Chris Wilsonc8725f32014-03-17 12:21:55 +00002072
Chris Wilson60a53722014-10-03 10:29:51 +01002073 if ((flags & phase->bit) == 0)
2074 continue;
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07002075
Chris Wilson21ab4e72014-09-09 11:16:08 +01002076 INIT_LIST_HEAD(&still_in_list);
Chris Wilson60a53722014-10-03 10:29:51 +01002077 while (count < target && !list_empty(phase->list)) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002078 struct drm_i915_gem_object *obj;
2079 struct i915_vma *vma, *v;
Chris Wilson57094f82013-09-04 10:45:50 +01002080
Chris Wilson60a53722014-10-03 10:29:51 +01002081 obj = list_first_entry(phase->list,
Chris Wilson21ab4e72014-09-09 11:16:08 +01002082 typeof(*obj), global_list);
2083 list_move_tail(&obj->global_list, &still_in_list);
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07002084
Chris Wilson60a53722014-10-03 10:29:51 +01002085 if (flags & I915_SHRINK_PURGEABLE &&
2086 !i915_gem_object_is_purgeable(obj))
Chris Wilson21ab4e72014-09-09 11:16:08 +01002087 continue;
Chris Wilson57094f82013-09-04 10:45:50 +01002088
Chris Wilson21ab4e72014-09-09 11:16:08 +01002089 drm_gem_object_reference(&obj->base);
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07002090
Chris Wilson60a53722014-10-03 10:29:51 +01002091 /* For the unbound phase, this should be a no-op! */
2092 list_for_each_entry_safe(vma, v,
2093 &obj->vma_list, vma_link)
Chris Wilson21ab4e72014-09-09 11:16:08 +01002094 if (i915_vma_unbind(vma))
2095 break;
Chris Wilson57094f82013-09-04 10:45:50 +01002096
Chris Wilson21ab4e72014-09-09 11:16:08 +01002097 if (i915_gem_object_put_pages(obj) == 0)
2098 count += obj->base.size >> PAGE_SHIFT;
2099
2100 drm_gem_object_unreference(&obj->base);
2101 }
Chris Wilson60a53722014-10-03 10:29:51 +01002102 list_splice(&still_in_list, phase->list);
Chris Wilson6c085a72012-08-20 11:40:46 +02002103 }
2104
2105 return count;
2106}
2107
Chris Wilsond9973b42013-10-04 10:33:00 +01002108static unsigned long
Chris Wilson6c085a72012-08-20 11:40:46 +02002109i915_gem_shrink_all(struct drm_i915_private *dev_priv)
2110{
Chris Wilson6c085a72012-08-20 11:40:46 +02002111 i915_gem_evict_everything(dev_priv->dev);
Chris Wilson21ab4e72014-09-09 11:16:08 +01002112 return i915_gem_shrink(dev_priv, LONG_MAX,
2113 I915_SHRINK_BOUND | I915_SHRINK_UNBOUND);
Daniel Vetter225067e2012-08-20 10:23:20 +02002114}
2115
Chris Wilson37e680a2012-06-07 15:38:42 +01002116static int
Chris Wilson6c085a72012-08-20 11:40:46 +02002117i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002118{
Chris Wilson6c085a72012-08-20 11:40:46 +02002119 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002120 int page_count, i;
2121 struct address_space *mapping;
Chris Wilson9da3da62012-06-01 15:20:22 +01002122 struct sg_table *st;
2123 struct scatterlist *sg;
Imre Deak90797e62013-02-18 19:28:03 +02002124 struct sg_page_iter sg_iter;
Eric Anholt673a3942008-07-30 12:06:12 -07002125 struct page *page;
Imre Deak90797e62013-02-18 19:28:03 +02002126 unsigned long last_pfn = 0; /* suppress gcc warning */
Chris Wilson6c085a72012-08-20 11:40:46 +02002127 gfp_t gfp;
Eric Anholt673a3942008-07-30 12:06:12 -07002128
Chris Wilson6c085a72012-08-20 11:40:46 +02002129 /* Assert that the object is not currently in any GPU domain. As it
2130 * wasn't in the GTT, there shouldn't be any way it could have been in
2131 * a GPU cache
2132 */
2133 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
2134 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
2135
Chris Wilson9da3da62012-06-01 15:20:22 +01002136 st = kmalloc(sizeof(*st), GFP_KERNEL);
2137 if (st == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002138 return -ENOMEM;
2139
Chris Wilson9da3da62012-06-01 15:20:22 +01002140 page_count = obj->base.size / PAGE_SIZE;
2141 if (sg_alloc_table(st, page_count, GFP_KERNEL)) {
Chris Wilson9da3da62012-06-01 15:20:22 +01002142 kfree(st);
2143 return -ENOMEM;
2144 }
2145
2146 /* Get the list of pages out of our struct file. They'll be pinned
2147 * at this point until we release them.
2148 *
2149 * Fail silently without starting the shrinker
2150 */
Al Viro496ad9a2013-01-23 17:07:38 -05002151 mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilson6c085a72012-08-20 11:40:46 +02002152 gfp = mapping_gfp_mask(mapping);
Linus Torvaldscaf49192012-12-10 10:51:16 -08002153 gfp |= __GFP_NORETRY | __GFP_NOWARN | __GFP_NO_KSWAPD;
Chris Wilson6c085a72012-08-20 11:40:46 +02002154 gfp &= ~(__GFP_IO | __GFP_WAIT);
Imre Deak90797e62013-02-18 19:28:03 +02002155 sg = st->sgl;
2156 st->nents = 0;
2157 for (i = 0; i < page_count; i++) {
Chris Wilson6c085a72012-08-20 11:40:46 +02002158 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
2159 if (IS_ERR(page)) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002160 i915_gem_shrink(dev_priv,
2161 page_count,
2162 I915_SHRINK_BOUND |
2163 I915_SHRINK_UNBOUND |
2164 I915_SHRINK_PURGEABLE);
Chris Wilson6c085a72012-08-20 11:40:46 +02002165 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
2166 }
2167 if (IS_ERR(page)) {
2168 /* We've tried hard to allocate the memory by reaping
2169 * our own buffer, now let the real VM do its job and
2170 * go down in flames if truly OOM.
2171 */
Chris Wilson6c085a72012-08-20 11:40:46 +02002172 i915_gem_shrink_all(dev_priv);
David Herrmannf461d1b2014-05-25 14:34:10 +02002173 page = shmem_read_mapping_page(mapping, i);
Chris Wilson6c085a72012-08-20 11:40:46 +02002174 if (IS_ERR(page))
2175 goto err_pages;
Chris Wilson6c085a72012-08-20 11:40:46 +02002176 }
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04002177#ifdef CONFIG_SWIOTLB
2178 if (swiotlb_nr_tbl()) {
2179 st->nents++;
2180 sg_set_page(sg, page, PAGE_SIZE, 0);
2181 sg = sg_next(sg);
2182 continue;
2183 }
2184#endif
Imre Deak90797e62013-02-18 19:28:03 +02002185 if (!i || page_to_pfn(page) != last_pfn + 1) {
2186 if (i)
2187 sg = sg_next(sg);
2188 st->nents++;
2189 sg_set_page(sg, page, PAGE_SIZE, 0);
2190 } else {
2191 sg->length += PAGE_SIZE;
2192 }
2193 last_pfn = page_to_pfn(page);
Daniel Vetter3bbbe702013-10-07 17:15:45 -03002194
2195 /* Check that the i965g/gm workaround works. */
2196 WARN_ON((gfp & __GFP_DMA32) && (last_pfn >= 0x00100000UL));
Eric Anholt673a3942008-07-30 12:06:12 -07002197 }
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04002198#ifdef CONFIG_SWIOTLB
2199 if (!swiotlb_nr_tbl())
2200#endif
2201 sg_mark_end(sg);
Chris Wilson74ce6b62012-10-19 15:51:06 +01002202 obj->pages = st;
2203
Eric Anholt673a3942008-07-30 12:06:12 -07002204 if (i915_gem_object_needs_bit17_swizzle(obj))
2205 i915_gem_object_do_bit_17_swizzle(obj);
2206
Daniel Vetter656bfa32014-11-20 09:26:30 +01002207 if (obj->tiling_mode != I915_TILING_NONE &&
2208 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES)
2209 i915_gem_object_pin_pages(obj);
2210
Eric Anholt673a3942008-07-30 12:06:12 -07002211 return 0;
2212
2213err_pages:
Imre Deak90797e62013-02-18 19:28:03 +02002214 sg_mark_end(sg);
2215 for_each_sg_page(st->sgl, &sg_iter, st->nents, 0)
Imre Deak2db76d72013-03-26 15:14:18 +02002216 page_cache_release(sg_page_iter_page(&sg_iter));
Chris Wilson9da3da62012-06-01 15:20:22 +01002217 sg_free_table(st);
2218 kfree(st);
Chris Wilson0820baf2014-03-25 13:23:03 +00002219
2220 /* shmemfs first checks if there is enough memory to allocate the page
2221 * and reports ENOSPC should there be insufficient, along with the usual
2222 * ENOMEM for a genuine allocation failure.
2223 *
2224 * We use ENOSPC in our driver to mean that we have run out of aperture
2225 * space and so want to translate the error from shmemfs back to our
2226 * usual understanding of ENOMEM.
2227 */
2228 if (PTR_ERR(page) == -ENOSPC)
2229 return -ENOMEM;
2230 else
2231 return PTR_ERR(page);
Eric Anholt673a3942008-07-30 12:06:12 -07002232}
2233
Chris Wilson37e680a2012-06-07 15:38:42 +01002234/* Ensure that the associated pages are gathered from the backing storage
2235 * and pinned into our object. i915_gem_object_get_pages() may be called
2236 * multiple times before they are released by a single call to
2237 * i915_gem_object_put_pages() - once the pages are no longer referenced
2238 * either as a result of memory pressure (reaping pages under the shrinker)
2239 * or as the object is itself released.
2240 */
2241int
2242i915_gem_object_get_pages(struct drm_i915_gem_object *obj)
2243{
2244 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2245 const struct drm_i915_gem_object_ops *ops = obj->ops;
2246 int ret;
2247
Chris Wilson2f745ad2012-09-04 21:02:58 +01002248 if (obj->pages)
Chris Wilson37e680a2012-06-07 15:38:42 +01002249 return 0;
2250
Chris Wilson43e28f02013-01-08 10:53:09 +00002251 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00002252 DRM_DEBUG("Attempting to obtain a purgeable object\n");
Chris Wilson8c99e572014-01-31 11:34:58 +00002253 return -EFAULT;
Chris Wilson43e28f02013-01-08 10:53:09 +00002254 }
2255
Chris Wilsona5570172012-09-04 21:02:54 +01002256 BUG_ON(obj->pages_pin_count);
2257
Chris Wilson37e680a2012-06-07 15:38:42 +01002258 ret = ops->get_pages(obj);
2259 if (ret)
2260 return ret;
2261
Ben Widawsky35c20a62013-05-31 11:28:48 -07002262 list_add_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Chris Wilson37e680a2012-06-07 15:38:42 +01002263 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002264}
2265
Ben Widawskye2d05a82013-09-24 09:57:58 -07002266static void
Chris Wilson05394f32010-11-08 19:18:58 +00002267i915_gem_object_move_to_active(struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002268 struct intel_engine_cs *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07002269{
John Harrison41c52412014-11-24 18:49:43 +00002270 struct drm_i915_gem_request *req;
2271 struct intel_engine_cs *old_ring;
Daniel Vetter617dbe22010-02-11 22:16:02 +01002272
Zou Nan hai852835f2010-05-21 09:08:56 +08002273 BUG_ON(ring == NULL);
John Harrison41c52412014-11-24 18:49:43 +00002274
2275 req = intel_ring_get_request(ring);
2276 old_ring = i915_gem_request_get_ring(obj->last_read_req);
2277
2278 if (old_ring != ring && obj->last_write_req) {
John Harrison97b2a6a2014-11-24 18:49:26 +00002279 /* Keep the request relative to the current ring */
2280 i915_gem_request_assign(&obj->last_write_req, req);
Chris Wilson02978ff2013-07-09 09:22:39 +01002281 }
Eric Anholt673a3942008-07-30 12:06:12 -07002282
2283 /* Add a reference if we're newly entering the active list. */
Chris Wilson05394f32010-11-08 19:18:58 +00002284 if (!obj->active) {
2285 drm_gem_object_reference(&obj->base);
2286 obj->active = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07002287 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01002288
Chris Wilson05394f32010-11-08 19:18:58 +00002289 list_move_tail(&obj->ring_list, &ring->active_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002290
John Harrison97b2a6a2014-11-24 18:49:26 +00002291 i915_gem_request_assign(&obj->last_read_req, req);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002292}
2293
Ben Widawskye2d05a82013-09-24 09:57:58 -07002294void i915_vma_move_to_active(struct i915_vma *vma,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002295 struct intel_engine_cs *ring)
Ben Widawskye2d05a82013-09-24 09:57:58 -07002296{
2297 list_move_tail(&vma->mm_list, &vma->vm->active_list);
2298 return i915_gem_object_move_to_active(vma->obj, ring);
2299}
2300
Chris Wilsoncaea7472010-11-12 13:53:37 +00002301static void
Chris Wilsoncaea7472010-11-12 13:53:37 +00002302i915_gem_object_move_to_inactive(struct drm_i915_gem_object *obj)
2303{
Ben Widawskyfeb822c2013-12-06 14:10:51 -08002304 struct i915_vma *vma;
Chris Wilsoncaea7472010-11-12 13:53:37 +00002305
Chris Wilson65ce3022012-07-20 12:41:02 +01002306 BUG_ON(obj->base.write_domain & ~I915_GEM_GPU_DOMAINS);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002307 BUG_ON(!obj->active);
Chris Wilson65ce3022012-07-20 12:41:02 +01002308
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00002309 list_for_each_entry(vma, &obj->vma_list, vma_link) {
2310 if (!list_empty(&vma->mm_list))
2311 list_move_tail(&vma->mm_list, &vma->vm->inactive_list);
Ben Widawskyfeb822c2013-12-06 14:10:51 -08002312 }
Chris Wilsoncaea7472010-11-12 13:53:37 +00002313
Daniel Vetterf99d7062014-06-19 16:01:59 +02002314 intel_fb_obj_flush(obj, true);
2315
Chris Wilson65ce3022012-07-20 12:41:02 +01002316 list_del_init(&obj->ring_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002317
John Harrison97b2a6a2014-11-24 18:49:26 +00002318 i915_gem_request_assign(&obj->last_read_req, NULL);
2319 i915_gem_request_assign(&obj->last_write_req, NULL);
Chris Wilson65ce3022012-07-20 12:41:02 +01002320 obj->base.write_domain = 0;
2321
John Harrison97b2a6a2014-11-24 18:49:26 +00002322 i915_gem_request_assign(&obj->last_fenced_req, NULL);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002323
2324 obj->active = 0;
2325 drm_gem_object_unreference(&obj->base);
2326
2327 WARN_ON(i915_verify_lists(dev));
Eric Anholtce44b0e2008-11-06 16:00:31 -08002328}
Eric Anholt673a3942008-07-30 12:06:12 -07002329
Chris Wilsonc8725f32014-03-17 12:21:55 +00002330static void
2331i915_gem_object_retire(struct drm_i915_gem_object *obj)
2332{
John Harrison41c52412014-11-24 18:49:43 +00002333 if (obj->last_read_req == NULL)
Chris Wilsonc8725f32014-03-17 12:21:55 +00002334 return;
2335
John Harrison1b5a4332014-11-24 18:49:42 +00002336 if (i915_gem_request_completed(obj->last_read_req, true))
Chris Wilsonc8725f32014-03-17 12:21:55 +00002337 i915_gem_object_move_to_inactive(obj);
2338}
2339
Chris Wilson9d7730912012-11-27 16:22:52 +00002340static int
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002341i915_gem_init_seqno(struct drm_device *dev, u32 seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01002342{
Chris Wilson9d7730912012-11-27 16:22:52 +00002343 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002344 struct intel_engine_cs *ring;
Chris Wilson9d7730912012-11-27 16:22:52 +00002345 int ret, i, j;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002346
Chris Wilson107f27a52012-12-10 13:56:17 +02002347 /* Carefully retire all requests without writing to the rings */
Chris Wilson9d7730912012-11-27 16:22:52 +00002348 for_each_ring(ring, dev_priv, i) {
Chris Wilson107f27a52012-12-10 13:56:17 +02002349 ret = intel_ring_idle(ring);
2350 if (ret)
2351 return ret;
Chris Wilson9d7730912012-11-27 16:22:52 +00002352 }
Chris Wilson9d7730912012-11-27 16:22:52 +00002353 i915_gem_retire_requests(dev);
Chris Wilson107f27a52012-12-10 13:56:17 +02002354
2355 /* Finally reset hw state */
Chris Wilson9d7730912012-11-27 16:22:52 +00002356 for_each_ring(ring, dev_priv, i) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002357 intel_ring_init_seqno(ring, seqno);
Mika Kuoppala498d2ac2012-12-04 15:12:04 +02002358
Ben Widawskyebc348b2014-04-29 14:52:28 -07002359 for (j = 0; j < ARRAY_SIZE(ring->semaphore.sync_seqno); j++)
2360 ring->semaphore.sync_seqno[j] = 0;
Chris Wilson9d7730912012-11-27 16:22:52 +00002361 }
2362
2363 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002364}
2365
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002366int i915_gem_set_seqno(struct drm_device *dev, u32 seqno)
2367{
2368 struct drm_i915_private *dev_priv = dev->dev_private;
2369 int ret;
2370
2371 if (seqno == 0)
2372 return -EINVAL;
2373
2374 /* HWS page needs to be set less than what we
2375 * will inject to ring
2376 */
2377 ret = i915_gem_init_seqno(dev, seqno - 1);
2378 if (ret)
2379 return ret;
2380
2381 /* Carefully set the last_seqno value so that wrap
2382 * detection still works
2383 */
2384 dev_priv->next_seqno = seqno;
2385 dev_priv->last_seqno = seqno - 1;
2386 if (dev_priv->last_seqno == 0)
2387 dev_priv->last_seqno--;
2388
2389 return 0;
2390}
2391
Chris Wilson9d7730912012-11-27 16:22:52 +00002392int
2393i915_gem_get_seqno(struct drm_device *dev, u32 *seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01002394{
Chris Wilson9d7730912012-11-27 16:22:52 +00002395 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002396
Chris Wilson9d7730912012-11-27 16:22:52 +00002397 /* reserve 0 for non-seqno */
2398 if (dev_priv->next_seqno == 0) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002399 int ret = i915_gem_init_seqno(dev, 0);
Chris Wilson9d7730912012-11-27 16:22:52 +00002400 if (ret)
2401 return ret;
2402
2403 dev_priv->next_seqno = 1;
2404 }
2405
Mika Kuoppalaf72b3432012-12-10 15:41:48 +02002406 *seqno = dev_priv->last_seqno = dev_priv->next_seqno++;
Chris Wilson9d7730912012-11-27 16:22:52 +00002407 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002408}
2409
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002410int __i915_add_request(struct intel_engine_cs *ring,
Mika Kuoppala0025c072013-06-12 12:35:30 +03002411 struct drm_file *file,
John Harrison9400ae52014-11-24 18:49:36 +00002412 struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002413{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03002414 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Chris Wilsonacb868d2012-09-26 13:47:30 +01002415 struct drm_i915_gem_request *request;
Oscar Mateo48e29f52014-07-24 17:04:29 +01002416 struct intel_ringbuffer *ringbuf;
Nick Hoath6d3d8272015-01-15 13:10:39 +00002417 u32 request_start;
Chris Wilson3cce4692010-10-27 16:11:02 +01002418 int ret;
2419
John Harrison6259cea2014-11-24 18:49:29 +00002420 request = ring->outstanding_lazy_request;
Oscar Mateo48e29f52014-07-24 17:04:29 +01002421 if (WARN_ON(request == NULL))
2422 return -ENOMEM;
2423
2424 if (i915.enable_execlists) {
Nick Hoath21076372015-01-15 13:10:38 +00002425 ringbuf = request->ctx->engine[ring->id].ringbuf;
Oscar Mateo48e29f52014-07-24 17:04:29 +01002426 } else
2427 ringbuf = ring->buffer;
2428
2429 request_start = intel_ring_get_tail(ringbuf);
Daniel Vettercc889e02012-06-13 20:45:19 +02002430 /*
2431 * Emit any outstanding flushes - execbuf can fail to emit the flush
2432 * after having emitted the batchbuffer command. Hence we need to fix
2433 * things up similar to emitting the lazy request. The difference here
2434 * is that the flush _must_ happen before the next request, no matter
2435 * what.
2436 */
Oscar Mateo48e29f52014-07-24 17:04:29 +01002437 if (i915.enable_execlists) {
Nick Hoath21076372015-01-15 13:10:38 +00002438 ret = logical_ring_flush_all_caches(ringbuf, request->ctx);
Oscar Mateo48e29f52014-07-24 17:04:29 +01002439 if (ret)
2440 return ret;
2441 } else {
2442 ret = intel_ring_flush_all_caches(ring);
2443 if (ret)
2444 return ret;
2445 }
Daniel Vettercc889e02012-06-13 20:45:19 +02002446
Chris Wilsona71d8d92012-02-15 11:25:36 +00002447 /* Record the position of the start of the request so that
2448 * should we detect the updated seqno part-way through the
2449 * GPU processing the request, we never over-estimate the
2450 * position of the head.
2451 */
Nick Hoath6d3d8272015-01-15 13:10:39 +00002452 request->postfix = intel_ring_get_tail(ringbuf);
Chris Wilsona71d8d92012-02-15 11:25:36 +00002453
Oscar Mateo48e29f52014-07-24 17:04:29 +01002454 if (i915.enable_execlists) {
Nick Hoath72f95af2015-01-15 13:10:37 +00002455 ret = ring->emit_request(ringbuf, request);
Oscar Mateo48e29f52014-07-24 17:04:29 +01002456 if (ret)
2457 return ret;
2458 } else {
2459 ret = ring->add_request(ring);
2460 if (ret)
2461 return ret;
2462 }
Eric Anholt673a3942008-07-30 12:06:12 -07002463
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002464 request->head = request_start;
Nick Hoath6d3d8272015-01-15 13:10:39 +00002465 request->tail = intel_ring_get_tail(ringbuf);
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002466
2467 /* Whilst this request exists, batch_obj will be on the
2468 * active_list, and so will hold the active reference. Only when this
2469 * request is retired will the the batch_obj be moved onto the
2470 * inactive_list and lose its active reference. Hence we do not need
2471 * to explicitly hold another reference here.
2472 */
Chris Wilson9a7e0c22013-08-26 19:50:54 -03002473 request->batch_obj = obj;
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002474
Oscar Mateo48e29f52014-07-24 17:04:29 +01002475 if (!i915.enable_execlists) {
2476 /* Hold a reference to the current context so that we can inspect
2477 * it later in case a hangcheck error event fires.
2478 */
2479 request->ctx = ring->last_context;
2480 if (request->ctx)
2481 i915_gem_context_reference(request->ctx);
2482 }
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002483
Eric Anholt673a3942008-07-30 12:06:12 -07002484 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08002485 list_add_tail(&request->list, &ring->request_list);
Chris Wilson3bb73ab2012-07-20 12:40:59 +01002486 request->file_priv = NULL;
Zou Nan hai852835f2010-05-21 09:08:56 +08002487
Chris Wilsondb53a302011-02-03 11:57:46 +00002488 if (file) {
2489 struct drm_i915_file_private *file_priv = file->driver_priv;
2490
Chris Wilson1c255952010-09-26 11:03:27 +01002491 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002492 request->file_priv = file_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00002493 list_add_tail(&request->client_list,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002494 &file_priv->mm.request_list);
Chris Wilson1c255952010-09-26 11:03:27 +01002495 spin_unlock(&file_priv->mm.lock);
Mika Kuoppala071c92d2015-02-12 10:26:02 +02002496
2497 request->pid = get_pid(task_pid(current));
Eric Anholtb9624422009-06-03 07:27:35 +00002498 }
Eric Anholt673a3942008-07-30 12:06:12 -07002499
John Harrison74328ee2014-11-24 18:49:38 +00002500 trace_i915_gem_request_add(request);
John Harrison6259cea2014-11-24 18:49:29 +00002501 ring->outstanding_lazy_request = NULL;
Chris Wilsondb53a302011-02-03 11:57:46 +00002502
Daniel Vetter87255482014-11-19 20:36:48 +01002503 i915_queue_hangcheck(ring->dev);
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03002504
Daniel Vetter87255482014-11-19 20:36:48 +01002505 cancel_delayed_work_sync(&dev_priv->mm.idle_work);
2506 queue_delayed_work(dev_priv->wq,
2507 &dev_priv->mm.retire_work,
2508 round_jiffies_up_relative(HZ));
2509 intel_mark_busy(dev_priv->dev);
Daniel Vettercc889e02012-06-13 20:45:19 +02002510
Chris Wilson3cce4692010-10-27 16:11:02 +01002511 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002512}
2513
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002514static inline void
2515i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07002516{
Chris Wilson1c255952010-09-26 11:03:27 +01002517 struct drm_i915_file_private *file_priv = request->file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07002518
Chris Wilson1c255952010-09-26 11:03:27 +01002519 if (!file_priv)
2520 return;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002521
Chris Wilson1c255952010-09-26 11:03:27 +01002522 spin_lock(&file_priv->mm.lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002523 list_del(&request->client_list);
2524 request->file_priv = NULL;
Chris Wilson1c255952010-09-26 11:03:27 +01002525 spin_unlock(&file_priv->mm.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07002526}
2527
Mika Kuoppala939fd762014-01-30 19:04:44 +02002528static bool i915_context_is_banned(struct drm_i915_private *dev_priv,
Oscar Mateo273497e2014-05-22 14:13:37 +01002529 const struct intel_context *ctx)
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002530{
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002531 unsigned long elapsed;
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002532
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002533 elapsed = get_seconds() - ctx->hang_stats.guilty_ts;
2534
2535 if (ctx->hang_stats.banned)
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002536 return true;
2537
Chris Wilson676fa572014-12-24 08:13:39 -08002538 if (ctx->hang_stats.ban_period_seconds &&
2539 elapsed <= ctx->hang_stats.ban_period_seconds) {
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002540 if (!i915_gem_context_is_default(ctx)) {
Mika Kuoppala3fac8972014-01-30 16:05:48 +02002541 DRM_DEBUG("context hanging too fast, banning!\n");
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002542 return true;
Mika Kuoppala88b4aa82014-03-28 18:18:18 +02002543 } else if (i915_stop_ring_allow_ban(dev_priv)) {
2544 if (i915_stop_ring_allow_warn(dev_priv))
2545 DRM_ERROR("gpu hanging too fast, banning!\n");
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002546 return true;
Mika Kuoppala3fac8972014-01-30 16:05:48 +02002547 }
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002548 }
2549
2550 return false;
2551}
2552
Mika Kuoppala939fd762014-01-30 19:04:44 +02002553static void i915_set_reset_status(struct drm_i915_private *dev_priv,
Oscar Mateo273497e2014-05-22 14:13:37 +01002554 struct intel_context *ctx,
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002555 const bool guilty)
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002556{
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002557 struct i915_ctx_hang_stats *hs;
2558
2559 if (WARN_ON(!ctx))
2560 return;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002561
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002562 hs = &ctx->hang_stats;
2563
2564 if (guilty) {
Mika Kuoppala939fd762014-01-30 19:04:44 +02002565 hs->banned = i915_context_is_banned(dev_priv, ctx);
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002566 hs->batch_active++;
2567 hs->guilty_ts = get_seconds();
2568 } else {
2569 hs->batch_pending++;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002570 }
2571}
2572
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002573static void i915_gem_free_request(struct drm_i915_gem_request *request)
2574{
2575 list_del(&request->list);
2576 i915_gem_request_remove_from_client(request);
2577
Mika Kuoppala071c92d2015-02-12 10:26:02 +02002578 put_pid(request->pid);
2579
John Harrisonabfe2622014-11-24 18:49:24 +00002580 i915_gem_request_unreference(request);
2581}
2582
2583void i915_gem_request_free(struct kref *req_ref)
2584{
2585 struct drm_i915_gem_request *req = container_of(req_ref,
2586 typeof(*req), ref);
2587 struct intel_context *ctx = req->ctx;
2588
Thomas Daniel0794aed2014-11-25 10:39:25 +00002589 if (ctx) {
2590 if (i915.enable_execlists) {
John Harrisonabfe2622014-11-24 18:49:24 +00002591 struct intel_engine_cs *ring = req->ring;
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002592
Thomas Daniel0794aed2014-11-25 10:39:25 +00002593 if (ctx != ring->default_context)
2594 intel_lr_context_unpin(ring, ctx);
2595 }
John Harrisonabfe2622014-11-24 18:49:24 +00002596
Oscar Mateodcb4c122014-11-13 10:28:10 +00002597 i915_gem_context_unreference(ctx);
2598 }
John Harrisonabfe2622014-11-24 18:49:24 +00002599
2600 kfree(req);
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002601}
2602
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002603struct drm_i915_gem_request *
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002604i915_gem_find_active_request(struct intel_engine_cs *ring)
Chris Wilson9375e442010-09-19 12:21:28 +01002605{
Chris Wilson4db080f2013-12-04 11:37:09 +00002606 struct drm_i915_gem_request *request;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002607
Chris Wilson4db080f2013-12-04 11:37:09 +00002608 list_for_each_entry(request, &ring->request_list, list) {
John Harrison1b5a4332014-11-24 18:49:42 +00002609 if (i915_gem_request_completed(request, false))
Chris Wilson4db080f2013-12-04 11:37:09 +00002610 continue;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002611
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002612 return request;
Chris Wilson4db080f2013-12-04 11:37:09 +00002613 }
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002614
2615 return NULL;
2616}
2617
2618static void i915_gem_reset_ring_status(struct drm_i915_private *dev_priv,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002619 struct intel_engine_cs *ring)
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002620{
2621 struct drm_i915_gem_request *request;
2622 bool ring_hung;
2623
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002624 request = i915_gem_find_active_request(ring);
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002625
2626 if (request == NULL)
2627 return;
2628
2629 ring_hung = ring->hangcheck.score >= HANGCHECK_SCORE_RING_HUNG;
2630
Mika Kuoppala939fd762014-01-30 19:04:44 +02002631 i915_set_reset_status(dev_priv, request->ctx, ring_hung);
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002632
2633 list_for_each_entry_continue(request, &ring->request_list, list)
Mika Kuoppala939fd762014-01-30 19:04:44 +02002634 i915_set_reset_status(dev_priv, request->ctx, false);
Chris Wilson4db080f2013-12-04 11:37:09 +00002635}
2636
2637static void i915_gem_reset_ring_cleanup(struct drm_i915_private *dev_priv,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002638 struct intel_engine_cs *ring)
Chris Wilson4db080f2013-12-04 11:37:09 +00002639{
Chris Wilsondfaae392010-09-22 10:31:52 +01002640 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00002641 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07002642
Chris Wilson05394f32010-11-08 19:18:58 +00002643 obj = list_first_entry(&ring->active_list,
2644 struct drm_i915_gem_object,
2645 ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07002646
Chris Wilson05394f32010-11-08 19:18:58 +00002647 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002648 }
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002649
2650 /*
Oscar Mateodcb4c122014-11-13 10:28:10 +00002651 * Clear the execlists queue up before freeing the requests, as those
2652 * are the ones that keep the context and ringbuffer backing objects
2653 * pinned in place.
2654 */
2655 while (!list_empty(&ring->execlist_queue)) {
Nick Hoath6d3d8272015-01-15 13:10:39 +00002656 struct drm_i915_gem_request *submit_req;
Oscar Mateodcb4c122014-11-13 10:28:10 +00002657
2658 submit_req = list_first_entry(&ring->execlist_queue,
Nick Hoath6d3d8272015-01-15 13:10:39 +00002659 struct drm_i915_gem_request,
Oscar Mateodcb4c122014-11-13 10:28:10 +00002660 execlist_link);
2661 list_del(&submit_req->execlist_link);
2662 intel_runtime_pm_put(dev_priv);
Mika Kuoppala1197b4f2015-01-13 11:32:24 +02002663
2664 if (submit_req->ctx != ring->default_context)
2665 intel_lr_context_unpin(ring, submit_req->ctx);
2666
Nick Hoath6d3d8272015-01-15 13:10:39 +00002667 i915_gem_context_unreference(submit_req->ctx);
Oscar Mateodcb4c122014-11-13 10:28:10 +00002668 kfree(submit_req);
2669 }
2670
2671 /*
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002672 * We must free the requests after all the corresponding objects have
2673 * been moved off active lists. Which is the same order as the normal
2674 * retire_requests function does. This is important if object hold
2675 * implicit references on things like e.g. ppgtt address spaces through
2676 * the request.
2677 */
2678 while (!list_empty(&ring->request_list)) {
2679 struct drm_i915_gem_request *request;
2680
2681 request = list_first_entry(&ring->request_list,
2682 struct drm_i915_gem_request,
2683 list);
2684
2685 i915_gem_free_request(request);
2686 }
Chris Wilsone3efda42014-04-09 09:19:41 +01002687
John Harrison6259cea2014-11-24 18:49:29 +00002688 /* This may not have been flushed before the reset, so clean it now */
2689 i915_gem_request_assign(&ring->outstanding_lazy_request, NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07002690}
2691
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002692void i915_gem_restore_fences(struct drm_device *dev)
Chris Wilson312817a2010-11-22 11:50:11 +00002693{
2694 struct drm_i915_private *dev_priv = dev->dev_private;
2695 int i;
2696
Daniel Vetter4b9de732011-10-09 21:52:02 +02002697 for (i = 0; i < dev_priv->num_fence_regs; i++) {
Chris Wilson312817a2010-11-22 11:50:11 +00002698 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
Chris Wilson7d2cb392010-11-27 17:38:29 +00002699
Daniel Vetter94a335d2013-07-17 14:51:28 +02002700 /*
2701 * Commit delayed tiling changes if we have an object still
2702 * attached to the fence, otherwise just clear the fence.
2703 */
2704 if (reg->obj) {
2705 i915_gem_object_update_fence(reg->obj, reg,
2706 reg->obj->tiling_mode);
2707 } else {
2708 i915_gem_write_fence(dev, i, NULL);
2709 }
Chris Wilson312817a2010-11-22 11:50:11 +00002710 }
2711}
2712
Chris Wilson069efc12010-09-30 16:53:18 +01002713void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07002714{
Chris Wilsondfaae392010-09-22 10:31:52 +01002715 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002716 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002717 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07002718
Chris Wilson4db080f2013-12-04 11:37:09 +00002719 /*
2720 * Before we free the objects from the requests, we need to inspect
2721 * them for finding the guilty party. As the requests only borrow
2722 * their reference to the objects, the inspection must be done first.
2723 */
Chris Wilsonb4519512012-05-11 14:29:30 +01002724 for_each_ring(ring, dev_priv, i)
Chris Wilson4db080f2013-12-04 11:37:09 +00002725 i915_gem_reset_ring_status(dev_priv, ring);
2726
2727 for_each_ring(ring, dev_priv, i)
2728 i915_gem_reset_ring_cleanup(dev_priv, ring);
Chris Wilsondfaae392010-09-22 10:31:52 +01002729
Ben Widawskyacce9ff2013-12-06 14:11:03 -08002730 i915_gem_context_reset(dev);
2731
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002732 i915_gem_restore_fences(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07002733}
2734
2735/**
2736 * This function clears the request list as sequence numbers are passed.
2737 */
Chris Wilson1cf0ba12014-05-05 09:07:33 +01002738void
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002739i915_gem_retire_requests_ring(struct intel_engine_cs *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07002740{
Chris Wilsondb53a302011-02-03 11:57:46 +00002741 if (list_empty(&ring->request_list))
Karsten Wiese6c0594a2009-02-23 15:07:57 +01002742 return;
2743
Chris Wilsondb53a302011-02-03 11:57:46 +00002744 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002745
Chris Wilsone9103032014-01-07 11:45:14 +00002746 /* Move any buffers on the active list that are no longer referenced
2747 * by the ringbuffer to the flushing/inactive lists as appropriate,
2748 * before we free the context associated with the requests.
2749 */
2750 while (!list_empty(&ring->active_list)) {
2751 struct drm_i915_gem_object *obj;
2752
2753 obj = list_first_entry(&ring->active_list,
2754 struct drm_i915_gem_object,
2755 ring_list);
2756
John Harrison1b5a4332014-11-24 18:49:42 +00002757 if (!i915_gem_request_completed(obj->last_read_req, true))
Chris Wilsone9103032014-01-07 11:45:14 +00002758 break;
2759
2760 i915_gem_object_move_to_inactive(obj);
2761 }
2762
2763
Zou Nan hai852835f2010-05-21 09:08:56 +08002764 while (!list_empty(&ring->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002765 struct drm_i915_gem_request *request;
Oscar Mateo48e29f52014-07-24 17:04:29 +01002766 struct intel_ringbuffer *ringbuf;
Eric Anholt673a3942008-07-30 12:06:12 -07002767
Zou Nan hai852835f2010-05-21 09:08:56 +08002768 request = list_first_entry(&ring->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07002769 struct drm_i915_gem_request,
2770 list);
Eric Anholt673a3942008-07-30 12:06:12 -07002771
John Harrison1b5a4332014-11-24 18:49:42 +00002772 if (!i915_gem_request_completed(request, true))
Eric Anholt673a3942008-07-30 12:06:12 -07002773 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002774
John Harrison74328ee2014-11-24 18:49:38 +00002775 trace_i915_gem_request_retire(request);
Oscar Mateo48e29f52014-07-24 17:04:29 +01002776
2777 /* This is one of the few common intersection points
2778 * between legacy ringbuffer submission and execlists:
2779 * we need to tell them apart in order to find the correct
2780 * ringbuffer to which the request belongs to.
2781 */
2782 if (i915.enable_execlists) {
2783 struct intel_context *ctx = request->ctx;
2784 ringbuf = ctx->engine[ring->id].ringbuf;
2785 } else
2786 ringbuf = ring->buffer;
2787
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 */
Nick Hoath72f95af2015-01-15 13:10:37 +00002793 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
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003177 val = (uint64_t)((i915_gem_obj_ggtt_offset(obj) + size - 4096) &
Chris Wilson9ce079e2012-04-17 15:31:30 +01003178 0xfffff000) << 32;
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003179 val |= i915_gem_obj_ggtt_offset(obj) & 0xfffff000;
Imre Deak56c844e2013-01-07 21:47:34 +02003180 val |= (uint64_t)((obj->stride / 128) - 1) << fence_pitch_shift;
Chris Wilson9ce079e2012-04-17 15:31:30 +01003181 if (obj->tiling_mode == I915_TILING_Y)
3182 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
3183 val |= I965_FENCE_REG_VALID;
Daniel Vetterc6642782010-11-12 13:46:18 +00003184
Chris Wilsond18b9612013-07-10 13:36:23 +01003185 I915_WRITE(fence_reg + 4, val >> 32);
3186 POSTING_READ(fence_reg + 4);
3187
3188 I915_WRITE(fence_reg + 0, val);
3189 POSTING_READ(fence_reg);
3190 } else {
3191 I915_WRITE(fence_reg + 4, 0);
3192 POSTING_READ(fence_reg + 4);
3193 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08003194}
3195
Chris Wilson9ce079e2012-04-17 15:31:30 +01003196static void i915_write_fence_reg(struct drm_device *dev, int reg,
3197 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003198{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003199 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9ce079e2012-04-17 15:31:30 +01003200 u32 val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003201
Chris Wilson9ce079e2012-04-17 15:31:30 +01003202 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003203 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003204 int pitch_val;
3205 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003206
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003207 WARN((i915_gem_obj_ggtt_offset(obj) & ~I915_FENCE_START_MASK) ||
Chris Wilson9ce079e2012-04-17 15:31:30 +01003208 (size & -size) != size ||
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003209 (i915_gem_obj_ggtt_offset(obj) & (size - 1)),
3210 "object 0x%08lx [fenceable? %d] not 1M or pot-size (0x%08x) aligned\n",
3211 i915_gem_obj_ggtt_offset(obj), obj->map_and_fenceable, size);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003212
3213 if (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev))
3214 tile_width = 128;
3215 else
3216 tile_width = 512;
3217
3218 /* Note: pitch better be a power of two tile widths */
3219 pitch_val = obj->stride / tile_width;
3220 pitch_val = ffs(pitch_val) - 1;
3221
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003222 val = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003223 if (obj->tiling_mode == I915_TILING_Y)
3224 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
3225 val |= I915_FENCE_SIZE_BITS(size);
3226 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
3227 val |= I830_FENCE_REG_VALID;
3228 } else
3229 val = 0;
3230
3231 if (reg < 8)
3232 reg = FENCE_REG_830_0 + reg * 4;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003233 else
Chris Wilson9ce079e2012-04-17 15:31:30 +01003234 reg = FENCE_REG_945_8 + (reg - 8) * 4;
Jesse Barnes0f973f22009-01-26 17:10:45 -08003235
Chris Wilson9ce079e2012-04-17 15:31:30 +01003236 I915_WRITE(reg, val);
3237 POSTING_READ(reg);
Jesse Barnesde151cf2008-11-12 10:03:55 -08003238}
3239
Chris Wilson9ce079e2012-04-17 15:31:30 +01003240static void i830_write_fence_reg(struct drm_device *dev, int reg,
3241 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003242{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003243 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003244 uint32_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003245
Chris Wilson9ce079e2012-04-17 15:31:30 +01003246 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003247 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003248 uint32_t pitch_val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003249
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003250 WARN((i915_gem_obj_ggtt_offset(obj) & ~I830_FENCE_START_MASK) ||
Chris Wilson9ce079e2012-04-17 15:31:30 +01003251 (size & -size) != size ||
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003252 (i915_gem_obj_ggtt_offset(obj) & (size - 1)),
3253 "object 0x%08lx not 512K or pot-size 0x%08x aligned\n",
3254 i915_gem_obj_ggtt_offset(obj), size);
Eric Anholte76a16d2009-05-26 17:44:56 -07003255
Chris Wilson9ce079e2012-04-17 15:31:30 +01003256 pitch_val = obj->stride / 128;
3257 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003258
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003259 val = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003260 if (obj->tiling_mode == I915_TILING_Y)
3261 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
3262 val |= I830_FENCE_SIZE_BITS(size);
3263 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
3264 val |= I830_FENCE_REG_VALID;
3265 } else
3266 val = 0;
Daniel Vetterc6642782010-11-12 13:46:18 +00003267
Chris Wilson9ce079e2012-04-17 15:31:30 +01003268 I915_WRITE(FENCE_REG_830_0 + reg * 4, val);
3269 POSTING_READ(FENCE_REG_830_0 + reg * 4);
3270}
3271
Chris Wilsond0a57782012-10-09 19:24:37 +01003272inline static bool i915_gem_object_needs_mb(struct drm_i915_gem_object *obj)
3273{
3274 return obj && obj->base.read_domains & I915_GEM_DOMAIN_GTT;
3275}
3276
Chris Wilson9ce079e2012-04-17 15:31:30 +01003277static void i915_gem_write_fence(struct drm_device *dev, int reg,
3278 struct drm_i915_gem_object *obj)
3279{
Chris Wilsond0a57782012-10-09 19:24:37 +01003280 struct drm_i915_private *dev_priv = dev->dev_private;
3281
3282 /* Ensure that all CPU reads are completed before installing a fence
3283 * and all writes before removing the fence.
3284 */
3285 if (i915_gem_object_needs_mb(dev_priv->fence_regs[reg].obj))
3286 mb();
3287
Daniel Vetter94a335d2013-07-17 14:51:28 +02003288 WARN(obj && (!obj->stride || !obj->tiling_mode),
3289 "bogus fence setup with stride: 0x%x, tiling mode: %i\n",
3290 obj->stride, obj->tiling_mode);
3291
Rodrigo Vivice38ab02014-12-04 06:48:10 -08003292 if (IS_GEN2(dev))
3293 i830_write_fence_reg(dev, reg, obj);
3294 else if (IS_GEN3(dev))
3295 i915_write_fence_reg(dev, reg, obj);
3296 else if (INTEL_INFO(dev)->gen >= 4)
3297 i965_write_fence_reg(dev, reg, obj);
Chris Wilsond0a57782012-10-09 19:24:37 +01003298
3299 /* And similarly be paranoid that no direct access to this region
3300 * is reordered to before the fence is installed.
3301 */
3302 if (i915_gem_object_needs_mb(obj))
3303 mb();
Jesse Barnesde151cf2008-11-12 10:03:55 -08003304}
3305
Chris Wilson61050802012-04-17 15:31:31 +01003306static inline int fence_number(struct drm_i915_private *dev_priv,
3307 struct drm_i915_fence_reg *fence)
3308{
3309 return fence - dev_priv->fence_regs;
3310}
3311
3312static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
3313 struct drm_i915_fence_reg *fence,
3314 bool enable)
3315{
Chris Wilson2dc8aae2013-05-22 17:08:06 +01003316 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson46a0b632013-07-10 13:36:24 +01003317 int reg = fence_number(dev_priv, fence);
Chris Wilson61050802012-04-17 15:31:31 +01003318
Chris Wilson46a0b632013-07-10 13:36:24 +01003319 i915_gem_write_fence(obj->base.dev, reg, enable ? obj : NULL);
Chris Wilson61050802012-04-17 15:31:31 +01003320
3321 if (enable) {
Chris Wilson46a0b632013-07-10 13:36:24 +01003322 obj->fence_reg = reg;
Chris Wilson61050802012-04-17 15:31:31 +01003323 fence->obj = obj;
3324 list_move_tail(&fence->lru_list, &dev_priv->mm.fence_list);
3325 } else {
3326 obj->fence_reg = I915_FENCE_REG_NONE;
3327 fence->obj = NULL;
3328 list_del_init(&fence->lru_list);
3329 }
Daniel Vetter94a335d2013-07-17 14:51:28 +02003330 obj->fence_dirty = false;
Chris Wilson61050802012-04-17 15:31:31 +01003331}
3332
Chris Wilsond9e86c02010-11-10 16:40:20 +00003333static int
Chris Wilsond0a57782012-10-09 19:24:37 +01003334i915_gem_object_wait_fence(struct drm_i915_gem_object *obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003335{
John Harrison97b2a6a2014-11-24 18:49:26 +00003336 if (obj->last_fenced_req) {
Daniel Vettera4b3a572014-11-26 14:17:05 +01003337 int ret = i915_wait_request(obj->last_fenced_req);
Chris Wilson18991842012-04-17 15:31:29 +01003338 if (ret)
3339 return ret;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003340
John Harrison97b2a6a2014-11-24 18:49:26 +00003341 i915_gem_request_assign(&obj->last_fenced_req, NULL);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003342 }
3343
3344 return 0;
3345}
3346
3347int
3348i915_gem_object_put_fence(struct drm_i915_gem_object *obj)
3349{
Chris Wilson61050802012-04-17 15:31:31 +01003350 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003351 struct drm_i915_fence_reg *fence;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003352 int ret;
3353
Chris Wilsond0a57782012-10-09 19:24:37 +01003354 ret = i915_gem_object_wait_fence(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003355 if (ret)
3356 return ret;
3357
Chris Wilson61050802012-04-17 15:31:31 +01003358 if (obj->fence_reg == I915_FENCE_REG_NONE)
3359 return 0;
Chris Wilson1690e1e2011-12-14 13:57:08 +01003360
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003361 fence = &dev_priv->fence_regs[obj->fence_reg];
3362
Daniel Vetteraff10b302014-02-14 14:06:05 +01003363 if (WARN_ON(fence->pin_count))
3364 return -EBUSY;
3365
Chris Wilson61050802012-04-17 15:31:31 +01003366 i915_gem_object_fence_lost(obj);
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003367 i915_gem_object_update_fence(obj, fence, false);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003368
3369 return 0;
3370}
3371
3372static struct drm_i915_fence_reg *
Chris Wilsona360bb12012-04-17 15:31:25 +01003373i915_find_fence_reg(struct drm_device *dev)
Daniel Vetterae3db242010-02-19 11:51:58 +01003374{
Daniel Vetterae3db242010-02-19 11:51:58 +01003375 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson8fe301a2012-04-17 15:31:28 +01003376 struct drm_i915_fence_reg *reg, *avail;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003377 int i;
Daniel Vetterae3db242010-02-19 11:51:58 +01003378
3379 /* First try to find a free reg */
Chris Wilsond9e86c02010-11-10 16:40:20 +00003380 avail = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01003381 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
3382 reg = &dev_priv->fence_regs[i];
3383 if (!reg->obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003384 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003385
Chris Wilson1690e1e2011-12-14 13:57:08 +01003386 if (!reg->pin_count)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003387 avail = reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003388 }
3389
Chris Wilsond9e86c02010-11-10 16:40:20 +00003390 if (avail == NULL)
Chris Wilson5dce5b932014-01-20 10:17:36 +00003391 goto deadlock;
Daniel Vetterae3db242010-02-19 11:51:58 +01003392
3393 /* None available, try to steal one or wait for a user to finish */
Chris Wilsond9e86c02010-11-10 16:40:20 +00003394 list_for_each_entry(reg, &dev_priv->mm.fence_list, lru_list) {
Chris Wilson1690e1e2011-12-14 13:57:08 +01003395 if (reg->pin_count)
Daniel Vetterae3db242010-02-19 11:51:58 +01003396 continue;
3397
Chris Wilson8fe301a2012-04-17 15:31:28 +01003398 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003399 }
3400
Chris Wilson5dce5b932014-01-20 10:17:36 +00003401deadlock:
3402 /* Wait for completion of pending flips which consume fences */
3403 if (intel_has_pending_fb_unpin(dev))
3404 return ERR_PTR(-EAGAIN);
3405
3406 return ERR_PTR(-EDEADLK);
Daniel Vetterae3db242010-02-19 11:51:58 +01003407}
3408
Jesse Barnesde151cf2008-11-12 10:03:55 -08003409/**
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003410 * i915_gem_object_get_fence - set up fencing for an object
Jesse Barnesde151cf2008-11-12 10:03:55 -08003411 * @obj: object to map through a fence reg
3412 *
3413 * When mapping objects through the GTT, userspace wants to be able to write
3414 * to them without having to worry about swizzling if the object is tiled.
Jesse Barnesde151cf2008-11-12 10:03:55 -08003415 * This function walks the fence regs looking for a free one for @obj,
3416 * stealing one if it can't find any.
3417 *
3418 * It then sets up the reg based on the object's properties: address, pitch
3419 * and tiling format.
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003420 *
3421 * For an untiled surface, this removes any existing fence.
Jesse Barnesde151cf2008-11-12 10:03:55 -08003422 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01003423int
Chris Wilson06d98132012-04-17 15:31:24 +01003424i915_gem_object_get_fence(struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003425{
Chris Wilson05394f32010-11-08 19:18:58 +00003426 struct drm_device *dev = obj->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08003427 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson14415742012-04-17 15:31:33 +01003428 bool enable = obj->tiling_mode != I915_TILING_NONE;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003429 struct drm_i915_fence_reg *reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003430 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003431
Chris Wilson14415742012-04-17 15:31:33 +01003432 /* Have we updated the tiling parameters upon the object and so
3433 * will need to serialise the write to the associated fence register?
3434 */
Chris Wilson5d82e3e2012-04-21 16:23:23 +01003435 if (obj->fence_dirty) {
Chris Wilsond0a57782012-10-09 19:24:37 +01003436 ret = i915_gem_object_wait_fence(obj);
Chris Wilson14415742012-04-17 15:31:33 +01003437 if (ret)
3438 return ret;
3439 }
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003440
Chris Wilsond9e86c02010-11-10 16:40:20 +00003441 /* Just update our place in the LRU if our fence is getting reused. */
Chris Wilson05394f32010-11-08 19:18:58 +00003442 if (obj->fence_reg != I915_FENCE_REG_NONE) {
3443 reg = &dev_priv->fence_regs[obj->fence_reg];
Chris Wilson5d82e3e2012-04-21 16:23:23 +01003444 if (!obj->fence_dirty) {
Chris Wilson14415742012-04-17 15:31:33 +01003445 list_move_tail(&reg->lru_list,
3446 &dev_priv->mm.fence_list);
3447 return 0;
3448 }
3449 } else if (enable) {
Chris Wilsone6a84462014-08-11 12:00:12 +02003450 if (WARN_ON(!obj->map_and_fenceable))
3451 return -EINVAL;
3452
Chris Wilson14415742012-04-17 15:31:33 +01003453 reg = i915_find_fence_reg(dev);
Chris Wilson5dce5b932014-01-20 10:17:36 +00003454 if (IS_ERR(reg))
3455 return PTR_ERR(reg);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003456
Chris Wilson14415742012-04-17 15:31:33 +01003457 if (reg->obj) {
3458 struct drm_i915_gem_object *old = reg->obj;
3459
Chris Wilsond0a57782012-10-09 19:24:37 +01003460 ret = i915_gem_object_wait_fence(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00003461 if (ret)
3462 return ret;
3463
Chris Wilson14415742012-04-17 15:31:33 +01003464 i915_gem_object_fence_lost(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00003465 }
Chris Wilson14415742012-04-17 15:31:33 +01003466 } else
Eric Anholta09ba7f2009-08-29 12:49:51 -07003467 return 0;
Eric Anholta09ba7f2009-08-29 12:49:51 -07003468
Chris Wilson14415742012-04-17 15:31:33 +01003469 i915_gem_object_update_fence(obj, reg, enable);
Chris Wilson14415742012-04-17 15:31:33 +01003470
Chris Wilson9ce079e2012-04-17 15:31:30 +01003471 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003472}
3473
Chris Wilson4144f9b2014-09-11 08:43:48 +01003474static bool i915_gem_valid_gtt_space(struct i915_vma *vma,
Chris Wilson42d6ab42012-07-26 11:49:32 +01003475 unsigned long cache_level)
3476{
Chris Wilson4144f9b2014-09-11 08:43:48 +01003477 struct drm_mm_node *gtt_space = &vma->node;
Chris Wilson42d6ab42012-07-26 11:49:32 +01003478 struct drm_mm_node *other;
3479
Chris Wilson4144f9b2014-09-11 08:43:48 +01003480 /*
3481 * On some machines we have to be careful when putting differing types
3482 * of snoopable memory together to avoid the prefetcher crossing memory
3483 * domains and dying. During vm initialisation, we decide whether or not
3484 * these constraints apply and set the drm_mm.color_adjust
3485 * appropriately.
Chris Wilson42d6ab42012-07-26 11:49:32 +01003486 */
Chris Wilson4144f9b2014-09-11 08:43:48 +01003487 if (vma->vm->mm.color_adjust == NULL)
Chris Wilson42d6ab42012-07-26 11:49:32 +01003488 return true;
3489
Ben Widawskyc6cfb322013-07-05 14:41:06 -07003490 if (!drm_mm_node_allocated(gtt_space))
Chris Wilson42d6ab42012-07-26 11:49:32 +01003491 return true;
3492
3493 if (list_empty(&gtt_space->node_list))
3494 return true;
3495
3496 other = list_entry(gtt_space->node_list.prev, struct drm_mm_node, node_list);
3497 if (other->allocated && !other->hole_follows && other->color != cache_level)
3498 return false;
3499
3500 other = list_entry(gtt_space->node_list.next, struct drm_mm_node, node_list);
3501 if (other->allocated && !gtt_space->hole_follows && other->color != cache_level)
3502 return false;
3503
3504 return true;
3505}
3506
Jesse Barnesde151cf2008-11-12 10:03:55 -08003507/**
Eric Anholt673a3942008-07-30 12:06:12 -07003508 * Finds free space in the GTT aperture and binds the object there.
3509 */
Daniel Vetter262de142014-02-14 14:01:20 +01003510static struct i915_vma *
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003511i915_gem_object_bind_to_vm(struct drm_i915_gem_object *obj,
3512 struct i915_address_space *vm,
3513 unsigned alignment,
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003514 uint64_t flags,
3515 const struct i915_ggtt_view *view)
Eric Anholt673a3942008-07-30 12:06:12 -07003516{
Chris Wilson05394f32010-11-08 19:18:58 +00003517 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003518 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter5e783302010-11-14 22:32:36 +01003519 u32 size, fence_size, fence_alignment, unfenced_alignment;
Chris Wilsond23db882014-05-23 08:48:08 +02003520 unsigned long start =
3521 flags & PIN_OFFSET_BIAS ? flags & PIN_OFFSET_MASK : 0;
3522 unsigned long end =
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003523 flags & PIN_MAPPABLE ? dev_priv->gtt.mappable_end : vm->total;
Ben Widawsky2f633152013-07-17 12:19:03 -07003524 struct i915_vma *vma;
Chris Wilson07f73f62009-09-14 16:50:30 +01003525 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003526
Chris Wilsone28f8712011-07-18 13:11:49 -07003527 fence_size = i915_gem_get_gtt_size(dev,
3528 obj->base.size,
3529 obj->tiling_mode);
3530 fence_alignment = i915_gem_get_gtt_alignment(dev,
3531 obj->base.size,
Imre Deakd8651102013-01-07 21:47:33 +02003532 obj->tiling_mode, true);
Chris Wilsone28f8712011-07-18 13:11:49 -07003533 unfenced_alignment =
Imre Deakd8651102013-01-07 21:47:33 +02003534 i915_gem_get_gtt_alignment(dev,
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003535 obj->base.size,
3536 obj->tiling_mode, false);
Chris Wilsona00b10c2010-09-24 21:15:47 +01003537
Eric Anholt673a3942008-07-30 12:06:12 -07003538 if (alignment == 0)
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003539 alignment = flags & PIN_MAPPABLE ? fence_alignment :
Daniel Vetter5e783302010-11-14 22:32:36 +01003540 unfenced_alignment;
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003541 if (flags & PIN_MAPPABLE && alignment & (fence_alignment - 1)) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00003542 DRM_DEBUG("Invalid object alignment requested %u\n", alignment);
Daniel Vetter262de142014-02-14 14:01:20 +01003543 return ERR_PTR(-EINVAL);
Eric Anholt673a3942008-07-30 12:06:12 -07003544 }
3545
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003546 size = flags & PIN_MAPPABLE ? fence_size : obj->base.size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01003547
Chris Wilson654fc602010-05-27 13:18:21 +01003548 /* If the object is bigger than the entire aperture, reject it early
3549 * before evicting everything in a vain attempt to find space.
3550 */
Chris Wilsond23db882014-05-23 08:48:08 +02003551 if (obj->base.size > end) {
3552 DRM_DEBUG("Attempting to bind an object larger than the aperture: object=%zd > %s aperture=%lu\n",
Chris Wilsona36689c2013-05-21 16:58:49 +01003553 obj->base.size,
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003554 flags & PIN_MAPPABLE ? "mappable" : "total",
Chris Wilsond23db882014-05-23 08:48:08 +02003555 end);
Daniel Vetter262de142014-02-14 14:01:20 +01003556 return ERR_PTR(-E2BIG);
Chris Wilson654fc602010-05-27 13:18:21 +01003557 }
3558
Chris Wilson37e680a2012-06-07 15:38:42 +01003559 ret = i915_gem_object_get_pages(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02003560 if (ret)
Daniel Vetter262de142014-02-14 14:01:20 +01003561 return ERR_PTR(ret);
Chris Wilson6c085a72012-08-20 11:40:46 +02003562
Chris Wilsonfbdda6f2012-11-20 10:45:16 +00003563 i915_gem_object_pin_pages(obj);
3564
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003565 vma = i915_gem_obj_lookup_or_create_vma_view(obj, vm, view);
Daniel Vetter262de142014-02-14 14:01:20 +01003566 if (IS_ERR(vma))
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003567 goto err_unpin;
Ben Widawsky2f633152013-07-17 12:19:03 -07003568
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003569search_free:
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003570 ret = drm_mm_insert_node_in_range_generic(&vm->mm, &vma->node,
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003571 size, alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02003572 obj->cache_level,
3573 start, end,
Lauri Kasanen62347f92014-04-02 20:03:57 +03003574 DRM_MM_SEARCH_DEFAULT,
3575 DRM_MM_CREATE_DEFAULT);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003576 if (ret) {
Ben Widawskyf6cd1f12013-07-31 17:00:11 -07003577 ret = i915_gem_evict_something(dev, vm, size, alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02003578 obj->cache_level,
3579 start, end,
3580 flags);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003581 if (ret == 0)
3582 goto search_free;
Chris Wilson97311292009-09-21 00:22:34 +01003583
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003584 goto err_free_vma;
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003585 }
Chris Wilson4144f9b2014-09-11 08:43:48 +01003586 if (WARN_ON(!i915_gem_valid_gtt_space(vma, obj->cache_level))) {
Ben Widawsky2f633152013-07-17 12:19:03 -07003587 ret = -EINVAL;
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003588 goto err_remove_node;
Eric Anholt673a3942008-07-30 12:06:12 -07003589 }
3590
Daniel Vetter74163902012-02-15 23:50:21 +01003591 ret = i915_gem_gtt_prepare_object(obj);
Ben Widawsky2f633152013-07-17 12:19:03 -07003592 if (ret)
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003593 goto err_remove_node;
Eric Anholt673a3942008-07-30 12:06:12 -07003594
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003595 trace_i915_vma_bind(vma, flags);
3596 ret = i915_vma_bind(vma, obj->cache_level,
3597 flags & PIN_GLOBAL ? GLOBAL_BIND : 0);
3598 if (ret)
3599 goto err_finish_gtt;
3600
Ben Widawsky35c20a62013-05-31 11:28:48 -07003601 list_move_tail(&obj->global_list, &dev_priv->mm.bound_list);
Ben Widawskyca191b12013-07-31 17:00:14 -07003602 list_add_tail(&vma->mm_list, &vm->inactive_list);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01003603
Daniel Vetter262de142014-02-14 14:01:20 +01003604 return vma;
Ben Widawsky2f633152013-07-17 12:19:03 -07003605
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003606err_finish_gtt:
3607 i915_gem_gtt_finish_object(obj);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003608err_remove_node:
Dan Carpenter6286ef92013-07-19 08:46:27 +03003609 drm_mm_remove_node(&vma->node);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003610err_free_vma:
Ben Widawsky2f633152013-07-17 12:19:03 -07003611 i915_gem_vma_destroy(vma);
Daniel Vetter262de142014-02-14 14:01:20 +01003612 vma = ERR_PTR(ret);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003613err_unpin:
Ben Widawsky2f633152013-07-17 12:19:03 -07003614 i915_gem_object_unpin_pages(obj);
Daniel Vetter262de142014-02-14 14:01:20 +01003615 return vma;
Eric Anholt673a3942008-07-30 12:06:12 -07003616}
3617
Chris Wilson000433b2013-08-08 14:41:09 +01003618bool
Chris Wilson2c225692013-08-09 12:26:45 +01003619i915_gem_clflush_object(struct drm_i915_gem_object *obj,
3620 bool force)
Eric Anholt673a3942008-07-30 12:06:12 -07003621{
Eric Anholt673a3942008-07-30 12:06:12 -07003622 /* If we don't have a page list set up, then we're not pinned
3623 * to GPU, and we can ignore the cache flush because it'll happen
3624 * again at bind time.
3625 */
Chris Wilson05394f32010-11-08 19:18:58 +00003626 if (obj->pages == NULL)
Chris Wilson000433b2013-08-08 14:41:09 +01003627 return false;
Eric Anholt673a3942008-07-30 12:06:12 -07003628
Imre Deak769ce462013-02-13 21:56:05 +02003629 /*
3630 * Stolen memory is always coherent with the GPU as it is explicitly
3631 * marked as wc by the system, or the system is cache-coherent.
3632 */
Chris Wilson6a2c4232014-11-04 04:51:40 -08003633 if (obj->stolen || obj->phys_handle)
Chris Wilson000433b2013-08-08 14:41:09 +01003634 return false;
Imre Deak769ce462013-02-13 21:56:05 +02003635
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003636 /* If the GPU is snooping the contents of the CPU cache,
3637 * we do not need to manually clear the CPU cache lines. However,
3638 * the caches are only snooped when the render cache is
3639 * flushed/invalidated. As we always have to emit invalidations
3640 * and flushes when moving into and out of the RENDER domain, correct
3641 * snooping behaviour occurs naturally as the result of our domain
3642 * tracking.
3643 */
Chris Wilson0f719792015-01-13 13:32:52 +00003644 if (!force && cpu_cache_is_coherent(obj->base.dev, obj->cache_level)) {
3645 obj->cache_dirty = true;
Chris Wilson000433b2013-08-08 14:41:09 +01003646 return false;
Chris Wilson0f719792015-01-13 13:32:52 +00003647 }
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003648
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003649 trace_i915_gem_object_clflush(obj);
Chris Wilson9da3da62012-06-01 15:20:22 +01003650 drm_clflush_sg(obj->pages);
Chris Wilson0f719792015-01-13 13:32:52 +00003651 obj->cache_dirty = false;
Chris Wilson000433b2013-08-08 14:41:09 +01003652
3653 return true;
Eric Anholte47c68e2008-11-14 13:35:19 -08003654}
3655
3656/** Flushes the GTT write domain for the object if it's dirty. */
3657static void
Chris Wilson05394f32010-11-08 19:18:58 +00003658i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003659{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003660 uint32_t old_write_domain;
3661
Chris Wilson05394f32010-11-08 19:18:58 +00003662 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08003663 return;
3664
Chris Wilson63256ec2011-01-04 18:42:07 +00003665 /* No actual flushing is required for the GTT write domain. Writes
Eric Anholte47c68e2008-11-14 13:35:19 -08003666 * to it immediately go to main memory as far as we know, so there's
3667 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00003668 *
3669 * However, we do have to enforce the order so that all writes through
3670 * the GTT land before any writes to the device, such as updates to
3671 * the GATT itself.
Eric Anholte47c68e2008-11-14 13:35:19 -08003672 */
Chris Wilson63256ec2011-01-04 18:42:07 +00003673 wmb();
3674
Chris Wilson05394f32010-11-08 19:18:58 +00003675 old_write_domain = obj->base.write_domain;
3676 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003677
Daniel Vetterf99d7062014-06-19 16:01:59 +02003678 intel_fb_obj_flush(obj, false);
3679
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003680 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003681 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003682 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003683}
3684
3685/** Flushes the CPU write domain for the object if it's dirty. */
3686static void
Daniel Vettere62b59e2015-01-21 14:53:48 +01003687i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003688{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003689 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08003690
Chris Wilson05394f32010-11-08 19:18:58 +00003691 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08003692 return;
3693
Daniel Vettere62b59e2015-01-21 14:53:48 +01003694 if (i915_gem_clflush_object(obj, obj->pin_display))
Chris Wilson000433b2013-08-08 14:41:09 +01003695 i915_gem_chipset_flush(obj->base.dev);
3696
Chris Wilson05394f32010-11-08 19:18:58 +00003697 old_write_domain = obj->base.write_domain;
3698 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003699
Daniel Vetterf99d7062014-06-19 16:01:59 +02003700 intel_fb_obj_flush(obj, false);
3701
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003702 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003703 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003704 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003705}
3706
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003707/**
3708 * Moves a single object to the GTT read, and possibly write domain.
3709 *
3710 * This function returns when the move is complete, including waiting on
3711 * flushes to occur.
3712 */
Jesse Barnes79e53942008-11-07 14:24:08 -08003713int
Chris Wilson20217462010-11-23 15:26:33 +00003714i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003715{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003716 uint32_t old_write_domain, old_read_domains;
Chris Wilson43566de2015-01-02 16:29:29 +05303717 struct i915_vma *vma;
Eric Anholte47c68e2008-11-14 13:35:19 -08003718 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003719
Chris Wilson8d7e3de2011-02-07 15:23:02 +00003720 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
3721 return 0;
3722
Chris Wilson0201f1e2012-07-20 12:41:01 +01003723 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00003724 if (ret)
3725 return ret;
3726
Chris Wilsonc8725f32014-03-17 12:21:55 +00003727 i915_gem_object_retire(obj);
Chris Wilson43566de2015-01-02 16:29:29 +05303728
3729 /* Flush and acquire obj->pages so that we are coherent through
3730 * direct access in memory with previous cached writes through
3731 * shmemfs and that our cache domain tracking remains valid.
3732 * For example, if the obj->filp was moved to swap without us
3733 * being notified and releasing the pages, we would mistakenly
3734 * continue to assume that the obj remained out of the CPU cached
3735 * domain.
3736 */
3737 ret = i915_gem_object_get_pages(obj);
3738 if (ret)
3739 return ret;
3740
Daniel Vettere62b59e2015-01-21 14:53:48 +01003741 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003742
Chris Wilsond0a57782012-10-09 19:24:37 +01003743 /* Serialise direct access to this object with the barriers for
3744 * coherent writes from the GPU, by effectively invalidating the
3745 * GTT domain upon first access.
3746 */
3747 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
3748 mb();
3749
Chris Wilson05394f32010-11-08 19:18:58 +00003750 old_write_domain = obj->base.write_domain;
3751 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003752
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003753 /* It should now be out of any other write domains, and we can update
3754 * the domain values for our changes.
3755 */
Chris Wilson05394f32010-11-08 19:18:58 +00003756 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
3757 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08003758 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003759 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
3760 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
3761 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08003762 }
3763
Daniel Vetterf99d7062014-06-19 16:01:59 +02003764 if (write)
3765 intel_fb_obj_invalidate(obj, NULL);
3766
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003767 trace_i915_gem_object_change_domain(obj,
3768 old_read_domains,
3769 old_write_domain);
3770
Chris Wilson8325a092012-04-24 15:52:35 +01003771 /* And bump the LRU for this access */
Chris Wilson43566de2015-01-02 16:29:29 +05303772 vma = i915_gem_obj_to_ggtt(obj);
3773 if (vma && drm_mm_node_allocated(&vma->node) && !obj->active)
Chris Wilsondc8cd1e2014-08-09 17:37:22 +01003774 list_move_tail(&vma->mm_list,
Chris Wilson43566de2015-01-02 16:29:29 +05303775 &to_i915(obj->base.dev)->gtt.base.inactive_list);
Chris Wilson8325a092012-04-24 15:52:35 +01003776
Eric Anholte47c68e2008-11-14 13:35:19 -08003777 return 0;
3778}
3779
Chris Wilsone4ffd172011-04-04 09:44:39 +01003780int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
3781 enum i915_cache_level cache_level)
3782{
Daniel Vetter7bddb012012-02-09 17:15:47 +01003783 struct drm_device *dev = obj->base.dev;
Chris Wilsondf6f7832014-03-21 07:40:56 +00003784 struct i915_vma *vma, *next;
Chris Wilsone4ffd172011-04-04 09:44:39 +01003785 int ret;
3786
3787 if (obj->cache_level == cache_level)
3788 return 0;
3789
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08003790 if (i915_gem_obj_is_pinned(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003791 DRM_DEBUG("can not change the cache level of pinned objects\n");
3792 return -EBUSY;
3793 }
3794
Chris Wilsondf6f7832014-03-21 07:40:56 +00003795 list_for_each_entry_safe(vma, next, &obj->vma_list, vma_link) {
Chris Wilson4144f9b2014-09-11 08:43:48 +01003796 if (!i915_gem_valid_gtt_space(vma, cache_level)) {
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003797 ret = i915_vma_unbind(vma);
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003798 if (ret)
3799 return ret;
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003800 }
Chris Wilson42d6ab42012-07-26 11:49:32 +01003801 }
3802
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003803 if (i915_gem_obj_bound_any(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003804 ret = i915_gem_object_finish_gpu(obj);
3805 if (ret)
3806 return ret;
3807
3808 i915_gem_object_finish_gtt(obj);
3809
3810 /* Before SandyBridge, you could not use tiling or fence
3811 * registers with snooped memory, so relinquish any fences
3812 * currently pointing to our region in the aperture.
3813 */
Chris Wilson42d6ab42012-07-26 11:49:32 +01003814 if (INTEL_INFO(dev)->gen < 6) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003815 ret = i915_gem_object_put_fence(obj);
3816 if (ret)
3817 return ret;
3818 }
3819
Ben Widawsky6f65e292013-12-06 14:10:56 -08003820 list_for_each_entry(vma, &obj->vma_list, vma_link)
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003821 if (drm_mm_node_allocated(&vma->node)) {
3822 ret = i915_vma_bind(vma, cache_level,
3823 vma->bound & GLOBAL_BIND);
3824 if (ret)
3825 return ret;
3826 }
Chris Wilsone4ffd172011-04-04 09:44:39 +01003827 }
3828
Chris Wilson2c225692013-08-09 12:26:45 +01003829 list_for_each_entry(vma, &obj->vma_list, vma_link)
3830 vma->node.color = cache_level;
3831 obj->cache_level = cache_level;
3832
Chris Wilson0f719792015-01-13 13:32:52 +00003833 if (obj->cache_dirty &&
3834 obj->base.write_domain != I915_GEM_DOMAIN_CPU &&
3835 cpu_write_needs_clflush(obj)) {
3836 if (i915_gem_clflush_object(obj, true))
3837 i915_gem_chipset_flush(obj->base.dev);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003838 }
3839
Chris Wilsone4ffd172011-04-04 09:44:39 +01003840 return 0;
3841}
3842
Ben Widawsky199adf42012-09-21 17:01:20 -07003843int i915_gem_get_caching_ioctl(struct drm_device *dev, void *data,
3844 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003845{
Ben Widawsky199adf42012-09-21 17:01:20 -07003846 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003847 struct drm_i915_gem_object *obj;
3848 int ret;
3849
3850 ret = i915_mutex_lock_interruptible(dev);
3851 if (ret)
3852 return ret;
3853
3854 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3855 if (&obj->base == NULL) {
3856 ret = -ENOENT;
3857 goto unlock;
3858 }
3859
Chris Wilson651d7942013-08-08 14:41:10 +01003860 switch (obj->cache_level) {
3861 case I915_CACHE_LLC:
3862 case I915_CACHE_L3_LLC:
3863 args->caching = I915_CACHING_CACHED;
3864 break;
3865
Chris Wilson4257d3b2013-08-08 14:41:11 +01003866 case I915_CACHE_WT:
3867 args->caching = I915_CACHING_DISPLAY;
3868 break;
3869
Chris Wilson651d7942013-08-08 14:41:10 +01003870 default:
3871 args->caching = I915_CACHING_NONE;
3872 break;
3873 }
Chris Wilsone6994ae2012-07-10 10:27:08 +01003874
3875 drm_gem_object_unreference(&obj->base);
3876unlock:
3877 mutex_unlock(&dev->struct_mutex);
3878 return ret;
3879}
3880
Ben Widawsky199adf42012-09-21 17:01:20 -07003881int i915_gem_set_caching_ioctl(struct drm_device *dev, void *data,
3882 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003883{
Ben Widawsky199adf42012-09-21 17:01:20 -07003884 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003885 struct drm_i915_gem_object *obj;
3886 enum i915_cache_level level;
3887 int ret;
3888
Ben Widawsky199adf42012-09-21 17:01:20 -07003889 switch (args->caching) {
3890 case I915_CACHING_NONE:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003891 level = I915_CACHE_NONE;
3892 break;
Ben Widawsky199adf42012-09-21 17:01:20 -07003893 case I915_CACHING_CACHED:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003894 level = I915_CACHE_LLC;
3895 break;
Chris Wilson4257d3b2013-08-08 14:41:11 +01003896 case I915_CACHING_DISPLAY:
3897 level = HAS_WT(dev) ? I915_CACHE_WT : I915_CACHE_NONE;
3898 break;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003899 default:
3900 return -EINVAL;
3901 }
3902
Ben Widawsky3bc29132012-09-26 16:15:20 -07003903 ret = i915_mutex_lock_interruptible(dev);
3904 if (ret)
3905 return ret;
3906
Chris Wilsone6994ae2012-07-10 10:27:08 +01003907 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3908 if (&obj->base == NULL) {
3909 ret = -ENOENT;
3910 goto unlock;
3911 }
3912
3913 ret = i915_gem_object_set_cache_level(obj, level);
3914
3915 drm_gem_object_unreference(&obj->base);
3916unlock:
3917 mutex_unlock(&dev->struct_mutex);
3918 return ret;
3919}
3920
Chris Wilsoncc98b412013-08-09 12:25:09 +01003921static bool is_pin_display(struct drm_i915_gem_object *obj)
3922{
Oscar Mateo19656432014-05-16 14:20:43 +01003923 struct i915_vma *vma;
3924
Oscar Mateo19656432014-05-16 14:20:43 +01003925 vma = i915_gem_obj_to_ggtt(obj);
3926 if (!vma)
3927 return false;
3928
Daniel Vetter4feb7652014-11-24 11:21:52 +01003929 /* There are 2 sources that pin objects:
Chris Wilsoncc98b412013-08-09 12:25:09 +01003930 * 1. The display engine (scanouts, sprites, cursors);
3931 * 2. Reservations for execbuffer;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003932 *
3933 * We can ignore reservations as we hold the struct_mutex and
Daniel Vetter4feb7652014-11-24 11:21:52 +01003934 * are only called outside of the reservation path.
Chris Wilsoncc98b412013-08-09 12:25:09 +01003935 */
Daniel Vetter4feb7652014-11-24 11:21:52 +01003936 return vma->pin_count;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003937}
3938
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003939/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003940 * Prepare buffer for display plane (scanout, cursors, etc).
3941 * Can be called from an uninterruptible phase (modesetting) and allows
3942 * any flushes to be pipelined (for pageflips).
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003943 */
3944int
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003945i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
3946 u32 alignment,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003947 struct intel_engine_cs *pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003948{
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003949 u32 old_read_domains, old_write_domain;
Oscar Mateo19656432014-05-16 14:20:43 +01003950 bool was_pin_display;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003951 int ret;
3952
John Harrison41c52412014-11-24 18:49:43 +00003953 if (pipelined != i915_gem_request_get_ring(obj->last_read_req)) {
Ben Widawsky2911a352012-04-05 14:47:36 -07003954 ret = i915_gem_object_sync(obj, pipelined);
3955 if (ret)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003956 return ret;
3957 }
3958
Chris Wilsoncc98b412013-08-09 12:25:09 +01003959 /* Mark the pin_display early so that we account for the
3960 * display coherency whilst setting up the cache domains.
3961 */
Oscar Mateo19656432014-05-16 14:20:43 +01003962 was_pin_display = obj->pin_display;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003963 obj->pin_display = true;
3964
Eric Anholta7ef0642011-03-29 16:59:54 -07003965 /* The display engine is not coherent with the LLC cache on gen6. As
3966 * a result, we make sure that the pinning that is about to occur is
3967 * done with uncached PTEs. This is lowest common denominator for all
3968 * chipsets.
3969 *
3970 * However for gen6+, we could do better by using the GFDT bit instead
3971 * of uncaching, which would allow us to flush all the LLC-cached data
3972 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
3973 */
Chris Wilson651d7942013-08-08 14:41:10 +01003974 ret = i915_gem_object_set_cache_level(obj,
3975 HAS_WT(obj->base.dev) ? I915_CACHE_WT : I915_CACHE_NONE);
Eric Anholta7ef0642011-03-29 16:59:54 -07003976 if (ret)
Chris Wilsoncc98b412013-08-09 12:25:09 +01003977 goto err_unpin_display;
Eric Anholta7ef0642011-03-29 16:59:54 -07003978
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003979 /* As the user may map the buffer once pinned in the display plane
3980 * (e.g. libkms for the bootup splash), we have to ensure that we
3981 * always use map_and_fenceable for all scanout buffers.
3982 */
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003983 ret = i915_gem_obj_ggtt_pin(obj, alignment, PIN_MAPPABLE);
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003984 if (ret)
Chris Wilsoncc98b412013-08-09 12:25:09 +01003985 goto err_unpin_display;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003986
Daniel Vettere62b59e2015-01-21 14:53:48 +01003987 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilsonb118c1e2010-05-27 13:18:14 +01003988
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003989 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00003990 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003991
3992 /* It should now be out of any other write domains, and we can update
3993 * the domain values for our changes.
3994 */
Chris Wilsone5f1d962012-07-20 12:41:00 +01003995 obj->base.write_domain = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00003996 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003997
3998 trace_i915_gem_object_change_domain(obj,
3999 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01004000 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08004001
4002 return 0;
Chris Wilsoncc98b412013-08-09 12:25:09 +01004003
4004err_unpin_display:
Oscar Mateo19656432014-05-16 14:20:43 +01004005 WARN_ON(was_pin_display != is_pin_display(obj));
4006 obj->pin_display = was_pin_display;
Chris Wilsoncc98b412013-08-09 12:25:09 +01004007 return ret;
4008}
4009
4010void
4011i915_gem_object_unpin_from_display_plane(struct drm_i915_gem_object *obj)
4012{
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004013 i915_gem_object_ggtt_unpin(obj);
Chris Wilsoncc98b412013-08-09 12:25:09 +01004014 obj->pin_display = is_pin_display(obj);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08004015}
4016
Chris Wilson85345512010-11-13 09:49:11 +00004017int
Chris Wilsona8198ee2011-04-13 22:04:09 +01004018i915_gem_object_finish_gpu(struct drm_i915_gem_object *obj)
Chris Wilson85345512010-11-13 09:49:11 +00004019{
Chris Wilson88241782011-01-07 17:09:48 +00004020 int ret;
4021
Chris Wilsona8198ee2011-04-13 22:04:09 +01004022 if ((obj->base.read_domains & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson85345512010-11-13 09:49:11 +00004023 return 0;
4024
Chris Wilson0201f1e2012-07-20 12:41:01 +01004025 ret = i915_gem_object_wait_rendering(obj, false);
Chris Wilsonc501ae72011-12-14 13:57:23 +01004026 if (ret)
4027 return ret;
4028
Chris Wilsona8198ee2011-04-13 22:04:09 +01004029 /* Ensure that we invalidate the GPU's caches and TLBs. */
4030 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilsonc501ae72011-12-14 13:57:23 +01004031 return 0;
Chris Wilson85345512010-11-13 09:49:11 +00004032}
4033
Eric Anholte47c68e2008-11-14 13:35:19 -08004034/**
4035 * Moves a single object to the CPU read, and possibly write domain.
4036 *
4037 * This function returns when the move is complete, including waiting on
4038 * flushes to occur.
4039 */
Chris Wilsondabdfe02012-03-26 10:10:27 +02004040int
Chris Wilson919926a2010-11-12 13:42:53 +00004041i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08004042{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004043 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08004044 int ret;
4045
Chris Wilson8d7e3de2011-02-07 15:23:02 +00004046 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
4047 return 0;
4048
Chris Wilson0201f1e2012-07-20 12:41:01 +01004049 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00004050 if (ret)
4051 return ret;
4052
Chris Wilsonc8725f32014-03-17 12:21:55 +00004053 i915_gem_object_retire(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08004054 i915_gem_object_flush_gtt_write_domain(obj);
4055
Chris Wilson05394f32010-11-08 19:18:58 +00004056 old_write_domain = obj->base.write_domain;
4057 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004058
Eric Anholte47c68e2008-11-14 13:35:19 -08004059 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00004060 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Chris Wilson2c225692013-08-09 12:26:45 +01004061 i915_gem_clflush_object(obj, false);
Eric Anholte47c68e2008-11-14 13:35:19 -08004062
Chris Wilson05394f32010-11-08 19:18:58 +00004063 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08004064 }
4065
4066 /* It should now be out of any other write domains, and we can update
4067 * the domain values for our changes.
4068 */
Chris Wilson05394f32010-11-08 19:18:58 +00004069 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08004070
4071 /* If we're writing through the CPU, then the GPU read domains will
4072 * need to be invalidated at next use.
4073 */
4074 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00004075 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4076 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08004077 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08004078
Daniel Vetterf99d7062014-06-19 16:01:59 +02004079 if (write)
4080 intel_fb_obj_invalidate(obj, NULL);
4081
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004082 trace_i915_gem_object_change_domain(obj,
4083 old_read_domains,
4084 old_write_domain);
4085
Eric Anholt2ef7eea2008-11-10 10:53:25 -08004086 return 0;
4087}
4088
Eric Anholt673a3942008-07-30 12:06:12 -07004089/* Throttle our rendering by waiting until the ring has completed our requests
4090 * emitted over 20 msec ago.
4091 *
Eric Anholtb9624422009-06-03 07:27:35 +00004092 * Note that if we were to use the current jiffies each time around the loop,
4093 * we wouldn't escape the function with any frames outstanding if the time to
4094 * render a frame was over 20ms.
4095 *
Eric Anholt673a3942008-07-30 12:06:12 -07004096 * This should get us reasonable parallelism between CPU and GPU but also
4097 * relatively low latency when blocking on a particular request to finish.
4098 */
4099static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004100i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004101{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004102 struct drm_i915_private *dev_priv = dev->dev_private;
4103 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00004104 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
John Harrison54fb2412014-11-24 18:49:27 +00004105 struct drm_i915_gem_request *request, *target = NULL;
Daniel Vetterf69061b2012-12-06 09:01:42 +01004106 unsigned reset_counter;
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004107 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004108
Daniel Vetter308887a2012-11-14 17:14:06 +01004109 ret = i915_gem_wait_for_error(&dev_priv->gpu_error);
4110 if (ret)
4111 return ret;
4112
4113 ret = i915_gem_check_wedge(&dev_priv->gpu_error, false);
4114 if (ret)
4115 return ret;
Chris Wilsone110e8d2011-01-26 15:39:14 +00004116
Chris Wilson1c255952010-09-26 11:03:27 +01004117 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004118 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00004119 if (time_after_eq(request->emitted_jiffies, recent_enough))
4120 break;
4121
John Harrison54fb2412014-11-24 18:49:27 +00004122 target = request;
Eric Anholtb9624422009-06-03 07:27:35 +00004123 }
Daniel Vetterf69061b2012-12-06 09:01:42 +01004124 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
John Harrisonff865882014-11-24 18:49:28 +00004125 if (target)
4126 i915_gem_request_reference(target);
Chris Wilson1c255952010-09-26 11:03:27 +01004127 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004128
John Harrison54fb2412014-11-24 18:49:27 +00004129 if (target == NULL)
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004130 return 0;
4131
John Harrison9c654812014-11-24 18:49:35 +00004132 ret = __i915_wait_request(target, reset_counter, true, NULL, NULL);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004133 if (ret == 0)
4134 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00004135
John Harrisonff865882014-11-24 18:49:28 +00004136 mutex_lock(&dev->struct_mutex);
4137 i915_gem_request_unreference(target);
4138 mutex_unlock(&dev->struct_mutex);
4139
Eric Anholt673a3942008-07-30 12:06:12 -07004140 return ret;
4141}
4142
Chris Wilsond23db882014-05-23 08:48:08 +02004143static bool
4144i915_vma_misplaced(struct i915_vma *vma, uint32_t alignment, uint64_t flags)
4145{
4146 struct drm_i915_gem_object *obj = vma->obj;
4147
4148 if (alignment &&
4149 vma->node.start & (alignment - 1))
4150 return true;
4151
4152 if (flags & PIN_MAPPABLE && !obj->map_and_fenceable)
4153 return true;
4154
4155 if (flags & PIN_OFFSET_BIAS &&
4156 vma->node.start < (flags & PIN_OFFSET_MASK))
4157 return true;
4158
4159 return false;
4160}
4161
Eric Anholt673a3942008-07-30 12:06:12 -07004162int
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00004163i915_gem_object_pin_view(struct drm_i915_gem_object *obj,
4164 struct i915_address_space *vm,
4165 uint32_t alignment,
4166 uint64_t flags,
4167 const struct i915_ggtt_view *view)
Eric Anholt673a3942008-07-30 12:06:12 -07004168{
Ben Widawsky6e7186a2014-05-06 22:21:36 -07004169 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004170 struct i915_vma *vma;
Chris Wilsonef79e172014-10-31 13:53:52 +00004171 unsigned bound;
Eric Anholt673a3942008-07-30 12:06:12 -07004172 int ret;
4173
Ben Widawsky6e7186a2014-05-06 22:21:36 -07004174 if (WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base))
4175 return -ENODEV;
4176
Daniel Vetterbf3d1492014-02-14 14:01:12 +01004177 if (WARN_ON(flags & (PIN_GLOBAL | PIN_MAPPABLE) && !i915_is_ggtt(vm)))
Daniel Vetter1ec9e262014-02-14 14:01:11 +01004178 return -EINVAL;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004179
Chris Wilsonc826c442014-10-31 13:53:53 +00004180 if (WARN_ON((flags & (PIN_MAPPABLE | PIN_GLOBAL)) == PIN_MAPPABLE))
4181 return -EINVAL;
4182
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00004183 vma = i915_gem_obj_to_vma_view(obj, vm, view);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004184 if (vma) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004185 if (WARN_ON(vma->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT))
4186 return -EBUSY;
4187
Chris Wilsond23db882014-05-23 08:48:08 +02004188 if (i915_vma_misplaced(vma, alignment, flags)) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004189 WARN(vma->pin_count,
Chris Wilsonae7d49d2010-08-04 12:37:41 +01004190 "bo is already pinned with incorrect alignment:"
Ben Widawskyf343c5f2013-07-05 14:41:04 -07004191 " offset=%lx, req.alignment=%x, req.map_and_fenceable=%d,"
Daniel Vetter75e9e912010-11-04 17:11:09 +01004192 " obj->map_and_fenceable=%d\n",
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00004193 i915_gem_obj_offset_view(obj, vm, view->type),
4194 alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02004195 !!(flags & PIN_MAPPABLE),
Chris Wilson05394f32010-11-08 19:18:58 +00004196 obj->map_and_fenceable);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004197 ret = i915_vma_unbind(vma);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004198 if (ret)
4199 return ret;
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004200
4201 vma = NULL;
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004202 }
4203 }
4204
Chris Wilsonef79e172014-10-31 13:53:52 +00004205 bound = vma ? vma->bound : 0;
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004206 if (vma == NULL || !drm_mm_node_allocated(&vma->node)) {
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00004207 vma = i915_gem_object_bind_to_vm(obj, vm, alignment,
4208 flags, view);
Daniel Vetter262de142014-02-14 14:01:20 +01004209 if (IS_ERR(vma))
4210 return PTR_ERR(vma);
Chris Wilson22c344e2009-02-11 14:26:45 +00004211 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05004212
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00004213 if (flags & PIN_GLOBAL && !(vma->bound & GLOBAL_BIND)) {
4214 ret = i915_vma_bind(vma, obj->cache_level, GLOBAL_BIND);
4215 if (ret)
4216 return ret;
4217 }
Daniel Vetter74898d72012-02-15 23:50:22 +01004218
Chris Wilsonef79e172014-10-31 13:53:52 +00004219 if ((bound ^ vma->bound) & GLOBAL_BIND) {
4220 bool mappable, fenceable;
4221 u32 fence_size, fence_alignment;
4222
4223 fence_size = i915_gem_get_gtt_size(obj->base.dev,
4224 obj->base.size,
4225 obj->tiling_mode);
4226 fence_alignment = i915_gem_get_gtt_alignment(obj->base.dev,
4227 obj->base.size,
4228 obj->tiling_mode,
4229 true);
4230
4231 fenceable = (vma->node.size == fence_size &&
4232 (vma->node.start & (fence_alignment - 1)) == 0);
4233
4234 mappable = (vma->node.start + obj->base.size <=
4235 dev_priv->gtt.mappable_end);
4236
4237 obj->map_and_fenceable = mappable && fenceable;
4238 }
4239
4240 WARN_ON(flags & PIN_MAPPABLE && !obj->map_and_fenceable);
4241
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004242 vma->pin_count++;
Daniel Vetter1ec9e262014-02-14 14:01:11 +01004243 if (flags & PIN_MAPPABLE)
4244 obj->pin_mappable |= true;
Eric Anholt673a3942008-07-30 12:06:12 -07004245
4246 return 0;
4247}
4248
4249void
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004250i915_gem_object_ggtt_unpin(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07004251{
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004252 struct i915_vma *vma = i915_gem_obj_to_ggtt(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004253
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004254 BUG_ON(!vma);
4255 BUG_ON(vma->pin_count == 0);
4256 BUG_ON(!i915_gem_obj_ggtt_bound(obj));
4257
4258 if (--vma->pin_count == 0)
Chris Wilson6299f992010-11-24 12:23:44 +00004259 obj->pin_mappable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07004260}
4261
Daniel Vetterd8ffa602014-05-13 12:11:26 +02004262bool
4263i915_gem_object_pin_fence(struct drm_i915_gem_object *obj)
4264{
4265 if (obj->fence_reg != I915_FENCE_REG_NONE) {
4266 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
4267 struct i915_vma *ggtt_vma = i915_gem_obj_to_ggtt(obj);
4268
4269 WARN_ON(!ggtt_vma ||
4270 dev_priv->fence_regs[obj->fence_reg].pin_count >
4271 ggtt_vma->pin_count);
4272 dev_priv->fence_regs[obj->fence_reg].pin_count++;
4273 return true;
4274 } else
4275 return false;
4276}
4277
4278void
4279i915_gem_object_unpin_fence(struct drm_i915_gem_object *obj)
4280{
4281 if (obj->fence_reg != I915_FENCE_REG_NONE) {
4282 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
4283 WARN_ON(dev_priv->fence_regs[obj->fence_reg].pin_count <= 0);
4284 dev_priv->fence_regs[obj->fence_reg].pin_count--;
4285 }
4286}
4287
Eric Anholt673a3942008-07-30 12:06:12 -07004288int
Eric Anholt673a3942008-07-30 12:06:12 -07004289i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00004290 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004291{
4292 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004293 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01004294 int ret;
4295
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004296 ret = i915_mutex_lock_interruptible(dev);
4297 if (ret)
4298 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004299
Chris Wilson05394f32010-11-08 19:18:58 +00004300 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004301 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004302 ret = -ENOENT;
4303 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07004304 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08004305
Chris Wilson0be555b2010-08-04 15:36:30 +01004306 /* Count all active objects as busy, even if they are currently not used
4307 * by the gpu. Users of this interface expect objects to eventually
4308 * become non-busy without any further actions, therefore emit any
4309 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08004310 */
Daniel Vetter30dfebf2012-06-01 15:21:23 +02004311 ret = i915_gem_object_flush_active(obj);
4312
Chris Wilson05394f32010-11-08 19:18:58 +00004313 args->busy = obj->active;
John Harrison41c52412014-11-24 18:49:43 +00004314 if (obj->last_read_req) {
4315 struct intel_engine_cs *ring;
Chris Wilsone9808ed2012-07-04 12:25:08 +01004316 BUILD_BUG_ON(I915_NUM_RINGS > 16);
John Harrison41c52412014-11-24 18:49:43 +00004317 ring = i915_gem_request_get_ring(obj->last_read_req);
4318 args->busy |= intel_ring_flag(ring) << 16;
Chris Wilsone9808ed2012-07-04 12:25:08 +01004319 }
Eric Anholt673a3942008-07-30 12:06:12 -07004320
Chris Wilson05394f32010-11-08 19:18:58 +00004321 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004322unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07004323 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004324 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004325}
4326
4327int
4328i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
4329 struct drm_file *file_priv)
4330{
Akshay Joshi0206e352011-08-16 15:34:10 -04004331 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07004332}
4333
Chris Wilson3ef94da2009-09-14 16:50:29 +01004334int
4335i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
4336 struct drm_file *file_priv)
4337{
Daniel Vetter656bfa32014-11-20 09:26:30 +01004338 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004339 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004340 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01004341 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004342
4343 switch (args->madv) {
4344 case I915_MADV_DONTNEED:
4345 case I915_MADV_WILLNEED:
4346 break;
4347 default:
4348 return -EINVAL;
4349 }
4350
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004351 ret = i915_mutex_lock_interruptible(dev);
4352 if (ret)
4353 return ret;
4354
Chris Wilson05394f32010-11-08 19:18:58 +00004355 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004356 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004357 ret = -ENOENT;
4358 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004359 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01004360
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004361 if (i915_gem_obj_is_pinned(obj)) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004362 ret = -EINVAL;
4363 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004364 }
4365
Daniel Vetter656bfa32014-11-20 09:26:30 +01004366 if (obj->pages &&
4367 obj->tiling_mode != I915_TILING_NONE &&
4368 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES) {
4369 if (obj->madv == I915_MADV_WILLNEED)
4370 i915_gem_object_unpin_pages(obj);
4371 if (args->madv == I915_MADV_WILLNEED)
4372 i915_gem_object_pin_pages(obj);
4373 }
4374
Chris Wilson05394f32010-11-08 19:18:58 +00004375 if (obj->madv != __I915_MADV_PURGED)
4376 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004377
Chris Wilson6c085a72012-08-20 11:40:46 +02004378 /* if the object is no longer attached, discard its backing storage */
4379 if (i915_gem_object_is_purgeable(obj) && obj->pages == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01004380 i915_gem_object_truncate(obj);
4381
Chris Wilson05394f32010-11-08 19:18:58 +00004382 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01004383
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004384out:
Chris Wilson05394f32010-11-08 19:18:58 +00004385 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004386unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01004387 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004388 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004389}
4390
Chris Wilson37e680a2012-06-07 15:38:42 +01004391void i915_gem_object_init(struct drm_i915_gem_object *obj,
4392 const struct drm_i915_gem_object_ops *ops)
Chris Wilson0327d6b2012-08-11 15:41:06 +01004393{
Ben Widawsky35c20a62013-05-31 11:28:48 -07004394 INIT_LIST_HEAD(&obj->global_list);
Chris Wilson0327d6b2012-08-11 15:41:06 +01004395 INIT_LIST_HEAD(&obj->ring_list);
Ben Widawskyb25cb2f2013-08-14 11:38:33 +02004396 INIT_LIST_HEAD(&obj->obj_exec_link);
Ben Widawsky2f633152013-07-17 12:19:03 -07004397 INIT_LIST_HEAD(&obj->vma_list);
Brad Volkin493018d2014-12-11 12:13:08 -08004398 INIT_LIST_HEAD(&obj->batch_pool_list);
Chris Wilson0327d6b2012-08-11 15:41:06 +01004399
Chris Wilson37e680a2012-06-07 15:38:42 +01004400 obj->ops = ops;
4401
Chris Wilson0327d6b2012-08-11 15:41:06 +01004402 obj->fence_reg = I915_FENCE_REG_NONE;
4403 obj->madv = I915_MADV_WILLNEED;
Chris Wilson0327d6b2012-08-11 15:41:06 +01004404
4405 i915_gem_info_add_obj(obj->base.dev->dev_private, obj->base.size);
4406}
4407
Chris Wilson37e680a2012-06-07 15:38:42 +01004408static const struct drm_i915_gem_object_ops i915_gem_object_ops = {
4409 .get_pages = i915_gem_object_get_pages_gtt,
4410 .put_pages = i915_gem_object_put_pages_gtt,
4411};
4412
Chris Wilson05394f32010-11-08 19:18:58 +00004413struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
4414 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00004415{
Daniel Vetterc397b902010-04-09 19:05:07 +00004416 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07004417 struct address_space *mapping;
Daniel Vetter1a240d42012-11-29 22:18:51 +01004418 gfp_t mask;
Daniel Vetterc397b902010-04-09 19:05:07 +00004419
Chris Wilson42dcedd2012-11-15 11:32:30 +00004420 obj = i915_gem_object_alloc(dev);
Daniel Vetterc397b902010-04-09 19:05:07 +00004421 if (obj == NULL)
4422 return NULL;
4423
4424 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
Chris Wilson42dcedd2012-11-15 11:32:30 +00004425 i915_gem_object_free(obj);
Daniel Vetterc397b902010-04-09 19:05:07 +00004426 return NULL;
4427 }
4428
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004429 mask = GFP_HIGHUSER | __GFP_RECLAIMABLE;
4430 if (IS_CRESTLINE(dev) || IS_BROADWATER(dev)) {
4431 /* 965gm cannot relocate objects above 4GiB. */
4432 mask &= ~__GFP_HIGHMEM;
4433 mask |= __GFP_DMA32;
4434 }
4435
Al Viro496ad9a2013-01-23 17:07:38 -05004436 mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004437 mapping_set_gfp_mask(mapping, mask);
Hugh Dickins5949eac2011-06-27 16:18:18 -07004438
Chris Wilson37e680a2012-06-07 15:38:42 +01004439 i915_gem_object_init(obj, &i915_gem_object_ops);
Chris Wilson73aa8082010-09-30 11:46:12 +01004440
Daniel Vetterc397b902010-04-09 19:05:07 +00004441 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
4442 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4443
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02004444 if (HAS_LLC(dev)) {
4445 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07004446 * cache) for about a 10% performance improvement
4447 * compared to uncached. Graphics requests other than
4448 * display scanout are coherent with the CPU in
4449 * accessing this cache. This means in this mode we
4450 * don't need to clflush on the CPU side, and on the
4451 * GPU side we only need to flush internal caches to
4452 * get data visible to the CPU.
4453 *
4454 * However, we maintain the display planes as UC, and so
4455 * need to rebind when first used as such.
4456 */
4457 obj->cache_level = I915_CACHE_LLC;
4458 } else
4459 obj->cache_level = I915_CACHE_NONE;
4460
Daniel Vetterd861e332013-07-24 23:25:03 +02004461 trace_i915_gem_object_create(obj);
4462
Chris Wilson05394f32010-11-08 19:18:58 +00004463 return obj;
Daniel Vetterac52bc52010-04-09 19:05:06 +00004464}
4465
Chris Wilson340fbd82014-05-22 09:16:52 +01004466static bool discard_backing_storage(struct drm_i915_gem_object *obj)
4467{
4468 /* If we are the last user of the backing storage (be it shmemfs
4469 * pages or stolen etc), we know that the pages are going to be
4470 * immediately released. In this case, we can then skip copying
4471 * back the contents from the GPU.
4472 */
4473
4474 if (obj->madv != I915_MADV_WILLNEED)
4475 return false;
4476
4477 if (obj->base.filp == NULL)
4478 return true;
4479
4480 /* At first glance, this looks racy, but then again so would be
4481 * userspace racing mmap against close. However, the first external
4482 * reference to the filp can only be obtained through the
4483 * i915_gem_mmap_ioctl() which safeguards us against the user
4484 * acquiring such a reference whilst we are in the middle of
4485 * freeing the object.
4486 */
4487 return atomic_long_read(&obj->base.filp->f_count) == 1;
4488}
4489
Chris Wilson1488fc02012-04-24 15:47:31 +01004490void i915_gem_free_object(struct drm_gem_object *gem_obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01004491{
Chris Wilson1488fc02012-04-24 15:47:31 +01004492 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00004493 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004494 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004495 struct i915_vma *vma, *next;
Chris Wilsonbe726152010-07-23 23:18:50 +01004496
Paulo Zanonif65c9162013-11-27 18:20:34 -02004497 intel_runtime_pm_get(dev_priv);
4498
Chris Wilson26e12f892011-03-20 11:20:19 +00004499 trace_i915_gem_object_destroy(obj);
4500
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004501 list_for_each_entry_safe(vma, next, &obj->vma_list, vma_link) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004502 int ret;
4503
4504 vma->pin_count = 0;
4505 ret = i915_vma_unbind(vma);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004506 if (WARN_ON(ret == -ERESTARTSYS)) {
4507 bool was_interruptible;
Chris Wilson1488fc02012-04-24 15:47:31 +01004508
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004509 was_interruptible = dev_priv->mm.interruptible;
4510 dev_priv->mm.interruptible = false;
Chris Wilson1488fc02012-04-24 15:47:31 +01004511
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004512 WARN_ON(i915_vma_unbind(vma));
Chris Wilson1488fc02012-04-24 15:47:31 +01004513
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004514 dev_priv->mm.interruptible = was_interruptible;
4515 }
Chris Wilson1488fc02012-04-24 15:47:31 +01004516 }
4517
Ben Widawsky1d64ae72013-05-31 14:46:20 -07004518 /* Stolen objects don't hold a ref, but do hold pin count. Fix that up
4519 * before progressing. */
4520 if (obj->stolen)
4521 i915_gem_object_unpin_pages(obj);
4522
Daniel Vettera071fa02014-06-18 23:28:09 +02004523 WARN_ON(obj->frontbuffer_bits);
4524
Daniel Vetter656bfa32014-11-20 09:26:30 +01004525 if (obj->pages && obj->madv == I915_MADV_WILLNEED &&
4526 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES &&
4527 obj->tiling_mode != I915_TILING_NONE)
4528 i915_gem_object_unpin_pages(obj);
4529
Ben Widawsky401c29f2013-05-31 11:28:47 -07004530 if (WARN_ON(obj->pages_pin_count))
4531 obj->pages_pin_count = 0;
Chris Wilson340fbd82014-05-22 09:16:52 +01004532 if (discard_backing_storage(obj))
Chris Wilson55372522014-03-25 13:23:06 +00004533 obj->madv = I915_MADV_DONTNEED;
Chris Wilson37e680a2012-06-07 15:38:42 +01004534 i915_gem_object_put_pages(obj);
Chris Wilsond8cb5082012-08-11 15:41:03 +01004535 i915_gem_object_free_mmap_offset(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01004536
Chris Wilson9da3da62012-06-01 15:20:22 +01004537 BUG_ON(obj->pages);
4538
Chris Wilson2f745ad2012-09-04 21:02:58 +01004539 if (obj->base.import_attach)
4540 drm_prime_gem_destroy(&obj->base, NULL);
Chris Wilsonbe726152010-07-23 23:18:50 +01004541
Chris Wilson5cc9ed42014-05-16 14:22:37 +01004542 if (obj->ops->release)
4543 obj->ops->release(obj);
4544
Chris Wilson05394f32010-11-08 19:18:58 +00004545 drm_gem_object_release(&obj->base);
4546 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01004547
Chris Wilson05394f32010-11-08 19:18:58 +00004548 kfree(obj->bit_17);
Chris Wilson42dcedd2012-11-15 11:32:30 +00004549 i915_gem_object_free(obj);
Paulo Zanonif65c9162013-11-27 18:20:34 -02004550
4551 intel_runtime_pm_put(dev_priv);
Chris Wilsonbe726152010-07-23 23:18:50 +01004552}
4553
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00004554struct i915_vma *i915_gem_obj_to_vma_view(struct drm_i915_gem_object *obj,
4555 struct i915_address_space *vm,
4556 const struct i915_ggtt_view *view)
Ben Widawsky2f633152013-07-17 12:19:03 -07004557{
Daniel Vettere656a6c2013-08-14 14:14:04 +02004558 struct i915_vma *vma;
4559 list_for_each_entry(vma, &obj->vma_list, vma_link)
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00004560 if (vma->vm == vm && vma->ggtt_view.type == view->type)
Daniel Vettere656a6c2013-08-14 14:14:04 +02004561 return vma;
4562
4563 return NULL;
4564}
4565
Ben Widawsky2f633152013-07-17 12:19:03 -07004566void i915_gem_vma_destroy(struct i915_vma *vma)
4567{
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004568 struct i915_address_space *vm = NULL;
Ben Widawsky2f633152013-07-17 12:19:03 -07004569 WARN_ON(vma->node.allocated);
Chris Wilsonaaa05662013-08-20 12:56:40 +01004570
4571 /* Keep the vma as a placeholder in the execbuffer reservation lists */
4572 if (!list_empty(&vma->exec_list))
4573 return;
4574
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004575 vm = vma->vm;
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004576
Daniel Vetter841cd772014-08-06 15:04:48 +02004577 if (!i915_is_ggtt(vm))
4578 i915_ppgtt_put(i915_vm_to_ppgtt(vm));
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004579
Ben Widawsky8b9c2b92013-07-31 17:00:16 -07004580 list_del(&vma->vma_link);
Daniel Vetterb93dab62013-08-26 11:23:47 +02004581
Ben Widawsky2f633152013-07-17 12:19:03 -07004582 kfree(vma);
4583}
4584
Chris Wilsone3efda42014-04-09 09:19:41 +01004585static void
4586i915_gem_stop_ringbuffers(struct drm_device *dev)
4587{
4588 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004589 struct intel_engine_cs *ring;
Chris Wilsone3efda42014-04-09 09:19:41 +01004590 int i;
4591
4592 for_each_ring(ring, dev_priv, i)
Oscar Mateoa83014d2014-07-24 17:04:21 +01004593 dev_priv->gt.stop_ring(ring);
Chris Wilsone3efda42014-04-09 09:19:41 +01004594}
4595
Jesse Barnes5669fca2009-02-17 15:13:31 -08004596int
Chris Wilson45c5f202013-10-16 11:50:01 +01004597i915_gem_suspend(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07004598{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004599 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson45c5f202013-10-16 11:50:01 +01004600 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07004601
Chris Wilson45c5f202013-10-16 11:50:01 +01004602 mutex_lock(&dev->struct_mutex);
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004603 ret = i915_gpu_idle(dev);
Chris Wilsonf7403342013-09-13 23:57:04 +01004604 if (ret)
Chris Wilson45c5f202013-10-16 11:50:01 +01004605 goto err;
Chris Wilsonf7403342013-09-13 23:57:04 +01004606
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004607 i915_gem_retire_requests(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07004608
Chris Wilson29105cc2010-01-07 10:39:13 +00004609 /* Under UMS, be paranoid and evict. */
Chris Wilsona39d7ef2012-04-24 18:22:52 +01004610 if (!drm_core_check_feature(dev, DRIVER_MODESET))
Chris Wilson6c085a72012-08-20 11:40:46 +02004611 i915_gem_evict_everything(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00004612
Chris Wilsone3efda42014-04-09 09:19:41 +01004613 i915_gem_stop_ringbuffers(dev);
Chris Wilson45c5f202013-10-16 11:50:01 +01004614 mutex_unlock(&dev->struct_mutex);
4615
Chris Wilson737b1502015-01-26 18:03:03 +02004616 cancel_delayed_work_sync(&dev_priv->gpu_error.hangcheck_work);
Chris Wilson29105cc2010-01-07 10:39:13 +00004617 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
Deepak S274fa1c2014-08-05 07:51:20 -07004618 flush_delayed_work(&dev_priv->mm.idle_work);
Chris Wilson29105cc2010-01-07 10:39:13 +00004619
Chris Wilsonbdcf1202014-11-25 11:56:33 +00004620 /* Assert that we sucessfully flushed all the work and
4621 * reset the GPU back to its idle, low power state.
4622 */
4623 WARN_ON(dev_priv->mm.busy);
4624
Eric Anholt673a3942008-07-30 12:06:12 -07004625 return 0;
Chris Wilson45c5f202013-10-16 11:50:01 +01004626
4627err:
4628 mutex_unlock(&dev->struct_mutex);
4629 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004630}
4631
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004632int i915_gem_l3_remap(struct intel_engine_cs *ring, int slice)
Ben Widawskyb9524a12012-05-25 16:56:24 -07004633{
Ben Widawskyc3787e22013-09-17 21:12:44 -07004634 struct drm_device *dev = ring->dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004635 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07004636 u32 reg_base = GEN7_L3LOG_BASE + (slice * 0x200);
4637 u32 *remap_info = dev_priv->l3_parity.remap_info[slice];
Ben Widawskyc3787e22013-09-17 21:12:44 -07004638 int i, ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004639
Ben Widawsky040d2ba2013-09-19 11:01:40 -07004640 if (!HAS_L3_DPF(dev) || !remap_info)
Ben Widawskyc3787e22013-09-17 21:12:44 -07004641 return 0;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004642
Ben Widawskyc3787e22013-09-17 21:12:44 -07004643 ret = intel_ring_begin(ring, GEN7_L3LOG_SIZE / 4 * 3);
4644 if (ret)
4645 return ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004646
Ben Widawskyc3787e22013-09-17 21:12:44 -07004647 /*
4648 * Note: We do not worry about the concurrent register cacheline hang
4649 * here because no other code should access these registers other than
4650 * at initialization time.
4651 */
Ben Widawskyb9524a12012-05-25 16:56:24 -07004652 for (i = 0; i < GEN7_L3LOG_SIZE; i += 4) {
Ben Widawskyc3787e22013-09-17 21:12:44 -07004653 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
4654 intel_ring_emit(ring, reg_base + i);
4655 intel_ring_emit(ring, remap_info[i/4]);
Ben Widawskyb9524a12012-05-25 16:56:24 -07004656 }
4657
Ben Widawskyc3787e22013-09-17 21:12:44 -07004658 intel_ring_advance(ring);
Ben Widawskyb9524a12012-05-25 16:56:24 -07004659
Ben Widawskyc3787e22013-09-17 21:12:44 -07004660 return ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004661}
4662
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004663void i915_gem_init_swizzling(struct drm_device *dev)
4664{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004665 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004666
Daniel Vetter11782b02012-01-31 16:47:55 +01004667 if (INTEL_INFO(dev)->gen < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004668 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
4669 return;
4670
4671 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
4672 DISP_TILE_SURFACE_SWIZZLING);
4673
Daniel Vetter11782b02012-01-31 16:47:55 +01004674 if (IS_GEN5(dev))
4675 return;
4676
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004677 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
4678 if (IS_GEN6(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004679 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_SNB));
Ben Widawsky8782e262012-12-18 10:31:23 -08004680 else if (IS_GEN7(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004681 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_IVB));
Ben Widawsky31a53362013-11-02 21:07:04 -07004682 else if (IS_GEN8(dev))
4683 I915_WRITE(GAMTARBMODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_BDW));
Ben Widawsky8782e262012-12-18 10:31:23 -08004684 else
4685 BUG();
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004686}
Daniel Vettere21af882012-02-09 20:53:27 +01004687
Chris Wilson67b1b572012-07-05 23:49:40 +01004688static bool
4689intel_enable_blt(struct drm_device *dev)
4690{
4691 if (!HAS_BLT(dev))
4692 return false;
4693
4694 /* The blitter was dysfunctional on early prototypes */
4695 if (IS_GEN6(dev) && dev->pdev->revision < 8) {
4696 DRM_INFO("BLT not supported on this pre-production hardware;"
4697 " graphics performance will be degraded.\n");
4698 return false;
4699 }
4700
4701 return true;
4702}
4703
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004704static void init_unused_ring(struct drm_device *dev, u32 base)
4705{
4706 struct drm_i915_private *dev_priv = dev->dev_private;
4707
4708 I915_WRITE(RING_CTL(base), 0);
4709 I915_WRITE(RING_HEAD(base), 0);
4710 I915_WRITE(RING_TAIL(base), 0);
4711 I915_WRITE(RING_START(base), 0);
4712}
4713
4714static void init_unused_rings(struct drm_device *dev)
4715{
4716 if (IS_I830(dev)) {
4717 init_unused_ring(dev, PRB1_BASE);
4718 init_unused_ring(dev, SRB0_BASE);
4719 init_unused_ring(dev, SRB1_BASE);
4720 init_unused_ring(dev, SRB2_BASE);
4721 init_unused_ring(dev, SRB3_BASE);
4722 } else if (IS_GEN2(dev)) {
4723 init_unused_ring(dev, SRB0_BASE);
4724 init_unused_ring(dev, SRB1_BASE);
4725 } else if (IS_GEN3(dev)) {
4726 init_unused_ring(dev, PRB1_BASE);
4727 init_unused_ring(dev, PRB2_BASE);
4728 }
4729}
4730
Oscar Mateoa83014d2014-07-24 17:04:21 +01004731int i915_gem_init_rings(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004732{
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004733 struct drm_i915_private *dev_priv = dev->dev_private;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004734 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004735
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004736 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004737 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00004738 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004739
4740 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004741 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004742 if (ret)
4743 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08004744 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01004745
Chris Wilson67b1b572012-07-05 23:49:40 +01004746 if (intel_enable_blt(dev)) {
Chris Wilson549f7362010-10-19 11:19:32 +01004747 ret = intel_init_blt_ring_buffer(dev);
4748 if (ret)
4749 goto cleanup_bsd_ring;
4750 }
4751
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004752 if (HAS_VEBOX(dev)) {
4753 ret = intel_init_vebox_ring_buffer(dev);
4754 if (ret)
4755 goto cleanup_blt_ring;
4756 }
4757
Zhao Yakui845f74a2014-04-17 10:37:37 +08004758 if (HAS_BSD2(dev)) {
4759 ret = intel_init_bsd2_ring_buffer(dev);
4760 if (ret)
4761 goto cleanup_vebox_ring;
4762 }
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004763
Mika Kuoppala99433932013-01-22 14:12:17 +02004764 ret = i915_gem_set_seqno(dev, ((u32)~0 - 0x1000));
4765 if (ret)
Zhao Yakui845f74a2014-04-17 10:37:37 +08004766 goto cleanup_bsd2_ring;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004767
4768 return 0;
4769
Zhao Yakui845f74a2014-04-17 10:37:37 +08004770cleanup_bsd2_ring:
4771 intel_cleanup_ring_buffer(&dev_priv->ring[VCS2]);
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004772cleanup_vebox_ring:
4773 intel_cleanup_ring_buffer(&dev_priv->ring[VECS]);
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004774cleanup_blt_ring:
4775 intel_cleanup_ring_buffer(&dev_priv->ring[BCS]);
4776cleanup_bsd_ring:
4777 intel_cleanup_ring_buffer(&dev_priv->ring[VCS]);
4778cleanup_render_ring:
4779 intel_cleanup_ring_buffer(&dev_priv->ring[RCS]);
4780
4781 return ret;
4782}
4783
4784int
4785i915_gem_init_hw(struct drm_device *dev)
4786{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004787 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter35a57ff2014-11-20 00:33:07 +01004788 struct intel_engine_cs *ring;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07004789 int ret, i;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004790
4791 if (INTEL_INFO(dev)->gen < 6 && !intel_enable_gtt())
4792 return -EIO;
4793
Ben Widawsky59124502013-07-04 11:02:05 -07004794 if (dev_priv->ellc_size)
Ben Widawsky05e21cc2013-07-04 11:02:04 -07004795 I915_WRITE(HSW_IDICR, I915_READ(HSW_IDICR) | IDIHASHMSK(0xf));
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004796
Ville Syrjälä0bf21342013-11-29 14:56:12 +02004797 if (IS_HASWELL(dev))
4798 I915_WRITE(MI_PREDICATE_RESULT_2, IS_HSW_GT3(dev) ?
4799 LOWER_SLICE_ENABLED : LOWER_SLICE_DISABLED);
Rodrigo Vivi94353732013-08-28 16:45:46 -03004800
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004801 if (HAS_PCH_NOP(dev)) {
Daniel Vetter6ba844b2014-01-22 23:39:30 +01004802 if (IS_IVYBRIDGE(dev)) {
4803 u32 temp = I915_READ(GEN7_MSG_CTL);
4804 temp &= ~(WAIT_FOR_PCH_FLR_ACK | WAIT_FOR_PCH_RESET_ACK);
4805 I915_WRITE(GEN7_MSG_CTL, temp);
4806 } else if (INTEL_INFO(dev)->gen >= 7) {
4807 u32 temp = I915_READ(HSW_NDE_RSTWRN_OPT);
4808 temp &= ~RESET_PCH_HANDSHAKE_ENABLE;
4809 I915_WRITE(HSW_NDE_RSTWRN_OPT, temp);
4810 }
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004811 }
4812
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004813 i915_gem_init_swizzling(dev);
4814
Daniel Vetterd5abdfd2014-11-20 09:45:19 +01004815 /*
4816 * At least 830 can leave some of the unused rings
4817 * "active" (ie. head != tail) after resume which
4818 * will prevent c3 entry. Makes sure all unused rings
4819 * are totally idle.
4820 */
4821 init_unused_rings(dev);
4822
Daniel Vetter35a57ff2014-11-20 00:33:07 +01004823 for_each_ring(ring, dev_priv, i) {
4824 ret = ring->init_hw(ring);
4825 if (ret)
4826 return ret;
4827 }
Mika Kuoppala99433932013-01-22 14:12:17 +02004828
Ben Widawskyc3787e22013-09-17 21:12:44 -07004829 for (i = 0; i < NUM_L3_SLICES(dev); i++)
4830 i915_gem_l3_remap(&dev_priv->ring[RCS], i);
4831
Ben Widawsky254f9652012-06-04 14:42:42 -07004832 /*
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004833 * XXX: Contexts should only be initialized once. Doing a switch to the
4834 * default context switch however is something we'd like to do after
4835 * reset or thaw (the latter may not actually be necessary for HW, but
4836 * goes with our code better). Context switching requires rings (for
4837 * the do_switch), but before enabling PPGTT. So don't move this.
Ben Widawsky254f9652012-06-04 14:42:42 -07004838 */
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004839 ret = i915_gem_context_enable(dev_priv);
Chris Wilson60990322014-04-09 09:19:42 +01004840 if (ret && ret != -EIO) {
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004841 DRM_ERROR("Context enable failed %d\n", ret);
Chris Wilson60990322014-04-09 09:19:42 +01004842 i915_gem_cleanup_ringbuffer(dev);
Daniel Vetter82460d92014-08-06 20:19:53 +02004843
4844 return ret;
4845 }
4846
4847 ret = i915_ppgtt_init_hw(dev);
4848 if (ret && ret != -EIO) {
4849 DRM_ERROR("PPGTT enable failed %d\n", ret);
4850 i915_gem_cleanup_ringbuffer(dev);
Ben Widawskyb7c36d22013-04-08 18:43:56 -07004851 }
Daniel Vettere21af882012-02-09 20:53:27 +01004852
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004853 return ret;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004854}
4855
Chris Wilson1070a422012-04-24 15:47:41 +01004856int i915_gem_init(struct drm_device *dev)
4857{
4858 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson1070a422012-04-24 15:47:41 +01004859 int ret;
4860
Oscar Mateo127f1002014-07-24 17:04:11 +01004861 i915.enable_execlists = intel_sanitize_enable_execlists(dev,
4862 i915.enable_execlists);
4863
Chris Wilson1070a422012-04-24 15:47:41 +01004864 mutex_lock(&dev->struct_mutex);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004865
4866 if (IS_VALLEYVIEW(dev)) {
4867 /* VLVA0 (potential hack), BIOS isn't actually waking us */
Imre Deak981a5ae2014-04-14 20:24:22 +03004868 I915_WRITE(VLV_GTLC_WAKE_CTRL, VLV_GTLC_ALLOWWAKEREQ);
4869 if (wait_for((I915_READ(VLV_GTLC_PW_STATUS) &
4870 VLV_GTLC_ALLOWWAKEACK), 10))
Jesse Barnesd62b4892013-03-08 10:45:53 -08004871 DRM_DEBUG_DRIVER("allow wake ack timed out\n");
4872 }
4873
Oscar Mateoa83014d2014-07-24 17:04:21 +01004874 if (!i915.enable_execlists) {
4875 dev_priv->gt.do_execbuf = i915_gem_ringbuffer_submission;
4876 dev_priv->gt.init_rings = i915_gem_init_rings;
4877 dev_priv->gt.cleanup_ring = intel_cleanup_ring_buffer;
4878 dev_priv->gt.stop_ring = intel_stop_ring_buffer;
Oscar Mateo454afeb2014-07-24 17:04:22 +01004879 } else {
4880 dev_priv->gt.do_execbuf = intel_execlists_submission;
4881 dev_priv->gt.init_rings = intel_logical_rings_init;
4882 dev_priv->gt.cleanup_ring = intel_logical_ring_cleanup;
4883 dev_priv->gt.stop_ring = intel_logical_ring_stop;
Oscar Mateoa83014d2014-07-24 17:04:21 +01004884 }
4885
Daniel Vetter6c5566a2014-08-06 15:04:50 +02004886 ret = i915_gem_init_userptr(dev);
Jani Nikula7bcc3772014-12-05 14:17:42 +02004887 if (ret)
4888 goto out_unlock;
Daniel Vetter6c5566a2014-08-06 15:04:50 +02004889
Ben Widawskyd7e50082012-12-18 10:31:25 -08004890 i915_gem_init_global_gtt(dev);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004891
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004892 ret = i915_gem_context_init(dev);
Jani Nikula7bcc3772014-12-05 14:17:42 +02004893 if (ret)
4894 goto out_unlock;
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004895
Daniel Vetter35a57ff2014-11-20 00:33:07 +01004896 ret = dev_priv->gt.init_rings(dev);
4897 if (ret)
Jani Nikula7bcc3772014-12-05 14:17:42 +02004898 goto out_unlock;
Daniel Vetter53ca26c2012-04-26 23:28:03 +02004899
4900 ret = i915_gem_init_hw(dev);
Chris Wilson60990322014-04-09 09:19:42 +01004901 if (ret == -EIO) {
4902 /* Allow ring initialisation to fail by marking the GPU as
4903 * wedged. But we only want to do this where the GPU is angry,
4904 * for all other failure, such as an allocation failure, bail.
4905 */
4906 DRM_ERROR("Failed to initialize GPU, declaring it wedged\n");
4907 atomic_set_mask(I915_WEDGED, &dev_priv->gpu_error.reset_counter);
4908 ret = 0;
Chris Wilson1070a422012-04-24 15:47:41 +01004909 }
Jani Nikula7bcc3772014-12-05 14:17:42 +02004910
4911out_unlock:
Chris Wilson60990322014-04-09 09:19:42 +01004912 mutex_unlock(&dev->struct_mutex);
Chris Wilson1070a422012-04-24 15:47:41 +01004913
Chris Wilson60990322014-04-09 09:19:42 +01004914 return ret;
Chris Wilson1070a422012-04-24 15:47:41 +01004915}
4916
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004917void
4918i915_gem_cleanup_ringbuffer(struct drm_device *dev)
4919{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004920 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004921 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00004922 int i;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004923
Chris Wilsonb4519512012-05-11 14:29:30 +01004924 for_each_ring(ring, dev_priv, i)
Oscar Mateoa83014d2014-07-24 17:04:21 +01004925 dev_priv->gt.cleanup_ring(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004926}
4927
Chris Wilson64193402010-10-24 12:38:05 +01004928static void
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004929init_ring_lists(struct intel_engine_cs *ring)
Chris Wilson64193402010-10-24 12:38:05 +01004930{
4931 INIT_LIST_HEAD(&ring->active_list);
4932 INIT_LIST_HEAD(&ring->request_list);
Chris Wilson64193402010-10-24 12:38:05 +01004933}
4934
Ben Widawsky7e0d96b2013-12-06 14:11:26 -08004935void i915_init_vm(struct drm_i915_private *dev_priv,
4936 struct i915_address_space *vm)
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004937{
Ben Widawsky7e0d96b2013-12-06 14:11:26 -08004938 if (!i915_is_ggtt(vm))
4939 drm_mm_init(&vm->mm, vm->start, vm->total);
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004940 vm->dev = dev_priv->dev;
4941 INIT_LIST_HEAD(&vm->active_list);
4942 INIT_LIST_HEAD(&vm->inactive_list);
4943 INIT_LIST_HEAD(&vm->global_link);
Chris Wilsonf72d21e2014-01-09 22:57:22 +00004944 list_add_tail(&vm->global_link, &dev_priv->vm_list);
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004945}
4946
Eric Anholt673a3942008-07-30 12:06:12 -07004947void
4948i915_gem_load(struct drm_device *dev)
4949{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004950 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson42dcedd2012-11-15 11:32:30 +00004951 int i;
4952
4953 dev_priv->slab =
4954 kmem_cache_create("i915_gem_object",
4955 sizeof(struct drm_i915_gem_object), 0,
4956 SLAB_HWCACHE_ALIGN,
4957 NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07004958
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004959 INIT_LIST_HEAD(&dev_priv->vm_list);
4960 i915_init_vm(dev_priv, &dev_priv->gtt.base);
4961
Ben Widawskya33afea2013-09-17 21:12:45 -07004962 INIT_LIST_HEAD(&dev_priv->context_list);
Chris Wilson6c085a72012-08-20 11:40:46 +02004963 INIT_LIST_HEAD(&dev_priv->mm.unbound_list);
4964 INIT_LIST_HEAD(&dev_priv->mm.bound_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07004965 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00004966 for (i = 0; i < I915_NUM_RINGS; i++)
4967 init_ring_lists(&dev_priv->ring[i]);
Daniel Vetter4b9de732011-10-09 21:52:02 +02004968 for (i = 0; i < I915_MAX_NUM_FENCES; i++)
Daniel Vetter007cc8a2010-04-28 11:02:31 +02004969 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07004970 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
4971 i915_gem_retire_work_handler);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004972 INIT_DELAYED_WORK(&dev_priv->mm.idle_work,
4973 i915_gem_idle_work_handler);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01004974 init_waitqueue_head(&dev_priv->gpu_error.reset_queue);
Chris Wilson31169712009-09-14 16:50:28 +01004975
Dave Airlie94400122010-07-20 13:15:31 +10004976 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
Ville Syrjälädbb42742014-02-25 15:13:41 +02004977 if (!drm_core_check_feature(dev, DRIVER_MODESET) && IS_GEN3(dev)) {
Daniel Vetter50743292012-04-26 22:02:54 +02004978 I915_WRITE(MI_ARB_STATE,
4979 _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Dave Airlie94400122010-07-20 13:15:31 +10004980 }
4981
Chris Wilson72bfa192010-12-19 11:42:05 +00004982 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
4983
Jesse Barnesde151cf2008-11-12 10:03:55 -08004984 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08004985 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4986 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08004987
Ville Syrjälä42b5aea2013-04-09 13:02:47 +03004988 if (INTEL_INFO(dev)->gen >= 7 && !IS_VALLEYVIEW(dev))
4989 dev_priv->num_fence_regs = 32;
4990 else if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08004991 dev_priv->num_fence_regs = 16;
4992 else
4993 dev_priv->num_fence_regs = 8;
4994
Yu Zhangeb822892015-02-10 19:05:49 +08004995 if (intel_vgpu_active(dev))
4996 dev_priv->num_fence_regs =
4997 I915_READ(vgtif_reg(avail_rs.fence_num));
4998
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02004999 /* Initialize fence registers to zero */
Chris Wilson19b2dbd2013-06-12 10:15:12 +01005000 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
5001 i915_gem_restore_fences(dev);
Eric Anholt10ed13e2011-05-06 13:53:49 -07005002
Eric Anholt673a3942008-07-30 12:06:12 -07005003 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005004 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01005005
Chris Wilsonce453d82011-02-21 14:43:56 +00005006 dev_priv->mm.interruptible = true;
5007
Chris Wilsonceabbba52014-03-25 13:23:04 +00005008 dev_priv->mm.shrinker.scan_objects = i915_gem_shrinker_scan;
5009 dev_priv->mm.shrinker.count_objects = i915_gem_shrinker_count;
5010 dev_priv->mm.shrinker.seeks = DEFAULT_SEEKS;
5011 register_shrinker(&dev_priv->mm.shrinker);
Chris Wilson2cfcd322014-05-20 08:28:43 +01005012
5013 dev_priv->mm.oom_notifier.notifier_call = i915_gem_shrinker_oom;
5014 register_oom_notifier(&dev_priv->mm.oom_notifier);
Daniel Vetterf99d7062014-06-19 16:01:59 +02005015
Brad Volkin78a42372014-12-11 12:13:09 -08005016 i915_gem_batch_pool_init(dev, &dev_priv->mm.batch_pool);
5017
Daniel Vetterf99d7062014-06-19 16:01:59 +02005018 mutex_init(&dev_priv->fb_tracking.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07005019}
Dave Airlie71acb5e2008-12-30 20:31:46 +10005020
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005021void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00005022{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005023 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00005024
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005025 cancel_delayed_work_sync(&file_priv->mm.idle_work);
5026
Eric Anholtb9624422009-06-03 07:27:35 +00005027 /* Clean up our request list when the client is going away, so that
5028 * later retire_requests won't dereference our soon-to-be-gone
5029 * file_priv.
5030 */
Chris Wilson1c255952010-09-26 11:03:27 +01005031 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005032 while (!list_empty(&file_priv->mm.request_list)) {
5033 struct drm_i915_gem_request *request;
5034
5035 request = list_first_entry(&file_priv->mm.request_list,
5036 struct drm_i915_gem_request,
5037 client_list);
5038 list_del(&request->client_list);
5039 request->file_priv = NULL;
5040 }
Chris Wilson1c255952010-09-26 11:03:27 +01005041 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00005042}
Chris Wilson31169712009-09-14 16:50:28 +01005043
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005044static void
5045i915_gem_file_idle_work_handler(struct work_struct *work)
5046{
5047 struct drm_i915_file_private *file_priv =
5048 container_of(work, typeof(*file_priv), mm.idle_work.work);
5049
5050 atomic_set(&file_priv->rps_wait_boost, false);
5051}
5052
5053int i915_gem_open(struct drm_device *dev, struct drm_file *file)
5054{
5055 struct drm_i915_file_private *file_priv;
Ben Widawskye422b882013-12-06 14:10:58 -08005056 int ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005057
5058 DRM_DEBUG_DRIVER("\n");
5059
5060 file_priv = kzalloc(sizeof(*file_priv), GFP_KERNEL);
5061 if (!file_priv)
5062 return -ENOMEM;
5063
5064 file->driver_priv = file_priv;
5065 file_priv->dev_priv = dev->dev_private;
Chris Wilsonab0e7ff2014-02-25 17:11:24 +02005066 file_priv->file = file;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005067
5068 spin_lock_init(&file_priv->mm.lock);
5069 INIT_LIST_HEAD(&file_priv->mm.request_list);
5070 INIT_DELAYED_WORK(&file_priv->mm.idle_work,
5071 i915_gem_file_idle_work_handler);
5072
Ben Widawskye422b882013-12-06 14:10:58 -08005073 ret = i915_gem_context_open(dev, file);
5074 if (ret)
5075 kfree(file_priv);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005076
Ben Widawskye422b882013-12-06 14:10:58 -08005077 return ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005078}
5079
Daniel Vetterb680c372014-09-19 18:27:27 +02005080/**
5081 * i915_gem_track_fb - update frontbuffer tracking
5082 * old: current GEM buffer for the frontbuffer slots
5083 * new: new GEM buffer for the frontbuffer slots
5084 * frontbuffer_bits: bitmask of frontbuffer slots
5085 *
5086 * This updates the frontbuffer tracking bits @frontbuffer_bits by clearing them
5087 * from @old and setting them in @new. Both @old and @new can be NULL.
5088 */
Daniel Vettera071fa02014-06-18 23:28:09 +02005089void i915_gem_track_fb(struct drm_i915_gem_object *old,
5090 struct drm_i915_gem_object *new,
5091 unsigned frontbuffer_bits)
5092{
5093 if (old) {
5094 WARN_ON(!mutex_is_locked(&old->base.dev->struct_mutex));
5095 WARN_ON(!(old->frontbuffer_bits & frontbuffer_bits));
5096 old->frontbuffer_bits &= ~frontbuffer_bits;
5097 }
5098
5099 if (new) {
5100 WARN_ON(!mutex_is_locked(&new->base.dev->struct_mutex));
5101 WARN_ON(new->frontbuffer_bits & frontbuffer_bits);
5102 new->frontbuffer_bits |= frontbuffer_bits;
5103 }
5104}
5105
Chris Wilson57745062012-11-21 13:04:04 +00005106static bool mutex_is_locked_by(struct mutex *mutex, struct task_struct *task)
5107{
5108 if (!mutex_is_locked(mutex))
5109 return false;
5110
Chris Wilsona5094052015-01-26 04:43:22 -08005111#if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_MUTEXES)
Chris Wilson57745062012-11-21 13:04:04 +00005112 return mutex->owner == task;
5113#else
5114 /* Since UP may be pre-empted, we cannot assume that we own the lock */
5115 return false;
5116#endif
5117}
5118
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005119static bool i915_gem_shrinker_lock(struct drm_device *dev, bool *unlock)
5120{
5121 if (!mutex_trylock(&dev->struct_mutex)) {
5122 if (!mutex_is_locked_by(&dev->struct_mutex, current))
5123 return false;
5124
5125 if (to_i915(dev)->mm.shrinker_no_lock_stealing)
5126 return false;
5127
5128 *unlock = false;
5129 } else
5130 *unlock = true;
5131
5132 return true;
5133}
5134
Chris Wilsonceabbba52014-03-25 13:23:04 +00005135static int num_vma_bound(struct drm_i915_gem_object *obj)
5136{
5137 struct i915_vma *vma;
5138 int count = 0;
5139
5140 list_for_each_entry(vma, &obj->vma_list, vma_link)
5141 if (drm_mm_node_allocated(&vma->node))
5142 count++;
5143
5144 return count;
5145}
5146
Dave Chinner7dc19d52013-08-28 10:18:11 +10005147static unsigned long
Chris Wilsonceabbba52014-03-25 13:23:04 +00005148i915_gem_shrinker_count(struct shrinker *shrinker, struct shrink_control *sc)
Chris Wilson31169712009-09-14 16:50:28 +01005149{
Chris Wilson17250b72010-10-28 12:51:39 +01005150 struct drm_i915_private *dev_priv =
Chris Wilsonceabbba52014-03-25 13:23:04 +00005151 container_of(shrinker, struct drm_i915_private, mm.shrinker);
Chris Wilson17250b72010-10-28 12:51:39 +01005152 struct drm_device *dev = dev_priv->dev;
Chris Wilson6c085a72012-08-20 11:40:46 +02005153 struct drm_i915_gem_object *obj;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005154 unsigned long count;
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005155 bool unlock;
Chris Wilson17250b72010-10-28 12:51:39 +01005156
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005157 if (!i915_gem_shrinker_lock(dev, &unlock))
5158 return 0;
Chris Wilson31169712009-09-14 16:50:28 +01005159
Dave Chinner7dc19d52013-08-28 10:18:11 +10005160 count = 0;
Ben Widawsky35c20a62013-05-31 11:28:48 -07005161 list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list)
Chris Wilsona5570172012-09-04 21:02:54 +01005162 if (obj->pages_pin_count == 0)
Dave Chinner7dc19d52013-08-28 10:18:11 +10005163 count += obj->base.size >> PAGE_SHIFT;
Ben Widawskyfcb4a572013-07-31 16:59:57 -07005164
5165 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
Chris Wilsonceabbba52014-03-25 13:23:04 +00005166 if (!i915_gem_obj_is_pinned(obj) &&
5167 obj->pages_pin_count == num_vma_bound(obj))
Dave Chinner7dc19d52013-08-28 10:18:11 +10005168 count += obj->base.size >> PAGE_SHIFT;
Ben Widawskyfcb4a572013-07-31 16:59:57 -07005169 }
Chris Wilson31169712009-09-14 16:50:28 +01005170
Chris Wilson57745062012-11-21 13:04:04 +00005171 if (unlock)
5172 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9973b42013-10-04 10:33:00 +01005173
Dave Chinner7dc19d52013-08-28 10:18:11 +10005174 return count;
Chris Wilson31169712009-09-14 16:50:28 +01005175}
Ben Widawskya70a3142013-07-31 16:59:56 -07005176
5177/* All the new VM stuff */
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00005178unsigned long i915_gem_obj_offset_view(struct drm_i915_gem_object *o,
5179 struct i915_address_space *vm,
5180 enum i915_ggtt_view_type view)
Ben Widawskya70a3142013-07-31 16:59:56 -07005181{
5182 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
5183 struct i915_vma *vma;
5184
Daniel Vetter896ab1a2014-08-06 15:04:51 +02005185 WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base);
Ben Widawskya70a3142013-07-31 16:59:56 -07005186
Ben Widawskya70a3142013-07-31 16:59:56 -07005187 list_for_each_entry(vma, &o->vma_list, vma_link) {
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00005188 if (vma->vm == vm && vma->ggtt_view.type == view)
Ben Widawskya70a3142013-07-31 16:59:56 -07005189 return vma->node.start;
5190
5191 }
Daniel Vetterf25748ea2014-06-17 22:34:38 +02005192 WARN(1, "%s vma for this object not found.\n",
5193 i915_is_ggtt(vm) ? "global" : "ppgtt");
Ben Widawskya70a3142013-07-31 16:59:56 -07005194 return -1;
5195}
5196
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00005197bool i915_gem_obj_bound_view(struct drm_i915_gem_object *o,
5198 struct i915_address_space *vm,
5199 enum i915_ggtt_view_type view)
Ben Widawskya70a3142013-07-31 16:59:56 -07005200{
5201 struct i915_vma *vma;
5202
5203 list_for_each_entry(vma, &o->vma_list, vma_link)
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00005204 if (vma->vm == vm &&
5205 vma->ggtt_view.type == view &&
5206 drm_mm_node_allocated(&vma->node))
Ben Widawskya70a3142013-07-31 16:59:56 -07005207 return true;
5208
5209 return false;
5210}
5211
5212bool i915_gem_obj_bound_any(struct drm_i915_gem_object *o)
5213{
Chris Wilson5a1d5eb2013-09-10 11:27:37 +01005214 struct i915_vma *vma;
Ben Widawskya70a3142013-07-31 16:59:56 -07005215
Chris Wilson5a1d5eb2013-09-10 11:27:37 +01005216 list_for_each_entry(vma, &o->vma_list, vma_link)
5217 if (drm_mm_node_allocated(&vma->node))
Ben Widawskya70a3142013-07-31 16:59:56 -07005218 return true;
5219
5220 return false;
5221}
5222
5223unsigned long i915_gem_obj_size(struct drm_i915_gem_object *o,
5224 struct i915_address_space *vm)
5225{
5226 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
5227 struct i915_vma *vma;
5228
Daniel Vetter896ab1a2014-08-06 15:04:51 +02005229 WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base);
Ben Widawskya70a3142013-07-31 16:59:56 -07005230
5231 BUG_ON(list_empty(&o->vma_list));
5232
5233 list_for_each_entry(vma, &o->vma_list, vma_link)
5234 if (vma->vm == vm)
5235 return vma->node.size;
5236
5237 return 0;
5238}
5239
Dave Chinner7dc19d52013-08-28 10:18:11 +10005240static unsigned long
Chris Wilsonceabbba52014-03-25 13:23:04 +00005241i915_gem_shrinker_scan(struct shrinker *shrinker, struct shrink_control *sc)
Dave Chinner7dc19d52013-08-28 10:18:11 +10005242{
5243 struct drm_i915_private *dev_priv =
Chris Wilsonceabbba52014-03-25 13:23:04 +00005244 container_of(shrinker, struct drm_i915_private, mm.shrinker);
Dave Chinner7dc19d52013-08-28 10:18:11 +10005245 struct drm_device *dev = dev_priv->dev;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005246 unsigned long freed;
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005247 bool unlock;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005248
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005249 if (!i915_gem_shrinker_lock(dev, &unlock))
5250 return SHRINK_STOP;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005251
Chris Wilson21ab4e72014-09-09 11:16:08 +01005252 freed = i915_gem_shrink(dev_priv,
5253 sc->nr_to_scan,
5254 I915_SHRINK_BOUND |
5255 I915_SHRINK_UNBOUND |
5256 I915_SHRINK_PURGEABLE);
Chris Wilsond9973b42013-10-04 10:33:00 +01005257 if (freed < sc->nr_to_scan)
Chris Wilson21ab4e72014-09-09 11:16:08 +01005258 freed += i915_gem_shrink(dev_priv,
5259 sc->nr_to_scan - freed,
5260 I915_SHRINK_BOUND |
5261 I915_SHRINK_UNBOUND);
Dave Chinner7dc19d52013-08-28 10:18:11 +10005262 if (unlock)
5263 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9973b42013-10-04 10:33:00 +01005264
Dave Chinner7dc19d52013-08-28 10:18:11 +10005265 return freed;
5266}
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005267
Chris Wilson2cfcd322014-05-20 08:28:43 +01005268static int
5269i915_gem_shrinker_oom(struct notifier_block *nb, unsigned long event, void *ptr)
5270{
5271 struct drm_i915_private *dev_priv =
5272 container_of(nb, struct drm_i915_private, mm.oom_notifier);
5273 struct drm_device *dev = dev_priv->dev;
5274 struct drm_i915_gem_object *obj;
5275 unsigned long timeout = msecs_to_jiffies(5000) + 1;
Chris Wilson005445c2014-10-08 11:25:16 +01005276 unsigned long pinned, bound, unbound, freed_pages;
Chris Wilson2cfcd322014-05-20 08:28:43 +01005277 bool was_interruptible;
5278 bool unlock;
5279
Chris Wilsona1db2fa2014-07-11 11:28:00 +01005280 while (!i915_gem_shrinker_lock(dev, &unlock) && --timeout) {
Chris Wilson2cfcd322014-05-20 08:28:43 +01005281 schedule_timeout_killable(1);
Chris Wilsona1db2fa2014-07-11 11:28:00 +01005282 if (fatal_signal_pending(current))
5283 return NOTIFY_DONE;
5284 }
Chris Wilson2cfcd322014-05-20 08:28:43 +01005285 if (timeout == 0) {
5286 pr_err("Unable to purge GPU memory due lock contention.\n");
5287 return NOTIFY_DONE;
5288 }
5289
5290 was_interruptible = dev_priv->mm.interruptible;
5291 dev_priv->mm.interruptible = false;
5292
Chris Wilson005445c2014-10-08 11:25:16 +01005293 freed_pages = i915_gem_shrink_all(dev_priv);
Chris Wilson2cfcd322014-05-20 08:28:43 +01005294
5295 dev_priv->mm.interruptible = was_interruptible;
5296
5297 /* Because we may be allocating inside our own driver, we cannot
5298 * assert that there are no objects with pinned pages that are not
5299 * being pointed to by hardware.
5300 */
5301 unbound = bound = pinned = 0;
5302 list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list) {
5303 if (!obj->base.filp) /* not backed by a freeable object */
5304 continue;
5305
5306 if (obj->pages_pin_count)
5307 pinned += obj->base.size;
5308 else
5309 unbound += obj->base.size;
5310 }
5311 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
5312 if (!obj->base.filp)
5313 continue;
5314
5315 if (obj->pages_pin_count)
5316 pinned += obj->base.size;
5317 else
5318 bound += obj->base.size;
5319 }
5320
5321 if (unlock)
5322 mutex_unlock(&dev->struct_mutex);
5323
Chris Wilsonbb9059d2014-10-08 11:25:17 +01005324 if (freed_pages || unbound || bound)
5325 pr_info("Purging GPU memory, %lu bytes freed, %lu bytes still pinned.\n",
5326 freed_pages << PAGE_SHIFT, pinned);
Chris Wilson2cfcd322014-05-20 08:28:43 +01005327 if (unbound || bound)
5328 pr_err("%lu and %lu bytes still available in the "
5329 "bound and unbound GPU page lists.\n",
5330 bound, unbound);
5331
Chris Wilson005445c2014-10-08 11:25:16 +01005332 *(unsigned long *)ptr += freed_pages;
Chris Wilson2cfcd322014-05-20 08:28:43 +01005333 return NOTIFY_DONE;
5334}
5335
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005336struct i915_vma *i915_gem_obj_to_ggtt(struct drm_i915_gem_object *obj)
5337{
Tvrtko Ursulinf7635662014-12-03 14:59:24 +00005338 struct i915_address_space *ggtt = i915_obj_to_ggtt(obj);
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005339 struct i915_vma *vma;
5340
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00005341 list_for_each_entry(vma, &obj->vma_list, vma_link)
5342 if (vma->vm == ggtt &&
5343 vma->ggtt_view.type == I915_GGTT_VIEW_NORMAL)
Tvrtko Ursulinf7635662014-12-03 14:59:24 +00005344 return vma;
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005345
Tvrtko Ursulinf7635662014-12-03 14:59:24 +00005346 return NULL;
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005347}