blob: c403bacee1615127a6f28fd8094f8b1f3318a881 [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 Wilson2cfcd32a2014-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 Wilson2cfcd32a2014-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,
Thomas Hellstrom355a7012014-11-20 09:56:25 +0100404 bool dumb,
Dave Airlieff72145b2011-02-07 12:16:14 +1000405 uint32_t *handle_p)
Eric Anholt673a3942008-07-30 12:06:12 -0700406{
Chris Wilson05394f32010-11-08 19:18:58 +0000407 struct drm_i915_gem_object *obj;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300408 int ret;
409 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700410
Dave Airlieff72145b2011-02-07 12:16:14 +1000411 size = roundup(size, PAGE_SIZE);
Chris Wilson8ffc0242011-09-14 14:14:28 +0200412 if (size == 0)
413 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700414
415 /* Allocate the new object */
Dave Airlieff72145b2011-02-07 12:16:14 +1000416 obj = i915_gem_alloc_object(dev, size);
Eric Anholt673a3942008-07-30 12:06:12 -0700417 if (obj == NULL)
418 return -ENOMEM;
419
Thomas Hellstrom355a7012014-11-20 09:56:25 +0100420 obj->base.dumb = dumb;
Chris Wilson05394f32010-11-08 19:18:58 +0000421 ret = drm_gem_handle_create(file, &obj->base, &handle);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100422 /* drop reference from allocate - handle holds it now */
Daniel Vetterd861e332013-07-24 23:25:03 +0200423 drm_gem_object_unreference_unlocked(&obj->base);
424 if (ret)
425 return ret;
Chris Wilson202f2fe2010-10-14 13:20:40 +0100426
Dave Airlieff72145b2011-02-07 12:16:14 +1000427 *handle_p = handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700428 return 0;
429}
430
Dave Airlieff72145b2011-02-07 12:16:14 +1000431int
432i915_gem_dumb_create(struct drm_file *file,
433 struct drm_device *dev,
434 struct drm_mode_create_dumb *args)
435{
436 /* have to work out size/pitch and return them */
Paulo Zanonide45eaf2013-10-18 18:48:24 -0300437 args->pitch = ALIGN(args->width * DIV_ROUND_UP(args->bpp, 8), 64);
Dave Airlieff72145b2011-02-07 12:16:14 +1000438 args->size = args->pitch * args->height;
439 return i915_gem_create(file, dev,
Thomas Hellstrom355a7012014-11-20 09:56:25 +0100440 args->size, true, &args->handle);
Dave Airlieff72145b2011-02-07 12:16:14 +1000441}
442
Dave Airlieff72145b2011-02-07 12:16:14 +1000443/**
444 * Creates a new mm object and returns a handle to it.
445 */
446int
447i915_gem_create_ioctl(struct drm_device *dev, void *data,
448 struct drm_file *file)
449{
450 struct drm_i915_gem_create *args = data;
Daniel Vetter63ed2cb2012-04-23 16:50:50 +0200451
Dave Airlieff72145b2011-02-07 12:16:14 +1000452 return i915_gem_create(file, dev,
Thomas Hellstrom355a7012014-11-20 09:56:25 +0100453 args->size, false, &args->handle);
Dave Airlieff72145b2011-02-07 12:16:14 +1000454}
455
Daniel Vetter8c599672011-12-14 13:57:31 +0100456static inline int
Daniel Vetter8461d222011-12-14 13:57:32 +0100457__copy_to_user_swizzled(char __user *cpu_vaddr,
458 const char *gpu_vaddr, int gpu_offset,
459 int length)
460{
461 int ret, cpu_offset = 0;
462
463 while (length > 0) {
464 int cacheline_end = ALIGN(gpu_offset + 1, 64);
465 int this_length = min(cacheline_end - gpu_offset, length);
466 int swizzled_gpu_offset = gpu_offset ^ 64;
467
468 ret = __copy_to_user(cpu_vaddr + cpu_offset,
469 gpu_vaddr + swizzled_gpu_offset,
470 this_length);
471 if (ret)
472 return ret + length;
473
474 cpu_offset += this_length;
475 gpu_offset += this_length;
476 length -= this_length;
477 }
478
479 return 0;
480}
481
482static inline int
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700483__copy_from_user_swizzled(char *gpu_vaddr, int gpu_offset,
484 const char __user *cpu_vaddr,
Daniel Vetter8c599672011-12-14 13:57:31 +0100485 int length)
486{
487 int ret, cpu_offset = 0;
488
489 while (length > 0) {
490 int cacheline_end = ALIGN(gpu_offset + 1, 64);
491 int this_length = min(cacheline_end - gpu_offset, length);
492 int swizzled_gpu_offset = gpu_offset ^ 64;
493
494 ret = __copy_from_user(gpu_vaddr + swizzled_gpu_offset,
495 cpu_vaddr + cpu_offset,
496 this_length);
497 if (ret)
498 return ret + length;
499
500 cpu_offset += this_length;
501 gpu_offset += this_length;
502 length -= this_length;
503 }
504
505 return 0;
506}
507
Brad Volkin4c914c02014-02-18 10:15:45 -0800508/*
509 * Pins the specified object's pages and synchronizes the object with
510 * GPU accesses. Sets needs_clflush to non-zero if the caller should
511 * flush the object from the CPU cache.
512 */
513int i915_gem_obj_prepare_shmem_read(struct drm_i915_gem_object *obj,
514 int *needs_clflush)
515{
516 int ret;
517
518 *needs_clflush = 0;
519
520 if (!obj->base.filp)
521 return -EINVAL;
522
523 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU)) {
524 /* If we're not in the cpu read domain, set ourself into the gtt
525 * read domain and manually flush cachelines (if required). This
526 * optimizes for the case when the gpu will dirty the data
527 * anyway again before the next pread happens. */
528 *needs_clflush = !cpu_cache_is_coherent(obj->base.dev,
529 obj->cache_level);
530 ret = i915_gem_object_wait_rendering(obj, true);
531 if (ret)
532 return ret;
Chris Wilsonc8725f32014-03-17 12:21:55 +0000533
534 i915_gem_object_retire(obj);
Brad Volkin4c914c02014-02-18 10:15:45 -0800535 }
536
537 ret = i915_gem_object_get_pages(obj);
538 if (ret)
539 return ret;
540
541 i915_gem_object_pin_pages(obj);
542
543 return ret;
544}
545
Daniel Vetterd174bd62012-03-25 19:47:40 +0200546/* Per-page copy function for the shmem pread fastpath.
547 * Flushes invalid cachelines before reading the target if
548 * needs_clflush is set. */
Eric Anholteb014592009-03-10 11:44:52 -0700549static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200550shmem_pread_fast(struct page *page, int shmem_page_offset, int page_length,
551 char __user *user_data,
552 bool page_do_bit17_swizzling, bool needs_clflush)
553{
554 char *vaddr;
555 int ret;
556
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200557 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200558 return -EINVAL;
559
560 vaddr = kmap_atomic(page);
561 if (needs_clflush)
562 drm_clflush_virt_range(vaddr + shmem_page_offset,
563 page_length);
564 ret = __copy_to_user_inatomic(user_data,
565 vaddr + shmem_page_offset,
566 page_length);
567 kunmap_atomic(vaddr);
568
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100569 return ret ? -EFAULT : 0;
Daniel Vetterd174bd62012-03-25 19:47:40 +0200570}
571
Daniel Vetter23c18c72012-03-25 19:47:42 +0200572static void
573shmem_clflush_swizzled_range(char *addr, unsigned long length,
574 bool swizzled)
575{
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200576 if (unlikely(swizzled)) {
Daniel Vetter23c18c72012-03-25 19:47:42 +0200577 unsigned long start = (unsigned long) addr;
578 unsigned long end = (unsigned long) addr + length;
579
580 /* For swizzling simply ensure that we always flush both
581 * channels. Lame, but simple and it works. Swizzled
582 * pwrite/pread is far from a hotpath - current userspace
583 * doesn't use it at all. */
584 start = round_down(start, 128);
585 end = round_up(end, 128);
586
587 drm_clflush_virt_range((void *)start, end - start);
588 } else {
589 drm_clflush_virt_range(addr, length);
590 }
591
592}
593
Daniel Vetterd174bd62012-03-25 19:47:40 +0200594/* Only difference to the fast-path function is that this can handle bit17
595 * and uses non-atomic copy and kmap functions. */
596static int
597shmem_pread_slow(struct page *page, int shmem_page_offset, int page_length,
598 char __user *user_data,
599 bool page_do_bit17_swizzling, bool needs_clflush)
600{
601 char *vaddr;
602 int ret;
603
604 vaddr = kmap(page);
605 if (needs_clflush)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200606 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
607 page_length,
608 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200609
610 if (page_do_bit17_swizzling)
611 ret = __copy_to_user_swizzled(user_data,
612 vaddr, shmem_page_offset,
613 page_length);
614 else
615 ret = __copy_to_user(user_data,
616 vaddr + shmem_page_offset,
617 page_length);
618 kunmap(page);
619
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100620 return ret ? - EFAULT : 0;
Daniel Vetterd174bd62012-03-25 19:47:40 +0200621}
622
Eric Anholteb014592009-03-10 11:44:52 -0700623static int
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200624i915_gem_shmem_pread(struct drm_device *dev,
625 struct drm_i915_gem_object *obj,
626 struct drm_i915_gem_pread *args,
627 struct drm_file *file)
Eric Anholteb014592009-03-10 11:44:52 -0700628{
Daniel Vetter8461d222011-12-14 13:57:32 +0100629 char __user *user_data;
Eric Anholteb014592009-03-10 11:44:52 -0700630 ssize_t remain;
Daniel Vetter8461d222011-12-14 13:57:32 +0100631 loff_t offset;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100632 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8461d222011-12-14 13:57:32 +0100633 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vetter96d79b52012-03-25 19:47:36 +0200634 int prefaulted = 0;
Daniel Vetter84897312012-03-25 19:47:31 +0200635 int needs_clflush = 0;
Imre Deak67d5a502013-02-18 19:28:02 +0200636 struct sg_page_iter sg_iter;
Eric Anholteb014592009-03-10 11:44:52 -0700637
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200638 user_data = to_user_ptr(args->data_ptr);
Eric Anholteb014592009-03-10 11:44:52 -0700639 remain = args->size;
640
Daniel Vetter8461d222011-12-14 13:57:32 +0100641 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700642
Brad Volkin4c914c02014-02-18 10:15:45 -0800643 ret = i915_gem_obj_prepare_shmem_read(obj, &needs_clflush);
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100644 if (ret)
645 return ret;
646
Eric Anholteb014592009-03-10 11:44:52 -0700647 offset = args->offset;
Daniel Vetter8461d222011-12-14 13:57:32 +0100648
Imre Deak67d5a502013-02-18 19:28:02 +0200649 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents,
650 offset >> PAGE_SHIFT) {
Imre Deak2db76d72013-03-26 15:14:18 +0200651 struct page *page = sg_page_iter_page(&sg_iter);
Chris Wilson9da3da62012-06-01 15:20:22 +0100652
653 if (remain <= 0)
654 break;
655
Eric Anholteb014592009-03-10 11:44:52 -0700656 /* Operation in this page
657 *
Eric Anholteb014592009-03-10 11:44:52 -0700658 * shmem_page_offset = offset within page in shmem file
Eric Anholteb014592009-03-10 11:44:52 -0700659 * page_length = bytes to copy for this page
660 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100661 shmem_page_offset = offset_in_page(offset);
Eric Anholteb014592009-03-10 11:44:52 -0700662 page_length = remain;
663 if ((shmem_page_offset + page_length) > PAGE_SIZE)
664 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholteb014592009-03-10 11:44:52 -0700665
Daniel Vetter8461d222011-12-14 13:57:32 +0100666 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
667 (page_to_phys(page) & (1 << 17)) != 0;
668
Daniel Vetterd174bd62012-03-25 19:47:40 +0200669 ret = shmem_pread_fast(page, shmem_page_offset, page_length,
670 user_data, page_do_bit17_swizzling,
671 needs_clflush);
672 if (ret == 0)
673 goto next_page;
Eric Anholteb014592009-03-10 11:44:52 -0700674
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200675 mutex_unlock(&dev->struct_mutex);
676
Jani Nikulad330a952014-01-21 11:24:25 +0200677 if (likely(!i915.prefault_disable) && !prefaulted) {
Daniel Vetterf56f8212012-03-25 19:47:41 +0200678 ret = fault_in_multipages_writeable(user_data, remain);
Daniel Vetter96d79b52012-03-25 19:47:36 +0200679 /* Userspace is tricking us, but we've already clobbered
680 * its pages with the prefault and promised to write the
681 * data up to the first fault. Hence ignore any errors
682 * and just continue. */
683 (void)ret;
684 prefaulted = 1;
685 }
686
Daniel Vetterd174bd62012-03-25 19:47:40 +0200687 ret = shmem_pread_slow(page, shmem_page_offset, page_length,
688 user_data, page_do_bit17_swizzling,
689 needs_clflush);
Eric Anholteb014592009-03-10 11:44:52 -0700690
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200691 mutex_lock(&dev->struct_mutex);
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100692
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100693 if (ret)
Daniel Vetter8461d222011-12-14 13:57:32 +0100694 goto out;
Daniel Vetter8461d222011-12-14 13:57:32 +0100695
Chris Wilson17793c92014-03-07 08:30:36 +0000696next_page:
Eric Anholteb014592009-03-10 11:44:52 -0700697 remain -= page_length;
Daniel Vetter8461d222011-12-14 13:57:32 +0100698 user_data += page_length;
Eric Anholteb014592009-03-10 11:44:52 -0700699 offset += page_length;
700 }
701
Chris Wilson4f27b752010-10-14 15:26:45 +0100702out:
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100703 i915_gem_object_unpin_pages(obj);
704
Eric Anholteb014592009-03-10 11:44:52 -0700705 return ret;
706}
707
Eric Anholt673a3942008-07-30 12:06:12 -0700708/**
709 * Reads data from the object referenced by handle.
710 *
711 * On error, the contents of *data are undefined.
712 */
713int
714i915_gem_pread_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000715 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700716{
717 struct drm_i915_gem_pread *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000718 struct drm_i915_gem_object *obj;
Chris Wilson35b62a82010-09-26 20:23:38 +0100719 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700720
Chris Wilson51311d02010-11-17 09:10:42 +0000721 if (args->size == 0)
722 return 0;
723
724 if (!access_ok(VERIFY_WRITE,
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200725 to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +0000726 args->size))
727 return -EFAULT;
728
Chris Wilson4f27b752010-10-14 15:26:45 +0100729 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100730 if (ret)
Chris Wilson4f27b752010-10-14 15:26:45 +0100731 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700732
Chris Wilson05394f32010-11-08 19:18:58 +0000733 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000734 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100735 ret = -ENOENT;
736 goto unlock;
Chris Wilson4f27b752010-10-14 15:26:45 +0100737 }
Eric Anholt673a3942008-07-30 12:06:12 -0700738
Chris Wilson7dcd2492010-09-26 20:21:44 +0100739 /* Bounds check source. */
Chris Wilson05394f32010-11-08 19:18:58 +0000740 if (args->offset > obj->base.size ||
741 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100742 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100743 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100744 }
745
Daniel Vetter1286ff72012-05-10 15:25:09 +0200746 /* prime objects have no backing filp to GEM pread/pwrite
747 * pages from.
748 */
749 if (!obj->base.filp) {
750 ret = -EINVAL;
751 goto out;
752 }
753
Chris Wilsondb53a302011-02-03 11:57:46 +0000754 trace_i915_gem_object_pread(obj, args->offset, args->size);
755
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200756 ret = i915_gem_shmem_pread(dev, obj, args, file);
Eric Anholt673a3942008-07-30 12:06:12 -0700757
Chris Wilson35b62a82010-09-26 20:23:38 +0100758out:
Chris Wilson05394f32010-11-08 19:18:58 +0000759 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100760unlock:
Chris Wilson4f27b752010-10-14 15:26:45 +0100761 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700762 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700763}
764
Keith Packard0839ccb2008-10-30 19:38:48 -0700765/* This is the fast write path which cannot handle
766 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700767 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700768
Keith Packard0839ccb2008-10-30 19:38:48 -0700769static inline int
770fast_user_write(struct io_mapping *mapping,
771 loff_t page_base, int page_offset,
772 char __user *user_data,
773 int length)
774{
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700775 void __iomem *vaddr_atomic;
776 void *vaddr;
Keith Packard0839ccb2008-10-30 19:38:48 -0700777 unsigned long unwritten;
778
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700779 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base);
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700780 /* We can use the cpu mem copy function because this is X86. */
781 vaddr = (void __force*)vaddr_atomic + page_offset;
782 unwritten = __copy_from_user_inatomic_nocache(vaddr,
Keith Packard0839ccb2008-10-30 19:38:48 -0700783 user_data, length);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700784 io_mapping_unmap_atomic(vaddr_atomic);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100785 return unwritten;
Keith Packard0839ccb2008-10-30 19:38:48 -0700786}
787
Eric Anholt3de09aa2009-03-09 09:42:23 -0700788/**
789 * This is the fast pwrite path, where we copy the data directly from the
790 * user into the GTT, uncached.
791 */
Eric Anholt673a3942008-07-30 12:06:12 -0700792static int
Chris Wilson05394f32010-11-08 19:18:58 +0000793i915_gem_gtt_pwrite_fast(struct drm_device *dev,
794 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -0700795 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000796 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700797{
Jani Nikula3e31c6c2014-03-31 14:27:16 +0300798 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700799 ssize_t remain;
Keith Packard0839ccb2008-10-30 19:38:48 -0700800 loff_t offset, page_base;
Eric Anholt673a3942008-07-30 12:06:12 -0700801 char __user *user_data;
Daniel Vetter935aaa62012-03-25 19:47:35 +0200802 int page_offset, page_length, ret;
803
Daniel Vetter1ec9e262014-02-14 14:01:11 +0100804 ret = i915_gem_obj_ggtt_pin(obj, 0, PIN_MAPPABLE | PIN_NONBLOCK);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200805 if (ret)
806 goto out;
807
808 ret = i915_gem_object_set_to_gtt_domain(obj, true);
809 if (ret)
810 goto out_unpin;
811
812 ret = i915_gem_object_put_fence(obj);
813 if (ret)
814 goto out_unpin;
Eric Anholt673a3942008-07-30 12:06:12 -0700815
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200816 user_data = to_user_ptr(args->data_ptr);
Eric Anholt673a3942008-07-30 12:06:12 -0700817 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700818
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700819 offset = i915_gem_obj_ggtt_offset(obj) + args->offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700820
821 while (remain > 0) {
822 /* Operation in this page
823 *
Keith Packard0839ccb2008-10-30 19:38:48 -0700824 * page_base = page offset within aperture
825 * page_offset = offset within page
826 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -0700827 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100828 page_base = offset & PAGE_MASK;
829 page_offset = offset_in_page(offset);
Keith Packard0839ccb2008-10-30 19:38:48 -0700830 page_length = remain;
831 if ((page_offset + remain) > PAGE_SIZE)
832 page_length = PAGE_SIZE - page_offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700833
Keith Packard0839ccb2008-10-30 19:38:48 -0700834 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -0700835 * source page isn't available. Return the error and we'll
836 * retry in the slow path.
Keith Packard0839ccb2008-10-30 19:38:48 -0700837 */
Ben Widawsky5d4545a2013-01-17 12:45:15 -0800838 if (fast_user_write(dev_priv->gtt.mappable, page_base,
Daniel Vetter935aaa62012-03-25 19:47:35 +0200839 page_offset, user_data, page_length)) {
840 ret = -EFAULT;
841 goto out_unpin;
842 }
Eric Anholt673a3942008-07-30 12:06:12 -0700843
Keith Packard0839ccb2008-10-30 19:38:48 -0700844 remain -= page_length;
845 user_data += page_length;
846 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700847 }
Eric Anholt673a3942008-07-30 12:06:12 -0700848
Daniel Vetter935aaa62012-03-25 19:47:35 +0200849out_unpin:
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800850 i915_gem_object_ggtt_unpin(obj);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200851out:
Eric Anholt3de09aa2009-03-09 09:42:23 -0700852 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700853}
854
Daniel Vetterd174bd62012-03-25 19:47:40 +0200855/* Per-page copy function for the shmem pwrite fastpath.
856 * Flushes invalid cachelines before writing to the target if
857 * needs_clflush_before is set and flushes out any written cachelines after
858 * writing if needs_clflush is set. */
Eric Anholt673a3942008-07-30 12:06:12 -0700859static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200860shmem_pwrite_fast(struct page *page, int shmem_page_offset, int page_length,
861 char __user *user_data,
862 bool page_do_bit17_swizzling,
863 bool needs_clflush_before,
864 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700865{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200866 char *vaddr;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700867 int ret;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700868
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200869 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200870 return -EINVAL;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700871
Daniel Vetterd174bd62012-03-25 19:47:40 +0200872 vaddr = kmap_atomic(page);
873 if (needs_clflush_before)
874 drm_clflush_virt_range(vaddr + shmem_page_offset,
875 page_length);
Chris Wilsonc2831a92014-03-07 08:30:37 +0000876 ret = __copy_from_user_inatomic(vaddr + shmem_page_offset,
877 user_data, page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200878 if (needs_clflush_after)
879 drm_clflush_virt_range(vaddr + shmem_page_offset,
880 page_length);
881 kunmap_atomic(vaddr);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700882
Chris Wilson755d2212012-09-04 21:02:55 +0100883 return ret ? -EFAULT : 0;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700884}
885
Daniel Vetterd174bd62012-03-25 19:47:40 +0200886/* Only difference to the fast-path function is that this can handle bit17
887 * and uses non-atomic copy and kmap functions. */
Eric Anholt3043c602008-10-02 12:24:47 -0700888static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200889shmem_pwrite_slow(struct page *page, int shmem_page_offset, int page_length,
890 char __user *user_data,
891 bool page_do_bit17_swizzling,
892 bool needs_clflush_before,
893 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700894{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200895 char *vaddr;
896 int ret;
Eric Anholt40123c12009-03-09 13:42:30 -0700897
Daniel Vetterd174bd62012-03-25 19:47:40 +0200898 vaddr = kmap(page);
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200899 if (unlikely(needs_clflush_before || page_do_bit17_swizzling))
Daniel Vetter23c18c72012-03-25 19:47:42 +0200900 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
901 page_length,
902 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200903 if (page_do_bit17_swizzling)
904 ret = __copy_from_user_swizzled(vaddr, shmem_page_offset,
Chris Wilsone5281cc2010-10-28 13:45:36 +0100905 user_data,
906 page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200907 else
908 ret = __copy_from_user(vaddr + shmem_page_offset,
909 user_data,
910 page_length);
911 if (needs_clflush_after)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200912 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
913 page_length,
914 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200915 kunmap(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100916
Chris Wilson755d2212012-09-04 21:02:55 +0100917 return ret ? -EFAULT : 0;
Eric Anholt40123c12009-03-09 13:42:30 -0700918}
919
Eric Anholt40123c12009-03-09 13:42:30 -0700920static int
Daniel Vettere244a442012-03-25 19:47:28 +0200921i915_gem_shmem_pwrite(struct drm_device *dev,
922 struct drm_i915_gem_object *obj,
923 struct drm_i915_gem_pwrite *args,
924 struct drm_file *file)
Eric Anholt40123c12009-03-09 13:42:30 -0700925{
Eric Anholt40123c12009-03-09 13:42:30 -0700926 ssize_t remain;
Daniel Vetter8c599672011-12-14 13:57:31 +0100927 loff_t offset;
928 char __user *user_data;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100929 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8c599672011-12-14 13:57:31 +0100930 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vettere244a442012-03-25 19:47:28 +0200931 int hit_slowpath = 0;
Daniel Vetter58642882012-03-25 19:47:37 +0200932 int needs_clflush_after = 0;
933 int needs_clflush_before = 0;
Imre Deak67d5a502013-02-18 19:28:02 +0200934 struct sg_page_iter sg_iter;
Eric Anholt40123c12009-03-09 13:42:30 -0700935
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200936 user_data = to_user_ptr(args->data_ptr);
Eric Anholt40123c12009-03-09 13:42:30 -0700937 remain = args->size;
938
Daniel Vetter8c599672011-12-14 13:57:31 +0100939 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700940
Daniel Vetter58642882012-03-25 19:47:37 +0200941 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
942 /* If we're not in the cpu write domain, set ourself into the gtt
943 * write domain and manually flush cachelines (if required). This
944 * optimizes for the case when the gpu will use the data
945 * right away and we therefore have to clflush anyway. */
Chris Wilson2c225692013-08-09 12:26:45 +0100946 needs_clflush_after = cpu_write_needs_clflush(obj);
Ben Widawsky23f54482013-09-11 14:57:48 -0700947 ret = i915_gem_object_wait_rendering(obj, false);
948 if (ret)
949 return ret;
Chris Wilsonc8725f32014-03-17 12:21:55 +0000950
951 i915_gem_object_retire(obj);
Daniel Vetter58642882012-03-25 19:47:37 +0200952 }
Chris Wilsonc76ce032013-08-08 14:41:03 +0100953 /* Same trick applies to invalidate partially written cachelines read
954 * before writing. */
955 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0)
956 needs_clflush_before =
957 !cpu_cache_is_coherent(dev, obj->cache_level);
Daniel Vetter58642882012-03-25 19:47:37 +0200958
Chris Wilson755d2212012-09-04 21:02:55 +0100959 ret = i915_gem_object_get_pages(obj);
960 if (ret)
961 return ret;
962
963 i915_gem_object_pin_pages(obj);
964
Eric Anholt40123c12009-03-09 13:42:30 -0700965 offset = args->offset;
Chris Wilson05394f32010-11-08 19:18:58 +0000966 obj->dirty = 1;
Eric Anholt40123c12009-03-09 13:42:30 -0700967
Imre Deak67d5a502013-02-18 19:28:02 +0200968 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents,
969 offset >> PAGE_SHIFT) {
Imre Deak2db76d72013-03-26 15:14:18 +0200970 struct page *page = sg_page_iter_page(&sg_iter);
Daniel Vetter58642882012-03-25 19:47:37 +0200971 int partial_cacheline_write;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100972
Chris Wilson9da3da62012-06-01 15:20:22 +0100973 if (remain <= 0)
974 break;
975
Eric Anholt40123c12009-03-09 13:42:30 -0700976 /* Operation in this page
977 *
Eric Anholt40123c12009-03-09 13:42:30 -0700978 * shmem_page_offset = offset within page in shmem file
Eric Anholt40123c12009-03-09 13:42:30 -0700979 * page_length = bytes to copy for this page
980 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100981 shmem_page_offset = offset_in_page(offset);
Eric Anholt40123c12009-03-09 13:42:30 -0700982
983 page_length = remain;
984 if ((shmem_page_offset + page_length) > PAGE_SIZE)
985 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700986
Daniel Vetter58642882012-03-25 19:47:37 +0200987 /* If we don't overwrite a cacheline completely we need to be
988 * careful to have up-to-date data by first clflushing. Don't
989 * overcomplicate things and flush the entire patch. */
990 partial_cacheline_write = needs_clflush_before &&
991 ((shmem_page_offset | page_length)
992 & (boot_cpu_data.x86_clflush_size - 1));
993
Daniel Vetter8c599672011-12-14 13:57:31 +0100994 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
995 (page_to_phys(page) & (1 << 17)) != 0;
996
Daniel Vetterd174bd62012-03-25 19:47:40 +0200997 ret = shmem_pwrite_fast(page, shmem_page_offset, page_length,
998 user_data, page_do_bit17_swizzling,
999 partial_cacheline_write,
1000 needs_clflush_after);
1001 if (ret == 0)
1002 goto next_page;
Eric Anholt40123c12009-03-09 13:42:30 -07001003
Daniel Vettere244a442012-03-25 19:47:28 +02001004 hit_slowpath = 1;
Daniel Vettere244a442012-03-25 19:47:28 +02001005 mutex_unlock(&dev->struct_mutex);
Daniel Vetterd174bd62012-03-25 19:47:40 +02001006 ret = shmem_pwrite_slow(page, shmem_page_offset, page_length,
1007 user_data, page_do_bit17_swizzling,
1008 partial_cacheline_write,
1009 needs_clflush_after);
Eric Anholt40123c12009-03-09 13:42:30 -07001010
Daniel Vettere244a442012-03-25 19:47:28 +02001011 mutex_lock(&dev->struct_mutex);
Chris Wilson755d2212012-09-04 21:02:55 +01001012
Chris Wilson755d2212012-09-04 21:02:55 +01001013 if (ret)
Daniel Vetter8c599672011-12-14 13:57:31 +01001014 goto out;
Daniel Vetter8c599672011-12-14 13:57:31 +01001015
Chris Wilson17793c92014-03-07 08:30:36 +00001016next_page:
Eric Anholt40123c12009-03-09 13:42:30 -07001017 remain -= page_length;
Daniel Vetter8c599672011-12-14 13:57:31 +01001018 user_data += page_length;
Eric Anholt40123c12009-03-09 13:42:30 -07001019 offset += page_length;
1020 }
1021
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001022out:
Chris Wilson755d2212012-09-04 21:02:55 +01001023 i915_gem_object_unpin_pages(obj);
1024
Daniel Vettere244a442012-03-25 19:47:28 +02001025 if (hit_slowpath) {
Daniel Vetter8dcf0152012-11-15 16:53:58 +01001026 /*
1027 * Fixup: Flush cpu caches in case we didn't flush the dirty
1028 * cachelines in-line while writing and the object moved
1029 * out of the cpu write domain while we've dropped the lock.
1030 */
1031 if (!needs_clflush_after &&
1032 obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
Chris Wilson000433b2013-08-08 14:41:09 +01001033 if (i915_gem_clflush_object(obj, obj->pin_display))
1034 i915_gem_chipset_flush(dev);
Daniel Vettere244a442012-03-25 19:47:28 +02001035 }
Daniel Vetter8c599672011-12-14 13:57:31 +01001036 }
Eric Anholt40123c12009-03-09 13:42:30 -07001037
Daniel Vetter58642882012-03-25 19:47:37 +02001038 if (needs_clflush_after)
Ben Widawskye76e9ae2012-11-04 09:21:27 -08001039 i915_gem_chipset_flush(dev);
Daniel Vetter58642882012-03-25 19:47:37 +02001040
Eric Anholt40123c12009-03-09 13:42:30 -07001041 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001042}
1043
1044/**
1045 * Writes data to the object referenced by handle.
1046 *
1047 * On error, the contents of the buffer that were to be modified are undefined.
1048 */
1049int
1050i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001051 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001052{
1053 struct drm_i915_gem_pwrite *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001054 struct drm_i915_gem_object *obj;
Chris Wilson51311d02010-11-17 09:10:42 +00001055 int ret;
1056
1057 if (args->size == 0)
1058 return 0;
1059
1060 if (!access_ok(VERIFY_READ,
Ville Syrjälä2bb46292013-02-22 16:12:51 +02001061 to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +00001062 args->size))
1063 return -EFAULT;
1064
Jani Nikulad330a952014-01-21 11:24:25 +02001065 if (likely(!i915.prefault_disable)) {
Xiong Zhang0b74b502013-07-19 13:51:24 +08001066 ret = fault_in_multipages_readable(to_user_ptr(args->data_ptr),
1067 args->size);
1068 if (ret)
1069 return -EFAULT;
1070 }
Eric Anholt673a3942008-07-30 12:06:12 -07001071
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001072 ret = i915_mutex_lock_interruptible(dev);
1073 if (ret)
1074 return ret;
1075
Chris Wilson05394f32010-11-08 19:18:58 +00001076 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001077 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001078 ret = -ENOENT;
1079 goto unlock;
1080 }
Eric Anholt673a3942008-07-30 12:06:12 -07001081
Chris Wilson7dcd2492010-09-26 20:21:44 +01001082 /* Bounds check destination. */
Chris Wilson05394f32010-11-08 19:18:58 +00001083 if (args->offset > obj->base.size ||
1084 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +01001085 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +01001086 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +01001087 }
1088
Daniel Vetter1286ff72012-05-10 15:25:09 +02001089 /* prime objects have no backing filp to GEM pread/pwrite
1090 * pages from.
1091 */
1092 if (!obj->base.filp) {
1093 ret = -EINVAL;
1094 goto out;
1095 }
1096
Chris Wilsondb53a302011-02-03 11:57:46 +00001097 trace_i915_gem_object_pwrite(obj, args->offset, args->size);
1098
Daniel Vetter935aaa62012-03-25 19:47:35 +02001099 ret = -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -07001100 /* We can only do the GTT pwrite on untiled buffers, as otherwise
1101 * it would end up going through the fenced access, and we'll get
1102 * different detiling behavior between reading and writing.
1103 * pread/pwrite currently are reading and writing from the CPU
1104 * perspective, requiring manual detiling by the client.
1105 */
Chris Wilson2c225692013-08-09 12:26:45 +01001106 if (obj->tiling_mode == I915_TILING_NONE &&
1107 obj->base.write_domain != I915_GEM_DOMAIN_CPU &&
1108 cpu_write_needs_clflush(obj)) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001109 ret = i915_gem_gtt_pwrite_fast(dev, obj, args, file);
Daniel Vetter935aaa62012-03-25 19:47:35 +02001110 /* Note that the gtt paths might fail with non-page-backed user
1111 * pointers (e.g. gtt mappings when moving data between
1112 * textures). Fallback to the shmem path in that case. */
Eric Anholt40123c12009-03-09 13:42:30 -07001113 }
Eric Anholt673a3942008-07-30 12:06:12 -07001114
Chris Wilson6a2c4232014-11-04 04:51:40 -08001115 if (ret == -EFAULT || ret == -ENOSPC) {
1116 if (obj->phys_handle)
1117 ret = i915_gem_phys_pwrite(obj, args, file);
1118 else
1119 ret = i915_gem_shmem_pwrite(dev, obj, args, file);
1120 }
Daniel Vetter5c0480f2011-12-14 13:57:30 +01001121
Chris Wilson35b62a82010-09-26 20:23:38 +01001122out:
Chris Wilson05394f32010-11-08 19:18:58 +00001123 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001124unlock:
Chris Wilsonfbd5a262010-10-14 15:03:58 +01001125 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07001126 return ret;
1127}
1128
Chris Wilsonb3612372012-08-24 09:35:08 +01001129int
Daniel Vetter33196de2012-11-14 17:14:05 +01001130i915_gem_check_wedge(struct i915_gpu_error *error,
Chris Wilsonb3612372012-08-24 09:35:08 +01001131 bool interruptible)
1132{
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001133 if (i915_reset_in_progress(error)) {
Chris Wilsonb3612372012-08-24 09:35:08 +01001134 /* Non-interruptible callers can't handle -EAGAIN, hence return
1135 * -EIO unconditionally for these. */
1136 if (!interruptible)
1137 return -EIO;
1138
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001139 /* Recovery complete, but the reset failed ... */
1140 if (i915_terminally_wedged(error))
Chris Wilsonb3612372012-08-24 09:35:08 +01001141 return -EIO;
1142
McAulay, Alistair6689c162014-08-15 18:51:35 +01001143 /*
1144 * Check if GPU Reset is in progress - we need intel_ring_begin
1145 * to work properly to reinit the hw state while the gpu is
1146 * still marked as reset-in-progress. Handle this with a flag.
1147 */
1148 if (!error->reload_in_reset)
1149 return -EAGAIN;
Chris Wilsonb3612372012-08-24 09:35:08 +01001150 }
1151
1152 return 0;
1153}
1154
1155/*
John Harrisonb6660d52014-11-24 18:49:30 +00001156 * Compare arbitrary request against outstanding lazy request. Emit on match.
Chris Wilsonb3612372012-08-24 09:35:08 +01001157 */
Sourab Gupta84c33a62014-06-02 16:47:17 +05301158int
John Harrisonb6660d52014-11-24 18:49:30 +00001159i915_gem_check_olr(struct drm_i915_gem_request *req)
Chris Wilsonb3612372012-08-24 09:35:08 +01001160{
1161 int ret;
1162
John Harrisonb6660d52014-11-24 18:49:30 +00001163 WARN_ON(!mutex_is_locked(&req->ring->dev->struct_mutex));
Chris Wilsonb3612372012-08-24 09:35:08 +01001164
1165 ret = 0;
John Harrisonb6660d52014-11-24 18:49:30 +00001166 if (req == req->ring->outstanding_lazy_request)
John Harrison9400ae52014-11-24 18:49:36 +00001167 ret = i915_add_request(req->ring);
Chris Wilsonb3612372012-08-24 09:35:08 +01001168
1169 return ret;
1170}
1171
Chris Wilson094f9a52013-09-25 17:34:55 +01001172static void fake_irq(unsigned long data)
1173{
1174 wake_up_process((struct task_struct *)data);
1175}
1176
1177static bool missed_irq(struct drm_i915_private *dev_priv,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001178 struct intel_engine_cs *ring)
Chris Wilson094f9a52013-09-25 17:34:55 +01001179{
1180 return test_bit(ring->id, &dev_priv->gpu_error.missed_irq_rings);
1181}
1182
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001183static bool can_wait_boost(struct drm_i915_file_private *file_priv)
1184{
1185 if (file_priv == NULL)
1186 return true;
1187
1188 return !atomic_xchg(&file_priv->rps_wait_boost, true);
1189}
1190
Chris Wilsonb3612372012-08-24 09:35:08 +01001191/**
John Harrison9c654812014-11-24 18:49:35 +00001192 * __i915_wait_request - wait until execution of request has finished
1193 * @req: duh!
1194 * @reset_counter: reset sequence associated with the given request
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 *
John Harrison9c654812014-11-24 18:49:35 +00001205 * Returns 0 if the request was found within the alloted time. Else returns the
Chris Wilsonb3612372012-08-24 09:35:08 +01001206 * errno with remaining time filled in timeout argument.
1207 */
John Harrison9c654812014-11-24 18:49:35 +00001208int __i915_wait_request(struct drm_i915_gem_request *req,
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{
John Harrison9c654812014-11-24 18:49:35 +00001214 struct intel_engine_cs *ring = i915_gem_request_get_ring(req);
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001215 struct drm_device *dev = ring->dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03001216 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001217 const bool irq_test_in_progress =
1218 ACCESS_ONCE(dev_priv->gpu_error.test_irq_rings) & intel_ring_flag(ring);
Chris Wilson094f9a52013-09-25 17:34:55 +01001219 DEFINE_WAIT(wait);
Mika Kuoppala47e97662013-12-10 17:02:43 +02001220 unsigned long timeout_expire;
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001221 s64 before, now;
Chris Wilsonb3612372012-08-24 09:35:08 +01001222 int ret;
1223
Jesse Barnes9df7575f2014-06-20 09:29:20 -07001224 WARN(!intel_irqs_enabled(dev_priv), "IRQs disabled");
Paulo Zanonic67a4702013-08-19 13:18:09 -03001225
John Harrison9c654812014-11-24 18:49:35 +00001226 if (i915_seqno_passed(ring->get_seqno(ring, true),
1227 i915_gem_request_get_seqno(req)))
Chris Wilsonb3612372012-08-24 09:35:08 +01001228 return 0;
1229
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001230 timeout_expire = timeout ? jiffies + nsecs_to_jiffies((u64)*timeout) : 0;
Chris Wilsonb3612372012-08-24 09:35:08 +01001231
Chris Wilsonec5cc0f2014-06-12 10:28:55 +01001232 if (INTEL_INFO(dev)->gen >= 6 && ring->id == RCS && can_wait_boost(file_priv)) {
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001233 gen6_rps_boost(dev_priv);
1234 if (file_priv)
1235 mod_delayed_work(dev_priv->wq,
1236 &file_priv->mm.idle_work,
1237 msecs_to_jiffies(100));
1238 }
1239
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001240 if (!irq_test_in_progress && WARN_ON(!ring->irq_get(ring)))
Chris Wilsonb3612372012-08-24 09:35:08 +01001241 return -ENODEV;
1242
Chris Wilson094f9a52013-09-25 17:34:55 +01001243 /* Record current time in case interrupted by signal, or wedged */
John Harrison9c654812014-11-24 18:49:35 +00001244 trace_i915_gem_request_wait_begin(i915_gem_request_get_ring(req),
1245 i915_gem_request_get_seqno(req));
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001246 before = ktime_get_raw_ns();
Chris Wilson094f9a52013-09-25 17:34:55 +01001247 for (;;) {
1248 struct timer_list timer;
Chris Wilsonb3612372012-08-24 09:35:08 +01001249
Chris Wilson094f9a52013-09-25 17:34:55 +01001250 prepare_to_wait(&ring->irq_queue, &wait,
1251 interruptible ? TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE);
Chris Wilsonb3612372012-08-24 09:35:08 +01001252
Daniel Vetterf69061b2012-12-06 09:01:42 +01001253 /* We need to check whether any gpu reset happened in between
1254 * the caller grabbing the seqno and now ... */
Chris Wilson094f9a52013-09-25 17:34:55 +01001255 if (reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter)) {
1256 /* ... but upgrade the -EAGAIN to an -EIO if the gpu
1257 * is truely gone. */
1258 ret = i915_gem_check_wedge(&dev_priv->gpu_error, interruptible);
1259 if (ret == 0)
1260 ret = -EAGAIN;
1261 break;
1262 }
Daniel Vetterf69061b2012-12-06 09:01:42 +01001263
John Harrison9c654812014-11-24 18:49:35 +00001264 if (i915_seqno_passed(ring->get_seqno(ring, false),
1265 i915_gem_request_get_seqno(req))) {
Chris Wilson094f9a52013-09-25 17:34:55 +01001266 ret = 0;
1267 break;
1268 }
Chris Wilsonb3612372012-08-24 09:35:08 +01001269
Chris Wilson094f9a52013-09-25 17:34:55 +01001270 if (interruptible && signal_pending(current)) {
1271 ret = -ERESTARTSYS;
1272 break;
1273 }
1274
Mika Kuoppala47e97662013-12-10 17:02:43 +02001275 if (timeout && time_after_eq(jiffies, timeout_expire)) {
Chris Wilson094f9a52013-09-25 17:34:55 +01001276 ret = -ETIME;
1277 break;
1278 }
1279
1280 timer.function = NULL;
1281 if (timeout || missed_irq(dev_priv, ring)) {
Mika Kuoppala47e97662013-12-10 17:02:43 +02001282 unsigned long expire;
1283
Chris Wilson094f9a52013-09-25 17:34:55 +01001284 setup_timer_on_stack(&timer, fake_irq, (unsigned long)current);
Mika Kuoppala47e97662013-12-10 17:02:43 +02001285 expire = missed_irq(dev_priv, ring) ? jiffies + 1 : timeout_expire;
Chris Wilson094f9a52013-09-25 17:34:55 +01001286 mod_timer(&timer, expire);
1287 }
1288
Chris Wilson5035c272013-10-04 09:58:46 +01001289 io_schedule();
Chris Wilson094f9a52013-09-25 17:34:55 +01001290
Chris Wilson094f9a52013-09-25 17:34:55 +01001291 if (timer.function) {
1292 del_singleshot_timer_sync(&timer);
1293 destroy_timer_on_stack(&timer);
1294 }
1295 }
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001296 now = ktime_get_raw_ns();
John Harrison9c654812014-11-24 18:49:35 +00001297 trace_i915_gem_request_wait_end(i915_gem_request_get_ring(req),
1298 i915_gem_request_get_seqno(req));
Chris Wilsonb3612372012-08-24 09:35:08 +01001299
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001300 if (!irq_test_in_progress)
1301 ring->irq_put(ring);
Chris Wilson094f9a52013-09-25 17:34:55 +01001302
1303 finish_wait(&ring->irq_queue, &wait);
Chris Wilsonb3612372012-08-24 09:35:08 +01001304
1305 if (timeout) {
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001306 s64 tres = *timeout - (now - before);
1307
1308 *timeout = tres < 0 ? 0 : tres;
Chris Wilsonb3612372012-08-24 09:35:08 +01001309 }
1310
Chris Wilson094f9a52013-09-25 17:34:55 +01001311 return ret;
Chris Wilsonb3612372012-08-24 09:35:08 +01001312}
1313
1314/**
Daniel Vettera4b3a572014-11-26 14:17:05 +01001315 * Waits for a request to be signaled, and cleans up the
Chris Wilsonb3612372012-08-24 09:35:08 +01001316 * request and object lists appropriately for that event.
1317 */
1318int
Daniel Vettera4b3a572014-11-26 14:17:05 +01001319i915_wait_request(struct drm_i915_gem_request *req)
Chris Wilsonb3612372012-08-24 09:35:08 +01001320{
Daniel Vettera4b3a572014-11-26 14:17:05 +01001321 struct drm_device *dev;
1322 struct drm_i915_private *dev_priv;
1323 bool interruptible;
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001324 unsigned reset_counter;
Chris Wilsonb3612372012-08-24 09:35:08 +01001325 int ret;
1326
Daniel Vettera4b3a572014-11-26 14:17:05 +01001327 BUG_ON(req == NULL);
1328
1329 dev = req->ring->dev;
1330 dev_priv = dev->dev_private;
1331 interruptible = dev_priv->mm.interruptible;
1332
Chris Wilsonb3612372012-08-24 09:35:08 +01001333 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
Chris Wilsonb3612372012-08-24 09:35:08 +01001334
Daniel Vetter33196de2012-11-14 17:14:05 +01001335 ret = i915_gem_check_wedge(&dev_priv->gpu_error, interruptible);
Chris Wilsonb3612372012-08-24 09:35:08 +01001336 if (ret)
1337 return ret;
1338
Daniel Vettera4b3a572014-11-26 14:17:05 +01001339 ret = i915_gem_check_olr(req);
Chris Wilsonb3612372012-08-24 09:35:08 +01001340 if (ret)
1341 return ret;
1342
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001343 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Daniel Vettera4b3a572014-11-26 14:17:05 +01001344 i915_gem_request_reference(req);
John Harrison9c654812014-11-24 18:49:35 +00001345 ret = __i915_wait_request(req, reset_counter,
1346 interruptible, NULL, NULL);
Daniel Vettera4b3a572014-11-26 14:17:05 +01001347 i915_gem_request_unreference(req);
1348 return ret;
Chris Wilsonb3612372012-08-24 09:35:08 +01001349}
1350
Chris Wilsond26e3af2013-06-29 22:05:26 +01001351static int
John Harrison8e6395492014-10-30 18:40:53 +00001352i915_gem_object_wait_rendering__tail(struct drm_i915_gem_object *obj)
Chris Wilsond26e3af2013-06-29 22:05:26 +01001353{
Chris Wilsonc8725f32014-03-17 12:21:55 +00001354 if (!obj->active)
1355 return 0;
Chris Wilsond26e3af2013-06-29 22:05:26 +01001356
1357 /* Manually manage the write flush as we may have not yet
1358 * retired the buffer.
1359 *
John Harrison97b2a6a2014-11-24 18:49:26 +00001360 * Note that the last_write_req is always the earlier of
1361 * the two (read/write) requests, so if we haved successfully waited,
Chris Wilsond26e3af2013-06-29 22:05:26 +01001362 * we know we have passed the last write.
1363 */
John Harrison97b2a6a2014-11-24 18:49:26 +00001364 i915_gem_request_assign(&obj->last_write_req, NULL);
Chris Wilsond26e3af2013-06-29 22:05:26 +01001365
1366 return 0;
1367}
1368
Chris Wilsonb3612372012-08-24 09:35:08 +01001369/**
1370 * Ensures that all rendering to the object has completed and the object is
1371 * safe to unbind from the GTT or access from the CPU.
1372 */
1373static __must_check int
1374i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj,
1375 bool readonly)
1376{
John Harrison97b2a6a2014-11-24 18:49:26 +00001377 struct drm_i915_gem_request *req;
Chris Wilsonb3612372012-08-24 09:35:08 +01001378 int ret;
1379
John Harrison97b2a6a2014-11-24 18:49:26 +00001380 req = readonly ? obj->last_write_req : obj->last_read_req;
1381 if (!req)
Chris Wilsonb3612372012-08-24 09:35:08 +01001382 return 0;
1383
Daniel Vettera4b3a572014-11-26 14:17:05 +01001384 ret = i915_wait_request(req);
Chris Wilsonb3612372012-08-24 09:35:08 +01001385 if (ret)
1386 return ret;
1387
John Harrison8e6395492014-10-30 18:40:53 +00001388 return i915_gem_object_wait_rendering__tail(obj);
Chris Wilsonb3612372012-08-24 09:35:08 +01001389}
1390
Chris Wilson3236f572012-08-24 09:35:09 +01001391/* A nonblocking variant of the above wait. This is a highly dangerous routine
1392 * as the object state may change during this call.
1393 */
1394static __must_check int
1395i915_gem_object_wait_rendering__nonblocking(struct drm_i915_gem_object *obj,
Chris Wilson6e4930f2014-02-07 18:37:06 -02001396 struct drm_i915_file_private *file_priv,
Chris Wilson3236f572012-08-24 09:35:09 +01001397 bool readonly)
1398{
John Harrison97b2a6a2014-11-24 18:49:26 +00001399 struct drm_i915_gem_request *req;
Chris Wilson3236f572012-08-24 09:35:09 +01001400 struct drm_device *dev = obj->base.dev;
1401 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf69061b2012-12-06 09:01:42 +01001402 unsigned reset_counter;
Chris Wilson3236f572012-08-24 09:35:09 +01001403 int ret;
1404
1405 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
1406 BUG_ON(!dev_priv->mm.interruptible);
1407
John Harrison97b2a6a2014-11-24 18:49:26 +00001408 req = readonly ? obj->last_write_req : obj->last_read_req;
1409 if (!req)
Chris Wilson3236f572012-08-24 09:35:09 +01001410 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
John Harrisonb6660d52014-11-24 18:49:30 +00001416 ret = i915_gem_check_olr(req);
Chris Wilson3236f572012-08-24 09:35:09 +01001417 if (ret)
1418 return ret;
1419
Daniel Vetterf69061b2012-12-06 09:01:42 +01001420 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
John Harrisonff865882014-11-24 18:49:28 +00001421 i915_gem_request_reference(req);
Chris Wilson3236f572012-08-24 09:35:09 +01001422 mutex_unlock(&dev->struct_mutex);
John Harrison9c654812014-11-24 18:49:35 +00001423 ret = __i915_wait_request(req, reset_counter, true, NULL, file_priv);
Chris Wilson3236f572012-08-24 09:35:09 +01001424 mutex_lock(&dev->struct_mutex);
John Harrisonff865882014-11-24 18:49:28 +00001425 i915_gem_request_unreference(req);
Chris Wilsond26e3af2013-06-29 22:05:26 +01001426 if (ret)
1427 return ret;
Chris Wilson3236f572012-08-24 09:35:09 +01001428
John Harrison8e6395492014-10-30 18:40:53 +00001429 return i915_gem_object_wait_rendering__tail(obj);
Chris Wilson3236f572012-08-24 09:35:09 +01001430}
1431
Eric Anholt673a3942008-07-30 12:06:12 -07001432/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001433 * Called when user space prepares to use an object with the CPU, either
1434 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -07001435 */
1436int
1437i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001438 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001439{
1440 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001441 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001442 uint32_t read_domains = args->read_domains;
1443 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07001444 int ret;
1445
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001446 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +01001447 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001448 return -EINVAL;
1449
Chris Wilson21d509e2009-06-06 09:46:02 +01001450 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001451 return -EINVAL;
1452
1453 /* Having something in the write domain implies it's in the read
1454 * domain, and only that read domain. Enforce that in the request.
1455 */
1456 if (write_domain != 0 && read_domains != write_domain)
1457 return -EINVAL;
1458
Chris Wilson76c1dec2010-09-25 11:22:51 +01001459 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001460 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001461 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001462
Chris Wilson05394f32010-11-08 19:18:58 +00001463 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001464 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001465 ret = -ENOENT;
1466 goto unlock;
Chris Wilson76c1dec2010-09-25 11:22:51 +01001467 }
Jesse Barnes652c3932009-08-17 13:31:43 -07001468
Chris Wilson3236f572012-08-24 09:35:09 +01001469 /* Try to flush the object off the GPU without holding the lock.
1470 * We will repeat the flush holding the lock in the normal manner
1471 * to catch cases where we are gazumped.
1472 */
Chris Wilson6e4930f2014-02-07 18:37:06 -02001473 ret = i915_gem_object_wait_rendering__nonblocking(obj,
1474 file->driver_priv,
1475 !write_domain);
Chris Wilson3236f572012-08-24 09:35:09 +01001476 if (ret)
1477 goto unref;
1478
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001479 if (read_domains & I915_GEM_DOMAIN_GTT) {
1480 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Eric Anholt02354392008-11-26 13:58:13 -08001481
1482 /* Silently promote "you're not bound, there was nothing to do"
1483 * to success, since the client was just asking us to
1484 * make sure everything was done.
1485 */
1486 if (ret == -EINVAL)
1487 ret = 0;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001488 } else {
Eric Anholte47c68e2008-11-14 13:35:19 -08001489 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001490 }
1491
Chris Wilson3236f572012-08-24 09:35:09 +01001492unref:
Chris Wilson05394f32010-11-08 19:18:58 +00001493 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001494unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001495 mutex_unlock(&dev->struct_mutex);
1496 return ret;
1497}
1498
1499/**
1500 * Called when user space has done writes to this buffer
1501 */
1502int
1503i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001504 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001505{
1506 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001507 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001508 int ret = 0;
1509
Chris Wilson76c1dec2010-09-25 11:22:51 +01001510 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001511 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001512 return ret;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001513
Chris Wilson05394f32010-11-08 19:18:58 +00001514 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001515 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001516 ret = -ENOENT;
1517 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07001518 }
1519
Eric Anholt673a3942008-07-30 12:06:12 -07001520 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilson2c225692013-08-09 12:26:45 +01001521 if (obj->pin_display)
1522 i915_gem_object_flush_cpu_write_domain(obj, true);
Eric Anholte47c68e2008-11-14 13:35:19 -08001523
Chris Wilson05394f32010-11-08 19:18:58 +00001524 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001525unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001526 mutex_unlock(&dev->struct_mutex);
1527 return ret;
1528}
1529
1530/**
1531 * Maps the contents of an object, returning the address it is mapped
1532 * into.
1533 *
1534 * While the mapping holds a reference on the contents of the object, it doesn't
1535 * imply a ref on the object itself.
Daniel Vetter34367382014-10-16 12:28:18 +02001536 *
1537 * IMPORTANT:
1538 *
1539 * DRM driver writers who look a this function as an example for how to do GEM
1540 * mmap support, please don't implement mmap support like here. The modern way
1541 * to implement DRM mmap support is with an mmap offset ioctl (like
1542 * i915_gem_mmap_gtt) and then using the mmap syscall on the DRM fd directly.
1543 * That way debug tooling like valgrind will understand what's going on, hiding
1544 * the mmap call in a driver private ioctl will break that. The i915 driver only
1545 * does cpu mmaps this way because we didn't know better.
Eric Anholt673a3942008-07-30 12:06:12 -07001546 */
1547int
1548i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001549 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001550{
1551 struct drm_i915_gem_mmap *args = data;
1552 struct drm_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001553 unsigned long addr;
1554
Chris Wilson05394f32010-11-08 19:18:58 +00001555 obj = drm_gem_object_lookup(dev, file, args->handle);
Eric Anholt673a3942008-07-30 12:06:12 -07001556 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001557 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001558
Daniel Vetter1286ff72012-05-10 15:25:09 +02001559 /* prime objects have no backing filp to GEM mmap
1560 * pages from.
1561 */
1562 if (!obj->filp) {
1563 drm_gem_object_unreference_unlocked(obj);
1564 return -EINVAL;
1565 }
1566
Linus Torvalds6be5ceb2012-04-20 17:13:58 -07001567 addr = vm_mmap(obj->filp, 0, args->size,
Eric Anholt673a3942008-07-30 12:06:12 -07001568 PROT_READ | PROT_WRITE, MAP_SHARED,
1569 args->offset);
Luca Barbieribc9025b2010-02-09 05:49:12 +00001570 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001571 if (IS_ERR((void *)addr))
1572 return addr;
1573
1574 args->addr_ptr = (uint64_t) addr;
1575
1576 return 0;
1577}
1578
Jesse Barnesde151cf2008-11-12 10:03:55 -08001579/**
1580 * i915_gem_fault - fault a page into the GTT
1581 * vma: VMA in question
1582 * vmf: fault info
1583 *
1584 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1585 * from userspace. The fault handler takes care of binding the object to
1586 * the GTT (if needed), allocating and programming a fence register (again,
1587 * only if needed based on whether the old reg is still valid or the object
1588 * is tiled) and inserting a new PTE into the faulting process.
1589 *
1590 * Note that the faulting process may involve evicting existing objects
1591 * from the GTT and/or fence registers to make room. So performance may
1592 * suffer if the GTT working set is large or there are few fence registers
1593 * left.
1594 */
1595int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1596{
Chris Wilson05394f32010-11-08 19:18:58 +00001597 struct drm_i915_gem_object *obj = to_intel_bo(vma->vm_private_data);
1598 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03001599 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001600 pgoff_t page_offset;
1601 unsigned long pfn;
1602 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001603 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001604
Paulo Zanonif65c9162013-11-27 18:20:34 -02001605 intel_runtime_pm_get(dev_priv);
1606
Jesse Barnesde151cf2008-11-12 10:03:55 -08001607 /* We don't use vmf->pgoff since that has the fake offset */
1608 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1609 PAGE_SHIFT;
1610
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001611 ret = i915_mutex_lock_interruptible(dev);
1612 if (ret)
1613 goto out;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001614
Chris Wilsondb53a302011-02-03 11:57:46 +00001615 trace_i915_gem_object_fault(obj, page_offset, true, write);
1616
Chris Wilson6e4930f2014-02-07 18:37:06 -02001617 /* Try to flush the object off the GPU first without holding the lock.
1618 * Upon reacquiring the lock, we will perform our sanity checks and then
1619 * repeat the flush holding the lock in the normal manner to catch cases
1620 * where we are gazumped.
1621 */
1622 ret = i915_gem_object_wait_rendering__nonblocking(obj, NULL, !write);
1623 if (ret)
1624 goto unlock;
1625
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001626 /* Access to snoopable pages through the GTT is incoherent. */
1627 if (obj->cache_level != I915_CACHE_NONE && !HAS_LLC(dev)) {
Chris Wilsonddeff6e2014-05-28 16:16:41 +01001628 ret = -EFAULT;
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001629 goto unlock;
1630 }
1631
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001632 /* Now bind it into the GTT if needed */
Daniel Vetter1ec9e262014-02-14 14:01:11 +01001633 ret = i915_gem_obj_ggtt_pin(obj, 0, PIN_MAPPABLE);
Chris Wilsond9e86c02010-11-10 16:40:20 +00001634 if (ret)
1635 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001636
Chris Wilsonc9839302012-11-20 10:45:17 +00001637 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1638 if (ret)
1639 goto unpin;
1640
1641 ret = i915_gem_object_get_fence(obj);
1642 if (ret)
1643 goto unpin;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001644
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001645 /* Finally, remap it using the new GTT offset */
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001646 pfn = dev_priv->gtt.mappable_base + i915_gem_obj_ggtt_offset(obj);
1647 pfn >>= PAGE_SHIFT;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001648
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001649 if (!obj->fault_mappable) {
Ville Syrjäläbeff0d02014-06-17 21:03:00 +03001650 unsigned long size = min_t(unsigned long,
1651 vma->vm_end - vma->vm_start,
1652 obj->base.size);
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001653 int i;
1654
Ville Syrjäläbeff0d02014-06-17 21:03:00 +03001655 for (i = 0; i < size >> PAGE_SHIFT; i++) {
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001656 ret = vm_insert_pfn(vma,
1657 (unsigned long)vma->vm_start + i * PAGE_SIZE,
1658 pfn + i);
1659 if (ret)
1660 break;
1661 }
1662
1663 obj->fault_mappable = true;
1664 } else
1665 ret = vm_insert_pfn(vma,
1666 (unsigned long)vmf->virtual_address,
1667 pfn + page_offset);
Chris Wilsonc9839302012-11-20 10:45:17 +00001668unpin:
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08001669 i915_gem_object_ggtt_unpin(obj);
Chris Wilsonc7150892009-09-23 00:43:56 +01001670unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001671 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001672out:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001673 switch (ret) {
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001674 case -EIO:
Daniel Vetter2232f032014-09-04 09:36:18 +02001675 /*
1676 * We eat errors when the gpu is terminally wedged to avoid
1677 * userspace unduly crashing (gl has no provisions for mmaps to
1678 * fail). But any other -EIO isn't ours (e.g. swap in failure)
1679 * and so needs to be reported.
1680 */
1681 if (!i915_terminally_wedged(&dev_priv->gpu_error)) {
Paulo Zanonif65c9162013-11-27 18:20:34 -02001682 ret = VM_FAULT_SIGBUS;
1683 break;
1684 }
Chris Wilson045e7692010-11-07 09:18:22 +00001685 case -EAGAIN:
Daniel Vetter571c6082013-09-12 17:57:28 +02001686 /*
1687 * EAGAIN means the gpu is hung and we'll wait for the error
1688 * handler to reset everything when re-faulting in
1689 * i915_mutex_lock_interruptible.
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001690 */
Chris Wilsonc7150892009-09-23 00:43:56 +01001691 case 0:
1692 case -ERESTARTSYS:
Chris Wilsonbed636a2011-02-11 20:31:19 +00001693 case -EINTR:
Dmitry Rogozhkine79e0fe2012-10-03 17:15:26 +03001694 case -EBUSY:
1695 /*
1696 * EBUSY is ok: this just means that another thread
1697 * already did the job.
1698 */
Paulo Zanonif65c9162013-11-27 18:20:34 -02001699 ret = VM_FAULT_NOPAGE;
1700 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001701 case -ENOMEM:
Paulo Zanonif65c9162013-11-27 18:20:34 -02001702 ret = VM_FAULT_OOM;
1703 break;
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001704 case -ENOSPC:
Chris Wilson45d67812014-01-31 11:34:57 +00001705 case -EFAULT:
Paulo Zanonif65c9162013-11-27 18:20:34 -02001706 ret = VM_FAULT_SIGBUS;
1707 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001708 default:
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001709 WARN_ONCE(ret, "unhandled error in i915_gem_fault: %i\n", ret);
Paulo Zanonif65c9162013-11-27 18:20:34 -02001710 ret = VM_FAULT_SIGBUS;
1711 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001712 }
Paulo Zanonif65c9162013-11-27 18:20:34 -02001713
1714 intel_runtime_pm_put(dev_priv);
1715 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001716}
1717
1718/**
Chris Wilson901782b2009-07-10 08:18:50 +01001719 * i915_gem_release_mmap - remove physical page mappings
1720 * @obj: obj in question
1721 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001722 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001723 * relinquish ownership of the pages back to the system.
1724 *
1725 * It is vital that we remove the page mapping if we have mapped a tiled
1726 * object through the GTT and then lose the fence register due to
1727 * resource pressure. Similarly if the object has been moved out of the
1728 * aperture, than pages mapped into userspace must be revoked. Removing the
1729 * mapping will then trigger a page fault on the next user access, allowing
1730 * fixup by i915_gem_fault().
1731 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001732void
Chris Wilson05394f32010-11-08 19:18:58 +00001733i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01001734{
Chris Wilson6299f992010-11-24 12:23:44 +00001735 if (!obj->fault_mappable)
1736 return;
Chris Wilson901782b2009-07-10 08:18:50 +01001737
David Herrmann6796cb12014-01-03 14:24:19 +01001738 drm_vma_node_unmap(&obj->base.vma_node,
1739 obj->base.dev->anon_inode->i_mapping);
Chris Wilson6299f992010-11-24 12:23:44 +00001740 obj->fault_mappable = false;
Chris Wilson901782b2009-07-10 08:18:50 +01001741}
1742
Chris Wilsoneedd10f2014-06-16 08:57:44 +01001743void
1744i915_gem_release_all_mmaps(struct drm_i915_private *dev_priv)
1745{
1746 struct drm_i915_gem_object *obj;
1747
1748 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list)
1749 i915_gem_release_mmap(obj);
1750}
1751
Imre Deak0fa87792013-01-07 21:47:35 +02001752uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001753i915_gem_get_gtt_size(struct drm_device *dev, uint32_t size, int tiling_mode)
Chris Wilson92b88ae2010-11-09 11:47:32 +00001754{
Chris Wilsone28f8712011-07-18 13:11:49 -07001755 uint32_t gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001756
1757 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001758 tiling_mode == I915_TILING_NONE)
1759 return size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001760
1761 /* Previous chips need a power-of-two fence region when tiling */
1762 if (INTEL_INFO(dev)->gen == 3)
Chris Wilsone28f8712011-07-18 13:11:49 -07001763 gtt_size = 1024*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001764 else
Chris Wilsone28f8712011-07-18 13:11:49 -07001765 gtt_size = 512*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001766
Chris Wilsone28f8712011-07-18 13:11:49 -07001767 while (gtt_size < size)
1768 gtt_size <<= 1;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001769
Chris Wilsone28f8712011-07-18 13:11:49 -07001770 return gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001771}
1772
Jesse Barnesde151cf2008-11-12 10:03:55 -08001773/**
1774 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1775 * @obj: object to check
1776 *
1777 * Return the required GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01001778 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08001779 */
Imre Deakd865110c2013-01-07 21:47:33 +02001780uint32_t
1781i915_gem_get_gtt_alignment(struct drm_device *dev, uint32_t size,
1782 int tiling_mode, bool fenced)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001783{
Jesse Barnesde151cf2008-11-12 10:03:55 -08001784 /*
1785 * Minimum alignment is 4k (GTT page size), but might be greater
1786 * if a fence register is needed for the object.
1787 */
Imre Deakd865110c2013-01-07 21:47:33 +02001788 if (INTEL_INFO(dev)->gen >= 4 || (!fenced && IS_G33(dev)) ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001789 tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001790 return 4096;
1791
1792 /*
1793 * Previous chips need to be aligned to the size of the smallest
1794 * fence register that can contain the object.
1795 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001796 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01001797}
1798
Chris Wilsond8cb5082012-08-11 15:41:03 +01001799static int i915_gem_object_create_mmap_offset(struct drm_i915_gem_object *obj)
1800{
1801 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
1802 int ret;
1803
David Herrmann0de23972013-07-24 21:07:52 +02001804 if (drm_vma_node_has_offset(&obj->base.vma_node))
Chris Wilsond8cb5082012-08-11 15:41:03 +01001805 return 0;
1806
Daniel Vetterda494d72012-12-20 15:11:16 +01001807 dev_priv->mm.shrinker_no_lock_stealing = true;
1808
Chris Wilsond8cb5082012-08-11 15:41:03 +01001809 ret = drm_gem_create_mmap_offset(&obj->base);
1810 if (ret != -ENOSPC)
Daniel Vetterda494d72012-12-20 15:11:16 +01001811 goto out;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001812
1813 /* Badly fragmented mmap space? The only way we can recover
1814 * space is by destroying unwanted objects. We can't randomly release
1815 * mmap_offsets as userspace expects them to be persistent for the
1816 * lifetime of the objects. The closest we can is to release the
1817 * offsets on purgeable objects by truncating it and marking it purged,
1818 * which prevents userspace from ever using that object again.
1819 */
Chris Wilson21ab4e72014-09-09 11:16:08 +01001820 i915_gem_shrink(dev_priv,
1821 obj->base.size >> PAGE_SHIFT,
1822 I915_SHRINK_BOUND |
1823 I915_SHRINK_UNBOUND |
1824 I915_SHRINK_PURGEABLE);
Chris Wilsond8cb5082012-08-11 15:41:03 +01001825 ret = drm_gem_create_mmap_offset(&obj->base);
1826 if (ret != -ENOSPC)
Daniel Vetterda494d72012-12-20 15:11:16 +01001827 goto out;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001828
1829 i915_gem_shrink_all(dev_priv);
Daniel Vetterda494d72012-12-20 15:11:16 +01001830 ret = drm_gem_create_mmap_offset(&obj->base);
1831out:
1832 dev_priv->mm.shrinker_no_lock_stealing = false;
1833
1834 return ret;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001835}
1836
1837static void i915_gem_object_free_mmap_offset(struct drm_i915_gem_object *obj)
1838{
Chris Wilsond8cb5082012-08-11 15:41:03 +01001839 drm_gem_free_mmap_offset(&obj->base);
1840}
1841
Thomas Hellstrom355a7012014-11-20 09:56:25 +01001842static int
Dave Airlieff72145b2011-02-07 12:16:14 +10001843i915_gem_mmap_gtt(struct drm_file *file,
1844 struct drm_device *dev,
Thomas Hellstrom355a7012014-11-20 09:56:25 +01001845 uint32_t handle, bool dumb,
Dave Airlieff72145b2011-02-07 12:16:14 +10001846 uint64_t *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001847{
Chris Wilsonda761a62010-10-27 17:37:08 +01001848 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001849 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001850 int ret;
1851
Chris Wilson76c1dec2010-09-25 11:22:51 +01001852 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001853 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001854 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001855
Dave Airlieff72145b2011-02-07 12:16:14 +10001856 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001857 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001858 ret = -ENOENT;
1859 goto unlock;
1860 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001861
Thomas Hellstrom355a7012014-11-20 09:56:25 +01001862 /*
1863 * We don't allow dumb mmaps on objects created using another
1864 * interface.
1865 */
1866 WARN_ONCE(dumb && !(obj->base.dumb || obj->base.import_attach),
1867 "Illegal dumb map of accelerated buffer.\n");
1868
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001869 if (obj->base.size > dev_priv->gtt.mappable_end) {
Chris Wilsonda761a62010-10-27 17:37:08 +01001870 ret = -E2BIG;
Eric Anholtff56b0b2011-10-31 23:16:21 -07001871 goto out;
Chris Wilsonda761a62010-10-27 17:37:08 +01001872 }
1873
Chris Wilson05394f32010-11-08 19:18:58 +00001874 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00001875 DRM_DEBUG("Attempting to mmap a purgeable buffer\n");
Chris Wilson8c99e572014-01-31 11:34:58 +00001876 ret = -EFAULT;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001877 goto out;
Chris Wilsonab182822009-09-22 18:46:17 +01001878 }
1879
Chris Wilsond8cb5082012-08-11 15:41:03 +01001880 ret = i915_gem_object_create_mmap_offset(obj);
1881 if (ret)
1882 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001883
David Herrmann0de23972013-07-24 21:07:52 +02001884 *offset = drm_vma_node_offset_addr(&obj->base.vma_node);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001885
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001886out:
Chris Wilson05394f32010-11-08 19:18:58 +00001887 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001888unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001889 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001890 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001891}
1892
Thomas Hellstrom355a7012014-11-20 09:56:25 +01001893int
1894i915_gem_dumb_map_offset(struct drm_file *file,
1895 struct drm_device *dev,
1896 uint32_t handle,
1897 uint64_t *offset)
1898{
1899 return i915_gem_mmap_gtt(file, dev, handle, true, offset);
1900}
1901
Dave Airlieff72145b2011-02-07 12:16:14 +10001902/**
1903 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1904 * @dev: DRM device
1905 * @data: GTT mapping ioctl data
1906 * @file: GEM object info
1907 *
1908 * Simply returns the fake offset to userspace so it can mmap it.
1909 * The mmap call will end up in drm_gem_mmap(), which will set things
1910 * up so we can get faults in the handler above.
1911 *
1912 * The fault handler will take care of binding the object into the GTT
1913 * (since it may have been evicted to make room for something), allocating
1914 * a fence register, and mapping the appropriate aperture address into
1915 * userspace.
1916 */
1917int
1918i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
1919 struct drm_file *file)
1920{
1921 struct drm_i915_gem_mmap_gtt *args = data;
1922
Thomas Hellstrom355a7012014-11-20 09:56:25 +01001923 return i915_gem_mmap_gtt(file, dev, args->handle, false, &args->offset);
Dave Airlieff72145b2011-02-07 12:16:14 +10001924}
1925
Chris Wilson55372522014-03-25 13:23:06 +00001926static inline int
1927i915_gem_object_is_purgeable(struct drm_i915_gem_object *obj)
1928{
1929 return obj->madv == I915_MADV_DONTNEED;
1930}
1931
Daniel Vetter225067e2012-08-20 10:23:20 +02001932/* Immediately discard the backing storage */
1933static void
1934i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001935{
Chris Wilson4d6294bf2012-08-11 15:41:05 +01001936 i915_gem_object_free_mmap_offset(obj);
Daniel Vetter1286ff72012-05-10 15:25:09 +02001937
Chris Wilson4d6294bf2012-08-11 15:41:05 +01001938 if (obj->base.filp == NULL)
1939 return;
1940
Daniel Vetter225067e2012-08-20 10:23:20 +02001941 /* Our goal here is to return as much of the memory as
1942 * is possible back to the system as we are called from OOM.
1943 * To do this we must instruct the shmfs to drop all of its
1944 * backing pages, *now*.
Chris Wilsone5281cc2010-10-28 13:45:36 +01001945 */
Chris Wilson55372522014-03-25 13:23:06 +00001946 shmem_truncate_range(file_inode(obj->base.filp), 0, (loff_t)-1);
Daniel Vetter225067e2012-08-20 10:23:20 +02001947 obj->madv = __I915_MADV_PURGED;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001948}
Chris Wilsone5281cc2010-10-28 13:45:36 +01001949
Chris Wilson55372522014-03-25 13:23:06 +00001950/* Try to discard unwanted pages */
1951static void
1952i915_gem_object_invalidate(struct drm_i915_gem_object *obj)
Daniel Vetter225067e2012-08-20 10:23:20 +02001953{
Chris Wilson55372522014-03-25 13:23:06 +00001954 struct address_space *mapping;
1955
1956 switch (obj->madv) {
1957 case I915_MADV_DONTNEED:
1958 i915_gem_object_truncate(obj);
1959 case __I915_MADV_PURGED:
1960 return;
1961 }
1962
1963 if (obj->base.filp == NULL)
1964 return;
1965
1966 mapping = file_inode(obj->base.filp)->i_mapping,
1967 invalidate_mapping_pages(mapping, 0, (loff_t)-1);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001968}
1969
Chris Wilson5cdf5882010-09-27 15:51:07 +01001970static void
Chris Wilson05394f32010-11-08 19:18:58 +00001971i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001972{
Imre Deak90797e62013-02-18 19:28:03 +02001973 struct sg_page_iter sg_iter;
1974 int ret;
Daniel Vetter1286ff72012-05-10 15:25:09 +02001975
Chris Wilson05394f32010-11-08 19:18:58 +00001976 BUG_ON(obj->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07001977
Chris Wilson6c085a72012-08-20 11:40:46 +02001978 ret = i915_gem_object_set_to_cpu_domain(obj, true);
1979 if (ret) {
1980 /* In the event of a disaster, abandon all caches and
1981 * hope for the best.
1982 */
1983 WARN_ON(ret != -EIO);
Chris Wilson2c225692013-08-09 12:26:45 +01001984 i915_gem_clflush_object(obj, true);
Chris Wilson6c085a72012-08-20 11:40:46 +02001985 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
1986 }
1987
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001988 if (i915_gem_object_needs_bit17_swizzle(obj))
Eric Anholt280b7132009-03-12 16:56:27 -07001989 i915_gem_object_save_bit_17_swizzle(obj);
1990
Chris Wilson05394f32010-11-08 19:18:58 +00001991 if (obj->madv == I915_MADV_DONTNEED)
1992 obj->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01001993
Imre Deak90797e62013-02-18 19:28:03 +02001994 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents, 0) {
Imre Deak2db76d72013-03-26 15:14:18 +02001995 struct page *page = sg_page_iter_page(&sg_iter);
Chris Wilson9da3da62012-06-01 15:20:22 +01001996
Chris Wilson05394f32010-11-08 19:18:58 +00001997 if (obj->dirty)
Chris Wilson9da3da62012-06-01 15:20:22 +01001998 set_page_dirty(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001999
Chris Wilson05394f32010-11-08 19:18:58 +00002000 if (obj->madv == I915_MADV_WILLNEED)
Chris Wilson9da3da62012-06-01 15:20:22 +01002001 mark_page_accessed(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01002002
Chris Wilson9da3da62012-06-01 15:20:22 +01002003 page_cache_release(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01002004 }
Chris Wilson05394f32010-11-08 19:18:58 +00002005 obj->dirty = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002006
Chris Wilson9da3da62012-06-01 15:20:22 +01002007 sg_free_table(obj->pages);
2008 kfree(obj->pages);
Chris Wilson37e680a2012-06-07 15:38:42 +01002009}
2010
Chris Wilsondd624af2013-01-15 12:39:35 +00002011int
Chris Wilson37e680a2012-06-07 15:38:42 +01002012i915_gem_object_put_pages(struct drm_i915_gem_object *obj)
2013{
2014 const struct drm_i915_gem_object_ops *ops = obj->ops;
2015
Chris Wilson2f745ad2012-09-04 21:02:58 +01002016 if (obj->pages == NULL)
Chris Wilson37e680a2012-06-07 15:38:42 +01002017 return 0;
2018
Chris Wilsona5570172012-09-04 21:02:54 +01002019 if (obj->pages_pin_count)
2020 return -EBUSY;
2021
Ben Widawsky98438772013-07-31 17:00:12 -07002022 BUG_ON(i915_gem_obj_bound_any(obj));
Ben Widawsky3e123022013-07-31 17:00:04 -07002023
Chris Wilsona2165e32012-12-03 11:49:00 +00002024 /* ->put_pages might need to allocate memory for the bit17 swizzle
2025 * array, hence protect them from being reaped by removing them from gtt
2026 * lists early. */
Ben Widawsky35c20a62013-05-31 11:28:48 -07002027 list_del(&obj->global_list);
Chris Wilsona2165e32012-12-03 11:49:00 +00002028
Chris Wilson37e680a2012-06-07 15:38:42 +01002029 ops->put_pages(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002030 obj->pages = NULL;
Chris Wilson6c085a72012-08-20 11:40:46 +02002031
Chris Wilson55372522014-03-25 13:23:06 +00002032 i915_gem_object_invalidate(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02002033
2034 return 0;
2035}
2036
Chris Wilson21ab4e72014-09-09 11:16:08 +01002037unsigned long
2038i915_gem_shrink(struct drm_i915_private *dev_priv,
2039 long target, unsigned flags)
Chris Wilson6c085a72012-08-20 11:40:46 +02002040{
Chris Wilson60a53722014-10-03 10:29:51 +01002041 const struct {
2042 struct list_head *list;
2043 unsigned int bit;
2044 } phases[] = {
2045 { &dev_priv->mm.unbound_list, I915_SHRINK_UNBOUND },
2046 { &dev_priv->mm.bound_list, I915_SHRINK_BOUND },
2047 { NULL, 0 },
2048 }, *phase;
Chris Wilsond9973b42013-10-04 10:33:00 +01002049 unsigned long count = 0;
Chris Wilson6c085a72012-08-20 11:40:46 +02002050
Chris Wilson57094f82013-09-04 10:45:50 +01002051 /*
Chris Wilsonc8725f32014-03-17 12:21:55 +00002052 * As we may completely rewrite the (un)bound list whilst unbinding
Chris Wilson57094f82013-09-04 10:45:50 +01002053 * (due to retiring requests) we have to strictly process only
2054 * one element of the list at the time, and recheck the list
2055 * on every iteration.
Chris Wilsonc8725f32014-03-17 12:21:55 +00002056 *
2057 * In particular, we must hold a reference whilst removing the
2058 * object as we may end up waiting for and/or retiring the objects.
2059 * This might release the final reference (held by the active list)
2060 * and result in the object being freed from under us. This is
2061 * similar to the precautions the eviction code must take whilst
2062 * removing objects.
2063 *
2064 * Also note that although these lists do not hold a reference to
2065 * the object we can safely grab one here: The final object
2066 * unreferencing and the bound_list are both protected by the
2067 * dev->struct_mutex and so we won't ever be able to observe an
2068 * object on the bound_list with a reference count equals 0.
Chris Wilson57094f82013-09-04 10:45:50 +01002069 */
Chris Wilson60a53722014-10-03 10:29:51 +01002070 for (phase = phases; phase->list; phase++) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002071 struct list_head still_in_list;
Chris Wilsonc8725f32014-03-17 12:21:55 +00002072
Chris Wilson60a53722014-10-03 10:29:51 +01002073 if ((flags & phase->bit) == 0)
2074 continue;
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07002075
Chris Wilson21ab4e72014-09-09 11:16:08 +01002076 INIT_LIST_HEAD(&still_in_list);
Chris Wilson60a53722014-10-03 10:29:51 +01002077 while (count < target && !list_empty(phase->list)) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002078 struct drm_i915_gem_object *obj;
2079 struct i915_vma *vma, *v;
Chris Wilson57094f82013-09-04 10:45:50 +01002080
Chris Wilson60a53722014-10-03 10:29:51 +01002081 obj = list_first_entry(phase->list,
Chris Wilson21ab4e72014-09-09 11:16:08 +01002082 typeof(*obj), global_list);
2083 list_move_tail(&obj->global_list, &still_in_list);
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07002084
Chris Wilson60a53722014-10-03 10:29:51 +01002085 if (flags & I915_SHRINK_PURGEABLE &&
2086 !i915_gem_object_is_purgeable(obj))
Chris Wilson21ab4e72014-09-09 11:16:08 +01002087 continue;
Chris Wilson57094f82013-09-04 10:45:50 +01002088
Chris Wilson21ab4e72014-09-09 11:16:08 +01002089 drm_gem_object_reference(&obj->base);
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07002090
Chris Wilson60a53722014-10-03 10:29:51 +01002091 /* For the unbound phase, this should be a no-op! */
2092 list_for_each_entry_safe(vma, v,
2093 &obj->vma_list, vma_link)
Chris Wilson21ab4e72014-09-09 11:16:08 +01002094 if (i915_vma_unbind(vma))
2095 break;
Chris Wilson57094f82013-09-04 10:45:50 +01002096
Chris Wilson21ab4e72014-09-09 11:16:08 +01002097 if (i915_gem_object_put_pages(obj) == 0)
2098 count += obj->base.size >> PAGE_SHIFT;
2099
2100 drm_gem_object_unreference(&obj->base);
2101 }
Chris Wilson60a53722014-10-03 10:29:51 +01002102 list_splice(&still_in_list, phase->list);
Chris Wilson6c085a72012-08-20 11:40:46 +02002103 }
2104
2105 return count;
2106}
2107
Chris Wilsond9973b42013-10-04 10:33:00 +01002108static unsigned long
Chris Wilson6c085a72012-08-20 11:40:46 +02002109i915_gem_shrink_all(struct drm_i915_private *dev_priv)
2110{
Chris Wilson6c085a72012-08-20 11:40:46 +02002111 i915_gem_evict_everything(dev_priv->dev);
Chris Wilson21ab4e72014-09-09 11:16:08 +01002112 return i915_gem_shrink(dev_priv, LONG_MAX,
2113 I915_SHRINK_BOUND | I915_SHRINK_UNBOUND);
Daniel Vetter225067e2012-08-20 10:23:20 +02002114}
2115
Chris Wilson37e680a2012-06-07 15:38:42 +01002116static int
Chris Wilson6c085a72012-08-20 11:40:46 +02002117i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002118{
Chris Wilson6c085a72012-08-20 11:40:46 +02002119 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002120 int page_count, i;
2121 struct address_space *mapping;
Chris Wilson9da3da62012-06-01 15:20:22 +01002122 struct sg_table *st;
2123 struct scatterlist *sg;
Imre Deak90797e62013-02-18 19:28:03 +02002124 struct sg_page_iter sg_iter;
Eric Anholt673a3942008-07-30 12:06:12 -07002125 struct page *page;
Imre Deak90797e62013-02-18 19:28:03 +02002126 unsigned long last_pfn = 0; /* suppress gcc warning */
Chris Wilson6c085a72012-08-20 11:40:46 +02002127 gfp_t gfp;
Eric Anholt673a3942008-07-30 12:06:12 -07002128
Chris Wilson6c085a72012-08-20 11:40:46 +02002129 /* Assert that the object is not currently in any GPU domain. As it
2130 * wasn't in the GTT, there shouldn't be any way it could have been in
2131 * a GPU cache
2132 */
2133 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
2134 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
2135
Chris Wilson9da3da62012-06-01 15:20:22 +01002136 st = kmalloc(sizeof(*st), GFP_KERNEL);
2137 if (st == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002138 return -ENOMEM;
2139
Chris Wilson9da3da62012-06-01 15:20:22 +01002140 page_count = obj->base.size / PAGE_SIZE;
2141 if (sg_alloc_table(st, page_count, GFP_KERNEL)) {
Chris Wilson9da3da62012-06-01 15:20:22 +01002142 kfree(st);
2143 return -ENOMEM;
2144 }
2145
2146 /* Get the list of pages out of our struct file. They'll be pinned
2147 * at this point until we release them.
2148 *
2149 * Fail silently without starting the shrinker
2150 */
Al Viro496ad9a2013-01-23 17:07:38 -05002151 mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilson6c085a72012-08-20 11:40:46 +02002152 gfp = mapping_gfp_mask(mapping);
Linus Torvaldscaf49192012-12-10 10:51:16 -08002153 gfp |= __GFP_NORETRY | __GFP_NOWARN | __GFP_NO_KSWAPD;
Chris Wilson6c085a72012-08-20 11:40:46 +02002154 gfp &= ~(__GFP_IO | __GFP_WAIT);
Imre Deak90797e62013-02-18 19:28:03 +02002155 sg = st->sgl;
2156 st->nents = 0;
2157 for (i = 0; i < page_count; i++) {
Chris Wilson6c085a72012-08-20 11:40:46 +02002158 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
2159 if (IS_ERR(page)) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002160 i915_gem_shrink(dev_priv,
2161 page_count,
2162 I915_SHRINK_BOUND |
2163 I915_SHRINK_UNBOUND |
2164 I915_SHRINK_PURGEABLE);
Chris Wilson6c085a72012-08-20 11:40:46 +02002165 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
2166 }
2167 if (IS_ERR(page)) {
2168 /* We've tried hard to allocate the memory by reaping
2169 * our own buffer, now let the real VM do its job and
2170 * go down in flames if truly OOM.
2171 */
Chris Wilson6c085a72012-08-20 11:40:46 +02002172 i915_gem_shrink_all(dev_priv);
David Herrmannf461d1be22014-05-25 14:34:10 +02002173 page = shmem_read_mapping_page(mapping, i);
Chris Wilson6c085a72012-08-20 11:40:46 +02002174 if (IS_ERR(page))
2175 goto err_pages;
Chris Wilson6c085a72012-08-20 11:40:46 +02002176 }
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04002177#ifdef CONFIG_SWIOTLB
2178 if (swiotlb_nr_tbl()) {
2179 st->nents++;
2180 sg_set_page(sg, page, PAGE_SIZE, 0);
2181 sg = sg_next(sg);
2182 continue;
2183 }
2184#endif
Imre Deak90797e62013-02-18 19:28:03 +02002185 if (!i || page_to_pfn(page) != last_pfn + 1) {
2186 if (i)
2187 sg = sg_next(sg);
2188 st->nents++;
2189 sg_set_page(sg, page, PAGE_SIZE, 0);
2190 } else {
2191 sg->length += PAGE_SIZE;
2192 }
2193 last_pfn = page_to_pfn(page);
Daniel Vetter3bbbe702013-10-07 17:15:45 -03002194
2195 /* Check that the i965g/gm workaround works. */
2196 WARN_ON((gfp & __GFP_DMA32) && (last_pfn >= 0x00100000UL));
Eric Anholt673a3942008-07-30 12:06:12 -07002197 }
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04002198#ifdef CONFIG_SWIOTLB
2199 if (!swiotlb_nr_tbl())
2200#endif
2201 sg_mark_end(sg);
Chris Wilson74ce6b62012-10-19 15:51:06 +01002202 obj->pages = st;
2203
Eric Anholt673a3942008-07-30 12:06:12 -07002204 if (i915_gem_object_needs_bit17_swizzle(obj))
2205 i915_gem_object_do_bit_17_swizzle(obj);
2206
Daniel Vetter656bfa32014-11-20 09:26:30 +01002207 if (obj->tiling_mode != I915_TILING_NONE &&
2208 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES)
2209 i915_gem_object_pin_pages(obj);
2210
Eric Anholt673a3942008-07-30 12:06:12 -07002211 return 0;
2212
2213err_pages:
Imre Deak90797e62013-02-18 19:28:03 +02002214 sg_mark_end(sg);
2215 for_each_sg_page(st->sgl, &sg_iter, st->nents, 0)
Imre Deak2db76d72013-03-26 15:14:18 +02002216 page_cache_release(sg_page_iter_page(&sg_iter));
Chris Wilson9da3da62012-06-01 15:20:22 +01002217 sg_free_table(st);
2218 kfree(st);
Chris Wilson0820baf2014-03-25 13:23:03 +00002219
2220 /* shmemfs first checks if there is enough memory to allocate the page
2221 * and reports ENOSPC should there be insufficient, along with the usual
2222 * ENOMEM for a genuine allocation failure.
2223 *
2224 * We use ENOSPC in our driver to mean that we have run out of aperture
2225 * space and so want to translate the error from shmemfs back to our
2226 * usual understanding of ENOMEM.
2227 */
2228 if (PTR_ERR(page) == -ENOSPC)
2229 return -ENOMEM;
2230 else
2231 return PTR_ERR(page);
Eric Anholt673a3942008-07-30 12:06:12 -07002232}
2233
Chris Wilson37e680a2012-06-07 15:38:42 +01002234/* Ensure that the associated pages are gathered from the backing storage
2235 * and pinned into our object. i915_gem_object_get_pages() may be called
2236 * multiple times before they are released by a single call to
2237 * i915_gem_object_put_pages() - once the pages are no longer referenced
2238 * either as a result of memory pressure (reaping pages under the shrinker)
2239 * or as the object is itself released.
2240 */
2241int
2242i915_gem_object_get_pages(struct drm_i915_gem_object *obj)
2243{
2244 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2245 const struct drm_i915_gem_object_ops *ops = obj->ops;
2246 int ret;
2247
Chris Wilson2f745ad2012-09-04 21:02:58 +01002248 if (obj->pages)
Chris Wilson37e680a2012-06-07 15:38:42 +01002249 return 0;
2250
Chris Wilson43e28f02013-01-08 10:53:09 +00002251 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00002252 DRM_DEBUG("Attempting to obtain a purgeable object\n");
Chris Wilson8c99e572014-01-31 11:34:58 +00002253 return -EFAULT;
Chris Wilson43e28f02013-01-08 10:53:09 +00002254 }
2255
Chris Wilsona5570172012-09-04 21:02:54 +01002256 BUG_ON(obj->pages_pin_count);
2257
Chris Wilson37e680a2012-06-07 15:38:42 +01002258 ret = ops->get_pages(obj);
2259 if (ret)
2260 return ret;
2261
Ben Widawsky35c20a62013-05-31 11:28:48 -07002262 list_add_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Chris Wilson37e680a2012-06-07 15:38:42 +01002263 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002264}
2265
Ben Widawskye2d05a82013-09-24 09:57:58 -07002266static void
Chris Wilson05394f32010-11-08 19:18:58 +00002267i915_gem_object_move_to_active(struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002268 struct intel_engine_cs *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07002269{
John Harrison97b2a6a2014-11-24 18:49:26 +00002270 struct drm_i915_gem_request *req = intel_ring_get_request(ring);
Daniel Vetter617dbe22010-02-11 22:16:02 +01002271
Zou Nan hai852835f2010-05-21 09:08:56 +08002272 BUG_ON(ring == NULL);
John Harrison97b2a6a2014-11-24 18:49:26 +00002273 if (obj->ring != ring && obj->last_write_req) {
2274 /* Keep the request relative to the current ring */
2275 i915_gem_request_assign(&obj->last_write_req, req);
Chris Wilson02978ff2013-07-09 09:22:39 +01002276 }
Chris Wilson05394f32010-11-08 19:18:58 +00002277 obj->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07002278
2279 /* Add a reference if we're newly entering the active list. */
Chris Wilson05394f32010-11-08 19:18:58 +00002280 if (!obj->active) {
2281 drm_gem_object_reference(&obj->base);
2282 obj->active = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07002283 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01002284
Chris Wilson05394f32010-11-08 19:18:58 +00002285 list_move_tail(&obj->ring_list, &ring->active_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002286
John Harrison97b2a6a2014-11-24 18:49:26 +00002287 i915_gem_request_assign(&obj->last_read_req, req);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002288}
2289
Ben Widawskye2d05a82013-09-24 09:57:58 -07002290void i915_vma_move_to_active(struct i915_vma *vma,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002291 struct intel_engine_cs *ring)
Ben Widawskye2d05a82013-09-24 09:57:58 -07002292{
2293 list_move_tail(&vma->mm_list, &vma->vm->active_list);
2294 return i915_gem_object_move_to_active(vma->obj, ring);
2295}
2296
Chris Wilsoncaea7472010-11-12 13:53:37 +00002297static void
Chris Wilsoncaea7472010-11-12 13:53:37 +00002298i915_gem_object_move_to_inactive(struct drm_i915_gem_object *obj)
2299{
Ben Widawskyca191b12013-07-31 17:00:14 -07002300 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Ben Widawskyfeb822c2013-12-06 14:10:51 -08002301 struct i915_address_space *vm;
2302 struct i915_vma *vma;
Chris Wilsoncaea7472010-11-12 13:53:37 +00002303
Chris Wilson65ce3022012-07-20 12:41:02 +01002304 BUG_ON(obj->base.write_domain & ~I915_GEM_GPU_DOMAINS);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002305 BUG_ON(!obj->active);
Chris Wilson65ce3022012-07-20 12:41:02 +01002306
Ben Widawskyfeb822c2013-12-06 14:10:51 -08002307 list_for_each_entry(vm, &dev_priv->vm_list, global_link) {
2308 vma = i915_gem_obj_to_vma(obj, vm);
2309 if (vma && !list_empty(&vma->mm_list))
2310 list_move_tail(&vma->mm_list, &vm->inactive_list);
2311 }
Chris Wilsoncaea7472010-11-12 13:53:37 +00002312
Daniel Vetterf99d7062014-06-19 16:01:59 +02002313 intel_fb_obj_flush(obj, true);
2314
Chris Wilson65ce3022012-07-20 12:41:02 +01002315 list_del_init(&obj->ring_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002316 obj->ring = NULL;
2317
John Harrison97b2a6a2014-11-24 18:49:26 +00002318 i915_gem_request_assign(&obj->last_read_req, NULL);
2319 i915_gem_request_assign(&obj->last_write_req, NULL);
Chris Wilson65ce3022012-07-20 12:41:02 +01002320 obj->base.write_domain = 0;
2321
John Harrison97b2a6a2014-11-24 18:49:26 +00002322 i915_gem_request_assign(&obj->last_fenced_req, NULL);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002323
2324 obj->active = 0;
2325 drm_gem_object_unreference(&obj->base);
2326
2327 WARN_ON(i915_verify_lists(dev));
Eric Anholtce44b0e2008-11-06 16:00:31 -08002328}
Eric Anholt673a3942008-07-30 12:06:12 -07002329
Chris Wilsonc8725f32014-03-17 12:21:55 +00002330static void
2331i915_gem_object_retire(struct drm_i915_gem_object *obj)
2332{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002333 struct intel_engine_cs *ring = obj->ring;
Chris Wilsonc8725f32014-03-17 12:21:55 +00002334
2335 if (ring == NULL)
2336 return;
2337
2338 if (i915_seqno_passed(ring->get_seqno(ring, true),
John Harrison97b2a6a2014-11-24 18:49:26 +00002339 i915_gem_request_get_seqno(obj->last_read_req)))
Chris Wilsonc8725f32014-03-17 12:21:55 +00002340 i915_gem_object_move_to_inactive(obj);
2341}
2342
Chris Wilson9d7730912012-11-27 16:22:52 +00002343static int
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002344i915_gem_init_seqno(struct drm_device *dev, u32 seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01002345{
Chris Wilson9d7730912012-11-27 16:22:52 +00002346 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002347 struct intel_engine_cs *ring;
Chris Wilson9d7730912012-11-27 16:22:52 +00002348 int ret, i, j;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002349
Chris Wilson107f27a52012-12-10 13:56:17 +02002350 /* Carefully retire all requests without writing to the rings */
Chris Wilson9d7730912012-11-27 16:22:52 +00002351 for_each_ring(ring, dev_priv, i) {
Chris Wilson107f27a52012-12-10 13:56:17 +02002352 ret = intel_ring_idle(ring);
2353 if (ret)
2354 return ret;
Chris Wilson9d7730912012-11-27 16:22:52 +00002355 }
Chris Wilson9d7730912012-11-27 16:22:52 +00002356 i915_gem_retire_requests(dev);
Chris Wilson107f27a52012-12-10 13:56:17 +02002357
2358 /* Finally reset hw state */
Chris Wilson9d7730912012-11-27 16:22:52 +00002359 for_each_ring(ring, dev_priv, i) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002360 intel_ring_init_seqno(ring, seqno);
Mika Kuoppala498d2ac2012-12-04 15:12:04 +02002361
Ben Widawskyebc348b2014-04-29 14:52:28 -07002362 for (j = 0; j < ARRAY_SIZE(ring->semaphore.sync_seqno); j++)
2363 ring->semaphore.sync_seqno[j] = 0;
Chris Wilson9d7730912012-11-27 16:22:52 +00002364 }
2365
2366 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002367}
2368
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002369int i915_gem_set_seqno(struct drm_device *dev, u32 seqno)
2370{
2371 struct drm_i915_private *dev_priv = dev->dev_private;
2372 int ret;
2373
2374 if (seqno == 0)
2375 return -EINVAL;
2376
2377 /* HWS page needs to be set less than what we
2378 * will inject to ring
2379 */
2380 ret = i915_gem_init_seqno(dev, seqno - 1);
2381 if (ret)
2382 return ret;
2383
2384 /* Carefully set the last_seqno value so that wrap
2385 * detection still works
2386 */
2387 dev_priv->next_seqno = seqno;
2388 dev_priv->last_seqno = seqno - 1;
2389 if (dev_priv->last_seqno == 0)
2390 dev_priv->last_seqno--;
2391
2392 return 0;
2393}
2394
Chris Wilson9d7730912012-11-27 16:22:52 +00002395int
2396i915_gem_get_seqno(struct drm_device *dev, u32 *seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01002397{
Chris Wilson9d7730912012-11-27 16:22:52 +00002398 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002399
Chris Wilson9d7730912012-11-27 16:22:52 +00002400 /* reserve 0 for non-seqno */
2401 if (dev_priv->next_seqno == 0) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002402 int ret = i915_gem_init_seqno(dev, 0);
Chris Wilson9d7730912012-11-27 16:22:52 +00002403 if (ret)
2404 return ret;
2405
2406 dev_priv->next_seqno = 1;
2407 }
2408
Mika Kuoppalaf72b3432012-12-10 15:41:48 +02002409 *seqno = dev_priv->last_seqno = dev_priv->next_seqno++;
Chris Wilson9d7730912012-11-27 16:22:52 +00002410 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002411}
2412
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002413int __i915_add_request(struct intel_engine_cs *ring,
Mika Kuoppala0025c072013-06-12 12:35:30 +03002414 struct drm_file *file,
John Harrison9400ae52014-11-24 18:49:36 +00002415 struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002416{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03002417 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Chris Wilsonacb868d2012-09-26 13:47:30 +01002418 struct drm_i915_gem_request *request;
Oscar Mateo48e29f52014-07-24 17:04:29 +01002419 struct intel_ringbuffer *ringbuf;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002420 u32 request_ring_position, request_start;
Chris Wilson3cce4692010-10-27 16:11:02 +01002421 int ret;
2422
John Harrison6259cea2014-11-24 18:49:29 +00002423 request = ring->outstanding_lazy_request;
Oscar Mateo48e29f52014-07-24 17:04:29 +01002424 if (WARN_ON(request == NULL))
2425 return -ENOMEM;
2426
2427 if (i915.enable_execlists) {
2428 struct intel_context *ctx = request->ctx;
2429 ringbuf = ctx->engine[ring->id].ringbuf;
2430 } else
2431 ringbuf = ring->buffer;
2432
2433 request_start = intel_ring_get_tail(ringbuf);
Daniel Vettercc889e02012-06-13 20:45:19 +02002434 /*
2435 * Emit any outstanding flushes - execbuf can fail to emit the flush
2436 * after having emitted the batchbuffer command. Hence we need to fix
2437 * things up similar to emitting the lazy request. The difference here
2438 * is that the flush _must_ happen before the next request, no matter
2439 * what.
2440 */
Oscar Mateo48e29f52014-07-24 17:04:29 +01002441 if (i915.enable_execlists) {
2442 ret = logical_ring_flush_all_caches(ringbuf);
2443 if (ret)
2444 return ret;
2445 } else {
2446 ret = intel_ring_flush_all_caches(ring);
2447 if (ret)
2448 return ret;
2449 }
Daniel Vettercc889e02012-06-13 20:45:19 +02002450
Chris Wilsona71d8d92012-02-15 11:25:36 +00002451 /* Record the position of the start of the request so that
2452 * should we detect the updated seqno part-way through the
2453 * GPU processing the request, we never over-estimate the
2454 * position of the head.
2455 */
Oscar Mateo48e29f52014-07-24 17:04:29 +01002456 request_ring_position = intel_ring_get_tail(ringbuf);
Chris Wilsona71d8d92012-02-15 11:25:36 +00002457
Oscar Mateo48e29f52014-07-24 17:04:29 +01002458 if (i915.enable_execlists) {
2459 ret = ring->emit_request(ringbuf);
2460 if (ret)
2461 return ret;
2462 } else {
2463 ret = ring->add_request(ring);
2464 if (ret)
2465 return ret;
2466 }
Eric Anholt673a3942008-07-30 12:06:12 -07002467
Zou Nan hai852835f2010-05-21 09:08:56 +08002468 request->ring = ring;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002469 request->head = request_start;
Chris Wilsona71d8d92012-02-15 11:25:36 +00002470 request->tail = request_ring_position;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002471
2472 /* Whilst this request exists, batch_obj will be on the
2473 * active_list, and so will hold the active reference. Only when this
2474 * request is retired will the the batch_obj be moved onto the
2475 * inactive_list and lose its active reference. Hence we do not need
2476 * to explicitly hold another reference here.
2477 */
Chris Wilson9a7e0c22013-08-26 19:50:54 -03002478 request->batch_obj = obj;
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002479
Oscar Mateo48e29f52014-07-24 17:04:29 +01002480 if (!i915.enable_execlists) {
2481 /* Hold a reference to the current context so that we can inspect
2482 * it later in case a hangcheck error event fires.
2483 */
2484 request->ctx = ring->last_context;
2485 if (request->ctx)
2486 i915_gem_context_reference(request->ctx);
2487 }
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002488
Eric Anholt673a3942008-07-30 12:06:12 -07002489 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08002490 list_add_tail(&request->list, &ring->request_list);
Chris Wilson3bb73ab2012-07-20 12:40:59 +01002491 request->file_priv = NULL;
Zou Nan hai852835f2010-05-21 09:08:56 +08002492
Chris Wilsondb53a302011-02-03 11:57:46 +00002493 if (file) {
2494 struct drm_i915_file_private *file_priv = file->driver_priv;
2495
Chris Wilson1c255952010-09-26 11:03:27 +01002496 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002497 request->file_priv = file_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00002498 list_add_tail(&request->client_list,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002499 &file_priv->mm.request_list);
Chris Wilson1c255952010-09-26 11:03:27 +01002500 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00002501 }
Eric Anholt673a3942008-07-30 12:06:12 -07002502
Chris Wilson9d7730912012-11-27 16:22:52 +00002503 trace_i915_gem_request_add(ring, request->seqno);
John Harrison6259cea2014-11-24 18:49:29 +00002504 ring->outstanding_lazy_request = NULL;
Chris Wilsondb53a302011-02-03 11:57:46 +00002505
Daniel Vetter87255482014-11-19 20:36:48 +01002506 i915_queue_hangcheck(ring->dev);
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03002507
Daniel Vetter87255482014-11-19 20:36:48 +01002508 cancel_delayed_work_sync(&dev_priv->mm.idle_work);
2509 queue_delayed_work(dev_priv->wq,
2510 &dev_priv->mm.retire_work,
2511 round_jiffies_up_relative(HZ));
2512 intel_mark_busy(dev_priv->dev);
Daniel Vettercc889e02012-06-13 20:45:19 +02002513
Chris Wilson3cce4692010-10-27 16:11:02 +01002514 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002515}
2516
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002517static inline void
2518i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07002519{
Chris Wilson1c255952010-09-26 11:03:27 +01002520 struct drm_i915_file_private *file_priv = request->file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07002521
Chris Wilson1c255952010-09-26 11:03:27 +01002522 if (!file_priv)
2523 return;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002524
Chris Wilson1c255952010-09-26 11:03:27 +01002525 spin_lock(&file_priv->mm.lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002526 list_del(&request->client_list);
2527 request->file_priv = NULL;
Chris Wilson1c255952010-09-26 11:03:27 +01002528 spin_unlock(&file_priv->mm.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07002529}
2530
Mika Kuoppala939fd762014-01-30 19:04:44 +02002531static bool i915_context_is_banned(struct drm_i915_private *dev_priv,
Oscar Mateo273497e2014-05-22 14:13:37 +01002532 const struct intel_context *ctx)
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002533{
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002534 unsigned long elapsed;
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002535
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002536 elapsed = get_seconds() - ctx->hang_stats.guilty_ts;
2537
2538 if (ctx->hang_stats.banned)
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002539 return true;
2540
2541 if (elapsed <= DRM_I915_CTX_BAN_PERIOD) {
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002542 if (!i915_gem_context_is_default(ctx)) {
Mika Kuoppala3fac8972014-01-30 16:05:48 +02002543 DRM_DEBUG("context hanging too fast, banning!\n");
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002544 return true;
Mika Kuoppala88b4aa82014-03-28 18:18:18 +02002545 } else if (i915_stop_ring_allow_ban(dev_priv)) {
2546 if (i915_stop_ring_allow_warn(dev_priv))
2547 DRM_ERROR("gpu hanging too fast, banning!\n");
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002548 return true;
Mika Kuoppala3fac8972014-01-30 16:05:48 +02002549 }
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002550 }
2551
2552 return false;
2553}
2554
Mika Kuoppala939fd762014-01-30 19:04:44 +02002555static void i915_set_reset_status(struct drm_i915_private *dev_priv,
Oscar Mateo273497e2014-05-22 14:13:37 +01002556 struct intel_context *ctx,
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002557 const bool guilty)
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002558{
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002559 struct i915_ctx_hang_stats *hs;
2560
2561 if (WARN_ON(!ctx))
2562 return;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002563
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002564 hs = &ctx->hang_stats;
2565
2566 if (guilty) {
Mika Kuoppala939fd762014-01-30 19:04:44 +02002567 hs->banned = i915_context_is_banned(dev_priv, ctx);
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002568 hs->batch_active++;
2569 hs->guilty_ts = get_seconds();
2570 } else {
2571 hs->batch_pending++;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002572 }
2573}
2574
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002575static void i915_gem_free_request(struct drm_i915_gem_request *request)
2576{
2577 list_del(&request->list);
2578 i915_gem_request_remove_from_client(request);
2579
John Harrisonabfe2622014-11-24 18:49:24 +00002580 i915_gem_request_unreference(request);
2581}
2582
2583void i915_gem_request_free(struct kref *req_ref)
2584{
2585 struct drm_i915_gem_request *req = container_of(req_ref,
2586 typeof(*req), ref);
2587 struct intel_context *ctx = req->ctx;
2588
Thomas Daniel0794aed2014-11-25 10:39:25 +00002589 if (ctx) {
2590 if (i915.enable_execlists) {
John Harrisonabfe2622014-11-24 18:49:24 +00002591 struct intel_engine_cs *ring = req->ring;
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002592
Thomas Daniel0794aed2014-11-25 10:39:25 +00002593 if (ctx != ring->default_context)
2594 intel_lr_context_unpin(ring, ctx);
2595 }
John Harrisonabfe2622014-11-24 18:49:24 +00002596
Oscar Mateodcb4c122014-11-13 10:28:10 +00002597 i915_gem_context_unreference(ctx);
2598 }
John Harrisonabfe2622014-11-24 18:49:24 +00002599
2600 kfree(req);
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002601}
2602
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002603struct drm_i915_gem_request *
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002604i915_gem_find_active_request(struct intel_engine_cs *ring)
Chris Wilson9375e442010-09-19 12:21:28 +01002605{
Chris Wilson4db080f2013-12-04 11:37:09 +00002606 struct drm_i915_gem_request *request;
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002607 u32 completed_seqno;
2608
2609 completed_seqno = ring->get_seqno(ring, false);
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002610
Chris Wilson4db080f2013-12-04 11:37:09 +00002611 list_for_each_entry(request, &ring->request_list, list) {
2612 if (i915_seqno_passed(completed_seqno, request->seqno))
2613 continue;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002614
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002615 return request;
Chris Wilson4db080f2013-12-04 11:37:09 +00002616 }
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002617
2618 return NULL;
2619}
2620
2621static void i915_gem_reset_ring_status(struct drm_i915_private *dev_priv,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002622 struct intel_engine_cs *ring)
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002623{
2624 struct drm_i915_gem_request *request;
2625 bool ring_hung;
2626
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002627 request = i915_gem_find_active_request(ring);
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002628
2629 if (request == NULL)
2630 return;
2631
2632 ring_hung = ring->hangcheck.score >= HANGCHECK_SCORE_RING_HUNG;
2633
Mika Kuoppala939fd762014-01-30 19:04:44 +02002634 i915_set_reset_status(dev_priv, request->ctx, ring_hung);
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002635
2636 list_for_each_entry_continue(request, &ring->request_list, list)
Mika Kuoppala939fd762014-01-30 19:04:44 +02002637 i915_set_reset_status(dev_priv, request->ctx, false);
Chris Wilson4db080f2013-12-04 11:37:09 +00002638}
2639
2640static void i915_gem_reset_ring_cleanup(struct drm_i915_private *dev_priv,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002641 struct intel_engine_cs *ring)
Chris Wilson4db080f2013-12-04 11:37:09 +00002642{
Chris Wilsondfaae392010-09-22 10:31:52 +01002643 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00002644 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07002645
Chris Wilson05394f32010-11-08 19:18:58 +00002646 obj = list_first_entry(&ring->active_list,
2647 struct drm_i915_gem_object,
2648 ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07002649
Chris Wilson05394f32010-11-08 19:18:58 +00002650 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002651 }
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002652
2653 /*
Oscar Mateodcb4c122014-11-13 10:28:10 +00002654 * Clear the execlists queue up before freeing the requests, as those
2655 * are the ones that keep the context and ringbuffer backing objects
2656 * pinned in place.
2657 */
2658 while (!list_empty(&ring->execlist_queue)) {
2659 struct intel_ctx_submit_request *submit_req;
2660
2661 submit_req = list_first_entry(&ring->execlist_queue,
2662 struct intel_ctx_submit_request,
2663 execlist_link);
2664 list_del(&submit_req->execlist_link);
2665 intel_runtime_pm_put(dev_priv);
2666 i915_gem_context_unreference(submit_req->ctx);
2667 kfree(submit_req);
2668 }
2669
2670 /*
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002671 * We must free the requests after all the corresponding objects have
2672 * been moved off active lists. Which is the same order as the normal
2673 * retire_requests function does. This is important if object hold
2674 * implicit references on things like e.g. ppgtt address spaces through
2675 * the request.
2676 */
2677 while (!list_empty(&ring->request_list)) {
2678 struct drm_i915_gem_request *request;
2679
2680 request = list_first_entry(&ring->request_list,
2681 struct drm_i915_gem_request,
2682 list);
2683
2684 i915_gem_free_request(request);
2685 }
Chris Wilsone3efda42014-04-09 09:19:41 +01002686
John Harrison6259cea2014-11-24 18:49:29 +00002687 /* This may not have been flushed before the reset, so clean it now */
2688 i915_gem_request_assign(&ring->outstanding_lazy_request, NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07002689}
2690
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002691void i915_gem_restore_fences(struct drm_device *dev)
Chris Wilson312817a2010-11-22 11:50:11 +00002692{
2693 struct drm_i915_private *dev_priv = dev->dev_private;
2694 int i;
2695
Daniel Vetter4b9de732011-10-09 21:52:02 +02002696 for (i = 0; i < dev_priv->num_fence_regs; i++) {
Chris Wilson312817a2010-11-22 11:50:11 +00002697 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
Chris Wilson7d2cb392010-11-27 17:38:29 +00002698
Daniel Vetter94a335d2013-07-17 14:51:28 +02002699 /*
2700 * Commit delayed tiling changes if we have an object still
2701 * attached to the fence, otherwise just clear the fence.
2702 */
2703 if (reg->obj) {
2704 i915_gem_object_update_fence(reg->obj, reg,
2705 reg->obj->tiling_mode);
2706 } else {
2707 i915_gem_write_fence(dev, i, NULL);
2708 }
Chris Wilson312817a2010-11-22 11:50:11 +00002709 }
2710}
2711
Chris Wilson069efc12010-09-30 16:53:18 +01002712void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07002713{
Chris Wilsondfaae392010-09-22 10:31:52 +01002714 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002715 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002716 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07002717
Chris Wilson4db080f2013-12-04 11:37:09 +00002718 /*
2719 * Before we free the objects from the requests, we need to inspect
2720 * them for finding the guilty party. As the requests only borrow
2721 * their reference to the objects, the inspection must be done first.
2722 */
Chris Wilsonb4519512012-05-11 14:29:30 +01002723 for_each_ring(ring, dev_priv, i)
Chris Wilson4db080f2013-12-04 11:37:09 +00002724 i915_gem_reset_ring_status(dev_priv, ring);
2725
2726 for_each_ring(ring, dev_priv, i)
2727 i915_gem_reset_ring_cleanup(dev_priv, ring);
Chris Wilsondfaae392010-09-22 10:31:52 +01002728
Ben Widawskyacce9ff2013-12-06 14:11:03 -08002729 i915_gem_context_reset(dev);
2730
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002731 i915_gem_restore_fences(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07002732}
2733
2734/**
2735 * This function clears the request list as sequence numbers are passed.
2736 */
Chris Wilson1cf0ba12014-05-05 09:07:33 +01002737void
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002738i915_gem_retire_requests_ring(struct intel_engine_cs *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07002739{
Eric Anholt673a3942008-07-30 12:06:12 -07002740 uint32_t seqno;
2741
Chris Wilsondb53a302011-02-03 11:57:46 +00002742 if (list_empty(&ring->request_list))
Karsten Wiese6c0594a2009-02-23 15:07:57 +01002743 return;
2744
Chris Wilsondb53a302011-02-03 11:57:46 +00002745 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002746
Chris Wilsonb2eadbc2012-08-09 10:58:30 +01002747 seqno = ring->get_seqno(ring, true);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002748
Chris Wilsone9103032014-01-07 11:45:14 +00002749 /* Move any buffers on the active list that are no longer referenced
2750 * by the ringbuffer to the flushing/inactive lists as appropriate,
2751 * before we free the context associated with the requests.
2752 */
2753 while (!list_empty(&ring->active_list)) {
2754 struct drm_i915_gem_object *obj;
2755
2756 obj = list_first_entry(&ring->active_list,
2757 struct drm_i915_gem_object,
2758 ring_list);
2759
John Harrison97b2a6a2014-11-24 18:49:26 +00002760 if (!i915_seqno_passed(seqno,
2761 i915_gem_request_get_seqno(obj->last_read_req)))
Chris Wilsone9103032014-01-07 11:45:14 +00002762 break;
2763
2764 i915_gem_object_move_to_inactive(obj);
2765 }
2766
2767
Zou Nan hai852835f2010-05-21 09:08:56 +08002768 while (!list_empty(&ring->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002769 struct drm_i915_gem_request *request;
Oscar Mateo48e29f52014-07-24 17:04:29 +01002770 struct intel_ringbuffer *ringbuf;
Eric Anholt673a3942008-07-30 12:06:12 -07002771
Zou Nan hai852835f2010-05-21 09:08:56 +08002772 request = list_first_entry(&ring->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07002773 struct drm_i915_gem_request,
2774 list);
Eric Anholt673a3942008-07-30 12:06:12 -07002775
Chris Wilsondfaae392010-09-22 10:31:52 +01002776 if (!i915_seqno_passed(seqno, request->seqno))
Eric Anholt673a3942008-07-30 12:06:12 -07002777 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002778
Chris Wilsondb53a302011-02-03 11:57:46 +00002779 trace_i915_gem_request_retire(ring, request->seqno);
Oscar Mateo48e29f52014-07-24 17:04:29 +01002780
2781 /* This is one of the few common intersection points
2782 * between legacy ringbuffer submission and execlists:
2783 * we need to tell them apart in order to find the correct
2784 * ringbuffer to which the request belongs to.
2785 */
2786 if (i915.enable_execlists) {
2787 struct intel_context *ctx = request->ctx;
2788 ringbuf = ctx->engine[ring->id].ringbuf;
2789 } else
2790 ringbuf = ring->buffer;
2791
Chris Wilsona71d8d92012-02-15 11:25:36 +00002792 /* We know the GPU must have read the request to have
2793 * sent us the seqno + interrupt, so use the position
2794 * of tail of the request to update the last known position
2795 * of the GPU head.
2796 */
Oscar Mateo48e29f52014-07-24 17:04:29 +01002797 ringbuf->last_retired_head = request->tail;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002798
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002799 i915_gem_free_request(request);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002800 }
2801
Chris Wilsondb53a302011-02-03 11:57:46 +00002802 if (unlikely(ring->trace_irq_seqno &&
2803 i915_seqno_passed(seqno, ring->trace_irq_seqno))) {
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002804 ring->irq_put(ring);
Chris Wilsondb53a302011-02-03 11:57:46 +00002805 ring->trace_irq_seqno = 0;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01002806 }
Chris Wilson23bc5982010-09-29 16:10:57 +01002807
Chris Wilsondb53a302011-02-03 11:57:46 +00002808 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002809}
2810
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002811bool
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002812i915_gem_retire_requests(struct drm_device *dev)
2813{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03002814 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002815 struct intel_engine_cs *ring;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002816 bool idle = true;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002817 int i;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002818
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002819 for_each_ring(ring, dev_priv, i) {
Chris Wilsonb4519512012-05-11 14:29:30 +01002820 i915_gem_retire_requests_ring(ring);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002821 idle &= list_empty(&ring->request_list);
Thomas Danielc86ee3a92014-11-13 10:27:05 +00002822 if (i915.enable_execlists) {
2823 unsigned long flags;
2824
2825 spin_lock_irqsave(&ring->execlist_lock, flags);
2826 idle &= list_empty(&ring->execlist_queue);
2827 spin_unlock_irqrestore(&ring->execlist_lock, flags);
2828
2829 intel_execlists_retire_requests(ring);
2830 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002831 }
2832
2833 if (idle)
2834 mod_delayed_work(dev_priv->wq,
2835 &dev_priv->mm.idle_work,
2836 msecs_to_jiffies(100));
2837
2838 return idle;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002839}
2840
Daniel Vetter75ef9da2010-08-21 00:25:16 +02002841static void
Eric Anholt673a3942008-07-30 12:06:12 -07002842i915_gem_retire_work_handler(struct work_struct *work)
2843{
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002844 struct drm_i915_private *dev_priv =
2845 container_of(work, typeof(*dev_priv), mm.retire_work.work);
2846 struct drm_device *dev = dev_priv->dev;
Chris Wilson0a587052011-01-09 21:05:44 +00002847 bool idle;
Eric Anholt673a3942008-07-30 12:06:12 -07002848
Chris Wilson891b48c2010-09-29 12:26:37 +01002849 /* Come back later if the device is busy... */
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002850 idle = false;
2851 if (mutex_trylock(&dev->struct_mutex)) {
2852 idle = i915_gem_retire_requests(dev);
2853 mutex_unlock(&dev->struct_mutex);
2854 }
2855 if (!idle)
Chris Wilsonbcb45082012-10-05 17:02:57 +01002856 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work,
2857 round_jiffies_up_relative(HZ));
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002858}
Chris Wilson891b48c2010-09-29 12:26:37 +01002859
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002860static void
2861i915_gem_idle_work_handler(struct work_struct *work)
2862{
2863 struct drm_i915_private *dev_priv =
2864 container_of(work, typeof(*dev_priv), mm.idle_work.work);
Zou Nan haid1b851f2010-05-21 09:08:57 +08002865
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002866 intel_mark_idle(dev_priv->dev);
Eric Anholt673a3942008-07-30 12:06:12 -07002867}
2868
Ben Widawsky5816d642012-04-11 11:18:19 -07002869/**
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002870 * Ensures that an object will eventually get non-busy by flushing any required
2871 * write domains, emitting any outstanding lazy request and retiring and
2872 * completed requests.
2873 */
2874static int
2875i915_gem_object_flush_active(struct drm_i915_gem_object *obj)
2876{
2877 int ret;
2878
2879 if (obj->active) {
John Harrisonb6660d52014-11-24 18:49:30 +00002880 ret = i915_gem_check_olr(obj->last_read_req);
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002881 if (ret)
2882 return ret;
2883
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002884 i915_gem_retire_requests_ring(obj->ring);
2885 }
2886
2887 return 0;
2888}
2889
2890/**
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002891 * i915_gem_wait_ioctl - implements DRM_IOCTL_I915_GEM_WAIT
2892 * @DRM_IOCTL_ARGS: standard ioctl arguments
2893 *
2894 * Returns 0 if successful, else an error is returned with the remaining time in
2895 * the timeout parameter.
2896 * -ETIME: object is still busy after timeout
2897 * -ERESTARTSYS: signal interrupted the wait
2898 * -ENONENT: object doesn't exist
2899 * Also possible, but rare:
2900 * -EAGAIN: GPU wedged
2901 * -ENOMEM: damn
2902 * -ENODEV: Internal IRQ fail
2903 * -E?: The add request failed
2904 *
2905 * The wait ioctl with a timeout of 0 reimplements the busy ioctl. With any
2906 * non-zero timeout parameter the wait ioctl will wait for the given number of
2907 * nanoseconds on an object becoming unbusy. Since the wait itself does so
2908 * without holding struct_mutex the object may become re-busied before this
2909 * function completes. A similar but shorter * race condition exists in the busy
2910 * ioctl
2911 */
2912int
2913i915_gem_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
2914{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03002915 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002916 struct drm_i915_gem_wait *args = data;
2917 struct drm_i915_gem_object *obj;
John Harrisonff865882014-11-24 18:49:28 +00002918 struct drm_i915_gem_request *req;
Daniel Vetterf69061b2012-12-06 09:01:42 +01002919 unsigned reset_counter;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002920 int ret = 0;
2921
Daniel Vetter11b5d512014-09-29 15:31:26 +02002922 if (args->flags != 0)
2923 return -EINVAL;
2924
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002925 ret = i915_mutex_lock_interruptible(dev);
2926 if (ret)
2927 return ret;
2928
2929 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->bo_handle));
2930 if (&obj->base == NULL) {
2931 mutex_unlock(&dev->struct_mutex);
2932 return -ENOENT;
2933 }
2934
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002935 /* Need to make sure the object gets inactive eventually. */
2936 ret = i915_gem_object_flush_active(obj);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002937 if (ret)
2938 goto out;
2939
John Harrison97b2a6a2014-11-24 18:49:26 +00002940 if (!obj->active || !obj->last_read_req)
2941 goto out;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002942
John Harrisonff865882014-11-24 18:49:28 +00002943 req = obj->last_read_req;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002944
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002945 /* Do this after OLR check to make sure we make forward progress polling
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00002946 * on this IOCTL with a timeout <=0 (like busy ioctl)
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002947 */
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00002948 if (args->timeout_ns <= 0) {
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002949 ret = -ETIME;
2950 goto out;
2951 }
2952
2953 drm_gem_object_unreference(&obj->base);
Daniel Vetterf69061b2012-12-06 09:01:42 +01002954 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
John Harrisonff865882014-11-24 18:49:28 +00002955 i915_gem_request_reference(req);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002956 mutex_unlock(&dev->struct_mutex);
2957
John Harrison9c654812014-11-24 18:49:35 +00002958 ret = __i915_wait_request(req, reset_counter, true, &args->timeout_ns,
2959 file->driver_priv);
John Harrisonff865882014-11-24 18:49:28 +00002960 mutex_lock(&dev->struct_mutex);
2961 i915_gem_request_unreference(req);
2962 mutex_unlock(&dev->struct_mutex);
2963 return ret;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002964
2965out:
2966 drm_gem_object_unreference(&obj->base);
2967 mutex_unlock(&dev->struct_mutex);
2968 return ret;
2969}
2970
2971/**
Ben Widawsky5816d642012-04-11 11:18:19 -07002972 * i915_gem_object_sync - sync an object to a ring.
2973 *
2974 * @obj: object which may be in use on another ring.
2975 * @to: ring we wish to use the object on. May be NULL.
2976 *
2977 * This code is meant to abstract object synchronization with the GPU.
2978 * Calling with NULL implies synchronizing the object with the CPU
2979 * rather than a particular GPU ring.
2980 *
2981 * Returns 0 if successful, else propagates up the lower layer error.
2982 */
Ben Widawsky2911a352012-04-05 14:47:36 -07002983int
2984i915_gem_object_sync(struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002985 struct intel_engine_cs *to)
Ben Widawsky2911a352012-04-05 14:47:36 -07002986{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002987 struct intel_engine_cs *from = obj->ring;
Ben Widawsky2911a352012-04-05 14:47:36 -07002988 u32 seqno;
2989 int ret, idx;
2990
2991 if (from == NULL || to == from)
2992 return 0;
2993
Ben Widawsky5816d642012-04-11 11:18:19 -07002994 if (to == NULL || !i915_semaphore_is_enabled(obj->base.dev))
Chris Wilson0201f1e2012-07-20 12:41:01 +01002995 return i915_gem_object_wait_rendering(obj, false);
Ben Widawsky2911a352012-04-05 14:47:36 -07002996
2997 idx = intel_ring_sync_index(from, to);
2998
John Harrison97b2a6a2014-11-24 18:49:26 +00002999 seqno = i915_gem_request_get_seqno(obj->last_read_req);
Rodrigo Vividdd4dbc2014-06-30 09:51:11 -07003000 /* Optimization: Avoid semaphore sync when we are sure we already
3001 * waited for an object with higher seqno */
Ben Widawskyebc348b2014-04-29 14:52:28 -07003002 if (seqno <= from->semaphore.sync_seqno[idx])
Ben Widawsky2911a352012-04-05 14:47:36 -07003003 return 0;
3004
John Harrisonb6660d52014-11-24 18:49:30 +00003005 ret = i915_gem_check_olr(obj->last_read_req);
Ben Widawskyb4aca012012-04-25 20:50:12 -07003006 if (ret)
3007 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07003008
Chris Wilsonb52b89d2013-09-25 11:43:28 +01003009 trace_i915_gem_ring_sync_to(from, to, seqno);
Ben Widawskyebc348b2014-04-29 14:52:28 -07003010 ret = to->semaphore.sync_to(to, from, seqno);
Ben Widawskye3a5a222012-04-11 11:18:20 -07003011 if (!ret)
John Harrison97b2a6a2014-11-24 18:49:26 +00003012 /* We use last_read_req because sync_to()
Mika Kuoppala7b01e262012-11-28 17:18:45 +02003013 * might have just caused seqno wrap under
3014 * the radar.
3015 */
John Harrison97b2a6a2014-11-24 18:49:26 +00003016 from->semaphore.sync_seqno[idx] =
3017 i915_gem_request_get_seqno(obj->last_read_req);
Ben Widawsky2911a352012-04-05 14:47:36 -07003018
Ben Widawskye3a5a222012-04-11 11:18:20 -07003019 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07003020}
3021
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01003022static void i915_gem_object_finish_gtt(struct drm_i915_gem_object *obj)
3023{
3024 u32 old_write_domain, old_read_domains;
3025
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01003026 /* Force a pagefault for domain tracking on next user access */
3027 i915_gem_release_mmap(obj);
3028
Keith Packardb97c3d92011-06-24 21:02:59 -07003029 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
3030 return;
3031
Chris Wilson97c809fd2012-10-09 19:24:38 +01003032 /* Wait for any direct GTT access to complete */
3033 mb();
3034
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01003035 old_read_domains = obj->base.read_domains;
3036 old_write_domain = obj->base.write_domain;
3037
3038 obj->base.read_domains &= ~I915_GEM_DOMAIN_GTT;
3039 obj->base.write_domain &= ~I915_GEM_DOMAIN_GTT;
3040
3041 trace_i915_gem_object_change_domain(obj,
3042 old_read_domains,
3043 old_write_domain);
3044}
3045
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003046int i915_vma_unbind(struct i915_vma *vma)
Eric Anholt673a3942008-07-30 12:06:12 -07003047{
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003048 struct drm_i915_gem_object *obj = vma->obj;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003049 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson43e28f02013-01-08 10:53:09 +00003050 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003051
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003052 if (list_empty(&vma->vma_link))
Eric Anholt673a3942008-07-30 12:06:12 -07003053 return 0;
3054
Daniel Vetter0ff501c2013-08-29 19:50:31 +02003055 if (!drm_mm_node_allocated(&vma->node)) {
3056 i915_gem_vma_destroy(vma);
Daniel Vetter0ff501c2013-08-29 19:50:31 +02003057 return 0;
3058 }
Ben Widawsky433544b2013-08-13 18:09:06 -07003059
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08003060 if (vma->pin_count)
Chris Wilson31d8d652012-05-24 19:11:20 +01003061 return -EBUSY;
Eric Anholt673a3942008-07-30 12:06:12 -07003062
Chris Wilsonc4670ad2012-08-20 10:23:27 +01003063 BUG_ON(obj->pages == NULL);
3064
Chris Wilsona8198ee2011-04-13 22:04:09 +01003065 ret = i915_gem_object_finish_gpu(obj);
Chris Wilson1488fc02012-04-24 15:47:31 +01003066 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07003067 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01003068 /* Continue on if we fail due to EIO, the GPU is hung so we
3069 * should be safe and we need to cleanup or else we might
3070 * cause memory corruption through use-after-free.
3071 */
Chris Wilsona8198ee2011-04-13 22:04:09 +01003072
Chris Wilson1d1ef21d2014-09-09 07:02:43 +01003073 /* Throw away the active reference before moving to the unbound list */
3074 i915_gem_object_retire(obj);
3075
Daniel Vetter8b1bc9b2014-02-14 14:06:07 +01003076 if (i915_is_ggtt(vma->vm)) {
3077 i915_gem_object_finish_gtt(obj);
Chris Wilsona8198ee2011-04-13 22:04:09 +01003078
Daniel Vetter8b1bc9b2014-02-14 14:06:07 +01003079 /* release the fence reg _after_ flushing */
3080 ret = i915_gem_object_put_fence(obj);
3081 if (ret)
3082 return ret;
3083 }
Daniel Vetter96b47b62009-12-15 17:50:00 +01003084
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003085 trace_i915_vma_unbind(vma);
Chris Wilsondb53a302011-02-03 11:57:46 +00003086
Ben Widawsky6f65e292013-12-06 14:10:56 -08003087 vma->unbind_vma(vma);
3088
Chris Wilson64bf9302014-02-25 14:23:28 +00003089 list_del_init(&vma->mm_list);
Ben Widawsky5cacaac2013-07-31 17:00:13 -07003090 if (i915_is_ggtt(vma->vm))
Chris Wilsone6a84462014-08-11 12:00:12 +02003091 obj->map_and_fenceable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07003092
Ben Widawsky2f633152013-07-17 12:19:03 -07003093 drm_mm_remove_node(&vma->node);
3094 i915_gem_vma_destroy(vma);
3095
3096 /* Since the unbound list is global, only move to that list if
Daniel Vetterb93dab62013-08-26 11:23:47 +02003097 * no more VMAs exist. */
Armin Reese9490edb2014-07-11 10:20:07 -07003098 if (list_empty(&obj->vma_list)) {
3099 i915_gem_gtt_finish_object(obj);
Ben Widawsky2f633152013-07-17 12:19:03 -07003100 list_move_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Armin Reese9490edb2014-07-11 10:20:07 -07003101 }
Eric Anholt673a3942008-07-30 12:06:12 -07003102
Chris Wilson70903c32013-12-04 09:59:09 +00003103 /* And finally now the object is completely decoupled from this vma,
3104 * we can drop its hold on the backing storage and allow it to be
3105 * reaped by the shrinker.
3106 */
3107 i915_gem_object_unpin_pages(obj);
3108
Chris Wilson88241782011-01-07 17:09:48 +00003109 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00003110}
3111
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07003112int i915_gpu_idle(struct drm_device *dev)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003113{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003114 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003115 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003116 int ret, i;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003117
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003118 /* Flush everything onto the inactive list. */
Chris Wilsonb4519512012-05-11 14:29:30 +01003119 for_each_ring(ring, dev_priv, i) {
Thomas Danielecdb5fd2014-08-20 16:29:24 +01003120 if (!i915.enable_execlists) {
3121 ret = i915_switch_context(ring, ring->default_context);
3122 if (ret)
3123 return ret;
3124 }
Ben Widawskyb6c74882012-08-14 14:35:14 -07003125
Chris Wilson3e960502012-11-27 16:22:54 +00003126 ret = intel_ring_idle(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003127 if (ret)
3128 return ret;
3129 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003130
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01003131 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003132}
3133
Chris Wilson9ce079e2012-04-17 15:31:30 +01003134static void i965_write_fence_reg(struct drm_device *dev, int reg,
3135 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003136{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003137 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak56c844e2013-01-07 21:47:34 +02003138 int fence_reg;
3139 int fence_pitch_shift;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003140
Imre Deak56c844e2013-01-07 21:47:34 +02003141 if (INTEL_INFO(dev)->gen >= 6) {
3142 fence_reg = FENCE_REG_SANDYBRIDGE_0;
3143 fence_pitch_shift = SANDYBRIDGE_FENCE_PITCH_SHIFT;
3144 } else {
3145 fence_reg = FENCE_REG_965_0;
3146 fence_pitch_shift = I965_FENCE_PITCH_SHIFT;
3147 }
3148
Chris Wilsond18b9612013-07-10 13:36:23 +01003149 fence_reg += reg * 8;
3150
3151 /* To w/a incoherency with non-atomic 64-bit register updates,
3152 * we split the 64-bit update into two 32-bit writes. In order
3153 * for a partial fence not to be evaluated between writes, we
3154 * precede the update with write to turn off the fence register,
3155 * and only enable the fence as the last step.
3156 *
3157 * For extra levels of paranoia, we make sure each step lands
3158 * before applying the next step.
3159 */
3160 I915_WRITE(fence_reg, 0);
3161 POSTING_READ(fence_reg);
3162
Chris Wilson9ce079e2012-04-17 15:31:30 +01003163 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003164 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilsond18b9612013-07-10 13:36:23 +01003165 uint64_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003166
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003167 val = (uint64_t)((i915_gem_obj_ggtt_offset(obj) + size - 4096) &
Chris Wilson9ce079e2012-04-17 15:31:30 +01003168 0xfffff000) << 32;
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003169 val |= i915_gem_obj_ggtt_offset(obj) & 0xfffff000;
Imre Deak56c844e2013-01-07 21:47:34 +02003170 val |= (uint64_t)((obj->stride / 128) - 1) << fence_pitch_shift;
Chris Wilson9ce079e2012-04-17 15:31:30 +01003171 if (obj->tiling_mode == I915_TILING_Y)
3172 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
3173 val |= I965_FENCE_REG_VALID;
Daniel Vetterc6642782010-11-12 13:46:18 +00003174
Chris Wilsond18b9612013-07-10 13:36:23 +01003175 I915_WRITE(fence_reg + 4, val >> 32);
3176 POSTING_READ(fence_reg + 4);
3177
3178 I915_WRITE(fence_reg + 0, val);
3179 POSTING_READ(fence_reg);
3180 } else {
3181 I915_WRITE(fence_reg + 4, 0);
3182 POSTING_READ(fence_reg + 4);
3183 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08003184}
3185
Chris Wilson9ce079e2012-04-17 15:31:30 +01003186static void i915_write_fence_reg(struct drm_device *dev, int reg,
3187 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003188{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003189 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9ce079e2012-04-17 15:31:30 +01003190 u32 val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003191
Chris Wilson9ce079e2012-04-17 15:31:30 +01003192 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003193 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003194 int pitch_val;
3195 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003196
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003197 WARN((i915_gem_obj_ggtt_offset(obj) & ~I915_FENCE_START_MASK) ||
Chris Wilson9ce079e2012-04-17 15:31:30 +01003198 (size & -size) != size ||
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003199 (i915_gem_obj_ggtt_offset(obj) & (size - 1)),
3200 "object 0x%08lx [fenceable? %d] not 1M or pot-size (0x%08x) aligned\n",
3201 i915_gem_obj_ggtt_offset(obj), obj->map_and_fenceable, size);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003202
3203 if (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev))
3204 tile_width = 128;
3205 else
3206 tile_width = 512;
3207
3208 /* Note: pitch better be a power of two tile widths */
3209 pitch_val = obj->stride / tile_width;
3210 pitch_val = ffs(pitch_val) - 1;
3211
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003212 val = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003213 if (obj->tiling_mode == I915_TILING_Y)
3214 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
3215 val |= I915_FENCE_SIZE_BITS(size);
3216 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
3217 val |= I830_FENCE_REG_VALID;
3218 } else
3219 val = 0;
3220
3221 if (reg < 8)
3222 reg = FENCE_REG_830_0 + reg * 4;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003223 else
Chris Wilson9ce079e2012-04-17 15:31:30 +01003224 reg = FENCE_REG_945_8 + (reg - 8) * 4;
Jesse Barnes0f973f22009-01-26 17:10:45 -08003225
Chris Wilson9ce079e2012-04-17 15:31:30 +01003226 I915_WRITE(reg, val);
3227 POSTING_READ(reg);
Jesse Barnesde151cf2008-11-12 10:03:55 -08003228}
3229
Chris Wilson9ce079e2012-04-17 15:31:30 +01003230static void i830_write_fence_reg(struct drm_device *dev, int reg,
3231 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003232{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003233 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003234 uint32_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003235
Chris Wilson9ce079e2012-04-17 15:31:30 +01003236 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003237 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003238 uint32_t pitch_val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003239
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003240 WARN((i915_gem_obj_ggtt_offset(obj) & ~I830_FENCE_START_MASK) ||
Chris Wilson9ce079e2012-04-17 15:31:30 +01003241 (size & -size) != size ||
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003242 (i915_gem_obj_ggtt_offset(obj) & (size - 1)),
3243 "object 0x%08lx not 512K or pot-size 0x%08x aligned\n",
3244 i915_gem_obj_ggtt_offset(obj), size);
Eric Anholte76a16d2009-05-26 17:44:56 -07003245
Chris Wilson9ce079e2012-04-17 15:31:30 +01003246 pitch_val = obj->stride / 128;
3247 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003248
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003249 val = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003250 if (obj->tiling_mode == I915_TILING_Y)
3251 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
3252 val |= I830_FENCE_SIZE_BITS(size);
3253 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
3254 val |= I830_FENCE_REG_VALID;
3255 } else
3256 val = 0;
Daniel Vetterc6642782010-11-12 13:46:18 +00003257
Chris Wilson9ce079e2012-04-17 15:31:30 +01003258 I915_WRITE(FENCE_REG_830_0 + reg * 4, val);
3259 POSTING_READ(FENCE_REG_830_0 + reg * 4);
3260}
3261
Chris Wilsond0a57782012-10-09 19:24:37 +01003262inline static bool i915_gem_object_needs_mb(struct drm_i915_gem_object *obj)
3263{
3264 return obj && obj->base.read_domains & I915_GEM_DOMAIN_GTT;
3265}
3266
Chris Wilson9ce079e2012-04-17 15:31:30 +01003267static void i915_gem_write_fence(struct drm_device *dev, int reg,
3268 struct drm_i915_gem_object *obj)
3269{
Chris Wilsond0a57782012-10-09 19:24:37 +01003270 struct drm_i915_private *dev_priv = dev->dev_private;
3271
3272 /* Ensure that all CPU reads are completed before installing a fence
3273 * and all writes before removing the fence.
3274 */
3275 if (i915_gem_object_needs_mb(dev_priv->fence_regs[reg].obj))
3276 mb();
3277
Daniel Vetter94a335d2013-07-17 14:51:28 +02003278 WARN(obj && (!obj->stride || !obj->tiling_mode),
3279 "bogus fence setup with stride: 0x%x, tiling mode: %i\n",
3280 obj->stride, obj->tiling_mode);
3281
Chris Wilson9ce079e2012-04-17 15:31:30 +01003282 switch (INTEL_INFO(dev)->gen) {
Damien Lespiau01209dd2013-02-13 15:27:25 +00003283 case 9:
Ben Widawsky5ab31332013-11-02 21:07:03 -07003284 case 8:
Chris Wilson9ce079e2012-04-17 15:31:30 +01003285 case 7:
Imre Deak56c844e2013-01-07 21:47:34 +02003286 case 6:
Chris Wilson9ce079e2012-04-17 15:31:30 +01003287 case 5:
3288 case 4: i965_write_fence_reg(dev, reg, obj); break;
3289 case 3: i915_write_fence_reg(dev, reg, obj); break;
3290 case 2: i830_write_fence_reg(dev, reg, obj); break;
Ben Widawsky7dbf9d62012-12-18 10:31:22 -08003291 default: BUG();
Chris Wilson9ce079e2012-04-17 15:31:30 +01003292 }
Chris Wilsond0a57782012-10-09 19:24:37 +01003293
3294 /* And similarly be paranoid that no direct access to this region
3295 * is reordered to before the fence is installed.
3296 */
3297 if (i915_gem_object_needs_mb(obj))
3298 mb();
Jesse Barnesde151cf2008-11-12 10:03:55 -08003299}
3300
Chris Wilson61050802012-04-17 15:31:31 +01003301static inline int fence_number(struct drm_i915_private *dev_priv,
3302 struct drm_i915_fence_reg *fence)
3303{
3304 return fence - dev_priv->fence_regs;
3305}
3306
3307static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
3308 struct drm_i915_fence_reg *fence,
3309 bool enable)
3310{
Chris Wilson2dc8aae2013-05-22 17:08:06 +01003311 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson46a0b632013-07-10 13:36:24 +01003312 int reg = fence_number(dev_priv, fence);
Chris Wilson61050802012-04-17 15:31:31 +01003313
Chris Wilson46a0b632013-07-10 13:36:24 +01003314 i915_gem_write_fence(obj->base.dev, reg, enable ? obj : NULL);
Chris Wilson61050802012-04-17 15:31:31 +01003315
3316 if (enable) {
Chris Wilson46a0b632013-07-10 13:36:24 +01003317 obj->fence_reg = reg;
Chris Wilson61050802012-04-17 15:31:31 +01003318 fence->obj = obj;
3319 list_move_tail(&fence->lru_list, &dev_priv->mm.fence_list);
3320 } else {
3321 obj->fence_reg = I915_FENCE_REG_NONE;
3322 fence->obj = NULL;
3323 list_del_init(&fence->lru_list);
3324 }
Daniel Vetter94a335d2013-07-17 14:51:28 +02003325 obj->fence_dirty = false;
Chris Wilson61050802012-04-17 15:31:31 +01003326}
3327
Chris Wilsond9e86c02010-11-10 16:40:20 +00003328static int
Chris Wilsond0a57782012-10-09 19:24:37 +01003329i915_gem_object_wait_fence(struct drm_i915_gem_object *obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003330{
John Harrison97b2a6a2014-11-24 18:49:26 +00003331 if (obj->last_fenced_req) {
Daniel Vettera4b3a572014-11-26 14:17:05 +01003332 int ret = i915_wait_request(obj->last_fenced_req);
Chris Wilson18991842012-04-17 15:31:29 +01003333 if (ret)
3334 return ret;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003335
John Harrison97b2a6a2014-11-24 18:49:26 +00003336 i915_gem_request_assign(&obj->last_fenced_req, NULL);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003337 }
3338
3339 return 0;
3340}
3341
3342int
3343i915_gem_object_put_fence(struct drm_i915_gem_object *obj)
3344{
Chris Wilson61050802012-04-17 15:31:31 +01003345 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003346 struct drm_i915_fence_reg *fence;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003347 int ret;
3348
Chris Wilsond0a57782012-10-09 19:24:37 +01003349 ret = i915_gem_object_wait_fence(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003350 if (ret)
3351 return ret;
3352
Chris Wilson61050802012-04-17 15:31:31 +01003353 if (obj->fence_reg == I915_FENCE_REG_NONE)
3354 return 0;
Chris Wilson1690e1e2011-12-14 13:57:08 +01003355
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003356 fence = &dev_priv->fence_regs[obj->fence_reg];
3357
Daniel Vetteraff10b302014-02-14 14:06:05 +01003358 if (WARN_ON(fence->pin_count))
3359 return -EBUSY;
3360
Chris Wilson61050802012-04-17 15:31:31 +01003361 i915_gem_object_fence_lost(obj);
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003362 i915_gem_object_update_fence(obj, fence, false);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003363
3364 return 0;
3365}
3366
3367static struct drm_i915_fence_reg *
Chris Wilsona360bb12012-04-17 15:31:25 +01003368i915_find_fence_reg(struct drm_device *dev)
Daniel Vetterae3db242010-02-19 11:51:58 +01003369{
Daniel Vetterae3db242010-02-19 11:51:58 +01003370 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson8fe301a2012-04-17 15:31:28 +01003371 struct drm_i915_fence_reg *reg, *avail;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003372 int i;
Daniel Vetterae3db242010-02-19 11:51:58 +01003373
3374 /* First try to find a free reg */
Chris Wilsond9e86c02010-11-10 16:40:20 +00003375 avail = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01003376 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
3377 reg = &dev_priv->fence_regs[i];
3378 if (!reg->obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003379 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003380
Chris Wilson1690e1e2011-12-14 13:57:08 +01003381 if (!reg->pin_count)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003382 avail = reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003383 }
3384
Chris Wilsond9e86c02010-11-10 16:40:20 +00003385 if (avail == NULL)
Chris Wilson5dce5b932014-01-20 10:17:36 +00003386 goto deadlock;
Daniel Vetterae3db242010-02-19 11:51:58 +01003387
3388 /* None available, try to steal one or wait for a user to finish */
Chris Wilsond9e86c02010-11-10 16:40:20 +00003389 list_for_each_entry(reg, &dev_priv->mm.fence_list, lru_list) {
Chris Wilson1690e1e2011-12-14 13:57:08 +01003390 if (reg->pin_count)
Daniel Vetterae3db242010-02-19 11:51:58 +01003391 continue;
3392
Chris Wilson8fe301a2012-04-17 15:31:28 +01003393 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003394 }
3395
Chris Wilson5dce5b932014-01-20 10:17:36 +00003396deadlock:
3397 /* Wait for completion of pending flips which consume fences */
3398 if (intel_has_pending_fb_unpin(dev))
3399 return ERR_PTR(-EAGAIN);
3400
3401 return ERR_PTR(-EDEADLK);
Daniel Vetterae3db242010-02-19 11:51:58 +01003402}
3403
Jesse Barnesde151cf2008-11-12 10:03:55 -08003404/**
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003405 * i915_gem_object_get_fence - set up fencing for an object
Jesse Barnesde151cf2008-11-12 10:03:55 -08003406 * @obj: object to map through a fence reg
3407 *
3408 * When mapping objects through the GTT, userspace wants to be able to write
3409 * to them without having to worry about swizzling if the object is tiled.
Jesse Barnesde151cf2008-11-12 10:03:55 -08003410 * This function walks the fence regs looking for a free one for @obj,
3411 * stealing one if it can't find any.
3412 *
3413 * It then sets up the reg based on the object's properties: address, pitch
3414 * and tiling format.
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003415 *
3416 * For an untiled surface, this removes any existing fence.
Jesse Barnesde151cf2008-11-12 10:03:55 -08003417 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01003418int
Chris Wilson06d98132012-04-17 15:31:24 +01003419i915_gem_object_get_fence(struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003420{
Chris Wilson05394f32010-11-08 19:18:58 +00003421 struct drm_device *dev = obj->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08003422 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson14415742012-04-17 15:31:33 +01003423 bool enable = obj->tiling_mode != I915_TILING_NONE;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003424 struct drm_i915_fence_reg *reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003425 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003426
Chris Wilson14415742012-04-17 15:31:33 +01003427 /* Have we updated the tiling parameters upon the object and so
3428 * will need to serialise the write to the associated fence register?
3429 */
Chris Wilson5d82e3e2012-04-21 16:23:23 +01003430 if (obj->fence_dirty) {
Chris Wilsond0a57782012-10-09 19:24:37 +01003431 ret = i915_gem_object_wait_fence(obj);
Chris Wilson14415742012-04-17 15:31:33 +01003432 if (ret)
3433 return ret;
3434 }
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003435
Chris Wilsond9e86c02010-11-10 16:40:20 +00003436 /* Just update our place in the LRU if our fence is getting reused. */
Chris Wilson05394f32010-11-08 19:18:58 +00003437 if (obj->fence_reg != I915_FENCE_REG_NONE) {
3438 reg = &dev_priv->fence_regs[obj->fence_reg];
Chris Wilson5d82e3e2012-04-21 16:23:23 +01003439 if (!obj->fence_dirty) {
Chris Wilson14415742012-04-17 15:31:33 +01003440 list_move_tail(&reg->lru_list,
3441 &dev_priv->mm.fence_list);
3442 return 0;
3443 }
3444 } else if (enable) {
Chris Wilsone6a84462014-08-11 12:00:12 +02003445 if (WARN_ON(!obj->map_and_fenceable))
3446 return -EINVAL;
3447
Chris Wilson14415742012-04-17 15:31:33 +01003448 reg = i915_find_fence_reg(dev);
Chris Wilson5dce5b932014-01-20 10:17:36 +00003449 if (IS_ERR(reg))
3450 return PTR_ERR(reg);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003451
Chris Wilson14415742012-04-17 15:31:33 +01003452 if (reg->obj) {
3453 struct drm_i915_gem_object *old = reg->obj;
3454
Chris Wilsond0a57782012-10-09 19:24:37 +01003455 ret = i915_gem_object_wait_fence(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00003456 if (ret)
3457 return ret;
3458
Chris Wilson14415742012-04-17 15:31:33 +01003459 i915_gem_object_fence_lost(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00003460 }
Chris Wilson14415742012-04-17 15:31:33 +01003461 } else
Eric Anholta09ba7f2009-08-29 12:49:51 -07003462 return 0;
Eric Anholta09ba7f2009-08-29 12:49:51 -07003463
Chris Wilson14415742012-04-17 15:31:33 +01003464 i915_gem_object_update_fence(obj, reg, enable);
Chris Wilson14415742012-04-17 15:31:33 +01003465
Chris Wilson9ce079e2012-04-17 15:31:30 +01003466 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003467}
3468
Chris Wilson4144f9b2014-09-11 08:43:48 +01003469static bool i915_gem_valid_gtt_space(struct i915_vma *vma,
Chris Wilson42d6ab42012-07-26 11:49:32 +01003470 unsigned long cache_level)
3471{
Chris Wilson4144f9b2014-09-11 08:43:48 +01003472 struct drm_mm_node *gtt_space = &vma->node;
Chris Wilson42d6ab42012-07-26 11:49:32 +01003473 struct drm_mm_node *other;
3474
Chris Wilson4144f9b2014-09-11 08:43:48 +01003475 /*
3476 * On some machines we have to be careful when putting differing types
3477 * of snoopable memory together to avoid the prefetcher crossing memory
3478 * domains and dying. During vm initialisation, we decide whether or not
3479 * these constraints apply and set the drm_mm.color_adjust
3480 * appropriately.
Chris Wilson42d6ab42012-07-26 11:49:32 +01003481 */
Chris Wilson4144f9b2014-09-11 08:43:48 +01003482 if (vma->vm->mm.color_adjust == NULL)
Chris Wilson42d6ab42012-07-26 11:49:32 +01003483 return true;
3484
Ben Widawskyc6cfb322013-07-05 14:41:06 -07003485 if (!drm_mm_node_allocated(gtt_space))
Chris Wilson42d6ab42012-07-26 11:49:32 +01003486 return true;
3487
3488 if (list_empty(&gtt_space->node_list))
3489 return true;
3490
3491 other = list_entry(gtt_space->node_list.prev, struct drm_mm_node, node_list);
3492 if (other->allocated && !other->hole_follows && other->color != cache_level)
3493 return false;
3494
3495 other = list_entry(gtt_space->node_list.next, struct drm_mm_node, node_list);
3496 if (other->allocated && !gtt_space->hole_follows && other->color != cache_level)
3497 return false;
3498
3499 return true;
3500}
3501
Jesse Barnesde151cf2008-11-12 10:03:55 -08003502/**
Eric Anholt673a3942008-07-30 12:06:12 -07003503 * Finds free space in the GTT aperture and binds the object there.
3504 */
Daniel Vetter262de142014-02-14 14:01:20 +01003505static struct i915_vma *
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003506i915_gem_object_bind_to_vm(struct drm_i915_gem_object *obj,
3507 struct i915_address_space *vm,
3508 unsigned alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02003509 uint64_t flags)
Eric Anholt673a3942008-07-30 12:06:12 -07003510{
Chris Wilson05394f32010-11-08 19:18:58 +00003511 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003512 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter5e783302010-11-14 22:32:36 +01003513 u32 size, fence_size, fence_alignment, unfenced_alignment;
Chris Wilsond23db882014-05-23 08:48:08 +02003514 unsigned long start =
3515 flags & PIN_OFFSET_BIAS ? flags & PIN_OFFSET_MASK : 0;
3516 unsigned long end =
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003517 flags & PIN_MAPPABLE ? dev_priv->gtt.mappable_end : vm->total;
Ben Widawsky2f633152013-07-17 12:19:03 -07003518 struct i915_vma *vma;
Chris Wilson07f73f62009-09-14 16:50:30 +01003519 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003520
Chris Wilsone28f8712011-07-18 13:11:49 -07003521 fence_size = i915_gem_get_gtt_size(dev,
3522 obj->base.size,
3523 obj->tiling_mode);
3524 fence_alignment = i915_gem_get_gtt_alignment(dev,
3525 obj->base.size,
Imre Deakd865110c2013-01-07 21:47:33 +02003526 obj->tiling_mode, true);
Chris Wilsone28f8712011-07-18 13:11:49 -07003527 unfenced_alignment =
Imre Deakd865110c2013-01-07 21:47:33 +02003528 i915_gem_get_gtt_alignment(dev,
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003529 obj->base.size,
3530 obj->tiling_mode, false);
Chris Wilsona00b10c2010-09-24 21:15:47 +01003531
Eric Anholt673a3942008-07-30 12:06:12 -07003532 if (alignment == 0)
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003533 alignment = flags & PIN_MAPPABLE ? fence_alignment :
Daniel Vetter5e783302010-11-14 22:32:36 +01003534 unfenced_alignment;
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003535 if (flags & PIN_MAPPABLE && alignment & (fence_alignment - 1)) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00003536 DRM_DEBUG("Invalid object alignment requested %u\n", alignment);
Daniel Vetter262de142014-02-14 14:01:20 +01003537 return ERR_PTR(-EINVAL);
Eric Anholt673a3942008-07-30 12:06:12 -07003538 }
3539
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003540 size = flags & PIN_MAPPABLE ? fence_size : obj->base.size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01003541
Chris Wilson654fc602010-05-27 13:18:21 +01003542 /* If the object is bigger than the entire aperture, reject it early
3543 * before evicting everything in a vain attempt to find space.
3544 */
Chris Wilsond23db882014-05-23 08:48:08 +02003545 if (obj->base.size > end) {
3546 DRM_DEBUG("Attempting to bind an object larger than the aperture: object=%zd > %s aperture=%lu\n",
Chris Wilsona36689c2013-05-21 16:58:49 +01003547 obj->base.size,
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003548 flags & PIN_MAPPABLE ? "mappable" : "total",
Chris Wilsond23db882014-05-23 08:48:08 +02003549 end);
Daniel Vetter262de142014-02-14 14:01:20 +01003550 return ERR_PTR(-E2BIG);
Chris Wilson654fc602010-05-27 13:18:21 +01003551 }
3552
Chris Wilson37e680a2012-06-07 15:38:42 +01003553 ret = i915_gem_object_get_pages(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02003554 if (ret)
Daniel Vetter262de142014-02-14 14:01:20 +01003555 return ERR_PTR(ret);
Chris Wilson6c085a72012-08-20 11:40:46 +02003556
Chris Wilsonfbdda6f2012-11-20 10:45:16 +00003557 i915_gem_object_pin_pages(obj);
3558
Ben Widawskyaccfef22013-08-14 11:38:35 +02003559 vma = i915_gem_obj_lookup_or_create_vma(obj, vm);
Daniel Vetter262de142014-02-14 14:01:20 +01003560 if (IS_ERR(vma))
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003561 goto err_unpin;
Ben Widawsky2f633152013-07-17 12:19:03 -07003562
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003563search_free:
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003564 ret = drm_mm_insert_node_in_range_generic(&vm->mm, &vma->node,
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003565 size, alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02003566 obj->cache_level,
3567 start, end,
Lauri Kasanen62347f92014-04-02 20:03:57 +03003568 DRM_MM_SEARCH_DEFAULT,
3569 DRM_MM_CREATE_DEFAULT);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003570 if (ret) {
Ben Widawskyf6cd1f12013-07-31 17:00:11 -07003571 ret = i915_gem_evict_something(dev, vm, size, alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02003572 obj->cache_level,
3573 start, end,
3574 flags);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003575 if (ret == 0)
3576 goto search_free;
Chris Wilson97311292009-09-21 00:22:34 +01003577
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003578 goto err_free_vma;
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003579 }
Chris Wilson4144f9b2014-09-11 08:43:48 +01003580 if (WARN_ON(!i915_gem_valid_gtt_space(vma, obj->cache_level))) {
Ben Widawsky2f633152013-07-17 12:19:03 -07003581 ret = -EINVAL;
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003582 goto err_remove_node;
Eric Anholt673a3942008-07-30 12:06:12 -07003583 }
3584
Daniel Vetter74163902012-02-15 23:50:21 +01003585 ret = i915_gem_gtt_prepare_object(obj);
Ben Widawsky2f633152013-07-17 12:19:03 -07003586 if (ret)
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003587 goto err_remove_node;
Eric Anholt673a3942008-07-30 12:06:12 -07003588
Ben Widawsky35c20a62013-05-31 11:28:48 -07003589 list_move_tail(&obj->global_list, &dev_priv->mm.bound_list);
Ben Widawskyca191b12013-07-31 17:00:14 -07003590 list_add_tail(&vma->mm_list, &vm->inactive_list);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01003591
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003592 trace_i915_vma_bind(vma, flags);
Daniel Vetter8ea99c92014-02-14 14:01:21 +01003593 vma->bind_vma(vma, obj->cache_level,
Chris Wilsonc826c442014-10-31 13:53:53 +00003594 flags & PIN_GLOBAL ? GLOBAL_BIND : 0);
Daniel Vetter8ea99c92014-02-14 14:01:21 +01003595
Daniel Vetter262de142014-02-14 14:01:20 +01003596 return vma;
Ben Widawsky2f633152013-07-17 12:19:03 -07003597
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003598err_remove_node:
Dan Carpenter6286ef92013-07-19 08:46:27 +03003599 drm_mm_remove_node(&vma->node);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003600err_free_vma:
Ben Widawsky2f633152013-07-17 12:19:03 -07003601 i915_gem_vma_destroy(vma);
Daniel Vetter262de142014-02-14 14:01:20 +01003602 vma = ERR_PTR(ret);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003603err_unpin:
Ben Widawsky2f633152013-07-17 12:19:03 -07003604 i915_gem_object_unpin_pages(obj);
Daniel Vetter262de142014-02-14 14:01:20 +01003605 return vma;
Eric Anholt673a3942008-07-30 12:06:12 -07003606}
3607
Chris Wilson000433b2013-08-08 14:41:09 +01003608bool
Chris Wilson2c225692013-08-09 12:26:45 +01003609i915_gem_clflush_object(struct drm_i915_gem_object *obj,
3610 bool force)
Eric Anholt673a3942008-07-30 12:06:12 -07003611{
Eric Anholt673a3942008-07-30 12:06:12 -07003612 /* If we don't have a page list set up, then we're not pinned
3613 * to GPU, and we can ignore the cache flush because it'll happen
3614 * again at bind time.
3615 */
Chris Wilson05394f32010-11-08 19:18:58 +00003616 if (obj->pages == NULL)
Chris Wilson000433b2013-08-08 14:41:09 +01003617 return false;
Eric Anholt673a3942008-07-30 12:06:12 -07003618
Imre Deak769ce462013-02-13 21:56:05 +02003619 /*
3620 * Stolen memory is always coherent with the GPU as it is explicitly
3621 * marked as wc by the system, or the system is cache-coherent.
3622 */
Chris Wilson6a2c4232014-11-04 04:51:40 -08003623 if (obj->stolen || obj->phys_handle)
Chris Wilson000433b2013-08-08 14:41:09 +01003624 return false;
Imre Deak769ce462013-02-13 21:56:05 +02003625
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003626 /* If the GPU is snooping the contents of the CPU cache,
3627 * we do not need to manually clear the CPU cache lines. However,
3628 * the caches are only snooped when the render cache is
3629 * flushed/invalidated. As we always have to emit invalidations
3630 * and flushes when moving into and out of the RENDER domain, correct
3631 * snooping behaviour occurs naturally as the result of our domain
3632 * tracking.
3633 */
Chris Wilson2c225692013-08-09 12:26:45 +01003634 if (!force && cpu_cache_is_coherent(obj->base.dev, obj->cache_level))
Chris Wilson000433b2013-08-08 14:41:09 +01003635 return false;
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003636
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003637 trace_i915_gem_object_clflush(obj);
Chris Wilson9da3da62012-06-01 15:20:22 +01003638 drm_clflush_sg(obj->pages);
Chris Wilson000433b2013-08-08 14:41:09 +01003639
3640 return true;
Eric Anholte47c68e2008-11-14 13:35:19 -08003641}
3642
3643/** Flushes the GTT write domain for the object if it's dirty. */
3644static void
Chris Wilson05394f32010-11-08 19:18:58 +00003645i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003646{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003647 uint32_t old_write_domain;
3648
Chris Wilson05394f32010-11-08 19:18:58 +00003649 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08003650 return;
3651
Chris Wilson63256ec2011-01-04 18:42:07 +00003652 /* No actual flushing is required for the GTT write domain. Writes
Eric Anholte47c68e2008-11-14 13:35:19 -08003653 * to it immediately go to main memory as far as we know, so there's
3654 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00003655 *
3656 * However, we do have to enforce the order so that all writes through
3657 * the GTT land before any writes to the device, such as updates to
3658 * the GATT itself.
Eric Anholte47c68e2008-11-14 13:35:19 -08003659 */
Chris Wilson63256ec2011-01-04 18:42:07 +00003660 wmb();
3661
Chris Wilson05394f32010-11-08 19:18:58 +00003662 old_write_domain = obj->base.write_domain;
3663 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003664
Daniel Vetterf99d7062014-06-19 16:01:59 +02003665 intel_fb_obj_flush(obj, false);
3666
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003667 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003668 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003669 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003670}
3671
3672/** Flushes the CPU write domain for the object if it's dirty. */
3673static void
Chris Wilson2c225692013-08-09 12:26:45 +01003674i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj,
3675 bool force)
Eric Anholte47c68e2008-11-14 13:35:19 -08003676{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003677 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08003678
Chris Wilson05394f32010-11-08 19:18:58 +00003679 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08003680 return;
3681
Chris Wilson000433b2013-08-08 14:41:09 +01003682 if (i915_gem_clflush_object(obj, force))
3683 i915_gem_chipset_flush(obj->base.dev);
3684
Chris Wilson05394f32010-11-08 19:18:58 +00003685 old_write_domain = obj->base.write_domain;
3686 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003687
Daniel Vetterf99d7062014-06-19 16:01:59 +02003688 intel_fb_obj_flush(obj, false);
3689
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003690 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003691 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003692 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003693}
3694
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003695/**
3696 * Moves a single object to the GTT read, and possibly write domain.
3697 *
3698 * This function returns when the move is complete, including waiting on
3699 * flushes to occur.
3700 */
Jesse Barnes79e53942008-11-07 14:24:08 -08003701int
Chris Wilson20217462010-11-23 15:26:33 +00003702i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003703{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003704 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilsondc8cd1e2014-08-09 17:37:22 +01003705 struct i915_vma *vma = i915_gem_obj_to_ggtt(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003706 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003707 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003708
Eric Anholt02354392008-11-26 13:58:13 -08003709 /* Not valid to be called on unbound objects. */
Chris Wilsondc8cd1e2014-08-09 17:37:22 +01003710 if (vma == NULL)
Eric Anholt02354392008-11-26 13:58:13 -08003711 return -EINVAL;
3712
Chris Wilson8d7e3de2011-02-07 15:23:02 +00003713 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
3714 return 0;
3715
Chris Wilson0201f1e2012-07-20 12:41:01 +01003716 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00003717 if (ret)
3718 return ret;
3719
Chris Wilsonc8725f32014-03-17 12:21:55 +00003720 i915_gem_object_retire(obj);
Chris Wilson2c225692013-08-09 12:26:45 +01003721 i915_gem_object_flush_cpu_write_domain(obj, false);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003722
Chris Wilsond0a57782012-10-09 19:24:37 +01003723 /* Serialise direct access to this object with the barriers for
3724 * coherent writes from the GPU, by effectively invalidating the
3725 * GTT domain upon first access.
3726 */
3727 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
3728 mb();
3729
Chris Wilson05394f32010-11-08 19:18:58 +00003730 old_write_domain = obj->base.write_domain;
3731 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003732
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003733 /* It should now be out of any other write domains, and we can update
3734 * the domain values for our changes.
3735 */
Chris Wilson05394f32010-11-08 19:18:58 +00003736 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
3737 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08003738 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003739 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
3740 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
3741 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08003742 }
3743
Daniel Vetterf99d7062014-06-19 16:01:59 +02003744 if (write)
3745 intel_fb_obj_invalidate(obj, NULL);
3746
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003747 trace_i915_gem_object_change_domain(obj,
3748 old_read_domains,
3749 old_write_domain);
3750
Chris Wilson8325a092012-04-24 15:52:35 +01003751 /* And bump the LRU for this access */
Chris Wilsondc8cd1e2014-08-09 17:37:22 +01003752 if (i915_gem_object_is_inactive(obj))
3753 list_move_tail(&vma->mm_list,
3754 &dev_priv->gtt.base.inactive_list);
Chris Wilson8325a092012-04-24 15:52:35 +01003755
Eric Anholte47c68e2008-11-14 13:35:19 -08003756 return 0;
3757}
3758
Chris Wilsone4ffd172011-04-04 09:44:39 +01003759int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
3760 enum i915_cache_level cache_level)
3761{
Daniel Vetter7bddb012012-02-09 17:15:47 +01003762 struct drm_device *dev = obj->base.dev;
Chris Wilsondf6f7832014-03-21 07:40:56 +00003763 struct i915_vma *vma, *next;
Chris Wilsone4ffd172011-04-04 09:44:39 +01003764 int ret;
3765
3766 if (obj->cache_level == cache_level)
3767 return 0;
3768
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08003769 if (i915_gem_obj_is_pinned(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003770 DRM_DEBUG("can not change the cache level of pinned objects\n");
3771 return -EBUSY;
3772 }
3773
Chris Wilsondf6f7832014-03-21 07:40:56 +00003774 list_for_each_entry_safe(vma, next, &obj->vma_list, vma_link) {
Chris Wilson4144f9b2014-09-11 08:43:48 +01003775 if (!i915_gem_valid_gtt_space(vma, cache_level)) {
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003776 ret = i915_vma_unbind(vma);
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003777 if (ret)
3778 return ret;
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003779 }
Chris Wilson42d6ab42012-07-26 11:49:32 +01003780 }
3781
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003782 if (i915_gem_obj_bound_any(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003783 ret = i915_gem_object_finish_gpu(obj);
3784 if (ret)
3785 return ret;
3786
3787 i915_gem_object_finish_gtt(obj);
3788
3789 /* Before SandyBridge, you could not use tiling or fence
3790 * registers with snooped memory, so relinquish any fences
3791 * currently pointing to our region in the aperture.
3792 */
Chris Wilson42d6ab42012-07-26 11:49:32 +01003793 if (INTEL_INFO(dev)->gen < 6) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003794 ret = i915_gem_object_put_fence(obj);
3795 if (ret)
3796 return ret;
3797 }
3798
Ben Widawsky6f65e292013-12-06 14:10:56 -08003799 list_for_each_entry(vma, &obj->vma_list, vma_link)
Daniel Vetter8ea99c92014-02-14 14:01:21 +01003800 if (drm_mm_node_allocated(&vma->node))
3801 vma->bind_vma(vma, cache_level,
Tvrtko Ursulinaff43762014-10-24 12:42:33 +01003802 vma->bound & GLOBAL_BIND);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003803 }
3804
Chris Wilson2c225692013-08-09 12:26:45 +01003805 list_for_each_entry(vma, &obj->vma_list, vma_link)
3806 vma->node.color = cache_level;
3807 obj->cache_level = cache_level;
3808
3809 if (cpu_write_needs_clflush(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003810 u32 old_read_domains, old_write_domain;
3811
3812 /* If we're coming from LLC cached, then we haven't
3813 * actually been tracking whether the data is in the
3814 * CPU cache or not, since we only allow one bit set
3815 * in obj->write_domain and have been skipping the clflushes.
3816 * Just set it to the CPU cache for now.
3817 */
Chris Wilsonc8725f32014-03-17 12:21:55 +00003818 i915_gem_object_retire(obj);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003819 WARN_ON(obj->base.write_domain & ~I915_GEM_DOMAIN_CPU);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003820
3821 old_read_domains = obj->base.read_domains;
3822 old_write_domain = obj->base.write_domain;
3823
3824 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3825 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3826
3827 trace_i915_gem_object_change_domain(obj,
3828 old_read_domains,
3829 old_write_domain);
3830 }
3831
Chris Wilsone4ffd172011-04-04 09:44:39 +01003832 return 0;
3833}
3834
Ben Widawsky199adf42012-09-21 17:01:20 -07003835int i915_gem_get_caching_ioctl(struct drm_device *dev, void *data,
3836 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003837{
Ben Widawsky199adf42012-09-21 17:01:20 -07003838 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003839 struct drm_i915_gem_object *obj;
3840 int ret;
3841
3842 ret = i915_mutex_lock_interruptible(dev);
3843 if (ret)
3844 return ret;
3845
3846 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3847 if (&obj->base == NULL) {
3848 ret = -ENOENT;
3849 goto unlock;
3850 }
3851
Chris Wilson651d7942013-08-08 14:41:10 +01003852 switch (obj->cache_level) {
3853 case I915_CACHE_LLC:
3854 case I915_CACHE_L3_LLC:
3855 args->caching = I915_CACHING_CACHED;
3856 break;
3857
Chris Wilson4257d3b2013-08-08 14:41:11 +01003858 case I915_CACHE_WT:
3859 args->caching = I915_CACHING_DISPLAY;
3860 break;
3861
Chris Wilson651d7942013-08-08 14:41:10 +01003862 default:
3863 args->caching = I915_CACHING_NONE;
3864 break;
3865 }
Chris Wilsone6994ae2012-07-10 10:27:08 +01003866
3867 drm_gem_object_unreference(&obj->base);
3868unlock:
3869 mutex_unlock(&dev->struct_mutex);
3870 return ret;
3871}
3872
Ben Widawsky199adf42012-09-21 17:01:20 -07003873int i915_gem_set_caching_ioctl(struct drm_device *dev, void *data,
3874 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003875{
Ben Widawsky199adf42012-09-21 17:01:20 -07003876 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003877 struct drm_i915_gem_object *obj;
3878 enum i915_cache_level level;
3879 int ret;
3880
Ben Widawsky199adf42012-09-21 17:01:20 -07003881 switch (args->caching) {
3882 case I915_CACHING_NONE:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003883 level = I915_CACHE_NONE;
3884 break;
Ben Widawsky199adf42012-09-21 17:01:20 -07003885 case I915_CACHING_CACHED:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003886 level = I915_CACHE_LLC;
3887 break;
Chris Wilson4257d3b2013-08-08 14:41:11 +01003888 case I915_CACHING_DISPLAY:
3889 level = HAS_WT(dev) ? I915_CACHE_WT : I915_CACHE_NONE;
3890 break;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003891 default:
3892 return -EINVAL;
3893 }
3894
Ben Widawsky3bc29132012-09-26 16:15:20 -07003895 ret = i915_mutex_lock_interruptible(dev);
3896 if (ret)
3897 return ret;
3898
Chris Wilsone6994ae2012-07-10 10:27:08 +01003899 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3900 if (&obj->base == NULL) {
3901 ret = -ENOENT;
3902 goto unlock;
3903 }
3904
3905 ret = i915_gem_object_set_cache_level(obj, level);
3906
3907 drm_gem_object_unreference(&obj->base);
3908unlock:
3909 mutex_unlock(&dev->struct_mutex);
3910 return ret;
3911}
3912
Chris Wilsoncc98b412013-08-09 12:25:09 +01003913static bool is_pin_display(struct drm_i915_gem_object *obj)
3914{
Oscar Mateo19656432014-05-16 14:20:43 +01003915 struct i915_vma *vma;
3916
Oscar Mateo19656432014-05-16 14:20:43 +01003917 vma = i915_gem_obj_to_ggtt(obj);
3918 if (!vma)
3919 return false;
3920
Daniel Vetter4feb7652014-11-24 11:21:52 +01003921 /* There are 2 sources that pin objects:
Chris Wilsoncc98b412013-08-09 12:25:09 +01003922 * 1. The display engine (scanouts, sprites, cursors);
3923 * 2. Reservations for execbuffer;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003924 *
3925 * We can ignore reservations as we hold the struct_mutex and
Daniel Vetter4feb7652014-11-24 11:21:52 +01003926 * are only called outside of the reservation path.
Chris Wilsoncc98b412013-08-09 12:25:09 +01003927 */
Daniel Vetter4feb7652014-11-24 11:21:52 +01003928 return vma->pin_count;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003929}
3930
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003931/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003932 * Prepare buffer for display plane (scanout, cursors, etc).
3933 * Can be called from an uninterruptible phase (modesetting) and allows
3934 * any flushes to be pipelined (for pageflips).
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003935 */
3936int
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003937i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
3938 u32 alignment,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003939 struct intel_engine_cs *pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003940{
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003941 u32 old_read_domains, old_write_domain;
Oscar Mateo19656432014-05-16 14:20:43 +01003942 bool was_pin_display;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003943 int ret;
3944
Chris Wilson0be73282010-12-06 14:36:27 +00003945 if (pipelined != obj->ring) {
Ben Widawsky2911a352012-04-05 14:47:36 -07003946 ret = i915_gem_object_sync(obj, pipelined);
3947 if (ret)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003948 return ret;
3949 }
3950
Chris Wilsoncc98b412013-08-09 12:25:09 +01003951 /* Mark the pin_display early so that we account for the
3952 * display coherency whilst setting up the cache domains.
3953 */
Oscar Mateo19656432014-05-16 14:20:43 +01003954 was_pin_display = obj->pin_display;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003955 obj->pin_display = true;
3956
Eric Anholta7ef0642011-03-29 16:59:54 -07003957 /* The display engine is not coherent with the LLC cache on gen6. As
3958 * a result, we make sure that the pinning that is about to occur is
3959 * done with uncached PTEs. This is lowest common denominator for all
3960 * chipsets.
3961 *
3962 * However for gen6+, we could do better by using the GFDT bit instead
3963 * of uncaching, which would allow us to flush all the LLC-cached data
3964 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
3965 */
Chris Wilson651d7942013-08-08 14:41:10 +01003966 ret = i915_gem_object_set_cache_level(obj,
3967 HAS_WT(obj->base.dev) ? I915_CACHE_WT : I915_CACHE_NONE);
Eric Anholta7ef0642011-03-29 16:59:54 -07003968 if (ret)
Chris Wilsoncc98b412013-08-09 12:25:09 +01003969 goto err_unpin_display;
Eric Anholta7ef0642011-03-29 16:59:54 -07003970
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003971 /* As the user may map the buffer once pinned in the display plane
3972 * (e.g. libkms for the bootup splash), we have to ensure that we
3973 * always use map_and_fenceable for all scanout buffers.
3974 */
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003975 ret = i915_gem_obj_ggtt_pin(obj, alignment, PIN_MAPPABLE);
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003976 if (ret)
Chris Wilsoncc98b412013-08-09 12:25:09 +01003977 goto err_unpin_display;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003978
Chris Wilson2c225692013-08-09 12:26:45 +01003979 i915_gem_object_flush_cpu_write_domain(obj, true);
Chris Wilsonb118c1e2010-05-27 13:18:14 +01003980
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003981 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00003982 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003983
3984 /* It should now be out of any other write domains, and we can update
3985 * the domain values for our changes.
3986 */
Chris Wilsone5f1d962012-07-20 12:41:00 +01003987 obj->base.write_domain = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00003988 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003989
3990 trace_i915_gem_object_change_domain(obj,
3991 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003992 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003993
3994 return 0;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003995
3996err_unpin_display:
Oscar Mateo19656432014-05-16 14:20:43 +01003997 WARN_ON(was_pin_display != is_pin_display(obj));
3998 obj->pin_display = was_pin_display;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003999 return ret;
4000}
4001
4002void
4003i915_gem_object_unpin_from_display_plane(struct drm_i915_gem_object *obj)
4004{
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004005 i915_gem_object_ggtt_unpin(obj);
Chris Wilsoncc98b412013-08-09 12:25:09 +01004006 obj->pin_display = is_pin_display(obj);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08004007}
4008
Chris Wilson85345512010-11-13 09:49:11 +00004009int
Chris Wilsona8198ee2011-04-13 22:04:09 +01004010i915_gem_object_finish_gpu(struct drm_i915_gem_object *obj)
Chris Wilson85345512010-11-13 09:49:11 +00004011{
Chris Wilson88241782011-01-07 17:09:48 +00004012 int ret;
4013
Chris Wilsona8198ee2011-04-13 22:04:09 +01004014 if ((obj->base.read_domains & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson85345512010-11-13 09:49:11 +00004015 return 0;
4016
Chris Wilson0201f1e2012-07-20 12:41:01 +01004017 ret = i915_gem_object_wait_rendering(obj, false);
Chris Wilsonc501ae72011-12-14 13:57:23 +01004018 if (ret)
4019 return ret;
4020
Chris Wilsona8198ee2011-04-13 22:04:09 +01004021 /* Ensure that we invalidate the GPU's caches and TLBs. */
4022 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilsonc501ae72011-12-14 13:57:23 +01004023 return 0;
Chris Wilson85345512010-11-13 09:49:11 +00004024}
4025
Eric Anholte47c68e2008-11-14 13:35:19 -08004026/**
4027 * Moves a single object to the CPU read, and possibly write domain.
4028 *
4029 * This function returns when the move is complete, including waiting on
4030 * flushes to occur.
4031 */
Chris Wilsondabdfe02012-03-26 10:10:27 +02004032int
Chris Wilson919926a2010-11-12 13:42:53 +00004033i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08004034{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004035 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08004036 int ret;
4037
Chris Wilson8d7e3de2011-02-07 15:23:02 +00004038 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
4039 return 0;
4040
Chris Wilson0201f1e2012-07-20 12:41:01 +01004041 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00004042 if (ret)
4043 return ret;
4044
Chris Wilsonc8725f32014-03-17 12:21:55 +00004045 i915_gem_object_retire(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08004046 i915_gem_object_flush_gtt_write_domain(obj);
4047
Chris Wilson05394f32010-11-08 19:18:58 +00004048 old_write_domain = obj->base.write_domain;
4049 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004050
Eric Anholte47c68e2008-11-14 13:35:19 -08004051 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00004052 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Chris Wilson2c225692013-08-09 12:26:45 +01004053 i915_gem_clflush_object(obj, false);
Eric Anholte47c68e2008-11-14 13:35:19 -08004054
Chris Wilson05394f32010-11-08 19:18:58 +00004055 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08004056 }
4057
4058 /* It should now be out of any other write domains, and we can update
4059 * the domain values for our changes.
4060 */
Chris Wilson05394f32010-11-08 19:18:58 +00004061 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08004062
4063 /* If we're writing through the CPU, then the GPU read domains will
4064 * need to be invalidated at next use.
4065 */
4066 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00004067 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4068 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08004069 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08004070
Daniel Vetterf99d7062014-06-19 16:01:59 +02004071 if (write)
4072 intel_fb_obj_invalidate(obj, NULL);
4073
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004074 trace_i915_gem_object_change_domain(obj,
4075 old_read_domains,
4076 old_write_domain);
4077
Eric Anholt2ef7eea2008-11-10 10:53:25 -08004078 return 0;
4079}
4080
Eric Anholt673a3942008-07-30 12:06:12 -07004081/* Throttle our rendering by waiting until the ring has completed our requests
4082 * emitted over 20 msec ago.
4083 *
Eric Anholtb9624422009-06-03 07:27:35 +00004084 * Note that if we were to use the current jiffies each time around the loop,
4085 * we wouldn't escape the function with any frames outstanding if the time to
4086 * render a frame was over 20ms.
4087 *
Eric Anholt673a3942008-07-30 12:06:12 -07004088 * This should get us reasonable parallelism between CPU and GPU but also
4089 * relatively low latency when blocking on a particular request to finish.
4090 */
4091static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004092i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004093{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004094 struct drm_i915_private *dev_priv = dev->dev_private;
4095 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00004096 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
John Harrison54fb2412014-11-24 18:49:27 +00004097 struct drm_i915_gem_request *request, *target = NULL;
Daniel Vetterf69061b2012-12-06 09:01:42 +01004098 unsigned reset_counter;
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004099 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004100
Daniel Vetter308887a2012-11-14 17:14:06 +01004101 ret = i915_gem_wait_for_error(&dev_priv->gpu_error);
4102 if (ret)
4103 return ret;
4104
4105 ret = i915_gem_check_wedge(&dev_priv->gpu_error, false);
4106 if (ret)
4107 return ret;
Chris Wilsone110e8d2011-01-26 15:39:14 +00004108
Chris Wilson1c255952010-09-26 11:03:27 +01004109 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004110 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00004111 if (time_after_eq(request->emitted_jiffies, recent_enough))
4112 break;
4113
John Harrison54fb2412014-11-24 18:49:27 +00004114 target = request;
Eric Anholtb9624422009-06-03 07:27:35 +00004115 }
Daniel Vetterf69061b2012-12-06 09:01:42 +01004116 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
John Harrisonff865882014-11-24 18:49:28 +00004117 if (target)
4118 i915_gem_request_reference(target);
Chris Wilson1c255952010-09-26 11:03:27 +01004119 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004120
John Harrison54fb2412014-11-24 18:49:27 +00004121 if (target == NULL)
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004122 return 0;
4123
John Harrison9c654812014-11-24 18:49:35 +00004124 ret = __i915_wait_request(target, reset_counter, true, NULL, NULL);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004125 if (ret == 0)
4126 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00004127
John Harrisonff865882014-11-24 18:49:28 +00004128 mutex_lock(&dev->struct_mutex);
4129 i915_gem_request_unreference(target);
4130 mutex_unlock(&dev->struct_mutex);
4131
Eric Anholt673a3942008-07-30 12:06:12 -07004132 return ret;
4133}
4134
Chris Wilsond23db882014-05-23 08:48:08 +02004135static bool
4136i915_vma_misplaced(struct i915_vma *vma, uint32_t alignment, uint64_t flags)
4137{
4138 struct drm_i915_gem_object *obj = vma->obj;
4139
4140 if (alignment &&
4141 vma->node.start & (alignment - 1))
4142 return true;
4143
4144 if (flags & PIN_MAPPABLE && !obj->map_and_fenceable)
4145 return true;
4146
4147 if (flags & PIN_OFFSET_BIAS &&
4148 vma->node.start < (flags & PIN_OFFSET_MASK))
4149 return true;
4150
4151 return false;
4152}
4153
Eric Anholt673a3942008-07-30 12:06:12 -07004154int
Chris Wilson05394f32010-11-08 19:18:58 +00004155i915_gem_object_pin(struct drm_i915_gem_object *obj,
Ben Widawskyc37e2202013-07-31 16:59:58 -07004156 struct i915_address_space *vm,
Chris Wilson05394f32010-11-08 19:18:58 +00004157 uint32_t alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02004158 uint64_t flags)
Eric Anholt673a3942008-07-30 12:06:12 -07004159{
Ben Widawsky6e7186a2014-05-06 22:21:36 -07004160 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004161 struct i915_vma *vma;
Chris Wilsonef79e172014-10-31 13:53:52 +00004162 unsigned bound;
Eric Anholt673a3942008-07-30 12:06:12 -07004163 int ret;
4164
Ben Widawsky6e7186a2014-05-06 22:21:36 -07004165 if (WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base))
4166 return -ENODEV;
4167
Daniel Vetterbf3d1492014-02-14 14:01:12 +01004168 if (WARN_ON(flags & (PIN_GLOBAL | PIN_MAPPABLE) && !i915_is_ggtt(vm)))
Daniel Vetter1ec9e262014-02-14 14:01:11 +01004169 return -EINVAL;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004170
Chris Wilsonc826c442014-10-31 13:53:53 +00004171 if (WARN_ON((flags & (PIN_MAPPABLE | PIN_GLOBAL)) == PIN_MAPPABLE))
4172 return -EINVAL;
4173
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004174 vma = i915_gem_obj_to_vma(obj, vm);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004175 if (vma) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004176 if (WARN_ON(vma->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT))
4177 return -EBUSY;
4178
Chris Wilsond23db882014-05-23 08:48:08 +02004179 if (i915_vma_misplaced(vma, alignment, flags)) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004180 WARN(vma->pin_count,
Chris Wilsonae7d49d2010-08-04 12:37:41 +01004181 "bo is already pinned with incorrect alignment:"
Ben Widawskyf343c5f2013-07-05 14:41:04 -07004182 " offset=%lx, req.alignment=%x, req.map_and_fenceable=%d,"
Daniel Vetter75e9e912010-11-04 17:11:09 +01004183 " obj->map_and_fenceable=%d\n",
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004184 i915_gem_obj_offset(obj, vm), alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02004185 !!(flags & PIN_MAPPABLE),
Chris Wilson05394f32010-11-08 19:18:58 +00004186 obj->map_and_fenceable);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004187 ret = i915_vma_unbind(vma);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004188 if (ret)
4189 return ret;
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004190
4191 vma = NULL;
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004192 }
4193 }
4194
Chris Wilsonef79e172014-10-31 13:53:52 +00004195 bound = vma ? vma->bound : 0;
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004196 if (vma == NULL || !drm_mm_node_allocated(&vma->node)) {
Daniel Vetter262de142014-02-14 14:01:20 +01004197 vma = i915_gem_object_bind_to_vm(obj, vm, alignment, flags);
4198 if (IS_ERR(vma))
4199 return PTR_ERR(vma);
Chris Wilson22c344e2009-02-11 14:26:45 +00004200 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05004201
Tvrtko Ursulinaff43762014-10-24 12:42:33 +01004202 if (flags & PIN_GLOBAL && !(vma->bound & GLOBAL_BIND))
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004203 vma->bind_vma(vma, obj->cache_level, GLOBAL_BIND);
Daniel Vetter74898d72012-02-15 23:50:22 +01004204
Chris Wilsonef79e172014-10-31 13:53:52 +00004205 if ((bound ^ vma->bound) & GLOBAL_BIND) {
4206 bool mappable, fenceable;
4207 u32 fence_size, fence_alignment;
4208
4209 fence_size = i915_gem_get_gtt_size(obj->base.dev,
4210 obj->base.size,
4211 obj->tiling_mode);
4212 fence_alignment = i915_gem_get_gtt_alignment(obj->base.dev,
4213 obj->base.size,
4214 obj->tiling_mode,
4215 true);
4216
4217 fenceable = (vma->node.size == fence_size &&
4218 (vma->node.start & (fence_alignment - 1)) == 0);
4219
4220 mappable = (vma->node.start + obj->base.size <=
4221 dev_priv->gtt.mappable_end);
4222
4223 obj->map_and_fenceable = mappable && fenceable;
4224 }
4225
4226 WARN_ON(flags & PIN_MAPPABLE && !obj->map_and_fenceable);
4227
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004228 vma->pin_count++;
Daniel Vetter1ec9e262014-02-14 14:01:11 +01004229 if (flags & PIN_MAPPABLE)
4230 obj->pin_mappable |= true;
Eric Anholt673a3942008-07-30 12:06:12 -07004231
4232 return 0;
4233}
4234
4235void
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004236i915_gem_object_ggtt_unpin(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07004237{
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004238 struct i915_vma *vma = i915_gem_obj_to_ggtt(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004239
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004240 BUG_ON(!vma);
4241 BUG_ON(vma->pin_count == 0);
4242 BUG_ON(!i915_gem_obj_ggtt_bound(obj));
4243
4244 if (--vma->pin_count == 0)
Chris Wilson6299f992010-11-24 12:23:44 +00004245 obj->pin_mappable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07004246}
4247
Daniel Vetterd8ffa602014-05-13 12:11:26 +02004248bool
4249i915_gem_object_pin_fence(struct drm_i915_gem_object *obj)
4250{
4251 if (obj->fence_reg != I915_FENCE_REG_NONE) {
4252 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
4253 struct i915_vma *ggtt_vma = i915_gem_obj_to_ggtt(obj);
4254
4255 WARN_ON(!ggtt_vma ||
4256 dev_priv->fence_regs[obj->fence_reg].pin_count >
4257 ggtt_vma->pin_count);
4258 dev_priv->fence_regs[obj->fence_reg].pin_count++;
4259 return true;
4260 } else
4261 return false;
4262}
4263
4264void
4265i915_gem_object_unpin_fence(struct drm_i915_gem_object *obj)
4266{
4267 if (obj->fence_reg != I915_FENCE_REG_NONE) {
4268 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
4269 WARN_ON(dev_priv->fence_regs[obj->fence_reg].pin_count <= 0);
4270 dev_priv->fence_regs[obj->fence_reg].pin_count--;
4271 }
4272}
4273
Eric Anholt673a3942008-07-30 12:06:12 -07004274int
Eric Anholt673a3942008-07-30 12:06:12 -07004275i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00004276 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004277{
4278 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004279 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01004280 int ret;
4281
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004282 ret = i915_mutex_lock_interruptible(dev);
4283 if (ret)
4284 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004285
Chris Wilson05394f32010-11-08 19:18:58 +00004286 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004287 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004288 ret = -ENOENT;
4289 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07004290 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08004291
Chris Wilson0be555b2010-08-04 15:36:30 +01004292 /* Count all active objects as busy, even if they are currently not used
4293 * by the gpu. Users of this interface expect objects to eventually
4294 * become non-busy without any further actions, therefore emit any
4295 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08004296 */
Daniel Vetter30dfebf2012-06-01 15:21:23 +02004297 ret = i915_gem_object_flush_active(obj);
4298
Chris Wilson05394f32010-11-08 19:18:58 +00004299 args->busy = obj->active;
Chris Wilsone9808ed2012-07-04 12:25:08 +01004300 if (obj->ring) {
4301 BUILD_BUG_ON(I915_NUM_RINGS > 16);
4302 args->busy |= intel_ring_flag(obj->ring) << 16;
4303 }
Eric Anholt673a3942008-07-30 12:06:12 -07004304
Chris Wilson05394f32010-11-08 19:18:58 +00004305 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004306unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07004307 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004308 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004309}
4310
4311int
4312i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
4313 struct drm_file *file_priv)
4314{
Akshay Joshi0206e352011-08-16 15:34:10 -04004315 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07004316}
4317
Chris Wilson3ef94da2009-09-14 16:50:29 +01004318int
4319i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
4320 struct drm_file *file_priv)
4321{
Daniel Vetter656bfa32014-11-20 09:26:30 +01004322 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004323 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004324 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01004325 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004326
4327 switch (args->madv) {
4328 case I915_MADV_DONTNEED:
4329 case I915_MADV_WILLNEED:
4330 break;
4331 default:
4332 return -EINVAL;
4333 }
4334
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004335 ret = i915_mutex_lock_interruptible(dev);
4336 if (ret)
4337 return ret;
4338
Chris Wilson05394f32010-11-08 19:18:58 +00004339 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004340 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004341 ret = -ENOENT;
4342 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004343 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01004344
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004345 if (i915_gem_obj_is_pinned(obj)) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004346 ret = -EINVAL;
4347 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004348 }
4349
Daniel Vetter656bfa32014-11-20 09:26:30 +01004350 if (obj->pages &&
4351 obj->tiling_mode != I915_TILING_NONE &&
4352 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES) {
4353 if (obj->madv == I915_MADV_WILLNEED)
4354 i915_gem_object_unpin_pages(obj);
4355 if (args->madv == I915_MADV_WILLNEED)
4356 i915_gem_object_pin_pages(obj);
4357 }
4358
Chris Wilson05394f32010-11-08 19:18:58 +00004359 if (obj->madv != __I915_MADV_PURGED)
4360 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004361
Chris Wilson6c085a72012-08-20 11:40:46 +02004362 /* if the object is no longer attached, discard its backing storage */
4363 if (i915_gem_object_is_purgeable(obj) && obj->pages == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01004364 i915_gem_object_truncate(obj);
4365
Chris Wilson05394f32010-11-08 19:18:58 +00004366 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01004367
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004368out:
Chris Wilson05394f32010-11-08 19:18:58 +00004369 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004370unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01004371 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004372 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004373}
4374
Chris Wilson37e680a2012-06-07 15:38:42 +01004375void i915_gem_object_init(struct drm_i915_gem_object *obj,
4376 const struct drm_i915_gem_object_ops *ops)
Chris Wilson0327d6b2012-08-11 15:41:06 +01004377{
Ben Widawsky35c20a62013-05-31 11:28:48 -07004378 INIT_LIST_HEAD(&obj->global_list);
Chris Wilson0327d6b2012-08-11 15:41:06 +01004379 INIT_LIST_HEAD(&obj->ring_list);
Ben Widawskyb25cb2f2013-08-14 11:38:33 +02004380 INIT_LIST_HEAD(&obj->obj_exec_link);
Ben Widawsky2f633152013-07-17 12:19:03 -07004381 INIT_LIST_HEAD(&obj->vma_list);
Chris Wilson0327d6b2012-08-11 15:41:06 +01004382
Chris Wilson37e680a2012-06-07 15:38:42 +01004383 obj->ops = ops;
4384
Chris Wilson0327d6b2012-08-11 15:41:06 +01004385 obj->fence_reg = I915_FENCE_REG_NONE;
4386 obj->madv = I915_MADV_WILLNEED;
Chris Wilson0327d6b2012-08-11 15:41:06 +01004387
4388 i915_gem_info_add_obj(obj->base.dev->dev_private, obj->base.size);
4389}
4390
Chris Wilson37e680a2012-06-07 15:38:42 +01004391static const struct drm_i915_gem_object_ops i915_gem_object_ops = {
4392 .get_pages = i915_gem_object_get_pages_gtt,
4393 .put_pages = i915_gem_object_put_pages_gtt,
4394};
4395
Chris Wilson05394f32010-11-08 19:18:58 +00004396struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
4397 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00004398{
Daniel Vetterc397b902010-04-09 19:05:07 +00004399 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07004400 struct address_space *mapping;
Daniel Vetter1a240d42012-11-29 22:18:51 +01004401 gfp_t mask;
Daniel Vetterc397b902010-04-09 19:05:07 +00004402
Chris Wilson42dcedd2012-11-15 11:32:30 +00004403 obj = i915_gem_object_alloc(dev);
Daniel Vetterc397b902010-04-09 19:05:07 +00004404 if (obj == NULL)
4405 return NULL;
4406
4407 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
Chris Wilson42dcedd2012-11-15 11:32:30 +00004408 i915_gem_object_free(obj);
Daniel Vetterc397b902010-04-09 19:05:07 +00004409 return NULL;
4410 }
4411
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004412 mask = GFP_HIGHUSER | __GFP_RECLAIMABLE;
4413 if (IS_CRESTLINE(dev) || IS_BROADWATER(dev)) {
4414 /* 965gm cannot relocate objects above 4GiB. */
4415 mask &= ~__GFP_HIGHMEM;
4416 mask |= __GFP_DMA32;
4417 }
4418
Al Viro496ad9a2013-01-23 17:07:38 -05004419 mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004420 mapping_set_gfp_mask(mapping, mask);
Hugh Dickins5949eac2011-06-27 16:18:18 -07004421
Chris Wilson37e680a2012-06-07 15:38:42 +01004422 i915_gem_object_init(obj, &i915_gem_object_ops);
Chris Wilson73aa8082010-09-30 11:46:12 +01004423
Daniel Vetterc397b902010-04-09 19:05:07 +00004424 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
4425 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4426
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02004427 if (HAS_LLC(dev)) {
4428 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07004429 * cache) for about a 10% performance improvement
4430 * compared to uncached. Graphics requests other than
4431 * display scanout are coherent with the CPU in
4432 * accessing this cache. This means in this mode we
4433 * don't need to clflush on the CPU side, and on the
4434 * GPU side we only need to flush internal caches to
4435 * get data visible to the CPU.
4436 *
4437 * However, we maintain the display planes as UC, and so
4438 * need to rebind when first used as such.
4439 */
4440 obj->cache_level = I915_CACHE_LLC;
4441 } else
4442 obj->cache_level = I915_CACHE_NONE;
4443
Daniel Vetterd861e332013-07-24 23:25:03 +02004444 trace_i915_gem_object_create(obj);
4445
Chris Wilson05394f32010-11-08 19:18:58 +00004446 return obj;
Daniel Vetterac52bc52010-04-09 19:05:06 +00004447}
4448
Chris Wilson340fbd82014-05-22 09:16:52 +01004449static bool discard_backing_storage(struct drm_i915_gem_object *obj)
4450{
4451 /* If we are the last user of the backing storage (be it shmemfs
4452 * pages or stolen etc), we know that the pages are going to be
4453 * immediately released. In this case, we can then skip copying
4454 * back the contents from the GPU.
4455 */
4456
4457 if (obj->madv != I915_MADV_WILLNEED)
4458 return false;
4459
4460 if (obj->base.filp == NULL)
4461 return true;
4462
4463 /* At first glance, this looks racy, but then again so would be
4464 * userspace racing mmap against close. However, the first external
4465 * reference to the filp can only be obtained through the
4466 * i915_gem_mmap_ioctl() which safeguards us against the user
4467 * acquiring such a reference whilst we are in the middle of
4468 * freeing the object.
4469 */
4470 return atomic_long_read(&obj->base.filp->f_count) == 1;
4471}
4472
Chris Wilson1488fc02012-04-24 15:47:31 +01004473void i915_gem_free_object(struct drm_gem_object *gem_obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01004474{
Chris Wilson1488fc02012-04-24 15:47:31 +01004475 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00004476 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004477 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004478 struct i915_vma *vma, *next;
Chris Wilsonbe726152010-07-23 23:18:50 +01004479
Paulo Zanonif65c9162013-11-27 18:20:34 -02004480 intel_runtime_pm_get(dev_priv);
4481
Chris Wilson26e12f82011-03-20 11:20:19 +00004482 trace_i915_gem_object_destroy(obj);
4483
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004484 list_for_each_entry_safe(vma, next, &obj->vma_list, vma_link) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004485 int ret;
4486
4487 vma->pin_count = 0;
4488 ret = i915_vma_unbind(vma);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004489 if (WARN_ON(ret == -ERESTARTSYS)) {
4490 bool was_interruptible;
Chris Wilson1488fc02012-04-24 15:47:31 +01004491
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004492 was_interruptible = dev_priv->mm.interruptible;
4493 dev_priv->mm.interruptible = false;
Chris Wilson1488fc02012-04-24 15:47:31 +01004494
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004495 WARN_ON(i915_vma_unbind(vma));
Chris Wilson1488fc02012-04-24 15:47:31 +01004496
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004497 dev_priv->mm.interruptible = was_interruptible;
4498 }
Chris Wilson1488fc02012-04-24 15:47:31 +01004499 }
4500
Ben Widawsky1d64ae72013-05-31 14:46:20 -07004501 /* Stolen objects don't hold a ref, but do hold pin count. Fix that up
4502 * before progressing. */
4503 if (obj->stolen)
4504 i915_gem_object_unpin_pages(obj);
4505
Daniel Vettera071fa02014-06-18 23:28:09 +02004506 WARN_ON(obj->frontbuffer_bits);
4507
Daniel Vetter656bfa32014-11-20 09:26:30 +01004508 if (obj->pages && obj->madv == I915_MADV_WILLNEED &&
4509 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES &&
4510 obj->tiling_mode != I915_TILING_NONE)
4511 i915_gem_object_unpin_pages(obj);
4512
Ben Widawsky401c29f2013-05-31 11:28:47 -07004513 if (WARN_ON(obj->pages_pin_count))
4514 obj->pages_pin_count = 0;
Chris Wilson340fbd82014-05-22 09:16:52 +01004515 if (discard_backing_storage(obj))
Chris Wilson55372522014-03-25 13:23:06 +00004516 obj->madv = I915_MADV_DONTNEED;
Chris Wilson37e680a2012-06-07 15:38:42 +01004517 i915_gem_object_put_pages(obj);
Chris Wilsond8cb5082012-08-11 15:41:03 +01004518 i915_gem_object_free_mmap_offset(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01004519
Chris Wilson9da3da62012-06-01 15:20:22 +01004520 BUG_ON(obj->pages);
4521
Chris Wilson2f745ad2012-09-04 21:02:58 +01004522 if (obj->base.import_attach)
4523 drm_prime_gem_destroy(&obj->base, NULL);
Chris Wilsonbe726152010-07-23 23:18:50 +01004524
Chris Wilson5cc9ed42014-05-16 14:22:37 +01004525 if (obj->ops->release)
4526 obj->ops->release(obj);
4527
Chris Wilson05394f32010-11-08 19:18:58 +00004528 drm_gem_object_release(&obj->base);
4529 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01004530
Chris Wilson05394f32010-11-08 19:18:58 +00004531 kfree(obj->bit_17);
Chris Wilson42dcedd2012-11-15 11:32:30 +00004532 i915_gem_object_free(obj);
Paulo Zanonif65c9162013-11-27 18:20:34 -02004533
4534 intel_runtime_pm_put(dev_priv);
Chris Wilsonbe726152010-07-23 23:18:50 +01004535}
4536
Daniel Vettere656a6c2013-08-14 14:14:04 +02004537struct i915_vma *i915_gem_obj_to_vma(struct drm_i915_gem_object *obj,
Ben Widawsky2f633152013-07-17 12:19:03 -07004538 struct i915_address_space *vm)
4539{
Daniel Vettere656a6c2013-08-14 14:14:04 +02004540 struct i915_vma *vma;
4541 list_for_each_entry(vma, &obj->vma_list, vma_link)
4542 if (vma->vm == vm)
4543 return vma;
4544
4545 return NULL;
4546}
4547
Ben Widawsky2f633152013-07-17 12:19:03 -07004548void i915_gem_vma_destroy(struct i915_vma *vma)
4549{
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004550 struct i915_address_space *vm = NULL;
Ben Widawsky2f633152013-07-17 12:19:03 -07004551 WARN_ON(vma->node.allocated);
Chris Wilsonaaa056672013-08-20 12:56:40 +01004552
4553 /* Keep the vma as a placeholder in the execbuffer reservation lists */
4554 if (!list_empty(&vma->exec_list))
4555 return;
4556
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004557 vm = vma->vm;
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004558
Daniel Vetter841cd772014-08-06 15:04:48 +02004559 if (!i915_is_ggtt(vm))
4560 i915_ppgtt_put(i915_vm_to_ppgtt(vm));
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004561
Ben Widawsky8b9c2b92013-07-31 17:00:16 -07004562 list_del(&vma->vma_link);
Daniel Vetterb93dab62013-08-26 11:23:47 +02004563
Ben Widawsky2f633152013-07-17 12:19:03 -07004564 kfree(vma);
4565}
4566
Chris Wilsone3efda42014-04-09 09:19:41 +01004567static void
4568i915_gem_stop_ringbuffers(struct drm_device *dev)
4569{
4570 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004571 struct intel_engine_cs *ring;
Chris Wilsone3efda42014-04-09 09:19:41 +01004572 int i;
4573
4574 for_each_ring(ring, dev_priv, i)
Oscar Mateoa83014d2014-07-24 17:04:21 +01004575 dev_priv->gt.stop_ring(ring);
Chris Wilsone3efda42014-04-09 09:19:41 +01004576}
4577
Jesse Barnes5669fca2009-02-17 15:13:31 -08004578int
Chris Wilson45c5f202013-10-16 11:50:01 +01004579i915_gem_suspend(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07004580{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004581 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson45c5f202013-10-16 11:50:01 +01004582 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07004583
Chris Wilson45c5f202013-10-16 11:50:01 +01004584 mutex_lock(&dev->struct_mutex);
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004585 ret = i915_gpu_idle(dev);
Chris Wilsonf7403342013-09-13 23:57:04 +01004586 if (ret)
Chris Wilson45c5f202013-10-16 11:50:01 +01004587 goto err;
Chris Wilsonf7403342013-09-13 23:57:04 +01004588
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004589 i915_gem_retire_requests(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07004590
Chris Wilson29105cc2010-01-07 10:39:13 +00004591 /* Under UMS, be paranoid and evict. */
Chris Wilsona39d7ef2012-04-24 18:22:52 +01004592 if (!drm_core_check_feature(dev, DRIVER_MODESET))
Chris Wilson6c085a72012-08-20 11:40:46 +02004593 i915_gem_evict_everything(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00004594
Chris Wilsone3efda42014-04-09 09:19:41 +01004595 i915_gem_stop_ringbuffers(dev);
Chris Wilson45c5f202013-10-16 11:50:01 +01004596 mutex_unlock(&dev->struct_mutex);
4597
4598 del_timer_sync(&dev_priv->gpu_error.hangcheck_timer);
Chris Wilson29105cc2010-01-07 10:39:13 +00004599 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
Deepak S274fa1c2014-08-05 07:51:20 -07004600 flush_delayed_work(&dev_priv->mm.idle_work);
Chris Wilson29105cc2010-01-07 10:39:13 +00004601
Chris Wilsonbdcf1202014-11-25 11:56:33 +00004602 /* Assert that we sucessfully flushed all the work and
4603 * reset the GPU back to its idle, low power state.
4604 */
4605 WARN_ON(dev_priv->mm.busy);
4606
Eric Anholt673a3942008-07-30 12:06:12 -07004607 return 0;
Chris Wilson45c5f202013-10-16 11:50:01 +01004608
4609err:
4610 mutex_unlock(&dev->struct_mutex);
4611 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004612}
4613
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004614int i915_gem_l3_remap(struct intel_engine_cs *ring, int slice)
Ben Widawskyb9524a12012-05-25 16:56:24 -07004615{
Ben Widawskyc3787e22013-09-17 21:12:44 -07004616 struct drm_device *dev = ring->dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004617 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07004618 u32 reg_base = GEN7_L3LOG_BASE + (slice * 0x200);
4619 u32 *remap_info = dev_priv->l3_parity.remap_info[slice];
Ben Widawskyc3787e22013-09-17 21:12:44 -07004620 int i, ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004621
Ben Widawsky040d2ba2013-09-19 11:01:40 -07004622 if (!HAS_L3_DPF(dev) || !remap_info)
Ben Widawskyc3787e22013-09-17 21:12:44 -07004623 return 0;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004624
Ben Widawskyc3787e22013-09-17 21:12:44 -07004625 ret = intel_ring_begin(ring, GEN7_L3LOG_SIZE / 4 * 3);
4626 if (ret)
4627 return ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004628
Ben Widawskyc3787e22013-09-17 21:12:44 -07004629 /*
4630 * Note: We do not worry about the concurrent register cacheline hang
4631 * here because no other code should access these registers other than
4632 * at initialization time.
4633 */
Ben Widawskyb9524a12012-05-25 16:56:24 -07004634 for (i = 0; i < GEN7_L3LOG_SIZE; i += 4) {
Ben Widawskyc3787e22013-09-17 21:12:44 -07004635 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
4636 intel_ring_emit(ring, reg_base + i);
4637 intel_ring_emit(ring, remap_info[i/4]);
Ben Widawskyb9524a12012-05-25 16:56:24 -07004638 }
4639
Ben Widawskyc3787e22013-09-17 21:12:44 -07004640 intel_ring_advance(ring);
Ben Widawskyb9524a12012-05-25 16:56:24 -07004641
Ben Widawskyc3787e22013-09-17 21:12:44 -07004642 return ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004643}
4644
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004645void i915_gem_init_swizzling(struct drm_device *dev)
4646{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004647 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004648
Daniel Vetter11782b02012-01-31 16:47:55 +01004649 if (INTEL_INFO(dev)->gen < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004650 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
4651 return;
4652
4653 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
4654 DISP_TILE_SURFACE_SWIZZLING);
4655
Daniel Vetter11782b02012-01-31 16:47:55 +01004656 if (IS_GEN5(dev))
4657 return;
4658
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004659 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
4660 if (IS_GEN6(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004661 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_SNB));
Ben Widawsky8782e262012-12-18 10:31:23 -08004662 else if (IS_GEN7(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004663 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_IVB));
Ben Widawsky31a53362013-11-02 21:07:04 -07004664 else if (IS_GEN8(dev))
4665 I915_WRITE(GAMTARBMODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_BDW));
Ben Widawsky8782e262012-12-18 10:31:23 -08004666 else
4667 BUG();
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004668}
Daniel Vettere21af882012-02-09 20:53:27 +01004669
Chris Wilson67b1b572012-07-05 23:49:40 +01004670static bool
4671intel_enable_blt(struct drm_device *dev)
4672{
4673 if (!HAS_BLT(dev))
4674 return false;
4675
4676 /* The blitter was dysfunctional on early prototypes */
4677 if (IS_GEN6(dev) && dev->pdev->revision < 8) {
4678 DRM_INFO("BLT not supported on this pre-production hardware;"
4679 " graphics performance will be degraded.\n");
4680 return false;
4681 }
4682
4683 return true;
4684}
4685
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004686static void init_unused_ring(struct drm_device *dev, u32 base)
4687{
4688 struct drm_i915_private *dev_priv = dev->dev_private;
4689
4690 I915_WRITE(RING_CTL(base), 0);
4691 I915_WRITE(RING_HEAD(base), 0);
4692 I915_WRITE(RING_TAIL(base), 0);
4693 I915_WRITE(RING_START(base), 0);
4694}
4695
4696static void init_unused_rings(struct drm_device *dev)
4697{
4698 if (IS_I830(dev)) {
4699 init_unused_ring(dev, PRB1_BASE);
4700 init_unused_ring(dev, SRB0_BASE);
4701 init_unused_ring(dev, SRB1_BASE);
4702 init_unused_ring(dev, SRB2_BASE);
4703 init_unused_ring(dev, SRB3_BASE);
4704 } else if (IS_GEN2(dev)) {
4705 init_unused_ring(dev, SRB0_BASE);
4706 init_unused_ring(dev, SRB1_BASE);
4707 } else if (IS_GEN3(dev)) {
4708 init_unused_ring(dev, PRB1_BASE);
4709 init_unused_ring(dev, PRB2_BASE);
4710 }
4711}
4712
Oscar Mateoa83014d2014-07-24 17:04:21 +01004713int i915_gem_init_rings(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004714{
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004715 struct drm_i915_private *dev_priv = dev->dev_private;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004716 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004717
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004718 /*
4719 * At least 830 can leave some of the unused rings
4720 * "active" (ie. head != tail) after resume which
4721 * will prevent c3 entry. Makes sure all unused rings
4722 * are totally idle.
4723 */
4724 init_unused_rings(dev);
4725
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004726 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004727 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00004728 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004729
4730 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004731 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004732 if (ret)
4733 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08004734 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01004735
Chris Wilson67b1b572012-07-05 23:49:40 +01004736 if (intel_enable_blt(dev)) {
Chris Wilson549f7362010-10-19 11:19:32 +01004737 ret = intel_init_blt_ring_buffer(dev);
4738 if (ret)
4739 goto cleanup_bsd_ring;
4740 }
4741
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004742 if (HAS_VEBOX(dev)) {
4743 ret = intel_init_vebox_ring_buffer(dev);
4744 if (ret)
4745 goto cleanup_blt_ring;
4746 }
4747
Zhao Yakui845f74a2014-04-17 10:37:37 +08004748 if (HAS_BSD2(dev)) {
4749 ret = intel_init_bsd2_ring_buffer(dev);
4750 if (ret)
4751 goto cleanup_vebox_ring;
4752 }
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004753
Mika Kuoppala99433932013-01-22 14:12:17 +02004754 ret = i915_gem_set_seqno(dev, ((u32)~0 - 0x1000));
4755 if (ret)
Zhao Yakui845f74a2014-04-17 10:37:37 +08004756 goto cleanup_bsd2_ring;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004757
4758 return 0;
4759
Zhao Yakui845f74a2014-04-17 10:37:37 +08004760cleanup_bsd2_ring:
4761 intel_cleanup_ring_buffer(&dev_priv->ring[VCS2]);
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004762cleanup_vebox_ring:
4763 intel_cleanup_ring_buffer(&dev_priv->ring[VECS]);
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004764cleanup_blt_ring:
4765 intel_cleanup_ring_buffer(&dev_priv->ring[BCS]);
4766cleanup_bsd_ring:
4767 intel_cleanup_ring_buffer(&dev_priv->ring[VCS]);
4768cleanup_render_ring:
4769 intel_cleanup_ring_buffer(&dev_priv->ring[RCS]);
4770
4771 return ret;
4772}
4773
4774int
4775i915_gem_init_hw(struct drm_device *dev)
4776{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004777 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07004778 int ret, i;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004779
4780 if (INTEL_INFO(dev)->gen < 6 && !intel_enable_gtt())
4781 return -EIO;
4782
Ben Widawsky59124502013-07-04 11:02:05 -07004783 if (dev_priv->ellc_size)
Ben Widawsky05e21cc2013-07-04 11:02:04 -07004784 I915_WRITE(HSW_IDICR, I915_READ(HSW_IDICR) | IDIHASHMSK(0xf));
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004785
Ville Syrjälä0bf21342013-11-29 14:56:12 +02004786 if (IS_HASWELL(dev))
4787 I915_WRITE(MI_PREDICATE_RESULT_2, IS_HSW_GT3(dev) ?
4788 LOWER_SLICE_ENABLED : LOWER_SLICE_DISABLED);
Rodrigo Vivi94353732013-08-28 16:45:46 -03004789
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004790 if (HAS_PCH_NOP(dev)) {
Daniel Vetter6ba844b2014-01-22 23:39:30 +01004791 if (IS_IVYBRIDGE(dev)) {
4792 u32 temp = I915_READ(GEN7_MSG_CTL);
4793 temp &= ~(WAIT_FOR_PCH_FLR_ACK | WAIT_FOR_PCH_RESET_ACK);
4794 I915_WRITE(GEN7_MSG_CTL, temp);
4795 } else if (INTEL_INFO(dev)->gen >= 7) {
4796 u32 temp = I915_READ(HSW_NDE_RSTWRN_OPT);
4797 temp &= ~RESET_PCH_HANDSHAKE_ENABLE;
4798 I915_WRITE(HSW_NDE_RSTWRN_OPT, temp);
4799 }
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004800 }
4801
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004802 i915_gem_init_swizzling(dev);
4803
Oscar Mateoa83014d2014-07-24 17:04:21 +01004804 ret = dev_priv->gt.init_rings(dev);
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004805 if (ret)
Mika Kuoppala99433932013-01-22 14:12:17 +02004806 return ret;
4807
Ben Widawskyc3787e22013-09-17 21:12:44 -07004808 for (i = 0; i < NUM_L3_SLICES(dev); i++)
4809 i915_gem_l3_remap(&dev_priv->ring[RCS], i);
4810
Ben Widawsky254f9652012-06-04 14:42:42 -07004811 /*
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004812 * XXX: Contexts should only be initialized once. Doing a switch to the
4813 * default context switch however is something we'd like to do after
4814 * reset or thaw (the latter may not actually be necessary for HW, but
4815 * goes with our code better). Context switching requires rings (for
4816 * the do_switch), but before enabling PPGTT. So don't move this.
Ben Widawsky254f9652012-06-04 14:42:42 -07004817 */
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004818 ret = i915_gem_context_enable(dev_priv);
Chris Wilson60990322014-04-09 09:19:42 +01004819 if (ret && ret != -EIO) {
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004820 DRM_ERROR("Context enable failed %d\n", ret);
Chris Wilson60990322014-04-09 09:19:42 +01004821 i915_gem_cleanup_ringbuffer(dev);
Daniel Vetter82460d92014-08-06 20:19:53 +02004822
4823 return ret;
4824 }
4825
4826 ret = i915_ppgtt_init_hw(dev);
4827 if (ret && ret != -EIO) {
4828 DRM_ERROR("PPGTT enable failed %d\n", ret);
4829 i915_gem_cleanup_ringbuffer(dev);
Ben Widawskyb7c36d22013-04-08 18:43:56 -07004830 }
Daniel Vettere21af882012-02-09 20:53:27 +01004831
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004832 return ret;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004833}
4834
Chris Wilson1070a422012-04-24 15:47:41 +01004835int i915_gem_init(struct drm_device *dev)
4836{
4837 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson1070a422012-04-24 15:47:41 +01004838 int ret;
4839
Oscar Mateo127f1002014-07-24 17:04:11 +01004840 i915.enable_execlists = intel_sanitize_enable_execlists(dev,
4841 i915.enable_execlists);
4842
Chris Wilson1070a422012-04-24 15:47:41 +01004843 mutex_lock(&dev->struct_mutex);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004844
4845 if (IS_VALLEYVIEW(dev)) {
4846 /* VLVA0 (potential hack), BIOS isn't actually waking us */
Imre Deak981a5ae2014-04-14 20:24:22 +03004847 I915_WRITE(VLV_GTLC_WAKE_CTRL, VLV_GTLC_ALLOWWAKEREQ);
4848 if (wait_for((I915_READ(VLV_GTLC_PW_STATUS) &
4849 VLV_GTLC_ALLOWWAKEACK), 10))
Jesse Barnesd62b4892013-03-08 10:45:53 -08004850 DRM_DEBUG_DRIVER("allow wake ack timed out\n");
4851 }
4852
Oscar Mateoa83014d2014-07-24 17:04:21 +01004853 if (!i915.enable_execlists) {
4854 dev_priv->gt.do_execbuf = i915_gem_ringbuffer_submission;
4855 dev_priv->gt.init_rings = i915_gem_init_rings;
4856 dev_priv->gt.cleanup_ring = intel_cleanup_ring_buffer;
4857 dev_priv->gt.stop_ring = intel_stop_ring_buffer;
Oscar Mateo454afeb2014-07-24 17:04:22 +01004858 } else {
4859 dev_priv->gt.do_execbuf = intel_execlists_submission;
4860 dev_priv->gt.init_rings = intel_logical_rings_init;
4861 dev_priv->gt.cleanup_ring = intel_logical_ring_cleanup;
4862 dev_priv->gt.stop_ring = intel_logical_ring_stop;
Oscar Mateoa83014d2014-07-24 17:04:21 +01004863 }
4864
Daniel Vetter6c5566a2014-08-06 15:04:50 +02004865 ret = i915_gem_init_userptr(dev);
4866 if (ret) {
4867 mutex_unlock(&dev->struct_mutex);
4868 return ret;
4869 }
4870
Ben Widawskyd7e50082012-12-18 10:31:25 -08004871 i915_gem_init_global_gtt(dev);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004872
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004873 ret = i915_gem_context_init(dev);
Mika Kuoppalae3848692014-01-31 17:14:02 +02004874 if (ret) {
4875 mutex_unlock(&dev->struct_mutex);
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004876 return ret;
Mika Kuoppalae3848692014-01-31 17:14:02 +02004877 }
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004878
Chris Wilson1070a422012-04-24 15:47:41 +01004879 ret = i915_gem_init_hw(dev);
Chris Wilson60990322014-04-09 09:19:42 +01004880 if (ret == -EIO) {
4881 /* Allow ring initialisation to fail by marking the GPU as
4882 * wedged. But we only want to do this where the GPU is angry,
4883 * for all other failure, such as an allocation failure, bail.
4884 */
4885 DRM_ERROR("Failed to initialize GPU, declaring it wedged\n");
4886 atomic_set_mask(I915_WEDGED, &dev_priv->gpu_error.reset_counter);
4887 ret = 0;
Chris Wilson1070a422012-04-24 15:47:41 +01004888 }
Chris Wilson60990322014-04-09 09:19:42 +01004889 mutex_unlock(&dev->struct_mutex);
Chris Wilson1070a422012-04-24 15:47:41 +01004890
Chris Wilson60990322014-04-09 09:19:42 +01004891 return ret;
Chris Wilson1070a422012-04-24 15:47:41 +01004892}
4893
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004894void
4895i915_gem_cleanup_ringbuffer(struct drm_device *dev)
4896{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004897 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004898 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00004899 int i;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004900
Chris Wilsonb4519512012-05-11 14:29:30 +01004901 for_each_ring(ring, dev_priv, i)
Oscar Mateoa83014d2014-07-24 17:04:21 +01004902 dev_priv->gt.cleanup_ring(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004903}
4904
Chris Wilson64193402010-10-24 12:38:05 +01004905static void
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004906init_ring_lists(struct intel_engine_cs *ring)
Chris Wilson64193402010-10-24 12:38:05 +01004907{
4908 INIT_LIST_HEAD(&ring->active_list);
4909 INIT_LIST_HEAD(&ring->request_list);
Chris Wilson64193402010-10-24 12:38:05 +01004910}
4911
Ben Widawsky7e0d96b2013-12-06 14:11:26 -08004912void i915_init_vm(struct drm_i915_private *dev_priv,
4913 struct i915_address_space *vm)
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004914{
Ben Widawsky7e0d96b2013-12-06 14:11:26 -08004915 if (!i915_is_ggtt(vm))
4916 drm_mm_init(&vm->mm, vm->start, vm->total);
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004917 vm->dev = dev_priv->dev;
4918 INIT_LIST_HEAD(&vm->active_list);
4919 INIT_LIST_HEAD(&vm->inactive_list);
4920 INIT_LIST_HEAD(&vm->global_link);
Chris Wilsonf72d21e2014-01-09 22:57:22 +00004921 list_add_tail(&vm->global_link, &dev_priv->vm_list);
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004922}
4923
Eric Anholt673a3942008-07-30 12:06:12 -07004924void
4925i915_gem_load(struct drm_device *dev)
4926{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004927 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson42dcedd2012-11-15 11:32:30 +00004928 int i;
4929
4930 dev_priv->slab =
4931 kmem_cache_create("i915_gem_object",
4932 sizeof(struct drm_i915_gem_object), 0,
4933 SLAB_HWCACHE_ALIGN,
4934 NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07004935
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004936 INIT_LIST_HEAD(&dev_priv->vm_list);
4937 i915_init_vm(dev_priv, &dev_priv->gtt.base);
4938
Ben Widawskya33afea2013-09-17 21:12:45 -07004939 INIT_LIST_HEAD(&dev_priv->context_list);
Chris Wilson6c085a72012-08-20 11:40:46 +02004940 INIT_LIST_HEAD(&dev_priv->mm.unbound_list);
4941 INIT_LIST_HEAD(&dev_priv->mm.bound_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07004942 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00004943 for (i = 0; i < I915_NUM_RINGS; i++)
4944 init_ring_lists(&dev_priv->ring[i]);
Daniel Vetter4b9de732011-10-09 21:52:02 +02004945 for (i = 0; i < I915_MAX_NUM_FENCES; i++)
Daniel Vetter007cc8a2010-04-28 11:02:31 +02004946 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07004947 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
4948 i915_gem_retire_work_handler);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004949 INIT_DELAYED_WORK(&dev_priv->mm.idle_work,
4950 i915_gem_idle_work_handler);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01004951 init_waitqueue_head(&dev_priv->gpu_error.reset_queue);
Chris Wilson31169712009-09-14 16:50:28 +01004952
Dave Airlie94400122010-07-20 13:15:31 +10004953 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
Ville Syrjälädbb42742014-02-25 15:13:41 +02004954 if (!drm_core_check_feature(dev, DRIVER_MODESET) && IS_GEN3(dev)) {
Daniel Vetter50743292012-04-26 22:02:54 +02004955 I915_WRITE(MI_ARB_STATE,
4956 _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Dave Airlie94400122010-07-20 13:15:31 +10004957 }
4958
Chris Wilson72bfa192010-12-19 11:42:05 +00004959 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
4960
Jesse Barnesde151cf2008-11-12 10:03:55 -08004961 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08004962 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4963 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08004964
Ville Syrjälä42b5aea2013-04-09 13:02:47 +03004965 if (INTEL_INFO(dev)->gen >= 7 && !IS_VALLEYVIEW(dev))
4966 dev_priv->num_fence_regs = 32;
4967 else if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08004968 dev_priv->num_fence_regs = 16;
4969 else
4970 dev_priv->num_fence_regs = 8;
4971
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02004972 /* Initialize fence registers to zero */
Chris Wilson19b2dbd2013-06-12 10:15:12 +01004973 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
4974 i915_gem_restore_fences(dev);
Eric Anholt10ed13e2011-05-06 13:53:49 -07004975
Eric Anholt673a3942008-07-30 12:06:12 -07004976 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004977 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01004978
Chris Wilsonce453d82011-02-21 14:43:56 +00004979 dev_priv->mm.interruptible = true;
4980
Chris Wilsonceabbba52014-03-25 13:23:04 +00004981 dev_priv->mm.shrinker.scan_objects = i915_gem_shrinker_scan;
4982 dev_priv->mm.shrinker.count_objects = i915_gem_shrinker_count;
4983 dev_priv->mm.shrinker.seeks = DEFAULT_SEEKS;
4984 register_shrinker(&dev_priv->mm.shrinker);
Chris Wilson2cfcd32a2014-05-20 08:28:43 +01004985
4986 dev_priv->mm.oom_notifier.notifier_call = i915_gem_shrinker_oom;
4987 register_oom_notifier(&dev_priv->mm.oom_notifier);
Daniel Vetterf99d7062014-06-19 16:01:59 +02004988
4989 mutex_init(&dev_priv->fb_tracking.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07004990}
Dave Airlie71acb5e2008-12-30 20:31:46 +10004991
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004992void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00004993{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004994 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00004995
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004996 cancel_delayed_work_sync(&file_priv->mm.idle_work);
4997
Eric Anholtb9624422009-06-03 07:27:35 +00004998 /* Clean up our request list when the client is going away, so that
4999 * later retire_requests won't dereference our soon-to-be-gone
5000 * file_priv.
5001 */
Chris Wilson1c255952010-09-26 11:03:27 +01005002 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005003 while (!list_empty(&file_priv->mm.request_list)) {
5004 struct drm_i915_gem_request *request;
5005
5006 request = list_first_entry(&file_priv->mm.request_list,
5007 struct drm_i915_gem_request,
5008 client_list);
5009 list_del(&request->client_list);
5010 request->file_priv = NULL;
5011 }
Chris Wilson1c255952010-09-26 11:03:27 +01005012 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00005013}
Chris Wilson31169712009-09-14 16:50:28 +01005014
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005015static void
5016i915_gem_file_idle_work_handler(struct work_struct *work)
5017{
5018 struct drm_i915_file_private *file_priv =
5019 container_of(work, typeof(*file_priv), mm.idle_work.work);
5020
5021 atomic_set(&file_priv->rps_wait_boost, false);
5022}
5023
5024int i915_gem_open(struct drm_device *dev, struct drm_file *file)
5025{
5026 struct drm_i915_file_private *file_priv;
Ben Widawskye422b8882013-12-06 14:10:58 -08005027 int ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005028
5029 DRM_DEBUG_DRIVER("\n");
5030
5031 file_priv = kzalloc(sizeof(*file_priv), GFP_KERNEL);
5032 if (!file_priv)
5033 return -ENOMEM;
5034
5035 file->driver_priv = file_priv;
5036 file_priv->dev_priv = dev->dev_private;
Chris Wilsonab0e7ff2014-02-25 17:11:24 +02005037 file_priv->file = file;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005038
5039 spin_lock_init(&file_priv->mm.lock);
5040 INIT_LIST_HEAD(&file_priv->mm.request_list);
5041 INIT_DELAYED_WORK(&file_priv->mm.idle_work,
5042 i915_gem_file_idle_work_handler);
5043
Ben Widawskye422b8882013-12-06 14:10:58 -08005044 ret = i915_gem_context_open(dev, file);
5045 if (ret)
5046 kfree(file_priv);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005047
Ben Widawskye422b8882013-12-06 14:10:58 -08005048 return ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005049}
5050
Daniel Vetterb680c372014-09-19 18:27:27 +02005051/**
5052 * i915_gem_track_fb - update frontbuffer tracking
5053 * old: current GEM buffer for the frontbuffer slots
5054 * new: new GEM buffer for the frontbuffer slots
5055 * frontbuffer_bits: bitmask of frontbuffer slots
5056 *
5057 * This updates the frontbuffer tracking bits @frontbuffer_bits by clearing them
5058 * from @old and setting them in @new. Both @old and @new can be NULL.
5059 */
Daniel Vettera071fa02014-06-18 23:28:09 +02005060void i915_gem_track_fb(struct drm_i915_gem_object *old,
5061 struct drm_i915_gem_object *new,
5062 unsigned frontbuffer_bits)
5063{
5064 if (old) {
5065 WARN_ON(!mutex_is_locked(&old->base.dev->struct_mutex));
5066 WARN_ON(!(old->frontbuffer_bits & frontbuffer_bits));
5067 old->frontbuffer_bits &= ~frontbuffer_bits;
5068 }
5069
5070 if (new) {
5071 WARN_ON(!mutex_is_locked(&new->base.dev->struct_mutex));
5072 WARN_ON(new->frontbuffer_bits & frontbuffer_bits);
5073 new->frontbuffer_bits |= frontbuffer_bits;
5074 }
5075}
5076
Chris Wilson57745062012-11-21 13:04:04 +00005077static bool mutex_is_locked_by(struct mutex *mutex, struct task_struct *task)
5078{
5079 if (!mutex_is_locked(mutex))
5080 return false;
5081
5082#if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_MUTEXES)
5083 return mutex->owner == task;
5084#else
5085 /* Since UP may be pre-empted, we cannot assume that we own the lock */
5086 return false;
5087#endif
5088}
5089
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005090static bool i915_gem_shrinker_lock(struct drm_device *dev, bool *unlock)
5091{
5092 if (!mutex_trylock(&dev->struct_mutex)) {
5093 if (!mutex_is_locked_by(&dev->struct_mutex, current))
5094 return false;
5095
5096 if (to_i915(dev)->mm.shrinker_no_lock_stealing)
5097 return false;
5098
5099 *unlock = false;
5100 } else
5101 *unlock = true;
5102
5103 return true;
5104}
5105
Chris Wilsonceabbba52014-03-25 13:23:04 +00005106static int num_vma_bound(struct drm_i915_gem_object *obj)
5107{
5108 struct i915_vma *vma;
5109 int count = 0;
5110
5111 list_for_each_entry(vma, &obj->vma_list, vma_link)
5112 if (drm_mm_node_allocated(&vma->node))
5113 count++;
5114
5115 return count;
5116}
5117
Dave Chinner7dc19d52013-08-28 10:18:11 +10005118static unsigned long
Chris Wilsonceabbba52014-03-25 13:23:04 +00005119i915_gem_shrinker_count(struct shrinker *shrinker, struct shrink_control *sc)
Chris Wilson31169712009-09-14 16:50:28 +01005120{
Chris Wilson17250b72010-10-28 12:51:39 +01005121 struct drm_i915_private *dev_priv =
Chris Wilsonceabbba52014-03-25 13:23:04 +00005122 container_of(shrinker, struct drm_i915_private, mm.shrinker);
Chris Wilson17250b72010-10-28 12:51:39 +01005123 struct drm_device *dev = dev_priv->dev;
Chris Wilson6c085a72012-08-20 11:40:46 +02005124 struct drm_i915_gem_object *obj;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005125 unsigned long count;
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005126 bool unlock;
Chris Wilson17250b72010-10-28 12:51:39 +01005127
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005128 if (!i915_gem_shrinker_lock(dev, &unlock))
5129 return 0;
Chris Wilson31169712009-09-14 16:50:28 +01005130
Dave Chinner7dc19d52013-08-28 10:18:11 +10005131 count = 0;
Ben Widawsky35c20a62013-05-31 11:28:48 -07005132 list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list)
Chris Wilsona5570172012-09-04 21:02:54 +01005133 if (obj->pages_pin_count == 0)
Dave Chinner7dc19d52013-08-28 10:18:11 +10005134 count += obj->base.size >> PAGE_SHIFT;
Ben Widawskyfcb4a572013-07-31 16:59:57 -07005135
5136 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
Chris Wilsonceabbba52014-03-25 13:23:04 +00005137 if (!i915_gem_obj_is_pinned(obj) &&
5138 obj->pages_pin_count == num_vma_bound(obj))
Dave Chinner7dc19d52013-08-28 10:18:11 +10005139 count += obj->base.size >> PAGE_SHIFT;
Ben Widawskyfcb4a572013-07-31 16:59:57 -07005140 }
Chris Wilson31169712009-09-14 16:50:28 +01005141
Chris Wilson57745062012-11-21 13:04:04 +00005142 if (unlock)
5143 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9973b42013-10-04 10:33:00 +01005144
Dave Chinner7dc19d52013-08-28 10:18:11 +10005145 return count;
Chris Wilson31169712009-09-14 16:50:28 +01005146}
Ben Widawskya70a3142013-07-31 16:59:56 -07005147
5148/* All the new VM stuff */
5149unsigned long i915_gem_obj_offset(struct drm_i915_gem_object *o,
5150 struct i915_address_space *vm)
5151{
5152 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
5153 struct i915_vma *vma;
5154
Daniel Vetter896ab1a2014-08-06 15:04:51 +02005155 WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base);
Ben Widawskya70a3142013-07-31 16:59:56 -07005156
Ben Widawskya70a3142013-07-31 16:59:56 -07005157 list_for_each_entry(vma, &o->vma_list, vma_link) {
5158 if (vma->vm == vm)
5159 return vma->node.start;
5160
5161 }
Daniel Vetterf25748ea2014-06-17 22:34:38 +02005162 WARN(1, "%s vma for this object not found.\n",
5163 i915_is_ggtt(vm) ? "global" : "ppgtt");
Ben Widawskya70a3142013-07-31 16:59:56 -07005164 return -1;
5165}
5166
5167bool i915_gem_obj_bound(struct drm_i915_gem_object *o,
5168 struct i915_address_space *vm)
5169{
5170 struct i915_vma *vma;
5171
5172 list_for_each_entry(vma, &o->vma_list, vma_link)
Ben Widawsky8b9c2b92013-07-31 17:00:16 -07005173 if (vma->vm == vm && drm_mm_node_allocated(&vma->node))
Ben Widawskya70a3142013-07-31 16:59:56 -07005174 return true;
5175
5176 return false;
5177}
5178
5179bool i915_gem_obj_bound_any(struct drm_i915_gem_object *o)
5180{
Chris Wilson5a1d5eb2013-09-10 11:27:37 +01005181 struct i915_vma *vma;
Ben Widawskya70a3142013-07-31 16:59:56 -07005182
Chris Wilson5a1d5eb2013-09-10 11:27:37 +01005183 list_for_each_entry(vma, &o->vma_list, vma_link)
5184 if (drm_mm_node_allocated(&vma->node))
Ben Widawskya70a3142013-07-31 16:59:56 -07005185 return true;
5186
5187 return false;
5188}
5189
5190unsigned long i915_gem_obj_size(struct drm_i915_gem_object *o,
5191 struct i915_address_space *vm)
5192{
5193 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
5194 struct i915_vma *vma;
5195
Daniel Vetter896ab1a2014-08-06 15:04:51 +02005196 WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base);
Ben Widawskya70a3142013-07-31 16:59:56 -07005197
5198 BUG_ON(list_empty(&o->vma_list));
5199
5200 list_for_each_entry(vma, &o->vma_list, vma_link)
5201 if (vma->vm == vm)
5202 return vma->node.size;
5203
5204 return 0;
5205}
5206
Dave Chinner7dc19d52013-08-28 10:18:11 +10005207static unsigned long
Chris Wilsonceabbba52014-03-25 13:23:04 +00005208i915_gem_shrinker_scan(struct shrinker *shrinker, struct shrink_control *sc)
Dave Chinner7dc19d52013-08-28 10:18:11 +10005209{
5210 struct drm_i915_private *dev_priv =
Chris Wilsonceabbba52014-03-25 13:23:04 +00005211 container_of(shrinker, struct drm_i915_private, mm.shrinker);
Dave Chinner7dc19d52013-08-28 10:18:11 +10005212 struct drm_device *dev = dev_priv->dev;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005213 unsigned long freed;
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005214 bool unlock;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005215
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005216 if (!i915_gem_shrinker_lock(dev, &unlock))
5217 return SHRINK_STOP;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005218
Chris Wilson21ab4e72014-09-09 11:16:08 +01005219 freed = i915_gem_shrink(dev_priv,
5220 sc->nr_to_scan,
5221 I915_SHRINK_BOUND |
5222 I915_SHRINK_UNBOUND |
5223 I915_SHRINK_PURGEABLE);
Chris Wilsond9973b42013-10-04 10:33:00 +01005224 if (freed < sc->nr_to_scan)
Chris Wilson21ab4e72014-09-09 11:16:08 +01005225 freed += i915_gem_shrink(dev_priv,
5226 sc->nr_to_scan - freed,
5227 I915_SHRINK_BOUND |
5228 I915_SHRINK_UNBOUND);
Dave Chinner7dc19d52013-08-28 10:18:11 +10005229 if (unlock)
5230 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9973b42013-10-04 10:33:00 +01005231
Dave Chinner7dc19d52013-08-28 10:18:11 +10005232 return freed;
5233}
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005234
Chris Wilson2cfcd32a2014-05-20 08:28:43 +01005235static int
5236i915_gem_shrinker_oom(struct notifier_block *nb, unsigned long event, void *ptr)
5237{
5238 struct drm_i915_private *dev_priv =
5239 container_of(nb, struct drm_i915_private, mm.oom_notifier);
5240 struct drm_device *dev = dev_priv->dev;
5241 struct drm_i915_gem_object *obj;
5242 unsigned long timeout = msecs_to_jiffies(5000) + 1;
Chris Wilson005445c2014-10-08 11:25:16 +01005243 unsigned long pinned, bound, unbound, freed_pages;
Chris Wilson2cfcd32a2014-05-20 08:28:43 +01005244 bool was_interruptible;
5245 bool unlock;
5246
Chris Wilsona1db2fa2014-07-11 11:28:00 +01005247 while (!i915_gem_shrinker_lock(dev, &unlock) && --timeout) {
Chris Wilson2cfcd32a2014-05-20 08:28:43 +01005248 schedule_timeout_killable(1);
Chris Wilsona1db2fa2014-07-11 11:28:00 +01005249 if (fatal_signal_pending(current))
5250 return NOTIFY_DONE;
5251 }
Chris Wilson2cfcd32a2014-05-20 08:28:43 +01005252 if (timeout == 0) {
5253 pr_err("Unable to purge GPU memory due lock contention.\n");
5254 return NOTIFY_DONE;
5255 }
5256
5257 was_interruptible = dev_priv->mm.interruptible;
5258 dev_priv->mm.interruptible = false;
5259
Chris Wilson005445c2014-10-08 11:25:16 +01005260 freed_pages = i915_gem_shrink_all(dev_priv);
Chris Wilson2cfcd32a2014-05-20 08:28:43 +01005261
5262 dev_priv->mm.interruptible = was_interruptible;
5263
5264 /* Because we may be allocating inside our own driver, we cannot
5265 * assert that there are no objects with pinned pages that are not
5266 * being pointed to by hardware.
5267 */
5268 unbound = bound = pinned = 0;
5269 list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list) {
5270 if (!obj->base.filp) /* not backed by a freeable object */
5271 continue;
5272
5273 if (obj->pages_pin_count)
5274 pinned += obj->base.size;
5275 else
5276 unbound += obj->base.size;
5277 }
5278 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
5279 if (!obj->base.filp)
5280 continue;
5281
5282 if (obj->pages_pin_count)
5283 pinned += obj->base.size;
5284 else
5285 bound += obj->base.size;
5286 }
5287
5288 if (unlock)
5289 mutex_unlock(&dev->struct_mutex);
5290
Chris Wilsonbb9059d2014-10-08 11:25:17 +01005291 if (freed_pages || unbound || bound)
5292 pr_info("Purging GPU memory, %lu bytes freed, %lu bytes still pinned.\n",
5293 freed_pages << PAGE_SHIFT, pinned);
Chris Wilson2cfcd32a2014-05-20 08:28:43 +01005294 if (unbound || bound)
5295 pr_err("%lu and %lu bytes still available in the "
5296 "bound and unbound GPU page lists.\n",
5297 bound, unbound);
5298
Chris Wilson005445c2014-10-08 11:25:16 +01005299 *(unsigned long *)ptr += freed_pages;
Chris Wilson2cfcd32a2014-05-20 08:28:43 +01005300 return NOTIFY_DONE;
5301}
5302
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005303struct i915_vma *i915_gem_obj_to_ggtt(struct drm_i915_gem_object *obj)
5304{
5305 struct i915_vma *vma;
5306
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005307 vma = list_first_entry(&obj->vma_list, typeof(*vma), vma_link);
Daniel Vetter5dc383b2014-08-06 15:04:49 +02005308 if (vma->vm != i915_obj_to_ggtt(obj))
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005309 return NULL;
5310
5311 return vma;
5312}