blob: 39301b990ba26568b49d116306e6397c3f784f8b [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"
Hugh Dickins5949eac2011-06-27 16:18:18 -070034#include <linux/shmem_fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
Eric Anholt673a3942008-07-30 12:06:12 -070036#include <linux/swap.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080037#include <linux/pci.h>
Daniel Vetter1286ff72012-05-10 15:25:09 +020038#include <linux/dma-buf.h>
Eric Anholt673a3942008-07-30 12:06:12 -070039
Chris Wilson05394f32010-11-08 19:18:58 +000040static void i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj);
Chris Wilson2c225692013-08-09 12:26:45 +010041static void i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj,
42 bool force);
Ben Widawsky07fe0b12013-07-31 17:00:10 -070043static __must_check int
44i915_gem_object_bind_to_vm(struct drm_i915_gem_object *obj,
45 struct i915_address_space *vm,
46 unsigned alignment,
47 bool map_and_fenceable,
48 bool nonblocking);
Chris Wilson05394f32010-11-08 19:18:58 +000049static int i915_gem_phys_pwrite(struct drm_device *dev,
50 struct drm_i915_gem_object *obj,
Dave Airlie71acb5e2008-12-30 20:31:46 +100051 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +000052 struct drm_file *file);
Eric Anholt673a3942008-07-30 12:06:12 -070053
Chris Wilson61050802012-04-17 15:31:31 +010054static void i915_gem_write_fence(struct drm_device *dev, int reg,
55 struct drm_i915_gem_object *obj);
56static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
57 struct drm_i915_fence_reg *fence,
58 bool enable);
59
Dave Chinner7dc19d52013-08-28 10:18:11 +100060static unsigned long i915_gem_inactive_count(struct shrinker *shrinker,
61 struct shrink_control *sc);
62static unsigned long i915_gem_inactive_scan(struct shrinker *shrinker,
63 struct shrink_control *sc);
Chris Wilson6c085a72012-08-20 11:40:46 +020064static long i915_gem_purge(struct drm_i915_private *dev_priv, long target);
Dave Chinner7dc19d52013-08-28 10:18:11 +100065static long i915_gem_shrink_all(struct drm_i915_private *dev_priv);
Daniel Vetter8c599672011-12-14 13:57:31 +010066static void i915_gem_object_truncate(struct drm_i915_gem_object *obj);
Chris Wilson31169712009-09-14 16:50:28 +010067
Chris Wilsonc76ce032013-08-08 14:41:03 +010068static bool cpu_cache_is_coherent(struct drm_device *dev,
69 enum i915_cache_level level)
70{
71 return HAS_LLC(dev) || level != I915_CACHE_NONE;
72}
73
Chris Wilson2c225692013-08-09 12:26:45 +010074static bool cpu_write_needs_clflush(struct drm_i915_gem_object *obj)
75{
76 if (!cpu_cache_is_coherent(obj->base.dev, obj->cache_level))
77 return true;
78
79 return obj->pin_display;
80}
81
Chris Wilson61050802012-04-17 15:31:31 +010082static inline void i915_gem_object_fence_lost(struct drm_i915_gem_object *obj)
83{
84 if (obj->tiling_mode)
85 i915_gem_release_mmap(obj);
86
87 /* As we do not have an associated fence register, we will force
88 * a tiling change if we ever need to acquire one.
89 */
Chris Wilson5d82e3e2012-04-21 16:23:23 +010090 obj->fence_dirty = false;
Chris Wilson61050802012-04-17 15:31:31 +010091 obj->fence_reg = I915_FENCE_REG_NONE;
92}
93
Chris Wilson73aa8082010-09-30 11:46:12 +010094/* some bookkeeping */
95static void i915_gem_info_add_obj(struct drm_i915_private *dev_priv,
96 size_t size)
97{
Daniel Vetterc20e8352013-07-24 22:40:23 +020098 spin_lock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +010099 dev_priv->mm.object_count++;
100 dev_priv->mm.object_memory += size;
Daniel Vetterc20e8352013-07-24 22:40:23 +0200101 spin_unlock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +0100102}
103
104static void i915_gem_info_remove_obj(struct drm_i915_private *dev_priv,
105 size_t size)
106{
Daniel Vetterc20e8352013-07-24 22:40:23 +0200107 spin_lock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +0100108 dev_priv->mm.object_count--;
109 dev_priv->mm.object_memory -= size;
Daniel Vetterc20e8352013-07-24 22:40:23 +0200110 spin_unlock(&dev_priv->mm.object_stat_lock);
Chris Wilson73aa8082010-09-30 11:46:12 +0100111}
112
Chris Wilson21dd3732011-01-26 15:55:56 +0000113static int
Daniel Vetter33196de2012-11-14 17:14:05 +0100114i915_gem_wait_for_error(struct i915_gpu_error *error)
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100115{
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100116 int ret;
117
Daniel Vetter7abb6902013-05-24 21:29:32 +0200118#define EXIT_COND (!i915_reset_in_progress(error) || \
119 i915_terminally_wedged(error))
Daniel Vetter1f83fee2012-11-15 17:17:22 +0100120 if (EXIT_COND)
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100121 return 0;
122
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200123 /*
124 * Only wait 10 seconds for the gpu reset to complete to avoid hanging
125 * userspace. If it takes that long something really bad is going on and
126 * we should simply try to bail out and fail as gracefully as possible.
127 */
Daniel Vetter1f83fee2012-11-15 17:17:22 +0100128 ret = wait_event_interruptible_timeout(error->reset_queue,
129 EXIT_COND,
130 10*HZ);
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200131 if (ret == 0) {
132 DRM_ERROR("Timed out waiting for the gpu reset to complete\n");
133 return -EIO;
134 } else if (ret < 0) {
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100135 return ret;
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200136 }
Daniel Vetter1f83fee2012-11-15 17:17:22 +0100137#undef EXIT_COND
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100138
Chris Wilson21dd3732011-01-26 15:55:56 +0000139 return 0;
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100140}
141
Chris Wilson54cf91d2010-11-25 18:00:26 +0000142int i915_mutex_lock_interruptible(struct drm_device *dev)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100143{
Daniel Vetter33196de2012-11-14 17:14:05 +0100144 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson76c1dec2010-09-25 11:22:51 +0100145 int ret;
146
Daniel Vetter33196de2012-11-14 17:14:05 +0100147 ret = i915_gem_wait_for_error(&dev_priv->gpu_error);
Chris Wilson76c1dec2010-09-25 11:22:51 +0100148 if (ret)
149 return ret;
150
151 ret = mutex_lock_interruptible(&dev->struct_mutex);
152 if (ret)
153 return ret;
154
Chris Wilson23bc5982010-09-29 16:10:57 +0100155 WARN_ON(i915_verify_lists(dev));
Chris Wilson76c1dec2010-09-25 11:22:51 +0100156 return 0;
157}
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100158
Chris Wilson7d1c4802010-08-07 21:45:03 +0100159static inline bool
Chris Wilson05394f32010-11-08 19:18:58 +0000160i915_gem_object_is_inactive(struct drm_i915_gem_object *obj)
Chris Wilson7d1c4802010-08-07 21:45:03 +0100161{
Ben Widawsky98438772013-07-31 17:00:12 -0700162 return i915_gem_obj_bound_any(obj) && !obj->active;
Chris Wilson7d1c4802010-08-07 21:45:03 +0100163}
164
Eric Anholt673a3942008-07-30 12:06:12 -0700165int
166i915_gem_init_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000167 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700168{
Ben Widawsky93d18792013-01-17 12:45:17 -0800169 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700170 struct drm_i915_gem_init *args = data;
Chris Wilson20217462010-11-23 15:26:33 +0000171
Daniel Vetter7bb6fb82012-04-24 08:22:52 +0200172 if (drm_core_check_feature(dev, DRIVER_MODESET))
173 return -ENODEV;
174
Chris Wilson20217462010-11-23 15:26:33 +0000175 if (args->gtt_start >= args->gtt_end ||
176 (args->gtt_end | args->gtt_start) & (PAGE_SIZE - 1))
177 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700178
Daniel Vetterf534bc02012-03-26 22:37:04 +0200179 /* GEM with user mode setting was never supported on ilk and later. */
180 if (INTEL_INFO(dev)->gen >= 5)
181 return -ENODEV;
182
Eric Anholt673a3942008-07-30 12:06:12 -0700183 mutex_lock(&dev->struct_mutex);
Ben Widawskyd7e50082012-12-18 10:31:25 -0800184 i915_gem_setup_global_gtt(dev, args->gtt_start, args->gtt_end,
185 args->gtt_end);
Ben Widawsky93d18792013-01-17 12:45:17 -0800186 dev_priv->gtt.mappable_end = args->gtt_end;
Eric Anholt673a3942008-07-30 12:06:12 -0700187 mutex_unlock(&dev->struct_mutex);
188
Chris Wilson20217462010-11-23 15:26:33 +0000189 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700190}
191
Eric Anholt5a125c32008-10-22 21:40:13 -0700192int
193i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000194 struct drm_file *file)
Eric Anholt5a125c32008-10-22 21:40:13 -0700195{
Chris Wilson73aa8082010-09-30 11:46:12 +0100196 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt5a125c32008-10-22 21:40:13 -0700197 struct drm_i915_gem_get_aperture *args = data;
Chris Wilson6299f992010-11-24 12:23:44 +0000198 struct drm_i915_gem_object *obj;
199 size_t pinned;
Eric Anholt5a125c32008-10-22 21:40:13 -0700200
Chris Wilson6299f992010-11-24 12:23:44 +0000201 pinned = 0;
Chris Wilson73aa8082010-09-30 11:46:12 +0100202 mutex_lock(&dev->struct_mutex);
Ben Widawsky35c20a62013-05-31 11:28:48 -0700203 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list)
Chris Wilson1b502472012-04-24 15:47:30 +0100204 if (obj->pin_count)
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700205 pinned += i915_gem_obj_ggtt_size(obj);
Chris Wilson73aa8082010-09-30 11:46:12 +0100206 mutex_unlock(&dev->struct_mutex);
Eric Anholt5a125c32008-10-22 21:40:13 -0700207
Ben Widawsky853ba5d2013-07-16 16:50:05 -0700208 args->aper_size = dev_priv->gtt.base.total;
Akshay Joshi0206e352011-08-16 15:34:10 -0400209 args->aper_available_size = args->aper_size - pinned;
Chris Wilson6299f992010-11-24 12:23:44 +0000210
Eric Anholt5a125c32008-10-22 21:40:13 -0700211 return 0;
212}
213
Chris Wilson42dcedd2012-11-15 11:32:30 +0000214void *i915_gem_object_alloc(struct drm_device *dev)
215{
216 struct drm_i915_private *dev_priv = dev->dev_private;
217 return kmem_cache_alloc(dev_priv->slab, GFP_KERNEL | __GFP_ZERO);
218}
219
220void i915_gem_object_free(struct drm_i915_gem_object *obj)
221{
222 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
223 kmem_cache_free(dev_priv->slab, obj);
224}
225
Dave Airlieff72145b2011-02-07 12:16:14 +1000226static int
227i915_gem_create(struct drm_file *file,
228 struct drm_device *dev,
229 uint64_t size,
230 uint32_t *handle_p)
Eric Anholt673a3942008-07-30 12:06:12 -0700231{
Chris Wilson05394f32010-11-08 19:18:58 +0000232 struct drm_i915_gem_object *obj;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300233 int ret;
234 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700235
Dave Airlieff72145b2011-02-07 12:16:14 +1000236 size = roundup(size, PAGE_SIZE);
Chris Wilson8ffc0242011-09-14 14:14:28 +0200237 if (size == 0)
238 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700239
240 /* Allocate the new object */
Dave Airlieff72145b2011-02-07 12:16:14 +1000241 obj = i915_gem_alloc_object(dev, size);
Eric Anholt673a3942008-07-30 12:06:12 -0700242 if (obj == NULL)
243 return -ENOMEM;
244
Chris Wilson05394f32010-11-08 19:18:58 +0000245 ret = drm_gem_handle_create(file, &obj->base, &handle);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100246 /* drop reference from allocate - handle holds it now */
Daniel Vetterd861e332013-07-24 23:25:03 +0200247 drm_gem_object_unreference_unlocked(&obj->base);
248 if (ret)
249 return ret;
Chris Wilson202f2fe2010-10-14 13:20:40 +0100250
Dave Airlieff72145b2011-02-07 12:16:14 +1000251 *handle_p = handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700252 return 0;
253}
254
Dave Airlieff72145b2011-02-07 12:16:14 +1000255int
256i915_gem_dumb_create(struct drm_file *file,
257 struct drm_device *dev,
258 struct drm_mode_create_dumb *args)
259{
260 /* have to work out size/pitch and return them */
Chris Wilsoned0291f2011-03-19 08:21:45 +0000261 args->pitch = ALIGN(args->width * ((args->bpp + 7) / 8), 64);
Dave Airlieff72145b2011-02-07 12:16:14 +1000262 args->size = args->pitch * args->height;
263 return i915_gem_create(file, dev,
264 args->size, &args->handle);
265}
266
Dave Airlieff72145b2011-02-07 12:16:14 +1000267/**
268 * Creates a new mm object and returns a handle to it.
269 */
270int
271i915_gem_create_ioctl(struct drm_device *dev, void *data,
272 struct drm_file *file)
273{
274 struct drm_i915_gem_create *args = data;
Daniel Vetter63ed2cb2012-04-23 16:50:50 +0200275
Dave Airlieff72145b2011-02-07 12:16:14 +1000276 return i915_gem_create(file, dev,
277 args->size, &args->handle);
278}
279
Daniel Vetter8c599672011-12-14 13:57:31 +0100280static inline int
Daniel Vetter8461d222011-12-14 13:57:32 +0100281__copy_to_user_swizzled(char __user *cpu_vaddr,
282 const char *gpu_vaddr, int gpu_offset,
283 int length)
284{
285 int ret, cpu_offset = 0;
286
287 while (length > 0) {
288 int cacheline_end = ALIGN(gpu_offset + 1, 64);
289 int this_length = min(cacheline_end - gpu_offset, length);
290 int swizzled_gpu_offset = gpu_offset ^ 64;
291
292 ret = __copy_to_user(cpu_vaddr + cpu_offset,
293 gpu_vaddr + swizzled_gpu_offset,
294 this_length);
295 if (ret)
296 return ret + length;
297
298 cpu_offset += this_length;
299 gpu_offset += this_length;
300 length -= this_length;
301 }
302
303 return 0;
304}
305
306static inline int
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700307__copy_from_user_swizzled(char *gpu_vaddr, int gpu_offset,
308 const char __user *cpu_vaddr,
Daniel Vetter8c599672011-12-14 13:57:31 +0100309 int length)
310{
311 int ret, cpu_offset = 0;
312
313 while (length > 0) {
314 int cacheline_end = ALIGN(gpu_offset + 1, 64);
315 int this_length = min(cacheline_end - gpu_offset, length);
316 int swizzled_gpu_offset = gpu_offset ^ 64;
317
318 ret = __copy_from_user(gpu_vaddr + swizzled_gpu_offset,
319 cpu_vaddr + cpu_offset,
320 this_length);
321 if (ret)
322 return ret + length;
323
324 cpu_offset += this_length;
325 gpu_offset += this_length;
326 length -= this_length;
327 }
328
329 return 0;
330}
331
Daniel Vetterd174bd62012-03-25 19:47:40 +0200332/* Per-page copy function for the shmem pread fastpath.
333 * Flushes invalid cachelines before reading the target if
334 * needs_clflush is set. */
Eric Anholteb014592009-03-10 11:44:52 -0700335static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200336shmem_pread_fast(struct page *page, int shmem_page_offset, int page_length,
337 char __user *user_data,
338 bool page_do_bit17_swizzling, bool needs_clflush)
339{
340 char *vaddr;
341 int ret;
342
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200343 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200344 return -EINVAL;
345
346 vaddr = kmap_atomic(page);
347 if (needs_clflush)
348 drm_clflush_virt_range(vaddr + shmem_page_offset,
349 page_length);
350 ret = __copy_to_user_inatomic(user_data,
351 vaddr + shmem_page_offset,
352 page_length);
353 kunmap_atomic(vaddr);
354
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100355 return ret ? -EFAULT : 0;
Daniel Vetterd174bd62012-03-25 19:47:40 +0200356}
357
Daniel Vetter23c18c72012-03-25 19:47:42 +0200358static void
359shmem_clflush_swizzled_range(char *addr, unsigned long length,
360 bool swizzled)
361{
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200362 if (unlikely(swizzled)) {
Daniel Vetter23c18c72012-03-25 19:47:42 +0200363 unsigned long start = (unsigned long) addr;
364 unsigned long end = (unsigned long) addr + length;
365
366 /* For swizzling simply ensure that we always flush both
367 * channels. Lame, but simple and it works. Swizzled
368 * pwrite/pread is far from a hotpath - current userspace
369 * doesn't use it at all. */
370 start = round_down(start, 128);
371 end = round_up(end, 128);
372
373 drm_clflush_virt_range((void *)start, end - start);
374 } else {
375 drm_clflush_virt_range(addr, length);
376 }
377
378}
379
Daniel Vetterd174bd62012-03-25 19:47:40 +0200380/* Only difference to the fast-path function is that this can handle bit17
381 * and uses non-atomic copy and kmap functions. */
382static int
383shmem_pread_slow(struct page *page, int shmem_page_offset, int page_length,
384 char __user *user_data,
385 bool page_do_bit17_swizzling, bool needs_clflush)
386{
387 char *vaddr;
388 int ret;
389
390 vaddr = kmap(page);
391 if (needs_clflush)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200392 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
393 page_length,
394 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200395
396 if (page_do_bit17_swizzling)
397 ret = __copy_to_user_swizzled(user_data,
398 vaddr, shmem_page_offset,
399 page_length);
400 else
401 ret = __copy_to_user(user_data,
402 vaddr + shmem_page_offset,
403 page_length);
404 kunmap(page);
405
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100406 return ret ? - EFAULT : 0;
Daniel Vetterd174bd62012-03-25 19:47:40 +0200407}
408
Eric Anholteb014592009-03-10 11:44:52 -0700409static int
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200410i915_gem_shmem_pread(struct drm_device *dev,
411 struct drm_i915_gem_object *obj,
412 struct drm_i915_gem_pread *args,
413 struct drm_file *file)
Eric Anholteb014592009-03-10 11:44:52 -0700414{
Daniel Vetter8461d222011-12-14 13:57:32 +0100415 char __user *user_data;
Eric Anholteb014592009-03-10 11:44:52 -0700416 ssize_t remain;
Daniel Vetter8461d222011-12-14 13:57:32 +0100417 loff_t offset;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100418 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8461d222011-12-14 13:57:32 +0100419 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vetter96d79b52012-03-25 19:47:36 +0200420 int prefaulted = 0;
Daniel Vetter84897312012-03-25 19:47:31 +0200421 int needs_clflush = 0;
Imre Deak67d5a502013-02-18 19:28:02 +0200422 struct sg_page_iter sg_iter;
Eric Anholteb014592009-03-10 11:44:52 -0700423
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200424 user_data = to_user_ptr(args->data_ptr);
Eric Anholteb014592009-03-10 11:44:52 -0700425 remain = args->size;
426
Daniel Vetter8461d222011-12-14 13:57:32 +0100427 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700428
Daniel Vetter84897312012-03-25 19:47:31 +0200429 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU)) {
430 /* If we're not in the cpu read domain, set ourself into the gtt
431 * read domain and manually flush cachelines (if required). This
432 * optimizes for the case when the gpu will dirty the data
433 * anyway again before the next pread happens. */
Chris Wilsonc76ce032013-08-08 14:41:03 +0100434 needs_clflush = !cpu_cache_is_coherent(dev, obj->cache_level);
Ben Widawsky98438772013-07-31 17:00:12 -0700435 if (i915_gem_obj_bound_any(obj)) {
Chris Wilson6c085a72012-08-20 11:40:46 +0200436 ret = i915_gem_object_set_to_gtt_domain(obj, false);
437 if (ret)
438 return ret;
439 }
Daniel Vetter84897312012-03-25 19:47:31 +0200440 }
Eric Anholteb014592009-03-10 11:44:52 -0700441
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100442 ret = i915_gem_object_get_pages(obj);
443 if (ret)
444 return ret;
445
446 i915_gem_object_pin_pages(obj);
447
Eric Anholteb014592009-03-10 11:44:52 -0700448 offset = args->offset;
Daniel Vetter8461d222011-12-14 13:57:32 +0100449
Imre Deak67d5a502013-02-18 19:28:02 +0200450 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents,
451 offset >> PAGE_SHIFT) {
Imre Deak2db76d72013-03-26 15:14:18 +0200452 struct page *page = sg_page_iter_page(&sg_iter);
Chris Wilson9da3da62012-06-01 15:20:22 +0100453
454 if (remain <= 0)
455 break;
456
Eric Anholteb014592009-03-10 11:44:52 -0700457 /* Operation in this page
458 *
Eric Anholteb014592009-03-10 11:44:52 -0700459 * shmem_page_offset = offset within page in shmem file
Eric Anholteb014592009-03-10 11:44:52 -0700460 * page_length = bytes to copy for this page
461 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100462 shmem_page_offset = offset_in_page(offset);
Eric Anholteb014592009-03-10 11:44:52 -0700463 page_length = remain;
464 if ((shmem_page_offset + page_length) > PAGE_SIZE)
465 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholteb014592009-03-10 11:44:52 -0700466
Daniel Vetter8461d222011-12-14 13:57:32 +0100467 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
468 (page_to_phys(page) & (1 << 17)) != 0;
469
Daniel Vetterd174bd62012-03-25 19:47:40 +0200470 ret = shmem_pread_fast(page, shmem_page_offset, page_length,
471 user_data, page_do_bit17_swizzling,
472 needs_clflush);
473 if (ret == 0)
474 goto next_page;
Eric Anholteb014592009-03-10 11:44:52 -0700475
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200476 mutex_unlock(&dev->struct_mutex);
477
Xiong Zhang0b74b502013-07-19 13:51:24 +0800478 if (likely(!i915_prefault_disable) && !prefaulted) {
Daniel Vetterf56f8212012-03-25 19:47:41 +0200479 ret = fault_in_multipages_writeable(user_data, remain);
Daniel Vetter96d79b52012-03-25 19:47:36 +0200480 /* Userspace is tricking us, but we've already clobbered
481 * its pages with the prefault and promised to write the
482 * data up to the first fault. Hence ignore any errors
483 * and just continue. */
484 (void)ret;
485 prefaulted = 1;
486 }
487
Daniel Vetterd174bd62012-03-25 19:47:40 +0200488 ret = shmem_pread_slow(page, shmem_page_offset, page_length,
489 user_data, page_do_bit17_swizzling,
490 needs_clflush);
Eric Anholteb014592009-03-10 11:44:52 -0700491
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200492 mutex_lock(&dev->struct_mutex);
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100493
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200494next_page:
Chris Wilsone5281cc2010-10-28 13:45:36 +0100495 mark_page_accessed(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100496
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100497 if (ret)
Daniel Vetter8461d222011-12-14 13:57:32 +0100498 goto out;
Daniel Vetter8461d222011-12-14 13:57:32 +0100499
Eric Anholteb014592009-03-10 11:44:52 -0700500 remain -= page_length;
Daniel Vetter8461d222011-12-14 13:57:32 +0100501 user_data += page_length;
Eric Anholteb014592009-03-10 11:44:52 -0700502 offset += page_length;
503 }
504
Chris Wilson4f27b752010-10-14 15:26:45 +0100505out:
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100506 i915_gem_object_unpin_pages(obj);
507
Eric Anholteb014592009-03-10 11:44:52 -0700508 return ret;
509}
510
Eric Anholt673a3942008-07-30 12:06:12 -0700511/**
512 * Reads data from the object referenced by handle.
513 *
514 * On error, the contents of *data are undefined.
515 */
516int
517i915_gem_pread_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000518 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700519{
520 struct drm_i915_gem_pread *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000521 struct drm_i915_gem_object *obj;
Chris Wilson35b62a82010-09-26 20:23:38 +0100522 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700523
Chris Wilson51311d02010-11-17 09:10:42 +0000524 if (args->size == 0)
525 return 0;
526
527 if (!access_ok(VERIFY_WRITE,
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200528 to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +0000529 args->size))
530 return -EFAULT;
531
Chris Wilson4f27b752010-10-14 15:26:45 +0100532 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100533 if (ret)
Chris Wilson4f27b752010-10-14 15:26:45 +0100534 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700535
Chris Wilson05394f32010-11-08 19:18:58 +0000536 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000537 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100538 ret = -ENOENT;
539 goto unlock;
Chris Wilson4f27b752010-10-14 15:26:45 +0100540 }
Eric Anholt673a3942008-07-30 12:06:12 -0700541
Chris Wilson7dcd2492010-09-26 20:21:44 +0100542 /* Bounds check source. */
Chris Wilson05394f32010-11-08 19:18:58 +0000543 if (args->offset > obj->base.size ||
544 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100545 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100546 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100547 }
548
Daniel Vetter1286ff72012-05-10 15:25:09 +0200549 /* prime objects have no backing filp to GEM pread/pwrite
550 * pages from.
551 */
552 if (!obj->base.filp) {
553 ret = -EINVAL;
554 goto out;
555 }
556
Chris Wilsondb53a302011-02-03 11:57:46 +0000557 trace_i915_gem_object_pread(obj, args->offset, args->size);
558
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200559 ret = i915_gem_shmem_pread(dev, obj, args, file);
Eric Anholt673a3942008-07-30 12:06:12 -0700560
Chris Wilson35b62a82010-09-26 20:23:38 +0100561out:
Chris Wilson05394f32010-11-08 19:18:58 +0000562 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100563unlock:
Chris Wilson4f27b752010-10-14 15:26:45 +0100564 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700565 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700566}
567
Keith Packard0839ccb2008-10-30 19:38:48 -0700568/* This is the fast write path which cannot handle
569 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700570 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700571
Keith Packard0839ccb2008-10-30 19:38:48 -0700572static inline int
573fast_user_write(struct io_mapping *mapping,
574 loff_t page_base, int page_offset,
575 char __user *user_data,
576 int length)
577{
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700578 void __iomem *vaddr_atomic;
579 void *vaddr;
Keith Packard0839ccb2008-10-30 19:38:48 -0700580 unsigned long unwritten;
581
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700582 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base);
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700583 /* We can use the cpu mem copy function because this is X86. */
584 vaddr = (void __force*)vaddr_atomic + page_offset;
585 unwritten = __copy_from_user_inatomic_nocache(vaddr,
Keith Packard0839ccb2008-10-30 19:38:48 -0700586 user_data, length);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700587 io_mapping_unmap_atomic(vaddr_atomic);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100588 return unwritten;
Keith Packard0839ccb2008-10-30 19:38:48 -0700589}
590
Eric Anholt3de09aa2009-03-09 09:42:23 -0700591/**
592 * This is the fast pwrite path, where we copy the data directly from the
593 * user into the GTT, uncached.
594 */
Eric Anholt673a3942008-07-30 12:06:12 -0700595static int
Chris Wilson05394f32010-11-08 19:18:58 +0000596i915_gem_gtt_pwrite_fast(struct drm_device *dev,
597 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -0700598 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000599 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700600{
Keith Packard0839ccb2008-10-30 19:38:48 -0700601 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700602 ssize_t remain;
Keith Packard0839ccb2008-10-30 19:38:48 -0700603 loff_t offset, page_base;
Eric Anholt673a3942008-07-30 12:06:12 -0700604 char __user *user_data;
Daniel Vetter935aaa62012-03-25 19:47:35 +0200605 int page_offset, page_length, ret;
606
Ben Widawskyc37e2202013-07-31 16:59:58 -0700607 ret = i915_gem_obj_ggtt_pin(obj, 0, true, true);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200608 if (ret)
609 goto out;
610
611 ret = i915_gem_object_set_to_gtt_domain(obj, true);
612 if (ret)
613 goto out_unpin;
614
615 ret = i915_gem_object_put_fence(obj);
616 if (ret)
617 goto out_unpin;
Eric Anholt673a3942008-07-30 12:06:12 -0700618
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200619 user_data = to_user_ptr(args->data_ptr);
Eric Anholt673a3942008-07-30 12:06:12 -0700620 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700621
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700622 offset = i915_gem_obj_ggtt_offset(obj) + args->offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700623
624 while (remain > 0) {
625 /* Operation in this page
626 *
Keith Packard0839ccb2008-10-30 19:38:48 -0700627 * page_base = page offset within aperture
628 * page_offset = offset within page
629 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -0700630 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100631 page_base = offset & PAGE_MASK;
632 page_offset = offset_in_page(offset);
Keith Packard0839ccb2008-10-30 19:38:48 -0700633 page_length = remain;
634 if ((page_offset + remain) > PAGE_SIZE)
635 page_length = PAGE_SIZE - page_offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700636
Keith Packard0839ccb2008-10-30 19:38:48 -0700637 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -0700638 * source page isn't available. Return the error and we'll
639 * retry in the slow path.
Keith Packard0839ccb2008-10-30 19:38:48 -0700640 */
Ben Widawsky5d4545a2013-01-17 12:45:15 -0800641 if (fast_user_write(dev_priv->gtt.mappable, page_base,
Daniel Vetter935aaa62012-03-25 19:47:35 +0200642 page_offset, user_data, page_length)) {
643 ret = -EFAULT;
644 goto out_unpin;
645 }
Eric Anholt673a3942008-07-30 12:06:12 -0700646
Keith Packard0839ccb2008-10-30 19:38:48 -0700647 remain -= page_length;
648 user_data += page_length;
649 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700650 }
Eric Anholt673a3942008-07-30 12:06:12 -0700651
Daniel Vetter935aaa62012-03-25 19:47:35 +0200652out_unpin:
653 i915_gem_object_unpin(obj);
654out:
Eric Anholt3de09aa2009-03-09 09:42:23 -0700655 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700656}
657
Daniel Vetterd174bd62012-03-25 19:47:40 +0200658/* Per-page copy function for the shmem pwrite fastpath.
659 * Flushes invalid cachelines before writing to the target if
660 * needs_clflush_before is set and flushes out any written cachelines after
661 * writing if needs_clflush is set. */
Eric Anholt673a3942008-07-30 12:06:12 -0700662static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200663shmem_pwrite_fast(struct page *page, int shmem_page_offset, int page_length,
664 char __user *user_data,
665 bool page_do_bit17_swizzling,
666 bool needs_clflush_before,
667 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700668{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200669 char *vaddr;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700670 int ret;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700671
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200672 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200673 return -EINVAL;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700674
Daniel Vetterd174bd62012-03-25 19:47:40 +0200675 vaddr = kmap_atomic(page);
676 if (needs_clflush_before)
677 drm_clflush_virt_range(vaddr + shmem_page_offset,
678 page_length);
679 ret = __copy_from_user_inatomic_nocache(vaddr + shmem_page_offset,
680 user_data,
681 page_length);
682 if (needs_clflush_after)
683 drm_clflush_virt_range(vaddr + shmem_page_offset,
684 page_length);
685 kunmap_atomic(vaddr);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700686
Chris Wilson755d2212012-09-04 21:02:55 +0100687 return ret ? -EFAULT : 0;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700688}
689
Daniel Vetterd174bd62012-03-25 19:47:40 +0200690/* Only difference to the fast-path function is that this can handle bit17
691 * and uses non-atomic copy and kmap functions. */
Eric Anholt3043c602008-10-02 12:24:47 -0700692static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200693shmem_pwrite_slow(struct page *page, int shmem_page_offset, int page_length,
694 char __user *user_data,
695 bool page_do_bit17_swizzling,
696 bool needs_clflush_before,
697 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700698{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200699 char *vaddr;
700 int ret;
Eric Anholt40123c12009-03-09 13:42:30 -0700701
Daniel Vetterd174bd62012-03-25 19:47:40 +0200702 vaddr = kmap(page);
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200703 if (unlikely(needs_clflush_before || page_do_bit17_swizzling))
Daniel Vetter23c18c72012-03-25 19:47:42 +0200704 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
705 page_length,
706 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200707 if (page_do_bit17_swizzling)
708 ret = __copy_from_user_swizzled(vaddr, shmem_page_offset,
Chris Wilsone5281cc2010-10-28 13:45:36 +0100709 user_data,
710 page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200711 else
712 ret = __copy_from_user(vaddr + shmem_page_offset,
713 user_data,
714 page_length);
715 if (needs_clflush_after)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200716 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
717 page_length,
718 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200719 kunmap(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100720
Chris Wilson755d2212012-09-04 21:02:55 +0100721 return ret ? -EFAULT : 0;
Eric Anholt40123c12009-03-09 13:42:30 -0700722}
723
Eric Anholt40123c12009-03-09 13:42:30 -0700724static int
Daniel Vettere244a442012-03-25 19:47:28 +0200725i915_gem_shmem_pwrite(struct drm_device *dev,
726 struct drm_i915_gem_object *obj,
727 struct drm_i915_gem_pwrite *args,
728 struct drm_file *file)
Eric Anholt40123c12009-03-09 13:42:30 -0700729{
Eric Anholt40123c12009-03-09 13:42:30 -0700730 ssize_t remain;
Daniel Vetter8c599672011-12-14 13:57:31 +0100731 loff_t offset;
732 char __user *user_data;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100733 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8c599672011-12-14 13:57:31 +0100734 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vettere244a442012-03-25 19:47:28 +0200735 int hit_slowpath = 0;
Daniel Vetter58642882012-03-25 19:47:37 +0200736 int needs_clflush_after = 0;
737 int needs_clflush_before = 0;
Imre Deak67d5a502013-02-18 19:28:02 +0200738 struct sg_page_iter sg_iter;
Eric Anholt40123c12009-03-09 13:42:30 -0700739
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200740 user_data = to_user_ptr(args->data_ptr);
Eric Anholt40123c12009-03-09 13:42:30 -0700741 remain = args->size;
742
Daniel Vetter8c599672011-12-14 13:57:31 +0100743 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700744
Daniel Vetter58642882012-03-25 19:47:37 +0200745 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
746 /* If we're not in the cpu write domain, set ourself into the gtt
747 * write domain and manually flush cachelines (if required). This
748 * optimizes for the case when the gpu will use the data
749 * right away and we therefore have to clflush anyway. */
Chris Wilson2c225692013-08-09 12:26:45 +0100750 needs_clflush_after = cpu_write_needs_clflush(obj);
Ben Widawsky98438772013-07-31 17:00:12 -0700751 if (i915_gem_obj_bound_any(obj)) {
Chris Wilson6c085a72012-08-20 11:40:46 +0200752 ret = i915_gem_object_set_to_gtt_domain(obj, true);
753 if (ret)
754 return ret;
755 }
Daniel Vetter58642882012-03-25 19:47:37 +0200756 }
Chris Wilsonc76ce032013-08-08 14:41:03 +0100757 /* Same trick applies to invalidate partially written cachelines read
758 * before writing. */
759 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0)
760 needs_clflush_before =
761 !cpu_cache_is_coherent(dev, obj->cache_level);
Daniel Vetter58642882012-03-25 19:47:37 +0200762
Chris Wilson755d2212012-09-04 21:02:55 +0100763 ret = i915_gem_object_get_pages(obj);
764 if (ret)
765 return ret;
766
767 i915_gem_object_pin_pages(obj);
768
Eric Anholt40123c12009-03-09 13:42:30 -0700769 offset = args->offset;
Chris Wilson05394f32010-11-08 19:18:58 +0000770 obj->dirty = 1;
Eric Anholt40123c12009-03-09 13:42:30 -0700771
Imre Deak67d5a502013-02-18 19:28:02 +0200772 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents,
773 offset >> PAGE_SHIFT) {
Imre Deak2db76d72013-03-26 15:14:18 +0200774 struct page *page = sg_page_iter_page(&sg_iter);
Daniel Vetter58642882012-03-25 19:47:37 +0200775 int partial_cacheline_write;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100776
Chris Wilson9da3da62012-06-01 15:20:22 +0100777 if (remain <= 0)
778 break;
779
Eric Anholt40123c12009-03-09 13:42:30 -0700780 /* Operation in this page
781 *
Eric Anholt40123c12009-03-09 13:42:30 -0700782 * shmem_page_offset = offset within page in shmem file
Eric Anholt40123c12009-03-09 13:42:30 -0700783 * page_length = bytes to copy for this page
784 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100785 shmem_page_offset = offset_in_page(offset);
Eric Anholt40123c12009-03-09 13:42:30 -0700786
787 page_length = remain;
788 if ((shmem_page_offset + page_length) > PAGE_SIZE)
789 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700790
Daniel Vetter58642882012-03-25 19:47:37 +0200791 /* If we don't overwrite a cacheline completely we need to be
792 * careful to have up-to-date data by first clflushing. Don't
793 * overcomplicate things and flush the entire patch. */
794 partial_cacheline_write = needs_clflush_before &&
795 ((shmem_page_offset | page_length)
796 & (boot_cpu_data.x86_clflush_size - 1));
797
Daniel Vetter8c599672011-12-14 13:57:31 +0100798 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
799 (page_to_phys(page) & (1 << 17)) != 0;
800
Daniel Vetterd174bd62012-03-25 19:47:40 +0200801 ret = shmem_pwrite_fast(page, shmem_page_offset, page_length,
802 user_data, page_do_bit17_swizzling,
803 partial_cacheline_write,
804 needs_clflush_after);
805 if (ret == 0)
806 goto next_page;
Eric Anholt40123c12009-03-09 13:42:30 -0700807
Daniel Vettere244a442012-03-25 19:47:28 +0200808 hit_slowpath = 1;
Daniel Vettere244a442012-03-25 19:47:28 +0200809 mutex_unlock(&dev->struct_mutex);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200810 ret = shmem_pwrite_slow(page, shmem_page_offset, page_length,
811 user_data, page_do_bit17_swizzling,
812 partial_cacheline_write,
813 needs_clflush_after);
Eric Anholt40123c12009-03-09 13:42:30 -0700814
Daniel Vettere244a442012-03-25 19:47:28 +0200815 mutex_lock(&dev->struct_mutex);
Chris Wilson755d2212012-09-04 21:02:55 +0100816
Daniel Vettere244a442012-03-25 19:47:28 +0200817next_page:
Chris Wilsone5281cc2010-10-28 13:45:36 +0100818 set_page_dirty(page);
819 mark_page_accessed(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100820
Chris Wilson755d2212012-09-04 21:02:55 +0100821 if (ret)
Daniel Vetter8c599672011-12-14 13:57:31 +0100822 goto out;
Daniel Vetter8c599672011-12-14 13:57:31 +0100823
Eric Anholt40123c12009-03-09 13:42:30 -0700824 remain -= page_length;
Daniel Vetter8c599672011-12-14 13:57:31 +0100825 user_data += page_length;
Eric Anholt40123c12009-03-09 13:42:30 -0700826 offset += page_length;
827 }
828
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100829out:
Chris Wilson755d2212012-09-04 21:02:55 +0100830 i915_gem_object_unpin_pages(obj);
831
Daniel Vettere244a442012-03-25 19:47:28 +0200832 if (hit_slowpath) {
Daniel Vetter8dcf0152012-11-15 16:53:58 +0100833 /*
834 * Fixup: Flush cpu caches in case we didn't flush the dirty
835 * cachelines in-line while writing and the object moved
836 * out of the cpu write domain while we've dropped the lock.
837 */
838 if (!needs_clflush_after &&
839 obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
Chris Wilson000433b2013-08-08 14:41:09 +0100840 if (i915_gem_clflush_object(obj, obj->pin_display))
841 i915_gem_chipset_flush(dev);
Daniel Vettere244a442012-03-25 19:47:28 +0200842 }
Daniel Vetter8c599672011-12-14 13:57:31 +0100843 }
Eric Anholt40123c12009-03-09 13:42:30 -0700844
Daniel Vetter58642882012-03-25 19:47:37 +0200845 if (needs_clflush_after)
Ben Widawskye76e9ae2012-11-04 09:21:27 -0800846 i915_gem_chipset_flush(dev);
Daniel Vetter58642882012-03-25 19:47:37 +0200847
Eric Anholt40123c12009-03-09 13:42:30 -0700848 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700849}
850
851/**
852 * Writes data to the object referenced by handle.
853 *
854 * On error, the contents of the buffer that were to be modified are undefined.
855 */
856int
857i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100858 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700859{
860 struct drm_i915_gem_pwrite *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000861 struct drm_i915_gem_object *obj;
Chris Wilson51311d02010-11-17 09:10:42 +0000862 int ret;
863
864 if (args->size == 0)
865 return 0;
866
867 if (!access_ok(VERIFY_READ,
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200868 to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +0000869 args->size))
870 return -EFAULT;
871
Xiong Zhang0b74b502013-07-19 13:51:24 +0800872 if (likely(!i915_prefault_disable)) {
873 ret = fault_in_multipages_readable(to_user_ptr(args->data_ptr),
874 args->size);
875 if (ret)
876 return -EFAULT;
877 }
Eric Anholt673a3942008-07-30 12:06:12 -0700878
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100879 ret = i915_mutex_lock_interruptible(dev);
880 if (ret)
881 return ret;
882
Chris Wilson05394f32010-11-08 19:18:58 +0000883 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000884 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100885 ret = -ENOENT;
886 goto unlock;
887 }
Eric Anholt673a3942008-07-30 12:06:12 -0700888
Chris Wilson7dcd2492010-09-26 20:21:44 +0100889 /* Bounds check destination. */
Chris Wilson05394f32010-11-08 19:18:58 +0000890 if (args->offset > obj->base.size ||
891 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100892 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100893 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100894 }
895
Daniel Vetter1286ff72012-05-10 15:25:09 +0200896 /* prime objects have no backing filp to GEM pread/pwrite
897 * pages from.
898 */
899 if (!obj->base.filp) {
900 ret = -EINVAL;
901 goto out;
902 }
903
Chris Wilsondb53a302011-02-03 11:57:46 +0000904 trace_i915_gem_object_pwrite(obj, args->offset, args->size);
905
Daniel Vetter935aaa62012-03-25 19:47:35 +0200906 ret = -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -0700907 /* We can only do the GTT pwrite on untiled buffers, as otherwise
908 * it would end up going through the fenced access, and we'll get
909 * different detiling behavior between reading and writing.
910 * pread/pwrite currently are reading and writing from the CPU
911 * perspective, requiring manual detiling by the client.
912 */
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100913 if (obj->phys_obj) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100914 ret = i915_gem_phys_pwrite(dev, obj, args, file);
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100915 goto out;
916 }
917
Chris Wilson2c225692013-08-09 12:26:45 +0100918 if (obj->tiling_mode == I915_TILING_NONE &&
919 obj->base.write_domain != I915_GEM_DOMAIN_CPU &&
920 cpu_write_needs_clflush(obj)) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100921 ret = i915_gem_gtt_pwrite_fast(dev, obj, args, file);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200922 /* Note that the gtt paths might fail with non-page-backed user
923 * pointers (e.g. gtt mappings when moving data between
924 * textures). Fallback to the shmem path in that case. */
Eric Anholt40123c12009-03-09 13:42:30 -0700925 }
Eric Anholt673a3942008-07-30 12:06:12 -0700926
Chris Wilson86a1ee22012-08-11 15:41:04 +0100927 if (ret == -EFAULT || ret == -ENOSPC)
Daniel Vetter935aaa62012-03-25 19:47:35 +0200928 ret = i915_gem_shmem_pwrite(dev, obj, args, file);
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100929
Chris Wilson35b62a82010-09-26 20:23:38 +0100930out:
Chris Wilson05394f32010-11-08 19:18:58 +0000931 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100932unlock:
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100933 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -0700934 return ret;
935}
936
Chris Wilsonb3612372012-08-24 09:35:08 +0100937int
Daniel Vetter33196de2012-11-14 17:14:05 +0100938i915_gem_check_wedge(struct i915_gpu_error *error,
Chris Wilsonb3612372012-08-24 09:35:08 +0100939 bool interruptible)
940{
Daniel Vetter1f83fee2012-11-15 17:17:22 +0100941 if (i915_reset_in_progress(error)) {
Chris Wilsonb3612372012-08-24 09:35:08 +0100942 /* Non-interruptible callers can't handle -EAGAIN, hence return
943 * -EIO unconditionally for these. */
944 if (!interruptible)
945 return -EIO;
946
Daniel Vetter1f83fee2012-11-15 17:17:22 +0100947 /* Recovery complete, but the reset failed ... */
948 if (i915_terminally_wedged(error))
Chris Wilsonb3612372012-08-24 09:35:08 +0100949 return -EIO;
950
951 return -EAGAIN;
952 }
953
954 return 0;
955}
956
957/*
958 * Compare seqno against outstanding lazy request. Emit a request if they are
959 * equal.
960 */
961static int
962i915_gem_check_olr(struct intel_ring_buffer *ring, u32 seqno)
963{
964 int ret;
965
966 BUG_ON(!mutex_is_locked(&ring->dev->struct_mutex));
967
968 ret = 0;
969 if (seqno == ring->outstanding_lazy_request)
Mika Kuoppala0025c072013-06-12 12:35:30 +0300970 ret = i915_add_request(ring, NULL);
Chris Wilsonb3612372012-08-24 09:35:08 +0100971
972 return ret;
973}
974
975/**
976 * __wait_seqno - wait until execution of seqno has finished
977 * @ring: the ring expected to report seqno
978 * @seqno: duh!
Daniel Vetterf69061b2012-12-06 09:01:42 +0100979 * @reset_counter: reset sequence associated with the given seqno
Chris Wilsonb3612372012-08-24 09:35:08 +0100980 * @interruptible: do an interruptible wait (normally yes)
981 * @timeout: in - how long to wait (NULL forever); out - how much time remaining
982 *
Daniel Vetterf69061b2012-12-06 09:01:42 +0100983 * Note: It is of utmost importance that the passed in seqno and reset_counter
984 * values have been read by the caller in an smp safe manner. Where read-side
985 * locks are involved, it is sufficient to read the reset_counter before
986 * unlocking the lock that protects the seqno. For lockless tricks, the
987 * reset_counter _must_ be read before, and an appropriate smp_rmb must be
988 * inserted.
989 *
Chris Wilsonb3612372012-08-24 09:35:08 +0100990 * Returns 0 if the seqno was found within the alloted time. Else returns the
991 * errno with remaining time filled in timeout argument.
992 */
993static int __wait_seqno(struct intel_ring_buffer *ring, u32 seqno,
Daniel Vetterf69061b2012-12-06 09:01:42 +0100994 unsigned reset_counter,
Chris Wilsonb3612372012-08-24 09:35:08 +0100995 bool interruptible, struct timespec *timeout)
996{
997 drm_i915_private_t *dev_priv = ring->dev->dev_private;
998 struct timespec before, now, wait_time={1,0};
999 unsigned long timeout_jiffies;
1000 long end;
1001 bool wait_forever = true;
1002 int ret;
1003
Paulo Zanonic67a4702013-08-19 13:18:09 -03001004 WARN(dev_priv->pc8.irqs_disabled, "IRQs disabled\n");
1005
Chris Wilsonb3612372012-08-24 09:35:08 +01001006 if (i915_seqno_passed(ring->get_seqno(ring, true), seqno))
1007 return 0;
1008
1009 trace_i915_gem_request_wait_begin(ring, seqno);
1010
1011 if (timeout != NULL) {
1012 wait_time = *timeout;
1013 wait_forever = false;
1014 }
1015
Imre Deake054cc32013-05-21 20:03:19 +03001016 timeout_jiffies = timespec_to_jiffies_timeout(&wait_time);
Chris Wilsonb3612372012-08-24 09:35:08 +01001017
1018 if (WARN_ON(!ring->irq_get(ring)))
1019 return -ENODEV;
1020
1021 /* Record current time in case interrupted by signal, or wedged * */
1022 getrawmonotonic(&before);
1023
1024#define EXIT_COND \
1025 (i915_seqno_passed(ring->get_seqno(ring, false), seqno) || \
Daniel Vetterf69061b2012-12-06 09:01:42 +01001026 i915_reset_in_progress(&dev_priv->gpu_error) || \
1027 reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
Chris Wilsonb3612372012-08-24 09:35:08 +01001028 do {
1029 if (interruptible)
1030 end = wait_event_interruptible_timeout(ring->irq_queue,
1031 EXIT_COND,
1032 timeout_jiffies);
1033 else
1034 end = wait_event_timeout(ring->irq_queue, EXIT_COND,
1035 timeout_jiffies);
1036
Daniel Vetterf69061b2012-12-06 09:01:42 +01001037 /* We need to check whether any gpu reset happened in between
1038 * the caller grabbing the seqno and now ... */
1039 if (reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
1040 end = -EAGAIN;
1041
1042 /* ... but upgrade the -EGAIN to an -EIO if the gpu is truely
1043 * gone. */
Daniel Vetter33196de2012-11-14 17:14:05 +01001044 ret = i915_gem_check_wedge(&dev_priv->gpu_error, interruptible);
Chris Wilsonb3612372012-08-24 09:35:08 +01001045 if (ret)
1046 end = ret;
1047 } while (end == 0 && wait_forever);
1048
1049 getrawmonotonic(&now);
1050
1051 ring->irq_put(ring);
1052 trace_i915_gem_request_wait_end(ring, seqno);
1053#undef EXIT_COND
1054
1055 if (timeout) {
1056 struct timespec sleep_time = timespec_sub(now, before);
1057 *timeout = timespec_sub(*timeout, sleep_time);
Chris Wilson4f42f4e2013-04-26 16:22:46 +03001058 if (!timespec_valid(timeout)) /* i.e. negative time remains */
1059 set_normalized_timespec(timeout, 0, 0);
Chris Wilsonb3612372012-08-24 09:35:08 +01001060 }
1061
1062 switch (end) {
1063 case -EIO:
1064 case -EAGAIN: /* Wedged */
1065 case -ERESTARTSYS: /* Signal */
1066 return (int)end;
1067 case 0: /* Timeout */
Chris Wilsonb3612372012-08-24 09:35:08 +01001068 return -ETIME;
1069 default: /* Completed */
1070 WARN_ON(end < 0); /* We're not aware of other errors */
1071 return 0;
1072 }
1073}
1074
1075/**
1076 * Waits for a sequence number to be signaled, and cleans up the
1077 * request and object lists appropriately for that event.
1078 */
1079int
1080i915_wait_seqno(struct intel_ring_buffer *ring, uint32_t seqno)
1081{
1082 struct drm_device *dev = ring->dev;
1083 struct drm_i915_private *dev_priv = dev->dev_private;
1084 bool interruptible = dev_priv->mm.interruptible;
1085 int ret;
1086
1087 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
1088 BUG_ON(seqno == 0);
1089
Daniel Vetter33196de2012-11-14 17:14:05 +01001090 ret = i915_gem_check_wedge(&dev_priv->gpu_error, interruptible);
Chris Wilsonb3612372012-08-24 09:35:08 +01001091 if (ret)
1092 return ret;
1093
1094 ret = i915_gem_check_olr(ring, seqno);
1095 if (ret)
1096 return ret;
1097
Daniel Vetterf69061b2012-12-06 09:01:42 +01001098 return __wait_seqno(ring, seqno,
1099 atomic_read(&dev_priv->gpu_error.reset_counter),
1100 interruptible, NULL);
Chris Wilsonb3612372012-08-24 09:35:08 +01001101}
1102
Chris Wilsond26e3af2013-06-29 22:05:26 +01001103static int
1104i915_gem_object_wait_rendering__tail(struct drm_i915_gem_object *obj,
1105 struct intel_ring_buffer *ring)
1106{
1107 i915_gem_retire_requests_ring(ring);
1108
1109 /* Manually manage the write flush as we may have not yet
1110 * retired the buffer.
1111 *
1112 * Note that the last_write_seqno is always the earlier of
1113 * the two (read/write) seqno, so if we haved successfully waited,
1114 * we know we have passed the last write.
1115 */
1116 obj->last_write_seqno = 0;
1117 obj->base.write_domain &= ~I915_GEM_GPU_DOMAINS;
1118
1119 return 0;
1120}
1121
Chris Wilsonb3612372012-08-24 09:35:08 +01001122/**
1123 * Ensures that all rendering to the object has completed and the object is
1124 * safe to unbind from the GTT or access from the CPU.
1125 */
1126static __must_check int
1127i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj,
1128 bool readonly)
1129{
1130 struct intel_ring_buffer *ring = obj->ring;
1131 u32 seqno;
1132 int ret;
1133
1134 seqno = readonly ? obj->last_write_seqno : obj->last_read_seqno;
1135 if (seqno == 0)
1136 return 0;
1137
1138 ret = i915_wait_seqno(ring, seqno);
1139 if (ret)
1140 return ret;
1141
Chris Wilsond26e3af2013-06-29 22:05:26 +01001142 return i915_gem_object_wait_rendering__tail(obj, ring);
Chris Wilsonb3612372012-08-24 09:35:08 +01001143}
1144
Chris Wilson3236f572012-08-24 09:35:09 +01001145/* A nonblocking variant of the above wait. This is a highly dangerous routine
1146 * as the object state may change during this call.
1147 */
1148static __must_check int
1149i915_gem_object_wait_rendering__nonblocking(struct drm_i915_gem_object *obj,
1150 bool readonly)
1151{
1152 struct drm_device *dev = obj->base.dev;
1153 struct drm_i915_private *dev_priv = dev->dev_private;
1154 struct intel_ring_buffer *ring = obj->ring;
Daniel Vetterf69061b2012-12-06 09:01:42 +01001155 unsigned reset_counter;
Chris Wilson3236f572012-08-24 09:35:09 +01001156 u32 seqno;
1157 int ret;
1158
1159 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
1160 BUG_ON(!dev_priv->mm.interruptible);
1161
1162 seqno = readonly ? obj->last_write_seqno : obj->last_read_seqno;
1163 if (seqno == 0)
1164 return 0;
1165
Daniel Vetter33196de2012-11-14 17:14:05 +01001166 ret = i915_gem_check_wedge(&dev_priv->gpu_error, true);
Chris Wilson3236f572012-08-24 09:35:09 +01001167 if (ret)
1168 return ret;
1169
1170 ret = i915_gem_check_olr(ring, seqno);
1171 if (ret)
1172 return ret;
1173
Daniel Vetterf69061b2012-12-06 09:01:42 +01001174 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilson3236f572012-08-24 09:35:09 +01001175 mutex_unlock(&dev->struct_mutex);
Daniel Vetterf69061b2012-12-06 09:01:42 +01001176 ret = __wait_seqno(ring, seqno, reset_counter, true, NULL);
Chris Wilson3236f572012-08-24 09:35:09 +01001177 mutex_lock(&dev->struct_mutex);
Chris Wilsond26e3af2013-06-29 22:05:26 +01001178 if (ret)
1179 return ret;
Chris Wilson3236f572012-08-24 09:35:09 +01001180
Chris Wilsond26e3af2013-06-29 22:05:26 +01001181 return i915_gem_object_wait_rendering__tail(obj, ring);
Chris Wilson3236f572012-08-24 09:35:09 +01001182}
1183
Eric Anholt673a3942008-07-30 12:06:12 -07001184/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001185 * Called when user space prepares to use an object with the CPU, either
1186 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -07001187 */
1188int
1189i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001190 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001191{
1192 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001193 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001194 uint32_t read_domains = args->read_domains;
1195 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07001196 int ret;
1197
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001198 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +01001199 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001200 return -EINVAL;
1201
Chris Wilson21d509e2009-06-06 09:46:02 +01001202 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001203 return -EINVAL;
1204
1205 /* Having something in the write domain implies it's in the read
1206 * domain, and only that read domain. Enforce that in the request.
1207 */
1208 if (write_domain != 0 && read_domains != write_domain)
1209 return -EINVAL;
1210
Chris Wilson76c1dec2010-09-25 11:22:51 +01001211 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001212 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001213 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001214
Chris Wilson05394f32010-11-08 19:18:58 +00001215 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001216 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001217 ret = -ENOENT;
1218 goto unlock;
Chris Wilson76c1dec2010-09-25 11:22:51 +01001219 }
Jesse Barnes652c3932009-08-17 13:31:43 -07001220
Chris Wilson3236f572012-08-24 09:35:09 +01001221 /* Try to flush the object off the GPU without holding the lock.
1222 * We will repeat the flush holding the lock in the normal manner
1223 * to catch cases where we are gazumped.
1224 */
1225 ret = i915_gem_object_wait_rendering__nonblocking(obj, !write_domain);
1226 if (ret)
1227 goto unref;
1228
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001229 if (read_domains & I915_GEM_DOMAIN_GTT) {
1230 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Eric Anholt02354392008-11-26 13:58:13 -08001231
1232 /* Silently promote "you're not bound, there was nothing to do"
1233 * to success, since the client was just asking us to
1234 * make sure everything was done.
1235 */
1236 if (ret == -EINVAL)
1237 ret = 0;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001238 } else {
Eric Anholte47c68e2008-11-14 13:35:19 -08001239 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001240 }
1241
Chris Wilson3236f572012-08-24 09:35:09 +01001242unref:
Chris Wilson05394f32010-11-08 19:18:58 +00001243 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001244unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001245 mutex_unlock(&dev->struct_mutex);
1246 return ret;
1247}
1248
1249/**
1250 * Called when user space has done writes to this buffer
1251 */
1252int
1253i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001254 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001255{
1256 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001257 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001258 int ret = 0;
1259
Chris Wilson76c1dec2010-09-25 11:22:51 +01001260 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001261 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001262 return ret;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001263
Chris Wilson05394f32010-11-08 19:18:58 +00001264 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001265 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001266 ret = -ENOENT;
1267 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07001268 }
1269
Eric Anholt673a3942008-07-30 12:06:12 -07001270 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilson2c225692013-08-09 12:26:45 +01001271 if (obj->pin_display)
1272 i915_gem_object_flush_cpu_write_domain(obj, true);
Eric Anholte47c68e2008-11-14 13:35:19 -08001273
Chris Wilson05394f32010-11-08 19:18:58 +00001274 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001275unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001276 mutex_unlock(&dev->struct_mutex);
1277 return ret;
1278}
1279
1280/**
1281 * Maps the contents of an object, returning the address it is mapped
1282 * into.
1283 *
1284 * While the mapping holds a reference on the contents of the object, it doesn't
1285 * imply a ref on the object itself.
1286 */
1287int
1288i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001289 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001290{
1291 struct drm_i915_gem_mmap *args = data;
1292 struct drm_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001293 unsigned long addr;
1294
Chris Wilson05394f32010-11-08 19:18:58 +00001295 obj = drm_gem_object_lookup(dev, file, args->handle);
Eric Anholt673a3942008-07-30 12:06:12 -07001296 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001297 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001298
Daniel Vetter1286ff72012-05-10 15:25:09 +02001299 /* prime objects have no backing filp to GEM mmap
1300 * pages from.
1301 */
1302 if (!obj->filp) {
1303 drm_gem_object_unreference_unlocked(obj);
1304 return -EINVAL;
1305 }
1306
Linus Torvalds6be5ceb2012-04-20 17:13:58 -07001307 addr = vm_mmap(obj->filp, 0, args->size,
Eric Anholt673a3942008-07-30 12:06:12 -07001308 PROT_READ | PROT_WRITE, MAP_SHARED,
1309 args->offset);
Luca Barbieribc9025b2010-02-09 05:49:12 +00001310 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001311 if (IS_ERR((void *)addr))
1312 return addr;
1313
1314 args->addr_ptr = (uint64_t) addr;
1315
1316 return 0;
1317}
1318
Jesse Barnesde151cf2008-11-12 10:03:55 -08001319/**
1320 * i915_gem_fault - fault a page into the GTT
1321 * vma: VMA in question
1322 * vmf: fault info
1323 *
1324 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1325 * from userspace. The fault handler takes care of binding the object to
1326 * the GTT (if needed), allocating and programming a fence register (again,
1327 * only if needed based on whether the old reg is still valid or the object
1328 * is tiled) and inserting a new PTE into the faulting process.
1329 *
1330 * Note that the faulting process may involve evicting existing objects
1331 * from the GTT and/or fence registers to make room. So performance may
1332 * suffer if the GTT working set is large or there are few fence registers
1333 * left.
1334 */
1335int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1336{
Chris Wilson05394f32010-11-08 19:18:58 +00001337 struct drm_i915_gem_object *obj = to_intel_bo(vma->vm_private_data);
1338 struct drm_device *dev = obj->base.dev;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001339 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001340 pgoff_t page_offset;
1341 unsigned long pfn;
1342 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001343 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001344
1345 /* We don't use vmf->pgoff since that has the fake offset */
1346 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1347 PAGE_SHIFT;
1348
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001349 ret = i915_mutex_lock_interruptible(dev);
1350 if (ret)
1351 goto out;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001352
Chris Wilsondb53a302011-02-03 11:57:46 +00001353 trace_i915_gem_object_fault(obj, page_offset, true, write);
1354
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001355 /* Access to snoopable pages through the GTT is incoherent. */
1356 if (obj->cache_level != I915_CACHE_NONE && !HAS_LLC(dev)) {
1357 ret = -EINVAL;
1358 goto unlock;
1359 }
1360
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001361 /* Now bind it into the GTT if needed */
Ben Widawskyc37e2202013-07-31 16:59:58 -07001362 ret = i915_gem_obj_ggtt_pin(obj, 0, true, false);
Chris Wilsond9e86c02010-11-10 16:40:20 +00001363 if (ret)
1364 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001365
Chris Wilsonc9839302012-11-20 10:45:17 +00001366 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1367 if (ret)
1368 goto unpin;
1369
1370 ret = i915_gem_object_get_fence(obj);
1371 if (ret)
1372 goto unpin;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001373
Chris Wilson6299f992010-11-24 12:23:44 +00001374 obj->fault_mappable = true;
1375
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001376 pfn = dev_priv->gtt.mappable_base + i915_gem_obj_ggtt_offset(obj);
1377 pfn >>= PAGE_SHIFT;
1378 pfn += page_offset;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001379
1380 /* Finally, remap it using the new GTT offset */
1381 ret = vm_insert_pfn(vma, (unsigned long)vmf->virtual_address, pfn);
Chris Wilsonc9839302012-11-20 10:45:17 +00001382unpin:
1383 i915_gem_object_unpin(obj);
Chris Wilsonc7150892009-09-23 00:43:56 +01001384unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001385 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001386out:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001387 switch (ret) {
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001388 case -EIO:
Daniel Vettera9340cc2012-07-04 22:18:42 +02001389 /* If this -EIO is due to a gpu hang, give the reset code a
1390 * chance to clean up the mess. Otherwise return the proper
1391 * SIGBUS. */
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001392 if (i915_terminally_wedged(&dev_priv->gpu_error))
Daniel Vettera9340cc2012-07-04 22:18:42 +02001393 return VM_FAULT_SIGBUS;
Chris Wilson045e7692010-11-07 09:18:22 +00001394 case -EAGAIN:
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001395 /* Give the error handler a chance to run and move the
1396 * objects off the GPU active list. Next time we service the
1397 * fault, we should be able to transition the page into the
1398 * GTT without touching the GPU (and so avoid further
1399 * EIO/EGAIN). If the GPU is wedged, then there is no issue
1400 * with coherency, just lost writes.
1401 */
Chris Wilson045e7692010-11-07 09:18:22 +00001402 set_need_resched();
Chris Wilsonc7150892009-09-23 00:43:56 +01001403 case 0:
1404 case -ERESTARTSYS:
Chris Wilsonbed636a2011-02-11 20:31:19 +00001405 case -EINTR:
Dmitry Rogozhkine79e0fe2012-10-03 17:15:26 +03001406 case -EBUSY:
1407 /*
1408 * EBUSY is ok: this just means that another thread
1409 * already did the job.
1410 */
Chris Wilsonc7150892009-09-23 00:43:56 +01001411 return VM_FAULT_NOPAGE;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001412 case -ENOMEM:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001413 return VM_FAULT_OOM;
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001414 case -ENOSPC:
1415 return VM_FAULT_SIGBUS;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001416 default:
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001417 WARN_ONCE(ret, "unhandled error in i915_gem_fault: %i\n", ret);
Chris Wilsonc7150892009-09-23 00:43:56 +01001418 return VM_FAULT_SIGBUS;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001419 }
1420}
1421
1422/**
Chris Wilson901782b2009-07-10 08:18:50 +01001423 * i915_gem_release_mmap - remove physical page mappings
1424 * @obj: obj in question
1425 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001426 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001427 * relinquish ownership of the pages back to the system.
1428 *
1429 * It is vital that we remove the page mapping if we have mapped a tiled
1430 * object through the GTT and then lose the fence register due to
1431 * resource pressure. Similarly if the object has been moved out of the
1432 * aperture, than pages mapped into userspace must be revoked. Removing the
1433 * mapping will then trigger a page fault on the next user access, allowing
1434 * fixup by i915_gem_fault().
1435 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001436void
Chris Wilson05394f32010-11-08 19:18:58 +00001437i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01001438{
Chris Wilson6299f992010-11-24 12:23:44 +00001439 if (!obj->fault_mappable)
1440 return;
Chris Wilson901782b2009-07-10 08:18:50 +01001441
David Herrmann51335df2013-07-24 21:10:03 +02001442 drm_vma_node_unmap(&obj->base.vma_node, obj->base.dev->dev_mapping);
Chris Wilson6299f992010-11-24 12:23:44 +00001443 obj->fault_mappable = false;
Chris Wilson901782b2009-07-10 08:18:50 +01001444}
1445
Imre Deak0fa87792013-01-07 21:47:35 +02001446uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001447i915_gem_get_gtt_size(struct drm_device *dev, uint32_t size, int tiling_mode)
Chris Wilson92b88ae2010-11-09 11:47:32 +00001448{
Chris Wilsone28f8712011-07-18 13:11:49 -07001449 uint32_t gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001450
1451 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001452 tiling_mode == I915_TILING_NONE)
1453 return size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001454
1455 /* Previous chips need a power-of-two fence region when tiling */
1456 if (INTEL_INFO(dev)->gen == 3)
Chris Wilsone28f8712011-07-18 13:11:49 -07001457 gtt_size = 1024*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001458 else
Chris Wilsone28f8712011-07-18 13:11:49 -07001459 gtt_size = 512*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001460
Chris Wilsone28f8712011-07-18 13:11:49 -07001461 while (gtt_size < size)
1462 gtt_size <<= 1;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001463
Chris Wilsone28f8712011-07-18 13:11:49 -07001464 return gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001465}
1466
Jesse Barnesde151cf2008-11-12 10:03:55 -08001467/**
1468 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1469 * @obj: object to check
1470 *
1471 * Return the required GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01001472 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08001473 */
Imre Deakd865110c2013-01-07 21:47:33 +02001474uint32_t
1475i915_gem_get_gtt_alignment(struct drm_device *dev, uint32_t size,
1476 int tiling_mode, bool fenced)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001477{
Jesse Barnesde151cf2008-11-12 10:03:55 -08001478 /*
1479 * Minimum alignment is 4k (GTT page size), but might be greater
1480 * if a fence register is needed for the object.
1481 */
Imre Deakd865110c2013-01-07 21:47:33 +02001482 if (INTEL_INFO(dev)->gen >= 4 || (!fenced && IS_G33(dev)) ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001483 tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001484 return 4096;
1485
1486 /*
1487 * Previous chips need to be aligned to the size of the smallest
1488 * fence register that can contain the object.
1489 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001490 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01001491}
1492
Chris Wilsond8cb5082012-08-11 15:41:03 +01001493static int i915_gem_object_create_mmap_offset(struct drm_i915_gem_object *obj)
1494{
1495 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
1496 int ret;
1497
David Herrmann0de23972013-07-24 21:07:52 +02001498 if (drm_vma_node_has_offset(&obj->base.vma_node))
Chris Wilsond8cb5082012-08-11 15:41:03 +01001499 return 0;
1500
Daniel Vetterda494d72012-12-20 15:11:16 +01001501 dev_priv->mm.shrinker_no_lock_stealing = true;
1502
Chris Wilsond8cb5082012-08-11 15:41:03 +01001503 ret = drm_gem_create_mmap_offset(&obj->base);
1504 if (ret != -ENOSPC)
Daniel Vetterda494d72012-12-20 15:11:16 +01001505 goto out;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001506
1507 /* Badly fragmented mmap space? The only way we can recover
1508 * space is by destroying unwanted objects. We can't randomly release
1509 * mmap_offsets as userspace expects them to be persistent for the
1510 * lifetime of the objects. The closest we can is to release the
1511 * offsets on purgeable objects by truncating it and marking it purged,
1512 * which prevents userspace from ever using that object again.
1513 */
1514 i915_gem_purge(dev_priv, obj->base.size >> PAGE_SHIFT);
1515 ret = drm_gem_create_mmap_offset(&obj->base);
1516 if (ret != -ENOSPC)
Daniel Vetterda494d72012-12-20 15:11:16 +01001517 goto out;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001518
1519 i915_gem_shrink_all(dev_priv);
Daniel Vetterda494d72012-12-20 15:11:16 +01001520 ret = drm_gem_create_mmap_offset(&obj->base);
1521out:
1522 dev_priv->mm.shrinker_no_lock_stealing = false;
1523
1524 return ret;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001525}
1526
1527static void i915_gem_object_free_mmap_offset(struct drm_i915_gem_object *obj)
1528{
Chris Wilsond8cb5082012-08-11 15:41:03 +01001529 drm_gem_free_mmap_offset(&obj->base);
1530}
1531
Jesse Barnesde151cf2008-11-12 10:03:55 -08001532int
Dave Airlieff72145b2011-02-07 12:16:14 +10001533i915_gem_mmap_gtt(struct drm_file *file,
1534 struct drm_device *dev,
1535 uint32_t handle,
1536 uint64_t *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001537{
Chris Wilsonda761a62010-10-27 17:37:08 +01001538 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001539 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001540 int ret;
1541
Chris Wilson76c1dec2010-09-25 11:22:51 +01001542 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001543 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001544 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001545
Dave Airlieff72145b2011-02-07 12:16:14 +10001546 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001547 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001548 ret = -ENOENT;
1549 goto unlock;
1550 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001551
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001552 if (obj->base.size > dev_priv->gtt.mappable_end) {
Chris Wilsonda761a62010-10-27 17:37:08 +01001553 ret = -E2BIG;
Eric Anholtff56b0b2011-10-31 23:16:21 -07001554 goto out;
Chris Wilsonda761a62010-10-27 17:37:08 +01001555 }
1556
Chris Wilson05394f32010-11-08 19:18:58 +00001557 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonab182822009-09-22 18:46:17 +01001558 DRM_ERROR("Attempting to mmap a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001559 ret = -EINVAL;
1560 goto out;
Chris Wilsonab182822009-09-22 18:46:17 +01001561 }
1562
Chris Wilsond8cb5082012-08-11 15:41:03 +01001563 ret = i915_gem_object_create_mmap_offset(obj);
1564 if (ret)
1565 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001566
David Herrmann0de23972013-07-24 21:07:52 +02001567 *offset = drm_vma_node_offset_addr(&obj->base.vma_node);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001568
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001569out:
Chris Wilson05394f32010-11-08 19:18:58 +00001570 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001571unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001572 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001573 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001574}
1575
Dave Airlieff72145b2011-02-07 12:16:14 +10001576/**
1577 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1578 * @dev: DRM device
1579 * @data: GTT mapping ioctl data
1580 * @file: GEM object info
1581 *
1582 * Simply returns the fake offset to userspace so it can mmap it.
1583 * The mmap call will end up in drm_gem_mmap(), which will set things
1584 * up so we can get faults in the handler above.
1585 *
1586 * The fault handler will take care of binding the object into the GTT
1587 * (since it may have been evicted to make room for something), allocating
1588 * a fence register, and mapping the appropriate aperture address into
1589 * userspace.
1590 */
1591int
1592i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
1593 struct drm_file *file)
1594{
1595 struct drm_i915_gem_mmap_gtt *args = data;
1596
Dave Airlieff72145b2011-02-07 12:16:14 +10001597 return i915_gem_mmap_gtt(file, dev, args->handle, &args->offset);
1598}
1599
Daniel Vetter225067e2012-08-20 10:23:20 +02001600/* Immediately discard the backing storage */
1601static void
1602i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001603{
Chris Wilsone5281cc2010-10-28 13:45:36 +01001604 struct inode *inode;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001605
Chris Wilson4d6294bf2012-08-11 15:41:05 +01001606 i915_gem_object_free_mmap_offset(obj);
Daniel Vetter1286ff72012-05-10 15:25:09 +02001607
Chris Wilson4d6294bf2012-08-11 15:41:05 +01001608 if (obj->base.filp == NULL)
1609 return;
1610
Daniel Vetter225067e2012-08-20 10:23:20 +02001611 /* Our goal here is to return as much of the memory as
1612 * is possible back to the system as we are called from OOM.
1613 * To do this we must instruct the shmfs to drop all of its
1614 * backing pages, *now*.
Chris Wilsone5281cc2010-10-28 13:45:36 +01001615 */
Al Viro496ad9a2013-01-23 17:07:38 -05001616 inode = file_inode(obj->base.filp);
Daniel Vetter225067e2012-08-20 10:23:20 +02001617 shmem_truncate_range(inode, 0, (loff_t)-1);
Hugh Dickins5949eac2011-06-27 16:18:18 -07001618
Daniel Vetter225067e2012-08-20 10:23:20 +02001619 obj->madv = __I915_MADV_PURGED;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001620}
Chris Wilsone5281cc2010-10-28 13:45:36 +01001621
Daniel Vetter225067e2012-08-20 10:23:20 +02001622static inline int
1623i915_gem_object_is_purgeable(struct drm_i915_gem_object *obj)
1624{
1625 return obj->madv == I915_MADV_DONTNEED;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001626}
1627
Chris Wilson5cdf5882010-09-27 15:51:07 +01001628static void
Chris Wilson05394f32010-11-08 19:18:58 +00001629i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001630{
Imre Deak90797e62013-02-18 19:28:03 +02001631 struct sg_page_iter sg_iter;
1632 int ret;
Daniel Vetter1286ff72012-05-10 15:25:09 +02001633
Chris Wilson05394f32010-11-08 19:18:58 +00001634 BUG_ON(obj->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07001635
Chris Wilson6c085a72012-08-20 11:40:46 +02001636 ret = i915_gem_object_set_to_cpu_domain(obj, true);
1637 if (ret) {
1638 /* In the event of a disaster, abandon all caches and
1639 * hope for the best.
1640 */
1641 WARN_ON(ret != -EIO);
Chris Wilson2c225692013-08-09 12:26:45 +01001642 i915_gem_clflush_object(obj, true);
Chris Wilson6c085a72012-08-20 11:40:46 +02001643 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
1644 }
1645
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001646 if (i915_gem_object_needs_bit17_swizzle(obj))
Eric Anholt280b7132009-03-12 16:56:27 -07001647 i915_gem_object_save_bit_17_swizzle(obj);
1648
Chris Wilson05394f32010-11-08 19:18:58 +00001649 if (obj->madv == I915_MADV_DONTNEED)
1650 obj->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01001651
Imre Deak90797e62013-02-18 19:28:03 +02001652 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents, 0) {
Imre Deak2db76d72013-03-26 15:14:18 +02001653 struct page *page = sg_page_iter_page(&sg_iter);
Chris Wilson9da3da62012-06-01 15:20:22 +01001654
Chris Wilson05394f32010-11-08 19:18:58 +00001655 if (obj->dirty)
Chris Wilson9da3da62012-06-01 15:20:22 +01001656 set_page_dirty(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001657
Chris Wilson05394f32010-11-08 19:18:58 +00001658 if (obj->madv == I915_MADV_WILLNEED)
Chris Wilson9da3da62012-06-01 15:20:22 +01001659 mark_page_accessed(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001660
Chris Wilson9da3da62012-06-01 15:20:22 +01001661 page_cache_release(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001662 }
Chris Wilson05394f32010-11-08 19:18:58 +00001663 obj->dirty = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001664
Chris Wilson9da3da62012-06-01 15:20:22 +01001665 sg_free_table(obj->pages);
1666 kfree(obj->pages);
Chris Wilson37e680a2012-06-07 15:38:42 +01001667}
1668
Chris Wilsondd624af2013-01-15 12:39:35 +00001669int
Chris Wilson37e680a2012-06-07 15:38:42 +01001670i915_gem_object_put_pages(struct drm_i915_gem_object *obj)
1671{
1672 const struct drm_i915_gem_object_ops *ops = obj->ops;
1673
Chris Wilson2f745ad2012-09-04 21:02:58 +01001674 if (obj->pages == NULL)
Chris Wilson37e680a2012-06-07 15:38:42 +01001675 return 0;
1676
Chris Wilsona5570172012-09-04 21:02:54 +01001677 if (obj->pages_pin_count)
1678 return -EBUSY;
1679
Ben Widawsky98438772013-07-31 17:00:12 -07001680 BUG_ON(i915_gem_obj_bound_any(obj));
Ben Widawsky3e123022013-07-31 17:00:04 -07001681
Chris Wilsona2165e32012-12-03 11:49:00 +00001682 /* ->put_pages might need to allocate memory for the bit17 swizzle
1683 * array, hence protect them from being reaped by removing them from gtt
1684 * lists early. */
Ben Widawsky35c20a62013-05-31 11:28:48 -07001685 list_del(&obj->global_list);
Chris Wilsona2165e32012-12-03 11:49:00 +00001686
Chris Wilson37e680a2012-06-07 15:38:42 +01001687 ops->put_pages(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00001688 obj->pages = NULL;
Chris Wilson6c085a72012-08-20 11:40:46 +02001689
Chris Wilson6c085a72012-08-20 11:40:46 +02001690 if (i915_gem_object_is_purgeable(obj))
1691 i915_gem_object_truncate(obj);
1692
1693 return 0;
1694}
1695
1696static long
Daniel Vetter93927ca2013-01-10 18:03:00 +01001697__i915_gem_shrink(struct drm_i915_private *dev_priv, long target,
1698 bool purgeable_only)
Chris Wilson6c085a72012-08-20 11:40:46 +02001699{
1700 struct drm_i915_gem_object *obj, *next;
1701 long count = 0;
1702
1703 list_for_each_entry_safe(obj, next,
1704 &dev_priv->mm.unbound_list,
Ben Widawsky35c20a62013-05-31 11:28:48 -07001705 global_list) {
Daniel Vetter93927ca2013-01-10 18:03:00 +01001706 if ((i915_gem_object_is_purgeable(obj) || !purgeable_only) &&
Chris Wilson37e680a2012-06-07 15:38:42 +01001707 i915_gem_object_put_pages(obj) == 0) {
Chris Wilson6c085a72012-08-20 11:40:46 +02001708 count += obj->base.size >> PAGE_SHIFT;
1709 if (count >= target)
1710 return count;
1711 }
1712 }
1713
Ben Widawsky07fe0b12013-07-31 17:00:10 -07001714 list_for_each_entry_safe(obj, next, &dev_priv->mm.bound_list,
1715 global_list) {
1716 struct i915_vma *vma, *v;
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07001717
1718 if (!i915_gem_object_is_purgeable(obj) && purgeable_only)
1719 continue;
1720
Ben Widawsky07fe0b12013-07-31 17:00:10 -07001721 list_for_each_entry_safe(vma, v, &obj->vma_list, vma_link)
1722 if (i915_vma_unbind(vma))
1723 break;
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07001724
1725 if (!i915_gem_object_put_pages(obj)) {
Chris Wilson6c085a72012-08-20 11:40:46 +02001726 count += obj->base.size >> PAGE_SHIFT;
1727 if (count >= target)
1728 return count;
1729 }
1730 }
1731
1732 return count;
1733}
1734
Daniel Vetter93927ca2013-01-10 18:03:00 +01001735static long
1736i915_gem_purge(struct drm_i915_private *dev_priv, long target)
1737{
1738 return __i915_gem_shrink(dev_priv, target, true);
1739}
1740
Dave Chinner7dc19d52013-08-28 10:18:11 +10001741static long
Chris Wilson6c085a72012-08-20 11:40:46 +02001742i915_gem_shrink_all(struct drm_i915_private *dev_priv)
1743{
1744 struct drm_i915_gem_object *obj, *next;
Dave Chinner7dc19d52013-08-28 10:18:11 +10001745 long freed = 0;
Chris Wilson6c085a72012-08-20 11:40:46 +02001746
1747 i915_gem_evict_everything(dev_priv->dev);
1748
Ben Widawsky35c20a62013-05-31 11:28:48 -07001749 list_for_each_entry_safe(obj, next, &dev_priv->mm.unbound_list,
Dave Chinner7dc19d52013-08-28 10:18:11 +10001750 global_list) {
1751 if (obj->pages_pin_count == 0)
1752 freed += obj->base.size >> PAGE_SHIFT;
Chris Wilson37e680a2012-06-07 15:38:42 +01001753 i915_gem_object_put_pages(obj);
Dave Chinner7dc19d52013-08-28 10:18:11 +10001754 }
1755 return freed;
Daniel Vetter225067e2012-08-20 10:23:20 +02001756}
1757
Chris Wilson37e680a2012-06-07 15:38:42 +01001758static int
Chris Wilson6c085a72012-08-20 11:40:46 +02001759i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001760{
Chris Wilson6c085a72012-08-20 11:40:46 +02001761 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001762 int page_count, i;
1763 struct address_space *mapping;
Chris Wilson9da3da62012-06-01 15:20:22 +01001764 struct sg_table *st;
1765 struct scatterlist *sg;
Imre Deak90797e62013-02-18 19:28:03 +02001766 struct sg_page_iter sg_iter;
Eric Anholt673a3942008-07-30 12:06:12 -07001767 struct page *page;
Imre Deak90797e62013-02-18 19:28:03 +02001768 unsigned long last_pfn = 0; /* suppress gcc warning */
Chris Wilson6c085a72012-08-20 11:40:46 +02001769 gfp_t gfp;
Eric Anholt673a3942008-07-30 12:06:12 -07001770
Chris Wilson6c085a72012-08-20 11:40:46 +02001771 /* Assert that the object is not currently in any GPU domain. As it
1772 * wasn't in the GTT, there shouldn't be any way it could have been in
1773 * a GPU cache
1774 */
1775 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
1776 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
1777
Chris Wilson9da3da62012-06-01 15:20:22 +01001778 st = kmalloc(sizeof(*st), GFP_KERNEL);
1779 if (st == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07001780 return -ENOMEM;
1781
Chris Wilson9da3da62012-06-01 15:20:22 +01001782 page_count = obj->base.size / PAGE_SIZE;
1783 if (sg_alloc_table(st, page_count, GFP_KERNEL)) {
1784 sg_free_table(st);
1785 kfree(st);
1786 return -ENOMEM;
1787 }
1788
1789 /* Get the list of pages out of our struct file. They'll be pinned
1790 * at this point until we release them.
1791 *
1792 * Fail silently without starting the shrinker
1793 */
Al Viro496ad9a2013-01-23 17:07:38 -05001794 mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilson6c085a72012-08-20 11:40:46 +02001795 gfp = mapping_gfp_mask(mapping);
Linus Torvaldscaf49192012-12-10 10:51:16 -08001796 gfp |= __GFP_NORETRY | __GFP_NOWARN | __GFP_NO_KSWAPD;
Chris Wilson6c085a72012-08-20 11:40:46 +02001797 gfp &= ~(__GFP_IO | __GFP_WAIT);
Imre Deak90797e62013-02-18 19:28:03 +02001798 sg = st->sgl;
1799 st->nents = 0;
1800 for (i = 0; i < page_count; i++) {
Chris Wilson6c085a72012-08-20 11:40:46 +02001801 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
1802 if (IS_ERR(page)) {
1803 i915_gem_purge(dev_priv, page_count);
1804 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
1805 }
1806 if (IS_ERR(page)) {
1807 /* We've tried hard to allocate the memory by reaping
1808 * our own buffer, now let the real VM do its job and
1809 * go down in flames if truly OOM.
1810 */
Linus Torvaldscaf49192012-12-10 10:51:16 -08001811 gfp &= ~(__GFP_NORETRY | __GFP_NOWARN | __GFP_NO_KSWAPD);
Chris Wilson6c085a72012-08-20 11:40:46 +02001812 gfp |= __GFP_IO | __GFP_WAIT;
1813
1814 i915_gem_shrink_all(dev_priv);
1815 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
1816 if (IS_ERR(page))
1817 goto err_pages;
1818
Linus Torvaldscaf49192012-12-10 10:51:16 -08001819 gfp |= __GFP_NORETRY | __GFP_NOWARN | __GFP_NO_KSWAPD;
Chris Wilson6c085a72012-08-20 11:40:46 +02001820 gfp &= ~(__GFP_IO | __GFP_WAIT);
1821 }
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04001822#ifdef CONFIG_SWIOTLB
1823 if (swiotlb_nr_tbl()) {
1824 st->nents++;
1825 sg_set_page(sg, page, PAGE_SIZE, 0);
1826 sg = sg_next(sg);
1827 continue;
1828 }
1829#endif
Imre Deak90797e62013-02-18 19:28:03 +02001830 if (!i || page_to_pfn(page) != last_pfn + 1) {
1831 if (i)
1832 sg = sg_next(sg);
1833 st->nents++;
1834 sg_set_page(sg, page, PAGE_SIZE, 0);
1835 } else {
1836 sg->length += PAGE_SIZE;
1837 }
1838 last_pfn = page_to_pfn(page);
Eric Anholt673a3942008-07-30 12:06:12 -07001839 }
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04001840#ifdef CONFIG_SWIOTLB
1841 if (!swiotlb_nr_tbl())
1842#endif
1843 sg_mark_end(sg);
Chris Wilson74ce6b62012-10-19 15:51:06 +01001844 obj->pages = st;
1845
Eric Anholt673a3942008-07-30 12:06:12 -07001846 if (i915_gem_object_needs_bit17_swizzle(obj))
1847 i915_gem_object_do_bit_17_swizzle(obj);
1848
1849 return 0;
1850
1851err_pages:
Imre Deak90797e62013-02-18 19:28:03 +02001852 sg_mark_end(sg);
1853 for_each_sg_page(st->sgl, &sg_iter, st->nents, 0)
Imre Deak2db76d72013-03-26 15:14:18 +02001854 page_cache_release(sg_page_iter_page(&sg_iter));
Chris Wilson9da3da62012-06-01 15:20:22 +01001855 sg_free_table(st);
1856 kfree(st);
Eric Anholt673a3942008-07-30 12:06:12 -07001857 return PTR_ERR(page);
Eric Anholt673a3942008-07-30 12:06:12 -07001858}
1859
Chris Wilson37e680a2012-06-07 15:38:42 +01001860/* Ensure that the associated pages are gathered from the backing storage
1861 * and pinned into our object. i915_gem_object_get_pages() may be called
1862 * multiple times before they are released by a single call to
1863 * i915_gem_object_put_pages() - once the pages are no longer referenced
1864 * either as a result of memory pressure (reaping pages under the shrinker)
1865 * or as the object is itself released.
1866 */
1867int
1868i915_gem_object_get_pages(struct drm_i915_gem_object *obj)
1869{
1870 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
1871 const struct drm_i915_gem_object_ops *ops = obj->ops;
1872 int ret;
1873
Chris Wilson2f745ad2012-09-04 21:02:58 +01001874 if (obj->pages)
Chris Wilson37e680a2012-06-07 15:38:42 +01001875 return 0;
1876
Chris Wilson43e28f02013-01-08 10:53:09 +00001877 if (obj->madv != I915_MADV_WILLNEED) {
1878 DRM_ERROR("Attempting to obtain a purgeable object\n");
1879 return -EINVAL;
1880 }
1881
Chris Wilsona5570172012-09-04 21:02:54 +01001882 BUG_ON(obj->pages_pin_count);
1883
Chris Wilson37e680a2012-06-07 15:38:42 +01001884 ret = ops->get_pages(obj);
1885 if (ret)
1886 return ret;
1887
Ben Widawsky35c20a62013-05-31 11:28:48 -07001888 list_add_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Chris Wilson37e680a2012-06-07 15:38:42 +01001889 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001890}
1891
Chris Wilson54cf91d2010-11-25 18:00:26 +00001892void
Chris Wilson05394f32010-11-08 19:18:58 +00001893i915_gem_object_move_to_active(struct drm_i915_gem_object *obj,
Chris Wilson9d7730912012-11-27 16:22:52 +00001894 struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001895{
Chris Wilson05394f32010-11-08 19:18:58 +00001896 struct drm_device *dev = obj->base.dev;
Chris Wilson69dc4982010-10-19 10:36:51 +01001897 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9d7730912012-11-27 16:22:52 +00001898 u32 seqno = intel_ring_get_seqno(ring);
Daniel Vetter617dbe22010-02-11 22:16:02 +01001899
Zou Nan hai852835f2010-05-21 09:08:56 +08001900 BUG_ON(ring == NULL);
Chris Wilson02978ff2013-07-09 09:22:39 +01001901 if (obj->ring != ring && obj->last_write_seqno) {
1902 /* Keep the seqno relative to the current ring */
1903 obj->last_write_seqno = seqno;
1904 }
Chris Wilson05394f32010-11-08 19:18:58 +00001905 obj->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07001906
1907 /* Add a reference if we're newly entering the active list. */
Chris Wilson05394f32010-11-08 19:18:58 +00001908 if (!obj->active) {
1909 drm_gem_object_reference(&obj->base);
1910 obj->active = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07001911 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01001912
Chris Wilson05394f32010-11-08 19:18:58 +00001913 list_move_tail(&obj->ring_list, &ring->active_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001914
Chris Wilson0201f1e2012-07-20 12:41:01 +01001915 obj->last_read_seqno = seqno;
Chris Wilson7dd49062012-03-21 10:48:18 +00001916
Chris Wilsoncaea7472010-11-12 13:53:37 +00001917 if (obj->fenced_gpu_access) {
Chris Wilsoncaea7472010-11-12 13:53:37 +00001918 obj->last_fenced_seqno = seqno;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001919
Chris Wilson7dd49062012-03-21 10:48:18 +00001920 /* Bump MRU to take account of the delayed flush */
1921 if (obj->fence_reg != I915_FENCE_REG_NONE) {
1922 struct drm_i915_fence_reg *reg;
1923
1924 reg = &dev_priv->fence_regs[obj->fence_reg];
1925 list_move_tail(&reg->lru_list,
1926 &dev_priv->mm.fence_list);
1927 }
Chris Wilsoncaea7472010-11-12 13:53:37 +00001928 }
1929}
1930
1931static void
Chris Wilsoncaea7472010-11-12 13:53:37 +00001932i915_gem_object_move_to_inactive(struct drm_i915_gem_object *obj)
1933{
Ben Widawskyca191b12013-07-31 17:00:14 -07001934 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
1935 struct i915_address_space *ggtt_vm = &dev_priv->gtt.base;
1936 struct i915_vma *vma = i915_gem_obj_to_vma(obj, ggtt_vm);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001937
Chris Wilson65ce3022012-07-20 12:41:02 +01001938 BUG_ON(obj->base.write_domain & ~I915_GEM_GPU_DOMAINS);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001939 BUG_ON(!obj->active);
Chris Wilson65ce3022012-07-20 12:41:02 +01001940
Ben Widawskyca191b12013-07-31 17:00:14 -07001941 list_move_tail(&vma->mm_list, &ggtt_vm->inactive_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001942
Chris Wilson65ce3022012-07-20 12:41:02 +01001943 list_del_init(&obj->ring_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001944 obj->ring = NULL;
1945
Chris Wilson65ce3022012-07-20 12:41:02 +01001946 obj->last_read_seqno = 0;
1947 obj->last_write_seqno = 0;
1948 obj->base.write_domain = 0;
1949
1950 obj->last_fenced_seqno = 0;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001951 obj->fenced_gpu_access = false;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001952
1953 obj->active = 0;
1954 drm_gem_object_unreference(&obj->base);
1955
1956 WARN_ON(i915_verify_lists(dev));
Eric Anholtce44b0e2008-11-06 16:00:31 -08001957}
Eric Anholt673a3942008-07-30 12:06:12 -07001958
Chris Wilson9d7730912012-11-27 16:22:52 +00001959static int
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02001960i915_gem_init_seqno(struct drm_device *dev, u32 seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01001961{
Chris Wilson9d7730912012-11-27 16:22:52 +00001962 struct drm_i915_private *dev_priv = dev->dev_private;
1963 struct intel_ring_buffer *ring;
1964 int ret, i, j;
Daniel Vetter53d227f2012-01-25 16:32:49 +01001965
Chris Wilson107f27a52012-12-10 13:56:17 +02001966 /* Carefully retire all requests without writing to the rings */
Chris Wilson9d7730912012-11-27 16:22:52 +00001967 for_each_ring(ring, dev_priv, i) {
Chris Wilson107f27a52012-12-10 13:56:17 +02001968 ret = intel_ring_idle(ring);
1969 if (ret)
1970 return ret;
Chris Wilson9d7730912012-11-27 16:22:52 +00001971 }
Chris Wilson9d7730912012-11-27 16:22:52 +00001972 i915_gem_retire_requests(dev);
Chris Wilson107f27a52012-12-10 13:56:17 +02001973
1974 /* Finally reset hw state */
Chris Wilson9d7730912012-11-27 16:22:52 +00001975 for_each_ring(ring, dev_priv, i) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02001976 intel_ring_init_seqno(ring, seqno);
Mika Kuoppala498d2ac2012-12-04 15:12:04 +02001977
Chris Wilson9d7730912012-11-27 16:22:52 +00001978 for (j = 0; j < ARRAY_SIZE(ring->sync_seqno); j++)
1979 ring->sync_seqno[j] = 0;
1980 }
1981
1982 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01001983}
1984
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02001985int i915_gem_set_seqno(struct drm_device *dev, u32 seqno)
1986{
1987 struct drm_i915_private *dev_priv = dev->dev_private;
1988 int ret;
1989
1990 if (seqno == 0)
1991 return -EINVAL;
1992
1993 /* HWS page needs to be set less than what we
1994 * will inject to ring
1995 */
1996 ret = i915_gem_init_seqno(dev, seqno - 1);
1997 if (ret)
1998 return ret;
1999
2000 /* Carefully set the last_seqno value so that wrap
2001 * detection still works
2002 */
2003 dev_priv->next_seqno = seqno;
2004 dev_priv->last_seqno = seqno - 1;
2005 if (dev_priv->last_seqno == 0)
2006 dev_priv->last_seqno--;
2007
2008 return 0;
2009}
2010
Chris Wilson9d7730912012-11-27 16:22:52 +00002011int
2012i915_gem_get_seqno(struct drm_device *dev, u32 *seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01002013{
Chris Wilson9d7730912012-11-27 16:22:52 +00002014 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002015
Chris Wilson9d7730912012-11-27 16:22:52 +00002016 /* reserve 0 for non-seqno */
2017 if (dev_priv->next_seqno == 0) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002018 int ret = i915_gem_init_seqno(dev, 0);
Chris Wilson9d7730912012-11-27 16:22:52 +00002019 if (ret)
2020 return ret;
2021
2022 dev_priv->next_seqno = 1;
2023 }
2024
Mika Kuoppalaf72b3432012-12-10 15:41:48 +02002025 *seqno = dev_priv->last_seqno = dev_priv->next_seqno++;
Chris Wilson9d7730912012-11-27 16:22:52 +00002026 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002027}
2028
Mika Kuoppala0025c072013-06-12 12:35:30 +03002029int __i915_add_request(struct intel_ring_buffer *ring,
2030 struct drm_file *file,
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002031 struct drm_i915_gem_object *obj,
Mika Kuoppala0025c072013-06-12 12:35:30 +03002032 u32 *out_seqno)
Eric Anholt673a3942008-07-30 12:06:12 -07002033{
Chris Wilsondb53a302011-02-03 11:57:46 +00002034 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Chris Wilsonacb868d2012-09-26 13:47:30 +01002035 struct drm_i915_gem_request *request;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002036 u32 request_ring_position, request_start;
Eric Anholt673a3942008-07-30 12:06:12 -07002037 int was_empty;
Chris Wilson3cce4692010-10-27 16:11:02 +01002038 int ret;
2039
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002040 request_start = intel_ring_get_tail(ring);
Daniel Vettercc889e02012-06-13 20:45:19 +02002041 /*
2042 * Emit any outstanding flushes - execbuf can fail to emit the flush
2043 * after having emitted the batchbuffer command. Hence we need to fix
2044 * things up similar to emitting the lazy request. The difference here
2045 * is that the flush _must_ happen before the next request, no matter
2046 * what.
2047 */
Chris Wilsona7b97612012-07-20 12:41:08 +01002048 ret = intel_ring_flush_all_caches(ring);
2049 if (ret)
2050 return ret;
Daniel Vettercc889e02012-06-13 20:45:19 +02002051
Chris Wilsonacb868d2012-09-26 13:47:30 +01002052 request = kmalloc(sizeof(*request), GFP_KERNEL);
2053 if (request == NULL)
2054 return -ENOMEM;
Daniel Vettercc889e02012-06-13 20:45:19 +02002055
Eric Anholt673a3942008-07-30 12:06:12 -07002056
Chris Wilsona71d8d92012-02-15 11:25:36 +00002057 /* Record the position of the start of the request so that
2058 * should we detect the updated seqno part-way through the
2059 * GPU processing the request, we never over-estimate the
2060 * position of the head.
2061 */
2062 request_ring_position = intel_ring_get_tail(ring);
2063
Chris Wilson9d7730912012-11-27 16:22:52 +00002064 ret = ring->add_request(ring);
Chris Wilson3bb73ab2012-07-20 12:40:59 +01002065 if (ret) {
2066 kfree(request);
2067 return ret;
2068 }
Eric Anholt673a3942008-07-30 12:06:12 -07002069
Chris Wilson9d7730912012-11-27 16:22:52 +00002070 request->seqno = intel_ring_get_seqno(ring);
Zou Nan hai852835f2010-05-21 09:08:56 +08002071 request->ring = ring;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002072 request->head = request_start;
Chris Wilsona71d8d92012-02-15 11:25:36 +00002073 request->tail = request_ring_position;
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002074 request->ctx = ring->last_context;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002075 request->batch_obj = obj;
2076
2077 /* Whilst this request exists, batch_obj will be on the
2078 * active_list, and so will hold the active reference. Only when this
2079 * request is retired will the the batch_obj be moved onto the
2080 * inactive_list and lose its active reference. Hence we do not need
2081 * to explicitly hold another reference here.
2082 */
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002083
2084 if (request->ctx)
2085 i915_gem_context_reference(request->ctx);
2086
Eric Anholt673a3942008-07-30 12:06:12 -07002087 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08002088 was_empty = list_empty(&ring->request_list);
2089 list_add_tail(&request->list, &ring->request_list);
Chris Wilson3bb73ab2012-07-20 12:40:59 +01002090 request->file_priv = NULL;
Zou Nan hai852835f2010-05-21 09:08:56 +08002091
Chris Wilsondb53a302011-02-03 11:57:46 +00002092 if (file) {
2093 struct drm_i915_file_private *file_priv = file->driver_priv;
2094
Chris Wilson1c255952010-09-26 11:03:27 +01002095 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002096 request->file_priv = file_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00002097 list_add_tail(&request->client_list,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002098 &file_priv->mm.request_list);
Chris Wilson1c255952010-09-26 11:03:27 +01002099 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00002100 }
Eric Anholt673a3942008-07-30 12:06:12 -07002101
Chris Wilson9d7730912012-11-27 16:22:52 +00002102 trace_i915_gem_request_add(ring, request->seqno);
Daniel Vetter5391d0c2012-01-25 14:03:57 +01002103 ring->outstanding_lazy_request = 0;
Chris Wilsondb53a302011-02-03 11:57:46 +00002104
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02002105 if (!dev_priv->ums.mm_suspended) {
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03002106 i915_queue_hangcheck(ring->dev);
2107
Chris Wilsonf047e392012-07-21 12:31:41 +01002108 if (was_empty) {
Chris Wilsonb3b079d2010-09-13 23:44:34 +01002109 queue_delayed_work(dev_priv->wq,
Chris Wilsonbcb45082012-10-05 17:02:57 +01002110 &dev_priv->mm.retire_work,
2111 round_jiffies_up_relative(HZ));
Chris Wilsonf047e392012-07-21 12:31:41 +01002112 intel_mark_busy(dev_priv->dev);
2113 }
Ben Gamarif65d9422009-09-14 17:48:44 -04002114 }
Daniel Vettercc889e02012-06-13 20:45:19 +02002115
Chris Wilsonacb868d2012-09-26 13:47:30 +01002116 if (out_seqno)
Chris Wilson9d7730912012-11-27 16:22:52 +00002117 *out_seqno = request->seqno;
Chris Wilson3cce4692010-10-27 16:11:02 +01002118 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002119}
2120
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002121static inline void
2122i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07002123{
Chris Wilson1c255952010-09-26 11:03:27 +01002124 struct drm_i915_file_private *file_priv = request->file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07002125
Chris Wilson1c255952010-09-26 11:03:27 +01002126 if (!file_priv)
2127 return;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002128
Chris Wilson1c255952010-09-26 11:03:27 +01002129 spin_lock(&file_priv->mm.lock);
Herton Ronaldo Krzesinski09bfa512011-03-17 13:45:12 +00002130 if (request->file_priv) {
2131 list_del(&request->client_list);
2132 request->file_priv = NULL;
2133 }
Chris Wilson1c255952010-09-26 11:03:27 +01002134 spin_unlock(&file_priv->mm.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07002135}
2136
Ben Widawskyd1ccbb52013-07-31 17:00:05 -07002137static bool i915_head_inside_object(u32 acthd, struct drm_i915_gem_object *obj,
2138 struct i915_address_space *vm)
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002139{
Ben Widawskyd1ccbb52013-07-31 17:00:05 -07002140 if (acthd >= i915_gem_obj_offset(obj, vm) &&
2141 acthd < i915_gem_obj_offset(obj, vm) + obj->base.size)
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002142 return true;
2143
2144 return false;
2145}
2146
2147static bool i915_head_inside_request(const u32 acthd_unmasked,
2148 const u32 request_start,
2149 const u32 request_end)
2150{
2151 const u32 acthd = acthd_unmasked & HEAD_ADDR;
2152
2153 if (request_start < request_end) {
2154 if (acthd >= request_start && acthd < request_end)
2155 return true;
2156 } else if (request_start > request_end) {
2157 if (acthd >= request_start || acthd < request_end)
2158 return true;
2159 }
2160
2161 return false;
2162}
2163
Ben Widawskyd1ccbb52013-07-31 17:00:05 -07002164static struct i915_address_space *
2165request_to_vm(struct drm_i915_gem_request *request)
2166{
2167 struct drm_i915_private *dev_priv = request->ring->dev->dev_private;
2168 struct i915_address_space *vm;
2169
2170 vm = &dev_priv->gtt.base;
2171
2172 return vm;
2173}
2174
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002175static bool i915_request_guilty(struct drm_i915_gem_request *request,
2176 const u32 acthd, bool *inside)
2177{
2178 /* There is a possibility that unmasked head address
2179 * pointing inside the ring, matches the batch_obj address range.
2180 * However this is extremely unlikely.
2181 */
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002182 if (request->batch_obj) {
Ben Widawskyd1ccbb52013-07-31 17:00:05 -07002183 if (i915_head_inside_object(acthd, request->batch_obj,
2184 request_to_vm(request))) {
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002185 *inside = true;
2186 return true;
2187 }
2188 }
2189
2190 if (i915_head_inside_request(acthd, request->head, request->tail)) {
2191 *inside = false;
2192 return true;
2193 }
2194
2195 return false;
2196}
2197
2198static void i915_set_reset_status(struct intel_ring_buffer *ring,
2199 struct drm_i915_gem_request *request,
2200 u32 acthd)
2201{
2202 struct i915_ctx_hang_stats *hs = NULL;
2203 bool inside, guilty;
Ben Widawskyd1ccbb52013-07-31 17:00:05 -07002204 unsigned long offset = 0;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002205
2206 /* Innocent until proven guilty */
2207 guilty = false;
2208
Ben Widawskyd1ccbb52013-07-31 17:00:05 -07002209 if (request->batch_obj)
2210 offset = i915_gem_obj_offset(request->batch_obj,
2211 request_to_vm(request));
2212
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002213 if (ring->hangcheck.action != HANGCHECK_WAIT &&
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002214 i915_request_guilty(request, acthd, &inside)) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002215 DRM_ERROR("%s hung %s bo (0x%lx ctx %d) at 0x%x\n",
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002216 ring->name,
2217 inside ? "inside" : "flushing",
Ben Widawskyd1ccbb52013-07-31 17:00:05 -07002218 offset,
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002219 request->ctx ? request->ctx->id : 0,
2220 acthd);
2221
2222 guilty = true;
2223 }
2224
2225 /* If contexts are disabled or this is the default context, use
2226 * file_priv->reset_state
2227 */
2228 if (request->ctx && request->ctx->id != DEFAULT_CONTEXT_ID)
2229 hs = &request->ctx->hang_stats;
2230 else if (request->file_priv)
2231 hs = &request->file_priv->hang_stats;
2232
2233 if (hs) {
2234 if (guilty)
2235 hs->batch_active++;
2236 else
2237 hs->batch_pending++;
2238 }
2239}
2240
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002241static void i915_gem_free_request(struct drm_i915_gem_request *request)
2242{
2243 list_del(&request->list);
2244 i915_gem_request_remove_from_client(request);
2245
2246 if (request->ctx)
2247 i915_gem_context_unreference(request->ctx);
2248
2249 kfree(request);
2250}
2251
Chris Wilsondfaae392010-09-22 10:31:52 +01002252static void i915_gem_reset_ring_lists(struct drm_i915_private *dev_priv,
2253 struct intel_ring_buffer *ring)
Chris Wilson9375e442010-09-19 12:21:28 +01002254{
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002255 u32 completed_seqno;
2256 u32 acthd;
2257
2258 acthd = intel_ring_get_active_head(ring);
2259 completed_seqno = ring->get_seqno(ring, false);
2260
Chris Wilsondfaae392010-09-22 10:31:52 +01002261 while (!list_empty(&ring->request_list)) {
2262 struct drm_i915_gem_request *request;
Chris Wilson9375e442010-09-19 12:21:28 +01002263
Chris Wilsondfaae392010-09-22 10:31:52 +01002264 request = list_first_entry(&ring->request_list,
2265 struct drm_i915_gem_request,
2266 list);
2267
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002268 if (request->seqno > completed_seqno)
2269 i915_set_reset_status(ring, request, acthd);
2270
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002271 i915_gem_free_request(request);
Chris Wilsondfaae392010-09-22 10:31:52 +01002272 }
2273
2274 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00002275 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07002276
Chris Wilson05394f32010-11-08 19:18:58 +00002277 obj = list_first_entry(&ring->active_list,
2278 struct drm_i915_gem_object,
2279 ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07002280
Chris Wilson05394f32010-11-08 19:18:58 +00002281 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002282 }
Eric Anholt673a3942008-07-30 12:06:12 -07002283}
2284
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002285void i915_gem_restore_fences(struct drm_device *dev)
Chris Wilson312817a2010-11-22 11:50:11 +00002286{
2287 struct drm_i915_private *dev_priv = dev->dev_private;
2288 int i;
2289
Daniel Vetter4b9de732011-10-09 21:52:02 +02002290 for (i = 0; i < dev_priv->num_fence_regs; i++) {
Chris Wilson312817a2010-11-22 11:50:11 +00002291 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
Chris Wilson7d2cb392010-11-27 17:38:29 +00002292
Daniel Vetter94a335d2013-07-17 14:51:28 +02002293 /*
2294 * Commit delayed tiling changes if we have an object still
2295 * attached to the fence, otherwise just clear the fence.
2296 */
2297 if (reg->obj) {
2298 i915_gem_object_update_fence(reg->obj, reg,
2299 reg->obj->tiling_mode);
2300 } else {
2301 i915_gem_write_fence(dev, i, NULL);
2302 }
Chris Wilson312817a2010-11-22 11:50:11 +00002303 }
2304}
2305
Chris Wilson069efc12010-09-30 16:53:18 +01002306void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07002307{
Chris Wilsondfaae392010-09-22 10:31:52 +01002308 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01002309 struct intel_ring_buffer *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002310 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07002311
Chris Wilsonb4519512012-05-11 14:29:30 +01002312 for_each_ring(ring, dev_priv, i)
2313 i915_gem_reset_ring_lists(dev_priv, ring);
Chris Wilsondfaae392010-09-22 10:31:52 +01002314
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002315 i915_gem_restore_fences(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07002316}
2317
2318/**
2319 * This function clears the request list as sequence numbers are passed.
2320 */
Chris Wilsona71d8d92012-02-15 11:25:36 +00002321void
Chris Wilsondb53a302011-02-03 11:57:46 +00002322i915_gem_retire_requests_ring(struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07002323{
Eric Anholt673a3942008-07-30 12:06:12 -07002324 uint32_t seqno;
2325
Chris Wilsondb53a302011-02-03 11:57:46 +00002326 if (list_empty(&ring->request_list))
Karsten Wiese6c0594a2009-02-23 15:07:57 +01002327 return;
2328
Chris Wilsondb53a302011-02-03 11:57:46 +00002329 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002330
Chris Wilsonb2eadbc2012-08-09 10:58:30 +01002331 seqno = ring->get_seqno(ring, true);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002332
Zou Nan hai852835f2010-05-21 09:08:56 +08002333 while (!list_empty(&ring->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002334 struct drm_i915_gem_request *request;
Eric Anholt673a3942008-07-30 12:06:12 -07002335
Zou Nan hai852835f2010-05-21 09:08:56 +08002336 request = list_first_entry(&ring->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07002337 struct drm_i915_gem_request,
2338 list);
Eric Anholt673a3942008-07-30 12:06:12 -07002339
Chris Wilsondfaae392010-09-22 10:31:52 +01002340 if (!i915_seqno_passed(seqno, request->seqno))
Eric Anholt673a3942008-07-30 12:06:12 -07002341 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002342
Chris Wilsondb53a302011-02-03 11:57:46 +00002343 trace_i915_gem_request_retire(ring, request->seqno);
Chris Wilsona71d8d92012-02-15 11:25:36 +00002344 /* We know the GPU must have read the request to have
2345 * sent us the seqno + interrupt, so use the position
2346 * of tail of the request to update the last known position
2347 * of the GPU head.
2348 */
2349 ring->last_retired_head = request->tail;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002350
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002351 i915_gem_free_request(request);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002352 }
2353
2354 /* Move any buffers on the active list that are no longer referenced
2355 * by the ringbuffer to the flushing/inactive lists as appropriate.
2356 */
2357 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00002358 struct drm_i915_gem_object *obj;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002359
Akshay Joshi0206e352011-08-16 15:34:10 -04002360 obj = list_first_entry(&ring->active_list,
Chris Wilson05394f32010-11-08 19:18:58 +00002361 struct drm_i915_gem_object,
2362 ring_list);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002363
Chris Wilson0201f1e2012-07-20 12:41:01 +01002364 if (!i915_seqno_passed(seqno, obj->last_read_seqno))
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002365 break;
2366
Chris Wilson65ce3022012-07-20 12:41:02 +01002367 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002368 }
Chris Wilson9d34e5d2009-09-24 05:26:06 +01002369
Chris Wilsondb53a302011-02-03 11:57:46 +00002370 if (unlikely(ring->trace_irq_seqno &&
2371 i915_seqno_passed(seqno, ring->trace_irq_seqno))) {
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002372 ring->irq_put(ring);
Chris Wilsondb53a302011-02-03 11:57:46 +00002373 ring->trace_irq_seqno = 0;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01002374 }
Chris Wilson23bc5982010-09-29 16:10:57 +01002375
Chris Wilsondb53a302011-02-03 11:57:46 +00002376 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002377}
2378
2379void
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002380i915_gem_retire_requests(struct drm_device *dev)
2381{
2382 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01002383 struct intel_ring_buffer *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002384 int i;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002385
Chris Wilsonb4519512012-05-11 14:29:30 +01002386 for_each_ring(ring, dev_priv, i)
2387 i915_gem_retire_requests_ring(ring);
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002388}
2389
Daniel Vetter75ef9da2010-08-21 00:25:16 +02002390static void
Eric Anholt673a3942008-07-30 12:06:12 -07002391i915_gem_retire_work_handler(struct work_struct *work)
2392{
2393 drm_i915_private_t *dev_priv;
2394 struct drm_device *dev;
Chris Wilsonb4519512012-05-11 14:29:30 +01002395 struct intel_ring_buffer *ring;
Chris Wilson0a587052011-01-09 21:05:44 +00002396 bool idle;
2397 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07002398
2399 dev_priv = container_of(work, drm_i915_private_t,
2400 mm.retire_work.work);
2401 dev = dev_priv->dev;
2402
Chris Wilson891b48c2010-09-29 12:26:37 +01002403 /* Come back later if the device is busy... */
2404 if (!mutex_trylock(&dev->struct_mutex)) {
Chris Wilsonbcb45082012-10-05 17:02:57 +01002405 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work,
2406 round_jiffies_up_relative(HZ));
Chris Wilson891b48c2010-09-29 12:26:37 +01002407 return;
2408 }
2409
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002410 i915_gem_retire_requests(dev);
Zou Nan haid1b851f2010-05-21 09:08:57 +08002411
Chris Wilson0a587052011-01-09 21:05:44 +00002412 /* Send a periodic flush down the ring so we don't hold onto GEM
2413 * objects indefinitely.
2414 */
2415 idle = true;
Chris Wilsonb4519512012-05-11 14:29:30 +01002416 for_each_ring(ring, dev_priv, i) {
Chris Wilson3bb73ab2012-07-20 12:40:59 +01002417 if (ring->gpu_caches_dirty)
Mika Kuoppala0025c072013-06-12 12:35:30 +03002418 i915_add_request(ring, NULL);
Chris Wilson0a587052011-01-09 21:05:44 +00002419
2420 idle &= list_empty(&ring->request_list);
2421 }
2422
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02002423 if (!dev_priv->ums.mm_suspended && !idle)
Chris Wilsonbcb45082012-10-05 17:02:57 +01002424 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work,
2425 round_jiffies_up_relative(HZ));
Chris Wilsonf047e392012-07-21 12:31:41 +01002426 if (idle)
2427 intel_mark_idle(dev);
Chris Wilson0a587052011-01-09 21:05:44 +00002428
Eric Anholt673a3942008-07-30 12:06:12 -07002429 mutex_unlock(&dev->struct_mutex);
2430}
2431
Ben Widawsky5816d642012-04-11 11:18:19 -07002432/**
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002433 * Ensures that an object will eventually get non-busy by flushing any required
2434 * write domains, emitting any outstanding lazy request and retiring and
2435 * completed requests.
2436 */
2437static int
2438i915_gem_object_flush_active(struct drm_i915_gem_object *obj)
2439{
2440 int ret;
2441
2442 if (obj->active) {
Chris Wilson0201f1e2012-07-20 12:41:01 +01002443 ret = i915_gem_check_olr(obj->ring, obj->last_read_seqno);
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002444 if (ret)
2445 return ret;
2446
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002447 i915_gem_retire_requests_ring(obj->ring);
2448 }
2449
2450 return 0;
2451}
2452
2453/**
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002454 * i915_gem_wait_ioctl - implements DRM_IOCTL_I915_GEM_WAIT
2455 * @DRM_IOCTL_ARGS: standard ioctl arguments
2456 *
2457 * Returns 0 if successful, else an error is returned with the remaining time in
2458 * the timeout parameter.
2459 * -ETIME: object is still busy after timeout
2460 * -ERESTARTSYS: signal interrupted the wait
2461 * -ENONENT: object doesn't exist
2462 * Also possible, but rare:
2463 * -EAGAIN: GPU wedged
2464 * -ENOMEM: damn
2465 * -ENODEV: Internal IRQ fail
2466 * -E?: The add request failed
2467 *
2468 * The wait ioctl with a timeout of 0 reimplements the busy ioctl. With any
2469 * non-zero timeout parameter the wait ioctl will wait for the given number of
2470 * nanoseconds on an object becoming unbusy. Since the wait itself does so
2471 * without holding struct_mutex the object may become re-busied before this
2472 * function completes. A similar but shorter * race condition exists in the busy
2473 * ioctl
2474 */
2475int
2476i915_gem_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
2477{
Daniel Vetterf69061b2012-12-06 09:01:42 +01002478 drm_i915_private_t *dev_priv = dev->dev_private;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002479 struct drm_i915_gem_wait *args = data;
2480 struct drm_i915_gem_object *obj;
2481 struct intel_ring_buffer *ring = NULL;
Ben Widawskyeac1f142012-06-05 15:24:24 -07002482 struct timespec timeout_stack, *timeout = NULL;
Daniel Vetterf69061b2012-12-06 09:01:42 +01002483 unsigned reset_counter;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002484 u32 seqno = 0;
2485 int ret = 0;
2486
Ben Widawskyeac1f142012-06-05 15:24:24 -07002487 if (args->timeout_ns >= 0) {
2488 timeout_stack = ns_to_timespec(args->timeout_ns);
2489 timeout = &timeout_stack;
2490 }
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002491
2492 ret = i915_mutex_lock_interruptible(dev);
2493 if (ret)
2494 return ret;
2495
2496 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->bo_handle));
2497 if (&obj->base == NULL) {
2498 mutex_unlock(&dev->struct_mutex);
2499 return -ENOENT;
2500 }
2501
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002502 /* Need to make sure the object gets inactive eventually. */
2503 ret = i915_gem_object_flush_active(obj);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002504 if (ret)
2505 goto out;
2506
2507 if (obj->active) {
Chris Wilson0201f1e2012-07-20 12:41:01 +01002508 seqno = obj->last_read_seqno;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002509 ring = obj->ring;
2510 }
2511
2512 if (seqno == 0)
2513 goto out;
2514
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002515 /* Do this after OLR check to make sure we make forward progress polling
2516 * on this IOCTL with a 0 timeout (like busy ioctl)
2517 */
2518 if (!args->timeout_ns) {
2519 ret = -ETIME;
2520 goto out;
2521 }
2522
2523 drm_gem_object_unreference(&obj->base);
Daniel Vetterf69061b2012-12-06 09:01:42 +01002524 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002525 mutex_unlock(&dev->struct_mutex);
2526
Daniel Vetterf69061b2012-12-06 09:01:42 +01002527 ret = __wait_seqno(ring, seqno, reset_counter, true, timeout);
Chris Wilson4f42f4e2013-04-26 16:22:46 +03002528 if (timeout)
Ben Widawskyeac1f142012-06-05 15:24:24 -07002529 args->timeout_ns = timespec_to_ns(timeout);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002530 return ret;
2531
2532out:
2533 drm_gem_object_unreference(&obj->base);
2534 mutex_unlock(&dev->struct_mutex);
2535 return ret;
2536}
2537
2538/**
Ben Widawsky5816d642012-04-11 11:18:19 -07002539 * i915_gem_object_sync - sync an object to a ring.
2540 *
2541 * @obj: object which may be in use on another ring.
2542 * @to: ring we wish to use the object on. May be NULL.
2543 *
2544 * This code is meant to abstract object synchronization with the GPU.
2545 * Calling with NULL implies synchronizing the object with the CPU
2546 * rather than a particular GPU ring.
2547 *
2548 * Returns 0 if successful, else propagates up the lower layer error.
2549 */
Ben Widawsky2911a352012-04-05 14:47:36 -07002550int
2551i915_gem_object_sync(struct drm_i915_gem_object *obj,
2552 struct intel_ring_buffer *to)
2553{
2554 struct intel_ring_buffer *from = obj->ring;
2555 u32 seqno;
2556 int ret, idx;
2557
2558 if (from == NULL || to == from)
2559 return 0;
2560
Ben Widawsky5816d642012-04-11 11:18:19 -07002561 if (to == NULL || !i915_semaphore_is_enabled(obj->base.dev))
Chris Wilson0201f1e2012-07-20 12:41:01 +01002562 return i915_gem_object_wait_rendering(obj, false);
Ben Widawsky2911a352012-04-05 14:47:36 -07002563
2564 idx = intel_ring_sync_index(from, to);
2565
Chris Wilson0201f1e2012-07-20 12:41:01 +01002566 seqno = obj->last_read_seqno;
Ben Widawsky2911a352012-04-05 14:47:36 -07002567 if (seqno <= from->sync_seqno[idx])
2568 return 0;
2569
Ben Widawskyb4aca012012-04-25 20:50:12 -07002570 ret = i915_gem_check_olr(obj->ring, seqno);
2571 if (ret)
2572 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07002573
Ben Widawsky1500f7e2012-04-11 11:18:21 -07002574 ret = to->sync_to(to, from, seqno);
Ben Widawskye3a5a222012-04-11 11:18:20 -07002575 if (!ret)
Mika Kuoppala7b01e262012-11-28 17:18:45 +02002576 /* We use last_read_seqno because sync_to()
2577 * might have just caused seqno wrap under
2578 * the radar.
2579 */
2580 from->sync_seqno[idx] = obj->last_read_seqno;
Ben Widawsky2911a352012-04-05 14:47:36 -07002581
Ben Widawskye3a5a222012-04-11 11:18:20 -07002582 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07002583}
2584
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002585static void i915_gem_object_finish_gtt(struct drm_i915_gem_object *obj)
2586{
2587 u32 old_write_domain, old_read_domains;
2588
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002589 /* Force a pagefault for domain tracking on next user access */
2590 i915_gem_release_mmap(obj);
2591
Keith Packardb97c3d92011-06-24 21:02:59 -07002592 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
2593 return;
2594
Chris Wilson97c809fd2012-10-09 19:24:38 +01002595 /* Wait for any direct GTT access to complete */
2596 mb();
2597
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002598 old_read_domains = obj->base.read_domains;
2599 old_write_domain = obj->base.write_domain;
2600
2601 obj->base.read_domains &= ~I915_GEM_DOMAIN_GTT;
2602 obj->base.write_domain &= ~I915_GEM_DOMAIN_GTT;
2603
2604 trace_i915_gem_object_change_domain(obj,
2605 old_read_domains,
2606 old_write_domain);
2607}
2608
Ben Widawsky07fe0b12013-07-31 17:00:10 -07002609int i915_vma_unbind(struct i915_vma *vma)
Eric Anholt673a3942008-07-30 12:06:12 -07002610{
Ben Widawsky07fe0b12013-07-31 17:00:10 -07002611 struct drm_i915_gem_object *obj = vma->obj;
Daniel Vetter7bddb012012-02-09 17:15:47 +01002612 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Chris Wilson43e28f02013-01-08 10:53:09 +00002613 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002614
Ben Widawsky07fe0b12013-07-31 17:00:10 -07002615 if (list_empty(&vma->vma_link))
Eric Anholt673a3942008-07-30 12:06:12 -07002616 return 0;
2617
Ben Widawsky433544b2013-08-13 18:09:06 -07002618 if (!drm_mm_node_allocated(&vma->node))
2619 goto destroy;
2620
Chris Wilson31d8d652012-05-24 19:11:20 +01002621 if (obj->pin_count)
2622 return -EBUSY;
Eric Anholt673a3942008-07-30 12:06:12 -07002623
Chris Wilsonc4670ad2012-08-20 10:23:27 +01002624 BUG_ON(obj->pages == NULL);
2625
Chris Wilsona8198ee2011-04-13 22:04:09 +01002626 ret = i915_gem_object_finish_gpu(obj);
Chris Wilson1488fc02012-04-24 15:47:31 +01002627 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002628 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01002629 /* Continue on if we fail due to EIO, the GPU is hung so we
2630 * should be safe and we need to cleanup or else we might
2631 * cause memory corruption through use-after-free.
2632 */
Chris Wilsona8198ee2011-04-13 22:04:09 +01002633
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002634 i915_gem_object_finish_gtt(obj);
Chris Wilsona8198ee2011-04-13 22:04:09 +01002635
Daniel Vetter96b47b62009-12-15 17:50:00 +01002636 /* release the fence reg _after_ flushing */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002637 ret = i915_gem_object_put_fence(obj);
Chris Wilson1488fc02012-04-24 15:47:31 +01002638 if (ret)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002639 return ret;
Daniel Vetter96b47b62009-12-15 17:50:00 +01002640
Ben Widawsky07fe0b12013-07-31 17:00:10 -07002641 trace_i915_vma_unbind(vma);
Chris Wilsondb53a302011-02-03 11:57:46 +00002642
Daniel Vetter74898d72012-02-15 23:50:22 +01002643 if (obj->has_global_gtt_mapping)
2644 i915_gem_gtt_unbind_object(obj);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002645 if (obj->has_aliasing_ppgtt_mapping) {
2646 i915_ppgtt_unbind_object(dev_priv->mm.aliasing_ppgtt, obj);
2647 obj->has_aliasing_ppgtt_mapping = 0;
2648 }
Daniel Vetter74163902012-02-15 23:50:21 +01002649 i915_gem_gtt_finish_object(obj);
Ben Widawsky401c29f2013-05-31 11:28:47 -07002650 i915_gem_object_unpin_pages(obj);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002651
Ben Widawskyca191b12013-07-31 17:00:14 -07002652 list_del(&vma->mm_list);
Daniel Vetter75e9e912010-11-04 17:11:09 +01002653 /* Avoid an unnecessary call to unbind on rebind. */
Ben Widawsky5cacaac2013-07-31 17:00:13 -07002654 if (i915_is_ggtt(vma->vm))
2655 obj->map_and_fenceable = true;
Eric Anholt673a3942008-07-30 12:06:12 -07002656
Ben Widawsky2f633152013-07-17 12:19:03 -07002657 drm_mm_remove_node(&vma->node);
Ben Widawsky433544b2013-08-13 18:09:06 -07002658
2659destroy:
Ben Widawsky2f633152013-07-17 12:19:03 -07002660 i915_gem_vma_destroy(vma);
2661
2662 /* Since the unbound list is global, only move to that list if
2663 * no more VMAs exist.
2664 * NB: Until we have real VMAs there will only ever be one */
2665 WARN_ON(!list_empty(&obj->vma_list));
2666 if (list_empty(&obj->vma_list))
2667 list_move_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Eric Anholt673a3942008-07-30 12:06:12 -07002668
Chris Wilson88241782011-01-07 17:09:48 +00002669 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002670}
2671
Ben Widawsky07fe0b12013-07-31 17:00:10 -07002672/**
2673 * Unbinds an object from the global GTT aperture.
2674 */
2675int
2676i915_gem_object_ggtt_unbind(struct drm_i915_gem_object *obj)
2677{
2678 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2679 struct i915_address_space *ggtt = &dev_priv->gtt.base;
2680
Dan Carpenter58e73e12013-08-09 12:44:11 +03002681 if (!i915_gem_obj_ggtt_bound(obj))
Ben Widawsky07fe0b12013-07-31 17:00:10 -07002682 return 0;
2683
2684 if (obj->pin_count)
2685 return -EBUSY;
2686
2687 BUG_ON(obj->pages == NULL);
2688
2689 return i915_vma_unbind(i915_gem_obj_to_vma(obj, ggtt));
2690}
2691
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07002692int i915_gpu_idle(struct drm_device *dev)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002693{
2694 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01002695 struct intel_ring_buffer *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002696 int ret, i;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002697
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002698 /* Flush everything onto the inactive list. */
Chris Wilsonb4519512012-05-11 14:29:30 +01002699 for_each_ring(ring, dev_priv, i) {
Ben Widawskyb6c74882012-08-14 14:35:14 -07002700 ret = i915_switch_context(ring, NULL, DEFAULT_CONTEXT_ID);
2701 if (ret)
2702 return ret;
2703
Chris Wilson3e960502012-11-27 16:22:54 +00002704 ret = intel_ring_idle(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002705 if (ret)
2706 return ret;
2707 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08002708
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01002709 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002710}
2711
Chris Wilson9ce079e2012-04-17 15:31:30 +01002712static void i965_write_fence_reg(struct drm_device *dev, int reg,
2713 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002714{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002715 drm_i915_private_t *dev_priv = dev->dev_private;
Imre Deak56c844e2013-01-07 21:47:34 +02002716 int fence_reg;
2717 int fence_pitch_shift;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002718
Imre Deak56c844e2013-01-07 21:47:34 +02002719 if (INTEL_INFO(dev)->gen >= 6) {
2720 fence_reg = FENCE_REG_SANDYBRIDGE_0;
2721 fence_pitch_shift = SANDYBRIDGE_FENCE_PITCH_SHIFT;
2722 } else {
2723 fence_reg = FENCE_REG_965_0;
2724 fence_pitch_shift = I965_FENCE_PITCH_SHIFT;
2725 }
2726
Chris Wilsond18b9612013-07-10 13:36:23 +01002727 fence_reg += reg * 8;
2728
2729 /* To w/a incoherency with non-atomic 64-bit register updates,
2730 * we split the 64-bit update into two 32-bit writes. In order
2731 * for a partial fence not to be evaluated between writes, we
2732 * precede the update with write to turn off the fence register,
2733 * and only enable the fence as the last step.
2734 *
2735 * For extra levels of paranoia, we make sure each step lands
2736 * before applying the next step.
2737 */
2738 I915_WRITE(fence_reg, 0);
2739 POSTING_READ(fence_reg);
2740
Chris Wilson9ce079e2012-04-17 15:31:30 +01002741 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002742 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilsond18b9612013-07-10 13:36:23 +01002743 uint64_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002744
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002745 val = (uint64_t)((i915_gem_obj_ggtt_offset(obj) + size - 4096) &
Chris Wilson9ce079e2012-04-17 15:31:30 +01002746 0xfffff000) << 32;
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002747 val |= i915_gem_obj_ggtt_offset(obj) & 0xfffff000;
Imre Deak56c844e2013-01-07 21:47:34 +02002748 val |= (uint64_t)((obj->stride / 128) - 1) << fence_pitch_shift;
Chris Wilson9ce079e2012-04-17 15:31:30 +01002749 if (obj->tiling_mode == I915_TILING_Y)
2750 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2751 val |= I965_FENCE_REG_VALID;
Daniel Vetterc6642782010-11-12 13:46:18 +00002752
Chris Wilsond18b9612013-07-10 13:36:23 +01002753 I915_WRITE(fence_reg + 4, val >> 32);
2754 POSTING_READ(fence_reg + 4);
2755
2756 I915_WRITE(fence_reg + 0, val);
2757 POSTING_READ(fence_reg);
2758 } else {
2759 I915_WRITE(fence_reg + 4, 0);
2760 POSTING_READ(fence_reg + 4);
2761 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08002762}
2763
Chris Wilson9ce079e2012-04-17 15:31:30 +01002764static void i915_write_fence_reg(struct drm_device *dev, int reg,
2765 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002766{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002767 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson9ce079e2012-04-17 15:31:30 +01002768 u32 val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002769
Chris Wilson9ce079e2012-04-17 15:31:30 +01002770 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002771 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01002772 int pitch_val;
2773 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002774
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002775 WARN((i915_gem_obj_ggtt_offset(obj) & ~I915_FENCE_START_MASK) ||
Chris Wilson9ce079e2012-04-17 15:31:30 +01002776 (size & -size) != size ||
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002777 (i915_gem_obj_ggtt_offset(obj) & (size - 1)),
2778 "object 0x%08lx [fenceable? %d] not 1M or pot-size (0x%08x) aligned\n",
2779 i915_gem_obj_ggtt_offset(obj), obj->map_and_fenceable, size);
Chris Wilson9ce079e2012-04-17 15:31:30 +01002780
2781 if (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev))
2782 tile_width = 128;
2783 else
2784 tile_width = 512;
2785
2786 /* Note: pitch better be a power of two tile widths */
2787 pitch_val = obj->stride / tile_width;
2788 pitch_val = ffs(pitch_val) - 1;
2789
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002790 val = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01002791 if (obj->tiling_mode == I915_TILING_Y)
2792 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
2793 val |= I915_FENCE_SIZE_BITS(size);
2794 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2795 val |= I830_FENCE_REG_VALID;
2796 } else
2797 val = 0;
2798
2799 if (reg < 8)
2800 reg = FENCE_REG_830_0 + reg * 4;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002801 else
Chris Wilson9ce079e2012-04-17 15:31:30 +01002802 reg = FENCE_REG_945_8 + (reg - 8) * 4;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002803
Chris Wilson9ce079e2012-04-17 15:31:30 +01002804 I915_WRITE(reg, val);
2805 POSTING_READ(reg);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002806}
2807
Chris Wilson9ce079e2012-04-17 15:31:30 +01002808static void i830_write_fence_reg(struct drm_device *dev, int reg,
2809 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002810{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002811 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002812 uint32_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002813
Chris Wilson9ce079e2012-04-17 15:31:30 +01002814 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002815 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01002816 uint32_t pitch_val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002817
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002818 WARN((i915_gem_obj_ggtt_offset(obj) & ~I830_FENCE_START_MASK) ||
Chris Wilson9ce079e2012-04-17 15:31:30 +01002819 (size & -size) != size ||
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002820 (i915_gem_obj_ggtt_offset(obj) & (size - 1)),
2821 "object 0x%08lx not 512K or pot-size 0x%08x aligned\n",
2822 i915_gem_obj_ggtt_offset(obj), size);
Eric Anholte76a16d2009-05-26 17:44:56 -07002823
Chris Wilson9ce079e2012-04-17 15:31:30 +01002824 pitch_val = obj->stride / 128;
2825 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002826
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002827 val = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01002828 if (obj->tiling_mode == I915_TILING_Y)
2829 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
2830 val |= I830_FENCE_SIZE_BITS(size);
2831 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2832 val |= I830_FENCE_REG_VALID;
2833 } else
2834 val = 0;
Daniel Vetterc6642782010-11-12 13:46:18 +00002835
Chris Wilson9ce079e2012-04-17 15:31:30 +01002836 I915_WRITE(FENCE_REG_830_0 + reg * 4, val);
2837 POSTING_READ(FENCE_REG_830_0 + reg * 4);
2838}
2839
Chris Wilsond0a57782012-10-09 19:24:37 +01002840inline static bool i915_gem_object_needs_mb(struct drm_i915_gem_object *obj)
2841{
2842 return obj && obj->base.read_domains & I915_GEM_DOMAIN_GTT;
2843}
2844
Chris Wilson9ce079e2012-04-17 15:31:30 +01002845static void i915_gem_write_fence(struct drm_device *dev, int reg,
2846 struct drm_i915_gem_object *obj)
2847{
Chris Wilsond0a57782012-10-09 19:24:37 +01002848 struct drm_i915_private *dev_priv = dev->dev_private;
2849
2850 /* Ensure that all CPU reads are completed before installing a fence
2851 * and all writes before removing the fence.
2852 */
2853 if (i915_gem_object_needs_mb(dev_priv->fence_regs[reg].obj))
2854 mb();
2855
Daniel Vetter94a335d2013-07-17 14:51:28 +02002856 WARN(obj && (!obj->stride || !obj->tiling_mode),
2857 "bogus fence setup with stride: 0x%x, tiling mode: %i\n",
2858 obj->stride, obj->tiling_mode);
2859
Chris Wilson9ce079e2012-04-17 15:31:30 +01002860 switch (INTEL_INFO(dev)->gen) {
2861 case 7:
Imre Deak56c844e2013-01-07 21:47:34 +02002862 case 6:
Chris Wilson9ce079e2012-04-17 15:31:30 +01002863 case 5:
2864 case 4: i965_write_fence_reg(dev, reg, obj); break;
2865 case 3: i915_write_fence_reg(dev, reg, obj); break;
2866 case 2: i830_write_fence_reg(dev, reg, obj); break;
Ben Widawsky7dbf9d62012-12-18 10:31:22 -08002867 default: BUG();
Chris Wilson9ce079e2012-04-17 15:31:30 +01002868 }
Chris Wilsond0a57782012-10-09 19:24:37 +01002869
2870 /* And similarly be paranoid that no direct access to this region
2871 * is reordered to before the fence is installed.
2872 */
2873 if (i915_gem_object_needs_mb(obj))
2874 mb();
Jesse Barnesde151cf2008-11-12 10:03:55 -08002875}
2876
Chris Wilson61050802012-04-17 15:31:31 +01002877static inline int fence_number(struct drm_i915_private *dev_priv,
2878 struct drm_i915_fence_reg *fence)
2879{
2880 return fence - dev_priv->fence_regs;
2881}
2882
2883static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
2884 struct drm_i915_fence_reg *fence,
2885 bool enable)
2886{
Chris Wilson2dc8aae2013-05-22 17:08:06 +01002887 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson46a0b632013-07-10 13:36:24 +01002888 int reg = fence_number(dev_priv, fence);
Chris Wilson61050802012-04-17 15:31:31 +01002889
Chris Wilson46a0b632013-07-10 13:36:24 +01002890 i915_gem_write_fence(obj->base.dev, reg, enable ? obj : NULL);
Chris Wilson61050802012-04-17 15:31:31 +01002891
2892 if (enable) {
Chris Wilson46a0b632013-07-10 13:36:24 +01002893 obj->fence_reg = reg;
Chris Wilson61050802012-04-17 15:31:31 +01002894 fence->obj = obj;
2895 list_move_tail(&fence->lru_list, &dev_priv->mm.fence_list);
2896 } else {
2897 obj->fence_reg = I915_FENCE_REG_NONE;
2898 fence->obj = NULL;
2899 list_del_init(&fence->lru_list);
2900 }
Daniel Vetter94a335d2013-07-17 14:51:28 +02002901 obj->fence_dirty = false;
Chris Wilson61050802012-04-17 15:31:31 +01002902}
2903
Chris Wilsond9e86c02010-11-10 16:40:20 +00002904static int
Chris Wilsond0a57782012-10-09 19:24:37 +01002905i915_gem_object_wait_fence(struct drm_i915_gem_object *obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002906{
Chris Wilson1c293ea2012-04-17 15:31:27 +01002907 if (obj->last_fenced_seqno) {
Chris Wilson86d5bc32012-07-20 12:41:04 +01002908 int ret = i915_wait_seqno(obj->ring, obj->last_fenced_seqno);
Chris Wilson18991842012-04-17 15:31:29 +01002909 if (ret)
2910 return ret;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002911
2912 obj->last_fenced_seqno = 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002913 }
2914
Chris Wilson86d5bc32012-07-20 12:41:04 +01002915 obj->fenced_gpu_access = false;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002916 return 0;
2917}
2918
2919int
2920i915_gem_object_put_fence(struct drm_i915_gem_object *obj)
2921{
Chris Wilson61050802012-04-17 15:31:31 +01002922 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilsonf9c513e2013-03-26 11:29:27 +00002923 struct drm_i915_fence_reg *fence;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002924 int ret;
2925
Chris Wilsond0a57782012-10-09 19:24:37 +01002926 ret = i915_gem_object_wait_fence(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002927 if (ret)
2928 return ret;
2929
Chris Wilson61050802012-04-17 15:31:31 +01002930 if (obj->fence_reg == I915_FENCE_REG_NONE)
2931 return 0;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002932
Chris Wilsonf9c513e2013-03-26 11:29:27 +00002933 fence = &dev_priv->fence_regs[obj->fence_reg];
2934
Chris Wilson61050802012-04-17 15:31:31 +01002935 i915_gem_object_fence_lost(obj);
Chris Wilsonf9c513e2013-03-26 11:29:27 +00002936 i915_gem_object_update_fence(obj, fence, false);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002937
2938 return 0;
2939}
2940
2941static struct drm_i915_fence_reg *
Chris Wilsona360bb12012-04-17 15:31:25 +01002942i915_find_fence_reg(struct drm_device *dev)
Daniel Vetterae3db242010-02-19 11:51:58 +01002943{
Daniel Vetterae3db242010-02-19 11:51:58 +01002944 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson8fe301a2012-04-17 15:31:28 +01002945 struct drm_i915_fence_reg *reg, *avail;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002946 int i;
Daniel Vetterae3db242010-02-19 11:51:58 +01002947
2948 /* First try to find a free reg */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002949 avail = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002950 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
2951 reg = &dev_priv->fence_regs[i];
2952 if (!reg->obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002953 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002954
Chris Wilson1690e1e2011-12-14 13:57:08 +01002955 if (!reg->pin_count)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002956 avail = reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002957 }
2958
Chris Wilsond9e86c02010-11-10 16:40:20 +00002959 if (avail == NULL)
2960 return NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002961
2962 /* None available, try to steal one or wait for a user to finish */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002963 list_for_each_entry(reg, &dev_priv->mm.fence_list, lru_list) {
Chris Wilson1690e1e2011-12-14 13:57:08 +01002964 if (reg->pin_count)
Daniel Vetterae3db242010-02-19 11:51:58 +01002965 continue;
2966
Chris Wilson8fe301a2012-04-17 15:31:28 +01002967 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002968 }
2969
Chris Wilson8fe301a2012-04-17 15:31:28 +01002970 return NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002971}
2972
Jesse Barnesde151cf2008-11-12 10:03:55 -08002973/**
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002974 * i915_gem_object_get_fence - set up fencing for an object
Jesse Barnesde151cf2008-11-12 10:03:55 -08002975 * @obj: object to map through a fence reg
2976 *
2977 * When mapping objects through the GTT, userspace wants to be able to write
2978 * to them without having to worry about swizzling if the object is tiled.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002979 * This function walks the fence regs looking for a free one for @obj,
2980 * stealing one if it can't find any.
2981 *
2982 * It then sets up the reg based on the object's properties: address, pitch
2983 * and tiling format.
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002984 *
2985 * For an untiled surface, this removes any existing fence.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002986 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01002987int
Chris Wilson06d98132012-04-17 15:31:24 +01002988i915_gem_object_get_fence(struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002989{
Chris Wilson05394f32010-11-08 19:18:58 +00002990 struct drm_device *dev = obj->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002991 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson14415742012-04-17 15:31:33 +01002992 bool enable = obj->tiling_mode != I915_TILING_NONE;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002993 struct drm_i915_fence_reg *reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002994 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002995
Chris Wilson14415742012-04-17 15:31:33 +01002996 /* Have we updated the tiling parameters upon the object and so
2997 * will need to serialise the write to the associated fence register?
2998 */
Chris Wilson5d82e3e2012-04-21 16:23:23 +01002999 if (obj->fence_dirty) {
Chris Wilsond0a57782012-10-09 19:24:37 +01003000 ret = i915_gem_object_wait_fence(obj);
Chris Wilson14415742012-04-17 15:31:33 +01003001 if (ret)
3002 return ret;
3003 }
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003004
Chris Wilsond9e86c02010-11-10 16:40:20 +00003005 /* Just update our place in the LRU if our fence is getting reused. */
Chris Wilson05394f32010-11-08 19:18:58 +00003006 if (obj->fence_reg != I915_FENCE_REG_NONE) {
3007 reg = &dev_priv->fence_regs[obj->fence_reg];
Chris Wilson5d82e3e2012-04-21 16:23:23 +01003008 if (!obj->fence_dirty) {
Chris Wilson14415742012-04-17 15:31:33 +01003009 list_move_tail(&reg->lru_list,
3010 &dev_priv->mm.fence_list);
3011 return 0;
3012 }
3013 } else if (enable) {
3014 reg = i915_find_fence_reg(dev);
3015 if (reg == NULL)
3016 return -EDEADLK;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003017
Chris Wilson14415742012-04-17 15:31:33 +01003018 if (reg->obj) {
3019 struct drm_i915_gem_object *old = reg->obj;
3020
Chris Wilsond0a57782012-10-09 19:24:37 +01003021 ret = i915_gem_object_wait_fence(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00003022 if (ret)
3023 return ret;
3024
Chris Wilson14415742012-04-17 15:31:33 +01003025 i915_gem_object_fence_lost(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00003026 }
Chris Wilson14415742012-04-17 15:31:33 +01003027 } else
Eric Anholta09ba7f2009-08-29 12:49:51 -07003028 return 0;
Eric Anholta09ba7f2009-08-29 12:49:51 -07003029
Chris Wilson14415742012-04-17 15:31:33 +01003030 i915_gem_object_update_fence(obj, reg, enable);
Chris Wilson14415742012-04-17 15:31:33 +01003031
Chris Wilson9ce079e2012-04-17 15:31:30 +01003032 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003033}
3034
Chris Wilson42d6ab42012-07-26 11:49:32 +01003035static bool i915_gem_valid_gtt_space(struct drm_device *dev,
3036 struct drm_mm_node *gtt_space,
3037 unsigned long cache_level)
3038{
3039 struct drm_mm_node *other;
3040
3041 /* On non-LLC machines we have to be careful when putting differing
3042 * types of snoopable memory together to avoid the prefetcher
Damien Lespiau4239ca72012-12-03 16:26:16 +00003043 * crossing memory domains and dying.
Chris Wilson42d6ab42012-07-26 11:49:32 +01003044 */
3045 if (HAS_LLC(dev))
3046 return true;
3047
Ben Widawskyc6cfb322013-07-05 14:41:06 -07003048 if (!drm_mm_node_allocated(gtt_space))
Chris Wilson42d6ab42012-07-26 11:49:32 +01003049 return true;
3050
3051 if (list_empty(&gtt_space->node_list))
3052 return true;
3053
3054 other = list_entry(gtt_space->node_list.prev, struct drm_mm_node, node_list);
3055 if (other->allocated && !other->hole_follows && other->color != cache_level)
3056 return false;
3057
3058 other = list_entry(gtt_space->node_list.next, struct drm_mm_node, node_list);
3059 if (other->allocated && !gtt_space->hole_follows && other->color != cache_level)
3060 return false;
3061
3062 return true;
3063}
3064
3065static void i915_gem_verify_gtt(struct drm_device *dev)
3066{
3067#if WATCH_GTT
3068 struct drm_i915_private *dev_priv = dev->dev_private;
3069 struct drm_i915_gem_object *obj;
3070 int err = 0;
3071
Ben Widawsky35c20a62013-05-31 11:28:48 -07003072 list_for_each_entry(obj, &dev_priv->mm.gtt_list, global_list) {
Chris Wilson42d6ab42012-07-26 11:49:32 +01003073 if (obj->gtt_space == NULL) {
3074 printk(KERN_ERR "object found on GTT list with no space reserved\n");
3075 err++;
3076 continue;
3077 }
3078
3079 if (obj->cache_level != obj->gtt_space->color) {
3080 printk(KERN_ERR "object reserved space [%08lx, %08lx] with wrong color, cache_level=%x, color=%lx\n",
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003081 i915_gem_obj_ggtt_offset(obj),
3082 i915_gem_obj_ggtt_offset(obj) + i915_gem_obj_ggtt_size(obj),
Chris Wilson42d6ab42012-07-26 11:49:32 +01003083 obj->cache_level,
3084 obj->gtt_space->color);
3085 err++;
3086 continue;
3087 }
3088
3089 if (!i915_gem_valid_gtt_space(dev,
3090 obj->gtt_space,
3091 obj->cache_level)) {
3092 printk(KERN_ERR "invalid GTT space found at [%08lx, %08lx] - color=%x\n",
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003093 i915_gem_obj_ggtt_offset(obj),
3094 i915_gem_obj_ggtt_offset(obj) + i915_gem_obj_ggtt_size(obj),
Chris Wilson42d6ab42012-07-26 11:49:32 +01003095 obj->cache_level);
3096 err++;
3097 continue;
3098 }
3099 }
3100
3101 WARN_ON(err);
3102#endif
3103}
3104
Jesse Barnesde151cf2008-11-12 10:03:55 -08003105/**
Eric Anholt673a3942008-07-30 12:06:12 -07003106 * Finds free space in the GTT aperture and binds the object there.
3107 */
3108static int
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003109i915_gem_object_bind_to_vm(struct drm_i915_gem_object *obj,
3110 struct i915_address_space *vm,
3111 unsigned alignment,
3112 bool map_and_fenceable,
3113 bool nonblocking)
Eric Anholt673a3942008-07-30 12:06:12 -07003114{
Chris Wilson05394f32010-11-08 19:18:58 +00003115 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07003116 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter5e783302010-11-14 22:32:36 +01003117 u32 size, fence_size, fence_alignment, unfenced_alignment;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003118 size_t gtt_max =
3119 map_and_fenceable ? dev_priv->gtt.mappable_end : vm->total;
Ben Widawsky2f633152013-07-17 12:19:03 -07003120 struct i915_vma *vma;
Chris Wilson07f73f62009-09-14 16:50:30 +01003121 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003122
Chris Wilsone28f8712011-07-18 13:11:49 -07003123 fence_size = i915_gem_get_gtt_size(dev,
3124 obj->base.size,
3125 obj->tiling_mode);
3126 fence_alignment = i915_gem_get_gtt_alignment(dev,
3127 obj->base.size,
Imre Deakd865110c2013-01-07 21:47:33 +02003128 obj->tiling_mode, true);
Chris Wilsone28f8712011-07-18 13:11:49 -07003129 unfenced_alignment =
Imre Deakd865110c2013-01-07 21:47:33 +02003130 i915_gem_get_gtt_alignment(dev,
Chris Wilsone28f8712011-07-18 13:11:49 -07003131 obj->base.size,
Imre Deakd865110c2013-01-07 21:47:33 +02003132 obj->tiling_mode, false);
Chris Wilsona00b10c2010-09-24 21:15:47 +01003133
Eric Anholt673a3942008-07-30 12:06:12 -07003134 if (alignment == 0)
Daniel Vetter5e783302010-11-14 22:32:36 +01003135 alignment = map_and_fenceable ? fence_alignment :
3136 unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01003137 if (map_and_fenceable && alignment & (fence_alignment - 1)) {
Eric Anholt673a3942008-07-30 12:06:12 -07003138 DRM_ERROR("Invalid object alignment requested %u\n", alignment);
3139 return -EINVAL;
3140 }
3141
Chris Wilson05394f32010-11-08 19:18:58 +00003142 size = map_and_fenceable ? fence_size : obj->base.size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01003143
Chris Wilson654fc602010-05-27 13:18:21 +01003144 /* If the object is bigger than the entire aperture, reject it early
3145 * before evicting everything in a vain attempt to find space.
3146 */
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003147 if (obj->base.size > gtt_max) {
Jani Nikula3765f302013-06-07 16:03:50 +03003148 DRM_ERROR("Attempting to bind an object larger than the aperture: object=%zd > %s aperture=%zu\n",
Chris Wilsona36689c2013-05-21 16:58:49 +01003149 obj->base.size,
3150 map_and_fenceable ? "mappable" : "total",
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003151 gtt_max);
Chris Wilson654fc602010-05-27 13:18:21 +01003152 return -E2BIG;
3153 }
3154
Chris Wilson37e680a2012-06-07 15:38:42 +01003155 ret = i915_gem_object_get_pages(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02003156 if (ret)
3157 return ret;
3158
Chris Wilsonfbdda6f2012-11-20 10:45:16 +00003159 i915_gem_object_pin_pages(obj);
3160
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003161 BUG_ON(!i915_is_ggtt(vm));
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003162
Ben Widawskyaccfef22013-08-14 11:38:35 +02003163 vma = i915_gem_obj_lookup_or_create_vma(obj, vm);
Dan Carpenterdb473b32013-07-19 08:45:46 +03003164 if (IS_ERR(vma)) {
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003165 ret = PTR_ERR(vma);
3166 goto err_unpin;
Ben Widawsky2f633152013-07-17 12:19:03 -07003167 }
3168
Ben Widawskyaccfef22013-08-14 11:38:35 +02003169 /* For now we only ever use 1 vma per object */
3170 WARN_ON(!list_is_singular(&obj->vma_list));
3171
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003172search_free:
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003173 ret = drm_mm_insert_node_in_range_generic(&vm->mm, &vma->node,
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003174 size, alignment,
David Herrmann31e5d7c2013-07-27 13:36:27 +02003175 obj->cache_level, 0, gtt_max,
3176 DRM_MM_SEARCH_DEFAULT);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003177 if (ret) {
Ben Widawskyf6cd1f12013-07-31 17:00:11 -07003178 ret = i915_gem_evict_something(dev, vm, size, alignment,
Chris Wilson42d6ab42012-07-26 11:49:32 +01003179 obj->cache_level,
Chris Wilson86a1ee22012-08-11 15:41:04 +01003180 map_and_fenceable,
3181 nonblocking);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003182 if (ret == 0)
3183 goto search_free;
Chris Wilson97311292009-09-21 00:22:34 +01003184
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003185 goto err_free_vma;
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003186 }
Ben Widawsky2f633152013-07-17 12:19:03 -07003187 if (WARN_ON(!i915_gem_valid_gtt_space(dev, &vma->node,
Ben Widawskyc6cfb322013-07-05 14:41:06 -07003188 obj->cache_level))) {
Ben Widawsky2f633152013-07-17 12:19:03 -07003189 ret = -EINVAL;
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003190 goto err_remove_node;
Eric Anholt673a3942008-07-30 12:06:12 -07003191 }
3192
Daniel Vetter74163902012-02-15 23:50:21 +01003193 ret = i915_gem_gtt_prepare_object(obj);
Ben Widawsky2f633152013-07-17 12:19:03 -07003194 if (ret)
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003195 goto err_remove_node;
Eric Anholt673a3942008-07-30 12:06:12 -07003196
Ben Widawsky35c20a62013-05-31 11:28:48 -07003197 list_move_tail(&obj->global_list, &dev_priv->mm.bound_list);
Ben Widawskyca191b12013-07-31 17:00:14 -07003198 list_add_tail(&vma->mm_list, &vm->inactive_list);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01003199
Ben Widawsky4bd561b2013-08-13 18:09:07 -07003200 if (i915_is_ggtt(vm)) {
3201 bool mappable, fenceable;
Chris Wilsona00b10c2010-09-24 21:15:47 +01003202
Daniel Vetter49987092013-08-14 10:21:23 +02003203 fenceable = (vma->node.size == fence_size &&
3204 (vma->node.start & (fence_alignment - 1)) == 0);
Chris Wilsona00b10c2010-09-24 21:15:47 +01003205
Daniel Vetter49987092013-08-14 10:21:23 +02003206 mappable = (vma->node.start + obj->base.size <=
3207 dev_priv->gtt.mappable_end);
Ben Widawsky4bd561b2013-08-13 18:09:07 -07003208
Ben Widawsky5cacaac2013-07-31 17:00:13 -07003209 obj->map_and_fenceable = mappable && fenceable;
Ben Widawsky4bd561b2013-08-13 18:09:07 -07003210 }
Daniel Vetter75e9e912010-11-04 17:11:09 +01003211
Ben Widawsky7ace7ef2013-08-09 22:12:12 -07003212 WARN_ON(map_and_fenceable && !obj->map_and_fenceable);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003213
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003214 trace_i915_vma_bind(vma, map_and_fenceable);
Chris Wilson42d6ab42012-07-26 11:49:32 +01003215 i915_gem_verify_gtt(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07003216 return 0;
Ben Widawsky2f633152013-07-17 12:19:03 -07003217
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003218err_remove_node:
Dan Carpenter6286ef92013-07-19 08:46:27 +03003219 drm_mm_remove_node(&vma->node);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003220err_free_vma:
Ben Widawsky2f633152013-07-17 12:19:03 -07003221 i915_gem_vma_destroy(vma);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003222err_unpin:
Ben Widawsky2f633152013-07-17 12:19:03 -07003223 i915_gem_object_unpin_pages(obj);
Ben Widawsky2f633152013-07-17 12:19:03 -07003224 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003225}
3226
Chris Wilson000433b2013-08-08 14:41:09 +01003227bool
Chris Wilson2c225692013-08-09 12:26:45 +01003228i915_gem_clflush_object(struct drm_i915_gem_object *obj,
3229 bool force)
Eric Anholt673a3942008-07-30 12:06:12 -07003230{
Eric Anholt673a3942008-07-30 12:06:12 -07003231 /* If we don't have a page list set up, then we're not pinned
3232 * to GPU, and we can ignore the cache flush because it'll happen
3233 * again at bind time.
3234 */
Chris Wilson05394f32010-11-08 19:18:58 +00003235 if (obj->pages == NULL)
Chris Wilson000433b2013-08-08 14:41:09 +01003236 return false;
Eric Anholt673a3942008-07-30 12:06:12 -07003237
Imre Deak769ce462013-02-13 21:56:05 +02003238 /*
3239 * Stolen memory is always coherent with the GPU as it is explicitly
3240 * marked as wc by the system, or the system is cache-coherent.
3241 */
3242 if (obj->stolen)
Chris Wilson000433b2013-08-08 14:41:09 +01003243 return false;
Imre Deak769ce462013-02-13 21:56:05 +02003244
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003245 /* If the GPU is snooping the contents of the CPU cache,
3246 * we do not need to manually clear the CPU cache lines. However,
3247 * the caches are only snooped when the render cache is
3248 * flushed/invalidated. As we always have to emit invalidations
3249 * and flushes when moving into and out of the RENDER domain, correct
3250 * snooping behaviour occurs naturally as the result of our domain
3251 * tracking.
3252 */
Chris Wilson2c225692013-08-09 12:26:45 +01003253 if (!force && cpu_cache_is_coherent(obj->base.dev, obj->cache_level))
Chris Wilson000433b2013-08-08 14:41:09 +01003254 return false;
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003255
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003256 trace_i915_gem_object_clflush(obj);
Chris Wilson9da3da62012-06-01 15:20:22 +01003257 drm_clflush_sg(obj->pages);
Chris Wilson000433b2013-08-08 14:41:09 +01003258
3259 return true;
Eric Anholte47c68e2008-11-14 13:35:19 -08003260}
3261
3262/** Flushes the GTT write domain for the object if it's dirty. */
3263static void
Chris Wilson05394f32010-11-08 19:18:58 +00003264i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003265{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003266 uint32_t old_write_domain;
3267
Chris Wilson05394f32010-11-08 19:18:58 +00003268 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08003269 return;
3270
Chris Wilson63256ec2011-01-04 18:42:07 +00003271 /* No actual flushing is required for the GTT write domain. Writes
Eric Anholte47c68e2008-11-14 13:35:19 -08003272 * to it immediately go to main memory as far as we know, so there's
3273 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00003274 *
3275 * However, we do have to enforce the order so that all writes through
3276 * the GTT land before any writes to the device, such as updates to
3277 * the GATT itself.
Eric Anholte47c68e2008-11-14 13:35:19 -08003278 */
Chris Wilson63256ec2011-01-04 18:42:07 +00003279 wmb();
3280
Chris Wilson05394f32010-11-08 19:18:58 +00003281 old_write_domain = obj->base.write_domain;
3282 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003283
3284 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003285 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003286 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003287}
3288
3289/** Flushes the CPU write domain for the object if it's dirty. */
3290static void
Chris Wilson2c225692013-08-09 12:26:45 +01003291i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj,
3292 bool force)
Eric Anholte47c68e2008-11-14 13:35:19 -08003293{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003294 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08003295
Chris Wilson05394f32010-11-08 19:18:58 +00003296 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08003297 return;
3298
Chris Wilson000433b2013-08-08 14:41:09 +01003299 if (i915_gem_clflush_object(obj, force))
3300 i915_gem_chipset_flush(obj->base.dev);
3301
Chris Wilson05394f32010-11-08 19:18:58 +00003302 old_write_domain = obj->base.write_domain;
3303 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003304
3305 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003306 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003307 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003308}
3309
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003310/**
3311 * Moves a single object to the GTT read, and possibly write domain.
3312 *
3313 * This function returns when the move is complete, including waiting on
3314 * flushes to occur.
3315 */
Jesse Barnes79e53942008-11-07 14:24:08 -08003316int
Chris Wilson20217462010-11-23 15:26:33 +00003317i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003318{
Chris Wilson8325a092012-04-24 15:52:35 +01003319 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003320 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003321 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003322
Eric Anholt02354392008-11-26 13:58:13 -08003323 /* Not valid to be called on unbound objects. */
Ben Widawsky98438772013-07-31 17:00:12 -07003324 if (!i915_gem_obj_bound_any(obj))
Eric Anholt02354392008-11-26 13:58:13 -08003325 return -EINVAL;
3326
Chris Wilson8d7e3de2011-02-07 15:23:02 +00003327 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
3328 return 0;
3329
Chris Wilson0201f1e2012-07-20 12:41:01 +01003330 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00003331 if (ret)
3332 return ret;
3333
Chris Wilson2c225692013-08-09 12:26:45 +01003334 i915_gem_object_flush_cpu_write_domain(obj, false);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003335
Chris Wilsond0a57782012-10-09 19:24:37 +01003336 /* Serialise direct access to this object with the barriers for
3337 * coherent writes from the GPU, by effectively invalidating the
3338 * GTT domain upon first access.
3339 */
3340 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
3341 mb();
3342
Chris Wilson05394f32010-11-08 19:18:58 +00003343 old_write_domain = obj->base.write_domain;
3344 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003345
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003346 /* It should now be out of any other write domains, and we can update
3347 * the domain values for our changes.
3348 */
Chris Wilson05394f32010-11-08 19:18:58 +00003349 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
3350 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08003351 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003352 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
3353 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
3354 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08003355 }
3356
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003357 trace_i915_gem_object_change_domain(obj,
3358 old_read_domains,
3359 old_write_domain);
3360
Chris Wilson8325a092012-04-24 15:52:35 +01003361 /* And bump the LRU for this access */
Ben Widawskyca191b12013-07-31 17:00:14 -07003362 if (i915_gem_object_is_inactive(obj)) {
3363 struct i915_vma *vma = i915_gem_obj_to_vma(obj,
3364 &dev_priv->gtt.base);
3365 if (vma)
3366 list_move_tail(&vma->mm_list,
3367 &dev_priv->gtt.base.inactive_list);
3368
3369 }
Chris Wilson8325a092012-04-24 15:52:35 +01003370
Eric Anholte47c68e2008-11-14 13:35:19 -08003371 return 0;
3372}
3373
Chris Wilsone4ffd172011-04-04 09:44:39 +01003374int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
3375 enum i915_cache_level cache_level)
3376{
Daniel Vetter7bddb012012-02-09 17:15:47 +01003377 struct drm_device *dev = obj->base.dev;
3378 drm_i915_private_t *dev_priv = dev->dev_private;
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003379 struct i915_vma *vma;
Chris Wilsone4ffd172011-04-04 09:44:39 +01003380 int ret;
3381
3382 if (obj->cache_level == cache_level)
3383 return 0;
3384
3385 if (obj->pin_count) {
3386 DRM_DEBUG("can not change the cache level of pinned objects\n");
3387 return -EBUSY;
3388 }
3389
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003390 list_for_each_entry(vma, &obj->vma_list, vma_link) {
3391 if (!i915_gem_valid_gtt_space(dev, &vma->node, cache_level)) {
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003392 ret = i915_vma_unbind(vma);
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003393 if (ret)
3394 return ret;
3395
3396 break;
3397 }
Chris Wilson42d6ab42012-07-26 11:49:32 +01003398 }
3399
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003400 if (i915_gem_obj_bound_any(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003401 ret = i915_gem_object_finish_gpu(obj);
3402 if (ret)
3403 return ret;
3404
3405 i915_gem_object_finish_gtt(obj);
3406
3407 /* Before SandyBridge, you could not use tiling or fence
3408 * registers with snooped memory, so relinquish any fences
3409 * currently pointing to our region in the aperture.
3410 */
Chris Wilson42d6ab42012-07-26 11:49:32 +01003411 if (INTEL_INFO(dev)->gen < 6) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003412 ret = i915_gem_object_put_fence(obj);
3413 if (ret)
3414 return ret;
3415 }
3416
Daniel Vetter74898d72012-02-15 23:50:22 +01003417 if (obj->has_global_gtt_mapping)
3418 i915_gem_gtt_bind_object(obj, cache_level);
Daniel Vetter7bddb012012-02-09 17:15:47 +01003419 if (obj->has_aliasing_ppgtt_mapping)
3420 i915_ppgtt_bind_object(dev_priv->mm.aliasing_ppgtt,
3421 obj, cache_level);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003422 }
3423
Chris Wilson2c225692013-08-09 12:26:45 +01003424 list_for_each_entry(vma, &obj->vma_list, vma_link)
3425 vma->node.color = cache_level;
3426 obj->cache_level = cache_level;
3427
3428 if (cpu_write_needs_clflush(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003429 u32 old_read_domains, old_write_domain;
3430
3431 /* If we're coming from LLC cached, then we haven't
3432 * actually been tracking whether the data is in the
3433 * CPU cache or not, since we only allow one bit set
3434 * in obj->write_domain and have been skipping the clflushes.
3435 * Just set it to the CPU cache for now.
3436 */
3437 WARN_ON(obj->base.write_domain & ~I915_GEM_DOMAIN_CPU);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003438
3439 old_read_domains = obj->base.read_domains;
3440 old_write_domain = obj->base.write_domain;
3441
3442 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3443 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3444
3445 trace_i915_gem_object_change_domain(obj,
3446 old_read_domains,
3447 old_write_domain);
3448 }
3449
Chris Wilson42d6ab42012-07-26 11:49:32 +01003450 i915_gem_verify_gtt(dev);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003451 return 0;
3452}
3453
Ben Widawsky199adf42012-09-21 17:01:20 -07003454int i915_gem_get_caching_ioctl(struct drm_device *dev, void *data,
3455 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003456{
Ben Widawsky199adf42012-09-21 17:01:20 -07003457 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003458 struct drm_i915_gem_object *obj;
3459 int ret;
3460
3461 ret = i915_mutex_lock_interruptible(dev);
3462 if (ret)
3463 return ret;
3464
3465 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3466 if (&obj->base == NULL) {
3467 ret = -ENOENT;
3468 goto unlock;
3469 }
3470
Chris Wilson651d7942013-08-08 14:41:10 +01003471 switch (obj->cache_level) {
3472 case I915_CACHE_LLC:
3473 case I915_CACHE_L3_LLC:
3474 args->caching = I915_CACHING_CACHED;
3475 break;
3476
Chris Wilson4257d3b2013-08-08 14:41:11 +01003477 case I915_CACHE_WT:
3478 args->caching = I915_CACHING_DISPLAY;
3479 break;
3480
Chris Wilson651d7942013-08-08 14:41:10 +01003481 default:
3482 args->caching = I915_CACHING_NONE;
3483 break;
3484 }
Chris Wilsone6994ae2012-07-10 10:27:08 +01003485
3486 drm_gem_object_unreference(&obj->base);
3487unlock:
3488 mutex_unlock(&dev->struct_mutex);
3489 return ret;
3490}
3491
Ben Widawsky199adf42012-09-21 17:01:20 -07003492int i915_gem_set_caching_ioctl(struct drm_device *dev, void *data,
3493 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003494{
Ben Widawsky199adf42012-09-21 17:01:20 -07003495 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003496 struct drm_i915_gem_object *obj;
3497 enum i915_cache_level level;
3498 int ret;
3499
Ben Widawsky199adf42012-09-21 17:01:20 -07003500 switch (args->caching) {
3501 case I915_CACHING_NONE:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003502 level = I915_CACHE_NONE;
3503 break;
Ben Widawsky199adf42012-09-21 17:01:20 -07003504 case I915_CACHING_CACHED:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003505 level = I915_CACHE_LLC;
3506 break;
Chris Wilson4257d3b2013-08-08 14:41:11 +01003507 case I915_CACHING_DISPLAY:
3508 level = HAS_WT(dev) ? I915_CACHE_WT : I915_CACHE_NONE;
3509 break;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003510 default:
3511 return -EINVAL;
3512 }
3513
Ben Widawsky3bc29132012-09-26 16:15:20 -07003514 ret = i915_mutex_lock_interruptible(dev);
3515 if (ret)
3516 return ret;
3517
Chris Wilsone6994ae2012-07-10 10:27:08 +01003518 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3519 if (&obj->base == NULL) {
3520 ret = -ENOENT;
3521 goto unlock;
3522 }
3523
3524 ret = i915_gem_object_set_cache_level(obj, level);
3525
3526 drm_gem_object_unreference(&obj->base);
3527unlock:
3528 mutex_unlock(&dev->struct_mutex);
3529 return ret;
3530}
3531
Chris Wilsoncc98b412013-08-09 12:25:09 +01003532static bool is_pin_display(struct drm_i915_gem_object *obj)
3533{
3534 /* There are 3 sources that pin objects:
3535 * 1. The display engine (scanouts, sprites, cursors);
3536 * 2. Reservations for execbuffer;
3537 * 3. The user.
3538 *
3539 * We can ignore reservations as we hold the struct_mutex and
3540 * are only called outside of the reservation path. The user
3541 * can only increment pin_count once, and so if after
3542 * subtracting the potential reference by the user, any pin_count
3543 * remains, it must be due to another use by the display engine.
3544 */
3545 return obj->pin_count - !!obj->user_pin_count;
3546}
3547
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003548/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003549 * Prepare buffer for display plane (scanout, cursors, etc).
3550 * Can be called from an uninterruptible phase (modesetting) and allows
3551 * any flushes to be pipelined (for pageflips).
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003552 */
3553int
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003554i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
3555 u32 alignment,
Chris Wilson919926a2010-11-12 13:42:53 +00003556 struct intel_ring_buffer *pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003557{
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003558 u32 old_read_domains, old_write_domain;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003559 int ret;
3560
Chris Wilson0be73282010-12-06 14:36:27 +00003561 if (pipelined != obj->ring) {
Ben Widawsky2911a352012-04-05 14:47:36 -07003562 ret = i915_gem_object_sync(obj, pipelined);
3563 if (ret)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003564 return ret;
3565 }
3566
Chris Wilsoncc98b412013-08-09 12:25:09 +01003567 /* Mark the pin_display early so that we account for the
3568 * display coherency whilst setting up the cache domains.
3569 */
3570 obj->pin_display = true;
3571
Eric Anholta7ef0642011-03-29 16:59:54 -07003572 /* The display engine is not coherent with the LLC cache on gen6. As
3573 * a result, we make sure that the pinning that is about to occur is
3574 * done with uncached PTEs. This is lowest common denominator for all
3575 * chipsets.
3576 *
3577 * However for gen6+, we could do better by using the GFDT bit instead
3578 * of uncaching, which would allow us to flush all the LLC-cached data
3579 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
3580 */
Chris Wilson651d7942013-08-08 14:41:10 +01003581 ret = i915_gem_object_set_cache_level(obj,
3582 HAS_WT(obj->base.dev) ? I915_CACHE_WT : I915_CACHE_NONE);
Eric Anholta7ef0642011-03-29 16:59:54 -07003583 if (ret)
Chris Wilsoncc98b412013-08-09 12:25:09 +01003584 goto err_unpin_display;
Eric Anholta7ef0642011-03-29 16:59:54 -07003585
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003586 /* As the user may map the buffer once pinned in the display plane
3587 * (e.g. libkms for the bootup splash), we have to ensure that we
3588 * always use map_and_fenceable for all scanout buffers.
3589 */
Ben Widawskyc37e2202013-07-31 16:59:58 -07003590 ret = i915_gem_obj_ggtt_pin(obj, alignment, true, false);
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003591 if (ret)
Chris Wilsoncc98b412013-08-09 12:25:09 +01003592 goto err_unpin_display;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003593
Chris Wilson2c225692013-08-09 12:26:45 +01003594 i915_gem_object_flush_cpu_write_domain(obj, true);
Chris Wilsonb118c1e2010-05-27 13:18:14 +01003595
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003596 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00003597 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003598
3599 /* It should now be out of any other write domains, and we can update
3600 * the domain values for our changes.
3601 */
Chris Wilsone5f1d962012-07-20 12:41:00 +01003602 obj->base.write_domain = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00003603 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003604
3605 trace_i915_gem_object_change_domain(obj,
3606 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003607 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003608
3609 return 0;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003610
3611err_unpin_display:
3612 obj->pin_display = is_pin_display(obj);
3613 return ret;
3614}
3615
3616void
3617i915_gem_object_unpin_from_display_plane(struct drm_i915_gem_object *obj)
3618{
3619 i915_gem_object_unpin(obj);
3620 obj->pin_display = is_pin_display(obj);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003621}
3622
Chris Wilson85345512010-11-13 09:49:11 +00003623int
Chris Wilsona8198ee2011-04-13 22:04:09 +01003624i915_gem_object_finish_gpu(struct drm_i915_gem_object *obj)
Chris Wilson85345512010-11-13 09:49:11 +00003625{
Chris Wilson88241782011-01-07 17:09:48 +00003626 int ret;
3627
Chris Wilsona8198ee2011-04-13 22:04:09 +01003628 if ((obj->base.read_domains & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson85345512010-11-13 09:49:11 +00003629 return 0;
3630
Chris Wilson0201f1e2012-07-20 12:41:01 +01003631 ret = i915_gem_object_wait_rendering(obj, false);
Chris Wilsonc501ae72011-12-14 13:57:23 +01003632 if (ret)
3633 return ret;
3634
Chris Wilsona8198ee2011-04-13 22:04:09 +01003635 /* Ensure that we invalidate the GPU's caches and TLBs. */
3636 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilsonc501ae72011-12-14 13:57:23 +01003637 return 0;
Chris Wilson85345512010-11-13 09:49:11 +00003638}
3639
Eric Anholte47c68e2008-11-14 13:35:19 -08003640/**
3641 * Moves a single object to the CPU read, and possibly write domain.
3642 *
3643 * This function returns when the move is complete, including waiting on
3644 * flushes to occur.
3645 */
Chris Wilsondabdfe02012-03-26 10:10:27 +02003646int
Chris Wilson919926a2010-11-12 13:42:53 +00003647i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08003648{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003649 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003650 int ret;
3651
Chris Wilson8d7e3de2011-02-07 15:23:02 +00003652 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
3653 return 0;
3654
Chris Wilson0201f1e2012-07-20 12:41:01 +01003655 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00003656 if (ret)
3657 return ret;
3658
Eric Anholte47c68e2008-11-14 13:35:19 -08003659 i915_gem_object_flush_gtt_write_domain(obj);
3660
Chris Wilson05394f32010-11-08 19:18:58 +00003661 old_write_domain = obj->base.write_domain;
3662 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003663
Eric Anholte47c68e2008-11-14 13:35:19 -08003664 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00003665 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Chris Wilson2c225692013-08-09 12:26:45 +01003666 i915_gem_clflush_object(obj, false);
Eric Anholte47c68e2008-11-14 13:35:19 -08003667
Chris Wilson05394f32010-11-08 19:18:58 +00003668 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003669 }
3670
3671 /* It should now be out of any other write domains, and we can update
3672 * the domain values for our changes.
3673 */
Chris Wilson05394f32010-11-08 19:18:58 +00003674 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08003675
3676 /* If we're writing through the CPU, then the GPU read domains will
3677 * need to be invalidated at next use.
3678 */
3679 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003680 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3681 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003682 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003683
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003684 trace_i915_gem_object_change_domain(obj,
3685 old_read_domains,
3686 old_write_domain);
3687
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003688 return 0;
3689}
3690
Eric Anholt673a3942008-07-30 12:06:12 -07003691/* Throttle our rendering by waiting until the ring has completed our requests
3692 * emitted over 20 msec ago.
3693 *
Eric Anholtb9624422009-06-03 07:27:35 +00003694 * Note that if we were to use the current jiffies each time around the loop,
3695 * we wouldn't escape the function with any frames outstanding if the time to
3696 * render a frame was over 20ms.
3697 *
Eric Anholt673a3942008-07-30 12:06:12 -07003698 * This should get us reasonable parallelism between CPU and GPU but also
3699 * relatively low latency when blocking on a particular request to finish.
3700 */
3701static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003702i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003703{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003704 struct drm_i915_private *dev_priv = dev->dev_private;
3705 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00003706 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003707 struct drm_i915_gem_request *request;
3708 struct intel_ring_buffer *ring = NULL;
Daniel Vetterf69061b2012-12-06 09:01:42 +01003709 unsigned reset_counter;
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003710 u32 seqno = 0;
3711 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003712
Daniel Vetter308887a2012-11-14 17:14:06 +01003713 ret = i915_gem_wait_for_error(&dev_priv->gpu_error);
3714 if (ret)
3715 return ret;
3716
3717 ret = i915_gem_check_wedge(&dev_priv->gpu_error, false);
3718 if (ret)
3719 return ret;
Chris Wilsone110e8d2011-01-26 15:39:14 +00003720
Chris Wilson1c255952010-09-26 11:03:27 +01003721 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003722 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00003723 if (time_after_eq(request->emitted_jiffies, recent_enough))
3724 break;
3725
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003726 ring = request->ring;
3727 seqno = request->seqno;
Eric Anholtb9624422009-06-03 07:27:35 +00003728 }
Daniel Vetterf69061b2012-12-06 09:01:42 +01003729 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilson1c255952010-09-26 11:03:27 +01003730 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003731
3732 if (seqno == 0)
3733 return 0;
3734
Daniel Vetterf69061b2012-12-06 09:01:42 +01003735 ret = __wait_seqno(ring, seqno, reset_counter, true, NULL);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003736 if (ret == 0)
3737 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00003738
Eric Anholt673a3942008-07-30 12:06:12 -07003739 return ret;
3740}
3741
Eric Anholt673a3942008-07-30 12:06:12 -07003742int
Chris Wilson05394f32010-11-08 19:18:58 +00003743i915_gem_object_pin(struct drm_i915_gem_object *obj,
Ben Widawskyc37e2202013-07-31 16:59:58 -07003744 struct i915_address_space *vm,
Chris Wilson05394f32010-11-08 19:18:58 +00003745 uint32_t alignment,
Chris Wilson86a1ee22012-08-11 15:41:04 +01003746 bool map_and_fenceable,
3747 bool nonblocking)
Eric Anholt673a3942008-07-30 12:06:12 -07003748{
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003749 struct i915_vma *vma;
Eric Anholt673a3942008-07-30 12:06:12 -07003750 int ret;
3751
Chris Wilson7e81a422012-09-15 09:41:57 +01003752 if (WARN_ON(obj->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT))
3753 return -EBUSY;
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003754
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003755 WARN_ON(map_and_fenceable && !i915_is_ggtt(vm));
3756
3757 vma = i915_gem_obj_to_vma(obj, vm);
3758
3759 if (vma) {
3760 if ((alignment &&
3761 vma->node.start & (alignment - 1)) ||
Chris Wilson05394f32010-11-08 19:18:58 +00003762 (map_and_fenceable && !obj->map_and_fenceable)) {
3763 WARN(obj->pin_count,
Chris Wilsonae7d49d2010-08-04 12:37:41 +01003764 "bo is already pinned with incorrect alignment:"
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003765 " offset=%lx, req.alignment=%x, req.map_and_fenceable=%d,"
Daniel Vetter75e9e912010-11-04 17:11:09 +01003766 " obj->map_and_fenceable=%d\n",
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003767 i915_gem_obj_offset(obj, vm), alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003768 map_and_fenceable,
Chris Wilson05394f32010-11-08 19:18:58 +00003769 obj->map_and_fenceable);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003770 ret = i915_vma_unbind(vma);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003771 if (ret)
3772 return ret;
3773 }
3774 }
3775
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003776 if (!i915_gem_obj_bound(obj, vm)) {
Chris Wilson87422672012-11-21 13:04:03 +00003777 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
3778
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003779 ret = i915_gem_object_bind_to_vm(obj, vm, alignment,
3780 map_and_fenceable,
3781 nonblocking);
Chris Wilson97311292009-09-21 00:22:34 +01003782 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07003783 return ret;
Chris Wilson87422672012-11-21 13:04:03 +00003784
3785 if (!dev_priv->mm.aliasing_ppgtt)
3786 i915_gem_gtt_bind_object(obj, obj->cache_level);
Chris Wilson22c344e2009-02-11 14:26:45 +00003787 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05003788
Daniel Vetter74898d72012-02-15 23:50:22 +01003789 if (!obj->has_global_gtt_mapping && map_and_fenceable)
3790 i915_gem_gtt_bind_object(obj, obj->cache_level);
3791
Chris Wilson1b502472012-04-24 15:47:30 +01003792 obj->pin_count++;
Chris Wilson6299f992010-11-24 12:23:44 +00003793 obj->pin_mappable |= map_and_fenceable;
Eric Anholt673a3942008-07-30 12:06:12 -07003794
3795 return 0;
3796}
3797
3798void
Chris Wilson05394f32010-11-08 19:18:58 +00003799i915_gem_object_unpin(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003800{
Chris Wilson05394f32010-11-08 19:18:58 +00003801 BUG_ON(obj->pin_count == 0);
Ben Widawsky98438772013-07-31 17:00:12 -07003802 BUG_ON(!i915_gem_obj_bound_any(obj));
Eric Anholt673a3942008-07-30 12:06:12 -07003803
Chris Wilson1b502472012-04-24 15:47:30 +01003804 if (--obj->pin_count == 0)
Chris Wilson6299f992010-11-24 12:23:44 +00003805 obj->pin_mappable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07003806}
3807
3808int
3809i915_gem_pin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003810 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003811{
3812 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003813 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07003814 int ret;
3815
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003816 ret = i915_mutex_lock_interruptible(dev);
3817 if (ret)
3818 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003819
Chris Wilson05394f32010-11-08 19:18:58 +00003820 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003821 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003822 ret = -ENOENT;
3823 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003824 }
Eric Anholt673a3942008-07-30 12:06:12 -07003825
Chris Wilson05394f32010-11-08 19:18:58 +00003826 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003827 DRM_ERROR("Attempting to pin a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003828 ret = -EINVAL;
3829 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003830 }
3831
Chris Wilson05394f32010-11-08 19:18:58 +00003832 if (obj->pin_filp != NULL && obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003833 DRM_ERROR("Already pinned in i915_gem_pin_ioctl(): %d\n",
3834 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003835 ret = -EINVAL;
3836 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003837 }
3838
Chris Wilson93be8782013-01-02 10:31:22 +00003839 if (obj->user_pin_count == 0) {
Ben Widawskyc37e2202013-07-31 16:59:58 -07003840 ret = i915_gem_obj_ggtt_pin(obj, args->alignment, true, false);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003841 if (ret)
3842 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07003843 }
3844
Chris Wilson93be8782013-01-02 10:31:22 +00003845 obj->user_pin_count++;
3846 obj->pin_filp = file;
3847
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003848 args->offset = i915_gem_obj_ggtt_offset(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003849out:
Chris Wilson05394f32010-11-08 19:18:58 +00003850 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003851unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003852 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003853 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003854}
3855
3856int
3857i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003858 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003859{
3860 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003861 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003862 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003863
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003864 ret = i915_mutex_lock_interruptible(dev);
3865 if (ret)
3866 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003867
Chris Wilson05394f32010-11-08 19:18:58 +00003868 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003869 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003870 ret = -ENOENT;
3871 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003872 }
Chris Wilson76c1dec2010-09-25 11:22:51 +01003873
Chris Wilson05394f32010-11-08 19:18:58 +00003874 if (obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003875 DRM_ERROR("Not pinned by caller in i915_gem_pin_ioctl(): %d\n",
3876 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003877 ret = -EINVAL;
3878 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003879 }
Chris Wilson05394f32010-11-08 19:18:58 +00003880 obj->user_pin_count--;
3881 if (obj->user_pin_count == 0) {
3882 obj->pin_filp = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08003883 i915_gem_object_unpin(obj);
3884 }
Eric Anholt673a3942008-07-30 12:06:12 -07003885
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003886out:
Chris Wilson05394f32010-11-08 19:18:58 +00003887 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003888unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003889 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003890 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003891}
3892
3893int
3894i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003895 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003896{
3897 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003898 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003899 int ret;
3900
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003901 ret = i915_mutex_lock_interruptible(dev);
3902 if (ret)
3903 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003904
Chris Wilson05394f32010-11-08 19:18:58 +00003905 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003906 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003907 ret = -ENOENT;
3908 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003909 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003910
Chris Wilson0be555b2010-08-04 15:36:30 +01003911 /* Count all active objects as busy, even if they are currently not used
3912 * by the gpu. Users of this interface expect objects to eventually
3913 * become non-busy without any further actions, therefore emit any
3914 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08003915 */
Daniel Vetter30dfebf2012-06-01 15:21:23 +02003916 ret = i915_gem_object_flush_active(obj);
3917
Chris Wilson05394f32010-11-08 19:18:58 +00003918 args->busy = obj->active;
Chris Wilsone9808ed2012-07-04 12:25:08 +01003919 if (obj->ring) {
3920 BUILD_BUG_ON(I915_NUM_RINGS > 16);
3921 args->busy |= intel_ring_flag(obj->ring) << 16;
3922 }
Eric Anholt673a3942008-07-30 12:06:12 -07003923
Chris Wilson05394f32010-11-08 19:18:58 +00003924 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003925unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003926 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003927 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003928}
3929
3930int
3931i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
3932 struct drm_file *file_priv)
3933{
Akshay Joshi0206e352011-08-16 15:34:10 -04003934 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07003935}
3936
Chris Wilson3ef94da2009-09-14 16:50:29 +01003937int
3938i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
3939 struct drm_file *file_priv)
3940{
3941 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003942 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003943 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003944
3945 switch (args->madv) {
3946 case I915_MADV_DONTNEED:
3947 case I915_MADV_WILLNEED:
3948 break;
3949 default:
3950 return -EINVAL;
3951 }
3952
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003953 ret = i915_mutex_lock_interruptible(dev);
3954 if (ret)
3955 return ret;
3956
Chris Wilson05394f32010-11-08 19:18:58 +00003957 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003958 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003959 ret = -ENOENT;
3960 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003961 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01003962
Chris Wilson05394f32010-11-08 19:18:58 +00003963 if (obj->pin_count) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003964 ret = -EINVAL;
3965 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003966 }
3967
Chris Wilson05394f32010-11-08 19:18:58 +00003968 if (obj->madv != __I915_MADV_PURGED)
3969 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003970
Chris Wilson6c085a72012-08-20 11:40:46 +02003971 /* if the object is no longer attached, discard its backing storage */
3972 if (i915_gem_object_is_purgeable(obj) && obj->pages == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01003973 i915_gem_object_truncate(obj);
3974
Chris Wilson05394f32010-11-08 19:18:58 +00003975 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003976
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003977out:
Chris Wilson05394f32010-11-08 19:18:58 +00003978 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003979unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01003980 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003981 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003982}
3983
Chris Wilson37e680a2012-06-07 15:38:42 +01003984void i915_gem_object_init(struct drm_i915_gem_object *obj,
3985 const struct drm_i915_gem_object_ops *ops)
Chris Wilson0327d6b2012-08-11 15:41:06 +01003986{
Ben Widawsky35c20a62013-05-31 11:28:48 -07003987 INIT_LIST_HEAD(&obj->global_list);
Chris Wilson0327d6b2012-08-11 15:41:06 +01003988 INIT_LIST_HEAD(&obj->ring_list);
3989 INIT_LIST_HEAD(&obj->exec_list);
Ben Widawskyb25cb2f2013-08-14 11:38:33 +02003990 INIT_LIST_HEAD(&obj->obj_exec_link);
Ben Widawsky2f633152013-07-17 12:19:03 -07003991 INIT_LIST_HEAD(&obj->vma_list);
Chris Wilson0327d6b2012-08-11 15:41:06 +01003992
Chris Wilson37e680a2012-06-07 15:38:42 +01003993 obj->ops = ops;
3994
Chris Wilson0327d6b2012-08-11 15:41:06 +01003995 obj->fence_reg = I915_FENCE_REG_NONE;
3996 obj->madv = I915_MADV_WILLNEED;
3997 /* Avoid an unnecessary call to unbind on the first bind. */
3998 obj->map_and_fenceable = true;
3999
4000 i915_gem_info_add_obj(obj->base.dev->dev_private, obj->base.size);
4001}
4002
Chris Wilson37e680a2012-06-07 15:38:42 +01004003static const struct drm_i915_gem_object_ops i915_gem_object_ops = {
4004 .get_pages = i915_gem_object_get_pages_gtt,
4005 .put_pages = i915_gem_object_put_pages_gtt,
4006};
4007
Chris Wilson05394f32010-11-08 19:18:58 +00004008struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
4009 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00004010{
Daniel Vetterc397b902010-04-09 19:05:07 +00004011 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07004012 struct address_space *mapping;
Daniel Vetter1a240d42012-11-29 22:18:51 +01004013 gfp_t mask;
Daniel Vetterc397b902010-04-09 19:05:07 +00004014
Chris Wilson42dcedd2012-11-15 11:32:30 +00004015 obj = i915_gem_object_alloc(dev);
Daniel Vetterc397b902010-04-09 19:05:07 +00004016 if (obj == NULL)
4017 return NULL;
4018
4019 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
Chris Wilson42dcedd2012-11-15 11:32:30 +00004020 i915_gem_object_free(obj);
Daniel Vetterc397b902010-04-09 19:05:07 +00004021 return NULL;
4022 }
4023
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004024 mask = GFP_HIGHUSER | __GFP_RECLAIMABLE;
4025 if (IS_CRESTLINE(dev) || IS_BROADWATER(dev)) {
4026 /* 965gm cannot relocate objects above 4GiB. */
4027 mask &= ~__GFP_HIGHMEM;
4028 mask |= __GFP_DMA32;
4029 }
4030
Al Viro496ad9a2013-01-23 17:07:38 -05004031 mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004032 mapping_set_gfp_mask(mapping, mask);
Hugh Dickins5949eac2011-06-27 16:18:18 -07004033
Chris Wilson37e680a2012-06-07 15:38:42 +01004034 i915_gem_object_init(obj, &i915_gem_object_ops);
Chris Wilson73aa8082010-09-30 11:46:12 +01004035
Daniel Vetterc397b902010-04-09 19:05:07 +00004036 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
4037 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4038
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02004039 if (HAS_LLC(dev)) {
4040 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07004041 * cache) for about a 10% performance improvement
4042 * compared to uncached. Graphics requests other than
4043 * display scanout are coherent with the CPU in
4044 * accessing this cache. This means in this mode we
4045 * don't need to clflush on the CPU side, and on the
4046 * GPU side we only need to flush internal caches to
4047 * get data visible to the CPU.
4048 *
4049 * However, we maintain the display planes as UC, and so
4050 * need to rebind when first used as such.
4051 */
4052 obj->cache_level = I915_CACHE_LLC;
4053 } else
4054 obj->cache_level = I915_CACHE_NONE;
4055
Daniel Vetterd861e332013-07-24 23:25:03 +02004056 trace_i915_gem_object_create(obj);
4057
Chris Wilson05394f32010-11-08 19:18:58 +00004058 return obj;
Daniel Vetterac52bc52010-04-09 19:05:06 +00004059}
4060
Eric Anholt673a3942008-07-30 12:06:12 -07004061int i915_gem_init_object(struct drm_gem_object *obj)
4062{
Daniel Vetterc397b902010-04-09 19:05:07 +00004063 BUG();
Jesse Barnesde151cf2008-11-12 10:03:55 -08004064
Eric Anholt673a3942008-07-30 12:06:12 -07004065 return 0;
4066}
4067
Chris Wilson1488fc02012-04-24 15:47:31 +01004068void i915_gem_free_object(struct drm_gem_object *gem_obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01004069{
Chris Wilson1488fc02012-04-24 15:47:31 +01004070 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00004071 struct drm_device *dev = obj->base.dev;
Chris Wilsonbe726152010-07-23 23:18:50 +01004072 drm_i915_private_t *dev_priv = dev->dev_private;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004073 struct i915_vma *vma, *next;
Chris Wilsonbe726152010-07-23 23:18:50 +01004074
Chris Wilson26e12f82011-03-20 11:20:19 +00004075 trace_i915_gem_object_destroy(obj);
4076
Chris Wilson1488fc02012-04-24 15:47:31 +01004077 if (obj->phys_obj)
4078 i915_gem_detach_phys_object(dev, obj);
4079
4080 obj->pin_count = 0;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004081 /* NB: 0 or 1 elements */
4082 WARN_ON(!list_empty(&obj->vma_list) &&
4083 !list_is_singular(&obj->vma_list));
4084 list_for_each_entry_safe(vma, next, &obj->vma_list, vma_link) {
4085 int ret = i915_vma_unbind(vma);
4086 if (WARN_ON(ret == -ERESTARTSYS)) {
4087 bool was_interruptible;
Chris Wilson1488fc02012-04-24 15:47:31 +01004088
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004089 was_interruptible = dev_priv->mm.interruptible;
4090 dev_priv->mm.interruptible = false;
Chris Wilson1488fc02012-04-24 15:47:31 +01004091
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004092 WARN_ON(i915_vma_unbind(vma));
Chris Wilson1488fc02012-04-24 15:47:31 +01004093
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004094 dev_priv->mm.interruptible = was_interruptible;
4095 }
Chris Wilson1488fc02012-04-24 15:47:31 +01004096 }
4097
Ben Widawsky1d64ae72013-05-31 14:46:20 -07004098 /* Stolen objects don't hold a ref, but do hold pin count. Fix that up
4099 * before progressing. */
4100 if (obj->stolen)
4101 i915_gem_object_unpin_pages(obj);
4102
Ben Widawsky401c29f2013-05-31 11:28:47 -07004103 if (WARN_ON(obj->pages_pin_count))
4104 obj->pages_pin_count = 0;
Chris Wilson37e680a2012-06-07 15:38:42 +01004105 i915_gem_object_put_pages(obj);
Chris Wilsond8cb5082012-08-11 15:41:03 +01004106 i915_gem_object_free_mmap_offset(obj);
Chris Wilson0104fdb2012-11-15 11:32:26 +00004107 i915_gem_object_release_stolen(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01004108
Chris Wilson9da3da62012-06-01 15:20:22 +01004109 BUG_ON(obj->pages);
4110
Chris Wilson2f745ad2012-09-04 21:02:58 +01004111 if (obj->base.import_attach)
4112 drm_prime_gem_destroy(&obj->base, NULL);
Chris Wilsonbe726152010-07-23 23:18:50 +01004113
Chris Wilson05394f32010-11-08 19:18:58 +00004114 drm_gem_object_release(&obj->base);
4115 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01004116
Chris Wilson05394f32010-11-08 19:18:58 +00004117 kfree(obj->bit_17);
Chris Wilson42dcedd2012-11-15 11:32:30 +00004118 i915_gem_object_free(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01004119}
4120
Ben Widawsky2f633152013-07-17 12:19:03 -07004121struct i915_vma *i915_gem_vma_create(struct drm_i915_gem_object *obj,
4122 struct i915_address_space *vm)
4123{
4124 struct i915_vma *vma = kzalloc(sizeof(*vma), GFP_KERNEL);
4125 if (vma == NULL)
4126 return ERR_PTR(-ENOMEM);
4127
4128 INIT_LIST_HEAD(&vma->vma_link);
Ben Widawskyca191b12013-07-31 17:00:14 -07004129 INIT_LIST_HEAD(&vma->mm_list);
Ben Widawsky82a55ad2013-08-14 11:38:34 +02004130 INIT_LIST_HEAD(&vma->exec_list);
Ben Widawsky2f633152013-07-17 12:19:03 -07004131 vma->vm = vm;
4132 vma->obj = obj;
4133
Ben Widawsky8b9c2b92013-07-31 17:00:16 -07004134 /* Keep GGTT vmas first to make debug easier */
4135 if (i915_is_ggtt(vm))
4136 list_add(&vma->vma_link, &obj->vma_list);
4137 else
4138 list_add_tail(&vma->vma_link, &obj->vma_list);
4139
Ben Widawsky2f633152013-07-17 12:19:03 -07004140 return vma;
4141}
4142
4143void i915_gem_vma_destroy(struct i915_vma *vma)
4144{
4145 WARN_ON(vma->node.allocated);
Ben Widawsky8b9c2b92013-07-31 17:00:16 -07004146 list_del(&vma->vma_link);
Ben Widawsky2f633152013-07-17 12:19:03 -07004147 kfree(vma);
4148}
4149
Jesse Barnes5669fca2009-02-17 15:13:31 -08004150int
Eric Anholt673a3942008-07-30 12:06:12 -07004151i915_gem_idle(struct drm_device *dev)
4152{
4153 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson29105cc2010-01-07 10:39:13 +00004154 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004155
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004156 if (dev_priv->ums.mm_suspended) {
Keith Packard6dbe2772008-10-14 21:41:13 -07004157 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07004158 return 0;
Keith Packard6dbe2772008-10-14 21:41:13 -07004159 }
Eric Anholt673a3942008-07-30 12:06:12 -07004160
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004161 ret = i915_gpu_idle(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07004162 if (ret) {
4163 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07004164 return ret;
Keith Packard6dbe2772008-10-14 21:41:13 -07004165 }
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004166 i915_gem_retire_requests(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07004167
Chris Wilson29105cc2010-01-07 10:39:13 +00004168 /* Under UMS, be paranoid and evict. */
Chris Wilsona39d7ef2012-04-24 18:22:52 +01004169 if (!drm_core_check_feature(dev, DRIVER_MODESET))
Chris Wilson6c085a72012-08-20 11:40:46 +02004170 i915_gem_evict_everything(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00004171
Daniel Vetter99584db2012-11-14 17:14:04 +01004172 del_timer_sync(&dev_priv->gpu_error.hangcheck_timer);
Chris Wilson29105cc2010-01-07 10:39:13 +00004173
4174 i915_kernel_lost_context(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07004175 i915_gem_cleanup_ringbuffer(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00004176
Chris Wilson29105cc2010-01-07 10:39:13 +00004177 /* Cancel the retire work handler, which should be idle now. */
4178 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
4179
Eric Anholt673a3942008-07-30 12:06:12 -07004180 return 0;
4181}
4182
Ben Widawskyb9524a12012-05-25 16:56:24 -07004183void i915_gem_l3_remap(struct drm_device *dev)
4184{
4185 drm_i915_private_t *dev_priv = dev->dev_private;
4186 u32 misccpctl;
4187 int i;
4188
Daniel Vettereb32e452013-02-14 19:46:07 +01004189 if (!HAS_L3_GPU_CACHE(dev))
Ben Widawskyb9524a12012-05-25 16:56:24 -07004190 return;
4191
Daniel Vettera4da4fa2012-11-02 19:55:07 +01004192 if (!dev_priv->l3_parity.remap_info)
Ben Widawskyb9524a12012-05-25 16:56:24 -07004193 return;
4194
4195 misccpctl = I915_READ(GEN7_MISCCPCTL);
4196 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
4197 POSTING_READ(GEN7_MISCCPCTL);
4198
4199 for (i = 0; i < GEN7_L3LOG_SIZE; i += 4) {
4200 u32 remap = I915_READ(GEN7_L3LOG_BASE + i);
Daniel Vettera4da4fa2012-11-02 19:55:07 +01004201 if (remap && remap != dev_priv->l3_parity.remap_info[i/4])
Ben Widawskyb9524a12012-05-25 16:56:24 -07004202 DRM_DEBUG("0x%x was already programmed to %x\n",
4203 GEN7_L3LOG_BASE + i, remap);
Daniel Vettera4da4fa2012-11-02 19:55:07 +01004204 if (remap && !dev_priv->l3_parity.remap_info[i/4])
Ben Widawskyb9524a12012-05-25 16:56:24 -07004205 DRM_DEBUG_DRIVER("Clearing remapped register\n");
Daniel Vettera4da4fa2012-11-02 19:55:07 +01004206 I915_WRITE(GEN7_L3LOG_BASE + i, dev_priv->l3_parity.remap_info[i/4]);
Ben Widawskyb9524a12012-05-25 16:56:24 -07004207 }
4208
4209 /* Make sure all the writes land before disabling dop clock gating */
4210 POSTING_READ(GEN7_L3LOG_BASE);
4211
4212 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
4213}
4214
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004215void i915_gem_init_swizzling(struct drm_device *dev)
4216{
4217 drm_i915_private_t *dev_priv = dev->dev_private;
4218
Daniel Vetter11782b02012-01-31 16:47:55 +01004219 if (INTEL_INFO(dev)->gen < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004220 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
4221 return;
4222
4223 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
4224 DISP_TILE_SURFACE_SWIZZLING);
4225
Daniel Vetter11782b02012-01-31 16:47:55 +01004226 if (IS_GEN5(dev))
4227 return;
4228
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004229 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
4230 if (IS_GEN6(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004231 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_SNB));
Ben Widawsky8782e262012-12-18 10:31:23 -08004232 else if (IS_GEN7(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004233 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_IVB));
Ben Widawsky8782e262012-12-18 10:31:23 -08004234 else
4235 BUG();
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004236}
Daniel Vettere21af882012-02-09 20:53:27 +01004237
Chris Wilson67b1b572012-07-05 23:49:40 +01004238static bool
4239intel_enable_blt(struct drm_device *dev)
4240{
4241 if (!HAS_BLT(dev))
4242 return false;
4243
4244 /* The blitter was dysfunctional on early prototypes */
4245 if (IS_GEN6(dev) && dev->pdev->revision < 8) {
4246 DRM_INFO("BLT not supported on this pre-production hardware;"
4247 " graphics performance will be degraded.\n");
4248 return false;
4249 }
4250
4251 return true;
4252}
4253
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004254static int i915_gem_init_rings(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004255{
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004256 struct drm_i915_private *dev_priv = dev->dev_private;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004257 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004258
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004259 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004260 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00004261 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004262
4263 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004264 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004265 if (ret)
4266 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08004267 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01004268
Chris Wilson67b1b572012-07-05 23:49:40 +01004269 if (intel_enable_blt(dev)) {
Chris Wilson549f7362010-10-19 11:19:32 +01004270 ret = intel_init_blt_ring_buffer(dev);
4271 if (ret)
4272 goto cleanup_bsd_ring;
4273 }
4274
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004275 if (HAS_VEBOX(dev)) {
4276 ret = intel_init_vebox_ring_buffer(dev);
4277 if (ret)
4278 goto cleanup_blt_ring;
4279 }
4280
4281
Mika Kuoppala99433932013-01-22 14:12:17 +02004282 ret = i915_gem_set_seqno(dev, ((u32)~0 - 0x1000));
4283 if (ret)
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004284 goto cleanup_vebox_ring;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004285
4286 return 0;
4287
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004288cleanup_vebox_ring:
4289 intel_cleanup_ring_buffer(&dev_priv->ring[VECS]);
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004290cleanup_blt_ring:
4291 intel_cleanup_ring_buffer(&dev_priv->ring[BCS]);
4292cleanup_bsd_ring:
4293 intel_cleanup_ring_buffer(&dev_priv->ring[VCS]);
4294cleanup_render_ring:
4295 intel_cleanup_ring_buffer(&dev_priv->ring[RCS]);
4296
4297 return ret;
4298}
4299
4300int
4301i915_gem_init_hw(struct drm_device *dev)
4302{
4303 drm_i915_private_t *dev_priv = dev->dev_private;
4304 int ret;
4305
4306 if (INTEL_INFO(dev)->gen < 6 && !intel_enable_gtt())
4307 return -EIO;
4308
Ben Widawsky59124502013-07-04 11:02:05 -07004309 if (dev_priv->ellc_size)
Ben Widawsky05e21cc2013-07-04 11:02:04 -07004310 I915_WRITE(HSW_IDICR, I915_READ(HSW_IDICR) | IDIHASHMSK(0xf));
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004311
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004312 if (HAS_PCH_NOP(dev)) {
4313 u32 temp = I915_READ(GEN7_MSG_CTL);
4314 temp &= ~(WAIT_FOR_PCH_FLR_ACK | WAIT_FOR_PCH_RESET_ACK);
4315 I915_WRITE(GEN7_MSG_CTL, temp);
4316 }
4317
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004318 i915_gem_l3_remap(dev);
4319
4320 i915_gem_init_swizzling(dev);
4321
4322 ret = i915_gem_init_rings(dev);
4323 if (ret)
Mika Kuoppala99433932013-01-22 14:12:17 +02004324 return ret;
4325
Ben Widawsky254f9652012-06-04 14:42:42 -07004326 /*
4327 * XXX: There was some w/a described somewhere suggesting loading
4328 * contexts before PPGTT.
4329 */
4330 i915_gem_context_init(dev);
Ben Widawskyb7c36d22013-04-08 18:43:56 -07004331 if (dev_priv->mm.aliasing_ppgtt) {
4332 ret = dev_priv->mm.aliasing_ppgtt->enable(dev);
4333 if (ret) {
4334 i915_gem_cleanup_aliasing_ppgtt(dev);
4335 DRM_INFO("PPGTT enable failed. This is not fatal, but unexpected\n");
4336 }
4337 }
Daniel Vettere21af882012-02-09 20:53:27 +01004338
Chris Wilson68f95ba2010-05-27 13:18:22 +01004339 return 0;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004340}
4341
Chris Wilson1070a422012-04-24 15:47:41 +01004342int i915_gem_init(struct drm_device *dev)
4343{
4344 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson1070a422012-04-24 15:47:41 +01004345 int ret;
4346
Chris Wilson1070a422012-04-24 15:47:41 +01004347 mutex_lock(&dev->struct_mutex);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004348
4349 if (IS_VALLEYVIEW(dev)) {
4350 /* VLVA0 (potential hack), BIOS isn't actually waking us */
4351 I915_WRITE(VLV_GTLC_WAKE_CTRL, 1);
4352 if (wait_for((I915_READ(VLV_GTLC_PW_STATUS) & 1) == 1, 10))
4353 DRM_DEBUG_DRIVER("allow wake ack timed out\n");
4354 }
4355
Ben Widawskyd7e50082012-12-18 10:31:25 -08004356 i915_gem_init_global_gtt(dev);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004357
Chris Wilson1070a422012-04-24 15:47:41 +01004358 ret = i915_gem_init_hw(dev);
4359 mutex_unlock(&dev->struct_mutex);
4360 if (ret) {
4361 i915_gem_cleanup_aliasing_ppgtt(dev);
4362 return ret;
4363 }
4364
Daniel Vetter53ca26c2012-04-26 23:28:03 +02004365 /* Allow hardware batchbuffers unless told otherwise, but not for KMS. */
4366 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4367 dev_priv->dri1.allow_batchbuffer = 1;
Chris Wilson1070a422012-04-24 15:47:41 +01004368 return 0;
4369}
4370
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004371void
4372i915_gem_cleanup_ringbuffer(struct drm_device *dev)
4373{
4374 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01004375 struct intel_ring_buffer *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00004376 int i;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004377
Chris Wilsonb4519512012-05-11 14:29:30 +01004378 for_each_ring(ring, dev_priv, i)
4379 intel_cleanup_ring_buffer(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004380}
4381
4382int
Eric Anholt673a3942008-07-30 12:06:12 -07004383i915_gem_entervt_ioctl(struct drm_device *dev, void *data,
4384 struct drm_file *file_priv)
4385{
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004386 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01004387 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004388
Jesse Barnes79e53942008-11-07 14:24:08 -08004389 if (drm_core_check_feature(dev, DRIVER_MODESET))
4390 return 0;
4391
Daniel Vetter1f83fee2012-11-15 17:17:22 +01004392 if (i915_reset_in_progress(&dev_priv->gpu_error)) {
Eric Anholt673a3942008-07-30 12:06:12 -07004393 DRM_ERROR("Reenabling wedged hardware, good luck\n");
Daniel Vetter1f83fee2012-11-15 17:17:22 +01004394 atomic_set(&dev_priv->gpu_error.reset_counter, 0);
Eric Anholt673a3942008-07-30 12:06:12 -07004395 }
4396
Eric Anholt673a3942008-07-30 12:06:12 -07004397 mutex_lock(&dev->struct_mutex);
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004398 dev_priv->ums.mm_suspended = 0;
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004399
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004400 ret = i915_gem_init_hw(dev);
Wu Fengguangd816f6a2009-04-18 10:43:32 +08004401 if (ret != 0) {
4402 mutex_unlock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004403 return ret;
Wu Fengguangd816f6a2009-04-18 10:43:32 +08004404 }
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004405
Ben Widawsky5cef07e2013-07-16 16:50:08 -07004406 BUG_ON(!list_empty(&dev_priv->gtt.base.active_list));
Eric Anholt673a3942008-07-30 12:06:12 -07004407 mutex_unlock(&dev->struct_mutex);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004408
Chris Wilson5f353082010-06-07 14:03:03 +01004409 ret = drm_irq_install(dev);
4410 if (ret)
4411 goto cleanup_ringbuffer;
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004412
Eric Anholt673a3942008-07-30 12:06:12 -07004413 return 0;
Chris Wilson5f353082010-06-07 14:03:03 +01004414
4415cleanup_ringbuffer:
4416 mutex_lock(&dev->struct_mutex);
4417 i915_gem_cleanup_ringbuffer(dev);
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004418 dev_priv->ums.mm_suspended = 1;
Chris Wilson5f353082010-06-07 14:03:03 +01004419 mutex_unlock(&dev->struct_mutex);
4420
4421 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004422}
4423
4424int
4425i915_gem_leavevt_ioctl(struct drm_device *dev, void *data,
4426 struct drm_file *file_priv)
4427{
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004428 struct drm_i915_private *dev_priv = dev->dev_private;
4429 int ret;
4430
Jesse Barnes79e53942008-11-07 14:24:08 -08004431 if (drm_core_check_feature(dev, DRIVER_MODESET))
4432 return 0;
4433
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004434 drm_irq_uninstall(dev);
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004435
4436 mutex_lock(&dev->struct_mutex);
4437 ret = i915_gem_idle(dev);
4438
4439 /* Hack! Don't let anybody do execbuf while we don't control the chip.
4440 * We need to replace this with a semaphore, or something.
4441 * And not confound ums.mm_suspended!
4442 */
4443 if (ret != 0)
4444 dev_priv->ums.mm_suspended = 1;
4445 mutex_unlock(&dev->struct_mutex);
4446
4447 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004448}
4449
4450void
4451i915_gem_lastclose(struct drm_device *dev)
4452{
4453 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004454
Eric Anholte806b492009-01-22 09:56:58 -08004455 if (drm_core_check_feature(dev, DRIVER_MODESET))
4456 return;
4457
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004458 mutex_lock(&dev->struct_mutex);
Keith Packard6dbe2772008-10-14 21:41:13 -07004459 ret = i915_gem_idle(dev);
4460 if (ret)
4461 DRM_ERROR("failed to idle hardware: %d\n", ret);
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004462 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07004463}
4464
Chris Wilson64193402010-10-24 12:38:05 +01004465static void
4466init_ring_lists(struct intel_ring_buffer *ring)
4467{
4468 INIT_LIST_HEAD(&ring->active_list);
4469 INIT_LIST_HEAD(&ring->request_list);
Chris Wilson64193402010-10-24 12:38:05 +01004470}
4471
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004472static void i915_init_vm(struct drm_i915_private *dev_priv,
4473 struct i915_address_space *vm)
4474{
4475 vm->dev = dev_priv->dev;
4476 INIT_LIST_HEAD(&vm->active_list);
4477 INIT_LIST_HEAD(&vm->inactive_list);
4478 INIT_LIST_HEAD(&vm->global_link);
4479 list_add(&vm->global_link, &dev_priv->vm_list);
4480}
4481
Eric Anholt673a3942008-07-30 12:06:12 -07004482void
4483i915_gem_load(struct drm_device *dev)
4484{
4485 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson42dcedd2012-11-15 11:32:30 +00004486 int i;
4487
4488 dev_priv->slab =
4489 kmem_cache_create("i915_gem_object",
4490 sizeof(struct drm_i915_gem_object), 0,
4491 SLAB_HWCACHE_ALIGN,
4492 NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07004493
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004494 INIT_LIST_HEAD(&dev_priv->vm_list);
4495 i915_init_vm(dev_priv, &dev_priv->gtt.base);
4496
Chris Wilson6c085a72012-08-20 11:40:46 +02004497 INIT_LIST_HEAD(&dev_priv->mm.unbound_list);
4498 INIT_LIST_HEAD(&dev_priv->mm.bound_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07004499 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00004500 for (i = 0; i < I915_NUM_RINGS; i++)
4501 init_ring_lists(&dev_priv->ring[i]);
Daniel Vetter4b9de732011-10-09 21:52:02 +02004502 for (i = 0; i < I915_MAX_NUM_FENCES; i++)
Daniel Vetter007cc8a2010-04-28 11:02:31 +02004503 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07004504 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
4505 i915_gem_retire_work_handler);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01004506 init_waitqueue_head(&dev_priv->gpu_error.reset_queue);
Chris Wilson31169712009-09-14 16:50:28 +01004507
Dave Airlie94400122010-07-20 13:15:31 +10004508 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
4509 if (IS_GEN3(dev)) {
Daniel Vetter50743292012-04-26 22:02:54 +02004510 I915_WRITE(MI_ARB_STATE,
4511 _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Dave Airlie94400122010-07-20 13:15:31 +10004512 }
4513
Chris Wilson72bfa192010-12-19 11:42:05 +00004514 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
4515
Jesse Barnesde151cf2008-11-12 10:03:55 -08004516 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08004517 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4518 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08004519
Ville Syrjälä42b5aea2013-04-09 13:02:47 +03004520 if (INTEL_INFO(dev)->gen >= 7 && !IS_VALLEYVIEW(dev))
4521 dev_priv->num_fence_regs = 32;
4522 else if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08004523 dev_priv->num_fence_regs = 16;
4524 else
4525 dev_priv->num_fence_regs = 8;
4526
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02004527 /* Initialize fence registers to zero */
Chris Wilson19b2dbd2013-06-12 10:15:12 +01004528 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
4529 i915_gem_restore_fences(dev);
Eric Anholt10ed13e2011-05-06 13:53:49 -07004530
Eric Anholt673a3942008-07-30 12:06:12 -07004531 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004532 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01004533
Chris Wilsonce453d82011-02-21 14:43:56 +00004534 dev_priv->mm.interruptible = true;
4535
Dave Chinner7dc19d52013-08-28 10:18:11 +10004536 dev_priv->mm.inactive_shrinker.scan_objects = i915_gem_inactive_scan;
4537 dev_priv->mm.inactive_shrinker.count_objects = i915_gem_inactive_count;
Chris Wilson17250b72010-10-28 12:51:39 +01004538 dev_priv->mm.inactive_shrinker.seeks = DEFAULT_SEEKS;
4539 register_shrinker(&dev_priv->mm.inactive_shrinker);
Eric Anholt673a3942008-07-30 12:06:12 -07004540}
Dave Airlie71acb5e2008-12-30 20:31:46 +10004541
4542/*
4543 * Create a physically contiguous memory object for this object
4544 * e.g. for cursor + overlay regs
4545 */
Chris Wilson995b6762010-08-20 13:23:26 +01004546static int i915_gem_init_phys_object(struct drm_device *dev,
4547 int id, int size, int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004548{
4549 drm_i915_private_t *dev_priv = dev->dev_private;
4550 struct drm_i915_gem_phys_object *phys_obj;
4551 int ret;
4552
4553 if (dev_priv->mm.phys_objs[id - 1] || !size)
4554 return 0;
4555
Eric Anholt9a298b22009-03-24 12:23:04 -07004556 phys_obj = kzalloc(sizeof(struct drm_i915_gem_phys_object), GFP_KERNEL);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004557 if (!phys_obj)
4558 return -ENOMEM;
4559
4560 phys_obj->id = id;
4561
Chris Wilson6eeefaf2010-08-07 11:01:39 +01004562 phys_obj->handle = drm_pci_alloc(dev, size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004563 if (!phys_obj->handle) {
4564 ret = -ENOMEM;
4565 goto kfree_obj;
4566 }
4567#ifdef CONFIG_X86
4568 set_memory_wc((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
4569#endif
4570
4571 dev_priv->mm.phys_objs[id - 1] = phys_obj;
4572
4573 return 0;
4574kfree_obj:
Eric Anholt9a298b22009-03-24 12:23:04 -07004575 kfree(phys_obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004576 return ret;
4577}
4578
Chris Wilson995b6762010-08-20 13:23:26 +01004579static void i915_gem_free_phys_object(struct drm_device *dev, int id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004580{
4581 drm_i915_private_t *dev_priv = dev->dev_private;
4582 struct drm_i915_gem_phys_object *phys_obj;
4583
4584 if (!dev_priv->mm.phys_objs[id - 1])
4585 return;
4586
4587 phys_obj = dev_priv->mm.phys_objs[id - 1];
4588 if (phys_obj->cur_obj) {
4589 i915_gem_detach_phys_object(dev, phys_obj->cur_obj);
4590 }
4591
4592#ifdef CONFIG_X86
4593 set_memory_wb((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
4594#endif
4595 drm_pci_free(dev, phys_obj->handle);
4596 kfree(phys_obj);
4597 dev_priv->mm.phys_objs[id - 1] = NULL;
4598}
4599
4600void i915_gem_free_all_phys_object(struct drm_device *dev)
4601{
4602 int i;
4603
Dave Airlie260883c2009-01-22 17:58:49 +10004604 for (i = I915_GEM_PHYS_CURSOR_0; i <= I915_MAX_PHYS_OBJECT; i++)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004605 i915_gem_free_phys_object(dev, i);
4606}
4607
4608void i915_gem_detach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00004609 struct drm_i915_gem_object *obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004610{
Al Viro496ad9a2013-01-23 17:07:38 -05004611 struct address_space *mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilsone5281cc2010-10-28 13:45:36 +01004612 char *vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004613 int i;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004614 int page_count;
4615
Chris Wilson05394f32010-11-08 19:18:58 +00004616 if (!obj->phys_obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004617 return;
Chris Wilson05394f32010-11-08 19:18:58 +00004618 vaddr = obj->phys_obj->handle->vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004619
Chris Wilson05394f32010-11-08 19:18:58 +00004620 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004621 for (i = 0; i < page_count; i++) {
Hugh Dickins5949eac2011-06-27 16:18:18 -07004622 struct page *page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004623 if (!IS_ERR(page)) {
4624 char *dst = kmap_atomic(page);
4625 memcpy(dst, vaddr + i*PAGE_SIZE, PAGE_SIZE);
4626 kunmap_atomic(dst);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004627
Chris Wilsone5281cc2010-10-28 13:45:36 +01004628 drm_clflush_pages(&page, 1);
4629
4630 set_page_dirty(page);
4631 mark_page_accessed(page);
4632 page_cache_release(page);
4633 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10004634 }
Ben Widawskye76e9ae2012-11-04 09:21:27 -08004635 i915_gem_chipset_flush(dev);
Chris Wilsond78b47b2009-06-17 21:52:49 +01004636
Chris Wilson05394f32010-11-08 19:18:58 +00004637 obj->phys_obj->cur_obj = NULL;
4638 obj->phys_obj = NULL;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004639}
4640
4641int
4642i915_gem_attach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00004643 struct drm_i915_gem_object *obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01004644 int id,
4645 int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004646{
Al Viro496ad9a2013-01-23 17:07:38 -05004647 struct address_space *mapping = file_inode(obj->base.filp)->i_mapping;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004648 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004649 int ret = 0;
4650 int page_count;
4651 int i;
4652
4653 if (id > I915_MAX_PHYS_OBJECT)
4654 return -EINVAL;
4655
Chris Wilson05394f32010-11-08 19:18:58 +00004656 if (obj->phys_obj) {
4657 if (obj->phys_obj->id == id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004658 return 0;
4659 i915_gem_detach_phys_object(dev, obj);
4660 }
4661
Dave Airlie71acb5e2008-12-30 20:31:46 +10004662 /* create a new object */
4663 if (!dev_priv->mm.phys_objs[id - 1]) {
4664 ret = i915_gem_init_phys_object(dev, id,
Chris Wilson05394f32010-11-08 19:18:58 +00004665 obj->base.size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004666 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00004667 DRM_ERROR("failed to init phys object %d size: %zu\n",
4668 id, obj->base.size);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004669 return ret;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004670 }
4671 }
4672
4673 /* bind to the object */
Chris Wilson05394f32010-11-08 19:18:58 +00004674 obj->phys_obj = dev_priv->mm.phys_objs[id - 1];
4675 obj->phys_obj->cur_obj = obj;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004676
Chris Wilson05394f32010-11-08 19:18:58 +00004677 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004678
4679 for (i = 0; i < page_count; i++) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01004680 struct page *page;
4681 char *dst, *src;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004682
Hugh Dickins5949eac2011-06-27 16:18:18 -07004683 page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004684 if (IS_ERR(page))
4685 return PTR_ERR(page);
4686
Chris Wilsonff75b9b2010-10-30 22:52:31 +01004687 src = kmap_atomic(page);
Chris Wilson05394f32010-11-08 19:18:58 +00004688 dst = obj->phys_obj->handle->vaddr + (i * PAGE_SIZE);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004689 memcpy(dst, src, PAGE_SIZE);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -07004690 kunmap_atomic(src);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004691
4692 mark_page_accessed(page);
4693 page_cache_release(page);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004694 }
4695
4696 return 0;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004697}
4698
4699static int
Chris Wilson05394f32010-11-08 19:18:58 +00004700i915_gem_phys_pwrite(struct drm_device *dev,
4701 struct drm_i915_gem_object *obj,
Dave Airlie71acb5e2008-12-30 20:31:46 +10004702 struct drm_i915_gem_pwrite *args,
4703 struct drm_file *file_priv)
4704{
Chris Wilson05394f32010-11-08 19:18:58 +00004705 void *vaddr = obj->phys_obj->handle->vaddr + args->offset;
Ville Syrjälä2bb46292013-02-22 16:12:51 +02004706 char __user *user_data = to_user_ptr(args->data_ptr);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004707
Chris Wilsonb47b30c2010-11-08 01:12:29 +00004708 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
4709 unsigned long unwritten;
4710
4711 /* The physical object once assigned is fixed for the lifetime
4712 * of the obj, so we can safely drop the lock and continue
4713 * to access vaddr.
4714 */
4715 mutex_unlock(&dev->struct_mutex);
4716 unwritten = copy_from_user(vaddr, user_data, args->size);
4717 mutex_lock(&dev->struct_mutex);
4718 if (unwritten)
4719 return -EFAULT;
4720 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10004721
Ben Widawskye76e9ae2012-11-04 09:21:27 -08004722 i915_gem_chipset_flush(dev);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004723 return 0;
4724}
Eric Anholtb9624422009-06-03 07:27:35 +00004725
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004726void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00004727{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004728 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00004729
4730 /* Clean up our request list when the client is going away, so that
4731 * later retire_requests won't dereference our soon-to-be-gone
4732 * file_priv.
4733 */
Chris Wilson1c255952010-09-26 11:03:27 +01004734 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004735 while (!list_empty(&file_priv->mm.request_list)) {
4736 struct drm_i915_gem_request *request;
4737
4738 request = list_first_entry(&file_priv->mm.request_list,
4739 struct drm_i915_gem_request,
4740 client_list);
4741 list_del(&request->client_list);
4742 request->file_priv = NULL;
4743 }
Chris Wilson1c255952010-09-26 11:03:27 +01004744 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00004745}
Chris Wilson31169712009-09-14 16:50:28 +01004746
Chris Wilson57745062012-11-21 13:04:04 +00004747static bool mutex_is_locked_by(struct mutex *mutex, struct task_struct *task)
4748{
4749 if (!mutex_is_locked(mutex))
4750 return false;
4751
4752#if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_MUTEXES)
4753 return mutex->owner == task;
4754#else
4755 /* Since UP may be pre-empted, we cannot assume that we own the lock */
4756 return false;
4757#endif
4758}
4759
Dave Chinner7dc19d52013-08-28 10:18:11 +10004760static unsigned long
4761i915_gem_inactive_count(struct shrinker *shrinker, struct shrink_control *sc)
Chris Wilson31169712009-09-14 16:50:28 +01004762{
Chris Wilson17250b72010-10-28 12:51:39 +01004763 struct drm_i915_private *dev_priv =
4764 container_of(shrinker,
4765 struct drm_i915_private,
4766 mm.inactive_shrinker);
4767 struct drm_device *dev = dev_priv->dev;
Chris Wilson6c085a72012-08-20 11:40:46 +02004768 struct drm_i915_gem_object *obj;
Chris Wilson57745062012-11-21 13:04:04 +00004769 bool unlock = true;
Dave Chinner7dc19d52013-08-28 10:18:11 +10004770 unsigned long count;
Chris Wilson17250b72010-10-28 12:51:39 +01004771
Chris Wilson57745062012-11-21 13:04:04 +00004772 if (!mutex_trylock(&dev->struct_mutex)) {
4773 if (!mutex_is_locked_by(&dev->struct_mutex, current))
4774 return 0;
4775
Daniel Vetter677feac2012-12-19 14:33:45 +01004776 if (dev_priv->mm.shrinker_no_lock_stealing)
4777 return 0;
4778
Chris Wilson57745062012-11-21 13:04:04 +00004779 unlock = false;
4780 }
Chris Wilson31169712009-09-14 16:50:28 +01004781
Dave Chinner7dc19d52013-08-28 10:18:11 +10004782 count = 0;
Ben Widawsky35c20a62013-05-31 11:28:48 -07004783 list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list)
Chris Wilsona5570172012-09-04 21:02:54 +01004784 if (obj->pages_pin_count == 0)
Dave Chinner7dc19d52013-08-28 10:18:11 +10004785 count += obj->base.size >> PAGE_SHIFT;
Ben Widawskyfcb4a572013-07-31 16:59:57 -07004786
4787 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
4788 if (obj->active)
4789 continue;
4790
Chris Wilsona5570172012-09-04 21:02:54 +01004791 if (obj->pin_count == 0 && obj->pages_pin_count == 0)
Dave Chinner7dc19d52013-08-28 10:18:11 +10004792 count += obj->base.size >> PAGE_SHIFT;
Ben Widawskyfcb4a572013-07-31 16:59:57 -07004793 }
Chris Wilson31169712009-09-14 16:50:28 +01004794
Chris Wilson57745062012-11-21 13:04:04 +00004795 if (unlock)
4796 mutex_unlock(&dev->struct_mutex);
Dave Chinner7dc19d52013-08-28 10:18:11 +10004797 return count;
Chris Wilson31169712009-09-14 16:50:28 +01004798}
Ben Widawskya70a3142013-07-31 16:59:56 -07004799
4800/* All the new VM stuff */
4801unsigned long i915_gem_obj_offset(struct drm_i915_gem_object *o,
4802 struct i915_address_space *vm)
4803{
4804 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
4805 struct i915_vma *vma;
4806
4807 if (vm == &dev_priv->mm.aliasing_ppgtt->base)
4808 vm = &dev_priv->gtt.base;
4809
4810 BUG_ON(list_empty(&o->vma_list));
4811 list_for_each_entry(vma, &o->vma_list, vma_link) {
4812 if (vma->vm == vm)
4813 return vma->node.start;
4814
4815 }
4816 return -1;
4817}
4818
4819bool i915_gem_obj_bound(struct drm_i915_gem_object *o,
4820 struct i915_address_space *vm)
4821{
4822 struct i915_vma *vma;
4823
4824 list_for_each_entry(vma, &o->vma_list, vma_link)
Ben Widawsky8b9c2b92013-07-31 17:00:16 -07004825 if (vma->vm == vm && drm_mm_node_allocated(&vma->node))
Ben Widawskya70a3142013-07-31 16:59:56 -07004826 return true;
4827
4828 return false;
4829}
4830
4831bool i915_gem_obj_bound_any(struct drm_i915_gem_object *o)
4832{
4833 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
4834 struct i915_address_space *vm;
4835
4836 list_for_each_entry(vm, &dev_priv->vm_list, global_link)
4837 if (i915_gem_obj_bound(o, vm))
4838 return true;
4839
4840 return false;
4841}
4842
4843unsigned long i915_gem_obj_size(struct drm_i915_gem_object *o,
4844 struct i915_address_space *vm)
4845{
4846 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
4847 struct i915_vma *vma;
4848
4849 if (vm == &dev_priv->mm.aliasing_ppgtt->base)
4850 vm = &dev_priv->gtt.base;
4851
4852 BUG_ON(list_empty(&o->vma_list));
4853
4854 list_for_each_entry(vma, &o->vma_list, vma_link)
4855 if (vma->vm == vm)
4856 return vma->node.size;
4857
4858 return 0;
4859}
4860
Dave Chinner7dc19d52013-08-28 10:18:11 +10004861static unsigned long
4862i915_gem_inactive_scan(struct shrinker *shrinker, struct shrink_control *sc)
4863{
4864 struct drm_i915_private *dev_priv =
4865 container_of(shrinker,
4866 struct drm_i915_private,
4867 mm.inactive_shrinker);
4868 struct drm_device *dev = dev_priv->dev;
4869 int nr_to_scan = sc->nr_to_scan;
4870 unsigned long freed;
4871 bool unlock = true;
4872
4873 if (!mutex_trylock(&dev->struct_mutex)) {
4874 if (!mutex_is_locked_by(&dev->struct_mutex, current))
4875 return 0;
4876
4877 if (dev_priv->mm.shrinker_no_lock_stealing)
4878 return 0;
4879
4880 unlock = false;
4881 }
4882
4883 freed = i915_gem_purge(dev_priv, nr_to_scan);
4884 if (freed < nr_to_scan)
4885 freed += __i915_gem_shrink(dev_priv, nr_to_scan,
4886 false);
4887 if (freed < nr_to_scan)
4888 freed += i915_gem_shrink_all(dev_priv);
4889
4890 if (unlock)
4891 mutex_unlock(&dev->struct_mutex);
4892 return freed;
4893}
4894
Ben Widawskya70a3142013-07-31 16:59:56 -07004895struct i915_vma *i915_gem_obj_to_vma(struct drm_i915_gem_object *obj,
4896 struct i915_address_space *vm)
4897{
4898 struct i915_vma *vma;
4899 list_for_each_entry(vma, &obj->vma_list, vma_link)
4900 if (vma->vm == vm)
4901 return vma;
4902
4903 return NULL;
4904}
Ben Widawskyaccfef22013-08-14 11:38:35 +02004905
4906struct i915_vma *
4907i915_gem_obj_lookup_or_create_vma(struct drm_i915_gem_object *obj,
4908 struct i915_address_space *vm)
4909{
4910 struct i915_vma *vma;
4911
4912 vma = i915_gem_obj_to_vma(obj, vm);
4913 if (!vma)
4914 vma = i915_gem_vma_create(obj, vm);
4915
4916 return vma;
4917}