blob: 7d6f9bc9ebb57e52fd07d60b5c89544e44da74ef [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/*
John Harrisonb6660d52014-11-24 18:49:30 +00001156 * Compare arbitrary request against outstanding lazy request. Emit on match.
Chris Wilsonb3612372012-08-24 09:35:08 +01001157 */
Sourab Gupta84c33a62014-06-02 16:47:17 +05301158int
John Harrisonb6660d52014-11-24 18:49:30 +00001159i915_gem_check_olr(struct drm_i915_gem_request *req)
Chris Wilsonb3612372012-08-24 09:35:08 +01001160{
1161 int ret;
1162
John Harrisonb6660d52014-11-24 18:49:30 +00001163 WARN_ON(!mutex_is_locked(&req->ring->dev->struct_mutex));
Chris Wilsonb3612372012-08-24 09:35:08 +01001164
1165 ret = 0;
John Harrisonb6660d52014-11-24 18:49:30 +00001166 if (req == req->ring->outstanding_lazy_request)
1167 ret = i915_add_request(req->ring, NULL);
Chris Wilsonb3612372012-08-24 09:35:08 +01001168
1169 return ret;
1170}
1171
Chris Wilson094f9a52013-09-25 17:34:55 +01001172static void fake_irq(unsigned long data)
1173{
1174 wake_up_process((struct task_struct *)data);
1175}
1176
1177static bool missed_irq(struct drm_i915_private *dev_priv,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001178 struct intel_engine_cs *ring)
Chris Wilson094f9a52013-09-25 17:34:55 +01001179{
1180 return test_bit(ring->id, &dev_priv->gpu_error.missed_irq_rings);
1181}
1182
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001183static bool can_wait_boost(struct drm_i915_file_private *file_priv)
1184{
1185 if (file_priv == NULL)
1186 return true;
1187
1188 return !atomic_xchg(&file_priv->rps_wait_boost, true);
1189}
1190
Chris Wilsonb3612372012-08-24 09:35:08 +01001191/**
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001192 * __i915_wait_seqno - wait until execution of seqno has finished
Chris Wilsonb3612372012-08-24 09:35:08 +01001193 * @ring: the ring expected to report seqno
1194 * @seqno: duh!
Daniel Vetterf69061b2012-12-06 09:01:42 +01001195 * @reset_counter: reset sequence associated with the given seqno
Chris Wilsonb3612372012-08-24 09:35:08 +01001196 * @interruptible: do an interruptible wait (normally yes)
1197 * @timeout: in - how long to wait (NULL forever); out - how much time remaining
1198 *
Daniel Vetterf69061b2012-12-06 09:01:42 +01001199 * Note: It is of utmost importance that the passed in seqno and reset_counter
1200 * values have been read by the caller in an smp safe manner. Where read-side
1201 * locks are involved, it is sufficient to read the reset_counter before
1202 * unlocking the lock that protects the seqno. For lockless tricks, the
1203 * reset_counter _must_ be read before, and an appropriate smp_rmb must be
1204 * inserted.
1205 *
Chris Wilsonb3612372012-08-24 09:35:08 +01001206 * Returns 0 if the seqno was found within the alloted time. Else returns the
1207 * errno with remaining time filled in timeout argument.
1208 */
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001209int __i915_wait_seqno(struct intel_engine_cs *ring, u32 seqno,
Daniel Vetterf69061b2012-12-06 09:01:42 +01001210 unsigned reset_counter,
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001211 bool interruptible,
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001212 s64 *timeout,
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001213 struct drm_i915_file_private *file_priv)
Chris Wilsonb3612372012-08-24 09:35:08 +01001214{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001215 struct drm_device *dev = ring->dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03001216 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001217 const bool irq_test_in_progress =
1218 ACCESS_ONCE(dev_priv->gpu_error.test_irq_rings) & intel_ring_flag(ring);
Chris Wilson094f9a52013-09-25 17:34:55 +01001219 DEFINE_WAIT(wait);
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001220 unsigned long timeout_expire;
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001221 s64 before, now;
Chris Wilsonb3612372012-08-24 09:35:08 +01001222 int ret;
1223
Jesse Barnes9df7575f2014-06-20 09:29:20 -07001224 WARN(!intel_irqs_enabled(dev_priv), "IRQs disabled");
Paulo Zanonic67a4702013-08-19 13:18:09 -03001225
Chris Wilsonb3612372012-08-24 09:35:08 +01001226 if (i915_seqno_passed(ring->get_seqno(ring, true), seqno))
1227 return 0;
1228
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001229 timeout_expire = timeout ? jiffies + nsecs_to_jiffies((u64)*timeout) : 0;
Chris Wilsonb3612372012-08-24 09:35:08 +01001230
Chris Wilsonec5cc0f2014-06-12 10:28:55 +01001231 if (INTEL_INFO(dev)->gen >= 6 && ring->id == RCS && can_wait_boost(file_priv)) {
Chris Wilsonb29c19b2013-09-25 17:34:56 +01001232 gen6_rps_boost(dev_priv);
1233 if (file_priv)
1234 mod_delayed_work(dev_priv->wq,
1235 &file_priv->mm.idle_work,
1236 msecs_to_jiffies(100));
1237 }
1238
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001239 if (!irq_test_in_progress && WARN_ON(!ring->irq_get(ring)))
Chris Wilsonb3612372012-08-24 09:35:08 +01001240 return -ENODEV;
1241
Chris Wilson094f9a52013-09-25 17:34:55 +01001242 /* Record current time in case interrupted by signal, or wedged */
1243 trace_i915_gem_request_wait_begin(ring, seqno);
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001244 before = ktime_get_raw_ns();
Chris Wilson094f9a52013-09-25 17:34:55 +01001245 for (;;) {
1246 struct timer_list timer;
Chris Wilsonb3612372012-08-24 09:35:08 +01001247
Chris Wilson094f9a52013-09-25 17:34:55 +01001248 prepare_to_wait(&ring->irq_queue, &wait,
1249 interruptible ? TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE);
Chris Wilsonb3612372012-08-24 09:35:08 +01001250
Daniel Vetterf69061b2012-12-06 09:01:42 +01001251 /* We need to check whether any gpu reset happened in between
1252 * the caller grabbing the seqno and now ... */
Chris Wilson094f9a52013-09-25 17:34:55 +01001253 if (reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter)) {
1254 /* ... but upgrade the -EAGAIN to an -EIO if the gpu
1255 * is truely gone. */
1256 ret = i915_gem_check_wedge(&dev_priv->gpu_error, interruptible);
1257 if (ret == 0)
1258 ret = -EAGAIN;
1259 break;
1260 }
Daniel Vetterf69061b2012-12-06 09:01:42 +01001261
Chris Wilson094f9a52013-09-25 17:34:55 +01001262 if (i915_seqno_passed(ring->get_seqno(ring, false), seqno)) {
1263 ret = 0;
1264 break;
1265 }
Chris Wilsonb3612372012-08-24 09:35:08 +01001266
Chris Wilson094f9a52013-09-25 17:34:55 +01001267 if (interruptible && signal_pending(current)) {
1268 ret = -ERESTARTSYS;
1269 break;
1270 }
1271
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001272 if (timeout && time_after_eq(jiffies, timeout_expire)) {
Chris Wilson094f9a52013-09-25 17:34:55 +01001273 ret = -ETIME;
1274 break;
1275 }
1276
1277 timer.function = NULL;
1278 if (timeout || missed_irq(dev_priv, ring)) {
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001279 unsigned long expire;
1280
Chris Wilson094f9a52013-09-25 17:34:55 +01001281 setup_timer_on_stack(&timer, fake_irq, (unsigned long)current);
Mika Kuoppala47e9766d2013-12-10 17:02:43 +02001282 expire = missed_irq(dev_priv, ring) ? jiffies + 1 : timeout_expire;
Chris Wilson094f9a52013-09-25 17:34:55 +01001283 mod_timer(&timer, expire);
1284 }
1285
Chris Wilson5035c272013-10-04 09:58:46 +01001286 io_schedule();
Chris Wilson094f9a52013-09-25 17:34:55 +01001287
Chris Wilson094f9a52013-09-25 17:34:55 +01001288 if (timer.function) {
1289 del_singleshot_timer_sync(&timer);
1290 destroy_timer_on_stack(&timer);
1291 }
1292 }
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001293 now = ktime_get_raw_ns();
Chris Wilson094f9a52013-09-25 17:34:55 +01001294 trace_i915_gem_request_wait_end(ring, seqno);
Chris Wilsonb3612372012-08-24 09:35:08 +01001295
Mika Kuoppala168c3f22013-12-12 17:54:42 +02001296 if (!irq_test_in_progress)
1297 ring->irq_put(ring);
Chris Wilson094f9a52013-09-25 17:34:55 +01001298
1299 finish_wait(&ring->irq_queue, &wait);
Chris Wilsonb3612372012-08-24 09:35:08 +01001300
1301 if (timeout) {
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00001302 s64 tres = *timeout - (now - before);
1303
1304 *timeout = tres < 0 ? 0 : tres;
Chris Wilsonb3612372012-08-24 09:35:08 +01001305 }
1306
Chris Wilson094f9a52013-09-25 17:34:55 +01001307 return ret;
Chris Wilsonb3612372012-08-24 09:35:08 +01001308}
1309
1310/**
1311 * Waits for a sequence number to be signaled, and cleans up the
1312 * request and object lists appropriately for that event.
1313 */
1314int
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001315i915_wait_seqno(struct intel_engine_cs *ring, uint32_t seqno)
Chris Wilsonb3612372012-08-24 09:35:08 +01001316{
1317 struct drm_device *dev = ring->dev;
1318 struct drm_i915_private *dev_priv = dev->dev_private;
1319 bool interruptible = dev_priv->mm.interruptible;
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001320 unsigned reset_counter;
Chris Wilsonb3612372012-08-24 09:35:08 +01001321 int ret;
1322
1323 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
1324 BUG_ON(seqno == 0);
1325
Daniel Vetter33196de2012-11-14 17:14:05 +01001326 ret = i915_gem_check_wedge(&dev_priv->gpu_error, interruptible);
Chris Wilsonb3612372012-08-24 09:35:08 +01001327 if (ret)
1328 return ret;
1329
John Harrisonb6660d52014-11-24 18:49:30 +00001330 ret = i915_gem_check_ols(ring, seqno);
Chris Wilsonb3612372012-08-24 09:35:08 +01001331 if (ret)
1332 return ret;
1333
Ander Conselvan de Oliveira16e9a212014-11-06 09:26:38 +02001334 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
1335 return __i915_wait_seqno(ring, seqno, reset_counter, interruptible,
1336 NULL, NULL);
Chris Wilsonb3612372012-08-24 09:35:08 +01001337}
1338
Chris Wilsond26e3af2013-06-29 22:05:26 +01001339static int
John Harrison8e6395492014-10-30 18:40:53 +00001340i915_gem_object_wait_rendering__tail(struct drm_i915_gem_object *obj)
Chris Wilsond26e3af2013-06-29 22:05:26 +01001341{
Chris Wilsonc8725f32014-03-17 12:21:55 +00001342 if (!obj->active)
1343 return 0;
Chris Wilsond26e3af2013-06-29 22:05:26 +01001344
1345 /* Manually manage the write flush as we may have not yet
1346 * retired the buffer.
1347 *
John Harrison97b2a6a2014-11-24 18:49:26 +00001348 * Note that the last_write_req is always the earlier of
1349 * the two (read/write) requests, so if we haved successfully waited,
Chris Wilsond26e3af2013-06-29 22:05:26 +01001350 * we know we have passed the last write.
1351 */
John Harrison97b2a6a2014-11-24 18:49:26 +00001352 i915_gem_request_assign(&obj->last_write_req, NULL);
Chris Wilsond26e3af2013-06-29 22:05:26 +01001353
1354 return 0;
1355}
1356
Chris Wilsonb3612372012-08-24 09:35:08 +01001357/**
1358 * Ensures that all rendering to the object has completed and the object is
1359 * safe to unbind from the GTT or access from the CPU.
1360 */
1361static __must_check int
1362i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj,
1363 bool readonly)
1364{
John Harrison97b2a6a2014-11-24 18:49:26 +00001365 struct drm_i915_gem_request *req;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001366 struct intel_engine_cs *ring = obj->ring;
Chris Wilsonb3612372012-08-24 09:35:08 +01001367 u32 seqno;
1368 int ret;
1369
John Harrison97b2a6a2014-11-24 18:49:26 +00001370 req = readonly ? obj->last_write_req : obj->last_read_req;
1371 if (!req)
Chris Wilsonb3612372012-08-24 09:35:08 +01001372 return 0;
1373
John Harrison97b2a6a2014-11-24 18:49:26 +00001374 seqno = i915_gem_request_get_seqno(req);
1375 WARN_ON(seqno == 0);
1376
Chris Wilsonb3612372012-08-24 09:35:08 +01001377 ret = i915_wait_seqno(ring, seqno);
1378 if (ret)
1379 return ret;
1380
John Harrison8e6395492014-10-30 18:40:53 +00001381 return i915_gem_object_wait_rendering__tail(obj);
Chris Wilsonb3612372012-08-24 09:35:08 +01001382}
1383
Chris Wilson3236f572012-08-24 09:35:09 +01001384/* A nonblocking variant of the above wait. This is a highly dangerous routine
1385 * as the object state may change during this call.
1386 */
1387static __must_check int
1388i915_gem_object_wait_rendering__nonblocking(struct drm_i915_gem_object *obj,
Chris Wilson6e4930f2014-02-07 18:37:06 -02001389 struct drm_i915_file_private *file_priv,
Chris Wilson3236f572012-08-24 09:35:09 +01001390 bool readonly)
1391{
John Harrison97b2a6a2014-11-24 18:49:26 +00001392 struct drm_i915_gem_request *req;
Chris Wilson3236f572012-08-24 09:35:09 +01001393 struct drm_device *dev = obj->base.dev;
1394 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001395 struct intel_engine_cs *ring = obj->ring;
Daniel Vetterf69061b2012-12-06 09:01:42 +01001396 unsigned reset_counter;
Chris Wilson3236f572012-08-24 09:35:09 +01001397 int ret;
1398
1399 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
1400 BUG_ON(!dev_priv->mm.interruptible);
1401
John Harrison97b2a6a2014-11-24 18:49:26 +00001402 req = readonly ? obj->last_write_req : obj->last_read_req;
1403 if (!req)
Chris Wilson3236f572012-08-24 09:35:09 +01001404 return 0;
1405
Daniel Vetter33196de2012-11-14 17:14:05 +01001406 ret = i915_gem_check_wedge(&dev_priv->gpu_error, true);
Chris Wilson3236f572012-08-24 09:35:09 +01001407 if (ret)
1408 return ret;
1409
John Harrisonb6660d52014-11-24 18:49:30 +00001410 ret = i915_gem_check_olr(req);
Chris Wilson3236f572012-08-24 09:35:09 +01001411 if (ret)
1412 return ret;
1413
Daniel Vetterf69061b2012-12-06 09:01:42 +01001414 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
John Harrisonff865882014-11-24 18:49:28 +00001415 i915_gem_request_reference(req);
Chris Wilson3236f572012-08-24 09:35:09 +01001416 mutex_unlock(&dev->struct_mutex);
John Harrisonb6660d52014-11-24 18:49:30 +00001417 ret = __i915_wait_seqno(ring, i915_gem_request_get_seqno(req),
1418 reset_counter, true, NULL, file_priv);
Chris Wilson3236f572012-08-24 09:35:09 +01001419 mutex_lock(&dev->struct_mutex);
John Harrisonff865882014-11-24 18:49:28 +00001420 i915_gem_request_unreference(req);
Chris Wilsond26e3af2013-06-29 22:05:26 +01001421 if (ret)
1422 return ret;
Chris Wilson3236f572012-08-24 09:35:09 +01001423
John Harrison8e6395492014-10-30 18:40:53 +00001424 return i915_gem_object_wait_rendering__tail(obj);
Chris Wilson3236f572012-08-24 09:35:09 +01001425}
1426
Eric Anholt673a3942008-07-30 12:06:12 -07001427/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001428 * Called when user space prepares to use an object with the CPU, either
1429 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -07001430 */
1431int
1432i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001433 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001434{
1435 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001436 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001437 uint32_t read_domains = args->read_domains;
1438 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07001439 int ret;
1440
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001441 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +01001442 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001443 return -EINVAL;
1444
Chris Wilson21d509e2009-06-06 09:46:02 +01001445 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001446 return -EINVAL;
1447
1448 /* Having something in the write domain implies it's in the read
1449 * domain, and only that read domain. Enforce that in the request.
1450 */
1451 if (write_domain != 0 && read_domains != write_domain)
1452 return -EINVAL;
1453
Chris Wilson76c1dec2010-09-25 11:22:51 +01001454 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001455 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001456 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001457
Chris Wilson05394f32010-11-08 19:18:58 +00001458 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001459 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001460 ret = -ENOENT;
1461 goto unlock;
Chris Wilson76c1dec2010-09-25 11:22:51 +01001462 }
Jesse Barnes652c3932009-08-17 13:31:43 -07001463
Chris Wilson3236f572012-08-24 09:35:09 +01001464 /* Try to flush the object off the GPU without holding the lock.
1465 * We will repeat the flush holding the lock in the normal manner
1466 * to catch cases where we are gazumped.
1467 */
Chris Wilson6e4930f2014-02-07 18:37:06 -02001468 ret = i915_gem_object_wait_rendering__nonblocking(obj,
1469 file->driver_priv,
1470 !write_domain);
Chris Wilson3236f572012-08-24 09:35:09 +01001471 if (ret)
1472 goto unref;
1473
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001474 if (read_domains & I915_GEM_DOMAIN_GTT) {
1475 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Eric Anholt02354392008-11-26 13:58:13 -08001476
1477 /* Silently promote "you're not bound, there was nothing to do"
1478 * to success, since the client was just asking us to
1479 * make sure everything was done.
1480 */
1481 if (ret == -EINVAL)
1482 ret = 0;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001483 } else {
Eric Anholte47c68e2008-11-14 13:35:19 -08001484 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001485 }
1486
Chris Wilson3236f572012-08-24 09:35:09 +01001487unref:
Chris Wilson05394f32010-11-08 19:18:58 +00001488 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001489unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001490 mutex_unlock(&dev->struct_mutex);
1491 return ret;
1492}
1493
1494/**
1495 * Called when user space has done writes to this buffer
1496 */
1497int
1498i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001499 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001500{
1501 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001502 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001503 int ret = 0;
1504
Chris Wilson76c1dec2010-09-25 11:22:51 +01001505 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001506 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001507 return ret;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001508
Chris Wilson05394f32010-11-08 19:18:58 +00001509 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001510 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001511 ret = -ENOENT;
1512 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07001513 }
1514
Eric Anholt673a3942008-07-30 12:06:12 -07001515 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilson2c225692013-08-09 12:26:45 +01001516 if (obj->pin_display)
1517 i915_gem_object_flush_cpu_write_domain(obj, true);
Eric Anholte47c68e2008-11-14 13:35:19 -08001518
Chris Wilson05394f32010-11-08 19:18:58 +00001519 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001520unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001521 mutex_unlock(&dev->struct_mutex);
1522 return ret;
1523}
1524
1525/**
1526 * Maps the contents of an object, returning the address it is mapped
1527 * into.
1528 *
1529 * While the mapping holds a reference on the contents of the object, it doesn't
1530 * imply a ref on the object itself.
Daniel Vetter34367382014-10-16 12:28:18 +02001531 *
1532 * IMPORTANT:
1533 *
1534 * DRM driver writers who look a this function as an example for how to do GEM
1535 * mmap support, please don't implement mmap support like here. The modern way
1536 * to implement DRM mmap support is with an mmap offset ioctl (like
1537 * i915_gem_mmap_gtt) and then using the mmap syscall on the DRM fd directly.
1538 * That way debug tooling like valgrind will understand what's going on, hiding
1539 * the mmap call in a driver private ioctl will break that. The i915 driver only
1540 * does cpu mmaps this way because we didn't know better.
Eric Anholt673a3942008-07-30 12:06:12 -07001541 */
1542int
1543i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001544 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001545{
1546 struct drm_i915_gem_mmap *args = data;
1547 struct drm_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001548 unsigned long addr;
1549
Chris Wilson05394f32010-11-08 19:18:58 +00001550 obj = drm_gem_object_lookup(dev, file, args->handle);
Eric Anholt673a3942008-07-30 12:06:12 -07001551 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001552 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001553
Daniel Vetter1286ff72012-05-10 15:25:09 +02001554 /* prime objects have no backing filp to GEM mmap
1555 * pages from.
1556 */
1557 if (!obj->filp) {
1558 drm_gem_object_unreference_unlocked(obj);
1559 return -EINVAL;
1560 }
1561
Linus Torvalds6be5ceb2012-04-20 17:13:58 -07001562 addr = vm_mmap(obj->filp, 0, args->size,
Eric Anholt673a3942008-07-30 12:06:12 -07001563 PROT_READ | PROT_WRITE, MAP_SHARED,
1564 args->offset);
Luca Barbieribc9025b2010-02-09 05:49:12 +00001565 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001566 if (IS_ERR((void *)addr))
1567 return addr;
1568
1569 args->addr_ptr = (uint64_t) addr;
1570
1571 return 0;
1572}
1573
Jesse Barnesde151cf2008-11-12 10:03:55 -08001574/**
1575 * i915_gem_fault - fault a page into the GTT
1576 * vma: VMA in question
1577 * vmf: fault info
1578 *
1579 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1580 * from userspace. The fault handler takes care of binding the object to
1581 * the GTT (if needed), allocating and programming a fence register (again,
1582 * only if needed based on whether the old reg is still valid or the object
1583 * is tiled) and inserting a new PTE into the faulting process.
1584 *
1585 * Note that the faulting process may involve evicting existing objects
1586 * from the GTT and/or fence registers to make room. So performance may
1587 * suffer if the GTT working set is large or there are few fence registers
1588 * left.
1589 */
1590int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1591{
Chris Wilson05394f32010-11-08 19:18:58 +00001592 struct drm_i915_gem_object *obj = to_intel_bo(vma->vm_private_data);
1593 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03001594 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001595 pgoff_t page_offset;
1596 unsigned long pfn;
1597 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001598 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001599
Paulo Zanonif65c9162013-11-27 18:20:34 -02001600 intel_runtime_pm_get(dev_priv);
1601
Jesse Barnesde151cf2008-11-12 10:03:55 -08001602 /* We don't use vmf->pgoff since that has the fake offset */
1603 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1604 PAGE_SHIFT;
1605
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001606 ret = i915_mutex_lock_interruptible(dev);
1607 if (ret)
1608 goto out;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001609
Chris Wilsondb53a302011-02-03 11:57:46 +00001610 trace_i915_gem_object_fault(obj, page_offset, true, write);
1611
Chris Wilson6e4930f2014-02-07 18:37:06 -02001612 /* Try to flush the object off the GPU first without holding the lock.
1613 * Upon reacquiring the lock, we will perform our sanity checks and then
1614 * repeat the flush holding the lock in the normal manner to catch cases
1615 * where we are gazumped.
1616 */
1617 ret = i915_gem_object_wait_rendering__nonblocking(obj, NULL, !write);
1618 if (ret)
1619 goto unlock;
1620
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001621 /* Access to snoopable pages through the GTT is incoherent. */
1622 if (obj->cache_level != I915_CACHE_NONE && !HAS_LLC(dev)) {
Chris Wilsonddeff6e2014-05-28 16:16:41 +01001623 ret = -EFAULT;
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001624 goto unlock;
1625 }
1626
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001627 /* Now bind it into the GTT if needed */
Daniel Vetter1ec9e262014-02-14 14:01:11 +01001628 ret = i915_gem_obj_ggtt_pin(obj, 0, PIN_MAPPABLE);
Chris Wilsond9e86c02010-11-10 16:40:20 +00001629 if (ret)
1630 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001631
Chris Wilsonc9839302012-11-20 10:45:17 +00001632 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1633 if (ret)
1634 goto unpin;
1635
1636 ret = i915_gem_object_get_fence(obj);
1637 if (ret)
1638 goto unpin;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001639
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001640 /* Finally, remap it using the new GTT offset */
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001641 pfn = dev_priv->gtt.mappable_base + i915_gem_obj_ggtt_offset(obj);
1642 pfn >>= PAGE_SHIFT;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001643
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001644 if (!obj->fault_mappable) {
Ville Syrjäläbeff0d02014-06-17 21:03:00 +03001645 unsigned long size = min_t(unsigned long,
1646 vma->vm_end - vma->vm_start,
1647 obj->base.size);
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001648 int i;
1649
Ville Syrjäläbeff0d02014-06-17 21:03:00 +03001650 for (i = 0; i < size >> PAGE_SHIFT; i++) {
Chris Wilsonb90b91d2014-06-10 12:14:40 +01001651 ret = vm_insert_pfn(vma,
1652 (unsigned long)vma->vm_start + i * PAGE_SIZE,
1653 pfn + i);
1654 if (ret)
1655 break;
1656 }
1657
1658 obj->fault_mappable = true;
1659 } else
1660 ret = vm_insert_pfn(vma,
1661 (unsigned long)vmf->virtual_address,
1662 pfn + page_offset);
Chris Wilsonc9839302012-11-20 10:45:17 +00001663unpin:
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08001664 i915_gem_object_ggtt_unpin(obj);
Chris Wilsonc7150892009-09-23 00:43:56 +01001665unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001666 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001667out:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001668 switch (ret) {
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001669 case -EIO:
Daniel Vetter2232f032014-09-04 09:36:18 +02001670 /*
1671 * We eat errors when the gpu is terminally wedged to avoid
1672 * userspace unduly crashing (gl has no provisions for mmaps to
1673 * fail). But any other -EIO isn't ours (e.g. swap in failure)
1674 * and so needs to be reported.
1675 */
1676 if (!i915_terminally_wedged(&dev_priv->gpu_error)) {
Paulo Zanonif65c9162013-11-27 18:20:34 -02001677 ret = VM_FAULT_SIGBUS;
1678 break;
1679 }
Chris Wilson045e7692010-11-07 09:18:22 +00001680 case -EAGAIN:
Daniel Vetter571c6082013-09-12 17:57:28 +02001681 /*
1682 * EAGAIN means the gpu is hung and we'll wait for the error
1683 * handler to reset everything when re-faulting in
1684 * i915_mutex_lock_interruptible.
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001685 */
Chris Wilsonc7150892009-09-23 00:43:56 +01001686 case 0:
1687 case -ERESTARTSYS:
Chris Wilsonbed636a2011-02-11 20:31:19 +00001688 case -EINTR:
Dmitry Rogozhkine79e0fe2012-10-03 17:15:26 +03001689 case -EBUSY:
1690 /*
1691 * EBUSY is ok: this just means that another thread
1692 * already did the job.
1693 */
Paulo Zanonif65c9162013-11-27 18:20:34 -02001694 ret = VM_FAULT_NOPAGE;
1695 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001696 case -ENOMEM:
Paulo Zanonif65c9162013-11-27 18:20:34 -02001697 ret = VM_FAULT_OOM;
1698 break;
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001699 case -ENOSPC:
Chris Wilson45d67812014-01-31 11:34:57 +00001700 case -EFAULT:
Paulo Zanonif65c9162013-11-27 18:20:34 -02001701 ret = VM_FAULT_SIGBUS;
1702 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001703 default:
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001704 WARN_ONCE(ret, "unhandled error in i915_gem_fault: %i\n", ret);
Paulo Zanonif65c9162013-11-27 18:20:34 -02001705 ret = VM_FAULT_SIGBUS;
1706 break;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001707 }
Paulo Zanonif65c9162013-11-27 18:20:34 -02001708
1709 intel_runtime_pm_put(dev_priv);
1710 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001711}
1712
1713/**
Chris Wilson901782b2009-07-10 08:18:50 +01001714 * i915_gem_release_mmap - remove physical page mappings
1715 * @obj: obj in question
1716 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001717 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001718 * relinquish ownership of the pages back to the system.
1719 *
1720 * It is vital that we remove the page mapping if we have mapped a tiled
1721 * object through the GTT and then lose the fence register due to
1722 * resource pressure. Similarly if the object has been moved out of the
1723 * aperture, than pages mapped into userspace must be revoked. Removing the
1724 * mapping will then trigger a page fault on the next user access, allowing
1725 * fixup by i915_gem_fault().
1726 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001727void
Chris Wilson05394f32010-11-08 19:18:58 +00001728i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01001729{
Chris Wilson6299f992010-11-24 12:23:44 +00001730 if (!obj->fault_mappable)
1731 return;
Chris Wilson901782b2009-07-10 08:18:50 +01001732
David Herrmann6796cb12014-01-03 14:24:19 +01001733 drm_vma_node_unmap(&obj->base.vma_node,
1734 obj->base.dev->anon_inode->i_mapping);
Chris Wilson6299f992010-11-24 12:23:44 +00001735 obj->fault_mappable = false;
Chris Wilson901782b2009-07-10 08:18:50 +01001736}
1737
Chris Wilsoneedd10f2014-06-16 08:57:44 +01001738void
1739i915_gem_release_all_mmaps(struct drm_i915_private *dev_priv)
1740{
1741 struct drm_i915_gem_object *obj;
1742
1743 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list)
1744 i915_gem_release_mmap(obj);
1745}
1746
Imre Deak0fa87792013-01-07 21:47:35 +02001747uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001748i915_gem_get_gtt_size(struct drm_device *dev, uint32_t size, int tiling_mode)
Chris Wilson92b88ae2010-11-09 11:47:32 +00001749{
Chris Wilsone28f8712011-07-18 13:11:49 -07001750 uint32_t gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001751
1752 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001753 tiling_mode == I915_TILING_NONE)
1754 return size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001755
1756 /* Previous chips need a power-of-two fence region when tiling */
1757 if (INTEL_INFO(dev)->gen == 3)
Chris Wilsone28f8712011-07-18 13:11:49 -07001758 gtt_size = 1024*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001759 else
Chris Wilsone28f8712011-07-18 13:11:49 -07001760 gtt_size = 512*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001761
Chris Wilsone28f8712011-07-18 13:11:49 -07001762 while (gtt_size < size)
1763 gtt_size <<= 1;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001764
Chris Wilsone28f8712011-07-18 13:11:49 -07001765 return gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001766}
1767
Jesse Barnesde151cf2008-11-12 10:03:55 -08001768/**
1769 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1770 * @obj: object to check
1771 *
1772 * Return the required GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01001773 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08001774 */
Imre Deakd8651102013-01-07 21:47:33 +02001775uint32_t
1776i915_gem_get_gtt_alignment(struct drm_device *dev, uint32_t size,
1777 int tiling_mode, bool fenced)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001778{
Jesse Barnesde151cf2008-11-12 10:03:55 -08001779 /*
1780 * Minimum alignment is 4k (GTT page size), but might be greater
1781 * if a fence register is needed for the object.
1782 */
Imre Deakd8651102013-01-07 21:47:33 +02001783 if (INTEL_INFO(dev)->gen >= 4 || (!fenced && IS_G33(dev)) ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001784 tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001785 return 4096;
1786
1787 /*
1788 * Previous chips need to be aligned to the size of the smallest
1789 * fence register that can contain the object.
1790 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001791 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01001792}
1793
Chris Wilsond8cb5082012-08-11 15:41:03 +01001794static int i915_gem_object_create_mmap_offset(struct drm_i915_gem_object *obj)
1795{
1796 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
1797 int ret;
1798
David Herrmann0de23972013-07-24 21:07:52 +02001799 if (drm_vma_node_has_offset(&obj->base.vma_node))
Chris Wilsond8cb5082012-08-11 15:41:03 +01001800 return 0;
1801
Daniel Vetterda494d72012-12-20 15:11:16 +01001802 dev_priv->mm.shrinker_no_lock_stealing = true;
1803
Chris Wilsond8cb5082012-08-11 15:41:03 +01001804 ret = drm_gem_create_mmap_offset(&obj->base);
1805 if (ret != -ENOSPC)
Daniel Vetterda494d72012-12-20 15:11:16 +01001806 goto out;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001807
1808 /* Badly fragmented mmap space? The only way we can recover
1809 * space is by destroying unwanted objects. We can't randomly release
1810 * mmap_offsets as userspace expects them to be persistent for the
1811 * lifetime of the objects. The closest we can is to release the
1812 * offsets on purgeable objects by truncating it and marking it purged,
1813 * which prevents userspace from ever using that object again.
1814 */
Chris Wilson21ab4e72014-09-09 11:16:08 +01001815 i915_gem_shrink(dev_priv,
1816 obj->base.size >> PAGE_SHIFT,
1817 I915_SHRINK_BOUND |
1818 I915_SHRINK_UNBOUND |
1819 I915_SHRINK_PURGEABLE);
Chris Wilsond8cb5082012-08-11 15:41:03 +01001820 ret = drm_gem_create_mmap_offset(&obj->base);
1821 if (ret != -ENOSPC)
Daniel Vetterda494d72012-12-20 15:11:16 +01001822 goto out;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001823
1824 i915_gem_shrink_all(dev_priv);
Daniel Vetterda494d72012-12-20 15:11:16 +01001825 ret = drm_gem_create_mmap_offset(&obj->base);
1826out:
1827 dev_priv->mm.shrinker_no_lock_stealing = false;
1828
1829 return ret;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001830}
1831
1832static void i915_gem_object_free_mmap_offset(struct drm_i915_gem_object *obj)
1833{
Chris Wilsond8cb5082012-08-11 15:41:03 +01001834 drm_gem_free_mmap_offset(&obj->base);
1835}
1836
Thomas Hellstrom355a7012014-11-20 09:56:25 +01001837static int
Dave Airlieff72145b2011-02-07 12:16:14 +10001838i915_gem_mmap_gtt(struct drm_file *file,
1839 struct drm_device *dev,
Thomas Hellstrom355a7012014-11-20 09:56:25 +01001840 uint32_t handle, bool dumb,
Dave Airlieff72145b2011-02-07 12:16:14 +10001841 uint64_t *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001842{
Chris Wilsonda761a62010-10-27 17:37:08 +01001843 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001844 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001845 int ret;
1846
Chris Wilson76c1dec2010-09-25 11:22:51 +01001847 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001848 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001849 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001850
Dave Airlieff72145b2011-02-07 12:16:14 +10001851 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001852 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001853 ret = -ENOENT;
1854 goto unlock;
1855 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001856
Thomas Hellstrom355a7012014-11-20 09:56:25 +01001857 /*
1858 * We don't allow dumb mmaps on objects created using another
1859 * interface.
1860 */
1861 WARN_ONCE(dumb && !(obj->base.dumb || obj->base.import_attach),
1862 "Illegal dumb map of accelerated buffer.\n");
1863
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001864 if (obj->base.size > dev_priv->gtt.mappable_end) {
Chris Wilsonda761a62010-10-27 17:37:08 +01001865 ret = -E2BIG;
Eric Anholtff56b0b2011-10-31 23:16:21 -07001866 goto out;
Chris Wilsonda761a62010-10-27 17:37:08 +01001867 }
1868
Chris Wilson05394f32010-11-08 19:18:58 +00001869 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00001870 DRM_DEBUG("Attempting to mmap a purgeable buffer\n");
Chris Wilson8c99e572014-01-31 11:34:58 +00001871 ret = -EFAULT;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001872 goto out;
Chris Wilsonab182822009-09-22 18:46:17 +01001873 }
1874
Chris Wilsond8cb5082012-08-11 15:41:03 +01001875 ret = i915_gem_object_create_mmap_offset(obj);
1876 if (ret)
1877 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001878
David Herrmann0de23972013-07-24 21:07:52 +02001879 *offset = drm_vma_node_offset_addr(&obj->base.vma_node);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001880
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001881out:
Chris Wilson05394f32010-11-08 19:18:58 +00001882 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001883unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001884 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001885 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001886}
1887
Thomas Hellstrom355a7012014-11-20 09:56:25 +01001888int
1889i915_gem_dumb_map_offset(struct drm_file *file,
1890 struct drm_device *dev,
1891 uint32_t handle,
1892 uint64_t *offset)
1893{
1894 return i915_gem_mmap_gtt(file, dev, handle, true, offset);
1895}
1896
Dave Airlieff72145b2011-02-07 12:16:14 +10001897/**
1898 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1899 * @dev: DRM device
1900 * @data: GTT mapping ioctl data
1901 * @file: GEM object info
1902 *
1903 * Simply returns the fake offset to userspace so it can mmap it.
1904 * The mmap call will end up in drm_gem_mmap(), which will set things
1905 * up so we can get faults in the handler above.
1906 *
1907 * The fault handler will take care of binding the object into the GTT
1908 * (since it may have been evicted to make room for something), allocating
1909 * a fence register, and mapping the appropriate aperture address into
1910 * userspace.
1911 */
1912int
1913i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
1914 struct drm_file *file)
1915{
1916 struct drm_i915_gem_mmap_gtt *args = data;
1917
Thomas Hellstrom355a7012014-11-20 09:56:25 +01001918 return i915_gem_mmap_gtt(file, dev, args->handle, false, &args->offset);
Dave Airlieff72145b2011-02-07 12:16:14 +10001919}
1920
Chris Wilson55372522014-03-25 13:23:06 +00001921static inline int
1922i915_gem_object_is_purgeable(struct drm_i915_gem_object *obj)
1923{
1924 return obj->madv == I915_MADV_DONTNEED;
1925}
1926
Daniel Vetter225067e2012-08-20 10:23:20 +02001927/* Immediately discard the backing storage */
1928static void
1929i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001930{
Chris Wilson4d6294bf2012-08-11 15:41:05 +01001931 i915_gem_object_free_mmap_offset(obj);
Daniel Vetter1286ff72012-05-10 15:25:09 +02001932
Chris Wilson4d6294bf2012-08-11 15:41:05 +01001933 if (obj->base.filp == NULL)
1934 return;
1935
Daniel Vetter225067e2012-08-20 10:23:20 +02001936 /* Our goal here is to return as much of the memory as
1937 * is possible back to the system as we are called from OOM.
1938 * To do this we must instruct the shmfs to drop all of its
1939 * backing pages, *now*.
Chris Wilsone5281cc2010-10-28 13:45:36 +01001940 */
Chris Wilson55372522014-03-25 13:23:06 +00001941 shmem_truncate_range(file_inode(obj->base.filp), 0, (loff_t)-1);
Daniel Vetter225067e2012-08-20 10:23:20 +02001942 obj->madv = __I915_MADV_PURGED;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001943}
Chris Wilsone5281cc2010-10-28 13:45:36 +01001944
Chris Wilson55372522014-03-25 13:23:06 +00001945/* Try to discard unwanted pages */
1946static void
1947i915_gem_object_invalidate(struct drm_i915_gem_object *obj)
Daniel Vetter225067e2012-08-20 10:23:20 +02001948{
Chris Wilson55372522014-03-25 13:23:06 +00001949 struct address_space *mapping;
1950
1951 switch (obj->madv) {
1952 case I915_MADV_DONTNEED:
1953 i915_gem_object_truncate(obj);
1954 case __I915_MADV_PURGED:
1955 return;
1956 }
1957
1958 if (obj->base.filp == NULL)
1959 return;
1960
1961 mapping = file_inode(obj->base.filp)->i_mapping,
1962 invalidate_mapping_pages(mapping, 0, (loff_t)-1);
Chris Wilsone5281cc2010-10-28 13:45:36 +01001963}
1964
Chris Wilson5cdf5882010-09-27 15:51:07 +01001965static void
Chris Wilson05394f32010-11-08 19:18:58 +00001966i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001967{
Imre Deak90797e62013-02-18 19:28:03 +02001968 struct sg_page_iter sg_iter;
1969 int ret;
Daniel Vetter1286ff72012-05-10 15:25:09 +02001970
Chris Wilson05394f32010-11-08 19:18:58 +00001971 BUG_ON(obj->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07001972
Chris Wilson6c085a72012-08-20 11:40:46 +02001973 ret = i915_gem_object_set_to_cpu_domain(obj, true);
1974 if (ret) {
1975 /* In the event of a disaster, abandon all caches and
1976 * hope for the best.
1977 */
1978 WARN_ON(ret != -EIO);
Chris Wilson2c225692013-08-09 12:26:45 +01001979 i915_gem_clflush_object(obj, true);
Chris Wilson6c085a72012-08-20 11:40:46 +02001980 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
1981 }
1982
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001983 if (i915_gem_object_needs_bit17_swizzle(obj))
Eric Anholt280b7132009-03-12 16:56:27 -07001984 i915_gem_object_save_bit_17_swizzle(obj);
1985
Chris Wilson05394f32010-11-08 19:18:58 +00001986 if (obj->madv == I915_MADV_DONTNEED)
1987 obj->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01001988
Imre Deak90797e62013-02-18 19:28:03 +02001989 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents, 0) {
Imre Deak2db76d72013-03-26 15:14:18 +02001990 struct page *page = sg_page_iter_page(&sg_iter);
Chris Wilson9da3da62012-06-01 15:20:22 +01001991
Chris Wilson05394f32010-11-08 19:18:58 +00001992 if (obj->dirty)
Chris Wilson9da3da62012-06-01 15:20:22 +01001993 set_page_dirty(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001994
Chris Wilson05394f32010-11-08 19:18:58 +00001995 if (obj->madv == I915_MADV_WILLNEED)
Chris Wilson9da3da62012-06-01 15:20:22 +01001996 mark_page_accessed(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001997
Chris Wilson9da3da62012-06-01 15:20:22 +01001998 page_cache_release(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001999 }
Chris Wilson05394f32010-11-08 19:18:58 +00002000 obj->dirty = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002001
Chris Wilson9da3da62012-06-01 15:20:22 +01002002 sg_free_table(obj->pages);
2003 kfree(obj->pages);
Chris Wilson37e680a2012-06-07 15:38:42 +01002004}
2005
Chris Wilsondd624af2013-01-15 12:39:35 +00002006int
Chris Wilson37e680a2012-06-07 15:38:42 +01002007i915_gem_object_put_pages(struct drm_i915_gem_object *obj)
2008{
2009 const struct drm_i915_gem_object_ops *ops = obj->ops;
2010
Chris Wilson2f745ad2012-09-04 21:02:58 +01002011 if (obj->pages == NULL)
Chris Wilson37e680a2012-06-07 15:38:42 +01002012 return 0;
2013
Chris Wilsona5570172012-09-04 21:02:54 +01002014 if (obj->pages_pin_count)
2015 return -EBUSY;
2016
Ben Widawsky98438772013-07-31 17:00:12 -07002017 BUG_ON(i915_gem_obj_bound_any(obj));
Ben Widawsky3e123022013-07-31 17:00:04 -07002018
Chris Wilsona2165e32012-12-03 11:49:00 +00002019 /* ->put_pages might need to allocate memory for the bit17 swizzle
2020 * array, hence protect them from being reaped by removing them from gtt
2021 * lists early. */
Ben Widawsky35c20a62013-05-31 11:28:48 -07002022 list_del(&obj->global_list);
Chris Wilsona2165e32012-12-03 11:49:00 +00002023
Chris Wilson37e680a2012-06-07 15:38:42 +01002024 ops->put_pages(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00002025 obj->pages = NULL;
Chris Wilson6c085a72012-08-20 11:40:46 +02002026
Chris Wilson55372522014-03-25 13:23:06 +00002027 i915_gem_object_invalidate(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02002028
2029 return 0;
2030}
2031
Chris Wilson21ab4e72014-09-09 11:16:08 +01002032unsigned long
2033i915_gem_shrink(struct drm_i915_private *dev_priv,
2034 long target, unsigned flags)
Chris Wilson6c085a72012-08-20 11:40:46 +02002035{
Chris Wilson60a53722014-10-03 10:29:51 +01002036 const struct {
2037 struct list_head *list;
2038 unsigned int bit;
2039 } phases[] = {
2040 { &dev_priv->mm.unbound_list, I915_SHRINK_UNBOUND },
2041 { &dev_priv->mm.bound_list, I915_SHRINK_BOUND },
2042 { NULL, 0 },
2043 }, *phase;
Chris Wilsond9973b42013-10-04 10:33:00 +01002044 unsigned long count = 0;
Chris Wilson6c085a72012-08-20 11:40:46 +02002045
Chris Wilson57094f82013-09-04 10:45:50 +01002046 /*
Chris Wilsonc8725f32014-03-17 12:21:55 +00002047 * As we may completely rewrite the (un)bound list whilst unbinding
Chris Wilson57094f82013-09-04 10:45:50 +01002048 * (due to retiring requests) we have to strictly process only
2049 * one element of the list at the time, and recheck the list
2050 * on every iteration.
Chris Wilsonc8725f32014-03-17 12:21:55 +00002051 *
2052 * In particular, we must hold a reference whilst removing the
2053 * object as we may end up waiting for and/or retiring the objects.
2054 * This might release the final reference (held by the active list)
2055 * and result in the object being freed from under us. This is
2056 * similar to the precautions the eviction code must take whilst
2057 * removing objects.
2058 *
2059 * Also note that although these lists do not hold a reference to
2060 * the object we can safely grab one here: The final object
2061 * unreferencing and the bound_list are both protected by the
2062 * dev->struct_mutex and so we won't ever be able to observe an
2063 * object on the bound_list with a reference count equals 0.
Chris Wilson57094f82013-09-04 10:45:50 +01002064 */
Chris Wilson60a53722014-10-03 10:29:51 +01002065 for (phase = phases; phase->list; phase++) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002066 struct list_head still_in_list;
Chris Wilsonc8725f32014-03-17 12:21:55 +00002067
Chris Wilson60a53722014-10-03 10:29:51 +01002068 if ((flags & phase->bit) == 0)
2069 continue;
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07002070
Chris Wilson21ab4e72014-09-09 11:16:08 +01002071 INIT_LIST_HEAD(&still_in_list);
Chris Wilson60a53722014-10-03 10:29:51 +01002072 while (count < target && !list_empty(phase->list)) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002073 struct drm_i915_gem_object *obj;
2074 struct i915_vma *vma, *v;
Chris Wilson57094f82013-09-04 10:45:50 +01002075
Chris Wilson60a53722014-10-03 10:29:51 +01002076 obj = list_first_entry(phase->list,
Chris Wilson21ab4e72014-09-09 11:16:08 +01002077 typeof(*obj), global_list);
2078 list_move_tail(&obj->global_list, &still_in_list);
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07002079
Chris Wilson60a53722014-10-03 10:29:51 +01002080 if (flags & I915_SHRINK_PURGEABLE &&
2081 !i915_gem_object_is_purgeable(obj))
Chris Wilson21ab4e72014-09-09 11:16:08 +01002082 continue;
Chris Wilson57094f82013-09-04 10:45:50 +01002083
Chris Wilson21ab4e72014-09-09 11:16:08 +01002084 drm_gem_object_reference(&obj->base);
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07002085
Chris Wilson60a53722014-10-03 10:29:51 +01002086 /* For the unbound phase, this should be a no-op! */
2087 list_for_each_entry_safe(vma, v,
2088 &obj->vma_list, vma_link)
Chris Wilson21ab4e72014-09-09 11:16:08 +01002089 if (i915_vma_unbind(vma))
2090 break;
Chris Wilson57094f82013-09-04 10:45:50 +01002091
Chris Wilson21ab4e72014-09-09 11:16:08 +01002092 if (i915_gem_object_put_pages(obj) == 0)
2093 count += obj->base.size >> PAGE_SHIFT;
2094
2095 drm_gem_object_unreference(&obj->base);
2096 }
Chris Wilson60a53722014-10-03 10:29:51 +01002097 list_splice(&still_in_list, phase->list);
Chris Wilson6c085a72012-08-20 11:40:46 +02002098 }
2099
2100 return count;
2101}
2102
Chris Wilsond9973b42013-10-04 10:33:00 +01002103static unsigned long
Chris Wilson6c085a72012-08-20 11:40:46 +02002104i915_gem_shrink_all(struct drm_i915_private *dev_priv)
2105{
Chris Wilson6c085a72012-08-20 11:40:46 +02002106 i915_gem_evict_everything(dev_priv->dev);
Chris Wilson21ab4e72014-09-09 11:16:08 +01002107 return i915_gem_shrink(dev_priv, LONG_MAX,
2108 I915_SHRINK_BOUND | I915_SHRINK_UNBOUND);
Daniel Vetter225067e2012-08-20 10:23:20 +02002109}
2110
Chris Wilson37e680a2012-06-07 15:38:42 +01002111static int
Chris Wilson6c085a72012-08-20 11:40:46 +02002112i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002113{
Chris Wilson6c085a72012-08-20 11:40:46 +02002114 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07002115 int page_count, i;
2116 struct address_space *mapping;
Chris Wilson9da3da62012-06-01 15:20:22 +01002117 struct sg_table *st;
2118 struct scatterlist *sg;
Imre Deak90797e62013-02-18 19:28:03 +02002119 struct sg_page_iter sg_iter;
Eric Anholt673a3942008-07-30 12:06:12 -07002120 struct page *page;
Imre Deak90797e62013-02-18 19:28:03 +02002121 unsigned long last_pfn = 0; /* suppress gcc warning */
Chris Wilson6c085a72012-08-20 11:40:46 +02002122 gfp_t gfp;
Eric Anholt673a3942008-07-30 12:06:12 -07002123
Chris Wilson6c085a72012-08-20 11:40:46 +02002124 /* Assert that the object is not currently in any GPU domain. As it
2125 * wasn't in the GTT, there shouldn't be any way it could have been in
2126 * a GPU cache
2127 */
2128 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
2129 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
2130
Chris Wilson9da3da62012-06-01 15:20:22 +01002131 st = kmalloc(sizeof(*st), GFP_KERNEL);
2132 if (st == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07002133 return -ENOMEM;
2134
Chris Wilson9da3da62012-06-01 15:20:22 +01002135 page_count = obj->base.size / PAGE_SIZE;
2136 if (sg_alloc_table(st, page_count, GFP_KERNEL)) {
Chris Wilson9da3da62012-06-01 15:20:22 +01002137 kfree(st);
2138 return -ENOMEM;
2139 }
2140
2141 /* Get the list of pages out of our struct file. They'll be pinned
2142 * at this point until we release them.
2143 *
2144 * Fail silently without starting the shrinker
2145 */
Al Viro496ad9a2013-01-23 17:07:38 -05002146 mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilson6c085a72012-08-20 11:40:46 +02002147 gfp = mapping_gfp_mask(mapping);
Linus Torvaldscaf49192012-12-10 10:51:16 -08002148 gfp |= __GFP_NORETRY | __GFP_NOWARN | __GFP_NO_KSWAPD;
Chris Wilson6c085a72012-08-20 11:40:46 +02002149 gfp &= ~(__GFP_IO | __GFP_WAIT);
Imre Deak90797e62013-02-18 19:28:03 +02002150 sg = st->sgl;
2151 st->nents = 0;
2152 for (i = 0; i < page_count; i++) {
Chris Wilson6c085a72012-08-20 11:40:46 +02002153 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
2154 if (IS_ERR(page)) {
Chris Wilson21ab4e72014-09-09 11:16:08 +01002155 i915_gem_shrink(dev_priv,
2156 page_count,
2157 I915_SHRINK_BOUND |
2158 I915_SHRINK_UNBOUND |
2159 I915_SHRINK_PURGEABLE);
Chris Wilson6c085a72012-08-20 11:40:46 +02002160 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
2161 }
2162 if (IS_ERR(page)) {
2163 /* We've tried hard to allocate the memory by reaping
2164 * our own buffer, now let the real VM do its job and
2165 * go down in flames if truly OOM.
2166 */
Chris Wilson6c085a72012-08-20 11:40:46 +02002167 i915_gem_shrink_all(dev_priv);
David Herrmannf461d1b2014-05-25 14:34:10 +02002168 page = shmem_read_mapping_page(mapping, i);
Chris Wilson6c085a72012-08-20 11:40:46 +02002169 if (IS_ERR(page))
2170 goto err_pages;
Chris Wilson6c085a72012-08-20 11:40:46 +02002171 }
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04002172#ifdef CONFIG_SWIOTLB
2173 if (swiotlb_nr_tbl()) {
2174 st->nents++;
2175 sg_set_page(sg, page, PAGE_SIZE, 0);
2176 sg = sg_next(sg);
2177 continue;
2178 }
2179#endif
Imre Deak90797e62013-02-18 19:28:03 +02002180 if (!i || page_to_pfn(page) != last_pfn + 1) {
2181 if (i)
2182 sg = sg_next(sg);
2183 st->nents++;
2184 sg_set_page(sg, page, PAGE_SIZE, 0);
2185 } else {
2186 sg->length += PAGE_SIZE;
2187 }
2188 last_pfn = page_to_pfn(page);
Daniel Vetter3bbbe702013-10-07 17:15:45 -03002189
2190 /* Check that the i965g/gm workaround works. */
2191 WARN_ON((gfp & __GFP_DMA32) && (last_pfn >= 0x00100000UL));
Eric Anholt673a3942008-07-30 12:06:12 -07002192 }
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04002193#ifdef CONFIG_SWIOTLB
2194 if (!swiotlb_nr_tbl())
2195#endif
2196 sg_mark_end(sg);
Chris Wilson74ce6b62012-10-19 15:51:06 +01002197 obj->pages = st;
2198
Eric Anholt673a3942008-07-30 12:06:12 -07002199 if (i915_gem_object_needs_bit17_swizzle(obj))
2200 i915_gem_object_do_bit_17_swizzle(obj);
2201
Daniel Vetter656bfa32014-11-20 09:26:30 +01002202 if (obj->tiling_mode != I915_TILING_NONE &&
2203 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES)
2204 i915_gem_object_pin_pages(obj);
2205
Eric Anholt673a3942008-07-30 12:06:12 -07002206 return 0;
2207
2208err_pages:
Imre Deak90797e62013-02-18 19:28:03 +02002209 sg_mark_end(sg);
2210 for_each_sg_page(st->sgl, &sg_iter, st->nents, 0)
Imre Deak2db76d72013-03-26 15:14:18 +02002211 page_cache_release(sg_page_iter_page(&sg_iter));
Chris Wilson9da3da62012-06-01 15:20:22 +01002212 sg_free_table(st);
2213 kfree(st);
Chris Wilson0820baf2014-03-25 13:23:03 +00002214
2215 /* shmemfs first checks if there is enough memory to allocate the page
2216 * and reports ENOSPC should there be insufficient, along with the usual
2217 * ENOMEM for a genuine allocation failure.
2218 *
2219 * We use ENOSPC in our driver to mean that we have run out of aperture
2220 * space and so want to translate the error from shmemfs back to our
2221 * usual understanding of ENOMEM.
2222 */
2223 if (PTR_ERR(page) == -ENOSPC)
2224 return -ENOMEM;
2225 else
2226 return PTR_ERR(page);
Eric Anholt673a3942008-07-30 12:06:12 -07002227}
2228
Chris Wilson37e680a2012-06-07 15:38:42 +01002229/* Ensure that the associated pages are gathered from the backing storage
2230 * and pinned into our object. i915_gem_object_get_pages() may be called
2231 * multiple times before they are released by a single call to
2232 * i915_gem_object_put_pages() - once the pages are no longer referenced
2233 * either as a result of memory pressure (reaping pages under the shrinker)
2234 * or as the object is itself released.
2235 */
2236int
2237i915_gem_object_get_pages(struct drm_i915_gem_object *obj)
2238{
2239 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2240 const struct drm_i915_gem_object_ops *ops = obj->ops;
2241 int ret;
2242
Chris Wilson2f745ad2012-09-04 21:02:58 +01002243 if (obj->pages)
Chris Wilson37e680a2012-06-07 15:38:42 +01002244 return 0;
2245
Chris Wilson43e28f02013-01-08 10:53:09 +00002246 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00002247 DRM_DEBUG("Attempting to obtain a purgeable object\n");
Chris Wilson8c99e572014-01-31 11:34:58 +00002248 return -EFAULT;
Chris Wilson43e28f02013-01-08 10:53:09 +00002249 }
2250
Chris Wilsona5570172012-09-04 21:02:54 +01002251 BUG_ON(obj->pages_pin_count);
2252
Chris Wilson37e680a2012-06-07 15:38:42 +01002253 ret = ops->get_pages(obj);
2254 if (ret)
2255 return ret;
2256
Ben Widawsky35c20a62013-05-31 11:28:48 -07002257 list_add_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Chris Wilson37e680a2012-06-07 15:38:42 +01002258 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002259}
2260
Ben Widawskye2d05a82013-09-24 09:57:58 -07002261static void
Chris Wilson05394f32010-11-08 19:18:58 +00002262i915_gem_object_move_to_active(struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002263 struct intel_engine_cs *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07002264{
John Harrison97b2a6a2014-11-24 18:49:26 +00002265 struct drm_i915_gem_request *req = intel_ring_get_request(ring);
Daniel Vetter617dbe22010-02-11 22:16:02 +01002266
Zou Nan hai852835f2010-05-21 09:08:56 +08002267 BUG_ON(ring == NULL);
John Harrison97b2a6a2014-11-24 18:49:26 +00002268 if (obj->ring != ring && obj->last_write_req) {
2269 /* Keep the request relative to the current ring */
2270 i915_gem_request_assign(&obj->last_write_req, req);
Chris Wilson02978ff2013-07-09 09:22:39 +01002271 }
Chris Wilson05394f32010-11-08 19:18:58 +00002272 obj->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07002273
2274 /* Add a reference if we're newly entering the active list. */
Chris Wilson05394f32010-11-08 19:18:58 +00002275 if (!obj->active) {
2276 drm_gem_object_reference(&obj->base);
2277 obj->active = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07002278 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01002279
Chris Wilson05394f32010-11-08 19:18:58 +00002280 list_move_tail(&obj->ring_list, &ring->active_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002281
John Harrison97b2a6a2014-11-24 18:49:26 +00002282 i915_gem_request_assign(&obj->last_read_req, req);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002283}
2284
Ben Widawskye2d05a82013-09-24 09:57:58 -07002285void i915_vma_move_to_active(struct i915_vma *vma,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002286 struct intel_engine_cs *ring)
Ben Widawskye2d05a82013-09-24 09:57:58 -07002287{
2288 list_move_tail(&vma->mm_list, &vma->vm->active_list);
2289 return i915_gem_object_move_to_active(vma->obj, ring);
2290}
2291
Chris Wilsoncaea7472010-11-12 13:53:37 +00002292static void
Chris Wilsoncaea7472010-11-12 13:53:37 +00002293i915_gem_object_move_to_inactive(struct drm_i915_gem_object *obj)
2294{
Ben Widawskyca191b12013-07-31 17:00:14 -07002295 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Ben Widawskyfeb822c2013-12-06 14:10:51 -08002296 struct i915_address_space *vm;
2297 struct i915_vma *vma;
Chris Wilsoncaea7472010-11-12 13:53:37 +00002298
Chris Wilson65ce3022012-07-20 12:41:02 +01002299 BUG_ON(obj->base.write_domain & ~I915_GEM_GPU_DOMAINS);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002300 BUG_ON(!obj->active);
Chris Wilson65ce3022012-07-20 12:41:02 +01002301
Ben Widawskyfeb822c2013-12-06 14:10:51 -08002302 list_for_each_entry(vm, &dev_priv->vm_list, global_link) {
2303 vma = i915_gem_obj_to_vma(obj, vm);
2304 if (vma && !list_empty(&vma->mm_list))
2305 list_move_tail(&vma->mm_list, &vm->inactive_list);
2306 }
Chris Wilsoncaea7472010-11-12 13:53:37 +00002307
Daniel Vetterf99d7062014-06-19 16:01:59 +02002308 intel_fb_obj_flush(obj, true);
2309
Chris Wilson65ce3022012-07-20 12:41:02 +01002310 list_del_init(&obj->ring_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002311 obj->ring = NULL;
2312
John Harrison97b2a6a2014-11-24 18:49:26 +00002313 i915_gem_request_assign(&obj->last_read_req, NULL);
2314 i915_gem_request_assign(&obj->last_write_req, NULL);
Chris Wilson65ce3022012-07-20 12:41:02 +01002315 obj->base.write_domain = 0;
2316
John Harrison97b2a6a2014-11-24 18:49:26 +00002317 i915_gem_request_assign(&obj->last_fenced_req, NULL);
Chris Wilsoncaea7472010-11-12 13:53:37 +00002318
2319 obj->active = 0;
2320 drm_gem_object_unreference(&obj->base);
2321
2322 WARN_ON(i915_verify_lists(dev));
Eric Anholtce44b0e2008-11-06 16:00:31 -08002323}
Eric Anholt673a3942008-07-30 12:06:12 -07002324
Chris Wilsonc8725f32014-03-17 12:21:55 +00002325static void
2326i915_gem_object_retire(struct drm_i915_gem_object *obj)
2327{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002328 struct intel_engine_cs *ring = obj->ring;
Chris Wilsonc8725f32014-03-17 12:21:55 +00002329
2330 if (ring == NULL)
2331 return;
2332
2333 if (i915_seqno_passed(ring->get_seqno(ring, true),
John Harrison97b2a6a2014-11-24 18:49:26 +00002334 i915_gem_request_get_seqno(obj->last_read_req)))
Chris Wilsonc8725f32014-03-17 12:21:55 +00002335 i915_gem_object_move_to_inactive(obj);
2336}
2337
Chris Wilson9d7730912012-11-27 16:22:52 +00002338static int
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002339i915_gem_init_seqno(struct drm_device *dev, u32 seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01002340{
Chris Wilson9d7730912012-11-27 16:22:52 +00002341 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002342 struct intel_engine_cs *ring;
Chris Wilson9d7730912012-11-27 16:22:52 +00002343 int ret, i, j;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002344
Chris Wilson107f27a52012-12-10 13:56:17 +02002345 /* Carefully retire all requests without writing to the rings */
Chris Wilson9d7730912012-11-27 16:22:52 +00002346 for_each_ring(ring, dev_priv, i) {
Chris Wilson107f27a52012-12-10 13:56:17 +02002347 ret = intel_ring_idle(ring);
2348 if (ret)
2349 return ret;
Chris Wilson9d7730912012-11-27 16:22:52 +00002350 }
Chris Wilson9d7730912012-11-27 16:22:52 +00002351 i915_gem_retire_requests(dev);
Chris Wilson107f27a52012-12-10 13:56:17 +02002352
2353 /* Finally reset hw state */
Chris Wilson9d7730912012-11-27 16:22:52 +00002354 for_each_ring(ring, dev_priv, i) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002355 intel_ring_init_seqno(ring, seqno);
Mika Kuoppala498d2ac2012-12-04 15:12:04 +02002356
Ben Widawskyebc348b2014-04-29 14:52:28 -07002357 for (j = 0; j < ARRAY_SIZE(ring->semaphore.sync_seqno); j++)
2358 ring->semaphore.sync_seqno[j] = 0;
Chris Wilson9d7730912012-11-27 16:22:52 +00002359 }
2360
2361 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002362}
2363
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002364int i915_gem_set_seqno(struct drm_device *dev, u32 seqno)
2365{
2366 struct drm_i915_private *dev_priv = dev->dev_private;
2367 int ret;
2368
2369 if (seqno == 0)
2370 return -EINVAL;
2371
2372 /* HWS page needs to be set less than what we
2373 * will inject to ring
2374 */
2375 ret = i915_gem_init_seqno(dev, seqno - 1);
2376 if (ret)
2377 return ret;
2378
2379 /* Carefully set the last_seqno value so that wrap
2380 * detection still works
2381 */
2382 dev_priv->next_seqno = seqno;
2383 dev_priv->last_seqno = seqno - 1;
2384 if (dev_priv->last_seqno == 0)
2385 dev_priv->last_seqno--;
2386
2387 return 0;
2388}
2389
Chris Wilson9d7730912012-11-27 16:22:52 +00002390int
2391i915_gem_get_seqno(struct drm_device *dev, u32 *seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01002392{
Chris Wilson9d7730912012-11-27 16:22:52 +00002393 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002394
Chris Wilson9d7730912012-11-27 16:22:52 +00002395 /* reserve 0 for non-seqno */
2396 if (dev_priv->next_seqno == 0) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002397 int ret = i915_gem_init_seqno(dev, 0);
Chris Wilson9d7730912012-11-27 16:22:52 +00002398 if (ret)
2399 return ret;
2400
2401 dev_priv->next_seqno = 1;
2402 }
2403
Mika Kuoppalaf72b3432012-12-10 15:41:48 +02002404 *seqno = dev_priv->last_seqno = dev_priv->next_seqno++;
Chris Wilson9d7730912012-11-27 16:22:52 +00002405 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002406}
2407
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002408int __i915_add_request(struct intel_engine_cs *ring,
Mika Kuoppala0025c072013-06-12 12:35:30 +03002409 struct drm_file *file,
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002410 struct drm_i915_gem_object *obj,
Mika Kuoppala0025c072013-06-12 12:35:30 +03002411 u32 *out_seqno)
Eric Anholt673a3942008-07-30 12:06:12 -07002412{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03002413 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Chris Wilsonacb868d2012-09-26 13:47:30 +01002414 struct drm_i915_gem_request *request;
Oscar Mateo48e29f52014-07-24 17:04:29 +01002415 struct intel_ringbuffer *ringbuf;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002416 u32 request_ring_position, request_start;
Chris Wilson3cce4692010-10-27 16:11:02 +01002417 int ret;
2418
John Harrison6259cea2014-11-24 18:49:29 +00002419 request = ring->outstanding_lazy_request;
Oscar Mateo48e29f52014-07-24 17:04:29 +01002420 if (WARN_ON(request == NULL))
2421 return -ENOMEM;
2422
2423 if (i915.enable_execlists) {
2424 struct intel_context *ctx = request->ctx;
2425 ringbuf = ctx->engine[ring->id].ringbuf;
2426 } else
2427 ringbuf = ring->buffer;
2428
2429 request_start = intel_ring_get_tail(ringbuf);
Daniel Vettercc889e02012-06-13 20:45:19 +02002430 /*
2431 * Emit any outstanding flushes - execbuf can fail to emit the flush
2432 * after having emitted the batchbuffer command. Hence we need to fix
2433 * things up similar to emitting the lazy request. The difference here
2434 * is that the flush _must_ happen before the next request, no matter
2435 * what.
2436 */
Oscar Mateo48e29f52014-07-24 17:04:29 +01002437 if (i915.enable_execlists) {
2438 ret = logical_ring_flush_all_caches(ringbuf);
2439 if (ret)
2440 return ret;
2441 } else {
2442 ret = intel_ring_flush_all_caches(ring);
2443 if (ret)
2444 return ret;
2445 }
Daniel Vettercc889e02012-06-13 20:45:19 +02002446
Chris Wilsona71d8d92012-02-15 11:25:36 +00002447 /* Record the position of the start of the request so that
2448 * should we detect the updated seqno part-way through the
2449 * GPU processing the request, we never over-estimate the
2450 * position of the head.
2451 */
Oscar Mateo48e29f52014-07-24 17:04:29 +01002452 request_ring_position = intel_ring_get_tail(ringbuf);
Chris Wilsona71d8d92012-02-15 11:25:36 +00002453
Oscar Mateo48e29f52014-07-24 17:04:29 +01002454 if (i915.enable_execlists) {
2455 ret = ring->emit_request(ringbuf);
2456 if (ret)
2457 return ret;
2458 } else {
2459 ret = ring->add_request(ring);
2460 if (ret)
2461 return ret;
2462 }
Eric Anholt673a3942008-07-30 12:06:12 -07002463
Zou Nan hai852835f2010-05-21 09:08:56 +08002464 request->ring = ring;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002465 request->head = request_start;
Chris Wilsona71d8d92012-02-15 11:25:36 +00002466 request->tail = request_ring_position;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002467
2468 /* Whilst this request exists, batch_obj will be on the
2469 * active_list, and so will hold the active reference. Only when this
2470 * request is retired will the the batch_obj be moved onto the
2471 * inactive_list and lose its active reference. Hence we do not need
2472 * to explicitly hold another reference here.
2473 */
Chris Wilson9a7e0c22013-08-26 19:50:54 -03002474 request->batch_obj = obj;
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002475
Oscar Mateo48e29f52014-07-24 17:04:29 +01002476 if (!i915.enable_execlists) {
2477 /* Hold a reference to the current context so that we can inspect
2478 * it later in case a hangcheck error event fires.
2479 */
2480 request->ctx = ring->last_context;
2481 if (request->ctx)
2482 i915_gem_context_reference(request->ctx);
2483 }
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002484
Eric Anholt673a3942008-07-30 12:06:12 -07002485 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08002486 list_add_tail(&request->list, &ring->request_list);
Chris Wilson3bb73ab2012-07-20 12:40:59 +01002487 request->file_priv = NULL;
Zou Nan hai852835f2010-05-21 09:08:56 +08002488
Chris Wilsondb53a302011-02-03 11:57:46 +00002489 if (file) {
2490 struct drm_i915_file_private *file_priv = file->driver_priv;
2491
Chris Wilson1c255952010-09-26 11:03:27 +01002492 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002493 request->file_priv = file_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00002494 list_add_tail(&request->client_list,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002495 &file_priv->mm.request_list);
Chris Wilson1c255952010-09-26 11:03:27 +01002496 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00002497 }
Eric Anholt673a3942008-07-30 12:06:12 -07002498
Chris Wilson9d7730912012-11-27 16:22:52 +00002499 trace_i915_gem_request_add(ring, request->seqno);
John Harrison6259cea2014-11-24 18:49:29 +00002500 ring->outstanding_lazy_request = NULL;
Chris Wilsondb53a302011-02-03 11:57:46 +00002501
Daniel Vetter87255482014-11-19 20:36:48 +01002502 i915_queue_hangcheck(ring->dev);
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03002503
Daniel Vetter87255482014-11-19 20:36:48 +01002504 cancel_delayed_work_sync(&dev_priv->mm.idle_work);
2505 queue_delayed_work(dev_priv->wq,
2506 &dev_priv->mm.retire_work,
2507 round_jiffies_up_relative(HZ));
2508 intel_mark_busy(dev_priv->dev);
Daniel Vettercc889e02012-06-13 20:45:19 +02002509
Chris Wilsonacb868d2012-09-26 13:47:30 +01002510 if (out_seqno)
Chris Wilson9d7730912012-11-27 16:22:52 +00002511 *out_seqno = request->seqno;
Chris Wilson3cce4692010-10-27 16:11:02 +01002512 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002513}
2514
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002515static inline void
2516i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07002517{
Chris Wilson1c255952010-09-26 11:03:27 +01002518 struct drm_i915_file_private *file_priv = request->file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07002519
Chris Wilson1c255952010-09-26 11:03:27 +01002520 if (!file_priv)
2521 return;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002522
Chris Wilson1c255952010-09-26 11:03:27 +01002523 spin_lock(&file_priv->mm.lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01002524 list_del(&request->client_list);
2525 request->file_priv = NULL;
Chris Wilson1c255952010-09-26 11:03:27 +01002526 spin_unlock(&file_priv->mm.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07002527}
2528
Mika Kuoppala939fd762014-01-30 19:04:44 +02002529static bool i915_context_is_banned(struct drm_i915_private *dev_priv,
Oscar Mateo273497e2014-05-22 14:13:37 +01002530 const struct intel_context *ctx)
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002531{
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002532 unsigned long elapsed;
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002533
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002534 elapsed = get_seconds() - ctx->hang_stats.guilty_ts;
2535
2536 if (ctx->hang_stats.banned)
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002537 return true;
2538
2539 if (elapsed <= DRM_I915_CTX_BAN_PERIOD) {
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002540 if (!i915_gem_context_is_default(ctx)) {
Mika Kuoppala3fac8972014-01-30 16:05:48 +02002541 DRM_DEBUG("context hanging too fast, banning!\n");
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002542 return true;
Mika Kuoppala88b4aa82014-03-28 18:18:18 +02002543 } else if (i915_stop_ring_allow_ban(dev_priv)) {
2544 if (i915_stop_ring_allow_warn(dev_priv))
2545 DRM_ERROR("gpu hanging too fast, banning!\n");
Ville Syrjäläccc7bed2014-02-21 16:26:47 +02002546 return true;
Mika Kuoppala3fac8972014-01-30 16:05:48 +02002547 }
Mika Kuoppalabe62acb2013-08-30 16:19:28 +03002548 }
2549
2550 return false;
2551}
2552
Mika Kuoppala939fd762014-01-30 19:04:44 +02002553static void i915_set_reset_status(struct drm_i915_private *dev_priv,
Oscar Mateo273497e2014-05-22 14:13:37 +01002554 struct intel_context *ctx,
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002555 const bool guilty)
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002556{
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002557 struct i915_ctx_hang_stats *hs;
2558
2559 if (WARN_ON(!ctx))
2560 return;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002561
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002562 hs = &ctx->hang_stats;
2563
2564 if (guilty) {
Mika Kuoppala939fd762014-01-30 19:04:44 +02002565 hs->banned = i915_context_is_banned(dev_priv, ctx);
Mika Kuoppala44e2c072014-01-30 16:01:15 +02002566 hs->batch_active++;
2567 hs->guilty_ts = get_seconds();
2568 } else {
2569 hs->batch_pending++;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002570 }
2571}
2572
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002573static void i915_gem_free_request(struct drm_i915_gem_request *request)
2574{
2575 list_del(&request->list);
2576 i915_gem_request_remove_from_client(request);
2577
John Harrisonabfe2622014-11-24 18:49:24 +00002578 i915_gem_request_unreference(request);
2579}
2580
2581void i915_gem_request_free(struct kref *req_ref)
2582{
2583 struct drm_i915_gem_request *req = container_of(req_ref,
2584 typeof(*req), ref);
2585 struct intel_context *ctx = req->ctx;
2586
Thomas Daniel0794aed2014-11-25 10:39:25 +00002587 if (ctx) {
2588 if (i915.enable_execlists) {
John Harrisonabfe2622014-11-24 18:49:24 +00002589 struct intel_engine_cs *ring = req->ring;
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002590
Thomas Daniel0794aed2014-11-25 10:39:25 +00002591 if (ctx != ring->default_context)
2592 intel_lr_context_unpin(ring, ctx);
2593 }
John Harrisonabfe2622014-11-24 18:49:24 +00002594
Oscar Mateodcb4c122014-11-13 10:28:10 +00002595 i915_gem_context_unreference(ctx);
2596 }
John Harrisonabfe2622014-11-24 18:49:24 +00002597
2598 kfree(req);
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002599}
2600
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002601struct drm_i915_gem_request *
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002602i915_gem_find_active_request(struct intel_engine_cs *ring)
Chris Wilson9375e442010-09-19 12:21:28 +01002603{
Chris Wilson4db080f2013-12-04 11:37:09 +00002604 struct drm_i915_gem_request *request;
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002605 u32 completed_seqno;
2606
2607 completed_seqno = ring->get_seqno(ring, false);
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002608
Chris Wilson4db080f2013-12-04 11:37:09 +00002609 list_for_each_entry(request, &ring->request_list, list) {
2610 if (i915_seqno_passed(completed_seqno, request->seqno))
2611 continue;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002612
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002613 return request;
Chris Wilson4db080f2013-12-04 11:37:09 +00002614 }
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002615
2616 return NULL;
2617}
2618
2619static void i915_gem_reset_ring_status(struct drm_i915_private *dev_priv,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002620 struct intel_engine_cs *ring)
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002621{
2622 struct drm_i915_gem_request *request;
2623 bool ring_hung;
2624
Chris Wilson8d9fc7f2014-02-25 17:11:23 +02002625 request = i915_gem_find_active_request(ring);
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002626
2627 if (request == NULL)
2628 return;
2629
2630 ring_hung = ring->hangcheck.score >= HANGCHECK_SCORE_RING_HUNG;
2631
Mika Kuoppala939fd762014-01-30 19:04:44 +02002632 i915_set_reset_status(dev_priv, request->ctx, ring_hung);
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02002633
2634 list_for_each_entry_continue(request, &ring->request_list, list)
Mika Kuoppala939fd762014-01-30 19:04:44 +02002635 i915_set_reset_status(dev_priv, request->ctx, false);
Chris Wilson4db080f2013-12-04 11:37:09 +00002636}
2637
2638static void i915_gem_reset_ring_cleanup(struct drm_i915_private *dev_priv,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002639 struct intel_engine_cs *ring)
Chris Wilson4db080f2013-12-04 11:37:09 +00002640{
Chris Wilsondfaae392010-09-22 10:31:52 +01002641 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00002642 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07002643
Chris Wilson05394f32010-11-08 19:18:58 +00002644 obj = list_first_entry(&ring->active_list,
2645 struct drm_i915_gem_object,
2646 ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07002647
Chris Wilson05394f32010-11-08 19:18:58 +00002648 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002649 }
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002650
2651 /*
Oscar Mateodcb4c122014-11-13 10:28:10 +00002652 * Clear the execlists queue up before freeing the requests, as those
2653 * are the ones that keep the context and ringbuffer backing objects
2654 * pinned in place.
2655 */
2656 while (!list_empty(&ring->execlist_queue)) {
2657 struct intel_ctx_submit_request *submit_req;
2658
2659 submit_req = list_first_entry(&ring->execlist_queue,
2660 struct intel_ctx_submit_request,
2661 execlist_link);
2662 list_del(&submit_req->execlist_link);
2663 intel_runtime_pm_put(dev_priv);
2664 i915_gem_context_unreference(submit_req->ctx);
2665 kfree(submit_req);
2666 }
2667
2668 /*
Ben Widawsky1d62bee2014-01-01 10:15:13 -08002669 * We must free the requests after all the corresponding objects have
2670 * been moved off active lists. Which is the same order as the normal
2671 * retire_requests function does. This is important if object hold
2672 * implicit references on things like e.g. ppgtt address spaces through
2673 * the request.
2674 */
2675 while (!list_empty(&ring->request_list)) {
2676 struct drm_i915_gem_request *request;
2677
2678 request = list_first_entry(&ring->request_list,
2679 struct drm_i915_gem_request,
2680 list);
2681
2682 i915_gem_free_request(request);
2683 }
Chris Wilsone3efda42014-04-09 09:19:41 +01002684
John Harrison6259cea2014-11-24 18:49:29 +00002685 /* This may not have been flushed before the reset, so clean it now */
2686 i915_gem_request_assign(&ring->outstanding_lazy_request, NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07002687}
2688
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002689void i915_gem_restore_fences(struct drm_device *dev)
Chris Wilson312817a2010-11-22 11:50:11 +00002690{
2691 struct drm_i915_private *dev_priv = dev->dev_private;
2692 int i;
2693
Daniel Vetter4b9de732011-10-09 21:52:02 +02002694 for (i = 0; i < dev_priv->num_fence_regs; i++) {
Chris Wilson312817a2010-11-22 11:50:11 +00002695 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
Chris Wilson7d2cb392010-11-27 17:38:29 +00002696
Daniel Vetter94a335d2013-07-17 14:51:28 +02002697 /*
2698 * Commit delayed tiling changes if we have an object still
2699 * attached to the fence, otherwise just clear the fence.
2700 */
2701 if (reg->obj) {
2702 i915_gem_object_update_fence(reg->obj, reg,
2703 reg->obj->tiling_mode);
2704 } else {
2705 i915_gem_write_fence(dev, i, NULL);
2706 }
Chris Wilson312817a2010-11-22 11:50:11 +00002707 }
2708}
2709
Chris Wilson069efc12010-09-30 16:53:18 +01002710void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07002711{
Chris Wilsondfaae392010-09-22 10:31:52 +01002712 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002713 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002714 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07002715
Chris Wilson4db080f2013-12-04 11:37:09 +00002716 /*
2717 * Before we free the objects from the requests, we need to inspect
2718 * them for finding the guilty party. As the requests only borrow
2719 * their reference to the objects, the inspection must be done first.
2720 */
Chris Wilsonb4519512012-05-11 14:29:30 +01002721 for_each_ring(ring, dev_priv, i)
Chris Wilson4db080f2013-12-04 11:37:09 +00002722 i915_gem_reset_ring_status(dev_priv, ring);
2723
2724 for_each_ring(ring, dev_priv, i)
2725 i915_gem_reset_ring_cleanup(dev_priv, ring);
Chris Wilsondfaae392010-09-22 10:31:52 +01002726
Ben Widawskyacce9ff2013-12-06 14:11:03 -08002727 i915_gem_context_reset(dev);
2728
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002729 i915_gem_restore_fences(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07002730}
2731
2732/**
2733 * This function clears the request list as sequence numbers are passed.
2734 */
Chris Wilson1cf0ba12014-05-05 09:07:33 +01002735void
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002736i915_gem_retire_requests_ring(struct intel_engine_cs *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07002737{
Eric Anholt673a3942008-07-30 12:06:12 -07002738 uint32_t seqno;
2739
Chris Wilsondb53a302011-02-03 11:57:46 +00002740 if (list_empty(&ring->request_list))
Karsten Wiese6c0594a2009-02-23 15:07:57 +01002741 return;
2742
Chris Wilsondb53a302011-02-03 11:57:46 +00002743 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002744
Chris Wilsonb2eadbc2012-08-09 10:58:30 +01002745 seqno = ring->get_seqno(ring, true);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002746
Chris Wilsone9103032014-01-07 11:45:14 +00002747 /* Move any buffers on the active list that are no longer referenced
2748 * by the ringbuffer to the flushing/inactive lists as appropriate,
2749 * before we free the context associated with the requests.
2750 */
2751 while (!list_empty(&ring->active_list)) {
2752 struct drm_i915_gem_object *obj;
2753
2754 obj = list_first_entry(&ring->active_list,
2755 struct drm_i915_gem_object,
2756 ring_list);
2757
John Harrison97b2a6a2014-11-24 18:49:26 +00002758 if (!i915_seqno_passed(seqno,
2759 i915_gem_request_get_seqno(obj->last_read_req)))
Chris Wilsone9103032014-01-07 11:45:14 +00002760 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) {
John Harrisonb6660d52014-11-24 18:49:30 +00002878 ret = i915_gem_check_olr(obj->last_read_req);
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;
John Harrisonff865882014-11-24 18:49:28 +00002916 struct drm_i915_gem_request *req;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002917 struct intel_engine_cs *ring = NULL;
Daniel Vetterf69061b2012-12-06 09:01:42 +01002918 unsigned reset_counter;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002919 u32 seqno = 0;
2920 int ret = 0;
2921
Daniel Vetter11b5d512014-09-29 15:31:26 +02002922 if (args->flags != 0)
2923 return -EINVAL;
2924
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002925 ret = i915_mutex_lock_interruptible(dev);
2926 if (ret)
2927 return ret;
2928
2929 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->bo_handle));
2930 if (&obj->base == NULL) {
2931 mutex_unlock(&dev->struct_mutex);
2932 return -ENOENT;
2933 }
2934
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002935 /* Need to make sure the object gets inactive eventually. */
2936 ret = i915_gem_object_flush_active(obj);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002937 if (ret)
2938 goto out;
2939
John Harrison97b2a6a2014-11-24 18:49:26 +00002940 if (!obj->active || !obj->last_read_req)
2941 goto out;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002942
John Harrisonff865882014-11-24 18:49:28 +00002943 req = obj->last_read_req;
2944 seqno = i915_gem_request_get_seqno(req);
John Harrison97b2a6a2014-11-24 18:49:26 +00002945 WARN_ON(seqno == 0);
2946 ring = obj->ring;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002947
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002948 /* Do this after OLR check to make sure we make forward progress polling
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00002949 * on this IOCTL with a timeout <=0 (like busy ioctl)
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002950 */
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00002951 if (args->timeout_ns <= 0) {
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002952 ret = -ETIME;
2953 goto out;
2954 }
2955
2956 drm_gem_object_unreference(&obj->base);
Daniel Vetterf69061b2012-12-06 09:01:42 +01002957 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
John Harrisonff865882014-11-24 18:49:28 +00002958 i915_gem_request_reference(req);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002959 mutex_unlock(&dev->struct_mutex);
2960
John Harrisonff865882014-11-24 18:49:28 +00002961 ret = __i915_wait_seqno(ring, seqno, reset_counter, true, &args->timeout_ns,
2962 file->driver_priv);
2963 mutex_lock(&dev->struct_mutex);
2964 i915_gem_request_unreference(req);
2965 mutex_unlock(&dev->struct_mutex);
2966 return ret;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002967
2968out:
2969 drm_gem_object_unreference(&obj->base);
2970 mutex_unlock(&dev->struct_mutex);
2971 return ret;
2972}
2973
2974/**
Ben Widawsky5816d642012-04-11 11:18:19 -07002975 * i915_gem_object_sync - sync an object to a ring.
2976 *
2977 * @obj: object which may be in use on another ring.
2978 * @to: ring we wish to use the object on. May be NULL.
2979 *
2980 * This code is meant to abstract object synchronization with the GPU.
2981 * Calling with NULL implies synchronizing the object with the CPU
2982 * rather than a particular GPU ring.
2983 *
2984 * Returns 0 if successful, else propagates up the lower layer error.
2985 */
Ben Widawsky2911a352012-04-05 14:47:36 -07002986int
2987i915_gem_object_sync(struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002988 struct intel_engine_cs *to)
Ben Widawsky2911a352012-04-05 14:47:36 -07002989{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002990 struct intel_engine_cs *from = obj->ring;
Ben Widawsky2911a352012-04-05 14:47:36 -07002991 u32 seqno;
2992 int ret, idx;
2993
2994 if (from == NULL || to == from)
2995 return 0;
2996
Ben Widawsky5816d642012-04-11 11:18:19 -07002997 if (to == NULL || !i915_semaphore_is_enabled(obj->base.dev))
Chris Wilson0201f1e2012-07-20 12:41:01 +01002998 return i915_gem_object_wait_rendering(obj, false);
Ben Widawsky2911a352012-04-05 14:47:36 -07002999
3000 idx = intel_ring_sync_index(from, to);
3001
John Harrison97b2a6a2014-11-24 18:49:26 +00003002 seqno = i915_gem_request_get_seqno(obj->last_read_req);
Rodrigo Vividdd4dbc2014-06-30 09:51:11 -07003003 /* Optimization: Avoid semaphore sync when we are sure we already
3004 * waited for an object with higher seqno */
Ben Widawskyebc348b2014-04-29 14:52:28 -07003005 if (seqno <= from->semaphore.sync_seqno[idx])
Ben Widawsky2911a352012-04-05 14:47:36 -07003006 return 0;
3007
John Harrisonb6660d52014-11-24 18:49:30 +00003008 ret = i915_gem_check_olr(obj->last_read_req);
Ben Widawskyb4aca012012-04-25 20:50:12 -07003009 if (ret)
3010 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07003011
Chris Wilsonb52b89d2013-09-25 11:43:28 +01003012 trace_i915_gem_ring_sync_to(from, to, seqno);
Ben Widawskyebc348b2014-04-29 14:52:28 -07003013 ret = to->semaphore.sync_to(to, from, seqno);
Ben Widawskye3a5a222012-04-11 11:18:20 -07003014 if (!ret)
John Harrison97b2a6a2014-11-24 18:49:26 +00003015 /* We use last_read_req because sync_to()
Mika Kuoppala7b01e262012-11-28 17:18:45 +02003016 * might have just caused seqno wrap under
3017 * the radar.
3018 */
John Harrison97b2a6a2014-11-24 18:49:26 +00003019 from->semaphore.sync_seqno[idx] =
3020 i915_gem_request_get_seqno(obj->last_read_req);
Ben Widawsky2911a352012-04-05 14:47:36 -07003021
Ben Widawskye3a5a222012-04-11 11:18:20 -07003022 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07003023}
3024
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01003025static void i915_gem_object_finish_gtt(struct drm_i915_gem_object *obj)
3026{
3027 u32 old_write_domain, old_read_domains;
3028
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01003029 /* Force a pagefault for domain tracking on next user access */
3030 i915_gem_release_mmap(obj);
3031
Keith Packardb97c3d92011-06-24 21:02:59 -07003032 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
3033 return;
3034
Chris Wilson97c809fd2012-10-09 19:24:38 +01003035 /* Wait for any direct GTT access to complete */
3036 mb();
3037
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01003038 old_read_domains = obj->base.read_domains;
3039 old_write_domain = obj->base.write_domain;
3040
3041 obj->base.read_domains &= ~I915_GEM_DOMAIN_GTT;
3042 obj->base.write_domain &= ~I915_GEM_DOMAIN_GTT;
3043
3044 trace_i915_gem_object_change_domain(obj,
3045 old_read_domains,
3046 old_write_domain);
3047}
3048
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003049int i915_vma_unbind(struct i915_vma *vma)
Eric Anholt673a3942008-07-30 12:06:12 -07003050{
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003051 struct drm_i915_gem_object *obj = vma->obj;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003052 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson43e28f02013-01-08 10:53:09 +00003053 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003054
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003055 if (list_empty(&vma->vma_link))
Eric Anholt673a3942008-07-30 12:06:12 -07003056 return 0;
3057
Daniel Vetter0ff501c2013-08-29 19:50:31 +02003058 if (!drm_mm_node_allocated(&vma->node)) {
3059 i915_gem_vma_destroy(vma);
Daniel Vetter0ff501c2013-08-29 19:50:31 +02003060 return 0;
3061 }
Ben Widawsky433544b2013-08-13 18:09:06 -07003062
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08003063 if (vma->pin_count)
Chris Wilson31d8d652012-05-24 19:11:20 +01003064 return -EBUSY;
Eric Anholt673a3942008-07-30 12:06:12 -07003065
Chris Wilsonc4670ad2012-08-20 10:23:27 +01003066 BUG_ON(obj->pages == NULL);
3067
Chris Wilsona8198ee2011-04-13 22:04:09 +01003068 ret = i915_gem_object_finish_gpu(obj);
Chris Wilson1488fc02012-04-24 15:47:31 +01003069 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07003070 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01003071 /* Continue on if we fail due to EIO, the GPU is hung so we
3072 * should be safe and we need to cleanup or else we might
3073 * cause memory corruption through use-after-free.
3074 */
Chris Wilsona8198ee2011-04-13 22:04:09 +01003075
Chris Wilson1d1ef21d2014-09-09 07:02:43 +01003076 /* Throw away the active reference before moving to the unbound list */
3077 i915_gem_object_retire(obj);
3078
Daniel Vetter8b1bc9b2014-02-14 14:06:07 +01003079 if (i915_is_ggtt(vma->vm)) {
3080 i915_gem_object_finish_gtt(obj);
Chris Wilsona8198ee2011-04-13 22:04:09 +01003081
Daniel Vetter8b1bc9b2014-02-14 14:06:07 +01003082 /* release the fence reg _after_ flushing */
3083 ret = i915_gem_object_put_fence(obj);
3084 if (ret)
3085 return ret;
3086 }
Daniel Vetter96b47b62009-12-15 17:50:00 +01003087
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003088 trace_i915_vma_unbind(vma);
Chris Wilsondb53a302011-02-03 11:57:46 +00003089
Ben Widawsky6f65e292013-12-06 14:10:56 -08003090 vma->unbind_vma(vma);
3091
Chris Wilson64bf9302014-02-25 14:23:28 +00003092 list_del_init(&vma->mm_list);
Ben Widawsky5cacaac2013-07-31 17:00:13 -07003093 if (i915_is_ggtt(vma->vm))
Chris Wilsone6a84462014-08-11 12:00:12 +02003094 obj->map_and_fenceable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07003095
Ben Widawsky2f633152013-07-17 12:19:03 -07003096 drm_mm_remove_node(&vma->node);
3097 i915_gem_vma_destroy(vma);
3098
3099 /* Since the unbound list is global, only move to that list if
Daniel Vetterb93dab62013-08-26 11:23:47 +02003100 * no more VMAs exist. */
Armin Reese9490edb2014-07-11 10:20:07 -07003101 if (list_empty(&obj->vma_list)) {
3102 i915_gem_gtt_finish_object(obj);
Ben Widawsky2f633152013-07-17 12:19:03 -07003103 list_move_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Armin Reese9490edb2014-07-11 10:20:07 -07003104 }
Eric Anholt673a3942008-07-30 12:06:12 -07003105
Chris Wilson70903c32013-12-04 09:59:09 +00003106 /* And finally now the object is completely decoupled from this vma,
3107 * we can drop its hold on the backing storage and allow it to be
3108 * reaped by the shrinker.
3109 */
3110 i915_gem_object_unpin_pages(obj);
3111
Chris Wilson88241782011-01-07 17:09:48 +00003112 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00003113}
3114
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07003115int i915_gpu_idle(struct drm_device *dev)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003116{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003117 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003118 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003119 int ret, i;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003120
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003121 /* Flush everything onto the inactive list. */
Chris Wilsonb4519512012-05-11 14:29:30 +01003122 for_each_ring(ring, dev_priv, i) {
Thomas Danielecdb5fd2014-08-20 16:29:24 +01003123 if (!i915.enable_execlists) {
3124 ret = i915_switch_context(ring, ring->default_context);
3125 if (ret)
3126 return ret;
3127 }
Ben Widawskyb6c74882012-08-14 14:35:14 -07003128
Chris Wilson3e960502012-11-27 16:22:54 +00003129 ret = intel_ring_idle(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003130 if (ret)
3131 return ret;
3132 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003133
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01003134 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01003135}
3136
Chris Wilson9ce079e2012-04-17 15:31:30 +01003137static void i965_write_fence_reg(struct drm_device *dev, int reg,
3138 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003139{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003140 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak56c844e2013-01-07 21:47:34 +02003141 int fence_reg;
3142 int fence_pitch_shift;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003143
Imre Deak56c844e2013-01-07 21:47:34 +02003144 if (INTEL_INFO(dev)->gen >= 6) {
3145 fence_reg = FENCE_REG_SANDYBRIDGE_0;
3146 fence_pitch_shift = SANDYBRIDGE_FENCE_PITCH_SHIFT;
3147 } else {
3148 fence_reg = FENCE_REG_965_0;
3149 fence_pitch_shift = I965_FENCE_PITCH_SHIFT;
3150 }
3151
Chris Wilsond18b9612013-07-10 13:36:23 +01003152 fence_reg += reg * 8;
3153
3154 /* To w/a incoherency with non-atomic 64-bit register updates,
3155 * we split the 64-bit update into two 32-bit writes. In order
3156 * for a partial fence not to be evaluated between writes, we
3157 * precede the update with write to turn off the fence register,
3158 * and only enable the fence as the last step.
3159 *
3160 * For extra levels of paranoia, we make sure each step lands
3161 * before applying the next step.
3162 */
3163 I915_WRITE(fence_reg, 0);
3164 POSTING_READ(fence_reg);
3165
Chris Wilson9ce079e2012-04-17 15:31:30 +01003166 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003167 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilsond18b9612013-07-10 13:36:23 +01003168 uint64_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003169
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003170 val = (uint64_t)((i915_gem_obj_ggtt_offset(obj) + size - 4096) &
Chris Wilson9ce079e2012-04-17 15:31:30 +01003171 0xfffff000) << 32;
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003172 val |= i915_gem_obj_ggtt_offset(obj) & 0xfffff000;
Imre Deak56c844e2013-01-07 21:47:34 +02003173 val |= (uint64_t)((obj->stride / 128) - 1) << fence_pitch_shift;
Chris Wilson9ce079e2012-04-17 15:31:30 +01003174 if (obj->tiling_mode == I915_TILING_Y)
3175 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
3176 val |= I965_FENCE_REG_VALID;
Daniel Vetterc6642782010-11-12 13:46:18 +00003177
Chris Wilsond18b9612013-07-10 13:36:23 +01003178 I915_WRITE(fence_reg + 4, val >> 32);
3179 POSTING_READ(fence_reg + 4);
3180
3181 I915_WRITE(fence_reg + 0, val);
3182 POSTING_READ(fence_reg);
3183 } else {
3184 I915_WRITE(fence_reg + 4, 0);
3185 POSTING_READ(fence_reg + 4);
3186 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08003187}
3188
Chris Wilson9ce079e2012-04-17 15:31:30 +01003189static void i915_write_fence_reg(struct drm_device *dev, int reg,
3190 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003191{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003192 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9ce079e2012-04-17 15:31:30 +01003193 u32 val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003194
Chris Wilson9ce079e2012-04-17 15:31:30 +01003195 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003196 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003197 int pitch_val;
3198 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003199
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003200 WARN((i915_gem_obj_ggtt_offset(obj) & ~I915_FENCE_START_MASK) ||
Chris Wilson9ce079e2012-04-17 15:31:30 +01003201 (size & -size) != size ||
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003202 (i915_gem_obj_ggtt_offset(obj) & (size - 1)),
3203 "object 0x%08lx [fenceable? %d] not 1M or pot-size (0x%08x) aligned\n",
3204 i915_gem_obj_ggtt_offset(obj), obj->map_and_fenceable, size);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003205
3206 if (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev))
3207 tile_width = 128;
3208 else
3209 tile_width = 512;
3210
3211 /* Note: pitch better be a power of two tile widths */
3212 pitch_val = obj->stride / tile_width;
3213 pitch_val = ffs(pitch_val) - 1;
3214
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003215 val = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003216 if (obj->tiling_mode == I915_TILING_Y)
3217 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
3218 val |= I915_FENCE_SIZE_BITS(size);
3219 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
3220 val |= I830_FENCE_REG_VALID;
3221 } else
3222 val = 0;
3223
3224 if (reg < 8)
3225 reg = FENCE_REG_830_0 + reg * 4;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003226 else
Chris Wilson9ce079e2012-04-17 15:31:30 +01003227 reg = FENCE_REG_945_8 + (reg - 8) * 4;
Jesse Barnes0f973f22009-01-26 17:10:45 -08003228
Chris Wilson9ce079e2012-04-17 15:31:30 +01003229 I915_WRITE(reg, val);
3230 POSTING_READ(reg);
Jesse Barnesde151cf2008-11-12 10:03:55 -08003231}
3232
Chris Wilson9ce079e2012-04-17 15:31:30 +01003233static void i830_write_fence_reg(struct drm_device *dev, int reg,
3234 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003235{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003236 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003237 uint32_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003238
Chris Wilson9ce079e2012-04-17 15:31:30 +01003239 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003240 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003241 uint32_t pitch_val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003242
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003243 WARN((i915_gem_obj_ggtt_offset(obj) & ~I830_FENCE_START_MASK) ||
Chris Wilson9ce079e2012-04-17 15:31:30 +01003244 (size & -size) != size ||
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003245 (i915_gem_obj_ggtt_offset(obj) & (size - 1)),
3246 "object 0x%08lx not 512K or pot-size 0x%08x aligned\n",
3247 i915_gem_obj_ggtt_offset(obj), size);
Eric Anholte76a16d2009-05-26 17:44:56 -07003248
Chris Wilson9ce079e2012-04-17 15:31:30 +01003249 pitch_val = obj->stride / 128;
3250 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003251
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003252 val = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01003253 if (obj->tiling_mode == I915_TILING_Y)
3254 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
3255 val |= I830_FENCE_SIZE_BITS(size);
3256 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
3257 val |= I830_FENCE_REG_VALID;
3258 } else
3259 val = 0;
Daniel Vetterc6642782010-11-12 13:46:18 +00003260
Chris Wilson9ce079e2012-04-17 15:31:30 +01003261 I915_WRITE(FENCE_REG_830_0 + reg * 4, val);
3262 POSTING_READ(FENCE_REG_830_0 + reg * 4);
3263}
3264
Chris Wilsond0a57782012-10-09 19:24:37 +01003265inline static bool i915_gem_object_needs_mb(struct drm_i915_gem_object *obj)
3266{
3267 return obj && obj->base.read_domains & I915_GEM_DOMAIN_GTT;
3268}
3269
Chris Wilson9ce079e2012-04-17 15:31:30 +01003270static void i915_gem_write_fence(struct drm_device *dev, int reg,
3271 struct drm_i915_gem_object *obj)
3272{
Chris Wilsond0a57782012-10-09 19:24:37 +01003273 struct drm_i915_private *dev_priv = dev->dev_private;
3274
3275 /* Ensure that all CPU reads are completed before installing a fence
3276 * and all writes before removing the fence.
3277 */
3278 if (i915_gem_object_needs_mb(dev_priv->fence_regs[reg].obj))
3279 mb();
3280
Daniel Vetter94a335d2013-07-17 14:51:28 +02003281 WARN(obj && (!obj->stride || !obj->tiling_mode),
3282 "bogus fence setup with stride: 0x%x, tiling mode: %i\n",
3283 obj->stride, obj->tiling_mode);
3284
Chris Wilson9ce079e2012-04-17 15:31:30 +01003285 switch (INTEL_INFO(dev)->gen) {
Damien Lespiau01209dd2013-02-13 15:27:25 +00003286 case 9:
Ben Widawsky5ab31332013-11-02 21:07:03 -07003287 case 8:
Chris Wilson9ce079e2012-04-17 15:31:30 +01003288 case 7:
Imre Deak56c844e2013-01-07 21:47:34 +02003289 case 6:
Chris Wilson9ce079e2012-04-17 15:31:30 +01003290 case 5:
3291 case 4: i965_write_fence_reg(dev, reg, obj); break;
3292 case 3: i915_write_fence_reg(dev, reg, obj); break;
3293 case 2: i830_write_fence_reg(dev, reg, obj); break;
Ben Widawsky7dbf9d62012-12-18 10:31:22 -08003294 default: BUG();
Chris Wilson9ce079e2012-04-17 15:31:30 +01003295 }
Chris Wilsond0a57782012-10-09 19:24:37 +01003296
3297 /* And similarly be paranoid that no direct access to this region
3298 * is reordered to before the fence is installed.
3299 */
3300 if (i915_gem_object_needs_mb(obj))
3301 mb();
Jesse Barnesde151cf2008-11-12 10:03:55 -08003302}
3303
Chris Wilson61050802012-04-17 15:31:31 +01003304static inline int fence_number(struct drm_i915_private *dev_priv,
3305 struct drm_i915_fence_reg *fence)
3306{
3307 return fence - dev_priv->fence_regs;
3308}
3309
3310static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
3311 struct drm_i915_fence_reg *fence,
3312 bool enable)
3313{
Chris Wilson2dc8aae2013-05-22 17:08:06 +01003314 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson46a0b632013-07-10 13:36:24 +01003315 int reg = fence_number(dev_priv, fence);
Chris Wilson61050802012-04-17 15:31:31 +01003316
Chris Wilson46a0b632013-07-10 13:36:24 +01003317 i915_gem_write_fence(obj->base.dev, reg, enable ? obj : NULL);
Chris Wilson61050802012-04-17 15:31:31 +01003318
3319 if (enable) {
Chris Wilson46a0b632013-07-10 13:36:24 +01003320 obj->fence_reg = reg;
Chris Wilson61050802012-04-17 15:31:31 +01003321 fence->obj = obj;
3322 list_move_tail(&fence->lru_list, &dev_priv->mm.fence_list);
3323 } else {
3324 obj->fence_reg = I915_FENCE_REG_NONE;
3325 fence->obj = NULL;
3326 list_del_init(&fence->lru_list);
3327 }
Daniel Vetter94a335d2013-07-17 14:51:28 +02003328 obj->fence_dirty = false;
Chris Wilson61050802012-04-17 15:31:31 +01003329}
3330
Chris Wilsond9e86c02010-11-10 16:40:20 +00003331static int
Chris Wilsond0a57782012-10-09 19:24:37 +01003332i915_gem_object_wait_fence(struct drm_i915_gem_object *obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003333{
John Harrison97b2a6a2014-11-24 18:49:26 +00003334 if (obj->last_fenced_req) {
3335 int ret = i915_wait_seqno(obj->ring,
3336 i915_gem_request_get_seqno(obj->last_fenced_req));
Chris Wilson18991842012-04-17 15:31:29 +01003337 if (ret)
3338 return ret;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003339
John Harrison97b2a6a2014-11-24 18:49:26 +00003340 i915_gem_request_assign(&obj->last_fenced_req, NULL);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003341 }
3342
3343 return 0;
3344}
3345
3346int
3347i915_gem_object_put_fence(struct drm_i915_gem_object *obj)
3348{
Chris Wilson61050802012-04-17 15:31:31 +01003349 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003350 struct drm_i915_fence_reg *fence;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003351 int ret;
3352
Chris Wilsond0a57782012-10-09 19:24:37 +01003353 ret = i915_gem_object_wait_fence(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003354 if (ret)
3355 return ret;
3356
Chris Wilson61050802012-04-17 15:31:31 +01003357 if (obj->fence_reg == I915_FENCE_REG_NONE)
3358 return 0;
Chris Wilson1690e1e2011-12-14 13:57:08 +01003359
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003360 fence = &dev_priv->fence_regs[obj->fence_reg];
3361
Daniel Vetteraff10b302014-02-14 14:06:05 +01003362 if (WARN_ON(fence->pin_count))
3363 return -EBUSY;
3364
Chris Wilson61050802012-04-17 15:31:31 +01003365 i915_gem_object_fence_lost(obj);
Chris Wilsonf9c513e2013-03-26 11:29:27 +00003366 i915_gem_object_update_fence(obj, fence, false);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003367
3368 return 0;
3369}
3370
3371static struct drm_i915_fence_reg *
Chris Wilsona360bb12012-04-17 15:31:25 +01003372i915_find_fence_reg(struct drm_device *dev)
Daniel Vetterae3db242010-02-19 11:51:58 +01003373{
Daniel Vetterae3db242010-02-19 11:51:58 +01003374 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson8fe301a2012-04-17 15:31:28 +01003375 struct drm_i915_fence_reg *reg, *avail;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003376 int i;
Daniel Vetterae3db242010-02-19 11:51:58 +01003377
3378 /* First try to find a free reg */
Chris Wilsond9e86c02010-11-10 16:40:20 +00003379 avail = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01003380 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
3381 reg = &dev_priv->fence_regs[i];
3382 if (!reg->obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003383 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003384
Chris Wilson1690e1e2011-12-14 13:57:08 +01003385 if (!reg->pin_count)
Chris Wilsond9e86c02010-11-10 16:40:20 +00003386 avail = reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003387 }
3388
Chris Wilsond9e86c02010-11-10 16:40:20 +00003389 if (avail == NULL)
Chris Wilson5dce5b932014-01-20 10:17:36 +00003390 goto deadlock;
Daniel Vetterae3db242010-02-19 11:51:58 +01003391
3392 /* None available, try to steal one or wait for a user to finish */
Chris Wilsond9e86c02010-11-10 16:40:20 +00003393 list_for_each_entry(reg, &dev_priv->mm.fence_list, lru_list) {
Chris Wilson1690e1e2011-12-14 13:57:08 +01003394 if (reg->pin_count)
Daniel Vetterae3db242010-02-19 11:51:58 +01003395 continue;
3396
Chris Wilson8fe301a2012-04-17 15:31:28 +01003397 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003398 }
3399
Chris Wilson5dce5b932014-01-20 10:17:36 +00003400deadlock:
3401 /* Wait for completion of pending flips which consume fences */
3402 if (intel_has_pending_fb_unpin(dev))
3403 return ERR_PTR(-EAGAIN);
3404
3405 return ERR_PTR(-EDEADLK);
Daniel Vetterae3db242010-02-19 11:51:58 +01003406}
3407
Jesse Barnesde151cf2008-11-12 10:03:55 -08003408/**
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003409 * i915_gem_object_get_fence - set up fencing for an object
Jesse Barnesde151cf2008-11-12 10:03:55 -08003410 * @obj: object to map through a fence reg
3411 *
3412 * When mapping objects through the GTT, userspace wants to be able to write
3413 * to them without having to worry about swizzling if the object is tiled.
Jesse Barnesde151cf2008-11-12 10:03:55 -08003414 * This function walks the fence regs looking for a free one for @obj,
3415 * stealing one if it can't find any.
3416 *
3417 * It then sets up the reg based on the object's properties: address, pitch
3418 * and tiling format.
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003419 *
3420 * For an untiled surface, this removes any existing fence.
Jesse Barnesde151cf2008-11-12 10:03:55 -08003421 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01003422int
Chris Wilson06d98132012-04-17 15:31:24 +01003423i915_gem_object_get_fence(struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003424{
Chris Wilson05394f32010-11-08 19:18:58 +00003425 struct drm_device *dev = obj->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08003426 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson14415742012-04-17 15:31:33 +01003427 bool enable = obj->tiling_mode != I915_TILING_NONE;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003428 struct drm_i915_fence_reg *reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003429 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003430
Chris Wilson14415742012-04-17 15:31:33 +01003431 /* Have we updated the tiling parameters upon the object and so
3432 * will need to serialise the write to the associated fence register?
3433 */
Chris Wilson5d82e3e2012-04-21 16:23:23 +01003434 if (obj->fence_dirty) {
Chris Wilsond0a57782012-10-09 19:24:37 +01003435 ret = i915_gem_object_wait_fence(obj);
Chris Wilson14415742012-04-17 15:31:33 +01003436 if (ret)
3437 return ret;
3438 }
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003439
Chris Wilsond9e86c02010-11-10 16:40:20 +00003440 /* Just update our place in the LRU if our fence is getting reused. */
Chris Wilson05394f32010-11-08 19:18:58 +00003441 if (obj->fence_reg != I915_FENCE_REG_NONE) {
3442 reg = &dev_priv->fence_regs[obj->fence_reg];
Chris Wilson5d82e3e2012-04-21 16:23:23 +01003443 if (!obj->fence_dirty) {
Chris Wilson14415742012-04-17 15:31:33 +01003444 list_move_tail(&reg->lru_list,
3445 &dev_priv->mm.fence_list);
3446 return 0;
3447 }
3448 } else if (enable) {
Chris Wilsone6a84462014-08-11 12:00:12 +02003449 if (WARN_ON(!obj->map_and_fenceable))
3450 return -EINVAL;
3451
Chris Wilson14415742012-04-17 15:31:33 +01003452 reg = i915_find_fence_reg(dev);
Chris Wilson5dce5b932014-01-20 10:17:36 +00003453 if (IS_ERR(reg))
3454 return PTR_ERR(reg);
Chris Wilsond9e86c02010-11-10 16:40:20 +00003455
Chris Wilson14415742012-04-17 15:31:33 +01003456 if (reg->obj) {
3457 struct drm_i915_gem_object *old = reg->obj;
3458
Chris Wilsond0a57782012-10-09 19:24:37 +01003459 ret = i915_gem_object_wait_fence(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00003460 if (ret)
3461 return ret;
3462
Chris Wilson14415742012-04-17 15:31:33 +01003463 i915_gem_object_fence_lost(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00003464 }
Chris Wilson14415742012-04-17 15:31:33 +01003465 } else
Eric Anholta09ba7f2009-08-29 12:49:51 -07003466 return 0;
Eric Anholta09ba7f2009-08-29 12:49:51 -07003467
Chris Wilson14415742012-04-17 15:31:33 +01003468 i915_gem_object_update_fence(obj, reg, enable);
Chris Wilson14415742012-04-17 15:31:33 +01003469
Chris Wilson9ce079e2012-04-17 15:31:30 +01003470 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003471}
3472
Chris Wilson4144f9b2014-09-11 08:43:48 +01003473static bool i915_gem_valid_gtt_space(struct i915_vma *vma,
Chris Wilson42d6ab42012-07-26 11:49:32 +01003474 unsigned long cache_level)
3475{
Chris Wilson4144f9b2014-09-11 08:43:48 +01003476 struct drm_mm_node *gtt_space = &vma->node;
Chris Wilson42d6ab42012-07-26 11:49:32 +01003477 struct drm_mm_node *other;
3478
Chris Wilson4144f9b2014-09-11 08:43:48 +01003479 /*
3480 * On some machines we have to be careful when putting differing types
3481 * of snoopable memory together to avoid the prefetcher crossing memory
3482 * domains and dying. During vm initialisation, we decide whether or not
3483 * these constraints apply and set the drm_mm.color_adjust
3484 * appropriately.
Chris Wilson42d6ab42012-07-26 11:49:32 +01003485 */
Chris Wilson4144f9b2014-09-11 08:43:48 +01003486 if (vma->vm->mm.color_adjust == NULL)
Chris Wilson42d6ab42012-07-26 11:49:32 +01003487 return true;
3488
Ben Widawskyc6cfb322013-07-05 14:41:06 -07003489 if (!drm_mm_node_allocated(gtt_space))
Chris Wilson42d6ab42012-07-26 11:49:32 +01003490 return true;
3491
3492 if (list_empty(&gtt_space->node_list))
3493 return true;
3494
3495 other = list_entry(gtt_space->node_list.prev, struct drm_mm_node, node_list);
3496 if (other->allocated && !other->hole_follows && other->color != cache_level)
3497 return false;
3498
3499 other = list_entry(gtt_space->node_list.next, struct drm_mm_node, node_list);
3500 if (other->allocated && !gtt_space->hole_follows && other->color != cache_level)
3501 return false;
3502
3503 return true;
3504}
3505
Jesse Barnesde151cf2008-11-12 10:03:55 -08003506/**
Eric Anholt673a3942008-07-30 12:06:12 -07003507 * Finds free space in the GTT aperture and binds the object there.
3508 */
Daniel Vetter262de142014-02-14 14:01:20 +01003509static struct i915_vma *
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003510i915_gem_object_bind_to_vm(struct drm_i915_gem_object *obj,
3511 struct i915_address_space *vm,
3512 unsigned alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02003513 uint64_t flags)
Eric Anholt673a3942008-07-30 12:06:12 -07003514{
Chris Wilson05394f32010-11-08 19:18:58 +00003515 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003516 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter5e783302010-11-14 22:32:36 +01003517 u32 size, fence_size, fence_alignment, unfenced_alignment;
Chris Wilsond23db882014-05-23 08:48:08 +02003518 unsigned long start =
3519 flags & PIN_OFFSET_BIAS ? flags & PIN_OFFSET_MASK : 0;
3520 unsigned long end =
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003521 flags & PIN_MAPPABLE ? dev_priv->gtt.mappable_end : vm->total;
Ben Widawsky2f633152013-07-17 12:19:03 -07003522 struct i915_vma *vma;
Chris Wilson07f73f62009-09-14 16:50:30 +01003523 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003524
Chris Wilsone28f8712011-07-18 13:11:49 -07003525 fence_size = i915_gem_get_gtt_size(dev,
3526 obj->base.size,
3527 obj->tiling_mode);
3528 fence_alignment = i915_gem_get_gtt_alignment(dev,
3529 obj->base.size,
Imre Deakd8651102013-01-07 21:47:33 +02003530 obj->tiling_mode, true);
Chris Wilsone28f8712011-07-18 13:11:49 -07003531 unfenced_alignment =
Imre Deakd8651102013-01-07 21:47:33 +02003532 i915_gem_get_gtt_alignment(dev,
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003533 obj->base.size,
3534 obj->tiling_mode, false);
Chris Wilsona00b10c2010-09-24 21:15:47 +01003535
Eric Anholt673a3942008-07-30 12:06:12 -07003536 if (alignment == 0)
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003537 alignment = flags & PIN_MAPPABLE ? fence_alignment :
Daniel Vetter5e783302010-11-14 22:32:36 +01003538 unfenced_alignment;
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003539 if (flags & PIN_MAPPABLE && alignment & (fence_alignment - 1)) {
Chris Wilsonbd9b6a42014-02-10 09:03:50 +00003540 DRM_DEBUG("Invalid object alignment requested %u\n", alignment);
Daniel Vetter262de142014-02-14 14:01:20 +01003541 return ERR_PTR(-EINVAL);
Eric Anholt673a3942008-07-30 12:06:12 -07003542 }
3543
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003544 size = flags & PIN_MAPPABLE ? fence_size : obj->base.size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01003545
Chris Wilson654fc602010-05-27 13:18:21 +01003546 /* If the object is bigger than the entire aperture, reject it early
3547 * before evicting everything in a vain attempt to find space.
3548 */
Chris Wilsond23db882014-05-23 08:48:08 +02003549 if (obj->base.size > end) {
3550 DRM_DEBUG("Attempting to bind an object larger than the aperture: object=%zd > %s aperture=%lu\n",
Chris Wilsona36689c2013-05-21 16:58:49 +01003551 obj->base.size,
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003552 flags & PIN_MAPPABLE ? "mappable" : "total",
Chris Wilsond23db882014-05-23 08:48:08 +02003553 end);
Daniel Vetter262de142014-02-14 14:01:20 +01003554 return ERR_PTR(-E2BIG);
Chris Wilson654fc602010-05-27 13:18:21 +01003555 }
3556
Chris Wilson37e680a2012-06-07 15:38:42 +01003557 ret = i915_gem_object_get_pages(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02003558 if (ret)
Daniel Vetter262de142014-02-14 14:01:20 +01003559 return ERR_PTR(ret);
Chris Wilson6c085a72012-08-20 11:40:46 +02003560
Chris Wilsonfbdda6f2012-11-20 10:45:16 +00003561 i915_gem_object_pin_pages(obj);
3562
Ben Widawskyaccfef22013-08-14 11:38:35 +02003563 vma = i915_gem_obj_lookup_or_create_vma(obj, vm);
Daniel Vetter262de142014-02-14 14:01:20 +01003564 if (IS_ERR(vma))
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003565 goto err_unpin;
Ben Widawsky2f633152013-07-17 12:19:03 -07003566
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003567search_free:
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003568 ret = drm_mm_insert_node_in_range_generic(&vm->mm, &vma->node,
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003569 size, alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02003570 obj->cache_level,
3571 start, end,
Lauri Kasanen62347f92014-04-02 20:03:57 +03003572 DRM_MM_SEARCH_DEFAULT,
3573 DRM_MM_CREATE_DEFAULT);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003574 if (ret) {
Ben Widawskyf6cd1f12013-07-31 17:00:11 -07003575 ret = i915_gem_evict_something(dev, vm, size, alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02003576 obj->cache_level,
3577 start, end,
3578 flags);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003579 if (ret == 0)
3580 goto search_free;
Chris Wilson97311292009-09-21 00:22:34 +01003581
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003582 goto err_free_vma;
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003583 }
Chris Wilson4144f9b2014-09-11 08:43:48 +01003584 if (WARN_ON(!i915_gem_valid_gtt_space(vma, obj->cache_level))) {
Ben Widawsky2f633152013-07-17 12:19:03 -07003585 ret = -EINVAL;
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003586 goto err_remove_node;
Eric Anholt673a3942008-07-30 12:06:12 -07003587 }
3588
Daniel Vetter74163902012-02-15 23:50:21 +01003589 ret = i915_gem_gtt_prepare_object(obj);
Ben Widawsky2f633152013-07-17 12:19:03 -07003590 if (ret)
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003591 goto err_remove_node;
Eric Anholt673a3942008-07-30 12:06:12 -07003592
Ben Widawsky35c20a62013-05-31 11:28:48 -07003593 list_move_tail(&obj->global_list, &dev_priv->mm.bound_list);
Ben Widawskyca191b12013-07-31 17:00:14 -07003594 list_add_tail(&vma->mm_list, &vm->inactive_list);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01003595
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003596 trace_i915_vma_bind(vma, flags);
Daniel Vetter8ea99c92014-02-14 14:01:21 +01003597 vma->bind_vma(vma, obj->cache_level,
Chris Wilsonc826c442014-10-31 13:53:53 +00003598 flags & PIN_GLOBAL ? GLOBAL_BIND : 0);
Daniel Vetter8ea99c92014-02-14 14:01:21 +01003599
Daniel Vetter262de142014-02-14 14:01:20 +01003600 return vma;
Ben Widawsky2f633152013-07-17 12:19:03 -07003601
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003602err_remove_node:
Dan Carpenter6286ef92013-07-19 08:46:27 +03003603 drm_mm_remove_node(&vma->node);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003604err_free_vma:
Ben Widawsky2f633152013-07-17 12:19:03 -07003605 i915_gem_vma_destroy(vma);
Daniel Vetter262de142014-02-14 14:01:20 +01003606 vma = ERR_PTR(ret);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003607err_unpin:
Ben Widawsky2f633152013-07-17 12:19:03 -07003608 i915_gem_object_unpin_pages(obj);
Daniel Vetter262de142014-02-14 14:01:20 +01003609 return vma;
Eric Anholt673a3942008-07-30 12:06:12 -07003610}
3611
Chris Wilson000433b2013-08-08 14:41:09 +01003612bool
Chris Wilson2c225692013-08-09 12:26:45 +01003613i915_gem_clflush_object(struct drm_i915_gem_object *obj,
3614 bool force)
Eric Anholt673a3942008-07-30 12:06:12 -07003615{
Eric Anholt673a3942008-07-30 12:06:12 -07003616 /* If we don't have a page list set up, then we're not pinned
3617 * to GPU, and we can ignore the cache flush because it'll happen
3618 * again at bind time.
3619 */
Chris Wilson05394f32010-11-08 19:18:58 +00003620 if (obj->pages == NULL)
Chris Wilson000433b2013-08-08 14:41:09 +01003621 return false;
Eric Anholt673a3942008-07-30 12:06:12 -07003622
Imre Deak769ce462013-02-13 21:56:05 +02003623 /*
3624 * Stolen memory is always coherent with the GPU as it is explicitly
3625 * marked as wc by the system, or the system is cache-coherent.
3626 */
Chris Wilson6a2c4232014-11-04 04:51:40 -08003627 if (obj->stolen || obj->phys_handle)
Chris Wilson000433b2013-08-08 14:41:09 +01003628 return false;
Imre Deak769ce462013-02-13 21:56:05 +02003629
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003630 /* If the GPU is snooping the contents of the CPU cache,
3631 * we do not need to manually clear the CPU cache lines. However,
3632 * the caches are only snooped when the render cache is
3633 * flushed/invalidated. As we always have to emit invalidations
3634 * and flushes when moving into and out of the RENDER domain, correct
3635 * snooping behaviour occurs naturally as the result of our domain
3636 * tracking.
3637 */
Chris Wilson2c225692013-08-09 12:26:45 +01003638 if (!force && cpu_cache_is_coherent(obj->base.dev, obj->cache_level))
Chris Wilson000433b2013-08-08 14:41:09 +01003639 return false;
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003640
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003641 trace_i915_gem_object_clflush(obj);
Chris Wilson9da3da62012-06-01 15:20:22 +01003642 drm_clflush_sg(obj->pages);
Chris Wilson000433b2013-08-08 14:41:09 +01003643
3644 return true;
Eric Anholte47c68e2008-11-14 13:35:19 -08003645}
3646
3647/** Flushes the GTT write domain for the object if it's dirty. */
3648static void
Chris Wilson05394f32010-11-08 19:18:58 +00003649i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003650{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003651 uint32_t old_write_domain;
3652
Chris Wilson05394f32010-11-08 19:18:58 +00003653 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08003654 return;
3655
Chris Wilson63256ec2011-01-04 18:42:07 +00003656 /* No actual flushing is required for the GTT write domain. Writes
Eric Anholte47c68e2008-11-14 13:35:19 -08003657 * to it immediately go to main memory as far as we know, so there's
3658 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00003659 *
3660 * However, we do have to enforce the order so that all writes through
3661 * the GTT land before any writes to the device, such as updates to
3662 * the GATT itself.
Eric Anholte47c68e2008-11-14 13:35:19 -08003663 */
Chris Wilson63256ec2011-01-04 18:42:07 +00003664 wmb();
3665
Chris Wilson05394f32010-11-08 19:18:58 +00003666 old_write_domain = obj->base.write_domain;
3667 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003668
Daniel Vetterf99d7062014-06-19 16:01:59 +02003669 intel_fb_obj_flush(obj, false);
3670
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003671 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003672 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003673 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003674}
3675
3676/** Flushes the CPU write domain for the object if it's dirty. */
3677static void
Chris Wilson2c225692013-08-09 12:26:45 +01003678i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj,
3679 bool force)
Eric Anholte47c68e2008-11-14 13:35:19 -08003680{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003681 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08003682
Chris Wilson05394f32010-11-08 19:18:58 +00003683 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08003684 return;
3685
Chris Wilson000433b2013-08-08 14:41:09 +01003686 if (i915_gem_clflush_object(obj, force))
3687 i915_gem_chipset_flush(obj->base.dev);
3688
Chris Wilson05394f32010-11-08 19:18:58 +00003689 old_write_domain = obj->base.write_domain;
3690 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003691
Daniel Vetterf99d7062014-06-19 16:01:59 +02003692 intel_fb_obj_flush(obj, false);
3693
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003694 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003695 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003696 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003697}
3698
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003699/**
3700 * Moves a single object to the GTT read, and possibly write domain.
3701 *
3702 * This function returns when the move is complete, including waiting on
3703 * flushes to occur.
3704 */
Jesse Barnes79e53942008-11-07 14:24:08 -08003705int
Chris Wilson20217462010-11-23 15:26:33 +00003706i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003707{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03003708 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilsondc8cd1e2014-08-09 17:37:22 +01003709 struct i915_vma *vma = i915_gem_obj_to_ggtt(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003710 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003711 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003712
Eric Anholt02354392008-11-26 13:58:13 -08003713 /* Not valid to be called on unbound objects. */
Chris Wilsondc8cd1e2014-08-09 17:37:22 +01003714 if (vma == NULL)
Eric Anholt02354392008-11-26 13:58:13 -08003715 return -EINVAL;
3716
Chris Wilson8d7e3de2011-02-07 15:23:02 +00003717 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
3718 return 0;
3719
Chris Wilson0201f1e2012-07-20 12:41:01 +01003720 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00003721 if (ret)
3722 return ret;
3723
Chris Wilsonc8725f32014-03-17 12:21:55 +00003724 i915_gem_object_retire(obj);
Chris Wilson2c225692013-08-09 12:26:45 +01003725 i915_gem_object_flush_cpu_write_domain(obj, false);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003726
Chris Wilsond0a57782012-10-09 19:24:37 +01003727 /* Serialise direct access to this object with the barriers for
3728 * coherent writes from the GPU, by effectively invalidating the
3729 * GTT domain upon first access.
3730 */
3731 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
3732 mb();
3733
Chris Wilson05394f32010-11-08 19:18:58 +00003734 old_write_domain = obj->base.write_domain;
3735 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003736
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003737 /* It should now be out of any other write domains, and we can update
3738 * the domain values for our changes.
3739 */
Chris Wilson05394f32010-11-08 19:18:58 +00003740 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
3741 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08003742 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003743 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
3744 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
3745 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08003746 }
3747
Daniel Vetterf99d7062014-06-19 16:01:59 +02003748 if (write)
3749 intel_fb_obj_invalidate(obj, NULL);
3750
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003751 trace_i915_gem_object_change_domain(obj,
3752 old_read_domains,
3753 old_write_domain);
3754
Chris Wilson8325a092012-04-24 15:52:35 +01003755 /* And bump the LRU for this access */
Chris Wilsondc8cd1e2014-08-09 17:37:22 +01003756 if (i915_gem_object_is_inactive(obj))
3757 list_move_tail(&vma->mm_list,
3758 &dev_priv->gtt.base.inactive_list);
Chris Wilson8325a092012-04-24 15:52:35 +01003759
Eric Anholte47c68e2008-11-14 13:35:19 -08003760 return 0;
3761}
3762
Chris Wilsone4ffd172011-04-04 09:44:39 +01003763int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
3764 enum i915_cache_level cache_level)
3765{
Daniel Vetter7bddb012012-02-09 17:15:47 +01003766 struct drm_device *dev = obj->base.dev;
Chris Wilsondf6f7832014-03-21 07:40:56 +00003767 struct i915_vma *vma, *next;
Chris Wilsone4ffd172011-04-04 09:44:39 +01003768 int ret;
3769
3770 if (obj->cache_level == cache_level)
3771 return 0;
3772
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08003773 if (i915_gem_obj_is_pinned(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003774 DRM_DEBUG("can not change the cache level of pinned objects\n");
3775 return -EBUSY;
3776 }
3777
Chris Wilsondf6f7832014-03-21 07:40:56 +00003778 list_for_each_entry_safe(vma, next, &obj->vma_list, vma_link) {
Chris Wilson4144f9b2014-09-11 08:43:48 +01003779 if (!i915_gem_valid_gtt_space(vma, cache_level)) {
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003780 ret = i915_vma_unbind(vma);
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003781 if (ret)
3782 return ret;
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003783 }
Chris Wilson42d6ab42012-07-26 11:49:32 +01003784 }
3785
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003786 if (i915_gem_obj_bound_any(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003787 ret = i915_gem_object_finish_gpu(obj);
3788 if (ret)
3789 return ret;
3790
3791 i915_gem_object_finish_gtt(obj);
3792
3793 /* Before SandyBridge, you could not use tiling or fence
3794 * registers with snooped memory, so relinquish any fences
3795 * currently pointing to our region in the aperture.
3796 */
Chris Wilson42d6ab42012-07-26 11:49:32 +01003797 if (INTEL_INFO(dev)->gen < 6) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003798 ret = i915_gem_object_put_fence(obj);
3799 if (ret)
3800 return ret;
3801 }
3802
Ben Widawsky6f65e292013-12-06 14:10:56 -08003803 list_for_each_entry(vma, &obj->vma_list, vma_link)
Daniel Vetter8ea99c92014-02-14 14:01:21 +01003804 if (drm_mm_node_allocated(&vma->node))
3805 vma->bind_vma(vma, cache_level,
Tvrtko Ursulinaff43762014-10-24 12:42:33 +01003806 vma->bound & GLOBAL_BIND);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003807 }
3808
Chris Wilson2c225692013-08-09 12:26:45 +01003809 list_for_each_entry(vma, &obj->vma_list, vma_link)
3810 vma->node.color = cache_level;
3811 obj->cache_level = cache_level;
3812
3813 if (cpu_write_needs_clflush(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003814 u32 old_read_domains, old_write_domain;
3815
3816 /* If we're coming from LLC cached, then we haven't
3817 * actually been tracking whether the data is in the
3818 * CPU cache or not, since we only allow one bit set
3819 * in obj->write_domain and have been skipping the clflushes.
3820 * Just set it to the CPU cache for now.
3821 */
Chris Wilsonc8725f32014-03-17 12:21:55 +00003822 i915_gem_object_retire(obj);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003823 WARN_ON(obj->base.write_domain & ~I915_GEM_DOMAIN_CPU);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003824
3825 old_read_domains = obj->base.read_domains;
3826 old_write_domain = obj->base.write_domain;
3827
3828 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3829 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3830
3831 trace_i915_gem_object_change_domain(obj,
3832 old_read_domains,
3833 old_write_domain);
3834 }
3835
Chris Wilsone4ffd172011-04-04 09:44:39 +01003836 return 0;
3837}
3838
Ben Widawsky199adf42012-09-21 17:01:20 -07003839int i915_gem_get_caching_ioctl(struct drm_device *dev, void *data,
3840 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003841{
Ben Widawsky199adf42012-09-21 17:01:20 -07003842 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003843 struct drm_i915_gem_object *obj;
3844 int ret;
3845
3846 ret = i915_mutex_lock_interruptible(dev);
3847 if (ret)
3848 return ret;
3849
3850 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3851 if (&obj->base == NULL) {
3852 ret = -ENOENT;
3853 goto unlock;
3854 }
3855
Chris Wilson651d7942013-08-08 14:41:10 +01003856 switch (obj->cache_level) {
3857 case I915_CACHE_LLC:
3858 case I915_CACHE_L3_LLC:
3859 args->caching = I915_CACHING_CACHED;
3860 break;
3861
Chris Wilson4257d3b2013-08-08 14:41:11 +01003862 case I915_CACHE_WT:
3863 args->caching = I915_CACHING_DISPLAY;
3864 break;
3865
Chris Wilson651d7942013-08-08 14:41:10 +01003866 default:
3867 args->caching = I915_CACHING_NONE;
3868 break;
3869 }
Chris Wilsone6994ae2012-07-10 10:27:08 +01003870
3871 drm_gem_object_unreference(&obj->base);
3872unlock:
3873 mutex_unlock(&dev->struct_mutex);
3874 return ret;
3875}
3876
Ben Widawsky199adf42012-09-21 17:01:20 -07003877int i915_gem_set_caching_ioctl(struct drm_device *dev, void *data,
3878 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003879{
Ben Widawsky199adf42012-09-21 17:01:20 -07003880 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003881 struct drm_i915_gem_object *obj;
3882 enum i915_cache_level level;
3883 int ret;
3884
Ben Widawsky199adf42012-09-21 17:01:20 -07003885 switch (args->caching) {
3886 case I915_CACHING_NONE:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003887 level = I915_CACHE_NONE;
3888 break;
Ben Widawsky199adf42012-09-21 17:01:20 -07003889 case I915_CACHING_CACHED:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003890 level = I915_CACHE_LLC;
3891 break;
Chris Wilson4257d3b2013-08-08 14:41:11 +01003892 case I915_CACHING_DISPLAY:
3893 level = HAS_WT(dev) ? I915_CACHE_WT : I915_CACHE_NONE;
3894 break;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003895 default:
3896 return -EINVAL;
3897 }
3898
Ben Widawsky3bc29132012-09-26 16:15:20 -07003899 ret = i915_mutex_lock_interruptible(dev);
3900 if (ret)
3901 return ret;
3902
Chris Wilsone6994ae2012-07-10 10:27:08 +01003903 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3904 if (&obj->base == NULL) {
3905 ret = -ENOENT;
3906 goto unlock;
3907 }
3908
3909 ret = i915_gem_object_set_cache_level(obj, level);
3910
3911 drm_gem_object_unreference(&obj->base);
3912unlock:
3913 mutex_unlock(&dev->struct_mutex);
3914 return ret;
3915}
3916
Chris Wilsoncc98b412013-08-09 12:25:09 +01003917static bool is_pin_display(struct drm_i915_gem_object *obj)
3918{
Oscar Mateo19656432014-05-16 14:20:43 +01003919 struct i915_vma *vma;
3920
Oscar Mateo19656432014-05-16 14:20:43 +01003921 vma = i915_gem_obj_to_ggtt(obj);
3922 if (!vma)
3923 return false;
3924
Daniel Vetter4feb7652014-11-24 11:21:52 +01003925 /* There are 2 sources that pin objects:
Chris Wilsoncc98b412013-08-09 12:25:09 +01003926 * 1. The display engine (scanouts, sprites, cursors);
3927 * 2. Reservations for execbuffer;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003928 *
3929 * We can ignore reservations as we hold the struct_mutex and
Daniel Vetter4feb7652014-11-24 11:21:52 +01003930 * are only called outside of the reservation path.
Chris Wilsoncc98b412013-08-09 12:25:09 +01003931 */
Daniel Vetter4feb7652014-11-24 11:21:52 +01003932 return vma->pin_count;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003933}
3934
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003935/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003936 * Prepare buffer for display plane (scanout, cursors, etc).
3937 * Can be called from an uninterruptible phase (modesetting) and allows
3938 * any flushes to be pipelined (for pageflips).
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003939 */
3940int
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003941i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
3942 u32 alignment,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003943 struct intel_engine_cs *pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003944{
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003945 u32 old_read_domains, old_write_domain;
Oscar Mateo19656432014-05-16 14:20:43 +01003946 bool was_pin_display;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003947 int ret;
3948
Chris Wilson0be73282010-12-06 14:36:27 +00003949 if (pipelined != obj->ring) {
Ben Widawsky2911a352012-04-05 14:47:36 -07003950 ret = i915_gem_object_sync(obj, pipelined);
3951 if (ret)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003952 return ret;
3953 }
3954
Chris Wilsoncc98b412013-08-09 12:25:09 +01003955 /* Mark the pin_display early so that we account for the
3956 * display coherency whilst setting up the cache domains.
3957 */
Oscar Mateo19656432014-05-16 14:20:43 +01003958 was_pin_display = obj->pin_display;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003959 obj->pin_display = true;
3960
Eric Anholta7ef0642011-03-29 16:59:54 -07003961 /* The display engine is not coherent with the LLC cache on gen6. As
3962 * a result, we make sure that the pinning that is about to occur is
3963 * done with uncached PTEs. This is lowest common denominator for all
3964 * chipsets.
3965 *
3966 * However for gen6+, we could do better by using the GFDT bit instead
3967 * of uncaching, which would allow us to flush all the LLC-cached data
3968 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
3969 */
Chris Wilson651d7942013-08-08 14:41:10 +01003970 ret = i915_gem_object_set_cache_level(obj,
3971 HAS_WT(obj->base.dev) ? I915_CACHE_WT : I915_CACHE_NONE);
Eric Anholta7ef0642011-03-29 16:59:54 -07003972 if (ret)
Chris Wilsoncc98b412013-08-09 12:25:09 +01003973 goto err_unpin_display;
Eric Anholta7ef0642011-03-29 16:59:54 -07003974
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003975 /* As the user may map the buffer once pinned in the display plane
3976 * (e.g. libkms for the bootup splash), we have to ensure that we
3977 * always use map_and_fenceable for all scanout buffers.
3978 */
Daniel Vetter1ec9e262014-02-14 14:01:11 +01003979 ret = i915_gem_obj_ggtt_pin(obj, alignment, PIN_MAPPABLE);
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003980 if (ret)
Chris Wilsoncc98b412013-08-09 12:25:09 +01003981 goto err_unpin_display;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003982
Chris Wilson2c225692013-08-09 12:26:45 +01003983 i915_gem_object_flush_cpu_write_domain(obj, true);
Chris Wilsonb118c1e2010-05-27 13:18:14 +01003984
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003985 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00003986 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003987
3988 /* It should now be out of any other write domains, and we can update
3989 * the domain values for our changes.
3990 */
Chris Wilsone5f1d962012-07-20 12:41:00 +01003991 obj->base.write_domain = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00003992 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003993
3994 trace_i915_gem_object_change_domain(obj,
3995 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003996 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003997
3998 return 0;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003999
4000err_unpin_display:
Oscar Mateo19656432014-05-16 14:20:43 +01004001 WARN_ON(was_pin_display != is_pin_display(obj));
4002 obj->pin_display = was_pin_display;
Chris Wilsoncc98b412013-08-09 12:25:09 +01004003 return ret;
4004}
4005
4006void
4007i915_gem_object_unpin_from_display_plane(struct drm_i915_gem_object *obj)
4008{
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004009 i915_gem_object_ggtt_unpin(obj);
Chris Wilsoncc98b412013-08-09 12:25:09 +01004010 obj->pin_display = is_pin_display(obj);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08004011}
4012
Chris Wilson85345512010-11-13 09:49:11 +00004013int
Chris Wilsona8198ee2011-04-13 22:04:09 +01004014i915_gem_object_finish_gpu(struct drm_i915_gem_object *obj)
Chris Wilson85345512010-11-13 09:49:11 +00004015{
Chris Wilson88241782011-01-07 17:09:48 +00004016 int ret;
4017
Chris Wilsona8198ee2011-04-13 22:04:09 +01004018 if ((obj->base.read_domains & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson85345512010-11-13 09:49:11 +00004019 return 0;
4020
Chris Wilson0201f1e2012-07-20 12:41:01 +01004021 ret = i915_gem_object_wait_rendering(obj, false);
Chris Wilsonc501ae72011-12-14 13:57:23 +01004022 if (ret)
4023 return ret;
4024
Chris Wilsona8198ee2011-04-13 22:04:09 +01004025 /* Ensure that we invalidate the GPU's caches and TLBs. */
4026 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilsonc501ae72011-12-14 13:57:23 +01004027 return 0;
Chris Wilson85345512010-11-13 09:49:11 +00004028}
4029
Eric Anholte47c68e2008-11-14 13:35:19 -08004030/**
4031 * Moves a single object to the CPU read, and possibly write domain.
4032 *
4033 * This function returns when the move is complete, including waiting on
4034 * flushes to occur.
4035 */
Chris Wilsondabdfe02012-03-26 10:10:27 +02004036int
Chris Wilson919926a2010-11-12 13:42:53 +00004037i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08004038{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004039 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08004040 int ret;
4041
Chris Wilson8d7e3de2011-02-07 15:23:02 +00004042 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
4043 return 0;
4044
Chris Wilson0201f1e2012-07-20 12:41:01 +01004045 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00004046 if (ret)
4047 return ret;
4048
Chris Wilsonc8725f32014-03-17 12:21:55 +00004049 i915_gem_object_retire(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08004050 i915_gem_object_flush_gtt_write_domain(obj);
4051
Chris Wilson05394f32010-11-08 19:18:58 +00004052 old_write_domain = obj->base.write_domain;
4053 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004054
Eric Anholte47c68e2008-11-14 13:35:19 -08004055 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00004056 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Chris Wilson2c225692013-08-09 12:26:45 +01004057 i915_gem_clflush_object(obj, false);
Eric Anholte47c68e2008-11-14 13:35:19 -08004058
Chris Wilson05394f32010-11-08 19:18:58 +00004059 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08004060 }
4061
4062 /* It should now be out of any other write domains, and we can update
4063 * the domain values for our changes.
4064 */
Chris Wilson05394f32010-11-08 19:18:58 +00004065 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08004066
4067 /* If we're writing through the CPU, then the GPU read domains will
4068 * need to be invalidated at next use.
4069 */
4070 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00004071 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4072 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08004073 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08004074
Daniel Vetterf99d7062014-06-19 16:01:59 +02004075 if (write)
4076 intel_fb_obj_invalidate(obj, NULL);
4077
Chris Wilson1c5d22f2009-08-25 11:15:50 +01004078 trace_i915_gem_object_change_domain(obj,
4079 old_read_domains,
4080 old_write_domain);
4081
Eric Anholt2ef7eea2008-11-10 10:53:25 -08004082 return 0;
4083}
4084
Eric Anholt673a3942008-07-30 12:06:12 -07004085/* Throttle our rendering by waiting until the ring has completed our requests
4086 * emitted over 20 msec ago.
4087 *
Eric Anholtb9624422009-06-03 07:27:35 +00004088 * Note that if we were to use the current jiffies each time around the loop,
4089 * we wouldn't escape the function with any frames outstanding if the time to
4090 * render a frame was over 20ms.
4091 *
Eric Anholt673a3942008-07-30 12:06:12 -07004092 * This should get us reasonable parallelism between CPU and GPU but also
4093 * relatively low latency when blocking on a particular request to finish.
4094 */
4095static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004096i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004097{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004098 struct drm_i915_private *dev_priv = dev->dev_private;
4099 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00004100 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
John Harrison54fb2412014-11-24 18:49:27 +00004101 struct drm_i915_gem_request *request, *target = NULL;
Daniel Vetterf69061b2012-12-06 09:01:42 +01004102 unsigned reset_counter;
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004103 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004104
Daniel Vetter308887a2012-11-14 17:14:06 +01004105 ret = i915_gem_wait_for_error(&dev_priv->gpu_error);
4106 if (ret)
4107 return ret;
4108
4109 ret = i915_gem_check_wedge(&dev_priv->gpu_error, false);
4110 if (ret)
4111 return ret;
Chris Wilsone110e8d2011-01-26 15:39:14 +00004112
Chris Wilson1c255952010-09-26 11:03:27 +01004113 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004114 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00004115 if (time_after_eq(request->emitted_jiffies, recent_enough))
4116 break;
4117
John Harrison54fb2412014-11-24 18:49:27 +00004118 target = request;
Eric Anholtb9624422009-06-03 07:27:35 +00004119 }
Daniel Vetterf69061b2012-12-06 09:01:42 +01004120 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
John Harrisonff865882014-11-24 18:49:28 +00004121 if (target)
4122 i915_gem_request_reference(target);
Chris Wilson1c255952010-09-26 11:03:27 +01004123 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004124
John Harrison54fb2412014-11-24 18:49:27 +00004125 if (target == NULL)
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004126 return 0;
4127
John Harrison54fb2412014-11-24 18:49:27 +00004128 ret = __i915_wait_seqno(i915_gem_request_get_ring(target),
4129 i915_gem_request_get_seqno(target),
4130 reset_counter, true, NULL, NULL);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004131 if (ret == 0)
4132 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00004133
John Harrisonff865882014-11-24 18:49:28 +00004134 mutex_lock(&dev->struct_mutex);
4135 i915_gem_request_unreference(target);
4136 mutex_unlock(&dev->struct_mutex);
4137
Eric Anholt673a3942008-07-30 12:06:12 -07004138 return ret;
4139}
4140
Chris Wilsond23db882014-05-23 08:48:08 +02004141static bool
4142i915_vma_misplaced(struct i915_vma *vma, uint32_t alignment, uint64_t flags)
4143{
4144 struct drm_i915_gem_object *obj = vma->obj;
4145
4146 if (alignment &&
4147 vma->node.start & (alignment - 1))
4148 return true;
4149
4150 if (flags & PIN_MAPPABLE && !obj->map_and_fenceable)
4151 return true;
4152
4153 if (flags & PIN_OFFSET_BIAS &&
4154 vma->node.start < (flags & PIN_OFFSET_MASK))
4155 return true;
4156
4157 return false;
4158}
4159
Eric Anholt673a3942008-07-30 12:06:12 -07004160int
Chris Wilson05394f32010-11-08 19:18:58 +00004161i915_gem_object_pin(struct drm_i915_gem_object *obj,
Ben Widawskyc37e2202013-07-31 16:59:58 -07004162 struct i915_address_space *vm,
Chris Wilson05394f32010-11-08 19:18:58 +00004163 uint32_t alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02004164 uint64_t flags)
Eric Anholt673a3942008-07-30 12:06:12 -07004165{
Ben Widawsky6e7186a2014-05-06 22:21:36 -07004166 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004167 struct i915_vma *vma;
Chris Wilsonef79e172014-10-31 13:53:52 +00004168 unsigned bound;
Eric Anholt673a3942008-07-30 12:06:12 -07004169 int ret;
4170
Ben Widawsky6e7186a2014-05-06 22:21:36 -07004171 if (WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base))
4172 return -ENODEV;
4173
Daniel Vetterbf3d1492014-02-14 14:01:12 +01004174 if (WARN_ON(flags & (PIN_GLOBAL | PIN_MAPPABLE) && !i915_is_ggtt(vm)))
Daniel Vetter1ec9e262014-02-14 14:01:11 +01004175 return -EINVAL;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004176
Chris Wilsonc826c442014-10-31 13:53:53 +00004177 if (WARN_ON((flags & (PIN_MAPPABLE | PIN_GLOBAL)) == PIN_MAPPABLE))
4178 return -EINVAL;
4179
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004180 vma = i915_gem_obj_to_vma(obj, vm);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004181 if (vma) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004182 if (WARN_ON(vma->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT))
4183 return -EBUSY;
4184
Chris Wilsond23db882014-05-23 08:48:08 +02004185 if (i915_vma_misplaced(vma, alignment, flags)) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004186 WARN(vma->pin_count,
Chris Wilsonae7d49d2010-08-04 12:37:41 +01004187 "bo is already pinned with incorrect alignment:"
Ben Widawskyf343c5f2013-07-05 14:41:04 -07004188 " offset=%lx, req.alignment=%x, req.map_and_fenceable=%d,"
Daniel Vetter75e9e912010-11-04 17:11:09 +01004189 " obj->map_and_fenceable=%d\n",
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004190 i915_gem_obj_offset(obj, vm), alignment,
Chris Wilsond23db882014-05-23 08:48:08 +02004191 !!(flags & PIN_MAPPABLE),
Chris Wilson05394f32010-11-08 19:18:58 +00004192 obj->map_and_fenceable);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004193 ret = i915_vma_unbind(vma);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004194 if (ret)
4195 return ret;
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004196
4197 vma = NULL;
Chris Wilsonac0c6b52010-05-27 13:18:18 +01004198 }
4199 }
4200
Chris Wilsonef79e172014-10-31 13:53:52 +00004201 bound = vma ? vma->bound : 0;
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004202 if (vma == NULL || !drm_mm_node_allocated(&vma->node)) {
Daniel Vetter262de142014-02-14 14:01:20 +01004203 vma = i915_gem_object_bind_to_vm(obj, vm, alignment, flags);
4204 if (IS_ERR(vma))
4205 return PTR_ERR(vma);
Chris Wilson22c344e2009-02-11 14:26:45 +00004206 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05004207
Tvrtko Ursulinaff43762014-10-24 12:42:33 +01004208 if (flags & PIN_GLOBAL && !(vma->bound & GLOBAL_BIND))
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004209 vma->bind_vma(vma, obj->cache_level, GLOBAL_BIND);
Daniel Vetter74898d72012-02-15 23:50:22 +01004210
Chris Wilsonef79e172014-10-31 13:53:52 +00004211 if ((bound ^ vma->bound) & GLOBAL_BIND) {
4212 bool mappable, fenceable;
4213 u32 fence_size, fence_alignment;
4214
4215 fence_size = i915_gem_get_gtt_size(obj->base.dev,
4216 obj->base.size,
4217 obj->tiling_mode);
4218 fence_alignment = i915_gem_get_gtt_alignment(obj->base.dev,
4219 obj->base.size,
4220 obj->tiling_mode,
4221 true);
4222
4223 fenceable = (vma->node.size == fence_size &&
4224 (vma->node.start & (fence_alignment - 1)) == 0);
4225
4226 mappable = (vma->node.start + obj->base.size <=
4227 dev_priv->gtt.mappable_end);
4228
4229 obj->map_and_fenceable = mappable && fenceable;
4230 }
4231
4232 WARN_ON(flags & PIN_MAPPABLE && !obj->map_and_fenceable);
4233
Daniel Vetter8ea99c92014-02-14 14:01:21 +01004234 vma->pin_count++;
Daniel Vetter1ec9e262014-02-14 14:01:11 +01004235 if (flags & PIN_MAPPABLE)
4236 obj->pin_mappable |= true;
Eric Anholt673a3942008-07-30 12:06:12 -07004237
4238 return 0;
4239}
4240
4241void
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004242i915_gem_object_ggtt_unpin(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07004243{
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004244 struct i915_vma *vma = i915_gem_obj_to_ggtt(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07004245
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004246 BUG_ON(!vma);
4247 BUG_ON(vma->pin_count == 0);
4248 BUG_ON(!i915_gem_obj_ggtt_bound(obj));
4249
4250 if (--vma->pin_count == 0)
Chris Wilson6299f992010-11-24 12:23:44 +00004251 obj->pin_mappable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07004252}
4253
Daniel Vetterd8ffa602014-05-13 12:11:26 +02004254bool
4255i915_gem_object_pin_fence(struct drm_i915_gem_object *obj)
4256{
4257 if (obj->fence_reg != I915_FENCE_REG_NONE) {
4258 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
4259 struct i915_vma *ggtt_vma = i915_gem_obj_to_ggtt(obj);
4260
4261 WARN_ON(!ggtt_vma ||
4262 dev_priv->fence_regs[obj->fence_reg].pin_count >
4263 ggtt_vma->pin_count);
4264 dev_priv->fence_regs[obj->fence_reg].pin_count++;
4265 return true;
4266 } else
4267 return false;
4268}
4269
4270void
4271i915_gem_object_unpin_fence(struct drm_i915_gem_object *obj)
4272{
4273 if (obj->fence_reg != I915_FENCE_REG_NONE) {
4274 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
4275 WARN_ON(dev_priv->fence_regs[obj->fence_reg].pin_count <= 0);
4276 dev_priv->fence_regs[obj->fence_reg].pin_count--;
4277 }
4278}
4279
Eric Anholt673a3942008-07-30 12:06:12 -07004280int
Eric Anholt673a3942008-07-30 12:06:12 -07004281i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00004282 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07004283{
4284 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004285 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01004286 int ret;
4287
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004288 ret = i915_mutex_lock_interruptible(dev);
4289 if (ret)
4290 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004291
Chris Wilson05394f32010-11-08 19:18:58 +00004292 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004293 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004294 ret = -ENOENT;
4295 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07004296 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08004297
Chris Wilson0be555b2010-08-04 15:36:30 +01004298 /* Count all active objects as busy, even if they are currently not used
4299 * by the gpu. Users of this interface expect objects to eventually
4300 * become non-busy without any further actions, therefore emit any
4301 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08004302 */
Daniel Vetter30dfebf2012-06-01 15:21:23 +02004303 ret = i915_gem_object_flush_active(obj);
4304
Chris Wilson05394f32010-11-08 19:18:58 +00004305 args->busy = obj->active;
Chris Wilsone9808ed2012-07-04 12:25:08 +01004306 if (obj->ring) {
4307 BUILD_BUG_ON(I915_NUM_RINGS > 16);
4308 args->busy |= intel_ring_flag(obj->ring) << 16;
4309 }
Eric Anholt673a3942008-07-30 12:06:12 -07004310
Chris Wilson05394f32010-11-08 19:18:58 +00004311 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004312unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07004313 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004314 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004315}
4316
4317int
4318i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
4319 struct drm_file *file_priv)
4320{
Akshay Joshi0206e352011-08-16 15:34:10 -04004321 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07004322}
4323
Chris Wilson3ef94da2009-09-14 16:50:29 +01004324int
4325i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
4326 struct drm_file *file_priv)
4327{
Daniel Vetter656bfa32014-11-20 09:26:30 +01004328 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004329 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00004330 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01004331 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004332
4333 switch (args->madv) {
4334 case I915_MADV_DONTNEED:
4335 case I915_MADV_WILLNEED:
4336 break;
4337 default:
4338 return -EINVAL;
4339 }
4340
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004341 ret = i915_mutex_lock_interruptible(dev);
4342 if (ret)
4343 return ret;
4344
Chris Wilson05394f32010-11-08 19:18:58 +00004345 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004346 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004347 ret = -ENOENT;
4348 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004349 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01004350
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004351 if (i915_gem_obj_is_pinned(obj)) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004352 ret = -EINVAL;
4353 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004354 }
4355
Daniel Vetter656bfa32014-11-20 09:26:30 +01004356 if (obj->pages &&
4357 obj->tiling_mode != I915_TILING_NONE &&
4358 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES) {
4359 if (obj->madv == I915_MADV_WILLNEED)
4360 i915_gem_object_unpin_pages(obj);
4361 if (args->madv == I915_MADV_WILLNEED)
4362 i915_gem_object_pin_pages(obj);
4363 }
4364
Chris Wilson05394f32010-11-08 19:18:58 +00004365 if (obj->madv != __I915_MADV_PURGED)
4366 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004367
Chris Wilson6c085a72012-08-20 11:40:46 +02004368 /* if the object is no longer attached, discard its backing storage */
4369 if (i915_gem_object_is_purgeable(obj) && obj->pages == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01004370 i915_gem_object_truncate(obj);
4371
Chris Wilson05394f32010-11-08 19:18:58 +00004372 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01004373
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004374out:
Chris Wilson05394f32010-11-08 19:18:58 +00004375 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004376unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01004377 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004378 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004379}
4380
Chris Wilson37e680a2012-06-07 15:38:42 +01004381void i915_gem_object_init(struct drm_i915_gem_object *obj,
4382 const struct drm_i915_gem_object_ops *ops)
Chris Wilson0327d6b2012-08-11 15:41:06 +01004383{
Ben Widawsky35c20a62013-05-31 11:28:48 -07004384 INIT_LIST_HEAD(&obj->global_list);
Chris Wilson0327d6b2012-08-11 15:41:06 +01004385 INIT_LIST_HEAD(&obj->ring_list);
Ben Widawskyb25cb2f2013-08-14 11:38:33 +02004386 INIT_LIST_HEAD(&obj->obj_exec_link);
Ben Widawsky2f633152013-07-17 12:19:03 -07004387 INIT_LIST_HEAD(&obj->vma_list);
Chris Wilson0327d6b2012-08-11 15:41:06 +01004388
Chris Wilson37e680a2012-06-07 15:38:42 +01004389 obj->ops = ops;
4390
Chris Wilson0327d6b2012-08-11 15:41:06 +01004391 obj->fence_reg = I915_FENCE_REG_NONE;
4392 obj->madv = I915_MADV_WILLNEED;
Chris Wilson0327d6b2012-08-11 15:41:06 +01004393
4394 i915_gem_info_add_obj(obj->base.dev->dev_private, obj->base.size);
4395}
4396
Chris Wilson37e680a2012-06-07 15:38:42 +01004397static const struct drm_i915_gem_object_ops i915_gem_object_ops = {
4398 .get_pages = i915_gem_object_get_pages_gtt,
4399 .put_pages = i915_gem_object_put_pages_gtt,
4400};
4401
Chris Wilson05394f32010-11-08 19:18:58 +00004402struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
4403 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00004404{
Daniel Vetterc397b902010-04-09 19:05:07 +00004405 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07004406 struct address_space *mapping;
Daniel Vetter1a240d42012-11-29 22:18:51 +01004407 gfp_t mask;
Daniel Vetterc397b902010-04-09 19:05:07 +00004408
Chris Wilson42dcedd2012-11-15 11:32:30 +00004409 obj = i915_gem_object_alloc(dev);
Daniel Vetterc397b902010-04-09 19:05:07 +00004410 if (obj == NULL)
4411 return NULL;
4412
4413 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
Chris Wilson42dcedd2012-11-15 11:32:30 +00004414 i915_gem_object_free(obj);
Daniel Vetterc397b902010-04-09 19:05:07 +00004415 return NULL;
4416 }
4417
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004418 mask = GFP_HIGHUSER | __GFP_RECLAIMABLE;
4419 if (IS_CRESTLINE(dev) || IS_BROADWATER(dev)) {
4420 /* 965gm cannot relocate objects above 4GiB. */
4421 mask &= ~__GFP_HIGHMEM;
4422 mask |= __GFP_DMA32;
4423 }
4424
Al Viro496ad9a2013-01-23 17:07:38 -05004425 mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004426 mapping_set_gfp_mask(mapping, mask);
Hugh Dickins5949eac2011-06-27 16:18:18 -07004427
Chris Wilson37e680a2012-06-07 15:38:42 +01004428 i915_gem_object_init(obj, &i915_gem_object_ops);
Chris Wilson73aa8082010-09-30 11:46:12 +01004429
Daniel Vetterc397b902010-04-09 19:05:07 +00004430 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
4431 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4432
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02004433 if (HAS_LLC(dev)) {
4434 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07004435 * cache) for about a 10% performance improvement
4436 * compared to uncached. Graphics requests other than
4437 * display scanout are coherent with the CPU in
4438 * accessing this cache. This means in this mode we
4439 * don't need to clflush on the CPU side, and on the
4440 * GPU side we only need to flush internal caches to
4441 * get data visible to the CPU.
4442 *
4443 * However, we maintain the display planes as UC, and so
4444 * need to rebind when first used as such.
4445 */
4446 obj->cache_level = I915_CACHE_LLC;
4447 } else
4448 obj->cache_level = I915_CACHE_NONE;
4449
Daniel Vetterd861e332013-07-24 23:25:03 +02004450 trace_i915_gem_object_create(obj);
4451
Chris Wilson05394f32010-11-08 19:18:58 +00004452 return obj;
Daniel Vetterac52bc52010-04-09 19:05:06 +00004453}
4454
Chris Wilson340fbd82014-05-22 09:16:52 +01004455static bool discard_backing_storage(struct drm_i915_gem_object *obj)
4456{
4457 /* If we are the last user of the backing storage (be it shmemfs
4458 * pages or stolen etc), we know that the pages are going to be
4459 * immediately released. In this case, we can then skip copying
4460 * back the contents from the GPU.
4461 */
4462
4463 if (obj->madv != I915_MADV_WILLNEED)
4464 return false;
4465
4466 if (obj->base.filp == NULL)
4467 return true;
4468
4469 /* At first glance, this looks racy, but then again so would be
4470 * userspace racing mmap against close. However, the first external
4471 * reference to the filp can only be obtained through the
4472 * i915_gem_mmap_ioctl() which safeguards us against the user
4473 * acquiring such a reference whilst we are in the middle of
4474 * freeing the object.
4475 */
4476 return atomic_long_read(&obj->base.filp->f_count) == 1;
4477}
4478
Chris Wilson1488fc02012-04-24 15:47:31 +01004479void i915_gem_free_object(struct drm_gem_object *gem_obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01004480{
Chris Wilson1488fc02012-04-24 15:47:31 +01004481 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00004482 struct drm_device *dev = obj->base.dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004483 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004484 struct i915_vma *vma, *next;
Chris Wilsonbe726152010-07-23 23:18:50 +01004485
Paulo Zanonif65c9162013-11-27 18:20:34 -02004486 intel_runtime_pm_get(dev_priv);
4487
Chris Wilson26e12f892011-03-20 11:20:19 +00004488 trace_i915_gem_object_destroy(obj);
4489
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004490 list_for_each_entry_safe(vma, next, &obj->vma_list, vma_link) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -08004491 int ret;
4492
4493 vma->pin_count = 0;
4494 ret = i915_vma_unbind(vma);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004495 if (WARN_ON(ret == -ERESTARTSYS)) {
4496 bool was_interruptible;
Chris Wilson1488fc02012-04-24 15:47:31 +01004497
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004498 was_interruptible = dev_priv->mm.interruptible;
4499 dev_priv->mm.interruptible = false;
Chris Wilson1488fc02012-04-24 15:47:31 +01004500
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004501 WARN_ON(i915_vma_unbind(vma));
Chris Wilson1488fc02012-04-24 15:47:31 +01004502
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004503 dev_priv->mm.interruptible = was_interruptible;
4504 }
Chris Wilson1488fc02012-04-24 15:47:31 +01004505 }
4506
Ben Widawsky1d64ae72013-05-31 14:46:20 -07004507 /* Stolen objects don't hold a ref, but do hold pin count. Fix that up
4508 * before progressing. */
4509 if (obj->stolen)
4510 i915_gem_object_unpin_pages(obj);
4511
Daniel Vettera071fa02014-06-18 23:28:09 +02004512 WARN_ON(obj->frontbuffer_bits);
4513
Daniel Vetter656bfa32014-11-20 09:26:30 +01004514 if (obj->pages && obj->madv == I915_MADV_WILLNEED &&
4515 dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES &&
4516 obj->tiling_mode != I915_TILING_NONE)
4517 i915_gem_object_unpin_pages(obj);
4518
Ben Widawsky401c29f2013-05-31 11:28:47 -07004519 if (WARN_ON(obj->pages_pin_count))
4520 obj->pages_pin_count = 0;
Chris Wilson340fbd82014-05-22 09:16:52 +01004521 if (discard_backing_storage(obj))
Chris Wilson55372522014-03-25 13:23:06 +00004522 obj->madv = I915_MADV_DONTNEED;
Chris Wilson37e680a2012-06-07 15:38:42 +01004523 i915_gem_object_put_pages(obj);
Chris Wilsond8cb5082012-08-11 15:41:03 +01004524 i915_gem_object_free_mmap_offset(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01004525
Chris Wilson9da3da62012-06-01 15:20:22 +01004526 BUG_ON(obj->pages);
4527
Chris Wilson2f745ad2012-09-04 21:02:58 +01004528 if (obj->base.import_attach)
4529 drm_prime_gem_destroy(&obj->base, NULL);
Chris Wilsonbe726152010-07-23 23:18:50 +01004530
Chris Wilson5cc9ed42014-05-16 14:22:37 +01004531 if (obj->ops->release)
4532 obj->ops->release(obj);
4533
Chris Wilson05394f32010-11-08 19:18:58 +00004534 drm_gem_object_release(&obj->base);
4535 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01004536
Chris Wilson05394f32010-11-08 19:18:58 +00004537 kfree(obj->bit_17);
Chris Wilson42dcedd2012-11-15 11:32:30 +00004538 i915_gem_object_free(obj);
Paulo Zanonif65c9162013-11-27 18:20:34 -02004539
4540 intel_runtime_pm_put(dev_priv);
Chris Wilsonbe726152010-07-23 23:18:50 +01004541}
4542
Daniel Vettere656a6c2013-08-14 14:14:04 +02004543struct i915_vma *i915_gem_obj_to_vma(struct drm_i915_gem_object *obj,
Ben Widawsky2f633152013-07-17 12:19:03 -07004544 struct i915_address_space *vm)
4545{
Daniel Vettere656a6c2013-08-14 14:14:04 +02004546 struct i915_vma *vma;
4547 list_for_each_entry(vma, &obj->vma_list, vma_link)
4548 if (vma->vm == vm)
4549 return vma;
4550
4551 return NULL;
4552}
4553
Ben Widawsky2f633152013-07-17 12:19:03 -07004554void i915_gem_vma_destroy(struct i915_vma *vma)
4555{
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004556 struct i915_address_space *vm = NULL;
Ben Widawsky2f633152013-07-17 12:19:03 -07004557 WARN_ON(vma->node.allocated);
Chris Wilsonaaa05662013-08-20 12:56:40 +01004558
4559 /* Keep the vma as a placeholder in the execbuffer reservation lists */
4560 if (!list_empty(&vma->exec_list))
4561 return;
4562
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004563 vm = vma->vm;
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004564
Daniel Vetter841cd772014-08-06 15:04:48 +02004565 if (!i915_is_ggtt(vm))
4566 i915_ppgtt_put(i915_vm_to_ppgtt(vm));
Michel Thierryb9d06dd2014-08-06 15:04:44 +02004567
Ben Widawsky8b9c2b92013-07-31 17:00:16 -07004568 list_del(&vma->vma_link);
Daniel Vetterb93dab62013-08-26 11:23:47 +02004569
Ben Widawsky2f633152013-07-17 12:19:03 -07004570 kfree(vma);
4571}
4572
Chris Wilsone3efda42014-04-09 09:19:41 +01004573static void
4574i915_gem_stop_ringbuffers(struct drm_device *dev)
4575{
4576 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004577 struct intel_engine_cs *ring;
Chris Wilsone3efda42014-04-09 09:19:41 +01004578 int i;
4579
4580 for_each_ring(ring, dev_priv, i)
Oscar Mateoa83014d2014-07-24 17:04:21 +01004581 dev_priv->gt.stop_ring(ring);
Chris Wilsone3efda42014-04-09 09:19:41 +01004582}
4583
Jesse Barnes5669fca2009-02-17 15:13:31 -08004584int
Chris Wilson45c5f202013-10-16 11:50:01 +01004585i915_gem_suspend(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07004586{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004587 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson45c5f202013-10-16 11:50:01 +01004588 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07004589
Chris Wilson45c5f202013-10-16 11:50:01 +01004590 mutex_lock(&dev->struct_mutex);
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004591 ret = i915_gpu_idle(dev);
Chris Wilsonf7403342013-09-13 23:57:04 +01004592 if (ret)
Chris Wilson45c5f202013-10-16 11:50:01 +01004593 goto err;
Chris Wilsonf7403342013-09-13 23:57:04 +01004594
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004595 i915_gem_retire_requests(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07004596
Chris Wilson29105cc2010-01-07 10:39:13 +00004597 /* Under UMS, be paranoid and evict. */
Chris Wilsona39d7ef2012-04-24 18:22:52 +01004598 if (!drm_core_check_feature(dev, DRIVER_MODESET))
Chris Wilson6c085a72012-08-20 11:40:46 +02004599 i915_gem_evict_everything(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00004600
Chris Wilsone3efda42014-04-09 09:19:41 +01004601 i915_gem_stop_ringbuffers(dev);
Chris Wilson45c5f202013-10-16 11:50:01 +01004602 mutex_unlock(&dev->struct_mutex);
4603
4604 del_timer_sync(&dev_priv->gpu_error.hangcheck_timer);
Chris Wilson29105cc2010-01-07 10:39:13 +00004605 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
Deepak S274fa1c2014-08-05 07:51:20 -07004606 flush_delayed_work(&dev_priv->mm.idle_work);
Chris Wilson29105cc2010-01-07 10:39:13 +00004607
Chris Wilsonbdcf1202014-11-25 11:56:33 +00004608 /* Assert that we sucessfully flushed all the work and
4609 * reset the GPU back to its idle, low power state.
4610 */
4611 WARN_ON(dev_priv->mm.busy);
4612
Eric Anholt673a3942008-07-30 12:06:12 -07004613 return 0;
Chris Wilson45c5f202013-10-16 11:50:01 +01004614
4615err:
4616 mutex_unlock(&dev->struct_mutex);
4617 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004618}
4619
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004620int i915_gem_l3_remap(struct intel_engine_cs *ring, int slice)
Ben Widawskyb9524a12012-05-25 16:56:24 -07004621{
Ben Widawskyc3787e22013-09-17 21:12:44 -07004622 struct drm_device *dev = ring->dev;
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004623 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07004624 u32 reg_base = GEN7_L3LOG_BASE + (slice * 0x200);
4625 u32 *remap_info = dev_priv->l3_parity.remap_info[slice];
Ben Widawskyc3787e22013-09-17 21:12:44 -07004626 int i, ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004627
Ben Widawsky040d2ba2013-09-19 11:01:40 -07004628 if (!HAS_L3_DPF(dev) || !remap_info)
Ben Widawskyc3787e22013-09-17 21:12:44 -07004629 return 0;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004630
Ben Widawskyc3787e22013-09-17 21:12:44 -07004631 ret = intel_ring_begin(ring, GEN7_L3LOG_SIZE / 4 * 3);
4632 if (ret)
4633 return ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004634
Ben Widawskyc3787e22013-09-17 21:12:44 -07004635 /*
4636 * Note: We do not worry about the concurrent register cacheline hang
4637 * here because no other code should access these registers other than
4638 * at initialization time.
4639 */
Ben Widawskyb9524a12012-05-25 16:56:24 -07004640 for (i = 0; i < GEN7_L3LOG_SIZE; i += 4) {
Ben Widawskyc3787e22013-09-17 21:12:44 -07004641 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
4642 intel_ring_emit(ring, reg_base + i);
4643 intel_ring_emit(ring, remap_info[i/4]);
Ben Widawskyb9524a12012-05-25 16:56:24 -07004644 }
4645
Ben Widawskyc3787e22013-09-17 21:12:44 -07004646 intel_ring_advance(ring);
Ben Widawskyb9524a12012-05-25 16:56:24 -07004647
Ben Widawskyc3787e22013-09-17 21:12:44 -07004648 return ret;
Ben Widawskyb9524a12012-05-25 16:56:24 -07004649}
4650
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004651void i915_gem_init_swizzling(struct drm_device *dev)
4652{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004653 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004654
Daniel Vetter11782b02012-01-31 16:47:55 +01004655 if (INTEL_INFO(dev)->gen < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004656 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
4657 return;
4658
4659 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
4660 DISP_TILE_SURFACE_SWIZZLING);
4661
Daniel Vetter11782b02012-01-31 16:47:55 +01004662 if (IS_GEN5(dev))
4663 return;
4664
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004665 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
4666 if (IS_GEN6(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004667 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_SNB));
Ben Widawsky8782e262012-12-18 10:31:23 -08004668 else if (IS_GEN7(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004669 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_IVB));
Ben Widawsky31a53362013-11-02 21:07:04 -07004670 else if (IS_GEN8(dev))
4671 I915_WRITE(GAMTARBMODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_BDW));
Ben Widawsky8782e262012-12-18 10:31:23 -08004672 else
4673 BUG();
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004674}
Daniel Vettere21af882012-02-09 20:53:27 +01004675
Chris Wilson67b1b572012-07-05 23:49:40 +01004676static bool
4677intel_enable_blt(struct drm_device *dev)
4678{
4679 if (!HAS_BLT(dev))
4680 return false;
4681
4682 /* The blitter was dysfunctional on early prototypes */
4683 if (IS_GEN6(dev) && dev->pdev->revision < 8) {
4684 DRM_INFO("BLT not supported on this pre-production hardware;"
4685 " graphics performance will be degraded.\n");
4686 return false;
4687 }
4688
4689 return true;
4690}
4691
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004692static void init_unused_ring(struct drm_device *dev, u32 base)
4693{
4694 struct drm_i915_private *dev_priv = dev->dev_private;
4695
4696 I915_WRITE(RING_CTL(base), 0);
4697 I915_WRITE(RING_HEAD(base), 0);
4698 I915_WRITE(RING_TAIL(base), 0);
4699 I915_WRITE(RING_START(base), 0);
4700}
4701
4702static void init_unused_rings(struct drm_device *dev)
4703{
4704 if (IS_I830(dev)) {
4705 init_unused_ring(dev, PRB1_BASE);
4706 init_unused_ring(dev, SRB0_BASE);
4707 init_unused_ring(dev, SRB1_BASE);
4708 init_unused_ring(dev, SRB2_BASE);
4709 init_unused_ring(dev, SRB3_BASE);
4710 } else if (IS_GEN2(dev)) {
4711 init_unused_ring(dev, SRB0_BASE);
4712 init_unused_ring(dev, SRB1_BASE);
4713 } else if (IS_GEN3(dev)) {
4714 init_unused_ring(dev, PRB1_BASE);
4715 init_unused_ring(dev, PRB2_BASE);
4716 }
4717}
4718
Oscar Mateoa83014d2014-07-24 17:04:21 +01004719int i915_gem_init_rings(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004720{
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004721 struct drm_i915_private *dev_priv = dev->dev_private;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004722 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004723
Ville Syrjälä81e7f202014-08-15 01:21:55 +03004724 /*
4725 * At least 830 can leave some of the unused rings
4726 * "active" (ie. head != tail) after resume which
4727 * will prevent c3 entry. Makes sure all unused rings
4728 * are totally idle.
4729 */
4730 init_unused_rings(dev);
4731
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004732 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004733 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00004734 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004735
4736 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004737 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004738 if (ret)
4739 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08004740 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01004741
Chris Wilson67b1b572012-07-05 23:49:40 +01004742 if (intel_enable_blt(dev)) {
Chris Wilson549f7362010-10-19 11:19:32 +01004743 ret = intel_init_blt_ring_buffer(dev);
4744 if (ret)
4745 goto cleanup_bsd_ring;
4746 }
4747
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004748 if (HAS_VEBOX(dev)) {
4749 ret = intel_init_vebox_ring_buffer(dev);
4750 if (ret)
4751 goto cleanup_blt_ring;
4752 }
4753
Zhao Yakui845f74a2014-04-17 10:37:37 +08004754 if (HAS_BSD2(dev)) {
4755 ret = intel_init_bsd2_ring_buffer(dev);
4756 if (ret)
4757 goto cleanup_vebox_ring;
4758 }
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004759
Mika Kuoppala99433932013-01-22 14:12:17 +02004760 ret = i915_gem_set_seqno(dev, ((u32)~0 - 0x1000));
4761 if (ret)
Zhao Yakui845f74a2014-04-17 10:37:37 +08004762 goto cleanup_bsd2_ring;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004763
4764 return 0;
4765
Zhao Yakui845f74a2014-04-17 10:37:37 +08004766cleanup_bsd2_ring:
4767 intel_cleanup_ring_buffer(&dev_priv->ring[VCS2]);
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004768cleanup_vebox_ring:
4769 intel_cleanup_ring_buffer(&dev_priv->ring[VECS]);
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004770cleanup_blt_ring:
4771 intel_cleanup_ring_buffer(&dev_priv->ring[BCS]);
4772cleanup_bsd_ring:
4773 intel_cleanup_ring_buffer(&dev_priv->ring[VCS]);
4774cleanup_render_ring:
4775 intel_cleanup_ring_buffer(&dev_priv->ring[RCS]);
4776
4777 return ret;
4778}
4779
4780int
4781i915_gem_init_hw(struct drm_device *dev)
4782{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004783 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07004784 int ret, i;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004785
4786 if (INTEL_INFO(dev)->gen < 6 && !intel_enable_gtt())
4787 return -EIO;
4788
Ben Widawsky59124502013-07-04 11:02:05 -07004789 if (dev_priv->ellc_size)
Ben Widawsky05e21cc2013-07-04 11:02:04 -07004790 I915_WRITE(HSW_IDICR, I915_READ(HSW_IDICR) | IDIHASHMSK(0xf));
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004791
Ville Syrjälä0bf21342013-11-29 14:56:12 +02004792 if (IS_HASWELL(dev))
4793 I915_WRITE(MI_PREDICATE_RESULT_2, IS_HSW_GT3(dev) ?
4794 LOWER_SLICE_ENABLED : LOWER_SLICE_DISABLED);
Rodrigo Vivi94353732013-08-28 16:45:46 -03004795
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004796 if (HAS_PCH_NOP(dev)) {
Daniel Vetter6ba844b2014-01-22 23:39:30 +01004797 if (IS_IVYBRIDGE(dev)) {
4798 u32 temp = I915_READ(GEN7_MSG_CTL);
4799 temp &= ~(WAIT_FOR_PCH_FLR_ACK | WAIT_FOR_PCH_RESET_ACK);
4800 I915_WRITE(GEN7_MSG_CTL, temp);
4801 } else if (INTEL_INFO(dev)->gen >= 7) {
4802 u32 temp = I915_READ(HSW_NDE_RSTWRN_OPT);
4803 temp &= ~RESET_PCH_HANDSHAKE_ENABLE;
4804 I915_WRITE(HSW_NDE_RSTWRN_OPT, temp);
4805 }
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004806 }
4807
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004808 i915_gem_init_swizzling(dev);
4809
Oscar Mateoa83014d2014-07-24 17:04:21 +01004810 ret = dev_priv->gt.init_rings(dev);
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004811 if (ret)
Mika Kuoppala99433932013-01-22 14:12:17 +02004812 return ret;
4813
Ben Widawskyc3787e22013-09-17 21:12:44 -07004814 for (i = 0; i < NUM_L3_SLICES(dev); i++)
4815 i915_gem_l3_remap(&dev_priv->ring[RCS], i);
4816
Ben Widawsky254f9652012-06-04 14:42:42 -07004817 /*
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004818 * XXX: Contexts should only be initialized once. Doing a switch to the
4819 * default context switch however is something we'd like to do after
4820 * reset or thaw (the latter may not actually be necessary for HW, but
4821 * goes with our code better). Context switching requires rings (for
4822 * the do_switch), but before enabling PPGTT. So don't move this.
Ben Widawsky254f9652012-06-04 14:42:42 -07004823 */
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004824 ret = i915_gem_context_enable(dev_priv);
Chris Wilson60990322014-04-09 09:19:42 +01004825 if (ret && ret != -EIO) {
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004826 DRM_ERROR("Context enable failed %d\n", ret);
Chris Wilson60990322014-04-09 09:19:42 +01004827 i915_gem_cleanup_ringbuffer(dev);
Daniel Vetter82460d92014-08-06 20:19:53 +02004828
4829 return ret;
4830 }
4831
4832 ret = i915_ppgtt_init_hw(dev);
4833 if (ret && ret != -EIO) {
4834 DRM_ERROR("PPGTT enable failed %d\n", ret);
4835 i915_gem_cleanup_ringbuffer(dev);
Ben Widawskyb7c36d22013-04-08 18:43:56 -07004836 }
Daniel Vettere21af882012-02-09 20:53:27 +01004837
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004838 return ret;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004839}
4840
Chris Wilson1070a422012-04-24 15:47:41 +01004841int i915_gem_init(struct drm_device *dev)
4842{
4843 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson1070a422012-04-24 15:47:41 +01004844 int ret;
4845
Oscar Mateo127f1002014-07-24 17:04:11 +01004846 i915.enable_execlists = intel_sanitize_enable_execlists(dev,
4847 i915.enable_execlists);
4848
Chris Wilson1070a422012-04-24 15:47:41 +01004849 mutex_lock(&dev->struct_mutex);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004850
4851 if (IS_VALLEYVIEW(dev)) {
4852 /* VLVA0 (potential hack), BIOS isn't actually waking us */
Imre Deak981a5ae2014-04-14 20:24:22 +03004853 I915_WRITE(VLV_GTLC_WAKE_CTRL, VLV_GTLC_ALLOWWAKEREQ);
4854 if (wait_for((I915_READ(VLV_GTLC_PW_STATUS) &
4855 VLV_GTLC_ALLOWWAKEACK), 10))
Jesse Barnesd62b4892013-03-08 10:45:53 -08004856 DRM_DEBUG_DRIVER("allow wake ack timed out\n");
4857 }
4858
Oscar Mateoa83014d2014-07-24 17:04:21 +01004859 if (!i915.enable_execlists) {
4860 dev_priv->gt.do_execbuf = i915_gem_ringbuffer_submission;
4861 dev_priv->gt.init_rings = i915_gem_init_rings;
4862 dev_priv->gt.cleanup_ring = intel_cleanup_ring_buffer;
4863 dev_priv->gt.stop_ring = intel_stop_ring_buffer;
Oscar Mateo454afeb2014-07-24 17:04:22 +01004864 } else {
4865 dev_priv->gt.do_execbuf = intel_execlists_submission;
4866 dev_priv->gt.init_rings = intel_logical_rings_init;
4867 dev_priv->gt.cleanup_ring = intel_logical_ring_cleanup;
4868 dev_priv->gt.stop_ring = intel_logical_ring_stop;
Oscar Mateoa83014d2014-07-24 17:04:21 +01004869 }
4870
Daniel Vetter6c5566a2014-08-06 15:04:50 +02004871 ret = i915_gem_init_userptr(dev);
4872 if (ret) {
4873 mutex_unlock(&dev->struct_mutex);
4874 return ret;
4875 }
4876
Ben Widawskyd7e50082012-12-18 10:31:25 -08004877 i915_gem_init_global_gtt(dev);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004878
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004879 ret = i915_gem_context_init(dev);
Mika Kuoppalae3848692014-01-31 17:14:02 +02004880 if (ret) {
4881 mutex_unlock(&dev->struct_mutex);
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004882 return ret;
Mika Kuoppalae3848692014-01-31 17:14:02 +02004883 }
Ben Widawsky2fa48d82013-12-06 14:11:04 -08004884
Chris Wilson1070a422012-04-24 15:47:41 +01004885 ret = i915_gem_init_hw(dev);
Chris Wilson60990322014-04-09 09:19:42 +01004886 if (ret == -EIO) {
4887 /* Allow ring initialisation to fail by marking the GPU as
4888 * wedged. But we only want to do this where the GPU is angry,
4889 * for all other failure, such as an allocation failure, bail.
4890 */
4891 DRM_ERROR("Failed to initialize GPU, declaring it wedged\n");
4892 atomic_set_mask(I915_WEDGED, &dev_priv->gpu_error.reset_counter);
4893 ret = 0;
Chris Wilson1070a422012-04-24 15:47:41 +01004894 }
Chris Wilson60990322014-04-09 09:19:42 +01004895 mutex_unlock(&dev->struct_mutex);
Chris Wilson1070a422012-04-24 15:47:41 +01004896
Chris Wilson60990322014-04-09 09:19:42 +01004897 return ret;
Chris Wilson1070a422012-04-24 15:47:41 +01004898}
4899
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004900void
4901i915_gem_cleanup_ringbuffer(struct drm_device *dev)
4902{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004903 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004904 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00004905 int i;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004906
Chris Wilsonb4519512012-05-11 14:29:30 +01004907 for_each_ring(ring, dev_priv, i)
Oscar Mateoa83014d2014-07-24 17:04:21 +01004908 dev_priv->gt.cleanup_ring(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004909}
4910
Chris Wilson64193402010-10-24 12:38:05 +01004911static void
Oscar Mateoa4872ba2014-05-22 14:13:33 +01004912init_ring_lists(struct intel_engine_cs *ring)
Chris Wilson64193402010-10-24 12:38:05 +01004913{
4914 INIT_LIST_HEAD(&ring->active_list);
4915 INIT_LIST_HEAD(&ring->request_list);
Chris Wilson64193402010-10-24 12:38:05 +01004916}
4917
Ben Widawsky7e0d96b2013-12-06 14:11:26 -08004918void i915_init_vm(struct drm_i915_private *dev_priv,
4919 struct i915_address_space *vm)
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004920{
Ben Widawsky7e0d96b2013-12-06 14:11:26 -08004921 if (!i915_is_ggtt(vm))
4922 drm_mm_init(&vm->mm, vm->start, vm->total);
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004923 vm->dev = dev_priv->dev;
4924 INIT_LIST_HEAD(&vm->active_list);
4925 INIT_LIST_HEAD(&vm->inactive_list);
4926 INIT_LIST_HEAD(&vm->global_link);
Chris Wilsonf72d21e2014-01-09 22:57:22 +00004927 list_add_tail(&vm->global_link, &dev_priv->vm_list);
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004928}
4929
Eric Anholt673a3942008-07-30 12:06:12 -07004930void
4931i915_gem_load(struct drm_device *dev)
4932{
Jani Nikula3e31c6c2014-03-31 14:27:16 +03004933 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson42dcedd2012-11-15 11:32:30 +00004934 int i;
4935
4936 dev_priv->slab =
4937 kmem_cache_create("i915_gem_object",
4938 sizeof(struct drm_i915_gem_object), 0,
4939 SLAB_HWCACHE_ALIGN,
4940 NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07004941
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004942 INIT_LIST_HEAD(&dev_priv->vm_list);
4943 i915_init_vm(dev_priv, &dev_priv->gtt.base);
4944
Ben Widawskya33afea2013-09-17 21:12:45 -07004945 INIT_LIST_HEAD(&dev_priv->context_list);
Chris Wilson6c085a72012-08-20 11:40:46 +02004946 INIT_LIST_HEAD(&dev_priv->mm.unbound_list);
4947 INIT_LIST_HEAD(&dev_priv->mm.bound_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07004948 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00004949 for (i = 0; i < I915_NUM_RINGS; i++)
4950 init_ring_lists(&dev_priv->ring[i]);
Daniel Vetter4b9de732011-10-09 21:52:02 +02004951 for (i = 0; i < I915_MAX_NUM_FENCES; i++)
Daniel Vetter007cc8a2010-04-28 11:02:31 +02004952 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07004953 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
4954 i915_gem_retire_work_handler);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01004955 INIT_DELAYED_WORK(&dev_priv->mm.idle_work,
4956 i915_gem_idle_work_handler);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01004957 init_waitqueue_head(&dev_priv->gpu_error.reset_queue);
Chris Wilson31169712009-09-14 16:50:28 +01004958
Dave Airlie94400122010-07-20 13:15:31 +10004959 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
Ville Syrjälädbb42742014-02-25 15:13:41 +02004960 if (!drm_core_check_feature(dev, DRIVER_MODESET) && IS_GEN3(dev)) {
Daniel Vetter50743292012-04-26 22:02:54 +02004961 I915_WRITE(MI_ARB_STATE,
4962 _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Dave Airlie94400122010-07-20 13:15:31 +10004963 }
4964
Chris Wilson72bfa192010-12-19 11:42:05 +00004965 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
4966
Jesse Barnesde151cf2008-11-12 10:03:55 -08004967 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08004968 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4969 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08004970
Ville Syrjälä42b5aea2013-04-09 13:02:47 +03004971 if (INTEL_INFO(dev)->gen >= 7 && !IS_VALLEYVIEW(dev))
4972 dev_priv->num_fence_regs = 32;
4973 else if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08004974 dev_priv->num_fence_regs = 16;
4975 else
4976 dev_priv->num_fence_regs = 8;
4977
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02004978 /* Initialize fence registers to zero */
Chris Wilson19b2dbd2013-06-12 10:15:12 +01004979 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
4980 i915_gem_restore_fences(dev);
Eric Anholt10ed13e2011-05-06 13:53:49 -07004981
Eric Anholt673a3942008-07-30 12:06:12 -07004982 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004983 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01004984
Chris Wilsonce453d82011-02-21 14:43:56 +00004985 dev_priv->mm.interruptible = true;
4986
Chris Wilsonceabbba52014-03-25 13:23:04 +00004987 dev_priv->mm.shrinker.scan_objects = i915_gem_shrinker_scan;
4988 dev_priv->mm.shrinker.count_objects = i915_gem_shrinker_count;
4989 dev_priv->mm.shrinker.seeks = DEFAULT_SEEKS;
4990 register_shrinker(&dev_priv->mm.shrinker);
Chris Wilson2cfcd322014-05-20 08:28:43 +01004991
4992 dev_priv->mm.oom_notifier.notifier_call = i915_gem_shrinker_oom;
4993 register_oom_notifier(&dev_priv->mm.oom_notifier);
Daniel Vetterf99d7062014-06-19 16:01:59 +02004994
4995 mutex_init(&dev_priv->fb_tracking.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07004996}
Dave Airlie71acb5e2008-12-30 20:31:46 +10004997
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004998void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00004999{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005000 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00005001
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005002 cancel_delayed_work_sync(&file_priv->mm.idle_work);
5003
Eric Anholtb9624422009-06-03 07:27:35 +00005004 /* Clean up our request list when the client is going away, so that
5005 * later retire_requests won't dereference our soon-to-be-gone
5006 * file_priv.
5007 */
Chris Wilson1c255952010-09-26 11:03:27 +01005008 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005009 while (!list_empty(&file_priv->mm.request_list)) {
5010 struct drm_i915_gem_request *request;
5011
5012 request = list_first_entry(&file_priv->mm.request_list,
5013 struct drm_i915_gem_request,
5014 client_list);
5015 list_del(&request->client_list);
5016 request->file_priv = NULL;
5017 }
Chris Wilson1c255952010-09-26 11:03:27 +01005018 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00005019}
Chris Wilson31169712009-09-14 16:50:28 +01005020
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005021static void
5022i915_gem_file_idle_work_handler(struct work_struct *work)
5023{
5024 struct drm_i915_file_private *file_priv =
5025 container_of(work, typeof(*file_priv), mm.idle_work.work);
5026
5027 atomic_set(&file_priv->rps_wait_boost, false);
5028}
5029
5030int i915_gem_open(struct drm_device *dev, struct drm_file *file)
5031{
5032 struct drm_i915_file_private *file_priv;
Ben Widawskye422b882013-12-06 14:10:58 -08005033 int ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005034
5035 DRM_DEBUG_DRIVER("\n");
5036
5037 file_priv = kzalloc(sizeof(*file_priv), GFP_KERNEL);
5038 if (!file_priv)
5039 return -ENOMEM;
5040
5041 file->driver_priv = file_priv;
5042 file_priv->dev_priv = dev->dev_private;
Chris Wilsonab0e7ff2014-02-25 17:11:24 +02005043 file_priv->file = file;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005044
5045 spin_lock_init(&file_priv->mm.lock);
5046 INIT_LIST_HEAD(&file_priv->mm.request_list);
5047 INIT_DELAYED_WORK(&file_priv->mm.idle_work,
5048 i915_gem_file_idle_work_handler);
5049
Ben Widawskye422b882013-12-06 14:10:58 -08005050 ret = i915_gem_context_open(dev, file);
5051 if (ret)
5052 kfree(file_priv);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005053
Ben Widawskye422b882013-12-06 14:10:58 -08005054 return ret;
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005055}
5056
Daniel Vetterb680c372014-09-19 18:27:27 +02005057/**
5058 * i915_gem_track_fb - update frontbuffer tracking
5059 * old: current GEM buffer for the frontbuffer slots
5060 * new: new GEM buffer for the frontbuffer slots
5061 * frontbuffer_bits: bitmask of frontbuffer slots
5062 *
5063 * This updates the frontbuffer tracking bits @frontbuffer_bits by clearing them
5064 * from @old and setting them in @new. Both @old and @new can be NULL.
5065 */
Daniel Vettera071fa02014-06-18 23:28:09 +02005066void i915_gem_track_fb(struct drm_i915_gem_object *old,
5067 struct drm_i915_gem_object *new,
5068 unsigned frontbuffer_bits)
5069{
5070 if (old) {
5071 WARN_ON(!mutex_is_locked(&old->base.dev->struct_mutex));
5072 WARN_ON(!(old->frontbuffer_bits & frontbuffer_bits));
5073 old->frontbuffer_bits &= ~frontbuffer_bits;
5074 }
5075
5076 if (new) {
5077 WARN_ON(!mutex_is_locked(&new->base.dev->struct_mutex));
5078 WARN_ON(new->frontbuffer_bits & frontbuffer_bits);
5079 new->frontbuffer_bits |= frontbuffer_bits;
5080 }
5081}
5082
Chris Wilson57745062012-11-21 13:04:04 +00005083static bool mutex_is_locked_by(struct mutex *mutex, struct task_struct *task)
5084{
5085 if (!mutex_is_locked(mutex))
5086 return false;
5087
5088#if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_MUTEXES)
5089 return mutex->owner == task;
5090#else
5091 /* Since UP may be pre-empted, we cannot assume that we own the lock */
5092 return false;
5093#endif
5094}
5095
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005096static bool i915_gem_shrinker_lock(struct drm_device *dev, bool *unlock)
5097{
5098 if (!mutex_trylock(&dev->struct_mutex)) {
5099 if (!mutex_is_locked_by(&dev->struct_mutex, current))
5100 return false;
5101
5102 if (to_i915(dev)->mm.shrinker_no_lock_stealing)
5103 return false;
5104
5105 *unlock = false;
5106 } else
5107 *unlock = true;
5108
5109 return true;
5110}
5111
Chris Wilsonceabbba52014-03-25 13:23:04 +00005112static int num_vma_bound(struct drm_i915_gem_object *obj)
5113{
5114 struct i915_vma *vma;
5115 int count = 0;
5116
5117 list_for_each_entry(vma, &obj->vma_list, vma_link)
5118 if (drm_mm_node_allocated(&vma->node))
5119 count++;
5120
5121 return count;
5122}
5123
Dave Chinner7dc19d52013-08-28 10:18:11 +10005124static unsigned long
Chris Wilsonceabbba52014-03-25 13:23:04 +00005125i915_gem_shrinker_count(struct shrinker *shrinker, struct shrink_control *sc)
Chris Wilson31169712009-09-14 16:50:28 +01005126{
Chris Wilson17250b72010-10-28 12:51:39 +01005127 struct drm_i915_private *dev_priv =
Chris Wilsonceabbba52014-03-25 13:23:04 +00005128 container_of(shrinker, struct drm_i915_private, mm.shrinker);
Chris Wilson17250b72010-10-28 12:51:39 +01005129 struct drm_device *dev = dev_priv->dev;
Chris Wilson6c085a72012-08-20 11:40:46 +02005130 struct drm_i915_gem_object *obj;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005131 unsigned long count;
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005132 bool unlock;
Chris Wilson17250b72010-10-28 12:51:39 +01005133
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005134 if (!i915_gem_shrinker_lock(dev, &unlock))
5135 return 0;
Chris Wilson31169712009-09-14 16:50:28 +01005136
Dave Chinner7dc19d52013-08-28 10:18:11 +10005137 count = 0;
Ben Widawsky35c20a62013-05-31 11:28:48 -07005138 list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list)
Chris Wilsona5570172012-09-04 21:02:54 +01005139 if (obj->pages_pin_count == 0)
Dave Chinner7dc19d52013-08-28 10:18:11 +10005140 count += obj->base.size >> PAGE_SHIFT;
Ben Widawskyfcb4a572013-07-31 16:59:57 -07005141
5142 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
Chris Wilsonceabbba52014-03-25 13:23:04 +00005143 if (!i915_gem_obj_is_pinned(obj) &&
5144 obj->pages_pin_count == num_vma_bound(obj))
Dave Chinner7dc19d52013-08-28 10:18:11 +10005145 count += obj->base.size >> PAGE_SHIFT;
Ben Widawskyfcb4a572013-07-31 16:59:57 -07005146 }
Chris Wilson31169712009-09-14 16:50:28 +01005147
Chris Wilson57745062012-11-21 13:04:04 +00005148 if (unlock)
5149 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9973b42013-10-04 10:33:00 +01005150
Dave Chinner7dc19d52013-08-28 10:18:11 +10005151 return count;
Chris Wilson31169712009-09-14 16:50:28 +01005152}
Ben Widawskya70a3142013-07-31 16:59:56 -07005153
5154/* All the new VM stuff */
5155unsigned long i915_gem_obj_offset(struct drm_i915_gem_object *o,
5156 struct i915_address_space *vm)
5157{
5158 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
5159 struct i915_vma *vma;
5160
Daniel Vetter896ab1a2014-08-06 15:04:51 +02005161 WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base);
Ben Widawskya70a3142013-07-31 16:59:56 -07005162
Ben Widawskya70a3142013-07-31 16:59:56 -07005163 list_for_each_entry(vma, &o->vma_list, vma_link) {
5164 if (vma->vm == vm)
5165 return vma->node.start;
5166
5167 }
Daniel Vetterf25748ea2014-06-17 22:34:38 +02005168 WARN(1, "%s vma for this object not found.\n",
5169 i915_is_ggtt(vm) ? "global" : "ppgtt");
Ben Widawskya70a3142013-07-31 16:59:56 -07005170 return -1;
5171}
5172
5173bool i915_gem_obj_bound(struct drm_i915_gem_object *o,
5174 struct i915_address_space *vm)
5175{
5176 struct i915_vma *vma;
5177
5178 list_for_each_entry(vma, &o->vma_list, vma_link)
Ben Widawsky8b9c2b92013-07-31 17:00:16 -07005179 if (vma->vm == vm && drm_mm_node_allocated(&vma->node))
Ben Widawskya70a3142013-07-31 16:59:56 -07005180 return true;
5181
5182 return false;
5183}
5184
5185bool i915_gem_obj_bound_any(struct drm_i915_gem_object *o)
5186{
Chris Wilson5a1d5eb2013-09-10 11:27:37 +01005187 struct i915_vma *vma;
Ben Widawskya70a3142013-07-31 16:59:56 -07005188
Chris Wilson5a1d5eb2013-09-10 11:27:37 +01005189 list_for_each_entry(vma, &o->vma_list, vma_link)
5190 if (drm_mm_node_allocated(&vma->node))
Ben Widawskya70a3142013-07-31 16:59:56 -07005191 return true;
5192
5193 return false;
5194}
5195
5196unsigned long i915_gem_obj_size(struct drm_i915_gem_object *o,
5197 struct i915_address_space *vm)
5198{
5199 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
5200 struct i915_vma *vma;
5201
Daniel Vetter896ab1a2014-08-06 15:04:51 +02005202 WARN_ON(vm == &dev_priv->mm.aliasing_ppgtt->base);
Ben Widawskya70a3142013-07-31 16:59:56 -07005203
5204 BUG_ON(list_empty(&o->vma_list));
5205
5206 list_for_each_entry(vma, &o->vma_list, vma_link)
5207 if (vma->vm == vm)
5208 return vma->node.size;
5209
5210 return 0;
5211}
5212
Dave Chinner7dc19d52013-08-28 10:18:11 +10005213static unsigned long
Chris Wilsonceabbba52014-03-25 13:23:04 +00005214i915_gem_shrinker_scan(struct shrinker *shrinker, struct shrink_control *sc)
Dave Chinner7dc19d52013-08-28 10:18:11 +10005215{
5216 struct drm_i915_private *dev_priv =
Chris Wilsonceabbba52014-03-25 13:23:04 +00005217 container_of(shrinker, struct drm_i915_private, mm.shrinker);
Dave Chinner7dc19d52013-08-28 10:18:11 +10005218 struct drm_device *dev = dev_priv->dev;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005219 unsigned long freed;
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005220 bool unlock;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005221
Chris Wilsonb453c4d2014-03-25 13:23:05 +00005222 if (!i915_gem_shrinker_lock(dev, &unlock))
5223 return SHRINK_STOP;
Dave Chinner7dc19d52013-08-28 10:18:11 +10005224
Chris Wilson21ab4e72014-09-09 11:16:08 +01005225 freed = i915_gem_shrink(dev_priv,
5226 sc->nr_to_scan,
5227 I915_SHRINK_BOUND |
5228 I915_SHRINK_UNBOUND |
5229 I915_SHRINK_PURGEABLE);
Chris Wilsond9973b42013-10-04 10:33:00 +01005230 if (freed < sc->nr_to_scan)
Chris Wilson21ab4e72014-09-09 11:16:08 +01005231 freed += i915_gem_shrink(dev_priv,
5232 sc->nr_to_scan - freed,
5233 I915_SHRINK_BOUND |
5234 I915_SHRINK_UNBOUND);
Dave Chinner7dc19d52013-08-28 10:18:11 +10005235 if (unlock)
5236 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9973b42013-10-04 10:33:00 +01005237
Dave Chinner7dc19d52013-08-28 10:18:11 +10005238 return freed;
5239}
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005240
Chris Wilson2cfcd322014-05-20 08:28:43 +01005241static int
5242i915_gem_shrinker_oom(struct notifier_block *nb, unsigned long event, void *ptr)
5243{
5244 struct drm_i915_private *dev_priv =
5245 container_of(nb, struct drm_i915_private, mm.oom_notifier);
5246 struct drm_device *dev = dev_priv->dev;
5247 struct drm_i915_gem_object *obj;
5248 unsigned long timeout = msecs_to_jiffies(5000) + 1;
Chris Wilson005445c2014-10-08 11:25:16 +01005249 unsigned long pinned, bound, unbound, freed_pages;
Chris Wilson2cfcd322014-05-20 08:28:43 +01005250 bool was_interruptible;
5251 bool unlock;
5252
Chris Wilsona1db2fa2014-07-11 11:28:00 +01005253 while (!i915_gem_shrinker_lock(dev, &unlock) && --timeout) {
Chris Wilson2cfcd322014-05-20 08:28:43 +01005254 schedule_timeout_killable(1);
Chris Wilsona1db2fa2014-07-11 11:28:00 +01005255 if (fatal_signal_pending(current))
5256 return NOTIFY_DONE;
5257 }
Chris Wilson2cfcd322014-05-20 08:28:43 +01005258 if (timeout == 0) {
5259 pr_err("Unable to purge GPU memory due lock contention.\n");
5260 return NOTIFY_DONE;
5261 }
5262
5263 was_interruptible = dev_priv->mm.interruptible;
5264 dev_priv->mm.interruptible = false;
5265
Chris Wilson005445c2014-10-08 11:25:16 +01005266 freed_pages = i915_gem_shrink_all(dev_priv);
Chris Wilson2cfcd322014-05-20 08:28:43 +01005267
5268 dev_priv->mm.interruptible = was_interruptible;
5269
5270 /* Because we may be allocating inside our own driver, we cannot
5271 * assert that there are no objects with pinned pages that are not
5272 * being pointed to by hardware.
5273 */
5274 unbound = bound = pinned = 0;
5275 list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list) {
5276 if (!obj->base.filp) /* not backed by a freeable object */
5277 continue;
5278
5279 if (obj->pages_pin_count)
5280 pinned += obj->base.size;
5281 else
5282 unbound += obj->base.size;
5283 }
5284 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
5285 if (!obj->base.filp)
5286 continue;
5287
5288 if (obj->pages_pin_count)
5289 pinned += obj->base.size;
5290 else
5291 bound += obj->base.size;
5292 }
5293
5294 if (unlock)
5295 mutex_unlock(&dev->struct_mutex);
5296
Chris Wilsonbb9059d2014-10-08 11:25:17 +01005297 if (freed_pages || unbound || bound)
5298 pr_info("Purging GPU memory, %lu bytes freed, %lu bytes still pinned.\n",
5299 freed_pages << PAGE_SHIFT, pinned);
Chris Wilson2cfcd322014-05-20 08:28:43 +01005300 if (unbound || bound)
5301 pr_err("%lu and %lu bytes still available in the "
5302 "bound and unbound GPU page lists.\n",
5303 bound, unbound);
5304
Chris Wilson005445c2014-10-08 11:25:16 +01005305 *(unsigned long *)ptr += freed_pages;
Chris Wilson2cfcd322014-05-20 08:28:43 +01005306 return NOTIFY_DONE;
5307}
5308
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005309struct i915_vma *i915_gem_obj_to_ggtt(struct drm_i915_gem_object *obj)
5310{
5311 struct i915_vma *vma;
5312
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005313 vma = list_first_entry(&obj->vma_list, typeof(*vma), vma_link);
Daniel Vetter5dc383b2014-08-06 15:04:49 +02005314 if (vma->vm != i915_obj_to_ggtt(obj))
Ben Widawsky5c2abbe2013-09-24 09:57:57 -07005315 return NULL;
5316
5317 return vma;
5318}