blob: 4a9faea626dbf64eec08bf257b6d8a68fe7a7513 [file] [log] [blame]
Eric Anholt673a3942008-07-30 12:06:12 -07001/*
2 * Copyright © 2008 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 *
26 */
27
David Howells760285e2012-10-02 18:01:07 +010028#include <drm/drmP.h>
David Herrmann0de23972013-07-24 21:07:52 +020029#include <drm/drm_vma_manager.h>
David Howells760285e2012-10-02 18:01:07 +010030#include <drm/i915_drm.h>
Eric Anholt673a3942008-07-30 12:06:12 -070031#include "i915_drv.h"
Chris Wilson1c5d22f2009-08-25 11:15:50 +010032#include "i915_trace.h"
Jesse Barnes652c3932009-08-17 13:31:43 -070033#include "intel_drv.h"
Chris Wilson2cfcd322014-05-20 08:28:43 +010034#include <linux/oom.h>
Hugh Dickins5949eac2011-06-27 16:18:18 -070035#include <linux/shmem_fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/slab.h>
Eric Anholt673a3942008-07-30 12:06:12 -070037#include <linux/swap.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080038#include <linux/pci.h>
Daniel Vetter1286ff72012-05-10 15:25:09 +020039#include <linux/dma-buf.h>
Eric Anholt673a3942008-07-30 12:06:12 -070040
Chris Wilson05394f32010-11-08 19:18:58 +000041static void i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj);
Chris Wilson2c225692013-08-09 12:26:45 +010042static void i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj,
43 bool force);
Ben Widawsky07fe0b12013-07-31 17:00:10 -070044static __must_check int
Ben Widawsky23f54482013-09-11 14:57:48 -070045i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj,
46 bool readonly);
Chris Wilsonc8725f32014-03-17 12:21:55 +000047static void
48i915_gem_object_retire(struct drm_i915_gem_object *obj);
49
Chris Wilson61050802012-04-17 15:31:31 +010050static void i915_gem_write_fence(struct drm_device *dev, int reg,
51 struct drm_i915_gem_object *obj);
52static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
53 struct drm_i915_fence_reg *fence,
54 bool enable);
55
Chris Wilsonceabbba52014-03-25 13:23:04 +000056static unsigned long i915_gem_shrinker_count(struct shrinker *shrinker,
Dave Chinner7dc19d52013-08-28 10:18:11 +100057 struct shrink_control *sc);
Chris Wilsonceabbba52014-03-25 13:23:04 +000058static unsigned long i915_gem_shrinker_scan(struct shrinker *shrinker,
Dave Chinner7dc19d52013-08-28 10:18:11 +100059 struct shrink_control *sc);
Chris Wilson2cfcd322014-05-20 08:28:43 +010060static int i915_gem_shrinker_oom(struct notifier_block *nb,
61 unsigned long event,
62 void *ptr);
Chris Wilsond9973b42013-10-04 10:33:00 +010063static unsigned long i915_gem_shrink_all(struct drm_i915_private *dev_priv);
Chris Wilson31169712009-09-14 16:50:28 +010064
Chris Wilsonc76ce032013-08-08 14:41:03 +010065static bool cpu_cache_is_coherent(struct drm_device *dev,
66 enum i915_cache_level level)
67{
68 return HAS_LLC(dev) || level != I915_CACHE_NONE;
69}
70
Chris Wilson2c225692013-08-09 12:26:45 +010071static bool cpu_write_needs_clflush(struct drm_i915_gem_object *obj)
72{
73 if (!cpu_cache_is_coherent(obj->base.dev, obj->cache_level))
74 return true;
75
76 return obj->pin_display;
77}
78
Chris Wilson61050802012-04-17 15:31:31 +010079static inline void i915_gem_object_fence_lost(struct drm_i915_gem_object *obj)
80{
81 if (obj->tiling_mode)
82 i915_gem_release_mmap(obj);
83
84 /* As we do not have an associated fence register, we will force
85 * a tiling change if we ever need to acquire one.
86 */
Chris Wilson5d82e3e2012-04-21 16:23:23 +010087 obj->fence_dirty = false;
Chris Wilson61050802012-04-17 15:31:31 +010088 obj->fence_reg = I915_FENCE_REG_NONE;
89}
90
Chris Wilson73aa8082010-09-30 11:46:12 +010091/* some bookkeeping */
92static void i915_gem_info_add_obj(struct drm_i915_private *dev_priv,
93 size_t size)
94{
Daniel Vetterc20e8352013-07-24 22:40:23 +020095 spin_lock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +010096 dev_priv->mm.object_count++;
97 dev_priv->mm.object_memory += size;
Daniel Vetterc20e8352013-07-24 22:40:23 +020098 spin_unlock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +010099}
100
101static void i915_gem_info_remove_obj(struct drm_i915_private *dev_priv,
102 size_t size)
103{
Daniel Vetterc20e8352013-07-24 22:40:23 +0200104 spin_lock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +0100105 dev_priv->mm.object_count--;
106 dev_priv->mm.object_memory -= size;
Daniel Vetterc20e8352013-07-24 22:40:23 +0200107 spin_unlock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +0100108}
109
Chris Wilson21dd3732011-01-26 15:55:56 +0000110static int
Daniel Vetter33196de2012-11-14 17:14:05 +0100111i915_gem_wait_for_error(struct i915_gpu_error *error)
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100112{
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100113 int ret;
114
Daniel Vetter7abb6902013-05-24 21:29:32 +0200115#define EXIT_COND (!i915_reset_in_progress(error) || \
116 i915_terminally_wedged(error))
Daniel Vetter1f83fee2012-11-15 17:17:22 +0100117 if (EXIT_COND)
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100118 return 0;
119
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200120 /*
121 * Only wait 10 seconds for the gpu reset to complete to avoid hanging
122 * userspace. If it takes that long something really bad is going on and
123 * we should simply try to bail out and fail as gracefully as possible.
124 */
Daniel Vetter1f83fee2012-11-15 17:17:22 +0100125 ret = wait_event_interruptible_timeout(error->reset_queue,
126 EXIT_COND,
127 10*HZ);
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200128 if (ret == 0) {
129 DRM_ERROR("Timed out waiting for the gpu reset to complete\n");
130 return -EIO;
131 } else if (ret < 0) {
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100132 return ret;
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200133 }
Daniel Vetter1f83fee2012-11-15 17:17:22 +0100134#undef EXIT_COND
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100135
Chris Wilson21dd3732011-01-26 15:55:56 +0000136 return 0;
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100137}
138
Chris Wilson54cf91d2010-11-25 18:00:26 +0000139int i915_mutex_lock_interruptible(struct drm_device *dev)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100140{
Daniel Vetter33196de2012-11-14 17:14:05 +0100141 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson76c1dec2010-09-25 11:22:51 +0100142 int ret;
143
Daniel Vetter33196de2012-11-14 17:14:05 +0100144 ret = i915_gem_wait_for_error(&dev_priv->gpu_error);
Chris Wilson76c1dec2010-09-25 11:22:51 +0100145 if (ret)
146 return ret;
147
148 ret = mutex_lock_interruptible(&dev->struct_mutex);
149 if (ret)
150 return ret;
151
Chris Wilson23bc5982010-09-29 16:10:57 +0100152 WARN_ON(i915_verify_lists(dev));
Chris Wilson76c1dec2010-09-25 11:22:51 +0100153 return 0;
154}
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100155
Chris Wilson7d1c4802010-08-07 21:45:03 +0100156static inline bool
Chris Wilson05394f32010-11-08 19:18:58 +0000157i915_gem_object_is_inactive(struct drm_i915_gem_object *obj)
Chris Wilson7d1c4802010-08-07 21:45:03 +0100158{
Ben Widawsky98438772013-07-31 17:00:12 -0700159 return i915_gem_obj_bound_any(obj) && !obj->active;
Chris Wilson7d1c4802010-08-07 21:45:03 +0100160}
161
Eric Anholt673a3942008-07-30 12:06:12 -0700162int
Eric Anholt5a125c32008-10-22 21:40:13 -0700163i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000164 struct drm_file *file)
Eric Anholt5a125c32008-10-22 21:40:13 -0700165{
Chris Wilson73aa8082010-09-30 11:46:12 +0100166 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt5a125c32008-10-22 21:40:13 -0700167 struct drm_i915_gem_get_aperture *args = data;
Chris Wilson6299f992010-11-24 12:23:44 +0000168 struct drm_i915_gem_object *obj;
169 size_t pinned;
Eric Anholt5a125c32008-10-22 21:40:13 -0700170
Chris Wilson6299f992010-11-24 12:23:44 +0000171 pinned = 0;
Chris Wilson73aa8082010-09-30 11:46:12 +0100172 mutex_lock(&dev->struct_mutex);
Ben Widawsky35c20a62013-05-31 11:28:48 -0700173 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list)
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800174 if (i915_gem_obj_is_pinned(obj))
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700175 pinned += i915_gem_obj_ggtt_size(obj);
Chris Wilson73aa8082010-09-30 11:46:12 +0100176 mutex_unlock(&dev->struct_mutex);
Eric Anholt5a125c32008-10-22 21:40:13 -0700177
Ben Widawsky853ba5d2013-07-16 16:50:05 -0700178 args->aper_size = dev_priv->gtt.base.total;
Akshay Joshi0206e352011-08-16 15:34:10 -0400179 args->aper_available_size = args->aper_size - pinned;
Chris Wilson6299f992010-11-24 12:23:44 +0000180
Eric Anholt5a125c32008-10-22 21:40:13 -0700181 return 0;
182}
183
Chris Wilson6a2c4232014-11-04 04:51:40 -0800184static int
185i915_gem_object_get_pages_phys(struct drm_i915_gem_object *obj)
Chris Wilson00731152014-05-21 12:42:56 +0100186{
Chris Wilson6a2c4232014-11-04 04:51:40 -0800187 struct address_space *mapping = file_inode(obj->base.filp)->i_mapping;
188 char *vaddr = obj->phys_handle->vaddr;
189 struct sg_table *st;
190 struct scatterlist *sg;
191 int i;
Chris Wilson00731152014-05-21 12:42:56 +0100192
Chris Wilson6a2c4232014-11-04 04:51:40 -0800193 if (WARN_ON(i915_gem_object_needs_bit17_swizzle(obj)))
194 return -EINVAL;
Chris Wilson00731152014-05-21 12:42:56 +0100195
Chris Wilson6a2c4232014-11-04 04:51:40 -0800196 for (i = 0; i < obj->base.size / PAGE_SIZE; i++) {
197 struct page *page;
198 char *src;
199
200 page = shmem_read_mapping_page(mapping, i);
201 if (IS_ERR(page))
202 return PTR_ERR(page);
203
204 src = kmap_atomic(page);
205 memcpy(vaddr, src, PAGE_SIZE);
206 drm_clflush_virt_range(vaddr, PAGE_SIZE);
207 kunmap_atomic(src);
208
209 page_cache_release(page);
210 vaddr += PAGE_SIZE;
211 }
212
213 i915_gem_chipset_flush(obj->base.dev);
214
215 st = kmalloc(sizeof(*st), GFP_KERNEL);
216 if (st == NULL)
217 return -ENOMEM;
218
219 if (sg_alloc_table(st, 1, GFP_KERNEL)) {
220 kfree(st);
221 return -ENOMEM;
222 }
223
224 sg = st->sgl;
225 sg->offset = 0;
226 sg->length = obj->base.size;
227
228 sg_dma_address(sg) = obj->phys_handle->busaddr;
229 sg_dma_len(sg) = obj->base.size;
230
231 obj->pages = st;
232 obj->has_dma_mapping = true;
233 return 0;
234}
235
236static void
237i915_gem_object_put_pages_phys(struct drm_i915_gem_object *obj)
238{
239 int ret;
240
241 BUG_ON(obj->madv == __I915_MADV_PURGED);
242
243 ret = i915_gem_object_set_to_cpu_domain(obj, true);
244 if (ret) {
245 /* In the event of a disaster, abandon all caches and
246 * hope for the best.
247 */
248 WARN_ON(ret != -EIO);
249 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
250 }
251
252 if (obj->madv == I915_MADV_DONTNEED)
253 obj->dirty = 0;
254
255 if (obj->dirty) {
Chris Wilson00731152014-05-21 12:42:56 +0100256 struct address_space *mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800257 char *vaddr = obj->phys_handle->vaddr;
Chris Wilson00731152014-05-21 12:42:56 +0100258 int i;
259
260 for (i = 0; i < obj->base.size / PAGE_SIZE; i++) {
Chris Wilson6a2c4232014-11-04 04:51:40 -0800261 struct page *page;
262 char *dst;
Chris Wilson00731152014-05-21 12:42:56 +0100263
Chris Wilson6a2c4232014-11-04 04:51:40 -0800264 page = shmem_read_mapping_page(mapping, i);
265 if (IS_ERR(page))
266 continue;
267
268 dst = kmap_atomic(page);
269 drm_clflush_virt_range(vaddr, PAGE_SIZE);
270 memcpy(dst, vaddr, PAGE_SIZE);
271 kunmap_atomic(dst);
272
273 set_page_dirty(page);
274 if (obj->madv == I915_MADV_WILLNEED)
Chris Wilson00731152014-05-21 12:42:56 +0100275 mark_page_accessed(page);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800276 page_cache_release(page);
Chris Wilson00731152014-05-21 12:42:56 +0100277 vaddr += PAGE_SIZE;
278 }
Chris Wilson6a2c4232014-11-04 04:51:40 -0800279 obj->dirty = 0;
Chris Wilson00731152014-05-21 12:42:56 +0100280 }
281
Chris Wilson6a2c4232014-11-04 04:51:40 -0800282 sg_free_table(obj->pages);
283 kfree(obj->pages);
284
285 obj->has_dma_mapping = false;
286}
287
288static void
289i915_gem_object_release_phys(struct drm_i915_gem_object *obj)
290{
291 drm_pci_free(obj->base.dev, obj->phys_handle);
292}
293
294static const struct drm_i915_gem_object_ops i915_gem_phys_ops = {
295 .get_pages = i915_gem_object_get_pages_phys,
296 .put_pages = i915_gem_object_put_pages_phys,
297 .release = i915_gem_object_release_phys,
298};
299
300static int
301drop_pages(struct drm_i915_gem_object *obj)
302{
303 struct i915_vma *vma, *next;
304 int ret;
305
306 drm_gem_object_reference(&obj->base);
307 list_for_each_entry_safe(vma, next, &obj->vma_list, vma_link)
308 if (i915_vma_unbind(vma))
309 break;
310
311 ret = i915_gem_object_put_pages(obj);
312 drm_gem_object_unreference(&obj->base);
313
314 return ret;
Chris Wilson00731152014-05-21 12:42:56 +0100315}
316
317int
318i915_gem_object_attach_phys(struct drm_i915_gem_object *obj,
319 int align)
320{
321 drm_dma_handle_t *phys;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800322 int ret;
Chris Wilson00731152014-05-21 12:42:56 +0100323
324 if (obj->phys_handle) {
325 if ((unsigned long)obj->phys_handle->vaddr & (align -1))
326 return -EBUSY;
327
328 return 0;
329 }
330
331 if (obj->madv != I915_MADV_WILLNEED)
332 return -EFAULT;
333
334 if (obj->base.filp == NULL)
335 return -EINVAL;
336
Chris Wilson6a2c4232014-11-04 04:51:40 -0800337 ret = drop_pages(obj);
338 if (ret)
339 return ret;
340
Chris Wilson00731152014-05-21 12:42:56 +0100341 /* create a new object */
342 phys = drm_pci_alloc(obj->base.dev, obj->base.size, align);
343 if (!phys)
344 return -ENOMEM;
345
Chris Wilson00731152014-05-21 12:42:56 +0100346 obj->phys_handle = phys;
Chris Wilson6a2c4232014-11-04 04:51:40 -0800347 obj->ops = &i915_gem_phys_ops;
348
349 return i915_gem_object_get_pages(obj);
Chris Wilson00731152014-05-21 12:42:56 +0100350}
351
352static int
353i915_gem_phys_pwrite(struct drm_i915_gem_object *obj,
354 struct drm_i915_gem_pwrite *args,
355 struct drm_file *file_priv)
356{
357 struct drm_device *dev = obj->base.dev;
358 void *vaddr = obj->phys_handle->vaddr + args->offset;
359 char __user *user_data = to_user_ptr(args->data_ptr);
Chris Wilson6a2c4232014-11-04 04:51:40 -0800360 int ret;
361
362 /* We manually control the domain here and pretend that it
363 * remains coherent i.e. in the GTT domain, like shmem_pwrite.
364 */
365 ret = i915_gem_object_wait_rendering(obj, false);
366 if (ret)
367 return ret;
Chris Wilson00731152014-05-21 12:42:56 +0100368
369 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
370 unsigned long unwritten;
371
372 /* The physical object once assigned is fixed for the lifetime
373 * of the obj, so we can safely drop the lock and continue
374 * to access vaddr.
375 */
376 mutex_unlock(&dev->struct_mutex);
377 unwritten = copy_from_user(vaddr, user_data, args->size);
378 mutex_lock(&dev->struct_mutex);
379 if (unwritten)
380 return -EFAULT;
381 }
382
Chris Wilson6a2c4232014-11-04 04:51:40 -0800383 drm_clflush_virt_range(vaddr, args->size);
Chris Wilson00731152014-05-21 12:42:56 +0100384 i915_gem_chipset_flush(dev);
385 return 0;
386}
387
Chris Wilson42dcedd2012-11-15 11:32:30 +0000388void *i915_gem_object_alloc(struct drm_device *dev)
389{
390 struct drm_i915_private *dev_priv = dev->dev_private;
Joe Perchesfac15c12013-08-29 13:11:07 -0700391 return kmem_cache_zalloc(dev_priv->slab, GFP_KERNEL);
Chris Wilson42dcedd2012-11-15 11:32:30 +0000392}
393
394void i915_gem_object_free(struct drm_i915_gem_object *obj)
395{
396 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
397 kmem_cache_free(dev_priv->slab, obj);
398}
399
Dave Airlieff72145b2011-02-07 12:16:14 +1000400static int
401i915_gem_create(struct drm_file *file,
402 struct drm_device *dev,
403 uint64_t size,
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/*
1156 * Compare seqno against outstanding lazy request. Emit a request if they are
1157 * equal.
1158 */
Sourab Gupta84c33a62014-06-02 16:47:17 +05301159int
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001160i915_gem_check_olr(struct intel_engine_cs *ring, u32 seqno)
Chris Wilsonb3612372012-08-24 09:35:08 +01001161{
1162 int ret;
1163
1164 BUG_ON(!mutex_is_locked(&ring->dev->struct_mutex));
1165
1166 ret = 0;
Chris Wilson18235212013-09-04 10:45:51 +01001167 if (seqno == ring->outstanding_lazy_seqno)
Mika Kuoppala0025c072013-06-12 12:35:30 +03001168 ret = i915_add_request(ring, NULL);
Chris Wilsonb3612372012-08-24 09:35:08 +01001169
1170 return ret;
1171}
1172
Chris Wilson094f9a52013-09-25 17:34:55 +01001173static void fake_irq(unsigned long data)
1174{
1175 wake_up_process((struct task_struct *)data);
1176}
1177
1178static bool missed_irq(struct drm_i915_private *dev_priv,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001179 struct intel_engine_cs *ring)
Chris Wilson094f9a52013-09-25 17:34:55 +01001180{
1181 return test_bit(ring->id, &dev_priv->gpu_error.missed_irq_rings);
1182}
1183
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001184static bool can_wait_boost(struct drm_i915_file_private *file_priv)
1185{
1186 if (file_priv == NULL)
1187 return true;
1188
1189 return !atomic_xchg(&file_priv->rps_wait_boost, true);
1190}
1191
Chris Wilsonb3612372012-08-24 09:35:08 +01001192/**
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001193 * __i915_wait_seqno - wait until execution of seqno has finished
Chris Wilsonb3612372012-08-24 09:35:08 +01001194 * @ring: the ring expected to report seqno
1195 * @seqno: duh!
Daniel Vetterf69061b2012-12-06 09:01:42 +01001196 * @reset_counter: reset sequence associated with the given seqno
Chris Wilsonb3612372012-08-24 09:35:08 +01001197 * @interruptible: do an interruptible wait (normally yes)
1198 * @timeout: in - how long to wait (NULL forever); out - how much time remaining
1199 *
Daniel Vetterf69061b2012-12-06 09:01:42 +01001200 * Note: It is of utmost importance that the passed in seqno and reset_counter
1201 * values have been read by the caller in an smp safe manner. Where read-side
1202 * locks are involved, it is sufficient to read the reset_counter before
1203 * unlocking the lock that protects the seqno. For lockless tricks, the
1204 * reset_counter _must_ be read before, and an appropriate smp_rmb must be
1205 * inserted.
1206 *
Chris Wilsonb3612372012-08-24 09:35:08 +01001207 * Returns 0 if the seqno was found within the alloted time. Else returns the
1208 * errno with remaining time filled in timeout argument.
1209 */
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001210int __i915_wait_seqno(struct intel_engine_cs *ring, u32 seqno,
Daniel Vetterf69061b2012-12-06 09:01:42 +01001211 unsigned reset_counter,
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001212 bool interruptible,
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001213 s64 *timeout,
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001214 struct drm_i915_file_private *file_priv)
Chris Wilsonb3612372012-08-24 09:35:08 +01001215{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001216 struct drm_device *dev = ring->dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03001217 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001218 const bool irq_test_in_progress =
1219 ACCESS_ONCE(dev_priv->gpu_error.test_irq_rings) & intel_ring_flag(ring);
Chris Wilson094f9a52013-09-25 17:34:55 +01001220 DEFINE_WAIT(wait);
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001221 unsigned long timeout_expire;
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001222 s64 before, now;
Chris Wilsonb3612372012-08-24 09:35:08 +01001223 int ret;
1224
Jesse Barnes9df7575f2014-06-20 09:29:20 -07001225 WARN(!intel_irqs_enabled(dev_priv), "IRQs disabled");
Paulo Zanonic67a4702013-08-19 13:18:09 -03001226
Chris Wilsonb3612372012-08-24 09:35:08 +01001227 if (i915_seqno_passed(ring->get_seqno(ring, true), seqno))
1228 return 0;
1229
Daniel Vetter7bd0e222014-12-04 11:12:54 +01001230 timeout_expire = timeout ?
1231 jiffies + nsecs_to_jiffies_timeout((u64)*timeout) : 0;
Chris Wilsonb3612372012-08-24 09:35:08 +01001232
Chris Wilsonec5cc0f2014-06-12 10:28:55 +01001233 if (INTEL_INFO(dev)->gen >= 6 && ring->id == RCS && can_wait_boost(file_priv)) {
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001234 gen6_rps_boost(dev_priv);
1235 if (file_priv)
1236 mod_delayed_work(dev_priv->wq,
1237 &file_priv->mm.idle_work,
1238 msecs_to_jiffies(100));
1239 }
1240
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001241 if (!irq_test_in_progress && WARN_ON(!ring->irq_get(ring)))
Chris Wilsonb3612372012-08-24 09:35:08 +01001242 return -ENODEV;
1243
Chris Wilson094f9a52013-09-25 17:34:55 +01001244 /* Record current time in case interrupted by signal, or wedged */
1245 trace_i915_gem_request_wait_begin(ring, seqno);
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
Chris Wilson094f9a52013-09-25 17:34:55 +01001264 if (i915_seqno_passed(ring->get_seqno(ring, false), seqno)) {
1265 ret = 0;
1266 break;
1267 }
Chris Wilsonb3612372012-08-24 09:35:08 +01001268
Chris Wilson094f9a52013-09-25 17:34:55 +01001269 if (interruptible && signal_pending(current)) {
1270 ret = -ERESTARTSYS;
1271 break;
1272 }
1273
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001274 if (timeout && time_after_eq(jiffies, timeout_expire)) {
Chris Wilson094f9a52013-09-25 17:34:55 +01001275 ret = -ETIME;
1276 break;
1277 }
1278
1279 timer.function = NULL;
1280 if (timeout || missed_irq(dev_priv, ring)) {
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001281 unsigned long expire;
1282
Chris Wilson094f9a52013-09-25 17:34:55 +01001283 setup_timer_on_stack(&timer, fake_irq, (unsigned long)current);
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001284 expire = missed_irq(dev_priv, ring) ? jiffies + 1 : timeout_expire;
Chris Wilson094f9a52013-09-25 17:34:55 +01001285 mod_timer(&timer, expire);
1286 }
1287
Chris Wilson5035c272013-10-04 09:58:46 +01001288 io_schedule();
Chris Wilson094f9a52013-09-25 17:34:55 +01001289
Chris Wilson094f9a52013-09-25 17:34:55 +01001290 if (timer.function) {
1291 del_singleshot_timer_sync(&timer);
1292 destroy_timer_on_stack(&timer);
1293 }
1294 }
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001295 now = ktime_get_raw_ns();
Chris Wilson094f9a52013-09-25 17:34:55 +01001296 trace_i915_gem_request_wait_end(ring, seqno);
Chris Wilsonb3612372012-08-24 09:35:08 +01001297
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001298 if (!irq_test_in_progress)
1299 ring->irq_put(ring);
Chris Wilson094f9a52013-09-25 17:34:55 +01001300
1301 finish_wait(&ring->irq_queue, &wait);
Chris Wilsonb3612372012-08-24 09:35:08 +01001302
1303 if (timeout) {
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001304 s64 tres = *timeout - (now - before);
1305
1306 *timeout = tres < 0 ? 0 : tres;
Daniel Vetter9cca3062014-11-28 10:29:55 +01001307
1308 /*
1309 * Apparently ktime isn't accurate enough and occasionally has a
1310 * bit of mismatch in the jiffies<->nsecs<->ktime loop. So patch
1311 * things up to make the test happy. We allow up to 1 jiffy.
1312 *
1313 * This is a regrssion from the timespec->ktime conversion.
1314 */
1315 if (ret == -ETIME && *timeout < jiffies_to_usecs(1)*1000)
1316 *timeout = 0;
Chris Wilsonb3612372012-08-24 09:35:08 +01001317 }
1318
Chris Wilson094f9a52013-09-25 17:34:55 +01001319 return ret;
Chris Wilsonb3612372012-08-24 09:35:08 +01001320}
1321
1322/**
1323 * Waits for a sequence number to be signaled, and cleans up the
1324 * request and object lists appropriately for that event.
1325 */
1326int
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001327i915_wait_seqno(struct intel_engine_cs *ring, uint32_t seqno)
Chris Wilsonb3612372012-08-24 09:35:08 +01001328{
1329 struct drm_device *dev = ring->dev;
1330 struct drm_i915_private *dev_priv = dev->dev_private;
1331 bool interruptible = dev_priv->mm.interruptible;
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001332 unsigned reset_counter;
Chris Wilsonb3612372012-08-24 09:35:08 +01001333 int ret;
1334
1335 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
1336 BUG_ON(seqno == 0);
1337
Daniel Vetter33196de2012-11-14 17:14:05 +01001338 ret = i915_gem_check_wedge(&dev_priv->gpu_error, interruptible);
Chris Wilsonb3612372012-08-24 09:35:08 +01001339 if (ret)
1340 return ret;
1341
1342 ret = i915_gem_check_olr(ring, seqno);
1343 if (ret)
1344 return ret;
1345
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001346 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
1347 return __i915_wait_seqno(ring, seqno, reset_counter, interruptible,
1348 NULL, NULL);
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 *
1360 * Note that the last_write_seqno is always the earlier of
1361 * the two (read/write) seqno, so if we haved successfully waited,
1362 * we know we have passed the last write.
1363 */
1364 obj->last_write_seqno = 0;
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{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001377 struct intel_engine_cs *ring = obj->ring;
Chris Wilsonb3612372012-08-24 09:35:08 +01001378 u32 seqno;
1379 int ret;
1380
1381 seqno = readonly ? obj->last_write_seqno : obj->last_read_seqno;
1382 if (seqno == 0)
1383 return 0;
1384
1385 ret = i915_wait_seqno(ring, seqno);
1386 if (ret)
1387 return ret;
1388
John Harrison8e6395492014-10-30 18:40:53 +00001389 return i915_gem_object_wait_rendering__tail(obj);
Chris Wilsonb3612372012-08-24 09:35:08 +01001390}
1391
Chris Wilson3236f572012-08-24 09:35:09 +01001392/* A nonblocking variant of the above wait. This is a highly dangerous routine
1393 * as the object state may change during this call.
1394 */
1395static __must_check int
1396i915_gem_object_wait_rendering__nonblocking(struct drm_i915_gem_object *obj,
Chris Wilson6e4930f2014-02-07 18:37:06 -02001397 struct drm_i915_file_private *file_priv,
Chris Wilson3236f572012-08-24 09:35:09 +01001398 bool readonly)
1399{
1400 struct drm_device *dev = obj->base.dev;
1401 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001402 struct intel_engine_cs *ring = obj->ring;
Daniel Vetterf69061b2012-12-06 09:01:42 +01001403 unsigned reset_counter;
Chris Wilson3236f572012-08-24 09:35:09 +01001404 u32 seqno;
1405 int ret;
1406
1407 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
1408 BUG_ON(!dev_priv->mm.interruptible);
1409
1410 seqno = readonly ? obj->last_write_seqno : obj->last_read_seqno;
1411 if (seqno == 0)
1412 return 0;
1413
Daniel Vetter33196de2012-11-14 17:14:05 +01001414 ret = i915_gem_check_wedge(&dev_priv->gpu_error, true);
Chris Wilson3236f572012-08-24 09:35:09 +01001415 if (ret)
1416 return ret;
1417
1418 ret = i915_gem_check_olr(ring, seqno);
1419 if (ret)
1420 return ret;
1421
Daniel Vetterf69061b2012-12-06 09:01:42 +01001422 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilson3236f572012-08-24 09:35:09 +01001423 mutex_unlock(&dev->struct_mutex);
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001424 ret = __i915_wait_seqno(ring, seqno, reset_counter, true, NULL,
1425 file_priv);
Chris Wilson3236f572012-08-24 09:35:09 +01001426 mutex_lock(&dev->struct_mutex);
Chris Wilsond26e3af2013-06-29 22:05:26 +01001427 if (ret)
1428 return ret;
Chris Wilson3236f572012-08-24 09:35:09 +01001429
John Harrison8e6395492014-10-30 18:40:53 +00001430 return i915_gem_object_wait_rendering__tail(obj);
Chris Wilson3236f572012-08-24 09:35:09 +01001431}
1432
Eric Anholt673a3942008-07-30 12:06:12 -07001433/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001434 * Called when user space prepares to use an object with the CPU, either
1435 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -07001436 */
1437int
1438i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001439 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001440{
1441 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001442 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001443 uint32_t read_domains = args->read_domains;
1444 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07001445 int ret;
1446
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001447 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +01001448 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001449 return -EINVAL;
1450
Chris Wilson21d509e2009-06-06 09:46:02 +01001451 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001452 return -EINVAL;
1453
1454 /* Having something in the write domain implies it's in the read
1455 * domain, and only that read domain. Enforce that in the request.
1456 */
1457 if (write_domain != 0 && read_domains != write_domain)
1458 return -EINVAL;
1459
Chris Wilson76c1dec2010-09-25 11:22:51 +01001460 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001461 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001462 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001463
Chris Wilson05394f32010-11-08 19:18:58 +00001464 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001465 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001466 ret = -ENOENT;
1467 goto unlock;
Chris Wilson76c1dec2010-09-25 11:22:51 +01001468 }
Jesse Barnes652c3932009-08-17 13:31:43 -07001469
Chris Wilson3236f572012-08-24 09:35:09 +01001470 /* Try to flush the object off the GPU without holding the lock.
1471 * We will repeat the flush holding the lock in the normal manner
1472 * to catch cases where we are gazumped.
1473 */
Chris Wilson6e4930f2014-02-07 18:37:06 -02001474 ret = i915_gem_object_wait_rendering__nonblocking(obj,
1475 file->driver_priv,
1476 !write_domain);
Chris Wilson3236f572012-08-24 09:35:09 +01001477 if (ret)
1478 goto unref;
1479
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001480 if (read_domains & I915_GEM_DOMAIN_GTT) {
1481 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Eric Anholt02354392008-11-26 13:58:13 -08001482
1483 /* Silently promote "you're not bound, there was nothing to do"
1484 * to success, since the client was just asking us to
1485 * make sure everything was done.
1486 */
1487 if (ret == -EINVAL)
1488 ret = 0;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001489 } else {
Eric Anholte47c68e2008-11-14 13:35:19 -08001490 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001491 }
1492
Chris Wilson3236f572012-08-24 09:35:09 +01001493unref:
Chris Wilson05394f32010-11-08 19:18:58 +00001494 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001495unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001496 mutex_unlock(&dev->struct_mutex);
1497 return ret;
1498}
1499
1500/**
1501 * Called when user space has done writes to this buffer
1502 */
1503int
1504i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001505 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001506{
1507 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001508 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001509 int ret = 0;
1510
Chris Wilson76c1dec2010-09-25 11:22:51 +01001511 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001512 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001513 return ret;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001514
Chris Wilson05394f32010-11-08 19:18:58 +00001515 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001516 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001517 ret = -ENOENT;
1518 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07001519 }
1520
Eric Anholt673a3942008-07-30 12:06:12 -07001521 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilson2c225692013-08-09 12:26:45 +01001522 if (obj->pin_display)
1523 i915_gem_object_flush_cpu_write_domain(obj, true);
Eric Anholte47c68e2008-11-14 13:35:19 -08001524
Chris Wilson05394f32010-11-08 19:18:58 +00001525 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001526unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001527 mutex_unlock(&dev->struct_mutex);
1528 return ret;
1529}
1530
1531/**
1532 * Maps the contents of an object, returning the address it is mapped
1533 * into.
1534 *
1535 * While the mapping holds a reference on the contents of the object, it doesn't
1536 * imply a ref on the object itself.
Daniel Vetter34367382014-10-16 12:28:18 +02001537 *
1538 * IMPORTANT:
1539 *
1540 * DRM driver writers who look a this function as an example for how to do GEM
1541 * mmap support, please don't implement mmap support like here. The modern way
1542 * to implement DRM mmap support is with an mmap offset ioctl (like
1543 * i915_gem_mmap_gtt) and then using the mmap syscall on the DRM fd directly.
1544 * That way debug tooling like valgrind will understand what's going on, hiding
1545 * the mmap call in a driver private ioctl will break that. The i915 driver only
1546 * does cpu mmaps this way because we didn't know better.
Eric Anholt673a3942008-07-30 12:06:12 -07001547 */
1548int
1549i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001550 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001551{
1552 struct drm_i915_gem_mmap *args = data;
1553 struct drm_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001554 unsigned long addr;
1555
Chris Wilson05394f32010-11-08 19:18:58 +00001556 obj = drm_gem_object_lookup(dev, file, args->handle);
Eric Anholt673a3942008-07-30 12:06:12 -07001557 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001558 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001559
Daniel Vetter1286ff72012-05-10 15:25:09 +02001560 /* prime objects have no backing filp to GEM mmap
1561 * pages from.
1562 */
1563 if (!obj->filp) {
1564 drm_gem_object_unreference_unlocked(obj);
1565 return -EINVAL;
1566 }
1567
Linus Torvalds6be5ceb2012-04-20 17:13:58 -07001568 addr = vm_mmap(obj->filp, 0, args->size,
Eric Anholt673a3942008-07-30 12:06:12 -07001569 PROT_READ | PROT_WRITE, MAP_SHARED,
1570 args->offset);
Luca Barbieribc9025b2010-02-09 05:49:12 +00001571 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001572 if (IS_ERR((void *)addr))
1573 return addr;
1574
1575 args->addr_ptr = (uint64_t) addr;
1576
1577 return 0;
1578}
1579
Jesse Barnesde151cf2008-11-12 10:03:55 -08001580/**
1581 * i915_gem_fault - fault a page into the GTT
1582 * vma: VMA in question
1583 * vmf: fault info
1584 *
1585 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1586 * from userspace. The fault handler takes care of binding the object to
1587 * the GTT (if needed), allocating and programming a fence register (again,
1588 * only if needed based on whether the old reg is still valid or the object
1589 * is tiled) and inserting a new PTE into the faulting process.
1590 *
1591 * Note that the faulting process may involve evicting existing objects
1592 * from the GTT and/or fence registers to make room. So performance may
1593 * suffer if the GTT working set is large or there are few fence registers
1594 * left.
1595 */
1596int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1597{
Chris Wilson05394f32010-11-08 19:18:58 +00001598 struct drm_i915_gem_object *obj = to_intel_bo(vma->vm_private_data);
1599 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03001600 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001601 pgoff_t page_offset;
1602 unsigned long pfn;
1603 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001604 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001605
Paulo Zanonif65c9162013-11-27 18:20:34 -02001606 intel_runtime_pm_get(dev_priv);
1607
Jesse Barnesde151cf2008-11-12 10:03:55 -08001608 /* We don't use vmf->pgoff since that has the fake offset */
1609 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1610 PAGE_SHIFT;
1611
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001612 ret = i915_mutex_lock_interruptible(dev);
1613 if (ret)
1614 goto out;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001615
Chris Wilsondb53a302011-02-03 11:57:46 +00001616 trace_i915_gem_object_fault(obj, page_offset, true, write);
1617
Chris Wilson6e4930f2014-02-07 18:37:06 -02001618 /* Try to flush the object off the GPU first without holding the lock.
1619 * Upon reacquiring the lock, we will perform our sanity checks and then
1620 * repeat the flush holding the lock in the normal manner to catch cases
1621 * where we are gazumped.
1622 */
1623 ret = i915_gem_object_wait_rendering__nonblocking(obj, NULL, !write);
1624 if (ret)
1625 goto unlock;
1626
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001627 /* Access to snoopable pages through the GTT is incoherent. */
1628 if (obj->cache_level != I915_CACHE_NONE && !HAS_LLC(dev)) {
Chris Wilsonddeff6e2014-05-28 16:16:41 +01001629 ret = -EFAULT;
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001630 goto unlock;
1631 }
1632
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001633 /* Now bind it into the GTT if needed */
Daniel Vetter1ec9e262014-02-14 14:01:11 +01001634 ret = i915_gem_obj_ggtt_pin(obj, 0, PIN_MAPPABLE);
Chris Wilsond9e86c02010-11-10 16:40:20 +00001635 if (ret)
1636 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001637
Chris Wilsonc9839302012-11-20 10:45:17 +00001638 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1639 if (ret)
1640 goto unpin;
1641
1642 ret = i915_gem_object_get_fence(obj);
1643 if (ret)
1644 goto unpin;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001645
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001646 /* Finally, remap it using the new GTT offset */
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001647 pfn = dev_priv->gtt.mappable_base + i915_gem_obj_ggtt_offset(obj);
1648 pfn >>= PAGE_SHIFT;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001649
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001650 if (!obj->fault_mappable) {
Ville Syrjäläbeff0d02014-06-17 21:03:00 +03001651 unsigned long size = min_t(unsigned long,
1652 vma->vm_end - vma->vm_start,
1653 obj->base.size);
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001654 int i;
1655
Ville Syrjäläbeff0d02014-06-17 21:03:00 +03001656 for (i = 0; i < size >> PAGE_SHIFT; i++) {
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001657 ret = vm_insert_pfn(vma,
1658 (unsigned long)vma->vm_start + i * PAGE_SIZE,
1659 pfn + i);
1660 if (ret)
1661 break;
1662 }
1663
1664 obj->fault_mappable = true;
1665 } else
1666 ret = vm_insert_pfn(vma,
1667 (unsigned long)vmf->virtual_address,
1668 pfn + page_offset);
Chris Wilsonc9839302012-11-20 10:45:17 +00001669unpin:
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08001670 i915_gem_object_ggtt_unpin(obj);
Chris Wilsonc7150892009-09-23 00:43:56 +01001671unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001672 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001673out:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001674 switch (ret) {
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001675 case -EIO:
Daniel Vetter2232f032014-09-04 09:36:18 +02001676 /*
1677 * We eat errors when the gpu is terminally wedged to avoid
1678 * userspace unduly crashing (gl has no provisions for mmaps to
1679 * fail). But any other -EIO isn't ours (e.g. swap in failure)
1680 * and so needs to be reported.
1681 */
1682 if (!i915_terminally_wedged(&dev_priv->gpu_error)) {
Paulo Zanonif65c9162013-11-27 18:20:34 -02001683 ret = VM_FAULT_SIGBUS;
1684 break;
1685 }
Chris Wilson045e7692010-11-07 09:18:22 +00001686 case -EAGAIN:
Daniel Vetter571c6082013-09-12 17:57:28 +02001687 /*
1688 * EAGAIN means the gpu is hung and we'll wait for the error
1689 * handler to reset everything when re-faulting in
1690 * i915_mutex_lock_interruptible.
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001691 */
Chris Wilsonc7150892009-09-23 00:43:56 +01001692 case 0:
1693 case -ERESTARTSYS:
Chris Wilsonbed636a2011-02-11 20:31:19 +00001694 case -EINTR:
Dmitry Rogozhkine79e0fe2012-10-03 17:15:26 +03001695 case -EBUSY:
1696 /*
1697 * EBUSY is ok: this just means that another thread
1698 * already did the job.
1699 */
Paulo Zanonif65c9162013-11-27 18:20:34 -02001700 ret = VM_FAULT_NOPAGE;
1701 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001702 case -ENOMEM:
Paulo Zanonif65c9162013-11-27 18:20:34 -02001703 ret = VM_FAULT_OOM;
1704 break;
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001705 case -ENOSPC:
Chris Wilson45d67812014-01-31 11:34:57 +00001706 case -EFAULT:
Paulo Zanonif65c9162013-11-27 18:20:34 -02001707 ret = VM_FAULT_SIGBUS;
1708 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001709 default:
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001710 WARN_ONCE(ret, "unhandled error in i915_gem_fault: %i\n", ret);
Paulo Zanonif65c9162013-11-27 18:20:34 -02001711 ret = VM_FAULT_SIGBUS;
1712 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001713 }
Paulo Zanonif65c9162013-11-27 18:20:34 -02001714
1715 intel_runtime_pm_put(dev_priv);
1716 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001717}
1718
1719/**
Chris Wilson901782b2009-07-10 08:18:50 +01001720 * i915_gem_release_mmap - remove physical page mappings
1721 * @obj: obj in question
1722 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001723 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001724 * relinquish ownership of the pages back to the system.
1725 *
1726 * It is vital that we remove the page mapping if we have mapped a tiled
1727 * object through the GTT and then lose the fence register due to
1728 * resource pressure. Similarly if the object has been moved out of the
1729 * aperture, than pages mapped into userspace must be revoked. Removing the
1730 * mapping will then trigger a page fault on the next user access, allowing
1731 * fixup by i915_gem_fault().
1732 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001733void
Chris Wilson05394f32010-11-08 19:18:58 +00001734i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01001735{
Chris Wilson6299f992010-11-24 12:23:44 +00001736 if (!obj->fault_mappable)
1737 return;
Chris Wilson901782b2009-07-10 08:18:50 +01001738
David Herrmann6796cb12014-01-03 14:24:19 +01001739 drm_vma_node_unmap(&obj->base.vma_node,
1740 obj->base.dev->anon_inode->i_mapping);
Chris Wilson6299f992010-11-24 12:23:44 +00001741 obj->fault_mappable = false;
Chris Wilson901782b2009-07-10 08:18:50 +01001742}
1743
Chris Wilsoneedd10f2014-06-16 08:57:44 +01001744void
1745i915_gem_release_all_mmaps(struct drm_i915_private *dev_priv)
1746{
1747 struct drm_i915_gem_object *obj;
1748
1749 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list)
1750 i915_gem_release_mmap(obj);
1751}
1752
Imre Deak0fa87792013-01-07 21:47:35 +02001753uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001754i915_gem_get_gtt_size(struct drm_device *dev, uint32_t size, int tiling_mode)
Chris Wilson92b88ae2010-11-09 11:47:32 +00001755{
Chris Wilsone28f8712011-07-18 13:11:49 -07001756 uint32_t gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001757
1758 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001759 tiling_mode == I915_TILING_NONE)
1760 return size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001761
1762 /* Previous chips need a power-of-two fence region when tiling */
1763 if (INTEL_INFO(dev)->gen == 3)
Chris Wilsone28f8712011-07-18 13:11:49 -07001764 gtt_size = 1024*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001765 else
Chris Wilsone28f8712011-07-18 13:11:49 -07001766 gtt_size = 512*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001767
Chris Wilsone28f8712011-07-18 13:11:49 -07001768 while (gtt_size < size)
1769 gtt_size <<= 1;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001770
Chris Wilsone28f8712011-07-18 13:11:49 -07001771 return gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001772}
1773
Jesse Barnesde151cf2008-11-12 10:03:55 -08001774/**
1775 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1776 * @obj: object to check
1777 *
1778 * Return the required GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01001779 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08001780 */
Imre Deakd8651102013-01-07 21:47:33 +02001781uint32_t
1782i915_gem_get_gtt_alignment(struct drm_device *dev, uint32_t size,
1783 int tiling_mode, bool fenced)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001784{
Jesse Barnesde151cf2008-11-12 10:03:55 -08001785 /*
1786 * Minimum alignment is 4k (GTT page size), but might be greater
1787 * if a fence register is needed for the object.
1788 */
Imre Deakd8651102013-01-07 21:47:33 +02001789 if (INTEL_INFO(dev)->gen >= 4 || (!fenced && IS_G33(dev)) ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001790 tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001791 return 4096;
1792
1793 /*
1794 * Previous chips need to be aligned to the size of the smallest
1795 * fence register that can contain the object.
1796 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001797 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01001798}
1799
Chris Wilsond8cb5082012-08-11 15:41:03 +01001800static int i915_gem_object_create_mmap_offset(struct drm_i915_gem_object *obj)
1801{
1802 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
1803 int ret;
1804
David Herrmann0de23972013-07-24 21:07:52 +02001805 if (drm_vma_node_has_offset(&obj->base.vma_node))
Chris Wilsond8cb5082012-08-11 15:41:03 +01001806 return 0;
1807
Daniel Vetterda494d72012-12-20 15:11:16 +01001808 dev_priv->mm.shrinker_no_lock_stealing = true;
1809
Chris Wilsond8cb5082012-08-11 15:41:03 +01001810 ret = drm_gem_create_mmap_offset(&obj->base);
1811 if (ret != -ENOSPC)
Daniel Vetterda494d72012-12-20 15:11:16 +01001812 goto out;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001813
1814 /* Badly fragmented mmap space? The only way we can recover
1815 * space is by destroying unwanted objects. We can't randomly release
1816 * mmap_offsets as userspace expects them to be persistent for the
1817 * lifetime of the objects. The closest we can is to release the
1818 * offsets on purgeable objects by truncating it and marking it purged,
1819 * which prevents userspace from ever using that object again.
1820 */
Chris Wilson21ab4e72014-09-09 11:16:08 +01001821 i915_gem_shrink(dev_priv,
1822 obj->base.size >> PAGE_SHIFT,
1823 I915_SHRINK_BOUND |
1824 I915_SHRINK_UNBOUND |
1825 I915_SHRINK_PURGEABLE);
Chris Wilsond8cb5082012-08-11 15:41:03 +01001826 ret = drm_gem_create_mmap_offset(&obj->base);
1827 if (ret != -ENOSPC)
Daniel Vetterda494d72012-12-20 15:11:16 +01001828 goto out;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001829
1830 i915_gem_shrink_all(dev_priv);
Daniel Vetterda494d72012-12-20 15:11:16 +01001831 ret = drm_gem_create_mmap_offset(&obj->base);
1832out:
1833 dev_priv->mm.shrinker_no_lock_stealing = false;
1834
1835 return ret;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001836}
1837
1838static void i915_gem_object_free_mmap_offset(struct drm_i915_gem_object *obj)
1839{
Chris Wilsond8cb5082012-08-11 15:41:03 +01001840 drm_gem_free_mmap_offset(&obj->base);
1841}
1842
Thomas Hellstrom355a7012014-11-20 09:56:25 +01001843static int
Dave Airlieff72145b2011-02-07 12:16:14 +10001844i915_gem_mmap_gtt(struct drm_file *file,
1845 struct drm_device *dev,
Thomas Hellstrom355a7012014-11-20 09:56:25 +01001846 uint32_t handle, bool dumb,
Dave Airlieff72145b2011-02-07 12:16:14 +10001847 uint64_t *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001848{
Chris Wilsonda761a62010-10-27 17:37:08 +01001849 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001850 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001851 int ret;
1852
Chris Wilson76c1dec2010-09-25 11:22:51 +01001853 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001854 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001855 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001856
Dave Airlieff72145b2011-02-07 12:16:14 +10001857 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001858 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001859 ret = -ENOENT;
1860 goto unlock;
1861 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001862
Thomas Hellstrom355a7012014-11-20 09:56:25 +01001863 /*
1864 * We don't allow dumb mmaps on objects created using another
1865 * interface.
1866 */
1867 WARN_ONCE(dumb && !(obj->base.dumb || obj->base.import_attach),
1868 "Illegal dumb map of accelerated buffer.\n");
1869
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001870 if (obj->base.size > dev_priv->gtt.mappable_end) {
Chris Wilsonda761a62010-10-27 17:37:08 +01001871 ret = -E2BIG;
Eric Anholtff56b0b2011-10-31 23:16:21 -07001872 goto out;
Chris Wilsonda761a62010-10-27 17:37:08 +01001873 }
1874
Chris Wilson05394f32010-11-08 19:18:58 +00001875 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00001876 DRM_DEBUG("Attempting to mmap a purgeable buffer\n");
Chris Wilson8c99e572014-01-31 11:34:58 +00001877 ret = -EFAULT;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001878 goto out;
Chris Wilsonab182822009-09-22 18:46:17 +01001879 }
1880
Chris Wilsond8cb5082012-08-11 15:41:03 +01001881 ret = i915_gem_object_create_mmap_offset(obj);
1882 if (ret)
1883 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001884
David Herrmann0de23972013-07-24 21:07:52 +02001885 *offset = drm_vma_node_offset_addr(&obj->base.vma_node);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001886
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001887out:
Chris Wilson05394f32010-11-08 19:18:58 +00001888 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001889unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001890 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001891 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001892}
1893
Thomas Hellstrom355a7012014-11-20 09:56:25 +01001894int
1895i915_gem_dumb_map_offset(struct drm_file *file,
1896 struct drm_device *dev,
1897 uint32_t handle,
1898 uint64_t *offset)
1899{
1900 return i915_gem_mmap_gtt(file, dev, handle, true, offset);
1901}
1902
Dave Airlieff72145b2011-02-07 12:16:14 +10001903/**
1904 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1905 * @dev: DRM device
1906 * @data: GTT mapping ioctl data
1907 * @file: GEM object info
1908 *
1909 * Simply returns the fake offset to userspace so it can mmap it.
1910 * The mmap call will end up in drm_gem_mmap(), which will set things
1911 * up so we can get faults in the handler above.
1912 *
1913 * The fault handler will take care of binding the object into the GTT
1914 * (since it may have been evicted to make room for something), allocating
1915 * a fence register, and mapping the appropriate aperture address into
1916 * userspace.
1917 */
1918int
1919i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
1920 struct drm_file *file)
1921{
1922 struct drm_i915_gem_mmap_gtt *args = data;
1923
Thomas Hellstrom355a7012014-11-20 09:56:25 +01001924 return i915_gem_mmap_gtt(file, dev, args->handle, false, &args->offset);
Dave Airlieff72145b2011-02-07 12:16:14 +10001925}
1926
Chris Wilson55372522014-03-25 13:23:06 +00001927static inline int
1928i915_gem_object_is_purgeable(struct drm_i915_gem_object *obj)
1929{
1930 return obj->madv == I915_MADV_DONTNEED;
1931}
1932
Daniel Vetter225067e2012-08-20 10:23:20 +02001933/* Immediately discard the backing storage */
1934static void
1935i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001936{
Chris Wilson4d6294bf2012-08-11 15:41:05 +01001937 i915_gem_object_free_mmap_offset(obj);
Daniel Vetter1286ff72012-05-10 15:25:09 +02001938
Chris Wilson4d6294bf2012-08-11 15:41:05 +01001939 if (obj->base.filp == NULL)
1940 return;
1941
Daniel Vetter225067e2012-08-20 10:23:20 +02001942 /* Our goal here is to return as much of the memory as
1943 * is possible back to the system as we are called from OOM.
1944 * To do this we must instruct the shmfs to drop all of its
1945 * backing pages, *now*.
Chris Wilsone5281cc2010-10-28 13:45:36 +01001946 */
Chris Wilson55372522014-03-25 13:23:06 +00001947 shmem_truncate_range(file_inode(obj->base.filp), 0, (loff_t)-1);
Daniel Vetter225067e2012-08-20 10:23:20 +02001948 obj->madv = __I915_MADV_PURGED;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001949}
Chris Wilsone5281cc2010-10-28 13:45:36 +01001950
Chris Wilson55372522014-03-25 13:23:06 +00001951/* Try to discard unwanted pages */
1952static void
1953i915_gem_object_invalidate(struct drm_i915_gem_object *obj)
Daniel Vetter225067e2012-08-20 10:23:20 +02001954{
Chris Wilson55372522014-03-25 13:23:06 +00001955 struct address_space *mapping;
1956
1957 switch (obj->madv) {
1958 case I915_MADV_DONTNEED:
1959 i915_gem_object_truncate(obj);
1960 case __I915_MADV_PURGED:
1961 return;
1962 }
1963
1964 if (obj->base.filp == NULL)
1965 return;
1966
1967 mapping = file_inode(obj->base.filp)->i_mapping,
1968 invalidate_mapping_pages(mapping, 0, (loff_t)-1);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001969}
1970
Chris Wilson5cdf5882010-09-27 15:51:07 +01001971static void
Chris Wilson05394f32010-11-08 19:18:58 +00001972i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001973{
Imre Deak90797e62013-02-18 19:28:03 +02001974 struct sg_page_iter sg_iter;
1975 int ret;
Daniel Vetter1286ff72012-05-10 15:25:09 +02001976
Chris Wilson05394f32010-11-08 19:18:58 +00001977 BUG_ON(obj->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07001978
Chris Wilson6c085a72012-08-20 11:40:46 +02001979 ret = i915_gem_object_set_to_cpu_domain(obj, true);
1980 if (ret) {
1981 /* In the event of a disaster, abandon all caches and
1982 * hope for the best.
1983 */
1984 WARN_ON(ret != -EIO);
Chris Wilson2c225692013-08-09 12:26:45 +01001985 i915_gem_clflush_object(obj, true);
Chris Wilson6c085a72012-08-20 11:40:46 +02001986 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
1987 }
1988
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001989 if (i915_gem_object_needs_bit17_swizzle(obj))
Eric Anholt280b7132009-03-12 16:56:27 -07001990 i915_gem_object_save_bit_17_swizzle(obj);
1991
Chris Wilson05394f32010-11-08 19:18:58 +00001992 if (obj->madv == I915_MADV_DONTNEED)
1993 obj->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01001994
Imre Deak90797e62013-02-18 19:28:03 +02001995 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents, 0) {
Imre Deak2db76d72013-03-26 15:14:18 +02001996 struct page *page = sg_page_iter_page(&sg_iter);
Chris Wilson9da3da62012-06-01 15:20:22 +01001997
Chris Wilson05394f32010-11-08 19:18:58 +00001998 if (obj->dirty)
Chris Wilson9da3da62012-06-01 15:20:22 +01001999 set_page_dirty(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01002000
Chris Wilson05394f32010-11-08 19:18:58 +00002001 if (obj->madv == I915_MADV_WILLNEED)
Chris Wilson9da3da62012-06-01 15:20:22 +01002002 mark_page_accessed(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01002003
Chris Wilson9da3da62012-06-01 15:20:22 +01002004 page_cache_release(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01002005 }
Chris Wilson05394f32010-11-08 19:18:58 +00002006 obj->dirty = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002007
Chris Wilson9da3da62012-06-01 15:20:22 +01002008 sg_free_table(obj->pages);
2009 kfree(obj->pages);
Chris Wilson37e680a2012-06-07 15:38:42 +01002010}
2011
Chris Wilsondd624af2013-01-15 12:39:35 +00002012int
Chris Wilson37e680a2012-06-07 15:38:42 +01002013i915_gem_object_put_pages(struct drm_i915_gem_object *obj)
2014{
2015 const struct drm_i915_gem_object_ops *ops = obj->ops;
2016
Chris Wilson2f745ad2012-09-04 21:02:58 +01002017 if (obj->pages == NULL)
Chris Wilson37e680a2012-06-07 15:38:42 +01002018 return 0;
2019
Chris Wilsona5570172012-09-04 21:02:54 +01002020 if (obj->pages_pin_count)
2021 return -EBUSY;
2022
Ben Widawsky98438772013-07-31 17:00:12 -07002023 BUG_ON(i915_gem_obj_bound_any(obj));
Ben Widawsky3e123022013-07-31 17:00:04 -07002024
Chris Wilsona2165e32012-12-03 11:49:00 +00002025 /* ->put_pages might need to allocate memory for the bit17 swizzle
2026 * array, hence protect them from being reaped by removing them from gtt
2027 * lists early. */
Ben Widawsky35c20a62013-05-31 11:28:48 -07002028 list_del(&obj->global_list);
Chris Wilsona2165e32012-12-03 11:49:00 +00002029
Chris Wilson37e680a2012-06-07 15:38:42 +01002030 ops->put_pages(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002031 obj->pages = NULL;
Chris Wilson6c085a72012-08-20 11:40:46 +02002032
Chris Wilson55372522014-03-25 13:23:06 +00002033 i915_gem_object_invalidate(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02002034
2035 return 0;
2036}
2037
Chris Wilson21ab4e72014-09-09 11:16:08 +01002038unsigned long
2039i915_gem_shrink(struct drm_i915_private *dev_priv,
2040 long target, unsigned flags)
Chris Wilson6c085a72012-08-20 11:40:46 +02002041{
Chris Wilson60a53722014-10-03 10:29:51 +01002042 const struct {
2043 struct list_head *list;
2044 unsigned int bit;
2045 } phases[] = {
2046 { &dev_priv->mm.unbound_list, I915_SHRINK_UNBOUND },
2047 { &dev_priv->mm.bound_list, I915_SHRINK_BOUND },
2048 { NULL, 0 },
2049 }, *phase;
Chris Wilsond9973b42013-10-04 10:33:00 +01002050 unsigned long count = 0;
Chris Wilson6c085a72012-08-20 11:40:46 +02002051
Chris Wilson57094f82013-09-04 10:45:50 +01002052 /*
Chris Wilsonc8725f32014-03-17 12:21:55 +00002053 * As we may completely rewrite the (un)bound list whilst unbinding
Chris Wilson57094f82013-09-04 10:45:50 +01002054 * (due to retiring requests) we have to strictly process only
2055 * one element of the list at the time, and recheck the list
2056 * on every iteration.
Chris Wilsonc8725f32014-03-17 12:21:55 +00002057 *
2058 * In particular, we must hold a reference whilst removing the
2059 * object as we may end up waiting for and/or retiring the objects.
2060 * This might release the final reference (held by the active list)
2061 * and result in the object being freed from under us. This is
2062 * similar to the precautions the eviction code must take whilst
2063 * removing objects.
2064 *
2065 * Also note that although these lists do not hold a reference to
2066 * the object we can safely grab one here: The final object
2067 * unreferencing and the bound_list are both protected by the
2068 * dev->struct_mutex and so we won't ever be able to observe an
2069 * object on the bound_list with a reference count equals 0.
Chris Wilson57094f82013-09-04 10:45:50 +01002070 */
Chris Wilson60a53722014-10-03 10:29:51 +01002071 for (phase = phases; phase->list; phase++) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002072 struct list_head still_in_list;
Chris Wilsonc8725f32014-03-17 12:21:55 +00002073
Chris Wilson60a53722014-10-03 10:29:51 +01002074 if ((flags & phase->bit) == 0)
2075 continue;
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07002076
Chris Wilson21ab4e72014-09-09 11:16:08 +01002077 INIT_LIST_HEAD(&still_in_list);
Chris Wilson60a53722014-10-03 10:29:51 +01002078 while (count < target && !list_empty(phase->list)) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002079 struct drm_i915_gem_object *obj;
2080 struct i915_vma *vma, *v;
Chris Wilson57094f82013-09-04 10:45:50 +01002081
Chris Wilson60a53722014-10-03 10:29:51 +01002082 obj = list_first_entry(phase->list,
Chris Wilson21ab4e72014-09-09 11:16:08 +01002083 typeof(*obj), global_list);
2084 list_move_tail(&obj->global_list, &still_in_list);
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07002085
Chris Wilson60a53722014-10-03 10:29:51 +01002086 if (flags & I915_SHRINK_PURGEABLE &&
2087 !i915_gem_object_is_purgeable(obj))
Chris Wilson21ab4e72014-09-09 11:16:08 +01002088 continue;
Chris Wilson57094f82013-09-04 10:45:50 +01002089
Chris Wilson21ab4e72014-09-09 11:16:08 +01002090 drm_gem_object_reference(&obj->base);
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07002091
Chris Wilson60a53722014-10-03 10:29:51 +01002092 /* For the unbound phase, this should be a no-op! */
2093 list_for_each_entry_safe(vma, v,
2094 &obj->vma_list, vma_link)
Chris Wilson21ab4e72014-09-09 11:16:08 +01002095 if (i915_vma_unbind(vma))
2096 break;
Chris Wilson57094f82013-09-04 10:45:50 +01002097
Chris Wilson21ab4e72014-09-09 11:16:08 +01002098 if (i915_gem_object_put_pages(obj) == 0)
2099 count += obj->base.size >> PAGE_SHIFT;
2100
2101 drm_gem_object_unreference(&obj->base);
2102 }
Chris Wilson60a53722014-10-03 10:29:51 +01002103 list_splice(&still_in_list, phase->list);
Chris Wilson6c085a72012-08-20 11:40:46 +02002104 }
2105
2106 return count;
2107}
2108
Chris Wilsond9973b42013-10-04 10:33:00 +01002109static unsigned long
Chris Wilson6c085a72012-08-20 11:40:46 +02002110i915_gem_shrink_all(struct drm_i915_private *dev_priv)
2111{
Chris Wilson6c085a72012-08-20 11:40:46 +02002112 i915_gem_evict_everything(dev_priv->dev);
Chris Wilson21ab4e72014-09-09 11:16:08 +01002113 return i915_gem_shrink(dev_priv, LONG_MAX,
2114 I915_SHRINK_BOUND | I915_SHRINK_UNBOUND);
Daniel Vetter225067e2012-08-20 10:23:20 +02002115}
2116
Chris Wilson37e680a2012-06-07 15:38:42 +01002117static int
Chris Wilson6c085a72012-08-20 11:40:46 +02002118i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002119{
Chris Wilson6c085a72012-08-20 11:40:46 +02002120 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002121 int page_count, i;
2122 struct address_space *mapping;
Chris Wilson9da3da62012-06-01 15:20:22 +01002123 struct sg_table *st;
2124 struct scatterlist *sg;
Imre Deak90797e62013-02-18 19:28:03 +02002125 struct sg_page_iter sg_iter;
Eric Anholt673a3942008-07-30 12:06:12 -07002126 struct page *page;
Imre Deak90797e62013-02-18 19:28:03 +02002127 unsigned long last_pfn = 0; /* suppress gcc warning */
Chris Wilson6c085a72012-08-20 11:40:46 +02002128 gfp_t gfp;
Eric Anholt673a3942008-07-30 12:06:12 -07002129
Chris Wilson6c085a72012-08-20 11:40:46 +02002130 /* Assert that the object is not currently in any GPU domain. As it
2131 * wasn't in the GTT, there shouldn't be any way it could have been in
2132 * a GPU cache
2133 */
2134 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
2135 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
2136
Chris Wilson9da3da62012-06-01 15:20:22 +01002137 st = kmalloc(sizeof(*st), GFP_KERNEL);
2138 if (st == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002139 return -ENOMEM;
2140
Chris Wilson9da3da62012-06-01 15:20:22 +01002141 page_count = obj->base.size / PAGE_SIZE;
2142 if (sg_alloc_table(st, page_count, GFP_KERNEL)) {
Chris Wilson9da3da62012-06-01 15:20:22 +01002143 kfree(st);
2144 return -ENOMEM;
2145 }
2146
2147 /* Get the list of pages out of our struct file. They'll be pinned
2148 * at this point until we release them.
2149 *
2150 * Fail silently without starting the shrinker
2151 */
Al Viro496ad9a2013-01-23 17:07:38 -05002152 mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilson6c085a72012-08-20 11:40:46 +02002153 gfp = mapping_gfp_mask(mapping);
Linus Torvaldscaf49192012-12-10 10:51:16 -08002154 gfp |= __GFP_NORETRY | __GFP_NOWARN | __GFP_NO_KSWAPD;
Chris Wilson6c085a72012-08-20 11:40:46 +02002155 gfp &= ~(__GFP_IO | __GFP_WAIT);
Imre Deak90797e62013-02-18 19:28:03 +02002156 sg = st->sgl;
2157 st->nents = 0;
2158 for (i = 0; i < page_count; i++) {
Chris Wilson6c085a72012-08-20 11:40:46 +02002159 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
2160 if (IS_ERR(page)) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002161 i915_gem_shrink(dev_priv,
2162 page_count,
2163 I915_SHRINK_BOUND |
2164 I915_SHRINK_UNBOUND |
2165 I915_SHRINK_PURGEABLE);
Chris Wilson6c085a72012-08-20 11:40:46 +02002166 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
2167 }
2168 if (IS_ERR(page)) {
2169 /* We've tried hard to allocate the memory by reaping
2170 * our own buffer, now let the real VM do its job and
2171 * go down in flames if truly OOM.
2172 */
Chris Wilson6c085a72012-08-20 11:40:46 +02002173 i915_gem_shrink_all(dev_priv);
David Herrmannf461d1b2014-05-25 14:34:10 +02002174 page = shmem_read_mapping_page(mapping, i);
Chris Wilson6c085a72012-08-20 11:40:46 +02002175 if (IS_ERR(page))
2176 goto err_pages;
Chris Wilson6c085a72012-08-20 11:40:46 +02002177 }
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04002178#ifdef CONFIG_SWIOTLB
2179 if (swiotlb_nr_tbl()) {
2180 st->nents++;
2181 sg_set_page(sg, page, PAGE_SIZE, 0);
2182 sg = sg_next(sg);
2183 continue;
2184 }
2185#endif
Imre Deak90797e62013-02-18 19:28:03 +02002186 if (!i || page_to_pfn(page) != last_pfn + 1) {
2187 if (i)
2188 sg = sg_next(sg);
2189 st->nents++;
2190 sg_set_page(sg, page, PAGE_SIZE, 0);
2191 } else {
2192 sg->length += PAGE_SIZE;
2193 }
2194 last_pfn = page_to_pfn(page);
Daniel Vetter3bbbe702013-10-07 17:15:45 -03002195
2196 /* Check that the i965g/gm workaround works. */
2197 WARN_ON((gfp & __GFP_DMA32) && (last_pfn >= 0x00100000UL));
Eric Anholt673a3942008-07-30 12:06:12 -07002198 }
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04002199#ifdef CONFIG_SWIOTLB
2200 if (!swiotlb_nr_tbl())
2201#endif
2202 sg_mark_end(sg);
Chris Wilson74ce6b62012-10-19 15:51:06 +01002203 obj->pages = st;
2204
Eric Anholt673a3942008-07-30 12:06:12 -07002205 if (i915_gem_object_needs_bit17_swizzle(obj))
2206 i915_gem_object_do_bit_17_swizzle(obj);
2207
Daniel Vetter656bfa32014-11-20 09:26:30 +01002208 if (obj->tiling_mode != I915_TILING_NONE &&
2209 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES)
2210 i915_gem_object_pin_pages(obj);
2211
Eric Anholt673a3942008-07-30 12:06:12 -07002212 return 0;
2213
2214err_pages:
Imre Deak90797e62013-02-18 19:28:03 +02002215 sg_mark_end(sg);
2216 for_each_sg_page(st->sgl, &sg_iter, st->nents, 0)
Imre Deak2db76d72013-03-26 15:14:18 +02002217 page_cache_release(sg_page_iter_page(&sg_iter));
Chris Wilson9da3da62012-06-01 15:20:22 +01002218 sg_free_table(st);
2219 kfree(st);
Chris Wilson0820baf2014-03-25 13:23:03 +00002220
2221 /* shmemfs first checks if there is enough memory to allocate the page
2222 * and reports ENOSPC should there be insufficient, along with the usual
2223 * ENOMEM for a genuine allocation failure.
2224 *
2225 * We use ENOSPC in our driver to mean that we have run out of aperture
2226 * space and so want to translate the error from shmemfs back to our
2227 * usual understanding of ENOMEM.
2228 */
2229 if (PTR_ERR(page) == -ENOSPC)
2230 return -ENOMEM;
2231 else
2232 return PTR_ERR(page);
Eric Anholt673a3942008-07-30 12:06:12 -07002233}
2234
Chris Wilson37e680a2012-06-07 15:38:42 +01002235/* Ensure that the associated pages are gathered from the backing storage
2236 * and pinned into our object. i915_gem_object_get_pages() may be called
2237 * multiple times before they are released by a single call to
2238 * i915_gem_object_put_pages() - once the pages are no longer referenced
2239 * either as a result of memory pressure (reaping pages under the shrinker)
2240 * or as the object is itself released.
2241 */
2242int
2243i915_gem_object_get_pages(struct drm_i915_gem_object *obj)
2244{
2245 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2246 const struct drm_i915_gem_object_ops *ops = obj->ops;
2247 int ret;
2248
Chris Wilson2f745ad2012-09-04 21:02:58 +01002249 if (obj->pages)
Chris Wilson37e680a2012-06-07 15:38:42 +01002250 return 0;
2251
Chris Wilson43e28f02013-01-08 10:53:09 +00002252 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00002253 DRM_DEBUG("Attempting to obtain a purgeable object\n");
Chris Wilson8c99e572014-01-31 11:34:58 +00002254 return -EFAULT;
Chris Wilson43e28f02013-01-08 10:53:09 +00002255 }
2256
Chris Wilsona5570172012-09-04 21:02:54 +01002257 BUG_ON(obj->pages_pin_count);
2258
Chris Wilson37e680a2012-06-07 15:38:42 +01002259 ret = ops->get_pages(obj);
2260 if (ret)
2261 return ret;
2262
Ben Widawsky35c20a62013-05-31 11:28:48 -07002263 list_add_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Chris Wilson37e680a2012-06-07 15:38:42 +01002264 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002265}
2266
Ben Widawskye2d05a82013-09-24 09:57:58 -07002267static void
Chris Wilson05394f32010-11-08 19:18:58 +00002268i915_gem_object_move_to_active(struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002269 struct intel_engine_cs *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07002270{
Chris Wilson9d7730912012-11-27 16:22:52 +00002271 u32 seqno = intel_ring_get_seqno(ring);
Daniel Vetter617dbe22010-02-11 22:16:02 +01002272
Zou Nan hai852835f2010-05-21 09:08:56 +08002273 BUG_ON(ring == NULL);
Chris Wilson02978ff2013-07-09 09:22:39 +01002274 if (obj->ring != ring && obj->last_write_seqno) {
2275 /* Keep the seqno relative to the current ring */
2276 obj->last_write_seqno = seqno;
2277 }
Chris Wilson05394f32010-11-08 19:18:58 +00002278 obj->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07002279
2280 /* Add a reference if we're newly entering the active list. */
Chris Wilson05394f32010-11-08 19:18:58 +00002281 if (!obj->active) {
2282 drm_gem_object_reference(&obj->base);
2283 obj->active = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07002284 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01002285
Chris Wilson05394f32010-11-08 19:18:58 +00002286 list_move_tail(&obj->ring_list, &ring->active_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002287
Chris Wilson0201f1e2012-07-20 12:41:01 +01002288 obj->last_read_seqno = seqno;
Chris Wilsoncaea7472010-11-12 13:53:37 +00002289}
2290
Ben Widawskye2d05a82013-09-24 09:57:58 -07002291void i915_vma_move_to_active(struct i915_vma *vma,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002292 struct intel_engine_cs *ring)
Ben Widawskye2d05a82013-09-24 09:57:58 -07002293{
2294 list_move_tail(&vma->mm_list, &vma->vm->active_list);
2295 return i915_gem_object_move_to_active(vma->obj, ring);
2296}
2297
Chris Wilsoncaea7472010-11-12 13:53:37 +00002298static void
Chris Wilsoncaea7472010-11-12 13:53:37 +00002299i915_gem_object_move_to_inactive(struct drm_i915_gem_object *obj)
2300{
Ben Widawskyca191b12013-07-31 17:00:14 -07002301 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Ben Widawskyfeb822c2013-12-06 14:10:51 -08002302 struct i915_address_space *vm;
2303 struct i915_vma *vma;
Chris Wilsoncaea7472010-11-12 13:53:37 +00002304
Chris Wilson65ce3022012-07-20 12:41:02 +01002305 BUG_ON(obj->base.write_domain & ~I915_GEM_GPU_DOMAINS);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002306 BUG_ON(!obj->active);
Chris Wilson65ce3022012-07-20 12:41:02 +01002307
Ben Widawskyfeb822c2013-12-06 14:10:51 -08002308 list_for_each_entry(vm, &dev_priv->vm_list, global_link) {
2309 vma = i915_gem_obj_to_vma(obj, vm);
2310 if (vma && !list_empty(&vma->mm_list))
2311 list_move_tail(&vma->mm_list, &vm->inactive_list);
2312 }
Chris Wilsoncaea7472010-11-12 13:53:37 +00002313
Daniel Vetterf99d7062014-06-19 16:01:59 +02002314 intel_fb_obj_flush(obj, true);
2315
Chris Wilson65ce3022012-07-20 12:41:02 +01002316 list_del_init(&obj->ring_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002317 obj->ring = NULL;
2318
Chris Wilson65ce3022012-07-20 12:41:02 +01002319 obj->last_read_seqno = 0;
2320 obj->last_write_seqno = 0;
2321 obj->base.write_domain = 0;
2322
2323 obj->last_fenced_seqno = 0;
Chris Wilsoncaea7472010-11-12 13:53:37 +00002324
2325 obj->active = 0;
2326 drm_gem_object_unreference(&obj->base);
2327
2328 WARN_ON(i915_verify_lists(dev));
Eric Anholtce44b0e2008-11-06 16:00:31 -08002329}
Eric Anholt673a3942008-07-30 12:06:12 -07002330
Chris Wilsonc8725f32014-03-17 12:21:55 +00002331static void
2332i915_gem_object_retire(struct drm_i915_gem_object *obj)
2333{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002334 struct intel_engine_cs *ring = obj->ring;
Chris Wilsonc8725f32014-03-17 12:21:55 +00002335
2336 if (ring == NULL)
2337 return;
2338
2339 if (i915_seqno_passed(ring->get_seqno(ring, true),
2340 obj->last_read_seqno))
2341 i915_gem_object_move_to_inactive(obj);
2342}
2343
Chris Wilson9d7730912012-11-27 16:22:52 +00002344static int
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002345i915_gem_init_seqno(struct drm_device *dev, u32 seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01002346{
Chris Wilson9d7730912012-11-27 16:22:52 +00002347 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002348 struct intel_engine_cs *ring;
Chris Wilson9d7730912012-11-27 16:22:52 +00002349 int ret, i, j;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002350
Chris Wilson107f27a52012-12-10 13:56:17 +02002351 /* Carefully retire all requests without writing to the rings */
Chris Wilson9d7730912012-11-27 16:22:52 +00002352 for_each_ring(ring, dev_priv, i) {
Chris Wilson107f27a52012-12-10 13:56:17 +02002353 ret = intel_ring_idle(ring);
2354 if (ret)
2355 return ret;
Chris Wilson9d7730912012-11-27 16:22:52 +00002356 }
Chris Wilson9d7730912012-11-27 16:22:52 +00002357 i915_gem_retire_requests(dev);
Chris Wilson107f27a52012-12-10 13:56:17 +02002358
2359 /* Finally reset hw state */
Chris Wilson9d7730912012-11-27 16:22:52 +00002360 for_each_ring(ring, dev_priv, i) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002361 intel_ring_init_seqno(ring, seqno);
Mika Kuoppala498d2ac2012-12-04 15:12:04 +02002362
Ben Widawskyebc348b2014-04-29 14:52:28 -07002363 for (j = 0; j < ARRAY_SIZE(ring->semaphore.sync_seqno); j++)
2364 ring->semaphore.sync_seqno[j] = 0;
Chris Wilson9d7730912012-11-27 16:22:52 +00002365 }
2366
2367 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002368}
2369
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002370int i915_gem_set_seqno(struct drm_device *dev, u32 seqno)
2371{
2372 struct drm_i915_private *dev_priv = dev->dev_private;
2373 int ret;
2374
2375 if (seqno == 0)
2376 return -EINVAL;
2377
2378 /* HWS page needs to be set less than what we
2379 * will inject to ring
2380 */
2381 ret = i915_gem_init_seqno(dev, seqno - 1);
2382 if (ret)
2383 return ret;
2384
2385 /* Carefully set the last_seqno value so that wrap
2386 * detection still works
2387 */
2388 dev_priv->next_seqno = seqno;
2389 dev_priv->last_seqno = seqno - 1;
2390 if (dev_priv->last_seqno == 0)
2391 dev_priv->last_seqno--;
2392
2393 return 0;
2394}
2395
Chris Wilson9d7730912012-11-27 16:22:52 +00002396int
2397i915_gem_get_seqno(struct drm_device *dev, u32 *seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01002398{
Chris Wilson9d7730912012-11-27 16:22:52 +00002399 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002400
Chris Wilson9d7730912012-11-27 16:22:52 +00002401 /* reserve 0 for non-seqno */
2402 if (dev_priv->next_seqno == 0) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002403 int ret = i915_gem_init_seqno(dev, 0);
Chris Wilson9d7730912012-11-27 16:22:52 +00002404 if (ret)
2405 return ret;
2406
2407 dev_priv->next_seqno = 1;
2408 }
2409
Mika Kuoppalaf72b3432012-12-10 15:41:48 +02002410 *seqno = dev_priv->last_seqno = dev_priv->next_seqno++;
Chris Wilson9d7730912012-11-27 16:22:52 +00002411 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002412}
2413
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002414int __i915_add_request(struct intel_engine_cs *ring,
Mika Kuoppala0025c072013-06-12 12:35:30 +03002415 struct drm_file *file,
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002416 struct drm_i915_gem_object *obj,
Mika Kuoppala0025c072013-06-12 12:35:30 +03002417 u32 *out_seqno)
Eric Anholt673a3942008-07-30 12:06:12 -07002418{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03002419 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Chris Wilsonacb868d2012-09-26 13:47:30 +01002420 struct drm_i915_gem_request *request;
Oscar Mateo48e29f52014-07-24 17:04:29 +01002421 struct intel_ringbuffer *ringbuf;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002422 u32 request_ring_position, request_start;
Chris Wilson3cce4692010-10-27 16:11:02 +01002423 int ret;
2424
Oscar Mateo48e29f52014-07-24 17:04:29 +01002425 request = ring->preallocated_lazy_request;
2426 if (WARN_ON(request == NULL))
2427 return -ENOMEM;
2428
2429 if (i915.enable_execlists) {
2430 struct intel_context *ctx = request->ctx;
2431 ringbuf = ctx->engine[ring->id].ringbuf;
2432 } else
2433 ringbuf = ring->buffer;
2434
2435 request_start = intel_ring_get_tail(ringbuf);
Daniel Vettercc889e02012-06-13 20:45:19 +02002436 /*
2437 * Emit any outstanding flushes - execbuf can fail to emit the flush
2438 * after having emitted the batchbuffer command. Hence we need to fix
2439 * things up similar to emitting the lazy request. The difference here
2440 * is that the flush _must_ happen before the next request, no matter
2441 * what.
2442 */
Oscar Mateo48e29f52014-07-24 17:04:29 +01002443 if (i915.enable_execlists) {
2444 ret = logical_ring_flush_all_caches(ringbuf);
2445 if (ret)
2446 return ret;
2447 } else {
2448 ret = intel_ring_flush_all_caches(ring);
2449 if (ret)
2450 return ret;
2451 }
Daniel Vettercc889e02012-06-13 20:45:19 +02002452
Chris Wilsona71d8d92012-02-15 11:25:36 +00002453 /* Record the position of the start of the request so that
2454 * should we detect the updated seqno part-way through the
2455 * GPU processing the request, we never over-estimate the
2456 * position of the head.
2457 */
Oscar Mateo48e29f52014-07-24 17:04:29 +01002458 request_ring_position = intel_ring_get_tail(ringbuf);
Chris Wilsona71d8d92012-02-15 11:25:36 +00002459
Oscar Mateo48e29f52014-07-24 17:04:29 +01002460 if (i915.enable_execlists) {
2461 ret = ring->emit_request(ringbuf);
2462 if (ret)
2463 return ret;
2464 } else {
2465 ret = ring->add_request(ring);
2466 if (ret)
2467 return ret;
2468 }
Eric Anholt673a3942008-07-30 12:06:12 -07002469
Chris Wilson9d7730912012-11-27 16:22:52 +00002470 request->seqno = intel_ring_get_seqno(ring);
Zou Nan hai852835f2010-05-21 09:08:56 +08002471 request->ring = ring;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002472 request->head = request_start;
Chris Wilsona71d8d92012-02-15 11:25:36 +00002473 request->tail = request_ring_position;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002474
2475 /* Whilst this request exists, batch_obj will be on the
2476 * active_list, and so will hold the active reference. Only when this
2477 * request is retired will the the batch_obj be moved onto the
2478 * inactive_list and lose its active reference. Hence we do not need
2479 * to explicitly hold another reference here.
2480 */
Chris Wilson9a7e0c22013-08-26 19:50:54 -03002481 request->batch_obj = obj;
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002482
Oscar Mateo48e29f52014-07-24 17:04:29 +01002483 if (!i915.enable_execlists) {
2484 /* Hold a reference to the current context so that we can inspect
2485 * it later in case a hangcheck error event fires.
2486 */
2487 request->ctx = ring->last_context;
2488 if (request->ctx)
2489 i915_gem_context_reference(request->ctx);
2490 }
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002491
Eric Anholt673a3942008-07-30 12:06:12 -07002492 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08002493 list_add_tail(&request->list, &ring->request_list);
Chris Wilson3bb73ab2012-07-20 12:40:59 +01002494 request->file_priv = NULL;
Zou Nan hai852835f2010-05-21 09:08:56 +08002495
Chris Wilsondb53a302011-02-03 11:57:46 +00002496 if (file) {
2497 struct drm_i915_file_private *file_priv = file->driver_priv;
2498
Chris Wilson1c255952010-09-26 11:03:27 +01002499 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002500 request->file_priv = file_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00002501 list_add_tail(&request->client_list,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002502 &file_priv->mm.request_list);
Chris Wilson1c255952010-09-26 11:03:27 +01002503 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00002504 }
Eric Anholt673a3942008-07-30 12:06:12 -07002505
Chris Wilson9d7730912012-11-27 16:22:52 +00002506 trace_i915_gem_request_add(ring, request->seqno);
Chris Wilson18235212013-09-04 10:45:51 +01002507 ring->outstanding_lazy_seqno = 0;
Chris Wilson3c0e2342013-09-04 10:45:52 +01002508 ring->preallocated_lazy_request = NULL;
Chris Wilsondb53a302011-02-03 11:57:46 +00002509
Daniel Vetter87255482014-11-19 20:36:48 +01002510 i915_queue_hangcheck(ring->dev);
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03002511
Daniel Vetter87255482014-11-19 20:36:48 +01002512 cancel_delayed_work_sync(&dev_priv->mm.idle_work);
2513 queue_delayed_work(dev_priv->wq,
2514 &dev_priv->mm.retire_work,
2515 round_jiffies_up_relative(HZ));
2516 intel_mark_busy(dev_priv->dev);
Daniel Vettercc889e02012-06-13 20:45:19 +02002517
Chris Wilsonacb868d2012-09-26 13:47:30 +01002518 if (out_seqno)
Chris Wilson9d7730912012-11-27 16:22:52 +00002519 *out_seqno = request->seqno;
Chris Wilson3cce4692010-10-27 16:11:02 +01002520 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002521}
2522
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002523static inline void
2524i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07002525{
Chris Wilson1c255952010-09-26 11:03:27 +01002526 struct drm_i915_file_private *file_priv = request->file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07002527
Chris Wilson1c255952010-09-26 11:03:27 +01002528 if (!file_priv)
2529 return;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002530
Chris Wilson1c255952010-09-26 11:03:27 +01002531 spin_lock(&file_priv->mm.lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002532 list_del(&request->client_list);
2533 request->file_priv = NULL;
Chris Wilson1c255952010-09-26 11:03:27 +01002534 spin_unlock(&file_priv->mm.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07002535}
2536
Mika Kuoppala939fd762014-01-30 19:04:44 +02002537static bool i915_context_is_banned(struct drm_i915_private *dev_priv,
Oscar Mateo273497e2014-05-22 14:13:37 +01002538 const struct intel_context *ctx)
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002539{
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002540 unsigned long elapsed;
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002541
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002542 elapsed = get_seconds() - ctx->hang_stats.guilty_ts;
2543
2544 if (ctx->hang_stats.banned)
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002545 return true;
2546
2547 if (elapsed <= DRM_I915_CTX_BAN_PERIOD) {
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002548 if (!i915_gem_context_is_default(ctx)) {
Mika Kuoppala3fac8972014-01-30 16:05:48 +02002549 DRM_DEBUG("context hanging too fast, banning!\n");
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002550 return true;
Mika Kuoppala88b4aa82014-03-28 18:18:18 +02002551 } else if (i915_stop_ring_allow_ban(dev_priv)) {
2552 if (i915_stop_ring_allow_warn(dev_priv))
2553 DRM_ERROR("gpu hanging too fast, banning!\n");
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002554 return true;
Mika Kuoppala3fac8972014-01-30 16:05:48 +02002555 }
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002556 }
2557
2558 return false;
2559}
2560
Mika Kuoppala939fd762014-01-30 19:04:44 +02002561static void i915_set_reset_status(struct drm_i915_private *dev_priv,
Oscar Mateo273497e2014-05-22 14:13:37 +01002562 struct intel_context *ctx,
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002563 const bool guilty)
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002564{
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002565 struct i915_ctx_hang_stats *hs;
2566
2567 if (WARN_ON(!ctx))
2568 return;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002569
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002570 hs = &ctx->hang_stats;
2571
2572 if (guilty) {
Mika Kuoppala939fd762014-01-30 19:04:44 +02002573 hs->banned = i915_context_is_banned(dev_priv, ctx);
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002574 hs->batch_active++;
2575 hs->guilty_ts = get_seconds();
2576 } else {
2577 hs->batch_pending++;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002578 }
2579}
2580
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002581static void i915_gem_free_request(struct drm_i915_gem_request *request)
2582{
Oscar Mateodcb4c122014-11-13 10:28:10 +00002583 struct intel_context *ctx = request->ctx;
2584
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002585 list_del(&request->list);
2586 i915_gem_request_remove_from_client(request);
2587
Thomas Daniel0794aed2014-11-25 10:39:25 +00002588 if (ctx) {
2589 if (i915.enable_execlists) {
2590 struct intel_engine_cs *ring = request->ring;
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002591
Thomas Daniel0794aed2014-11-25 10:39:25 +00002592 if (ctx != ring->default_context)
2593 intel_lr_context_unpin(ring, ctx);
2594 }
Oscar Mateodcb4c122014-11-13 10:28:10 +00002595 i915_gem_context_unreference(ctx);
2596 }
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002597 kfree(request);
2598}
2599
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002600struct drm_i915_gem_request *
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002601i915_gem_find_active_request(struct intel_engine_cs *ring)
Chris Wilson9375e442010-09-19 12:21:28 +01002602{
Chris Wilson4db080f2013-12-04 11:37:09 +00002603 struct drm_i915_gem_request *request;
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002604 u32 completed_seqno;
2605
2606 completed_seqno = ring->get_seqno(ring, false);
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002607
Chris Wilson4db080f2013-12-04 11:37:09 +00002608 list_for_each_entry(request, &ring->request_list, list) {
2609 if (i915_seqno_passed(completed_seqno, request->seqno))
2610 continue;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002611
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002612 return request;
Chris Wilson4db080f2013-12-04 11:37:09 +00002613 }
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002614
2615 return NULL;
2616}
2617
2618static void i915_gem_reset_ring_status(struct drm_i915_private *dev_priv,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002619 struct intel_engine_cs *ring)
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002620{
2621 struct drm_i915_gem_request *request;
2622 bool ring_hung;
2623
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002624 request = i915_gem_find_active_request(ring);
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002625
2626 if (request == NULL)
2627 return;
2628
2629 ring_hung = ring->hangcheck.score >= HANGCHECK_SCORE_RING_HUNG;
2630
Mika Kuoppala939fd762014-01-30 19:04:44 +02002631 i915_set_reset_status(dev_priv, request->ctx, ring_hung);
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002632
2633 list_for_each_entry_continue(request, &ring->request_list, list)
Mika Kuoppala939fd762014-01-30 19:04:44 +02002634 i915_set_reset_status(dev_priv, request->ctx, false);
Chris Wilson4db080f2013-12-04 11:37:09 +00002635}
2636
2637static void i915_gem_reset_ring_cleanup(struct drm_i915_private *dev_priv,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002638 struct intel_engine_cs *ring)
Chris Wilson4db080f2013-12-04 11:37:09 +00002639{
Chris Wilsondfaae392010-09-22 10:31:52 +01002640 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00002641 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07002642
Chris Wilson05394f32010-11-08 19:18:58 +00002643 obj = list_first_entry(&ring->active_list,
2644 struct drm_i915_gem_object,
2645 ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07002646
Chris Wilson05394f32010-11-08 19:18:58 +00002647 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002648 }
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002649
2650 /*
Oscar Mateodcb4c122014-11-13 10:28:10 +00002651 * Clear the execlists queue up before freeing the requests, as those
2652 * are the ones that keep the context and ringbuffer backing objects
2653 * pinned in place.
2654 */
2655 while (!list_empty(&ring->execlist_queue)) {
2656 struct intel_ctx_submit_request *submit_req;
2657
2658 submit_req = list_first_entry(&ring->execlist_queue,
2659 struct intel_ctx_submit_request,
2660 execlist_link);
2661 list_del(&submit_req->execlist_link);
2662 intel_runtime_pm_put(dev_priv);
2663 i915_gem_context_unreference(submit_req->ctx);
2664 kfree(submit_req);
2665 }
2666
2667 /*
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002668 * We must free the requests after all the corresponding objects have
2669 * been moved off active lists. Which is the same order as the normal
2670 * retire_requests function does. This is important if object hold
2671 * implicit references on things like e.g. ppgtt address spaces through
2672 * the request.
2673 */
2674 while (!list_empty(&ring->request_list)) {
2675 struct drm_i915_gem_request *request;
2676
2677 request = list_first_entry(&ring->request_list,
2678 struct drm_i915_gem_request,
2679 list);
2680
2681 i915_gem_free_request(request);
2682 }
Chris Wilsone3efda42014-04-09 09:19:41 +01002683
2684 /* These may not have been flush before the reset, do so now */
2685 kfree(ring->preallocated_lazy_request);
2686 ring->preallocated_lazy_request = NULL;
2687 ring->outstanding_lazy_seqno = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002688}
2689
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002690void i915_gem_restore_fences(struct drm_device *dev)
Chris Wilson312817a2010-11-22 11:50:11 +00002691{
2692 struct drm_i915_private *dev_priv = dev->dev_private;
2693 int i;
2694
Daniel Vetter4b9de732011-10-09 21:52:02 +02002695 for (i = 0; i < dev_priv->num_fence_regs; i++) {
Chris Wilson312817a2010-11-22 11:50:11 +00002696 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
Chris Wilson7d2cb392010-11-27 17:38:29 +00002697
Daniel Vetter94a335d2013-07-17 14:51:28 +02002698 /*
2699 * Commit delayed tiling changes if we have an object still
2700 * attached to the fence, otherwise just clear the fence.
2701 */
2702 if (reg->obj) {
2703 i915_gem_object_update_fence(reg->obj, reg,
2704 reg->obj->tiling_mode);
2705 } else {
2706 i915_gem_write_fence(dev, i, NULL);
2707 }
Chris Wilson312817a2010-11-22 11:50:11 +00002708 }
2709}
2710
Chris Wilson069efc12010-09-30 16:53:18 +01002711void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07002712{
Chris Wilsondfaae392010-09-22 10:31:52 +01002713 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002714 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002715 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07002716
Chris Wilson4db080f2013-12-04 11:37:09 +00002717 /*
2718 * Before we free the objects from the requests, we need to inspect
2719 * them for finding the guilty party. As the requests only borrow
2720 * their reference to the objects, the inspection must be done first.
2721 */
Chris Wilsonb4519512012-05-11 14:29:30 +01002722 for_each_ring(ring, dev_priv, i)
Chris Wilson4db080f2013-12-04 11:37:09 +00002723 i915_gem_reset_ring_status(dev_priv, ring);
2724
2725 for_each_ring(ring, dev_priv, i)
2726 i915_gem_reset_ring_cleanup(dev_priv, ring);
Chris Wilsondfaae392010-09-22 10:31:52 +01002727
Ben Widawskyacce9ff2013-12-06 14:11:03 -08002728 i915_gem_context_reset(dev);
2729
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002730 i915_gem_restore_fences(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07002731}
2732
2733/**
2734 * This function clears the request list as sequence numbers are passed.
2735 */
Chris Wilson1cf0ba12014-05-05 09:07:33 +01002736void
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002737i915_gem_retire_requests_ring(struct intel_engine_cs *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07002738{
Eric Anholt673a3942008-07-30 12:06:12 -07002739 uint32_t seqno;
2740
Chris Wilsondb53a302011-02-03 11:57:46 +00002741 if (list_empty(&ring->request_list))
Karsten Wiese6c0594a2009-02-23 15:07:57 +01002742 return;
2743
Chris Wilsondb53a302011-02-03 11:57:46 +00002744 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002745
Chris Wilsonb2eadbc2012-08-09 10:58:30 +01002746 seqno = ring->get_seqno(ring, true);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002747
Chris Wilsone9103032014-01-07 11:45:14 +00002748 /* Move any buffers on the active list that are no longer referenced
2749 * by the ringbuffer to the flushing/inactive lists as appropriate,
2750 * before we free the context associated with the requests.
2751 */
2752 while (!list_empty(&ring->active_list)) {
2753 struct drm_i915_gem_object *obj;
2754
2755 obj = list_first_entry(&ring->active_list,
2756 struct drm_i915_gem_object,
2757 ring_list);
2758
2759 if (!i915_seqno_passed(seqno, obj->last_read_seqno))
2760 break;
2761
2762 i915_gem_object_move_to_inactive(obj);
2763 }
2764
2765
Zou Nan hai852835f2010-05-21 09:08:56 +08002766 while (!list_empty(&ring->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002767 struct drm_i915_gem_request *request;
Oscar Mateo48e29f52014-07-24 17:04:29 +01002768 struct intel_ringbuffer *ringbuf;
Eric Anholt673a3942008-07-30 12:06:12 -07002769
Zou Nan hai852835f2010-05-21 09:08:56 +08002770 request = list_first_entry(&ring->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07002771 struct drm_i915_gem_request,
2772 list);
Eric Anholt673a3942008-07-30 12:06:12 -07002773
Chris Wilsondfaae392010-09-22 10:31:52 +01002774 if (!i915_seqno_passed(seqno, request->seqno))
Eric Anholt673a3942008-07-30 12:06:12 -07002775 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002776
Chris Wilsondb53a302011-02-03 11:57:46 +00002777 trace_i915_gem_request_retire(ring, request->seqno);
Oscar Mateo48e29f52014-07-24 17:04:29 +01002778
2779 /* This is one of the few common intersection points
2780 * between legacy ringbuffer submission and execlists:
2781 * we need to tell them apart in order to find the correct
2782 * ringbuffer to which the request belongs to.
2783 */
2784 if (i915.enable_execlists) {
2785 struct intel_context *ctx = request->ctx;
2786 ringbuf = ctx->engine[ring->id].ringbuf;
2787 } else
2788 ringbuf = ring->buffer;
2789
Chris Wilsona71d8d92012-02-15 11:25:36 +00002790 /* We know the GPU must have read the request to have
2791 * sent us the seqno + interrupt, so use the position
2792 * of tail of the request to update the last known position
2793 * of the GPU head.
2794 */
Oscar Mateo48e29f52014-07-24 17:04:29 +01002795 ringbuf->last_retired_head = request->tail;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002796
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002797 i915_gem_free_request(request);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002798 }
2799
Chris Wilsondb53a302011-02-03 11:57:46 +00002800 if (unlikely(ring->trace_irq_seqno &&
2801 i915_seqno_passed(seqno, ring->trace_irq_seqno))) {
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002802 ring->irq_put(ring);
Chris Wilsondb53a302011-02-03 11:57:46 +00002803 ring->trace_irq_seqno = 0;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01002804 }
Chris Wilson23bc5982010-09-29 16:10:57 +01002805
Chris Wilsondb53a302011-02-03 11:57:46 +00002806 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002807}
2808
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002809bool
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002810i915_gem_retire_requests(struct drm_device *dev)
2811{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03002812 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002813 struct intel_engine_cs *ring;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002814 bool idle = true;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002815 int i;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002816
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002817 for_each_ring(ring, dev_priv, i) {
Chris Wilsonb4519512012-05-11 14:29:30 +01002818 i915_gem_retire_requests_ring(ring);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002819 idle &= list_empty(&ring->request_list);
Thomas Danielc86ee3a92014-11-13 10:27:05 +00002820 if (i915.enable_execlists) {
2821 unsigned long flags;
2822
2823 spin_lock_irqsave(&ring->execlist_lock, flags);
2824 idle &= list_empty(&ring->execlist_queue);
2825 spin_unlock_irqrestore(&ring->execlist_lock, flags);
2826
2827 intel_execlists_retire_requests(ring);
2828 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002829 }
2830
2831 if (idle)
2832 mod_delayed_work(dev_priv->wq,
2833 &dev_priv->mm.idle_work,
2834 msecs_to_jiffies(100));
2835
2836 return idle;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002837}
2838
Daniel Vetter75ef9da2010-08-21 00:25:16 +02002839static void
Eric Anholt673a3942008-07-30 12:06:12 -07002840i915_gem_retire_work_handler(struct work_struct *work)
2841{
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002842 struct drm_i915_private *dev_priv =
2843 container_of(work, typeof(*dev_priv), mm.retire_work.work);
2844 struct drm_device *dev = dev_priv->dev;
Chris Wilson0a587052011-01-09 21:05:44 +00002845 bool idle;
Eric Anholt673a3942008-07-30 12:06:12 -07002846
Chris Wilson891b48c2010-09-29 12:26:37 +01002847 /* Come back later if the device is busy... */
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002848 idle = false;
2849 if (mutex_trylock(&dev->struct_mutex)) {
2850 idle = i915_gem_retire_requests(dev);
2851 mutex_unlock(&dev->struct_mutex);
2852 }
2853 if (!idle)
Chris Wilsonbcb45082012-10-05 17:02:57 +01002854 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work,
2855 round_jiffies_up_relative(HZ));
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002856}
Chris Wilson891b48c2010-09-29 12:26:37 +01002857
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002858static void
2859i915_gem_idle_work_handler(struct work_struct *work)
2860{
2861 struct drm_i915_private *dev_priv =
2862 container_of(work, typeof(*dev_priv), mm.idle_work.work);
Zou Nan haid1b851f2010-05-21 09:08:57 +08002863
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002864 intel_mark_idle(dev_priv->dev);
Eric Anholt673a3942008-07-30 12:06:12 -07002865}
2866
Ben Widawsky5816d642012-04-11 11:18:19 -07002867/**
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002868 * Ensures that an object will eventually get non-busy by flushing any required
2869 * write domains, emitting any outstanding lazy request and retiring and
2870 * completed requests.
2871 */
2872static int
2873i915_gem_object_flush_active(struct drm_i915_gem_object *obj)
2874{
2875 int ret;
2876
2877 if (obj->active) {
Chris Wilson0201f1e2012-07-20 12:41:01 +01002878 ret = i915_gem_check_olr(obj->ring, obj->last_read_seqno);
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002879 if (ret)
2880 return ret;
2881
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002882 i915_gem_retire_requests_ring(obj->ring);
2883 }
2884
2885 return 0;
2886}
2887
2888/**
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002889 * i915_gem_wait_ioctl - implements DRM_IOCTL_I915_GEM_WAIT
2890 * @DRM_IOCTL_ARGS: standard ioctl arguments
2891 *
2892 * Returns 0 if successful, else an error is returned with the remaining time in
2893 * the timeout parameter.
2894 * -ETIME: object is still busy after timeout
2895 * -ERESTARTSYS: signal interrupted the wait
2896 * -ENONENT: object doesn't exist
2897 * Also possible, but rare:
2898 * -EAGAIN: GPU wedged
2899 * -ENOMEM: damn
2900 * -ENODEV: Internal IRQ fail
2901 * -E?: The add request failed
2902 *
2903 * The wait ioctl with a timeout of 0 reimplements the busy ioctl. With any
2904 * non-zero timeout parameter the wait ioctl will wait for the given number of
2905 * nanoseconds on an object becoming unbusy. Since the wait itself does so
2906 * without holding struct_mutex the object may become re-busied before this
2907 * function completes. A similar but shorter * race condition exists in the busy
2908 * ioctl
2909 */
2910int
2911i915_gem_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
2912{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03002913 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002914 struct drm_i915_gem_wait *args = data;
2915 struct drm_i915_gem_object *obj;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002916 struct intel_engine_cs *ring = NULL;
Daniel Vetterf69061b2012-12-06 09:01:42 +01002917 unsigned reset_counter;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002918 u32 seqno = 0;
2919 int ret = 0;
2920
Daniel Vetter11b5d512014-09-29 15:31:26 +02002921 if (args->flags != 0)
2922 return -EINVAL;
2923
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002924 ret = i915_mutex_lock_interruptible(dev);
2925 if (ret)
2926 return ret;
2927
2928 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->bo_handle));
2929 if (&obj->base == NULL) {
2930 mutex_unlock(&dev->struct_mutex);
2931 return -ENOENT;
2932 }
2933
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002934 /* Need to make sure the object gets inactive eventually. */
2935 ret = i915_gem_object_flush_active(obj);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002936 if (ret)
2937 goto out;
2938
2939 if (obj->active) {
Chris Wilson0201f1e2012-07-20 12:41:01 +01002940 seqno = obj->last_read_seqno;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002941 ring = obj->ring;
2942 }
2943
2944 if (seqno == 0)
2945 goto out;
2946
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002947 /* Do this after OLR check to make sure we make forward progress polling
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00002948 * on this IOCTL with a timeout <=0 (like busy ioctl)
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002949 */
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00002950 if (args->timeout_ns <= 0) {
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002951 ret = -ETIME;
2952 goto out;
2953 }
2954
2955 drm_gem_object_unreference(&obj->base);
Daniel Vetterf69061b2012-12-06 09:01:42 +01002956 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002957 mutex_unlock(&dev->struct_mutex);
2958
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02002959 return __i915_wait_seqno(ring, seqno, reset_counter, true,
2960 &args->timeout_ns, file->driver_priv);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002961
2962out:
2963 drm_gem_object_unreference(&obj->base);
2964 mutex_unlock(&dev->struct_mutex);
2965 return ret;
2966}
2967
2968/**
Ben Widawsky5816d642012-04-11 11:18:19 -07002969 * i915_gem_object_sync - sync an object to a ring.
2970 *
2971 * @obj: object which may be in use on another ring.
2972 * @to: ring we wish to use the object on. May be NULL.
2973 *
2974 * This code is meant to abstract object synchronization with the GPU.
2975 * Calling with NULL implies synchronizing the object with the CPU
2976 * rather than a particular GPU ring.
2977 *
2978 * Returns 0 if successful, else propagates up the lower layer error.
2979 */
Ben Widawsky2911a352012-04-05 14:47:36 -07002980int
2981i915_gem_object_sync(struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002982 struct intel_engine_cs *to)
Ben Widawsky2911a352012-04-05 14:47:36 -07002983{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002984 struct intel_engine_cs *from = obj->ring;
Ben Widawsky2911a352012-04-05 14:47:36 -07002985 u32 seqno;
2986 int ret, idx;
2987
2988 if (from == NULL || to == from)
2989 return 0;
2990
Ben Widawsky5816d642012-04-11 11:18:19 -07002991 if (to == NULL || !i915_semaphore_is_enabled(obj->base.dev))
Chris Wilson0201f1e2012-07-20 12:41:01 +01002992 return i915_gem_object_wait_rendering(obj, false);
Ben Widawsky2911a352012-04-05 14:47:36 -07002993
2994 idx = intel_ring_sync_index(from, to);
2995
Chris Wilson0201f1e2012-07-20 12:41:01 +01002996 seqno = obj->last_read_seqno;
Rodrigo Vividdd4dbc2014-06-30 09:51:11 -07002997 /* Optimization: Avoid semaphore sync when we are sure we already
2998 * waited for an object with higher seqno */
Ben Widawskyebc348b2014-04-29 14:52:28 -07002999 if (seqno <= from->semaphore.sync_seqno[idx])
Ben Widawsky2911a352012-04-05 14:47:36 -07003000 return 0;
3001
Ben Widawskyb4aca012012-04-25 20:50:12 -07003002 ret = i915_gem_check_olr(obj->ring, seqno);
3003 if (ret)
3004 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07003005
Chris Wilsonb52b89d2013-09-25 11:43:28 +01003006 trace_i915_gem_ring_sync_to(from, to, seqno);
Ben Widawskyebc348b2014-04-29 14:52:28 -07003007 ret = to->semaphore.sync_to(to, from, seqno);
Ben Widawskye3a5a222012-04-11 11:18:20 -07003008 if (!ret)
Mika Kuoppala7b01e262012-11-28 17:18:45 +02003009 /* We use last_read_seqno because sync_to()
3010 * might have just caused seqno wrap under
3011 * the radar.
3012 */
Ben Widawskyebc348b2014-04-29 14:52:28 -07003013 from->semaphore.sync_seqno[idx] = obj->last_read_seqno;
Ben Widawsky2911a352012-04-05 14:47:36 -07003014
Ben Widawskye3a5a222012-04-11 11:18:20 -07003015 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07003016}
3017
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01003018static void i915_gem_object_finish_gtt(struct drm_i915_gem_object *obj)
3019{
3020 u32 old_write_domain, old_read_domains;
3021
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01003022 /* Force a pagefault for domain tracking on next user access */
3023 i915_gem_release_mmap(obj);
3024
Keith Packardb97c3d92011-06-24 21:02:59 -07003025 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
3026 return;
3027
Chris Wilson97c809fd2012-10-09 19:24:38 +01003028 /* Wait for any direct GTT access to complete */
3029 mb();
3030
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01003031 old_read_domains = obj->base.read_domains;
3032 old_write_domain = obj->base.write_domain;
3033
3034 obj->base.read_domains &= ~I915_GEM_DOMAIN_GTT;
3035 obj->base.write_domain &= ~I915_GEM_DOMAIN_GTT;
3036
3037 trace_i915_gem_object_change_domain(obj,
3038 old_read_domains,
3039 old_write_domain);
3040}
3041
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003042int i915_vma_unbind(struct i915_vma *vma)
Eric Anholt673a3942008-07-30 12:06:12 -07003043{
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003044 struct drm_i915_gem_object *obj = vma->obj;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003045 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson43e28f02013-01-08 10:53:09 +00003046 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003047
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003048 if (list_empty(&vma->vma_link))
Eric Anholt673a3942008-07-30 12:06:12 -07003049 return 0;
3050
Daniel Vetter0ff501c2013-08-29 19:50:31 +02003051 if (!drm_mm_node_allocated(&vma->node)) {
3052 i915_gem_vma_destroy(vma);
Daniel Vetter0ff501c2013-08-29 19:50:31 +02003053 return 0;
3054 }
Ben Widawsky433544b2013-08-13 18:09:06 -07003055
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08003056 if (vma->pin_count)
Chris Wilson31d8d652012-05-24 19:11:20 +01003057 return -EBUSY;
Eric Anholt673a3942008-07-30 12:06:12 -07003058
Chris Wilsonc4670ad2012-08-20 10:23:27 +01003059 BUG_ON(obj->pages == NULL);
3060
Chris Wilsona8198ee2011-04-13 22:04:09 +01003061 ret = i915_gem_object_finish_gpu(obj);
Chris Wilson1488fc02012-04-24 15:47:31 +01003062 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07003063 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01003064 /* Continue on if we fail due to EIO, the GPU is hung so we
3065 * should be safe and we need to cleanup or else we might
3066 * cause memory corruption through use-after-free.
3067 */
Chris Wilsona8198ee2011-04-13 22:04:09 +01003068
Chris Wilson1d1ef21d2014-09-09 07:02:43 +01003069 /* Throw away the active reference before moving to the unbound list */
3070 i915_gem_object_retire(obj);
3071
Daniel Vetter8b1bc9b2014-02-14 14:06:07 +01003072 if (i915_is_ggtt(vma->vm)) {
3073 i915_gem_object_finish_gtt(obj);
Chris Wilsona8198ee2011-04-13 22:04:09 +01003074
Daniel Vetter8b1bc9b2014-02-14 14:06:07 +01003075 /* release the fence reg _after_ flushing */
3076 ret = i915_gem_object_put_fence(obj);
3077 if (ret)
3078 return ret;
3079 }
Daniel Vetter96b47b62009-12-15 17:50:00 +01003080
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003081 trace_i915_vma_unbind(vma);
Chris Wilsondb53a302011-02-03 11:57:46 +00003082
Ben Widawsky6f65e292013-12-06 14:10:56 -08003083 vma->unbind_vma(vma);
3084
Chris Wilson64bf9302014-02-25 14:23:28 +00003085 list_del_init(&vma->mm_list);
Ben Widawsky5cacaac2013-07-31 17:00:13 -07003086 if (i915_is_ggtt(vma->vm))
Chris Wilsone6a84462014-08-11 12:00:12 +02003087 obj->map_and_fenceable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07003088
Ben Widawsky2f633152013-07-17 12:19:03 -07003089 drm_mm_remove_node(&vma->node);
3090 i915_gem_vma_destroy(vma);
3091
3092 /* Since the unbound list is global, only move to that list if
Daniel Vetterb93dab62013-08-26 11:23:47 +02003093 * no more VMAs exist. */
Armin Reese9490edb2014-07-11 10:20:07 -07003094 if (list_empty(&obj->vma_list)) {
3095 i915_gem_gtt_finish_object(obj);
Ben Widawsky2f633152013-07-17 12:19:03 -07003096 list_move_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Armin Reese9490edb2014-07-11 10:20:07 -07003097 }
Eric Anholt673a3942008-07-30 12:06:12 -07003098
Chris Wilson70903c32013-12-04 09:59:09 +00003099 /* And finally now the object is completely decoupled from this vma,
3100 * we can drop its hold on the backing storage and allow it to be
3101 * reaped by the shrinker.
3102 */
3103 i915_gem_object_unpin_pages(obj);
3104
Chris Wilson88241782011-01-07 17:09:48 +00003105 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00003106}
3107
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07003108int i915_gpu_idle(struct drm_device *dev)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003109{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003110 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003111 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003112 int ret, i;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003113
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003114 /* Flush everything onto the inactive list. */
Chris Wilsonb4519512012-05-11 14:29:30 +01003115 for_each_ring(ring, dev_priv, i) {
Thomas Danielecdb5fd2014-08-20 16:29:24 +01003116 if (!i915.enable_execlists) {
3117 ret = i915_switch_context(ring, ring->default_context);
3118 if (ret)
3119 return ret;
3120 }
Ben Widawskyb6c74882012-08-14 14:35:14 -07003121
Chris Wilson3e960502012-11-27 16:22:54 +00003122 ret = intel_ring_idle(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003123 if (ret)
3124 return ret;
3125 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003126
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01003127 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003128}
3129
Chris Wilson9ce079e2012-04-17 15:31:30 +01003130static void i965_write_fence_reg(struct drm_device *dev, int reg,
3131 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003132{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003133 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak56c844e2013-01-07 21:47:34 +02003134 int fence_reg;
3135 int fence_pitch_shift;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003136
Imre Deak56c844e2013-01-07 21:47:34 +02003137 if (INTEL_INFO(dev)->gen >= 6) {
3138 fence_reg = FENCE_REG_SANDYBRIDGE_0;
3139 fence_pitch_shift = SANDYBRIDGE_FENCE_PITCH_SHIFT;
3140 } else {
3141 fence_reg = FENCE_REG_965_0;
3142 fence_pitch_shift = I965_FENCE_PITCH_SHIFT;
3143 }
3144
Chris Wilsond18b9612013-07-10 13:36:23 +01003145 fence_reg += reg * 8;
3146
3147 /* To w/a incoherency with non-atomic 64-bit register updates,
3148 * we split the 64-bit update into two 32-bit writes. In order
3149 * for a partial fence not to be evaluated between writes, we
3150 * precede the update with write to turn off the fence register,
3151 * and only enable the fence as the last step.
3152 *
3153 * For extra levels of paranoia, we make sure each step lands
3154 * before applying the next step.
3155 */
3156 I915_WRITE(fence_reg, 0);
3157 POSTING_READ(fence_reg);
3158
Chris Wilson9ce079e2012-04-17 15:31:30 +01003159 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003160 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilsond18b9612013-07-10 13:36:23 +01003161 uint64_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003162
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003163 val = (uint64_t)((i915_gem_obj_ggtt_offset(obj) + size - 4096) &
Chris Wilson9ce079e2012-04-17 15:31:30 +01003164 0xfffff000) << 32;
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003165 val |= i915_gem_obj_ggtt_offset(obj) & 0xfffff000;
Imre Deak56c844e2013-01-07 21:47:34 +02003166 val |= (uint64_t)((obj->stride / 128) - 1) << fence_pitch_shift;
Chris Wilson9ce079e2012-04-17 15:31:30 +01003167 if (obj->tiling_mode == I915_TILING_Y)
3168 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
3169 val |= I965_FENCE_REG_VALID;
Daniel Vetterc6642782010-11-12 13:46:18 +00003170
Chris Wilsond18b9612013-07-10 13:36:23 +01003171 I915_WRITE(fence_reg + 4, val >> 32);
3172 POSTING_READ(fence_reg + 4);
3173
3174 I915_WRITE(fence_reg + 0, val);
3175 POSTING_READ(fence_reg);
3176 } else {
3177 I915_WRITE(fence_reg + 4, 0);
3178 POSTING_READ(fence_reg + 4);
3179 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08003180}
3181
Chris Wilson9ce079e2012-04-17 15:31:30 +01003182static void i915_write_fence_reg(struct drm_device *dev, int reg,
3183 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003184{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003185 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9ce079e2012-04-17 15:31:30 +01003186 u32 val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003187
Chris Wilson9ce079e2012-04-17 15:31:30 +01003188 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003189 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003190 int pitch_val;
3191 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003192
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003193 WARN((i915_gem_obj_ggtt_offset(obj) & ~I915_FENCE_START_MASK) ||
Chris Wilson9ce079e2012-04-17 15:31:30 +01003194 (size & -size) != size ||
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003195 (i915_gem_obj_ggtt_offset(obj) & (size - 1)),
3196 "object 0x%08lx [fenceable? %d] not 1M or pot-size (0x%08x) aligned\n",
3197 i915_gem_obj_ggtt_offset(obj), obj->map_and_fenceable, size);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003198
3199 if (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev))
3200 tile_width = 128;
3201 else
3202 tile_width = 512;
3203
3204 /* Note: pitch better be a power of two tile widths */
3205 pitch_val = obj->stride / tile_width;
3206 pitch_val = ffs(pitch_val) - 1;
3207
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003208 val = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003209 if (obj->tiling_mode == I915_TILING_Y)
3210 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
3211 val |= I915_FENCE_SIZE_BITS(size);
3212 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
3213 val |= I830_FENCE_REG_VALID;
3214 } else
3215 val = 0;
3216
3217 if (reg < 8)
3218 reg = FENCE_REG_830_0 + reg * 4;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003219 else
Chris Wilson9ce079e2012-04-17 15:31:30 +01003220 reg = FENCE_REG_945_8 + (reg - 8) * 4;
Jesse Barnes0f973f22009-01-26 17:10:45 -08003221
Chris Wilson9ce079e2012-04-17 15:31:30 +01003222 I915_WRITE(reg, val);
3223 POSTING_READ(reg);
Jesse Barnesde151cf2008-11-12 10:03:55 -08003224}
3225
Chris Wilson9ce079e2012-04-17 15:31:30 +01003226static void i830_write_fence_reg(struct drm_device *dev, int reg,
3227 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003228{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003229 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003230 uint32_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003231
Chris Wilson9ce079e2012-04-17 15:31:30 +01003232 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003233 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003234 uint32_t pitch_val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003235
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003236 WARN((i915_gem_obj_ggtt_offset(obj) & ~I830_FENCE_START_MASK) ||
Chris Wilson9ce079e2012-04-17 15:31:30 +01003237 (size & -size) != size ||
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003238 (i915_gem_obj_ggtt_offset(obj) & (size - 1)),
3239 "object 0x%08lx not 512K or pot-size 0x%08x aligned\n",
3240 i915_gem_obj_ggtt_offset(obj), size);
Eric Anholte76a16d2009-05-26 17:44:56 -07003241
Chris Wilson9ce079e2012-04-17 15:31:30 +01003242 pitch_val = obj->stride / 128;
3243 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003244
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003245 val = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003246 if (obj->tiling_mode == I915_TILING_Y)
3247 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
3248 val |= I830_FENCE_SIZE_BITS(size);
3249 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
3250 val |= I830_FENCE_REG_VALID;
3251 } else
3252 val = 0;
Daniel Vetterc6642782010-11-12 13:46:18 +00003253
Chris Wilson9ce079e2012-04-17 15:31:30 +01003254 I915_WRITE(FENCE_REG_830_0 + reg * 4, val);
3255 POSTING_READ(FENCE_REG_830_0 + reg * 4);
3256}
3257
Chris Wilsond0a57782012-10-09 19:24:37 +01003258inline static bool i915_gem_object_needs_mb(struct drm_i915_gem_object *obj)
3259{
3260 return obj && obj->base.read_domains & I915_GEM_DOMAIN_GTT;
3261}
3262
Chris Wilson9ce079e2012-04-17 15:31:30 +01003263static void i915_gem_write_fence(struct drm_device *dev, int reg,
3264 struct drm_i915_gem_object *obj)
3265{
Chris Wilsond0a57782012-10-09 19:24:37 +01003266 struct drm_i915_private *dev_priv = dev->dev_private;
3267
3268 /* Ensure that all CPU reads are completed before installing a fence
3269 * and all writes before removing the fence.
3270 */
3271 if (i915_gem_object_needs_mb(dev_priv->fence_regs[reg].obj))
3272 mb();
3273
Daniel Vetter94a335d2013-07-17 14:51:28 +02003274 WARN(obj && (!obj->stride || !obj->tiling_mode),
3275 "bogus fence setup with stride: 0x%x, tiling mode: %i\n",
3276 obj->stride, obj->tiling_mode);
3277
Chris Wilson9ce079e2012-04-17 15:31:30 +01003278 switch (INTEL_INFO(dev)->gen) {
Damien Lespiau01209dd2013-02-13 15:27:25 +00003279 case 9:
Ben Widawsky5ab31332013-11-02 21:07:03 -07003280 case 8:
Chris Wilson9ce079e2012-04-17 15:31:30 +01003281 case 7:
Imre Deak56c844e2013-01-07 21:47:34 +02003282 case 6:
Chris Wilson9ce079e2012-04-17 15:31:30 +01003283 case 5:
3284 case 4: i965_write_fence_reg(dev, reg, obj); break;
3285 case 3: i915_write_fence_reg(dev, reg, obj); break;
3286 case 2: i830_write_fence_reg(dev, reg, obj); break;
Ben Widawsky7dbf9d62012-12-18 10:31:22 -08003287 default: BUG();
Chris Wilson9ce079e2012-04-17 15:31:30 +01003288 }
Chris Wilsond0a57782012-10-09 19:24:37 +01003289
3290 /* And similarly be paranoid that no direct access to this region
3291 * is reordered to before the fence is installed.
3292 */
3293 if (i915_gem_object_needs_mb(obj))
3294 mb();
Jesse Barnesde151cf2008-11-12 10:03:55 -08003295}
3296
Chris Wilson61050802012-04-17 15:31:31 +01003297static inline int fence_number(struct drm_i915_private *dev_priv,
3298 struct drm_i915_fence_reg *fence)
3299{
3300 return fence - dev_priv->fence_regs;
3301}
3302
3303static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
3304 struct drm_i915_fence_reg *fence,
3305 bool enable)
3306{
Chris Wilson2dc8aae2013-05-22 17:08:06 +01003307 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson46a0b632013-07-10 13:36:24 +01003308 int reg = fence_number(dev_priv, fence);
Chris Wilson61050802012-04-17 15:31:31 +01003309
Chris Wilson46a0b632013-07-10 13:36:24 +01003310 i915_gem_write_fence(obj->base.dev, reg, enable ? obj : NULL);
Chris Wilson61050802012-04-17 15:31:31 +01003311
3312 if (enable) {
Chris Wilson46a0b632013-07-10 13:36:24 +01003313 obj->fence_reg = reg;
Chris Wilson61050802012-04-17 15:31:31 +01003314 fence->obj = obj;
3315 list_move_tail(&fence->lru_list, &dev_priv->mm.fence_list);
3316 } else {
3317 obj->fence_reg = I915_FENCE_REG_NONE;
3318 fence->obj = NULL;
3319 list_del_init(&fence->lru_list);
3320 }
Daniel Vetter94a335d2013-07-17 14:51:28 +02003321 obj->fence_dirty = false;
Chris Wilson61050802012-04-17 15:31:31 +01003322}
3323
Chris Wilsond9e86c02010-11-10 16:40:20 +00003324static int
Chris Wilsond0a57782012-10-09 19:24:37 +01003325i915_gem_object_wait_fence(struct drm_i915_gem_object *obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003326{
Chris Wilson1c293ea2012-04-17 15:31:27 +01003327 if (obj->last_fenced_seqno) {
Chris Wilson86d5bc32012-07-20 12:41:04 +01003328 int ret = i915_wait_seqno(obj->ring, obj->last_fenced_seqno);
Chris Wilson18991842012-04-17 15:31:29 +01003329 if (ret)
3330 return ret;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003331
3332 obj->last_fenced_seqno = 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003333 }
3334
3335 return 0;
3336}
3337
3338int
3339i915_gem_object_put_fence(struct drm_i915_gem_object *obj)
3340{
Chris Wilson61050802012-04-17 15:31:31 +01003341 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003342 struct drm_i915_fence_reg *fence;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003343 int ret;
3344
Chris Wilsond0a57782012-10-09 19:24:37 +01003345 ret = i915_gem_object_wait_fence(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003346 if (ret)
3347 return ret;
3348
Chris Wilson61050802012-04-17 15:31:31 +01003349 if (obj->fence_reg == I915_FENCE_REG_NONE)
3350 return 0;
Chris Wilson1690e1e2011-12-14 13:57:08 +01003351
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003352 fence = &dev_priv->fence_regs[obj->fence_reg];
3353
Daniel Vetteraff10b302014-02-14 14:06:05 +01003354 if (WARN_ON(fence->pin_count))
3355 return -EBUSY;
3356
Chris Wilson61050802012-04-17 15:31:31 +01003357 i915_gem_object_fence_lost(obj);
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003358 i915_gem_object_update_fence(obj, fence, false);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003359
3360 return 0;
3361}
3362
3363static struct drm_i915_fence_reg *
Chris Wilsona360bb12012-04-17 15:31:25 +01003364i915_find_fence_reg(struct drm_device *dev)
Daniel Vetterae3db242010-02-19 11:51:58 +01003365{
Daniel Vetterae3db242010-02-19 11:51:58 +01003366 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson8fe301a2012-04-17 15:31:28 +01003367 struct drm_i915_fence_reg *reg, *avail;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003368 int i;
Daniel Vetterae3db242010-02-19 11:51:58 +01003369
3370 /* First try to find a free reg */
Chris Wilsond9e86c02010-11-10 16:40:20 +00003371 avail = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01003372 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
3373 reg = &dev_priv->fence_regs[i];
3374 if (!reg->obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003375 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003376
Chris Wilson1690e1e2011-12-14 13:57:08 +01003377 if (!reg->pin_count)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003378 avail = reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003379 }
3380
Chris Wilsond9e86c02010-11-10 16:40:20 +00003381 if (avail == NULL)
Chris Wilson5dce5b932014-01-20 10:17:36 +00003382 goto deadlock;
Daniel Vetterae3db242010-02-19 11:51:58 +01003383
3384 /* None available, try to steal one or wait for a user to finish */
Chris Wilsond9e86c02010-11-10 16:40:20 +00003385 list_for_each_entry(reg, &dev_priv->mm.fence_list, lru_list) {
Chris Wilson1690e1e2011-12-14 13:57:08 +01003386 if (reg->pin_count)
Daniel Vetterae3db242010-02-19 11:51:58 +01003387 continue;
3388
Chris Wilson8fe301a2012-04-17 15:31:28 +01003389 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003390 }
3391
Chris Wilson5dce5b932014-01-20 10:17:36 +00003392deadlock:
3393 /* Wait for completion of pending flips which consume fences */
3394 if (intel_has_pending_fb_unpin(dev))
3395 return ERR_PTR(-EAGAIN);
3396
3397 return ERR_PTR(-EDEADLK);
Daniel Vetterae3db242010-02-19 11:51:58 +01003398}
3399
Jesse Barnesde151cf2008-11-12 10:03:55 -08003400/**
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003401 * i915_gem_object_get_fence - set up fencing for an object
Jesse Barnesde151cf2008-11-12 10:03:55 -08003402 * @obj: object to map through a fence reg
3403 *
3404 * When mapping objects through the GTT, userspace wants to be able to write
3405 * to them without having to worry about swizzling if the object is tiled.
Jesse Barnesde151cf2008-11-12 10:03:55 -08003406 * This function walks the fence regs looking for a free one for @obj,
3407 * stealing one if it can't find any.
3408 *
3409 * It then sets up the reg based on the object's properties: address, pitch
3410 * and tiling format.
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003411 *
3412 * For an untiled surface, this removes any existing fence.
Jesse Barnesde151cf2008-11-12 10:03:55 -08003413 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01003414int
Chris Wilson06d98132012-04-17 15:31:24 +01003415i915_gem_object_get_fence(struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003416{
Chris Wilson05394f32010-11-08 19:18:58 +00003417 struct drm_device *dev = obj->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08003418 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson14415742012-04-17 15:31:33 +01003419 bool enable = obj->tiling_mode != I915_TILING_NONE;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003420 struct drm_i915_fence_reg *reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003421 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003422
Chris Wilson14415742012-04-17 15:31:33 +01003423 /* Have we updated the tiling parameters upon the object and so
3424 * will need to serialise the write to the associated fence register?
3425 */
Chris Wilson5d82e3e2012-04-21 16:23:23 +01003426 if (obj->fence_dirty) {
Chris Wilsond0a57782012-10-09 19:24:37 +01003427 ret = i915_gem_object_wait_fence(obj);
Chris Wilson14415742012-04-17 15:31:33 +01003428 if (ret)
3429 return ret;
3430 }
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003431
Chris Wilsond9e86c02010-11-10 16:40:20 +00003432 /* Just update our place in the LRU if our fence is getting reused. */
Chris Wilson05394f32010-11-08 19:18:58 +00003433 if (obj->fence_reg != I915_FENCE_REG_NONE) {
3434 reg = &dev_priv->fence_regs[obj->fence_reg];
Chris Wilson5d82e3e2012-04-21 16:23:23 +01003435 if (!obj->fence_dirty) {
Chris Wilson14415742012-04-17 15:31:33 +01003436 list_move_tail(&reg->lru_list,
3437 &dev_priv->mm.fence_list);
3438 return 0;
3439 }
3440 } else if (enable) {
Chris Wilsone6a84462014-08-11 12:00:12 +02003441 if (WARN_ON(!obj->map_and_fenceable))
3442 return -EINVAL;
3443
Chris Wilson14415742012-04-17 15:31:33 +01003444 reg = i915_find_fence_reg(dev);
Chris Wilson5dce5b932014-01-20 10:17:36 +00003445 if (IS_ERR(reg))
3446 return PTR_ERR(reg);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003447
Chris Wilson14415742012-04-17 15:31:33 +01003448 if (reg->obj) {
3449 struct drm_i915_gem_object *old = reg->obj;
3450
Chris Wilsond0a57782012-10-09 19:24:37 +01003451 ret = i915_gem_object_wait_fence(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00003452 if (ret)
3453 return ret;
3454
Chris Wilson14415742012-04-17 15:31:33 +01003455 i915_gem_object_fence_lost(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00003456 }
Chris Wilson14415742012-04-17 15:31:33 +01003457 } else
Eric Anholta09ba7f2009-08-29 12:49:51 -07003458 return 0;
Eric Anholta09ba7f2009-08-29 12:49:51 -07003459
Chris Wilson14415742012-04-17 15:31:33 +01003460 i915_gem_object_update_fence(obj, reg, enable);
Chris Wilson14415742012-04-17 15:31:33 +01003461
Chris Wilson9ce079e2012-04-17 15:31:30 +01003462 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003463}
3464
Chris Wilson4144f9b2014-09-11 08:43:48 +01003465static bool i915_gem_valid_gtt_space(struct i915_vma *vma,
Chris Wilson42d6ab42012-07-26 11:49:32 +01003466 unsigned long cache_level)
3467{
Chris Wilson4144f9b2014-09-11 08:43:48 +01003468 struct drm_mm_node *gtt_space = &vma->node;
Chris Wilson42d6ab42012-07-26 11:49:32 +01003469 struct drm_mm_node *other;
3470
Chris Wilson4144f9b2014-09-11 08:43:48 +01003471 /*
3472 * On some machines we have to be careful when putting differing types
3473 * of snoopable memory together to avoid the prefetcher crossing memory
3474 * domains and dying. During vm initialisation, we decide whether or not
3475 * these constraints apply and set the drm_mm.color_adjust
3476 * appropriately.
Chris Wilson42d6ab42012-07-26 11:49:32 +01003477 */
Chris Wilson4144f9b2014-09-11 08:43:48 +01003478 if (vma->vm->mm.color_adjust == NULL)
Chris Wilson42d6ab42012-07-26 11:49:32 +01003479 return true;
3480
Ben Widawskyc6cfb322013-07-05 14:41:06 -07003481 if (!drm_mm_node_allocated(gtt_space))
Chris Wilson42d6ab42012-07-26 11:49:32 +01003482 return true;
3483
3484 if (list_empty(&gtt_space->node_list))
3485 return true;
3486
3487 other = list_entry(gtt_space->node_list.prev, struct drm_mm_node, node_list);
3488 if (other->allocated && !other->hole_follows && other->color != cache_level)
3489 return false;
3490
3491 other = list_entry(gtt_space->node_list.next, struct drm_mm_node, node_list);
3492 if (other->allocated && !gtt_space->hole_follows && other->color != cache_level)
3493 return false;
3494
3495 return true;
3496}
3497
Jesse Barnesde151cf2008-11-12 10:03:55 -08003498/**
Eric Anholt673a3942008-07-30 12:06:12 -07003499 * Finds free space in the GTT aperture and binds the object there.
3500 */
Daniel Vetter262de142014-02-14 14:01:20 +01003501static struct i915_vma *
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003502i915_gem_object_bind_to_vm(struct drm_i915_gem_object *obj,
3503 struct i915_address_space *vm,
3504 unsigned alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02003505 uint64_t flags)
Eric Anholt673a3942008-07-30 12:06:12 -07003506{
Chris Wilson05394f32010-11-08 19:18:58 +00003507 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003508 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter5e783302010-11-14 22:32:36 +01003509 u32 size, fence_size, fence_alignment, unfenced_alignment;
Chris Wilsond23db882014-05-23 08:48:08 +02003510 unsigned long start =
3511 flags & PIN_OFFSET_BIAS ? flags & PIN_OFFSET_MASK : 0;
3512 unsigned long end =
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003513 flags & PIN_MAPPABLE ? dev_priv->gtt.mappable_end : vm->total;
Ben Widawsky2f633152013-07-17 12:19:03 -07003514 struct i915_vma *vma;
Chris Wilson07f73f62009-09-14 16:50:30 +01003515 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003516
Chris Wilsone28f8712011-07-18 13:11:49 -07003517 fence_size = i915_gem_get_gtt_size(dev,
3518 obj->base.size,
3519 obj->tiling_mode);
3520 fence_alignment = i915_gem_get_gtt_alignment(dev,
3521 obj->base.size,
Imre Deakd8651102013-01-07 21:47:33 +02003522 obj->tiling_mode, true);
Chris Wilsone28f8712011-07-18 13:11:49 -07003523 unfenced_alignment =
Imre Deakd8651102013-01-07 21:47:33 +02003524 i915_gem_get_gtt_alignment(dev,
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003525 obj->base.size,
3526 obj->tiling_mode, false);
Chris Wilsona00b10c2010-09-24 21:15:47 +01003527
Eric Anholt673a3942008-07-30 12:06:12 -07003528 if (alignment == 0)
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003529 alignment = flags & PIN_MAPPABLE ? fence_alignment :
Daniel Vetter5e783302010-11-14 22:32:36 +01003530 unfenced_alignment;
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003531 if (flags & PIN_MAPPABLE && alignment & (fence_alignment - 1)) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00003532 DRM_DEBUG("Invalid object alignment requested %u\n", alignment);
Daniel Vetter262de142014-02-14 14:01:20 +01003533 return ERR_PTR(-EINVAL);
Eric Anholt673a3942008-07-30 12:06:12 -07003534 }
3535
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003536 size = flags & PIN_MAPPABLE ? fence_size : obj->base.size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01003537
Chris Wilson654fc602010-05-27 13:18:21 +01003538 /* If the object is bigger than the entire aperture, reject it early
3539 * before evicting everything in a vain attempt to find space.
3540 */
Chris Wilsond23db882014-05-23 08:48:08 +02003541 if (obj->base.size > end) {
3542 DRM_DEBUG("Attempting to bind an object larger than the aperture: object=%zd > %s aperture=%lu\n",
Chris Wilsona36689c2013-05-21 16:58:49 +01003543 obj->base.size,
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003544 flags & PIN_MAPPABLE ? "mappable" : "total",
Chris Wilsond23db882014-05-23 08:48:08 +02003545 end);
Daniel Vetter262de142014-02-14 14:01:20 +01003546 return ERR_PTR(-E2BIG);
Chris Wilson654fc602010-05-27 13:18:21 +01003547 }
3548
Chris Wilson37e680a2012-06-07 15:38:42 +01003549 ret = i915_gem_object_get_pages(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02003550 if (ret)
Daniel Vetter262de142014-02-14 14:01:20 +01003551 return ERR_PTR(ret);
Chris Wilson6c085a72012-08-20 11:40:46 +02003552
Chris Wilsonfbdda6f2012-11-20 10:45:16 +00003553 i915_gem_object_pin_pages(obj);
3554
Ben Widawskyaccfef22013-08-14 11:38:35 +02003555 vma = i915_gem_obj_lookup_or_create_vma(obj, vm);
Daniel Vetter262de142014-02-14 14:01:20 +01003556 if (IS_ERR(vma))
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003557 goto err_unpin;
Ben Widawsky2f633152013-07-17 12:19:03 -07003558
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003559search_free:
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003560 ret = drm_mm_insert_node_in_range_generic(&vm->mm, &vma->node,
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003561 size, alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02003562 obj->cache_level,
3563 start, end,
Lauri Kasanen62347f92014-04-02 20:03:57 +03003564 DRM_MM_SEARCH_DEFAULT,
3565 DRM_MM_CREATE_DEFAULT);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003566 if (ret) {
Ben Widawskyf6cd1f12013-07-31 17:00:11 -07003567 ret = i915_gem_evict_something(dev, vm, size, alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02003568 obj->cache_level,
3569 start, end,
3570 flags);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003571 if (ret == 0)
3572 goto search_free;
Chris Wilson97311292009-09-21 00:22:34 +01003573
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003574 goto err_free_vma;
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003575 }
Chris Wilson4144f9b2014-09-11 08:43:48 +01003576 if (WARN_ON(!i915_gem_valid_gtt_space(vma, obj->cache_level))) {
Ben Widawsky2f633152013-07-17 12:19:03 -07003577 ret = -EINVAL;
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003578 goto err_remove_node;
Eric Anholt673a3942008-07-30 12:06:12 -07003579 }
3580
Daniel Vetter74163902012-02-15 23:50:21 +01003581 ret = i915_gem_gtt_prepare_object(obj);
Ben Widawsky2f633152013-07-17 12:19:03 -07003582 if (ret)
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003583 goto err_remove_node;
Eric Anholt673a3942008-07-30 12:06:12 -07003584
Ben Widawsky35c20a62013-05-31 11:28:48 -07003585 list_move_tail(&obj->global_list, &dev_priv->mm.bound_list);
Ben Widawskyca191b12013-07-31 17:00:14 -07003586 list_add_tail(&vma->mm_list, &vm->inactive_list);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01003587
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003588 trace_i915_vma_bind(vma, flags);
Daniel Vetter8ea99c92014-02-14 14:01:21 +01003589 vma->bind_vma(vma, obj->cache_level,
Chris Wilsonc826c442014-10-31 13:53:53 +00003590 flags & PIN_GLOBAL ? GLOBAL_BIND : 0);
Daniel Vetter8ea99c92014-02-14 14:01:21 +01003591
Daniel Vetter262de142014-02-14 14:01:20 +01003592 return vma;
Ben Widawsky2f633152013-07-17 12:19:03 -07003593
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003594err_remove_node:
Dan Carpenter6286ef92013-07-19 08:46:27 +03003595 drm_mm_remove_node(&vma->node);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003596err_free_vma:
Ben Widawsky2f633152013-07-17 12:19:03 -07003597 i915_gem_vma_destroy(vma);
Daniel Vetter262de142014-02-14 14:01:20 +01003598 vma = ERR_PTR(ret);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003599err_unpin:
Ben Widawsky2f633152013-07-17 12:19:03 -07003600 i915_gem_object_unpin_pages(obj);
Daniel Vetter262de142014-02-14 14:01:20 +01003601 return vma;
Eric Anholt673a3942008-07-30 12:06:12 -07003602}
3603
Chris Wilson000433b2013-08-08 14:41:09 +01003604bool
Chris Wilson2c225692013-08-09 12:26:45 +01003605i915_gem_clflush_object(struct drm_i915_gem_object *obj,
3606 bool force)
Eric Anholt673a3942008-07-30 12:06:12 -07003607{
Eric Anholt673a3942008-07-30 12:06:12 -07003608 /* If we don't have a page list set up, then we're not pinned
3609 * to GPU, and we can ignore the cache flush because it'll happen
3610 * again at bind time.
3611 */
Chris Wilson05394f32010-11-08 19:18:58 +00003612 if (obj->pages == NULL)
Chris Wilson000433b2013-08-08 14:41:09 +01003613 return false;
Eric Anholt673a3942008-07-30 12:06:12 -07003614
Imre Deak769ce462013-02-13 21:56:05 +02003615 /*
3616 * Stolen memory is always coherent with the GPU as it is explicitly
3617 * marked as wc by the system, or the system is cache-coherent.
3618 */
Chris Wilson6a2c4232014-11-04 04:51:40 -08003619 if (obj->stolen || obj->phys_handle)
Chris Wilson000433b2013-08-08 14:41:09 +01003620 return false;
Imre Deak769ce462013-02-13 21:56:05 +02003621
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003622 /* If the GPU is snooping the contents of the CPU cache,
3623 * we do not need to manually clear the CPU cache lines. However,
3624 * the caches are only snooped when the render cache is
3625 * flushed/invalidated. As we always have to emit invalidations
3626 * and flushes when moving into and out of the RENDER domain, correct
3627 * snooping behaviour occurs naturally as the result of our domain
3628 * tracking.
3629 */
Chris Wilson2c225692013-08-09 12:26:45 +01003630 if (!force && cpu_cache_is_coherent(obj->base.dev, obj->cache_level))
Chris Wilson000433b2013-08-08 14:41:09 +01003631 return false;
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003632
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003633 trace_i915_gem_object_clflush(obj);
Chris Wilson9da3da62012-06-01 15:20:22 +01003634 drm_clflush_sg(obj->pages);
Chris Wilson000433b2013-08-08 14:41:09 +01003635
3636 return true;
Eric Anholte47c68e2008-11-14 13:35:19 -08003637}
3638
3639/** Flushes the GTT write domain for the object if it's dirty. */
3640static void
Chris Wilson05394f32010-11-08 19:18:58 +00003641i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003642{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003643 uint32_t old_write_domain;
3644
Chris Wilson05394f32010-11-08 19:18:58 +00003645 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08003646 return;
3647
Chris Wilson63256ec2011-01-04 18:42:07 +00003648 /* No actual flushing is required for the GTT write domain. Writes
Eric Anholte47c68e2008-11-14 13:35:19 -08003649 * to it immediately go to main memory as far as we know, so there's
3650 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00003651 *
3652 * However, we do have to enforce the order so that all writes through
3653 * the GTT land before any writes to the device, such as updates to
3654 * the GATT itself.
Eric Anholte47c68e2008-11-14 13:35:19 -08003655 */
Chris Wilson63256ec2011-01-04 18:42:07 +00003656 wmb();
3657
Chris Wilson05394f32010-11-08 19:18:58 +00003658 old_write_domain = obj->base.write_domain;
3659 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003660
Daniel Vetterf99d7062014-06-19 16:01:59 +02003661 intel_fb_obj_flush(obj, false);
3662
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003663 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003664 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003665 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003666}
3667
3668/** Flushes the CPU write domain for the object if it's dirty. */
3669static void
Chris Wilson2c225692013-08-09 12:26:45 +01003670i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj,
3671 bool force)
Eric Anholte47c68e2008-11-14 13:35:19 -08003672{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003673 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08003674
Chris Wilson05394f32010-11-08 19:18:58 +00003675 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08003676 return;
3677
Chris Wilson000433b2013-08-08 14:41:09 +01003678 if (i915_gem_clflush_object(obj, force))
3679 i915_gem_chipset_flush(obj->base.dev);
3680
Chris Wilson05394f32010-11-08 19:18:58 +00003681 old_write_domain = obj->base.write_domain;
3682 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003683
Daniel Vetterf99d7062014-06-19 16:01:59 +02003684 intel_fb_obj_flush(obj, false);
3685
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003686 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003687 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003688 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003689}
3690
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003691/**
3692 * Moves a single object to the GTT read, and possibly write domain.
3693 *
3694 * This function returns when the move is complete, including waiting on
3695 * flushes to occur.
3696 */
Jesse Barnes79e53942008-11-07 14:24:08 -08003697int
Chris Wilson20217462010-11-23 15:26:33 +00003698i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003699{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003700 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilsondc8cd1e2014-08-09 17:37:22 +01003701 struct i915_vma *vma = i915_gem_obj_to_ggtt(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003702 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003703 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003704
Eric Anholt02354392008-11-26 13:58:13 -08003705 /* Not valid to be called on unbound objects. */
Chris Wilsondc8cd1e2014-08-09 17:37:22 +01003706 if (vma == NULL)
Eric Anholt02354392008-11-26 13:58:13 -08003707 return -EINVAL;
3708
Chris Wilson8d7e3de2011-02-07 15:23:02 +00003709 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
3710 return 0;
3711
Chris Wilson0201f1e2012-07-20 12:41:01 +01003712 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00003713 if (ret)
3714 return ret;
3715
Chris Wilsonc8725f32014-03-17 12:21:55 +00003716 i915_gem_object_retire(obj);
Chris Wilson2c225692013-08-09 12:26:45 +01003717 i915_gem_object_flush_cpu_write_domain(obj, false);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003718
Chris Wilsond0a57782012-10-09 19:24:37 +01003719 /* Serialise direct access to this object with the barriers for
3720 * coherent writes from the GPU, by effectively invalidating the
3721 * GTT domain upon first access.
3722 */
3723 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
3724 mb();
3725
Chris Wilson05394f32010-11-08 19:18:58 +00003726 old_write_domain = obj->base.write_domain;
3727 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003728
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003729 /* It should now be out of any other write domains, and we can update
3730 * the domain values for our changes.
3731 */
Chris Wilson05394f32010-11-08 19:18:58 +00003732 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
3733 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08003734 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003735 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
3736 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
3737 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08003738 }
3739
Daniel Vetterf99d7062014-06-19 16:01:59 +02003740 if (write)
3741 intel_fb_obj_invalidate(obj, NULL);
3742
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003743 trace_i915_gem_object_change_domain(obj,
3744 old_read_domains,
3745 old_write_domain);
3746
Chris Wilson8325a092012-04-24 15:52:35 +01003747 /* And bump the LRU for this access */
Chris Wilsondc8cd1e2014-08-09 17:37:22 +01003748 if (i915_gem_object_is_inactive(obj))
3749 list_move_tail(&vma->mm_list,
3750 &dev_priv->gtt.base.inactive_list);
Chris Wilson8325a092012-04-24 15:52:35 +01003751
Eric Anholte47c68e2008-11-14 13:35:19 -08003752 return 0;
3753}
3754
Chris Wilsone4ffd172011-04-04 09:44:39 +01003755int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
3756 enum i915_cache_level cache_level)
3757{
Daniel Vetter7bddb012012-02-09 17:15:47 +01003758 struct drm_device *dev = obj->base.dev;
Chris Wilsondf6f7832014-03-21 07:40:56 +00003759 struct i915_vma *vma, *next;
Chris Wilsone4ffd172011-04-04 09:44:39 +01003760 int ret;
3761
3762 if (obj->cache_level == cache_level)
3763 return 0;
3764
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08003765 if (i915_gem_obj_is_pinned(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003766 DRM_DEBUG("can not change the cache level of pinned objects\n");
3767 return -EBUSY;
3768 }
3769
Chris Wilsondf6f7832014-03-21 07:40:56 +00003770 list_for_each_entry_safe(vma, next, &obj->vma_list, vma_link) {
Chris Wilson4144f9b2014-09-11 08:43:48 +01003771 if (!i915_gem_valid_gtt_space(vma, cache_level)) {
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003772 ret = i915_vma_unbind(vma);
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003773 if (ret)
3774 return ret;
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003775 }
Chris Wilson42d6ab42012-07-26 11:49:32 +01003776 }
3777
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003778 if (i915_gem_obj_bound_any(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003779 ret = i915_gem_object_finish_gpu(obj);
3780 if (ret)
3781 return ret;
3782
3783 i915_gem_object_finish_gtt(obj);
3784
3785 /* Before SandyBridge, you could not use tiling or fence
3786 * registers with snooped memory, so relinquish any fences
3787 * currently pointing to our region in the aperture.
3788 */
Chris Wilson42d6ab42012-07-26 11:49:32 +01003789 if (INTEL_INFO(dev)->gen < 6) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003790 ret = i915_gem_object_put_fence(obj);
3791 if (ret)
3792 return ret;
3793 }
3794
Ben Widawsky6f65e292013-12-06 14:10:56 -08003795 list_for_each_entry(vma, &obj->vma_list, vma_link)
Daniel Vetter8ea99c92014-02-14 14:01:21 +01003796 if (drm_mm_node_allocated(&vma->node))
3797 vma->bind_vma(vma, cache_level,
Tvrtko Ursulinaff43762014-10-24 12:42:33 +01003798 vma->bound & GLOBAL_BIND);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003799 }
3800
Chris Wilson2c225692013-08-09 12:26:45 +01003801 list_for_each_entry(vma, &obj->vma_list, vma_link)
3802 vma->node.color = cache_level;
3803 obj->cache_level = cache_level;
3804
3805 if (cpu_write_needs_clflush(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003806 u32 old_read_domains, old_write_domain;
3807
3808 /* If we're coming from LLC cached, then we haven't
3809 * actually been tracking whether the data is in the
3810 * CPU cache or not, since we only allow one bit set
3811 * in obj->write_domain and have been skipping the clflushes.
3812 * Just set it to the CPU cache for now.
3813 */
Chris Wilsonc8725f32014-03-17 12:21:55 +00003814 i915_gem_object_retire(obj);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003815 WARN_ON(obj->base.write_domain & ~I915_GEM_DOMAIN_CPU);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003816
3817 old_read_domains = obj->base.read_domains;
3818 old_write_domain = obj->base.write_domain;
3819
3820 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3821 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3822
3823 trace_i915_gem_object_change_domain(obj,
3824 old_read_domains,
3825 old_write_domain);
3826 }
3827
Chris Wilsone4ffd172011-04-04 09:44:39 +01003828 return 0;
3829}
3830
Ben Widawsky199adf42012-09-21 17:01:20 -07003831int i915_gem_get_caching_ioctl(struct drm_device *dev, void *data,
3832 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003833{
Ben Widawsky199adf42012-09-21 17:01:20 -07003834 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003835 struct drm_i915_gem_object *obj;
3836 int ret;
3837
3838 ret = i915_mutex_lock_interruptible(dev);
3839 if (ret)
3840 return ret;
3841
3842 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3843 if (&obj->base == NULL) {
3844 ret = -ENOENT;
3845 goto unlock;
3846 }
3847
Chris Wilson651d7942013-08-08 14:41:10 +01003848 switch (obj->cache_level) {
3849 case I915_CACHE_LLC:
3850 case I915_CACHE_L3_LLC:
3851 args->caching = I915_CACHING_CACHED;
3852 break;
3853
Chris Wilson4257d3b2013-08-08 14:41:11 +01003854 case I915_CACHE_WT:
3855 args->caching = I915_CACHING_DISPLAY;
3856 break;
3857
Chris Wilson651d7942013-08-08 14:41:10 +01003858 default:
3859 args->caching = I915_CACHING_NONE;
3860 break;
3861 }
Chris Wilsone6994ae2012-07-10 10:27:08 +01003862
3863 drm_gem_object_unreference(&obj->base);
3864unlock:
3865 mutex_unlock(&dev->struct_mutex);
3866 return ret;
3867}
3868
Ben Widawsky199adf42012-09-21 17:01:20 -07003869int i915_gem_set_caching_ioctl(struct drm_device *dev, void *data,
3870 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003871{
Ben Widawsky199adf42012-09-21 17:01:20 -07003872 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003873 struct drm_i915_gem_object *obj;
3874 enum i915_cache_level level;
3875 int ret;
3876
Ben Widawsky199adf42012-09-21 17:01:20 -07003877 switch (args->caching) {
3878 case I915_CACHING_NONE:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003879 level = I915_CACHE_NONE;
3880 break;
Ben Widawsky199adf42012-09-21 17:01:20 -07003881 case I915_CACHING_CACHED:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003882 level = I915_CACHE_LLC;
3883 break;
Chris Wilson4257d3b2013-08-08 14:41:11 +01003884 case I915_CACHING_DISPLAY:
3885 level = HAS_WT(dev) ? I915_CACHE_WT : I915_CACHE_NONE;
3886 break;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003887 default:
3888 return -EINVAL;
3889 }
3890
Ben Widawsky3bc29132012-09-26 16:15:20 -07003891 ret = i915_mutex_lock_interruptible(dev);
3892 if (ret)
3893 return ret;
3894
Chris Wilsone6994ae2012-07-10 10:27:08 +01003895 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3896 if (&obj->base == NULL) {
3897 ret = -ENOENT;
3898 goto unlock;
3899 }
3900
3901 ret = i915_gem_object_set_cache_level(obj, level);
3902
3903 drm_gem_object_unreference(&obj->base);
3904unlock:
3905 mutex_unlock(&dev->struct_mutex);
3906 return ret;
3907}
3908
Chris Wilsoncc98b412013-08-09 12:25:09 +01003909static bool is_pin_display(struct drm_i915_gem_object *obj)
3910{
Oscar Mateo19656432014-05-16 14:20:43 +01003911 struct i915_vma *vma;
3912
Oscar Mateo19656432014-05-16 14:20:43 +01003913 vma = i915_gem_obj_to_ggtt(obj);
3914 if (!vma)
3915 return false;
3916
Chris Wilsoncc98b412013-08-09 12:25:09 +01003917 /* There are 3 sources that pin objects:
3918 * 1. The display engine (scanouts, sprites, cursors);
3919 * 2. Reservations for execbuffer;
3920 * 3. The user.
3921 *
3922 * We can ignore reservations as we hold the struct_mutex and
3923 * are only called outside of the reservation path. The user
3924 * can only increment pin_count once, and so if after
3925 * subtracting the potential reference by the user, any pin_count
3926 * remains, it must be due to another use by the display engine.
3927 */
Oscar Mateo19656432014-05-16 14:20:43 +01003928 return vma->pin_count - !!obj->user_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);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004097 struct drm_i915_gem_request *request;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004098 struct intel_engine_cs *ring = NULL;
Daniel Vetterf69061b2012-12-06 09:01:42 +01004099 unsigned reset_counter;
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004100 u32 seqno = 0;
4101 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004102
Daniel Vetter308887a2012-11-14 17:14:06 +01004103 ret = i915_gem_wait_for_error(&dev_priv->gpu_error);
4104 if (ret)
4105 return ret;
4106
4107 ret = i915_gem_check_wedge(&dev_priv->gpu_error, false);
4108 if (ret)
4109 return ret;
Chris Wilsone110e8d2011-01-26 15:39:14 +00004110
Chris Wilson1c255952010-09-26 11:03:27 +01004111 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004112 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00004113 if (time_after_eq(request->emitted_jiffies, recent_enough))
4114 break;
4115
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004116 ring = request->ring;
4117 seqno = request->seqno;
Eric Anholtb9624422009-06-03 07:27:35 +00004118 }
Daniel Vetterf69061b2012-12-06 09:01:42 +01004119 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilson1c255952010-09-26 11:03:27 +01004120 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004121
4122 if (seqno == 0)
4123 return 0;
4124
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02004125 ret = __i915_wait_seqno(ring, seqno, reset_counter, true, NULL, NULL);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004126 if (ret == 0)
4127 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00004128
Eric Anholt673a3942008-07-30 12:06:12 -07004129 return ret;
4130}
4131
Chris Wilsond23db882014-05-23 08:48:08 +02004132static bool
4133i915_vma_misplaced(struct i915_vma *vma, uint32_t alignment, uint64_t flags)
4134{
4135 struct drm_i915_gem_object *obj = vma->obj;
4136
4137 if (alignment &&
4138 vma->node.start & (alignment - 1))
4139 return true;
4140
4141 if (flags & PIN_MAPPABLE && !obj->map_and_fenceable)
4142 return true;
4143
4144 if (flags & PIN_OFFSET_BIAS &&
4145 vma->node.start < (flags & PIN_OFFSET_MASK))
4146 return true;
4147
4148 return false;
4149}
4150
Eric Anholt673a3942008-07-30 12:06:12 -07004151int
Chris Wilson05394f32010-11-08 19:18:58 +00004152i915_gem_object_pin(struct drm_i915_gem_object *obj,
Ben Widawskyc37e2202013-07-31 16:59:58 -07004153 struct i915_address_space *vm,
Chris Wilson05394f32010-11-08 19:18:58 +00004154 uint32_t alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02004155 uint64_t flags)
Eric Anholt673a3942008-07-30 12:06:12 -07004156{
Ben Widawsky6e7186a2014-05-06 22:21:36 -07004157 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004158 struct i915_vma *vma;
Chris Wilsonef79e172014-10-31 13:53:52 +00004159 unsigned bound;
Eric Anholt673a3942008-07-30 12:06:12 -07004160 int ret;
4161
Ben Widawsky6e7186a2014-05-06 22:21:36 -07004162 if (WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base))
4163 return -ENODEV;
4164
Daniel Vetterbf3d1492014-02-14 14:01:12 +01004165 if (WARN_ON(flags & (PIN_GLOBAL | PIN_MAPPABLE) && !i915_is_ggtt(vm)))
Daniel Vetter1ec9e262014-02-14 14:01:11 +01004166 return -EINVAL;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004167
Chris Wilsonc826c442014-10-31 13:53:53 +00004168 if (WARN_ON((flags & (PIN_MAPPABLE | PIN_GLOBAL)) == PIN_MAPPABLE))
4169 return -EINVAL;
4170
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004171 vma = i915_gem_obj_to_vma(obj, vm);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004172 if (vma) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004173 if (WARN_ON(vma->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT))
4174 return -EBUSY;
4175
Chris Wilsond23db882014-05-23 08:48:08 +02004176 if (i915_vma_misplaced(vma, alignment, flags)) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004177 WARN(vma->pin_count,
Chris Wilsonae7d49d2010-08-04 12:37:41 +01004178 "bo is already pinned with incorrect alignment:"
Ben Widawskyf343c5f2013-07-05 14:41:04 -07004179 " offset=%lx, req.alignment=%x, req.map_and_fenceable=%d,"
Daniel Vetter75e9e912010-11-04 17:11:09 +01004180 " obj->map_and_fenceable=%d\n",
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004181 i915_gem_obj_offset(obj, vm), alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02004182 !!(flags & PIN_MAPPABLE),
Chris Wilson05394f32010-11-08 19:18:58 +00004183 obj->map_and_fenceable);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004184 ret = i915_vma_unbind(vma);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004185 if (ret)
4186 return ret;
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004187
4188 vma = NULL;
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004189 }
4190 }
4191
Chris Wilsonef79e172014-10-31 13:53:52 +00004192 bound = vma ? vma->bound : 0;
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004193 if (vma == NULL || !drm_mm_node_allocated(&vma->node)) {
Daniel Vetter262de142014-02-14 14:01:20 +01004194 vma = i915_gem_object_bind_to_vm(obj, vm, alignment, flags);
4195 if (IS_ERR(vma))
4196 return PTR_ERR(vma);
Chris Wilson22c344e2009-02-11 14:26:45 +00004197 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05004198
Tvrtko Ursulinaff43762014-10-24 12:42:33 +01004199 if (flags & PIN_GLOBAL && !(vma->bound & GLOBAL_BIND))
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004200 vma->bind_vma(vma, obj->cache_level, GLOBAL_BIND);
Daniel Vetter74898d72012-02-15 23:50:22 +01004201
Chris Wilsonef79e172014-10-31 13:53:52 +00004202 if ((bound ^ vma->bound) & GLOBAL_BIND) {
4203 bool mappable, fenceable;
4204 u32 fence_size, fence_alignment;
4205
4206 fence_size = i915_gem_get_gtt_size(obj->base.dev,
4207 obj->base.size,
4208 obj->tiling_mode);
4209 fence_alignment = i915_gem_get_gtt_alignment(obj->base.dev,
4210 obj->base.size,
4211 obj->tiling_mode,
4212 true);
4213
4214 fenceable = (vma->node.size == fence_size &&
4215 (vma->node.start & (fence_alignment - 1)) == 0);
4216
4217 mappable = (vma->node.start + obj->base.size <=
4218 dev_priv->gtt.mappable_end);
4219
4220 obj->map_and_fenceable = mappable && fenceable;
4221 }
4222
4223 WARN_ON(flags & PIN_MAPPABLE && !obj->map_and_fenceable);
4224
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004225 vma->pin_count++;
Daniel Vetter1ec9e262014-02-14 14:01:11 +01004226 if (flags & PIN_MAPPABLE)
4227 obj->pin_mappable |= true;
Eric Anholt673a3942008-07-30 12:06:12 -07004228
4229 return 0;
4230}
4231
4232void
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004233i915_gem_object_ggtt_unpin(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07004234{
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004235 struct i915_vma *vma = i915_gem_obj_to_ggtt(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004236
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004237 BUG_ON(!vma);
4238 BUG_ON(vma->pin_count == 0);
4239 BUG_ON(!i915_gem_obj_ggtt_bound(obj));
4240
4241 if (--vma->pin_count == 0)
Chris Wilson6299f992010-11-24 12:23:44 +00004242 obj->pin_mappable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07004243}
4244
Daniel Vetterd8ffa602014-05-13 12:11:26 +02004245bool
4246i915_gem_object_pin_fence(struct drm_i915_gem_object *obj)
4247{
4248 if (obj->fence_reg != I915_FENCE_REG_NONE) {
4249 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
4250 struct i915_vma *ggtt_vma = i915_gem_obj_to_ggtt(obj);
4251
4252 WARN_ON(!ggtt_vma ||
4253 dev_priv->fence_regs[obj->fence_reg].pin_count >
4254 ggtt_vma->pin_count);
4255 dev_priv->fence_regs[obj->fence_reg].pin_count++;
4256 return true;
4257 } else
4258 return false;
4259}
4260
4261void
4262i915_gem_object_unpin_fence(struct drm_i915_gem_object *obj)
4263{
4264 if (obj->fence_reg != I915_FENCE_REG_NONE) {
4265 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
4266 WARN_ON(dev_priv->fence_regs[obj->fence_reg].pin_count <= 0);
4267 dev_priv->fence_regs[obj->fence_reg].pin_count--;
4268 }
4269}
4270
Eric Anholt673a3942008-07-30 12:06:12 -07004271int
4272i915_gem_pin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00004273 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004274{
4275 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004276 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07004277 int ret;
4278
Daniel Vetterd472fcc2014-11-24 11:12:42 +01004279 if (drm_core_check_feature(dev, DRIVER_MODESET))
Daniel Vetter02f6bcc2013-12-18 16:30:22 +01004280 return -ENODEV;
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 }
Eric Anholt673a3942008-07-30 12:06:12 -07004291
Chris Wilson05394f32010-11-08 19:18:58 +00004292 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00004293 DRM_DEBUG("Attempting to pin a purgeable buffer\n");
Chris Wilson8c99e572014-01-31 11:34:58 +00004294 ret = -EFAULT;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004295 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004296 }
4297
Chris Wilson05394f32010-11-08 19:18:58 +00004298 if (obj->pin_filp != NULL && obj->pin_filp != file) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00004299 DRM_DEBUG("Already pinned in i915_gem_pin_ioctl(): %d\n",
Jesse Barnes79e53942008-11-07 14:24:08 -08004300 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004301 ret = -EINVAL;
4302 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08004303 }
4304
Daniel Vetteraa5f8022013-10-10 14:46:37 +02004305 if (obj->user_pin_count == ULONG_MAX) {
4306 ret = -EBUSY;
4307 goto out;
4308 }
4309
Chris Wilson93be8782013-01-02 10:31:22 +00004310 if (obj->user_pin_count == 0) {
Daniel Vetter1ec9e262014-02-14 14:01:11 +01004311 ret = i915_gem_obj_ggtt_pin(obj, args->alignment, PIN_MAPPABLE);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004312 if (ret)
4313 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07004314 }
4315
Chris Wilson93be8782013-01-02 10:31:22 +00004316 obj->user_pin_count++;
4317 obj->pin_filp = file;
4318
Ben Widawskyf343c5f2013-07-05 14:41:04 -07004319 args->offset = i915_gem_obj_ggtt_offset(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004320out:
Chris Wilson05394f32010-11-08 19:18:58 +00004321 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004322unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07004323 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004324 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004325}
4326
4327int
4328i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00004329 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004330{
4331 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004332 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01004333 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004334
Daniel Vetterd472fcc2014-11-24 11:12:42 +01004335 if (drm_core_check_feature(dev, DRIVER_MODESET))
4336 return -ENODEV;
4337
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004338 ret = i915_mutex_lock_interruptible(dev);
4339 if (ret)
4340 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004341
Chris Wilson05394f32010-11-08 19:18:58 +00004342 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004343 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004344 ret = -ENOENT;
4345 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07004346 }
Chris Wilson76c1dec2010-09-25 11:22:51 +01004347
Chris Wilson05394f32010-11-08 19:18:58 +00004348 if (obj->pin_filp != file) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00004349 DRM_DEBUG("Not pinned by caller in i915_gem_pin_ioctl(): %d\n",
Jesse Barnes79e53942008-11-07 14:24:08 -08004350 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004351 ret = -EINVAL;
4352 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08004353 }
Chris Wilson05394f32010-11-08 19:18:58 +00004354 obj->user_pin_count--;
4355 if (obj->user_pin_count == 0) {
4356 obj->pin_filp = NULL;
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004357 i915_gem_object_ggtt_unpin(obj);
Jesse Barnes79e53942008-11-07 14:24:08 -08004358 }
Eric Anholt673a3942008-07-30 12:06:12 -07004359
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004360out:
Chris Wilson05394f32010-11-08 19:18:58 +00004361 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004362unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07004363 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004364 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004365}
4366
4367int
4368i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00004369 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004370{
4371 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004372 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01004373 int ret;
4374
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004375 ret = i915_mutex_lock_interruptible(dev);
4376 if (ret)
4377 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004378
Chris Wilson05394f32010-11-08 19:18:58 +00004379 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004380 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004381 ret = -ENOENT;
4382 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07004383 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08004384
Chris Wilson0be555b2010-08-04 15:36:30 +01004385 /* Count all active objects as busy, even if they are currently not used
4386 * by the gpu. Users of this interface expect objects to eventually
4387 * become non-busy without any further actions, therefore emit any
4388 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08004389 */
Daniel Vetter30dfebf2012-06-01 15:21:23 +02004390 ret = i915_gem_object_flush_active(obj);
4391
Chris Wilson05394f32010-11-08 19:18:58 +00004392 args->busy = obj->active;
Chris Wilsone9808ed2012-07-04 12:25:08 +01004393 if (obj->ring) {
4394 BUILD_BUG_ON(I915_NUM_RINGS > 16);
4395 args->busy |= intel_ring_flag(obj->ring) << 16;
4396 }
Eric Anholt673a3942008-07-30 12:06:12 -07004397
Chris Wilson05394f32010-11-08 19:18:58 +00004398 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004399unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07004400 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004401 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004402}
4403
4404int
4405i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
4406 struct drm_file *file_priv)
4407{
Akshay Joshi0206e352011-08-16 15:34:10 -04004408 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07004409}
4410
Chris Wilson3ef94da2009-09-14 16:50:29 +01004411int
4412i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
4413 struct drm_file *file_priv)
4414{
Daniel Vetter656bfa32014-11-20 09:26:30 +01004415 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004416 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004417 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01004418 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004419
4420 switch (args->madv) {
4421 case I915_MADV_DONTNEED:
4422 case I915_MADV_WILLNEED:
4423 break;
4424 default:
4425 return -EINVAL;
4426 }
4427
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004428 ret = i915_mutex_lock_interruptible(dev);
4429 if (ret)
4430 return ret;
4431
Chris Wilson05394f32010-11-08 19:18:58 +00004432 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004433 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004434 ret = -ENOENT;
4435 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004436 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01004437
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004438 if (i915_gem_obj_is_pinned(obj)) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004439 ret = -EINVAL;
4440 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004441 }
4442
Daniel Vetter656bfa32014-11-20 09:26:30 +01004443 if (obj->pages &&
4444 obj->tiling_mode != I915_TILING_NONE &&
4445 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES) {
4446 if (obj->madv == I915_MADV_WILLNEED)
4447 i915_gem_object_unpin_pages(obj);
4448 if (args->madv == I915_MADV_WILLNEED)
4449 i915_gem_object_pin_pages(obj);
4450 }
4451
Chris Wilson05394f32010-11-08 19:18:58 +00004452 if (obj->madv != __I915_MADV_PURGED)
4453 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004454
Chris Wilson6c085a72012-08-20 11:40:46 +02004455 /* if the object is no longer attached, discard its backing storage */
4456 if (i915_gem_object_is_purgeable(obj) && obj->pages == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01004457 i915_gem_object_truncate(obj);
4458
Chris Wilson05394f32010-11-08 19:18:58 +00004459 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01004460
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004461out:
Chris Wilson05394f32010-11-08 19:18:58 +00004462 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004463unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01004464 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004465 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004466}
4467
Chris Wilson37e680a2012-06-07 15:38:42 +01004468void i915_gem_object_init(struct drm_i915_gem_object *obj,
4469 const struct drm_i915_gem_object_ops *ops)
Chris Wilson0327d6b2012-08-11 15:41:06 +01004470{
Ben Widawsky35c20a62013-05-31 11:28:48 -07004471 INIT_LIST_HEAD(&obj->global_list);
Chris Wilson0327d6b2012-08-11 15:41:06 +01004472 INIT_LIST_HEAD(&obj->ring_list);
Ben Widawskyb25cb2f2013-08-14 11:38:33 +02004473 INIT_LIST_HEAD(&obj->obj_exec_link);
Ben Widawsky2f633152013-07-17 12:19:03 -07004474 INIT_LIST_HEAD(&obj->vma_list);
Chris Wilson0327d6b2012-08-11 15:41:06 +01004475
Chris Wilson37e680a2012-06-07 15:38:42 +01004476 obj->ops = ops;
4477
Chris Wilson0327d6b2012-08-11 15:41:06 +01004478 obj->fence_reg = I915_FENCE_REG_NONE;
4479 obj->madv = I915_MADV_WILLNEED;
Chris Wilson0327d6b2012-08-11 15:41:06 +01004480
4481 i915_gem_info_add_obj(obj->base.dev->dev_private, obj->base.size);
4482}
4483
Chris Wilson37e680a2012-06-07 15:38:42 +01004484static const struct drm_i915_gem_object_ops i915_gem_object_ops = {
4485 .get_pages = i915_gem_object_get_pages_gtt,
4486 .put_pages = i915_gem_object_put_pages_gtt,
4487};
4488
Chris Wilson05394f32010-11-08 19:18:58 +00004489struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
4490 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00004491{
Daniel Vetterc397b902010-04-09 19:05:07 +00004492 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07004493 struct address_space *mapping;
Daniel Vetter1a240d42012-11-29 22:18:51 +01004494 gfp_t mask;
Daniel Vetterc397b902010-04-09 19:05:07 +00004495
Chris Wilson42dcedd2012-11-15 11:32:30 +00004496 obj = i915_gem_object_alloc(dev);
Daniel Vetterc397b902010-04-09 19:05:07 +00004497 if (obj == NULL)
4498 return NULL;
4499
4500 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
Chris Wilson42dcedd2012-11-15 11:32:30 +00004501 i915_gem_object_free(obj);
Daniel Vetterc397b902010-04-09 19:05:07 +00004502 return NULL;
4503 }
4504
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004505 mask = GFP_HIGHUSER | __GFP_RECLAIMABLE;
4506 if (IS_CRESTLINE(dev) || IS_BROADWATER(dev)) {
4507 /* 965gm cannot relocate objects above 4GiB. */
4508 mask &= ~__GFP_HIGHMEM;
4509 mask |= __GFP_DMA32;
4510 }
4511
Al Viro496ad9a2013-01-23 17:07:38 -05004512 mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004513 mapping_set_gfp_mask(mapping, mask);
Hugh Dickins5949eac2011-06-27 16:18:18 -07004514
Chris Wilson37e680a2012-06-07 15:38:42 +01004515 i915_gem_object_init(obj, &i915_gem_object_ops);
Chris Wilson73aa8082010-09-30 11:46:12 +01004516
Daniel Vetterc397b902010-04-09 19:05:07 +00004517 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
4518 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4519
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02004520 if (HAS_LLC(dev)) {
4521 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07004522 * cache) for about a 10% performance improvement
4523 * compared to uncached. Graphics requests other than
4524 * display scanout are coherent with the CPU in
4525 * accessing this cache. This means in this mode we
4526 * don't need to clflush on the CPU side, and on the
4527 * GPU side we only need to flush internal caches to
4528 * get data visible to the CPU.
4529 *
4530 * However, we maintain the display planes as UC, and so
4531 * need to rebind when first used as such.
4532 */
4533 obj->cache_level = I915_CACHE_LLC;
4534 } else
4535 obj->cache_level = I915_CACHE_NONE;
4536
Daniel Vetterd861e332013-07-24 23:25:03 +02004537 trace_i915_gem_object_create(obj);
4538
Chris Wilson05394f32010-11-08 19:18:58 +00004539 return obj;
Daniel Vetterac52bc52010-04-09 19:05:06 +00004540}
4541
Chris Wilson340fbd82014-05-22 09:16:52 +01004542static bool discard_backing_storage(struct drm_i915_gem_object *obj)
4543{
4544 /* If we are the last user of the backing storage (be it shmemfs
4545 * pages or stolen etc), we know that the pages are going to be
4546 * immediately released. In this case, we can then skip copying
4547 * back the contents from the GPU.
4548 */
4549
4550 if (obj->madv != I915_MADV_WILLNEED)
4551 return false;
4552
4553 if (obj->base.filp == NULL)
4554 return true;
4555
4556 /* At first glance, this looks racy, but then again so would be
4557 * userspace racing mmap against close. However, the first external
4558 * reference to the filp can only be obtained through the
4559 * i915_gem_mmap_ioctl() which safeguards us against the user
4560 * acquiring such a reference whilst we are in the middle of
4561 * freeing the object.
4562 */
4563 return atomic_long_read(&obj->base.filp->f_count) == 1;
4564}
4565
Chris Wilson1488fc02012-04-24 15:47:31 +01004566void i915_gem_free_object(struct drm_gem_object *gem_obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01004567{
Chris Wilson1488fc02012-04-24 15:47:31 +01004568 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00004569 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004570 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004571 struct i915_vma *vma, *next;
Chris Wilsonbe726152010-07-23 23:18:50 +01004572
Paulo Zanonif65c9162013-11-27 18:20:34 -02004573 intel_runtime_pm_get(dev_priv);
4574
Chris Wilson26e12f892011-03-20 11:20:19 +00004575 trace_i915_gem_object_destroy(obj);
4576
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004577 list_for_each_entry_safe(vma, next, &obj->vma_list, vma_link) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004578 int ret;
4579
4580 vma->pin_count = 0;
4581 ret = i915_vma_unbind(vma);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004582 if (WARN_ON(ret == -ERESTARTSYS)) {
4583 bool was_interruptible;
Chris Wilson1488fc02012-04-24 15:47:31 +01004584
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004585 was_interruptible = dev_priv->mm.interruptible;
4586 dev_priv->mm.interruptible = false;
Chris Wilson1488fc02012-04-24 15:47:31 +01004587
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004588 WARN_ON(i915_vma_unbind(vma));
Chris Wilson1488fc02012-04-24 15:47:31 +01004589
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004590 dev_priv->mm.interruptible = was_interruptible;
4591 }
Chris Wilson1488fc02012-04-24 15:47:31 +01004592 }
4593
Ben Widawsky1d64ae72013-05-31 14:46:20 -07004594 /* Stolen objects don't hold a ref, but do hold pin count. Fix that up
4595 * before progressing. */
4596 if (obj->stolen)
4597 i915_gem_object_unpin_pages(obj);
4598
Daniel Vettera071fa02014-06-18 23:28:09 +02004599 WARN_ON(obj->frontbuffer_bits);
4600
Daniel Vetter656bfa32014-11-20 09:26:30 +01004601 if (obj->pages && obj->madv == I915_MADV_WILLNEED &&
4602 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES &&
4603 obj->tiling_mode != I915_TILING_NONE)
4604 i915_gem_object_unpin_pages(obj);
4605
Ben Widawsky401c29f2013-05-31 11:28:47 -07004606 if (WARN_ON(obj->pages_pin_count))
4607 obj->pages_pin_count = 0;
Chris Wilson340fbd82014-05-22 09:16:52 +01004608 if (discard_backing_storage(obj))
Chris Wilson55372522014-03-25 13:23:06 +00004609 obj->madv = I915_MADV_DONTNEED;
Chris Wilson37e680a2012-06-07 15:38:42 +01004610 i915_gem_object_put_pages(obj);
Chris Wilsond8cb5082012-08-11 15:41:03 +01004611 i915_gem_object_free_mmap_offset(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01004612
Chris Wilson9da3da62012-06-01 15:20:22 +01004613 BUG_ON(obj->pages);
4614
Chris Wilson2f745ad2012-09-04 21:02:58 +01004615 if (obj->base.import_attach)
4616 drm_prime_gem_destroy(&obj->base, NULL);
Chris Wilsonbe726152010-07-23 23:18:50 +01004617
Chris Wilson5cc9ed42014-05-16 14:22:37 +01004618 if (obj->ops->release)
4619 obj->ops->release(obj);
4620
Chris Wilson05394f32010-11-08 19:18:58 +00004621 drm_gem_object_release(&obj->base);
4622 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01004623
Chris Wilson05394f32010-11-08 19:18:58 +00004624 kfree(obj->bit_17);
Chris Wilson42dcedd2012-11-15 11:32:30 +00004625 i915_gem_object_free(obj);
Paulo Zanonif65c9162013-11-27 18:20:34 -02004626
4627 intel_runtime_pm_put(dev_priv);
Chris Wilsonbe726152010-07-23 23:18:50 +01004628}
4629
Daniel Vettere656a6c2013-08-14 14:14:04 +02004630struct i915_vma *i915_gem_obj_to_vma(struct drm_i915_gem_object *obj,
Ben Widawsky2f633152013-07-17 12:19:03 -07004631 struct i915_address_space *vm)
4632{
Daniel Vettere656a6c2013-08-14 14:14:04 +02004633 struct i915_vma *vma;
4634 list_for_each_entry(vma, &obj->vma_list, vma_link)
4635 if (vma->vm == vm)
4636 return vma;
4637
4638 return NULL;
4639}
4640
Ben Widawsky2f633152013-07-17 12:19:03 -07004641void i915_gem_vma_destroy(struct i915_vma *vma)
4642{
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004643 struct i915_address_space *vm = NULL;
Ben Widawsky2f633152013-07-17 12:19:03 -07004644 WARN_ON(vma->node.allocated);
Chris Wilsonaaa05662013-08-20 12:56:40 +01004645
4646 /* Keep the vma as a placeholder in the execbuffer reservation lists */
4647 if (!list_empty(&vma->exec_list))
4648 return;
4649
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004650 vm = vma->vm;
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004651
Daniel Vetter841cd772014-08-06 15:04:48 +02004652 if (!i915_is_ggtt(vm))
4653 i915_ppgtt_put(i915_vm_to_ppgtt(vm));
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004654
Ben Widawsky8b9c2b92013-07-31 17:00:16 -07004655 list_del(&vma->vma_link);
Daniel Vetterb93dab62013-08-26 11:23:47 +02004656
Ben Widawsky2f633152013-07-17 12:19:03 -07004657 kfree(vma);
4658}
4659
Chris Wilsone3efda42014-04-09 09:19:41 +01004660static void
4661i915_gem_stop_ringbuffers(struct drm_device *dev)
4662{
4663 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004664 struct intel_engine_cs *ring;
Chris Wilsone3efda42014-04-09 09:19:41 +01004665 int i;
4666
4667 for_each_ring(ring, dev_priv, i)
Oscar Mateoa83014d2014-07-24 17:04:21 +01004668 dev_priv->gt.stop_ring(ring);
Chris Wilsone3efda42014-04-09 09:19:41 +01004669}
4670
Jesse Barnes5669fca2009-02-17 15:13:31 -08004671int
Chris Wilson45c5f202013-10-16 11:50:01 +01004672i915_gem_suspend(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07004673{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004674 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson45c5f202013-10-16 11:50:01 +01004675 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07004676
Chris Wilson45c5f202013-10-16 11:50:01 +01004677 mutex_lock(&dev->struct_mutex);
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004678 ret = i915_gpu_idle(dev);
Chris Wilsonf7403342013-09-13 23:57:04 +01004679 if (ret)
Chris Wilson45c5f202013-10-16 11:50:01 +01004680 goto err;
Chris Wilsonf7403342013-09-13 23:57:04 +01004681
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004682 i915_gem_retire_requests(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07004683
Chris Wilson29105cc2010-01-07 10:39:13 +00004684 /* Under UMS, be paranoid and evict. */
Chris Wilsona39d7ef2012-04-24 18:22:52 +01004685 if (!drm_core_check_feature(dev, DRIVER_MODESET))
Chris Wilson6c085a72012-08-20 11:40:46 +02004686 i915_gem_evict_everything(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00004687
Chris Wilsone3efda42014-04-09 09:19:41 +01004688 i915_gem_stop_ringbuffers(dev);
Chris Wilson45c5f202013-10-16 11:50:01 +01004689 mutex_unlock(&dev->struct_mutex);
4690
4691 del_timer_sync(&dev_priv->gpu_error.hangcheck_timer);
Chris Wilson29105cc2010-01-07 10:39:13 +00004692 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
Deepak S274fa1c2014-08-05 07:51:20 -07004693 flush_delayed_work(&dev_priv->mm.idle_work);
Chris Wilson29105cc2010-01-07 10:39:13 +00004694
Eric Anholt673a3942008-07-30 12:06:12 -07004695 return 0;
Chris Wilson45c5f202013-10-16 11:50:01 +01004696
4697err:
4698 mutex_unlock(&dev->struct_mutex);
4699 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004700}
4701
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004702int i915_gem_l3_remap(struct intel_engine_cs *ring, int slice)
Ben Widawskyb9524a12012-05-25 16:56:24 -07004703{
Ben Widawskyc3787e22013-09-17 21:12:44 -07004704 struct drm_device *dev = ring->dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004705 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07004706 u32 reg_base = GEN7_L3LOG_BASE + (slice * 0x200);
4707 u32 *remap_info = dev_priv->l3_parity.remap_info[slice];
Ben Widawskyc3787e22013-09-17 21:12:44 -07004708 int i, ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004709
Ben Widawsky040d2ba2013-09-19 11:01:40 -07004710 if (!HAS_L3_DPF(dev) || !remap_info)
Ben Widawskyc3787e22013-09-17 21:12:44 -07004711 return 0;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004712
Ben Widawskyc3787e22013-09-17 21:12:44 -07004713 ret = intel_ring_begin(ring, GEN7_L3LOG_SIZE / 4 * 3);
4714 if (ret)
4715 return ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004716
Ben Widawskyc3787e22013-09-17 21:12:44 -07004717 /*
4718 * Note: We do not worry about the concurrent register cacheline hang
4719 * here because no other code should access these registers other than
4720 * at initialization time.
4721 */
Ben Widawskyb9524a12012-05-25 16:56:24 -07004722 for (i = 0; i < GEN7_L3LOG_SIZE; i += 4) {
Ben Widawskyc3787e22013-09-17 21:12:44 -07004723 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
4724 intel_ring_emit(ring, reg_base + i);
4725 intel_ring_emit(ring, remap_info[i/4]);
Ben Widawskyb9524a12012-05-25 16:56:24 -07004726 }
4727
Ben Widawskyc3787e22013-09-17 21:12:44 -07004728 intel_ring_advance(ring);
Ben Widawskyb9524a12012-05-25 16:56:24 -07004729
Ben Widawskyc3787e22013-09-17 21:12:44 -07004730 return ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004731}
4732
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004733void i915_gem_init_swizzling(struct drm_device *dev)
4734{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004735 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004736
Daniel Vetter11782b02012-01-31 16:47:55 +01004737 if (INTEL_INFO(dev)->gen < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004738 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
4739 return;
4740
4741 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
4742 DISP_TILE_SURFACE_SWIZZLING);
4743
Daniel Vetter11782b02012-01-31 16:47:55 +01004744 if (IS_GEN5(dev))
4745 return;
4746
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004747 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
4748 if (IS_GEN6(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004749 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_SNB));
Ben Widawsky8782e262012-12-18 10:31:23 -08004750 else if (IS_GEN7(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004751 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_IVB));
Ben Widawsky31a53362013-11-02 21:07:04 -07004752 else if (IS_GEN8(dev))
4753 I915_WRITE(GAMTARBMODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_BDW));
Ben Widawsky8782e262012-12-18 10:31:23 -08004754 else
4755 BUG();
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004756}
Daniel Vettere21af882012-02-09 20:53:27 +01004757
Chris Wilson67b1b572012-07-05 23:49:40 +01004758static bool
4759intel_enable_blt(struct drm_device *dev)
4760{
4761 if (!HAS_BLT(dev))
4762 return false;
4763
4764 /* The blitter was dysfunctional on early prototypes */
4765 if (IS_GEN6(dev) && dev->pdev->revision < 8) {
4766 DRM_INFO("BLT not supported on this pre-production hardware;"
4767 " graphics performance will be degraded.\n");
4768 return false;
4769 }
4770
4771 return true;
4772}
4773
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004774static void init_unused_ring(struct drm_device *dev, u32 base)
4775{
4776 struct drm_i915_private *dev_priv = dev->dev_private;
4777
4778 I915_WRITE(RING_CTL(base), 0);
4779 I915_WRITE(RING_HEAD(base), 0);
4780 I915_WRITE(RING_TAIL(base), 0);
4781 I915_WRITE(RING_START(base), 0);
4782}
4783
4784static void init_unused_rings(struct drm_device *dev)
4785{
4786 if (IS_I830(dev)) {
4787 init_unused_ring(dev, PRB1_BASE);
4788 init_unused_ring(dev, SRB0_BASE);
4789 init_unused_ring(dev, SRB1_BASE);
4790 init_unused_ring(dev, SRB2_BASE);
4791 init_unused_ring(dev, SRB3_BASE);
4792 } else if (IS_GEN2(dev)) {
4793 init_unused_ring(dev, SRB0_BASE);
4794 init_unused_ring(dev, SRB1_BASE);
4795 } else if (IS_GEN3(dev)) {
4796 init_unused_ring(dev, PRB1_BASE);
4797 init_unused_ring(dev, PRB2_BASE);
4798 }
4799}
4800
Oscar Mateoa83014d2014-07-24 17:04:21 +01004801int i915_gem_init_rings(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004802{
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004803 struct drm_i915_private *dev_priv = dev->dev_private;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004804 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004805
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004806 /*
4807 * At least 830 can leave some of the unused rings
4808 * "active" (ie. head != tail) after resume which
4809 * will prevent c3 entry. Makes sure all unused rings
4810 * are totally idle.
4811 */
4812 init_unused_rings(dev);
4813
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004814 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004815 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00004816 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004817
4818 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004819 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004820 if (ret)
4821 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08004822 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01004823
Chris Wilson67b1b572012-07-05 23:49:40 +01004824 if (intel_enable_blt(dev)) {
Chris Wilson549f7362010-10-19 11:19:32 +01004825 ret = intel_init_blt_ring_buffer(dev);
4826 if (ret)
4827 goto cleanup_bsd_ring;
4828 }
4829
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004830 if (HAS_VEBOX(dev)) {
4831 ret = intel_init_vebox_ring_buffer(dev);
4832 if (ret)
4833 goto cleanup_blt_ring;
4834 }
4835
Zhao Yakui845f74a2014-04-17 10:37:37 +08004836 if (HAS_BSD2(dev)) {
4837 ret = intel_init_bsd2_ring_buffer(dev);
4838 if (ret)
4839 goto cleanup_vebox_ring;
4840 }
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004841
Mika Kuoppala99433932013-01-22 14:12:17 +02004842 ret = i915_gem_set_seqno(dev, ((u32)~0 - 0x1000));
4843 if (ret)
Zhao Yakui845f74a2014-04-17 10:37:37 +08004844 goto cleanup_bsd2_ring;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004845
4846 return 0;
4847
Zhao Yakui845f74a2014-04-17 10:37:37 +08004848cleanup_bsd2_ring:
4849 intel_cleanup_ring_buffer(&dev_priv->ring[VCS2]);
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004850cleanup_vebox_ring:
4851 intel_cleanup_ring_buffer(&dev_priv->ring[VECS]);
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004852cleanup_blt_ring:
4853 intel_cleanup_ring_buffer(&dev_priv->ring[BCS]);
4854cleanup_bsd_ring:
4855 intel_cleanup_ring_buffer(&dev_priv->ring[VCS]);
4856cleanup_render_ring:
4857 intel_cleanup_ring_buffer(&dev_priv->ring[RCS]);
4858
4859 return ret;
4860}
4861
4862int
4863i915_gem_init_hw(struct drm_device *dev)
4864{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004865 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07004866 int ret, i;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004867
4868 if (INTEL_INFO(dev)->gen < 6 && !intel_enable_gtt())
4869 return -EIO;
4870
Ben Widawsky59124502013-07-04 11:02:05 -07004871 if (dev_priv->ellc_size)
Ben Widawsky05e21cc2013-07-04 11:02:04 -07004872 I915_WRITE(HSW_IDICR, I915_READ(HSW_IDICR) | IDIHASHMSK(0xf));
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004873
Ville Syrjälä0bf21342013-11-29 14:56:12 +02004874 if (IS_HASWELL(dev))
4875 I915_WRITE(MI_PREDICATE_RESULT_2, IS_HSW_GT3(dev) ?
4876 LOWER_SLICE_ENABLED : LOWER_SLICE_DISABLED);
Rodrigo Vivi94353732013-08-28 16:45:46 -03004877
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004878 if (HAS_PCH_NOP(dev)) {
Daniel Vetter6ba844b2014-01-22 23:39:30 +01004879 if (IS_IVYBRIDGE(dev)) {
4880 u32 temp = I915_READ(GEN7_MSG_CTL);
4881 temp &= ~(WAIT_FOR_PCH_FLR_ACK | WAIT_FOR_PCH_RESET_ACK);
4882 I915_WRITE(GEN7_MSG_CTL, temp);
4883 } else if (INTEL_INFO(dev)->gen >= 7) {
4884 u32 temp = I915_READ(HSW_NDE_RSTWRN_OPT);
4885 temp &= ~RESET_PCH_HANDSHAKE_ENABLE;
4886 I915_WRITE(HSW_NDE_RSTWRN_OPT, temp);
4887 }
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004888 }
4889
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004890 i915_gem_init_swizzling(dev);
4891
Oscar Mateoa83014d2014-07-24 17:04:21 +01004892 ret = dev_priv->gt.init_rings(dev);
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004893 if (ret)
Mika Kuoppala99433932013-01-22 14:12:17 +02004894 return ret;
4895
Ben Widawskyc3787e22013-09-17 21:12:44 -07004896 for (i = 0; i < NUM_L3_SLICES(dev); i++)
4897 i915_gem_l3_remap(&dev_priv->ring[RCS], i);
4898
Ben Widawsky254f9652012-06-04 14:42:42 -07004899 /*
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004900 * XXX: Contexts should only be initialized once. Doing a switch to the
4901 * default context switch however is something we'd like to do after
4902 * reset or thaw (the latter may not actually be necessary for HW, but
4903 * goes with our code better). Context switching requires rings (for
4904 * the do_switch), but before enabling PPGTT. So don't move this.
Ben Widawsky254f9652012-06-04 14:42:42 -07004905 */
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004906 ret = i915_gem_context_enable(dev_priv);
Chris Wilson60990322014-04-09 09:19:42 +01004907 if (ret && ret != -EIO) {
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004908 DRM_ERROR("Context enable failed %d\n", ret);
Chris Wilson60990322014-04-09 09:19:42 +01004909 i915_gem_cleanup_ringbuffer(dev);
Daniel Vetter82460d92014-08-06 20:19:53 +02004910
4911 return ret;
4912 }
4913
4914 ret = i915_ppgtt_init_hw(dev);
4915 if (ret && ret != -EIO) {
4916 DRM_ERROR("PPGTT enable failed %d\n", ret);
4917 i915_gem_cleanup_ringbuffer(dev);
Ben Widawskyb7c36d22013-04-08 18:43:56 -07004918 }
Daniel Vettere21af882012-02-09 20:53:27 +01004919
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004920 return ret;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004921}
4922
Chris Wilson1070a422012-04-24 15:47:41 +01004923int i915_gem_init(struct drm_device *dev)
4924{
4925 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson1070a422012-04-24 15:47:41 +01004926 int ret;
4927
Oscar Mateo127f1002014-07-24 17:04:11 +01004928 i915.enable_execlists = intel_sanitize_enable_execlists(dev,
4929 i915.enable_execlists);
4930
Chris Wilson1070a422012-04-24 15:47:41 +01004931 mutex_lock(&dev->struct_mutex);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004932
4933 if (IS_VALLEYVIEW(dev)) {
4934 /* VLVA0 (potential hack), BIOS isn't actually waking us */
Imre Deak981a5ae2014-04-14 20:24:22 +03004935 I915_WRITE(VLV_GTLC_WAKE_CTRL, VLV_GTLC_ALLOWWAKEREQ);
4936 if (wait_for((I915_READ(VLV_GTLC_PW_STATUS) &
4937 VLV_GTLC_ALLOWWAKEACK), 10))
Jesse Barnesd62b4892013-03-08 10:45:53 -08004938 DRM_DEBUG_DRIVER("allow wake ack timed out\n");
4939 }
4940
Oscar Mateoa83014d2014-07-24 17:04:21 +01004941 if (!i915.enable_execlists) {
4942 dev_priv->gt.do_execbuf = i915_gem_ringbuffer_submission;
4943 dev_priv->gt.init_rings = i915_gem_init_rings;
4944 dev_priv->gt.cleanup_ring = intel_cleanup_ring_buffer;
4945 dev_priv->gt.stop_ring = intel_stop_ring_buffer;
Oscar Mateo454afeb2014-07-24 17:04:22 +01004946 } else {
4947 dev_priv->gt.do_execbuf = intel_execlists_submission;
4948 dev_priv->gt.init_rings = intel_logical_rings_init;
4949 dev_priv->gt.cleanup_ring = intel_logical_ring_cleanup;
4950 dev_priv->gt.stop_ring = intel_logical_ring_stop;
Oscar Mateoa83014d2014-07-24 17:04:21 +01004951 }
4952
Daniel Vetter6c5566a2014-08-06 15:04:50 +02004953 ret = i915_gem_init_userptr(dev);
4954 if (ret) {
4955 mutex_unlock(&dev->struct_mutex);
4956 return ret;
4957 }
4958
Ben Widawskyd7e50082012-12-18 10:31:25 -08004959 i915_gem_init_global_gtt(dev);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004960
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004961 ret = i915_gem_context_init(dev);
Mika Kuoppalae3848692014-01-31 17:14:02 +02004962 if (ret) {
4963 mutex_unlock(&dev->struct_mutex);
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004964 return ret;
Mika Kuoppalae3848692014-01-31 17:14:02 +02004965 }
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004966
Chris Wilson1070a422012-04-24 15:47:41 +01004967 ret = i915_gem_init_hw(dev);
Chris Wilson60990322014-04-09 09:19:42 +01004968 if (ret == -EIO) {
4969 /* Allow ring initialisation to fail by marking the GPU as
4970 * wedged. But we only want to do this where the GPU is angry,
4971 * for all other failure, such as an allocation failure, bail.
4972 */
4973 DRM_ERROR("Failed to initialize GPU, declaring it wedged\n");
4974 atomic_set_mask(I915_WEDGED, &dev_priv->gpu_error.reset_counter);
4975 ret = 0;
Chris Wilson1070a422012-04-24 15:47:41 +01004976 }
Chris Wilson60990322014-04-09 09:19:42 +01004977 mutex_unlock(&dev->struct_mutex);
Chris Wilson1070a422012-04-24 15:47:41 +01004978
Chris Wilson60990322014-04-09 09:19:42 +01004979 return ret;
Chris Wilson1070a422012-04-24 15:47:41 +01004980}
4981
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004982void
4983i915_gem_cleanup_ringbuffer(struct drm_device *dev)
4984{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004985 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004986 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00004987 int i;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004988
Chris Wilsonb4519512012-05-11 14:29:30 +01004989 for_each_ring(ring, dev_priv, i)
Oscar Mateoa83014d2014-07-24 17:04:21 +01004990 dev_priv->gt.cleanup_ring(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004991}
4992
Chris Wilson64193402010-10-24 12:38:05 +01004993static void
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004994init_ring_lists(struct intel_engine_cs *ring)
Chris Wilson64193402010-10-24 12:38:05 +01004995{
4996 INIT_LIST_HEAD(&ring->active_list);
4997 INIT_LIST_HEAD(&ring->request_list);
Chris Wilson64193402010-10-24 12:38:05 +01004998}
4999
Ben Widawsky7e0d96b2013-12-06 14:11:26 -08005000void i915_init_vm(struct drm_i915_private *dev_priv,
5001 struct i915_address_space *vm)
Ben Widawskyfc8c0672013-07-31 16:59:54 -07005002{
Ben Widawsky7e0d96b2013-12-06 14:11:26 -08005003 if (!i915_is_ggtt(vm))
5004 drm_mm_init(&vm->mm, vm->start, vm->total);
Ben Widawskyfc8c0672013-07-31 16:59:54 -07005005 vm->dev = dev_priv->dev;
5006 INIT_LIST_HEAD(&vm->active_list);
5007 INIT_LIST_HEAD(&vm->inactive_list);
5008 INIT_LIST_HEAD(&vm->global_link);
Chris Wilsonf72d21e2014-01-09 22:57:22 +00005009 list_add_tail(&vm->global_link, &dev_priv->vm_list);
Ben Widawskyfc8c0672013-07-31 16:59:54 -07005010}
5011
Eric Anholt673a3942008-07-30 12:06:12 -07005012void
5013i915_gem_load(struct drm_device *dev)
5014{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03005015 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson42dcedd2012-11-15 11:32:30 +00005016 int i;
5017
5018 dev_priv->slab =
5019 kmem_cache_create("i915_gem_object",
5020 sizeof(struct drm_i915_gem_object), 0,
5021 SLAB_HWCACHE_ALIGN,
5022 NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07005023
Ben Widawskyfc8c0672013-07-31 16:59:54 -07005024 INIT_LIST_HEAD(&dev_priv->vm_list);
5025 i915_init_vm(dev_priv, &dev_priv->gtt.base);
5026
Ben Widawskya33afea2013-09-17 21:12:45 -07005027 INIT_LIST_HEAD(&dev_priv->context_list);
Chris Wilson6c085a72012-08-20 11:40:46 +02005028 INIT_LIST_HEAD(&dev_priv->mm.unbound_list);
5029 INIT_LIST_HEAD(&dev_priv->mm.bound_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07005030 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00005031 for (i = 0; i < I915_NUM_RINGS; i++)
5032 init_ring_lists(&dev_priv->ring[i]);
Daniel Vetter4b9de732011-10-09 21:52:02 +02005033 for (i = 0; i < I915_MAX_NUM_FENCES; i++)
Daniel Vetter007cc8a2010-04-28 11:02:31 +02005034 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07005035 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
5036 i915_gem_retire_work_handler);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005037 INIT_DELAYED_WORK(&dev_priv->mm.idle_work,
5038 i915_gem_idle_work_handler);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01005039 init_waitqueue_head(&dev_priv->gpu_error.reset_queue);
Chris Wilson31169712009-09-14 16:50:28 +01005040
Dave Airlie94400122010-07-20 13:15:31 +10005041 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
Ville Syrjälädbb42742014-02-25 15:13:41 +02005042 if (!drm_core_check_feature(dev, DRIVER_MODESET) && IS_GEN3(dev)) {
Daniel Vetter50743292012-04-26 22:02:54 +02005043 I915_WRITE(MI_ARB_STATE,
5044 _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Dave Airlie94400122010-07-20 13:15:31 +10005045 }
5046
Chris Wilson72bfa192010-12-19 11:42:05 +00005047 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
5048
Jesse Barnesde151cf2008-11-12 10:03:55 -08005049 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08005050 if (!drm_core_check_feature(dev, DRIVER_MODESET))
5051 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08005052
Ville Syrjälä42b5aea2013-04-09 13:02:47 +03005053 if (INTEL_INFO(dev)->gen >= 7 && !IS_VALLEYVIEW(dev))
5054 dev_priv->num_fence_regs = 32;
5055 else if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08005056 dev_priv->num_fence_regs = 16;
5057 else
5058 dev_priv->num_fence_regs = 8;
5059
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02005060 /* Initialize fence registers to zero */
Chris Wilson19b2dbd2013-06-12 10:15:12 +01005061 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
5062 i915_gem_restore_fences(dev);
Eric Anholt10ed13e2011-05-06 13:53:49 -07005063
Eric Anholt673a3942008-07-30 12:06:12 -07005064 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005065 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01005066
Chris Wilsonce453d82011-02-21 14:43:56 +00005067 dev_priv->mm.interruptible = true;
5068
Chris Wilsonceabbba52014-03-25 13:23:04 +00005069 dev_priv->mm.shrinker.scan_objects = i915_gem_shrinker_scan;
5070 dev_priv->mm.shrinker.count_objects = i915_gem_shrinker_count;
5071 dev_priv->mm.shrinker.seeks = DEFAULT_SEEKS;
5072 register_shrinker(&dev_priv->mm.shrinker);
Chris Wilson2cfcd322014-05-20 08:28:43 +01005073
5074 dev_priv->mm.oom_notifier.notifier_call = i915_gem_shrinker_oom;
5075 register_oom_notifier(&dev_priv->mm.oom_notifier);
Daniel Vetterf99d7062014-06-19 16:01:59 +02005076
5077 mutex_init(&dev_priv->fb_tracking.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07005078}
Dave Airlie71acb5e2008-12-30 20:31:46 +10005079
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005080void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00005081{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005082 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00005083
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005084 cancel_delayed_work_sync(&file_priv->mm.idle_work);
5085
Eric Anholtb9624422009-06-03 07:27:35 +00005086 /* Clean up our request list when the client is going away, so that
5087 * later retire_requests won't dereference our soon-to-be-gone
5088 * file_priv.
5089 */
Chris Wilson1c255952010-09-26 11:03:27 +01005090 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005091 while (!list_empty(&file_priv->mm.request_list)) {
5092 struct drm_i915_gem_request *request;
5093
5094 request = list_first_entry(&file_priv->mm.request_list,
5095 struct drm_i915_gem_request,
5096 client_list);
5097 list_del(&request->client_list);
5098 request->file_priv = NULL;
5099 }
Chris Wilson1c255952010-09-26 11:03:27 +01005100 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00005101}
Chris Wilson31169712009-09-14 16:50:28 +01005102
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005103static void
5104i915_gem_file_idle_work_handler(struct work_struct *work)
5105{
5106 struct drm_i915_file_private *file_priv =
5107 container_of(work, typeof(*file_priv), mm.idle_work.work);
5108
5109 atomic_set(&file_priv->rps_wait_boost, false);
5110}
5111
5112int i915_gem_open(struct drm_device *dev, struct drm_file *file)
5113{
5114 struct drm_i915_file_private *file_priv;
Ben Widawskye422b882013-12-06 14:10:58 -08005115 int ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005116
5117 DRM_DEBUG_DRIVER("\n");
5118
5119 file_priv = kzalloc(sizeof(*file_priv), GFP_KERNEL);
5120 if (!file_priv)
5121 return -ENOMEM;
5122
5123 file->driver_priv = file_priv;
5124 file_priv->dev_priv = dev->dev_private;
Chris Wilsonab0e7ff2014-02-25 17:11:24 +02005125 file_priv->file = file;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005126
5127 spin_lock_init(&file_priv->mm.lock);
5128 INIT_LIST_HEAD(&file_priv->mm.request_list);
5129 INIT_DELAYED_WORK(&file_priv->mm.idle_work,
5130 i915_gem_file_idle_work_handler);
5131
Ben Widawskye422b882013-12-06 14:10:58 -08005132 ret = i915_gem_context_open(dev, file);
5133 if (ret)
5134 kfree(file_priv);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005135
Ben Widawskye422b882013-12-06 14:10:58 -08005136 return ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005137}
5138
Daniel Vetterb680c372014-09-19 18:27:27 +02005139/**
5140 * i915_gem_track_fb - update frontbuffer tracking
5141 * old: current GEM buffer for the frontbuffer slots
5142 * new: new GEM buffer for the frontbuffer slots
5143 * frontbuffer_bits: bitmask of frontbuffer slots
5144 *
5145 * This updates the frontbuffer tracking bits @frontbuffer_bits by clearing them
5146 * from @old and setting them in @new. Both @old and @new can be NULL.
5147 */
Daniel Vettera071fa02014-06-18 23:28:09 +02005148void i915_gem_track_fb(struct drm_i915_gem_object *old,
5149 struct drm_i915_gem_object *new,
5150 unsigned frontbuffer_bits)
5151{
5152 if (old) {
5153 WARN_ON(!mutex_is_locked(&old->base.dev->struct_mutex));
5154 WARN_ON(!(old->frontbuffer_bits & frontbuffer_bits));
5155 old->frontbuffer_bits &= ~frontbuffer_bits;
5156 }
5157
5158 if (new) {
5159 WARN_ON(!mutex_is_locked(&new->base.dev->struct_mutex));
5160 WARN_ON(new->frontbuffer_bits & frontbuffer_bits);
5161 new->frontbuffer_bits |= frontbuffer_bits;
5162 }
5163}
5164
Chris Wilson57745062012-11-21 13:04:04 +00005165static bool mutex_is_locked_by(struct mutex *mutex, struct task_struct *task)
5166{
5167 if (!mutex_is_locked(mutex))
5168 return false;
5169
5170#if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_MUTEXES)
5171 return mutex->owner == task;
5172#else
5173 /* Since UP may be pre-empted, we cannot assume that we own the lock */
5174 return false;
5175#endif
5176}
5177
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005178static bool i915_gem_shrinker_lock(struct drm_device *dev, bool *unlock)
5179{
5180 if (!mutex_trylock(&dev->struct_mutex)) {
5181 if (!mutex_is_locked_by(&dev->struct_mutex, current))
5182 return false;
5183
5184 if (to_i915(dev)->mm.shrinker_no_lock_stealing)
5185 return false;
5186
5187 *unlock = false;
5188 } else
5189 *unlock = true;
5190
5191 return true;
5192}
5193
Chris Wilsonceabbba52014-03-25 13:23:04 +00005194static int num_vma_bound(struct drm_i915_gem_object *obj)
5195{
5196 struct i915_vma *vma;
5197 int count = 0;
5198
5199 list_for_each_entry(vma, &obj->vma_list, vma_link)
5200 if (drm_mm_node_allocated(&vma->node))
5201 count++;
5202
5203 return count;
5204}
5205
Dave Chinner7dc19d52013-08-28 10:18:11 +10005206static unsigned long
Chris Wilsonceabbba52014-03-25 13:23:04 +00005207i915_gem_shrinker_count(struct shrinker *shrinker, struct shrink_control *sc)
Chris Wilson31169712009-09-14 16:50:28 +01005208{
Chris Wilson17250b72010-10-28 12:51:39 +01005209 struct drm_i915_private *dev_priv =
Chris Wilsonceabbba52014-03-25 13:23:04 +00005210 container_of(shrinker, struct drm_i915_private, mm.shrinker);
Chris Wilson17250b72010-10-28 12:51:39 +01005211 struct drm_device *dev = dev_priv->dev;
Chris Wilson6c085a72012-08-20 11:40:46 +02005212 struct drm_i915_gem_object *obj;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005213 unsigned long count;
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005214 bool unlock;
Chris Wilson17250b72010-10-28 12:51:39 +01005215
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005216 if (!i915_gem_shrinker_lock(dev, &unlock))
5217 return 0;
Chris Wilson31169712009-09-14 16:50:28 +01005218
Dave Chinner7dc19d52013-08-28 10:18:11 +10005219 count = 0;
Ben Widawsky35c20a62013-05-31 11:28:48 -07005220 list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list)
Chris Wilsona5570172012-09-04 21:02:54 +01005221 if (obj->pages_pin_count == 0)
Dave Chinner7dc19d52013-08-28 10:18:11 +10005222 count += obj->base.size >> PAGE_SHIFT;
Ben Widawskyfcb4a572013-07-31 16:59:57 -07005223
5224 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
Chris Wilsonceabbba52014-03-25 13:23:04 +00005225 if (!i915_gem_obj_is_pinned(obj) &&
5226 obj->pages_pin_count == num_vma_bound(obj))
Dave Chinner7dc19d52013-08-28 10:18:11 +10005227 count += obj->base.size >> PAGE_SHIFT;
Ben Widawskyfcb4a572013-07-31 16:59:57 -07005228 }
Chris Wilson31169712009-09-14 16:50:28 +01005229
Chris Wilson57745062012-11-21 13:04:04 +00005230 if (unlock)
5231 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9973b42013-10-04 10:33:00 +01005232
Dave Chinner7dc19d52013-08-28 10:18:11 +10005233 return count;
Chris Wilson31169712009-09-14 16:50:28 +01005234}
Ben Widawskya70a3142013-07-31 16:59:56 -07005235
5236/* All the new VM stuff */
5237unsigned long i915_gem_obj_offset(struct drm_i915_gem_object *o,
5238 struct i915_address_space *vm)
5239{
5240 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
5241 struct i915_vma *vma;
5242
Daniel Vetter896ab1a2014-08-06 15:04:51 +02005243 WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base);
Ben Widawskya70a3142013-07-31 16:59:56 -07005244
Ben Widawskya70a3142013-07-31 16:59:56 -07005245 list_for_each_entry(vma, &o->vma_list, vma_link) {
5246 if (vma->vm == vm)
5247 return vma->node.start;
5248
5249 }
Daniel Vetterf25748ea2014-06-17 22:34:38 +02005250 WARN(1, "%s vma for this object not found.\n",
5251 i915_is_ggtt(vm) ? "global" : "ppgtt");
Ben Widawskya70a3142013-07-31 16:59:56 -07005252 return -1;
5253}
5254
5255bool i915_gem_obj_bound(struct drm_i915_gem_object *o,
5256 struct i915_address_space *vm)
5257{
5258 struct i915_vma *vma;
5259
5260 list_for_each_entry(vma, &o->vma_list, vma_link)
Ben Widawsky8b9c2b92013-07-31 17:00:16 -07005261 if (vma->vm == vm && drm_mm_node_allocated(&vma->node))
Ben Widawskya70a3142013-07-31 16:59:56 -07005262 return true;
5263
5264 return false;
5265}
5266
5267bool i915_gem_obj_bound_any(struct drm_i915_gem_object *o)
5268{
Chris Wilson5a1d5eb2013-09-10 11:27:37 +01005269 struct i915_vma *vma;
Ben Widawskya70a3142013-07-31 16:59:56 -07005270
Chris Wilson5a1d5eb2013-09-10 11:27:37 +01005271 list_for_each_entry(vma, &o->vma_list, vma_link)
5272 if (drm_mm_node_allocated(&vma->node))
Ben Widawskya70a3142013-07-31 16:59:56 -07005273 return true;
5274
5275 return false;
5276}
5277
5278unsigned long i915_gem_obj_size(struct drm_i915_gem_object *o,
5279 struct i915_address_space *vm)
5280{
5281 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
5282 struct i915_vma *vma;
5283
Daniel Vetter896ab1a2014-08-06 15:04:51 +02005284 WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base);
Ben Widawskya70a3142013-07-31 16:59:56 -07005285
5286 BUG_ON(list_empty(&o->vma_list));
5287
5288 list_for_each_entry(vma, &o->vma_list, vma_link)
5289 if (vma->vm == vm)
5290 return vma->node.size;
5291
5292 return 0;
5293}
5294
Dave Chinner7dc19d52013-08-28 10:18:11 +10005295static unsigned long
Chris Wilsonceabbba52014-03-25 13:23:04 +00005296i915_gem_shrinker_scan(struct shrinker *shrinker, struct shrink_control *sc)
Dave Chinner7dc19d52013-08-28 10:18:11 +10005297{
5298 struct drm_i915_private *dev_priv =
Chris Wilsonceabbba52014-03-25 13:23:04 +00005299 container_of(shrinker, struct drm_i915_private, mm.shrinker);
Dave Chinner7dc19d52013-08-28 10:18:11 +10005300 struct drm_device *dev = dev_priv->dev;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005301 unsigned long freed;
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005302 bool unlock;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005303
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005304 if (!i915_gem_shrinker_lock(dev, &unlock))
5305 return SHRINK_STOP;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005306
Chris Wilson21ab4e72014-09-09 11:16:08 +01005307 freed = i915_gem_shrink(dev_priv,
5308 sc->nr_to_scan,
5309 I915_SHRINK_BOUND |
5310 I915_SHRINK_UNBOUND |
5311 I915_SHRINK_PURGEABLE);
Chris Wilsond9973b42013-10-04 10:33:00 +01005312 if (freed < sc->nr_to_scan)
Chris Wilson21ab4e72014-09-09 11:16:08 +01005313 freed += i915_gem_shrink(dev_priv,
5314 sc->nr_to_scan - freed,
5315 I915_SHRINK_BOUND |
5316 I915_SHRINK_UNBOUND);
Dave Chinner7dc19d52013-08-28 10:18:11 +10005317 if (unlock)
5318 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9973b42013-10-04 10:33:00 +01005319
Dave Chinner7dc19d52013-08-28 10:18:11 +10005320 return freed;
5321}
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005322
Chris Wilson2cfcd322014-05-20 08:28:43 +01005323static int
5324i915_gem_shrinker_oom(struct notifier_block *nb, unsigned long event, void *ptr)
5325{
5326 struct drm_i915_private *dev_priv =
5327 container_of(nb, struct drm_i915_private, mm.oom_notifier);
5328 struct drm_device *dev = dev_priv->dev;
5329 struct drm_i915_gem_object *obj;
5330 unsigned long timeout = msecs_to_jiffies(5000) + 1;
Chris Wilson005445c2014-10-08 11:25:16 +01005331 unsigned long pinned, bound, unbound, freed_pages;
Chris Wilson2cfcd322014-05-20 08:28:43 +01005332 bool was_interruptible;
5333 bool unlock;
5334
Chris Wilsona1db2fa2014-07-11 11:28:00 +01005335 while (!i915_gem_shrinker_lock(dev, &unlock) && --timeout) {
Chris Wilson2cfcd322014-05-20 08:28:43 +01005336 schedule_timeout_killable(1);
Chris Wilsona1db2fa2014-07-11 11:28:00 +01005337 if (fatal_signal_pending(current))
5338 return NOTIFY_DONE;
5339 }
Chris Wilson2cfcd322014-05-20 08:28:43 +01005340 if (timeout == 0) {
5341 pr_err("Unable to purge GPU memory due lock contention.\n");
5342 return NOTIFY_DONE;
5343 }
5344
5345 was_interruptible = dev_priv->mm.interruptible;
5346 dev_priv->mm.interruptible = false;
5347
Chris Wilson005445c2014-10-08 11:25:16 +01005348 freed_pages = i915_gem_shrink_all(dev_priv);
Chris Wilson2cfcd322014-05-20 08:28:43 +01005349
5350 dev_priv->mm.interruptible = was_interruptible;
5351
5352 /* Because we may be allocating inside our own driver, we cannot
5353 * assert that there are no objects with pinned pages that are not
5354 * being pointed to by hardware.
5355 */
5356 unbound = bound = pinned = 0;
5357 list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list) {
5358 if (!obj->base.filp) /* not backed by a freeable object */
5359 continue;
5360
5361 if (obj->pages_pin_count)
5362 pinned += obj->base.size;
5363 else
5364 unbound += obj->base.size;
5365 }
5366 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
5367 if (!obj->base.filp)
5368 continue;
5369
5370 if (obj->pages_pin_count)
5371 pinned += obj->base.size;
5372 else
5373 bound += obj->base.size;
5374 }
5375
5376 if (unlock)
5377 mutex_unlock(&dev->struct_mutex);
5378
Chris Wilsonbb9059d2014-10-08 11:25:17 +01005379 if (freed_pages || unbound || bound)
5380 pr_info("Purging GPU memory, %lu bytes freed, %lu bytes still pinned.\n",
5381 freed_pages << PAGE_SHIFT, pinned);
Chris Wilson2cfcd322014-05-20 08:28:43 +01005382 if (unbound || bound)
5383 pr_err("%lu and %lu bytes still available in the "
5384 "bound and unbound GPU page lists.\n",
5385 bound, unbound);
5386
Chris Wilson005445c2014-10-08 11:25:16 +01005387 *(unsigned long *)ptr += freed_pages;
Chris Wilson2cfcd322014-05-20 08:28:43 +01005388 return NOTIFY_DONE;
5389}
5390
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005391struct i915_vma *i915_gem_obj_to_ggtt(struct drm_i915_gem_object *obj)
5392{
5393 struct i915_vma *vma;
5394
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005395 vma = list_first_entry(&obj->vma_list, typeof(*vma), vma_link);
Daniel Vetter5dc383b2014-08-06 15:04:49 +02005396 if (vma->vm != i915_obj_to_ggtt(obj))
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005397 return NULL;
5398
5399 return vma;
5400}