blob: 52adcb680be3a61113630493c6c5b98509965912 [file] [log] [blame]
Eric Anholt673a3942008-07-30 12:06:12 -07001/*
2 * Copyright © 2008 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 *
26 */
27
David Howells760285e2012-10-02 18:01:07 +010028#include <drm/drmP.h>
David Herrmann0de23972013-07-24 21:07:52 +020029#include <drm/drm_vma_manager.h>
David Howells760285e2012-10-02 18:01:07 +010030#include <drm/i915_drm.h>
Eric Anholt673a3942008-07-30 12:06:12 -070031#include "i915_drv.h"
Chris Wilson1c5d22f2009-08-25 11:15:50 +010032#include "i915_trace.h"
Jesse Barnes652c3932009-08-17 13:31:43 -070033#include "intel_drv.h"
Chris Wilson2cfcd322014-05-20 08:28:43 +010034#include <linux/oom.h>
Hugh Dickins5949eac2011-06-27 16:18:18 -070035#include <linux/shmem_fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/slab.h>
Eric Anholt673a3942008-07-30 12:06:12 -070037#include <linux/swap.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080038#include <linux/pci.h>
Daniel Vetter1286ff72012-05-10 15:25:09 +020039#include <linux/dma-buf.h>
Eric Anholt673a3942008-07-30 12:06:12 -070040
Chris Wilson05394f32010-11-08 19:18:58 +000041static void i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj);
Chris Wilson2c225692013-08-09 12:26:45 +010042static void i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj,
43 bool force);
Ben Widawsky07fe0b12013-07-31 17:00:10 -070044static __must_check int
Ben Widawsky23f54482013-09-11 14:57:48 -070045i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj,
46 bool readonly);
Chris Wilsonc8725f32014-03-17 12:21:55 +000047static void
48i915_gem_object_retire(struct drm_i915_gem_object *obj);
49
Chris Wilson61050802012-04-17 15:31:31 +010050static void i915_gem_write_fence(struct drm_device *dev, int reg,
51 struct drm_i915_gem_object *obj);
52static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
53 struct drm_i915_fence_reg *fence,
54 bool enable);
55
Chris Wilsonceabbba52014-03-25 13:23:04 +000056static unsigned long i915_gem_shrinker_count(struct shrinker *shrinker,
Dave Chinner7dc19d52013-08-28 10:18:11 +100057 struct shrink_control *sc);
Chris Wilsonceabbba52014-03-25 13:23:04 +000058static unsigned long i915_gem_shrinker_scan(struct shrinker *shrinker,
Dave Chinner7dc19d52013-08-28 10:18:11 +100059 struct shrink_control *sc);
Chris Wilson2cfcd322014-05-20 08:28:43 +010060static int i915_gem_shrinker_oom(struct notifier_block *nb,
61 unsigned long event,
62 void *ptr);
Chris Wilsond9973b42013-10-04 10:33:00 +010063static unsigned long i915_gem_shrink_all(struct drm_i915_private *dev_priv);
Chris Wilson31169712009-09-14 16:50:28 +010064
Chris Wilsonc76ce032013-08-08 14:41:03 +010065static bool cpu_cache_is_coherent(struct drm_device *dev,
66 enum i915_cache_level level)
67{
68 return HAS_LLC(dev) || level != I915_CACHE_NONE;
69}
70
Chris Wilson2c225692013-08-09 12:26:45 +010071static bool cpu_write_needs_clflush(struct drm_i915_gem_object *obj)
72{
73 if (!cpu_cache_is_coherent(obj->base.dev, obj->cache_level))
74 return true;
75
76 return obj->pin_display;
77}
78
Chris Wilson61050802012-04-17 15:31:31 +010079static inline void i915_gem_object_fence_lost(struct drm_i915_gem_object *obj)
80{
81 if (obj->tiling_mode)
82 i915_gem_release_mmap(obj);
83
84 /* As we do not have an associated fence register, we will force
85 * a tiling change if we ever need to acquire one.
86 */
Chris Wilson5d82e3e2012-04-21 16:23:23 +010087 obj->fence_dirty = false;
Chris Wilson61050802012-04-17 15:31:31 +010088 obj->fence_reg = I915_FENCE_REG_NONE;
89}
90
Chris Wilson73aa8082010-09-30 11:46:12 +010091/* some bookkeeping */
92static void i915_gem_info_add_obj(struct drm_i915_private *dev_priv,
93 size_t size)
94{
Daniel Vetterc20e8352013-07-24 22:40:23 +020095 spin_lock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +010096 dev_priv->mm.object_count++;
97 dev_priv->mm.object_memory += size;
Daniel Vetterc20e8352013-07-24 22:40:23 +020098 spin_unlock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +010099}
100
101static void i915_gem_info_remove_obj(struct drm_i915_private *dev_priv,
102 size_t size)
103{
Daniel Vetterc20e8352013-07-24 22:40:23 +0200104 spin_lock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +0100105 dev_priv->mm.object_count--;
106 dev_priv->mm.object_memory -= size;
Daniel Vetterc20e8352013-07-24 22:40:23 +0200107 spin_unlock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +0100108}
109
Chris Wilson21dd3732011-01-26 15:55:56 +0000110static int
Daniel Vetter33196de2012-11-14 17:14:05 +0100111i915_gem_wait_for_error(struct i915_gpu_error *error)
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100112{
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100113 int ret;
114
Daniel Vetter7abb6902013-05-24 21:29:32 +0200115#define EXIT_COND (!i915_reset_in_progress(error) || \
116 i915_terminally_wedged(error))
Daniel Vetter1f83fee2012-11-15 17:17:22 +0100117 if (EXIT_COND)
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100118 return 0;
119
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200120 /*
121 * Only wait 10 seconds for the gpu reset to complete to avoid hanging
122 * userspace. If it takes that long something really bad is going on and
123 * we should simply try to bail out and fail as gracefully as possible.
124 */
Daniel Vetter1f83fee2012-11-15 17:17:22 +0100125 ret = wait_event_interruptible_timeout(error->reset_queue,
126 EXIT_COND,
127 10*HZ);
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200128 if (ret == 0) {
129 DRM_ERROR("Timed out waiting for the gpu reset to complete\n");
130 return -EIO;
131 } else if (ret < 0) {
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100132 return ret;
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200133 }
Daniel Vetter1f83fee2012-11-15 17:17:22 +0100134#undef EXIT_COND
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100135
Chris Wilson21dd3732011-01-26 15:55:56 +0000136 return 0;
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100137}
138
Chris Wilson54cf91d2010-11-25 18:00:26 +0000139int i915_mutex_lock_interruptible(struct drm_device *dev)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100140{
Daniel Vetter33196de2012-11-14 17:14:05 +0100141 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson76c1dec2010-09-25 11:22:51 +0100142 int ret;
143
Daniel Vetter33196de2012-11-14 17:14:05 +0100144 ret = i915_gem_wait_for_error(&dev_priv->gpu_error);
Chris Wilson76c1dec2010-09-25 11:22:51 +0100145 if (ret)
146 return ret;
147
148 ret = mutex_lock_interruptible(&dev->struct_mutex);
149 if (ret)
150 return ret;
151
Chris Wilson23bc5982010-09-29 16:10:57 +0100152 WARN_ON(i915_verify_lists(dev));
Chris Wilson76c1dec2010-09-25 11:22:51 +0100153 return 0;
154}
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100155
Chris Wilson7d1c4802010-08-07 21:45:03 +0100156static inline bool
Chris Wilson05394f32010-11-08 19:18:58 +0000157i915_gem_object_is_inactive(struct drm_i915_gem_object *obj)
Chris Wilson7d1c4802010-08-07 21:45:03 +0100158{
Ben Widawsky98438772013-07-31 17:00:12 -0700159 return i915_gem_obj_bound_any(obj) && !obj->active;
Chris Wilson7d1c4802010-08-07 21:45:03 +0100160}
161
Eric Anholt673a3942008-07-30 12:06:12 -0700162int
Eric Anholt5a125c32008-10-22 21:40:13 -0700163i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000164 struct drm_file *file)
Eric Anholt5a125c32008-10-22 21:40:13 -0700165{
Chris Wilson73aa8082010-09-30 11:46:12 +0100166 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt5a125c32008-10-22 21:40:13 -0700167 struct drm_i915_gem_get_aperture *args = data;
Chris Wilson6299f992010-11-24 12:23:44 +0000168 struct drm_i915_gem_object *obj;
169 size_t pinned;
Eric Anholt5a125c32008-10-22 21:40:13 -0700170
Chris Wilson6299f992010-11-24 12:23:44 +0000171 pinned = 0;
Chris Wilson73aa8082010-09-30 11:46:12 +0100172 mutex_lock(&dev->struct_mutex);
Ben Widawsky35c20a62013-05-31 11:28:48 -0700173 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list)
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800174 if (i915_gem_obj_is_pinned(obj))
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700175 pinned += i915_gem_obj_ggtt_size(obj);
Chris Wilson73aa8082010-09-30 11:46:12 +0100176 mutex_unlock(&dev->struct_mutex);
Eric Anholt5a125c32008-10-22 21:40:13 -0700177
Ben Widawsky853ba5d2013-07-16 16:50:05 -0700178 args->aper_size = dev_priv->gtt.base.total;
Akshay Joshi0206e352011-08-16 15:34:10 -0400179 args->aper_available_size = args->aper_size - pinned;
Chris Wilson6299f992010-11-24 12:23:44 +0000180
Eric Anholt5a125c32008-10-22 21:40:13 -0700181 return 0;
182}
183
Chris Wilson6a2c4232014-11-04 04:51:40 -0800184static int
185i915_gem_object_get_pages_phys(struct drm_i915_gem_object *obj)
Chris Wilson00731152014-05-21 12:42:56 +0100186{
Chris Wilson6a2c4232014-11-04 04:51:40 -0800187 struct address_space *mapping = file_inode(obj->base.filp)->i_mapping;
188 char *vaddr = obj->phys_handle->vaddr;
189 struct sg_table *st;
190 struct scatterlist *sg;
191 int i;
Chris Wilson00731152014-05-21 12:42:56 +0100192
Chris Wilson6a2c4232014-11-04 04:51:40 -0800193 if (WARN_ON(i915_gem_object_needs_bit17_swizzle(obj)))
194 return -EINVAL;
Chris Wilson00731152014-05-21 12:42:56 +0100195
Chris Wilson6a2c4232014-11-04 04:51:40 -0800196 for (i = 0; i < obj->base.size / PAGE_SIZE; i++) {
197 struct page *page;
198 char *src;
199
200 page = shmem_read_mapping_page(mapping, i);
201 if (IS_ERR(page))
202 return PTR_ERR(page);
203
204 src = kmap_atomic(page);
205 memcpy(vaddr, src, PAGE_SIZE);
206 drm_clflush_virt_range(vaddr, PAGE_SIZE);
207 kunmap_atomic(src);
208
209 page_cache_release(page);
210 vaddr += PAGE_SIZE;
211 }
212
213 i915_gem_chipset_flush(obj->base.dev);
214
215 st = kmalloc(sizeof(*st), GFP_KERNEL);
216 if (st == NULL)
217 return -ENOMEM;
218
219 if (sg_alloc_table(st, 1, GFP_KERNEL)) {
220 kfree(st);
221 return -ENOMEM;
222 }
223
224 sg = st->sgl;
225 sg->offset = 0;
226 sg->length = obj->base.size;
227
228 sg_dma_address(sg) = obj->phys_handle->busaddr;
229 sg_dma_len(sg) = obj->base.size;
230
231 obj->pages = st;
232 obj->has_dma_mapping = true;
233 return 0;
234}
235
236static void
237i915_gem_object_put_pages_phys(struct drm_i915_gem_object *obj)
238{
239 int ret;
240
241 BUG_ON(obj->madv == __I915_MADV_PURGED);
242
243 ret = i915_gem_object_set_to_cpu_domain(obj, true);
244 if (ret) {
245 /* In the event of a disaster, abandon all caches and
246 * hope for the best.
247 */
248 WARN_ON(ret != -EIO);
249 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
250 }
251
252 if (obj->madv == I915_MADV_DONTNEED)
253 obj->dirty = 0;
254
255 if (obj->dirty) {
Chris Wilson00731152014-05-21 12:42:56 +0100256 struct address_space *mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800257 char *vaddr = obj->phys_handle->vaddr;
Chris Wilson00731152014-05-21 12:42:56 +0100258 int i;
259
260 for (i = 0; i < obj->base.size / PAGE_SIZE; i++) {
Chris Wilson6a2c4232014-11-04 04:51:40 -0800261 struct page *page;
262 char *dst;
Chris Wilson00731152014-05-21 12:42:56 +0100263
Chris Wilson6a2c4232014-11-04 04:51:40 -0800264 page = shmem_read_mapping_page(mapping, i);
265 if (IS_ERR(page))
266 continue;
267
268 dst = kmap_atomic(page);
269 drm_clflush_virt_range(vaddr, PAGE_SIZE);
270 memcpy(dst, vaddr, PAGE_SIZE);
271 kunmap_atomic(dst);
272
273 set_page_dirty(page);
274 if (obj->madv == I915_MADV_WILLNEED)
Chris Wilson00731152014-05-21 12:42:56 +0100275 mark_page_accessed(page);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800276 page_cache_release(page);
Chris Wilson00731152014-05-21 12:42:56 +0100277 vaddr += PAGE_SIZE;
278 }
Chris Wilson6a2c4232014-11-04 04:51:40 -0800279 obj->dirty = 0;
Chris Wilson00731152014-05-21 12:42:56 +0100280 }
281
Chris Wilson6a2c4232014-11-04 04:51:40 -0800282 sg_free_table(obj->pages);
283 kfree(obj->pages);
284
285 obj->has_dma_mapping = false;
286}
287
288static void
289i915_gem_object_release_phys(struct drm_i915_gem_object *obj)
290{
291 drm_pci_free(obj->base.dev, obj->phys_handle);
292}
293
294static const struct drm_i915_gem_object_ops i915_gem_phys_ops = {
295 .get_pages = i915_gem_object_get_pages_phys,
296 .put_pages = i915_gem_object_put_pages_phys,
297 .release = i915_gem_object_release_phys,
298};
299
300static int
301drop_pages(struct drm_i915_gem_object *obj)
302{
303 struct i915_vma *vma, *next;
304 int ret;
305
306 drm_gem_object_reference(&obj->base);
307 list_for_each_entry_safe(vma, next, &obj->vma_list, vma_link)
308 if (i915_vma_unbind(vma))
309 break;
310
311 ret = i915_gem_object_put_pages(obj);
312 drm_gem_object_unreference(&obj->base);
313
314 return ret;
Chris Wilson00731152014-05-21 12:42:56 +0100315}
316
317int
318i915_gem_object_attach_phys(struct drm_i915_gem_object *obj,
319 int align)
320{
321 drm_dma_handle_t *phys;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800322 int ret;
Chris Wilson00731152014-05-21 12:42:56 +0100323
324 if (obj->phys_handle) {
325 if ((unsigned long)obj->phys_handle->vaddr & (align -1))
326 return -EBUSY;
327
328 return 0;
329 }
330
331 if (obj->madv != I915_MADV_WILLNEED)
332 return -EFAULT;
333
334 if (obj->base.filp == NULL)
335 return -EINVAL;
336
Chris Wilson6a2c4232014-11-04 04:51:40 -0800337 ret = drop_pages(obj);
338 if (ret)
339 return ret;
340
Chris Wilson00731152014-05-21 12:42:56 +0100341 /* create a new object */
342 phys = drm_pci_alloc(obj->base.dev, obj->base.size, align);
343 if (!phys)
344 return -ENOMEM;
345
Chris Wilson00731152014-05-21 12:42:56 +0100346 obj->phys_handle = phys;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800347 obj->ops = &i915_gem_phys_ops;
348
349 return i915_gem_object_get_pages(obj);
Chris Wilson00731152014-05-21 12:42:56 +0100350}
351
352static int
353i915_gem_phys_pwrite(struct drm_i915_gem_object *obj,
354 struct drm_i915_gem_pwrite *args,
355 struct drm_file *file_priv)
356{
357 struct drm_device *dev = obj->base.dev;
358 void *vaddr = obj->phys_handle->vaddr + args->offset;
359 char __user *user_data = to_user_ptr(args->data_ptr);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800360 int ret;
361
362 /* We manually control the domain here and pretend that it
363 * remains coherent i.e. in the GTT domain, like shmem_pwrite.
364 */
365 ret = i915_gem_object_wait_rendering(obj, false);
366 if (ret)
367 return ret;
Chris Wilson00731152014-05-21 12:42:56 +0100368
369 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
370 unsigned long unwritten;
371
372 /* The physical object once assigned is fixed for the lifetime
373 * of the obj, so we can safely drop the lock and continue
374 * to access vaddr.
375 */
376 mutex_unlock(&dev->struct_mutex);
377 unwritten = copy_from_user(vaddr, user_data, args->size);
378 mutex_lock(&dev->struct_mutex);
379 if (unwritten)
380 return -EFAULT;
381 }
382
Chris Wilson6a2c4232014-11-04 04:51:40 -0800383 drm_clflush_virt_range(vaddr, args->size);
Chris Wilson00731152014-05-21 12:42:56 +0100384 i915_gem_chipset_flush(dev);
385 return 0;
386}
387
Chris Wilson42dcedd2012-11-15 11:32:30 +0000388void *i915_gem_object_alloc(struct drm_device *dev)
389{
390 struct drm_i915_private *dev_priv = dev->dev_private;
Joe Perchesfac15c12013-08-29 13:11:07 -0700391 return kmem_cache_zalloc(dev_priv->slab, GFP_KERNEL);
Chris Wilson42dcedd2012-11-15 11:32:30 +0000392}
393
394void i915_gem_object_free(struct drm_i915_gem_object *obj)
395{
396 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
397 kmem_cache_free(dev_priv->slab, obj);
398}
399
Dave Airlieff72145b2011-02-07 12:16:14 +1000400static int
401i915_gem_create(struct drm_file *file,
402 struct drm_device *dev,
403 uint64_t size,
404 uint32_t *handle_p)
Eric Anholt673a3942008-07-30 12:06:12 -0700405{
Chris Wilson05394f32010-11-08 19:18:58 +0000406 struct drm_i915_gem_object *obj;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300407 int ret;
408 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700409
Dave Airlieff72145b2011-02-07 12:16:14 +1000410 size = roundup(size, PAGE_SIZE);
Chris Wilson8ffc0242011-09-14 14:14:28 +0200411 if (size == 0)
412 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700413
414 /* Allocate the new object */
Dave Airlieff72145b2011-02-07 12:16:14 +1000415 obj = i915_gem_alloc_object(dev, size);
Eric Anholt673a3942008-07-30 12:06:12 -0700416 if (obj == NULL)
417 return -ENOMEM;
418
Chris Wilson05394f32010-11-08 19:18:58 +0000419 ret = drm_gem_handle_create(file, &obj->base, &handle);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100420 /* drop reference from allocate - handle holds it now */
Daniel Vetterd861e332013-07-24 23:25:03 +0200421 drm_gem_object_unreference_unlocked(&obj->base);
422 if (ret)
423 return ret;
Chris Wilson202f2fe2010-10-14 13:20:40 +0100424
Dave Airlieff72145b2011-02-07 12:16:14 +1000425 *handle_p = handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700426 return 0;
427}
428
Dave Airlieff72145b2011-02-07 12:16:14 +1000429int
430i915_gem_dumb_create(struct drm_file *file,
431 struct drm_device *dev,
432 struct drm_mode_create_dumb *args)
433{
434 /* have to work out size/pitch and return them */
Paulo Zanonide45eaf2013-10-18 18:48:24 -0300435 args->pitch = ALIGN(args->width * DIV_ROUND_UP(args->bpp, 8), 64);
Dave Airlieff72145b2011-02-07 12:16:14 +1000436 args->size = args->pitch * args->height;
437 return i915_gem_create(file, dev,
Dave Airlieda6b51d2014-12-24 13:11:17 +1000438 args->size, &args->handle);
Dave Airlieff72145b2011-02-07 12:16:14 +1000439}
440
Dave Airlieff72145b2011-02-07 12:16:14 +1000441/**
442 * Creates a new mm object and returns a handle to it.
443 */
444int
445i915_gem_create_ioctl(struct drm_device *dev, void *data,
446 struct drm_file *file)
447{
448 struct drm_i915_gem_create *args = data;
Daniel Vetter63ed2cb2012-04-23 16:50:50 +0200449
Dave Airlieff72145b2011-02-07 12:16:14 +1000450 return i915_gem_create(file, dev,
Dave Airlieda6b51d2014-12-24 13:11:17 +1000451 args->size, &args->handle);
Dave Airlieff72145b2011-02-07 12:16:14 +1000452}
453
Daniel Vetter8c599672011-12-14 13:57:31 +0100454static inline int
Daniel Vetter8461d222011-12-14 13:57:32 +0100455__copy_to_user_swizzled(char __user *cpu_vaddr,
456 const char *gpu_vaddr, int gpu_offset,
457 int length)
458{
459 int ret, cpu_offset = 0;
460
461 while (length > 0) {
462 int cacheline_end = ALIGN(gpu_offset + 1, 64);
463 int this_length = min(cacheline_end - gpu_offset, length);
464 int swizzled_gpu_offset = gpu_offset ^ 64;
465
466 ret = __copy_to_user(cpu_vaddr + cpu_offset,
467 gpu_vaddr + swizzled_gpu_offset,
468 this_length);
469 if (ret)
470 return ret + length;
471
472 cpu_offset += this_length;
473 gpu_offset += this_length;
474 length -= this_length;
475 }
476
477 return 0;
478}
479
480static inline int
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700481__copy_from_user_swizzled(char *gpu_vaddr, int gpu_offset,
482 const char __user *cpu_vaddr,
Daniel Vetter8c599672011-12-14 13:57:31 +0100483 int length)
484{
485 int ret, cpu_offset = 0;
486
487 while (length > 0) {
488 int cacheline_end = ALIGN(gpu_offset + 1, 64);
489 int this_length = min(cacheline_end - gpu_offset, length);
490 int swizzled_gpu_offset = gpu_offset ^ 64;
491
492 ret = __copy_from_user(gpu_vaddr + swizzled_gpu_offset,
493 cpu_vaddr + cpu_offset,
494 this_length);
495 if (ret)
496 return ret + length;
497
498 cpu_offset += this_length;
499 gpu_offset += this_length;
500 length -= this_length;
501 }
502
503 return 0;
504}
505
Brad Volkin4c914c02014-02-18 10:15:45 -0800506/*
507 * Pins the specified object's pages and synchronizes the object with
508 * GPU accesses. Sets needs_clflush to non-zero if the caller should
509 * flush the object from the CPU cache.
510 */
511int i915_gem_obj_prepare_shmem_read(struct drm_i915_gem_object *obj,
512 int *needs_clflush)
513{
514 int ret;
515
516 *needs_clflush = 0;
517
518 if (!obj->base.filp)
519 return -EINVAL;
520
521 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU)) {
522 /* If we're not in the cpu read domain, set ourself into the gtt
523 * read domain and manually flush cachelines (if required). This
524 * optimizes for the case when the gpu will dirty the data
525 * anyway again before the next pread happens. */
526 *needs_clflush = !cpu_cache_is_coherent(obj->base.dev,
527 obj->cache_level);
528 ret = i915_gem_object_wait_rendering(obj, true);
529 if (ret)
530 return ret;
Chris Wilsonc8725f32014-03-17 12:21:55 +0000531
532 i915_gem_object_retire(obj);
Brad Volkin4c914c02014-02-18 10:15:45 -0800533 }
534
535 ret = i915_gem_object_get_pages(obj);
536 if (ret)
537 return ret;
538
539 i915_gem_object_pin_pages(obj);
540
541 return ret;
542}
543
Daniel Vetterd174bd62012-03-25 19:47:40 +0200544/* Per-page copy function for the shmem pread fastpath.
545 * Flushes invalid cachelines before reading the target if
546 * needs_clflush is set. */
Eric Anholteb014592009-03-10 11:44:52 -0700547static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200548shmem_pread_fast(struct page *page, int shmem_page_offset, int page_length,
549 char __user *user_data,
550 bool page_do_bit17_swizzling, bool needs_clflush)
551{
552 char *vaddr;
553 int ret;
554
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200555 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200556 return -EINVAL;
557
558 vaddr = kmap_atomic(page);
559 if (needs_clflush)
560 drm_clflush_virt_range(vaddr + shmem_page_offset,
561 page_length);
562 ret = __copy_to_user_inatomic(user_data,
563 vaddr + shmem_page_offset,
564 page_length);
565 kunmap_atomic(vaddr);
566
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100567 return ret ? -EFAULT : 0;
Daniel Vetterd174bd62012-03-25 19:47:40 +0200568}
569
Daniel Vetter23c18c72012-03-25 19:47:42 +0200570static void
571shmem_clflush_swizzled_range(char *addr, unsigned long length,
572 bool swizzled)
573{
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200574 if (unlikely(swizzled)) {
Daniel Vetter23c18c72012-03-25 19:47:42 +0200575 unsigned long start = (unsigned long) addr;
576 unsigned long end = (unsigned long) addr + length;
577
578 /* For swizzling simply ensure that we always flush both
579 * channels. Lame, but simple and it works. Swizzled
580 * pwrite/pread is far from a hotpath - current userspace
581 * doesn't use it at all. */
582 start = round_down(start, 128);
583 end = round_up(end, 128);
584
585 drm_clflush_virt_range((void *)start, end - start);
586 } else {
587 drm_clflush_virt_range(addr, length);
588 }
589
590}
591
Daniel Vetterd174bd62012-03-25 19:47:40 +0200592/* Only difference to the fast-path function is that this can handle bit17
593 * and uses non-atomic copy and kmap functions. */
594static int
595shmem_pread_slow(struct page *page, int shmem_page_offset, int page_length,
596 char __user *user_data,
597 bool page_do_bit17_swizzling, bool needs_clflush)
598{
599 char *vaddr;
600 int ret;
601
602 vaddr = kmap(page);
603 if (needs_clflush)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200604 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
605 page_length,
606 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200607
608 if (page_do_bit17_swizzling)
609 ret = __copy_to_user_swizzled(user_data,
610 vaddr, shmem_page_offset,
611 page_length);
612 else
613 ret = __copy_to_user(user_data,
614 vaddr + shmem_page_offset,
615 page_length);
616 kunmap(page);
617
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100618 return ret ? - EFAULT : 0;
Daniel Vetterd174bd62012-03-25 19:47:40 +0200619}
620
Eric Anholteb014592009-03-10 11:44:52 -0700621static int
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200622i915_gem_shmem_pread(struct drm_device *dev,
623 struct drm_i915_gem_object *obj,
624 struct drm_i915_gem_pread *args,
625 struct drm_file *file)
Eric Anholteb014592009-03-10 11:44:52 -0700626{
Daniel Vetter8461d222011-12-14 13:57:32 +0100627 char __user *user_data;
Eric Anholteb014592009-03-10 11:44:52 -0700628 ssize_t remain;
Daniel Vetter8461d222011-12-14 13:57:32 +0100629 loff_t offset;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100630 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8461d222011-12-14 13:57:32 +0100631 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vetter96d79b52012-03-25 19:47:36 +0200632 int prefaulted = 0;
Daniel Vetter84897312012-03-25 19:47:31 +0200633 int needs_clflush = 0;
Imre Deak67d5a502013-02-18 19:28:02 +0200634 struct sg_page_iter sg_iter;
Eric Anholteb014592009-03-10 11:44:52 -0700635
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200636 user_data = to_user_ptr(args->data_ptr);
Eric Anholteb014592009-03-10 11:44:52 -0700637 remain = args->size;
638
Daniel Vetter8461d222011-12-14 13:57:32 +0100639 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700640
Brad Volkin4c914c02014-02-18 10:15:45 -0800641 ret = i915_gem_obj_prepare_shmem_read(obj, &needs_clflush);
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100642 if (ret)
643 return ret;
644
Eric Anholteb014592009-03-10 11:44:52 -0700645 offset = args->offset;
Daniel Vetter8461d222011-12-14 13:57:32 +0100646
Imre Deak67d5a502013-02-18 19:28:02 +0200647 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents,
648 offset >> PAGE_SHIFT) {
Imre Deak2db76d72013-03-26 15:14:18 +0200649 struct page *page = sg_page_iter_page(&sg_iter);
Chris Wilson9da3da62012-06-01 15:20:22 +0100650
651 if (remain <= 0)
652 break;
653
Eric Anholteb014592009-03-10 11:44:52 -0700654 /* Operation in this page
655 *
Eric Anholteb014592009-03-10 11:44:52 -0700656 * shmem_page_offset = offset within page in shmem file
Eric Anholteb014592009-03-10 11:44:52 -0700657 * page_length = bytes to copy for this page
658 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100659 shmem_page_offset = offset_in_page(offset);
Eric Anholteb014592009-03-10 11:44:52 -0700660 page_length = remain;
661 if ((shmem_page_offset + page_length) > PAGE_SIZE)
662 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholteb014592009-03-10 11:44:52 -0700663
Daniel Vetter8461d222011-12-14 13:57:32 +0100664 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
665 (page_to_phys(page) & (1 << 17)) != 0;
666
Daniel Vetterd174bd62012-03-25 19:47:40 +0200667 ret = shmem_pread_fast(page, shmem_page_offset, page_length,
668 user_data, page_do_bit17_swizzling,
669 needs_clflush);
670 if (ret == 0)
671 goto next_page;
Eric Anholteb014592009-03-10 11:44:52 -0700672
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200673 mutex_unlock(&dev->struct_mutex);
674
Jani Nikulad330a952014-01-21 11:24:25 +0200675 if (likely(!i915.prefault_disable) && !prefaulted) {
Daniel Vetterf56f8212012-03-25 19:47:41 +0200676 ret = fault_in_multipages_writeable(user_data, remain);
Daniel Vetter96d79b52012-03-25 19:47:36 +0200677 /* Userspace is tricking us, but we've already clobbered
678 * its pages with the prefault and promised to write the
679 * data up to the first fault. Hence ignore any errors
680 * and just continue. */
681 (void)ret;
682 prefaulted = 1;
683 }
684
Daniel Vetterd174bd62012-03-25 19:47:40 +0200685 ret = shmem_pread_slow(page, shmem_page_offset, page_length,
686 user_data, page_do_bit17_swizzling,
687 needs_clflush);
Eric Anholteb014592009-03-10 11:44:52 -0700688
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200689 mutex_lock(&dev->struct_mutex);
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100690
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100691 if (ret)
Daniel Vetter8461d222011-12-14 13:57:32 +0100692 goto out;
Daniel Vetter8461d222011-12-14 13:57:32 +0100693
Chris Wilson17793c92014-03-07 08:30:36 +0000694next_page:
Eric Anholteb014592009-03-10 11:44:52 -0700695 remain -= page_length;
Daniel Vetter8461d222011-12-14 13:57:32 +0100696 user_data += page_length;
Eric Anholteb014592009-03-10 11:44:52 -0700697 offset += page_length;
698 }
699
Chris Wilson4f27b752010-10-14 15:26:45 +0100700out:
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100701 i915_gem_object_unpin_pages(obj);
702
Eric Anholteb014592009-03-10 11:44:52 -0700703 return ret;
704}
705
Eric Anholt673a3942008-07-30 12:06:12 -0700706/**
707 * Reads data from the object referenced by handle.
708 *
709 * On error, the contents of *data are undefined.
710 */
711int
712i915_gem_pread_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000713 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700714{
715 struct drm_i915_gem_pread *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000716 struct drm_i915_gem_object *obj;
Chris Wilson35b62a82010-09-26 20:23:38 +0100717 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700718
Chris Wilson51311d02010-11-17 09:10:42 +0000719 if (args->size == 0)
720 return 0;
721
722 if (!access_ok(VERIFY_WRITE,
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200723 to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +0000724 args->size))
725 return -EFAULT;
726
Chris Wilson4f27b752010-10-14 15:26:45 +0100727 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100728 if (ret)
Chris Wilson4f27b752010-10-14 15:26:45 +0100729 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700730
Chris Wilson05394f32010-11-08 19:18:58 +0000731 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000732 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100733 ret = -ENOENT;
734 goto unlock;
Chris Wilson4f27b752010-10-14 15:26:45 +0100735 }
Eric Anholt673a3942008-07-30 12:06:12 -0700736
Chris Wilson7dcd2492010-09-26 20:21:44 +0100737 /* Bounds check source. */
Chris Wilson05394f32010-11-08 19:18:58 +0000738 if (args->offset > obj->base.size ||
739 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100740 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100741 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100742 }
743
Daniel Vetter1286ff72012-05-10 15:25:09 +0200744 /* prime objects have no backing filp to GEM pread/pwrite
745 * pages from.
746 */
747 if (!obj->base.filp) {
748 ret = -EINVAL;
749 goto out;
750 }
751
Chris Wilsondb53a302011-02-03 11:57:46 +0000752 trace_i915_gem_object_pread(obj, args->offset, args->size);
753
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200754 ret = i915_gem_shmem_pread(dev, obj, args, file);
Eric Anholt673a3942008-07-30 12:06:12 -0700755
Chris Wilson35b62a82010-09-26 20:23:38 +0100756out:
Chris Wilson05394f32010-11-08 19:18:58 +0000757 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100758unlock:
Chris Wilson4f27b752010-10-14 15:26:45 +0100759 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700760 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700761}
762
Keith Packard0839ccb2008-10-30 19:38:48 -0700763/* This is the fast write path which cannot handle
764 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700765 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700766
Keith Packard0839ccb2008-10-30 19:38:48 -0700767static inline int
768fast_user_write(struct io_mapping *mapping,
769 loff_t page_base, int page_offset,
770 char __user *user_data,
771 int length)
772{
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700773 void __iomem *vaddr_atomic;
774 void *vaddr;
Keith Packard0839ccb2008-10-30 19:38:48 -0700775 unsigned long unwritten;
776
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700777 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base);
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700778 /* We can use the cpu mem copy function because this is X86. */
779 vaddr = (void __force*)vaddr_atomic + page_offset;
780 unwritten = __copy_from_user_inatomic_nocache(vaddr,
Keith Packard0839ccb2008-10-30 19:38:48 -0700781 user_data, length);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700782 io_mapping_unmap_atomic(vaddr_atomic);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100783 return unwritten;
Keith Packard0839ccb2008-10-30 19:38:48 -0700784}
785
Eric Anholt3de09aa2009-03-09 09:42:23 -0700786/**
787 * This is the fast pwrite path, where we copy the data directly from the
788 * user into the GTT, uncached.
789 */
Eric Anholt673a3942008-07-30 12:06:12 -0700790static int
Chris Wilson05394f32010-11-08 19:18:58 +0000791i915_gem_gtt_pwrite_fast(struct drm_device *dev,
792 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -0700793 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000794 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700795{
Jani Nikula3e31c6c2014-03-31 14:27:16 +0300796 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700797 ssize_t remain;
Keith Packard0839ccb2008-10-30 19:38:48 -0700798 loff_t offset, page_base;
Eric Anholt673a3942008-07-30 12:06:12 -0700799 char __user *user_data;
Daniel Vetter935aaa62012-03-25 19:47:35 +0200800 int page_offset, page_length, ret;
801
Daniel Vetter1ec9e262014-02-14 14:01:11 +0100802 ret = i915_gem_obj_ggtt_pin(obj, 0, PIN_MAPPABLE | PIN_NONBLOCK);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200803 if (ret)
804 goto out;
805
806 ret = i915_gem_object_set_to_gtt_domain(obj, true);
807 if (ret)
808 goto out_unpin;
809
810 ret = i915_gem_object_put_fence(obj);
811 if (ret)
812 goto out_unpin;
Eric Anholt673a3942008-07-30 12:06:12 -0700813
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200814 user_data = to_user_ptr(args->data_ptr);
Eric Anholt673a3942008-07-30 12:06:12 -0700815 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700816
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700817 offset = i915_gem_obj_ggtt_offset(obj) + args->offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700818
819 while (remain > 0) {
820 /* Operation in this page
821 *
Keith Packard0839ccb2008-10-30 19:38:48 -0700822 * page_base = page offset within aperture
823 * page_offset = offset within page
824 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -0700825 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100826 page_base = offset & PAGE_MASK;
827 page_offset = offset_in_page(offset);
Keith Packard0839ccb2008-10-30 19:38:48 -0700828 page_length = remain;
829 if ((page_offset + remain) > PAGE_SIZE)
830 page_length = PAGE_SIZE - page_offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700831
Keith Packard0839ccb2008-10-30 19:38:48 -0700832 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -0700833 * source page isn't available. Return the error and we'll
834 * retry in the slow path.
Keith Packard0839ccb2008-10-30 19:38:48 -0700835 */
Ben Widawsky5d4545a2013-01-17 12:45:15 -0800836 if (fast_user_write(dev_priv->gtt.mappable, page_base,
Daniel Vetter935aaa62012-03-25 19:47:35 +0200837 page_offset, user_data, page_length)) {
838 ret = -EFAULT;
839 goto out_unpin;
840 }
Eric Anholt673a3942008-07-30 12:06:12 -0700841
Keith Packard0839ccb2008-10-30 19:38:48 -0700842 remain -= page_length;
843 user_data += page_length;
844 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700845 }
Eric Anholt673a3942008-07-30 12:06:12 -0700846
Daniel Vetter935aaa62012-03-25 19:47:35 +0200847out_unpin:
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800848 i915_gem_object_ggtt_unpin(obj);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200849out:
Eric Anholt3de09aa2009-03-09 09:42:23 -0700850 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700851}
852
Daniel Vetterd174bd62012-03-25 19:47:40 +0200853/* Per-page copy function for the shmem pwrite fastpath.
854 * Flushes invalid cachelines before writing to the target if
855 * needs_clflush_before is set and flushes out any written cachelines after
856 * writing if needs_clflush is set. */
Eric Anholt673a3942008-07-30 12:06:12 -0700857static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200858shmem_pwrite_fast(struct page *page, int shmem_page_offset, int page_length,
859 char __user *user_data,
860 bool page_do_bit17_swizzling,
861 bool needs_clflush_before,
862 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700863{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200864 char *vaddr;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700865 int ret;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700866
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200867 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200868 return -EINVAL;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700869
Daniel Vetterd174bd62012-03-25 19:47:40 +0200870 vaddr = kmap_atomic(page);
871 if (needs_clflush_before)
872 drm_clflush_virt_range(vaddr + shmem_page_offset,
873 page_length);
Chris Wilsonc2831a92014-03-07 08:30:37 +0000874 ret = __copy_from_user_inatomic(vaddr + shmem_page_offset,
875 user_data, page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200876 if (needs_clflush_after)
877 drm_clflush_virt_range(vaddr + shmem_page_offset,
878 page_length);
879 kunmap_atomic(vaddr);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700880
Chris Wilson755d2212012-09-04 21:02:55 +0100881 return ret ? -EFAULT : 0;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700882}
883
Daniel Vetterd174bd62012-03-25 19:47:40 +0200884/* Only difference to the fast-path function is that this can handle bit17
885 * and uses non-atomic copy and kmap functions. */
Eric Anholt3043c602008-10-02 12:24:47 -0700886static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200887shmem_pwrite_slow(struct page *page, int shmem_page_offset, int page_length,
888 char __user *user_data,
889 bool page_do_bit17_swizzling,
890 bool needs_clflush_before,
891 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700892{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200893 char *vaddr;
894 int ret;
Eric Anholt40123c12009-03-09 13:42:30 -0700895
Daniel Vetterd174bd62012-03-25 19:47:40 +0200896 vaddr = kmap(page);
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200897 if (unlikely(needs_clflush_before || page_do_bit17_swizzling))
Daniel Vetter23c18c72012-03-25 19:47:42 +0200898 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
899 page_length,
900 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200901 if (page_do_bit17_swizzling)
902 ret = __copy_from_user_swizzled(vaddr, shmem_page_offset,
Chris Wilsone5281cc2010-10-28 13:45:36 +0100903 user_data,
904 page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200905 else
906 ret = __copy_from_user(vaddr + shmem_page_offset,
907 user_data,
908 page_length);
909 if (needs_clflush_after)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200910 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
911 page_length,
912 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200913 kunmap(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100914
Chris Wilson755d2212012-09-04 21:02:55 +0100915 return ret ? -EFAULT : 0;
Eric Anholt40123c12009-03-09 13:42:30 -0700916}
917
Eric Anholt40123c12009-03-09 13:42:30 -0700918static int
Daniel Vettere244a442012-03-25 19:47:28 +0200919i915_gem_shmem_pwrite(struct drm_device *dev,
920 struct drm_i915_gem_object *obj,
921 struct drm_i915_gem_pwrite *args,
922 struct drm_file *file)
Eric Anholt40123c12009-03-09 13:42:30 -0700923{
Eric Anholt40123c12009-03-09 13:42:30 -0700924 ssize_t remain;
Daniel Vetter8c599672011-12-14 13:57:31 +0100925 loff_t offset;
926 char __user *user_data;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100927 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8c599672011-12-14 13:57:31 +0100928 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vettere244a442012-03-25 19:47:28 +0200929 int hit_slowpath = 0;
Daniel Vetter58642882012-03-25 19:47:37 +0200930 int needs_clflush_after = 0;
931 int needs_clflush_before = 0;
Imre Deak67d5a502013-02-18 19:28:02 +0200932 struct sg_page_iter sg_iter;
Eric Anholt40123c12009-03-09 13:42:30 -0700933
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200934 user_data = to_user_ptr(args->data_ptr);
Eric Anholt40123c12009-03-09 13:42:30 -0700935 remain = args->size;
936
Daniel Vetter8c599672011-12-14 13:57:31 +0100937 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700938
Daniel Vetter58642882012-03-25 19:47:37 +0200939 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
940 /* If we're not in the cpu write domain, set ourself into the gtt
941 * write domain and manually flush cachelines (if required). This
942 * optimizes for the case when the gpu will use the data
943 * right away and we therefore have to clflush anyway. */
Chris Wilson2c225692013-08-09 12:26:45 +0100944 needs_clflush_after = cpu_write_needs_clflush(obj);
Ben Widawsky23f54482013-09-11 14:57:48 -0700945 ret = i915_gem_object_wait_rendering(obj, false);
946 if (ret)
947 return ret;
Chris Wilsonc8725f32014-03-17 12:21:55 +0000948
949 i915_gem_object_retire(obj);
Daniel Vetter58642882012-03-25 19:47:37 +0200950 }
Chris Wilsonc76ce032013-08-08 14:41:03 +0100951 /* Same trick applies to invalidate partially written cachelines read
952 * before writing. */
953 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0)
954 needs_clflush_before =
955 !cpu_cache_is_coherent(dev, obj->cache_level);
Daniel Vetter58642882012-03-25 19:47:37 +0200956
Chris Wilson755d2212012-09-04 21:02:55 +0100957 ret = i915_gem_object_get_pages(obj);
958 if (ret)
959 return ret;
960
961 i915_gem_object_pin_pages(obj);
962
Eric Anholt40123c12009-03-09 13:42:30 -0700963 offset = args->offset;
Chris Wilson05394f32010-11-08 19:18:58 +0000964 obj->dirty = 1;
Eric Anholt40123c12009-03-09 13:42:30 -0700965
Imre Deak67d5a502013-02-18 19:28:02 +0200966 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents,
967 offset >> PAGE_SHIFT) {
Imre Deak2db76d72013-03-26 15:14:18 +0200968 struct page *page = sg_page_iter_page(&sg_iter);
Daniel Vetter58642882012-03-25 19:47:37 +0200969 int partial_cacheline_write;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100970
Chris Wilson9da3da62012-06-01 15:20:22 +0100971 if (remain <= 0)
972 break;
973
Eric Anholt40123c12009-03-09 13:42:30 -0700974 /* Operation in this page
975 *
Eric Anholt40123c12009-03-09 13:42:30 -0700976 * shmem_page_offset = offset within page in shmem file
Eric Anholt40123c12009-03-09 13:42:30 -0700977 * page_length = bytes to copy for this page
978 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100979 shmem_page_offset = offset_in_page(offset);
Eric Anholt40123c12009-03-09 13:42:30 -0700980
981 page_length = remain;
982 if ((shmem_page_offset + page_length) > PAGE_SIZE)
983 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700984
Daniel Vetter58642882012-03-25 19:47:37 +0200985 /* If we don't overwrite a cacheline completely we need to be
986 * careful to have up-to-date data by first clflushing. Don't
987 * overcomplicate things and flush the entire patch. */
988 partial_cacheline_write = needs_clflush_before &&
989 ((shmem_page_offset | page_length)
990 & (boot_cpu_data.x86_clflush_size - 1));
991
Daniel Vetter8c599672011-12-14 13:57:31 +0100992 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
993 (page_to_phys(page) & (1 << 17)) != 0;
994
Daniel Vetterd174bd62012-03-25 19:47:40 +0200995 ret = shmem_pwrite_fast(page, shmem_page_offset, page_length,
996 user_data, page_do_bit17_swizzling,
997 partial_cacheline_write,
998 needs_clflush_after);
999 if (ret == 0)
1000 goto next_page;
Eric Anholt40123c12009-03-09 13:42:30 -07001001
Daniel Vettere244a442012-03-25 19:47:28 +02001002 hit_slowpath = 1;
Daniel Vettere244a442012-03-25 19:47:28 +02001003 mutex_unlock(&dev->struct_mutex);
Daniel Vetterd174bd62012-03-25 19:47:40 +02001004 ret = shmem_pwrite_slow(page, shmem_page_offset, page_length,
1005 user_data, page_do_bit17_swizzling,
1006 partial_cacheline_write,
1007 needs_clflush_after);
Eric Anholt40123c12009-03-09 13:42:30 -07001008
Daniel Vettere244a442012-03-25 19:47:28 +02001009 mutex_lock(&dev->struct_mutex);
Chris Wilson755d2212012-09-04 21:02:55 +01001010
Chris Wilson755d2212012-09-04 21:02:55 +01001011 if (ret)
Daniel Vetter8c599672011-12-14 13:57:31 +01001012 goto out;
Daniel Vetter8c599672011-12-14 13:57:31 +01001013
Chris Wilson17793c92014-03-07 08:30:36 +00001014next_page:
Eric Anholt40123c12009-03-09 13:42:30 -07001015 remain -= page_length;
Daniel Vetter8c599672011-12-14 13:57:31 +01001016 user_data += page_length;
Eric Anholt40123c12009-03-09 13:42:30 -07001017 offset += page_length;
1018 }
1019
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001020out:
Chris Wilson755d2212012-09-04 21:02:55 +01001021 i915_gem_object_unpin_pages(obj);
1022
Daniel Vettere244a442012-03-25 19:47:28 +02001023 if (hit_slowpath) {
Daniel Vetter8dcf0152012-11-15 16:53:58 +01001024 /*
1025 * Fixup: Flush cpu caches in case we didn't flush the dirty
1026 * cachelines in-line while writing and the object moved
1027 * out of the cpu write domain while we've dropped the lock.
1028 */
1029 if (!needs_clflush_after &&
1030 obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
Chris Wilson000433b2013-08-08 14:41:09 +01001031 if (i915_gem_clflush_object(obj, obj->pin_display))
1032 i915_gem_chipset_flush(dev);
Daniel Vettere244a442012-03-25 19:47:28 +02001033 }
Daniel Vetter8c599672011-12-14 13:57:31 +01001034 }
Eric Anholt40123c12009-03-09 13:42:30 -07001035
Daniel Vetter58642882012-03-25 19:47:37 +02001036 if (needs_clflush_after)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08001037 i915_gem_chipset_flush(dev);
Daniel Vetter58642882012-03-25 19:47:37 +02001038
Eric Anholt40123c12009-03-09 13:42:30 -07001039 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001040}
1041
1042/**
1043 * Writes data to the object referenced by handle.
1044 *
1045 * On error, the contents of the buffer that were to be modified are undefined.
1046 */
1047int
1048i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001049 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001050{
1051 struct drm_i915_gem_pwrite *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001052 struct drm_i915_gem_object *obj;
Chris Wilson51311d02010-11-17 09:10:42 +00001053 int ret;
1054
1055 if (args->size == 0)
1056 return 0;
1057
1058 if (!access_ok(VERIFY_READ,
Ville Syrjälä2bb46292013-02-22 16:12:51 +02001059 to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +00001060 args->size))
1061 return -EFAULT;
1062
Jani Nikulad330a952014-01-21 11:24:25 +02001063 if (likely(!i915.prefault_disable)) {
Xiong Zhang0b74b502013-07-19 13:51:24 +08001064 ret = fault_in_multipages_readable(to_user_ptr(args->data_ptr),
1065 args->size);
1066 if (ret)
1067 return -EFAULT;
1068 }
Eric Anholt673a3942008-07-30 12:06:12 -07001069
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001070 ret = i915_mutex_lock_interruptible(dev);
1071 if (ret)
1072 return ret;
1073
Chris Wilson05394f32010-11-08 19:18:58 +00001074 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001075 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001076 ret = -ENOENT;
1077 goto unlock;
1078 }
Eric Anholt673a3942008-07-30 12:06:12 -07001079
Chris Wilson7dcd2492010-09-26 20:21:44 +01001080 /* Bounds check destination. */
Chris Wilson05394f32010-11-08 19:18:58 +00001081 if (args->offset > obj->base.size ||
1082 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +01001083 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +01001084 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +01001085 }
1086
Daniel Vetter1286ff72012-05-10 15:25:09 +02001087 /* prime objects have no backing filp to GEM pread/pwrite
1088 * pages from.
1089 */
1090 if (!obj->base.filp) {
1091 ret = -EINVAL;
1092 goto out;
1093 }
1094
Chris Wilsondb53a302011-02-03 11:57:46 +00001095 trace_i915_gem_object_pwrite(obj, args->offset, args->size);
1096
Daniel Vetter935aaa62012-03-25 19:47:35 +02001097 ret = -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -07001098 /* We can only do the GTT pwrite on untiled buffers, as otherwise
1099 * it would end up going through the fenced access, and we'll get
1100 * different detiling behavior between reading and writing.
1101 * pread/pwrite currently are reading and writing from the CPU
1102 * perspective, requiring manual detiling by the client.
1103 */
Chris Wilson2c225692013-08-09 12:26:45 +01001104 if (obj->tiling_mode == I915_TILING_NONE &&
1105 obj->base.write_domain != I915_GEM_DOMAIN_CPU &&
1106 cpu_write_needs_clflush(obj)) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001107 ret = i915_gem_gtt_pwrite_fast(dev, obj, args, file);
Daniel Vetter935aaa62012-03-25 19:47:35 +02001108 /* Note that the gtt paths might fail with non-page-backed user
1109 * pointers (e.g. gtt mappings when moving data between
1110 * textures). Fallback to the shmem path in that case. */
Eric Anholt40123c12009-03-09 13:42:30 -07001111 }
Eric Anholt673a3942008-07-30 12:06:12 -07001112
Chris Wilson6a2c4232014-11-04 04:51:40 -08001113 if (ret == -EFAULT || ret == -ENOSPC) {
1114 if (obj->phys_handle)
1115 ret = i915_gem_phys_pwrite(obj, args, file);
1116 else
1117 ret = i915_gem_shmem_pwrite(dev, obj, args, file);
1118 }
Daniel Vetter5c0480f2011-12-14 13:57:30 +01001119
Chris Wilson35b62a82010-09-26 20:23:38 +01001120out:
Chris Wilson05394f32010-11-08 19:18:58 +00001121 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001122unlock:
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001123 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07001124 return ret;
1125}
1126
Chris Wilsonb3612372012-08-24 09:35:08 +01001127int
Daniel Vetter33196de2012-11-14 17:14:05 +01001128i915_gem_check_wedge(struct i915_gpu_error *error,
Chris Wilsonb3612372012-08-24 09:35:08 +01001129 bool interruptible)
1130{
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001131 if (i915_reset_in_progress(error)) {
Chris Wilsonb3612372012-08-24 09:35:08 +01001132 /* Non-interruptible callers can't handle -EAGAIN, hence return
1133 * -EIO unconditionally for these. */
1134 if (!interruptible)
1135 return -EIO;
1136
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001137 /* Recovery complete, but the reset failed ... */
1138 if (i915_terminally_wedged(error))
Chris Wilsonb3612372012-08-24 09:35:08 +01001139 return -EIO;
1140
McAulay, Alistair6689c162014-08-15 18:51:35 +01001141 /*
1142 * Check if GPU Reset is in progress - we need intel_ring_begin
1143 * to work properly to reinit the hw state while the gpu is
1144 * still marked as reset-in-progress. Handle this with a flag.
1145 */
1146 if (!error->reload_in_reset)
1147 return -EAGAIN;
Chris Wilsonb3612372012-08-24 09:35:08 +01001148 }
1149
1150 return 0;
1151}
1152
1153/*
1154 * Compare seqno against outstanding lazy request. Emit a request if they are
1155 * equal.
1156 */
Sourab Gupta84c33a62014-06-02 16:47:17 +05301157int
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001158i915_gem_check_olr(struct intel_engine_cs *ring, u32 seqno)
Chris Wilsonb3612372012-08-24 09:35:08 +01001159{
1160 int ret;
1161
1162 BUG_ON(!mutex_is_locked(&ring->dev->struct_mutex));
1163
1164 ret = 0;
Chris Wilson18235212013-09-04 10:45:51 +01001165 if (seqno == ring->outstanding_lazy_seqno)
Mika Kuoppala0025c072013-06-12 12:35:30 +03001166 ret = i915_add_request(ring, NULL);
Chris Wilsonb3612372012-08-24 09:35:08 +01001167
1168 return ret;
1169}
1170
Chris Wilson094f9a52013-09-25 17:34:55 +01001171static void fake_irq(unsigned long data)
1172{
1173 wake_up_process((struct task_struct *)data);
1174}
1175
1176static bool missed_irq(struct drm_i915_private *dev_priv,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001177 struct intel_engine_cs *ring)
Chris Wilson094f9a52013-09-25 17:34:55 +01001178{
1179 return test_bit(ring->id, &dev_priv->gpu_error.missed_irq_rings);
1180}
1181
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001182static bool can_wait_boost(struct drm_i915_file_private *file_priv)
1183{
1184 if (file_priv == NULL)
1185 return true;
1186
1187 return !atomic_xchg(&file_priv->rps_wait_boost, true);
1188}
1189
Chris Wilsonb3612372012-08-24 09:35:08 +01001190/**
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001191 * __i915_wait_seqno - wait until execution of seqno has finished
Chris Wilsonb3612372012-08-24 09:35:08 +01001192 * @ring: the ring expected to report seqno
1193 * @seqno: duh!
Daniel Vetterf69061b2012-12-06 09:01:42 +01001194 * @reset_counter: reset sequence associated with the given seqno
Chris Wilsonb3612372012-08-24 09:35:08 +01001195 * @interruptible: do an interruptible wait (normally yes)
1196 * @timeout: in - how long to wait (NULL forever); out - how much time remaining
1197 *
Daniel Vetterf69061b2012-12-06 09:01:42 +01001198 * Note: It is of utmost importance that the passed in seqno and reset_counter
1199 * values have been read by the caller in an smp safe manner. Where read-side
1200 * locks are involved, it is sufficient to read the reset_counter before
1201 * unlocking the lock that protects the seqno. For lockless tricks, the
1202 * reset_counter _must_ be read before, and an appropriate smp_rmb must be
1203 * inserted.
1204 *
Chris Wilsonb3612372012-08-24 09:35:08 +01001205 * Returns 0 if the seqno was found within the alloted time. Else returns the
1206 * errno with remaining time filled in timeout argument.
1207 */
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001208int __i915_wait_seqno(struct intel_engine_cs *ring, u32 seqno,
Daniel Vetterf69061b2012-12-06 09:01:42 +01001209 unsigned reset_counter,
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001210 bool interruptible,
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001211 s64 *timeout,
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001212 struct drm_i915_file_private *file_priv)
Chris Wilsonb3612372012-08-24 09:35:08 +01001213{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001214 struct drm_device *dev = ring->dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03001215 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001216 const bool irq_test_in_progress =
1217 ACCESS_ONCE(dev_priv->gpu_error.test_irq_rings) & intel_ring_flag(ring);
Chris Wilson094f9a52013-09-25 17:34:55 +01001218 DEFINE_WAIT(wait);
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001219 unsigned long timeout_expire;
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001220 s64 before, now;
Chris Wilsonb3612372012-08-24 09:35:08 +01001221 int ret;
1222
Jesse Barnes9df7575f2014-06-20 09:29:20 -07001223 WARN(!intel_irqs_enabled(dev_priv), "IRQs disabled");
Paulo Zanonic67a4702013-08-19 13:18:09 -03001224
Chris Wilsonb3612372012-08-24 09:35:08 +01001225 if (i915_seqno_passed(ring->get_seqno(ring, true), seqno))
1226 return 0;
1227
Daniel Vetter7bd0e222014-12-04 11:12:54 +01001228 timeout_expire = timeout ?
1229 jiffies + nsecs_to_jiffies_timeout((u64)*timeout) : 0;
Chris Wilsonb3612372012-08-24 09:35:08 +01001230
Chris Wilsonec5cc0f2014-06-12 10:28:55 +01001231 if (INTEL_INFO(dev)->gen >= 6 && ring->id == RCS && can_wait_boost(file_priv)) {
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001232 gen6_rps_boost(dev_priv);
1233 if (file_priv)
1234 mod_delayed_work(dev_priv->wq,
1235 &file_priv->mm.idle_work,
1236 msecs_to_jiffies(100));
1237 }
1238
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001239 if (!irq_test_in_progress && WARN_ON(!ring->irq_get(ring)))
Chris Wilsonb3612372012-08-24 09:35:08 +01001240 return -ENODEV;
1241
Chris Wilson094f9a52013-09-25 17:34:55 +01001242 /* Record current time in case interrupted by signal, or wedged */
1243 trace_i915_gem_request_wait_begin(ring, seqno);
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001244 before = ktime_get_raw_ns();
Chris Wilson094f9a52013-09-25 17:34:55 +01001245 for (;;) {
1246 struct timer_list timer;
Chris Wilsonb3612372012-08-24 09:35:08 +01001247
Chris Wilson094f9a52013-09-25 17:34:55 +01001248 prepare_to_wait(&ring->irq_queue, &wait,
1249 interruptible ? TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE);
Chris Wilsonb3612372012-08-24 09:35:08 +01001250
Daniel Vetterf69061b2012-12-06 09:01:42 +01001251 /* We need to check whether any gpu reset happened in between
1252 * the caller grabbing the seqno and now ... */
Chris Wilson094f9a52013-09-25 17:34:55 +01001253 if (reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter)) {
1254 /* ... but upgrade the -EAGAIN to an -EIO if the gpu
1255 * is truely gone. */
1256 ret = i915_gem_check_wedge(&dev_priv->gpu_error, interruptible);
1257 if (ret == 0)
1258 ret = -EAGAIN;
1259 break;
1260 }
Daniel Vetterf69061b2012-12-06 09:01:42 +01001261
Chris Wilson094f9a52013-09-25 17:34:55 +01001262 if (i915_seqno_passed(ring->get_seqno(ring, false), seqno)) {
1263 ret = 0;
1264 break;
1265 }
Chris Wilsonb3612372012-08-24 09:35:08 +01001266
Chris Wilson094f9a52013-09-25 17:34:55 +01001267 if (interruptible && signal_pending(current)) {
1268 ret = -ERESTARTSYS;
1269 break;
1270 }
1271
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001272 if (timeout && time_after_eq(jiffies, timeout_expire)) {
Chris Wilson094f9a52013-09-25 17:34:55 +01001273 ret = -ETIME;
1274 break;
1275 }
1276
1277 timer.function = NULL;
1278 if (timeout || missed_irq(dev_priv, ring)) {
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001279 unsigned long expire;
1280
Chris Wilson094f9a52013-09-25 17:34:55 +01001281 setup_timer_on_stack(&timer, fake_irq, (unsigned long)current);
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001282 expire = missed_irq(dev_priv, ring) ? jiffies + 1 : timeout_expire;
Chris Wilson094f9a52013-09-25 17:34:55 +01001283 mod_timer(&timer, expire);
1284 }
1285
Chris Wilson5035c272013-10-04 09:58:46 +01001286 io_schedule();
Chris Wilson094f9a52013-09-25 17:34:55 +01001287
Chris Wilson094f9a52013-09-25 17:34:55 +01001288 if (timer.function) {
1289 del_singleshot_timer_sync(&timer);
1290 destroy_timer_on_stack(&timer);
1291 }
1292 }
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001293 now = ktime_get_raw_ns();
Chris Wilson094f9a52013-09-25 17:34:55 +01001294 trace_i915_gem_request_wait_end(ring, seqno);
Chris Wilsonb3612372012-08-24 09:35:08 +01001295
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001296 if (!irq_test_in_progress)
1297 ring->irq_put(ring);
Chris Wilson094f9a52013-09-25 17:34:55 +01001298
1299 finish_wait(&ring->irq_queue, &wait);
Chris Wilsonb3612372012-08-24 09:35:08 +01001300
1301 if (timeout) {
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001302 s64 tres = *timeout - (now - before);
1303
1304 *timeout = tres < 0 ? 0 : tres;
Daniel Vetter9cca3062014-11-28 10:29:55 +01001305
1306 /*
1307 * Apparently ktime isn't accurate enough and occasionally has a
1308 * bit of mismatch in the jiffies<->nsecs<->ktime loop. So patch
1309 * things up to make the test happy. We allow up to 1 jiffy.
1310 *
1311 * This is a regrssion from the timespec->ktime conversion.
1312 */
1313 if (ret == -ETIME && *timeout < jiffies_to_usecs(1)*1000)
1314 *timeout = 0;
Chris Wilsonb3612372012-08-24 09:35:08 +01001315 }
1316
Chris Wilson094f9a52013-09-25 17:34:55 +01001317 return ret;
Chris Wilsonb3612372012-08-24 09:35:08 +01001318}
1319
1320/**
1321 * Waits for a sequence number to be signaled, and cleans up the
1322 * request and object lists appropriately for that event.
1323 */
1324int
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001325i915_wait_seqno(struct intel_engine_cs *ring, uint32_t seqno)
Chris Wilsonb3612372012-08-24 09:35:08 +01001326{
1327 struct drm_device *dev = ring->dev;
1328 struct drm_i915_private *dev_priv = dev->dev_private;
1329 bool interruptible = dev_priv->mm.interruptible;
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001330 unsigned reset_counter;
Chris Wilsonb3612372012-08-24 09:35:08 +01001331 int ret;
1332
1333 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
1334 BUG_ON(seqno == 0);
1335
Daniel Vetter33196de2012-11-14 17:14:05 +01001336 ret = i915_gem_check_wedge(&dev_priv->gpu_error, interruptible);
Chris Wilsonb3612372012-08-24 09:35:08 +01001337 if (ret)
1338 return ret;
1339
1340 ret = i915_gem_check_olr(ring, seqno);
1341 if (ret)
1342 return ret;
1343
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001344 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
1345 return __i915_wait_seqno(ring, seqno, reset_counter, interruptible,
1346 NULL, NULL);
Chris Wilsonb3612372012-08-24 09:35:08 +01001347}
1348
Chris Wilsond26e3af2013-06-29 22:05:26 +01001349static int
John Harrison8e6395492014-10-30 18:40:53 +00001350i915_gem_object_wait_rendering__tail(struct drm_i915_gem_object *obj)
Chris Wilsond26e3af2013-06-29 22:05:26 +01001351{
Chris Wilsonc8725f32014-03-17 12:21:55 +00001352 if (!obj->active)
1353 return 0;
Chris Wilsond26e3af2013-06-29 22:05:26 +01001354
1355 /* Manually manage the write flush as we may have not yet
1356 * retired the buffer.
1357 *
1358 * Note that the last_write_seqno is always the earlier of
1359 * the two (read/write) seqno, so if we haved successfully waited,
1360 * we know we have passed the last write.
1361 */
1362 obj->last_write_seqno = 0;
Chris Wilsond26e3af2013-06-29 22:05:26 +01001363
1364 return 0;
1365}
1366
Chris Wilsonb3612372012-08-24 09:35:08 +01001367/**
1368 * Ensures that all rendering to the object has completed and the object is
1369 * safe to unbind from the GTT or access from the CPU.
1370 */
1371static __must_check int
1372i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj,
1373 bool readonly)
1374{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001375 struct intel_engine_cs *ring = obj->ring;
Chris Wilsonb3612372012-08-24 09:35:08 +01001376 u32 seqno;
1377 int ret;
1378
1379 seqno = readonly ? obj->last_write_seqno : obj->last_read_seqno;
1380 if (seqno == 0)
1381 return 0;
1382
1383 ret = i915_wait_seqno(ring, seqno);
1384 if (ret)
1385 return ret;
1386
John Harrison8e6395492014-10-30 18:40:53 +00001387 return i915_gem_object_wait_rendering__tail(obj);
Chris Wilsonb3612372012-08-24 09:35:08 +01001388}
1389
Chris Wilson3236f572012-08-24 09:35:09 +01001390/* A nonblocking variant of the above wait. This is a highly dangerous routine
1391 * as the object state may change during this call.
1392 */
1393static __must_check int
1394i915_gem_object_wait_rendering__nonblocking(struct drm_i915_gem_object *obj,
Chris Wilson6e4930f2014-02-07 18:37:06 -02001395 struct drm_i915_file_private *file_priv,
Chris Wilson3236f572012-08-24 09:35:09 +01001396 bool readonly)
1397{
1398 struct drm_device *dev = obj->base.dev;
1399 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001400 struct intel_engine_cs *ring = obj->ring;
Daniel Vetterf69061b2012-12-06 09:01:42 +01001401 unsigned reset_counter;
Chris Wilson3236f572012-08-24 09:35:09 +01001402 u32 seqno;
1403 int ret;
1404
1405 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
1406 BUG_ON(!dev_priv->mm.interruptible);
1407
1408 seqno = readonly ? obj->last_write_seqno : obj->last_read_seqno;
1409 if (seqno == 0)
1410 return 0;
1411
Daniel Vetter33196de2012-11-14 17:14:05 +01001412 ret = i915_gem_check_wedge(&dev_priv->gpu_error, true);
Chris Wilson3236f572012-08-24 09:35:09 +01001413 if (ret)
1414 return ret;
1415
1416 ret = i915_gem_check_olr(ring, seqno);
1417 if (ret)
1418 return ret;
1419
Daniel Vetterf69061b2012-12-06 09:01:42 +01001420 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilson3236f572012-08-24 09:35:09 +01001421 mutex_unlock(&dev->struct_mutex);
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001422 ret = __i915_wait_seqno(ring, seqno, reset_counter, true, NULL,
1423 file_priv);
Chris Wilson3236f572012-08-24 09:35:09 +01001424 mutex_lock(&dev->struct_mutex);
Chris Wilsond26e3af2013-06-29 22:05:26 +01001425 if (ret)
1426 return ret;
Chris Wilson3236f572012-08-24 09:35:09 +01001427
John Harrison8e6395492014-10-30 18:40:53 +00001428 return i915_gem_object_wait_rendering__tail(obj);
Chris Wilson3236f572012-08-24 09:35:09 +01001429}
1430
Eric Anholt673a3942008-07-30 12:06:12 -07001431/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001432 * Called when user space prepares to use an object with the CPU, either
1433 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -07001434 */
1435int
1436i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001437 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001438{
1439 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001440 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001441 uint32_t read_domains = args->read_domains;
1442 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07001443 int ret;
1444
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001445 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +01001446 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001447 return -EINVAL;
1448
Chris Wilson21d509e2009-06-06 09:46:02 +01001449 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001450 return -EINVAL;
1451
1452 /* Having something in the write domain implies it's in the read
1453 * domain, and only that read domain. Enforce that in the request.
1454 */
1455 if (write_domain != 0 && read_domains != write_domain)
1456 return -EINVAL;
1457
Chris Wilson76c1dec2010-09-25 11:22:51 +01001458 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001459 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001460 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001461
Chris Wilson05394f32010-11-08 19:18:58 +00001462 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001463 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001464 ret = -ENOENT;
1465 goto unlock;
Chris Wilson76c1dec2010-09-25 11:22:51 +01001466 }
Jesse Barnes652c3932009-08-17 13:31:43 -07001467
Chris Wilson3236f572012-08-24 09:35:09 +01001468 /* Try to flush the object off the GPU without holding the lock.
1469 * We will repeat the flush holding the lock in the normal manner
1470 * to catch cases where we are gazumped.
1471 */
Chris Wilson6e4930f2014-02-07 18:37:06 -02001472 ret = i915_gem_object_wait_rendering__nonblocking(obj,
1473 file->driver_priv,
1474 !write_domain);
Chris Wilson3236f572012-08-24 09:35:09 +01001475 if (ret)
1476 goto unref;
1477
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001478 if (read_domains & I915_GEM_DOMAIN_GTT) {
1479 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Eric Anholt02354392008-11-26 13:58:13 -08001480
1481 /* Silently promote "you're not bound, there was nothing to do"
1482 * to success, since the client was just asking us to
1483 * make sure everything was done.
1484 */
1485 if (ret == -EINVAL)
1486 ret = 0;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001487 } else {
Eric Anholte47c68e2008-11-14 13:35:19 -08001488 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001489 }
1490
Chris Wilson3236f572012-08-24 09:35:09 +01001491unref:
Chris Wilson05394f32010-11-08 19:18:58 +00001492 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001493unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001494 mutex_unlock(&dev->struct_mutex);
1495 return ret;
1496}
1497
1498/**
1499 * Called when user space has done writes to this buffer
1500 */
1501int
1502i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001503 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001504{
1505 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001506 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001507 int ret = 0;
1508
Chris Wilson76c1dec2010-09-25 11:22:51 +01001509 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001510 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001511 return ret;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001512
Chris Wilson05394f32010-11-08 19:18:58 +00001513 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001514 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001515 ret = -ENOENT;
1516 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07001517 }
1518
Eric Anholt673a3942008-07-30 12:06:12 -07001519 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilson2c225692013-08-09 12:26:45 +01001520 if (obj->pin_display)
1521 i915_gem_object_flush_cpu_write_domain(obj, true);
Eric Anholte47c68e2008-11-14 13:35:19 -08001522
Chris Wilson05394f32010-11-08 19:18:58 +00001523 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001524unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001525 mutex_unlock(&dev->struct_mutex);
1526 return ret;
1527}
1528
1529/**
1530 * Maps the contents of an object, returning the address it is mapped
1531 * into.
1532 *
1533 * While the mapping holds a reference on the contents of the object, it doesn't
1534 * imply a ref on the object itself.
Daniel Vetter34367382014-10-16 12:28:18 +02001535 *
1536 * IMPORTANT:
1537 *
1538 * DRM driver writers who look a this function as an example for how to do GEM
1539 * mmap support, please don't implement mmap support like here. The modern way
1540 * to implement DRM mmap support is with an mmap offset ioctl (like
1541 * i915_gem_mmap_gtt) and then using the mmap syscall on the DRM fd directly.
1542 * That way debug tooling like valgrind will understand what's going on, hiding
1543 * the mmap call in a driver private ioctl will break that. The i915 driver only
1544 * does cpu mmaps this way because we didn't know better.
Eric Anholt673a3942008-07-30 12:06:12 -07001545 */
1546int
1547i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001548 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001549{
1550 struct drm_i915_gem_mmap *args = data;
1551 struct drm_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001552 unsigned long addr;
1553
Chris Wilson05394f32010-11-08 19:18:58 +00001554 obj = drm_gem_object_lookup(dev, file, args->handle);
Eric Anholt673a3942008-07-30 12:06:12 -07001555 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001556 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001557
Daniel Vetter1286ff72012-05-10 15:25:09 +02001558 /* prime objects have no backing filp to GEM mmap
1559 * pages from.
1560 */
1561 if (!obj->filp) {
1562 drm_gem_object_unreference_unlocked(obj);
1563 return -EINVAL;
1564 }
1565
Linus Torvalds6be5ceb2012-04-20 17:13:58 -07001566 addr = vm_mmap(obj->filp, 0, args->size,
Eric Anholt673a3942008-07-30 12:06:12 -07001567 PROT_READ | PROT_WRITE, MAP_SHARED,
1568 args->offset);
Luca Barbieribc9025b2010-02-09 05:49:12 +00001569 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001570 if (IS_ERR((void *)addr))
1571 return addr;
1572
1573 args->addr_ptr = (uint64_t) addr;
1574
1575 return 0;
1576}
1577
Jesse Barnesde151cf2008-11-12 10:03:55 -08001578/**
1579 * i915_gem_fault - fault a page into the GTT
1580 * vma: VMA in question
1581 * vmf: fault info
1582 *
1583 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1584 * from userspace. The fault handler takes care of binding the object to
1585 * the GTT (if needed), allocating and programming a fence register (again,
1586 * only if needed based on whether the old reg is still valid or the object
1587 * is tiled) and inserting a new PTE into the faulting process.
1588 *
1589 * Note that the faulting process may involve evicting existing objects
1590 * from the GTT and/or fence registers to make room. So performance may
1591 * suffer if the GTT working set is large or there are few fence registers
1592 * left.
1593 */
1594int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1595{
Chris Wilson05394f32010-11-08 19:18:58 +00001596 struct drm_i915_gem_object *obj = to_intel_bo(vma->vm_private_data);
1597 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03001598 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001599 pgoff_t page_offset;
1600 unsigned long pfn;
1601 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001602 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001603
Paulo Zanonif65c9162013-11-27 18:20:34 -02001604 intel_runtime_pm_get(dev_priv);
1605
Jesse Barnesde151cf2008-11-12 10:03:55 -08001606 /* We don't use vmf->pgoff since that has the fake offset */
1607 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1608 PAGE_SHIFT;
1609
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001610 ret = i915_mutex_lock_interruptible(dev);
1611 if (ret)
1612 goto out;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001613
Chris Wilsondb53a302011-02-03 11:57:46 +00001614 trace_i915_gem_object_fault(obj, page_offset, true, write);
1615
Chris Wilson6e4930f2014-02-07 18:37:06 -02001616 /* Try to flush the object off the GPU first without holding the lock.
1617 * Upon reacquiring the lock, we will perform our sanity checks and then
1618 * repeat the flush holding the lock in the normal manner to catch cases
1619 * where we are gazumped.
1620 */
1621 ret = i915_gem_object_wait_rendering__nonblocking(obj, NULL, !write);
1622 if (ret)
1623 goto unlock;
1624
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001625 /* Access to snoopable pages through the GTT is incoherent. */
1626 if (obj->cache_level != I915_CACHE_NONE && !HAS_LLC(dev)) {
Chris Wilsonddeff6e2014-05-28 16:16:41 +01001627 ret = -EFAULT;
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001628 goto unlock;
1629 }
1630
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001631 /* Now bind it into the GTT if needed */
Daniel Vetter1ec9e262014-02-14 14:01:11 +01001632 ret = i915_gem_obj_ggtt_pin(obj, 0, PIN_MAPPABLE);
Chris Wilsond9e86c02010-11-10 16:40:20 +00001633 if (ret)
1634 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001635
Chris Wilsonc9839302012-11-20 10:45:17 +00001636 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1637 if (ret)
1638 goto unpin;
1639
1640 ret = i915_gem_object_get_fence(obj);
1641 if (ret)
1642 goto unpin;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001643
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001644 /* Finally, remap it using the new GTT offset */
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001645 pfn = dev_priv->gtt.mappable_base + i915_gem_obj_ggtt_offset(obj);
1646 pfn >>= PAGE_SHIFT;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001647
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001648 if (!obj->fault_mappable) {
Ville Syrjäläbeff0d02014-06-17 21:03:00 +03001649 unsigned long size = min_t(unsigned long,
1650 vma->vm_end - vma->vm_start,
1651 obj->base.size);
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001652 int i;
1653
Ville Syrjäläbeff0d02014-06-17 21:03:00 +03001654 for (i = 0; i < size >> PAGE_SHIFT; i++) {
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001655 ret = vm_insert_pfn(vma,
1656 (unsigned long)vma->vm_start + i * PAGE_SIZE,
1657 pfn + i);
1658 if (ret)
1659 break;
1660 }
1661
1662 obj->fault_mappable = true;
1663 } else
1664 ret = vm_insert_pfn(vma,
1665 (unsigned long)vmf->virtual_address,
1666 pfn + page_offset);
Chris Wilsonc9839302012-11-20 10:45:17 +00001667unpin:
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08001668 i915_gem_object_ggtt_unpin(obj);
Chris Wilsonc7150892009-09-23 00:43:56 +01001669unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001670 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001671out:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001672 switch (ret) {
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001673 case -EIO:
Daniel Vetter2232f032014-09-04 09:36:18 +02001674 /*
1675 * We eat errors when the gpu is terminally wedged to avoid
1676 * userspace unduly crashing (gl has no provisions for mmaps to
1677 * fail). But any other -EIO isn't ours (e.g. swap in failure)
1678 * and so needs to be reported.
1679 */
1680 if (!i915_terminally_wedged(&dev_priv->gpu_error)) {
Paulo Zanonif65c9162013-11-27 18:20:34 -02001681 ret = VM_FAULT_SIGBUS;
1682 break;
1683 }
Chris Wilson045e7692010-11-07 09:18:22 +00001684 case -EAGAIN:
Daniel Vetter571c6082013-09-12 17:57:28 +02001685 /*
1686 * EAGAIN means the gpu is hung and we'll wait for the error
1687 * handler to reset everything when re-faulting in
1688 * i915_mutex_lock_interruptible.
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001689 */
Chris Wilsonc7150892009-09-23 00:43:56 +01001690 case 0:
1691 case -ERESTARTSYS:
Chris Wilsonbed636a2011-02-11 20:31:19 +00001692 case -EINTR:
Dmitry Rogozhkine79e0fe2012-10-03 17:15:26 +03001693 case -EBUSY:
1694 /*
1695 * EBUSY is ok: this just means that another thread
1696 * already did the job.
1697 */
Paulo Zanonif65c9162013-11-27 18:20:34 -02001698 ret = VM_FAULT_NOPAGE;
1699 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001700 case -ENOMEM:
Paulo Zanonif65c9162013-11-27 18:20:34 -02001701 ret = VM_FAULT_OOM;
1702 break;
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001703 case -ENOSPC:
Chris Wilson45d67812014-01-31 11:34:57 +00001704 case -EFAULT:
Paulo Zanonif65c9162013-11-27 18:20:34 -02001705 ret = VM_FAULT_SIGBUS;
1706 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001707 default:
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001708 WARN_ONCE(ret, "unhandled error in i915_gem_fault: %i\n", ret);
Paulo Zanonif65c9162013-11-27 18:20:34 -02001709 ret = VM_FAULT_SIGBUS;
1710 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001711 }
Paulo Zanonif65c9162013-11-27 18:20:34 -02001712
1713 intel_runtime_pm_put(dev_priv);
1714 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001715}
1716
1717/**
Chris Wilson901782b2009-07-10 08:18:50 +01001718 * i915_gem_release_mmap - remove physical page mappings
1719 * @obj: obj in question
1720 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001721 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001722 * relinquish ownership of the pages back to the system.
1723 *
1724 * It is vital that we remove the page mapping if we have mapped a tiled
1725 * object through the GTT and then lose the fence register due to
1726 * resource pressure. Similarly if the object has been moved out of the
1727 * aperture, than pages mapped into userspace must be revoked. Removing the
1728 * mapping will then trigger a page fault on the next user access, allowing
1729 * fixup by i915_gem_fault().
1730 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001731void
Chris Wilson05394f32010-11-08 19:18:58 +00001732i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01001733{
Chris Wilson6299f992010-11-24 12:23:44 +00001734 if (!obj->fault_mappable)
1735 return;
Chris Wilson901782b2009-07-10 08:18:50 +01001736
David Herrmann6796cb12014-01-03 14:24:19 +01001737 drm_vma_node_unmap(&obj->base.vma_node,
1738 obj->base.dev->anon_inode->i_mapping);
Chris Wilson6299f992010-11-24 12:23:44 +00001739 obj->fault_mappable = false;
Chris Wilson901782b2009-07-10 08:18:50 +01001740}
1741
Chris Wilsoneedd10f2014-06-16 08:57:44 +01001742void
1743i915_gem_release_all_mmaps(struct drm_i915_private *dev_priv)
1744{
1745 struct drm_i915_gem_object *obj;
1746
1747 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list)
1748 i915_gem_release_mmap(obj);
1749}
1750
Imre Deak0fa87792013-01-07 21:47:35 +02001751uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001752i915_gem_get_gtt_size(struct drm_device *dev, uint32_t size, int tiling_mode)
Chris Wilson92b88ae2010-11-09 11:47:32 +00001753{
Chris Wilsone28f8712011-07-18 13:11:49 -07001754 uint32_t gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001755
1756 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001757 tiling_mode == I915_TILING_NONE)
1758 return size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001759
1760 /* Previous chips need a power-of-two fence region when tiling */
1761 if (INTEL_INFO(dev)->gen == 3)
Chris Wilsone28f8712011-07-18 13:11:49 -07001762 gtt_size = 1024*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001763 else
Chris Wilsone28f8712011-07-18 13:11:49 -07001764 gtt_size = 512*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001765
Chris Wilsone28f8712011-07-18 13:11:49 -07001766 while (gtt_size < size)
1767 gtt_size <<= 1;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001768
Chris Wilsone28f8712011-07-18 13:11:49 -07001769 return gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001770}
1771
Jesse Barnesde151cf2008-11-12 10:03:55 -08001772/**
1773 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1774 * @obj: object to check
1775 *
1776 * Return the required GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01001777 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08001778 */
Imre Deakd8651102013-01-07 21:47:33 +02001779uint32_t
1780i915_gem_get_gtt_alignment(struct drm_device *dev, uint32_t size,
1781 int tiling_mode, bool fenced)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001782{
Jesse Barnesde151cf2008-11-12 10:03:55 -08001783 /*
1784 * Minimum alignment is 4k (GTT page size), but might be greater
1785 * if a fence register is needed for the object.
1786 */
Imre Deakd8651102013-01-07 21:47:33 +02001787 if (INTEL_INFO(dev)->gen >= 4 || (!fenced && IS_G33(dev)) ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001788 tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001789 return 4096;
1790
1791 /*
1792 * Previous chips need to be aligned to the size of the smallest
1793 * fence register that can contain the object.
1794 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001795 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01001796}
1797
Chris Wilsond8cb5082012-08-11 15:41:03 +01001798static int i915_gem_object_create_mmap_offset(struct drm_i915_gem_object *obj)
1799{
1800 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
1801 int ret;
1802
David Herrmann0de23972013-07-24 21:07:52 +02001803 if (drm_vma_node_has_offset(&obj->base.vma_node))
Chris Wilsond8cb5082012-08-11 15:41:03 +01001804 return 0;
1805
Daniel Vetterda494d72012-12-20 15:11:16 +01001806 dev_priv->mm.shrinker_no_lock_stealing = true;
1807
Chris Wilsond8cb5082012-08-11 15:41:03 +01001808 ret = drm_gem_create_mmap_offset(&obj->base);
1809 if (ret != -ENOSPC)
Daniel Vetterda494d72012-12-20 15:11:16 +01001810 goto out;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001811
1812 /* Badly fragmented mmap space? The only way we can recover
1813 * space is by destroying unwanted objects. We can't randomly release
1814 * mmap_offsets as userspace expects them to be persistent for the
1815 * lifetime of the objects. The closest we can is to release the
1816 * offsets on purgeable objects by truncating it and marking it purged,
1817 * which prevents userspace from ever using that object again.
1818 */
Chris Wilson21ab4e72014-09-09 11:16:08 +01001819 i915_gem_shrink(dev_priv,
1820 obj->base.size >> PAGE_SHIFT,
1821 I915_SHRINK_BOUND |
1822 I915_SHRINK_UNBOUND |
1823 I915_SHRINK_PURGEABLE);
Chris Wilsond8cb5082012-08-11 15:41:03 +01001824 ret = drm_gem_create_mmap_offset(&obj->base);
1825 if (ret != -ENOSPC)
Daniel Vetterda494d72012-12-20 15:11:16 +01001826 goto out;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001827
1828 i915_gem_shrink_all(dev_priv);
Daniel Vetterda494d72012-12-20 15:11:16 +01001829 ret = drm_gem_create_mmap_offset(&obj->base);
1830out:
1831 dev_priv->mm.shrinker_no_lock_stealing = false;
1832
1833 return ret;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001834}
1835
1836static void i915_gem_object_free_mmap_offset(struct drm_i915_gem_object *obj)
1837{
Chris Wilsond8cb5082012-08-11 15:41:03 +01001838 drm_gem_free_mmap_offset(&obj->base);
1839}
1840
Dave Airlieda6b51d2014-12-24 13:11:17 +10001841int
Dave Airlieff72145b2011-02-07 12:16:14 +10001842i915_gem_mmap_gtt(struct drm_file *file,
1843 struct drm_device *dev,
Dave Airlieda6b51d2014-12-24 13:11:17 +10001844 uint32_t handle,
Dave Airlieff72145b2011-02-07 12:16:14 +10001845 uint64_t *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001846{
Chris Wilsonda761a62010-10-27 17:37:08 +01001847 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001848 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001849 int ret;
1850
Chris Wilson76c1dec2010-09-25 11:22:51 +01001851 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001852 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001853 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001854
Dave Airlieff72145b2011-02-07 12:16:14 +10001855 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001856 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001857 ret = -ENOENT;
1858 goto unlock;
1859 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001860
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001861 if (obj->base.size > dev_priv->gtt.mappable_end) {
Chris Wilsonda761a62010-10-27 17:37:08 +01001862 ret = -E2BIG;
Eric Anholtff56b0b2011-10-31 23:16:21 -07001863 goto out;
Chris Wilsonda761a62010-10-27 17:37:08 +01001864 }
1865
Chris Wilson05394f32010-11-08 19:18:58 +00001866 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00001867 DRM_DEBUG("Attempting to mmap a purgeable buffer\n");
Chris Wilson8c99e572014-01-31 11:34:58 +00001868 ret = -EFAULT;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001869 goto out;
Chris Wilsonab182822009-09-22 18:46:17 +01001870 }
1871
Chris Wilsond8cb5082012-08-11 15:41:03 +01001872 ret = i915_gem_object_create_mmap_offset(obj);
1873 if (ret)
1874 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001875
David Herrmann0de23972013-07-24 21:07:52 +02001876 *offset = drm_vma_node_offset_addr(&obj->base.vma_node);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001877
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001878out:
Chris Wilson05394f32010-11-08 19:18:58 +00001879 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001880unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001881 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001882 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001883}
1884
Dave Airlieff72145b2011-02-07 12:16:14 +10001885/**
1886 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1887 * @dev: DRM device
1888 * @data: GTT mapping ioctl data
1889 * @file: GEM object info
1890 *
1891 * Simply returns the fake offset to userspace so it can mmap it.
1892 * The mmap call will end up in drm_gem_mmap(), which will set things
1893 * up so we can get faults in the handler above.
1894 *
1895 * The fault handler will take care of binding the object into the GTT
1896 * (since it may have been evicted to make room for something), allocating
1897 * a fence register, and mapping the appropriate aperture address into
1898 * userspace.
1899 */
1900int
1901i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
1902 struct drm_file *file)
1903{
1904 struct drm_i915_gem_mmap_gtt *args = data;
1905
Dave Airlieda6b51d2014-12-24 13:11:17 +10001906 return i915_gem_mmap_gtt(file, dev, args->handle, &args->offset);
Dave Airlieff72145b2011-02-07 12:16:14 +10001907}
1908
Chris Wilson55372522014-03-25 13:23:06 +00001909static inline int
1910i915_gem_object_is_purgeable(struct drm_i915_gem_object *obj)
1911{
1912 return obj->madv == I915_MADV_DONTNEED;
1913}
1914
Daniel Vetter225067e2012-08-20 10:23:20 +02001915/* Immediately discard the backing storage */
1916static void
1917i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001918{
Chris Wilson4d6294bf2012-08-11 15:41:05 +01001919 i915_gem_object_free_mmap_offset(obj);
Daniel Vetter1286ff72012-05-10 15:25:09 +02001920
Chris Wilson4d6294bf2012-08-11 15:41:05 +01001921 if (obj->base.filp == NULL)
1922 return;
1923
Daniel Vetter225067e2012-08-20 10:23:20 +02001924 /* Our goal here is to return as much of the memory as
1925 * is possible back to the system as we are called from OOM.
1926 * To do this we must instruct the shmfs to drop all of its
1927 * backing pages, *now*.
Chris Wilsone5281cc2010-10-28 13:45:36 +01001928 */
Chris Wilson55372522014-03-25 13:23:06 +00001929 shmem_truncate_range(file_inode(obj->base.filp), 0, (loff_t)-1);
Daniel Vetter225067e2012-08-20 10:23:20 +02001930 obj->madv = __I915_MADV_PURGED;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001931}
Chris Wilsone5281cc2010-10-28 13:45:36 +01001932
Chris Wilson55372522014-03-25 13:23:06 +00001933/* Try to discard unwanted pages */
1934static void
1935i915_gem_object_invalidate(struct drm_i915_gem_object *obj)
Daniel Vetter225067e2012-08-20 10:23:20 +02001936{
Chris Wilson55372522014-03-25 13:23:06 +00001937 struct address_space *mapping;
1938
1939 switch (obj->madv) {
1940 case I915_MADV_DONTNEED:
1941 i915_gem_object_truncate(obj);
1942 case __I915_MADV_PURGED:
1943 return;
1944 }
1945
1946 if (obj->base.filp == NULL)
1947 return;
1948
1949 mapping = file_inode(obj->base.filp)->i_mapping,
1950 invalidate_mapping_pages(mapping, 0, (loff_t)-1);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001951}
1952
Chris Wilson5cdf5882010-09-27 15:51:07 +01001953static void
Chris Wilson05394f32010-11-08 19:18:58 +00001954i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001955{
Imre Deak90797e62013-02-18 19:28:03 +02001956 struct sg_page_iter sg_iter;
1957 int ret;
Daniel Vetter1286ff72012-05-10 15:25:09 +02001958
Chris Wilson05394f32010-11-08 19:18:58 +00001959 BUG_ON(obj->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07001960
Chris Wilson6c085a72012-08-20 11:40:46 +02001961 ret = i915_gem_object_set_to_cpu_domain(obj, true);
1962 if (ret) {
1963 /* In the event of a disaster, abandon all caches and
1964 * hope for the best.
1965 */
1966 WARN_ON(ret != -EIO);
Chris Wilson2c225692013-08-09 12:26:45 +01001967 i915_gem_clflush_object(obj, true);
Chris Wilson6c085a72012-08-20 11:40:46 +02001968 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
1969 }
1970
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001971 if (i915_gem_object_needs_bit17_swizzle(obj))
Eric Anholt280b7132009-03-12 16:56:27 -07001972 i915_gem_object_save_bit_17_swizzle(obj);
1973
Chris Wilson05394f32010-11-08 19:18:58 +00001974 if (obj->madv == I915_MADV_DONTNEED)
1975 obj->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01001976
Imre Deak90797e62013-02-18 19:28:03 +02001977 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents, 0) {
Imre Deak2db76d72013-03-26 15:14:18 +02001978 struct page *page = sg_page_iter_page(&sg_iter);
Chris Wilson9da3da62012-06-01 15:20:22 +01001979
Chris Wilson05394f32010-11-08 19:18:58 +00001980 if (obj->dirty)
Chris Wilson9da3da62012-06-01 15:20:22 +01001981 set_page_dirty(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001982
Chris Wilson05394f32010-11-08 19:18:58 +00001983 if (obj->madv == I915_MADV_WILLNEED)
Chris Wilson9da3da62012-06-01 15:20:22 +01001984 mark_page_accessed(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001985
Chris Wilson9da3da62012-06-01 15:20:22 +01001986 page_cache_release(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001987 }
Chris Wilson05394f32010-11-08 19:18:58 +00001988 obj->dirty = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001989
Chris Wilson9da3da62012-06-01 15:20:22 +01001990 sg_free_table(obj->pages);
1991 kfree(obj->pages);
Chris Wilson37e680a2012-06-07 15:38:42 +01001992}
1993
Chris Wilsondd624af2013-01-15 12:39:35 +00001994int
Chris Wilson37e680a2012-06-07 15:38:42 +01001995i915_gem_object_put_pages(struct drm_i915_gem_object *obj)
1996{
1997 const struct drm_i915_gem_object_ops *ops = obj->ops;
1998
Chris Wilson2f745ad2012-09-04 21:02:58 +01001999 if (obj->pages == NULL)
Chris Wilson37e680a2012-06-07 15:38:42 +01002000 return 0;
2001
Chris Wilsona5570172012-09-04 21:02:54 +01002002 if (obj->pages_pin_count)
2003 return -EBUSY;
2004
Ben Widawsky98438772013-07-31 17:00:12 -07002005 BUG_ON(i915_gem_obj_bound_any(obj));
Ben Widawsky3e123022013-07-31 17:00:04 -07002006
Chris Wilsona2165e32012-12-03 11:49:00 +00002007 /* ->put_pages might need to allocate memory for the bit17 swizzle
2008 * array, hence protect them from being reaped by removing them from gtt
2009 * lists early. */
Ben Widawsky35c20a62013-05-31 11:28:48 -07002010 list_del(&obj->global_list);
Chris Wilsona2165e32012-12-03 11:49:00 +00002011
Chris Wilson37e680a2012-06-07 15:38:42 +01002012 ops->put_pages(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002013 obj->pages = NULL;
Chris Wilson6c085a72012-08-20 11:40:46 +02002014
Chris Wilson55372522014-03-25 13:23:06 +00002015 i915_gem_object_invalidate(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02002016
2017 return 0;
2018}
2019
Chris Wilson21ab4e72014-09-09 11:16:08 +01002020unsigned long
2021i915_gem_shrink(struct drm_i915_private *dev_priv,
2022 long target, unsigned flags)
Chris Wilson6c085a72012-08-20 11:40:46 +02002023{
Chris Wilson60a53722014-10-03 10:29:51 +01002024 const struct {
2025 struct list_head *list;
2026 unsigned int bit;
2027 } phases[] = {
2028 { &dev_priv->mm.unbound_list, I915_SHRINK_UNBOUND },
2029 { &dev_priv->mm.bound_list, I915_SHRINK_BOUND },
2030 { NULL, 0 },
2031 }, *phase;
Chris Wilsond9973b42013-10-04 10:33:00 +01002032 unsigned long count = 0;
Chris Wilson6c085a72012-08-20 11:40:46 +02002033
Chris Wilson57094f82013-09-04 10:45:50 +01002034 /*
Chris Wilsonc8725f32014-03-17 12:21:55 +00002035 * As we may completely rewrite the (un)bound list whilst unbinding
Chris Wilson57094f82013-09-04 10:45:50 +01002036 * (due to retiring requests) we have to strictly process only
2037 * one element of the list at the time, and recheck the list
2038 * on every iteration.
Chris Wilsonc8725f32014-03-17 12:21:55 +00002039 *
2040 * In particular, we must hold a reference whilst removing the
2041 * object as we may end up waiting for and/or retiring the objects.
2042 * This might release the final reference (held by the active list)
2043 * and result in the object being freed from under us. This is
2044 * similar to the precautions the eviction code must take whilst
2045 * removing objects.
2046 *
2047 * Also note that although these lists do not hold a reference to
2048 * the object we can safely grab one here: The final object
2049 * unreferencing and the bound_list are both protected by the
2050 * dev->struct_mutex and so we won't ever be able to observe an
2051 * object on the bound_list with a reference count equals 0.
Chris Wilson57094f82013-09-04 10:45:50 +01002052 */
Chris Wilson60a53722014-10-03 10:29:51 +01002053 for (phase = phases; phase->list; phase++) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002054 struct list_head still_in_list;
Chris Wilsonc8725f32014-03-17 12:21:55 +00002055
Chris Wilson60a53722014-10-03 10:29:51 +01002056 if ((flags & phase->bit) == 0)
2057 continue;
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07002058
Chris Wilson21ab4e72014-09-09 11:16:08 +01002059 INIT_LIST_HEAD(&still_in_list);
Chris Wilson60a53722014-10-03 10:29:51 +01002060 while (count < target && !list_empty(phase->list)) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002061 struct drm_i915_gem_object *obj;
2062 struct i915_vma *vma, *v;
Chris Wilson57094f82013-09-04 10:45:50 +01002063
Chris Wilson60a53722014-10-03 10:29:51 +01002064 obj = list_first_entry(phase->list,
Chris Wilson21ab4e72014-09-09 11:16:08 +01002065 typeof(*obj), global_list);
2066 list_move_tail(&obj->global_list, &still_in_list);
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07002067
Chris Wilson60a53722014-10-03 10:29:51 +01002068 if (flags & I915_SHRINK_PURGEABLE &&
2069 !i915_gem_object_is_purgeable(obj))
Chris Wilson21ab4e72014-09-09 11:16:08 +01002070 continue;
Chris Wilson57094f82013-09-04 10:45:50 +01002071
Chris Wilson21ab4e72014-09-09 11:16:08 +01002072 drm_gem_object_reference(&obj->base);
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07002073
Chris Wilson60a53722014-10-03 10:29:51 +01002074 /* For the unbound phase, this should be a no-op! */
2075 list_for_each_entry_safe(vma, v,
2076 &obj->vma_list, vma_link)
Chris Wilson21ab4e72014-09-09 11:16:08 +01002077 if (i915_vma_unbind(vma))
2078 break;
Chris Wilson57094f82013-09-04 10:45:50 +01002079
Chris Wilson21ab4e72014-09-09 11:16:08 +01002080 if (i915_gem_object_put_pages(obj) == 0)
2081 count += obj->base.size >> PAGE_SHIFT;
2082
2083 drm_gem_object_unreference(&obj->base);
2084 }
Chris Wilson60a53722014-10-03 10:29:51 +01002085 list_splice(&still_in_list, phase->list);
Chris Wilson6c085a72012-08-20 11:40:46 +02002086 }
2087
2088 return count;
2089}
2090
Chris Wilsond9973b42013-10-04 10:33:00 +01002091static unsigned long
Chris Wilson6c085a72012-08-20 11:40:46 +02002092i915_gem_shrink_all(struct drm_i915_private *dev_priv)
2093{
Chris Wilson6c085a72012-08-20 11:40:46 +02002094 i915_gem_evict_everything(dev_priv->dev);
Chris Wilson21ab4e72014-09-09 11:16:08 +01002095 return i915_gem_shrink(dev_priv, LONG_MAX,
2096 I915_SHRINK_BOUND | I915_SHRINK_UNBOUND);
Daniel Vetter225067e2012-08-20 10:23:20 +02002097}
2098
Chris Wilson37e680a2012-06-07 15:38:42 +01002099static int
Chris Wilson6c085a72012-08-20 11:40:46 +02002100i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002101{
Chris Wilson6c085a72012-08-20 11:40:46 +02002102 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002103 int page_count, i;
2104 struct address_space *mapping;
Chris Wilson9da3da62012-06-01 15:20:22 +01002105 struct sg_table *st;
2106 struct scatterlist *sg;
Imre Deak90797e62013-02-18 19:28:03 +02002107 struct sg_page_iter sg_iter;
Eric Anholt673a3942008-07-30 12:06:12 -07002108 struct page *page;
Imre Deak90797e62013-02-18 19:28:03 +02002109 unsigned long last_pfn = 0; /* suppress gcc warning */
Chris Wilson6c085a72012-08-20 11:40:46 +02002110 gfp_t gfp;
Eric Anholt673a3942008-07-30 12:06:12 -07002111
Chris Wilson6c085a72012-08-20 11:40:46 +02002112 /* Assert that the object is not currently in any GPU domain. As it
2113 * wasn't in the GTT, there shouldn't be any way it could have been in
2114 * a GPU cache
2115 */
2116 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
2117 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
2118
Chris Wilson9da3da62012-06-01 15:20:22 +01002119 st = kmalloc(sizeof(*st), GFP_KERNEL);
2120 if (st == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002121 return -ENOMEM;
2122
Chris Wilson9da3da62012-06-01 15:20:22 +01002123 page_count = obj->base.size / PAGE_SIZE;
2124 if (sg_alloc_table(st, page_count, GFP_KERNEL)) {
Chris Wilson9da3da62012-06-01 15:20:22 +01002125 kfree(st);
2126 return -ENOMEM;
2127 }
2128
2129 /* Get the list of pages out of our struct file. They'll be pinned
2130 * at this point until we release them.
2131 *
2132 * Fail silently without starting the shrinker
2133 */
Al Viro496ad9a2013-01-23 17:07:38 -05002134 mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilson6c085a72012-08-20 11:40:46 +02002135 gfp = mapping_gfp_mask(mapping);
Linus Torvaldscaf49192012-12-10 10:51:16 -08002136 gfp |= __GFP_NORETRY | __GFP_NOWARN | __GFP_NO_KSWAPD;
Chris Wilson6c085a72012-08-20 11:40:46 +02002137 gfp &= ~(__GFP_IO | __GFP_WAIT);
Imre Deak90797e62013-02-18 19:28:03 +02002138 sg = st->sgl;
2139 st->nents = 0;
2140 for (i = 0; i < page_count; i++) {
Chris Wilson6c085a72012-08-20 11:40:46 +02002141 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
2142 if (IS_ERR(page)) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002143 i915_gem_shrink(dev_priv,
2144 page_count,
2145 I915_SHRINK_BOUND |
2146 I915_SHRINK_UNBOUND |
2147 I915_SHRINK_PURGEABLE);
Chris Wilson6c085a72012-08-20 11:40:46 +02002148 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
2149 }
2150 if (IS_ERR(page)) {
2151 /* We've tried hard to allocate the memory by reaping
2152 * our own buffer, now let the real VM do its job and
2153 * go down in flames if truly OOM.
2154 */
Chris Wilson6c085a72012-08-20 11:40:46 +02002155 i915_gem_shrink_all(dev_priv);
David Herrmannf461d1b2014-05-25 14:34:10 +02002156 page = shmem_read_mapping_page(mapping, i);
Chris Wilson6c085a72012-08-20 11:40:46 +02002157 if (IS_ERR(page))
2158 goto err_pages;
Chris Wilson6c085a72012-08-20 11:40:46 +02002159 }
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04002160#ifdef CONFIG_SWIOTLB
2161 if (swiotlb_nr_tbl()) {
2162 st->nents++;
2163 sg_set_page(sg, page, PAGE_SIZE, 0);
2164 sg = sg_next(sg);
2165 continue;
2166 }
2167#endif
Imre Deak90797e62013-02-18 19:28:03 +02002168 if (!i || page_to_pfn(page) != last_pfn + 1) {
2169 if (i)
2170 sg = sg_next(sg);
2171 st->nents++;
2172 sg_set_page(sg, page, PAGE_SIZE, 0);
2173 } else {
2174 sg->length += PAGE_SIZE;
2175 }
2176 last_pfn = page_to_pfn(page);
Daniel Vetter3bbbe702013-10-07 17:15:45 -03002177
2178 /* Check that the i965g/gm workaround works. */
2179 WARN_ON((gfp & __GFP_DMA32) && (last_pfn >= 0x00100000UL));
Eric Anholt673a3942008-07-30 12:06:12 -07002180 }
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04002181#ifdef CONFIG_SWIOTLB
2182 if (!swiotlb_nr_tbl())
2183#endif
2184 sg_mark_end(sg);
Chris Wilson74ce6b62012-10-19 15:51:06 +01002185 obj->pages = st;
2186
Eric Anholt673a3942008-07-30 12:06:12 -07002187 if (i915_gem_object_needs_bit17_swizzle(obj))
2188 i915_gem_object_do_bit_17_swizzle(obj);
2189
Daniel Vetter656bfa32014-11-20 09:26:30 +01002190 if (obj->tiling_mode != I915_TILING_NONE &&
2191 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES)
2192 i915_gem_object_pin_pages(obj);
2193
Eric Anholt673a3942008-07-30 12:06:12 -07002194 return 0;
2195
2196err_pages:
Imre Deak90797e62013-02-18 19:28:03 +02002197 sg_mark_end(sg);
2198 for_each_sg_page(st->sgl, &sg_iter, st->nents, 0)
Imre Deak2db76d72013-03-26 15:14:18 +02002199 page_cache_release(sg_page_iter_page(&sg_iter));
Chris Wilson9da3da62012-06-01 15:20:22 +01002200 sg_free_table(st);
2201 kfree(st);
Chris Wilson0820baf2014-03-25 13:23:03 +00002202
2203 /* shmemfs first checks if there is enough memory to allocate the page
2204 * and reports ENOSPC should there be insufficient, along with the usual
2205 * ENOMEM for a genuine allocation failure.
2206 *
2207 * We use ENOSPC in our driver to mean that we have run out of aperture
2208 * space and so want to translate the error from shmemfs back to our
2209 * usual understanding of ENOMEM.
2210 */
2211 if (PTR_ERR(page) == -ENOSPC)
2212 return -ENOMEM;
2213 else
2214 return PTR_ERR(page);
Eric Anholt673a3942008-07-30 12:06:12 -07002215}
2216
Chris Wilson37e680a2012-06-07 15:38:42 +01002217/* Ensure that the associated pages are gathered from the backing storage
2218 * and pinned into our object. i915_gem_object_get_pages() may be called
2219 * multiple times before they are released by a single call to
2220 * i915_gem_object_put_pages() - once the pages are no longer referenced
2221 * either as a result of memory pressure (reaping pages under the shrinker)
2222 * or as the object is itself released.
2223 */
2224int
2225i915_gem_object_get_pages(struct drm_i915_gem_object *obj)
2226{
2227 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2228 const struct drm_i915_gem_object_ops *ops = obj->ops;
2229 int ret;
2230
Chris Wilson2f745ad2012-09-04 21:02:58 +01002231 if (obj->pages)
Chris Wilson37e680a2012-06-07 15:38:42 +01002232 return 0;
2233
Chris Wilson43e28f02013-01-08 10:53:09 +00002234 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00002235 DRM_DEBUG("Attempting to obtain a purgeable object\n");
Chris Wilson8c99e572014-01-31 11:34:58 +00002236 return -EFAULT;
Chris Wilson43e28f02013-01-08 10:53:09 +00002237 }
2238
Chris Wilsona5570172012-09-04 21:02:54 +01002239 BUG_ON(obj->pages_pin_count);
2240
Chris Wilson37e680a2012-06-07 15:38:42 +01002241 ret = ops->get_pages(obj);
2242 if (ret)
2243 return ret;
2244
Ben Widawsky35c20a62013-05-31 11:28:48 -07002245 list_add_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Chris Wilson37e680a2012-06-07 15:38:42 +01002246 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002247}
2248
Ben Widawskye2d05a82013-09-24 09:57:58 -07002249static void
Chris Wilson05394f32010-11-08 19:18:58 +00002250i915_gem_object_move_to_active(struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002251 struct intel_engine_cs *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07002252{
Chris Wilson9d7730912012-11-27 16:22:52 +00002253 u32 seqno = intel_ring_get_seqno(ring);
Daniel Vetter617dbe22010-02-11 22:16:02 +01002254
Zou Nan hai852835f2010-05-21 09:08:56 +08002255 BUG_ON(ring == NULL);
Chris Wilson02978ff2013-07-09 09:22:39 +01002256 if (obj->ring != ring && obj->last_write_seqno) {
2257 /* Keep the seqno relative to the current ring */
2258 obj->last_write_seqno = seqno;
2259 }
Chris Wilson05394f32010-11-08 19:18:58 +00002260 obj->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07002261
2262 /* Add a reference if we're newly entering the active list. */
Chris Wilson05394f32010-11-08 19:18:58 +00002263 if (!obj->active) {
2264 drm_gem_object_reference(&obj->base);
2265 obj->active = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07002266 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01002267
Chris Wilson05394f32010-11-08 19:18:58 +00002268 list_move_tail(&obj->ring_list, &ring->active_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002269
Chris Wilson0201f1e2012-07-20 12:41:01 +01002270 obj->last_read_seqno = seqno;
Chris Wilsoncaea7472010-11-12 13:53:37 +00002271}
2272
Ben Widawskye2d05a82013-09-24 09:57:58 -07002273void i915_vma_move_to_active(struct i915_vma *vma,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002274 struct intel_engine_cs *ring)
Ben Widawskye2d05a82013-09-24 09:57:58 -07002275{
2276 list_move_tail(&vma->mm_list, &vma->vm->active_list);
2277 return i915_gem_object_move_to_active(vma->obj, ring);
2278}
2279
Chris Wilsoncaea7472010-11-12 13:53:37 +00002280static void
Chris Wilsoncaea7472010-11-12 13:53:37 +00002281i915_gem_object_move_to_inactive(struct drm_i915_gem_object *obj)
2282{
Ben Widawskyca191b12013-07-31 17:00:14 -07002283 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Ben Widawskyfeb822c2013-12-06 14:10:51 -08002284 struct i915_address_space *vm;
2285 struct i915_vma *vma;
Chris Wilsoncaea7472010-11-12 13:53:37 +00002286
Chris Wilson65ce3022012-07-20 12:41:02 +01002287 BUG_ON(obj->base.write_domain & ~I915_GEM_GPU_DOMAINS);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002288 BUG_ON(!obj->active);
Chris Wilson65ce3022012-07-20 12:41:02 +01002289
Ben Widawskyfeb822c2013-12-06 14:10:51 -08002290 list_for_each_entry(vm, &dev_priv->vm_list, global_link) {
2291 vma = i915_gem_obj_to_vma(obj, vm);
2292 if (vma && !list_empty(&vma->mm_list))
2293 list_move_tail(&vma->mm_list, &vm->inactive_list);
2294 }
Chris Wilsoncaea7472010-11-12 13:53:37 +00002295
Daniel Vetterf99d7062014-06-19 16:01:59 +02002296 intel_fb_obj_flush(obj, true);
2297
Chris Wilson65ce3022012-07-20 12:41:02 +01002298 list_del_init(&obj->ring_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002299 obj->ring = NULL;
2300
Chris Wilson65ce3022012-07-20 12:41:02 +01002301 obj->last_read_seqno = 0;
2302 obj->last_write_seqno = 0;
2303 obj->base.write_domain = 0;
2304
2305 obj->last_fenced_seqno = 0;
Chris Wilsoncaea7472010-11-12 13:53:37 +00002306
2307 obj->active = 0;
2308 drm_gem_object_unreference(&obj->base);
2309
2310 WARN_ON(i915_verify_lists(dev));
Eric Anholtce44b0e2008-11-06 16:00:31 -08002311}
Eric Anholt673a3942008-07-30 12:06:12 -07002312
Chris Wilsonc8725f32014-03-17 12:21:55 +00002313static void
2314i915_gem_object_retire(struct drm_i915_gem_object *obj)
2315{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002316 struct intel_engine_cs *ring = obj->ring;
Chris Wilsonc8725f32014-03-17 12:21:55 +00002317
2318 if (ring == NULL)
2319 return;
2320
2321 if (i915_seqno_passed(ring->get_seqno(ring, true),
2322 obj->last_read_seqno))
2323 i915_gem_object_move_to_inactive(obj);
2324}
2325
Chris Wilson9d7730912012-11-27 16:22:52 +00002326static int
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002327i915_gem_init_seqno(struct drm_device *dev, u32 seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01002328{
Chris Wilson9d7730912012-11-27 16:22:52 +00002329 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002330 struct intel_engine_cs *ring;
Chris Wilson9d7730912012-11-27 16:22:52 +00002331 int ret, i, j;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002332
Chris Wilson107f27a52012-12-10 13:56:17 +02002333 /* Carefully retire all requests without writing to the rings */
Chris Wilson9d7730912012-11-27 16:22:52 +00002334 for_each_ring(ring, dev_priv, i) {
Chris Wilson107f27a52012-12-10 13:56:17 +02002335 ret = intel_ring_idle(ring);
2336 if (ret)
2337 return ret;
Chris Wilson9d7730912012-11-27 16:22:52 +00002338 }
Chris Wilson9d7730912012-11-27 16:22:52 +00002339 i915_gem_retire_requests(dev);
Chris Wilson107f27a52012-12-10 13:56:17 +02002340
2341 /* Finally reset hw state */
Chris Wilson9d7730912012-11-27 16:22:52 +00002342 for_each_ring(ring, dev_priv, i) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002343 intel_ring_init_seqno(ring, seqno);
Mika Kuoppala498d2ac2012-12-04 15:12:04 +02002344
Ben Widawskyebc348b2014-04-29 14:52:28 -07002345 for (j = 0; j < ARRAY_SIZE(ring->semaphore.sync_seqno); j++)
2346 ring->semaphore.sync_seqno[j] = 0;
Chris Wilson9d7730912012-11-27 16:22:52 +00002347 }
2348
2349 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002350}
2351
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002352int i915_gem_set_seqno(struct drm_device *dev, u32 seqno)
2353{
2354 struct drm_i915_private *dev_priv = dev->dev_private;
2355 int ret;
2356
2357 if (seqno == 0)
2358 return -EINVAL;
2359
2360 /* HWS page needs to be set less than what we
2361 * will inject to ring
2362 */
2363 ret = i915_gem_init_seqno(dev, seqno - 1);
2364 if (ret)
2365 return ret;
2366
2367 /* Carefully set the last_seqno value so that wrap
2368 * detection still works
2369 */
2370 dev_priv->next_seqno = seqno;
2371 dev_priv->last_seqno = seqno - 1;
2372 if (dev_priv->last_seqno == 0)
2373 dev_priv->last_seqno--;
2374
2375 return 0;
2376}
2377
Chris Wilson9d7730912012-11-27 16:22:52 +00002378int
2379i915_gem_get_seqno(struct drm_device *dev, u32 *seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01002380{
Chris Wilson9d7730912012-11-27 16:22:52 +00002381 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002382
Chris Wilson9d7730912012-11-27 16:22:52 +00002383 /* reserve 0 for non-seqno */
2384 if (dev_priv->next_seqno == 0) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002385 int ret = i915_gem_init_seqno(dev, 0);
Chris Wilson9d7730912012-11-27 16:22:52 +00002386 if (ret)
2387 return ret;
2388
2389 dev_priv->next_seqno = 1;
2390 }
2391
Mika Kuoppalaf72b3432012-12-10 15:41:48 +02002392 *seqno = dev_priv->last_seqno = dev_priv->next_seqno++;
Chris Wilson9d7730912012-11-27 16:22:52 +00002393 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002394}
2395
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002396int __i915_add_request(struct intel_engine_cs *ring,
Mika Kuoppala0025c072013-06-12 12:35:30 +03002397 struct drm_file *file,
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002398 struct drm_i915_gem_object *obj,
Mika Kuoppala0025c072013-06-12 12:35:30 +03002399 u32 *out_seqno)
Eric Anholt673a3942008-07-30 12:06:12 -07002400{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03002401 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Chris Wilsonacb868d2012-09-26 13:47:30 +01002402 struct drm_i915_gem_request *request;
Oscar Mateo48e29f52014-07-24 17:04:29 +01002403 struct intel_ringbuffer *ringbuf;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002404 u32 request_ring_position, request_start;
Chris Wilson3cce4692010-10-27 16:11:02 +01002405 int ret;
2406
Oscar Mateo48e29f52014-07-24 17:04:29 +01002407 request = ring->preallocated_lazy_request;
2408 if (WARN_ON(request == NULL))
2409 return -ENOMEM;
2410
2411 if (i915.enable_execlists) {
2412 struct intel_context *ctx = request->ctx;
2413 ringbuf = ctx->engine[ring->id].ringbuf;
2414 } else
2415 ringbuf = ring->buffer;
2416
2417 request_start = intel_ring_get_tail(ringbuf);
Daniel Vettercc889e02012-06-13 20:45:19 +02002418 /*
2419 * Emit any outstanding flushes - execbuf can fail to emit the flush
2420 * after having emitted the batchbuffer command. Hence we need to fix
2421 * things up similar to emitting the lazy request. The difference here
2422 * is that the flush _must_ happen before the next request, no matter
2423 * what.
2424 */
Oscar Mateo48e29f52014-07-24 17:04:29 +01002425 if (i915.enable_execlists) {
2426 ret = logical_ring_flush_all_caches(ringbuf);
2427 if (ret)
2428 return ret;
2429 } else {
2430 ret = intel_ring_flush_all_caches(ring);
2431 if (ret)
2432 return ret;
2433 }
Daniel Vettercc889e02012-06-13 20:45:19 +02002434
Chris Wilsona71d8d92012-02-15 11:25:36 +00002435 /* Record the position of the start of the request so that
2436 * should we detect the updated seqno part-way through the
2437 * GPU processing the request, we never over-estimate the
2438 * position of the head.
2439 */
Oscar Mateo48e29f52014-07-24 17:04:29 +01002440 request_ring_position = intel_ring_get_tail(ringbuf);
Chris Wilsona71d8d92012-02-15 11:25:36 +00002441
Oscar Mateo48e29f52014-07-24 17:04:29 +01002442 if (i915.enable_execlists) {
2443 ret = ring->emit_request(ringbuf);
2444 if (ret)
2445 return ret;
2446 } else {
2447 ret = ring->add_request(ring);
2448 if (ret)
2449 return ret;
2450 }
Eric Anholt673a3942008-07-30 12:06:12 -07002451
Chris Wilson9d7730912012-11-27 16:22:52 +00002452 request->seqno = intel_ring_get_seqno(ring);
Zou Nan hai852835f2010-05-21 09:08:56 +08002453 request->ring = ring;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002454 request->head = request_start;
Chris Wilsona71d8d92012-02-15 11:25:36 +00002455 request->tail = request_ring_position;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002456
2457 /* Whilst this request exists, batch_obj will be on the
2458 * active_list, and so will hold the active reference. Only when this
2459 * request is retired will the the batch_obj be moved onto the
2460 * inactive_list and lose its active reference. Hence we do not need
2461 * to explicitly hold another reference here.
2462 */
Chris Wilson9a7e0c22013-08-26 19:50:54 -03002463 request->batch_obj = obj;
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002464
Oscar Mateo48e29f52014-07-24 17:04:29 +01002465 if (!i915.enable_execlists) {
2466 /* Hold a reference to the current context so that we can inspect
2467 * it later in case a hangcheck error event fires.
2468 */
2469 request->ctx = ring->last_context;
2470 if (request->ctx)
2471 i915_gem_context_reference(request->ctx);
2472 }
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002473
Eric Anholt673a3942008-07-30 12:06:12 -07002474 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08002475 list_add_tail(&request->list, &ring->request_list);
Chris Wilson3bb73ab2012-07-20 12:40:59 +01002476 request->file_priv = NULL;
Zou Nan hai852835f2010-05-21 09:08:56 +08002477
Chris Wilsondb53a302011-02-03 11:57:46 +00002478 if (file) {
2479 struct drm_i915_file_private *file_priv = file->driver_priv;
2480
Chris Wilson1c255952010-09-26 11:03:27 +01002481 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002482 request->file_priv = file_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00002483 list_add_tail(&request->client_list,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002484 &file_priv->mm.request_list);
Chris Wilson1c255952010-09-26 11:03:27 +01002485 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00002486 }
Eric Anholt673a3942008-07-30 12:06:12 -07002487
Chris Wilson9d7730912012-11-27 16:22:52 +00002488 trace_i915_gem_request_add(ring, request->seqno);
Chris Wilson18235212013-09-04 10:45:51 +01002489 ring->outstanding_lazy_seqno = 0;
Chris Wilson3c0e2342013-09-04 10:45:52 +01002490 ring->preallocated_lazy_request = NULL;
Chris Wilsondb53a302011-02-03 11:57:46 +00002491
Daniel Vetter87255482014-11-19 20:36:48 +01002492 i915_queue_hangcheck(ring->dev);
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03002493
Daniel Vetter87255482014-11-19 20:36:48 +01002494 cancel_delayed_work_sync(&dev_priv->mm.idle_work);
2495 queue_delayed_work(dev_priv->wq,
2496 &dev_priv->mm.retire_work,
2497 round_jiffies_up_relative(HZ));
2498 intel_mark_busy(dev_priv->dev);
Daniel Vettercc889e02012-06-13 20:45:19 +02002499
Chris Wilsonacb868d2012-09-26 13:47:30 +01002500 if (out_seqno)
Chris Wilson9d7730912012-11-27 16:22:52 +00002501 *out_seqno = request->seqno;
Chris Wilson3cce4692010-10-27 16:11:02 +01002502 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002503}
2504
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002505static inline void
2506i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07002507{
Chris Wilson1c255952010-09-26 11:03:27 +01002508 struct drm_i915_file_private *file_priv = request->file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07002509
Chris Wilson1c255952010-09-26 11:03:27 +01002510 if (!file_priv)
2511 return;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002512
Chris Wilson1c255952010-09-26 11:03:27 +01002513 spin_lock(&file_priv->mm.lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002514 list_del(&request->client_list);
2515 request->file_priv = NULL;
Chris Wilson1c255952010-09-26 11:03:27 +01002516 spin_unlock(&file_priv->mm.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07002517}
2518
Mika Kuoppala939fd762014-01-30 19:04:44 +02002519static bool i915_context_is_banned(struct drm_i915_private *dev_priv,
Oscar Mateo273497e2014-05-22 14:13:37 +01002520 const struct intel_context *ctx)
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002521{
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002522 unsigned long elapsed;
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002523
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002524 elapsed = get_seconds() - ctx->hang_stats.guilty_ts;
2525
2526 if (ctx->hang_stats.banned)
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002527 return true;
2528
2529 if (elapsed <= DRM_I915_CTX_BAN_PERIOD) {
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002530 if (!i915_gem_context_is_default(ctx)) {
Mika Kuoppala3fac8972014-01-30 16:05:48 +02002531 DRM_DEBUG("context hanging too fast, banning!\n");
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002532 return true;
Mika Kuoppala88b4aa82014-03-28 18:18:18 +02002533 } else if (i915_stop_ring_allow_ban(dev_priv)) {
2534 if (i915_stop_ring_allow_warn(dev_priv))
2535 DRM_ERROR("gpu hanging too fast, banning!\n");
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002536 return true;
Mika Kuoppala3fac8972014-01-30 16:05:48 +02002537 }
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002538 }
2539
2540 return false;
2541}
2542
Mika Kuoppala939fd762014-01-30 19:04:44 +02002543static void i915_set_reset_status(struct drm_i915_private *dev_priv,
Oscar Mateo273497e2014-05-22 14:13:37 +01002544 struct intel_context *ctx,
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002545 const bool guilty)
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002546{
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002547 struct i915_ctx_hang_stats *hs;
2548
2549 if (WARN_ON(!ctx))
2550 return;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002551
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002552 hs = &ctx->hang_stats;
2553
2554 if (guilty) {
Mika Kuoppala939fd762014-01-30 19:04:44 +02002555 hs->banned = i915_context_is_banned(dev_priv, ctx);
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002556 hs->batch_active++;
2557 hs->guilty_ts = get_seconds();
2558 } else {
2559 hs->batch_pending++;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002560 }
2561}
2562
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002563static void i915_gem_free_request(struct drm_i915_gem_request *request)
2564{
Oscar Mateodcb4c122014-11-13 10:28:10 +00002565 struct intel_context *ctx = request->ctx;
2566
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002567 list_del(&request->list);
2568 i915_gem_request_remove_from_client(request);
2569
Thomas Daniel0794aed2014-11-25 10:39:25 +00002570 if (ctx) {
2571 if (i915.enable_execlists) {
2572 struct intel_engine_cs *ring = request->ring;
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002573
Thomas Daniel0794aed2014-11-25 10:39:25 +00002574 if (ctx != ring->default_context)
2575 intel_lr_context_unpin(ring, ctx);
2576 }
Oscar Mateodcb4c122014-11-13 10:28:10 +00002577 i915_gem_context_unreference(ctx);
2578 }
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002579 kfree(request);
2580}
2581
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002582struct drm_i915_gem_request *
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002583i915_gem_find_active_request(struct intel_engine_cs *ring)
Chris Wilson9375e442010-09-19 12:21:28 +01002584{
Chris Wilson4db080f2013-12-04 11:37:09 +00002585 struct drm_i915_gem_request *request;
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002586 u32 completed_seqno;
2587
2588 completed_seqno = ring->get_seqno(ring, false);
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002589
Chris Wilson4db080f2013-12-04 11:37:09 +00002590 list_for_each_entry(request, &ring->request_list, list) {
2591 if (i915_seqno_passed(completed_seqno, request->seqno))
2592 continue;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002593
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002594 return request;
Chris Wilson4db080f2013-12-04 11:37:09 +00002595 }
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002596
2597 return NULL;
2598}
2599
2600static void i915_gem_reset_ring_status(struct drm_i915_private *dev_priv,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002601 struct intel_engine_cs *ring)
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002602{
2603 struct drm_i915_gem_request *request;
2604 bool ring_hung;
2605
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002606 request = i915_gem_find_active_request(ring);
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002607
2608 if (request == NULL)
2609 return;
2610
2611 ring_hung = ring->hangcheck.score >= HANGCHECK_SCORE_RING_HUNG;
2612
Mika Kuoppala939fd762014-01-30 19:04:44 +02002613 i915_set_reset_status(dev_priv, request->ctx, ring_hung);
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002614
2615 list_for_each_entry_continue(request, &ring->request_list, list)
Mika Kuoppala939fd762014-01-30 19:04:44 +02002616 i915_set_reset_status(dev_priv, request->ctx, false);
Chris Wilson4db080f2013-12-04 11:37:09 +00002617}
2618
2619static void i915_gem_reset_ring_cleanup(struct drm_i915_private *dev_priv,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002620 struct intel_engine_cs *ring)
Chris Wilson4db080f2013-12-04 11:37:09 +00002621{
Chris Wilsondfaae392010-09-22 10:31:52 +01002622 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00002623 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07002624
Chris Wilson05394f32010-11-08 19:18:58 +00002625 obj = list_first_entry(&ring->active_list,
2626 struct drm_i915_gem_object,
2627 ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07002628
Chris Wilson05394f32010-11-08 19:18:58 +00002629 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002630 }
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002631
2632 /*
Oscar Mateodcb4c122014-11-13 10:28:10 +00002633 * Clear the execlists queue up before freeing the requests, as those
2634 * are the ones that keep the context and ringbuffer backing objects
2635 * pinned in place.
2636 */
2637 while (!list_empty(&ring->execlist_queue)) {
2638 struct intel_ctx_submit_request *submit_req;
2639
2640 submit_req = list_first_entry(&ring->execlist_queue,
2641 struct intel_ctx_submit_request,
2642 execlist_link);
2643 list_del(&submit_req->execlist_link);
2644 intel_runtime_pm_put(dev_priv);
2645 i915_gem_context_unreference(submit_req->ctx);
2646 kfree(submit_req);
2647 }
2648
2649 /*
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002650 * We must free the requests after all the corresponding objects have
2651 * been moved off active lists. Which is the same order as the normal
2652 * retire_requests function does. This is important if object hold
2653 * implicit references on things like e.g. ppgtt address spaces through
2654 * the request.
2655 */
2656 while (!list_empty(&ring->request_list)) {
2657 struct drm_i915_gem_request *request;
2658
2659 request = list_first_entry(&ring->request_list,
2660 struct drm_i915_gem_request,
2661 list);
2662
2663 i915_gem_free_request(request);
2664 }
Chris Wilsone3efda42014-04-09 09:19:41 +01002665
2666 /* These may not have been flush before the reset, do so now */
2667 kfree(ring->preallocated_lazy_request);
2668 ring->preallocated_lazy_request = NULL;
2669 ring->outstanding_lazy_seqno = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002670}
2671
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002672void i915_gem_restore_fences(struct drm_device *dev)
Chris Wilson312817a2010-11-22 11:50:11 +00002673{
2674 struct drm_i915_private *dev_priv = dev->dev_private;
2675 int i;
2676
Daniel Vetter4b9de732011-10-09 21:52:02 +02002677 for (i = 0; i < dev_priv->num_fence_regs; i++) {
Chris Wilson312817a2010-11-22 11:50:11 +00002678 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
Chris Wilson7d2cb392010-11-27 17:38:29 +00002679
Daniel Vetter94a335d2013-07-17 14:51:28 +02002680 /*
2681 * Commit delayed tiling changes if we have an object still
2682 * attached to the fence, otherwise just clear the fence.
2683 */
2684 if (reg->obj) {
2685 i915_gem_object_update_fence(reg->obj, reg,
2686 reg->obj->tiling_mode);
2687 } else {
2688 i915_gem_write_fence(dev, i, NULL);
2689 }
Chris Wilson312817a2010-11-22 11:50:11 +00002690 }
2691}
2692
Chris Wilson069efc12010-09-30 16:53:18 +01002693void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07002694{
Chris Wilsondfaae392010-09-22 10:31:52 +01002695 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002696 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002697 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07002698
Chris Wilson4db080f2013-12-04 11:37:09 +00002699 /*
2700 * Before we free the objects from the requests, we need to inspect
2701 * them for finding the guilty party. As the requests only borrow
2702 * their reference to the objects, the inspection must be done first.
2703 */
Chris Wilsonb4519512012-05-11 14:29:30 +01002704 for_each_ring(ring, dev_priv, i)
Chris Wilson4db080f2013-12-04 11:37:09 +00002705 i915_gem_reset_ring_status(dev_priv, ring);
2706
2707 for_each_ring(ring, dev_priv, i)
2708 i915_gem_reset_ring_cleanup(dev_priv, ring);
Chris Wilsondfaae392010-09-22 10:31:52 +01002709
Ben Widawskyacce9ff2013-12-06 14:11:03 -08002710 i915_gem_context_reset(dev);
2711
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002712 i915_gem_restore_fences(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07002713}
2714
2715/**
2716 * This function clears the request list as sequence numbers are passed.
2717 */
Chris Wilson1cf0ba12014-05-05 09:07:33 +01002718void
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002719i915_gem_retire_requests_ring(struct intel_engine_cs *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07002720{
Eric Anholt673a3942008-07-30 12:06:12 -07002721 uint32_t seqno;
2722
Chris Wilsondb53a302011-02-03 11:57:46 +00002723 if (list_empty(&ring->request_list))
Karsten Wiese6c0594a2009-02-23 15:07:57 +01002724 return;
2725
Chris Wilsondb53a302011-02-03 11:57:46 +00002726 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002727
Chris Wilsonb2eadbc2012-08-09 10:58:30 +01002728 seqno = ring->get_seqno(ring, true);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002729
Chris Wilsone9103032014-01-07 11:45:14 +00002730 /* Move any buffers on the active list that are no longer referenced
2731 * by the ringbuffer to the flushing/inactive lists as appropriate,
2732 * before we free the context associated with the requests.
2733 */
2734 while (!list_empty(&ring->active_list)) {
2735 struct drm_i915_gem_object *obj;
2736
2737 obj = list_first_entry(&ring->active_list,
2738 struct drm_i915_gem_object,
2739 ring_list);
2740
2741 if (!i915_seqno_passed(seqno, obj->last_read_seqno))
2742 break;
2743
2744 i915_gem_object_move_to_inactive(obj);
2745 }
2746
2747
Zou Nan hai852835f2010-05-21 09:08:56 +08002748 while (!list_empty(&ring->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002749 struct drm_i915_gem_request *request;
Oscar Mateo48e29f52014-07-24 17:04:29 +01002750 struct intel_ringbuffer *ringbuf;
Eric Anholt673a3942008-07-30 12:06:12 -07002751
Zou Nan hai852835f2010-05-21 09:08:56 +08002752 request = list_first_entry(&ring->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07002753 struct drm_i915_gem_request,
2754 list);
Eric Anholt673a3942008-07-30 12:06:12 -07002755
Chris Wilsondfaae392010-09-22 10:31:52 +01002756 if (!i915_seqno_passed(seqno, request->seqno))
Eric Anholt673a3942008-07-30 12:06:12 -07002757 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002758
Chris Wilsondb53a302011-02-03 11:57:46 +00002759 trace_i915_gem_request_retire(ring, request->seqno);
Oscar Mateo48e29f52014-07-24 17:04:29 +01002760
2761 /* This is one of the few common intersection points
2762 * between legacy ringbuffer submission and execlists:
2763 * we need to tell them apart in order to find the correct
2764 * ringbuffer to which the request belongs to.
2765 */
2766 if (i915.enable_execlists) {
2767 struct intel_context *ctx = request->ctx;
2768 ringbuf = ctx->engine[ring->id].ringbuf;
2769 } else
2770 ringbuf = ring->buffer;
2771
Chris Wilsona71d8d92012-02-15 11:25:36 +00002772 /* We know the GPU must have read the request to have
2773 * sent us the seqno + interrupt, so use the position
2774 * of tail of the request to update the last known position
2775 * of the GPU head.
2776 */
Oscar Mateo48e29f52014-07-24 17:04:29 +01002777 ringbuf->last_retired_head = request->tail;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002778
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002779 i915_gem_free_request(request);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002780 }
2781
Chris Wilsondb53a302011-02-03 11:57:46 +00002782 if (unlikely(ring->trace_irq_seqno &&
2783 i915_seqno_passed(seqno, ring->trace_irq_seqno))) {
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002784 ring->irq_put(ring);
Chris Wilsondb53a302011-02-03 11:57:46 +00002785 ring->trace_irq_seqno = 0;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01002786 }
Chris Wilson23bc5982010-09-29 16:10:57 +01002787
Chris Wilsondb53a302011-02-03 11:57:46 +00002788 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002789}
2790
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002791bool
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002792i915_gem_retire_requests(struct drm_device *dev)
2793{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03002794 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002795 struct intel_engine_cs *ring;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002796 bool idle = true;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002797 int i;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002798
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002799 for_each_ring(ring, dev_priv, i) {
Chris Wilsonb4519512012-05-11 14:29:30 +01002800 i915_gem_retire_requests_ring(ring);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002801 idle &= list_empty(&ring->request_list);
Thomas Danielc86ee3a92014-11-13 10:27:05 +00002802 if (i915.enable_execlists) {
2803 unsigned long flags;
2804
2805 spin_lock_irqsave(&ring->execlist_lock, flags);
2806 idle &= list_empty(&ring->execlist_queue);
2807 spin_unlock_irqrestore(&ring->execlist_lock, flags);
2808
2809 intel_execlists_retire_requests(ring);
2810 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002811 }
2812
2813 if (idle)
2814 mod_delayed_work(dev_priv->wq,
2815 &dev_priv->mm.idle_work,
2816 msecs_to_jiffies(100));
2817
2818 return idle;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002819}
2820
Daniel Vetter75ef9da2010-08-21 00:25:16 +02002821static void
Eric Anholt673a3942008-07-30 12:06:12 -07002822i915_gem_retire_work_handler(struct work_struct *work)
2823{
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002824 struct drm_i915_private *dev_priv =
2825 container_of(work, typeof(*dev_priv), mm.retire_work.work);
2826 struct drm_device *dev = dev_priv->dev;
Chris Wilson0a587052011-01-09 21:05:44 +00002827 bool idle;
Eric Anholt673a3942008-07-30 12:06:12 -07002828
Chris Wilson891b48c2010-09-29 12:26:37 +01002829 /* Come back later if the device is busy... */
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002830 idle = false;
2831 if (mutex_trylock(&dev->struct_mutex)) {
2832 idle = i915_gem_retire_requests(dev);
2833 mutex_unlock(&dev->struct_mutex);
2834 }
2835 if (!idle)
Chris Wilsonbcb45082012-10-05 17:02:57 +01002836 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work,
2837 round_jiffies_up_relative(HZ));
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002838}
Chris Wilson891b48c2010-09-29 12:26:37 +01002839
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002840static void
2841i915_gem_idle_work_handler(struct work_struct *work)
2842{
2843 struct drm_i915_private *dev_priv =
2844 container_of(work, typeof(*dev_priv), mm.idle_work.work);
Zou Nan haid1b851f2010-05-21 09:08:57 +08002845
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002846 intel_mark_idle(dev_priv->dev);
Eric Anholt673a3942008-07-30 12:06:12 -07002847}
2848
Ben Widawsky5816d642012-04-11 11:18:19 -07002849/**
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002850 * Ensures that an object will eventually get non-busy by flushing any required
2851 * write domains, emitting any outstanding lazy request and retiring and
2852 * completed requests.
2853 */
2854static int
2855i915_gem_object_flush_active(struct drm_i915_gem_object *obj)
2856{
2857 int ret;
2858
2859 if (obj->active) {
Chris Wilson0201f1e2012-07-20 12:41:01 +01002860 ret = i915_gem_check_olr(obj->ring, obj->last_read_seqno);
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002861 if (ret)
2862 return ret;
2863
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002864 i915_gem_retire_requests_ring(obj->ring);
2865 }
2866
2867 return 0;
2868}
2869
2870/**
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002871 * i915_gem_wait_ioctl - implements DRM_IOCTL_I915_GEM_WAIT
2872 * @DRM_IOCTL_ARGS: standard ioctl arguments
2873 *
2874 * Returns 0 if successful, else an error is returned with the remaining time in
2875 * the timeout parameter.
2876 * -ETIME: object is still busy after timeout
2877 * -ERESTARTSYS: signal interrupted the wait
2878 * -ENONENT: object doesn't exist
2879 * Also possible, but rare:
2880 * -EAGAIN: GPU wedged
2881 * -ENOMEM: damn
2882 * -ENODEV: Internal IRQ fail
2883 * -E?: The add request failed
2884 *
2885 * The wait ioctl with a timeout of 0 reimplements the busy ioctl. With any
2886 * non-zero timeout parameter the wait ioctl will wait for the given number of
2887 * nanoseconds on an object becoming unbusy. Since the wait itself does so
2888 * without holding struct_mutex the object may become re-busied before this
2889 * function completes. A similar but shorter * race condition exists in the busy
2890 * ioctl
2891 */
2892int
2893i915_gem_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
2894{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03002895 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002896 struct drm_i915_gem_wait *args = data;
2897 struct drm_i915_gem_object *obj;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002898 struct intel_engine_cs *ring = NULL;
Daniel Vetterf69061b2012-12-06 09:01:42 +01002899 unsigned reset_counter;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002900 u32 seqno = 0;
2901 int ret = 0;
2902
Daniel Vetter11b5d512014-09-29 15:31:26 +02002903 if (args->flags != 0)
2904 return -EINVAL;
2905
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002906 ret = i915_mutex_lock_interruptible(dev);
2907 if (ret)
2908 return ret;
2909
2910 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->bo_handle));
2911 if (&obj->base == NULL) {
2912 mutex_unlock(&dev->struct_mutex);
2913 return -ENOENT;
2914 }
2915
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002916 /* Need to make sure the object gets inactive eventually. */
2917 ret = i915_gem_object_flush_active(obj);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002918 if (ret)
2919 goto out;
2920
2921 if (obj->active) {
Chris Wilson0201f1e2012-07-20 12:41:01 +01002922 seqno = obj->last_read_seqno;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002923 ring = obj->ring;
2924 }
2925
2926 if (seqno == 0)
2927 goto out;
2928
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002929 /* Do this after OLR check to make sure we make forward progress polling
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00002930 * on this IOCTL with a timeout <=0 (like busy ioctl)
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002931 */
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00002932 if (args->timeout_ns <= 0) {
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002933 ret = -ETIME;
2934 goto out;
2935 }
2936
2937 drm_gem_object_unreference(&obj->base);
Daniel Vetterf69061b2012-12-06 09:01:42 +01002938 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002939 mutex_unlock(&dev->struct_mutex);
2940
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02002941 return __i915_wait_seqno(ring, seqno, reset_counter, true,
2942 &args->timeout_ns, file->driver_priv);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002943
2944out:
2945 drm_gem_object_unreference(&obj->base);
2946 mutex_unlock(&dev->struct_mutex);
2947 return ret;
2948}
2949
2950/**
Ben Widawsky5816d642012-04-11 11:18:19 -07002951 * i915_gem_object_sync - sync an object to a ring.
2952 *
2953 * @obj: object which may be in use on another ring.
2954 * @to: ring we wish to use the object on. May be NULL.
2955 *
2956 * This code is meant to abstract object synchronization with the GPU.
2957 * Calling with NULL implies synchronizing the object with the CPU
2958 * rather than a particular GPU ring.
2959 *
2960 * Returns 0 if successful, else propagates up the lower layer error.
2961 */
Ben Widawsky2911a352012-04-05 14:47:36 -07002962int
2963i915_gem_object_sync(struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002964 struct intel_engine_cs *to)
Ben Widawsky2911a352012-04-05 14:47:36 -07002965{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002966 struct intel_engine_cs *from = obj->ring;
Ben Widawsky2911a352012-04-05 14:47:36 -07002967 u32 seqno;
2968 int ret, idx;
2969
2970 if (from == NULL || to == from)
2971 return 0;
2972
Ben Widawsky5816d642012-04-11 11:18:19 -07002973 if (to == NULL || !i915_semaphore_is_enabled(obj->base.dev))
Chris Wilson0201f1e2012-07-20 12:41:01 +01002974 return i915_gem_object_wait_rendering(obj, false);
Ben Widawsky2911a352012-04-05 14:47:36 -07002975
2976 idx = intel_ring_sync_index(from, to);
2977
Chris Wilson0201f1e2012-07-20 12:41:01 +01002978 seqno = obj->last_read_seqno;
Rodrigo Vividdd4dbc2014-06-30 09:51:11 -07002979 /* Optimization: Avoid semaphore sync when we are sure we already
2980 * waited for an object with higher seqno */
Ben Widawskyebc348b2014-04-29 14:52:28 -07002981 if (seqno <= from->semaphore.sync_seqno[idx])
Ben Widawsky2911a352012-04-05 14:47:36 -07002982 return 0;
2983
Ben Widawskyb4aca012012-04-25 20:50:12 -07002984 ret = i915_gem_check_olr(obj->ring, seqno);
2985 if (ret)
2986 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07002987
Chris Wilsonb52b89d2013-09-25 11:43:28 +01002988 trace_i915_gem_ring_sync_to(from, to, seqno);
Ben Widawskyebc348b2014-04-29 14:52:28 -07002989 ret = to->semaphore.sync_to(to, from, seqno);
Ben Widawskye3a5a222012-04-11 11:18:20 -07002990 if (!ret)
Mika Kuoppala7b01e262012-11-28 17:18:45 +02002991 /* We use last_read_seqno because sync_to()
2992 * might have just caused seqno wrap under
2993 * the radar.
2994 */
Ben Widawskyebc348b2014-04-29 14:52:28 -07002995 from->semaphore.sync_seqno[idx] = obj->last_read_seqno;
Ben Widawsky2911a352012-04-05 14:47:36 -07002996
Ben Widawskye3a5a222012-04-11 11:18:20 -07002997 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07002998}
2999
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01003000static void i915_gem_object_finish_gtt(struct drm_i915_gem_object *obj)
3001{
3002 u32 old_write_domain, old_read_domains;
3003
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01003004 /* Force a pagefault for domain tracking on next user access */
3005 i915_gem_release_mmap(obj);
3006
Keith Packardb97c3d92011-06-24 21:02:59 -07003007 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
3008 return;
3009
Chris Wilson97c809fd2012-10-09 19:24:38 +01003010 /* Wait for any direct GTT access to complete */
3011 mb();
3012
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01003013 old_read_domains = obj->base.read_domains;
3014 old_write_domain = obj->base.write_domain;
3015
3016 obj->base.read_domains &= ~I915_GEM_DOMAIN_GTT;
3017 obj->base.write_domain &= ~I915_GEM_DOMAIN_GTT;
3018
3019 trace_i915_gem_object_change_domain(obj,
3020 old_read_domains,
3021 old_write_domain);
3022}
3023
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003024int i915_vma_unbind(struct i915_vma *vma)
Eric Anholt673a3942008-07-30 12:06:12 -07003025{
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003026 struct drm_i915_gem_object *obj = vma->obj;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003027 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson43e28f02013-01-08 10:53:09 +00003028 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003029
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003030 if (list_empty(&vma->vma_link))
Eric Anholt673a3942008-07-30 12:06:12 -07003031 return 0;
3032
Daniel Vetter0ff501c2013-08-29 19:50:31 +02003033 if (!drm_mm_node_allocated(&vma->node)) {
3034 i915_gem_vma_destroy(vma);
Daniel Vetter0ff501c2013-08-29 19:50:31 +02003035 return 0;
3036 }
Ben Widawsky433544b2013-08-13 18:09:06 -07003037
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08003038 if (vma->pin_count)
Chris Wilson31d8d652012-05-24 19:11:20 +01003039 return -EBUSY;
Eric Anholt673a3942008-07-30 12:06:12 -07003040
Chris Wilsonc4670ad2012-08-20 10:23:27 +01003041 BUG_ON(obj->pages == NULL);
3042
Chris Wilsona8198ee2011-04-13 22:04:09 +01003043 ret = i915_gem_object_finish_gpu(obj);
Chris Wilson1488fc02012-04-24 15:47:31 +01003044 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07003045 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01003046 /* Continue on if we fail due to EIO, the GPU is hung so we
3047 * should be safe and we need to cleanup or else we might
3048 * cause memory corruption through use-after-free.
3049 */
Chris Wilsona8198ee2011-04-13 22:04:09 +01003050
Chris Wilson1d1ef21d2014-09-09 07:02:43 +01003051 /* Throw away the active reference before moving to the unbound list */
3052 i915_gem_object_retire(obj);
3053
Daniel Vetter8b1bc9b2014-02-14 14:06:07 +01003054 if (i915_is_ggtt(vma->vm)) {
3055 i915_gem_object_finish_gtt(obj);
Chris Wilsona8198ee2011-04-13 22:04:09 +01003056
Daniel Vetter8b1bc9b2014-02-14 14:06:07 +01003057 /* release the fence reg _after_ flushing */
3058 ret = i915_gem_object_put_fence(obj);
3059 if (ret)
3060 return ret;
3061 }
Daniel Vetter96b47b62009-12-15 17:50:00 +01003062
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003063 trace_i915_vma_unbind(vma);
Chris Wilsondb53a302011-02-03 11:57:46 +00003064
Ben Widawsky6f65e292013-12-06 14:10:56 -08003065 vma->unbind_vma(vma);
3066
Chris Wilson64bf9302014-02-25 14:23:28 +00003067 list_del_init(&vma->mm_list);
Ben Widawsky5cacaac2013-07-31 17:00:13 -07003068 if (i915_is_ggtt(vma->vm))
Chris Wilsone6a84462014-08-11 12:00:12 +02003069 obj->map_and_fenceable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07003070
Ben Widawsky2f633152013-07-17 12:19:03 -07003071 drm_mm_remove_node(&vma->node);
3072 i915_gem_vma_destroy(vma);
3073
3074 /* Since the unbound list is global, only move to that list if
Daniel Vetterb93dab62013-08-26 11:23:47 +02003075 * no more VMAs exist. */
Armin Reese9490edb2014-07-11 10:20:07 -07003076 if (list_empty(&obj->vma_list)) {
3077 i915_gem_gtt_finish_object(obj);
Ben Widawsky2f633152013-07-17 12:19:03 -07003078 list_move_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Armin Reese9490edb2014-07-11 10:20:07 -07003079 }
Eric Anholt673a3942008-07-30 12:06:12 -07003080
Chris Wilson70903c32013-12-04 09:59:09 +00003081 /* And finally now the object is completely decoupled from this vma,
3082 * we can drop its hold on the backing storage and allow it to be
3083 * reaped by the shrinker.
3084 */
3085 i915_gem_object_unpin_pages(obj);
3086
Chris Wilson88241782011-01-07 17:09:48 +00003087 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00003088}
3089
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07003090int i915_gpu_idle(struct drm_device *dev)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003091{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003092 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003093 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003094 int ret, i;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003095
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003096 /* Flush everything onto the inactive list. */
Chris Wilsonb4519512012-05-11 14:29:30 +01003097 for_each_ring(ring, dev_priv, i) {
Thomas Danielecdb5fd2014-08-20 16:29:24 +01003098 if (!i915.enable_execlists) {
3099 ret = i915_switch_context(ring, ring->default_context);
3100 if (ret)
3101 return ret;
3102 }
Ben Widawskyb6c74882012-08-14 14:35:14 -07003103
Chris Wilson3e960502012-11-27 16:22:54 +00003104 ret = intel_ring_idle(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003105 if (ret)
3106 return ret;
3107 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003108
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01003109 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003110}
3111
Chris Wilson9ce079e2012-04-17 15:31:30 +01003112static void i965_write_fence_reg(struct drm_device *dev, int reg,
3113 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003114{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003115 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak56c844e2013-01-07 21:47:34 +02003116 int fence_reg;
3117 int fence_pitch_shift;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003118
Imre Deak56c844e2013-01-07 21:47:34 +02003119 if (INTEL_INFO(dev)->gen >= 6) {
3120 fence_reg = FENCE_REG_SANDYBRIDGE_0;
3121 fence_pitch_shift = SANDYBRIDGE_FENCE_PITCH_SHIFT;
3122 } else {
3123 fence_reg = FENCE_REG_965_0;
3124 fence_pitch_shift = I965_FENCE_PITCH_SHIFT;
3125 }
3126
Chris Wilsond18b9612013-07-10 13:36:23 +01003127 fence_reg += reg * 8;
3128
3129 /* To w/a incoherency with non-atomic 64-bit register updates,
3130 * we split the 64-bit update into two 32-bit writes. In order
3131 * for a partial fence not to be evaluated between writes, we
3132 * precede the update with write to turn off the fence register,
3133 * and only enable the fence as the last step.
3134 *
3135 * For extra levels of paranoia, we make sure each step lands
3136 * before applying the next step.
3137 */
3138 I915_WRITE(fence_reg, 0);
3139 POSTING_READ(fence_reg);
3140
Chris Wilson9ce079e2012-04-17 15:31:30 +01003141 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003142 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilsond18b9612013-07-10 13:36:23 +01003143 uint64_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003144
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003145 val = (uint64_t)((i915_gem_obj_ggtt_offset(obj) + size - 4096) &
Chris Wilson9ce079e2012-04-17 15:31:30 +01003146 0xfffff000) << 32;
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003147 val |= i915_gem_obj_ggtt_offset(obj) & 0xfffff000;
Imre Deak56c844e2013-01-07 21:47:34 +02003148 val |= (uint64_t)((obj->stride / 128) - 1) << fence_pitch_shift;
Chris Wilson9ce079e2012-04-17 15:31:30 +01003149 if (obj->tiling_mode == I915_TILING_Y)
3150 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
3151 val |= I965_FENCE_REG_VALID;
Daniel Vetterc6642782010-11-12 13:46:18 +00003152
Chris Wilsond18b9612013-07-10 13:36:23 +01003153 I915_WRITE(fence_reg + 4, val >> 32);
3154 POSTING_READ(fence_reg + 4);
3155
3156 I915_WRITE(fence_reg + 0, val);
3157 POSTING_READ(fence_reg);
3158 } else {
3159 I915_WRITE(fence_reg + 4, 0);
3160 POSTING_READ(fence_reg + 4);
3161 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08003162}
3163
Chris Wilson9ce079e2012-04-17 15:31:30 +01003164static void i915_write_fence_reg(struct drm_device *dev, int reg,
3165 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003166{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003167 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9ce079e2012-04-17 15:31:30 +01003168 u32 val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003169
Chris Wilson9ce079e2012-04-17 15:31:30 +01003170 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003171 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003172 int pitch_val;
3173 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003174
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003175 WARN((i915_gem_obj_ggtt_offset(obj) & ~I915_FENCE_START_MASK) ||
Chris Wilson9ce079e2012-04-17 15:31:30 +01003176 (size & -size) != size ||
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003177 (i915_gem_obj_ggtt_offset(obj) & (size - 1)),
3178 "object 0x%08lx [fenceable? %d] not 1M or pot-size (0x%08x) aligned\n",
3179 i915_gem_obj_ggtt_offset(obj), obj->map_and_fenceable, size);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003180
3181 if (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev))
3182 tile_width = 128;
3183 else
3184 tile_width = 512;
3185
3186 /* Note: pitch better be a power of two tile widths */
3187 pitch_val = obj->stride / tile_width;
3188 pitch_val = ffs(pitch_val) - 1;
3189
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003190 val = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003191 if (obj->tiling_mode == I915_TILING_Y)
3192 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
3193 val |= I915_FENCE_SIZE_BITS(size);
3194 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
3195 val |= I830_FENCE_REG_VALID;
3196 } else
3197 val = 0;
3198
3199 if (reg < 8)
3200 reg = FENCE_REG_830_0 + reg * 4;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003201 else
Chris Wilson9ce079e2012-04-17 15:31:30 +01003202 reg = FENCE_REG_945_8 + (reg - 8) * 4;
Jesse Barnes0f973f22009-01-26 17:10:45 -08003203
Chris Wilson9ce079e2012-04-17 15:31:30 +01003204 I915_WRITE(reg, val);
3205 POSTING_READ(reg);
Jesse Barnesde151cf2008-11-12 10:03:55 -08003206}
3207
Chris Wilson9ce079e2012-04-17 15:31:30 +01003208static void i830_write_fence_reg(struct drm_device *dev, int reg,
3209 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003210{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003211 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003212 uint32_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003213
Chris Wilson9ce079e2012-04-17 15:31:30 +01003214 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003215 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003216 uint32_t pitch_val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003217
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003218 WARN((i915_gem_obj_ggtt_offset(obj) & ~I830_FENCE_START_MASK) ||
Chris Wilson9ce079e2012-04-17 15:31:30 +01003219 (size & -size) != size ||
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003220 (i915_gem_obj_ggtt_offset(obj) & (size - 1)),
3221 "object 0x%08lx not 512K or pot-size 0x%08x aligned\n",
3222 i915_gem_obj_ggtt_offset(obj), size);
Eric Anholte76a16d2009-05-26 17:44:56 -07003223
Chris Wilson9ce079e2012-04-17 15:31:30 +01003224 pitch_val = obj->stride / 128;
3225 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003226
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003227 val = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003228 if (obj->tiling_mode == I915_TILING_Y)
3229 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
3230 val |= I830_FENCE_SIZE_BITS(size);
3231 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
3232 val |= I830_FENCE_REG_VALID;
3233 } else
3234 val = 0;
Daniel Vetterc6642782010-11-12 13:46:18 +00003235
Chris Wilson9ce079e2012-04-17 15:31:30 +01003236 I915_WRITE(FENCE_REG_830_0 + reg * 4, val);
3237 POSTING_READ(FENCE_REG_830_0 + reg * 4);
3238}
3239
Chris Wilsond0a57782012-10-09 19:24:37 +01003240inline static bool i915_gem_object_needs_mb(struct drm_i915_gem_object *obj)
3241{
3242 return obj && obj->base.read_domains & I915_GEM_DOMAIN_GTT;
3243}
3244
Chris Wilson9ce079e2012-04-17 15:31:30 +01003245static void i915_gem_write_fence(struct drm_device *dev, int reg,
3246 struct drm_i915_gem_object *obj)
3247{
Chris Wilsond0a57782012-10-09 19:24:37 +01003248 struct drm_i915_private *dev_priv = dev->dev_private;
3249
3250 /* Ensure that all CPU reads are completed before installing a fence
3251 * and all writes before removing the fence.
3252 */
3253 if (i915_gem_object_needs_mb(dev_priv->fence_regs[reg].obj))
3254 mb();
3255
Daniel Vetter94a335d2013-07-17 14:51:28 +02003256 WARN(obj && (!obj->stride || !obj->tiling_mode),
3257 "bogus fence setup with stride: 0x%x, tiling mode: %i\n",
3258 obj->stride, obj->tiling_mode);
3259
Chris Wilson9ce079e2012-04-17 15:31:30 +01003260 switch (INTEL_INFO(dev)->gen) {
Damien Lespiau01209dd2013-02-13 15:27:25 +00003261 case 9:
Ben Widawsky5ab31332013-11-02 21:07:03 -07003262 case 8:
Chris Wilson9ce079e2012-04-17 15:31:30 +01003263 case 7:
Imre Deak56c844e2013-01-07 21:47:34 +02003264 case 6:
Chris Wilson9ce079e2012-04-17 15:31:30 +01003265 case 5:
3266 case 4: i965_write_fence_reg(dev, reg, obj); break;
3267 case 3: i915_write_fence_reg(dev, reg, obj); break;
3268 case 2: i830_write_fence_reg(dev, reg, obj); break;
Ben Widawsky7dbf9d62012-12-18 10:31:22 -08003269 default: BUG();
Chris Wilson9ce079e2012-04-17 15:31:30 +01003270 }
Chris Wilsond0a57782012-10-09 19:24:37 +01003271
3272 /* And similarly be paranoid that no direct access to this region
3273 * is reordered to before the fence is installed.
3274 */
3275 if (i915_gem_object_needs_mb(obj))
3276 mb();
Jesse Barnesde151cf2008-11-12 10:03:55 -08003277}
3278
Chris Wilson61050802012-04-17 15:31:31 +01003279static inline int fence_number(struct drm_i915_private *dev_priv,
3280 struct drm_i915_fence_reg *fence)
3281{
3282 return fence - dev_priv->fence_regs;
3283}
3284
3285static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
3286 struct drm_i915_fence_reg *fence,
3287 bool enable)
3288{
Chris Wilson2dc8aae2013-05-22 17:08:06 +01003289 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson46a0b632013-07-10 13:36:24 +01003290 int reg = fence_number(dev_priv, fence);
Chris Wilson61050802012-04-17 15:31:31 +01003291
Chris Wilson46a0b632013-07-10 13:36:24 +01003292 i915_gem_write_fence(obj->base.dev, reg, enable ? obj : NULL);
Chris Wilson61050802012-04-17 15:31:31 +01003293
3294 if (enable) {
Chris Wilson46a0b632013-07-10 13:36:24 +01003295 obj->fence_reg = reg;
Chris Wilson61050802012-04-17 15:31:31 +01003296 fence->obj = obj;
3297 list_move_tail(&fence->lru_list, &dev_priv->mm.fence_list);
3298 } else {
3299 obj->fence_reg = I915_FENCE_REG_NONE;
3300 fence->obj = NULL;
3301 list_del_init(&fence->lru_list);
3302 }
Daniel Vetter94a335d2013-07-17 14:51:28 +02003303 obj->fence_dirty = false;
Chris Wilson61050802012-04-17 15:31:31 +01003304}
3305
Chris Wilsond9e86c02010-11-10 16:40:20 +00003306static int
Chris Wilsond0a57782012-10-09 19:24:37 +01003307i915_gem_object_wait_fence(struct drm_i915_gem_object *obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003308{
Chris Wilson1c293ea2012-04-17 15:31:27 +01003309 if (obj->last_fenced_seqno) {
Chris Wilson86d5bc32012-07-20 12:41:04 +01003310 int ret = i915_wait_seqno(obj->ring, obj->last_fenced_seqno);
Chris Wilson18991842012-04-17 15:31:29 +01003311 if (ret)
3312 return ret;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003313
3314 obj->last_fenced_seqno = 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003315 }
3316
3317 return 0;
3318}
3319
3320int
3321i915_gem_object_put_fence(struct drm_i915_gem_object *obj)
3322{
Chris Wilson61050802012-04-17 15:31:31 +01003323 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003324 struct drm_i915_fence_reg *fence;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003325 int ret;
3326
Chris Wilsond0a57782012-10-09 19:24:37 +01003327 ret = i915_gem_object_wait_fence(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003328 if (ret)
3329 return ret;
3330
Chris Wilson61050802012-04-17 15:31:31 +01003331 if (obj->fence_reg == I915_FENCE_REG_NONE)
3332 return 0;
Chris Wilson1690e1e2011-12-14 13:57:08 +01003333
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003334 fence = &dev_priv->fence_regs[obj->fence_reg];
3335
Daniel Vetteraff10b302014-02-14 14:06:05 +01003336 if (WARN_ON(fence->pin_count))
3337 return -EBUSY;
3338
Chris Wilson61050802012-04-17 15:31:31 +01003339 i915_gem_object_fence_lost(obj);
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003340 i915_gem_object_update_fence(obj, fence, false);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003341
3342 return 0;
3343}
3344
3345static struct drm_i915_fence_reg *
Chris Wilsona360bb12012-04-17 15:31:25 +01003346i915_find_fence_reg(struct drm_device *dev)
Daniel Vetterae3db242010-02-19 11:51:58 +01003347{
Daniel Vetterae3db242010-02-19 11:51:58 +01003348 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson8fe301a2012-04-17 15:31:28 +01003349 struct drm_i915_fence_reg *reg, *avail;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003350 int i;
Daniel Vetterae3db242010-02-19 11:51:58 +01003351
3352 /* First try to find a free reg */
Chris Wilsond9e86c02010-11-10 16:40:20 +00003353 avail = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01003354 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
3355 reg = &dev_priv->fence_regs[i];
3356 if (!reg->obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003357 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003358
Chris Wilson1690e1e2011-12-14 13:57:08 +01003359 if (!reg->pin_count)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003360 avail = reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003361 }
3362
Chris Wilsond9e86c02010-11-10 16:40:20 +00003363 if (avail == NULL)
Chris Wilson5dce5b932014-01-20 10:17:36 +00003364 goto deadlock;
Daniel Vetterae3db242010-02-19 11:51:58 +01003365
3366 /* None available, try to steal one or wait for a user to finish */
Chris Wilsond9e86c02010-11-10 16:40:20 +00003367 list_for_each_entry(reg, &dev_priv->mm.fence_list, lru_list) {
Chris Wilson1690e1e2011-12-14 13:57:08 +01003368 if (reg->pin_count)
Daniel Vetterae3db242010-02-19 11:51:58 +01003369 continue;
3370
Chris Wilson8fe301a2012-04-17 15:31:28 +01003371 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003372 }
3373
Chris Wilson5dce5b932014-01-20 10:17:36 +00003374deadlock:
3375 /* Wait for completion of pending flips which consume fences */
3376 if (intel_has_pending_fb_unpin(dev))
3377 return ERR_PTR(-EAGAIN);
3378
3379 return ERR_PTR(-EDEADLK);
Daniel Vetterae3db242010-02-19 11:51:58 +01003380}
3381
Jesse Barnesde151cf2008-11-12 10:03:55 -08003382/**
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003383 * i915_gem_object_get_fence - set up fencing for an object
Jesse Barnesde151cf2008-11-12 10:03:55 -08003384 * @obj: object to map through a fence reg
3385 *
3386 * When mapping objects through the GTT, userspace wants to be able to write
3387 * to them without having to worry about swizzling if the object is tiled.
Jesse Barnesde151cf2008-11-12 10:03:55 -08003388 * This function walks the fence regs looking for a free one for @obj,
3389 * stealing one if it can't find any.
3390 *
3391 * It then sets up the reg based on the object's properties: address, pitch
3392 * and tiling format.
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003393 *
3394 * For an untiled surface, this removes any existing fence.
Jesse Barnesde151cf2008-11-12 10:03:55 -08003395 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01003396int
Chris Wilson06d98132012-04-17 15:31:24 +01003397i915_gem_object_get_fence(struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003398{
Chris Wilson05394f32010-11-08 19:18:58 +00003399 struct drm_device *dev = obj->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08003400 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson14415742012-04-17 15:31:33 +01003401 bool enable = obj->tiling_mode != I915_TILING_NONE;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003402 struct drm_i915_fence_reg *reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003403 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003404
Chris Wilson14415742012-04-17 15:31:33 +01003405 /* Have we updated the tiling parameters upon the object and so
3406 * will need to serialise the write to the associated fence register?
3407 */
Chris Wilson5d82e3e2012-04-21 16:23:23 +01003408 if (obj->fence_dirty) {
Chris Wilsond0a57782012-10-09 19:24:37 +01003409 ret = i915_gem_object_wait_fence(obj);
Chris Wilson14415742012-04-17 15:31:33 +01003410 if (ret)
3411 return ret;
3412 }
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003413
Chris Wilsond9e86c02010-11-10 16:40:20 +00003414 /* Just update our place in the LRU if our fence is getting reused. */
Chris Wilson05394f32010-11-08 19:18:58 +00003415 if (obj->fence_reg != I915_FENCE_REG_NONE) {
3416 reg = &dev_priv->fence_regs[obj->fence_reg];
Chris Wilson5d82e3e2012-04-21 16:23:23 +01003417 if (!obj->fence_dirty) {
Chris Wilson14415742012-04-17 15:31:33 +01003418 list_move_tail(&reg->lru_list,
3419 &dev_priv->mm.fence_list);
3420 return 0;
3421 }
3422 } else if (enable) {
Chris Wilsone6a84462014-08-11 12:00:12 +02003423 if (WARN_ON(!obj->map_and_fenceable))
3424 return -EINVAL;
3425
Chris Wilson14415742012-04-17 15:31:33 +01003426 reg = i915_find_fence_reg(dev);
Chris Wilson5dce5b932014-01-20 10:17:36 +00003427 if (IS_ERR(reg))
3428 return PTR_ERR(reg);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003429
Chris Wilson14415742012-04-17 15:31:33 +01003430 if (reg->obj) {
3431 struct drm_i915_gem_object *old = reg->obj;
3432
Chris Wilsond0a57782012-10-09 19:24:37 +01003433 ret = i915_gem_object_wait_fence(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00003434 if (ret)
3435 return ret;
3436
Chris Wilson14415742012-04-17 15:31:33 +01003437 i915_gem_object_fence_lost(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00003438 }
Chris Wilson14415742012-04-17 15:31:33 +01003439 } else
Eric Anholta09ba7f2009-08-29 12:49:51 -07003440 return 0;
Eric Anholta09ba7f2009-08-29 12:49:51 -07003441
Chris Wilson14415742012-04-17 15:31:33 +01003442 i915_gem_object_update_fence(obj, reg, enable);
Chris Wilson14415742012-04-17 15:31:33 +01003443
Chris Wilson9ce079e2012-04-17 15:31:30 +01003444 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003445}
3446
Chris Wilson4144f9b2014-09-11 08:43:48 +01003447static bool i915_gem_valid_gtt_space(struct i915_vma *vma,
Chris Wilson42d6ab42012-07-26 11:49:32 +01003448 unsigned long cache_level)
3449{
Chris Wilson4144f9b2014-09-11 08:43:48 +01003450 struct drm_mm_node *gtt_space = &vma->node;
Chris Wilson42d6ab42012-07-26 11:49:32 +01003451 struct drm_mm_node *other;
3452
Chris Wilson4144f9b2014-09-11 08:43:48 +01003453 /*
3454 * On some machines we have to be careful when putting differing types
3455 * of snoopable memory together to avoid the prefetcher crossing memory
3456 * domains and dying. During vm initialisation, we decide whether or not
3457 * these constraints apply and set the drm_mm.color_adjust
3458 * appropriately.
Chris Wilson42d6ab42012-07-26 11:49:32 +01003459 */
Chris Wilson4144f9b2014-09-11 08:43:48 +01003460 if (vma->vm->mm.color_adjust == NULL)
Chris Wilson42d6ab42012-07-26 11:49:32 +01003461 return true;
3462
Ben Widawskyc6cfb322013-07-05 14:41:06 -07003463 if (!drm_mm_node_allocated(gtt_space))
Chris Wilson42d6ab42012-07-26 11:49:32 +01003464 return true;
3465
3466 if (list_empty(&gtt_space->node_list))
3467 return true;
3468
3469 other = list_entry(gtt_space->node_list.prev, struct drm_mm_node, node_list);
3470 if (other->allocated && !other->hole_follows && other->color != cache_level)
3471 return false;
3472
3473 other = list_entry(gtt_space->node_list.next, struct drm_mm_node, node_list);
3474 if (other->allocated && !gtt_space->hole_follows && other->color != cache_level)
3475 return false;
3476
3477 return true;
3478}
3479
Jesse Barnesde151cf2008-11-12 10:03:55 -08003480/**
Eric Anholt673a3942008-07-30 12:06:12 -07003481 * Finds free space in the GTT aperture and binds the object there.
3482 */
Daniel Vetter262de142014-02-14 14:01:20 +01003483static struct i915_vma *
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003484i915_gem_object_bind_to_vm(struct drm_i915_gem_object *obj,
3485 struct i915_address_space *vm,
3486 unsigned alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02003487 uint64_t flags)
Eric Anholt673a3942008-07-30 12:06:12 -07003488{
Chris Wilson05394f32010-11-08 19:18:58 +00003489 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003490 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter5e783302010-11-14 22:32:36 +01003491 u32 size, fence_size, fence_alignment, unfenced_alignment;
Chris Wilsond23db882014-05-23 08:48:08 +02003492 unsigned long start =
3493 flags & PIN_OFFSET_BIAS ? flags & PIN_OFFSET_MASK : 0;
3494 unsigned long end =
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003495 flags & PIN_MAPPABLE ? dev_priv->gtt.mappable_end : vm->total;
Ben Widawsky2f633152013-07-17 12:19:03 -07003496 struct i915_vma *vma;
Chris Wilson07f73f62009-09-14 16:50:30 +01003497 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003498
Chris Wilsone28f8712011-07-18 13:11:49 -07003499 fence_size = i915_gem_get_gtt_size(dev,
3500 obj->base.size,
3501 obj->tiling_mode);
3502 fence_alignment = i915_gem_get_gtt_alignment(dev,
3503 obj->base.size,
Imre Deakd8651102013-01-07 21:47:33 +02003504 obj->tiling_mode, true);
Chris Wilsone28f8712011-07-18 13:11:49 -07003505 unfenced_alignment =
Imre Deakd8651102013-01-07 21:47:33 +02003506 i915_gem_get_gtt_alignment(dev,
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003507 obj->base.size,
3508 obj->tiling_mode, false);
Chris Wilsona00b10c2010-09-24 21:15:47 +01003509
Eric Anholt673a3942008-07-30 12:06:12 -07003510 if (alignment == 0)
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003511 alignment = flags & PIN_MAPPABLE ? fence_alignment :
Daniel Vetter5e783302010-11-14 22:32:36 +01003512 unfenced_alignment;
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003513 if (flags & PIN_MAPPABLE && alignment & (fence_alignment - 1)) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00003514 DRM_DEBUG("Invalid object alignment requested %u\n", alignment);
Daniel Vetter262de142014-02-14 14:01:20 +01003515 return ERR_PTR(-EINVAL);
Eric Anholt673a3942008-07-30 12:06:12 -07003516 }
3517
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003518 size = flags & PIN_MAPPABLE ? fence_size : obj->base.size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01003519
Chris Wilson654fc602010-05-27 13:18:21 +01003520 /* If the object is bigger than the entire aperture, reject it early
3521 * before evicting everything in a vain attempt to find space.
3522 */
Chris Wilsond23db882014-05-23 08:48:08 +02003523 if (obj->base.size > end) {
3524 DRM_DEBUG("Attempting to bind an object larger than the aperture: object=%zd > %s aperture=%lu\n",
Chris Wilsona36689c2013-05-21 16:58:49 +01003525 obj->base.size,
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003526 flags & PIN_MAPPABLE ? "mappable" : "total",
Chris Wilsond23db882014-05-23 08:48:08 +02003527 end);
Daniel Vetter262de142014-02-14 14:01:20 +01003528 return ERR_PTR(-E2BIG);
Chris Wilson654fc602010-05-27 13:18:21 +01003529 }
3530
Chris Wilson37e680a2012-06-07 15:38:42 +01003531 ret = i915_gem_object_get_pages(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02003532 if (ret)
Daniel Vetter262de142014-02-14 14:01:20 +01003533 return ERR_PTR(ret);
Chris Wilson6c085a72012-08-20 11:40:46 +02003534
Chris Wilsonfbdda6f2012-11-20 10:45:16 +00003535 i915_gem_object_pin_pages(obj);
3536
Ben Widawskyaccfef22013-08-14 11:38:35 +02003537 vma = i915_gem_obj_lookup_or_create_vma(obj, vm);
Daniel Vetter262de142014-02-14 14:01:20 +01003538 if (IS_ERR(vma))
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003539 goto err_unpin;
Ben Widawsky2f633152013-07-17 12:19:03 -07003540
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003541search_free:
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003542 ret = drm_mm_insert_node_in_range_generic(&vm->mm, &vma->node,
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003543 size, alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02003544 obj->cache_level,
3545 start, end,
Lauri Kasanen62347f92014-04-02 20:03:57 +03003546 DRM_MM_SEARCH_DEFAULT,
3547 DRM_MM_CREATE_DEFAULT);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003548 if (ret) {
Ben Widawskyf6cd1f12013-07-31 17:00:11 -07003549 ret = i915_gem_evict_something(dev, vm, size, alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02003550 obj->cache_level,
3551 start, end,
3552 flags);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003553 if (ret == 0)
3554 goto search_free;
Chris Wilson97311292009-09-21 00:22:34 +01003555
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003556 goto err_free_vma;
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003557 }
Chris Wilson4144f9b2014-09-11 08:43:48 +01003558 if (WARN_ON(!i915_gem_valid_gtt_space(vma, obj->cache_level))) {
Ben Widawsky2f633152013-07-17 12:19:03 -07003559 ret = -EINVAL;
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003560 goto err_remove_node;
Eric Anholt673a3942008-07-30 12:06:12 -07003561 }
3562
Daniel Vetter74163902012-02-15 23:50:21 +01003563 ret = i915_gem_gtt_prepare_object(obj);
Ben Widawsky2f633152013-07-17 12:19:03 -07003564 if (ret)
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003565 goto err_remove_node;
Eric Anholt673a3942008-07-30 12:06:12 -07003566
Ben Widawsky35c20a62013-05-31 11:28:48 -07003567 list_move_tail(&obj->global_list, &dev_priv->mm.bound_list);
Ben Widawskyca191b12013-07-31 17:00:14 -07003568 list_add_tail(&vma->mm_list, &vm->inactive_list);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01003569
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003570 trace_i915_vma_bind(vma, flags);
Daniel Vetter8ea99c92014-02-14 14:01:21 +01003571 vma->bind_vma(vma, obj->cache_level,
Chris Wilsonc826c442014-10-31 13:53:53 +00003572 flags & PIN_GLOBAL ? GLOBAL_BIND : 0);
Daniel Vetter8ea99c92014-02-14 14:01:21 +01003573
Daniel Vetter262de142014-02-14 14:01:20 +01003574 return vma;
Ben Widawsky2f633152013-07-17 12:19:03 -07003575
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003576err_remove_node:
Dan Carpenter6286ef92013-07-19 08:46:27 +03003577 drm_mm_remove_node(&vma->node);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003578err_free_vma:
Ben Widawsky2f633152013-07-17 12:19:03 -07003579 i915_gem_vma_destroy(vma);
Daniel Vetter262de142014-02-14 14:01:20 +01003580 vma = ERR_PTR(ret);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003581err_unpin:
Ben Widawsky2f633152013-07-17 12:19:03 -07003582 i915_gem_object_unpin_pages(obj);
Daniel Vetter262de142014-02-14 14:01:20 +01003583 return vma;
Eric Anholt673a3942008-07-30 12:06:12 -07003584}
3585
Chris Wilson000433b2013-08-08 14:41:09 +01003586bool
Chris Wilson2c225692013-08-09 12:26:45 +01003587i915_gem_clflush_object(struct drm_i915_gem_object *obj,
3588 bool force)
Eric Anholt673a3942008-07-30 12:06:12 -07003589{
Eric Anholt673a3942008-07-30 12:06:12 -07003590 /* If we don't have a page list set up, then we're not pinned
3591 * to GPU, and we can ignore the cache flush because it'll happen
3592 * again at bind time.
3593 */
Chris Wilson05394f32010-11-08 19:18:58 +00003594 if (obj->pages == NULL)
Chris Wilson000433b2013-08-08 14:41:09 +01003595 return false;
Eric Anholt673a3942008-07-30 12:06:12 -07003596
Imre Deak769ce462013-02-13 21:56:05 +02003597 /*
3598 * Stolen memory is always coherent with the GPU as it is explicitly
3599 * marked as wc by the system, or the system is cache-coherent.
3600 */
Chris Wilson6a2c4232014-11-04 04:51:40 -08003601 if (obj->stolen || obj->phys_handle)
Chris Wilson000433b2013-08-08 14:41:09 +01003602 return false;
Imre Deak769ce462013-02-13 21:56:05 +02003603
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003604 /* If the GPU is snooping the contents of the CPU cache,
3605 * we do not need to manually clear the CPU cache lines. However,
3606 * the caches are only snooped when the render cache is
3607 * flushed/invalidated. As we always have to emit invalidations
3608 * and flushes when moving into and out of the RENDER domain, correct
3609 * snooping behaviour occurs naturally as the result of our domain
3610 * tracking.
3611 */
Chris Wilson2c225692013-08-09 12:26:45 +01003612 if (!force && cpu_cache_is_coherent(obj->base.dev, obj->cache_level))
Chris Wilson000433b2013-08-08 14:41:09 +01003613 return false;
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003614
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003615 trace_i915_gem_object_clflush(obj);
Chris Wilson9da3da62012-06-01 15:20:22 +01003616 drm_clflush_sg(obj->pages);
Chris Wilson000433b2013-08-08 14:41:09 +01003617
3618 return true;
Eric Anholte47c68e2008-11-14 13:35:19 -08003619}
3620
3621/** Flushes the GTT write domain for the object if it's dirty. */
3622static void
Chris Wilson05394f32010-11-08 19:18:58 +00003623i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003624{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003625 uint32_t old_write_domain;
3626
Chris Wilson05394f32010-11-08 19:18:58 +00003627 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08003628 return;
3629
Chris Wilson63256ec2011-01-04 18:42:07 +00003630 /* No actual flushing is required for the GTT write domain. Writes
Eric Anholte47c68e2008-11-14 13:35:19 -08003631 * to it immediately go to main memory as far as we know, so there's
3632 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00003633 *
3634 * However, we do have to enforce the order so that all writes through
3635 * the GTT land before any writes to the device, such as updates to
3636 * the GATT itself.
Eric Anholte47c68e2008-11-14 13:35:19 -08003637 */
Chris Wilson63256ec2011-01-04 18:42:07 +00003638 wmb();
3639
Chris Wilson05394f32010-11-08 19:18:58 +00003640 old_write_domain = obj->base.write_domain;
3641 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003642
Daniel Vetterf99d7062014-06-19 16:01:59 +02003643 intel_fb_obj_flush(obj, false);
3644
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003645 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003646 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003647 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003648}
3649
3650/** Flushes the CPU write domain for the object if it's dirty. */
3651static void
Chris Wilson2c225692013-08-09 12:26:45 +01003652i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj,
3653 bool force)
Eric Anholte47c68e2008-11-14 13:35:19 -08003654{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003655 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08003656
Chris Wilson05394f32010-11-08 19:18:58 +00003657 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08003658 return;
3659
Chris Wilson000433b2013-08-08 14:41:09 +01003660 if (i915_gem_clflush_object(obj, force))
3661 i915_gem_chipset_flush(obj->base.dev);
3662
Chris Wilson05394f32010-11-08 19:18:58 +00003663 old_write_domain = obj->base.write_domain;
3664 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003665
Daniel Vetterf99d7062014-06-19 16:01:59 +02003666 intel_fb_obj_flush(obj, false);
3667
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003668 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003669 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003670 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003671}
3672
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003673/**
3674 * Moves a single object to the GTT read, and possibly write domain.
3675 *
3676 * This function returns when the move is complete, including waiting on
3677 * flushes to occur.
3678 */
Jesse Barnes79e53942008-11-07 14:24:08 -08003679int
Chris Wilson20217462010-11-23 15:26:33 +00003680i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003681{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003682 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilsondc8cd1e2014-08-09 17:37:22 +01003683 struct i915_vma *vma = i915_gem_obj_to_ggtt(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003684 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003685 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003686
Eric Anholt02354392008-11-26 13:58:13 -08003687 /* Not valid to be called on unbound objects. */
Chris Wilsondc8cd1e2014-08-09 17:37:22 +01003688 if (vma == NULL)
Eric Anholt02354392008-11-26 13:58:13 -08003689 return -EINVAL;
3690
Chris Wilson8d7e3de2011-02-07 15:23:02 +00003691 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
3692 return 0;
3693
Chris Wilson0201f1e2012-07-20 12:41:01 +01003694 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00003695 if (ret)
3696 return ret;
3697
Chris Wilsonc8725f32014-03-17 12:21:55 +00003698 i915_gem_object_retire(obj);
Chris Wilson2c225692013-08-09 12:26:45 +01003699 i915_gem_object_flush_cpu_write_domain(obj, false);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003700
Chris Wilsond0a57782012-10-09 19:24:37 +01003701 /* Serialise direct access to this object with the barriers for
3702 * coherent writes from the GPU, by effectively invalidating the
3703 * GTT domain upon first access.
3704 */
3705 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
3706 mb();
3707
Chris Wilson05394f32010-11-08 19:18:58 +00003708 old_write_domain = obj->base.write_domain;
3709 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003710
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003711 /* It should now be out of any other write domains, and we can update
3712 * the domain values for our changes.
3713 */
Chris Wilson05394f32010-11-08 19:18:58 +00003714 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
3715 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08003716 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003717 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
3718 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
3719 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08003720 }
3721
Daniel Vetterf99d7062014-06-19 16:01:59 +02003722 if (write)
3723 intel_fb_obj_invalidate(obj, NULL);
3724
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003725 trace_i915_gem_object_change_domain(obj,
3726 old_read_domains,
3727 old_write_domain);
3728
Chris Wilson8325a092012-04-24 15:52:35 +01003729 /* And bump the LRU for this access */
Chris Wilsondc8cd1e2014-08-09 17:37:22 +01003730 if (i915_gem_object_is_inactive(obj))
3731 list_move_tail(&vma->mm_list,
3732 &dev_priv->gtt.base.inactive_list);
Chris Wilson8325a092012-04-24 15:52:35 +01003733
Eric Anholte47c68e2008-11-14 13:35:19 -08003734 return 0;
3735}
3736
Chris Wilsone4ffd172011-04-04 09:44:39 +01003737int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
3738 enum i915_cache_level cache_level)
3739{
Daniel Vetter7bddb012012-02-09 17:15:47 +01003740 struct drm_device *dev = obj->base.dev;
Chris Wilsondf6f7832014-03-21 07:40:56 +00003741 struct i915_vma *vma, *next;
Chris Wilsone4ffd172011-04-04 09:44:39 +01003742 int ret;
3743
3744 if (obj->cache_level == cache_level)
3745 return 0;
3746
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08003747 if (i915_gem_obj_is_pinned(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003748 DRM_DEBUG("can not change the cache level of pinned objects\n");
3749 return -EBUSY;
3750 }
3751
Chris Wilsondf6f7832014-03-21 07:40:56 +00003752 list_for_each_entry_safe(vma, next, &obj->vma_list, vma_link) {
Chris Wilson4144f9b2014-09-11 08:43:48 +01003753 if (!i915_gem_valid_gtt_space(vma, cache_level)) {
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003754 ret = i915_vma_unbind(vma);
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003755 if (ret)
3756 return ret;
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003757 }
Chris Wilson42d6ab42012-07-26 11:49:32 +01003758 }
3759
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003760 if (i915_gem_obj_bound_any(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003761 ret = i915_gem_object_finish_gpu(obj);
3762 if (ret)
3763 return ret;
3764
3765 i915_gem_object_finish_gtt(obj);
3766
3767 /* Before SandyBridge, you could not use tiling or fence
3768 * registers with snooped memory, so relinquish any fences
3769 * currently pointing to our region in the aperture.
3770 */
Chris Wilson42d6ab42012-07-26 11:49:32 +01003771 if (INTEL_INFO(dev)->gen < 6) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003772 ret = i915_gem_object_put_fence(obj);
3773 if (ret)
3774 return ret;
3775 }
3776
Ben Widawsky6f65e292013-12-06 14:10:56 -08003777 list_for_each_entry(vma, &obj->vma_list, vma_link)
Daniel Vetter8ea99c92014-02-14 14:01:21 +01003778 if (drm_mm_node_allocated(&vma->node))
3779 vma->bind_vma(vma, cache_level,
Tvrtko Ursulinaff43762014-10-24 12:42:33 +01003780 vma->bound & GLOBAL_BIND);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003781 }
3782
Chris Wilson2c225692013-08-09 12:26:45 +01003783 list_for_each_entry(vma, &obj->vma_list, vma_link)
3784 vma->node.color = cache_level;
3785 obj->cache_level = cache_level;
3786
3787 if (cpu_write_needs_clflush(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003788 u32 old_read_domains, old_write_domain;
3789
3790 /* If we're coming from LLC cached, then we haven't
3791 * actually been tracking whether the data is in the
3792 * CPU cache or not, since we only allow one bit set
3793 * in obj->write_domain and have been skipping the clflushes.
3794 * Just set it to the CPU cache for now.
3795 */
Chris Wilsonc8725f32014-03-17 12:21:55 +00003796 i915_gem_object_retire(obj);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003797 WARN_ON(obj->base.write_domain & ~I915_GEM_DOMAIN_CPU);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003798
3799 old_read_domains = obj->base.read_domains;
3800 old_write_domain = obj->base.write_domain;
3801
3802 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3803 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3804
3805 trace_i915_gem_object_change_domain(obj,
3806 old_read_domains,
3807 old_write_domain);
3808 }
3809
Chris Wilsone4ffd172011-04-04 09:44:39 +01003810 return 0;
3811}
3812
Ben Widawsky199adf42012-09-21 17:01:20 -07003813int i915_gem_get_caching_ioctl(struct drm_device *dev, void *data,
3814 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003815{
Ben Widawsky199adf42012-09-21 17:01:20 -07003816 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003817 struct drm_i915_gem_object *obj;
3818 int ret;
3819
3820 ret = i915_mutex_lock_interruptible(dev);
3821 if (ret)
3822 return ret;
3823
3824 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3825 if (&obj->base == NULL) {
3826 ret = -ENOENT;
3827 goto unlock;
3828 }
3829
Chris Wilson651d7942013-08-08 14:41:10 +01003830 switch (obj->cache_level) {
3831 case I915_CACHE_LLC:
3832 case I915_CACHE_L3_LLC:
3833 args->caching = I915_CACHING_CACHED;
3834 break;
3835
Chris Wilson4257d3b2013-08-08 14:41:11 +01003836 case I915_CACHE_WT:
3837 args->caching = I915_CACHING_DISPLAY;
3838 break;
3839
Chris Wilson651d7942013-08-08 14:41:10 +01003840 default:
3841 args->caching = I915_CACHING_NONE;
3842 break;
3843 }
Chris Wilsone6994ae2012-07-10 10:27:08 +01003844
3845 drm_gem_object_unreference(&obj->base);
3846unlock:
3847 mutex_unlock(&dev->struct_mutex);
3848 return ret;
3849}
3850
Ben Widawsky199adf42012-09-21 17:01:20 -07003851int i915_gem_set_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 enum i915_cache_level level;
3857 int ret;
3858
Ben Widawsky199adf42012-09-21 17:01:20 -07003859 switch (args->caching) {
3860 case I915_CACHING_NONE:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003861 level = I915_CACHE_NONE;
3862 break;
Ben Widawsky199adf42012-09-21 17:01:20 -07003863 case I915_CACHING_CACHED:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003864 level = I915_CACHE_LLC;
3865 break;
Chris Wilson4257d3b2013-08-08 14:41:11 +01003866 case I915_CACHING_DISPLAY:
3867 level = HAS_WT(dev) ? I915_CACHE_WT : I915_CACHE_NONE;
3868 break;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003869 default:
3870 return -EINVAL;
3871 }
3872
Ben Widawsky3bc29132012-09-26 16:15:20 -07003873 ret = i915_mutex_lock_interruptible(dev);
3874 if (ret)
3875 return ret;
3876
Chris Wilsone6994ae2012-07-10 10:27:08 +01003877 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3878 if (&obj->base == NULL) {
3879 ret = -ENOENT;
3880 goto unlock;
3881 }
3882
3883 ret = i915_gem_object_set_cache_level(obj, level);
3884
3885 drm_gem_object_unreference(&obj->base);
3886unlock:
3887 mutex_unlock(&dev->struct_mutex);
3888 return ret;
3889}
3890
Chris Wilsoncc98b412013-08-09 12:25:09 +01003891static bool is_pin_display(struct drm_i915_gem_object *obj)
3892{
Oscar Mateo19656432014-05-16 14:20:43 +01003893 struct i915_vma *vma;
3894
Oscar Mateo19656432014-05-16 14:20:43 +01003895 vma = i915_gem_obj_to_ggtt(obj);
3896 if (!vma)
3897 return false;
3898
Chris Wilsoncc98b412013-08-09 12:25:09 +01003899 /* There are 3 sources that pin objects:
3900 * 1. The display engine (scanouts, sprites, cursors);
3901 * 2. Reservations for execbuffer;
3902 * 3. The user.
3903 *
3904 * We can ignore reservations as we hold the struct_mutex and
3905 * are only called outside of the reservation path. The user
3906 * can only increment pin_count once, and so if after
3907 * subtracting the potential reference by the user, any pin_count
3908 * remains, it must be due to another use by the display engine.
3909 */
Oscar Mateo19656432014-05-16 14:20:43 +01003910 return vma->pin_count - !!obj->user_pin_count;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003911}
3912
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003913/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003914 * Prepare buffer for display plane (scanout, cursors, etc).
3915 * Can be called from an uninterruptible phase (modesetting) and allows
3916 * any flushes to be pipelined (for pageflips).
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003917 */
3918int
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003919i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
3920 u32 alignment,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003921 struct intel_engine_cs *pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003922{
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003923 u32 old_read_domains, old_write_domain;
Oscar Mateo19656432014-05-16 14:20:43 +01003924 bool was_pin_display;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003925 int ret;
3926
Chris Wilson0be73282010-12-06 14:36:27 +00003927 if (pipelined != obj->ring) {
Ben Widawsky2911a352012-04-05 14:47:36 -07003928 ret = i915_gem_object_sync(obj, pipelined);
3929 if (ret)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003930 return ret;
3931 }
3932
Chris Wilsoncc98b412013-08-09 12:25:09 +01003933 /* Mark the pin_display early so that we account for the
3934 * display coherency whilst setting up the cache domains.
3935 */
Oscar Mateo19656432014-05-16 14:20:43 +01003936 was_pin_display = obj->pin_display;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003937 obj->pin_display = true;
3938
Eric Anholta7ef0642011-03-29 16:59:54 -07003939 /* The display engine is not coherent with the LLC cache on gen6. As
3940 * a result, we make sure that the pinning that is about to occur is
3941 * done with uncached PTEs. This is lowest common denominator for all
3942 * chipsets.
3943 *
3944 * However for gen6+, we could do better by using the GFDT bit instead
3945 * of uncaching, which would allow us to flush all the LLC-cached data
3946 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
3947 */
Chris Wilson651d7942013-08-08 14:41:10 +01003948 ret = i915_gem_object_set_cache_level(obj,
3949 HAS_WT(obj->base.dev) ? I915_CACHE_WT : I915_CACHE_NONE);
Eric Anholta7ef0642011-03-29 16:59:54 -07003950 if (ret)
Chris Wilsoncc98b412013-08-09 12:25:09 +01003951 goto err_unpin_display;
Eric Anholta7ef0642011-03-29 16:59:54 -07003952
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003953 /* As the user may map the buffer once pinned in the display plane
3954 * (e.g. libkms for the bootup splash), we have to ensure that we
3955 * always use map_and_fenceable for all scanout buffers.
3956 */
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003957 ret = i915_gem_obj_ggtt_pin(obj, alignment, PIN_MAPPABLE);
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003958 if (ret)
Chris Wilsoncc98b412013-08-09 12:25:09 +01003959 goto err_unpin_display;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003960
Chris Wilson2c225692013-08-09 12:26:45 +01003961 i915_gem_object_flush_cpu_write_domain(obj, true);
Chris Wilsonb118c1e2010-05-27 13:18:14 +01003962
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003963 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00003964 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003965
3966 /* It should now be out of any other write domains, and we can update
3967 * the domain values for our changes.
3968 */
Chris Wilsone5f1d962012-07-20 12:41:00 +01003969 obj->base.write_domain = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00003970 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003971
3972 trace_i915_gem_object_change_domain(obj,
3973 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003974 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003975
3976 return 0;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003977
3978err_unpin_display:
Oscar Mateo19656432014-05-16 14:20:43 +01003979 WARN_ON(was_pin_display != is_pin_display(obj));
3980 obj->pin_display = was_pin_display;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003981 return ret;
3982}
3983
3984void
3985i915_gem_object_unpin_from_display_plane(struct drm_i915_gem_object *obj)
3986{
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08003987 i915_gem_object_ggtt_unpin(obj);
Chris Wilsoncc98b412013-08-09 12:25:09 +01003988 obj->pin_display = is_pin_display(obj);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003989}
3990
Chris Wilson85345512010-11-13 09:49:11 +00003991int
Chris Wilsona8198ee2011-04-13 22:04:09 +01003992i915_gem_object_finish_gpu(struct drm_i915_gem_object *obj)
Chris Wilson85345512010-11-13 09:49:11 +00003993{
Chris Wilson88241782011-01-07 17:09:48 +00003994 int ret;
3995
Chris Wilsona8198ee2011-04-13 22:04:09 +01003996 if ((obj->base.read_domains & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson85345512010-11-13 09:49:11 +00003997 return 0;
3998
Chris Wilson0201f1e2012-07-20 12:41:01 +01003999 ret = i915_gem_object_wait_rendering(obj, false);
Chris Wilsonc501ae72011-12-14 13:57:23 +01004000 if (ret)
4001 return ret;
4002
Chris Wilsona8198ee2011-04-13 22:04:09 +01004003 /* Ensure that we invalidate the GPU's caches and TLBs. */
4004 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilsonc501ae72011-12-14 13:57:23 +01004005 return 0;
Chris Wilson85345512010-11-13 09:49:11 +00004006}
4007
Eric Anholte47c68e2008-11-14 13:35:19 -08004008/**
4009 * Moves a single object to the CPU read, and possibly write domain.
4010 *
4011 * This function returns when the move is complete, including waiting on
4012 * flushes to occur.
4013 */
Chris Wilsondabdfe02012-03-26 10:10:27 +02004014int
Chris Wilson919926a2010-11-12 13:42:53 +00004015i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08004016{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004017 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08004018 int ret;
4019
Chris Wilson8d7e3de2011-02-07 15:23:02 +00004020 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
4021 return 0;
4022
Chris Wilson0201f1e2012-07-20 12:41:01 +01004023 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00004024 if (ret)
4025 return ret;
4026
Chris Wilsonc8725f32014-03-17 12:21:55 +00004027 i915_gem_object_retire(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08004028 i915_gem_object_flush_gtt_write_domain(obj);
4029
Chris Wilson05394f32010-11-08 19:18:58 +00004030 old_write_domain = obj->base.write_domain;
4031 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004032
Eric Anholte47c68e2008-11-14 13:35:19 -08004033 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00004034 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Chris Wilson2c225692013-08-09 12:26:45 +01004035 i915_gem_clflush_object(obj, false);
Eric Anholte47c68e2008-11-14 13:35:19 -08004036
Chris Wilson05394f32010-11-08 19:18:58 +00004037 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08004038 }
4039
4040 /* It should now be out of any other write domains, and we can update
4041 * the domain values for our changes.
4042 */
Chris Wilson05394f32010-11-08 19:18:58 +00004043 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08004044
4045 /* If we're writing through the CPU, then the GPU read domains will
4046 * need to be invalidated at next use.
4047 */
4048 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00004049 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4050 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08004051 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08004052
Daniel Vetterf99d7062014-06-19 16:01:59 +02004053 if (write)
4054 intel_fb_obj_invalidate(obj, NULL);
4055
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004056 trace_i915_gem_object_change_domain(obj,
4057 old_read_domains,
4058 old_write_domain);
4059
Eric Anholt2ef7eea2008-11-10 10:53:25 -08004060 return 0;
4061}
4062
Eric Anholt673a3942008-07-30 12:06:12 -07004063/* Throttle our rendering by waiting until the ring has completed our requests
4064 * emitted over 20 msec ago.
4065 *
Eric Anholtb9624422009-06-03 07:27:35 +00004066 * Note that if we were to use the current jiffies each time around the loop,
4067 * we wouldn't escape the function with any frames outstanding if the time to
4068 * render a frame was over 20ms.
4069 *
Eric Anholt673a3942008-07-30 12:06:12 -07004070 * This should get us reasonable parallelism between CPU and GPU but also
4071 * relatively low latency when blocking on a particular request to finish.
4072 */
4073static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004074i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004075{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004076 struct drm_i915_private *dev_priv = dev->dev_private;
4077 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00004078 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004079 struct drm_i915_gem_request *request;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004080 struct intel_engine_cs *ring = NULL;
Daniel Vetterf69061b2012-12-06 09:01:42 +01004081 unsigned reset_counter;
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004082 u32 seqno = 0;
4083 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004084
Daniel Vetter308887a2012-11-14 17:14:06 +01004085 ret = i915_gem_wait_for_error(&dev_priv->gpu_error);
4086 if (ret)
4087 return ret;
4088
4089 ret = i915_gem_check_wedge(&dev_priv->gpu_error, false);
4090 if (ret)
4091 return ret;
Chris Wilsone110e8d2011-01-26 15:39:14 +00004092
Chris Wilson1c255952010-09-26 11:03:27 +01004093 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004094 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00004095 if (time_after_eq(request->emitted_jiffies, recent_enough))
4096 break;
4097
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004098 ring = request->ring;
4099 seqno = request->seqno;
Eric Anholtb9624422009-06-03 07:27:35 +00004100 }
Daniel Vetterf69061b2012-12-06 09:01:42 +01004101 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilson1c255952010-09-26 11:03:27 +01004102 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004103
4104 if (seqno == 0)
4105 return 0;
4106
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02004107 ret = __i915_wait_seqno(ring, seqno, reset_counter, true, NULL, NULL);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004108 if (ret == 0)
4109 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00004110
Eric Anholt673a3942008-07-30 12:06:12 -07004111 return ret;
4112}
4113
Chris Wilsond23db882014-05-23 08:48:08 +02004114static bool
4115i915_vma_misplaced(struct i915_vma *vma, uint32_t alignment, uint64_t flags)
4116{
4117 struct drm_i915_gem_object *obj = vma->obj;
4118
4119 if (alignment &&
4120 vma->node.start & (alignment - 1))
4121 return true;
4122
4123 if (flags & PIN_MAPPABLE && !obj->map_and_fenceable)
4124 return true;
4125
4126 if (flags & PIN_OFFSET_BIAS &&
4127 vma->node.start < (flags & PIN_OFFSET_MASK))
4128 return true;
4129
4130 return false;
4131}
4132
Eric Anholt673a3942008-07-30 12:06:12 -07004133int
Chris Wilson05394f32010-11-08 19:18:58 +00004134i915_gem_object_pin(struct drm_i915_gem_object *obj,
Ben Widawskyc37e2202013-07-31 16:59:58 -07004135 struct i915_address_space *vm,
Chris Wilson05394f32010-11-08 19:18:58 +00004136 uint32_t alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02004137 uint64_t flags)
Eric Anholt673a3942008-07-30 12:06:12 -07004138{
Ben Widawsky6e7186a2014-05-06 22:21:36 -07004139 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004140 struct i915_vma *vma;
Chris Wilsonef79e172014-10-31 13:53:52 +00004141 unsigned bound;
Eric Anholt673a3942008-07-30 12:06:12 -07004142 int ret;
4143
Ben Widawsky6e7186a2014-05-06 22:21:36 -07004144 if (WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base))
4145 return -ENODEV;
4146
Daniel Vetterbf3d1492014-02-14 14:01:12 +01004147 if (WARN_ON(flags & (PIN_GLOBAL | PIN_MAPPABLE) && !i915_is_ggtt(vm)))
Daniel Vetter1ec9e262014-02-14 14:01:11 +01004148 return -EINVAL;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004149
Chris Wilsonc826c442014-10-31 13:53:53 +00004150 if (WARN_ON((flags & (PIN_MAPPABLE | PIN_GLOBAL)) == PIN_MAPPABLE))
4151 return -EINVAL;
4152
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004153 vma = i915_gem_obj_to_vma(obj, vm);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004154 if (vma) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004155 if (WARN_ON(vma->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT))
4156 return -EBUSY;
4157
Chris Wilsond23db882014-05-23 08:48:08 +02004158 if (i915_vma_misplaced(vma, alignment, flags)) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004159 WARN(vma->pin_count,
Chris Wilsonae7d49d2010-08-04 12:37:41 +01004160 "bo is already pinned with incorrect alignment:"
Ben Widawskyf343c5f2013-07-05 14:41:04 -07004161 " offset=%lx, req.alignment=%x, req.map_and_fenceable=%d,"
Daniel Vetter75e9e912010-11-04 17:11:09 +01004162 " obj->map_and_fenceable=%d\n",
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004163 i915_gem_obj_offset(obj, vm), alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02004164 !!(flags & PIN_MAPPABLE),
Chris Wilson05394f32010-11-08 19:18:58 +00004165 obj->map_and_fenceable);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004166 ret = i915_vma_unbind(vma);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004167 if (ret)
4168 return ret;
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004169
4170 vma = NULL;
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004171 }
4172 }
4173
Chris Wilsonef79e172014-10-31 13:53:52 +00004174 bound = vma ? vma->bound : 0;
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004175 if (vma == NULL || !drm_mm_node_allocated(&vma->node)) {
Daniel Vetter262de142014-02-14 14:01:20 +01004176 vma = i915_gem_object_bind_to_vm(obj, vm, alignment, flags);
4177 if (IS_ERR(vma))
4178 return PTR_ERR(vma);
Chris Wilson22c344e2009-02-11 14:26:45 +00004179 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05004180
Tvrtko Ursulinaff43762014-10-24 12:42:33 +01004181 if (flags & PIN_GLOBAL && !(vma->bound & GLOBAL_BIND))
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004182 vma->bind_vma(vma, obj->cache_level, GLOBAL_BIND);
Daniel Vetter74898d72012-02-15 23:50:22 +01004183
Chris Wilsonef79e172014-10-31 13:53:52 +00004184 if ((bound ^ vma->bound) & GLOBAL_BIND) {
4185 bool mappable, fenceable;
4186 u32 fence_size, fence_alignment;
4187
4188 fence_size = i915_gem_get_gtt_size(obj->base.dev,
4189 obj->base.size,
4190 obj->tiling_mode);
4191 fence_alignment = i915_gem_get_gtt_alignment(obj->base.dev,
4192 obj->base.size,
4193 obj->tiling_mode,
4194 true);
4195
4196 fenceable = (vma->node.size == fence_size &&
4197 (vma->node.start & (fence_alignment - 1)) == 0);
4198
4199 mappable = (vma->node.start + obj->base.size <=
4200 dev_priv->gtt.mappable_end);
4201
4202 obj->map_and_fenceable = mappable && fenceable;
4203 }
4204
4205 WARN_ON(flags & PIN_MAPPABLE && !obj->map_and_fenceable);
4206
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004207 vma->pin_count++;
Daniel Vetter1ec9e262014-02-14 14:01:11 +01004208 if (flags & PIN_MAPPABLE)
4209 obj->pin_mappable |= true;
Eric Anholt673a3942008-07-30 12:06:12 -07004210
4211 return 0;
4212}
4213
4214void
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004215i915_gem_object_ggtt_unpin(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07004216{
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004217 struct i915_vma *vma = i915_gem_obj_to_ggtt(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004218
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004219 BUG_ON(!vma);
4220 BUG_ON(vma->pin_count == 0);
4221 BUG_ON(!i915_gem_obj_ggtt_bound(obj));
4222
4223 if (--vma->pin_count == 0)
Chris Wilson6299f992010-11-24 12:23:44 +00004224 obj->pin_mappable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07004225}
4226
Daniel Vetterd8ffa602014-05-13 12:11:26 +02004227bool
4228i915_gem_object_pin_fence(struct drm_i915_gem_object *obj)
4229{
4230 if (obj->fence_reg != I915_FENCE_REG_NONE) {
4231 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
4232 struct i915_vma *ggtt_vma = i915_gem_obj_to_ggtt(obj);
4233
4234 WARN_ON(!ggtt_vma ||
4235 dev_priv->fence_regs[obj->fence_reg].pin_count >
4236 ggtt_vma->pin_count);
4237 dev_priv->fence_regs[obj->fence_reg].pin_count++;
4238 return true;
4239 } else
4240 return false;
4241}
4242
4243void
4244i915_gem_object_unpin_fence(struct drm_i915_gem_object *obj)
4245{
4246 if (obj->fence_reg != I915_FENCE_REG_NONE) {
4247 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
4248 WARN_ON(dev_priv->fence_regs[obj->fence_reg].pin_count <= 0);
4249 dev_priv->fence_regs[obj->fence_reg].pin_count--;
4250 }
4251}
4252
Eric Anholt673a3942008-07-30 12:06:12 -07004253int
4254i915_gem_pin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00004255 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004256{
4257 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004258 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07004259 int ret;
4260
Daniel Vetterd472fcc2014-11-24 11:12:42 +01004261 if (drm_core_check_feature(dev, DRIVER_MODESET))
Daniel Vetter02f6bcc2013-12-18 16:30:22 +01004262 return -ENODEV;
4263
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004264 ret = i915_mutex_lock_interruptible(dev);
4265 if (ret)
4266 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004267
Chris Wilson05394f32010-11-08 19:18:58 +00004268 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004269 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004270 ret = -ENOENT;
4271 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07004272 }
Eric Anholt673a3942008-07-30 12:06:12 -07004273
Chris Wilson05394f32010-11-08 19:18:58 +00004274 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00004275 DRM_DEBUG("Attempting to pin a purgeable buffer\n");
Chris Wilson8c99e572014-01-31 11:34:58 +00004276 ret = -EFAULT;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004277 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004278 }
4279
Chris Wilson05394f32010-11-08 19:18:58 +00004280 if (obj->pin_filp != NULL && obj->pin_filp != file) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00004281 DRM_DEBUG("Already pinned in i915_gem_pin_ioctl(): %d\n",
Jesse Barnes79e53942008-11-07 14:24:08 -08004282 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004283 ret = -EINVAL;
4284 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08004285 }
4286
Daniel Vetteraa5f8022013-10-10 14:46:37 +02004287 if (obj->user_pin_count == ULONG_MAX) {
4288 ret = -EBUSY;
4289 goto out;
4290 }
4291
Chris Wilson93be8782013-01-02 10:31:22 +00004292 if (obj->user_pin_count == 0) {
Daniel Vetter1ec9e262014-02-14 14:01:11 +01004293 ret = i915_gem_obj_ggtt_pin(obj, args->alignment, PIN_MAPPABLE);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004294 if (ret)
4295 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07004296 }
4297
Chris Wilson93be8782013-01-02 10:31:22 +00004298 obj->user_pin_count++;
4299 obj->pin_filp = file;
4300
Ben Widawskyf343c5f2013-07-05 14:41:04 -07004301 args->offset = i915_gem_obj_ggtt_offset(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004302out:
Chris Wilson05394f32010-11-08 19:18:58 +00004303 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004304unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07004305 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004306 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004307}
4308
4309int
4310i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00004311 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004312{
4313 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004314 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01004315 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004316
Daniel Vetterd472fcc2014-11-24 11:12:42 +01004317 if (drm_core_check_feature(dev, DRIVER_MODESET))
4318 return -ENODEV;
4319
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004320 ret = i915_mutex_lock_interruptible(dev);
4321 if (ret)
4322 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004323
Chris Wilson05394f32010-11-08 19:18:58 +00004324 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004325 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004326 ret = -ENOENT;
4327 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07004328 }
Chris Wilson76c1dec2010-09-25 11:22:51 +01004329
Chris Wilson05394f32010-11-08 19:18:58 +00004330 if (obj->pin_filp != file) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00004331 DRM_DEBUG("Not pinned by caller in i915_gem_pin_ioctl(): %d\n",
Jesse Barnes79e53942008-11-07 14:24:08 -08004332 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004333 ret = -EINVAL;
4334 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08004335 }
Chris Wilson05394f32010-11-08 19:18:58 +00004336 obj->user_pin_count--;
4337 if (obj->user_pin_count == 0) {
4338 obj->pin_filp = NULL;
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004339 i915_gem_object_ggtt_unpin(obj);
Jesse Barnes79e53942008-11-07 14:24:08 -08004340 }
Eric Anholt673a3942008-07-30 12:06:12 -07004341
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004342out:
Chris Wilson05394f32010-11-08 19:18:58 +00004343 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004344unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07004345 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004346 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004347}
4348
4349int
4350i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00004351 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004352{
4353 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004354 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01004355 int ret;
4356
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004357 ret = i915_mutex_lock_interruptible(dev);
4358 if (ret)
4359 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004360
Chris Wilson05394f32010-11-08 19:18:58 +00004361 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004362 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004363 ret = -ENOENT;
4364 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07004365 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08004366
Chris Wilson0be555b2010-08-04 15:36:30 +01004367 /* Count all active objects as busy, even if they are currently not used
4368 * by the gpu. Users of this interface expect objects to eventually
4369 * become non-busy without any further actions, therefore emit any
4370 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08004371 */
Daniel Vetter30dfebf2012-06-01 15:21:23 +02004372 ret = i915_gem_object_flush_active(obj);
4373
Chris Wilson05394f32010-11-08 19:18:58 +00004374 args->busy = obj->active;
Chris Wilsone9808ed2012-07-04 12:25:08 +01004375 if (obj->ring) {
4376 BUILD_BUG_ON(I915_NUM_RINGS > 16);
4377 args->busy |= intel_ring_flag(obj->ring) << 16;
4378 }
Eric Anholt673a3942008-07-30 12:06:12 -07004379
Chris Wilson05394f32010-11-08 19:18:58 +00004380 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004381unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07004382 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004383 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004384}
4385
4386int
4387i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
4388 struct drm_file *file_priv)
4389{
Akshay Joshi0206e352011-08-16 15:34:10 -04004390 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07004391}
4392
Chris Wilson3ef94da2009-09-14 16:50:29 +01004393int
4394i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
4395 struct drm_file *file_priv)
4396{
Daniel Vetter656bfa32014-11-20 09:26:30 +01004397 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004398 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004399 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01004400 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004401
4402 switch (args->madv) {
4403 case I915_MADV_DONTNEED:
4404 case I915_MADV_WILLNEED:
4405 break;
4406 default:
4407 return -EINVAL;
4408 }
4409
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004410 ret = i915_mutex_lock_interruptible(dev);
4411 if (ret)
4412 return ret;
4413
Chris Wilson05394f32010-11-08 19:18:58 +00004414 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004415 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004416 ret = -ENOENT;
4417 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004418 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01004419
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004420 if (i915_gem_obj_is_pinned(obj)) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004421 ret = -EINVAL;
4422 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004423 }
4424
Daniel Vetter656bfa32014-11-20 09:26:30 +01004425 if (obj->pages &&
4426 obj->tiling_mode != I915_TILING_NONE &&
4427 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES) {
4428 if (obj->madv == I915_MADV_WILLNEED)
4429 i915_gem_object_unpin_pages(obj);
4430 if (args->madv == I915_MADV_WILLNEED)
4431 i915_gem_object_pin_pages(obj);
4432 }
4433
Chris Wilson05394f32010-11-08 19:18:58 +00004434 if (obj->madv != __I915_MADV_PURGED)
4435 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004436
Chris Wilson6c085a72012-08-20 11:40:46 +02004437 /* if the object is no longer attached, discard its backing storage */
4438 if (i915_gem_object_is_purgeable(obj) && obj->pages == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01004439 i915_gem_object_truncate(obj);
4440
Chris Wilson05394f32010-11-08 19:18:58 +00004441 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01004442
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004443out:
Chris Wilson05394f32010-11-08 19:18:58 +00004444 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004445unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01004446 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004447 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004448}
4449
Chris Wilson37e680a2012-06-07 15:38:42 +01004450void i915_gem_object_init(struct drm_i915_gem_object *obj,
4451 const struct drm_i915_gem_object_ops *ops)
Chris Wilson0327d6b2012-08-11 15:41:06 +01004452{
Ben Widawsky35c20a62013-05-31 11:28:48 -07004453 INIT_LIST_HEAD(&obj->global_list);
Chris Wilson0327d6b2012-08-11 15:41:06 +01004454 INIT_LIST_HEAD(&obj->ring_list);
Ben Widawskyb25cb2f2013-08-14 11:38:33 +02004455 INIT_LIST_HEAD(&obj->obj_exec_link);
Ben Widawsky2f633152013-07-17 12:19:03 -07004456 INIT_LIST_HEAD(&obj->vma_list);
Chris Wilson0327d6b2012-08-11 15:41:06 +01004457
Chris Wilson37e680a2012-06-07 15:38:42 +01004458 obj->ops = ops;
4459
Chris Wilson0327d6b2012-08-11 15:41:06 +01004460 obj->fence_reg = I915_FENCE_REG_NONE;
4461 obj->madv = I915_MADV_WILLNEED;
Chris Wilson0327d6b2012-08-11 15:41:06 +01004462
4463 i915_gem_info_add_obj(obj->base.dev->dev_private, obj->base.size);
4464}
4465
Chris Wilson37e680a2012-06-07 15:38:42 +01004466static const struct drm_i915_gem_object_ops i915_gem_object_ops = {
4467 .get_pages = i915_gem_object_get_pages_gtt,
4468 .put_pages = i915_gem_object_put_pages_gtt,
4469};
4470
Chris Wilson05394f32010-11-08 19:18:58 +00004471struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
4472 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00004473{
Daniel Vetterc397b902010-04-09 19:05:07 +00004474 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07004475 struct address_space *mapping;
Daniel Vetter1a240d42012-11-29 22:18:51 +01004476 gfp_t mask;
Daniel Vetterc397b902010-04-09 19:05:07 +00004477
Chris Wilson42dcedd2012-11-15 11:32:30 +00004478 obj = i915_gem_object_alloc(dev);
Daniel Vetterc397b902010-04-09 19:05:07 +00004479 if (obj == NULL)
4480 return NULL;
4481
4482 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
Chris Wilson42dcedd2012-11-15 11:32:30 +00004483 i915_gem_object_free(obj);
Daniel Vetterc397b902010-04-09 19:05:07 +00004484 return NULL;
4485 }
4486
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004487 mask = GFP_HIGHUSER | __GFP_RECLAIMABLE;
4488 if (IS_CRESTLINE(dev) || IS_BROADWATER(dev)) {
4489 /* 965gm cannot relocate objects above 4GiB. */
4490 mask &= ~__GFP_HIGHMEM;
4491 mask |= __GFP_DMA32;
4492 }
4493
Al Viro496ad9a2013-01-23 17:07:38 -05004494 mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004495 mapping_set_gfp_mask(mapping, mask);
Hugh Dickins5949eac2011-06-27 16:18:18 -07004496
Chris Wilson37e680a2012-06-07 15:38:42 +01004497 i915_gem_object_init(obj, &i915_gem_object_ops);
Chris Wilson73aa8082010-09-30 11:46:12 +01004498
Daniel Vetterc397b902010-04-09 19:05:07 +00004499 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
4500 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4501
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02004502 if (HAS_LLC(dev)) {
4503 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07004504 * cache) for about a 10% performance improvement
4505 * compared to uncached. Graphics requests other than
4506 * display scanout are coherent with the CPU in
4507 * accessing this cache. This means in this mode we
4508 * don't need to clflush on the CPU side, and on the
4509 * GPU side we only need to flush internal caches to
4510 * get data visible to the CPU.
4511 *
4512 * However, we maintain the display planes as UC, and so
4513 * need to rebind when first used as such.
4514 */
4515 obj->cache_level = I915_CACHE_LLC;
4516 } else
4517 obj->cache_level = I915_CACHE_NONE;
4518
Daniel Vetterd861e332013-07-24 23:25:03 +02004519 trace_i915_gem_object_create(obj);
4520
Chris Wilson05394f32010-11-08 19:18:58 +00004521 return obj;
Daniel Vetterac52bc52010-04-09 19:05:06 +00004522}
4523
Chris Wilson340fbd82014-05-22 09:16:52 +01004524static bool discard_backing_storage(struct drm_i915_gem_object *obj)
4525{
4526 /* If we are the last user of the backing storage (be it shmemfs
4527 * pages or stolen etc), we know that the pages are going to be
4528 * immediately released. In this case, we can then skip copying
4529 * back the contents from the GPU.
4530 */
4531
4532 if (obj->madv != I915_MADV_WILLNEED)
4533 return false;
4534
4535 if (obj->base.filp == NULL)
4536 return true;
4537
4538 /* At first glance, this looks racy, but then again so would be
4539 * userspace racing mmap against close. However, the first external
4540 * reference to the filp can only be obtained through the
4541 * i915_gem_mmap_ioctl() which safeguards us against the user
4542 * acquiring such a reference whilst we are in the middle of
4543 * freeing the object.
4544 */
4545 return atomic_long_read(&obj->base.filp->f_count) == 1;
4546}
4547
Chris Wilson1488fc02012-04-24 15:47:31 +01004548void i915_gem_free_object(struct drm_gem_object *gem_obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01004549{
Chris Wilson1488fc02012-04-24 15:47:31 +01004550 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00004551 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004552 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004553 struct i915_vma *vma, *next;
Chris Wilsonbe726152010-07-23 23:18:50 +01004554
Paulo Zanonif65c9162013-11-27 18:20:34 -02004555 intel_runtime_pm_get(dev_priv);
4556
Chris Wilson26e12f892011-03-20 11:20:19 +00004557 trace_i915_gem_object_destroy(obj);
4558
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004559 list_for_each_entry_safe(vma, next, &obj->vma_list, vma_link) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004560 int ret;
4561
4562 vma->pin_count = 0;
4563 ret = i915_vma_unbind(vma);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004564 if (WARN_ON(ret == -ERESTARTSYS)) {
4565 bool was_interruptible;
Chris Wilson1488fc02012-04-24 15:47:31 +01004566
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004567 was_interruptible = dev_priv->mm.interruptible;
4568 dev_priv->mm.interruptible = false;
Chris Wilson1488fc02012-04-24 15:47:31 +01004569
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004570 WARN_ON(i915_vma_unbind(vma));
Chris Wilson1488fc02012-04-24 15:47:31 +01004571
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004572 dev_priv->mm.interruptible = was_interruptible;
4573 }
Chris Wilson1488fc02012-04-24 15:47:31 +01004574 }
4575
Ben Widawsky1d64ae72013-05-31 14:46:20 -07004576 /* Stolen objects don't hold a ref, but do hold pin count. Fix that up
4577 * before progressing. */
4578 if (obj->stolen)
4579 i915_gem_object_unpin_pages(obj);
4580
Daniel Vettera071fa02014-06-18 23:28:09 +02004581 WARN_ON(obj->frontbuffer_bits);
4582
Daniel Vetter656bfa32014-11-20 09:26:30 +01004583 if (obj->pages && obj->madv == I915_MADV_WILLNEED &&
4584 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES &&
4585 obj->tiling_mode != I915_TILING_NONE)
4586 i915_gem_object_unpin_pages(obj);
4587
Ben Widawsky401c29f2013-05-31 11:28:47 -07004588 if (WARN_ON(obj->pages_pin_count))
4589 obj->pages_pin_count = 0;
Chris Wilson340fbd82014-05-22 09:16:52 +01004590 if (discard_backing_storage(obj))
Chris Wilson55372522014-03-25 13:23:06 +00004591 obj->madv = I915_MADV_DONTNEED;
Chris Wilson37e680a2012-06-07 15:38:42 +01004592 i915_gem_object_put_pages(obj);
Chris Wilsond8cb5082012-08-11 15:41:03 +01004593 i915_gem_object_free_mmap_offset(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01004594
Chris Wilson9da3da62012-06-01 15:20:22 +01004595 BUG_ON(obj->pages);
4596
Chris Wilson2f745ad2012-09-04 21:02:58 +01004597 if (obj->base.import_attach)
4598 drm_prime_gem_destroy(&obj->base, NULL);
Chris Wilsonbe726152010-07-23 23:18:50 +01004599
Chris Wilson5cc9ed42014-05-16 14:22:37 +01004600 if (obj->ops->release)
4601 obj->ops->release(obj);
4602
Chris Wilson05394f32010-11-08 19:18:58 +00004603 drm_gem_object_release(&obj->base);
4604 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01004605
Chris Wilson05394f32010-11-08 19:18:58 +00004606 kfree(obj->bit_17);
Chris Wilson42dcedd2012-11-15 11:32:30 +00004607 i915_gem_object_free(obj);
Paulo Zanonif65c9162013-11-27 18:20:34 -02004608
4609 intel_runtime_pm_put(dev_priv);
Chris Wilsonbe726152010-07-23 23:18:50 +01004610}
4611
Daniel Vettere656a6c2013-08-14 14:14:04 +02004612struct i915_vma *i915_gem_obj_to_vma(struct drm_i915_gem_object *obj,
Ben Widawsky2f633152013-07-17 12:19:03 -07004613 struct i915_address_space *vm)
4614{
Daniel Vettere656a6c2013-08-14 14:14:04 +02004615 struct i915_vma *vma;
4616 list_for_each_entry(vma, &obj->vma_list, vma_link)
4617 if (vma->vm == vm)
4618 return vma;
4619
4620 return NULL;
4621}
4622
Ben Widawsky2f633152013-07-17 12:19:03 -07004623void i915_gem_vma_destroy(struct i915_vma *vma)
4624{
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004625 struct i915_address_space *vm = NULL;
Ben Widawsky2f633152013-07-17 12:19:03 -07004626 WARN_ON(vma->node.allocated);
Chris Wilsonaaa05662013-08-20 12:56:40 +01004627
4628 /* Keep the vma as a placeholder in the execbuffer reservation lists */
4629 if (!list_empty(&vma->exec_list))
4630 return;
4631
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004632 vm = vma->vm;
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004633
Daniel Vetter841cd772014-08-06 15:04:48 +02004634 if (!i915_is_ggtt(vm))
4635 i915_ppgtt_put(i915_vm_to_ppgtt(vm));
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004636
Ben Widawsky8b9c2b92013-07-31 17:00:16 -07004637 list_del(&vma->vma_link);
Daniel Vetterb93dab62013-08-26 11:23:47 +02004638
Ben Widawsky2f633152013-07-17 12:19:03 -07004639 kfree(vma);
4640}
4641
Chris Wilsone3efda42014-04-09 09:19:41 +01004642static void
4643i915_gem_stop_ringbuffers(struct drm_device *dev)
4644{
4645 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004646 struct intel_engine_cs *ring;
Chris Wilsone3efda42014-04-09 09:19:41 +01004647 int i;
4648
4649 for_each_ring(ring, dev_priv, i)
Oscar Mateoa83014d2014-07-24 17:04:21 +01004650 dev_priv->gt.stop_ring(ring);
Chris Wilsone3efda42014-04-09 09:19:41 +01004651}
4652
Jesse Barnes5669fca2009-02-17 15:13:31 -08004653int
Chris Wilson45c5f202013-10-16 11:50:01 +01004654i915_gem_suspend(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07004655{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004656 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson45c5f202013-10-16 11:50:01 +01004657 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07004658
Chris Wilson45c5f202013-10-16 11:50:01 +01004659 mutex_lock(&dev->struct_mutex);
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004660 ret = i915_gpu_idle(dev);
Chris Wilsonf7403342013-09-13 23:57:04 +01004661 if (ret)
Chris Wilson45c5f202013-10-16 11:50:01 +01004662 goto err;
Chris Wilsonf7403342013-09-13 23:57:04 +01004663
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004664 i915_gem_retire_requests(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07004665
Chris Wilson29105cc2010-01-07 10:39:13 +00004666 /* Under UMS, be paranoid and evict. */
Chris Wilsona39d7ef2012-04-24 18:22:52 +01004667 if (!drm_core_check_feature(dev, DRIVER_MODESET))
Chris Wilson6c085a72012-08-20 11:40:46 +02004668 i915_gem_evict_everything(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00004669
Chris Wilsone3efda42014-04-09 09:19:41 +01004670 i915_gem_stop_ringbuffers(dev);
Chris Wilson45c5f202013-10-16 11:50:01 +01004671 mutex_unlock(&dev->struct_mutex);
4672
4673 del_timer_sync(&dev_priv->gpu_error.hangcheck_timer);
Chris Wilson29105cc2010-01-07 10:39:13 +00004674 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
Deepak S274fa1c2014-08-05 07:51:20 -07004675 flush_delayed_work(&dev_priv->mm.idle_work);
Chris Wilson29105cc2010-01-07 10:39:13 +00004676
Eric Anholt673a3942008-07-30 12:06:12 -07004677 return 0;
Chris Wilson45c5f202013-10-16 11:50:01 +01004678
4679err:
4680 mutex_unlock(&dev->struct_mutex);
4681 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004682}
4683
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004684int i915_gem_l3_remap(struct intel_engine_cs *ring, int slice)
Ben Widawskyb9524a12012-05-25 16:56:24 -07004685{
Ben Widawskyc3787e22013-09-17 21:12:44 -07004686 struct drm_device *dev = ring->dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004687 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07004688 u32 reg_base = GEN7_L3LOG_BASE + (slice * 0x200);
4689 u32 *remap_info = dev_priv->l3_parity.remap_info[slice];
Ben Widawskyc3787e22013-09-17 21:12:44 -07004690 int i, ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004691
Ben Widawsky040d2ba2013-09-19 11:01:40 -07004692 if (!HAS_L3_DPF(dev) || !remap_info)
Ben Widawskyc3787e22013-09-17 21:12:44 -07004693 return 0;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004694
Ben Widawskyc3787e22013-09-17 21:12:44 -07004695 ret = intel_ring_begin(ring, GEN7_L3LOG_SIZE / 4 * 3);
4696 if (ret)
4697 return ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004698
Ben Widawskyc3787e22013-09-17 21:12:44 -07004699 /*
4700 * Note: We do not worry about the concurrent register cacheline hang
4701 * here because no other code should access these registers other than
4702 * at initialization time.
4703 */
Ben Widawskyb9524a12012-05-25 16:56:24 -07004704 for (i = 0; i < GEN7_L3LOG_SIZE; i += 4) {
Ben Widawskyc3787e22013-09-17 21:12:44 -07004705 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
4706 intel_ring_emit(ring, reg_base + i);
4707 intel_ring_emit(ring, remap_info[i/4]);
Ben Widawskyb9524a12012-05-25 16:56:24 -07004708 }
4709
Ben Widawskyc3787e22013-09-17 21:12:44 -07004710 intel_ring_advance(ring);
Ben Widawskyb9524a12012-05-25 16:56:24 -07004711
Ben Widawskyc3787e22013-09-17 21:12:44 -07004712 return ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004713}
4714
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004715void i915_gem_init_swizzling(struct drm_device *dev)
4716{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004717 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004718
Daniel Vetter11782b02012-01-31 16:47:55 +01004719 if (INTEL_INFO(dev)->gen < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004720 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
4721 return;
4722
4723 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
4724 DISP_TILE_SURFACE_SWIZZLING);
4725
Daniel Vetter11782b02012-01-31 16:47:55 +01004726 if (IS_GEN5(dev))
4727 return;
4728
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004729 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
4730 if (IS_GEN6(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004731 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_SNB));
Ben Widawsky8782e262012-12-18 10:31:23 -08004732 else if (IS_GEN7(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004733 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_IVB));
Ben Widawsky31a53362013-11-02 21:07:04 -07004734 else if (IS_GEN8(dev))
4735 I915_WRITE(GAMTARBMODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_BDW));
Ben Widawsky8782e262012-12-18 10:31:23 -08004736 else
4737 BUG();
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004738}
Daniel Vettere21af882012-02-09 20:53:27 +01004739
Chris Wilson67b1b572012-07-05 23:49:40 +01004740static bool
4741intel_enable_blt(struct drm_device *dev)
4742{
4743 if (!HAS_BLT(dev))
4744 return false;
4745
4746 /* The blitter was dysfunctional on early prototypes */
4747 if (IS_GEN6(dev) && dev->pdev->revision < 8) {
4748 DRM_INFO("BLT not supported on this pre-production hardware;"
4749 " graphics performance will be degraded.\n");
4750 return false;
4751 }
4752
4753 return true;
4754}
4755
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004756static void init_unused_ring(struct drm_device *dev, u32 base)
4757{
4758 struct drm_i915_private *dev_priv = dev->dev_private;
4759
4760 I915_WRITE(RING_CTL(base), 0);
4761 I915_WRITE(RING_HEAD(base), 0);
4762 I915_WRITE(RING_TAIL(base), 0);
4763 I915_WRITE(RING_START(base), 0);
4764}
4765
4766static void init_unused_rings(struct drm_device *dev)
4767{
4768 if (IS_I830(dev)) {
4769 init_unused_ring(dev, PRB1_BASE);
4770 init_unused_ring(dev, SRB0_BASE);
4771 init_unused_ring(dev, SRB1_BASE);
4772 init_unused_ring(dev, SRB2_BASE);
4773 init_unused_ring(dev, SRB3_BASE);
4774 } else if (IS_GEN2(dev)) {
4775 init_unused_ring(dev, SRB0_BASE);
4776 init_unused_ring(dev, SRB1_BASE);
4777 } else if (IS_GEN3(dev)) {
4778 init_unused_ring(dev, PRB1_BASE);
4779 init_unused_ring(dev, PRB2_BASE);
4780 }
4781}
4782
Oscar Mateoa83014d2014-07-24 17:04:21 +01004783int i915_gem_init_rings(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004784{
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004785 struct drm_i915_private *dev_priv = dev->dev_private;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004786 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004787
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004788 /*
4789 * At least 830 can leave some of the unused rings
4790 * "active" (ie. head != tail) after resume which
4791 * will prevent c3 entry. Makes sure all unused rings
4792 * are totally idle.
4793 */
4794 init_unused_rings(dev);
4795
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004796 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004797 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00004798 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004799
4800 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004801 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004802 if (ret)
4803 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08004804 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01004805
Chris Wilson67b1b572012-07-05 23:49:40 +01004806 if (intel_enable_blt(dev)) {
Chris Wilson549f7362010-10-19 11:19:32 +01004807 ret = intel_init_blt_ring_buffer(dev);
4808 if (ret)
4809 goto cleanup_bsd_ring;
4810 }
4811
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004812 if (HAS_VEBOX(dev)) {
4813 ret = intel_init_vebox_ring_buffer(dev);
4814 if (ret)
4815 goto cleanup_blt_ring;
4816 }
4817
Zhao Yakui845f74a2014-04-17 10:37:37 +08004818 if (HAS_BSD2(dev)) {
4819 ret = intel_init_bsd2_ring_buffer(dev);
4820 if (ret)
4821 goto cleanup_vebox_ring;
4822 }
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004823
Mika Kuoppala99433932013-01-22 14:12:17 +02004824 ret = i915_gem_set_seqno(dev, ((u32)~0 - 0x1000));
4825 if (ret)
Zhao Yakui845f74a2014-04-17 10:37:37 +08004826 goto cleanup_bsd2_ring;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004827
4828 return 0;
4829
Zhao Yakui845f74a2014-04-17 10:37:37 +08004830cleanup_bsd2_ring:
4831 intel_cleanup_ring_buffer(&dev_priv->ring[VCS2]);
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004832cleanup_vebox_ring:
4833 intel_cleanup_ring_buffer(&dev_priv->ring[VECS]);
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004834cleanup_blt_ring:
4835 intel_cleanup_ring_buffer(&dev_priv->ring[BCS]);
4836cleanup_bsd_ring:
4837 intel_cleanup_ring_buffer(&dev_priv->ring[VCS]);
4838cleanup_render_ring:
4839 intel_cleanup_ring_buffer(&dev_priv->ring[RCS]);
4840
4841 return ret;
4842}
4843
4844int
4845i915_gem_init_hw(struct drm_device *dev)
4846{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004847 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07004848 int ret, i;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004849
4850 if (INTEL_INFO(dev)->gen < 6 && !intel_enable_gtt())
4851 return -EIO;
4852
Ben Widawsky59124502013-07-04 11:02:05 -07004853 if (dev_priv->ellc_size)
Ben Widawsky05e21cc2013-07-04 11:02:04 -07004854 I915_WRITE(HSW_IDICR, I915_READ(HSW_IDICR) | IDIHASHMSK(0xf));
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004855
Ville Syrjälä0bf21342013-11-29 14:56:12 +02004856 if (IS_HASWELL(dev))
4857 I915_WRITE(MI_PREDICATE_RESULT_2, IS_HSW_GT3(dev) ?
4858 LOWER_SLICE_ENABLED : LOWER_SLICE_DISABLED);
Rodrigo Vivi94353732013-08-28 16:45:46 -03004859
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004860 if (HAS_PCH_NOP(dev)) {
Daniel Vetter6ba844b2014-01-22 23:39:30 +01004861 if (IS_IVYBRIDGE(dev)) {
4862 u32 temp = I915_READ(GEN7_MSG_CTL);
4863 temp &= ~(WAIT_FOR_PCH_FLR_ACK | WAIT_FOR_PCH_RESET_ACK);
4864 I915_WRITE(GEN7_MSG_CTL, temp);
4865 } else if (INTEL_INFO(dev)->gen >= 7) {
4866 u32 temp = I915_READ(HSW_NDE_RSTWRN_OPT);
4867 temp &= ~RESET_PCH_HANDSHAKE_ENABLE;
4868 I915_WRITE(HSW_NDE_RSTWRN_OPT, temp);
4869 }
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004870 }
4871
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004872 i915_gem_init_swizzling(dev);
4873
Oscar Mateoa83014d2014-07-24 17:04:21 +01004874 ret = dev_priv->gt.init_rings(dev);
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004875 if (ret)
Mika Kuoppala99433932013-01-22 14:12:17 +02004876 return ret;
4877
Ben Widawskyc3787e22013-09-17 21:12:44 -07004878 for (i = 0; i < NUM_L3_SLICES(dev); i++)
4879 i915_gem_l3_remap(&dev_priv->ring[RCS], i);
4880
Ben Widawsky254f9652012-06-04 14:42:42 -07004881 /*
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004882 * XXX: Contexts should only be initialized once. Doing a switch to the
4883 * default context switch however is something we'd like to do after
4884 * reset or thaw (the latter may not actually be necessary for HW, but
4885 * goes with our code better). Context switching requires rings (for
4886 * the do_switch), but before enabling PPGTT. So don't move this.
Ben Widawsky254f9652012-06-04 14:42:42 -07004887 */
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004888 ret = i915_gem_context_enable(dev_priv);
Chris Wilson60990322014-04-09 09:19:42 +01004889 if (ret && ret != -EIO) {
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004890 DRM_ERROR("Context enable failed %d\n", ret);
Chris Wilson60990322014-04-09 09:19:42 +01004891 i915_gem_cleanup_ringbuffer(dev);
Daniel Vetter82460d92014-08-06 20:19:53 +02004892
4893 return ret;
4894 }
4895
4896 ret = i915_ppgtt_init_hw(dev);
4897 if (ret && ret != -EIO) {
4898 DRM_ERROR("PPGTT enable failed %d\n", ret);
4899 i915_gem_cleanup_ringbuffer(dev);
Ben Widawskyb7c36d22013-04-08 18:43:56 -07004900 }
Daniel Vettere21af882012-02-09 20:53:27 +01004901
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004902 return ret;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004903}
4904
Chris Wilson1070a422012-04-24 15:47:41 +01004905int i915_gem_init(struct drm_device *dev)
4906{
4907 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson1070a422012-04-24 15:47:41 +01004908 int ret;
4909
Oscar Mateo127f1002014-07-24 17:04:11 +01004910 i915.enable_execlists = intel_sanitize_enable_execlists(dev,
4911 i915.enable_execlists);
4912
Chris Wilson1070a422012-04-24 15:47:41 +01004913 mutex_lock(&dev->struct_mutex);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004914
4915 if (IS_VALLEYVIEW(dev)) {
4916 /* VLVA0 (potential hack), BIOS isn't actually waking us */
Imre Deak981a5ae2014-04-14 20:24:22 +03004917 I915_WRITE(VLV_GTLC_WAKE_CTRL, VLV_GTLC_ALLOWWAKEREQ);
4918 if (wait_for((I915_READ(VLV_GTLC_PW_STATUS) &
4919 VLV_GTLC_ALLOWWAKEACK), 10))
Jesse Barnesd62b4892013-03-08 10:45:53 -08004920 DRM_DEBUG_DRIVER("allow wake ack timed out\n");
4921 }
4922
Oscar Mateoa83014d2014-07-24 17:04:21 +01004923 if (!i915.enable_execlists) {
4924 dev_priv->gt.do_execbuf = i915_gem_ringbuffer_submission;
4925 dev_priv->gt.init_rings = i915_gem_init_rings;
4926 dev_priv->gt.cleanup_ring = intel_cleanup_ring_buffer;
4927 dev_priv->gt.stop_ring = intel_stop_ring_buffer;
Oscar Mateo454afeb2014-07-24 17:04:22 +01004928 } else {
4929 dev_priv->gt.do_execbuf = intel_execlists_submission;
4930 dev_priv->gt.init_rings = intel_logical_rings_init;
4931 dev_priv->gt.cleanup_ring = intel_logical_ring_cleanup;
4932 dev_priv->gt.stop_ring = intel_logical_ring_stop;
Oscar Mateoa83014d2014-07-24 17:04:21 +01004933 }
4934
Daniel Vetter6c5566a2014-08-06 15:04:50 +02004935 ret = i915_gem_init_userptr(dev);
4936 if (ret) {
4937 mutex_unlock(&dev->struct_mutex);
4938 return ret;
4939 }
4940
Ben Widawskyd7e50082012-12-18 10:31:25 -08004941 i915_gem_init_global_gtt(dev);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004942
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004943 ret = i915_gem_context_init(dev);
Mika Kuoppalae3848692014-01-31 17:14:02 +02004944 if (ret) {
4945 mutex_unlock(&dev->struct_mutex);
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004946 return ret;
Mika Kuoppalae3848692014-01-31 17:14:02 +02004947 }
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004948
Chris Wilson1070a422012-04-24 15:47:41 +01004949 ret = i915_gem_init_hw(dev);
Chris Wilson60990322014-04-09 09:19:42 +01004950 if (ret == -EIO) {
4951 /* Allow ring initialisation to fail by marking the GPU as
4952 * wedged. But we only want to do this where the GPU is angry,
4953 * for all other failure, such as an allocation failure, bail.
4954 */
4955 DRM_ERROR("Failed to initialize GPU, declaring it wedged\n");
4956 atomic_set_mask(I915_WEDGED, &dev_priv->gpu_error.reset_counter);
4957 ret = 0;
Chris Wilson1070a422012-04-24 15:47:41 +01004958 }
Chris Wilson60990322014-04-09 09:19:42 +01004959 mutex_unlock(&dev->struct_mutex);
Chris Wilson1070a422012-04-24 15:47:41 +01004960
Chris Wilson60990322014-04-09 09:19:42 +01004961 return ret;
Chris Wilson1070a422012-04-24 15:47:41 +01004962}
4963
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004964void
4965i915_gem_cleanup_ringbuffer(struct drm_device *dev)
4966{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004967 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004968 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00004969 int i;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004970
Chris Wilsonb4519512012-05-11 14:29:30 +01004971 for_each_ring(ring, dev_priv, i)
Oscar Mateoa83014d2014-07-24 17:04:21 +01004972 dev_priv->gt.cleanup_ring(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004973}
4974
Chris Wilson64193402010-10-24 12:38:05 +01004975static void
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004976init_ring_lists(struct intel_engine_cs *ring)
Chris Wilson64193402010-10-24 12:38:05 +01004977{
4978 INIT_LIST_HEAD(&ring->active_list);
4979 INIT_LIST_HEAD(&ring->request_list);
Chris Wilson64193402010-10-24 12:38:05 +01004980}
4981
Ben Widawsky7e0d96b2013-12-06 14:11:26 -08004982void i915_init_vm(struct drm_i915_private *dev_priv,
4983 struct i915_address_space *vm)
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004984{
Ben Widawsky7e0d96b2013-12-06 14:11:26 -08004985 if (!i915_is_ggtt(vm))
4986 drm_mm_init(&vm->mm, vm->start, vm->total);
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004987 vm->dev = dev_priv->dev;
4988 INIT_LIST_HEAD(&vm->active_list);
4989 INIT_LIST_HEAD(&vm->inactive_list);
4990 INIT_LIST_HEAD(&vm->global_link);
Chris Wilsonf72d21e2014-01-09 22:57:22 +00004991 list_add_tail(&vm->global_link, &dev_priv->vm_list);
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004992}
4993
Eric Anholt673a3942008-07-30 12:06:12 -07004994void
4995i915_gem_load(struct drm_device *dev)
4996{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004997 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson42dcedd2012-11-15 11:32:30 +00004998 int i;
4999
5000 dev_priv->slab =
5001 kmem_cache_create("i915_gem_object",
5002 sizeof(struct drm_i915_gem_object), 0,
5003 SLAB_HWCACHE_ALIGN,
5004 NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07005005
Ben Widawskyfc8c0672013-07-31 16:59:54 -07005006 INIT_LIST_HEAD(&dev_priv->vm_list);
5007 i915_init_vm(dev_priv, &dev_priv->gtt.base);
5008
Ben Widawskya33afea2013-09-17 21:12:45 -07005009 INIT_LIST_HEAD(&dev_priv->context_list);
Chris Wilson6c085a72012-08-20 11:40:46 +02005010 INIT_LIST_HEAD(&dev_priv->mm.unbound_list);
5011 INIT_LIST_HEAD(&dev_priv->mm.bound_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07005012 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00005013 for (i = 0; i < I915_NUM_RINGS; i++)
5014 init_ring_lists(&dev_priv->ring[i]);
Daniel Vetter4b9de732011-10-09 21:52:02 +02005015 for (i = 0; i < I915_MAX_NUM_FENCES; i++)
Daniel Vetter007cc8a2010-04-28 11:02:31 +02005016 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07005017 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
5018 i915_gem_retire_work_handler);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005019 INIT_DELAYED_WORK(&dev_priv->mm.idle_work,
5020 i915_gem_idle_work_handler);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01005021 init_waitqueue_head(&dev_priv->gpu_error.reset_queue);
Chris Wilson31169712009-09-14 16:50:28 +01005022
Dave Airlie94400122010-07-20 13:15:31 +10005023 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
Ville Syrjälädbb42742014-02-25 15:13:41 +02005024 if (!drm_core_check_feature(dev, DRIVER_MODESET) && IS_GEN3(dev)) {
Daniel Vetter50743292012-04-26 22:02:54 +02005025 I915_WRITE(MI_ARB_STATE,
5026 _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Dave Airlie94400122010-07-20 13:15:31 +10005027 }
5028
Chris Wilson72bfa192010-12-19 11:42:05 +00005029 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
5030
Jesse Barnesde151cf2008-11-12 10:03:55 -08005031 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08005032 if (!drm_core_check_feature(dev, DRIVER_MODESET))
5033 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08005034
Ville Syrjälä42b5aea2013-04-09 13:02:47 +03005035 if (INTEL_INFO(dev)->gen >= 7 && !IS_VALLEYVIEW(dev))
5036 dev_priv->num_fence_regs = 32;
5037 else if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08005038 dev_priv->num_fence_regs = 16;
5039 else
5040 dev_priv->num_fence_regs = 8;
5041
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02005042 /* Initialize fence registers to zero */
Chris Wilson19b2dbd2013-06-12 10:15:12 +01005043 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
5044 i915_gem_restore_fences(dev);
Eric Anholt10ed13e2011-05-06 13:53:49 -07005045
Eric Anholt673a3942008-07-30 12:06:12 -07005046 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005047 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01005048
Chris Wilsonce453d82011-02-21 14:43:56 +00005049 dev_priv->mm.interruptible = true;
5050
Chris Wilsonceabbba52014-03-25 13:23:04 +00005051 dev_priv->mm.shrinker.scan_objects = i915_gem_shrinker_scan;
5052 dev_priv->mm.shrinker.count_objects = i915_gem_shrinker_count;
5053 dev_priv->mm.shrinker.seeks = DEFAULT_SEEKS;
5054 register_shrinker(&dev_priv->mm.shrinker);
Chris Wilson2cfcd322014-05-20 08:28:43 +01005055
5056 dev_priv->mm.oom_notifier.notifier_call = i915_gem_shrinker_oom;
5057 register_oom_notifier(&dev_priv->mm.oom_notifier);
Daniel Vetterf99d7062014-06-19 16:01:59 +02005058
5059 mutex_init(&dev_priv->fb_tracking.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07005060}
Dave Airlie71acb5e2008-12-30 20:31:46 +10005061
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005062void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00005063{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005064 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00005065
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005066 cancel_delayed_work_sync(&file_priv->mm.idle_work);
5067
Eric Anholtb9624422009-06-03 07:27:35 +00005068 /* Clean up our request list when the client is going away, so that
5069 * later retire_requests won't dereference our soon-to-be-gone
5070 * file_priv.
5071 */
Chris Wilson1c255952010-09-26 11:03:27 +01005072 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005073 while (!list_empty(&file_priv->mm.request_list)) {
5074 struct drm_i915_gem_request *request;
5075
5076 request = list_first_entry(&file_priv->mm.request_list,
5077 struct drm_i915_gem_request,
5078 client_list);
5079 list_del(&request->client_list);
5080 request->file_priv = NULL;
5081 }
Chris Wilson1c255952010-09-26 11:03:27 +01005082 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00005083}
Chris Wilson31169712009-09-14 16:50:28 +01005084
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005085static void
5086i915_gem_file_idle_work_handler(struct work_struct *work)
5087{
5088 struct drm_i915_file_private *file_priv =
5089 container_of(work, typeof(*file_priv), mm.idle_work.work);
5090
5091 atomic_set(&file_priv->rps_wait_boost, false);
5092}
5093
5094int i915_gem_open(struct drm_device *dev, struct drm_file *file)
5095{
5096 struct drm_i915_file_private *file_priv;
Ben Widawskye422b882013-12-06 14:10:58 -08005097 int ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005098
5099 DRM_DEBUG_DRIVER("\n");
5100
5101 file_priv = kzalloc(sizeof(*file_priv), GFP_KERNEL);
5102 if (!file_priv)
5103 return -ENOMEM;
5104
5105 file->driver_priv = file_priv;
5106 file_priv->dev_priv = dev->dev_private;
Chris Wilsonab0e7ff2014-02-25 17:11:24 +02005107 file_priv->file = file;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005108
5109 spin_lock_init(&file_priv->mm.lock);
5110 INIT_LIST_HEAD(&file_priv->mm.request_list);
5111 INIT_DELAYED_WORK(&file_priv->mm.idle_work,
5112 i915_gem_file_idle_work_handler);
5113
Ben Widawskye422b882013-12-06 14:10:58 -08005114 ret = i915_gem_context_open(dev, file);
5115 if (ret)
5116 kfree(file_priv);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005117
Ben Widawskye422b882013-12-06 14:10:58 -08005118 return ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005119}
5120
Daniel Vetterb680c372014-09-19 18:27:27 +02005121/**
5122 * i915_gem_track_fb - update frontbuffer tracking
5123 * old: current GEM buffer for the frontbuffer slots
5124 * new: new GEM buffer for the frontbuffer slots
5125 * frontbuffer_bits: bitmask of frontbuffer slots
5126 *
5127 * This updates the frontbuffer tracking bits @frontbuffer_bits by clearing them
5128 * from @old and setting them in @new. Both @old and @new can be NULL.
5129 */
Daniel Vettera071fa02014-06-18 23:28:09 +02005130void i915_gem_track_fb(struct drm_i915_gem_object *old,
5131 struct drm_i915_gem_object *new,
5132 unsigned frontbuffer_bits)
5133{
5134 if (old) {
5135 WARN_ON(!mutex_is_locked(&old->base.dev->struct_mutex));
5136 WARN_ON(!(old->frontbuffer_bits & frontbuffer_bits));
5137 old->frontbuffer_bits &= ~frontbuffer_bits;
5138 }
5139
5140 if (new) {
5141 WARN_ON(!mutex_is_locked(&new->base.dev->struct_mutex));
5142 WARN_ON(new->frontbuffer_bits & frontbuffer_bits);
5143 new->frontbuffer_bits |= frontbuffer_bits;
5144 }
5145}
5146
Chris Wilson57745062012-11-21 13:04:04 +00005147static bool mutex_is_locked_by(struct mutex *mutex, struct task_struct *task)
5148{
5149 if (!mutex_is_locked(mutex))
5150 return false;
5151
5152#if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_MUTEXES)
5153 return mutex->owner == task;
5154#else
5155 /* Since UP may be pre-empted, we cannot assume that we own the lock */
5156 return false;
5157#endif
5158}
5159
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005160static bool i915_gem_shrinker_lock(struct drm_device *dev, bool *unlock)
5161{
5162 if (!mutex_trylock(&dev->struct_mutex)) {
5163 if (!mutex_is_locked_by(&dev->struct_mutex, current))
5164 return false;
5165
5166 if (to_i915(dev)->mm.shrinker_no_lock_stealing)
5167 return false;
5168
5169 *unlock = false;
5170 } else
5171 *unlock = true;
5172
5173 return true;
5174}
5175
Chris Wilsonceabbba52014-03-25 13:23:04 +00005176static int num_vma_bound(struct drm_i915_gem_object *obj)
5177{
5178 struct i915_vma *vma;
5179 int count = 0;
5180
5181 list_for_each_entry(vma, &obj->vma_list, vma_link)
5182 if (drm_mm_node_allocated(&vma->node))
5183 count++;
5184
5185 return count;
5186}
5187
Dave Chinner7dc19d52013-08-28 10:18:11 +10005188static unsigned long
Chris Wilsonceabbba52014-03-25 13:23:04 +00005189i915_gem_shrinker_count(struct shrinker *shrinker, struct shrink_control *sc)
Chris Wilson31169712009-09-14 16:50:28 +01005190{
Chris Wilson17250b72010-10-28 12:51:39 +01005191 struct drm_i915_private *dev_priv =
Chris Wilsonceabbba52014-03-25 13:23:04 +00005192 container_of(shrinker, struct drm_i915_private, mm.shrinker);
Chris Wilson17250b72010-10-28 12:51:39 +01005193 struct drm_device *dev = dev_priv->dev;
Chris Wilson6c085a72012-08-20 11:40:46 +02005194 struct drm_i915_gem_object *obj;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005195 unsigned long count;
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005196 bool unlock;
Chris Wilson17250b72010-10-28 12:51:39 +01005197
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005198 if (!i915_gem_shrinker_lock(dev, &unlock))
5199 return 0;
Chris Wilson31169712009-09-14 16:50:28 +01005200
Dave Chinner7dc19d52013-08-28 10:18:11 +10005201 count = 0;
Ben Widawsky35c20a62013-05-31 11:28:48 -07005202 list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list)
Chris Wilsona5570172012-09-04 21:02:54 +01005203 if (obj->pages_pin_count == 0)
Dave Chinner7dc19d52013-08-28 10:18:11 +10005204 count += obj->base.size >> PAGE_SHIFT;
Ben Widawskyfcb4a572013-07-31 16:59:57 -07005205
5206 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
Chris Wilsonceabbba52014-03-25 13:23:04 +00005207 if (!i915_gem_obj_is_pinned(obj) &&
5208 obj->pages_pin_count == num_vma_bound(obj))
Dave Chinner7dc19d52013-08-28 10:18:11 +10005209 count += obj->base.size >> PAGE_SHIFT;
Ben Widawskyfcb4a572013-07-31 16:59:57 -07005210 }
Chris Wilson31169712009-09-14 16:50:28 +01005211
Chris Wilson57745062012-11-21 13:04:04 +00005212 if (unlock)
5213 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9973b42013-10-04 10:33:00 +01005214
Dave Chinner7dc19d52013-08-28 10:18:11 +10005215 return count;
Chris Wilson31169712009-09-14 16:50:28 +01005216}
Ben Widawskya70a3142013-07-31 16:59:56 -07005217
5218/* All the new VM stuff */
5219unsigned long i915_gem_obj_offset(struct drm_i915_gem_object *o,
5220 struct i915_address_space *vm)
5221{
5222 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
5223 struct i915_vma *vma;
5224
Daniel Vetter896ab1a2014-08-06 15:04:51 +02005225 WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base);
Ben Widawskya70a3142013-07-31 16:59:56 -07005226
Ben Widawskya70a3142013-07-31 16:59:56 -07005227 list_for_each_entry(vma, &o->vma_list, vma_link) {
5228 if (vma->vm == vm)
5229 return vma->node.start;
5230
5231 }
Daniel Vetterf25748ea2014-06-17 22:34:38 +02005232 WARN(1, "%s vma for this object not found.\n",
5233 i915_is_ggtt(vm) ? "global" : "ppgtt");
Ben Widawskya70a3142013-07-31 16:59:56 -07005234 return -1;
5235}
5236
5237bool i915_gem_obj_bound(struct drm_i915_gem_object *o,
5238 struct i915_address_space *vm)
5239{
5240 struct i915_vma *vma;
5241
5242 list_for_each_entry(vma, &o->vma_list, vma_link)
Ben Widawsky8b9c2b92013-07-31 17:00:16 -07005243 if (vma->vm == vm && drm_mm_node_allocated(&vma->node))
Ben Widawskya70a3142013-07-31 16:59:56 -07005244 return true;
5245
5246 return false;
5247}
5248
5249bool i915_gem_obj_bound_any(struct drm_i915_gem_object *o)
5250{
Chris Wilson5a1d5eb2013-09-10 11:27:37 +01005251 struct i915_vma *vma;
Ben Widawskya70a3142013-07-31 16:59:56 -07005252
Chris Wilson5a1d5eb2013-09-10 11:27:37 +01005253 list_for_each_entry(vma, &o->vma_list, vma_link)
5254 if (drm_mm_node_allocated(&vma->node))
Ben Widawskya70a3142013-07-31 16:59:56 -07005255 return true;
5256
5257 return false;
5258}
5259
5260unsigned long i915_gem_obj_size(struct drm_i915_gem_object *o,
5261 struct i915_address_space *vm)
5262{
5263 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
5264 struct i915_vma *vma;
5265
Daniel Vetter896ab1a2014-08-06 15:04:51 +02005266 WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base);
Ben Widawskya70a3142013-07-31 16:59:56 -07005267
5268 BUG_ON(list_empty(&o->vma_list));
5269
5270 list_for_each_entry(vma, &o->vma_list, vma_link)
5271 if (vma->vm == vm)
5272 return vma->node.size;
5273
5274 return 0;
5275}
5276
Dave Chinner7dc19d52013-08-28 10:18:11 +10005277static unsigned long
Chris Wilsonceabbba52014-03-25 13:23:04 +00005278i915_gem_shrinker_scan(struct shrinker *shrinker, struct shrink_control *sc)
Dave Chinner7dc19d52013-08-28 10:18:11 +10005279{
5280 struct drm_i915_private *dev_priv =
Chris Wilsonceabbba52014-03-25 13:23:04 +00005281 container_of(shrinker, struct drm_i915_private, mm.shrinker);
Dave Chinner7dc19d52013-08-28 10:18:11 +10005282 struct drm_device *dev = dev_priv->dev;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005283 unsigned long freed;
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005284 bool unlock;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005285
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005286 if (!i915_gem_shrinker_lock(dev, &unlock))
5287 return SHRINK_STOP;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005288
Chris Wilson21ab4e72014-09-09 11:16:08 +01005289 freed = i915_gem_shrink(dev_priv,
5290 sc->nr_to_scan,
5291 I915_SHRINK_BOUND |
5292 I915_SHRINK_UNBOUND |
5293 I915_SHRINK_PURGEABLE);
Chris Wilsond9973b42013-10-04 10:33:00 +01005294 if (freed < sc->nr_to_scan)
Chris Wilson21ab4e72014-09-09 11:16:08 +01005295 freed += i915_gem_shrink(dev_priv,
5296 sc->nr_to_scan - freed,
5297 I915_SHRINK_BOUND |
5298 I915_SHRINK_UNBOUND);
Dave Chinner7dc19d52013-08-28 10:18:11 +10005299 if (unlock)
5300 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9973b42013-10-04 10:33:00 +01005301
Dave Chinner7dc19d52013-08-28 10:18:11 +10005302 return freed;
5303}
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005304
Chris Wilson2cfcd322014-05-20 08:28:43 +01005305static int
5306i915_gem_shrinker_oom(struct notifier_block *nb, unsigned long event, void *ptr)
5307{
5308 struct drm_i915_private *dev_priv =
5309 container_of(nb, struct drm_i915_private, mm.oom_notifier);
5310 struct drm_device *dev = dev_priv->dev;
5311 struct drm_i915_gem_object *obj;
5312 unsigned long timeout = msecs_to_jiffies(5000) + 1;
Chris Wilson005445c2014-10-08 11:25:16 +01005313 unsigned long pinned, bound, unbound, freed_pages;
Chris Wilson2cfcd322014-05-20 08:28:43 +01005314 bool was_interruptible;
5315 bool unlock;
5316
Chris Wilsona1db2fa2014-07-11 11:28:00 +01005317 while (!i915_gem_shrinker_lock(dev, &unlock) && --timeout) {
Chris Wilson2cfcd322014-05-20 08:28:43 +01005318 schedule_timeout_killable(1);
Chris Wilsona1db2fa2014-07-11 11:28:00 +01005319 if (fatal_signal_pending(current))
5320 return NOTIFY_DONE;
5321 }
Chris Wilson2cfcd322014-05-20 08:28:43 +01005322 if (timeout == 0) {
5323 pr_err("Unable to purge GPU memory due lock contention.\n");
5324 return NOTIFY_DONE;
5325 }
5326
5327 was_interruptible = dev_priv->mm.interruptible;
5328 dev_priv->mm.interruptible = false;
5329
Chris Wilson005445c2014-10-08 11:25:16 +01005330 freed_pages = i915_gem_shrink_all(dev_priv);
Chris Wilson2cfcd322014-05-20 08:28:43 +01005331
5332 dev_priv->mm.interruptible = was_interruptible;
5333
5334 /* Because we may be allocating inside our own driver, we cannot
5335 * assert that there are no objects with pinned pages that are not
5336 * being pointed to by hardware.
5337 */
5338 unbound = bound = pinned = 0;
5339 list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list) {
5340 if (!obj->base.filp) /* not backed by a freeable object */
5341 continue;
5342
5343 if (obj->pages_pin_count)
5344 pinned += obj->base.size;
5345 else
5346 unbound += obj->base.size;
5347 }
5348 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
5349 if (!obj->base.filp)
5350 continue;
5351
5352 if (obj->pages_pin_count)
5353 pinned += obj->base.size;
5354 else
5355 bound += obj->base.size;
5356 }
5357
5358 if (unlock)
5359 mutex_unlock(&dev->struct_mutex);
5360
Chris Wilsonbb9059d2014-10-08 11:25:17 +01005361 if (freed_pages || unbound || bound)
5362 pr_info("Purging GPU memory, %lu bytes freed, %lu bytes still pinned.\n",
5363 freed_pages << PAGE_SHIFT, pinned);
Chris Wilson2cfcd322014-05-20 08:28:43 +01005364 if (unbound || bound)
5365 pr_err("%lu and %lu bytes still available in the "
5366 "bound and unbound GPU page lists.\n",
5367 bound, unbound);
5368
Chris Wilson005445c2014-10-08 11:25:16 +01005369 *(unsigned long *)ptr += freed_pages;
Chris Wilson2cfcd322014-05-20 08:28:43 +01005370 return NOTIFY_DONE;
5371}
5372
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005373struct i915_vma *i915_gem_obj_to_ggtt(struct drm_i915_gem_object *obj)
5374{
5375 struct i915_vma *vma;
5376
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005377 vma = list_first_entry(&obj->vma_list, typeof(*vma), vma_link);
Daniel Vetter5dc383b2014-08-06 15:04:49 +02005378 if (vma->vm != i915_obj_to_ggtt(obj))
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005379 return NULL;
5380
5381 return vma;
5382}