blob: 3f6ca46a1dfec4e6f7d9b8905059f0fc25fd37cf [file] [log] [blame]
Eric Anholt673a3942008-07-30 12:06:12 -07001/*
2 * Copyright © 2008 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 *
26 */
27
David Howells760285e2012-10-02 18:01:07 +010028#include <drm/drmP.h>
David Herrmann0de23972013-07-24 21:07:52 +020029#include <drm/drm_vma_manager.h>
David Howells760285e2012-10-02 18:01:07 +010030#include <drm/i915_drm.h>
Eric Anholt673a3942008-07-30 12:06:12 -070031#include "i915_drv.h"
Chris Wilson1c5d22f2009-08-25 11:15:50 +010032#include "i915_trace.h"
Jesse Barnes652c3932009-08-17 13:31:43 -070033#include "intel_drv.h"
Chris Wilson2cfcd322014-05-20 08:28:43 +010034#include <linux/oom.h>
Hugh Dickins5949eac2011-06-27 16:18:18 -070035#include <linux/shmem_fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/slab.h>
Eric Anholt673a3942008-07-30 12:06:12 -070037#include <linux/swap.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080038#include <linux/pci.h>
Daniel Vetter1286ff72012-05-10 15:25:09 +020039#include <linux/dma-buf.h>
Eric Anholt673a3942008-07-30 12:06:12 -070040
Chris Wilson05394f32010-11-08 19:18:58 +000041static void i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj);
Chris Wilson2c225692013-08-09 12:26:45 +010042static void i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj,
43 bool force);
Ben Widawsky07fe0b12013-07-31 17:00:10 -070044static __must_check int
Ben Widawsky23f54482013-09-11 14:57:48 -070045i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj,
46 bool readonly);
Chris Wilsonc8725f32014-03-17 12:21:55 +000047static void
48i915_gem_object_retire(struct drm_i915_gem_object *obj);
49
Chris Wilson61050802012-04-17 15:31:31 +010050static void i915_gem_write_fence(struct drm_device *dev, int reg,
51 struct drm_i915_gem_object *obj);
52static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
53 struct drm_i915_fence_reg *fence,
54 bool enable);
55
Chris Wilsonceabbba52014-03-25 13:23:04 +000056static unsigned long i915_gem_shrinker_count(struct shrinker *shrinker,
Dave Chinner7dc19d52013-08-28 10:18:11 +100057 struct shrink_control *sc);
Chris Wilsonceabbba52014-03-25 13:23:04 +000058static unsigned long i915_gem_shrinker_scan(struct shrinker *shrinker,
Dave Chinner7dc19d52013-08-28 10:18:11 +100059 struct shrink_control *sc);
Chris Wilson2cfcd322014-05-20 08:28:43 +010060static int i915_gem_shrinker_oom(struct notifier_block *nb,
61 unsigned long event,
62 void *ptr);
Chris Wilsond9973b42013-10-04 10:33:00 +010063static unsigned long i915_gem_shrink_all(struct drm_i915_private *dev_priv);
Chris Wilson31169712009-09-14 16:50:28 +010064
Chris Wilsonc76ce032013-08-08 14:41:03 +010065static bool cpu_cache_is_coherent(struct drm_device *dev,
66 enum i915_cache_level level)
67{
68 return HAS_LLC(dev) || level != I915_CACHE_NONE;
69}
70
Chris Wilson2c225692013-08-09 12:26:45 +010071static bool cpu_write_needs_clflush(struct drm_i915_gem_object *obj)
72{
73 if (!cpu_cache_is_coherent(obj->base.dev, obj->cache_level))
74 return true;
75
76 return obj->pin_display;
77}
78
Chris Wilson61050802012-04-17 15:31:31 +010079static inline void i915_gem_object_fence_lost(struct drm_i915_gem_object *obj)
80{
81 if (obj->tiling_mode)
82 i915_gem_release_mmap(obj);
83
84 /* As we do not have an associated fence register, we will force
85 * a tiling change if we ever need to acquire one.
86 */
Chris Wilson5d82e3e2012-04-21 16:23:23 +010087 obj->fence_dirty = false;
Chris Wilson61050802012-04-17 15:31:31 +010088 obj->fence_reg = I915_FENCE_REG_NONE;
89}
90
Chris Wilson73aa8082010-09-30 11:46:12 +010091/* some bookkeeping */
92static void i915_gem_info_add_obj(struct drm_i915_private *dev_priv,
93 size_t size)
94{
Daniel Vetterc20e8352013-07-24 22:40:23 +020095 spin_lock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +010096 dev_priv->mm.object_count++;
97 dev_priv->mm.object_memory += size;
Daniel Vetterc20e8352013-07-24 22:40:23 +020098 spin_unlock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +010099}
100
101static void i915_gem_info_remove_obj(struct drm_i915_private *dev_priv,
102 size_t size)
103{
Daniel Vetterc20e8352013-07-24 22:40:23 +0200104 spin_lock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +0100105 dev_priv->mm.object_count--;
106 dev_priv->mm.object_memory -= size;
Daniel Vetterc20e8352013-07-24 22:40:23 +0200107 spin_unlock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +0100108}
109
Chris Wilson21dd3732011-01-26 15:55:56 +0000110static int
Daniel Vetter33196de2012-11-14 17:14:05 +0100111i915_gem_wait_for_error(struct i915_gpu_error *error)
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100112{
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100113 int ret;
114
Daniel Vetter7abb6902013-05-24 21:29:32 +0200115#define EXIT_COND (!i915_reset_in_progress(error) || \
116 i915_terminally_wedged(error))
Daniel Vetter1f83fee2012-11-15 17:17:22 +0100117 if (EXIT_COND)
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100118 return 0;
119
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200120 /*
121 * Only wait 10 seconds for the gpu reset to complete to avoid hanging
122 * userspace. If it takes that long something really bad is going on and
123 * we should simply try to bail out and fail as gracefully as possible.
124 */
Daniel Vetter1f83fee2012-11-15 17:17:22 +0100125 ret = wait_event_interruptible_timeout(error->reset_queue,
126 EXIT_COND,
127 10*HZ);
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200128 if (ret == 0) {
129 DRM_ERROR("Timed out waiting for the gpu reset to complete\n");
130 return -EIO;
131 } else if (ret < 0) {
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100132 return ret;
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200133 }
Daniel Vetter1f83fee2012-11-15 17:17:22 +0100134#undef EXIT_COND
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100135
Chris Wilson21dd3732011-01-26 15:55:56 +0000136 return 0;
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100137}
138
Chris Wilson54cf91d2010-11-25 18:00:26 +0000139int i915_mutex_lock_interruptible(struct drm_device *dev)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100140{
Daniel Vetter33196de2012-11-14 17:14:05 +0100141 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson76c1dec2010-09-25 11:22:51 +0100142 int ret;
143
Daniel Vetter33196de2012-11-14 17:14:05 +0100144 ret = i915_gem_wait_for_error(&dev_priv->gpu_error);
Chris Wilson76c1dec2010-09-25 11:22:51 +0100145 if (ret)
146 return ret;
147
148 ret = mutex_lock_interruptible(&dev->struct_mutex);
149 if (ret)
150 return ret;
151
Chris Wilson23bc5982010-09-29 16:10:57 +0100152 WARN_ON(i915_verify_lists(dev));
Chris Wilson76c1dec2010-09-25 11:22:51 +0100153 return 0;
154}
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100155
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,
Thomas Hellstrom355a7012014-11-20 09:56:25 +0100398 bool dumb,
Dave Airlieff72145b2011-02-07 12:16:14 +1000399 uint32_t *handle_p)
Eric Anholt673a3942008-07-30 12:06:12 -0700400{
Chris Wilson05394f32010-11-08 19:18:58 +0000401 struct drm_i915_gem_object *obj;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300402 int ret;
403 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700404
Dave Airlieff72145b2011-02-07 12:16:14 +1000405 size = roundup(size, PAGE_SIZE);
Chris Wilson8ffc0242011-09-14 14:14:28 +0200406 if (size == 0)
407 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700408
409 /* Allocate the new object */
Dave Airlieff72145b2011-02-07 12:16:14 +1000410 obj = i915_gem_alloc_object(dev, size);
Eric Anholt673a3942008-07-30 12:06:12 -0700411 if (obj == NULL)
412 return -ENOMEM;
413
Thomas Hellstrom355a7012014-11-20 09:56:25 +0100414 obj->base.dumb = dumb;
Chris Wilson05394f32010-11-08 19:18:58 +0000415 ret = drm_gem_handle_create(file, &obj->base, &handle);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100416 /* drop reference from allocate - handle holds it now */
Daniel Vetterd861e332013-07-24 23:25:03 +0200417 drm_gem_object_unreference_unlocked(&obj->base);
418 if (ret)
419 return ret;
Chris Wilson202f2fe2010-10-14 13:20:40 +0100420
Dave Airlieff72145b2011-02-07 12:16:14 +1000421 *handle_p = handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700422 return 0;
423}
424
Dave Airlieff72145b2011-02-07 12:16:14 +1000425int
426i915_gem_dumb_create(struct drm_file *file,
427 struct drm_device *dev,
428 struct drm_mode_create_dumb *args)
429{
430 /* have to work out size/pitch and return them */
Paulo Zanonide45eaf2013-10-18 18:48:24 -0300431 args->pitch = ALIGN(args->width * DIV_ROUND_UP(args->bpp, 8), 64);
Dave Airlieff72145b2011-02-07 12:16:14 +1000432 args->size = args->pitch * args->height;
433 return i915_gem_create(file, dev,
Thomas Hellstrom355a7012014-11-20 09:56:25 +0100434 args->size, true, &args->handle);
Dave Airlieff72145b2011-02-07 12:16:14 +1000435}
436
Dave Airlieff72145b2011-02-07 12:16:14 +1000437/**
438 * Creates a new mm object and returns a handle to it.
439 */
440int
441i915_gem_create_ioctl(struct drm_device *dev, void *data,
442 struct drm_file *file)
443{
444 struct drm_i915_gem_create *args = data;
Daniel Vetter63ed2cb2012-04-23 16:50:50 +0200445
Dave Airlieff72145b2011-02-07 12:16:14 +1000446 return i915_gem_create(file, dev,
Thomas Hellstrom355a7012014-11-20 09:56:25 +0100447 args->size, false, &args->handle);
Dave Airlieff72145b2011-02-07 12:16:14 +1000448}
449
Daniel Vetter8c599672011-12-14 13:57:31 +0100450static inline int
Daniel Vetter8461d222011-12-14 13:57:32 +0100451__copy_to_user_swizzled(char __user *cpu_vaddr,
452 const char *gpu_vaddr, int gpu_offset,
453 int length)
454{
455 int ret, cpu_offset = 0;
456
457 while (length > 0) {
458 int cacheline_end = ALIGN(gpu_offset + 1, 64);
459 int this_length = min(cacheline_end - gpu_offset, length);
460 int swizzled_gpu_offset = gpu_offset ^ 64;
461
462 ret = __copy_to_user(cpu_vaddr + cpu_offset,
463 gpu_vaddr + swizzled_gpu_offset,
464 this_length);
465 if (ret)
466 return ret + length;
467
468 cpu_offset += this_length;
469 gpu_offset += this_length;
470 length -= this_length;
471 }
472
473 return 0;
474}
475
476static inline int
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700477__copy_from_user_swizzled(char *gpu_vaddr, int gpu_offset,
478 const char __user *cpu_vaddr,
Daniel Vetter8c599672011-12-14 13:57:31 +0100479 int length)
480{
481 int ret, cpu_offset = 0;
482
483 while (length > 0) {
484 int cacheline_end = ALIGN(gpu_offset + 1, 64);
485 int this_length = min(cacheline_end - gpu_offset, length);
486 int swizzled_gpu_offset = gpu_offset ^ 64;
487
488 ret = __copy_from_user(gpu_vaddr + swizzled_gpu_offset,
489 cpu_vaddr + cpu_offset,
490 this_length);
491 if (ret)
492 return ret + length;
493
494 cpu_offset += this_length;
495 gpu_offset += this_length;
496 length -= this_length;
497 }
498
499 return 0;
500}
501
Brad Volkin4c914c02014-02-18 10:15:45 -0800502/*
503 * Pins the specified object's pages and synchronizes the object with
504 * GPU accesses. Sets needs_clflush to non-zero if the caller should
505 * flush the object from the CPU cache.
506 */
507int i915_gem_obj_prepare_shmem_read(struct drm_i915_gem_object *obj,
508 int *needs_clflush)
509{
510 int ret;
511
512 *needs_clflush = 0;
513
514 if (!obj->base.filp)
515 return -EINVAL;
516
517 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU)) {
518 /* If we're not in the cpu read domain, set ourself into the gtt
519 * read domain and manually flush cachelines (if required). This
520 * optimizes for the case when the gpu will dirty the data
521 * anyway again before the next pread happens. */
522 *needs_clflush = !cpu_cache_is_coherent(obj->base.dev,
523 obj->cache_level);
524 ret = i915_gem_object_wait_rendering(obj, true);
525 if (ret)
526 return ret;
Chris Wilsonc8725f32014-03-17 12:21:55 +0000527
528 i915_gem_object_retire(obj);
Brad Volkin4c914c02014-02-18 10:15:45 -0800529 }
530
531 ret = i915_gem_object_get_pages(obj);
532 if (ret)
533 return ret;
534
535 i915_gem_object_pin_pages(obj);
536
537 return ret;
538}
539
Daniel Vetterd174bd62012-03-25 19:47:40 +0200540/* Per-page copy function for the shmem pread fastpath.
541 * Flushes invalid cachelines before reading the target if
542 * needs_clflush is set. */
Eric Anholteb014592009-03-10 11:44:52 -0700543static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200544shmem_pread_fast(struct page *page, int shmem_page_offset, int page_length,
545 char __user *user_data,
546 bool page_do_bit17_swizzling, bool needs_clflush)
547{
548 char *vaddr;
549 int ret;
550
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200551 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200552 return -EINVAL;
553
554 vaddr = kmap_atomic(page);
555 if (needs_clflush)
556 drm_clflush_virt_range(vaddr + shmem_page_offset,
557 page_length);
558 ret = __copy_to_user_inatomic(user_data,
559 vaddr + shmem_page_offset,
560 page_length);
561 kunmap_atomic(vaddr);
562
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100563 return ret ? -EFAULT : 0;
Daniel Vetterd174bd62012-03-25 19:47:40 +0200564}
565
Daniel Vetter23c18c72012-03-25 19:47:42 +0200566static void
567shmem_clflush_swizzled_range(char *addr, unsigned long length,
568 bool swizzled)
569{
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200570 if (unlikely(swizzled)) {
Daniel Vetter23c18c72012-03-25 19:47:42 +0200571 unsigned long start = (unsigned long) addr;
572 unsigned long end = (unsigned long) addr + length;
573
574 /* For swizzling simply ensure that we always flush both
575 * channels. Lame, but simple and it works. Swizzled
576 * pwrite/pread is far from a hotpath - current userspace
577 * doesn't use it at all. */
578 start = round_down(start, 128);
579 end = round_up(end, 128);
580
581 drm_clflush_virt_range((void *)start, end - start);
582 } else {
583 drm_clflush_virt_range(addr, length);
584 }
585
586}
587
Daniel Vetterd174bd62012-03-25 19:47:40 +0200588/* Only difference to the fast-path function is that this can handle bit17
589 * and uses non-atomic copy and kmap functions. */
590static int
591shmem_pread_slow(struct page *page, int shmem_page_offset, int page_length,
592 char __user *user_data,
593 bool page_do_bit17_swizzling, bool needs_clflush)
594{
595 char *vaddr;
596 int ret;
597
598 vaddr = kmap(page);
599 if (needs_clflush)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200600 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
601 page_length,
602 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200603
604 if (page_do_bit17_swizzling)
605 ret = __copy_to_user_swizzled(user_data,
606 vaddr, shmem_page_offset,
607 page_length);
608 else
609 ret = __copy_to_user(user_data,
610 vaddr + shmem_page_offset,
611 page_length);
612 kunmap(page);
613
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100614 return ret ? - EFAULT : 0;
Daniel Vetterd174bd62012-03-25 19:47:40 +0200615}
616
Eric Anholteb014592009-03-10 11:44:52 -0700617static int
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200618i915_gem_shmem_pread(struct drm_device *dev,
619 struct drm_i915_gem_object *obj,
620 struct drm_i915_gem_pread *args,
621 struct drm_file *file)
Eric Anholteb014592009-03-10 11:44:52 -0700622{
Daniel Vetter8461d222011-12-14 13:57:32 +0100623 char __user *user_data;
Eric Anholteb014592009-03-10 11:44:52 -0700624 ssize_t remain;
Daniel Vetter8461d222011-12-14 13:57:32 +0100625 loff_t offset;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100626 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8461d222011-12-14 13:57:32 +0100627 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vetter96d79b52012-03-25 19:47:36 +0200628 int prefaulted = 0;
Daniel Vetter84897312012-03-25 19:47:31 +0200629 int needs_clflush = 0;
Imre Deak67d5a502013-02-18 19:28:02 +0200630 struct sg_page_iter sg_iter;
Eric Anholteb014592009-03-10 11:44:52 -0700631
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200632 user_data = to_user_ptr(args->data_ptr);
Eric Anholteb014592009-03-10 11:44:52 -0700633 remain = args->size;
634
Daniel Vetter8461d222011-12-14 13:57:32 +0100635 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700636
Brad Volkin4c914c02014-02-18 10:15:45 -0800637 ret = i915_gem_obj_prepare_shmem_read(obj, &needs_clflush);
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100638 if (ret)
639 return ret;
640
Eric Anholteb014592009-03-10 11:44:52 -0700641 offset = args->offset;
Daniel Vetter8461d222011-12-14 13:57:32 +0100642
Imre Deak67d5a502013-02-18 19:28:02 +0200643 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents,
644 offset >> PAGE_SHIFT) {
Imre Deak2db76d72013-03-26 15:14:18 +0200645 struct page *page = sg_page_iter_page(&sg_iter);
Chris Wilson9da3da62012-06-01 15:20:22 +0100646
647 if (remain <= 0)
648 break;
649
Eric Anholteb014592009-03-10 11:44:52 -0700650 /* Operation in this page
651 *
Eric Anholteb014592009-03-10 11:44:52 -0700652 * shmem_page_offset = offset within page in shmem file
Eric Anholteb014592009-03-10 11:44:52 -0700653 * page_length = bytes to copy for this page
654 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100655 shmem_page_offset = offset_in_page(offset);
Eric Anholteb014592009-03-10 11:44:52 -0700656 page_length = remain;
657 if ((shmem_page_offset + page_length) > PAGE_SIZE)
658 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholteb014592009-03-10 11:44:52 -0700659
Daniel Vetter8461d222011-12-14 13:57:32 +0100660 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
661 (page_to_phys(page) & (1 << 17)) != 0;
662
Daniel Vetterd174bd62012-03-25 19:47:40 +0200663 ret = shmem_pread_fast(page, shmem_page_offset, page_length,
664 user_data, page_do_bit17_swizzling,
665 needs_clflush);
666 if (ret == 0)
667 goto next_page;
Eric Anholteb014592009-03-10 11:44:52 -0700668
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200669 mutex_unlock(&dev->struct_mutex);
670
Jani Nikulad330a952014-01-21 11:24:25 +0200671 if (likely(!i915.prefault_disable) && !prefaulted) {
Daniel Vetterf56f8212012-03-25 19:47:41 +0200672 ret = fault_in_multipages_writeable(user_data, remain);
Daniel Vetter96d79b52012-03-25 19:47:36 +0200673 /* Userspace is tricking us, but we've already clobbered
674 * its pages with the prefault and promised to write the
675 * data up to the first fault. Hence ignore any errors
676 * and just continue. */
677 (void)ret;
678 prefaulted = 1;
679 }
680
Daniel Vetterd174bd62012-03-25 19:47:40 +0200681 ret = shmem_pread_slow(page, shmem_page_offset, page_length,
682 user_data, page_do_bit17_swizzling,
683 needs_clflush);
Eric Anholteb014592009-03-10 11:44:52 -0700684
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200685 mutex_lock(&dev->struct_mutex);
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100686
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100687 if (ret)
Daniel Vetter8461d222011-12-14 13:57:32 +0100688 goto out;
Daniel Vetter8461d222011-12-14 13:57:32 +0100689
Chris Wilson17793c92014-03-07 08:30:36 +0000690next_page:
Eric Anholteb014592009-03-10 11:44:52 -0700691 remain -= page_length;
Daniel Vetter8461d222011-12-14 13:57:32 +0100692 user_data += page_length;
Eric Anholteb014592009-03-10 11:44:52 -0700693 offset += page_length;
694 }
695
Chris Wilson4f27b752010-10-14 15:26:45 +0100696out:
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100697 i915_gem_object_unpin_pages(obj);
698
Eric Anholteb014592009-03-10 11:44:52 -0700699 return ret;
700}
701
Eric Anholt673a3942008-07-30 12:06:12 -0700702/**
703 * Reads data from the object referenced by handle.
704 *
705 * On error, the contents of *data are undefined.
706 */
707int
708i915_gem_pread_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000709 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700710{
711 struct drm_i915_gem_pread *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000712 struct drm_i915_gem_object *obj;
Chris Wilson35b62a82010-09-26 20:23:38 +0100713 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700714
Chris Wilson51311d02010-11-17 09:10:42 +0000715 if (args->size == 0)
716 return 0;
717
718 if (!access_ok(VERIFY_WRITE,
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200719 to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +0000720 args->size))
721 return -EFAULT;
722
Chris Wilson4f27b752010-10-14 15:26:45 +0100723 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100724 if (ret)
Chris Wilson4f27b752010-10-14 15:26:45 +0100725 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700726
Chris Wilson05394f32010-11-08 19:18:58 +0000727 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000728 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100729 ret = -ENOENT;
730 goto unlock;
Chris Wilson4f27b752010-10-14 15:26:45 +0100731 }
Eric Anholt673a3942008-07-30 12:06:12 -0700732
Chris Wilson7dcd2492010-09-26 20:21:44 +0100733 /* Bounds check source. */
Chris Wilson05394f32010-11-08 19:18:58 +0000734 if (args->offset > obj->base.size ||
735 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100736 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100737 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100738 }
739
Daniel Vetter1286ff72012-05-10 15:25:09 +0200740 /* prime objects have no backing filp to GEM pread/pwrite
741 * pages from.
742 */
743 if (!obj->base.filp) {
744 ret = -EINVAL;
745 goto out;
746 }
747
Chris Wilsondb53a302011-02-03 11:57:46 +0000748 trace_i915_gem_object_pread(obj, args->offset, args->size);
749
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200750 ret = i915_gem_shmem_pread(dev, obj, args, file);
Eric Anholt673a3942008-07-30 12:06:12 -0700751
Chris Wilson35b62a82010-09-26 20:23:38 +0100752out:
Chris Wilson05394f32010-11-08 19:18:58 +0000753 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100754unlock:
Chris Wilson4f27b752010-10-14 15:26:45 +0100755 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700756 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700757}
758
Keith Packard0839ccb2008-10-30 19:38:48 -0700759/* This is the fast write path which cannot handle
760 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700761 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700762
Keith Packard0839ccb2008-10-30 19:38:48 -0700763static inline int
764fast_user_write(struct io_mapping *mapping,
765 loff_t page_base, int page_offset,
766 char __user *user_data,
767 int length)
768{
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700769 void __iomem *vaddr_atomic;
770 void *vaddr;
Keith Packard0839ccb2008-10-30 19:38:48 -0700771 unsigned long unwritten;
772
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700773 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base);
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700774 /* We can use the cpu mem copy function because this is X86. */
775 vaddr = (void __force*)vaddr_atomic + page_offset;
776 unwritten = __copy_from_user_inatomic_nocache(vaddr,
Keith Packard0839ccb2008-10-30 19:38:48 -0700777 user_data, length);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700778 io_mapping_unmap_atomic(vaddr_atomic);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100779 return unwritten;
Keith Packard0839ccb2008-10-30 19:38:48 -0700780}
781
Eric Anholt3de09aa2009-03-09 09:42:23 -0700782/**
783 * This is the fast pwrite path, where we copy the data directly from the
784 * user into the GTT, uncached.
785 */
Eric Anholt673a3942008-07-30 12:06:12 -0700786static int
Chris Wilson05394f32010-11-08 19:18:58 +0000787i915_gem_gtt_pwrite_fast(struct drm_device *dev,
788 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -0700789 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000790 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700791{
Jani Nikula3e31c6c2014-03-31 14:27:16 +0300792 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700793 ssize_t remain;
Keith Packard0839ccb2008-10-30 19:38:48 -0700794 loff_t offset, page_base;
Eric Anholt673a3942008-07-30 12:06:12 -0700795 char __user *user_data;
Daniel Vetter935aaa62012-03-25 19:47:35 +0200796 int page_offset, page_length, ret;
797
Daniel Vetter1ec9e262014-02-14 14:01:11 +0100798 ret = i915_gem_obj_ggtt_pin(obj, 0, PIN_MAPPABLE | PIN_NONBLOCK);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200799 if (ret)
800 goto out;
801
802 ret = i915_gem_object_set_to_gtt_domain(obj, true);
803 if (ret)
804 goto out_unpin;
805
806 ret = i915_gem_object_put_fence(obj);
807 if (ret)
808 goto out_unpin;
Eric Anholt673a3942008-07-30 12:06:12 -0700809
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200810 user_data = to_user_ptr(args->data_ptr);
Eric Anholt673a3942008-07-30 12:06:12 -0700811 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700812
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700813 offset = i915_gem_obj_ggtt_offset(obj) + args->offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700814
815 while (remain > 0) {
816 /* Operation in this page
817 *
Keith Packard0839ccb2008-10-30 19:38:48 -0700818 * page_base = page offset within aperture
819 * page_offset = offset within page
820 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -0700821 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100822 page_base = offset & PAGE_MASK;
823 page_offset = offset_in_page(offset);
Keith Packard0839ccb2008-10-30 19:38:48 -0700824 page_length = remain;
825 if ((page_offset + remain) > PAGE_SIZE)
826 page_length = PAGE_SIZE - page_offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700827
Keith Packard0839ccb2008-10-30 19:38:48 -0700828 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -0700829 * source page isn't available. Return the error and we'll
830 * retry in the slow path.
Keith Packard0839ccb2008-10-30 19:38:48 -0700831 */
Ben Widawsky5d4545a2013-01-17 12:45:15 -0800832 if (fast_user_write(dev_priv->gtt.mappable, page_base,
Daniel Vetter935aaa62012-03-25 19:47:35 +0200833 page_offset, user_data, page_length)) {
834 ret = -EFAULT;
835 goto out_unpin;
836 }
Eric Anholt673a3942008-07-30 12:06:12 -0700837
Keith Packard0839ccb2008-10-30 19:38:48 -0700838 remain -= page_length;
839 user_data += page_length;
840 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700841 }
Eric Anholt673a3942008-07-30 12:06:12 -0700842
Daniel Vetter935aaa62012-03-25 19:47:35 +0200843out_unpin:
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800844 i915_gem_object_ggtt_unpin(obj);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200845out:
Eric Anholt3de09aa2009-03-09 09:42:23 -0700846 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700847}
848
Daniel Vetterd174bd62012-03-25 19:47:40 +0200849/* Per-page copy function for the shmem pwrite fastpath.
850 * Flushes invalid cachelines before writing to the target if
851 * needs_clflush_before is set and flushes out any written cachelines after
852 * writing if needs_clflush is set. */
Eric Anholt673a3942008-07-30 12:06:12 -0700853static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200854shmem_pwrite_fast(struct page *page, int shmem_page_offset, int page_length,
855 char __user *user_data,
856 bool page_do_bit17_swizzling,
857 bool needs_clflush_before,
858 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700859{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200860 char *vaddr;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700861 int ret;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700862
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200863 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200864 return -EINVAL;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700865
Daniel Vetterd174bd62012-03-25 19:47:40 +0200866 vaddr = kmap_atomic(page);
867 if (needs_clflush_before)
868 drm_clflush_virt_range(vaddr + shmem_page_offset,
869 page_length);
Chris Wilsonc2831a92014-03-07 08:30:37 +0000870 ret = __copy_from_user_inatomic(vaddr + shmem_page_offset,
871 user_data, page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200872 if (needs_clflush_after)
873 drm_clflush_virt_range(vaddr + shmem_page_offset,
874 page_length);
875 kunmap_atomic(vaddr);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700876
Chris Wilson755d2212012-09-04 21:02:55 +0100877 return ret ? -EFAULT : 0;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700878}
879
Daniel Vetterd174bd62012-03-25 19:47:40 +0200880/* Only difference to the fast-path function is that this can handle bit17
881 * and uses non-atomic copy and kmap functions. */
Eric Anholt3043c602008-10-02 12:24:47 -0700882static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200883shmem_pwrite_slow(struct page *page, int shmem_page_offset, int page_length,
884 char __user *user_data,
885 bool page_do_bit17_swizzling,
886 bool needs_clflush_before,
887 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700888{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200889 char *vaddr;
890 int ret;
Eric Anholt40123c12009-03-09 13:42:30 -0700891
Daniel Vetterd174bd62012-03-25 19:47:40 +0200892 vaddr = kmap(page);
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200893 if (unlikely(needs_clflush_before || page_do_bit17_swizzling))
Daniel Vetter23c18c72012-03-25 19:47:42 +0200894 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
895 page_length,
896 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200897 if (page_do_bit17_swizzling)
898 ret = __copy_from_user_swizzled(vaddr, shmem_page_offset,
Chris Wilsone5281cc2010-10-28 13:45:36 +0100899 user_data,
900 page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200901 else
902 ret = __copy_from_user(vaddr + shmem_page_offset,
903 user_data,
904 page_length);
905 if (needs_clflush_after)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200906 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
907 page_length,
908 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200909 kunmap(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100910
Chris Wilson755d2212012-09-04 21:02:55 +0100911 return ret ? -EFAULT : 0;
Eric Anholt40123c12009-03-09 13:42:30 -0700912}
913
Eric Anholt40123c12009-03-09 13:42:30 -0700914static int
Daniel Vettere244a442012-03-25 19:47:28 +0200915i915_gem_shmem_pwrite(struct drm_device *dev,
916 struct drm_i915_gem_object *obj,
917 struct drm_i915_gem_pwrite *args,
918 struct drm_file *file)
Eric Anholt40123c12009-03-09 13:42:30 -0700919{
Eric Anholt40123c12009-03-09 13:42:30 -0700920 ssize_t remain;
Daniel Vetter8c599672011-12-14 13:57:31 +0100921 loff_t offset;
922 char __user *user_data;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100923 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8c599672011-12-14 13:57:31 +0100924 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vettere244a442012-03-25 19:47:28 +0200925 int hit_slowpath = 0;
Daniel Vetter58642882012-03-25 19:47:37 +0200926 int needs_clflush_after = 0;
927 int needs_clflush_before = 0;
Imre Deak67d5a502013-02-18 19:28:02 +0200928 struct sg_page_iter sg_iter;
Eric Anholt40123c12009-03-09 13:42:30 -0700929
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200930 user_data = to_user_ptr(args->data_ptr);
Eric Anholt40123c12009-03-09 13:42:30 -0700931 remain = args->size;
932
Daniel Vetter8c599672011-12-14 13:57:31 +0100933 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700934
Daniel Vetter58642882012-03-25 19:47:37 +0200935 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
936 /* If we're not in the cpu write domain, set ourself into the gtt
937 * write domain and manually flush cachelines (if required). This
938 * optimizes for the case when the gpu will use the data
939 * right away and we therefore have to clflush anyway. */
Chris Wilson2c225692013-08-09 12:26:45 +0100940 needs_clflush_after = cpu_write_needs_clflush(obj);
Ben Widawsky23f54482013-09-11 14:57:48 -0700941 ret = i915_gem_object_wait_rendering(obj, false);
942 if (ret)
943 return ret;
Chris Wilsonc8725f32014-03-17 12:21:55 +0000944
945 i915_gem_object_retire(obj);
Daniel Vetter58642882012-03-25 19:47:37 +0200946 }
Chris Wilsonc76ce032013-08-08 14:41:03 +0100947 /* Same trick applies to invalidate partially written cachelines read
948 * before writing. */
949 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0)
950 needs_clflush_before =
951 !cpu_cache_is_coherent(dev, obj->cache_level);
Daniel Vetter58642882012-03-25 19:47:37 +0200952
Chris Wilson755d2212012-09-04 21:02:55 +0100953 ret = i915_gem_object_get_pages(obj);
954 if (ret)
955 return ret;
956
957 i915_gem_object_pin_pages(obj);
958
Eric Anholt40123c12009-03-09 13:42:30 -0700959 offset = args->offset;
Chris Wilson05394f32010-11-08 19:18:58 +0000960 obj->dirty = 1;
Eric Anholt40123c12009-03-09 13:42:30 -0700961
Imre Deak67d5a502013-02-18 19:28:02 +0200962 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents,
963 offset >> PAGE_SHIFT) {
Imre Deak2db76d72013-03-26 15:14:18 +0200964 struct page *page = sg_page_iter_page(&sg_iter);
Daniel Vetter58642882012-03-25 19:47:37 +0200965 int partial_cacheline_write;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100966
Chris Wilson9da3da62012-06-01 15:20:22 +0100967 if (remain <= 0)
968 break;
969
Eric Anholt40123c12009-03-09 13:42:30 -0700970 /* Operation in this page
971 *
Eric Anholt40123c12009-03-09 13:42:30 -0700972 * shmem_page_offset = offset within page in shmem file
Eric Anholt40123c12009-03-09 13:42:30 -0700973 * page_length = bytes to copy for this page
974 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100975 shmem_page_offset = offset_in_page(offset);
Eric Anholt40123c12009-03-09 13:42:30 -0700976
977 page_length = remain;
978 if ((shmem_page_offset + page_length) > PAGE_SIZE)
979 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700980
Daniel Vetter58642882012-03-25 19:47:37 +0200981 /* If we don't overwrite a cacheline completely we need to be
982 * careful to have up-to-date data by first clflushing. Don't
983 * overcomplicate things and flush the entire patch. */
984 partial_cacheline_write = needs_clflush_before &&
985 ((shmem_page_offset | page_length)
986 & (boot_cpu_data.x86_clflush_size - 1));
987
Daniel Vetter8c599672011-12-14 13:57:31 +0100988 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
989 (page_to_phys(page) & (1 << 17)) != 0;
990
Daniel Vetterd174bd62012-03-25 19:47:40 +0200991 ret = shmem_pwrite_fast(page, shmem_page_offset, page_length,
992 user_data, page_do_bit17_swizzling,
993 partial_cacheline_write,
994 needs_clflush_after);
995 if (ret == 0)
996 goto next_page;
Eric Anholt40123c12009-03-09 13:42:30 -0700997
Daniel Vettere244a442012-03-25 19:47:28 +0200998 hit_slowpath = 1;
Daniel Vettere244a442012-03-25 19:47:28 +0200999 mutex_unlock(&dev->struct_mutex);
Daniel Vetterd174bd62012-03-25 19:47:40 +02001000 ret = shmem_pwrite_slow(page, shmem_page_offset, page_length,
1001 user_data, page_do_bit17_swizzling,
1002 partial_cacheline_write,
1003 needs_clflush_after);
Eric Anholt40123c12009-03-09 13:42:30 -07001004
Daniel Vettere244a442012-03-25 19:47:28 +02001005 mutex_lock(&dev->struct_mutex);
Chris Wilson755d2212012-09-04 21:02:55 +01001006
Chris Wilson755d2212012-09-04 21:02:55 +01001007 if (ret)
Daniel Vetter8c599672011-12-14 13:57:31 +01001008 goto out;
Daniel Vetter8c599672011-12-14 13:57:31 +01001009
Chris Wilson17793c92014-03-07 08:30:36 +00001010next_page:
Eric Anholt40123c12009-03-09 13:42:30 -07001011 remain -= page_length;
Daniel Vetter8c599672011-12-14 13:57:31 +01001012 user_data += page_length;
Eric Anholt40123c12009-03-09 13:42:30 -07001013 offset += page_length;
1014 }
1015
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001016out:
Chris Wilson755d2212012-09-04 21:02:55 +01001017 i915_gem_object_unpin_pages(obj);
1018
Daniel Vettere244a442012-03-25 19:47:28 +02001019 if (hit_slowpath) {
Daniel Vetter8dcf0152012-11-15 16:53:58 +01001020 /*
1021 * Fixup: Flush cpu caches in case we didn't flush the dirty
1022 * cachelines in-line while writing and the object moved
1023 * out of the cpu write domain while we've dropped the lock.
1024 */
1025 if (!needs_clflush_after &&
1026 obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
Chris Wilson000433b2013-08-08 14:41:09 +01001027 if (i915_gem_clflush_object(obj, obj->pin_display))
1028 i915_gem_chipset_flush(dev);
Daniel Vettere244a442012-03-25 19:47:28 +02001029 }
Daniel Vetter8c599672011-12-14 13:57:31 +01001030 }
Eric Anholt40123c12009-03-09 13:42:30 -07001031
Daniel Vetter58642882012-03-25 19:47:37 +02001032 if (needs_clflush_after)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08001033 i915_gem_chipset_flush(dev);
Daniel Vetter58642882012-03-25 19:47:37 +02001034
Eric Anholt40123c12009-03-09 13:42:30 -07001035 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001036}
1037
1038/**
1039 * Writes data to the object referenced by handle.
1040 *
1041 * On error, the contents of the buffer that were to be modified are undefined.
1042 */
1043int
1044i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001045 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001046{
1047 struct drm_i915_gem_pwrite *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001048 struct drm_i915_gem_object *obj;
Chris Wilson51311d02010-11-17 09:10:42 +00001049 int ret;
1050
1051 if (args->size == 0)
1052 return 0;
1053
1054 if (!access_ok(VERIFY_READ,
Ville Syrjälä2bb46292013-02-22 16:12:51 +02001055 to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +00001056 args->size))
1057 return -EFAULT;
1058
Jani Nikulad330a952014-01-21 11:24:25 +02001059 if (likely(!i915.prefault_disable)) {
Xiong Zhang0b74b502013-07-19 13:51:24 +08001060 ret = fault_in_multipages_readable(to_user_ptr(args->data_ptr),
1061 args->size);
1062 if (ret)
1063 return -EFAULT;
1064 }
Eric Anholt673a3942008-07-30 12:06:12 -07001065
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001066 ret = i915_mutex_lock_interruptible(dev);
1067 if (ret)
1068 return ret;
1069
Chris Wilson05394f32010-11-08 19:18:58 +00001070 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001071 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001072 ret = -ENOENT;
1073 goto unlock;
1074 }
Eric Anholt673a3942008-07-30 12:06:12 -07001075
Chris Wilson7dcd2492010-09-26 20:21:44 +01001076 /* Bounds check destination. */
Chris Wilson05394f32010-11-08 19:18:58 +00001077 if (args->offset > obj->base.size ||
1078 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +01001079 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +01001080 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +01001081 }
1082
Daniel Vetter1286ff72012-05-10 15:25:09 +02001083 /* prime objects have no backing filp to GEM pread/pwrite
1084 * pages from.
1085 */
1086 if (!obj->base.filp) {
1087 ret = -EINVAL;
1088 goto out;
1089 }
1090
Chris Wilsondb53a302011-02-03 11:57:46 +00001091 trace_i915_gem_object_pwrite(obj, args->offset, args->size);
1092
Daniel Vetter935aaa62012-03-25 19:47:35 +02001093 ret = -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -07001094 /* We can only do the GTT pwrite on untiled buffers, as otherwise
1095 * it would end up going through the fenced access, and we'll get
1096 * different detiling behavior between reading and writing.
1097 * pread/pwrite currently are reading and writing from the CPU
1098 * perspective, requiring manual detiling by the client.
1099 */
Chris Wilson2c225692013-08-09 12:26:45 +01001100 if (obj->tiling_mode == I915_TILING_NONE &&
1101 obj->base.write_domain != I915_GEM_DOMAIN_CPU &&
1102 cpu_write_needs_clflush(obj)) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001103 ret = i915_gem_gtt_pwrite_fast(dev, obj, args, file);
Daniel Vetter935aaa62012-03-25 19:47:35 +02001104 /* Note that the gtt paths might fail with non-page-backed user
1105 * pointers (e.g. gtt mappings when moving data between
1106 * textures). Fallback to the shmem path in that case. */
Eric Anholt40123c12009-03-09 13:42:30 -07001107 }
Eric Anholt673a3942008-07-30 12:06:12 -07001108
Chris Wilson6a2c4232014-11-04 04:51:40 -08001109 if (ret == -EFAULT || ret == -ENOSPC) {
1110 if (obj->phys_handle)
1111 ret = i915_gem_phys_pwrite(obj, args, file);
1112 else
1113 ret = i915_gem_shmem_pwrite(dev, obj, args, file);
1114 }
Daniel Vetter5c0480f2011-12-14 13:57:30 +01001115
Chris Wilson35b62a82010-09-26 20:23:38 +01001116out:
Chris Wilson05394f32010-11-08 19:18:58 +00001117 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001118unlock:
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001119 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07001120 return ret;
1121}
1122
Chris Wilsonb3612372012-08-24 09:35:08 +01001123int
Daniel Vetter33196de2012-11-14 17:14:05 +01001124i915_gem_check_wedge(struct i915_gpu_error *error,
Chris Wilsonb3612372012-08-24 09:35:08 +01001125 bool interruptible)
1126{
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001127 if (i915_reset_in_progress(error)) {
Chris Wilsonb3612372012-08-24 09:35:08 +01001128 /* Non-interruptible callers can't handle -EAGAIN, hence return
1129 * -EIO unconditionally for these. */
1130 if (!interruptible)
1131 return -EIO;
1132
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001133 /* Recovery complete, but the reset failed ... */
1134 if (i915_terminally_wedged(error))
Chris Wilsonb3612372012-08-24 09:35:08 +01001135 return -EIO;
1136
McAulay, Alistair6689c162014-08-15 18:51:35 +01001137 /*
1138 * Check if GPU Reset is in progress - we need intel_ring_begin
1139 * to work properly to reinit the hw state while the gpu is
1140 * still marked as reset-in-progress. Handle this with a flag.
1141 */
1142 if (!error->reload_in_reset)
1143 return -EAGAIN;
Chris Wilsonb3612372012-08-24 09:35:08 +01001144 }
1145
1146 return 0;
1147}
1148
1149/*
John Harrisonb6660d52014-11-24 18:49:30 +00001150 * Compare arbitrary request against outstanding lazy request. Emit on match.
Chris Wilsonb3612372012-08-24 09:35:08 +01001151 */
Sourab Gupta84c33a62014-06-02 16:47:17 +05301152int
John Harrisonb6660d52014-11-24 18:49:30 +00001153i915_gem_check_olr(struct drm_i915_gem_request *req)
Chris Wilsonb3612372012-08-24 09:35:08 +01001154{
1155 int ret;
1156
John Harrisonb6660d52014-11-24 18:49:30 +00001157 WARN_ON(!mutex_is_locked(&req->ring->dev->struct_mutex));
Chris Wilsonb3612372012-08-24 09:35:08 +01001158
1159 ret = 0;
John Harrisonb6660d52014-11-24 18:49:30 +00001160 if (req == req->ring->outstanding_lazy_request)
John Harrison9400ae52014-11-24 18:49:36 +00001161 ret = i915_add_request(req->ring);
Chris Wilsonb3612372012-08-24 09:35:08 +01001162
1163 return ret;
1164}
1165
Chris Wilson094f9a52013-09-25 17:34:55 +01001166static void fake_irq(unsigned long data)
1167{
1168 wake_up_process((struct task_struct *)data);
1169}
1170
1171static bool missed_irq(struct drm_i915_private *dev_priv,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001172 struct intel_engine_cs *ring)
Chris Wilson094f9a52013-09-25 17:34:55 +01001173{
1174 return test_bit(ring->id, &dev_priv->gpu_error.missed_irq_rings);
1175}
1176
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001177static bool can_wait_boost(struct drm_i915_file_private *file_priv)
1178{
1179 if (file_priv == NULL)
1180 return true;
1181
1182 return !atomic_xchg(&file_priv->rps_wait_boost, true);
1183}
1184
Chris Wilsonb3612372012-08-24 09:35:08 +01001185/**
John Harrison9c654812014-11-24 18:49:35 +00001186 * __i915_wait_request - wait until execution of request has finished
1187 * @req: duh!
1188 * @reset_counter: reset sequence associated with the given request
Chris Wilsonb3612372012-08-24 09:35:08 +01001189 * @interruptible: do an interruptible wait (normally yes)
1190 * @timeout: in - how long to wait (NULL forever); out - how much time remaining
1191 *
Daniel Vetterf69061b2012-12-06 09:01:42 +01001192 * Note: It is of utmost importance that the passed in seqno and reset_counter
1193 * values have been read by the caller in an smp safe manner. Where read-side
1194 * locks are involved, it is sufficient to read the reset_counter before
1195 * unlocking the lock that protects the seqno. For lockless tricks, the
1196 * reset_counter _must_ be read before, and an appropriate smp_rmb must be
1197 * inserted.
1198 *
John Harrison9c654812014-11-24 18:49:35 +00001199 * Returns 0 if the request was found within the alloted time. Else returns the
Chris Wilsonb3612372012-08-24 09:35:08 +01001200 * errno with remaining time filled in timeout argument.
1201 */
John Harrison9c654812014-11-24 18:49:35 +00001202int __i915_wait_request(struct drm_i915_gem_request *req,
Daniel Vetterf69061b2012-12-06 09:01:42 +01001203 unsigned reset_counter,
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001204 bool interruptible,
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001205 s64 *timeout,
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001206 struct drm_i915_file_private *file_priv)
Chris Wilsonb3612372012-08-24 09:35:08 +01001207{
John Harrison9c654812014-11-24 18:49:35 +00001208 struct intel_engine_cs *ring = i915_gem_request_get_ring(req);
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001209 struct drm_device *dev = ring->dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03001210 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001211 const bool irq_test_in_progress =
1212 ACCESS_ONCE(dev_priv->gpu_error.test_irq_rings) & intel_ring_flag(ring);
Chris Wilson094f9a52013-09-25 17:34:55 +01001213 DEFINE_WAIT(wait);
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001214 unsigned long timeout_expire;
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001215 s64 before, now;
Chris Wilsonb3612372012-08-24 09:35:08 +01001216 int ret;
1217
Jesse Barnes9df7575f2014-06-20 09:29:20 -07001218 WARN(!intel_irqs_enabled(dev_priv), "IRQs disabled");
Paulo Zanonic67a4702013-08-19 13:18:09 -03001219
John Harrison1b5a4332014-11-24 18:49:42 +00001220 if (i915_gem_request_completed(req, true))
Chris Wilsonb3612372012-08-24 09:35:08 +01001221 return 0;
1222
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001223 timeout_expire = timeout ? jiffies + nsecs_to_jiffies((u64)*timeout) : 0;
Chris Wilsonb3612372012-08-24 09:35:08 +01001224
Chris Wilsonec5cc0f2014-06-12 10:28:55 +01001225 if (INTEL_INFO(dev)->gen >= 6 && ring->id == RCS && can_wait_boost(file_priv)) {
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001226 gen6_rps_boost(dev_priv);
1227 if (file_priv)
1228 mod_delayed_work(dev_priv->wq,
1229 &file_priv->mm.idle_work,
1230 msecs_to_jiffies(100));
1231 }
1232
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001233 if (!irq_test_in_progress && WARN_ON(!ring->irq_get(ring)))
Chris Wilsonb3612372012-08-24 09:35:08 +01001234 return -ENODEV;
1235
Chris Wilson094f9a52013-09-25 17:34:55 +01001236 /* Record current time in case interrupted by signal, or wedged */
John Harrison74328ee2014-11-24 18:49:38 +00001237 trace_i915_gem_request_wait_begin(req);
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001238 before = ktime_get_raw_ns();
Chris Wilson094f9a52013-09-25 17:34:55 +01001239 for (;;) {
1240 struct timer_list timer;
Chris Wilsonb3612372012-08-24 09:35:08 +01001241
Chris Wilson094f9a52013-09-25 17:34:55 +01001242 prepare_to_wait(&ring->irq_queue, &wait,
1243 interruptible ? TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE);
Chris Wilsonb3612372012-08-24 09:35:08 +01001244
Daniel Vetterf69061b2012-12-06 09:01:42 +01001245 /* We need to check whether any gpu reset happened in between
1246 * the caller grabbing the seqno and now ... */
Chris Wilson094f9a52013-09-25 17:34:55 +01001247 if (reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter)) {
1248 /* ... but upgrade the -EAGAIN to an -EIO if the gpu
1249 * is truely gone. */
1250 ret = i915_gem_check_wedge(&dev_priv->gpu_error, interruptible);
1251 if (ret == 0)
1252 ret = -EAGAIN;
1253 break;
1254 }
Daniel Vetterf69061b2012-12-06 09:01:42 +01001255
John Harrison1b5a4332014-11-24 18:49:42 +00001256 if (i915_gem_request_completed(req, false)) {
Chris Wilson094f9a52013-09-25 17:34:55 +01001257 ret = 0;
1258 break;
1259 }
Chris Wilsonb3612372012-08-24 09:35:08 +01001260
Chris Wilson094f9a52013-09-25 17:34:55 +01001261 if (interruptible && signal_pending(current)) {
1262 ret = -ERESTARTSYS;
1263 break;
1264 }
1265
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001266 if (timeout && time_after_eq(jiffies, timeout_expire)) {
Chris Wilson094f9a52013-09-25 17:34:55 +01001267 ret = -ETIME;
1268 break;
1269 }
1270
1271 timer.function = NULL;
1272 if (timeout || missed_irq(dev_priv, ring)) {
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001273 unsigned long expire;
1274
Chris Wilson094f9a52013-09-25 17:34:55 +01001275 setup_timer_on_stack(&timer, fake_irq, (unsigned long)current);
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001276 expire = missed_irq(dev_priv, ring) ? jiffies + 1 : timeout_expire;
Chris Wilson094f9a52013-09-25 17:34:55 +01001277 mod_timer(&timer, expire);
1278 }
1279
Chris Wilson5035c272013-10-04 09:58:46 +01001280 io_schedule();
Chris Wilson094f9a52013-09-25 17:34:55 +01001281
Chris Wilson094f9a52013-09-25 17:34:55 +01001282 if (timer.function) {
1283 del_singleshot_timer_sync(&timer);
1284 destroy_timer_on_stack(&timer);
1285 }
1286 }
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001287 now = ktime_get_raw_ns();
John Harrison74328ee2014-11-24 18:49:38 +00001288 trace_i915_gem_request_wait_end(req);
Chris Wilsonb3612372012-08-24 09:35:08 +01001289
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001290 if (!irq_test_in_progress)
1291 ring->irq_put(ring);
Chris Wilson094f9a52013-09-25 17:34:55 +01001292
1293 finish_wait(&ring->irq_queue, &wait);
Chris Wilsonb3612372012-08-24 09:35:08 +01001294
1295 if (timeout) {
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001296 s64 tres = *timeout - (now - before);
1297
1298 *timeout = tres < 0 ? 0 : tres;
Chris Wilsonb3612372012-08-24 09:35:08 +01001299 }
1300
Chris Wilson094f9a52013-09-25 17:34:55 +01001301 return ret;
Chris Wilsonb3612372012-08-24 09:35:08 +01001302}
1303
1304/**
Daniel Vettera4b3a572014-11-26 14:17:05 +01001305 * Waits for a request to be signaled, and cleans up the
Chris Wilsonb3612372012-08-24 09:35:08 +01001306 * request and object lists appropriately for that event.
1307 */
1308int
Daniel Vettera4b3a572014-11-26 14:17:05 +01001309i915_wait_request(struct drm_i915_gem_request *req)
Chris Wilsonb3612372012-08-24 09:35:08 +01001310{
Daniel Vettera4b3a572014-11-26 14:17:05 +01001311 struct drm_device *dev;
1312 struct drm_i915_private *dev_priv;
1313 bool interruptible;
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001314 unsigned reset_counter;
Chris Wilsonb3612372012-08-24 09:35:08 +01001315 int ret;
1316
Daniel Vettera4b3a572014-11-26 14:17:05 +01001317 BUG_ON(req == NULL);
1318
1319 dev = req->ring->dev;
1320 dev_priv = dev->dev_private;
1321 interruptible = dev_priv->mm.interruptible;
1322
Chris Wilsonb3612372012-08-24 09:35:08 +01001323 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
Chris Wilsonb3612372012-08-24 09:35:08 +01001324
Daniel Vetter33196de2012-11-14 17:14:05 +01001325 ret = i915_gem_check_wedge(&dev_priv->gpu_error, interruptible);
Chris Wilsonb3612372012-08-24 09:35:08 +01001326 if (ret)
1327 return ret;
1328
Daniel Vettera4b3a572014-11-26 14:17:05 +01001329 ret = i915_gem_check_olr(req);
Chris Wilsonb3612372012-08-24 09:35:08 +01001330 if (ret)
1331 return ret;
1332
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001333 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Daniel Vettera4b3a572014-11-26 14:17:05 +01001334 i915_gem_request_reference(req);
John Harrison9c654812014-11-24 18:49:35 +00001335 ret = __i915_wait_request(req, reset_counter,
1336 interruptible, NULL, NULL);
Daniel Vettera4b3a572014-11-26 14:17:05 +01001337 i915_gem_request_unreference(req);
1338 return ret;
Chris Wilsonb3612372012-08-24 09:35:08 +01001339}
1340
Chris Wilsond26e3af2013-06-29 22:05:26 +01001341static int
John Harrison8e6395492014-10-30 18:40:53 +00001342i915_gem_object_wait_rendering__tail(struct drm_i915_gem_object *obj)
Chris Wilsond26e3af2013-06-29 22:05:26 +01001343{
Chris Wilsonc8725f32014-03-17 12:21:55 +00001344 if (!obj->active)
1345 return 0;
Chris Wilsond26e3af2013-06-29 22:05:26 +01001346
1347 /* Manually manage the write flush as we may have not yet
1348 * retired the buffer.
1349 *
John Harrison97b2a6a2014-11-24 18:49:26 +00001350 * Note that the last_write_req is always the earlier of
1351 * the two (read/write) requests, so if we haved successfully waited,
Chris Wilsond26e3af2013-06-29 22:05:26 +01001352 * we know we have passed the last write.
1353 */
John Harrison97b2a6a2014-11-24 18:49:26 +00001354 i915_gem_request_assign(&obj->last_write_req, NULL);
Chris Wilsond26e3af2013-06-29 22:05:26 +01001355
1356 return 0;
1357}
1358
Chris Wilsonb3612372012-08-24 09:35:08 +01001359/**
1360 * Ensures that all rendering to the object has completed and the object is
1361 * safe to unbind from the GTT or access from the CPU.
1362 */
1363static __must_check int
1364i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj,
1365 bool readonly)
1366{
John Harrison97b2a6a2014-11-24 18:49:26 +00001367 struct drm_i915_gem_request *req;
Chris Wilsonb3612372012-08-24 09:35:08 +01001368 int ret;
1369
John Harrison97b2a6a2014-11-24 18:49:26 +00001370 req = readonly ? obj->last_write_req : obj->last_read_req;
1371 if (!req)
Chris Wilsonb3612372012-08-24 09:35:08 +01001372 return 0;
1373
Daniel Vettera4b3a572014-11-26 14:17:05 +01001374 ret = i915_wait_request(req);
Chris Wilsonb3612372012-08-24 09:35:08 +01001375 if (ret)
1376 return ret;
1377
John Harrison8e6395492014-10-30 18:40:53 +00001378 return i915_gem_object_wait_rendering__tail(obj);
Chris Wilsonb3612372012-08-24 09:35:08 +01001379}
1380
Chris Wilson3236f572012-08-24 09:35:09 +01001381/* A nonblocking variant of the above wait. This is a highly dangerous routine
1382 * as the object state may change during this call.
1383 */
1384static __must_check int
1385i915_gem_object_wait_rendering__nonblocking(struct drm_i915_gem_object *obj,
Chris Wilson6e4930f2014-02-07 18:37:06 -02001386 struct drm_i915_file_private *file_priv,
Chris Wilson3236f572012-08-24 09:35:09 +01001387 bool readonly)
1388{
John Harrison97b2a6a2014-11-24 18:49:26 +00001389 struct drm_i915_gem_request *req;
Chris Wilson3236f572012-08-24 09:35:09 +01001390 struct drm_device *dev = obj->base.dev;
1391 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf69061b2012-12-06 09:01:42 +01001392 unsigned reset_counter;
Chris Wilson3236f572012-08-24 09:35:09 +01001393 int ret;
1394
1395 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
1396 BUG_ON(!dev_priv->mm.interruptible);
1397
John Harrison97b2a6a2014-11-24 18:49:26 +00001398 req = readonly ? obj->last_write_req : obj->last_read_req;
1399 if (!req)
Chris Wilson3236f572012-08-24 09:35:09 +01001400 return 0;
1401
Daniel Vetter33196de2012-11-14 17:14:05 +01001402 ret = i915_gem_check_wedge(&dev_priv->gpu_error, true);
Chris Wilson3236f572012-08-24 09:35:09 +01001403 if (ret)
1404 return ret;
1405
John Harrisonb6660d52014-11-24 18:49:30 +00001406 ret = i915_gem_check_olr(req);
Chris Wilson3236f572012-08-24 09:35:09 +01001407 if (ret)
1408 return ret;
1409
Daniel Vetterf69061b2012-12-06 09:01:42 +01001410 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
John Harrisonff865882014-11-24 18:49:28 +00001411 i915_gem_request_reference(req);
Chris Wilson3236f572012-08-24 09:35:09 +01001412 mutex_unlock(&dev->struct_mutex);
John Harrison9c654812014-11-24 18:49:35 +00001413 ret = __i915_wait_request(req, reset_counter, true, NULL, file_priv);
Chris Wilson3236f572012-08-24 09:35:09 +01001414 mutex_lock(&dev->struct_mutex);
John Harrisonff865882014-11-24 18:49:28 +00001415 i915_gem_request_unreference(req);
Chris Wilsond26e3af2013-06-29 22:05:26 +01001416 if (ret)
1417 return ret;
Chris Wilson3236f572012-08-24 09:35:09 +01001418
John Harrison8e6395492014-10-30 18:40:53 +00001419 return i915_gem_object_wait_rendering__tail(obj);
Chris Wilson3236f572012-08-24 09:35:09 +01001420}
1421
Eric Anholt673a3942008-07-30 12:06:12 -07001422/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001423 * Called when user space prepares to use an object with the CPU, either
1424 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -07001425 */
1426int
1427i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001428 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001429{
1430 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001431 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001432 uint32_t read_domains = args->read_domains;
1433 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07001434 int ret;
1435
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001436 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +01001437 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001438 return -EINVAL;
1439
Chris Wilson21d509e2009-06-06 09:46:02 +01001440 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001441 return -EINVAL;
1442
1443 /* Having something in the write domain implies it's in the read
1444 * domain, and only that read domain. Enforce that in the request.
1445 */
1446 if (write_domain != 0 && read_domains != write_domain)
1447 return -EINVAL;
1448
Chris Wilson76c1dec2010-09-25 11:22:51 +01001449 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001450 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001451 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001452
Chris Wilson05394f32010-11-08 19:18:58 +00001453 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001454 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001455 ret = -ENOENT;
1456 goto unlock;
Chris Wilson76c1dec2010-09-25 11:22:51 +01001457 }
Jesse Barnes652c3932009-08-17 13:31:43 -07001458
Chris Wilson3236f572012-08-24 09:35:09 +01001459 /* Try to flush the object off the GPU without holding the lock.
1460 * We will repeat the flush holding the lock in the normal manner
1461 * to catch cases where we are gazumped.
1462 */
Chris Wilson6e4930f2014-02-07 18:37:06 -02001463 ret = i915_gem_object_wait_rendering__nonblocking(obj,
1464 file->driver_priv,
1465 !write_domain);
Chris Wilson3236f572012-08-24 09:35:09 +01001466 if (ret)
1467 goto unref;
1468
Chris Wilson43566de2015-01-02 16:29:29 +05301469 if (read_domains & I915_GEM_DOMAIN_GTT)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001470 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Chris Wilson43566de2015-01-02 16:29:29 +05301471 else
Eric Anholte47c68e2008-11-14 13:35:19 -08001472 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001473
Chris Wilson3236f572012-08-24 09:35:09 +01001474unref:
Chris Wilson05394f32010-11-08 19:18:58 +00001475 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001476unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001477 mutex_unlock(&dev->struct_mutex);
1478 return ret;
1479}
1480
1481/**
1482 * Called when user space has done writes to this buffer
1483 */
1484int
1485i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001486 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001487{
1488 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001489 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001490 int ret = 0;
1491
Chris Wilson76c1dec2010-09-25 11:22:51 +01001492 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001493 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001494 return ret;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001495
Chris Wilson05394f32010-11-08 19:18:58 +00001496 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001497 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001498 ret = -ENOENT;
1499 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07001500 }
1501
Eric Anholt673a3942008-07-30 12:06:12 -07001502 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilson2c225692013-08-09 12:26:45 +01001503 if (obj->pin_display)
1504 i915_gem_object_flush_cpu_write_domain(obj, true);
Eric Anholte47c68e2008-11-14 13:35:19 -08001505
Chris Wilson05394f32010-11-08 19:18:58 +00001506 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001507unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001508 mutex_unlock(&dev->struct_mutex);
1509 return ret;
1510}
1511
1512/**
1513 * Maps the contents of an object, returning the address it is mapped
1514 * into.
1515 *
1516 * While the mapping holds a reference on the contents of the object, it doesn't
1517 * imply a ref on the object itself.
Daniel Vetter34367382014-10-16 12:28:18 +02001518 *
1519 * IMPORTANT:
1520 *
1521 * DRM driver writers who look a this function as an example for how to do GEM
1522 * mmap support, please don't implement mmap support like here. The modern way
1523 * to implement DRM mmap support is with an mmap offset ioctl (like
1524 * i915_gem_mmap_gtt) and then using the mmap syscall on the DRM fd directly.
1525 * That way debug tooling like valgrind will understand what's going on, hiding
1526 * the mmap call in a driver private ioctl will break that. The i915 driver only
1527 * does cpu mmaps this way because we didn't know better.
Eric Anholt673a3942008-07-30 12:06:12 -07001528 */
1529int
1530i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001531 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001532{
1533 struct drm_i915_gem_mmap *args = data;
1534 struct drm_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001535 unsigned long addr;
1536
Akash Goel1816f922015-01-02 16:29:30 +05301537 if (args->flags & ~(I915_MMAP_WC))
1538 return -EINVAL;
1539
1540 if (args->flags & I915_MMAP_WC && !cpu_has_pat)
1541 return -ENODEV;
1542
Chris Wilson05394f32010-11-08 19:18:58 +00001543 obj = drm_gem_object_lookup(dev, file, args->handle);
Eric Anholt673a3942008-07-30 12:06:12 -07001544 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001545 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001546
Daniel Vetter1286ff72012-05-10 15:25:09 +02001547 /* prime objects have no backing filp to GEM mmap
1548 * pages from.
1549 */
1550 if (!obj->filp) {
1551 drm_gem_object_unreference_unlocked(obj);
1552 return -EINVAL;
1553 }
1554
Linus Torvalds6be5ceb2012-04-20 17:13:58 -07001555 addr = vm_mmap(obj->filp, 0, args->size,
Eric Anholt673a3942008-07-30 12:06:12 -07001556 PROT_READ | PROT_WRITE, MAP_SHARED,
1557 args->offset);
Akash Goel1816f922015-01-02 16:29:30 +05301558 if (args->flags & I915_MMAP_WC) {
1559 struct mm_struct *mm = current->mm;
1560 struct vm_area_struct *vma;
1561
1562 down_write(&mm->mmap_sem);
1563 vma = find_vma(mm, addr);
1564 if (vma)
1565 vma->vm_page_prot =
1566 pgprot_writecombine(vm_get_page_prot(vma->vm_flags));
1567 else
1568 addr = -ENOMEM;
1569 up_write(&mm->mmap_sem);
1570 }
Luca Barbieribc9025b2010-02-09 05:49:12 +00001571 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001572 if (IS_ERR((void *)addr))
1573 return addr;
1574
1575 args->addr_ptr = (uint64_t) addr;
1576
1577 return 0;
1578}
1579
Jesse Barnesde151cf2008-11-12 10:03:55 -08001580/**
1581 * i915_gem_fault - fault a page into the GTT
1582 * vma: VMA in question
1583 * vmf: fault info
1584 *
1585 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1586 * from userspace. The fault handler takes care of binding the object to
1587 * the GTT (if needed), allocating and programming a fence register (again,
1588 * only if needed based on whether the old reg is still valid or the object
1589 * is tiled) and inserting a new PTE into the faulting process.
1590 *
1591 * Note that the faulting process may involve evicting existing objects
1592 * from the GTT and/or fence registers to make room. So performance may
1593 * suffer if the GTT working set is large or there are few fence registers
1594 * left.
1595 */
1596int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1597{
Chris Wilson05394f32010-11-08 19:18:58 +00001598 struct drm_i915_gem_object *obj = to_intel_bo(vma->vm_private_data);
1599 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03001600 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001601 pgoff_t page_offset;
1602 unsigned long pfn;
1603 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001604 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001605
Paulo Zanonif65c9162013-11-27 18:20:34 -02001606 intel_runtime_pm_get(dev_priv);
1607
Jesse Barnesde151cf2008-11-12 10:03:55 -08001608 /* We don't use vmf->pgoff since that has the fake offset */
1609 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1610 PAGE_SHIFT;
1611
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001612 ret = i915_mutex_lock_interruptible(dev);
1613 if (ret)
1614 goto out;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001615
Chris Wilsondb53a302011-02-03 11:57:46 +00001616 trace_i915_gem_object_fault(obj, page_offset, true, write);
1617
Chris Wilson6e4930f2014-02-07 18:37:06 -02001618 /* Try to flush the object off the GPU first without holding the lock.
1619 * Upon reacquiring the lock, we will perform our sanity checks and then
1620 * repeat the flush holding the lock in the normal manner to catch cases
1621 * where we are gazumped.
1622 */
1623 ret = i915_gem_object_wait_rendering__nonblocking(obj, NULL, !write);
1624 if (ret)
1625 goto unlock;
1626
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001627 /* Access to snoopable pages through the GTT is incoherent. */
1628 if (obj->cache_level != I915_CACHE_NONE && !HAS_LLC(dev)) {
Chris Wilsonddeff6e2014-05-28 16:16:41 +01001629 ret = -EFAULT;
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001630 goto unlock;
1631 }
1632
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001633 /* Now bind it into the GTT if needed */
Daniel Vetter1ec9e262014-02-14 14:01:11 +01001634 ret = i915_gem_obj_ggtt_pin(obj, 0, PIN_MAPPABLE);
Chris Wilsond9e86c02010-11-10 16:40:20 +00001635 if (ret)
1636 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001637
Chris Wilsonc9839302012-11-20 10:45:17 +00001638 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1639 if (ret)
1640 goto unpin;
1641
1642 ret = i915_gem_object_get_fence(obj);
1643 if (ret)
1644 goto unpin;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001645
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001646 /* Finally, remap it using the new GTT offset */
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001647 pfn = dev_priv->gtt.mappable_base + i915_gem_obj_ggtt_offset(obj);
1648 pfn >>= PAGE_SHIFT;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001649
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001650 if (!obj->fault_mappable) {
Ville Syrjäläbeff0d02014-06-17 21:03:00 +03001651 unsigned long size = min_t(unsigned long,
1652 vma->vm_end - vma->vm_start,
1653 obj->base.size);
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001654 int i;
1655
Ville Syrjäläbeff0d02014-06-17 21:03:00 +03001656 for (i = 0; i < size >> PAGE_SHIFT; i++) {
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001657 ret = vm_insert_pfn(vma,
1658 (unsigned long)vma->vm_start + i * PAGE_SIZE,
1659 pfn + i);
1660 if (ret)
1661 break;
1662 }
1663
1664 obj->fault_mappable = true;
1665 } else
1666 ret = vm_insert_pfn(vma,
1667 (unsigned long)vmf->virtual_address,
1668 pfn + page_offset);
Chris Wilsonc9839302012-11-20 10:45:17 +00001669unpin:
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08001670 i915_gem_object_ggtt_unpin(obj);
Chris Wilsonc7150892009-09-23 00:43:56 +01001671unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001672 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001673out:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001674 switch (ret) {
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001675 case -EIO:
Daniel Vetter2232f032014-09-04 09:36:18 +02001676 /*
1677 * We eat errors when the gpu is terminally wedged to avoid
1678 * userspace unduly crashing (gl has no provisions for mmaps to
1679 * fail). But any other -EIO isn't ours (e.g. swap in failure)
1680 * and so needs to be reported.
1681 */
1682 if (!i915_terminally_wedged(&dev_priv->gpu_error)) {
Paulo Zanonif65c9162013-11-27 18:20:34 -02001683 ret = VM_FAULT_SIGBUS;
1684 break;
1685 }
Chris Wilson045e7692010-11-07 09:18:22 +00001686 case -EAGAIN:
Daniel Vetter571c6082013-09-12 17:57:28 +02001687 /*
1688 * EAGAIN means the gpu is hung and we'll wait for the error
1689 * handler to reset everything when re-faulting in
1690 * i915_mutex_lock_interruptible.
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001691 */
Chris Wilsonc7150892009-09-23 00:43:56 +01001692 case 0:
1693 case -ERESTARTSYS:
Chris Wilsonbed636a2011-02-11 20:31:19 +00001694 case -EINTR:
Dmitry Rogozhkine79e0fe2012-10-03 17:15:26 +03001695 case -EBUSY:
1696 /*
1697 * EBUSY is ok: this just means that another thread
1698 * already did the job.
1699 */
Paulo Zanonif65c9162013-11-27 18:20:34 -02001700 ret = VM_FAULT_NOPAGE;
1701 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001702 case -ENOMEM:
Paulo Zanonif65c9162013-11-27 18:20:34 -02001703 ret = VM_FAULT_OOM;
1704 break;
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001705 case -ENOSPC:
Chris Wilson45d67812014-01-31 11:34:57 +00001706 case -EFAULT:
Paulo Zanonif65c9162013-11-27 18:20:34 -02001707 ret = VM_FAULT_SIGBUS;
1708 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001709 default:
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001710 WARN_ONCE(ret, "unhandled error in i915_gem_fault: %i\n", ret);
Paulo Zanonif65c9162013-11-27 18:20:34 -02001711 ret = VM_FAULT_SIGBUS;
1712 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001713 }
Paulo Zanonif65c9162013-11-27 18:20:34 -02001714
1715 intel_runtime_pm_put(dev_priv);
1716 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001717}
1718
1719/**
Chris Wilson901782b2009-07-10 08:18:50 +01001720 * i915_gem_release_mmap - remove physical page mappings
1721 * @obj: obj in question
1722 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001723 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001724 * relinquish ownership of the pages back to the system.
1725 *
1726 * It is vital that we remove the page mapping if we have mapped a tiled
1727 * object through the GTT and then lose the fence register due to
1728 * resource pressure. Similarly if the object has been moved out of the
1729 * aperture, than pages mapped into userspace must be revoked. Removing the
1730 * mapping will then trigger a page fault on the next user access, allowing
1731 * fixup by i915_gem_fault().
1732 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001733void
Chris Wilson05394f32010-11-08 19:18:58 +00001734i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01001735{
Chris Wilson6299f992010-11-24 12:23:44 +00001736 if (!obj->fault_mappable)
1737 return;
Chris Wilson901782b2009-07-10 08:18:50 +01001738
David Herrmann6796cb12014-01-03 14:24:19 +01001739 drm_vma_node_unmap(&obj->base.vma_node,
1740 obj->base.dev->anon_inode->i_mapping);
Chris Wilson6299f992010-11-24 12:23:44 +00001741 obj->fault_mappable = false;
Chris Wilson901782b2009-07-10 08:18:50 +01001742}
1743
Chris Wilsoneedd10f2014-06-16 08:57:44 +01001744void
1745i915_gem_release_all_mmaps(struct drm_i915_private *dev_priv)
1746{
1747 struct drm_i915_gem_object *obj;
1748
1749 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list)
1750 i915_gem_release_mmap(obj);
1751}
1752
Imre Deak0fa87792013-01-07 21:47:35 +02001753uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001754i915_gem_get_gtt_size(struct drm_device *dev, uint32_t size, int tiling_mode)
Chris Wilson92b88ae2010-11-09 11:47:32 +00001755{
Chris Wilsone28f8712011-07-18 13:11:49 -07001756 uint32_t gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001757
1758 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001759 tiling_mode == I915_TILING_NONE)
1760 return size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001761
1762 /* Previous chips need a power-of-two fence region when tiling */
1763 if (INTEL_INFO(dev)->gen == 3)
Chris Wilsone28f8712011-07-18 13:11:49 -07001764 gtt_size = 1024*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001765 else
Chris Wilsone28f8712011-07-18 13:11:49 -07001766 gtt_size = 512*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001767
Chris Wilsone28f8712011-07-18 13:11:49 -07001768 while (gtt_size < size)
1769 gtt_size <<= 1;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001770
Chris Wilsone28f8712011-07-18 13:11:49 -07001771 return gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001772}
1773
Jesse Barnesde151cf2008-11-12 10:03:55 -08001774/**
1775 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1776 * @obj: object to check
1777 *
1778 * Return the required GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01001779 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08001780 */
Imre Deakd8651102013-01-07 21:47:33 +02001781uint32_t
1782i915_gem_get_gtt_alignment(struct drm_device *dev, uint32_t size,
1783 int tiling_mode, bool fenced)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001784{
Jesse Barnesde151cf2008-11-12 10:03:55 -08001785 /*
1786 * Minimum alignment is 4k (GTT page size), but might be greater
1787 * if a fence register is needed for the object.
1788 */
Imre Deakd8651102013-01-07 21:47:33 +02001789 if (INTEL_INFO(dev)->gen >= 4 || (!fenced && IS_G33(dev)) ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001790 tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001791 return 4096;
1792
1793 /*
1794 * Previous chips need to be aligned to the size of the smallest
1795 * fence register that can contain the object.
1796 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001797 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01001798}
1799
Chris Wilsond8cb5082012-08-11 15:41:03 +01001800static int i915_gem_object_create_mmap_offset(struct drm_i915_gem_object *obj)
1801{
1802 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
1803 int ret;
1804
David Herrmann0de23972013-07-24 21:07:52 +02001805 if (drm_vma_node_has_offset(&obj->base.vma_node))
Chris Wilsond8cb5082012-08-11 15:41:03 +01001806 return 0;
1807
Daniel Vetterda494d72012-12-20 15:11:16 +01001808 dev_priv->mm.shrinker_no_lock_stealing = true;
1809
Chris Wilsond8cb5082012-08-11 15:41:03 +01001810 ret = drm_gem_create_mmap_offset(&obj->base);
1811 if (ret != -ENOSPC)
Daniel Vetterda494d72012-12-20 15:11:16 +01001812 goto out;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001813
1814 /* Badly fragmented mmap space? The only way we can recover
1815 * space is by destroying unwanted objects. We can't randomly release
1816 * mmap_offsets as userspace expects them to be persistent for the
1817 * lifetime of the objects. The closest we can is to release the
1818 * offsets on purgeable objects by truncating it and marking it purged,
1819 * which prevents userspace from ever using that object again.
1820 */
Chris Wilson21ab4e72014-09-09 11:16:08 +01001821 i915_gem_shrink(dev_priv,
1822 obj->base.size >> PAGE_SHIFT,
1823 I915_SHRINK_BOUND |
1824 I915_SHRINK_UNBOUND |
1825 I915_SHRINK_PURGEABLE);
Chris Wilsond8cb5082012-08-11 15:41:03 +01001826 ret = drm_gem_create_mmap_offset(&obj->base);
1827 if (ret != -ENOSPC)
Daniel Vetterda494d72012-12-20 15:11:16 +01001828 goto out;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001829
1830 i915_gem_shrink_all(dev_priv);
Daniel Vetterda494d72012-12-20 15:11:16 +01001831 ret = drm_gem_create_mmap_offset(&obj->base);
1832out:
1833 dev_priv->mm.shrinker_no_lock_stealing = false;
1834
1835 return ret;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001836}
1837
1838static void i915_gem_object_free_mmap_offset(struct drm_i915_gem_object *obj)
1839{
Chris Wilsond8cb5082012-08-11 15:41:03 +01001840 drm_gem_free_mmap_offset(&obj->base);
1841}
1842
Thomas Hellstrom355a7012014-11-20 09:56:25 +01001843static int
Dave Airlieff72145b2011-02-07 12:16:14 +10001844i915_gem_mmap_gtt(struct drm_file *file,
1845 struct drm_device *dev,
Thomas Hellstrom355a7012014-11-20 09:56:25 +01001846 uint32_t handle, bool dumb,
Dave Airlieff72145b2011-02-07 12:16:14 +10001847 uint64_t *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001848{
Chris Wilsonda761a62010-10-27 17:37:08 +01001849 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001850 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001851 int ret;
1852
Chris Wilson76c1dec2010-09-25 11:22:51 +01001853 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001854 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001855 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001856
Dave Airlieff72145b2011-02-07 12:16:14 +10001857 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001858 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001859 ret = -ENOENT;
1860 goto unlock;
1861 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001862
Thomas Hellstrom355a7012014-11-20 09:56:25 +01001863 /*
1864 * We don't allow dumb mmaps on objects created using another
1865 * interface.
1866 */
1867 WARN_ONCE(dumb && !(obj->base.dumb || obj->base.import_attach),
1868 "Illegal dumb map of accelerated buffer.\n");
1869
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001870 if (obj->base.size > dev_priv->gtt.mappable_end) {
Chris Wilsonda761a62010-10-27 17:37:08 +01001871 ret = -E2BIG;
Eric Anholtff56b0b2011-10-31 23:16:21 -07001872 goto out;
Chris Wilsonda761a62010-10-27 17:37:08 +01001873 }
1874
Chris Wilson05394f32010-11-08 19:18:58 +00001875 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00001876 DRM_DEBUG("Attempting to mmap a purgeable buffer\n");
Chris Wilson8c99e572014-01-31 11:34:58 +00001877 ret = -EFAULT;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001878 goto out;
Chris Wilsonab182822009-09-22 18:46:17 +01001879 }
1880
Chris Wilsond8cb5082012-08-11 15:41:03 +01001881 ret = i915_gem_object_create_mmap_offset(obj);
1882 if (ret)
1883 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001884
David Herrmann0de23972013-07-24 21:07:52 +02001885 *offset = drm_vma_node_offset_addr(&obj->base.vma_node);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001886
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001887out:
Chris Wilson05394f32010-11-08 19:18:58 +00001888 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001889unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001890 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001891 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001892}
1893
Thomas Hellstrom355a7012014-11-20 09:56:25 +01001894int
1895i915_gem_dumb_map_offset(struct drm_file *file,
1896 struct drm_device *dev,
1897 uint32_t handle,
1898 uint64_t *offset)
1899{
1900 return i915_gem_mmap_gtt(file, dev, handle, true, offset);
1901}
1902
Dave Airlieff72145b2011-02-07 12:16:14 +10001903/**
1904 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1905 * @dev: DRM device
1906 * @data: GTT mapping ioctl data
1907 * @file: GEM object info
1908 *
1909 * Simply returns the fake offset to userspace so it can mmap it.
1910 * The mmap call will end up in drm_gem_mmap(), which will set things
1911 * up so we can get faults in the handler above.
1912 *
1913 * The fault handler will take care of binding the object into the GTT
1914 * (since it may have been evicted to make room for something), allocating
1915 * a fence register, and mapping the appropriate aperture address into
1916 * userspace.
1917 */
1918int
1919i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
1920 struct drm_file *file)
1921{
1922 struct drm_i915_gem_mmap_gtt *args = data;
1923
Thomas Hellstrom355a7012014-11-20 09:56:25 +01001924 return i915_gem_mmap_gtt(file, dev, args->handle, false, &args->offset);
Dave Airlieff72145b2011-02-07 12:16:14 +10001925}
1926
Chris Wilson55372522014-03-25 13:23:06 +00001927static inline int
1928i915_gem_object_is_purgeable(struct drm_i915_gem_object *obj)
1929{
1930 return obj->madv == I915_MADV_DONTNEED;
1931}
1932
Daniel Vetter225067e2012-08-20 10:23:20 +02001933/* Immediately discard the backing storage */
1934static void
1935i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001936{
Chris Wilson4d6294bf2012-08-11 15:41:05 +01001937 i915_gem_object_free_mmap_offset(obj);
Daniel Vetter1286ff72012-05-10 15:25:09 +02001938
Chris Wilson4d6294bf2012-08-11 15:41:05 +01001939 if (obj->base.filp == NULL)
1940 return;
1941
Daniel Vetter225067e2012-08-20 10:23:20 +02001942 /* Our goal here is to return as much of the memory as
1943 * is possible back to the system as we are called from OOM.
1944 * To do this we must instruct the shmfs to drop all of its
1945 * backing pages, *now*.
Chris Wilsone5281cc2010-10-28 13:45:36 +01001946 */
Chris Wilson55372522014-03-25 13:23:06 +00001947 shmem_truncate_range(file_inode(obj->base.filp), 0, (loff_t)-1);
Daniel Vetter225067e2012-08-20 10:23:20 +02001948 obj->madv = __I915_MADV_PURGED;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001949}
Chris Wilsone5281cc2010-10-28 13:45:36 +01001950
Chris Wilson55372522014-03-25 13:23:06 +00001951/* Try to discard unwanted pages */
1952static void
1953i915_gem_object_invalidate(struct drm_i915_gem_object *obj)
Daniel Vetter225067e2012-08-20 10:23:20 +02001954{
Chris Wilson55372522014-03-25 13:23:06 +00001955 struct address_space *mapping;
1956
1957 switch (obj->madv) {
1958 case I915_MADV_DONTNEED:
1959 i915_gem_object_truncate(obj);
1960 case __I915_MADV_PURGED:
1961 return;
1962 }
1963
1964 if (obj->base.filp == NULL)
1965 return;
1966
1967 mapping = file_inode(obj->base.filp)->i_mapping,
1968 invalidate_mapping_pages(mapping, 0, (loff_t)-1);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001969}
1970
Chris Wilson5cdf5882010-09-27 15:51:07 +01001971static void
Chris Wilson05394f32010-11-08 19:18:58 +00001972i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001973{
Imre Deak90797e62013-02-18 19:28:03 +02001974 struct sg_page_iter sg_iter;
1975 int ret;
Daniel Vetter1286ff72012-05-10 15:25:09 +02001976
Chris Wilson05394f32010-11-08 19:18:58 +00001977 BUG_ON(obj->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07001978
Chris Wilson6c085a72012-08-20 11:40:46 +02001979 ret = i915_gem_object_set_to_cpu_domain(obj, true);
1980 if (ret) {
1981 /* In the event of a disaster, abandon all caches and
1982 * hope for the best.
1983 */
1984 WARN_ON(ret != -EIO);
Chris Wilson2c225692013-08-09 12:26:45 +01001985 i915_gem_clflush_object(obj, true);
Chris Wilson6c085a72012-08-20 11:40:46 +02001986 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
1987 }
1988
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001989 if (i915_gem_object_needs_bit17_swizzle(obj))
Eric Anholt280b7132009-03-12 16:56:27 -07001990 i915_gem_object_save_bit_17_swizzle(obj);
1991
Chris Wilson05394f32010-11-08 19:18:58 +00001992 if (obj->madv == I915_MADV_DONTNEED)
1993 obj->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01001994
Imre Deak90797e62013-02-18 19:28:03 +02001995 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents, 0) {
Imre Deak2db76d72013-03-26 15:14:18 +02001996 struct page *page = sg_page_iter_page(&sg_iter);
Chris Wilson9da3da62012-06-01 15:20:22 +01001997
Chris Wilson05394f32010-11-08 19:18:58 +00001998 if (obj->dirty)
Chris Wilson9da3da62012-06-01 15:20:22 +01001999 set_page_dirty(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01002000
Chris Wilson05394f32010-11-08 19:18:58 +00002001 if (obj->madv == I915_MADV_WILLNEED)
Chris Wilson9da3da62012-06-01 15:20:22 +01002002 mark_page_accessed(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01002003
Chris Wilson9da3da62012-06-01 15:20:22 +01002004 page_cache_release(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01002005 }
Chris Wilson05394f32010-11-08 19:18:58 +00002006 obj->dirty = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002007
Chris Wilson9da3da62012-06-01 15:20:22 +01002008 sg_free_table(obj->pages);
2009 kfree(obj->pages);
Chris Wilson37e680a2012-06-07 15:38:42 +01002010}
2011
Chris Wilsondd624af2013-01-15 12:39:35 +00002012int
Chris Wilson37e680a2012-06-07 15:38:42 +01002013i915_gem_object_put_pages(struct drm_i915_gem_object *obj)
2014{
2015 const struct drm_i915_gem_object_ops *ops = obj->ops;
2016
Chris Wilson2f745ad2012-09-04 21:02:58 +01002017 if (obj->pages == NULL)
Chris Wilson37e680a2012-06-07 15:38:42 +01002018 return 0;
2019
Chris Wilsona5570172012-09-04 21:02:54 +01002020 if (obj->pages_pin_count)
2021 return -EBUSY;
2022
Ben Widawsky98438772013-07-31 17:00:12 -07002023 BUG_ON(i915_gem_obj_bound_any(obj));
Ben Widawsky3e123022013-07-31 17:00:04 -07002024
Chris Wilsona2165e32012-12-03 11:49:00 +00002025 /* ->put_pages might need to allocate memory for the bit17 swizzle
2026 * array, hence protect them from being reaped by removing them from gtt
2027 * lists early. */
Ben Widawsky35c20a62013-05-31 11:28:48 -07002028 list_del(&obj->global_list);
Chris Wilsona2165e32012-12-03 11:49:00 +00002029
Chris Wilson37e680a2012-06-07 15:38:42 +01002030 ops->put_pages(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002031 obj->pages = NULL;
Chris Wilson6c085a72012-08-20 11:40:46 +02002032
Chris Wilson55372522014-03-25 13:23:06 +00002033 i915_gem_object_invalidate(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02002034
2035 return 0;
2036}
2037
Chris Wilson21ab4e72014-09-09 11:16:08 +01002038unsigned long
2039i915_gem_shrink(struct drm_i915_private *dev_priv,
2040 long target, unsigned flags)
Chris Wilson6c085a72012-08-20 11:40:46 +02002041{
Chris Wilson60a53722014-10-03 10:29:51 +01002042 const struct {
2043 struct list_head *list;
2044 unsigned int bit;
2045 } phases[] = {
2046 { &dev_priv->mm.unbound_list, I915_SHRINK_UNBOUND },
2047 { &dev_priv->mm.bound_list, I915_SHRINK_BOUND },
2048 { NULL, 0 },
2049 }, *phase;
Chris Wilsond9973b42013-10-04 10:33:00 +01002050 unsigned long count = 0;
Chris Wilson6c085a72012-08-20 11:40:46 +02002051
Chris Wilson57094f82013-09-04 10:45:50 +01002052 /*
Chris Wilsonc8725f32014-03-17 12:21:55 +00002053 * As we may completely rewrite the (un)bound list whilst unbinding
Chris Wilson57094f82013-09-04 10:45:50 +01002054 * (due to retiring requests) we have to strictly process only
2055 * one element of the list at the time, and recheck the list
2056 * on every iteration.
Chris Wilsonc8725f32014-03-17 12:21:55 +00002057 *
2058 * In particular, we must hold a reference whilst removing the
2059 * object as we may end up waiting for and/or retiring the objects.
2060 * This might release the final reference (held by the active list)
2061 * and result in the object being freed from under us. This is
2062 * similar to the precautions the eviction code must take whilst
2063 * removing objects.
2064 *
2065 * Also note that although these lists do not hold a reference to
2066 * the object we can safely grab one here: The final object
2067 * unreferencing and the bound_list are both protected by the
2068 * dev->struct_mutex and so we won't ever be able to observe an
2069 * object on the bound_list with a reference count equals 0.
Chris Wilson57094f82013-09-04 10:45:50 +01002070 */
Chris Wilson60a53722014-10-03 10:29:51 +01002071 for (phase = phases; phase->list; phase++) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002072 struct list_head still_in_list;
Chris Wilsonc8725f32014-03-17 12:21:55 +00002073
Chris Wilson60a53722014-10-03 10:29:51 +01002074 if ((flags & phase->bit) == 0)
2075 continue;
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07002076
Chris Wilson21ab4e72014-09-09 11:16:08 +01002077 INIT_LIST_HEAD(&still_in_list);
Chris Wilson60a53722014-10-03 10:29:51 +01002078 while (count < target && !list_empty(phase->list)) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002079 struct drm_i915_gem_object *obj;
2080 struct i915_vma *vma, *v;
Chris Wilson57094f82013-09-04 10:45:50 +01002081
Chris Wilson60a53722014-10-03 10:29:51 +01002082 obj = list_first_entry(phase->list,
Chris Wilson21ab4e72014-09-09 11:16:08 +01002083 typeof(*obj), global_list);
2084 list_move_tail(&obj->global_list, &still_in_list);
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07002085
Chris Wilson60a53722014-10-03 10:29:51 +01002086 if (flags & I915_SHRINK_PURGEABLE &&
2087 !i915_gem_object_is_purgeable(obj))
Chris Wilson21ab4e72014-09-09 11:16:08 +01002088 continue;
Chris Wilson57094f82013-09-04 10:45:50 +01002089
Chris Wilson21ab4e72014-09-09 11:16:08 +01002090 drm_gem_object_reference(&obj->base);
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07002091
Chris Wilson60a53722014-10-03 10:29:51 +01002092 /* For the unbound phase, this should be a no-op! */
2093 list_for_each_entry_safe(vma, v,
2094 &obj->vma_list, vma_link)
Chris Wilson21ab4e72014-09-09 11:16:08 +01002095 if (i915_vma_unbind(vma))
2096 break;
Chris Wilson57094f82013-09-04 10:45:50 +01002097
Chris Wilson21ab4e72014-09-09 11:16:08 +01002098 if (i915_gem_object_put_pages(obj) == 0)
2099 count += obj->base.size >> PAGE_SHIFT;
2100
2101 drm_gem_object_unreference(&obj->base);
2102 }
Chris Wilson60a53722014-10-03 10:29:51 +01002103 list_splice(&still_in_list, phase->list);
Chris Wilson6c085a72012-08-20 11:40:46 +02002104 }
2105
2106 return count;
2107}
2108
Chris Wilsond9973b42013-10-04 10:33:00 +01002109static unsigned long
Chris Wilson6c085a72012-08-20 11:40:46 +02002110i915_gem_shrink_all(struct drm_i915_private *dev_priv)
2111{
Chris Wilson6c085a72012-08-20 11:40:46 +02002112 i915_gem_evict_everything(dev_priv->dev);
Chris Wilson21ab4e72014-09-09 11:16:08 +01002113 return i915_gem_shrink(dev_priv, LONG_MAX,
2114 I915_SHRINK_BOUND | I915_SHRINK_UNBOUND);
Daniel Vetter225067e2012-08-20 10:23:20 +02002115}
2116
Chris Wilson37e680a2012-06-07 15:38:42 +01002117static int
Chris Wilson6c085a72012-08-20 11:40:46 +02002118i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002119{
Chris Wilson6c085a72012-08-20 11:40:46 +02002120 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002121 int page_count, i;
2122 struct address_space *mapping;
Chris Wilson9da3da62012-06-01 15:20:22 +01002123 struct sg_table *st;
2124 struct scatterlist *sg;
Imre Deak90797e62013-02-18 19:28:03 +02002125 struct sg_page_iter sg_iter;
Eric Anholt673a3942008-07-30 12:06:12 -07002126 struct page *page;
Imre Deak90797e62013-02-18 19:28:03 +02002127 unsigned long last_pfn = 0; /* suppress gcc warning */
Chris Wilson6c085a72012-08-20 11:40:46 +02002128 gfp_t gfp;
Eric Anholt673a3942008-07-30 12:06:12 -07002129
Chris Wilson6c085a72012-08-20 11:40:46 +02002130 /* Assert that the object is not currently in any GPU domain. As it
2131 * wasn't in the GTT, there shouldn't be any way it could have been in
2132 * a GPU cache
2133 */
2134 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
2135 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
2136
Chris Wilson9da3da62012-06-01 15:20:22 +01002137 st = kmalloc(sizeof(*st), GFP_KERNEL);
2138 if (st == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002139 return -ENOMEM;
2140
Chris Wilson9da3da62012-06-01 15:20:22 +01002141 page_count = obj->base.size / PAGE_SIZE;
2142 if (sg_alloc_table(st, page_count, GFP_KERNEL)) {
Chris Wilson9da3da62012-06-01 15:20:22 +01002143 kfree(st);
2144 return -ENOMEM;
2145 }
2146
2147 /* Get the list of pages out of our struct file. They'll be pinned
2148 * at this point until we release them.
2149 *
2150 * Fail silently without starting the shrinker
2151 */
Al Viro496ad9a2013-01-23 17:07:38 -05002152 mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilson6c085a72012-08-20 11:40:46 +02002153 gfp = mapping_gfp_mask(mapping);
Linus Torvaldscaf49192012-12-10 10:51:16 -08002154 gfp |= __GFP_NORETRY | __GFP_NOWARN | __GFP_NO_KSWAPD;
Chris Wilson6c085a72012-08-20 11:40:46 +02002155 gfp &= ~(__GFP_IO | __GFP_WAIT);
Imre Deak90797e62013-02-18 19:28:03 +02002156 sg = st->sgl;
2157 st->nents = 0;
2158 for (i = 0; i < page_count; i++) {
Chris Wilson6c085a72012-08-20 11:40:46 +02002159 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
2160 if (IS_ERR(page)) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002161 i915_gem_shrink(dev_priv,
2162 page_count,
2163 I915_SHRINK_BOUND |
2164 I915_SHRINK_UNBOUND |
2165 I915_SHRINK_PURGEABLE);
Chris Wilson6c085a72012-08-20 11:40:46 +02002166 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
2167 }
2168 if (IS_ERR(page)) {
2169 /* We've tried hard to allocate the memory by reaping
2170 * our own buffer, now let the real VM do its job and
2171 * go down in flames if truly OOM.
2172 */
Chris Wilson6c085a72012-08-20 11:40:46 +02002173 i915_gem_shrink_all(dev_priv);
David Herrmannf461d1b2014-05-25 14:34:10 +02002174 page = shmem_read_mapping_page(mapping, i);
Chris Wilson6c085a72012-08-20 11:40:46 +02002175 if (IS_ERR(page))
2176 goto err_pages;
Chris Wilson6c085a72012-08-20 11:40:46 +02002177 }
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04002178#ifdef CONFIG_SWIOTLB
2179 if (swiotlb_nr_tbl()) {
2180 st->nents++;
2181 sg_set_page(sg, page, PAGE_SIZE, 0);
2182 sg = sg_next(sg);
2183 continue;
2184 }
2185#endif
Imre Deak90797e62013-02-18 19:28:03 +02002186 if (!i || page_to_pfn(page) != last_pfn + 1) {
2187 if (i)
2188 sg = sg_next(sg);
2189 st->nents++;
2190 sg_set_page(sg, page, PAGE_SIZE, 0);
2191 } else {
2192 sg->length += PAGE_SIZE;
2193 }
2194 last_pfn = page_to_pfn(page);
Daniel Vetter3bbbe702013-10-07 17:15:45 -03002195
2196 /* Check that the i965g/gm workaround works. */
2197 WARN_ON((gfp & __GFP_DMA32) && (last_pfn >= 0x00100000UL));
Eric Anholt673a3942008-07-30 12:06:12 -07002198 }
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04002199#ifdef CONFIG_SWIOTLB
2200 if (!swiotlb_nr_tbl())
2201#endif
2202 sg_mark_end(sg);
Chris Wilson74ce6b62012-10-19 15:51:06 +01002203 obj->pages = st;
2204
Eric Anholt673a3942008-07-30 12:06:12 -07002205 if (i915_gem_object_needs_bit17_swizzle(obj))
2206 i915_gem_object_do_bit_17_swizzle(obj);
2207
Daniel Vetter656bfa32014-11-20 09:26:30 +01002208 if (obj->tiling_mode != I915_TILING_NONE &&
2209 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES)
2210 i915_gem_object_pin_pages(obj);
2211
Eric Anholt673a3942008-07-30 12:06:12 -07002212 return 0;
2213
2214err_pages:
Imre Deak90797e62013-02-18 19:28:03 +02002215 sg_mark_end(sg);
2216 for_each_sg_page(st->sgl, &sg_iter, st->nents, 0)
Imre Deak2db76d72013-03-26 15:14:18 +02002217 page_cache_release(sg_page_iter_page(&sg_iter));
Chris Wilson9da3da62012-06-01 15:20:22 +01002218 sg_free_table(st);
2219 kfree(st);
Chris Wilson0820baf2014-03-25 13:23:03 +00002220
2221 /* shmemfs first checks if there is enough memory to allocate the page
2222 * and reports ENOSPC should there be insufficient, along with the usual
2223 * ENOMEM for a genuine allocation failure.
2224 *
2225 * We use ENOSPC in our driver to mean that we have run out of aperture
2226 * space and so want to translate the error from shmemfs back to our
2227 * usual understanding of ENOMEM.
2228 */
2229 if (PTR_ERR(page) == -ENOSPC)
2230 return -ENOMEM;
2231 else
2232 return PTR_ERR(page);
Eric Anholt673a3942008-07-30 12:06:12 -07002233}
2234
Chris Wilson37e680a2012-06-07 15:38:42 +01002235/* Ensure that the associated pages are gathered from the backing storage
2236 * and pinned into our object. i915_gem_object_get_pages() may be called
2237 * multiple times before they are released by a single call to
2238 * i915_gem_object_put_pages() - once the pages are no longer referenced
2239 * either as a result of memory pressure (reaping pages under the shrinker)
2240 * or as the object is itself released.
2241 */
2242int
2243i915_gem_object_get_pages(struct drm_i915_gem_object *obj)
2244{
2245 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2246 const struct drm_i915_gem_object_ops *ops = obj->ops;
2247 int ret;
2248
Chris Wilson2f745ad2012-09-04 21:02:58 +01002249 if (obj->pages)
Chris Wilson37e680a2012-06-07 15:38:42 +01002250 return 0;
2251
Chris Wilson43e28f02013-01-08 10:53:09 +00002252 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00002253 DRM_DEBUG("Attempting to obtain a purgeable object\n");
Chris Wilson8c99e572014-01-31 11:34:58 +00002254 return -EFAULT;
Chris Wilson43e28f02013-01-08 10:53:09 +00002255 }
2256
Chris Wilsona5570172012-09-04 21:02:54 +01002257 BUG_ON(obj->pages_pin_count);
2258
Chris Wilson37e680a2012-06-07 15:38:42 +01002259 ret = ops->get_pages(obj);
2260 if (ret)
2261 return ret;
2262
Ben Widawsky35c20a62013-05-31 11:28:48 -07002263 list_add_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Chris Wilson37e680a2012-06-07 15:38:42 +01002264 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002265}
2266
Ben Widawskye2d05a82013-09-24 09:57:58 -07002267static void
Chris Wilson05394f32010-11-08 19:18:58 +00002268i915_gem_object_move_to_active(struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002269 struct intel_engine_cs *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07002270{
John Harrison41c52412014-11-24 18:49:43 +00002271 struct drm_i915_gem_request *req;
2272 struct intel_engine_cs *old_ring;
Daniel Vetter617dbe22010-02-11 22:16:02 +01002273
Zou Nan hai852835f2010-05-21 09:08:56 +08002274 BUG_ON(ring == NULL);
John Harrison41c52412014-11-24 18:49:43 +00002275
2276 req = intel_ring_get_request(ring);
2277 old_ring = i915_gem_request_get_ring(obj->last_read_req);
2278
2279 if (old_ring != ring && obj->last_write_req) {
John Harrison97b2a6a2014-11-24 18:49:26 +00002280 /* Keep the request relative to the current ring */
2281 i915_gem_request_assign(&obj->last_write_req, req);
Chris Wilson02978ff2013-07-09 09:22:39 +01002282 }
Eric Anholt673a3942008-07-30 12:06:12 -07002283
2284 /* Add a reference if we're newly entering the active list. */
Chris Wilson05394f32010-11-08 19:18:58 +00002285 if (!obj->active) {
2286 drm_gem_object_reference(&obj->base);
2287 obj->active = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07002288 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01002289
Chris Wilson05394f32010-11-08 19:18:58 +00002290 list_move_tail(&obj->ring_list, &ring->active_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002291
John Harrison97b2a6a2014-11-24 18:49:26 +00002292 i915_gem_request_assign(&obj->last_read_req, req);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002293}
2294
Ben Widawskye2d05a82013-09-24 09:57:58 -07002295void i915_vma_move_to_active(struct i915_vma *vma,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002296 struct intel_engine_cs *ring)
Ben Widawskye2d05a82013-09-24 09:57:58 -07002297{
2298 list_move_tail(&vma->mm_list, &vma->vm->active_list);
2299 return i915_gem_object_move_to_active(vma->obj, ring);
2300}
2301
Chris Wilsoncaea7472010-11-12 13:53:37 +00002302static void
Chris Wilsoncaea7472010-11-12 13:53:37 +00002303i915_gem_object_move_to_inactive(struct drm_i915_gem_object *obj)
2304{
Ben Widawskyfeb822c2013-12-06 14:10:51 -08002305 struct i915_vma *vma;
Chris Wilsoncaea7472010-11-12 13:53:37 +00002306
Chris Wilson65ce3022012-07-20 12:41:02 +01002307 BUG_ON(obj->base.write_domain & ~I915_GEM_GPU_DOMAINS);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002308 BUG_ON(!obj->active);
Chris Wilson65ce3022012-07-20 12:41:02 +01002309
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00002310 list_for_each_entry(vma, &obj->vma_list, vma_link) {
2311 if (!list_empty(&vma->mm_list))
2312 list_move_tail(&vma->mm_list, &vma->vm->inactive_list);
Ben Widawskyfeb822c2013-12-06 14:10:51 -08002313 }
Chris Wilsoncaea7472010-11-12 13:53:37 +00002314
Daniel Vetterf99d7062014-06-19 16:01:59 +02002315 intel_fb_obj_flush(obj, true);
2316
Chris Wilson65ce3022012-07-20 12:41:02 +01002317 list_del_init(&obj->ring_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002318
John Harrison97b2a6a2014-11-24 18:49:26 +00002319 i915_gem_request_assign(&obj->last_read_req, NULL);
2320 i915_gem_request_assign(&obj->last_write_req, NULL);
Chris Wilson65ce3022012-07-20 12:41:02 +01002321 obj->base.write_domain = 0;
2322
John Harrison97b2a6a2014-11-24 18:49:26 +00002323 i915_gem_request_assign(&obj->last_fenced_req, NULL);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002324
2325 obj->active = 0;
2326 drm_gem_object_unreference(&obj->base);
2327
2328 WARN_ON(i915_verify_lists(dev));
Eric Anholtce44b0e2008-11-06 16:00:31 -08002329}
Eric Anholt673a3942008-07-30 12:06:12 -07002330
Chris Wilsonc8725f32014-03-17 12:21:55 +00002331static void
2332i915_gem_object_retire(struct drm_i915_gem_object *obj)
2333{
John Harrison41c52412014-11-24 18:49:43 +00002334 if (obj->last_read_req == NULL)
Chris Wilsonc8725f32014-03-17 12:21:55 +00002335 return;
2336
John Harrison1b5a4332014-11-24 18:49:42 +00002337 if (i915_gem_request_completed(obj->last_read_req, true))
Chris Wilsonc8725f32014-03-17 12:21:55 +00002338 i915_gem_object_move_to_inactive(obj);
2339}
2340
Chris Wilson9d7730912012-11-27 16:22:52 +00002341static int
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002342i915_gem_init_seqno(struct drm_device *dev, u32 seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01002343{
Chris Wilson9d7730912012-11-27 16:22:52 +00002344 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002345 struct intel_engine_cs *ring;
Chris Wilson9d7730912012-11-27 16:22:52 +00002346 int ret, i, j;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002347
Chris Wilson107f27a52012-12-10 13:56:17 +02002348 /* Carefully retire all requests without writing to the rings */
Chris Wilson9d7730912012-11-27 16:22:52 +00002349 for_each_ring(ring, dev_priv, i) {
Chris Wilson107f27a52012-12-10 13:56:17 +02002350 ret = intel_ring_idle(ring);
2351 if (ret)
2352 return ret;
Chris Wilson9d7730912012-11-27 16:22:52 +00002353 }
Chris Wilson9d7730912012-11-27 16:22:52 +00002354 i915_gem_retire_requests(dev);
Chris Wilson107f27a52012-12-10 13:56:17 +02002355
2356 /* Finally reset hw state */
Chris Wilson9d7730912012-11-27 16:22:52 +00002357 for_each_ring(ring, dev_priv, i) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002358 intel_ring_init_seqno(ring, seqno);
Mika Kuoppala498d2ac2012-12-04 15:12:04 +02002359
Ben Widawskyebc348b2014-04-29 14:52:28 -07002360 for (j = 0; j < ARRAY_SIZE(ring->semaphore.sync_seqno); j++)
2361 ring->semaphore.sync_seqno[j] = 0;
Chris Wilson9d7730912012-11-27 16:22:52 +00002362 }
2363
2364 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002365}
2366
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002367int i915_gem_set_seqno(struct drm_device *dev, u32 seqno)
2368{
2369 struct drm_i915_private *dev_priv = dev->dev_private;
2370 int ret;
2371
2372 if (seqno == 0)
2373 return -EINVAL;
2374
2375 /* HWS page needs to be set less than what we
2376 * will inject to ring
2377 */
2378 ret = i915_gem_init_seqno(dev, seqno - 1);
2379 if (ret)
2380 return ret;
2381
2382 /* Carefully set the last_seqno value so that wrap
2383 * detection still works
2384 */
2385 dev_priv->next_seqno = seqno;
2386 dev_priv->last_seqno = seqno - 1;
2387 if (dev_priv->last_seqno == 0)
2388 dev_priv->last_seqno--;
2389
2390 return 0;
2391}
2392
Chris Wilson9d7730912012-11-27 16:22:52 +00002393int
2394i915_gem_get_seqno(struct drm_device *dev, u32 *seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01002395{
Chris Wilson9d7730912012-11-27 16:22:52 +00002396 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002397
Chris Wilson9d7730912012-11-27 16:22:52 +00002398 /* reserve 0 for non-seqno */
2399 if (dev_priv->next_seqno == 0) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002400 int ret = i915_gem_init_seqno(dev, 0);
Chris Wilson9d7730912012-11-27 16:22:52 +00002401 if (ret)
2402 return ret;
2403
2404 dev_priv->next_seqno = 1;
2405 }
2406
Mika Kuoppalaf72b3432012-12-10 15:41:48 +02002407 *seqno = dev_priv->last_seqno = dev_priv->next_seqno++;
Chris Wilson9d7730912012-11-27 16:22:52 +00002408 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002409}
2410
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002411int __i915_add_request(struct intel_engine_cs *ring,
Mika Kuoppala0025c072013-06-12 12:35:30 +03002412 struct drm_file *file,
John Harrison9400ae52014-11-24 18:49:36 +00002413 struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002414{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03002415 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Chris Wilsonacb868d2012-09-26 13:47:30 +01002416 struct drm_i915_gem_request *request;
Oscar Mateo48e29f52014-07-24 17:04:29 +01002417 struct intel_ringbuffer *ringbuf;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002418 u32 request_ring_position, request_start;
Chris Wilson3cce4692010-10-27 16:11:02 +01002419 int ret;
2420
John Harrison6259cea2014-11-24 18:49:29 +00002421 request = ring->outstanding_lazy_request;
Oscar Mateo48e29f52014-07-24 17:04:29 +01002422 if (WARN_ON(request == NULL))
2423 return -ENOMEM;
2424
2425 if (i915.enable_execlists) {
2426 struct intel_context *ctx = request->ctx;
2427 ringbuf = ctx->engine[ring->id].ringbuf;
2428 } else
2429 ringbuf = ring->buffer;
2430
2431 request_start = intel_ring_get_tail(ringbuf);
Daniel Vettercc889e02012-06-13 20:45:19 +02002432 /*
2433 * Emit any outstanding flushes - execbuf can fail to emit the flush
2434 * after having emitted the batchbuffer command. Hence we need to fix
2435 * things up similar to emitting the lazy request. The difference here
2436 * is that the flush _must_ happen before the next request, no matter
2437 * what.
2438 */
Oscar Mateo48e29f52014-07-24 17:04:29 +01002439 if (i915.enable_execlists) {
2440 ret = logical_ring_flush_all_caches(ringbuf);
2441 if (ret)
2442 return ret;
2443 } else {
2444 ret = intel_ring_flush_all_caches(ring);
2445 if (ret)
2446 return ret;
2447 }
Daniel Vettercc889e02012-06-13 20:45:19 +02002448
Chris Wilsona71d8d92012-02-15 11:25:36 +00002449 /* Record the position of the start of the request so that
2450 * should we detect the updated seqno part-way through the
2451 * GPU processing the request, we never over-estimate the
2452 * position of the head.
2453 */
Oscar Mateo48e29f52014-07-24 17:04:29 +01002454 request_ring_position = intel_ring_get_tail(ringbuf);
Chris Wilsona71d8d92012-02-15 11:25:36 +00002455
Oscar Mateo48e29f52014-07-24 17:04:29 +01002456 if (i915.enable_execlists) {
2457 ret = ring->emit_request(ringbuf);
2458 if (ret)
2459 return ret;
2460 } else {
2461 ret = ring->add_request(ring);
2462 if (ret)
2463 return ret;
2464 }
Eric Anholt673a3942008-07-30 12:06:12 -07002465
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002466 request->head = request_start;
Chris Wilsona71d8d92012-02-15 11:25:36 +00002467 request->tail = request_ring_position;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002468
2469 /* Whilst this request exists, batch_obj will be on the
2470 * active_list, and so will hold the active reference. Only when this
2471 * request is retired will the the batch_obj be moved onto the
2472 * inactive_list and lose its active reference. Hence we do not need
2473 * to explicitly hold another reference here.
2474 */
Chris Wilson9a7e0c22013-08-26 19:50:54 -03002475 request->batch_obj = obj;
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002476
Oscar Mateo48e29f52014-07-24 17:04:29 +01002477 if (!i915.enable_execlists) {
2478 /* Hold a reference to the current context so that we can inspect
2479 * it later in case a hangcheck error event fires.
2480 */
2481 request->ctx = ring->last_context;
2482 if (request->ctx)
2483 i915_gem_context_reference(request->ctx);
2484 }
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002485
Eric Anholt673a3942008-07-30 12:06:12 -07002486 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08002487 list_add_tail(&request->list, &ring->request_list);
Chris Wilson3bb73ab2012-07-20 12:40:59 +01002488 request->file_priv = NULL;
Zou Nan hai852835f2010-05-21 09:08:56 +08002489
Chris Wilsondb53a302011-02-03 11:57:46 +00002490 if (file) {
2491 struct drm_i915_file_private *file_priv = file->driver_priv;
2492
Chris Wilson1c255952010-09-26 11:03:27 +01002493 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002494 request->file_priv = file_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00002495 list_add_tail(&request->client_list,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002496 &file_priv->mm.request_list);
Chris Wilson1c255952010-09-26 11:03:27 +01002497 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00002498 }
Eric Anholt673a3942008-07-30 12:06:12 -07002499
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
John Harrisonabfe2622014-11-24 18:49:24 +00002578 i915_gem_request_unreference(request);
2579}
2580
2581void i915_gem_request_free(struct kref *req_ref)
2582{
2583 struct drm_i915_gem_request *req = container_of(req_ref,
2584 typeof(*req), ref);
2585 struct intel_context *ctx = req->ctx;
2586
Thomas Daniel0794aed2014-11-25 10:39:25 +00002587 if (ctx) {
2588 if (i915.enable_execlists) {
John Harrisonabfe2622014-11-24 18:49:24 +00002589 struct intel_engine_cs *ring = req->ring;
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002590
Thomas Daniel0794aed2014-11-25 10:39:25 +00002591 if (ctx != ring->default_context)
2592 intel_lr_context_unpin(ring, ctx);
2593 }
John Harrisonabfe2622014-11-24 18:49:24 +00002594
Oscar Mateodcb4c122014-11-13 10:28:10 +00002595 i915_gem_context_unreference(ctx);
2596 }
John Harrisonabfe2622014-11-24 18:49:24 +00002597
2598 kfree(req);
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002599}
2600
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002601struct drm_i915_gem_request *
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002602i915_gem_find_active_request(struct intel_engine_cs *ring)
Chris Wilson9375e442010-09-19 12:21:28 +01002603{
Chris Wilson4db080f2013-12-04 11:37:09 +00002604 struct drm_i915_gem_request *request;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002605
Chris Wilson4db080f2013-12-04 11:37:09 +00002606 list_for_each_entry(request, &ring->request_list, list) {
John Harrison1b5a4332014-11-24 18:49:42 +00002607 if (i915_gem_request_completed(request, false))
Chris Wilson4db080f2013-12-04 11:37:09 +00002608 continue;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002609
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002610 return request;
Chris Wilson4db080f2013-12-04 11:37:09 +00002611 }
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002612
2613 return NULL;
2614}
2615
2616static void i915_gem_reset_ring_status(struct drm_i915_private *dev_priv,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002617 struct intel_engine_cs *ring)
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002618{
2619 struct drm_i915_gem_request *request;
2620 bool ring_hung;
2621
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002622 request = i915_gem_find_active_request(ring);
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002623
2624 if (request == NULL)
2625 return;
2626
2627 ring_hung = ring->hangcheck.score >= HANGCHECK_SCORE_RING_HUNG;
2628
Mika Kuoppala939fd762014-01-30 19:04:44 +02002629 i915_set_reset_status(dev_priv, request->ctx, ring_hung);
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002630
2631 list_for_each_entry_continue(request, &ring->request_list, list)
Mika Kuoppala939fd762014-01-30 19:04:44 +02002632 i915_set_reset_status(dev_priv, request->ctx, false);
Chris Wilson4db080f2013-12-04 11:37:09 +00002633}
2634
2635static void i915_gem_reset_ring_cleanup(struct drm_i915_private *dev_priv,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002636 struct intel_engine_cs *ring)
Chris Wilson4db080f2013-12-04 11:37:09 +00002637{
Chris Wilsondfaae392010-09-22 10:31:52 +01002638 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00002639 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07002640
Chris Wilson05394f32010-11-08 19:18:58 +00002641 obj = list_first_entry(&ring->active_list,
2642 struct drm_i915_gem_object,
2643 ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07002644
Chris Wilson05394f32010-11-08 19:18:58 +00002645 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002646 }
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002647
2648 /*
Oscar Mateodcb4c122014-11-13 10:28:10 +00002649 * Clear the execlists queue up before freeing the requests, as those
2650 * are the ones that keep the context and ringbuffer backing objects
2651 * pinned in place.
2652 */
2653 while (!list_empty(&ring->execlist_queue)) {
2654 struct intel_ctx_submit_request *submit_req;
2655
2656 submit_req = list_first_entry(&ring->execlist_queue,
2657 struct intel_ctx_submit_request,
2658 execlist_link);
2659 list_del(&submit_req->execlist_link);
2660 intel_runtime_pm_put(dev_priv);
2661 i915_gem_context_unreference(submit_req->ctx);
2662 kfree(submit_req);
2663 }
2664
2665 /*
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002666 * We must free the requests after all the corresponding objects have
2667 * been moved off active lists. Which is the same order as the normal
2668 * retire_requests function does. This is important if object hold
2669 * implicit references on things like e.g. ppgtt address spaces through
2670 * the request.
2671 */
2672 while (!list_empty(&ring->request_list)) {
2673 struct drm_i915_gem_request *request;
2674
2675 request = list_first_entry(&ring->request_list,
2676 struct drm_i915_gem_request,
2677 list);
2678
2679 i915_gem_free_request(request);
2680 }
Chris Wilsone3efda42014-04-09 09:19:41 +01002681
John Harrison6259cea2014-11-24 18:49:29 +00002682 /* This may not have been flushed before the reset, so clean it now */
2683 i915_gem_request_assign(&ring->outstanding_lazy_request, NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07002684}
2685
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002686void i915_gem_restore_fences(struct drm_device *dev)
Chris Wilson312817a2010-11-22 11:50:11 +00002687{
2688 struct drm_i915_private *dev_priv = dev->dev_private;
2689 int i;
2690
Daniel Vetter4b9de732011-10-09 21:52:02 +02002691 for (i = 0; i < dev_priv->num_fence_regs; i++) {
Chris Wilson312817a2010-11-22 11:50:11 +00002692 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
Chris Wilson7d2cb392010-11-27 17:38:29 +00002693
Daniel Vetter94a335d2013-07-17 14:51:28 +02002694 /*
2695 * Commit delayed tiling changes if we have an object still
2696 * attached to the fence, otherwise just clear the fence.
2697 */
2698 if (reg->obj) {
2699 i915_gem_object_update_fence(reg->obj, reg,
2700 reg->obj->tiling_mode);
2701 } else {
2702 i915_gem_write_fence(dev, i, NULL);
2703 }
Chris Wilson312817a2010-11-22 11:50:11 +00002704 }
2705}
2706
Chris Wilson069efc12010-09-30 16:53:18 +01002707void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07002708{
Chris Wilsondfaae392010-09-22 10:31:52 +01002709 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002710 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002711 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07002712
Chris Wilson4db080f2013-12-04 11:37:09 +00002713 /*
2714 * Before we free the objects from the requests, we need to inspect
2715 * them for finding the guilty party. As the requests only borrow
2716 * their reference to the objects, the inspection must be done first.
2717 */
Chris Wilsonb4519512012-05-11 14:29:30 +01002718 for_each_ring(ring, dev_priv, i)
Chris Wilson4db080f2013-12-04 11:37:09 +00002719 i915_gem_reset_ring_status(dev_priv, ring);
2720
2721 for_each_ring(ring, dev_priv, i)
2722 i915_gem_reset_ring_cleanup(dev_priv, ring);
Chris Wilsondfaae392010-09-22 10:31:52 +01002723
Ben Widawskyacce9ff2013-12-06 14:11:03 -08002724 i915_gem_context_reset(dev);
2725
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002726 i915_gem_restore_fences(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07002727}
2728
2729/**
2730 * This function clears the request list as sequence numbers are passed.
2731 */
Chris Wilson1cf0ba12014-05-05 09:07:33 +01002732void
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002733i915_gem_retire_requests_ring(struct intel_engine_cs *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07002734{
Chris Wilsondb53a302011-02-03 11:57:46 +00002735 if (list_empty(&ring->request_list))
Karsten Wiese6c0594a2009-02-23 15:07:57 +01002736 return;
2737
Chris Wilsondb53a302011-02-03 11:57:46 +00002738 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002739
Chris Wilsone9103032014-01-07 11:45:14 +00002740 /* Move any buffers on the active list that are no longer referenced
2741 * by the ringbuffer to the flushing/inactive lists as appropriate,
2742 * before we free the context associated with the requests.
2743 */
2744 while (!list_empty(&ring->active_list)) {
2745 struct drm_i915_gem_object *obj;
2746
2747 obj = list_first_entry(&ring->active_list,
2748 struct drm_i915_gem_object,
2749 ring_list);
2750
John Harrison1b5a4332014-11-24 18:49:42 +00002751 if (!i915_gem_request_completed(obj->last_read_req, true))
Chris Wilsone9103032014-01-07 11:45:14 +00002752 break;
2753
2754 i915_gem_object_move_to_inactive(obj);
2755 }
2756
2757
Zou Nan hai852835f2010-05-21 09:08:56 +08002758 while (!list_empty(&ring->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002759 struct drm_i915_gem_request *request;
Oscar Mateo48e29f52014-07-24 17:04:29 +01002760 struct intel_ringbuffer *ringbuf;
Eric Anholt673a3942008-07-30 12:06:12 -07002761
Zou Nan hai852835f2010-05-21 09:08:56 +08002762 request = list_first_entry(&ring->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07002763 struct drm_i915_gem_request,
2764 list);
Eric Anholt673a3942008-07-30 12:06:12 -07002765
John Harrison1b5a4332014-11-24 18:49:42 +00002766 if (!i915_gem_request_completed(request, true))
Eric Anholt673a3942008-07-30 12:06:12 -07002767 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002768
John Harrison74328ee2014-11-24 18:49:38 +00002769 trace_i915_gem_request_retire(request);
Oscar Mateo48e29f52014-07-24 17:04:29 +01002770
2771 /* This is one of the few common intersection points
2772 * between legacy ringbuffer submission and execlists:
2773 * we need to tell them apart in order to find the correct
2774 * ringbuffer to which the request belongs to.
2775 */
2776 if (i915.enable_execlists) {
2777 struct intel_context *ctx = request->ctx;
2778 ringbuf = ctx->engine[ring->id].ringbuf;
2779 } else
2780 ringbuf = ring->buffer;
2781
Chris Wilsona71d8d92012-02-15 11:25:36 +00002782 /* We know the GPU must have read the request to have
2783 * sent us the seqno + interrupt, so use the position
2784 * of tail of the request to update the last known position
2785 * of the GPU head.
2786 */
Oscar Mateo48e29f52014-07-24 17:04:29 +01002787 ringbuf->last_retired_head = request->tail;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002788
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002789 i915_gem_free_request(request);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002790 }
2791
John Harrison581c26e82014-11-24 18:49:39 +00002792 if (unlikely(ring->trace_irq_req &&
2793 i915_gem_request_completed(ring->trace_irq_req, true))) {
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002794 ring->irq_put(ring);
John Harrison581c26e82014-11-24 18:49:39 +00002795 i915_gem_request_assign(&ring->trace_irq_req, NULL);
Chris Wilson9d34e5d2009-09-24 05:26:06 +01002796 }
Chris Wilson23bc5982010-09-29 16:10:57 +01002797
Chris Wilsondb53a302011-02-03 11:57:46 +00002798 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002799}
2800
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002801bool
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002802i915_gem_retire_requests(struct drm_device *dev)
2803{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03002804 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002805 struct intel_engine_cs *ring;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002806 bool idle = true;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002807 int i;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002808
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002809 for_each_ring(ring, dev_priv, i) {
Chris Wilsonb4519512012-05-11 14:29:30 +01002810 i915_gem_retire_requests_ring(ring);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002811 idle &= list_empty(&ring->request_list);
Thomas Danielc86ee3a92014-11-13 10:27:05 +00002812 if (i915.enable_execlists) {
2813 unsigned long flags;
2814
2815 spin_lock_irqsave(&ring->execlist_lock, flags);
2816 idle &= list_empty(&ring->execlist_queue);
2817 spin_unlock_irqrestore(&ring->execlist_lock, flags);
2818
2819 intel_execlists_retire_requests(ring);
2820 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002821 }
2822
2823 if (idle)
2824 mod_delayed_work(dev_priv->wq,
2825 &dev_priv->mm.idle_work,
2826 msecs_to_jiffies(100));
2827
2828 return idle;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002829}
2830
Daniel Vetter75ef9da2010-08-21 00:25:16 +02002831static void
Eric Anholt673a3942008-07-30 12:06:12 -07002832i915_gem_retire_work_handler(struct work_struct *work)
2833{
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002834 struct drm_i915_private *dev_priv =
2835 container_of(work, typeof(*dev_priv), mm.retire_work.work);
2836 struct drm_device *dev = dev_priv->dev;
Chris Wilson0a587052011-01-09 21:05:44 +00002837 bool idle;
Eric Anholt673a3942008-07-30 12:06:12 -07002838
Chris Wilson891b48c2010-09-29 12:26:37 +01002839 /* Come back later if the device is busy... */
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002840 idle = false;
2841 if (mutex_trylock(&dev->struct_mutex)) {
2842 idle = i915_gem_retire_requests(dev);
2843 mutex_unlock(&dev->struct_mutex);
2844 }
2845 if (!idle)
Chris Wilsonbcb45082012-10-05 17:02:57 +01002846 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work,
2847 round_jiffies_up_relative(HZ));
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002848}
Chris Wilson891b48c2010-09-29 12:26:37 +01002849
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002850static void
2851i915_gem_idle_work_handler(struct work_struct *work)
2852{
2853 struct drm_i915_private *dev_priv =
2854 container_of(work, typeof(*dev_priv), mm.idle_work.work);
Zou Nan haid1b851f2010-05-21 09:08:57 +08002855
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002856 intel_mark_idle(dev_priv->dev);
Eric Anholt673a3942008-07-30 12:06:12 -07002857}
2858
Ben Widawsky5816d642012-04-11 11:18:19 -07002859/**
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002860 * Ensures that an object will eventually get non-busy by flushing any required
2861 * write domains, emitting any outstanding lazy request and retiring and
2862 * completed requests.
2863 */
2864static int
2865i915_gem_object_flush_active(struct drm_i915_gem_object *obj)
2866{
John Harrison41c52412014-11-24 18:49:43 +00002867 struct intel_engine_cs *ring;
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002868 int ret;
2869
2870 if (obj->active) {
John Harrison41c52412014-11-24 18:49:43 +00002871 ring = i915_gem_request_get_ring(obj->last_read_req);
2872
John Harrisonb6660d52014-11-24 18:49:30 +00002873 ret = i915_gem_check_olr(obj->last_read_req);
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002874 if (ret)
2875 return ret;
2876
John Harrison41c52412014-11-24 18:49:43 +00002877 i915_gem_retire_requests_ring(ring);
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002878 }
2879
2880 return 0;
2881}
2882
2883/**
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002884 * i915_gem_wait_ioctl - implements DRM_IOCTL_I915_GEM_WAIT
2885 * @DRM_IOCTL_ARGS: standard ioctl arguments
2886 *
2887 * Returns 0 if successful, else an error is returned with the remaining time in
2888 * the timeout parameter.
2889 * -ETIME: object is still busy after timeout
2890 * -ERESTARTSYS: signal interrupted the wait
2891 * -ENONENT: object doesn't exist
2892 * Also possible, but rare:
2893 * -EAGAIN: GPU wedged
2894 * -ENOMEM: damn
2895 * -ENODEV: Internal IRQ fail
2896 * -E?: The add request failed
2897 *
2898 * The wait ioctl with a timeout of 0 reimplements the busy ioctl. With any
2899 * non-zero timeout parameter the wait ioctl will wait for the given number of
2900 * nanoseconds on an object becoming unbusy. Since the wait itself does so
2901 * without holding struct_mutex the object may become re-busied before this
2902 * function completes. A similar but shorter * race condition exists in the busy
2903 * ioctl
2904 */
2905int
2906i915_gem_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
2907{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03002908 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002909 struct drm_i915_gem_wait *args = data;
2910 struct drm_i915_gem_object *obj;
John Harrisonff865882014-11-24 18:49:28 +00002911 struct drm_i915_gem_request *req;
Daniel Vetterf69061b2012-12-06 09:01:42 +01002912 unsigned reset_counter;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002913 int ret = 0;
2914
Daniel Vetter11b5d512014-09-29 15:31:26 +02002915 if (args->flags != 0)
2916 return -EINVAL;
2917
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002918 ret = i915_mutex_lock_interruptible(dev);
2919 if (ret)
2920 return ret;
2921
2922 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->bo_handle));
2923 if (&obj->base == NULL) {
2924 mutex_unlock(&dev->struct_mutex);
2925 return -ENOENT;
2926 }
2927
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002928 /* Need to make sure the object gets inactive eventually. */
2929 ret = i915_gem_object_flush_active(obj);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002930 if (ret)
2931 goto out;
2932
John Harrison97b2a6a2014-11-24 18:49:26 +00002933 if (!obj->active || !obj->last_read_req)
2934 goto out;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002935
John Harrisonff865882014-11-24 18:49:28 +00002936 req = obj->last_read_req;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002937
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002938 /* Do this after OLR check to make sure we make forward progress polling
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00002939 * on this IOCTL with a timeout <=0 (like busy ioctl)
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002940 */
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00002941 if (args->timeout_ns <= 0) {
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002942 ret = -ETIME;
2943 goto out;
2944 }
2945
2946 drm_gem_object_unreference(&obj->base);
Daniel Vetterf69061b2012-12-06 09:01:42 +01002947 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
John Harrisonff865882014-11-24 18:49:28 +00002948 i915_gem_request_reference(req);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002949 mutex_unlock(&dev->struct_mutex);
2950
John Harrison9c654812014-11-24 18:49:35 +00002951 ret = __i915_wait_request(req, reset_counter, true, &args->timeout_ns,
2952 file->driver_priv);
John Harrisonff865882014-11-24 18:49:28 +00002953 mutex_lock(&dev->struct_mutex);
2954 i915_gem_request_unreference(req);
2955 mutex_unlock(&dev->struct_mutex);
2956 return ret;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002957
2958out:
2959 drm_gem_object_unreference(&obj->base);
2960 mutex_unlock(&dev->struct_mutex);
2961 return ret;
2962}
2963
2964/**
Ben Widawsky5816d642012-04-11 11:18:19 -07002965 * i915_gem_object_sync - sync an object to a ring.
2966 *
2967 * @obj: object which may be in use on another ring.
2968 * @to: ring we wish to use the object on. May be NULL.
2969 *
2970 * This code is meant to abstract object synchronization with the GPU.
2971 * Calling with NULL implies synchronizing the object with the CPU
2972 * rather than a particular GPU ring.
2973 *
2974 * Returns 0 if successful, else propagates up the lower layer error.
2975 */
Ben Widawsky2911a352012-04-05 14:47:36 -07002976int
2977i915_gem_object_sync(struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002978 struct intel_engine_cs *to)
Ben Widawsky2911a352012-04-05 14:47:36 -07002979{
John Harrison41c52412014-11-24 18:49:43 +00002980 struct intel_engine_cs *from;
Ben Widawsky2911a352012-04-05 14:47:36 -07002981 u32 seqno;
2982 int ret, idx;
2983
John Harrison41c52412014-11-24 18:49:43 +00002984 from = i915_gem_request_get_ring(obj->last_read_req);
2985
Ben Widawsky2911a352012-04-05 14:47:36 -07002986 if (from == NULL || to == from)
2987 return 0;
2988
Ben Widawsky5816d642012-04-11 11:18:19 -07002989 if (to == NULL || !i915_semaphore_is_enabled(obj->base.dev))
Chris Wilson0201f1e2012-07-20 12:41:01 +01002990 return i915_gem_object_wait_rendering(obj, false);
Ben Widawsky2911a352012-04-05 14:47:36 -07002991
2992 idx = intel_ring_sync_index(from, to);
2993
John Harrison97b2a6a2014-11-24 18:49:26 +00002994 seqno = i915_gem_request_get_seqno(obj->last_read_req);
Rodrigo Vividdd4dbc2014-06-30 09:51:11 -07002995 /* Optimization: Avoid semaphore sync when we are sure we already
2996 * waited for an object with higher seqno */
Ben Widawskyebc348b2014-04-29 14:52:28 -07002997 if (seqno <= from->semaphore.sync_seqno[idx])
Ben Widawsky2911a352012-04-05 14:47:36 -07002998 return 0;
2999
John Harrisonb6660d52014-11-24 18:49:30 +00003000 ret = i915_gem_check_olr(obj->last_read_req);
Ben Widawskyb4aca012012-04-25 20:50:12 -07003001 if (ret)
3002 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07003003
John Harrison74328ee2014-11-24 18:49:38 +00003004 trace_i915_gem_ring_sync_to(from, to, obj->last_read_req);
Ben Widawskyebc348b2014-04-29 14:52:28 -07003005 ret = to->semaphore.sync_to(to, from, seqno);
Ben Widawskye3a5a222012-04-11 11:18:20 -07003006 if (!ret)
John Harrison97b2a6a2014-11-24 18:49:26 +00003007 /* We use last_read_req because sync_to()
Mika Kuoppala7b01e262012-11-28 17:18:45 +02003008 * might have just caused seqno wrap under
3009 * the radar.
3010 */
John Harrison97b2a6a2014-11-24 18:49:26 +00003011 from->semaphore.sync_seqno[idx] =
3012 i915_gem_request_get_seqno(obj->last_read_req);
Ben Widawsky2911a352012-04-05 14:47:36 -07003013
Ben Widawskye3a5a222012-04-11 11:18:20 -07003014 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07003015}
3016
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01003017static void i915_gem_object_finish_gtt(struct drm_i915_gem_object *obj)
3018{
3019 u32 old_write_domain, old_read_domains;
3020
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01003021 /* Force a pagefault for domain tracking on next user access */
3022 i915_gem_release_mmap(obj);
3023
Keith Packardb97c3d92011-06-24 21:02:59 -07003024 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
3025 return;
3026
Chris Wilson97c809fd2012-10-09 19:24:38 +01003027 /* Wait for any direct GTT access to complete */
3028 mb();
3029
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01003030 old_read_domains = obj->base.read_domains;
3031 old_write_domain = obj->base.write_domain;
3032
3033 obj->base.read_domains &= ~I915_GEM_DOMAIN_GTT;
3034 obj->base.write_domain &= ~I915_GEM_DOMAIN_GTT;
3035
3036 trace_i915_gem_object_change_domain(obj,
3037 old_read_domains,
3038 old_write_domain);
3039}
3040
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003041int i915_vma_unbind(struct i915_vma *vma)
Eric Anholt673a3942008-07-30 12:06:12 -07003042{
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003043 struct drm_i915_gem_object *obj = vma->obj;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003044 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson43e28f02013-01-08 10:53:09 +00003045 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003046
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003047 if (list_empty(&vma->vma_link))
Eric Anholt673a3942008-07-30 12:06:12 -07003048 return 0;
3049
Daniel Vetter0ff501c2013-08-29 19:50:31 +02003050 if (!drm_mm_node_allocated(&vma->node)) {
3051 i915_gem_vma_destroy(vma);
Daniel Vetter0ff501c2013-08-29 19:50:31 +02003052 return 0;
3053 }
Ben Widawsky433544b2013-08-13 18:09:06 -07003054
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08003055 if (vma->pin_count)
Chris Wilson31d8d652012-05-24 19:11:20 +01003056 return -EBUSY;
Eric Anholt673a3942008-07-30 12:06:12 -07003057
Chris Wilsonc4670ad2012-08-20 10:23:27 +01003058 BUG_ON(obj->pages == NULL);
3059
Chris Wilsona8198ee2011-04-13 22:04:09 +01003060 ret = i915_gem_object_finish_gpu(obj);
Chris Wilson1488fc02012-04-24 15:47:31 +01003061 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07003062 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01003063 /* Continue on if we fail due to EIO, the GPU is hung so we
3064 * should be safe and we need to cleanup or else we might
3065 * cause memory corruption through use-after-free.
3066 */
Chris Wilsona8198ee2011-04-13 22:04:09 +01003067
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003068 if (i915_is_ggtt(vma->vm) &&
3069 vma->ggtt_view.type == I915_GGTT_VIEW_NORMAL) {
Daniel Vetter8b1bc9b2014-02-14 14:06:07 +01003070 i915_gem_object_finish_gtt(obj);
Chris Wilsona8198ee2011-04-13 22:04:09 +01003071
Daniel Vetter8b1bc9b2014-02-14 14:06:07 +01003072 /* release the fence reg _after_ flushing */
3073 ret = i915_gem_object_put_fence(obj);
3074 if (ret)
3075 return ret;
3076 }
Daniel Vetter96b47b62009-12-15 17:50:00 +01003077
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003078 trace_i915_vma_unbind(vma);
Chris Wilsondb53a302011-02-03 11:57:46 +00003079
Ben Widawsky6f65e292013-12-06 14:10:56 -08003080 vma->unbind_vma(vma);
3081
Chris Wilson64bf9302014-02-25 14:23:28 +00003082 list_del_init(&vma->mm_list);
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003083 if (i915_is_ggtt(vma->vm)) {
3084 if (vma->ggtt_view.type == I915_GGTT_VIEW_NORMAL) {
3085 obj->map_and_fenceable = false;
3086 } else if (vma->ggtt_view.pages) {
3087 sg_free_table(vma->ggtt_view.pages);
3088 kfree(vma->ggtt_view.pages);
3089 vma->ggtt_view.pages = NULL;
3090 }
3091 }
Eric Anholt673a3942008-07-30 12:06:12 -07003092
Ben Widawsky2f633152013-07-17 12:19:03 -07003093 drm_mm_remove_node(&vma->node);
3094 i915_gem_vma_destroy(vma);
3095
3096 /* Since the unbound list is global, only move to that list if
Daniel Vetterb93dab62013-08-26 11:23:47 +02003097 * no more VMAs exist. */
Armin Reese9490edb2014-07-11 10:20:07 -07003098 if (list_empty(&obj->vma_list)) {
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003099 /* Throw away the active reference before
3100 * moving to the unbound list. */
3101 i915_gem_object_retire(obj);
3102
Armin Reese9490edb2014-07-11 10:20:07 -07003103 i915_gem_gtt_finish_object(obj);
Ben Widawsky2f633152013-07-17 12:19:03 -07003104 list_move_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Armin Reese9490edb2014-07-11 10:20:07 -07003105 }
Eric Anholt673a3942008-07-30 12:06:12 -07003106
Chris Wilson70903c32013-12-04 09:59:09 +00003107 /* And finally now the object is completely decoupled from this vma,
3108 * we can drop its hold on the backing storage and allow it to be
3109 * reaped by the shrinker.
3110 */
3111 i915_gem_object_unpin_pages(obj);
3112
Chris Wilson88241782011-01-07 17:09:48 +00003113 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00003114}
3115
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07003116int i915_gpu_idle(struct drm_device *dev)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003117{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003118 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003119 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003120 int ret, i;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003121
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003122 /* Flush everything onto the inactive list. */
Chris Wilsonb4519512012-05-11 14:29:30 +01003123 for_each_ring(ring, dev_priv, i) {
Thomas Danielecdb5fd2014-08-20 16:29:24 +01003124 if (!i915.enable_execlists) {
3125 ret = i915_switch_context(ring, ring->default_context);
3126 if (ret)
3127 return ret;
3128 }
Ben Widawskyb6c74882012-08-14 14:35:14 -07003129
Chris Wilson3e960502012-11-27 16:22:54 +00003130 ret = intel_ring_idle(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003131 if (ret)
3132 return ret;
3133 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003134
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01003135 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003136}
3137
Chris Wilson9ce079e2012-04-17 15:31:30 +01003138static void i965_write_fence_reg(struct drm_device *dev, int reg,
3139 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003140{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003141 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak56c844e2013-01-07 21:47:34 +02003142 int fence_reg;
3143 int fence_pitch_shift;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003144
Imre Deak56c844e2013-01-07 21:47:34 +02003145 if (INTEL_INFO(dev)->gen >= 6) {
3146 fence_reg = FENCE_REG_SANDYBRIDGE_0;
3147 fence_pitch_shift = SANDYBRIDGE_FENCE_PITCH_SHIFT;
3148 } else {
3149 fence_reg = FENCE_REG_965_0;
3150 fence_pitch_shift = I965_FENCE_PITCH_SHIFT;
3151 }
3152
Chris Wilsond18b9612013-07-10 13:36:23 +01003153 fence_reg += reg * 8;
3154
3155 /* To w/a incoherency with non-atomic 64-bit register updates,
3156 * we split the 64-bit update into two 32-bit writes. In order
3157 * for a partial fence not to be evaluated between writes, we
3158 * precede the update with write to turn off the fence register,
3159 * and only enable the fence as the last step.
3160 *
3161 * For extra levels of paranoia, we make sure each step lands
3162 * before applying the next step.
3163 */
3164 I915_WRITE(fence_reg, 0);
3165 POSTING_READ(fence_reg);
3166
Chris Wilson9ce079e2012-04-17 15:31:30 +01003167 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003168 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilsond18b9612013-07-10 13:36:23 +01003169 uint64_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003170
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003171 val = (uint64_t)((i915_gem_obj_ggtt_offset(obj) + size - 4096) &
Chris Wilson9ce079e2012-04-17 15:31:30 +01003172 0xfffff000) << 32;
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003173 val |= i915_gem_obj_ggtt_offset(obj) & 0xfffff000;
Imre Deak56c844e2013-01-07 21:47:34 +02003174 val |= (uint64_t)((obj->stride / 128) - 1) << fence_pitch_shift;
Chris Wilson9ce079e2012-04-17 15:31:30 +01003175 if (obj->tiling_mode == I915_TILING_Y)
3176 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
3177 val |= I965_FENCE_REG_VALID;
Daniel Vetterc6642782010-11-12 13:46:18 +00003178
Chris Wilsond18b9612013-07-10 13:36:23 +01003179 I915_WRITE(fence_reg + 4, val >> 32);
3180 POSTING_READ(fence_reg + 4);
3181
3182 I915_WRITE(fence_reg + 0, val);
3183 POSTING_READ(fence_reg);
3184 } else {
3185 I915_WRITE(fence_reg + 4, 0);
3186 POSTING_READ(fence_reg + 4);
3187 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08003188}
3189
Chris Wilson9ce079e2012-04-17 15:31:30 +01003190static void i915_write_fence_reg(struct drm_device *dev, int reg,
3191 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003192{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003193 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9ce079e2012-04-17 15:31:30 +01003194 u32 val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003195
Chris Wilson9ce079e2012-04-17 15:31:30 +01003196 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003197 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003198 int pitch_val;
3199 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003200
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003201 WARN((i915_gem_obj_ggtt_offset(obj) & ~I915_FENCE_START_MASK) ||
Chris Wilson9ce079e2012-04-17 15:31:30 +01003202 (size & -size) != size ||
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003203 (i915_gem_obj_ggtt_offset(obj) & (size - 1)),
3204 "object 0x%08lx [fenceable? %d] not 1M or pot-size (0x%08x) aligned\n",
3205 i915_gem_obj_ggtt_offset(obj), obj->map_and_fenceable, size);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003206
3207 if (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev))
3208 tile_width = 128;
3209 else
3210 tile_width = 512;
3211
3212 /* Note: pitch better be a power of two tile widths */
3213 pitch_val = obj->stride / tile_width;
3214 pitch_val = ffs(pitch_val) - 1;
3215
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003216 val = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003217 if (obj->tiling_mode == I915_TILING_Y)
3218 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
3219 val |= I915_FENCE_SIZE_BITS(size);
3220 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
3221 val |= I830_FENCE_REG_VALID;
3222 } else
3223 val = 0;
3224
3225 if (reg < 8)
3226 reg = FENCE_REG_830_0 + reg * 4;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003227 else
Chris Wilson9ce079e2012-04-17 15:31:30 +01003228 reg = FENCE_REG_945_8 + (reg - 8) * 4;
Jesse Barnes0f973f22009-01-26 17:10:45 -08003229
Chris Wilson9ce079e2012-04-17 15:31:30 +01003230 I915_WRITE(reg, val);
3231 POSTING_READ(reg);
Jesse Barnesde151cf2008-11-12 10:03:55 -08003232}
3233
Chris Wilson9ce079e2012-04-17 15:31:30 +01003234static void i830_write_fence_reg(struct drm_device *dev, int reg,
3235 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003236{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003237 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003238 uint32_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003239
Chris Wilson9ce079e2012-04-17 15:31:30 +01003240 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003241 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003242 uint32_t pitch_val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003243
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003244 WARN((i915_gem_obj_ggtt_offset(obj) & ~I830_FENCE_START_MASK) ||
Chris Wilson9ce079e2012-04-17 15:31:30 +01003245 (size & -size) != size ||
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003246 (i915_gem_obj_ggtt_offset(obj) & (size - 1)),
3247 "object 0x%08lx not 512K or pot-size 0x%08x aligned\n",
3248 i915_gem_obj_ggtt_offset(obj), size);
Eric Anholte76a16d2009-05-26 17:44:56 -07003249
Chris Wilson9ce079e2012-04-17 15:31:30 +01003250 pitch_val = obj->stride / 128;
3251 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003252
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003253 val = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003254 if (obj->tiling_mode == I915_TILING_Y)
3255 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
3256 val |= I830_FENCE_SIZE_BITS(size);
3257 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
3258 val |= I830_FENCE_REG_VALID;
3259 } else
3260 val = 0;
Daniel Vetterc6642782010-11-12 13:46:18 +00003261
Chris Wilson9ce079e2012-04-17 15:31:30 +01003262 I915_WRITE(FENCE_REG_830_0 + reg * 4, val);
3263 POSTING_READ(FENCE_REG_830_0 + reg * 4);
3264}
3265
Chris Wilsond0a57782012-10-09 19:24:37 +01003266inline static bool i915_gem_object_needs_mb(struct drm_i915_gem_object *obj)
3267{
3268 return obj && obj->base.read_domains & I915_GEM_DOMAIN_GTT;
3269}
3270
Chris Wilson9ce079e2012-04-17 15:31:30 +01003271static void i915_gem_write_fence(struct drm_device *dev, int reg,
3272 struct drm_i915_gem_object *obj)
3273{
Chris Wilsond0a57782012-10-09 19:24:37 +01003274 struct drm_i915_private *dev_priv = dev->dev_private;
3275
3276 /* Ensure that all CPU reads are completed before installing a fence
3277 * and all writes before removing the fence.
3278 */
3279 if (i915_gem_object_needs_mb(dev_priv->fence_regs[reg].obj))
3280 mb();
3281
Daniel Vetter94a335d2013-07-17 14:51:28 +02003282 WARN(obj && (!obj->stride || !obj->tiling_mode),
3283 "bogus fence setup with stride: 0x%x, tiling mode: %i\n",
3284 obj->stride, obj->tiling_mode);
3285
Rodrigo Vivice38ab02014-12-04 06:48:10 -08003286 if (IS_GEN2(dev))
3287 i830_write_fence_reg(dev, reg, obj);
3288 else if (IS_GEN3(dev))
3289 i915_write_fence_reg(dev, reg, obj);
3290 else if (INTEL_INFO(dev)->gen >= 4)
3291 i965_write_fence_reg(dev, reg, obj);
Chris Wilsond0a57782012-10-09 19:24:37 +01003292
3293 /* And similarly be paranoid that no direct access to this region
3294 * is reordered to before the fence is installed.
3295 */
3296 if (i915_gem_object_needs_mb(obj))
3297 mb();
Jesse Barnesde151cf2008-11-12 10:03:55 -08003298}
3299
Chris Wilson61050802012-04-17 15:31:31 +01003300static inline int fence_number(struct drm_i915_private *dev_priv,
3301 struct drm_i915_fence_reg *fence)
3302{
3303 return fence - dev_priv->fence_regs;
3304}
3305
3306static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
3307 struct drm_i915_fence_reg *fence,
3308 bool enable)
3309{
Chris Wilson2dc8aae2013-05-22 17:08:06 +01003310 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson46a0b632013-07-10 13:36:24 +01003311 int reg = fence_number(dev_priv, fence);
Chris Wilson61050802012-04-17 15:31:31 +01003312
Chris Wilson46a0b632013-07-10 13:36:24 +01003313 i915_gem_write_fence(obj->base.dev, reg, enable ? obj : NULL);
Chris Wilson61050802012-04-17 15:31:31 +01003314
3315 if (enable) {
Chris Wilson46a0b632013-07-10 13:36:24 +01003316 obj->fence_reg = reg;
Chris Wilson61050802012-04-17 15:31:31 +01003317 fence->obj = obj;
3318 list_move_tail(&fence->lru_list, &dev_priv->mm.fence_list);
3319 } else {
3320 obj->fence_reg = I915_FENCE_REG_NONE;
3321 fence->obj = NULL;
3322 list_del_init(&fence->lru_list);
3323 }
Daniel Vetter94a335d2013-07-17 14:51:28 +02003324 obj->fence_dirty = false;
Chris Wilson61050802012-04-17 15:31:31 +01003325}
3326
Chris Wilsond9e86c02010-11-10 16:40:20 +00003327static int
Chris Wilsond0a57782012-10-09 19:24:37 +01003328i915_gem_object_wait_fence(struct drm_i915_gem_object *obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003329{
John Harrison97b2a6a2014-11-24 18:49:26 +00003330 if (obj->last_fenced_req) {
Daniel Vettera4b3a572014-11-26 14:17:05 +01003331 int ret = i915_wait_request(obj->last_fenced_req);
Chris Wilson18991842012-04-17 15:31:29 +01003332 if (ret)
3333 return ret;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003334
John Harrison97b2a6a2014-11-24 18:49:26 +00003335 i915_gem_request_assign(&obj->last_fenced_req, NULL);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003336 }
3337
3338 return 0;
3339}
3340
3341int
3342i915_gem_object_put_fence(struct drm_i915_gem_object *obj)
3343{
Chris Wilson61050802012-04-17 15:31:31 +01003344 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003345 struct drm_i915_fence_reg *fence;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003346 int ret;
3347
Chris Wilsond0a57782012-10-09 19:24:37 +01003348 ret = i915_gem_object_wait_fence(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003349 if (ret)
3350 return ret;
3351
Chris Wilson61050802012-04-17 15:31:31 +01003352 if (obj->fence_reg == I915_FENCE_REG_NONE)
3353 return 0;
Chris Wilson1690e1e2011-12-14 13:57:08 +01003354
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003355 fence = &dev_priv->fence_regs[obj->fence_reg];
3356
Daniel Vetteraff10b302014-02-14 14:06:05 +01003357 if (WARN_ON(fence->pin_count))
3358 return -EBUSY;
3359
Chris Wilson61050802012-04-17 15:31:31 +01003360 i915_gem_object_fence_lost(obj);
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003361 i915_gem_object_update_fence(obj, fence, false);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003362
3363 return 0;
3364}
3365
3366static struct drm_i915_fence_reg *
Chris Wilsona360bb12012-04-17 15:31:25 +01003367i915_find_fence_reg(struct drm_device *dev)
Daniel Vetterae3db242010-02-19 11:51:58 +01003368{
Daniel Vetterae3db242010-02-19 11:51:58 +01003369 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson8fe301a2012-04-17 15:31:28 +01003370 struct drm_i915_fence_reg *reg, *avail;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003371 int i;
Daniel Vetterae3db242010-02-19 11:51:58 +01003372
3373 /* First try to find a free reg */
Chris Wilsond9e86c02010-11-10 16:40:20 +00003374 avail = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01003375 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
3376 reg = &dev_priv->fence_regs[i];
3377 if (!reg->obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003378 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003379
Chris Wilson1690e1e2011-12-14 13:57:08 +01003380 if (!reg->pin_count)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003381 avail = reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003382 }
3383
Chris Wilsond9e86c02010-11-10 16:40:20 +00003384 if (avail == NULL)
Chris Wilson5dce5b932014-01-20 10:17:36 +00003385 goto deadlock;
Daniel Vetterae3db242010-02-19 11:51:58 +01003386
3387 /* None available, try to steal one or wait for a user to finish */
Chris Wilsond9e86c02010-11-10 16:40:20 +00003388 list_for_each_entry(reg, &dev_priv->mm.fence_list, lru_list) {
Chris Wilson1690e1e2011-12-14 13:57:08 +01003389 if (reg->pin_count)
Daniel Vetterae3db242010-02-19 11:51:58 +01003390 continue;
3391
Chris Wilson8fe301a2012-04-17 15:31:28 +01003392 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003393 }
3394
Chris Wilson5dce5b932014-01-20 10:17:36 +00003395deadlock:
3396 /* Wait for completion of pending flips which consume fences */
3397 if (intel_has_pending_fb_unpin(dev))
3398 return ERR_PTR(-EAGAIN);
3399
3400 return ERR_PTR(-EDEADLK);
Daniel Vetterae3db242010-02-19 11:51:58 +01003401}
3402
Jesse Barnesde151cf2008-11-12 10:03:55 -08003403/**
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003404 * i915_gem_object_get_fence - set up fencing for an object
Jesse Barnesde151cf2008-11-12 10:03:55 -08003405 * @obj: object to map through a fence reg
3406 *
3407 * When mapping objects through the GTT, userspace wants to be able to write
3408 * to them without having to worry about swizzling if the object is tiled.
Jesse Barnesde151cf2008-11-12 10:03:55 -08003409 * This function walks the fence regs looking for a free one for @obj,
3410 * stealing one if it can't find any.
3411 *
3412 * It then sets up the reg based on the object's properties: address, pitch
3413 * and tiling format.
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003414 *
3415 * For an untiled surface, this removes any existing fence.
Jesse Barnesde151cf2008-11-12 10:03:55 -08003416 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01003417int
Chris Wilson06d98132012-04-17 15:31:24 +01003418i915_gem_object_get_fence(struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003419{
Chris Wilson05394f32010-11-08 19:18:58 +00003420 struct drm_device *dev = obj->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08003421 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson14415742012-04-17 15:31:33 +01003422 bool enable = obj->tiling_mode != I915_TILING_NONE;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003423 struct drm_i915_fence_reg *reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003424 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003425
Chris Wilson14415742012-04-17 15:31:33 +01003426 /* Have we updated the tiling parameters upon the object and so
3427 * will need to serialise the write to the associated fence register?
3428 */
Chris Wilson5d82e3e2012-04-21 16:23:23 +01003429 if (obj->fence_dirty) {
Chris Wilsond0a57782012-10-09 19:24:37 +01003430 ret = i915_gem_object_wait_fence(obj);
Chris Wilson14415742012-04-17 15:31:33 +01003431 if (ret)
3432 return ret;
3433 }
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003434
Chris Wilsond9e86c02010-11-10 16:40:20 +00003435 /* Just update our place in the LRU if our fence is getting reused. */
Chris Wilson05394f32010-11-08 19:18:58 +00003436 if (obj->fence_reg != I915_FENCE_REG_NONE) {
3437 reg = &dev_priv->fence_regs[obj->fence_reg];
Chris Wilson5d82e3e2012-04-21 16:23:23 +01003438 if (!obj->fence_dirty) {
Chris Wilson14415742012-04-17 15:31:33 +01003439 list_move_tail(&reg->lru_list,
3440 &dev_priv->mm.fence_list);
3441 return 0;
3442 }
3443 } else if (enable) {
Chris Wilsone6a84462014-08-11 12:00:12 +02003444 if (WARN_ON(!obj->map_and_fenceable))
3445 return -EINVAL;
3446
Chris Wilson14415742012-04-17 15:31:33 +01003447 reg = i915_find_fence_reg(dev);
Chris Wilson5dce5b932014-01-20 10:17:36 +00003448 if (IS_ERR(reg))
3449 return PTR_ERR(reg);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003450
Chris Wilson14415742012-04-17 15:31:33 +01003451 if (reg->obj) {
3452 struct drm_i915_gem_object *old = reg->obj;
3453
Chris Wilsond0a57782012-10-09 19:24:37 +01003454 ret = i915_gem_object_wait_fence(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00003455 if (ret)
3456 return ret;
3457
Chris Wilson14415742012-04-17 15:31:33 +01003458 i915_gem_object_fence_lost(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00003459 }
Chris Wilson14415742012-04-17 15:31:33 +01003460 } else
Eric Anholta09ba7f2009-08-29 12:49:51 -07003461 return 0;
Eric Anholta09ba7f2009-08-29 12:49:51 -07003462
Chris Wilson14415742012-04-17 15:31:33 +01003463 i915_gem_object_update_fence(obj, reg, enable);
Chris Wilson14415742012-04-17 15:31:33 +01003464
Chris Wilson9ce079e2012-04-17 15:31:30 +01003465 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003466}
3467
Chris Wilson4144f9b2014-09-11 08:43:48 +01003468static bool i915_gem_valid_gtt_space(struct i915_vma *vma,
Chris Wilson42d6ab42012-07-26 11:49:32 +01003469 unsigned long cache_level)
3470{
Chris Wilson4144f9b2014-09-11 08:43:48 +01003471 struct drm_mm_node *gtt_space = &vma->node;
Chris Wilson42d6ab42012-07-26 11:49:32 +01003472 struct drm_mm_node *other;
3473
Chris Wilson4144f9b2014-09-11 08:43:48 +01003474 /*
3475 * On some machines we have to be careful when putting differing types
3476 * of snoopable memory together to avoid the prefetcher crossing memory
3477 * domains and dying. During vm initialisation, we decide whether or not
3478 * these constraints apply and set the drm_mm.color_adjust
3479 * appropriately.
Chris Wilson42d6ab42012-07-26 11:49:32 +01003480 */
Chris Wilson4144f9b2014-09-11 08:43:48 +01003481 if (vma->vm->mm.color_adjust == NULL)
Chris Wilson42d6ab42012-07-26 11:49:32 +01003482 return true;
3483
Ben Widawskyc6cfb322013-07-05 14:41:06 -07003484 if (!drm_mm_node_allocated(gtt_space))
Chris Wilson42d6ab42012-07-26 11:49:32 +01003485 return true;
3486
3487 if (list_empty(&gtt_space->node_list))
3488 return true;
3489
3490 other = list_entry(gtt_space->node_list.prev, struct drm_mm_node, node_list);
3491 if (other->allocated && !other->hole_follows && other->color != cache_level)
3492 return false;
3493
3494 other = list_entry(gtt_space->node_list.next, struct drm_mm_node, node_list);
3495 if (other->allocated && !gtt_space->hole_follows && other->color != cache_level)
3496 return false;
3497
3498 return true;
3499}
3500
Jesse Barnesde151cf2008-11-12 10:03:55 -08003501/**
Eric Anholt673a3942008-07-30 12:06:12 -07003502 * Finds free space in the GTT aperture and binds the object there.
3503 */
Daniel Vetter262de142014-02-14 14:01:20 +01003504static struct i915_vma *
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003505i915_gem_object_bind_to_vm(struct drm_i915_gem_object *obj,
3506 struct i915_address_space *vm,
3507 unsigned alignment,
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003508 uint64_t flags,
3509 const struct i915_ggtt_view *view)
Eric Anholt673a3942008-07-30 12:06:12 -07003510{
Chris Wilson05394f32010-11-08 19:18:58 +00003511 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003512 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter5e783302010-11-14 22:32:36 +01003513 u32 size, fence_size, fence_alignment, unfenced_alignment;
Chris Wilsond23db882014-05-23 08:48:08 +02003514 unsigned long start =
3515 flags & PIN_OFFSET_BIAS ? flags & PIN_OFFSET_MASK : 0;
3516 unsigned long end =
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003517 flags & PIN_MAPPABLE ? dev_priv->gtt.mappable_end : vm->total;
Ben Widawsky2f633152013-07-17 12:19:03 -07003518 struct i915_vma *vma;
Chris Wilson07f73f62009-09-14 16:50:30 +01003519 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003520
Chris Wilsone28f8712011-07-18 13:11:49 -07003521 fence_size = i915_gem_get_gtt_size(dev,
3522 obj->base.size,
3523 obj->tiling_mode);
3524 fence_alignment = i915_gem_get_gtt_alignment(dev,
3525 obj->base.size,
Imre Deakd8651102013-01-07 21:47:33 +02003526 obj->tiling_mode, true);
Chris Wilsone28f8712011-07-18 13:11:49 -07003527 unfenced_alignment =
Imre Deakd8651102013-01-07 21:47:33 +02003528 i915_gem_get_gtt_alignment(dev,
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003529 obj->base.size,
3530 obj->tiling_mode, false);
Chris Wilsona00b10c2010-09-24 21:15:47 +01003531
Eric Anholt673a3942008-07-30 12:06:12 -07003532 if (alignment == 0)
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003533 alignment = flags & PIN_MAPPABLE ? fence_alignment :
Daniel Vetter5e783302010-11-14 22:32:36 +01003534 unfenced_alignment;
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003535 if (flags & PIN_MAPPABLE && alignment & (fence_alignment - 1)) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00003536 DRM_DEBUG("Invalid object alignment requested %u\n", alignment);
Daniel Vetter262de142014-02-14 14:01:20 +01003537 return ERR_PTR(-EINVAL);
Eric Anholt673a3942008-07-30 12:06:12 -07003538 }
3539
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003540 size = flags & PIN_MAPPABLE ? fence_size : obj->base.size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01003541
Chris Wilson654fc602010-05-27 13:18:21 +01003542 /* If the object is bigger than the entire aperture, reject it early
3543 * before evicting everything in a vain attempt to find space.
3544 */
Chris Wilsond23db882014-05-23 08:48:08 +02003545 if (obj->base.size > end) {
3546 DRM_DEBUG("Attempting to bind an object larger than the aperture: object=%zd > %s aperture=%lu\n",
Chris Wilsona36689c2013-05-21 16:58:49 +01003547 obj->base.size,
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003548 flags & PIN_MAPPABLE ? "mappable" : "total",
Chris Wilsond23db882014-05-23 08:48:08 +02003549 end);
Daniel Vetter262de142014-02-14 14:01:20 +01003550 return ERR_PTR(-E2BIG);
Chris Wilson654fc602010-05-27 13:18:21 +01003551 }
3552
Chris Wilson37e680a2012-06-07 15:38:42 +01003553 ret = i915_gem_object_get_pages(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02003554 if (ret)
Daniel Vetter262de142014-02-14 14:01:20 +01003555 return ERR_PTR(ret);
Chris Wilson6c085a72012-08-20 11:40:46 +02003556
Chris Wilsonfbdda6f2012-11-20 10:45:16 +00003557 i915_gem_object_pin_pages(obj);
3558
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003559 vma = i915_gem_obj_lookup_or_create_vma_view(obj, vm, view);
Daniel Vetter262de142014-02-14 14:01:20 +01003560 if (IS_ERR(vma))
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003561 goto err_unpin;
Ben Widawsky2f633152013-07-17 12:19:03 -07003562
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003563search_free:
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003564 ret = drm_mm_insert_node_in_range_generic(&vm->mm, &vma->node,
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003565 size, alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02003566 obj->cache_level,
3567 start, end,
Lauri Kasanen62347f92014-04-02 20:03:57 +03003568 DRM_MM_SEARCH_DEFAULT,
3569 DRM_MM_CREATE_DEFAULT);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003570 if (ret) {
Ben Widawskyf6cd1f12013-07-31 17:00:11 -07003571 ret = i915_gem_evict_something(dev, vm, size, alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02003572 obj->cache_level,
3573 start, end,
3574 flags);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003575 if (ret == 0)
3576 goto search_free;
Chris Wilson97311292009-09-21 00:22:34 +01003577
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003578 goto err_free_vma;
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003579 }
Chris Wilson4144f9b2014-09-11 08:43:48 +01003580 if (WARN_ON(!i915_gem_valid_gtt_space(vma, obj->cache_level))) {
Ben Widawsky2f633152013-07-17 12:19:03 -07003581 ret = -EINVAL;
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003582 goto err_remove_node;
Eric Anholt673a3942008-07-30 12:06:12 -07003583 }
3584
Daniel Vetter74163902012-02-15 23:50:21 +01003585 ret = i915_gem_gtt_prepare_object(obj);
Ben Widawsky2f633152013-07-17 12:19:03 -07003586 if (ret)
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003587 goto err_remove_node;
Eric Anholt673a3942008-07-30 12:06:12 -07003588
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003589 trace_i915_vma_bind(vma, flags);
3590 ret = i915_vma_bind(vma, obj->cache_level,
3591 flags & PIN_GLOBAL ? GLOBAL_BIND : 0);
3592 if (ret)
3593 goto err_finish_gtt;
3594
Ben Widawsky35c20a62013-05-31 11:28:48 -07003595 list_move_tail(&obj->global_list, &dev_priv->mm.bound_list);
Ben Widawskyca191b12013-07-31 17:00:14 -07003596 list_add_tail(&vma->mm_list, &vm->inactive_list);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01003597
Daniel Vetter262de142014-02-14 14:01:20 +01003598 return vma;
Ben Widawsky2f633152013-07-17 12:19:03 -07003599
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003600err_finish_gtt:
3601 i915_gem_gtt_finish_object(obj);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003602err_remove_node:
Dan Carpenter6286ef92013-07-19 08:46:27 +03003603 drm_mm_remove_node(&vma->node);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003604err_free_vma:
Ben Widawsky2f633152013-07-17 12:19:03 -07003605 i915_gem_vma_destroy(vma);
Daniel Vetter262de142014-02-14 14:01:20 +01003606 vma = ERR_PTR(ret);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003607err_unpin:
Ben Widawsky2f633152013-07-17 12:19:03 -07003608 i915_gem_object_unpin_pages(obj);
Daniel Vetter262de142014-02-14 14:01:20 +01003609 return vma;
Eric Anholt673a3942008-07-30 12:06:12 -07003610}
3611
Chris Wilson000433b2013-08-08 14:41:09 +01003612bool
Chris Wilson2c225692013-08-09 12:26:45 +01003613i915_gem_clflush_object(struct drm_i915_gem_object *obj,
3614 bool force)
Eric Anholt673a3942008-07-30 12:06:12 -07003615{
Eric Anholt673a3942008-07-30 12:06:12 -07003616 /* If we don't have a page list set up, then we're not pinned
3617 * to GPU, and we can ignore the cache flush because it'll happen
3618 * again at bind time.
3619 */
Chris Wilson05394f32010-11-08 19:18:58 +00003620 if (obj->pages == NULL)
Chris Wilson000433b2013-08-08 14:41:09 +01003621 return false;
Eric Anholt673a3942008-07-30 12:06:12 -07003622
Imre Deak769ce462013-02-13 21:56:05 +02003623 /*
3624 * Stolen memory is always coherent with the GPU as it is explicitly
3625 * marked as wc by the system, or the system is cache-coherent.
3626 */
Chris Wilson6a2c4232014-11-04 04:51:40 -08003627 if (obj->stolen || obj->phys_handle)
Chris Wilson000433b2013-08-08 14:41:09 +01003628 return false;
Imre Deak769ce462013-02-13 21:56:05 +02003629
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003630 /* If the GPU is snooping the contents of the CPU cache,
3631 * we do not need to manually clear the CPU cache lines. However,
3632 * the caches are only snooped when the render cache is
3633 * flushed/invalidated. As we always have to emit invalidations
3634 * and flushes when moving into and out of the RENDER domain, correct
3635 * snooping behaviour occurs naturally as the result of our domain
3636 * tracking.
3637 */
Chris Wilson2c225692013-08-09 12:26:45 +01003638 if (!force && cpu_cache_is_coherent(obj->base.dev, obj->cache_level))
Chris Wilson000433b2013-08-08 14:41:09 +01003639 return false;
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003640
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003641 trace_i915_gem_object_clflush(obj);
Chris Wilson9da3da62012-06-01 15:20:22 +01003642 drm_clflush_sg(obj->pages);
Chris Wilson000433b2013-08-08 14:41:09 +01003643
3644 return true;
Eric Anholte47c68e2008-11-14 13:35:19 -08003645}
3646
3647/** Flushes the GTT write domain for the object if it's dirty. */
3648static void
Chris Wilson05394f32010-11-08 19:18:58 +00003649i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003650{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003651 uint32_t old_write_domain;
3652
Chris Wilson05394f32010-11-08 19:18:58 +00003653 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08003654 return;
3655
Chris Wilson63256ec2011-01-04 18:42:07 +00003656 /* No actual flushing is required for the GTT write domain. Writes
Eric Anholte47c68e2008-11-14 13:35:19 -08003657 * to it immediately go to main memory as far as we know, so there's
3658 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00003659 *
3660 * However, we do have to enforce the order so that all writes through
3661 * the GTT land before any writes to the device, such as updates to
3662 * the GATT itself.
Eric Anholte47c68e2008-11-14 13:35:19 -08003663 */
Chris Wilson63256ec2011-01-04 18:42:07 +00003664 wmb();
3665
Chris Wilson05394f32010-11-08 19:18:58 +00003666 old_write_domain = obj->base.write_domain;
3667 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003668
Daniel Vetterf99d7062014-06-19 16:01:59 +02003669 intel_fb_obj_flush(obj, false);
3670
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003671 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003672 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003673 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003674}
3675
3676/** Flushes the CPU write domain for the object if it's dirty. */
3677static void
Chris Wilson2c225692013-08-09 12:26:45 +01003678i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj,
3679 bool force)
Eric Anholte47c68e2008-11-14 13:35:19 -08003680{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003681 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08003682
Chris Wilson05394f32010-11-08 19:18:58 +00003683 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08003684 return;
3685
Chris Wilson000433b2013-08-08 14:41:09 +01003686 if (i915_gem_clflush_object(obj, force))
3687 i915_gem_chipset_flush(obj->base.dev);
3688
Chris Wilson05394f32010-11-08 19:18:58 +00003689 old_write_domain = obj->base.write_domain;
3690 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003691
Daniel Vetterf99d7062014-06-19 16:01:59 +02003692 intel_fb_obj_flush(obj, false);
3693
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003694 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003695 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003696 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003697}
3698
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003699/**
3700 * Moves a single object to the GTT read, and possibly write domain.
3701 *
3702 * This function returns when the move is complete, including waiting on
3703 * flushes to occur.
3704 */
Jesse Barnes79e53942008-11-07 14:24:08 -08003705int
Chris Wilson20217462010-11-23 15:26:33 +00003706i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003707{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003708 uint32_t old_write_domain, old_read_domains;
Chris Wilson43566de2015-01-02 16:29:29 +05303709 struct i915_vma *vma;
Eric Anholte47c68e2008-11-14 13:35:19 -08003710 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003711
Chris Wilson8d7e3de2011-02-07 15:23:02 +00003712 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
3713 return 0;
3714
Chris Wilson0201f1e2012-07-20 12:41:01 +01003715 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00003716 if (ret)
3717 return ret;
3718
Chris Wilsonc8725f32014-03-17 12:21:55 +00003719 i915_gem_object_retire(obj);
Chris Wilson43566de2015-01-02 16:29:29 +05303720
3721 /* Flush and acquire obj->pages so that we are coherent through
3722 * direct access in memory with previous cached writes through
3723 * shmemfs and that our cache domain tracking remains valid.
3724 * For example, if the obj->filp was moved to swap without us
3725 * being notified and releasing the pages, we would mistakenly
3726 * continue to assume that the obj remained out of the CPU cached
3727 * domain.
3728 */
3729 ret = i915_gem_object_get_pages(obj);
3730 if (ret)
3731 return ret;
3732
Chris Wilson2c225692013-08-09 12:26:45 +01003733 i915_gem_object_flush_cpu_write_domain(obj, false);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003734
Chris Wilsond0a57782012-10-09 19:24:37 +01003735 /* Serialise direct access to this object with the barriers for
3736 * coherent writes from the GPU, by effectively invalidating the
3737 * GTT domain upon first access.
3738 */
3739 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
3740 mb();
3741
Chris Wilson05394f32010-11-08 19:18:58 +00003742 old_write_domain = obj->base.write_domain;
3743 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003744
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003745 /* It should now be out of any other write domains, and we can update
3746 * the domain values for our changes.
3747 */
Chris Wilson05394f32010-11-08 19:18:58 +00003748 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
3749 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08003750 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003751 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
3752 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
3753 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08003754 }
3755
Daniel Vetterf99d7062014-06-19 16:01:59 +02003756 if (write)
3757 intel_fb_obj_invalidate(obj, NULL);
3758
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003759 trace_i915_gem_object_change_domain(obj,
3760 old_read_domains,
3761 old_write_domain);
3762
Chris Wilson8325a092012-04-24 15:52:35 +01003763 /* And bump the LRU for this access */
Chris Wilson43566de2015-01-02 16:29:29 +05303764 vma = i915_gem_obj_to_ggtt(obj);
3765 if (vma && drm_mm_node_allocated(&vma->node) && !obj->active)
Chris Wilsondc8cd1e2014-08-09 17:37:22 +01003766 list_move_tail(&vma->mm_list,
Chris Wilson43566de2015-01-02 16:29:29 +05303767 &to_i915(obj->base.dev)->gtt.base.inactive_list);
Chris Wilson8325a092012-04-24 15:52:35 +01003768
Eric Anholte47c68e2008-11-14 13:35:19 -08003769 return 0;
3770}
3771
Chris Wilsone4ffd172011-04-04 09:44:39 +01003772int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
3773 enum i915_cache_level cache_level)
3774{
Daniel Vetter7bddb012012-02-09 17:15:47 +01003775 struct drm_device *dev = obj->base.dev;
Chris Wilsondf6f7832014-03-21 07:40:56 +00003776 struct i915_vma *vma, *next;
Chris Wilsone4ffd172011-04-04 09:44:39 +01003777 int ret;
3778
3779 if (obj->cache_level == cache_level)
3780 return 0;
3781
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08003782 if (i915_gem_obj_is_pinned(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003783 DRM_DEBUG("can not change the cache level of pinned objects\n");
3784 return -EBUSY;
3785 }
3786
Chris Wilsondf6f7832014-03-21 07:40:56 +00003787 list_for_each_entry_safe(vma, next, &obj->vma_list, vma_link) {
Chris Wilson4144f9b2014-09-11 08:43:48 +01003788 if (!i915_gem_valid_gtt_space(vma, cache_level)) {
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003789 ret = i915_vma_unbind(vma);
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003790 if (ret)
3791 return ret;
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003792 }
Chris Wilson42d6ab42012-07-26 11:49:32 +01003793 }
3794
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003795 if (i915_gem_obj_bound_any(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003796 ret = i915_gem_object_finish_gpu(obj);
3797 if (ret)
3798 return ret;
3799
3800 i915_gem_object_finish_gtt(obj);
3801
3802 /* Before SandyBridge, you could not use tiling or fence
3803 * registers with snooped memory, so relinquish any fences
3804 * currently pointing to our region in the aperture.
3805 */
Chris Wilson42d6ab42012-07-26 11:49:32 +01003806 if (INTEL_INFO(dev)->gen < 6) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003807 ret = i915_gem_object_put_fence(obj);
3808 if (ret)
3809 return ret;
3810 }
3811
Ben Widawsky6f65e292013-12-06 14:10:56 -08003812 list_for_each_entry(vma, &obj->vma_list, vma_link)
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00003813 if (drm_mm_node_allocated(&vma->node)) {
3814 ret = i915_vma_bind(vma, cache_level,
3815 vma->bound & GLOBAL_BIND);
3816 if (ret)
3817 return ret;
3818 }
Chris Wilsone4ffd172011-04-04 09:44:39 +01003819 }
3820
Chris Wilson2c225692013-08-09 12:26:45 +01003821 list_for_each_entry(vma, &obj->vma_list, vma_link)
3822 vma->node.color = cache_level;
3823 obj->cache_level = cache_level;
3824
3825 if (cpu_write_needs_clflush(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003826 u32 old_read_domains, old_write_domain;
3827
3828 /* If we're coming from LLC cached, then we haven't
3829 * actually been tracking whether the data is in the
3830 * CPU cache or not, since we only allow one bit set
3831 * in obj->write_domain and have been skipping the clflushes.
3832 * Just set it to the CPU cache for now.
3833 */
Chris Wilsonc8725f32014-03-17 12:21:55 +00003834 i915_gem_object_retire(obj);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003835 WARN_ON(obj->base.write_domain & ~I915_GEM_DOMAIN_CPU);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003836
3837 old_read_domains = obj->base.read_domains;
3838 old_write_domain = obj->base.write_domain;
3839
3840 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3841 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3842
3843 trace_i915_gem_object_change_domain(obj,
3844 old_read_domains,
3845 old_write_domain);
3846 }
3847
Chris Wilsone4ffd172011-04-04 09:44:39 +01003848 return 0;
3849}
3850
Ben Widawsky199adf42012-09-21 17:01:20 -07003851int i915_gem_get_caching_ioctl(struct drm_device *dev, void *data,
3852 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003853{
Ben Widawsky199adf42012-09-21 17:01:20 -07003854 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003855 struct drm_i915_gem_object *obj;
3856 int ret;
3857
3858 ret = i915_mutex_lock_interruptible(dev);
3859 if (ret)
3860 return ret;
3861
3862 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3863 if (&obj->base == NULL) {
3864 ret = -ENOENT;
3865 goto unlock;
3866 }
3867
Chris Wilson651d7942013-08-08 14:41:10 +01003868 switch (obj->cache_level) {
3869 case I915_CACHE_LLC:
3870 case I915_CACHE_L3_LLC:
3871 args->caching = I915_CACHING_CACHED;
3872 break;
3873
Chris Wilson4257d3b2013-08-08 14:41:11 +01003874 case I915_CACHE_WT:
3875 args->caching = I915_CACHING_DISPLAY;
3876 break;
3877
Chris Wilson651d7942013-08-08 14:41:10 +01003878 default:
3879 args->caching = I915_CACHING_NONE;
3880 break;
3881 }
Chris Wilsone6994ae2012-07-10 10:27:08 +01003882
3883 drm_gem_object_unreference(&obj->base);
3884unlock:
3885 mutex_unlock(&dev->struct_mutex);
3886 return ret;
3887}
3888
Ben Widawsky199adf42012-09-21 17:01:20 -07003889int i915_gem_set_caching_ioctl(struct drm_device *dev, void *data,
3890 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003891{
Ben Widawsky199adf42012-09-21 17:01:20 -07003892 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003893 struct drm_i915_gem_object *obj;
3894 enum i915_cache_level level;
3895 int ret;
3896
Ben Widawsky199adf42012-09-21 17:01:20 -07003897 switch (args->caching) {
3898 case I915_CACHING_NONE:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003899 level = I915_CACHE_NONE;
3900 break;
Ben Widawsky199adf42012-09-21 17:01:20 -07003901 case I915_CACHING_CACHED:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003902 level = I915_CACHE_LLC;
3903 break;
Chris Wilson4257d3b2013-08-08 14:41:11 +01003904 case I915_CACHING_DISPLAY:
3905 level = HAS_WT(dev) ? I915_CACHE_WT : I915_CACHE_NONE;
3906 break;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003907 default:
3908 return -EINVAL;
3909 }
3910
Ben Widawsky3bc29132012-09-26 16:15:20 -07003911 ret = i915_mutex_lock_interruptible(dev);
3912 if (ret)
3913 return ret;
3914
Chris Wilsone6994ae2012-07-10 10:27:08 +01003915 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3916 if (&obj->base == NULL) {
3917 ret = -ENOENT;
3918 goto unlock;
3919 }
3920
3921 ret = i915_gem_object_set_cache_level(obj, level);
3922
3923 drm_gem_object_unreference(&obj->base);
3924unlock:
3925 mutex_unlock(&dev->struct_mutex);
3926 return ret;
3927}
3928
Chris Wilsoncc98b412013-08-09 12:25:09 +01003929static bool is_pin_display(struct drm_i915_gem_object *obj)
3930{
Oscar Mateo19656432014-05-16 14:20:43 +01003931 struct i915_vma *vma;
3932
Oscar Mateo19656432014-05-16 14:20:43 +01003933 vma = i915_gem_obj_to_ggtt(obj);
3934 if (!vma)
3935 return false;
3936
Daniel Vetter4feb7652014-11-24 11:21:52 +01003937 /* There are 2 sources that pin objects:
Chris Wilsoncc98b412013-08-09 12:25:09 +01003938 * 1. The display engine (scanouts, sprites, cursors);
3939 * 2. Reservations for execbuffer;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003940 *
3941 * We can ignore reservations as we hold the struct_mutex and
Daniel Vetter4feb7652014-11-24 11:21:52 +01003942 * are only called outside of the reservation path.
Chris Wilsoncc98b412013-08-09 12:25:09 +01003943 */
Daniel Vetter4feb7652014-11-24 11:21:52 +01003944 return vma->pin_count;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003945}
3946
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003947/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003948 * Prepare buffer for display plane (scanout, cursors, etc).
3949 * Can be called from an uninterruptible phase (modesetting) and allows
3950 * any flushes to be pipelined (for pageflips).
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003951 */
3952int
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003953i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
3954 u32 alignment,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003955 struct intel_engine_cs *pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003956{
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003957 u32 old_read_domains, old_write_domain;
Oscar Mateo19656432014-05-16 14:20:43 +01003958 bool was_pin_display;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003959 int ret;
3960
John Harrison41c52412014-11-24 18:49:43 +00003961 if (pipelined != i915_gem_request_get_ring(obj->last_read_req)) {
Ben Widawsky2911a352012-04-05 14:47:36 -07003962 ret = i915_gem_object_sync(obj, pipelined);
3963 if (ret)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003964 return ret;
3965 }
3966
Chris Wilsoncc98b412013-08-09 12:25:09 +01003967 /* Mark the pin_display early so that we account for the
3968 * display coherency whilst setting up the cache domains.
3969 */
Oscar Mateo19656432014-05-16 14:20:43 +01003970 was_pin_display = obj->pin_display;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003971 obj->pin_display = true;
3972
Eric Anholta7ef0642011-03-29 16:59:54 -07003973 /* The display engine is not coherent with the LLC cache on gen6. As
3974 * a result, we make sure that the pinning that is about to occur is
3975 * done with uncached PTEs. This is lowest common denominator for all
3976 * chipsets.
3977 *
3978 * However for gen6+, we could do better by using the GFDT bit instead
3979 * of uncaching, which would allow us to flush all the LLC-cached data
3980 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
3981 */
Chris Wilson651d7942013-08-08 14:41:10 +01003982 ret = i915_gem_object_set_cache_level(obj,
3983 HAS_WT(obj->base.dev) ? I915_CACHE_WT : I915_CACHE_NONE);
Eric Anholta7ef0642011-03-29 16:59:54 -07003984 if (ret)
Chris Wilsoncc98b412013-08-09 12:25:09 +01003985 goto err_unpin_display;
Eric Anholta7ef0642011-03-29 16:59:54 -07003986
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003987 /* As the user may map the buffer once pinned in the display plane
3988 * (e.g. libkms for the bootup splash), we have to ensure that we
3989 * always use map_and_fenceable for all scanout buffers.
3990 */
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003991 ret = i915_gem_obj_ggtt_pin(obj, alignment, PIN_MAPPABLE);
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003992 if (ret)
Chris Wilsoncc98b412013-08-09 12:25:09 +01003993 goto err_unpin_display;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003994
Chris Wilson2c225692013-08-09 12:26:45 +01003995 i915_gem_object_flush_cpu_write_domain(obj, true);
Chris Wilsonb118c1e2010-05-27 13:18:14 +01003996
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003997 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00003998 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003999
4000 /* It should now be out of any other write domains, and we can update
4001 * the domain values for our changes.
4002 */
Chris Wilsone5f1d962012-07-20 12:41:00 +01004003 obj->base.write_domain = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00004004 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08004005
4006 trace_i915_gem_object_change_domain(obj,
4007 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01004008 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08004009
4010 return 0;
Chris Wilsoncc98b412013-08-09 12:25:09 +01004011
4012err_unpin_display:
Oscar Mateo19656432014-05-16 14:20:43 +01004013 WARN_ON(was_pin_display != is_pin_display(obj));
4014 obj->pin_display = was_pin_display;
Chris Wilsoncc98b412013-08-09 12:25:09 +01004015 return ret;
4016}
4017
4018void
4019i915_gem_object_unpin_from_display_plane(struct drm_i915_gem_object *obj)
4020{
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004021 i915_gem_object_ggtt_unpin(obj);
Chris Wilsoncc98b412013-08-09 12:25:09 +01004022 obj->pin_display = is_pin_display(obj);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08004023}
4024
Chris Wilson85345512010-11-13 09:49:11 +00004025int
Chris Wilsona8198ee2011-04-13 22:04:09 +01004026i915_gem_object_finish_gpu(struct drm_i915_gem_object *obj)
Chris Wilson85345512010-11-13 09:49:11 +00004027{
Chris Wilson88241782011-01-07 17:09:48 +00004028 int ret;
4029
Chris Wilsona8198ee2011-04-13 22:04:09 +01004030 if ((obj->base.read_domains & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson85345512010-11-13 09:49:11 +00004031 return 0;
4032
Chris Wilson0201f1e2012-07-20 12:41:01 +01004033 ret = i915_gem_object_wait_rendering(obj, false);
Chris Wilsonc501ae72011-12-14 13:57:23 +01004034 if (ret)
4035 return ret;
4036
Chris Wilsona8198ee2011-04-13 22:04:09 +01004037 /* Ensure that we invalidate the GPU's caches and TLBs. */
4038 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilsonc501ae72011-12-14 13:57:23 +01004039 return 0;
Chris Wilson85345512010-11-13 09:49:11 +00004040}
4041
Eric Anholte47c68e2008-11-14 13:35:19 -08004042/**
4043 * Moves a single object to the CPU read, and possibly write domain.
4044 *
4045 * This function returns when the move is complete, including waiting on
4046 * flushes to occur.
4047 */
Chris Wilsondabdfe02012-03-26 10:10:27 +02004048int
Chris Wilson919926a2010-11-12 13:42:53 +00004049i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08004050{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004051 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08004052 int ret;
4053
Chris Wilson8d7e3de2011-02-07 15:23:02 +00004054 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
4055 return 0;
4056
Chris Wilson0201f1e2012-07-20 12:41:01 +01004057 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00004058 if (ret)
4059 return ret;
4060
Chris Wilsonc8725f32014-03-17 12:21:55 +00004061 i915_gem_object_retire(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08004062 i915_gem_object_flush_gtt_write_domain(obj);
4063
Chris Wilson05394f32010-11-08 19:18:58 +00004064 old_write_domain = obj->base.write_domain;
4065 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004066
Eric Anholte47c68e2008-11-14 13:35:19 -08004067 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00004068 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Chris Wilson2c225692013-08-09 12:26:45 +01004069 i915_gem_clflush_object(obj, false);
Eric Anholte47c68e2008-11-14 13:35:19 -08004070
Chris Wilson05394f32010-11-08 19:18:58 +00004071 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08004072 }
4073
4074 /* It should now be out of any other write domains, and we can update
4075 * the domain values for our changes.
4076 */
Chris Wilson05394f32010-11-08 19:18:58 +00004077 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08004078
4079 /* If we're writing through the CPU, then the GPU read domains will
4080 * need to be invalidated at next use.
4081 */
4082 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00004083 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4084 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08004085 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08004086
Daniel Vetterf99d7062014-06-19 16:01:59 +02004087 if (write)
4088 intel_fb_obj_invalidate(obj, NULL);
4089
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004090 trace_i915_gem_object_change_domain(obj,
4091 old_read_domains,
4092 old_write_domain);
4093
Eric Anholt2ef7eea2008-11-10 10:53:25 -08004094 return 0;
4095}
4096
Eric Anholt673a3942008-07-30 12:06:12 -07004097/* Throttle our rendering by waiting until the ring has completed our requests
4098 * emitted over 20 msec ago.
4099 *
Eric Anholtb9624422009-06-03 07:27:35 +00004100 * Note that if we were to use the current jiffies each time around the loop,
4101 * we wouldn't escape the function with any frames outstanding if the time to
4102 * render a frame was over 20ms.
4103 *
Eric Anholt673a3942008-07-30 12:06:12 -07004104 * This should get us reasonable parallelism between CPU and GPU but also
4105 * relatively low latency when blocking on a particular request to finish.
4106 */
4107static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004108i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004109{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004110 struct drm_i915_private *dev_priv = dev->dev_private;
4111 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00004112 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
John Harrison54fb2412014-11-24 18:49:27 +00004113 struct drm_i915_gem_request *request, *target = NULL;
Daniel Vetterf69061b2012-12-06 09:01:42 +01004114 unsigned reset_counter;
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004115 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004116
Daniel Vetter308887a2012-11-14 17:14:06 +01004117 ret = i915_gem_wait_for_error(&dev_priv->gpu_error);
4118 if (ret)
4119 return ret;
4120
4121 ret = i915_gem_check_wedge(&dev_priv->gpu_error, false);
4122 if (ret)
4123 return ret;
Chris Wilsone110e8d2011-01-26 15:39:14 +00004124
Chris Wilson1c255952010-09-26 11:03:27 +01004125 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004126 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00004127 if (time_after_eq(request->emitted_jiffies, recent_enough))
4128 break;
4129
John Harrison54fb2412014-11-24 18:49:27 +00004130 target = request;
Eric Anholtb9624422009-06-03 07:27:35 +00004131 }
Daniel Vetterf69061b2012-12-06 09:01:42 +01004132 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
John Harrisonff865882014-11-24 18:49:28 +00004133 if (target)
4134 i915_gem_request_reference(target);
Chris Wilson1c255952010-09-26 11:03:27 +01004135 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004136
John Harrison54fb2412014-11-24 18:49:27 +00004137 if (target == NULL)
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004138 return 0;
4139
John Harrison9c654812014-11-24 18:49:35 +00004140 ret = __i915_wait_request(target, reset_counter, true, NULL, NULL);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004141 if (ret == 0)
4142 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00004143
John Harrisonff865882014-11-24 18:49:28 +00004144 mutex_lock(&dev->struct_mutex);
4145 i915_gem_request_unreference(target);
4146 mutex_unlock(&dev->struct_mutex);
4147
Eric Anholt673a3942008-07-30 12:06:12 -07004148 return ret;
4149}
4150
Chris Wilsond23db882014-05-23 08:48:08 +02004151static bool
4152i915_vma_misplaced(struct i915_vma *vma, uint32_t alignment, uint64_t flags)
4153{
4154 struct drm_i915_gem_object *obj = vma->obj;
4155
4156 if (alignment &&
4157 vma->node.start & (alignment - 1))
4158 return true;
4159
4160 if (flags & PIN_MAPPABLE && !obj->map_and_fenceable)
4161 return true;
4162
4163 if (flags & PIN_OFFSET_BIAS &&
4164 vma->node.start < (flags & PIN_OFFSET_MASK))
4165 return true;
4166
4167 return false;
4168}
4169
Eric Anholt673a3942008-07-30 12:06:12 -07004170int
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00004171i915_gem_object_pin_view(struct drm_i915_gem_object *obj,
4172 struct i915_address_space *vm,
4173 uint32_t alignment,
4174 uint64_t flags,
4175 const struct i915_ggtt_view *view)
Eric Anholt673a3942008-07-30 12:06:12 -07004176{
Ben Widawsky6e7186a2014-05-06 22:21:36 -07004177 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004178 struct i915_vma *vma;
Chris Wilsonef79e172014-10-31 13:53:52 +00004179 unsigned bound;
Eric Anholt673a3942008-07-30 12:06:12 -07004180 int ret;
4181
Ben Widawsky6e7186a2014-05-06 22:21:36 -07004182 if (WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base))
4183 return -ENODEV;
4184
Daniel Vetterbf3d1492014-02-14 14:01:12 +01004185 if (WARN_ON(flags & (PIN_GLOBAL | PIN_MAPPABLE) && !i915_is_ggtt(vm)))
Daniel Vetter1ec9e262014-02-14 14:01:11 +01004186 return -EINVAL;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004187
Chris Wilsonc826c442014-10-31 13:53:53 +00004188 if (WARN_ON((flags & (PIN_MAPPABLE | PIN_GLOBAL)) == PIN_MAPPABLE))
4189 return -EINVAL;
4190
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00004191 vma = i915_gem_obj_to_vma_view(obj, vm, view);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004192 if (vma) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004193 if (WARN_ON(vma->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT))
4194 return -EBUSY;
4195
Chris Wilsond23db882014-05-23 08:48:08 +02004196 if (i915_vma_misplaced(vma, alignment, flags)) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004197 WARN(vma->pin_count,
Chris Wilsonae7d49d2010-08-04 12:37:41 +01004198 "bo is already pinned with incorrect alignment:"
Ben Widawskyf343c5f2013-07-05 14:41:04 -07004199 " offset=%lx, req.alignment=%x, req.map_and_fenceable=%d,"
Daniel Vetter75e9e912010-11-04 17:11:09 +01004200 " obj->map_and_fenceable=%d\n",
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00004201 i915_gem_obj_offset_view(obj, vm, view->type),
4202 alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02004203 !!(flags & PIN_MAPPABLE),
Chris Wilson05394f32010-11-08 19:18:58 +00004204 obj->map_and_fenceable);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004205 ret = i915_vma_unbind(vma);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004206 if (ret)
4207 return ret;
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004208
4209 vma = NULL;
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004210 }
4211 }
4212
Chris Wilsonef79e172014-10-31 13:53:52 +00004213 bound = vma ? vma->bound : 0;
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004214 if (vma == NULL || !drm_mm_node_allocated(&vma->node)) {
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00004215 vma = i915_gem_object_bind_to_vm(obj, vm, alignment,
4216 flags, view);
Daniel Vetter262de142014-02-14 14:01:20 +01004217 if (IS_ERR(vma))
4218 return PTR_ERR(vma);
Chris Wilson22c344e2009-02-11 14:26:45 +00004219 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05004220
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00004221 if (flags & PIN_GLOBAL && !(vma->bound & GLOBAL_BIND)) {
4222 ret = i915_vma_bind(vma, obj->cache_level, GLOBAL_BIND);
4223 if (ret)
4224 return ret;
4225 }
Daniel Vetter74898d72012-02-15 23:50:22 +01004226
Chris Wilsonef79e172014-10-31 13:53:52 +00004227 if ((bound ^ vma->bound) & GLOBAL_BIND) {
4228 bool mappable, fenceable;
4229 u32 fence_size, fence_alignment;
4230
4231 fence_size = i915_gem_get_gtt_size(obj->base.dev,
4232 obj->base.size,
4233 obj->tiling_mode);
4234 fence_alignment = i915_gem_get_gtt_alignment(obj->base.dev,
4235 obj->base.size,
4236 obj->tiling_mode,
4237 true);
4238
4239 fenceable = (vma->node.size == fence_size &&
4240 (vma->node.start & (fence_alignment - 1)) == 0);
4241
4242 mappable = (vma->node.start + obj->base.size <=
4243 dev_priv->gtt.mappable_end);
4244
4245 obj->map_and_fenceable = mappable && fenceable;
4246 }
4247
4248 WARN_ON(flags & PIN_MAPPABLE && !obj->map_and_fenceable);
4249
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004250 vma->pin_count++;
Daniel Vetter1ec9e262014-02-14 14:01:11 +01004251 if (flags & PIN_MAPPABLE)
4252 obj->pin_mappable |= true;
Eric Anholt673a3942008-07-30 12:06:12 -07004253
4254 return 0;
4255}
4256
4257void
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004258i915_gem_object_ggtt_unpin(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07004259{
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004260 struct i915_vma *vma = i915_gem_obj_to_ggtt(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004261
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004262 BUG_ON(!vma);
4263 BUG_ON(vma->pin_count == 0);
4264 BUG_ON(!i915_gem_obj_ggtt_bound(obj));
4265
4266 if (--vma->pin_count == 0)
Chris Wilson6299f992010-11-24 12:23:44 +00004267 obj->pin_mappable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07004268}
4269
Daniel Vetterd8ffa602014-05-13 12:11:26 +02004270bool
4271i915_gem_object_pin_fence(struct drm_i915_gem_object *obj)
4272{
4273 if (obj->fence_reg != I915_FENCE_REG_NONE) {
4274 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
4275 struct i915_vma *ggtt_vma = i915_gem_obj_to_ggtt(obj);
4276
4277 WARN_ON(!ggtt_vma ||
4278 dev_priv->fence_regs[obj->fence_reg].pin_count >
4279 ggtt_vma->pin_count);
4280 dev_priv->fence_regs[obj->fence_reg].pin_count++;
4281 return true;
4282 } else
4283 return false;
4284}
4285
4286void
4287i915_gem_object_unpin_fence(struct drm_i915_gem_object *obj)
4288{
4289 if (obj->fence_reg != I915_FENCE_REG_NONE) {
4290 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
4291 WARN_ON(dev_priv->fence_regs[obj->fence_reg].pin_count <= 0);
4292 dev_priv->fence_regs[obj->fence_reg].pin_count--;
4293 }
4294}
4295
Eric Anholt673a3942008-07-30 12:06:12 -07004296int
Eric Anholt673a3942008-07-30 12:06:12 -07004297i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00004298 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004299{
4300 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004301 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01004302 int ret;
4303
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004304 ret = i915_mutex_lock_interruptible(dev);
4305 if (ret)
4306 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004307
Chris Wilson05394f32010-11-08 19:18:58 +00004308 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004309 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004310 ret = -ENOENT;
4311 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07004312 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08004313
Chris Wilson0be555b2010-08-04 15:36:30 +01004314 /* Count all active objects as busy, even if they are currently not used
4315 * by the gpu. Users of this interface expect objects to eventually
4316 * become non-busy without any further actions, therefore emit any
4317 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08004318 */
Daniel Vetter30dfebf2012-06-01 15:21:23 +02004319 ret = i915_gem_object_flush_active(obj);
4320
Chris Wilson05394f32010-11-08 19:18:58 +00004321 args->busy = obj->active;
John Harrison41c52412014-11-24 18:49:43 +00004322 if (obj->last_read_req) {
4323 struct intel_engine_cs *ring;
Chris Wilsone9808ed2012-07-04 12:25:08 +01004324 BUILD_BUG_ON(I915_NUM_RINGS > 16);
John Harrison41c52412014-11-24 18:49:43 +00004325 ring = i915_gem_request_get_ring(obj->last_read_req);
4326 args->busy |= intel_ring_flag(ring) << 16;
Chris Wilsone9808ed2012-07-04 12:25:08 +01004327 }
Eric Anholt673a3942008-07-30 12:06:12 -07004328
Chris Wilson05394f32010-11-08 19:18:58 +00004329 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004330unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07004331 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004332 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004333}
4334
4335int
4336i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
4337 struct drm_file *file_priv)
4338{
Akshay Joshi0206e352011-08-16 15:34:10 -04004339 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07004340}
4341
Chris Wilson3ef94da2009-09-14 16:50:29 +01004342int
4343i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
4344 struct drm_file *file_priv)
4345{
Daniel Vetter656bfa32014-11-20 09:26:30 +01004346 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004347 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004348 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01004349 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004350
4351 switch (args->madv) {
4352 case I915_MADV_DONTNEED:
4353 case I915_MADV_WILLNEED:
4354 break;
4355 default:
4356 return -EINVAL;
4357 }
4358
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004359 ret = i915_mutex_lock_interruptible(dev);
4360 if (ret)
4361 return ret;
4362
Chris Wilson05394f32010-11-08 19:18:58 +00004363 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004364 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004365 ret = -ENOENT;
4366 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004367 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01004368
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004369 if (i915_gem_obj_is_pinned(obj)) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004370 ret = -EINVAL;
4371 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004372 }
4373
Daniel Vetter656bfa32014-11-20 09:26:30 +01004374 if (obj->pages &&
4375 obj->tiling_mode != I915_TILING_NONE &&
4376 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES) {
4377 if (obj->madv == I915_MADV_WILLNEED)
4378 i915_gem_object_unpin_pages(obj);
4379 if (args->madv == I915_MADV_WILLNEED)
4380 i915_gem_object_pin_pages(obj);
4381 }
4382
Chris Wilson05394f32010-11-08 19:18:58 +00004383 if (obj->madv != __I915_MADV_PURGED)
4384 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004385
Chris Wilson6c085a72012-08-20 11:40:46 +02004386 /* if the object is no longer attached, discard its backing storage */
4387 if (i915_gem_object_is_purgeable(obj) && obj->pages == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01004388 i915_gem_object_truncate(obj);
4389
Chris Wilson05394f32010-11-08 19:18:58 +00004390 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01004391
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004392out:
Chris Wilson05394f32010-11-08 19:18:58 +00004393 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004394unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01004395 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004396 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004397}
4398
Chris Wilson37e680a2012-06-07 15:38:42 +01004399void i915_gem_object_init(struct drm_i915_gem_object *obj,
4400 const struct drm_i915_gem_object_ops *ops)
Chris Wilson0327d6b2012-08-11 15:41:06 +01004401{
Ben Widawsky35c20a62013-05-31 11:28:48 -07004402 INIT_LIST_HEAD(&obj->global_list);
Chris Wilson0327d6b2012-08-11 15:41:06 +01004403 INIT_LIST_HEAD(&obj->ring_list);
Ben Widawskyb25cb2f2013-08-14 11:38:33 +02004404 INIT_LIST_HEAD(&obj->obj_exec_link);
Ben Widawsky2f633152013-07-17 12:19:03 -07004405 INIT_LIST_HEAD(&obj->vma_list);
Brad Volkin493018d2014-12-11 12:13:08 -08004406 INIT_LIST_HEAD(&obj->batch_pool_list);
Chris Wilson0327d6b2012-08-11 15:41:06 +01004407
Chris Wilson37e680a2012-06-07 15:38:42 +01004408 obj->ops = ops;
4409
Chris Wilson0327d6b2012-08-11 15:41:06 +01004410 obj->fence_reg = I915_FENCE_REG_NONE;
4411 obj->madv = I915_MADV_WILLNEED;
Chris Wilson0327d6b2012-08-11 15:41:06 +01004412
4413 i915_gem_info_add_obj(obj->base.dev->dev_private, obj->base.size);
4414}
4415
Chris Wilson37e680a2012-06-07 15:38:42 +01004416static const struct drm_i915_gem_object_ops i915_gem_object_ops = {
4417 .get_pages = i915_gem_object_get_pages_gtt,
4418 .put_pages = i915_gem_object_put_pages_gtt,
4419};
4420
Chris Wilson05394f32010-11-08 19:18:58 +00004421struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
4422 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00004423{
Daniel Vetterc397b902010-04-09 19:05:07 +00004424 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07004425 struct address_space *mapping;
Daniel Vetter1a240d42012-11-29 22:18:51 +01004426 gfp_t mask;
Daniel Vetterc397b902010-04-09 19:05:07 +00004427
Chris Wilson42dcedd2012-11-15 11:32:30 +00004428 obj = i915_gem_object_alloc(dev);
Daniel Vetterc397b902010-04-09 19:05:07 +00004429 if (obj == NULL)
4430 return NULL;
4431
4432 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
Chris Wilson42dcedd2012-11-15 11:32:30 +00004433 i915_gem_object_free(obj);
Daniel Vetterc397b902010-04-09 19:05:07 +00004434 return NULL;
4435 }
4436
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004437 mask = GFP_HIGHUSER | __GFP_RECLAIMABLE;
4438 if (IS_CRESTLINE(dev) || IS_BROADWATER(dev)) {
4439 /* 965gm cannot relocate objects above 4GiB. */
4440 mask &= ~__GFP_HIGHMEM;
4441 mask |= __GFP_DMA32;
4442 }
4443
Al Viro496ad9a2013-01-23 17:07:38 -05004444 mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004445 mapping_set_gfp_mask(mapping, mask);
Hugh Dickins5949eac2011-06-27 16:18:18 -07004446
Chris Wilson37e680a2012-06-07 15:38:42 +01004447 i915_gem_object_init(obj, &i915_gem_object_ops);
Chris Wilson73aa8082010-09-30 11:46:12 +01004448
Daniel Vetterc397b902010-04-09 19:05:07 +00004449 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
4450 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4451
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02004452 if (HAS_LLC(dev)) {
4453 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07004454 * cache) for about a 10% performance improvement
4455 * compared to uncached. Graphics requests other than
4456 * display scanout are coherent with the CPU in
4457 * accessing this cache. This means in this mode we
4458 * don't need to clflush on the CPU side, and on the
4459 * GPU side we only need to flush internal caches to
4460 * get data visible to the CPU.
4461 *
4462 * However, we maintain the display planes as UC, and so
4463 * need to rebind when first used as such.
4464 */
4465 obj->cache_level = I915_CACHE_LLC;
4466 } else
4467 obj->cache_level = I915_CACHE_NONE;
4468
Daniel Vetterd861e332013-07-24 23:25:03 +02004469 trace_i915_gem_object_create(obj);
4470
Chris Wilson05394f32010-11-08 19:18:58 +00004471 return obj;
Daniel Vetterac52bc52010-04-09 19:05:06 +00004472}
4473
Chris Wilson340fbd82014-05-22 09:16:52 +01004474static bool discard_backing_storage(struct drm_i915_gem_object *obj)
4475{
4476 /* If we are the last user of the backing storage (be it shmemfs
4477 * pages or stolen etc), we know that the pages are going to be
4478 * immediately released. In this case, we can then skip copying
4479 * back the contents from the GPU.
4480 */
4481
4482 if (obj->madv != I915_MADV_WILLNEED)
4483 return false;
4484
4485 if (obj->base.filp == NULL)
4486 return true;
4487
4488 /* At first glance, this looks racy, but then again so would be
4489 * userspace racing mmap against close. However, the first external
4490 * reference to the filp can only be obtained through the
4491 * i915_gem_mmap_ioctl() which safeguards us against the user
4492 * acquiring such a reference whilst we are in the middle of
4493 * freeing the object.
4494 */
4495 return atomic_long_read(&obj->base.filp->f_count) == 1;
4496}
4497
Chris Wilson1488fc02012-04-24 15:47:31 +01004498void i915_gem_free_object(struct drm_gem_object *gem_obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01004499{
Chris Wilson1488fc02012-04-24 15:47:31 +01004500 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00004501 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004502 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004503 struct i915_vma *vma, *next;
Chris Wilsonbe726152010-07-23 23:18:50 +01004504
Paulo Zanonif65c9162013-11-27 18:20:34 -02004505 intel_runtime_pm_get(dev_priv);
4506
Chris Wilson26e12f892011-03-20 11:20:19 +00004507 trace_i915_gem_object_destroy(obj);
4508
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004509 list_for_each_entry_safe(vma, next, &obj->vma_list, vma_link) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004510 int ret;
4511
4512 vma->pin_count = 0;
4513 ret = i915_vma_unbind(vma);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004514 if (WARN_ON(ret == -ERESTARTSYS)) {
4515 bool was_interruptible;
Chris Wilson1488fc02012-04-24 15:47:31 +01004516
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004517 was_interruptible = dev_priv->mm.interruptible;
4518 dev_priv->mm.interruptible = false;
Chris Wilson1488fc02012-04-24 15:47:31 +01004519
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004520 WARN_ON(i915_vma_unbind(vma));
Chris Wilson1488fc02012-04-24 15:47:31 +01004521
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004522 dev_priv->mm.interruptible = was_interruptible;
4523 }
Chris Wilson1488fc02012-04-24 15:47:31 +01004524 }
4525
Ben Widawsky1d64ae72013-05-31 14:46:20 -07004526 /* Stolen objects don't hold a ref, but do hold pin count. Fix that up
4527 * before progressing. */
4528 if (obj->stolen)
4529 i915_gem_object_unpin_pages(obj);
4530
Daniel Vettera071fa02014-06-18 23:28:09 +02004531 WARN_ON(obj->frontbuffer_bits);
4532
Daniel Vetter656bfa32014-11-20 09:26:30 +01004533 if (obj->pages && obj->madv == I915_MADV_WILLNEED &&
4534 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES &&
4535 obj->tiling_mode != I915_TILING_NONE)
4536 i915_gem_object_unpin_pages(obj);
4537
Ben Widawsky401c29f2013-05-31 11:28:47 -07004538 if (WARN_ON(obj->pages_pin_count))
4539 obj->pages_pin_count = 0;
Chris Wilson340fbd82014-05-22 09:16:52 +01004540 if (discard_backing_storage(obj))
Chris Wilson55372522014-03-25 13:23:06 +00004541 obj->madv = I915_MADV_DONTNEED;
Chris Wilson37e680a2012-06-07 15:38:42 +01004542 i915_gem_object_put_pages(obj);
Chris Wilsond8cb5082012-08-11 15:41:03 +01004543 i915_gem_object_free_mmap_offset(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01004544
Chris Wilson9da3da62012-06-01 15:20:22 +01004545 BUG_ON(obj->pages);
4546
Chris Wilson2f745ad2012-09-04 21:02:58 +01004547 if (obj->base.import_attach)
4548 drm_prime_gem_destroy(&obj->base, NULL);
Chris Wilsonbe726152010-07-23 23:18:50 +01004549
Chris Wilson5cc9ed42014-05-16 14:22:37 +01004550 if (obj->ops->release)
4551 obj->ops->release(obj);
4552
Chris Wilson05394f32010-11-08 19:18:58 +00004553 drm_gem_object_release(&obj->base);
4554 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01004555
Chris Wilson05394f32010-11-08 19:18:58 +00004556 kfree(obj->bit_17);
Chris Wilson42dcedd2012-11-15 11:32:30 +00004557 i915_gem_object_free(obj);
Paulo Zanonif65c9162013-11-27 18:20:34 -02004558
4559 intel_runtime_pm_put(dev_priv);
Chris Wilsonbe726152010-07-23 23:18:50 +01004560}
4561
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00004562struct i915_vma *i915_gem_obj_to_vma_view(struct drm_i915_gem_object *obj,
4563 struct i915_address_space *vm,
4564 const struct i915_ggtt_view *view)
Ben Widawsky2f633152013-07-17 12:19:03 -07004565{
Daniel Vettere656a6c2013-08-14 14:14:04 +02004566 struct i915_vma *vma;
4567 list_for_each_entry(vma, &obj->vma_list, vma_link)
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00004568 if (vma->vm == vm && vma->ggtt_view.type == view->type)
Daniel Vettere656a6c2013-08-14 14:14:04 +02004569 return vma;
4570
4571 return NULL;
4572}
4573
Ben Widawsky2f633152013-07-17 12:19:03 -07004574void i915_gem_vma_destroy(struct i915_vma *vma)
4575{
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004576 struct i915_address_space *vm = NULL;
Ben Widawsky2f633152013-07-17 12:19:03 -07004577 WARN_ON(vma->node.allocated);
Chris Wilsonaaa05662013-08-20 12:56:40 +01004578
4579 /* Keep the vma as a placeholder in the execbuffer reservation lists */
4580 if (!list_empty(&vma->exec_list))
4581 return;
4582
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004583 vm = vma->vm;
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004584
Daniel Vetter841cd772014-08-06 15:04:48 +02004585 if (!i915_is_ggtt(vm))
4586 i915_ppgtt_put(i915_vm_to_ppgtt(vm));
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004587
Ben Widawsky8b9c2b92013-07-31 17:00:16 -07004588 list_del(&vma->vma_link);
Daniel Vetterb93dab62013-08-26 11:23:47 +02004589
Ben Widawsky2f633152013-07-17 12:19:03 -07004590 kfree(vma);
4591}
4592
Chris Wilsone3efda42014-04-09 09:19:41 +01004593static void
4594i915_gem_stop_ringbuffers(struct drm_device *dev)
4595{
4596 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004597 struct intel_engine_cs *ring;
Chris Wilsone3efda42014-04-09 09:19:41 +01004598 int i;
4599
4600 for_each_ring(ring, dev_priv, i)
Oscar Mateoa83014d2014-07-24 17:04:21 +01004601 dev_priv->gt.stop_ring(ring);
Chris Wilsone3efda42014-04-09 09:19:41 +01004602}
4603
Jesse Barnes5669fca2009-02-17 15:13:31 -08004604int
Chris Wilson45c5f202013-10-16 11:50:01 +01004605i915_gem_suspend(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07004606{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004607 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson45c5f202013-10-16 11:50:01 +01004608 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07004609
Chris Wilson45c5f202013-10-16 11:50:01 +01004610 mutex_lock(&dev->struct_mutex);
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004611 ret = i915_gpu_idle(dev);
Chris Wilsonf7403342013-09-13 23:57:04 +01004612 if (ret)
Chris Wilson45c5f202013-10-16 11:50:01 +01004613 goto err;
Chris Wilsonf7403342013-09-13 23:57:04 +01004614
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004615 i915_gem_retire_requests(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07004616
Chris Wilson29105cc2010-01-07 10:39:13 +00004617 /* Under UMS, be paranoid and evict. */
Chris Wilsona39d7ef2012-04-24 18:22:52 +01004618 if (!drm_core_check_feature(dev, DRIVER_MODESET))
Chris Wilson6c085a72012-08-20 11:40:46 +02004619 i915_gem_evict_everything(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00004620
Chris Wilsone3efda42014-04-09 09:19:41 +01004621 i915_gem_stop_ringbuffers(dev);
Chris Wilson45c5f202013-10-16 11:50:01 +01004622 mutex_unlock(&dev->struct_mutex);
4623
4624 del_timer_sync(&dev_priv->gpu_error.hangcheck_timer);
Chris Wilson29105cc2010-01-07 10:39:13 +00004625 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
Deepak S274fa1c2014-08-05 07:51:20 -07004626 flush_delayed_work(&dev_priv->mm.idle_work);
Chris Wilson29105cc2010-01-07 10:39:13 +00004627
Chris Wilsonbdcf1202014-11-25 11:56:33 +00004628 /* Assert that we sucessfully flushed all the work and
4629 * reset the GPU back to its idle, low power state.
4630 */
4631 WARN_ON(dev_priv->mm.busy);
4632
Eric Anholt673a3942008-07-30 12:06:12 -07004633 return 0;
Chris Wilson45c5f202013-10-16 11:50:01 +01004634
4635err:
4636 mutex_unlock(&dev->struct_mutex);
4637 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004638}
4639
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004640int i915_gem_l3_remap(struct intel_engine_cs *ring, int slice)
Ben Widawskyb9524a12012-05-25 16:56:24 -07004641{
Ben Widawskyc3787e22013-09-17 21:12:44 -07004642 struct drm_device *dev = ring->dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004643 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07004644 u32 reg_base = GEN7_L3LOG_BASE + (slice * 0x200);
4645 u32 *remap_info = dev_priv->l3_parity.remap_info[slice];
Ben Widawskyc3787e22013-09-17 21:12:44 -07004646 int i, ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004647
Ben Widawsky040d2ba2013-09-19 11:01:40 -07004648 if (!HAS_L3_DPF(dev) || !remap_info)
Ben Widawskyc3787e22013-09-17 21:12:44 -07004649 return 0;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004650
Ben Widawskyc3787e22013-09-17 21:12:44 -07004651 ret = intel_ring_begin(ring, GEN7_L3LOG_SIZE / 4 * 3);
4652 if (ret)
4653 return ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004654
Ben Widawskyc3787e22013-09-17 21:12:44 -07004655 /*
4656 * Note: We do not worry about the concurrent register cacheline hang
4657 * here because no other code should access these registers other than
4658 * at initialization time.
4659 */
Ben Widawskyb9524a12012-05-25 16:56:24 -07004660 for (i = 0; i < GEN7_L3LOG_SIZE; i += 4) {
Ben Widawskyc3787e22013-09-17 21:12:44 -07004661 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
4662 intel_ring_emit(ring, reg_base + i);
4663 intel_ring_emit(ring, remap_info[i/4]);
Ben Widawskyb9524a12012-05-25 16:56:24 -07004664 }
4665
Ben Widawskyc3787e22013-09-17 21:12:44 -07004666 intel_ring_advance(ring);
Ben Widawskyb9524a12012-05-25 16:56:24 -07004667
Ben Widawskyc3787e22013-09-17 21:12:44 -07004668 return ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004669}
4670
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004671void i915_gem_init_swizzling(struct drm_device *dev)
4672{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004673 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004674
Daniel Vetter11782b02012-01-31 16:47:55 +01004675 if (INTEL_INFO(dev)->gen < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004676 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
4677 return;
4678
4679 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
4680 DISP_TILE_SURFACE_SWIZZLING);
4681
Daniel Vetter11782b02012-01-31 16:47:55 +01004682 if (IS_GEN5(dev))
4683 return;
4684
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004685 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
4686 if (IS_GEN6(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004687 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_SNB));
Ben Widawsky8782e262012-12-18 10:31:23 -08004688 else if (IS_GEN7(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004689 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_IVB));
Ben Widawsky31a53362013-11-02 21:07:04 -07004690 else if (IS_GEN8(dev))
4691 I915_WRITE(GAMTARBMODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_BDW));
Ben Widawsky8782e262012-12-18 10:31:23 -08004692 else
4693 BUG();
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004694}
Daniel Vettere21af882012-02-09 20:53:27 +01004695
Chris Wilson67b1b572012-07-05 23:49:40 +01004696static bool
4697intel_enable_blt(struct drm_device *dev)
4698{
4699 if (!HAS_BLT(dev))
4700 return false;
4701
4702 /* The blitter was dysfunctional on early prototypes */
4703 if (IS_GEN6(dev) && dev->pdev->revision < 8) {
4704 DRM_INFO("BLT not supported on this pre-production hardware;"
4705 " graphics performance will be degraded.\n");
4706 return false;
4707 }
4708
4709 return true;
4710}
4711
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004712static void init_unused_ring(struct drm_device *dev, u32 base)
4713{
4714 struct drm_i915_private *dev_priv = dev->dev_private;
4715
4716 I915_WRITE(RING_CTL(base), 0);
4717 I915_WRITE(RING_HEAD(base), 0);
4718 I915_WRITE(RING_TAIL(base), 0);
4719 I915_WRITE(RING_START(base), 0);
4720}
4721
4722static void init_unused_rings(struct drm_device *dev)
4723{
4724 if (IS_I830(dev)) {
4725 init_unused_ring(dev, PRB1_BASE);
4726 init_unused_ring(dev, SRB0_BASE);
4727 init_unused_ring(dev, SRB1_BASE);
4728 init_unused_ring(dev, SRB2_BASE);
4729 init_unused_ring(dev, SRB3_BASE);
4730 } else if (IS_GEN2(dev)) {
4731 init_unused_ring(dev, SRB0_BASE);
4732 init_unused_ring(dev, SRB1_BASE);
4733 } else if (IS_GEN3(dev)) {
4734 init_unused_ring(dev, PRB1_BASE);
4735 init_unused_ring(dev, PRB2_BASE);
4736 }
4737}
4738
Oscar Mateoa83014d2014-07-24 17:04:21 +01004739int i915_gem_init_rings(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004740{
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004741 struct drm_i915_private *dev_priv = dev->dev_private;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004742 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004743
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004744 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004745 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00004746 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004747
4748 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004749 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004750 if (ret)
4751 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08004752 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01004753
Chris Wilson67b1b572012-07-05 23:49:40 +01004754 if (intel_enable_blt(dev)) {
Chris Wilson549f7362010-10-19 11:19:32 +01004755 ret = intel_init_blt_ring_buffer(dev);
4756 if (ret)
4757 goto cleanup_bsd_ring;
4758 }
4759
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004760 if (HAS_VEBOX(dev)) {
4761 ret = intel_init_vebox_ring_buffer(dev);
4762 if (ret)
4763 goto cleanup_blt_ring;
4764 }
4765
Zhao Yakui845f74a2014-04-17 10:37:37 +08004766 if (HAS_BSD2(dev)) {
4767 ret = intel_init_bsd2_ring_buffer(dev);
4768 if (ret)
4769 goto cleanup_vebox_ring;
4770 }
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004771
Mika Kuoppala99433932013-01-22 14:12:17 +02004772 ret = i915_gem_set_seqno(dev, ((u32)~0 - 0x1000));
4773 if (ret)
Zhao Yakui845f74a2014-04-17 10:37:37 +08004774 goto cleanup_bsd2_ring;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004775
4776 return 0;
4777
Zhao Yakui845f74a2014-04-17 10:37:37 +08004778cleanup_bsd2_ring:
4779 intel_cleanup_ring_buffer(&dev_priv->ring[VCS2]);
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004780cleanup_vebox_ring:
4781 intel_cleanup_ring_buffer(&dev_priv->ring[VECS]);
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004782cleanup_blt_ring:
4783 intel_cleanup_ring_buffer(&dev_priv->ring[BCS]);
4784cleanup_bsd_ring:
4785 intel_cleanup_ring_buffer(&dev_priv->ring[VCS]);
4786cleanup_render_ring:
4787 intel_cleanup_ring_buffer(&dev_priv->ring[RCS]);
4788
4789 return ret;
4790}
4791
4792int
4793i915_gem_init_hw(struct drm_device *dev)
4794{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004795 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter35a57ff2014-11-20 00:33:07 +01004796 struct intel_engine_cs *ring;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07004797 int ret, i;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004798
4799 if (INTEL_INFO(dev)->gen < 6 && !intel_enable_gtt())
4800 return -EIO;
4801
Ben Widawsky59124502013-07-04 11:02:05 -07004802 if (dev_priv->ellc_size)
Ben Widawsky05e21cc2013-07-04 11:02:04 -07004803 I915_WRITE(HSW_IDICR, I915_READ(HSW_IDICR) | IDIHASHMSK(0xf));
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004804
Ville Syrjälä0bf21342013-11-29 14:56:12 +02004805 if (IS_HASWELL(dev))
4806 I915_WRITE(MI_PREDICATE_RESULT_2, IS_HSW_GT3(dev) ?
4807 LOWER_SLICE_ENABLED : LOWER_SLICE_DISABLED);
Rodrigo Vivi94353732013-08-28 16:45:46 -03004808
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004809 if (HAS_PCH_NOP(dev)) {
Daniel Vetter6ba844b2014-01-22 23:39:30 +01004810 if (IS_IVYBRIDGE(dev)) {
4811 u32 temp = I915_READ(GEN7_MSG_CTL);
4812 temp &= ~(WAIT_FOR_PCH_FLR_ACK | WAIT_FOR_PCH_RESET_ACK);
4813 I915_WRITE(GEN7_MSG_CTL, temp);
4814 } else if (INTEL_INFO(dev)->gen >= 7) {
4815 u32 temp = I915_READ(HSW_NDE_RSTWRN_OPT);
4816 temp &= ~RESET_PCH_HANDSHAKE_ENABLE;
4817 I915_WRITE(HSW_NDE_RSTWRN_OPT, temp);
4818 }
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004819 }
4820
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004821 i915_gem_init_swizzling(dev);
4822
Daniel Vetterd5abdfd2014-11-20 09:45:19 +01004823 /*
4824 * At least 830 can leave some of the unused rings
4825 * "active" (ie. head != tail) after resume which
4826 * will prevent c3 entry. Makes sure all unused rings
4827 * are totally idle.
4828 */
4829 init_unused_rings(dev);
4830
Daniel Vetter35a57ff2014-11-20 00:33:07 +01004831 for_each_ring(ring, dev_priv, i) {
4832 ret = ring->init_hw(ring);
4833 if (ret)
4834 return ret;
4835 }
Mika Kuoppala99433932013-01-22 14:12:17 +02004836
Ben Widawskyc3787e22013-09-17 21:12:44 -07004837 for (i = 0; i < NUM_L3_SLICES(dev); i++)
4838 i915_gem_l3_remap(&dev_priv->ring[RCS], i);
4839
Ben Widawsky254f9652012-06-04 14:42:42 -07004840 /*
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004841 * XXX: Contexts should only be initialized once. Doing a switch to the
4842 * default context switch however is something we'd like to do after
4843 * reset or thaw (the latter may not actually be necessary for HW, but
4844 * goes with our code better). Context switching requires rings (for
4845 * the do_switch), but before enabling PPGTT. So don't move this.
Ben Widawsky254f9652012-06-04 14:42:42 -07004846 */
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004847 ret = i915_gem_context_enable(dev_priv);
Chris Wilson60990322014-04-09 09:19:42 +01004848 if (ret && ret != -EIO) {
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004849 DRM_ERROR("Context enable failed %d\n", ret);
Chris Wilson60990322014-04-09 09:19:42 +01004850 i915_gem_cleanup_ringbuffer(dev);
Daniel Vetter82460d92014-08-06 20:19:53 +02004851
4852 return ret;
4853 }
4854
4855 ret = i915_ppgtt_init_hw(dev);
4856 if (ret && ret != -EIO) {
4857 DRM_ERROR("PPGTT enable failed %d\n", ret);
4858 i915_gem_cleanup_ringbuffer(dev);
Ben Widawskyb7c36d22013-04-08 18:43:56 -07004859 }
Daniel Vettere21af882012-02-09 20:53:27 +01004860
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004861 return ret;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004862}
4863
Chris Wilson1070a422012-04-24 15:47:41 +01004864int i915_gem_init(struct drm_device *dev)
4865{
4866 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson1070a422012-04-24 15:47:41 +01004867 int ret;
4868
Oscar Mateo127f1002014-07-24 17:04:11 +01004869 i915.enable_execlists = intel_sanitize_enable_execlists(dev,
4870 i915.enable_execlists);
4871
Chris Wilson1070a422012-04-24 15:47:41 +01004872 mutex_lock(&dev->struct_mutex);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004873
4874 if (IS_VALLEYVIEW(dev)) {
4875 /* VLVA0 (potential hack), BIOS isn't actually waking us */
Imre Deak981a5ae2014-04-14 20:24:22 +03004876 I915_WRITE(VLV_GTLC_WAKE_CTRL, VLV_GTLC_ALLOWWAKEREQ);
4877 if (wait_for((I915_READ(VLV_GTLC_PW_STATUS) &
4878 VLV_GTLC_ALLOWWAKEACK), 10))
Jesse Barnesd62b4892013-03-08 10:45:53 -08004879 DRM_DEBUG_DRIVER("allow wake ack timed out\n");
4880 }
4881
Oscar Mateoa83014d2014-07-24 17:04:21 +01004882 if (!i915.enable_execlists) {
4883 dev_priv->gt.do_execbuf = i915_gem_ringbuffer_submission;
4884 dev_priv->gt.init_rings = i915_gem_init_rings;
4885 dev_priv->gt.cleanup_ring = intel_cleanup_ring_buffer;
4886 dev_priv->gt.stop_ring = intel_stop_ring_buffer;
Oscar Mateo454afeb2014-07-24 17:04:22 +01004887 } else {
4888 dev_priv->gt.do_execbuf = intel_execlists_submission;
4889 dev_priv->gt.init_rings = intel_logical_rings_init;
4890 dev_priv->gt.cleanup_ring = intel_logical_ring_cleanup;
4891 dev_priv->gt.stop_ring = intel_logical_ring_stop;
Oscar Mateoa83014d2014-07-24 17:04:21 +01004892 }
4893
Daniel Vetter6c5566a2014-08-06 15:04:50 +02004894 ret = i915_gem_init_userptr(dev);
Jani Nikula7bcc3772014-12-05 14:17:42 +02004895 if (ret)
4896 goto out_unlock;
Daniel Vetter6c5566a2014-08-06 15:04:50 +02004897
Ben Widawskyd7e50082012-12-18 10:31:25 -08004898 i915_gem_init_global_gtt(dev);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004899
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004900 ret = i915_gem_context_init(dev);
Jani Nikula7bcc3772014-12-05 14:17:42 +02004901 if (ret)
4902 goto out_unlock;
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004903
Daniel Vetter35a57ff2014-11-20 00:33:07 +01004904 ret = dev_priv->gt.init_rings(dev);
4905 if (ret)
Jani Nikula7bcc3772014-12-05 14:17:42 +02004906 goto out_unlock;
Daniel Vetter35a57ff2014-11-20 00:33:07 +01004907
Chris Wilson1070a422012-04-24 15:47:41 +01004908 ret = i915_gem_init_hw(dev);
Chris Wilson60990322014-04-09 09:19:42 +01004909 if (ret == -EIO) {
4910 /* Allow ring initialisation to fail by marking the GPU as
4911 * wedged. But we only want to do this where the GPU is angry,
4912 * for all other failure, such as an allocation failure, bail.
4913 */
4914 DRM_ERROR("Failed to initialize GPU, declaring it wedged\n");
4915 atomic_set_mask(I915_WEDGED, &dev_priv->gpu_error.reset_counter);
4916 ret = 0;
Chris Wilson1070a422012-04-24 15:47:41 +01004917 }
Jani Nikula7bcc3772014-12-05 14:17:42 +02004918
4919out_unlock:
Chris Wilson60990322014-04-09 09:19:42 +01004920 mutex_unlock(&dev->struct_mutex);
Chris Wilson1070a422012-04-24 15:47:41 +01004921
Chris Wilson60990322014-04-09 09:19:42 +01004922 return ret;
Chris Wilson1070a422012-04-24 15:47:41 +01004923}
4924
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004925void
4926i915_gem_cleanup_ringbuffer(struct drm_device *dev)
4927{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004928 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004929 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00004930 int i;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004931
Chris Wilsonb4519512012-05-11 14:29:30 +01004932 for_each_ring(ring, dev_priv, i)
Oscar Mateoa83014d2014-07-24 17:04:21 +01004933 dev_priv->gt.cleanup_ring(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004934}
4935
Chris Wilson64193402010-10-24 12:38:05 +01004936static void
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004937init_ring_lists(struct intel_engine_cs *ring)
Chris Wilson64193402010-10-24 12:38:05 +01004938{
4939 INIT_LIST_HEAD(&ring->active_list);
4940 INIT_LIST_HEAD(&ring->request_list);
Chris Wilson64193402010-10-24 12:38:05 +01004941}
4942
Ben Widawsky7e0d96b2013-12-06 14:11:26 -08004943void i915_init_vm(struct drm_i915_private *dev_priv,
4944 struct i915_address_space *vm)
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004945{
Ben Widawsky7e0d96b2013-12-06 14:11:26 -08004946 if (!i915_is_ggtt(vm))
4947 drm_mm_init(&vm->mm, vm->start, vm->total);
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004948 vm->dev = dev_priv->dev;
4949 INIT_LIST_HEAD(&vm->active_list);
4950 INIT_LIST_HEAD(&vm->inactive_list);
4951 INIT_LIST_HEAD(&vm->global_link);
Chris Wilsonf72d21e2014-01-09 22:57:22 +00004952 list_add_tail(&vm->global_link, &dev_priv->vm_list);
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004953}
4954
Eric Anholt673a3942008-07-30 12:06:12 -07004955void
4956i915_gem_load(struct drm_device *dev)
4957{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004958 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson42dcedd2012-11-15 11:32:30 +00004959 int i;
4960
4961 dev_priv->slab =
4962 kmem_cache_create("i915_gem_object",
4963 sizeof(struct drm_i915_gem_object), 0,
4964 SLAB_HWCACHE_ALIGN,
4965 NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07004966
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004967 INIT_LIST_HEAD(&dev_priv->vm_list);
4968 i915_init_vm(dev_priv, &dev_priv->gtt.base);
4969
Ben Widawskya33afea2013-09-17 21:12:45 -07004970 INIT_LIST_HEAD(&dev_priv->context_list);
Chris Wilson6c085a72012-08-20 11:40:46 +02004971 INIT_LIST_HEAD(&dev_priv->mm.unbound_list);
4972 INIT_LIST_HEAD(&dev_priv->mm.bound_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07004973 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00004974 for (i = 0; i < I915_NUM_RINGS; i++)
4975 init_ring_lists(&dev_priv->ring[i]);
Daniel Vetter4b9de732011-10-09 21:52:02 +02004976 for (i = 0; i < I915_MAX_NUM_FENCES; i++)
Daniel Vetter007cc8a2010-04-28 11:02:31 +02004977 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07004978 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
4979 i915_gem_retire_work_handler);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004980 INIT_DELAYED_WORK(&dev_priv->mm.idle_work,
4981 i915_gem_idle_work_handler);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01004982 init_waitqueue_head(&dev_priv->gpu_error.reset_queue);
Chris Wilson31169712009-09-14 16:50:28 +01004983
Dave Airlie94400122010-07-20 13:15:31 +10004984 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
Ville Syrjälädbb42742014-02-25 15:13:41 +02004985 if (!drm_core_check_feature(dev, DRIVER_MODESET) && IS_GEN3(dev)) {
Daniel Vetter50743292012-04-26 22:02:54 +02004986 I915_WRITE(MI_ARB_STATE,
4987 _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Dave Airlie94400122010-07-20 13:15:31 +10004988 }
4989
Chris Wilson72bfa192010-12-19 11:42:05 +00004990 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
4991
Jesse Barnesde151cf2008-11-12 10:03:55 -08004992 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08004993 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4994 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08004995
Ville Syrjälä42b5aea2013-04-09 13:02:47 +03004996 if (INTEL_INFO(dev)->gen >= 7 && !IS_VALLEYVIEW(dev))
4997 dev_priv->num_fence_regs = 32;
4998 else if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08004999 dev_priv->num_fence_regs = 16;
5000 else
5001 dev_priv->num_fence_regs = 8;
5002
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02005003 /* Initialize fence registers to zero */
Chris Wilson19b2dbd2013-06-12 10:15:12 +01005004 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
5005 i915_gem_restore_fences(dev);
Eric Anholt10ed13e2011-05-06 13:53:49 -07005006
Eric Anholt673a3942008-07-30 12:06:12 -07005007 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005008 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01005009
Chris Wilsonce453d82011-02-21 14:43:56 +00005010 dev_priv->mm.interruptible = true;
5011
Chris Wilsonceabbba52014-03-25 13:23:04 +00005012 dev_priv->mm.shrinker.scan_objects = i915_gem_shrinker_scan;
5013 dev_priv->mm.shrinker.count_objects = i915_gem_shrinker_count;
5014 dev_priv->mm.shrinker.seeks = DEFAULT_SEEKS;
5015 register_shrinker(&dev_priv->mm.shrinker);
Chris Wilson2cfcd322014-05-20 08:28:43 +01005016
5017 dev_priv->mm.oom_notifier.notifier_call = i915_gem_shrinker_oom;
5018 register_oom_notifier(&dev_priv->mm.oom_notifier);
Daniel Vetterf99d7062014-06-19 16:01:59 +02005019
Brad Volkin78a42372014-12-11 12:13:09 -08005020 i915_gem_batch_pool_init(dev, &dev_priv->mm.batch_pool);
5021
Daniel Vetterf99d7062014-06-19 16:01:59 +02005022 mutex_init(&dev_priv->fb_tracking.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07005023}
Dave Airlie71acb5e2008-12-30 20:31:46 +10005024
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005025void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00005026{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005027 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00005028
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005029 cancel_delayed_work_sync(&file_priv->mm.idle_work);
5030
Eric Anholtb9624422009-06-03 07:27:35 +00005031 /* Clean up our request list when the client is going away, so that
5032 * later retire_requests won't dereference our soon-to-be-gone
5033 * file_priv.
5034 */
Chris Wilson1c255952010-09-26 11:03:27 +01005035 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005036 while (!list_empty(&file_priv->mm.request_list)) {
5037 struct drm_i915_gem_request *request;
5038
5039 request = list_first_entry(&file_priv->mm.request_list,
5040 struct drm_i915_gem_request,
5041 client_list);
5042 list_del(&request->client_list);
5043 request->file_priv = NULL;
5044 }
Chris Wilson1c255952010-09-26 11:03:27 +01005045 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00005046}
Chris Wilson31169712009-09-14 16:50:28 +01005047
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005048static void
5049i915_gem_file_idle_work_handler(struct work_struct *work)
5050{
5051 struct drm_i915_file_private *file_priv =
5052 container_of(work, typeof(*file_priv), mm.idle_work.work);
5053
5054 atomic_set(&file_priv->rps_wait_boost, false);
5055}
5056
5057int i915_gem_open(struct drm_device *dev, struct drm_file *file)
5058{
5059 struct drm_i915_file_private *file_priv;
Ben Widawskye422b882013-12-06 14:10:58 -08005060 int ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005061
5062 DRM_DEBUG_DRIVER("\n");
5063
5064 file_priv = kzalloc(sizeof(*file_priv), GFP_KERNEL);
5065 if (!file_priv)
5066 return -ENOMEM;
5067
5068 file->driver_priv = file_priv;
5069 file_priv->dev_priv = dev->dev_private;
Chris Wilsonab0e7ff2014-02-25 17:11:24 +02005070 file_priv->file = file;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005071
5072 spin_lock_init(&file_priv->mm.lock);
5073 INIT_LIST_HEAD(&file_priv->mm.request_list);
5074 INIT_DELAYED_WORK(&file_priv->mm.idle_work,
5075 i915_gem_file_idle_work_handler);
5076
Ben Widawskye422b882013-12-06 14:10:58 -08005077 ret = i915_gem_context_open(dev, file);
5078 if (ret)
5079 kfree(file_priv);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005080
Ben Widawskye422b882013-12-06 14:10:58 -08005081 return ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005082}
5083
Daniel Vetterb680c372014-09-19 18:27:27 +02005084/**
5085 * i915_gem_track_fb - update frontbuffer tracking
5086 * old: current GEM buffer for the frontbuffer slots
5087 * new: new GEM buffer for the frontbuffer slots
5088 * frontbuffer_bits: bitmask of frontbuffer slots
5089 *
5090 * This updates the frontbuffer tracking bits @frontbuffer_bits by clearing them
5091 * from @old and setting them in @new. Both @old and @new can be NULL.
5092 */
Daniel Vettera071fa02014-06-18 23:28:09 +02005093void i915_gem_track_fb(struct drm_i915_gem_object *old,
5094 struct drm_i915_gem_object *new,
5095 unsigned frontbuffer_bits)
5096{
5097 if (old) {
5098 WARN_ON(!mutex_is_locked(&old->base.dev->struct_mutex));
5099 WARN_ON(!(old->frontbuffer_bits & frontbuffer_bits));
5100 old->frontbuffer_bits &= ~frontbuffer_bits;
5101 }
5102
5103 if (new) {
5104 WARN_ON(!mutex_is_locked(&new->base.dev->struct_mutex));
5105 WARN_ON(new->frontbuffer_bits & frontbuffer_bits);
5106 new->frontbuffer_bits |= frontbuffer_bits;
5107 }
5108}
5109
Chris Wilson57745062012-11-21 13:04:04 +00005110static bool mutex_is_locked_by(struct mutex *mutex, struct task_struct *task)
5111{
5112 if (!mutex_is_locked(mutex))
5113 return false;
5114
5115#if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_MUTEXES)
5116 return mutex->owner == task;
5117#else
5118 /* Since UP may be pre-empted, we cannot assume that we own the lock */
5119 return false;
5120#endif
5121}
5122
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005123static bool i915_gem_shrinker_lock(struct drm_device *dev, bool *unlock)
5124{
5125 if (!mutex_trylock(&dev->struct_mutex)) {
5126 if (!mutex_is_locked_by(&dev->struct_mutex, current))
5127 return false;
5128
5129 if (to_i915(dev)->mm.shrinker_no_lock_stealing)
5130 return false;
5131
5132 *unlock = false;
5133 } else
5134 *unlock = true;
5135
5136 return true;
5137}
5138
Chris Wilsonceabbba52014-03-25 13:23:04 +00005139static int num_vma_bound(struct drm_i915_gem_object *obj)
5140{
5141 struct i915_vma *vma;
5142 int count = 0;
5143
5144 list_for_each_entry(vma, &obj->vma_list, vma_link)
5145 if (drm_mm_node_allocated(&vma->node))
5146 count++;
5147
5148 return count;
5149}
5150
Dave Chinner7dc19d52013-08-28 10:18:11 +10005151static unsigned long
Chris Wilsonceabbba52014-03-25 13:23:04 +00005152i915_gem_shrinker_count(struct shrinker *shrinker, struct shrink_control *sc)
Chris Wilson31169712009-09-14 16:50:28 +01005153{
Chris Wilson17250b72010-10-28 12:51:39 +01005154 struct drm_i915_private *dev_priv =
Chris Wilsonceabbba52014-03-25 13:23:04 +00005155 container_of(shrinker, struct drm_i915_private, mm.shrinker);
Chris Wilson17250b72010-10-28 12:51:39 +01005156 struct drm_device *dev = dev_priv->dev;
Chris Wilson6c085a72012-08-20 11:40:46 +02005157 struct drm_i915_gem_object *obj;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005158 unsigned long count;
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005159 bool unlock;
Chris Wilson17250b72010-10-28 12:51:39 +01005160
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005161 if (!i915_gem_shrinker_lock(dev, &unlock))
5162 return 0;
Chris Wilson31169712009-09-14 16:50:28 +01005163
Dave Chinner7dc19d52013-08-28 10:18:11 +10005164 count = 0;
Ben Widawsky35c20a62013-05-31 11:28:48 -07005165 list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list)
Chris Wilsona5570172012-09-04 21:02:54 +01005166 if (obj->pages_pin_count == 0)
Dave Chinner7dc19d52013-08-28 10:18:11 +10005167 count += obj->base.size >> PAGE_SHIFT;
Ben Widawskyfcb4a572013-07-31 16:59:57 -07005168
5169 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
Chris Wilsonceabbba52014-03-25 13:23:04 +00005170 if (!i915_gem_obj_is_pinned(obj) &&
5171 obj->pages_pin_count == num_vma_bound(obj))
Dave Chinner7dc19d52013-08-28 10:18:11 +10005172 count += obj->base.size >> PAGE_SHIFT;
Ben Widawskyfcb4a572013-07-31 16:59:57 -07005173 }
Chris Wilson31169712009-09-14 16:50:28 +01005174
Chris Wilson57745062012-11-21 13:04:04 +00005175 if (unlock)
5176 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9973b42013-10-04 10:33:00 +01005177
Dave Chinner7dc19d52013-08-28 10:18:11 +10005178 return count;
Chris Wilson31169712009-09-14 16:50:28 +01005179}
Ben Widawskya70a3142013-07-31 16:59:56 -07005180
5181/* All the new VM stuff */
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00005182unsigned long i915_gem_obj_offset_view(struct drm_i915_gem_object *o,
5183 struct i915_address_space *vm,
5184 enum i915_ggtt_view_type view)
Ben Widawskya70a3142013-07-31 16:59:56 -07005185{
5186 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
5187 struct i915_vma *vma;
5188
Daniel Vetter896ab1a2014-08-06 15:04:51 +02005189 WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base);
Ben Widawskya70a3142013-07-31 16:59:56 -07005190
Ben Widawskya70a3142013-07-31 16:59:56 -07005191 list_for_each_entry(vma, &o->vma_list, vma_link) {
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00005192 if (vma->vm == vm && vma->ggtt_view.type == view)
Ben Widawskya70a3142013-07-31 16:59:56 -07005193 return vma->node.start;
5194
5195 }
Daniel Vetterf25748ea2014-06-17 22:34:38 +02005196 WARN(1, "%s vma for this object not found.\n",
5197 i915_is_ggtt(vm) ? "global" : "ppgtt");
Ben Widawskya70a3142013-07-31 16:59:56 -07005198 return -1;
5199}
5200
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00005201bool i915_gem_obj_bound_view(struct drm_i915_gem_object *o,
5202 struct i915_address_space *vm,
5203 enum i915_ggtt_view_type view)
Ben Widawskya70a3142013-07-31 16:59:56 -07005204{
5205 struct i915_vma *vma;
5206
5207 list_for_each_entry(vma, &o->vma_list, vma_link)
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00005208 if (vma->vm == vm &&
5209 vma->ggtt_view.type == view &&
5210 drm_mm_node_allocated(&vma->node))
Ben Widawskya70a3142013-07-31 16:59:56 -07005211 return true;
5212
5213 return false;
5214}
5215
5216bool i915_gem_obj_bound_any(struct drm_i915_gem_object *o)
5217{
Chris Wilson5a1d5eb2013-09-10 11:27:37 +01005218 struct i915_vma *vma;
Ben Widawskya70a3142013-07-31 16:59:56 -07005219
Chris Wilson5a1d5eb2013-09-10 11:27:37 +01005220 list_for_each_entry(vma, &o->vma_list, vma_link)
5221 if (drm_mm_node_allocated(&vma->node))
Ben Widawskya70a3142013-07-31 16:59:56 -07005222 return true;
5223
5224 return false;
5225}
5226
5227unsigned long i915_gem_obj_size(struct drm_i915_gem_object *o,
5228 struct i915_address_space *vm)
5229{
5230 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
5231 struct i915_vma *vma;
5232
Daniel Vetter896ab1a2014-08-06 15:04:51 +02005233 WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base);
Ben Widawskya70a3142013-07-31 16:59:56 -07005234
5235 BUG_ON(list_empty(&o->vma_list));
5236
5237 list_for_each_entry(vma, &o->vma_list, vma_link)
5238 if (vma->vm == vm)
5239 return vma->node.size;
5240
5241 return 0;
5242}
5243
Dave Chinner7dc19d52013-08-28 10:18:11 +10005244static unsigned long
Chris Wilsonceabbba52014-03-25 13:23:04 +00005245i915_gem_shrinker_scan(struct shrinker *shrinker, struct shrink_control *sc)
Dave Chinner7dc19d52013-08-28 10:18:11 +10005246{
5247 struct drm_i915_private *dev_priv =
Chris Wilsonceabbba52014-03-25 13:23:04 +00005248 container_of(shrinker, struct drm_i915_private, mm.shrinker);
Dave Chinner7dc19d52013-08-28 10:18:11 +10005249 struct drm_device *dev = dev_priv->dev;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005250 unsigned long freed;
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005251 bool unlock;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005252
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005253 if (!i915_gem_shrinker_lock(dev, &unlock))
5254 return SHRINK_STOP;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005255
Chris Wilson21ab4e72014-09-09 11:16:08 +01005256 freed = i915_gem_shrink(dev_priv,
5257 sc->nr_to_scan,
5258 I915_SHRINK_BOUND |
5259 I915_SHRINK_UNBOUND |
5260 I915_SHRINK_PURGEABLE);
Chris Wilsond9973b42013-10-04 10:33:00 +01005261 if (freed < sc->nr_to_scan)
Chris Wilson21ab4e72014-09-09 11:16:08 +01005262 freed += i915_gem_shrink(dev_priv,
5263 sc->nr_to_scan - freed,
5264 I915_SHRINK_BOUND |
5265 I915_SHRINK_UNBOUND);
Dave Chinner7dc19d52013-08-28 10:18:11 +10005266 if (unlock)
5267 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9973b42013-10-04 10:33:00 +01005268
Dave Chinner7dc19d52013-08-28 10:18:11 +10005269 return freed;
5270}
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005271
Chris Wilson2cfcd322014-05-20 08:28:43 +01005272static int
5273i915_gem_shrinker_oom(struct notifier_block *nb, unsigned long event, void *ptr)
5274{
5275 struct drm_i915_private *dev_priv =
5276 container_of(nb, struct drm_i915_private, mm.oom_notifier);
5277 struct drm_device *dev = dev_priv->dev;
5278 struct drm_i915_gem_object *obj;
5279 unsigned long timeout = msecs_to_jiffies(5000) + 1;
Chris Wilson005445c2014-10-08 11:25:16 +01005280 unsigned long pinned, bound, unbound, freed_pages;
Chris Wilson2cfcd322014-05-20 08:28:43 +01005281 bool was_interruptible;
5282 bool unlock;
5283
Chris Wilsona1db2fa2014-07-11 11:28:00 +01005284 while (!i915_gem_shrinker_lock(dev, &unlock) && --timeout) {
Chris Wilson2cfcd322014-05-20 08:28:43 +01005285 schedule_timeout_killable(1);
Chris Wilsona1db2fa2014-07-11 11:28:00 +01005286 if (fatal_signal_pending(current))
5287 return NOTIFY_DONE;
5288 }
Chris Wilson2cfcd322014-05-20 08:28:43 +01005289 if (timeout == 0) {
5290 pr_err("Unable to purge GPU memory due lock contention.\n");
5291 return NOTIFY_DONE;
5292 }
5293
5294 was_interruptible = dev_priv->mm.interruptible;
5295 dev_priv->mm.interruptible = false;
5296
Chris Wilson005445c2014-10-08 11:25:16 +01005297 freed_pages = i915_gem_shrink_all(dev_priv);
Chris Wilson2cfcd322014-05-20 08:28:43 +01005298
5299 dev_priv->mm.interruptible = was_interruptible;
5300
5301 /* Because we may be allocating inside our own driver, we cannot
5302 * assert that there are no objects with pinned pages that are not
5303 * being pointed to by hardware.
5304 */
5305 unbound = bound = pinned = 0;
5306 list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list) {
5307 if (!obj->base.filp) /* not backed by a freeable object */
5308 continue;
5309
5310 if (obj->pages_pin_count)
5311 pinned += obj->base.size;
5312 else
5313 unbound += obj->base.size;
5314 }
5315 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
5316 if (!obj->base.filp)
5317 continue;
5318
5319 if (obj->pages_pin_count)
5320 pinned += obj->base.size;
5321 else
5322 bound += obj->base.size;
5323 }
5324
5325 if (unlock)
5326 mutex_unlock(&dev->struct_mutex);
5327
Chris Wilsonbb9059d2014-10-08 11:25:17 +01005328 if (freed_pages || unbound || bound)
5329 pr_info("Purging GPU memory, %lu bytes freed, %lu bytes still pinned.\n",
5330 freed_pages << PAGE_SHIFT, pinned);
Chris Wilson2cfcd322014-05-20 08:28:43 +01005331 if (unbound || bound)
5332 pr_err("%lu and %lu bytes still available in the "
5333 "bound and unbound GPU page lists.\n",
5334 bound, unbound);
5335
Chris Wilson005445c2014-10-08 11:25:16 +01005336 *(unsigned long *)ptr += freed_pages;
Chris Wilson2cfcd322014-05-20 08:28:43 +01005337 return NOTIFY_DONE;
5338}
5339
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005340struct i915_vma *i915_gem_obj_to_ggtt(struct drm_i915_gem_object *obj)
5341{
Tvrtko Ursulinf7635662014-12-03 14:59:24 +00005342 struct i915_address_space *ggtt = i915_obj_to_ggtt(obj);
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005343 struct i915_vma *vma;
5344
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00005345 list_for_each_entry(vma, &obj->vma_list, vma_link)
5346 if (vma->vm == ggtt &&
5347 vma->ggtt_view.type == I915_GGTT_VIEW_NORMAL)
Tvrtko Ursulinf7635662014-12-03 14:59:24 +00005348 return vma;
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005349
Tvrtko Ursulinf7635662014-12-03 14:59:24 +00005350 return NULL;
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005351}