blob: 8507c6d1e642d872c48f41834a5dbeca53d99c6b [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;
Joe Perchesfac15c12013-08-29 13:11:07 -0700217 return kmem_cache_zalloc(dev_priv->slab, GFP_KERNEL);
Chris Wilson42dcedd2012-11-15 11:32:30 +0000218}
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 Deakd8651102013-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 Deakd8651102013-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{
Chris Wilson57094f82013-09-04 10:45:50 +01001700 struct list_head still_bound_list;
Chris Wilson6c085a72012-08-20 11:40:46 +02001701 struct drm_i915_gem_object *obj, *next;
1702 long count = 0;
1703
1704 list_for_each_entry_safe(obj, next,
1705 &dev_priv->mm.unbound_list,
Ben Widawsky35c20a62013-05-31 11:28:48 -07001706 global_list) {
Daniel Vetter93927ca2013-01-10 18:03:00 +01001707 if ((i915_gem_object_is_purgeable(obj) || !purgeable_only) &&
Chris Wilson37e680a2012-06-07 15:38:42 +01001708 i915_gem_object_put_pages(obj) == 0) {
Chris Wilson6c085a72012-08-20 11:40:46 +02001709 count += obj->base.size >> PAGE_SHIFT;
1710 if (count >= target)
1711 return count;
1712 }
1713 }
1714
Chris Wilson57094f82013-09-04 10:45:50 +01001715 /*
1716 * As we may completely rewrite the bound list whilst unbinding
1717 * (due to retiring requests) we have to strictly process only
1718 * one element of the list at the time, and recheck the list
1719 * on every iteration.
1720 */
1721 INIT_LIST_HEAD(&still_bound_list);
1722 while (count < target && !list_empty(&dev_priv->mm.bound_list)) {
Ben Widawsky07fe0b12013-07-31 17:00:10 -07001723 struct i915_vma *vma, *v;
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07001724
Chris Wilson57094f82013-09-04 10:45:50 +01001725 obj = list_first_entry(&dev_priv->mm.bound_list,
1726 typeof(*obj), global_list);
1727 list_move_tail(&obj->global_list, &still_bound_list);
1728
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07001729 if (!i915_gem_object_is_purgeable(obj) && purgeable_only)
1730 continue;
1731
Chris Wilson57094f82013-09-04 10:45:50 +01001732 /*
1733 * Hold a reference whilst we unbind this object, as we may
1734 * end up waiting for and retiring requests. This might
1735 * release the final reference (held by the active list)
1736 * and result in the object being freed from under us.
1737 * in this object being freed.
1738 *
1739 * Note 1: Shrinking the bound list is special since only active
1740 * (and hence bound objects) can contain such limbo objects, so
1741 * we don't need special tricks for shrinking the unbound list.
1742 * The only other place where we have to be careful with active
1743 * objects suddenly disappearing due to retiring requests is the
1744 * eviction code.
1745 *
1746 * Note 2: Even though the bound list doesn't hold a reference
1747 * to the object we can safely grab one here: The final object
1748 * unreferencing and the bound_list are both protected by the
1749 * dev->struct_mutex and so we won't ever be able to observe an
1750 * object on the bound_list with a reference count equals 0.
1751 */
1752 drm_gem_object_reference(&obj->base);
1753
Ben Widawsky07fe0b12013-07-31 17:00:10 -07001754 list_for_each_entry_safe(vma, v, &obj->vma_list, vma_link)
1755 if (i915_vma_unbind(vma))
1756 break;
Ben Widawsky80dcfdb2013-07-31 17:00:01 -07001757
Chris Wilson57094f82013-09-04 10:45:50 +01001758 if (i915_gem_object_put_pages(obj) == 0)
Chris Wilson6c085a72012-08-20 11:40:46 +02001759 count += obj->base.size >> PAGE_SHIFT;
Chris Wilson57094f82013-09-04 10:45:50 +01001760
1761 drm_gem_object_unreference(&obj->base);
Chris Wilson6c085a72012-08-20 11:40:46 +02001762 }
Chris Wilson57094f82013-09-04 10:45:50 +01001763 list_splice(&still_bound_list, &dev_priv->mm.bound_list);
Chris Wilson6c085a72012-08-20 11:40:46 +02001764
1765 return count;
1766}
1767
Daniel Vetter93927ca2013-01-10 18:03:00 +01001768static long
1769i915_gem_purge(struct drm_i915_private *dev_priv, long target)
1770{
1771 return __i915_gem_shrink(dev_priv, target, true);
1772}
1773
Dave Chinner7dc19d52013-08-28 10:18:11 +10001774static long
Chris Wilson6c085a72012-08-20 11:40:46 +02001775i915_gem_shrink_all(struct drm_i915_private *dev_priv)
1776{
1777 struct drm_i915_gem_object *obj, *next;
Dave Chinner7dc19d52013-08-28 10:18:11 +10001778 long freed = 0;
Chris Wilson6c085a72012-08-20 11:40:46 +02001779
1780 i915_gem_evict_everything(dev_priv->dev);
1781
Ben Widawsky35c20a62013-05-31 11:28:48 -07001782 list_for_each_entry_safe(obj, next, &dev_priv->mm.unbound_list,
Dave Chinner7dc19d52013-08-28 10:18:11 +10001783 global_list) {
1784 if (obj->pages_pin_count == 0)
1785 freed += obj->base.size >> PAGE_SHIFT;
Chris Wilson37e680a2012-06-07 15:38:42 +01001786 i915_gem_object_put_pages(obj);
Dave Chinner7dc19d52013-08-28 10:18:11 +10001787 }
1788 return freed;
Daniel Vetter225067e2012-08-20 10:23:20 +02001789}
1790
Chris Wilson37e680a2012-06-07 15:38:42 +01001791static int
Chris Wilson6c085a72012-08-20 11:40:46 +02001792i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001793{
Chris Wilson6c085a72012-08-20 11:40:46 +02001794 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001795 int page_count, i;
1796 struct address_space *mapping;
Chris Wilson9da3da62012-06-01 15:20:22 +01001797 struct sg_table *st;
1798 struct scatterlist *sg;
Imre Deak90797e62013-02-18 19:28:03 +02001799 struct sg_page_iter sg_iter;
Eric Anholt673a3942008-07-30 12:06:12 -07001800 struct page *page;
Imre Deak90797e62013-02-18 19:28:03 +02001801 unsigned long last_pfn = 0; /* suppress gcc warning */
Chris Wilson6c085a72012-08-20 11:40:46 +02001802 gfp_t gfp;
Eric Anholt673a3942008-07-30 12:06:12 -07001803
Chris Wilson6c085a72012-08-20 11:40:46 +02001804 /* Assert that the object is not currently in any GPU domain. As it
1805 * wasn't in the GTT, there shouldn't be any way it could have been in
1806 * a GPU cache
1807 */
1808 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
1809 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
1810
Chris Wilson9da3da62012-06-01 15:20:22 +01001811 st = kmalloc(sizeof(*st), GFP_KERNEL);
1812 if (st == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07001813 return -ENOMEM;
1814
Chris Wilson9da3da62012-06-01 15:20:22 +01001815 page_count = obj->base.size / PAGE_SIZE;
1816 if (sg_alloc_table(st, page_count, GFP_KERNEL)) {
Chris Wilson9da3da62012-06-01 15:20:22 +01001817 kfree(st);
1818 return -ENOMEM;
1819 }
1820
1821 /* Get the list of pages out of our struct file. They'll be pinned
1822 * at this point until we release them.
1823 *
1824 * Fail silently without starting the shrinker
1825 */
Al Viro496ad9a2013-01-23 17:07:38 -05001826 mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilson6c085a72012-08-20 11:40:46 +02001827 gfp = mapping_gfp_mask(mapping);
Linus Torvaldscaf49192012-12-10 10:51:16 -08001828 gfp |= __GFP_NORETRY | __GFP_NOWARN | __GFP_NO_KSWAPD;
Chris Wilson6c085a72012-08-20 11:40:46 +02001829 gfp &= ~(__GFP_IO | __GFP_WAIT);
Imre Deak90797e62013-02-18 19:28:03 +02001830 sg = st->sgl;
1831 st->nents = 0;
1832 for (i = 0; i < page_count; i++) {
Chris Wilson6c085a72012-08-20 11:40:46 +02001833 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
1834 if (IS_ERR(page)) {
1835 i915_gem_purge(dev_priv, page_count);
1836 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
1837 }
1838 if (IS_ERR(page)) {
1839 /* We've tried hard to allocate the memory by reaping
1840 * our own buffer, now let the real VM do its job and
1841 * go down in flames if truly OOM.
1842 */
Linus Torvaldscaf49192012-12-10 10:51:16 -08001843 gfp &= ~(__GFP_NORETRY | __GFP_NOWARN | __GFP_NO_KSWAPD);
Chris Wilson6c085a72012-08-20 11:40:46 +02001844 gfp |= __GFP_IO | __GFP_WAIT;
1845
1846 i915_gem_shrink_all(dev_priv);
1847 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
1848 if (IS_ERR(page))
1849 goto err_pages;
1850
Linus Torvaldscaf49192012-12-10 10:51:16 -08001851 gfp |= __GFP_NORETRY | __GFP_NOWARN | __GFP_NO_KSWAPD;
Chris Wilson6c085a72012-08-20 11:40:46 +02001852 gfp &= ~(__GFP_IO | __GFP_WAIT);
1853 }
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04001854#ifdef CONFIG_SWIOTLB
1855 if (swiotlb_nr_tbl()) {
1856 st->nents++;
1857 sg_set_page(sg, page, PAGE_SIZE, 0);
1858 sg = sg_next(sg);
1859 continue;
1860 }
1861#endif
Imre Deak90797e62013-02-18 19:28:03 +02001862 if (!i || page_to_pfn(page) != last_pfn + 1) {
1863 if (i)
1864 sg = sg_next(sg);
1865 st->nents++;
1866 sg_set_page(sg, page, PAGE_SIZE, 0);
1867 } else {
1868 sg->length += PAGE_SIZE;
1869 }
1870 last_pfn = page_to_pfn(page);
Eric Anholt673a3942008-07-30 12:06:12 -07001871 }
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04001872#ifdef CONFIG_SWIOTLB
1873 if (!swiotlb_nr_tbl())
1874#endif
1875 sg_mark_end(sg);
Chris Wilson74ce6b62012-10-19 15:51:06 +01001876 obj->pages = st;
1877
Eric Anholt673a3942008-07-30 12:06:12 -07001878 if (i915_gem_object_needs_bit17_swizzle(obj))
1879 i915_gem_object_do_bit_17_swizzle(obj);
1880
1881 return 0;
1882
1883err_pages:
Imre Deak90797e62013-02-18 19:28:03 +02001884 sg_mark_end(sg);
1885 for_each_sg_page(st->sgl, &sg_iter, st->nents, 0)
Imre Deak2db76d72013-03-26 15:14:18 +02001886 page_cache_release(sg_page_iter_page(&sg_iter));
Chris Wilson9da3da62012-06-01 15:20:22 +01001887 sg_free_table(st);
1888 kfree(st);
Eric Anholt673a3942008-07-30 12:06:12 -07001889 return PTR_ERR(page);
Eric Anholt673a3942008-07-30 12:06:12 -07001890}
1891
Chris Wilson37e680a2012-06-07 15:38:42 +01001892/* Ensure that the associated pages are gathered from the backing storage
1893 * and pinned into our object. i915_gem_object_get_pages() may be called
1894 * multiple times before they are released by a single call to
1895 * i915_gem_object_put_pages() - once the pages are no longer referenced
1896 * either as a result of memory pressure (reaping pages under the shrinker)
1897 * or as the object is itself released.
1898 */
1899int
1900i915_gem_object_get_pages(struct drm_i915_gem_object *obj)
1901{
1902 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
1903 const struct drm_i915_gem_object_ops *ops = obj->ops;
1904 int ret;
1905
Chris Wilson2f745ad2012-09-04 21:02:58 +01001906 if (obj->pages)
Chris Wilson37e680a2012-06-07 15:38:42 +01001907 return 0;
1908
Chris Wilson43e28f02013-01-08 10:53:09 +00001909 if (obj->madv != I915_MADV_WILLNEED) {
1910 DRM_ERROR("Attempting to obtain a purgeable object\n");
1911 return -EINVAL;
1912 }
1913
Chris Wilsona5570172012-09-04 21:02:54 +01001914 BUG_ON(obj->pages_pin_count);
1915
Chris Wilson37e680a2012-06-07 15:38:42 +01001916 ret = ops->get_pages(obj);
1917 if (ret)
1918 return ret;
1919
Ben Widawsky35c20a62013-05-31 11:28:48 -07001920 list_add_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Chris Wilson37e680a2012-06-07 15:38:42 +01001921 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001922}
1923
Chris Wilson54cf91d2010-11-25 18:00:26 +00001924void
Chris Wilson05394f32010-11-08 19:18:58 +00001925i915_gem_object_move_to_active(struct drm_i915_gem_object *obj,
Chris Wilson9d7730912012-11-27 16:22:52 +00001926 struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001927{
Chris Wilson05394f32010-11-08 19:18:58 +00001928 struct drm_device *dev = obj->base.dev;
Chris Wilson69dc4982010-10-19 10:36:51 +01001929 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9d7730912012-11-27 16:22:52 +00001930 u32 seqno = intel_ring_get_seqno(ring);
Daniel Vetter617dbe22010-02-11 22:16:02 +01001931
Zou Nan hai852835f2010-05-21 09:08:56 +08001932 BUG_ON(ring == NULL);
Chris Wilson02978ff2013-07-09 09:22:39 +01001933 if (obj->ring != ring && obj->last_write_seqno) {
1934 /* Keep the seqno relative to the current ring */
1935 obj->last_write_seqno = seqno;
1936 }
Chris Wilson05394f32010-11-08 19:18:58 +00001937 obj->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07001938
1939 /* Add a reference if we're newly entering the active list. */
Chris Wilson05394f32010-11-08 19:18:58 +00001940 if (!obj->active) {
1941 drm_gem_object_reference(&obj->base);
1942 obj->active = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07001943 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01001944
Chris Wilson05394f32010-11-08 19:18:58 +00001945 list_move_tail(&obj->ring_list, &ring->active_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001946
Chris Wilson0201f1e2012-07-20 12:41:01 +01001947 obj->last_read_seqno = seqno;
Chris Wilson7dd49062012-03-21 10:48:18 +00001948
Chris Wilsoncaea7472010-11-12 13:53:37 +00001949 if (obj->fenced_gpu_access) {
Chris Wilsoncaea7472010-11-12 13:53:37 +00001950 obj->last_fenced_seqno = seqno;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001951
Chris Wilson7dd49062012-03-21 10:48:18 +00001952 /* Bump MRU to take account of the delayed flush */
1953 if (obj->fence_reg != I915_FENCE_REG_NONE) {
1954 struct drm_i915_fence_reg *reg;
1955
1956 reg = &dev_priv->fence_regs[obj->fence_reg];
1957 list_move_tail(&reg->lru_list,
1958 &dev_priv->mm.fence_list);
1959 }
Chris Wilsoncaea7472010-11-12 13:53:37 +00001960 }
1961}
1962
1963static void
Chris Wilsoncaea7472010-11-12 13:53:37 +00001964i915_gem_object_move_to_inactive(struct drm_i915_gem_object *obj)
1965{
Ben Widawskyca191b12013-07-31 17:00:14 -07001966 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
1967 struct i915_address_space *ggtt_vm = &dev_priv->gtt.base;
1968 struct i915_vma *vma = i915_gem_obj_to_vma(obj, ggtt_vm);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001969
Chris Wilson65ce3022012-07-20 12:41:02 +01001970 BUG_ON(obj->base.write_domain & ~I915_GEM_GPU_DOMAINS);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001971 BUG_ON(!obj->active);
Chris Wilson65ce3022012-07-20 12:41:02 +01001972
Ben Widawskyca191b12013-07-31 17:00:14 -07001973 list_move_tail(&vma->mm_list, &ggtt_vm->inactive_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001974
Chris Wilson65ce3022012-07-20 12:41:02 +01001975 list_del_init(&obj->ring_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001976 obj->ring = NULL;
1977
Chris Wilson65ce3022012-07-20 12:41:02 +01001978 obj->last_read_seqno = 0;
1979 obj->last_write_seqno = 0;
1980 obj->base.write_domain = 0;
1981
1982 obj->last_fenced_seqno = 0;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001983 obj->fenced_gpu_access = false;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001984
1985 obj->active = 0;
1986 drm_gem_object_unreference(&obj->base);
1987
1988 WARN_ON(i915_verify_lists(dev));
Eric Anholtce44b0e2008-11-06 16:00:31 -08001989}
Eric Anholt673a3942008-07-30 12:06:12 -07001990
Chris Wilson9d7730912012-11-27 16:22:52 +00001991static int
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02001992i915_gem_init_seqno(struct drm_device *dev, u32 seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01001993{
Chris Wilson9d7730912012-11-27 16:22:52 +00001994 struct drm_i915_private *dev_priv = dev->dev_private;
1995 struct intel_ring_buffer *ring;
1996 int ret, i, j;
Daniel Vetter53d227f2012-01-25 16:32:49 +01001997
Chris Wilson107f27a52012-12-10 13:56:17 +02001998 /* Carefully retire all requests without writing to the rings */
Chris Wilson9d7730912012-11-27 16:22:52 +00001999 for_each_ring(ring, dev_priv, i) {
Chris Wilson107f27a52012-12-10 13:56:17 +02002000 ret = intel_ring_idle(ring);
2001 if (ret)
2002 return ret;
Chris Wilson9d7730912012-11-27 16:22:52 +00002003 }
Chris Wilson9d7730912012-11-27 16:22:52 +00002004 i915_gem_retire_requests(dev);
Chris Wilson107f27a52012-12-10 13:56:17 +02002005
2006 /* Finally reset hw state */
Chris Wilson9d7730912012-11-27 16:22:52 +00002007 for_each_ring(ring, dev_priv, i) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002008 intel_ring_init_seqno(ring, seqno);
Mika Kuoppala498d2ac2012-12-04 15:12:04 +02002009
Chris Wilson9d7730912012-11-27 16:22:52 +00002010 for (j = 0; j < ARRAY_SIZE(ring->sync_seqno); j++)
2011 ring->sync_seqno[j] = 0;
2012 }
2013
2014 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002015}
2016
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002017int i915_gem_set_seqno(struct drm_device *dev, u32 seqno)
2018{
2019 struct drm_i915_private *dev_priv = dev->dev_private;
2020 int ret;
2021
2022 if (seqno == 0)
2023 return -EINVAL;
2024
2025 /* HWS page needs to be set less than what we
2026 * will inject to ring
2027 */
2028 ret = i915_gem_init_seqno(dev, seqno - 1);
2029 if (ret)
2030 return ret;
2031
2032 /* Carefully set the last_seqno value so that wrap
2033 * detection still works
2034 */
2035 dev_priv->next_seqno = seqno;
2036 dev_priv->last_seqno = seqno - 1;
2037 if (dev_priv->last_seqno == 0)
2038 dev_priv->last_seqno--;
2039
2040 return 0;
2041}
2042
Chris Wilson9d7730912012-11-27 16:22:52 +00002043int
2044i915_gem_get_seqno(struct drm_device *dev, u32 *seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01002045{
Chris Wilson9d7730912012-11-27 16:22:52 +00002046 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002047
Chris Wilson9d7730912012-11-27 16:22:52 +00002048 /* reserve 0 for non-seqno */
2049 if (dev_priv->next_seqno == 0) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02002050 int ret = i915_gem_init_seqno(dev, 0);
Chris Wilson9d7730912012-11-27 16:22:52 +00002051 if (ret)
2052 return ret;
2053
2054 dev_priv->next_seqno = 1;
2055 }
2056
Mika Kuoppalaf72b3432012-12-10 15:41:48 +02002057 *seqno = dev_priv->last_seqno = dev_priv->next_seqno++;
Chris Wilson9d7730912012-11-27 16:22:52 +00002058 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002059}
2060
Mika Kuoppala0025c072013-06-12 12:35:30 +03002061int __i915_add_request(struct intel_ring_buffer *ring,
2062 struct drm_file *file,
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002063 struct drm_i915_gem_object *obj,
Mika Kuoppala0025c072013-06-12 12:35:30 +03002064 u32 *out_seqno)
Eric Anholt673a3942008-07-30 12:06:12 -07002065{
Chris Wilsondb53a302011-02-03 11:57:46 +00002066 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Chris Wilsonacb868d2012-09-26 13:47:30 +01002067 struct drm_i915_gem_request *request;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002068 u32 request_ring_position, request_start;
Eric Anholt673a3942008-07-30 12:06:12 -07002069 int was_empty;
Chris Wilson3cce4692010-10-27 16:11:02 +01002070 int ret;
2071
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002072 request_start = intel_ring_get_tail(ring);
Daniel Vettercc889e02012-06-13 20:45:19 +02002073 /*
2074 * Emit any outstanding flushes - execbuf can fail to emit the flush
2075 * after having emitted the batchbuffer command. Hence we need to fix
2076 * things up similar to emitting the lazy request. The difference here
2077 * is that the flush _must_ happen before the next request, no matter
2078 * what.
2079 */
Chris Wilsona7b97612012-07-20 12:41:08 +01002080 ret = intel_ring_flush_all_caches(ring);
2081 if (ret)
2082 return ret;
Daniel Vettercc889e02012-06-13 20:45:19 +02002083
Chris Wilsonacb868d2012-09-26 13:47:30 +01002084 request = kmalloc(sizeof(*request), GFP_KERNEL);
2085 if (request == NULL)
2086 return -ENOMEM;
Daniel Vettercc889e02012-06-13 20:45:19 +02002087
Eric Anholt673a3942008-07-30 12:06:12 -07002088
Chris Wilsona71d8d92012-02-15 11:25:36 +00002089 /* Record the position of the start of the request so that
2090 * should we detect the updated seqno part-way through the
2091 * GPU processing the request, we never over-estimate the
2092 * position of the head.
2093 */
2094 request_ring_position = intel_ring_get_tail(ring);
2095
Chris Wilson9d7730912012-11-27 16:22:52 +00002096 ret = ring->add_request(ring);
Chris Wilson3bb73ab2012-07-20 12:40:59 +01002097 if (ret) {
2098 kfree(request);
2099 return ret;
2100 }
Eric Anholt673a3942008-07-30 12:06:12 -07002101
Chris Wilson9d7730912012-11-27 16:22:52 +00002102 request->seqno = intel_ring_get_seqno(ring);
Zou Nan hai852835f2010-05-21 09:08:56 +08002103 request->ring = ring;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002104 request->head = request_start;
Chris Wilsona71d8d92012-02-15 11:25:36 +00002105 request->tail = request_ring_position;
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002106 request->ctx = ring->last_context;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002107 request->batch_obj = obj;
2108
2109 /* Whilst this request exists, batch_obj will be on the
2110 * active_list, and so will hold the active reference. Only when this
2111 * request is retired will the the batch_obj be moved onto the
2112 * inactive_list and lose its active reference. Hence we do not need
2113 * to explicitly hold another reference here.
2114 */
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002115
2116 if (request->ctx)
2117 i915_gem_context_reference(request->ctx);
2118
Eric Anholt673a3942008-07-30 12:06:12 -07002119 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08002120 was_empty = list_empty(&ring->request_list);
2121 list_add_tail(&request->list, &ring->request_list);
Chris Wilson3bb73ab2012-07-20 12:40:59 +01002122 request->file_priv = NULL;
Zou Nan hai852835f2010-05-21 09:08:56 +08002123
Chris Wilsondb53a302011-02-03 11:57:46 +00002124 if (file) {
2125 struct drm_i915_file_private *file_priv = file->driver_priv;
2126
Chris Wilson1c255952010-09-26 11:03:27 +01002127 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002128 request->file_priv = file_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00002129 list_add_tail(&request->client_list,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002130 &file_priv->mm.request_list);
Chris Wilson1c255952010-09-26 11:03:27 +01002131 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00002132 }
Eric Anholt673a3942008-07-30 12:06:12 -07002133
Chris Wilson9d7730912012-11-27 16:22:52 +00002134 trace_i915_gem_request_add(ring, request->seqno);
Daniel Vetter5391d0c2012-01-25 14:03:57 +01002135 ring->outstanding_lazy_request = 0;
Chris Wilsondb53a302011-02-03 11:57:46 +00002136
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02002137 if (!dev_priv->ums.mm_suspended) {
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03002138 i915_queue_hangcheck(ring->dev);
2139
Chris Wilsonf047e392012-07-21 12:31:41 +01002140 if (was_empty) {
Chris Wilsonb3b079d2010-09-13 23:44:34 +01002141 queue_delayed_work(dev_priv->wq,
Chris Wilsonbcb45082012-10-05 17:02:57 +01002142 &dev_priv->mm.retire_work,
2143 round_jiffies_up_relative(HZ));
Chris Wilsonf047e392012-07-21 12:31:41 +01002144 intel_mark_busy(dev_priv->dev);
2145 }
Ben Gamarif65d9422009-09-14 17:48:44 -04002146 }
Daniel Vettercc889e02012-06-13 20:45:19 +02002147
Chris Wilsonacb868d2012-09-26 13:47:30 +01002148 if (out_seqno)
Chris Wilson9d7730912012-11-27 16:22:52 +00002149 *out_seqno = request->seqno;
Chris Wilson3cce4692010-10-27 16:11:02 +01002150 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002151}
2152
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002153static inline void
2154i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07002155{
Chris Wilson1c255952010-09-26 11:03:27 +01002156 struct drm_i915_file_private *file_priv = request->file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07002157
Chris Wilson1c255952010-09-26 11:03:27 +01002158 if (!file_priv)
2159 return;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002160
Chris Wilson1c255952010-09-26 11:03:27 +01002161 spin_lock(&file_priv->mm.lock);
Herton Ronaldo Krzesinski09bfa512011-03-17 13:45:12 +00002162 if (request->file_priv) {
2163 list_del(&request->client_list);
2164 request->file_priv = NULL;
2165 }
Chris Wilson1c255952010-09-26 11:03:27 +01002166 spin_unlock(&file_priv->mm.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07002167}
2168
Ben Widawskyd1ccbb52013-07-31 17:00:05 -07002169static bool i915_head_inside_object(u32 acthd, struct drm_i915_gem_object *obj,
2170 struct i915_address_space *vm)
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002171{
Ben Widawskyd1ccbb52013-07-31 17:00:05 -07002172 if (acthd >= i915_gem_obj_offset(obj, vm) &&
2173 acthd < i915_gem_obj_offset(obj, vm) + obj->base.size)
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002174 return true;
2175
2176 return false;
2177}
2178
2179static bool i915_head_inside_request(const u32 acthd_unmasked,
2180 const u32 request_start,
2181 const u32 request_end)
2182{
2183 const u32 acthd = acthd_unmasked & HEAD_ADDR;
2184
2185 if (request_start < request_end) {
2186 if (acthd >= request_start && acthd < request_end)
2187 return true;
2188 } else if (request_start > request_end) {
2189 if (acthd >= request_start || acthd < request_end)
2190 return true;
2191 }
2192
2193 return false;
2194}
2195
Ben Widawskyd1ccbb52013-07-31 17:00:05 -07002196static struct i915_address_space *
2197request_to_vm(struct drm_i915_gem_request *request)
2198{
2199 struct drm_i915_private *dev_priv = request->ring->dev->dev_private;
2200 struct i915_address_space *vm;
2201
2202 vm = &dev_priv->gtt.base;
2203
2204 return vm;
2205}
2206
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002207static bool i915_request_guilty(struct drm_i915_gem_request *request,
2208 const u32 acthd, bool *inside)
2209{
2210 /* There is a possibility that unmasked head address
2211 * pointing inside the ring, matches the batch_obj address range.
2212 * However this is extremely unlikely.
2213 */
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002214 if (request->batch_obj) {
Ben Widawskyd1ccbb52013-07-31 17:00:05 -07002215 if (i915_head_inside_object(acthd, request->batch_obj,
2216 request_to_vm(request))) {
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002217 *inside = true;
2218 return true;
2219 }
2220 }
2221
2222 if (i915_head_inside_request(acthd, request->head, request->tail)) {
2223 *inside = false;
2224 return true;
2225 }
2226
2227 return false;
2228}
2229
2230static void i915_set_reset_status(struct intel_ring_buffer *ring,
2231 struct drm_i915_gem_request *request,
2232 u32 acthd)
2233{
2234 struct i915_ctx_hang_stats *hs = NULL;
2235 bool inside, guilty;
Ben Widawskyd1ccbb52013-07-31 17:00:05 -07002236 unsigned long offset = 0;
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002237
2238 /* Innocent until proven guilty */
2239 guilty = false;
2240
Ben Widawskyd1ccbb52013-07-31 17:00:05 -07002241 if (request->batch_obj)
2242 offset = i915_gem_obj_offset(request->batch_obj,
2243 request_to_vm(request));
2244
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002245 if (ring->hangcheck.action != HANGCHECK_WAIT &&
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002246 i915_request_guilty(request, acthd, &inside)) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002247 DRM_ERROR("%s hung %s bo (0x%lx ctx %d) at 0x%x\n",
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002248 ring->name,
2249 inside ? "inside" : "flushing",
Ben Widawskyd1ccbb52013-07-31 17:00:05 -07002250 offset,
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002251 request->ctx ? request->ctx->id : 0,
2252 acthd);
2253
2254 guilty = true;
2255 }
2256
2257 /* If contexts are disabled or this is the default context, use
2258 * file_priv->reset_state
2259 */
2260 if (request->ctx && request->ctx->id != DEFAULT_CONTEXT_ID)
2261 hs = &request->ctx->hang_stats;
2262 else if (request->file_priv)
2263 hs = &request->file_priv->hang_stats;
2264
2265 if (hs) {
2266 if (guilty)
2267 hs->batch_active++;
2268 else
2269 hs->batch_pending++;
2270 }
2271}
2272
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002273static void i915_gem_free_request(struct drm_i915_gem_request *request)
2274{
2275 list_del(&request->list);
2276 i915_gem_request_remove_from_client(request);
2277
2278 if (request->ctx)
2279 i915_gem_context_unreference(request->ctx);
2280
2281 kfree(request);
2282}
2283
Chris Wilsondfaae392010-09-22 10:31:52 +01002284static void i915_gem_reset_ring_lists(struct drm_i915_private *dev_priv,
2285 struct intel_ring_buffer *ring)
Chris Wilson9375e442010-09-19 12:21:28 +01002286{
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002287 u32 completed_seqno;
2288 u32 acthd;
2289
2290 acthd = intel_ring_get_active_head(ring);
2291 completed_seqno = ring->get_seqno(ring, false);
2292
Chris Wilsondfaae392010-09-22 10:31:52 +01002293 while (!list_empty(&ring->request_list)) {
2294 struct drm_i915_gem_request *request;
Chris Wilson9375e442010-09-19 12:21:28 +01002295
Chris Wilsondfaae392010-09-22 10:31:52 +01002296 request = list_first_entry(&ring->request_list,
2297 struct drm_i915_gem_request,
2298 list);
2299
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002300 if (request->seqno > completed_seqno)
2301 i915_set_reset_status(ring, request, acthd);
2302
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002303 i915_gem_free_request(request);
Chris Wilsondfaae392010-09-22 10:31:52 +01002304 }
2305
2306 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00002307 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07002308
Chris Wilson05394f32010-11-08 19:18:58 +00002309 obj = list_first_entry(&ring->active_list,
2310 struct drm_i915_gem_object,
2311 ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07002312
Chris Wilson05394f32010-11-08 19:18:58 +00002313 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002314 }
Eric Anholt673a3942008-07-30 12:06:12 -07002315}
2316
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002317void i915_gem_restore_fences(struct drm_device *dev)
Chris Wilson312817a2010-11-22 11:50:11 +00002318{
2319 struct drm_i915_private *dev_priv = dev->dev_private;
2320 int i;
2321
Daniel Vetter4b9de732011-10-09 21:52:02 +02002322 for (i = 0; i < dev_priv->num_fence_regs; i++) {
Chris Wilson312817a2010-11-22 11:50:11 +00002323 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
Chris Wilson7d2cb392010-11-27 17:38:29 +00002324
Daniel Vetter94a335d2013-07-17 14:51:28 +02002325 /*
2326 * Commit delayed tiling changes if we have an object still
2327 * attached to the fence, otherwise just clear the fence.
2328 */
2329 if (reg->obj) {
2330 i915_gem_object_update_fence(reg->obj, reg,
2331 reg->obj->tiling_mode);
2332 } else {
2333 i915_gem_write_fence(dev, i, NULL);
2334 }
Chris Wilson312817a2010-11-22 11:50:11 +00002335 }
2336}
2337
Chris Wilson069efc12010-09-30 16:53:18 +01002338void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07002339{
Chris Wilsondfaae392010-09-22 10:31:52 +01002340 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01002341 struct intel_ring_buffer *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002342 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07002343
Chris Wilsonb4519512012-05-11 14:29:30 +01002344 for_each_ring(ring, dev_priv, i)
2345 i915_gem_reset_ring_lists(dev_priv, ring);
Chris Wilsondfaae392010-09-22 10:31:52 +01002346
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002347 i915_gem_restore_fences(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07002348}
2349
2350/**
2351 * This function clears the request list as sequence numbers are passed.
2352 */
Chris Wilsona71d8d92012-02-15 11:25:36 +00002353void
Chris Wilsondb53a302011-02-03 11:57:46 +00002354i915_gem_retire_requests_ring(struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07002355{
Eric Anholt673a3942008-07-30 12:06:12 -07002356 uint32_t seqno;
2357
Chris Wilsondb53a302011-02-03 11:57:46 +00002358 if (list_empty(&ring->request_list))
Karsten Wiese6c0594a2009-02-23 15:07:57 +01002359 return;
2360
Chris Wilsondb53a302011-02-03 11:57:46 +00002361 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002362
Chris Wilsonb2eadbc2012-08-09 10:58:30 +01002363 seqno = ring->get_seqno(ring, true);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002364
Zou Nan hai852835f2010-05-21 09:08:56 +08002365 while (!list_empty(&ring->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002366 struct drm_i915_gem_request *request;
Eric Anholt673a3942008-07-30 12:06:12 -07002367
Zou Nan hai852835f2010-05-21 09:08:56 +08002368 request = list_first_entry(&ring->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07002369 struct drm_i915_gem_request,
2370 list);
Eric Anholt673a3942008-07-30 12:06:12 -07002371
Chris Wilsondfaae392010-09-22 10:31:52 +01002372 if (!i915_seqno_passed(seqno, request->seqno))
Eric Anholt673a3942008-07-30 12:06:12 -07002373 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002374
Chris Wilsondb53a302011-02-03 11:57:46 +00002375 trace_i915_gem_request_retire(ring, request->seqno);
Chris Wilsona71d8d92012-02-15 11:25:36 +00002376 /* We know the GPU must have read the request to have
2377 * sent us the seqno + interrupt, so use the position
2378 * of tail of the request to update the last known position
2379 * of the GPU head.
2380 */
2381 ring->last_retired_head = request->tail;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002382
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002383 i915_gem_free_request(request);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002384 }
2385
2386 /* Move any buffers on the active list that are no longer referenced
2387 * by the ringbuffer to the flushing/inactive lists as appropriate.
2388 */
2389 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00002390 struct drm_i915_gem_object *obj;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002391
Akshay Joshi0206e352011-08-16 15:34:10 -04002392 obj = list_first_entry(&ring->active_list,
Chris Wilson05394f32010-11-08 19:18:58 +00002393 struct drm_i915_gem_object,
2394 ring_list);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002395
Chris Wilson0201f1e2012-07-20 12:41:01 +01002396 if (!i915_seqno_passed(seqno, obj->last_read_seqno))
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002397 break;
2398
Chris Wilson65ce3022012-07-20 12:41:02 +01002399 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002400 }
Chris Wilson9d34e5d2009-09-24 05:26:06 +01002401
Chris Wilsondb53a302011-02-03 11:57:46 +00002402 if (unlikely(ring->trace_irq_seqno &&
2403 i915_seqno_passed(seqno, ring->trace_irq_seqno))) {
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002404 ring->irq_put(ring);
Chris Wilsondb53a302011-02-03 11:57:46 +00002405 ring->trace_irq_seqno = 0;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01002406 }
Chris Wilson23bc5982010-09-29 16:10:57 +01002407
Chris Wilsondb53a302011-02-03 11:57:46 +00002408 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002409}
2410
2411void
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002412i915_gem_retire_requests(struct drm_device *dev)
2413{
2414 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01002415 struct intel_ring_buffer *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002416 int i;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002417
Chris Wilsonb4519512012-05-11 14:29:30 +01002418 for_each_ring(ring, dev_priv, i)
2419 i915_gem_retire_requests_ring(ring);
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002420}
2421
Daniel Vetter75ef9da2010-08-21 00:25:16 +02002422static void
Eric Anholt673a3942008-07-30 12:06:12 -07002423i915_gem_retire_work_handler(struct work_struct *work)
2424{
2425 drm_i915_private_t *dev_priv;
2426 struct drm_device *dev;
Chris Wilsonb4519512012-05-11 14:29:30 +01002427 struct intel_ring_buffer *ring;
Chris Wilson0a587052011-01-09 21:05:44 +00002428 bool idle;
2429 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07002430
2431 dev_priv = container_of(work, drm_i915_private_t,
2432 mm.retire_work.work);
2433 dev = dev_priv->dev;
2434
Chris Wilson891b48c2010-09-29 12:26:37 +01002435 /* Come back later if the device is busy... */
2436 if (!mutex_trylock(&dev->struct_mutex)) {
Chris Wilsonbcb45082012-10-05 17:02:57 +01002437 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work,
2438 round_jiffies_up_relative(HZ));
Chris Wilson891b48c2010-09-29 12:26:37 +01002439 return;
2440 }
2441
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002442 i915_gem_retire_requests(dev);
Zou Nan haid1b851f2010-05-21 09:08:57 +08002443
Chris Wilson0a587052011-01-09 21:05:44 +00002444 /* Send a periodic flush down the ring so we don't hold onto GEM
2445 * objects indefinitely.
2446 */
2447 idle = true;
Chris Wilsonb4519512012-05-11 14:29:30 +01002448 for_each_ring(ring, dev_priv, i) {
Chris Wilson3bb73ab2012-07-20 12:40:59 +01002449 if (ring->gpu_caches_dirty)
Mika Kuoppala0025c072013-06-12 12:35:30 +03002450 i915_add_request(ring, NULL);
Chris Wilson0a587052011-01-09 21:05:44 +00002451
2452 idle &= list_empty(&ring->request_list);
2453 }
2454
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02002455 if (!dev_priv->ums.mm_suspended && !idle)
Chris Wilsonbcb45082012-10-05 17:02:57 +01002456 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work,
2457 round_jiffies_up_relative(HZ));
Chris Wilsonf047e392012-07-21 12:31:41 +01002458 if (idle)
2459 intel_mark_idle(dev);
Chris Wilson0a587052011-01-09 21:05:44 +00002460
Eric Anholt673a3942008-07-30 12:06:12 -07002461 mutex_unlock(&dev->struct_mutex);
2462}
2463
Ben Widawsky5816d642012-04-11 11:18:19 -07002464/**
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002465 * Ensures that an object will eventually get non-busy by flushing any required
2466 * write domains, emitting any outstanding lazy request and retiring and
2467 * completed requests.
2468 */
2469static int
2470i915_gem_object_flush_active(struct drm_i915_gem_object *obj)
2471{
2472 int ret;
2473
2474 if (obj->active) {
Chris Wilson0201f1e2012-07-20 12:41:01 +01002475 ret = i915_gem_check_olr(obj->ring, obj->last_read_seqno);
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002476 if (ret)
2477 return ret;
2478
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002479 i915_gem_retire_requests_ring(obj->ring);
2480 }
2481
2482 return 0;
2483}
2484
2485/**
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002486 * i915_gem_wait_ioctl - implements DRM_IOCTL_I915_GEM_WAIT
2487 * @DRM_IOCTL_ARGS: standard ioctl arguments
2488 *
2489 * Returns 0 if successful, else an error is returned with the remaining time in
2490 * the timeout parameter.
2491 * -ETIME: object is still busy after timeout
2492 * -ERESTARTSYS: signal interrupted the wait
2493 * -ENONENT: object doesn't exist
2494 * Also possible, but rare:
2495 * -EAGAIN: GPU wedged
2496 * -ENOMEM: damn
2497 * -ENODEV: Internal IRQ fail
2498 * -E?: The add request failed
2499 *
2500 * The wait ioctl with a timeout of 0 reimplements the busy ioctl. With any
2501 * non-zero timeout parameter the wait ioctl will wait for the given number of
2502 * nanoseconds on an object becoming unbusy. Since the wait itself does so
2503 * without holding struct_mutex the object may become re-busied before this
2504 * function completes. A similar but shorter * race condition exists in the busy
2505 * ioctl
2506 */
2507int
2508i915_gem_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
2509{
Daniel Vetterf69061b2012-12-06 09:01:42 +01002510 drm_i915_private_t *dev_priv = dev->dev_private;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002511 struct drm_i915_gem_wait *args = data;
2512 struct drm_i915_gem_object *obj;
2513 struct intel_ring_buffer *ring = NULL;
Ben Widawskyeac1f142012-06-05 15:24:24 -07002514 struct timespec timeout_stack, *timeout = NULL;
Daniel Vetterf69061b2012-12-06 09:01:42 +01002515 unsigned reset_counter;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002516 u32 seqno = 0;
2517 int ret = 0;
2518
Ben Widawskyeac1f142012-06-05 15:24:24 -07002519 if (args->timeout_ns >= 0) {
2520 timeout_stack = ns_to_timespec(args->timeout_ns);
2521 timeout = &timeout_stack;
2522 }
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002523
2524 ret = i915_mutex_lock_interruptible(dev);
2525 if (ret)
2526 return ret;
2527
2528 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->bo_handle));
2529 if (&obj->base == NULL) {
2530 mutex_unlock(&dev->struct_mutex);
2531 return -ENOENT;
2532 }
2533
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002534 /* Need to make sure the object gets inactive eventually. */
2535 ret = i915_gem_object_flush_active(obj);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002536 if (ret)
2537 goto out;
2538
2539 if (obj->active) {
Chris Wilson0201f1e2012-07-20 12:41:01 +01002540 seqno = obj->last_read_seqno;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002541 ring = obj->ring;
2542 }
2543
2544 if (seqno == 0)
2545 goto out;
2546
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002547 /* Do this after OLR check to make sure we make forward progress polling
2548 * on this IOCTL with a 0 timeout (like busy ioctl)
2549 */
2550 if (!args->timeout_ns) {
2551 ret = -ETIME;
2552 goto out;
2553 }
2554
2555 drm_gem_object_unreference(&obj->base);
Daniel Vetterf69061b2012-12-06 09:01:42 +01002556 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002557 mutex_unlock(&dev->struct_mutex);
2558
Daniel Vetterf69061b2012-12-06 09:01:42 +01002559 ret = __wait_seqno(ring, seqno, reset_counter, true, timeout);
Chris Wilson4f42f4e2013-04-26 16:22:46 +03002560 if (timeout)
Ben Widawskyeac1f142012-06-05 15:24:24 -07002561 args->timeout_ns = timespec_to_ns(timeout);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002562 return ret;
2563
2564out:
2565 drm_gem_object_unreference(&obj->base);
2566 mutex_unlock(&dev->struct_mutex);
2567 return ret;
2568}
2569
2570/**
Ben Widawsky5816d642012-04-11 11:18:19 -07002571 * i915_gem_object_sync - sync an object to a ring.
2572 *
2573 * @obj: object which may be in use on another ring.
2574 * @to: ring we wish to use the object on. May be NULL.
2575 *
2576 * This code is meant to abstract object synchronization with the GPU.
2577 * Calling with NULL implies synchronizing the object with the CPU
2578 * rather than a particular GPU ring.
2579 *
2580 * Returns 0 if successful, else propagates up the lower layer error.
2581 */
Ben Widawsky2911a352012-04-05 14:47:36 -07002582int
2583i915_gem_object_sync(struct drm_i915_gem_object *obj,
2584 struct intel_ring_buffer *to)
2585{
2586 struct intel_ring_buffer *from = obj->ring;
2587 u32 seqno;
2588 int ret, idx;
2589
2590 if (from == NULL || to == from)
2591 return 0;
2592
Ben Widawsky5816d642012-04-11 11:18:19 -07002593 if (to == NULL || !i915_semaphore_is_enabled(obj->base.dev))
Chris Wilson0201f1e2012-07-20 12:41:01 +01002594 return i915_gem_object_wait_rendering(obj, false);
Ben Widawsky2911a352012-04-05 14:47:36 -07002595
2596 idx = intel_ring_sync_index(from, to);
2597
Chris Wilson0201f1e2012-07-20 12:41:01 +01002598 seqno = obj->last_read_seqno;
Ben Widawsky2911a352012-04-05 14:47:36 -07002599 if (seqno <= from->sync_seqno[idx])
2600 return 0;
2601
Ben Widawskyb4aca012012-04-25 20:50:12 -07002602 ret = i915_gem_check_olr(obj->ring, seqno);
2603 if (ret)
2604 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07002605
Ben Widawsky1500f7e2012-04-11 11:18:21 -07002606 ret = to->sync_to(to, from, seqno);
Ben Widawskye3a5a222012-04-11 11:18:20 -07002607 if (!ret)
Mika Kuoppala7b01e262012-11-28 17:18:45 +02002608 /* We use last_read_seqno because sync_to()
2609 * might have just caused seqno wrap under
2610 * the radar.
2611 */
2612 from->sync_seqno[idx] = obj->last_read_seqno;
Ben Widawsky2911a352012-04-05 14:47:36 -07002613
Ben Widawskye3a5a222012-04-11 11:18:20 -07002614 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07002615}
2616
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002617static void i915_gem_object_finish_gtt(struct drm_i915_gem_object *obj)
2618{
2619 u32 old_write_domain, old_read_domains;
2620
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002621 /* Force a pagefault for domain tracking on next user access */
2622 i915_gem_release_mmap(obj);
2623
Keith Packardb97c3d92011-06-24 21:02:59 -07002624 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
2625 return;
2626
Chris Wilson97c809fd2012-10-09 19:24:38 +01002627 /* Wait for any direct GTT access to complete */
2628 mb();
2629
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002630 old_read_domains = obj->base.read_domains;
2631 old_write_domain = obj->base.write_domain;
2632
2633 obj->base.read_domains &= ~I915_GEM_DOMAIN_GTT;
2634 obj->base.write_domain &= ~I915_GEM_DOMAIN_GTT;
2635
2636 trace_i915_gem_object_change_domain(obj,
2637 old_read_domains,
2638 old_write_domain);
2639}
2640
Ben Widawsky07fe0b12013-07-31 17:00:10 -07002641int i915_vma_unbind(struct i915_vma *vma)
Eric Anholt673a3942008-07-30 12:06:12 -07002642{
Ben Widawsky07fe0b12013-07-31 17:00:10 -07002643 struct drm_i915_gem_object *obj = vma->obj;
Daniel Vetter7bddb012012-02-09 17:15:47 +01002644 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Chris Wilson43e28f02013-01-08 10:53:09 +00002645 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002646
Ben Widawsky07fe0b12013-07-31 17:00:10 -07002647 if (list_empty(&vma->vma_link))
Eric Anholt673a3942008-07-30 12:06:12 -07002648 return 0;
2649
Ben Widawsky433544b2013-08-13 18:09:06 -07002650 if (!drm_mm_node_allocated(&vma->node))
2651 goto destroy;
2652
Chris Wilson31d8d652012-05-24 19:11:20 +01002653 if (obj->pin_count)
2654 return -EBUSY;
Eric Anholt673a3942008-07-30 12:06:12 -07002655
Chris Wilsonc4670ad2012-08-20 10:23:27 +01002656 BUG_ON(obj->pages == NULL);
2657
Chris Wilsona8198ee2011-04-13 22:04:09 +01002658 ret = i915_gem_object_finish_gpu(obj);
Chris Wilson1488fc02012-04-24 15:47:31 +01002659 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002660 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01002661 /* Continue on if we fail due to EIO, the GPU is hung so we
2662 * should be safe and we need to cleanup or else we might
2663 * cause memory corruption through use-after-free.
2664 */
Chris Wilsona8198ee2011-04-13 22:04:09 +01002665
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002666 i915_gem_object_finish_gtt(obj);
Chris Wilsona8198ee2011-04-13 22:04:09 +01002667
Daniel Vetter96b47b62009-12-15 17:50:00 +01002668 /* release the fence reg _after_ flushing */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002669 ret = i915_gem_object_put_fence(obj);
Chris Wilson1488fc02012-04-24 15:47:31 +01002670 if (ret)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002671 return ret;
Daniel Vetter96b47b62009-12-15 17:50:00 +01002672
Ben Widawsky07fe0b12013-07-31 17:00:10 -07002673 trace_i915_vma_unbind(vma);
Chris Wilsondb53a302011-02-03 11:57:46 +00002674
Daniel Vetter74898d72012-02-15 23:50:22 +01002675 if (obj->has_global_gtt_mapping)
2676 i915_gem_gtt_unbind_object(obj);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002677 if (obj->has_aliasing_ppgtt_mapping) {
2678 i915_ppgtt_unbind_object(dev_priv->mm.aliasing_ppgtt, obj);
2679 obj->has_aliasing_ppgtt_mapping = 0;
2680 }
Daniel Vetter74163902012-02-15 23:50:21 +01002681 i915_gem_gtt_finish_object(obj);
Ben Widawsky401c29f2013-05-31 11:28:47 -07002682 i915_gem_object_unpin_pages(obj);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002683
Ben Widawskyca191b12013-07-31 17:00:14 -07002684 list_del(&vma->mm_list);
Daniel Vetter75e9e912010-11-04 17:11:09 +01002685 /* Avoid an unnecessary call to unbind on rebind. */
Ben Widawsky5cacaac2013-07-31 17:00:13 -07002686 if (i915_is_ggtt(vma->vm))
2687 obj->map_and_fenceable = true;
Eric Anholt673a3942008-07-30 12:06:12 -07002688
Ben Widawsky2f633152013-07-17 12:19:03 -07002689 drm_mm_remove_node(&vma->node);
Ben Widawsky433544b2013-08-13 18:09:06 -07002690
2691destroy:
Ben Widawsky2f633152013-07-17 12:19:03 -07002692 i915_gem_vma_destroy(vma);
2693
2694 /* Since the unbound list is global, only move to that list if
2695 * no more VMAs exist.
2696 * NB: Until we have real VMAs there will only ever be one */
2697 WARN_ON(!list_empty(&obj->vma_list));
2698 if (list_empty(&obj->vma_list))
2699 list_move_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Eric Anholt673a3942008-07-30 12:06:12 -07002700
Chris Wilson88241782011-01-07 17:09:48 +00002701 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002702}
2703
Ben Widawsky07fe0b12013-07-31 17:00:10 -07002704/**
2705 * Unbinds an object from the global GTT aperture.
2706 */
2707int
2708i915_gem_object_ggtt_unbind(struct drm_i915_gem_object *obj)
2709{
2710 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2711 struct i915_address_space *ggtt = &dev_priv->gtt.base;
2712
Dan Carpenter58e73e12013-08-09 12:44:11 +03002713 if (!i915_gem_obj_ggtt_bound(obj))
Ben Widawsky07fe0b12013-07-31 17:00:10 -07002714 return 0;
2715
2716 if (obj->pin_count)
2717 return -EBUSY;
2718
2719 BUG_ON(obj->pages == NULL);
2720
2721 return i915_vma_unbind(i915_gem_obj_to_vma(obj, ggtt));
2722}
2723
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07002724int i915_gpu_idle(struct drm_device *dev)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002725{
2726 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01002727 struct intel_ring_buffer *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002728 int ret, i;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002729
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002730 /* Flush everything onto the inactive list. */
Chris Wilsonb4519512012-05-11 14:29:30 +01002731 for_each_ring(ring, dev_priv, i) {
Ben Widawskyb6c74882012-08-14 14:35:14 -07002732 ret = i915_switch_context(ring, NULL, DEFAULT_CONTEXT_ID);
2733 if (ret)
2734 return ret;
2735
Chris Wilson3e960502012-11-27 16:22:54 +00002736 ret = intel_ring_idle(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002737 if (ret)
2738 return ret;
2739 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08002740
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01002741 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002742}
2743
Chris Wilson9ce079e2012-04-17 15:31:30 +01002744static void i965_write_fence_reg(struct drm_device *dev, int reg,
2745 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002746{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002747 drm_i915_private_t *dev_priv = dev->dev_private;
Imre Deak56c844e2013-01-07 21:47:34 +02002748 int fence_reg;
2749 int fence_pitch_shift;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002750
Imre Deak56c844e2013-01-07 21:47:34 +02002751 if (INTEL_INFO(dev)->gen >= 6) {
2752 fence_reg = FENCE_REG_SANDYBRIDGE_0;
2753 fence_pitch_shift = SANDYBRIDGE_FENCE_PITCH_SHIFT;
2754 } else {
2755 fence_reg = FENCE_REG_965_0;
2756 fence_pitch_shift = I965_FENCE_PITCH_SHIFT;
2757 }
2758
Chris Wilsond18b9612013-07-10 13:36:23 +01002759 fence_reg += reg * 8;
2760
2761 /* To w/a incoherency with non-atomic 64-bit register updates,
2762 * we split the 64-bit update into two 32-bit writes. In order
2763 * for a partial fence not to be evaluated between writes, we
2764 * precede the update with write to turn off the fence register,
2765 * and only enable the fence as the last step.
2766 *
2767 * For extra levels of paranoia, we make sure each step lands
2768 * before applying the next step.
2769 */
2770 I915_WRITE(fence_reg, 0);
2771 POSTING_READ(fence_reg);
2772
Chris Wilson9ce079e2012-04-17 15:31:30 +01002773 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002774 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilsond18b9612013-07-10 13:36:23 +01002775 uint64_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002776
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002777 val = (uint64_t)((i915_gem_obj_ggtt_offset(obj) + size - 4096) &
Chris Wilson9ce079e2012-04-17 15:31:30 +01002778 0xfffff000) << 32;
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002779 val |= i915_gem_obj_ggtt_offset(obj) & 0xfffff000;
Imre Deak56c844e2013-01-07 21:47:34 +02002780 val |= (uint64_t)((obj->stride / 128) - 1) << fence_pitch_shift;
Chris Wilson9ce079e2012-04-17 15:31:30 +01002781 if (obj->tiling_mode == I915_TILING_Y)
2782 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2783 val |= I965_FENCE_REG_VALID;
Daniel Vetterc6642782010-11-12 13:46:18 +00002784
Chris Wilsond18b9612013-07-10 13:36:23 +01002785 I915_WRITE(fence_reg + 4, val >> 32);
2786 POSTING_READ(fence_reg + 4);
2787
2788 I915_WRITE(fence_reg + 0, val);
2789 POSTING_READ(fence_reg);
2790 } else {
2791 I915_WRITE(fence_reg + 4, 0);
2792 POSTING_READ(fence_reg + 4);
2793 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08002794}
2795
Chris Wilson9ce079e2012-04-17 15:31:30 +01002796static void i915_write_fence_reg(struct drm_device *dev, int reg,
2797 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002798{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002799 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson9ce079e2012-04-17 15:31:30 +01002800 u32 val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002801
Chris Wilson9ce079e2012-04-17 15:31:30 +01002802 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002803 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01002804 int pitch_val;
2805 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002806
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002807 WARN((i915_gem_obj_ggtt_offset(obj) & ~I915_FENCE_START_MASK) ||
Chris Wilson9ce079e2012-04-17 15:31:30 +01002808 (size & -size) != size ||
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002809 (i915_gem_obj_ggtt_offset(obj) & (size - 1)),
2810 "object 0x%08lx [fenceable? %d] not 1M or pot-size (0x%08x) aligned\n",
2811 i915_gem_obj_ggtt_offset(obj), obj->map_and_fenceable, size);
Chris Wilson9ce079e2012-04-17 15:31:30 +01002812
2813 if (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev))
2814 tile_width = 128;
2815 else
2816 tile_width = 512;
2817
2818 /* Note: pitch better be a power of two tile widths */
2819 pitch_val = obj->stride / tile_width;
2820 pitch_val = ffs(pitch_val) - 1;
2821
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002822 val = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01002823 if (obj->tiling_mode == I915_TILING_Y)
2824 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
2825 val |= I915_FENCE_SIZE_BITS(size);
2826 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2827 val |= I830_FENCE_REG_VALID;
2828 } else
2829 val = 0;
2830
2831 if (reg < 8)
2832 reg = FENCE_REG_830_0 + reg * 4;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002833 else
Chris Wilson9ce079e2012-04-17 15:31:30 +01002834 reg = FENCE_REG_945_8 + (reg - 8) * 4;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002835
Chris Wilson9ce079e2012-04-17 15:31:30 +01002836 I915_WRITE(reg, val);
2837 POSTING_READ(reg);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002838}
2839
Chris Wilson9ce079e2012-04-17 15:31:30 +01002840static void i830_write_fence_reg(struct drm_device *dev, int reg,
2841 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002842{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002843 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002844 uint32_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002845
Chris Wilson9ce079e2012-04-17 15:31:30 +01002846 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002847 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01002848 uint32_t pitch_val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002849
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002850 WARN((i915_gem_obj_ggtt_offset(obj) & ~I830_FENCE_START_MASK) ||
Chris Wilson9ce079e2012-04-17 15:31:30 +01002851 (size & -size) != size ||
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002852 (i915_gem_obj_ggtt_offset(obj) & (size - 1)),
2853 "object 0x%08lx not 512K or pot-size 0x%08x aligned\n",
2854 i915_gem_obj_ggtt_offset(obj), size);
Eric Anholte76a16d2009-05-26 17:44:56 -07002855
Chris Wilson9ce079e2012-04-17 15:31:30 +01002856 pitch_val = obj->stride / 128;
2857 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002858
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002859 val = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01002860 if (obj->tiling_mode == I915_TILING_Y)
2861 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
2862 val |= I830_FENCE_SIZE_BITS(size);
2863 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2864 val |= I830_FENCE_REG_VALID;
2865 } else
2866 val = 0;
Daniel Vetterc6642782010-11-12 13:46:18 +00002867
Chris Wilson9ce079e2012-04-17 15:31:30 +01002868 I915_WRITE(FENCE_REG_830_0 + reg * 4, val);
2869 POSTING_READ(FENCE_REG_830_0 + reg * 4);
2870}
2871
Chris Wilsond0a57782012-10-09 19:24:37 +01002872inline static bool i915_gem_object_needs_mb(struct drm_i915_gem_object *obj)
2873{
2874 return obj && obj->base.read_domains & I915_GEM_DOMAIN_GTT;
2875}
2876
Chris Wilson9ce079e2012-04-17 15:31:30 +01002877static void i915_gem_write_fence(struct drm_device *dev, int reg,
2878 struct drm_i915_gem_object *obj)
2879{
Chris Wilsond0a57782012-10-09 19:24:37 +01002880 struct drm_i915_private *dev_priv = dev->dev_private;
2881
2882 /* Ensure that all CPU reads are completed before installing a fence
2883 * and all writes before removing the fence.
2884 */
2885 if (i915_gem_object_needs_mb(dev_priv->fence_regs[reg].obj))
2886 mb();
2887
Daniel Vetter94a335d2013-07-17 14:51:28 +02002888 WARN(obj && (!obj->stride || !obj->tiling_mode),
2889 "bogus fence setup with stride: 0x%x, tiling mode: %i\n",
2890 obj->stride, obj->tiling_mode);
2891
Chris Wilson9ce079e2012-04-17 15:31:30 +01002892 switch (INTEL_INFO(dev)->gen) {
2893 case 7:
Imre Deak56c844e2013-01-07 21:47:34 +02002894 case 6:
Chris Wilson9ce079e2012-04-17 15:31:30 +01002895 case 5:
2896 case 4: i965_write_fence_reg(dev, reg, obj); break;
2897 case 3: i915_write_fence_reg(dev, reg, obj); break;
2898 case 2: i830_write_fence_reg(dev, reg, obj); break;
Ben Widawsky7dbf9d62012-12-18 10:31:22 -08002899 default: BUG();
Chris Wilson9ce079e2012-04-17 15:31:30 +01002900 }
Chris Wilsond0a57782012-10-09 19:24:37 +01002901
2902 /* And similarly be paranoid that no direct access to this region
2903 * is reordered to before the fence is installed.
2904 */
2905 if (i915_gem_object_needs_mb(obj))
2906 mb();
Jesse Barnesde151cf2008-11-12 10:03:55 -08002907}
2908
Chris Wilson61050802012-04-17 15:31:31 +01002909static inline int fence_number(struct drm_i915_private *dev_priv,
2910 struct drm_i915_fence_reg *fence)
2911{
2912 return fence - dev_priv->fence_regs;
2913}
2914
2915static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
2916 struct drm_i915_fence_reg *fence,
2917 bool enable)
2918{
Chris Wilson2dc8aae2013-05-22 17:08:06 +01002919 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson46a0b632013-07-10 13:36:24 +01002920 int reg = fence_number(dev_priv, fence);
Chris Wilson61050802012-04-17 15:31:31 +01002921
Chris Wilson46a0b632013-07-10 13:36:24 +01002922 i915_gem_write_fence(obj->base.dev, reg, enable ? obj : NULL);
Chris Wilson61050802012-04-17 15:31:31 +01002923
2924 if (enable) {
Chris Wilson46a0b632013-07-10 13:36:24 +01002925 obj->fence_reg = reg;
Chris Wilson61050802012-04-17 15:31:31 +01002926 fence->obj = obj;
2927 list_move_tail(&fence->lru_list, &dev_priv->mm.fence_list);
2928 } else {
2929 obj->fence_reg = I915_FENCE_REG_NONE;
2930 fence->obj = NULL;
2931 list_del_init(&fence->lru_list);
2932 }
Daniel Vetter94a335d2013-07-17 14:51:28 +02002933 obj->fence_dirty = false;
Chris Wilson61050802012-04-17 15:31:31 +01002934}
2935
Chris Wilsond9e86c02010-11-10 16:40:20 +00002936static int
Chris Wilsond0a57782012-10-09 19:24:37 +01002937i915_gem_object_wait_fence(struct drm_i915_gem_object *obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002938{
Chris Wilson1c293ea2012-04-17 15:31:27 +01002939 if (obj->last_fenced_seqno) {
Chris Wilson86d5bc32012-07-20 12:41:04 +01002940 int ret = i915_wait_seqno(obj->ring, obj->last_fenced_seqno);
Chris Wilson18991842012-04-17 15:31:29 +01002941 if (ret)
2942 return ret;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002943
2944 obj->last_fenced_seqno = 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002945 }
2946
Chris Wilson86d5bc32012-07-20 12:41:04 +01002947 obj->fenced_gpu_access = false;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002948 return 0;
2949}
2950
2951int
2952i915_gem_object_put_fence(struct drm_i915_gem_object *obj)
2953{
Chris Wilson61050802012-04-17 15:31:31 +01002954 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilsonf9c513e2013-03-26 11:29:27 +00002955 struct drm_i915_fence_reg *fence;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002956 int ret;
2957
Chris Wilsond0a57782012-10-09 19:24:37 +01002958 ret = i915_gem_object_wait_fence(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002959 if (ret)
2960 return ret;
2961
Chris Wilson61050802012-04-17 15:31:31 +01002962 if (obj->fence_reg == I915_FENCE_REG_NONE)
2963 return 0;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002964
Chris Wilsonf9c513e2013-03-26 11:29:27 +00002965 fence = &dev_priv->fence_regs[obj->fence_reg];
2966
Chris Wilson61050802012-04-17 15:31:31 +01002967 i915_gem_object_fence_lost(obj);
Chris Wilsonf9c513e2013-03-26 11:29:27 +00002968 i915_gem_object_update_fence(obj, fence, false);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002969
2970 return 0;
2971}
2972
2973static struct drm_i915_fence_reg *
Chris Wilsona360bb12012-04-17 15:31:25 +01002974i915_find_fence_reg(struct drm_device *dev)
Daniel Vetterae3db242010-02-19 11:51:58 +01002975{
Daniel Vetterae3db242010-02-19 11:51:58 +01002976 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson8fe301a2012-04-17 15:31:28 +01002977 struct drm_i915_fence_reg *reg, *avail;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002978 int i;
Daniel Vetterae3db242010-02-19 11:51:58 +01002979
2980 /* First try to find a free reg */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002981 avail = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002982 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
2983 reg = &dev_priv->fence_regs[i];
2984 if (!reg->obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002985 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002986
Chris Wilson1690e1e2011-12-14 13:57:08 +01002987 if (!reg->pin_count)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002988 avail = reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002989 }
2990
Chris Wilsond9e86c02010-11-10 16:40:20 +00002991 if (avail == NULL)
2992 return NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002993
2994 /* None available, try to steal one or wait for a user to finish */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002995 list_for_each_entry(reg, &dev_priv->mm.fence_list, lru_list) {
Chris Wilson1690e1e2011-12-14 13:57:08 +01002996 if (reg->pin_count)
Daniel Vetterae3db242010-02-19 11:51:58 +01002997 continue;
2998
Chris Wilson8fe301a2012-04-17 15:31:28 +01002999 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003000 }
3001
Chris Wilson8fe301a2012-04-17 15:31:28 +01003002 return NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01003003}
3004
Jesse Barnesde151cf2008-11-12 10:03:55 -08003005/**
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003006 * i915_gem_object_get_fence - set up fencing for an object
Jesse Barnesde151cf2008-11-12 10:03:55 -08003007 * @obj: object to map through a fence reg
3008 *
3009 * When mapping objects through the GTT, userspace wants to be able to write
3010 * to them without having to worry about swizzling if the object is tiled.
Jesse Barnesde151cf2008-11-12 10:03:55 -08003011 * This function walks the fence regs looking for a free one for @obj,
3012 * stealing one if it can't find any.
3013 *
3014 * It then sets up the reg based on the object's properties: address, pitch
3015 * and tiling format.
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003016 *
3017 * For an untiled surface, this removes any existing fence.
Jesse Barnesde151cf2008-11-12 10:03:55 -08003018 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01003019int
Chris Wilson06d98132012-04-17 15:31:24 +01003020i915_gem_object_get_fence(struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08003021{
Chris Wilson05394f32010-11-08 19:18:58 +00003022 struct drm_device *dev = obj->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08003023 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson14415742012-04-17 15:31:33 +01003024 bool enable = obj->tiling_mode != I915_TILING_NONE;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003025 struct drm_i915_fence_reg *reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01003026 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003027
Chris Wilson14415742012-04-17 15:31:33 +01003028 /* Have we updated the tiling parameters upon the object and so
3029 * will need to serialise the write to the associated fence register?
3030 */
Chris Wilson5d82e3e2012-04-21 16:23:23 +01003031 if (obj->fence_dirty) {
Chris Wilsond0a57782012-10-09 19:24:37 +01003032 ret = i915_gem_object_wait_fence(obj);
Chris Wilson14415742012-04-17 15:31:33 +01003033 if (ret)
3034 return ret;
3035 }
Chris Wilson9a5a53b2012-03-22 15:10:00 +00003036
Chris Wilsond9e86c02010-11-10 16:40:20 +00003037 /* Just update our place in the LRU if our fence is getting reused. */
Chris Wilson05394f32010-11-08 19:18:58 +00003038 if (obj->fence_reg != I915_FENCE_REG_NONE) {
3039 reg = &dev_priv->fence_regs[obj->fence_reg];
Chris Wilson5d82e3e2012-04-21 16:23:23 +01003040 if (!obj->fence_dirty) {
Chris Wilson14415742012-04-17 15:31:33 +01003041 list_move_tail(&reg->lru_list,
3042 &dev_priv->mm.fence_list);
3043 return 0;
3044 }
3045 } else if (enable) {
3046 reg = i915_find_fence_reg(dev);
3047 if (reg == NULL)
3048 return -EDEADLK;
Chris Wilsond9e86c02010-11-10 16:40:20 +00003049
Chris Wilson14415742012-04-17 15:31:33 +01003050 if (reg->obj) {
3051 struct drm_i915_gem_object *old = reg->obj;
3052
Chris Wilsond0a57782012-10-09 19:24:37 +01003053 ret = i915_gem_object_wait_fence(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00003054 if (ret)
3055 return ret;
3056
Chris Wilson14415742012-04-17 15:31:33 +01003057 i915_gem_object_fence_lost(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00003058 }
Chris Wilson14415742012-04-17 15:31:33 +01003059 } else
Eric Anholta09ba7f2009-08-29 12:49:51 -07003060 return 0;
Eric Anholta09ba7f2009-08-29 12:49:51 -07003061
Chris Wilson14415742012-04-17 15:31:33 +01003062 i915_gem_object_update_fence(obj, reg, enable);
Chris Wilson14415742012-04-17 15:31:33 +01003063
Chris Wilson9ce079e2012-04-17 15:31:30 +01003064 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08003065}
3066
Chris Wilson42d6ab42012-07-26 11:49:32 +01003067static bool i915_gem_valid_gtt_space(struct drm_device *dev,
3068 struct drm_mm_node *gtt_space,
3069 unsigned long cache_level)
3070{
3071 struct drm_mm_node *other;
3072
3073 /* On non-LLC machines we have to be careful when putting differing
3074 * types of snoopable memory together to avoid the prefetcher
Damien Lespiau4239ca72012-12-03 16:26:16 +00003075 * crossing memory domains and dying.
Chris Wilson42d6ab42012-07-26 11:49:32 +01003076 */
3077 if (HAS_LLC(dev))
3078 return true;
3079
Ben Widawskyc6cfb322013-07-05 14:41:06 -07003080 if (!drm_mm_node_allocated(gtt_space))
Chris Wilson42d6ab42012-07-26 11:49:32 +01003081 return true;
3082
3083 if (list_empty(&gtt_space->node_list))
3084 return true;
3085
3086 other = list_entry(gtt_space->node_list.prev, struct drm_mm_node, node_list);
3087 if (other->allocated && !other->hole_follows && other->color != cache_level)
3088 return false;
3089
3090 other = list_entry(gtt_space->node_list.next, struct drm_mm_node, node_list);
3091 if (other->allocated && !gtt_space->hole_follows && other->color != cache_level)
3092 return false;
3093
3094 return true;
3095}
3096
3097static void i915_gem_verify_gtt(struct drm_device *dev)
3098{
3099#if WATCH_GTT
3100 struct drm_i915_private *dev_priv = dev->dev_private;
3101 struct drm_i915_gem_object *obj;
3102 int err = 0;
3103
Ben Widawsky35c20a62013-05-31 11:28:48 -07003104 list_for_each_entry(obj, &dev_priv->mm.gtt_list, global_list) {
Chris Wilson42d6ab42012-07-26 11:49:32 +01003105 if (obj->gtt_space == NULL) {
3106 printk(KERN_ERR "object found on GTT list with no space reserved\n");
3107 err++;
3108 continue;
3109 }
3110
3111 if (obj->cache_level != obj->gtt_space->color) {
3112 printk(KERN_ERR "object reserved space [%08lx, %08lx] with wrong color, cache_level=%x, color=%lx\n",
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003113 i915_gem_obj_ggtt_offset(obj),
3114 i915_gem_obj_ggtt_offset(obj) + i915_gem_obj_ggtt_size(obj),
Chris Wilson42d6ab42012-07-26 11:49:32 +01003115 obj->cache_level,
3116 obj->gtt_space->color);
3117 err++;
3118 continue;
3119 }
3120
3121 if (!i915_gem_valid_gtt_space(dev,
3122 obj->gtt_space,
3123 obj->cache_level)) {
3124 printk(KERN_ERR "invalid GTT space found at [%08lx, %08lx] - color=%x\n",
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003125 i915_gem_obj_ggtt_offset(obj),
3126 i915_gem_obj_ggtt_offset(obj) + i915_gem_obj_ggtt_size(obj),
Chris Wilson42d6ab42012-07-26 11:49:32 +01003127 obj->cache_level);
3128 err++;
3129 continue;
3130 }
3131 }
3132
3133 WARN_ON(err);
3134#endif
3135}
3136
Jesse Barnesde151cf2008-11-12 10:03:55 -08003137/**
Eric Anholt673a3942008-07-30 12:06:12 -07003138 * Finds free space in the GTT aperture and binds the object there.
3139 */
3140static int
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003141i915_gem_object_bind_to_vm(struct drm_i915_gem_object *obj,
3142 struct i915_address_space *vm,
3143 unsigned alignment,
3144 bool map_and_fenceable,
3145 bool nonblocking)
Eric Anholt673a3942008-07-30 12:06:12 -07003146{
Chris Wilson05394f32010-11-08 19:18:58 +00003147 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07003148 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter5e783302010-11-14 22:32:36 +01003149 u32 size, fence_size, fence_alignment, unfenced_alignment;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003150 size_t gtt_max =
3151 map_and_fenceable ? dev_priv->gtt.mappable_end : vm->total;
Ben Widawsky2f633152013-07-17 12:19:03 -07003152 struct i915_vma *vma;
Chris Wilson07f73f62009-09-14 16:50:30 +01003153 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003154
Chris Wilsone28f8712011-07-18 13:11:49 -07003155 fence_size = i915_gem_get_gtt_size(dev,
3156 obj->base.size,
3157 obj->tiling_mode);
3158 fence_alignment = i915_gem_get_gtt_alignment(dev,
3159 obj->base.size,
Imre Deakd8651102013-01-07 21:47:33 +02003160 obj->tiling_mode, true);
Chris Wilsone28f8712011-07-18 13:11:49 -07003161 unfenced_alignment =
Imre Deakd8651102013-01-07 21:47:33 +02003162 i915_gem_get_gtt_alignment(dev,
Chris Wilsone28f8712011-07-18 13:11:49 -07003163 obj->base.size,
Imre Deakd8651102013-01-07 21:47:33 +02003164 obj->tiling_mode, false);
Chris Wilsona00b10c2010-09-24 21:15:47 +01003165
Eric Anholt673a3942008-07-30 12:06:12 -07003166 if (alignment == 0)
Daniel Vetter5e783302010-11-14 22:32:36 +01003167 alignment = map_and_fenceable ? fence_alignment :
3168 unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01003169 if (map_and_fenceable && alignment & (fence_alignment - 1)) {
Eric Anholt673a3942008-07-30 12:06:12 -07003170 DRM_ERROR("Invalid object alignment requested %u\n", alignment);
3171 return -EINVAL;
3172 }
3173
Chris Wilson05394f32010-11-08 19:18:58 +00003174 size = map_and_fenceable ? fence_size : obj->base.size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01003175
Chris Wilson654fc602010-05-27 13:18:21 +01003176 /* If the object is bigger than the entire aperture, reject it early
3177 * before evicting everything in a vain attempt to find space.
3178 */
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003179 if (obj->base.size > gtt_max) {
Jani Nikula3765f302013-06-07 16:03:50 +03003180 DRM_ERROR("Attempting to bind an object larger than the aperture: object=%zd > %s aperture=%zu\n",
Chris Wilsona36689c2013-05-21 16:58:49 +01003181 obj->base.size,
3182 map_and_fenceable ? "mappable" : "total",
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003183 gtt_max);
Chris Wilson654fc602010-05-27 13:18:21 +01003184 return -E2BIG;
3185 }
3186
Chris Wilson37e680a2012-06-07 15:38:42 +01003187 ret = i915_gem_object_get_pages(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02003188 if (ret)
3189 return ret;
3190
Chris Wilsonfbdda6f2012-11-20 10:45:16 +00003191 i915_gem_object_pin_pages(obj);
3192
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003193 BUG_ON(!i915_is_ggtt(vm));
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003194
Ben Widawskyaccfef22013-08-14 11:38:35 +02003195 vma = i915_gem_obj_lookup_or_create_vma(obj, vm);
Dan Carpenterdb473b32013-07-19 08:45:46 +03003196 if (IS_ERR(vma)) {
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003197 ret = PTR_ERR(vma);
3198 goto err_unpin;
Ben Widawsky2f633152013-07-17 12:19:03 -07003199 }
3200
Ben Widawskyaccfef22013-08-14 11:38:35 +02003201 /* For now we only ever use 1 vma per object */
3202 WARN_ON(!list_is_singular(&obj->vma_list));
3203
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003204search_free:
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003205 ret = drm_mm_insert_node_in_range_generic(&vm->mm, &vma->node,
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003206 size, alignment,
David Herrmann31e5d7c2013-07-27 13:36:27 +02003207 obj->cache_level, 0, gtt_max,
3208 DRM_MM_SEARCH_DEFAULT);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003209 if (ret) {
Ben Widawskyf6cd1f12013-07-31 17:00:11 -07003210 ret = i915_gem_evict_something(dev, vm, size, alignment,
Chris Wilson42d6ab42012-07-26 11:49:32 +01003211 obj->cache_level,
Chris Wilson86a1ee22012-08-11 15:41:04 +01003212 map_and_fenceable,
3213 nonblocking);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003214 if (ret == 0)
3215 goto search_free;
Chris Wilson97311292009-09-21 00:22:34 +01003216
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003217 goto err_free_vma;
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003218 }
Ben Widawsky2f633152013-07-17 12:19:03 -07003219 if (WARN_ON(!i915_gem_valid_gtt_space(dev, &vma->node,
Ben Widawskyc6cfb322013-07-05 14:41:06 -07003220 obj->cache_level))) {
Ben Widawsky2f633152013-07-17 12:19:03 -07003221 ret = -EINVAL;
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003222 goto err_remove_node;
Eric Anholt673a3942008-07-30 12:06:12 -07003223 }
3224
Daniel Vetter74163902012-02-15 23:50:21 +01003225 ret = i915_gem_gtt_prepare_object(obj);
Ben Widawsky2f633152013-07-17 12:19:03 -07003226 if (ret)
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003227 goto err_remove_node;
Eric Anholt673a3942008-07-30 12:06:12 -07003228
Ben Widawsky35c20a62013-05-31 11:28:48 -07003229 list_move_tail(&obj->global_list, &dev_priv->mm.bound_list);
Ben Widawskyca191b12013-07-31 17:00:14 -07003230 list_add_tail(&vma->mm_list, &vm->inactive_list);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01003231
Ben Widawsky4bd561b2013-08-13 18:09:07 -07003232 if (i915_is_ggtt(vm)) {
3233 bool mappable, fenceable;
Chris Wilsona00b10c2010-09-24 21:15:47 +01003234
Daniel Vetter49987092013-08-14 10:21:23 +02003235 fenceable = (vma->node.size == fence_size &&
3236 (vma->node.start & (fence_alignment - 1)) == 0);
Chris Wilsona00b10c2010-09-24 21:15:47 +01003237
Daniel Vetter49987092013-08-14 10:21:23 +02003238 mappable = (vma->node.start + obj->base.size <=
3239 dev_priv->gtt.mappable_end);
Ben Widawsky4bd561b2013-08-13 18:09:07 -07003240
Ben Widawsky5cacaac2013-07-31 17:00:13 -07003241 obj->map_and_fenceable = mappable && fenceable;
Ben Widawsky4bd561b2013-08-13 18:09:07 -07003242 }
Daniel Vetter75e9e912010-11-04 17:11:09 +01003243
Ben Widawsky7ace7ef2013-08-09 22:12:12 -07003244 WARN_ON(map_and_fenceable && !obj->map_and_fenceable);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003245
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003246 trace_i915_vma_bind(vma, map_and_fenceable);
Chris Wilson42d6ab42012-07-26 11:49:32 +01003247 i915_gem_verify_gtt(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07003248 return 0;
Ben Widawsky2f633152013-07-17 12:19:03 -07003249
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003250err_remove_node:
Dan Carpenter6286ef92013-07-19 08:46:27 +03003251 drm_mm_remove_node(&vma->node);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003252err_free_vma:
Ben Widawsky2f633152013-07-17 12:19:03 -07003253 i915_gem_vma_destroy(vma);
Daniel Vetterbc6bc152013-07-22 12:12:38 +02003254err_unpin:
Ben Widawsky2f633152013-07-17 12:19:03 -07003255 i915_gem_object_unpin_pages(obj);
Ben Widawsky2f633152013-07-17 12:19:03 -07003256 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003257}
3258
Chris Wilson000433b2013-08-08 14:41:09 +01003259bool
Chris Wilson2c225692013-08-09 12:26:45 +01003260i915_gem_clflush_object(struct drm_i915_gem_object *obj,
3261 bool force)
Eric Anholt673a3942008-07-30 12:06:12 -07003262{
Eric Anholt673a3942008-07-30 12:06:12 -07003263 /* If we don't have a page list set up, then we're not pinned
3264 * to GPU, and we can ignore the cache flush because it'll happen
3265 * again at bind time.
3266 */
Chris Wilson05394f32010-11-08 19:18:58 +00003267 if (obj->pages == NULL)
Chris Wilson000433b2013-08-08 14:41:09 +01003268 return false;
Eric Anholt673a3942008-07-30 12:06:12 -07003269
Imre Deak769ce462013-02-13 21:56:05 +02003270 /*
3271 * Stolen memory is always coherent with the GPU as it is explicitly
3272 * marked as wc by the system, or the system is cache-coherent.
3273 */
3274 if (obj->stolen)
Chris Wilson000433b2013-08-08 14:41:09 +01003275 return false;
Imre Deak769ce462013-02-13 21:56:05 +02003276
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003277 /* If the GPU is snooping the contents of the CPU cache,
3278 * we do not need to manually clear the CPU cache lines. However,
3279 * the caches are only snooped when the render cache is
3280 * flushed/invalidated. As we always have to emit invalidations
3281 * and flushes when moving into and out of the RENDER domain, correct
3282 * snooping behaviour occurs naturally as the result of our domain
3283 * tracking.
3284 */
Chris Wilson2c225692013-08-09 12:26:45 +01003285 if (!force && cpu_cache_is_coherent(obj->base.dev, obj->cache_level))
Chris Wilson000433b2013-08-08 14:41:09 +01003286 return false;
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003287
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003288 trace_i915_gem_object_clflush(obj);
Chris Wilson9da3da62012-06-01 15:20:22 +01003289 drm_clflush_sg(obj->pages);
Chris Wilson000433b2013-08-08 14:41:09 +01003290
3291 return true;
Eric Anholte47c68e2008-11-14 13:35:19 -08003292}
3293
3294/** Flushes the GTT write domain for the object if it's dirty. */
3295static void
Chris Wilson05394f32010-11-08 19:18:58 +00003296i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003297{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003298 uint32_t old_write_domain;
3299
Chris Wilson05394f32010-11-08 19:18:58 +00003300 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08003301 return;
3302
Chris Wilson63256ec2011-01-04 18:42:07 +00003303 /* No actual flushing is required for the GTT write domain. Writes
Eric Anholte47c68e2008-11-14 13:35:19 -08003304 * to it immediately go to main memory as far as we know, so there's
3305 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00003306 *
3307 * However, we do have to enforce the order so that all writes through
3308 * the GTT land before any writes to the device, such as updates to
3309 * the GATT itself.
Eric Anholte47c68e2008-11-14 13:35:19 -08003310 */
Chris Wilson63256ec2011-01-04 18:42:07 +00003311 wmb();
3312
Chris Wilson05394f32010-11-08 19:18:58 +00003313 old_write_domain = obj->base.write_domain;
3314 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003315
3316 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003317 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003318 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003319}
3320
3321/** Flushes the CPU write domain for the object if it's dirty. */
3322static void
Chris Wilson2c225692013-08-09 12:26:45 +01003323i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj,
3324 bool force)
Eric Anholte47c68e2008-11-14 13:35:19 -08003325{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003326 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08003327
Chris Wilson05394f32010-11-08 19:18:58 +00003328 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08003329 return;
3330
Chris Wilson000433b2013-08-08 14:41:09 +01003331 if (i915_gem_clflush_object(obj, force))
3332 i915_gem_chipset_flush(obj->base.dev);
3333
Chris Wilson05394f32010-11-08 19:18:58 +00003334 old_write_domain = obj->base.write_domain;
3335 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003336
3337 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003338 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003339 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003340}
3341
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003342/**
3343 * Moves a single object to the GTT read, and possibly write domain.
3344 *
3345 * This function returns when the move is complete, including waiting on
3346 * flushes to occur.
3347 */
Jesse Barnes79e53942008-11-07 14:24:08 -08003348int
Chris Wilson20217462010-11-23 15:26:33 +00003349i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003350{
Chris Wilson8325a092012-04-24 15:52:35 +01003351 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003352 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003353 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003354
Eric Anholt02354392008-11-26 13:58:13 -08003355 /* Not valid to be called on unbound objects. */
Ben Widawsky98438772013-07-31 17:00:12 -07003356 if (!i915_gem_obj_bound_any(obj))
Eric Anholt02354392008-11-26 13:58:13 -08003357 return -EINVAL;
3358
Chris Wilson8d7e3de2011-02-07 15:23:02 +00003359 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
3360 return 0;
3361
Chris Wilson0201f1e2012-07-20 12:41:01 +01003362 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00003363 if (ret)
3364 return ret;
3365
Chris Wilson2c225692013-08-09 12:26:45 +01003366 i915_gem_object_flush_cpu_write_domain(obj, false);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003367
Chris Wilsond0a57782012-10-09 19:24:37 +01003368 /* Serialise direct access to this object with the barriers for
3369 * coherent writes from the GPU, by effectively invalidating the
3370 * GTT domain upon first access.
3371 */
3372 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
3373 mb();
3374
Chris Wilson05394f32010-11-08 19:18:58 +00003375 old_write_domain = obj->base.write_domain;
3376 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003377
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003378 /* It should now be out of any other write domains, and we can update
3379 * the domain values for our changes.
3380 */
Chris Wilson05394f32010-11-08 19:18:58 +00003381 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
3382 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08003383 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003384 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
3385 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
3386 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08003387 }
3388
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003389 trace_i915_gem_object_change_domain(obj,
3390 old_read_domains,
3391 old_write_domain);
3392
Chris Wilson8325a092012-04-24 15:52:35 +01003393 /* And bump the LRU for this access */
Ben Widawskyca191b12013-07-31 17:00:14 -07003394 if (i915_gem_object_is_inactive(obj)) {
3395 struct i915_vma *vma = i915_gem_obj_to_vma(obj,
3396 &dev_priv->gtt.base);
3397 if (vma)
3398 list_move_tail(&vma->mm_list,
3399 &dev_priv->gtt.base.inactive_list);
3400
3401 }
Chris Wilson8325a092012-04-24 15:52:35 +01003402
Eric Anholte47c68e2008-11-14 13:35:19 -08003403 return 0;
3404}
3405
Chris Wilsone4ffd172011-04-04 09:44:39 +01003406int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
3407 enum i915_cache_level cache_level)
3408{
Daniel Vetter7bddb012012-02-09 17:15:47 +01003409 struct drm_device *dev = obj->base.dev;
3410 drm_i915_private_t *dev_priv = dev->dev_private;
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003411 struct i915_vma *vma;
Chris Wilsone4ffd172011-04-04 09:44:39 +01003412 int ret;
3413
3414 if (obj->cache_level == cache_level)
3415 return 0;
3416
3417 if (obj->pin_count) {
3418 DRM_DEBUG("can not change the cache level of pinned objects\n");
3419 return -EBUSY;
3420 }
3421
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003422 list_for_each_entry(vma, &obj->vma_list, vma_link) {
3423 if (!i915_gem_valid_gtt_space(dev, &vma->node, cache_level)) {
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003424 ret = i915_vma_unbind(vma);
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003425 if (ret)
3426 return ret;
3427
3428 break;
3429 }
Chris Wilson42d6ab42012-07-26 11:49:32 +01003430 }
3431
Ben Widawsky3089c6f2013-07-31 17:00:03 -07003432 if (i915_gem_obj_bound_any(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003433 ret = i915_gem_object_finish_gpu(obj);
3434 if (ret)
3435 return ret;
3436
3437 i915_gem_object_finish_gtt(obj);
3438
3439 /* Before SandyBridge, you could not use tiling or fence
3440 * registers with snooped memory, so relinquish any fences
3441 * currently pointing to our region in the aperture.
3442 */
Chris Wilson42d6ab42012-07-26 11:49:32 +01003443 if (INTEL_INFO(dev)->gen < 6) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003444 ret = i915_gem_object_put_fence(obj);
3445 if (ret)
3446 return ret;
3447 }
3448
Daniel Vetter74898d72012-02-15 23:50:22 +01003449 if (obj->has_global_gtt_mapping)
3450 i915_gem_gtt_bind_object(obj, cache_level);
Daniel Vetter7bddb012012-02-09 17:15:47 +01003451 if (obj->has_aliasing_ppgtt_mapping)
3452 i915_ppgtt_bind_object(dev_priv->mm.aliasing_ppgtt,
3453 obj, cache_level);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003454 }
3455
Chris Wilson2c225692013-08-09 12:26:45 +01003456 list_for_each_entry(vma, &obj->vma_list, vma_link)
3457 vma->node.color = cache_level;
3458 obj->cache_level = cache_level;
3459
3460 if (cpu_write_needs_clflush(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003461 u32 old_read_domains, old_write_domain;
3462
3463 /* If we're coming from LLC cached, then we haven't
3464 * actually been tracking whether the data is in the
3465 * CPU cache or not, since we only allow one bit set
3466 * in obj->write_domain and have been skipping the clflushes.
3467 * Just set it to the CPU cache for now.
3468 */
3469 WARN_ON(obj->base.write_domain & ~I915_GEM_DOMAIN_CPU);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003470
3471 old_read_domains = obj->base.read_domains;
3472 old_write_domain = obj->base.write_domain;
3473
3474 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3475 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3476
3477 trace_i915_gem_object_change_domain(obj,
3478 old_read_domains,
3479 old_write_domain);
3480 }
3481
Chris Wilson42d6ab42012-07-26 11:49:32 +01003482 i915_gem_verify_gtt(dev);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003483 return 0;
3484}
3485
Ben Widawsky199adf42012-09-21 17:01:20 -07003486int i915_gem_get_caching_ioctl(struct drm_device *dev, void *data,
3487 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003488{
Ben Widawsky199adf42012-09-21 17:01:20 -07003489 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003490 struct drm_i915_gem_object *obj;
3491 int ret;
3492
3493 ret = i915_mutex_lock_interruptible(dev);
3494 if (ret)
3495 return ret;
3496
3497 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3498 if (&obj->base == NULL) {
3499 ret = -ENOENT;
3500 goto unlock;
3501 }
3502
Chris Wilson651d7942013-08-08 14:41:10 +01003503 switch (obj->cache_level) {
3504 case I915_CACHE_LLC:
3505 case I915_CACHE_L3_LLC:
3506 args->caching = I915_CACHING_CACHED;
3507 break;
3508
Chris Wilson4257d3b2013-08-08 14:41:11 +01003509 case I915_CACHE_WT:
3510 args->caching = I915_CACHING_DISPLAY;
3511 break;
3512
Chris Wilson651d7942013-08-08 14:41:10 +01003513 default:
3514 args->caching = I915_CACHING_NONE;
3515 break;
3516 }
Chris Wilsone6994ae2012-07-10 10:27:08 +01003517
3518 drm_gem_object_unreference(&obj->base);
3519unlock:
3520 mutex_unlock(&dev->struct_mutex);
3521 return ret;
3522}
3523
Ben Widawsky199adf42012-09-21 17:01:20 -07003524int i915_gem_set_caching_ioctl(struct drm_device *dev, void *data,
3525 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003526{
Ben Widawsky199adf42012-09-21 17:01:20 -07003527 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003528 struct drm_i915_gem_object *obj;
3529 enum i915_cache_level level;
3530 int ret;
3531
Ben Widawsky199adf42012-09-21 17:01:20 -07003532 switch (args->caching) {
3533 case I915_CACHING_NONE:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003534 level = I915_CACHE_NONE;
3535 break;
Ben Widawsky199adf42012-09-21 17:01:20 -07003536 case I915_CACHING_CACHED:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003537 level = I915_CACHE_LLC;
3538 break;
Chris Wilson4257d3b2013-08-08 14:41:11 +01003539 case I915_CACHING_DISPLAY:
3540 level = HAS_WT(dev) ? I915_CACHE_WT : I915_CACHE_NONE;
3541 break;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003542 default:
3543 return -EINVAL;
3544 }
3545
Ben Widawsky3bc29132012-09-26 16:15:20 -07003546 ret = i915_mutex_lock_interruptible(dev);
3547 if (ret)
3548 return ret;
3549
Chris Wilsone6994ae2012-07-10 10:27:08 +01003550 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3551 if (&obj->base == NULL) {
3552 ret = -ENOENT;
3553 goto unlock;
3554 }
3555
3556 ret = i915_gem_object_set_cache_level(obj, level);
3557
3558 drm_gem_object_unreference(&obj->base);
3559unlock:
3560 mutex_unlock(&dev->struct_mutex);
3561 return ret;
3562}
3563
Chris Wilsoncc98b412013-08-09 12:25:09 +01003564static bool is_pin_display(struct drm_i915_gem_object *obj)
3565{
3566 /* There are 3 sources that pin objects:
3567 * 1. The display engine (scanouts, sprites, cursors);
3568 * 2. Reservations for execbuffer;
3569 * 3. The user.
3570 *
3571 * We can ignore reservations as we hold the struct_mutex and
3572 * are only called outside of the reservation path. The user
3573 * can only increment pin_count once, and so if after
3574 * subtracting the potential reference by the user, any pin_count
3575 * remains, it must be due to another use by the display engine.
3576 */
3577 return obj->pin_count - !!obj->user_pin_count;
3578}
3579
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003580/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003581 * Prepare buffer for display plane (scanout, cursors, etc).
3582 * Can be called from an uninterruptible phase (modesetting) and allows
3583 * any flushes to be pipelined (for pageflips).
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003584 */
3585int
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003586i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
3587 u32 alignment,
Chris Wilson919926a2010-11-12 13:42:53 +00003588 struct intel_ring_buffer *pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003589{
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003590 u32 old_read_domains, old_write_domain;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003591 int ret;
3592
Chris Wilson0be73282010-12-06 14:36:27 +00003593 if (pipelined != obj->ring) {
Ben Widawsky2911a352012-04-05 14:47:36 -07003594 ret = i915_gem_object_sync(obj, pipelined);
3595 if (ret)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003596 return ret;
3597 }
3598
Chris Wilsoncc98b412013-08-09 12:25:09 +01003599 /* Mark the pin_display early so that we account for the
3600 * display coherency whilst setting up the cache domains.
3601 */
3602 obj->pin_display = true;
3603
Eric Anholta7ef0642011-03-29 16:59:54 -07003604 /* The display engine is not coherent with the LLC cache on gen6. As
3605 * a result, we make sure that the pinning that is about to occur is
3606 * done with uncached PTEs. This is lowest common denominator for all
3607 * chipsets.
3608 *
3609 * However for gen6+, we could do better by using the GFDT bit instead
3610 * of uncaching, which would allow us to flush all the LLC-cached data
3611 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
3612 */
Chris Wilson651d7942013-08-08 14:41:10 +01003613 ret = i915_gem_object_set_cache_level(obj,
3614 HAS_WT(obj->base.dev) ? I915_CACHE_WT : I915_CACHE_NONE);
Eric Anholta7ef0642011-03-29 16:59:54 -07003615 if (ret)
Chris Wilsoncc98b412013-08-09 12:25:09 +01003616 goto err_unpin_display;
Eric Anholta7ef0642011-03-29 16:59:54 -07003617
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003618 /* As the user may map the buffer once pinned in the display plane
3619 * (e.g. libkms for the bootup splash), we have to ensure that we
3620 * always use map_and_fenceable for all scanout buffers.
3621 */
Ben Widawskyc37e2202013-07-31 16:59:58 -07003622 ret = i915_gem_obj_ggtt_pin(obj, alignment, true, false);
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003623 if (ret)
Chris Wilsoncc98b412013-08-09 12:25:09 +01003624 goto err_unpin_display;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003625
Chris Wilson2c225692013-08-09 12:26:45 +01003626 i915_gem_object_flush_cpu_write_domain(obj, true);
Chris Wilsonb118c1e2010-05-27 13:18:14 +01003627
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003628 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00003629 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003630
3631 /* It should now be out of any other write domains, and we can update
3632 * the domain values for our changes.
3633 */
Chris Wilsone5f1d962012-07-20 12:41:00 +01003634 obj->base.write_domain = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00003635 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003636
3637 trace_i915_gem_object_change_domain(obj,
3638 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003639 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003640
3641 return 0;
Chris Wilsoncc98b412013-08-09 12:25:09 +01003642
3643err_unpin_display:
3644 obj->pin_display = is_pin_display(obj);
3645 return ret;
3646}
3647
3648void
3649i915_gem_object_unpin_from_display_plane(struct drm_i915_gem_object *obj)
3650{
3651 i915_gem_object_unpin(obj);
3652 obj->pin_display = is_pin_display(obj);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003653}
3654
Chris Wilson85345512010-11-13 09:49:11 +00003655int
Chris Wilsona8198ee2011-04-13 22:04:09 +01003656i915_gem_object_finish_gpu(struct drm_i915_gem_object *obj)
Chris Wilson85345512010-11-13 09:49:11 +00003657{
Chris Wilson88241782011-01-07 17:09:48 +00003658 int ret;
3659
Chris Wilsona8198ee2011-04-13 22:04:09 +01003660 if ((obj->base.read_domains & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson85345512010-11-13 09:49:11 +00003661 return 0;
3662
Chris Wilson0201f1e2012-07-20 12:41:01 +01003663 ret = i915_gem_object_wait_rendering(obj, false);
Chris Wilsonc501ae72011-12-14 13:57:23 +01003664 if (ret)
3665 return ret;
3666
Chris Wilsona8198ee2011-04-13 22:04:09 +01003667 /* Ensure that we invalidate the GPU's caches and TLBs. */
3668 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilsonc501ae72011-12-14 13:57:23 +01003669 return 0;
Chris Wilson85345512010-11-13 09:49:11 +00003670}
3671
Eric Anholte47c68e2008-11-14 13:35:19 -08003672/**
3673 * Moves a single object to the CPU read, and possibly write domain.
3674 *
3675 * This function returns when the move is complete, including waiting on
3676 * flushes to occur.
3677 */
Chris Wilsondabdfe02012-03-26 10:10:27 +02003678int
Chris Wilson919926a2010-11-12 13:42:53 +00003679i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08003680{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003681 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003682 int ret;
3683
Chris Wilson8d7e3de2011-02-07 15:23:02 +00003684 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
3685 return 0;
3686
Chris Wilson0201f1e2012-07-20 12:41:01 +01003687 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00003688 if (ret)
3689 return ret;
3690
Eric Anholte47c68e2008-11-14 13:35:19 -08003691 i915_gem_object_flush_gtt_write_domain(obj);
3692
Chris Wilson05394f32010-11-08 19:18:58 +00003693 old_write_domain = obj->base.write_domain;
3694 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003695
Eric Anholte47c68e2008-11-14 13:35:19 -08003696 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00003697 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Chris Wilson2c225692013-08-09 12:26:45 +01003698 i915_gem_clflush_object(obj, false);
Eric Anholte47c68e2008-11-14 13:35:19 -08003699
Chris Wilson05394f32010-11-08 19:18:58 +00003700 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003701 }
3702
3703 /* It should now be out of any other write domains, and we can update
3704 * the domain values for our changes.
3705 */
Chris Wilson05394f32010-11-08 19:18:58 +00003706 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08003707
3708 /* If we're writing through the CPU, then the GPU read domains will
3709 * need to be invalidated at next use.
3710 */
3711 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003712 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3713 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003714 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003715
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003716 trace_i915_gem_object_change_domain(obj,
3717 old_read_domains,
3718 old_write_domain);
3719
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003720 return 0;
3721}
3722
Eric Anholt673a3942008-07-30 12:06:12 -07003723/* Throttle our rendering by waiting until the ring has completed our requests
3724 * emitted over 20 msec ago.
3725 *
Eric Anholtb9624422009-06-03 07:27:35 +00003726 * Note that if we were to use the current jiffies each time around the loop,
3727 * we wouldn't escape the function with any frames outstanding if the time to
3728 * render a frame was over 20ms.
3729 *
Eric Anholt673a3942008-07-30 12:06:12 -07003730 * This should get us reasonable parallelism between CPU and GPU but also
3731 * relatively low latency when blocking on a particular request to finish.
3732 */
3733static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003734i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003735{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003736 struct drm_i915_private *dev_priv = dev->dev_private;
3737 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00003738 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003739 struct drm_i915_gem_request *request;
3740 struct intel_ring_buffer *ring = NULL;
Daniel Vetterf69061b2012-12-06 09:01:42 +01003741 unsigned reset_counter;
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003742 u32 seqno = 0;
3743 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003744
Daniel Vetter308887a2012-11-14 17:14:06 +01003745 ret = i915_gem_wait_for_error(&dev_priv->gpu_error);
3746 if (ret)
3747 return ret;
3748
3749 ret = i915_gem_check_wedge(&dev_priv->gpu_error, false);
3750 if (ret)
3751 return ret;
Chris Wilsone110e8d2011-01-26 15:39:14 +00003752
Chris Wilson1c255952010-09-26 11:03:27 +01003753 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003754 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00003755 if (time_after_eq(request->emitted_jiffies, recent_enough))
3756 break;
3757
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003758 ring = request->ring;
3759 seqno = request->seqno;
Eric Anholtb9624422009-06-03 07:27:35 +00003760 }
Daniel Vetterf69061b2012-12-06 09:01:42 +01003761 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilson1c255952010-09-26 11:03:27 +01003762 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003763
3764 if (seqno == 0)
3765 return 0;
3766
Daniel Vetterf69061b2012-12-06 09:01:42 +01003767 ret = __wait_seqno(ring, seqno, reset_counter, true, NULL);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003768 if (ret == 0)
3769 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00003770
Eric Anholt673a3942008-07-30 12:06:12 -07003771 return ret;
3772}
3773
Eric Anholt673a3942008-07-30 12:06:12 -07003774int
Chris Wilson05394f32010-11-08 19:18:58 +00003775i915_gem_object_pin(struct drm_i915_gem_object *obj,
Ben Widawskyc37e2202013-07-31 16:59:58 -07003776 struct i915_address_space *vm,
Chris Wilson05394f32010-11-08 19:18:58 +00003777 uint32_t alignment,
Chris Wilson86a1ee22012-08-11 15:41:04 +01003778 bool map_and_fenceable,
3779 bool nonblocking)
Eric Anholt673a3942008-07-30 12:06:12 -07003780{
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003781 struct i915_vma *vma;
Eric Anholt673a3942008-07-30 12:06:12 -07003782 int ret;
3783
Chris Wilson7e81a422012-09-15 09:41:57 +01003784 if (WARN_ON(obj->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT))
3785 return -EBUSY;
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003786
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003787 WARN_ON(map_and_fenceable && !i915_is_ggtt(vm));
3788
3789 vma = i915_gem_obj_to_vma(obj, vm);
3790
3791 if (vma) {
3792 if ((alignment &&
3793 vma->node.start & (alignment - 1)) ||
Chris Wilson05394f32010-11-08 19:18:58 +00003794 (map_and_fenceable && !obj->map_and_fenceable)) {
3795 WARN(obj->pin_count,
Chris Wilsonae7d49d2010-08-04 12:37:41 +01003796 "bo is already pinned with incorrect alignment:"
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003797 " offset=%lx, req.alignment=%x, req.map_and_fenceable=%d,"
Daniel Vetter75e9e912010-11-04 17:11:09 +01003798 " obj->map_and_fenceable=%d\n",
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003799 i915_gem_obj_offset(obj, vm), alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003800 map_and_fenceable,
Chris Wilson05394f32010-11-08 19:18:58 +00003801 obj->map_and_fenceable);
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003802 ret = i915_vma_unbind(vma);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003803 if (ret)
3804 return ret;
3805 }
3806 }
3807
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003808 if (!i915_gem_obj_bound(obj, vm)) {
Chris Wilson87422672012-11-21 13:04:03 +00003809 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
3810
Ben Widawsky07fe0b12013-07-31 17:00:10 -07003811 ret = i915_gem_object_bind_to_vm(obj, vm, alignment,
3812 map_and_fenceable,
3813 nonblocking);
Chris Wilson97311292009-09-21 00:22:34 +01003814 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07003815 return ret;
Chris Wilson87422672012-11-21 13:04:03 +00003816
3817 if (!dev_priv->mm.aliasing_ppgtt)
3818 i915_gem_gtt_bind_object(obj, obj->cache_level);
Chris Wilson22c344e2009-02-11 14:26:45 +00003819 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05003820
Daniel Vetter74898d72012-02-15 23:50:22 +01003821 if (!obj->has_global_gtt_mapping && map_and_fenceable)
3822 i915_gem_gtt_bind_object(obj, obj->cache_level);
3823
Chris Wilson1b502472012-04-24 15:47:30 +01003824 obj->pin_count++;
Chris Wilson6299f992010-11-24 12:23:44 +00003825 obj->pin_mappable |= map_and_fenceable;
Eric Anholt673a3942008-07-30 12:06:12 -07003826
3827 return 0;
3828}
3829
3830void
Chris Wilson05394f32010-11-08 19:18:58 +00003831i915_gem_object_unpin(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003832{
Chris Wilson05394f32010-11-08 19:18:58 +00003833 BUG_ON(obj->pin_count == 0);
Ben Widawsky98438772013-07-31 17:00:12 -07003834 BUG_ON(!i915_gem_obj_bound_any(obj));
Eric Anholt673a3942008-07-30 12:06:12 -07003835
Chris Wilson1b502472012-04-24 15:47:30 +01003836 if (--obj->pin_count == 0)
Chris Wilson6299f992010-11-24 12:23:44 +00003837 obj->pin_mappable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07003838}
3839
3840int
3841i915_gem_pin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003842 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003843{
3844 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003845 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07003846 int ret;
3847
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003848 ret = i915_mutex_lock_interruptible(dev);
3849 if (ret)
3850 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003851
Chris Wilson05394f32010-11-08 19:18:58 +00003852 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003853 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003854 ret = -ENOENT;
3855 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003856 }
Eric Anholt673a3942008-07-30 12:06:12 -07003857
Chris Wilson05394f32010-11-08 19:18:58 +00003858 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003859 DRM_ERROR("Attempting to pin a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003860 ret = -EINVAL;
3861 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003862 }
3863
Chris Wilson05394f32010-11-08 19:18:58 +00003864 if (obj->pin_filp != NULL && obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003865 DRM_ERROR("Already pinned in i915_gem_pin_ioctl(): %d\n",
3866 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003867 ret = -EINVAL;
3868 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003869 }
3870
Chris Wilson93be8782013-01-02 10:31:22 +00003871 if (obj->user_pin_count == 0) {
Ben Widawskyc37e2202013-07-31 16:59:58 -07003872 ret = i915_gem_obj_ggtt_pin(obj, args->alignment, true, false);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003873 if (ret)
3874 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07003875 }
3876
Chris Wilson93be8782013-01-02 10:31:22 +00003877 obj->user_pin_count++;
3878 obj->pin_filp = file;
3879
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003880 args->offset = i915_gem_obj_ggtt_offset(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003881out:
Chris Wilson05394f32010-11-08 19:18:58 +00003882 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003883unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003884 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003885 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003886}
3887
3888int
3889i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003890 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003891{
3892 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003893 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003894 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003895
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003896 ret = i915_mutex_lock_interruptible(dev);
3897 if (ret)
3898 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003899
Chris Wilson05394f32010-11-08 19:18:58 +00003900 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003901 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003902 ret = -ENOENT;
3903 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003904 }
Chris Wilson76c1dec2010-09-25 11:22:51 +01003905
Chris Wilson05394f32010-11-08 19:18:58 +00003906 if (obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003907 DRM_ERROR("Not pinned by caller in i915_gem_pin_ioctl(): %d\n",
3908 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003909 ret = -EINVAL;
3910 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003911 }
Chris Wilson05394f32010-11-08 19:18:58 +00003912 obj->user_pin_count--;
3913 if (obj->user_pin_count == 0) {
3914 obj->pin_filp = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08003915 i915_gem_object_unpin(obj);
3916 }
Eric Anholt673a3942008-07-30 12:06:12 -07003917
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003918out:
Chris Wilson05394f32010-11-08 19:18:58 +00003919 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003920unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003921 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003922 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003923}
3924
3925int
3926i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003927 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003928{
3929 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003930 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003931 int ret;
3932
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003933 ret = i915_mutex_lock_interruptible(dev);
3934 if (ret)
3935 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003936
Chris Wilson05394f32010-11-08 19:18:58 +00003937 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003938 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003939 ret = -ENOENT;
3940 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003941 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003942
Chris Wilson0be555b2010-08-04 15:36:30 +01003943 /* Count all active objects as busy, even if they are currently not used
3944 * by the gpu. Users of this interface expect objects to eventually
3945 * become non-busy without any further actions, therefore emit any
3946 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08003947 */
Daniel Vetter30dfebf2012-06-01 15:21:23 +02003948 ret = i915_gem_object_flush_active(obj);
3949
Chris Wilson05394f32010-11-08 19:18:58 +00003950 args->busy = obj->active;
Chris Wilsone9808ed2012-07-04 12:25:08 +01003951 if (obj->ring) {
3952 BUILD_BUG_ON(I915_NUM_RINGS > 16);
3953 args->busy |= intel_ring_flag(obj->ring) << 16;
3954 }
Eric Anholt673a3942008-07-30 12:06:12 -07003955
Chris Wilson05394f32010-11-08 19:18:58 +00003956 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003957unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003958 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003959 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003960}
3961
3962int
3963i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
3964 struct drm_file *file_priv)
3965{
Akshay Joshi0206e352011-08-16 15:34:10 -04003966 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07003967}
3968
Chris Wilson3ef94da2009-09-14 16:50:29 +01003969int
3970i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
3971 struct drm_file *file_priv)
3972{
3973 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003974 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003975 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003976
3977 switch (args->madv) {
3978 case I915_MADV_DONTNEED:
3979 case I915_MADV_WILLNEED:
3980 break;
3981 default:
3982 return -EINVAL;
3983 }
3984
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003985 ret = i915_mutex_lock_interruptible(dev);
3986 if (ret)
3987 return ret;
3988
Chris Wilson05394f32010-11-08 19:18:58 +00003989 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003990 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003991 ret = -ENOENT;
3992 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003993 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01003994
Chris Wilson05394f32010-11-08 19:18:58 +00003995 if (obj->pin_count) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003996 ret = -EINVAL;
3997 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003998 }
3999
Chris Wilson05394f32010-11-08 19:18:58 +00004000 if (obj->madv != __I915_MADV_PURGED)
4001 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004002
Chris Wilson6c085a72012-08-20 11:40:46 +02004003 /* if the object is no longer attached, discard its backing storage */
4004 if (i915_gem_object_is_purgeable(obj) && obj->pages == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01004005 i915_gem_object_truncate(obj);
4006
Chris Wilson05394f32010-11-08 19:18:58 +00004007 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01004008
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004009out:
Chris Wilson05394f32010-11-08 19:18:58 +00004010 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004011unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01004012 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01004013 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01004014}
4015
Chris Wilson37e680a2012-06-07 15:38:42 +01004016void i915_gem_object_init(struct drm_i915_gem_object *obj,
4017 const struct drm_i915_gem_object_ops *ops)
Chris Wilson0327d6b2012-08-11 15:41:06 +01004018{
Ben Widawsky35c20a62013-05-31 11:28:48 -07004019 INIT_LIST_HEAD(&obj->global_list);
Chris Wilson0327d6b2012-08-11 15:41:06 +01004020 INIT_LIST_HEAD(&obj->ring_list);
4021 INIT_LIST_HEAD(&obj->exec_list);
Ben Widawskyb25cb2f2013-08-14 11:38:33 +02004022 INIT_LIST_HEAD(&obj->obj_exec_link);
Ben Widawsky2f633152013-07-17 12:19:03 -07004023 INIT_LIST_HEAD(&obj->vma_list);
Chris Wilson0327d6b2012-08-11 15:41:06 +01004024
Chris Wilson37e680a2012-06-07 15:38:42 +01004025 obj->ops = ops;
4026
Chris Wilson0327d6b2012-08-11 15:41:06 +01004027 obj->fence_reg = I915_FENCE_REG_NONE;
4028 obj->madv = I915_MADV_WILLNEED;
4029 /* Avoid an unnecessary call to unbind on the first bind. */
4030 obj->map_and_fenceable = true;
4031
4032 i915_gem_info_add_obj(obj->base.dev->dev_private, obj->base.size);
4033}
4034
Chris Wilson37e680a2012-06-07 15:38:42 +01004035static const struct drm_i915_gem_object_ops i915_gem_object_ops = {
4036 .get_pages = i915_gem_object_get_pages_gtt,
4037 .put_pages = i915_gem_object_put_pages_gtt,
4038};
4039
Chris Wilson05394f32010-11-08 19:18:58 +00004040struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
4041 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00004042{
Daniel Vetterc397b902010-04-09 19:05:07 +00004043 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07004044 struct address_space *mapping;
Daniel Vetter1a240d42012-11-29 22:18:51 +01004045 gfp_t mask;
Daniel Vetterc397b902010-04-09 19:05:07 +00004046
Chris Wilson42dcedd2012-11-15 11:32:30 +00004047 obj = i915_gem_object_alloc(dev);
Daniel Vetterc397b902010-04-09 19:05:07 +00004048 if (obj == NULL)
4049 return NULL;
4050
4051 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
Chris Wilson42dcedd2012-11-15 11:32:30 +00004052 i915_gem_object_free(obj);
Daniel Vetterc397b902010-04-09 19:05:07 +00004053 return NULL;
4054 }
4055
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004056 mask = GFP_HIGHUSER | __GFP_RECLAIMABLE;
4057 if (IS_CRESTLINE(dev) || IS_BROADWATER(dev)) {
4058 /* 965gm cannot relocate objects above 4GiB. */
4059 mask &= ~__GFP_HIGHMEM;
4060 mask |= __GFP_DMA32;
4061 }
4062
Al Viro496ad9a2013-01-23 17:07:38 -05004063 mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilsonbed1ea92012-05-24 20:48:12 +01004064 mapping_set_gfp_mask(mapping, mask);
Hugh Dickins5949eac2011-06-27 16:18:18 -07004065
Chris Wilson37e680a2012-06-07 15:38:42 +01004066 i915_gem_object_init(obj, &i915_gem_object_ops);
Chris Wilson73aa8082010-09-30 11:46:12 +01004067
Daniel Vetterc397b902010-04-09 19:05:07 +00004068 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
4069 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
4070
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02004071 if (HAS_LLC(dev)) {
4072 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07004073 * cache) for about a 10% performance improvement
4074 * compared to uncached. Graphics requests other than
4075 * display scanout are coherent with the CPU in
4076 * accessing this cache. This means in this mode we
4077 * don't need to clflush on the CPU side, and on the
4078 * GPU side we only need to flush internal caches to
4079 * get data visible to the CPU.
4080 *
4081 * However, we maintain the display planes as UC, and so
4082 * need to rebind when first used as such.
4083 */
4084 obj->cache_level = I915_CACHE_LLC;
4085 } else
4086 obj->cache_level = I915_CACHE_NONE;
4087
Daniel Vetterd861e332013-07-24 23:25:03 +02004088 trace_i915_gem_object_create(obj);
4089
Chris Wilson05394f32010-11-08 19:18:58 +00004090 return obj;
Daniel Vetterac52bc52010-04-09 19:05:06 +00004091}
4092
Eric Anholt673a3942008-07-30 12:06:12 -07004093int i915_gem_init_object(struct drm_gem_object *obj)
4094{
Daniel Vetterc397b902010-04-09 19:05:07 +00004095 BUG();
Jesse Barnesde151cf2008-11-12 10:03:55 -08004096
Eric Anholt673a3942008-07-30 12:06:12 -07004097 return 0;
4098}
4099
Chris Wilson1488fc02012-04-24 15:47:31 +01004100void i915_gem_free_object(struct drm_gem_object *gem_obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01004101{
Chris Wilson1488fc02012-04-24 15:47:31 +01004102 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00004103 struct drm_device *dev = obj->base.dev;
Chris Wilsonbe726152010-07-23 23:18:50 +01004104 drm_i915_private_t *dev_priv = dev->dev_private;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004105 struct i915_vma *vma, *next;
Chris Wilsonbe726152010-07-23 23:18:50 +01004106
Chris Wilson26e12f892011-03-20 11:20:19 +00004107 trace_i915_gem_object_destroy(obj);
4108
Chris Wilson1488fc02012-04-24 15:47:31 +01004109 if (obj->phys_obj)
4110 i915_gem_detach_phys_object(dev, obj);
4111
4112 obj->pin_count = 0;
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004113 /* NB: 0 or 1 elements */
4114 WARN_ON(!list_empty(&obj->vma_list) &&
4115 !list_is_singular(&obj->vma_list));
4116 list_for_each_entry_safe(vma, next, &obj->vma_list, vma_link) {
4117 int ret = i915_vma_unbind(vma);
4118 if (WARN_ON(ret == -ERESTARTSYS)) {
4119 bool was_interruptible;
Chris Wilson1488fc02012-04-24 15:47:31 +01004120
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004121 was_interruptible = dev_priv->mm.interruptible;
4122 dev_priv->mm.interruptible = false;
Chris Wilson1488fc02012-04-24 15:47:31 +01004123
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004124 WARN_ON(i915_vma_unbind(vma));
Chris Wilson1488fc02012-04-24 15:47:31 +01004125
Ben Widawsky07fe0b12013-07-31 17:00:10 -07004126 dev_priv->mm.interruptible = was_interruptible;
4127 }
Chris Wilson1488fc02012-04-24 15:47:31 +01004128 }
4129
Ben Widawsky1d64ae72013-05-31 14:46:20 -07004130 /* Stolen objects don't hold a ref, but do hold pin count. Fix that up
4131 * before progressing. */
4132 if (obj->stolen)
4133 i915_gem_object_unpin_pages(obj);
4134
Ben Widawsky401c29f2013-05-31 11:28:47 -07004135 if (WARN_ON(obj->pages_pin_count))
4136 obj->pages_pin_count = 0;
Chris Wilson37e680a2012-06-07 15:38:42 +01004137 i915_gem_object_put_pages(obj);
Chris Wilsond8cb5082012-08-11 15:41:03 +01004138 i915_gem_object_free_mmap_offset(obj);
Chris Wilson0104fdb2012-11-15 11:32:26 +00004139 i915_gem_object_release_stolen(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01004140
Chris Wilson9da3da62012-06-01 15:20:22 +01004141 BUG_ON(obj->pages);
4142
Chris Wilson2f745ad2012-09-04 21:02:58 +01004143 if (obj->base.import_attach)
4144 drm_prime_gem_destroy(&obj->base, NULL);
Chris Wilsonbe726152010-07-23 23:18:50 +01004145
Chris Wilson05394f32010-11-08 19:18:58 +00004146 drm_gem_object_release(&obj->base);
4147 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01004148
Chris Wilson05394f32010-11-08 19:18:58 +00004149 kfree(obj->bit_17);
Chris Wilson42dcedd2012-11-15 11:32:30 +00004150 i915_gem_object_free(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01004151}
4152
Ben Widawsky2f633152013-07-17 12:19:03 -07004153struct i915_vma *i915_gem_vma_create(struct drm_i915_gem_object *obj,
4154 struct i915_address_space *vm)
4155{
4156 struct i915_vma *vma = kzalloc(sizeof(*vma), GFP_KERNEL);
4157 if (vma == NULL)
4158 return ERR_PTR(-ENOMEM);
4159
4160 INIT_LIST_HEAD(&vma->vma_link);
Ben Widawskyca191b12013-07-31 17:00:14 -07004161 INIT_LIST_HEAD(&vma->mm_list);
Ben Widawsky82a55ad2013-08-14 11:38:34 +02004162 INIT_LIST_HEAD(&vma->exec_list);
Ben Widawsky2f633152013-07-17 12:19:03 -07004163 vma->vm = vm;
4164 vma->obj = obj;
4165
Ben Widawsky8b9c2b92013-07-31 17:00:16 -07004166 /* Keep GGTT vmas first to make debug easier */
4167 if (i915_is_ggtt(vm))
4168 list_add(&vma->vma_link, &obj->vma_list);
4169 else
4170 list_add_tail(&vma->vma_link, &obj->vma_list);
4171
Ben Widawsky2f633152013-07-17 12:19:03 -07004172 return vma;
4173}
4174
4175void i915_gem_vma_destroy(struct i915_vma *vma)
4176{
4177 WARN_ON(vma->node.allocated);
Ben Widawsky8b9c2b92013-07-31 17:00:16 -07004178 list_del(&vma->vma_link);
Ben Widawsky2f633152013-07-17 12:19:03 -07004179 kfree(vma);
4180}
4181
Jesse Barnes5669fca2009-02-17 15:13:31 -08004182int
Eric Anholt673a3942008-07-30 12:06:12 -07004183i915_gem_idle(struct drm_device *dev)
4184{
4185 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson29105cc2010-01-07 10:39:13 +00004186 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004187
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004188 if (dev_priv->ums.mm_suspended) {
Keith Packard6dbe2772008-10-14 21:41:13 -07004189 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07004190 return 0;
Keith Packard6dbe2772008-10-14 21:41:13 -07004191 }
Eric Anholt673a3942008-07-30 12:06:12 -07004192
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004193 ret = i915_gpu_idle(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07004194 if (ret) {
4195 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07004196 return ret;
Keith Packard6dbe2772008-10-14 21:41:13 -07004197 }
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07004198 i915_gem_retire_requests(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07004199
Chris Wilson29105cc2010-01-07 10:39:13 +00004200 /* Under UMS, be paranoid and evict. */
Chris Wilsona39d7ef2012-04-24 18:22:52 +01004201 if (!drm_core_check_feature(dev, DRIVER_MODESET))
Chris Wilson6c085a72012-08-20 11:40:46 +02004202 i915_gem_evict_everything(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00004203
Daniel Vetter99584db2012-11-14 17:14:04 +01004204 del_timer_sync(&dev_priv->gpu_error.hangcheck_timer);
Chris Wilson29105cc2010-01-07 10:39:13 +00004205
4206 i915_kernel_lost_context(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07004207 i915_gem_cleanup_ringbuffer(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00004208
Chris Wilson29105cc2010-01-07 10:39:13 +00004209 /* Cancel the retire work handler, which should be idle now. */
4210 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
4211
Eric Anholt673a3942008-07-30 12:06:12 -07004212 return 0;
4213}
4214
Ben Widawskyb9524a12012-05-25 16:56:24 -07004215void i915_gem_l3_remap(struct drm_device *dev)
4216{
4217 drm_i915_private_t *dev_priv = dev->dev_private;
4218 u32 misccpctl;
4219 int i;
4220
Daniel Vettereb32e452013-02-14 19:46:07 +01004221 if (!HAS_L3_GPU_CACHE(dev))
Ben Widawskyb9524a12012-05-25 16:56:24 -07004222 return;
4223
Daniel Vettera4da4fa2012-11-02 19:55:07 +01004224 if (!dev_priv->l3_parity.remap_info)
Ben Widawskyb9524a12012-05-25 16:56:24 -07004225 return;
4226
4227 misccpctl = I915_READ(GEN7_MISCCPCTL);
4228 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
4229 POSTING_READ(GEN7_MISCCPCTL);
4230
4231 for (i = 0; i < GEN7_L3LOG_SIZE; i += 4) {
4232 u32 remap = I915_READ(GEN7_L3LOG_BASE + i);
Daniel Vettera4da4fa2012-11-02 19:55:07 +01004233 if (remap && remap != dev_priv->l3_parity.remap_info[i/4])
Ben Widawskyb9524a12012-05-25 16:56:24 -07004234 DRM_DEBUG("0x%x was already programmed to %x\n",
4235 GEN7_L3LOG_BASE + i, remap);
Daniel Vettera4da4fa2012-11-02 19:55:07 +01004236 if (remap && !dev_priv->l3_parity.remap_info[i/4])
Ben Widawskyb9524a12012-05-25 16:56:24 -07004237 DRM_DEBUG_DRIVER("Clearing remapped register\n");
Daniel Vettera4da4fa2012-11-02 19:55:07 +01004238 I915_WRITE(GEN7_L3LOG_BASE + i, dev_priv->l3_parity.remap_info[i/4]);
Ben Widawskyb9524a12012-05-25 16:56:24 -07004239 }
4240
4241 /* Make sure all the writes land before disabling dop clock gating */
4242 POSTING_READ(GEN7_L3LOG_BASE);
4243
4244 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
4245}
4246
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004247void i915_gem_init_swizzling(struct drm_device *dev)
4248{
4249 drm_i915_private_t *dev_priv = dev->dev_private;
4250
Daniel Vetter11782b02012-01-31 16:47:55 +01004251 if (INTEL_INFO(dev)->gen < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004252 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
4253 return;
4254
4255 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
4256 DISP_TILE_SURFACE_SWIZZLING);
4257
Daniel Vetter11782b02012-01-31 16:47:55 +01004258 if (IS_GEN5(dev))
4259 return;
4260
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004261 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
4262 if (IS_GEN6(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004263 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_SNB));
Ben Widawsky8782e262012-12-18 10:31:23 -08004264 else if (IS_GEN7(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004265 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_IVB));
Ben Widawsky8782e262012-12-18 10:31:23 -08004266 else
4267 BUG();
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004268}
Daniel Vettere21af882012-02-09 20:53:27 +01004269
Chris Wilson67b1b572012-07-05 23:49:40 +01004270static bool
4271intel_enable_blt(struct drm_device *dev)
4272{
4273 if (!HAS_BLT(dev))
4274 return false;
4275
4276 /* The blitter was dysfunctional on early prototypes */
4277 if (IS_GEN6(dev) && dev->pdev->revision < 8) {
4278 DRM_INFO("BLT not supported on this pre-production hardware;"
4279 " graphics performance will be degraded.\n");
4280 return false;
4281 }
4282
4283 return true;
4284}
4285
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004286static int i915_gem_init_rings(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004287{
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004288 struct drm_i915_private *dev_priv = dev->dev_private;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004289 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004290
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004291 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004292 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00004293 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004294
4295 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004296 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004297 if (ret)
4298 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08004299 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01004300
Chris Wilson67b1b572012-07-05 23:49:40 +01004301 if (intel_enable_blt(dev)) {
Chris Wilson549f7362010-10-19 11:19:32 +01004302 ret = intel_init_blt_ring_buffer(dev);
4303 if (ret)
4304 goto cleanup_bsd_ring;
4305 }
4306
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004307 if (HAS_VEBOX(dev)) {
4308 ret = intel_init_vebox_ring_buffer(dev);
4309 if (ret)
4310 goto cleanup_blt_ring;
4311 }
4312
4313
Mika Kuoppala99433932013-01-22 14:12:17 +02004314 ret = i915_gem_set_seqno(dev, ((u32)~0 - 0x1000));
4315 if (ret)
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004316 goto cleanup_vebox_ring;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004317
4318 return 0;
4319
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004320cleanup_vebox_ring:
4321 intel_cleanup_ring_buffer(&dev_priv->ring[VECS]);
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004322cleanup_blt_ring:
4323 intel_cleanup_ring_buffer(&dev_priv->ring[BCS]);
4324cleanup_bsd_ring:
4325 intel_cleanup_ring_buffer(&dev_priv->ring[VCS]);
4326cleanup_render_ring:
4327 intel_cleanup_ring_buffer(&dev_priv->ring[RCS]);
4328
4329 return ret;
4330}
4331
4332int
4333i915_gem_init_hw(struct drm_device *dev)
4334{
4335 drm_i915_private_t *dev_priv = dev->dev_private;
4336 int ret;
4337
4338 if (INTEL_INFO(dev)->gen < 6 && !intel_enable_gtt())
4339 return -EIO;
4340
Ben Widawsky59124502013-07-04 11:02:05 -07004341 if (dev_priv->ellc_size)
Ben Widawsky05e21cc2013-07-04 11:02:04 -07004342 I915_WRITE(HSW_IDICR, I915_READ(HSW_IDICR) | IDIHASHMSK(0xf));
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004343
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004344 if (HAS_PCH_NOP(dev)) {
4345 u32 temp = I915_READ(GEN7_MSG_CTL);
4346 temp &= ~(WAIT_FOR_PCH_FLR_ACK | WAIT_FOR_PCH_RESET_ACK);
4347 I915_WRITE(GEN7_MSG_CTL, temp);
4348 }
4349
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004350 i915_gem_l3_remap(dev);
4351
4352 i915_gem_init_swizzling(dev);
4353
4354 ret = i915_gem_init_rings(dev);
4355 if (ret)
Mika Kuoppala99433932013-01-22 14:12:17 +02004356 return ret;
4357
Ben Widawsky254f9652012-06-04 14:42:42 -07004358 /*
4359 * XXX: There was some w/a described somewhere suggesting loading
4360 * contexts before PPGTT.
4361 */
4362 i915_gem_context_init(dev);
Ben Widawskyb7c36d22013-04-08 18:43:56 -07004363 if (dev_priv->mm.aliasing_ppgtt) {
4364 ret = dev_priv->mm.aliasing_ppgtt->enable(dev);
4365 if (ret) {
4366 i915_gem_cleanup_aliasing_ppgtt(dev);
4367 DRM_INFO("PPGTT enable failed. This is not fatal, but unexpected\n");
4368 }
4369 }
Daniel Vettere21af882012-02-09 20:53:27 +01004370
Chris Wilson68f95ba2010-05-27 13:18:22 +01004371 return 0;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004372}
4373
Chris Wilson1070a422012-04-24 15:47:41 +01004374int i915_gem_init(struct drm_device *dev)
4375{
4376 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson1070a422012-04-24 15:47:41 +01004377 int ret;
4378
Chris Wilson1070a422012-04-24 15:47:41 +01004379 mutex_lock(&dev->struct_mutex);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004380
4381 if (IS_VALLEYVIEW(dev)) {
4382 /* VLVA0 (potential hack), BIOS isn't actually waking us */
4383 I915_WRITE(VLV_GTLC_WAKE_CTRL, 1);
4384 if (wait_for((I915_READ(VLV_GTLC_PW_STATUS) & 1) == 1, 10))
4385 DRM_DEBUG_DRIVER("allow wake ack timed out\n");
4386 }
4387
Ben Widawskyd7e50082012-12-18 10:31:25 -08004388 i915_gem_init_global_gtt(dev);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004389
Chris Wilson1070a422012-04-24 15:47:41 +01004390 ret = i915_gem_init_hw(dev);
4391 mutex_unlock(&dev->struct_mutex);
4392 if (ret) {
4393 i915_gem_cleanup_aliasing_ppgtt(dev);
4394 return ret;
4395 }
4396
Daniel Vetter53ca26c2012-04-26 23:28:03 +02004397 /* Allow hardware batchbuffers unless told otherwise, but not for KMS. */
4398 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4399 dev_priv->dri1.allow_batchbuffer = 1;
Chris Wilson1070a422012-04-24 15:47:41 +01004400 return 0;
4401}
4402
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004403void
4404i915_gem_cleanup_ringbuffer(struct drm_device *dev)
4405{
4406 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01004407 struct intel_ring_buffer *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00004408 int i;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004409
Chris Wilsonb4519512012-05-11 14:29:30 +01004410 for_each_ring(ring, dev_priv, i)
4411 intel_cleanup_ring_buffer(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004412}
4413
4414int
Eric Anholt673a3942008-07-30 12:06:12 -07004415i915_gem_entervt_ioctl(struct drm_device *dev, void *data,
4416 struct drm_file *file_priv)
4417{
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004418 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01004419 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004420
Jesse Barnes79e53942008-11-07 14:24:08 -08004421 if (drm_core_check_feature(dev, DRIVER_MODESET))
4422 return 0;
4423
Daniel Vetter1f83fee2012-11-15 17:17:22 +01004424 if (i915_reset_in_progress(&dev_priv->gpu_error)) {
Eric Anholt673a3942008-07-30 12:06:12 -07004425 DRM_ERROR("Reenabling wedged hardware, good luck\n");
Daniel Vetter1f83fee2012-11-15 17:17:22 +01004426 atomic_set(&dev_priv->gpu_error.reset_counter, 0);
Eric Anholt673a3942008-07-30 12:06:12 -07004427 }
4428
Eric Anholt673a3942008-07-30 12:06:12 -07004429 mutex_lock(&dev->struct_mutex);
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004430 dev_priv->ums.mm_suspended = 0;
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004431
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004432 ret = i915_gem_init_hw(dev);
Wu Fengguangd816f6a2009-04-18 10:43:32 +08004433 if (ret != 0) {
4434 mutex_unlock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004435 return ret;
Wu Fengguangd816f6a2009-04-18 10:43:32 +08004436 }
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004437
Ben Widawsky5cef07e2013-07-16 16:50:08 -07004438 BUG_ON(!list_empty(&dev_priv->gtt.base.active_list));
Eric Anholt673a3942008-07-30 12:06:12 -07004439 mutex_unlock(&dev->struct_mutex);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004440
Chris Wilson5f353082010-06-07 14:03:03 +01004441 ret = drm_irq_install(dev);
4442 if (ret)
4443 goto cleanup_ringbuffer;
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004444
Eric Anholt673a3942008-07-30 12:06:12 -07004445 return 0;
Chris Wilson5f353082010-06-07 14:03:03 +01004446
4447cleanup_ringbuffer:
4448 mutex_lock(&dev->struct_mutex);
4449 i915_gem_cleanup_ringbuffer(dev);
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004450 dev_priv->ums.mm_suspended = 1;
Chris Wilson5f353082010-06-07 14:03:03 +01004451 mutex_unlock(&dev->struct_mutex);
4452
4453 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004454}
4455
4456int
4457i915_gem_leavevt_ioctl(struct drm_device *dev, void *data,
4458 struct drm_file *file_priv)
4459{
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004460 struct drm_i915_private *dev_priv = dev->dev_private;
4461 int ret;
4462
Jesse Barnes79e53942008-11-07 14:24:08 -08004463 if (drm_core_check_feature(dev, DRIVER_MODESET))
4464 return 0;
4465
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004466 drm_irq_uninstall(dev);
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004467
4468 mutex_lock(&dev->struct_mutex);
4469 ret = i915_gem_idle(dev);
4470
4471 /* Hack! Don't let anybody do execbuf while we don't control the chip.
4472 * We need to replace this with a semaphore, or something.
4473 * And not confound ums.mm_suspended!
4474 */
4475 if (ret != 0)
4476 dev_priv->ums.mm_suspended = 1;
4477 mutex_unlock(&dev->struct_mutex);
4478
4479 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004480}
4481
4482void
4483i915_gem_lastclose(struct drm_device *dev)
4484{
4485 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004486
Eric Anholte806b492009-01-22 09:56:58 -08004487 if (drm_core_check_feature(dev, DRIVER_MODESET))
4488 return;
4489
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004490 mutex_lock(&dev->struct_mutex);
Keith Packard6dbe2772008-10-14 21:41:13 -07004491 ret = i915_gem_idle(dev);
4492 if (ret)
4493 DRM_ERROR("failed to idle hardware: %d\n", ret);
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004494 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07004495}
4496
Chris Wilson64193402010-10-24 12:38:05 +01004497static void
4498init_ring_lists(struct intel_ring_buffer *ring)
4499{
4500 INIT_LIST_HEAD(&ring->active_list);
4501 INIT_LIST_HEAD(&ring->request_list);
Chris Wilson64193402010-10-24 12:38:05 +01004502}
4503
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004504static void i915_init_vm(struct drm_i915_private *dev_priv,
4505 struct i915_address_space *vm)
4506{
4507 vm->dev = dev_priv->dev;
4508 INIT_LIST_HEAD(&vm->active_list);
4509 INIT_LIST_HEAD(&vm->inactive_list);
4510 INIT_LIST_HEAD(&vm->global_link);
4511 list_add(&vm->global_link, &dev_priv->vm_list);
4512}
4513
Eric Anholt673a3942008-07-30 12:06:12 -07004514void
4515i915_gem_load(struct drm_device *dev)
4516{
4517 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson42dcedd2012-11-15 11:32:30 +00004518 int i;
4519
4520 dev_priv->slab =
4521 kmem_cache_create("i915_gem_object",
4522 sizeof(struct drm_i915_gem_object), 0,
4523 SLAB_HWCACHE_ALIGN,
4524 NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07004525
Ben Widawskyfc8c0672013-07-31 16:59:54 -07004526 INIT_LIST_HEAD(&dev_priv->vm_list);
4527 i915_init_vm(dev_priv, &dev_priv->gtt.base);
4528
Chris Wilson6c085a72012-08-20 11:40:46 +02004529 INIT_LIST_HEAD(&dev_priv->mm.unbound_list);
4530 INIT_LIST_HEAD(&dev_priv->mm.bound_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07004531 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00004532 for (i = 0; i < I915_NUM_RINGS; i++)
4533 init_ring_lists(&dev_priv->ring[i]);
Daniel Vetter4b9de732011-10-09 21:52:02 +02004534 for (i = 0; i < I915_MAX_NUM_FENCES; i++)
Daniel Vetter007cc8a2010-04-28 11:02:31 +02004535 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07004536 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
4537 i915_gem_retire_work_handler);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01004538 init_waitqueue_head(&dev_priv->gpu_error.reset_queue);
Chris Wilson31169712009-09-14 16:50:28 +01004539
Dave Airlie94400122010-07-20 13:15:31 +10004540 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
4541 if (IS_GEN3(dev)) {
Daniel Vetter50743292012-04-26 22:02:54 +02004542 I915_WRITE(MI_ARB_STATE,
4543 _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Dave Airlie94400122010-07-20 13:15:31 +10004544 }
4545
Chris Wilson72bfa192010-12-19 11:42:05 +00004546 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
4547
Jesse Barnesde151cf2008-11-12 10:03:55 -08004548 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08004549 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4550 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08004551
Ville Syrjälä42b5aea2013-04-09 13:02:47 +03004552 if (INTEL_INFO(dev)->gen >= 7 && !IS_VALLEYVIEW(dev))
4553 dev_priv->num_fence_regs = 32;
4554 else if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08004555 dev_priv->num_fence_regs = 16;
4556 else
4557 dev_priv->num_fence_regs = 8;
4558
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02004559 /* Initialize fence registers to zero */
Chris Wilson19b2dbd2013-06-12 10:15:12 +01004560 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
4561 i915_gem_restore_fences(dev);
Eric Anholt10ed13e2011-05-06 13:53:49 -07004562
Eric Anholt673a3942008-07-30 12:06:12 -07004563 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004564 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01004565
Chris Wilsonce453d82011-02-21 14:43:56 +00004566 dev_priv->mm.interruptible = true;
4567
Dave Chinner7dc19d52013-08-28 10:18:11 +10004568 dev_priv->mm.inactive_shrinker.scan_objects = i915_gem_inactive_scan;
4569 dev_priv->mm.inactive_shrinker.count_objects = i915_gem_inactive_count;
Chris Wilson17250b72010-10-28 12:51:39 +01004570 dev_priv->mm.inactive_shrinker.seeks = DEFAULT_SEEKS;
4571 register_shrinker(&dev_priv->mm.inactive_shrinker);
Eric Anholt673a3942008-07-30 12:06:12 -07004572}
Dave Airlie71acb5e2008-12-30 20:31:46 +10004573
4574/*
4575 * Create a physically contiguous memory object for this object
4576 * e.g. for cursor + overlay regs
4577 */
Chris Wilson995b6762010-08-20 13:23:26 +01004578static int i915_gem_init_phys_object(struct drm_device *dev,
4579 int id, int size, int align)
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 int ret;
4584
4585 if (dev_priv->mm.phys_objs[id - 1] || !size)
4586 return 0;
4587
Eric Anholt9a298b22009-03-24 12:23:04 -07004588 phys_obj = kzalloc(sizeof(struct drm_i915_gem_phys_object), GFP_KERNEL);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004589 if (!phys_obj)
4590 return -ENOMEM;
4591
4592 phys_obj->id = id;
4593
Chris Wilson6eeefaf2010-08-07 11:01:39 +01004594 phys_obj->handle = drm_pci_alloc(dev, size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004595 if (!phys_obj->handle) {
4596 ret = -ENOMEM;
4597 goto kfree_obj;
4598 }
4599#ifdef CONFIG_X86
4600 set_memory_wc((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
4601#endif
4602
4603 dev_priv->mm.phys_objs[id - 1] = phys_obj;
4604
4605 return 0;
4606kfree_obj:
Eric Anholt9a298b22009-03-24 12:23:04 -07004607 kfree(phys_obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004608 return ret;
4609}
4610
Chris Wilson995b6762010-08-20 13:23:26 +01004611static void i915_gem_free_phys_object(struct drm_device *dev, int id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004612{
4613 drm_i915_private_t *dev_priv = dev->dev_private;
4614 struct drm_i915_gem_phys_object *phys_obj;
4615
4616 if (!dev_priv->mm.phys_objs[id - 1])
4617 return;
4618
4619 phys_obj = dev_priv->mm.phys_objs[id - 1];
4620 if (phys_obj->cur_obj) {
4621 i915_gem_detach_phys_object(dev, phys_obj->cur_obj);
4622 }
4623
4624#ifdef CONFIG_X86
4625 set_memory_wb((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
4626#endif
4627 drm_pci_free(dev, phys_obj->handle);
4628 kfree(phys_obj);
4629 dev_priv->mm.phys_objs[id - 1] = NULL;
4630}
4631
4632void i915_gem_free_all_phys_object(struct drm_device *dev)
4633{
4634 int i;
4635
Dave Airlie260883c2009-01-22 17:58:49 +10004636 for (i = I915_GEM_PHYS_CURSOR_0; i <= I915_MAX_PHYS_OBJECT; i++)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004637 i915_gem_free_phys_object(dev, i);
4638}
4639
4640void i915_gem_detach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00004641 struct drm_i915_gem_object *obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004642{
Al Viro496ad9a2013-01-23 17:07:38 -05004643 struct address_space *mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilsone5281cc2010-10-28 13:45:36 +01004644 char *vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004645 int i;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004646 int page_count;
4647
Chris Wilson05394f32010-11-08 19:18:58 +00004648 if (!obj->phys_obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004649 return;
Chris Wilson05394f32010-11-08 19:18:58 +00004650 vaddr = obj->phys_obj->handle->vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004651
Chris Wilson05394f32010-11-08 19:18:58 +00004652 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004653 for (i = 0; i < page_count; i++) {
Hugh Dickins5949eac2011-06-27 16:18:18 -07004654 struct page *page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004655 if (!IS_ERR(page)) {
4656 char *dst = kmap_atomic(page);
4657 memcpy(dst, vaddr + i*PAGE_SIZE, PAGE_SIZE);
4658 kunmap_atomic(dst);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004659
Chris Wilsone5281cc2010-10-28 13:45:36 +01004660 drm_clflush_pages(&page, 1);
4661
4662 set_page_dirty(page);
4663 mark_page_accessed(page);
4664 page_cache_release(page);
4665 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10004666 }
Ben Widawskye76e9ae2012-11-04 09:21:27 -08004667 i915_gem_chipset_flush(dev);
Chris Wilsond78b47b2009-06-17 21:52:49 +01004668
Chris Wilson05394f32010-11-08 19:18:58 +00004669 obj->phys_obj->cur_obj = NULL;
4670 obj->phys_obj = NULL;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004671}
4672
4673int
4674i915_gem_attach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00004675 struct drm_i915_gem_object *obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01004676 int id,
4677 int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004678{
Al Viro496ad9a2013-01-23 17:07:38 -05004679 struct address_space *mapping = file_inode(obj->base.filp)->i_mapping;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004680 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004681 int ret = 0;
4682 int page_count;
4683 int i;
4684
4685 if (id > I915_MAX_PHYS_OBJECT)
4686 return -EINVAL;
4687
Chris Wilson05394f32010-11-08 19:18:58 +00004688 if (obj->phys_obj) {
4689 if (obj->phys_obj->id == id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004690 return 0;
4691 i915_gem_detach_phys_object(dev, obj);
4692 }
4693
Dave Airlie71acb5e2008-12-30 20:31:46 +10004694 /* create a new object */
4695 if (!dev_priv->mm.phys_objs[id - 1]) {
4696 ret = i915_gem_init_phys_object(dev, id,
Chris Wilson05394f32010-11-08 19:18:58 +00004697 obj->base.size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004698 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00004699 DRM_ERROR("failed to init phys object %d size: %zu\n",
4700 id, obj->base.size);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004701 return ret;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004702 }
4703 }
4704
4705 /* bind to the object */
Chris Wilson05394f32010-11-08 19:18:58 +00004706 obj->phys_obj = dev_priv->mm.phys_objs[id - 1];
4707 obj->phys_obj->cur_obj = obj;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004708
Chris Wilson05394f32010-11-08 19:18:58 +00004709 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004710
4711 for (i = 0; i < page_count; i++) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01004712 struct page *page;
4713 char *dst, *src;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004714
Hugh Dickins5949eac2011-06-27 16:18:18 -07004715 page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004716 if (IS_ERR(page))
4717 return PTR_ERR(page);
4718
Chris Wilsonff75b9b2010-10-30 22:52:31 +01004719 src = kmap_atomic(page);
Chris Wilson05394f32010-11-08 19:18:58 +00004720 dst = obj->phys_obj->handle->vaddr + (i * PAGE_SIZE);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004721 memcpy(dst, src, PAGE_SIZE);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -07004722 kunmap_atomic(src);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004723
4724 mark_page_accessed(page);
4725 page_cache_release(page);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004726 }
4727
4728 return 0;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004729}
4730
4731static int
Chris Wilson05394f32010-11-08 19:18:58 +00004732i915_gem_phys_pwrite(struct drm_device *dev,
4733 struct drm_i915_gem_object *obj,
Dave Airlie71acb5e2008-12-30 20:31:46 +10004734 struct drm_i915_gem_pwrite *args,
4735 struct drm_file *file_priv)
4736{
Chris Wilson05394f32010-11-08 19:18:58 +00004737 void *vaddr = obj->phys_obj->handle->vaddr + args->offset;
Ville Syrjälä2bb46292013-02-22 16:12:51 +02004738 char __user *user_data = to_user_ptr(args->data_ptr);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004739
Chris Wilsonb47b30c2010-11-08 01:12:29 +00004740 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
4741 unsigned long unwritten;
4742
4743 /* The physical object once assigned is fixed for the lifetime
4744 * of the obj, so we can safely drop the lock and continue
4745 * to access vaddr.
4746 */
4747 mutex_unlock(&dev->struct_mutex);
4748 unwritten = copy_from_user(vaddr, user_data, args->size);
4749 mutex_lock(&dev->struct_mutex);
4750 if (unwritten)
4751 return -EFAULT;
4752 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10004753
Ben Widawskye76e9ae2012-11-04 09:21:27 -08004754 i915_gem_chipset_flush(dev);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004755 return 0;
4756}
Eric Anholtb9624422009-06-03 07:27:35 +00004757
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004758void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00004759{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004760 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00004761
4762 /* Clean up our request list when the client is going away, so that
4763 * later retire_requests won't dereference our soon-to-be-gone
4764 * file_priv.
4765 */
Chris Wilson1c255952010-09-26 11:03:27 +01004766 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004767 while (!list_empty(&file_priv->mm.request_list)) {
4768 struct drm_i915_gem_request *request;
4769
4770 request = list_first_entry(&file_priv->mm.request_list,
4771 struct drm_i915_gem_request,
4772 client_list);
4773 list_del(&request->client_list);
4774 request->file_priv = NULL;
4775 }
Chris Wilson1c255952010-09-26 11:03:27 +01004776 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00004777}
Chris Wilson31169712009-09-14 16:50:28 +01004778
Chris Wilson57745062012-11-21 13:04:04 +00004779static bool mutex_is_locked_by(struct mutex *mutex, struct task_struct *task)
4780{
4781 if (!mutex_is_locked(mutex))
4782 return false;
4783
4784#if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_MUTEXES)
4785 return mutex->owner == task;
4786#else
4787 /* Since UP may be pre-empted, we cannot assume that we own the lock */
4788 return false;
4789#endif
4790}
4791
Dave Chinner7dc19d52013-08-28 10:18:11 +10004792static unsigned long
4793i915_gem_inactive_count(struct shrinker *shrinker, struct shrink_control *sc)
Chris Wilson31169712009-09-14 16:50:28 +01004794{
Chris Wilson17250b72010-10-28 12:51:39 +01004795 struct drm_i915_private *dev_priv =
4796 container_of(shrinker,
4797 struct drm_i915_private,
4798 mm.inactive_shrinker);
4799 struct drm_device *dev = dev_priv->dev;
Chris Wilson6c085a72012-08-20 11:40:46 +02004800 struct drm_i915_gem_object *obj;
Chris Wilson57745062012-11-21 13:04:04 +00004801 bool unlock = true;
Dave Chinner7dc19d52013-08-28 10:18:11 +10004802 unsigned long count;
Chris Wilson17250b72010-10-28 12:51:39 +01004803
Chris Wilson57745062012-11-21 13:04:04 +00004804 if (!mutex_trylock(&dev->struct_mutex)) {
4805 if (!mutex_is_locked_by(&dev->struct_mutex, current))
Glauber Costa81e49f82013-08-28 10:18:13 +10004806 return SHRINK_STOP;
Chris Wilson57745062012-11-21 13:04:04 +00004807
Daniel Vetter677feac2012-12-19 14:33:45 +01004808 if (dev_priv->mm.shrinker_no_lock_stealing)
Glauber Costa81e49f82013-08-28 10:18:13 +10004809 return SHRINK_STOP;
Daniel Vetter677feac2012-12-19 14:33:45 +01004810
Chris Wilson57745062012-11-21 13:04:04 +00004811 unlock = false;
4812 }
Chris Wilson31169712009-09-14 16:50:28 +01004813
Dave Chinner7dc19d52013-08-28 10:18:11 +10004814 count = 0;
Ben Widawsky35c20a62013-05-31 11:28:48 -07004815 list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list)
Chris Wilsona5570172012-09-04 21:02:54 +01004816 if (obj->pages_pin_count == 0)
Dave Chinner7dc19d52013-08-28 10:18:11 +10004817 count += obj->base.size >> PAGE_SHIFT;
Ben Widawskyfcb4a572013-07-31 16:59:57 -07004818
4819 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
4820 if (obj->active)
4821 continue;
4822
Chris Wilsona5570172012-09-04 21:02:54 +01004823 if (obj->pin_count == 0 && obj->pages_pin_count == 0)
Dave Chinner7dc19d52013-08-28 10:18:11 +10004824 count += obj->base.size >> PAGE_SHIFT;
Ben Widawskyfcb4a572013-07-31 16:59:57 -07004825 }
Chris Wilson31169712009-09-14 16:50:28 +01004826
Chris Wilson57745062012-11-21 13:04:04 +00004827 if (unlock)
4828 mutex_unlock(&dev->struct_mutex);
Dave Chinner7dc19d52013-08-28 10:18:11 +10004829 return count;
Chris Wilson31169712009-09-14 16:50:28 +01004830}
Ben Widawskya70a3142013-07-31 16:59:56 -07004831
4832/* All the new VM stuff */
4833unsigned long i915_gem_obj_offset(struct drm_i915_gem_object *o,
4834 struct i915_address_space *vm)
4835{
4836 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
4837 struct i915_vma *vma;
4838
4839 if (vm == &dev_priv->mm.aliasing_ppgtt->base)
4840 vm = &dev_priv->gtt.base;
4841
4842 BUG_ON(list_empty(&o->vma_list));
4843 list_for_each_entry(vma, &o->vma_list, vma_link) {
4844 if (vma->vm == vm)
4845 return vma->node.start;
4846
4847 }
4848 return -1;
4849}
4850
4851bool i915_gem_obj_bound(struct drm_i915_gem_object *o,
4852 struct i915_address_space *vm)
4853{
4854 struct i915_vma *vma;
4855
4856 list_for_each_entry(vma, &o->vma_list, vma_link)
Ben Widawsky8b9c2b92013-07-31 17:00:16 -07004857 if (vma->vm == vm && drm_mm_node_allocated(&vma->node))
Ben Widawskya70a3142013-07-31 16:59:56 -07004858 return true;
4859
4860 return false;
4861}
4862
4863bool i915_gem_obj_bound_any(struct drm_i915_gem_object *o)
4864{
4865 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
4866 struct i915_address_space *vm;
4867
4868 list_for_each_entry(vm, &dev_priv->vm_list, global_link)
4869 if (i915_gem_obj_bound(o, vm))
4870 return true;
4871
4872 return false;
4873}
4874
4875unsigned long i915_gem_obj_size(struct drm_i915_gem_object *o,
4876 struct i915_address_space *vm)
4877{
4878 struct drm_i915_private *dev_priv = o->base.dev->dev_private;
4879 struct i915_vma *vma;
4880
4881 if (vm == &dev_priv->mm.aliasing_ppgtt->base)
4882 vm = &dev_priv->gtt.base;
4883
4884 BUG_ON(list_empty(&o->vma_list));
4885
4886 list_for_each_entry(vma, &o->vma_list, vma_link)
4887 if (vma->vm == vm)
4888 return vma->node.size;
4889
4890 return 0;
4891}
4892
Dave Chinner7dc19d52013-08-28 10:18:11 +10004893static unsigned long
4894i915_gem_inactive_scan(struct shrinker *shrinker, struct shrink_control *sc)
4895{
4896 struct drm_i915_private *dev_priv =
4897 container_of(shrinker,
4898 struct drm_i915_private,
4899 mm.inactive_shrinker);
4900 struct drm_device *dev = dev_priv->dev;
4901 int nr_to_scan = sc->nr_to_scan;
4902 unsigned long freed;
4903 bool unlock = true;
4904
4905 if (!mutex_trylock(&dev->struct_mutex)) {
4906 if (!mutex_is_locked_by(&dev->struct_mutex, current))
4907 return 0;
4908
4909 if (dev_priv->mm.shrinker_no_lock_stealing)
4910 return 0;
4911
4912 unlock = false;
4913 }
4914
4915 freed = i915_gem_purge(dev_priv, nr_to_scan);
4916 if (freed < nr_to_scan)
4917 freed += __i915_gem_shrink(dev_priv, nr_to_scan,
4918 false);
4919 if (freed < nr_to_scan)
4920 freed += i915_gem_shrink_all(dev_priv);
4921
4922 if (unlock)
4923 mutex_unlock(&dev->struct_mutex);
4924 return freed;
4925}
4926
Ben Widawskya70a3142013-07-31 16:59:56 -07004927struct i915_vma *i915_gem_obj_to_vma(struct drm_i915_gem_object *obj,
4928 struct i915_address_space *vm)
4929{
4930 struct i915_vma *vma;
4931 list_for_each_entry(vma, &obj->vma_list, vma_link)
4932 if (vma->vm == vm)
4933 return vma;
4934
4935 return NULL;
4936}
Ben Widawskyaccfef22013-08-14 11:38:35 +02004937
4938struct i915_vma *
4939i915_gem_obj_lookup_or_create_vma(struct drm_i915_gem_object *obj,
4940 struct i915_address_space *vm)
4941{
4942 struct i915_vma *vma;
4943
4944 vma = i915_gem_obj_to_vma(obj, vm);
4945 if (!vma)
4946 vma = i915_gem_vma_create(obj, vm);
4947
4948 return vma;
4949}