blob: 8673a000a3731c95964053a26f0509a32b0c145a [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);
41static void i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj);
Chris Wilson88241782011-01-07 17:09:48 +000042static __must_check int i915_gem_object_bind_to_gtt(struct drm_i915_gem_object *obj,
43 unsigned alignment,
Chris Wilson86a1ee22012-08-11 15:41:04 +010044 bool map_and_fenceable,
45 bool nonblocking);
Chris Wilson05394f32010-11-08 19:18:58 +000046static int i915_gem_phys_pwrite(struct drm_device *dev,
47 struct drm_i915_gem_object *obj,
Dave Airlie71acb5e2008-12-30 20:31:46 +100048 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +000049 struct drm_file *file);
Eric Anholt673a3942008-07-30 12:06:12 -070050
Chris Wilson61050802012-04-17 15:31:31 +010051static void i915_gem_write_fence(struct drm_device *dev, int reg,
52 struct drm_i915_gem_object *obj);
53static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
54 struct drm_i915_fence_reg *fence,
55 bool enable);
56
Chris Wilson17250b72010-10-28 12:51:39 +010057static int i915_gem_inactive_shrink(struct shrinker *shrinker,
Ying Han1495f232011-05-24 17:12:27 -070058 struct shrink_control *sc);
Chris Wilson6c085a72012-08-20 11:40:46 +020059static long i915_gem_purge(struct drm_i915_private *dev_priv, long target);
60static void i915_gem_shrink_all(struct drm_i915_private *dev_priv);
Daniel Vetter8c599672011-12-14 13:57:31 +010061static void i915_gem_object_truncate(struct drm_i915_gem_object *obj);
Chris Wilson31169712009-09-14 16:50:28 +010062
Chris Wilson61050802012-04-17 15:31:31 +010063static inline void i915_gem_object_fence_lost(struct drm_i915_gem_object *obj)
64{
65 if (obj->tiling_mode)
66 i915_gem_release_mmap(obj);
67
68 /* As we do not have an associated fence register, we will force
69 * a tiling change if we ever need to acquire one.
70 */
Chris Wilson5d82e3e2012-04-21 16:23:23 +010071 obj->fence_dirty = false;
Chris Wilson61050802012-04-17 15:31:31 +010072 obj->fence_reg = I915_FENCE_REG_NONE;
73}
74
Chris Wilson73aa8082010-09-30 11:46:12 +010075/* some bookkeeping */
76static void i915_gem_info_add_obj(struct drm_i915_private *dev_priv,
77 size_t size)
78{
79 dev_priv->mm.object_count++;
80 dev_priv->mm.object_memory += size;
81}
82
83static void i915_gem_info_remove_obj(struct drm_i915_private *dev_priv,
84 size_t size)
85{
86 dev_priv->mm.object_count--;
87 dev_priv->mm.object_memory -= size;
88}
89
Chris Wilson21dd3732011-01-26 15:55:56 +000090static int
Daniel Vetter33196de2012-11-14 17:14:05 +010091i915_gem_wait_for_error(struct i915_gpu_error *error)
Chris Wilson30dbf0c2010-09-25 10:19:17 +010092{
Chris Wilson30dbf0c2010-09-25 10:19:17 +010093 int ret;
94
Daniel Vetter7abb6902013-05-24 21:29:32 +020095#define EXIT_COND (!i915_reset_in_progress(error) || \
96 i915_terminally_wedged(error))
Daniel Vetter1f83fee2012-11-15 17:17:22 +010097 if (EXIT_COND)
Chris Wilson30dbf0c2010-09-25 10:19:17 +010098 return 0;
99
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200100 /*
101 * Only wait 10 seconds for the gpu reset to complete to avoid hanging
102 * userspace. If it takes that long something really bad is going on and
103 * we should simply try to bail out and fail as gracefully as possible.
104 */
Daniel Vetter1f83fee2012-11-15 17:17:22 +0100105 ret = wait_event_interruptible_timeout(error->reset_queue,
106 EXIT_COND,
107 10*HZ);
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200108 if (ret == 0) {
109 DRM_ERROR("Timed out waiting for the gpu reset to complete\n");
110 return -EIO;
111 } else if (ret < 0) {
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100112 return ret;
Daniel Vetter0a6759c2012-07-04 22:18:41 +0200113 }
Daniel Vetter1f83fee2012-11-15 17:17:22 +0100114#undef EXIT_COND
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100115
Chris Wilson21dd3732011-01-26 15:55:56 +0000116 return 0;
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100117}
118
Chris Wilson54cf91d2010-11-25 18:00:26 +0000119int i915_mutex_lock_interruptible(struct drm_device *dev)
Chris Wilson76c1dec2010-09-25 11:22:51 +0100120{
Daniel Vetter33196de2012-11-14 17:14:05 +0100121 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson76c1dec2010-09-25 11:22:51 +0100122 int ret;
123
Daniel Vetter33196de2012-11-14 17:14:05 +0100124 ret = i915_gem_wait_for_error(&dev_priv->gpu_error);
Chris Wilson76c1dec2010-09-25 11:22:51 +0100125 if (ret)
126 return ret;
127
128 ret = mutex_lock_interruptible(&dev->struct_mutex);
129 if (ret)
130 return ret;
131
Chris Wilson23bc5982010-09-29 16:10:57 +0100132 WARN_ON(i915_verify_lists(dev));
Chris Wilson76c1dec2010-09-25 11:22:51 +0100133 return 0;
134}
Chris Wilson30dbf0c2010-09-25 10:19:17 +0100135
Chris Wilson7d1c4802010-08-07 21:45:03 +0100136static inline bool
Chris Wilson05394f32010-11-08 19:18:58 +0000137i915_gem_object_is_inactive(struct drm_i915_gem_object *obj)
Chris Wilson7d1c4802010-08-07 21:45:03 +0100138{
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700139 return i915_gem_obj_ggtt_bound(obj) && !obj->active;
Chris Wilson7d1c4802010-08-07 21:45:03 +0100140}
141
Eric Anholt673a3942008-07-30 12:06:12 -0700142int
143i915_gem_init_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000144 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700145{
Ben Widawsky93d18792013-01-17 12:45:17 -0800146 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700147 struct drm_i915_gem_init *args = data;
Chris Wilson20217462010-11-23 15:26:33 +0000148
Daniel Vetter7bb6fb82012-04-24 08:22:52 +0200149 if (drm_core_check_feature(dev, DRIVER_MODESET))
150 return -ENODEV;
151
Chris Wilson20217462010-11-23 15:26:33 +0000152 if (args->gtt_start >= args->gtt_end ||
153 (args->gtt_end | args->gtt_start) & (PAGE_SIZE - 1))
154 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700155
Daniel Vetterf534bc02012-03-26 22:37:04 +0200156 /* GEM with user mode setting was never supported on ilk and later. */
157 if (INTEL_INFO(dev)->gen >= 5)
158 return -ENODEV;
159
Eric Anholt673a3942008-07-30 12:06:12 -0700160 mutex_lock(&dev->struct_mutex);
Ben Widawskyd7e50082012-12-18 10:31:25 -0800161 i915_gem_setup_global_gtt(dev, args->gtt_start, args->gtt_end,
162 args->gtt_end);
Ben Widawsky93d18792013-01-17 12:45:17 -0800163 dev_priv->gtt.mappable_end = args->gtt_end;
Eric Anholt673a3942008-07-30 12:06:12 -0700164 mutex_unlock(&dev->struct_mutex);
165
Chris Wilson20217462010-11-23 15:26:33 +0000166 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700167}
168
Eric Anholt5a125c32008-10-22 21:40:13 -0700169int
170i915_gem_get_aperture_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000171 struct drm_file *file)
Eric Anholt5a125c32008-10-22 21:40:13 -0700172{
Chris Wilson73aa8082010-09-30 11:46:12 +0100173 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt5a125c32008-10-22 21:40:13 -0700174 struct drm_i915_gem_get_aperture *args = data;
Chris Wilson6299f992010-11-24 12:23:44 +0000175 struct drm_i915_gem_object *obj;
176 size_t pinned;
Eric Anholt5a125c32008-10-22 21:40:13 -0700177
Chris Wilson6299f992010-11-24 12:23:44 +0000178 pinned = 0;
Chris Wilson73aa8082010-09-30 11:46:12 +0100179 mutex_lock(&dev->struct_mutex);
Ben Widawsky35c20a62013-05-31 11:28:48 -0700180 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list)
Chris Wilson1b502472012-04-24 15:47:30 +0100181 if (obj->pin_count)
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700182 pinned += i915_gem_obj_ggtt_size(obj);
Chris Wilson73aa8082010-09-30 11:46:12 +0100183 mutex_unlock(&dev->struct_mutex);
Eric Anholt5a125c32008-10-22 21:40:13 -0700184
Ben Widawsky5d4545a2013-01-17 12:45:15 -0800185 args->aper_size = dev_priv->gtt.total;
Akshay Joshi0206e352011-08-16 15:34:10 -0400186 args->aper_available_size = args->aper_size - pinned;
Chris Wilson6299f992010-11-24 12:23:44 +0000187
Eric Anholt5a125c32008-10-22 21:40:13 -0700188 return 0;
189}
190
Chris Wilson42dcedd2012-11-15 11:32:30 +0000191void *i915_gem_object_alloc(struct drm_device *dev)
192{
193 struct drm_i915_private *dev_priv = dev->dev_private;
194 return kmem_cache_alloc(dev_priv->slab, GFP_KERNEL | __GFP_ZERO);
195}
196
197void i915_gem_object_free(struct drm_i915_gem_object *obj)
198{
199 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
200 kmem_cache_free(dev_priv->slab, obj);
201}
202
Dave Airlieff72145b2011-02-07 12:16:14 +1000203static int
204i915_gem_create(struct drm_file *file,
205 struct drm_device *dev,
206 uint64_t size,
207 uint32_t *handle_p)
Eric Anholt673a3942008-07-30 12:06:12 -0700208{
Chris Wilson05394f32010-11-08 19:18:58 +0000209 struct drm_i915_gem_object *obj;
Pekka Paalanena1a2d1d2009-08-23 12:40:55 +0300210 int ret;
211 u32 handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700212
Dave Airlieff72145b2011-02-07 12:16:14 +1000213 size = roundup(size, PAGE_SIZE);
Chris Wilson8ffc0242011-09-14 14:14:28 +0200214 if (size == 0)
215 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -0700216
217 /* Allocate the new object */
Dave Airlieff72145b2011-02-07 12:16:14 +1000218 obj = i915_gem_alloc_object(dev, size);
Eric Anholt673a3942008-07-30 12:06:12 -0700219 if (obj == NULL)
220 return -ENOMEM;
221
Chris Wilson05394f32010-11-08 19:18:58 +0000222 ret = drm_gem_handle_create(file, &obj->base, &handle);
Chris Wilson1dfd9752010-09-06 14:44:14 +0100223 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +0000224 drm_gem_object_release(&obj->base);
225 i915_gem_info_remove_obj(dev->dev_private, obj->base.size);
Chris Wilson42dcedd2012-11-15 11:32:30 +0000226 i915_gem_object_free(obj);
Eric Anholt673a3942008-07-30 12:06:12 -0700227 return ret;
Chris Wilson1dfd9752010-09-06 14:44:14 +0100228 }
229
Chris Wilson202f2fe2010-10-14 13:20:40 +0100230 /* drop reference from allocate - handle holds it now */
Chris Wilson05394f32010-11-08 19:18:58 +0000231 drm_gem_object_unreference(&obj->base);
Chris Wilson202f2fe2010-10-14 13:20:40 +0100232 trace_i915_gem_object_create(obj);
233
Dave Airlieff72145b2011-02-07 12:16:14 +1000234 *handle_p = handle;
Eric Anholt673a3942008-07-30 12:06:12 -0700235 return 0;
236}
237
Dave Airlieff72145b2011-02-07 12:16:14 +1000238int
239i915_gem_dumb_create(struct drm_file *file,
240 struct drm_device *dev,
241 struct drm_mode_create_dumb *args)
242{
243 /* have to work out size/pitch and return them */
Chris Wilsoned0291f2011-03-19 08:21:45 +0000244 args->pitch = ALIGN(args->width * ((args->bpp + 7) / 8), 64);
Dave Airlieff72145b2011-02-07 12:16:14 +1000245 args->size = args->pitch * args->height;
246 return i915_gem_create(file, dev,
247 args->size, &args->handle);
248}
249
250int i915_gem_dumb_destroy(struct drm_file *file,
251 struct drm_device *dev,
252 uint32_t handle)
253{
254 return drm_gem_handle_delete(file, handle);
255}
256
257/**
258 * Creates a new mm object and returns a handle to it.
259 */
260int
261i915_gem_create_ioctl(struct drm_device *dev, void *data,
262 struct drm_file *file)
263{
264 struct drm_i915_gem_create *args = data;
Daniel Vetter63ed2cb2012-04-23 16:50:50 +0200265
Dave Airlieff72145b2011-02-07 12:16:14 +1000266 return i915_gem_create(file, dev,
267 args->size, &args->handle);
268}
269
Daniel Vetter8c599672011-12-14 13:57:31 +0100270static inline int
Daniel Vetter8461d222011-12-14 13:57:32 +0100271__copy_to_user_swizzled(char __user *cpu_vaddr,
272 const char *gpu_vaddr, int gpu_offset,
273 int length)
274{
275 int ret, cpu_offset = 0;
276
277 while (length > 0) {
278 int cacheline_end = ALIGN(gpu_offset + 1, 64);
279 int this_length = min(cacheline_end - gpu_offset, length);
280 int swizzled_gpu_offset = gpu_offset ^ 64;
281
282 ret = __copy_to_user(cpu_vaddr + cpu_offset,
283 gpu_vaddr + swizzled_gpu_offset,
284 this_length);
285 if (ret)
286 return ret + length;
287
288 cpu_offset += this_length;
289 gpu_offset += this_length;
290 length -= this_length;
291 }
292
293 return 0;
294}
295
296static inline int
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700297__copy_from_user_swizzled(char *gpu_vaddr, int gpu_offset,
298 const char __user *cpu_vaddr,
Daniel Vetter8c599672011-12-14 13:57:31 +0100299 int length)
300{
301 int ret, cpu_offset = 0;
302
303 while (length > 0) {
304 int cacheline_end = ALIGN(gpu_offset + 1, 64);
305 int this_length = min(cacheline_end - gpu_offset, length);
306 int swizzled_gpu_offset = gpu_offset ^ 64;
307
308 ret = __copy_from_user(gpu_vaddr + swizzled_gpu_offset,
309 cpu_vaddr + cpu_offset,
310 this_length);
311 if (ret)
312 return ret + length;
313
314 cpu_offset += this_length;
315 gpu_offset += this_length;
316 length -= this_length;
317 }
318
319 return 0;
320}
321
Daniel Vetterd174bd62012-03-25 19:47:40 +0200322/* Per-page copy function for the shmem pread fastpath.
323 * Flushes invalid cachelines before reading the target if
324 * needs_clflush is set. */
Eric Anholteb014592009-03-10 11:44:52 -0700325static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200326shmem_pread_fast(struct page *page, int shmem_page_offset, int page_length,
327 char __user *user_data,
328 bool page_do_bit17_swizzling, bool needs_clflush)
329{
330 char *vaddr;
331 int ret;
332
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200333 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200334 return -EINVAL;
335
336 vaddr = kmap_atomic(page);
337 if (needs_clflush)
338 drm_clflush_virt_range(vaddr + shmem_page_offset,
339 page_length);
340 ret = __copy_to_user_inatomic(user_data,
341 vaddr + shmem_page_offset,
342 page_length);
343 kunmap_atomic(vaddr);
344
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100345 return ret ? -EFAULT : 0;
Daniel Vetterd174bd62012-03-25 19:47:40 +0200346}
347
Daniel Vetter23c18c72012-03-25 19:47:42 +0200348static void
349shmem_clflush_swizzled_range(char *addr, unsigned long length,
350 bool swizzled)
351{
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200352 if (unlikely(swizzled)) {
Daniel Vetter23c18c72012-03-25 19:47:42 +0200353 unsigned long start = (unsigned long) addr;
354 unsigned long end = (unsigned long) addr + length;
355
356 /* For swizzling simply ensure that we always flush both
357 * channels. Lame, but simple and it works. Swizzled
358 * pwrite/pread is far from a hotpath - current userspace
359 * doesn't use it at all. */
360 start = round_down(start, 128);
361 end = round_up(end, 128);
362
363 drm_clflush_virt_range((void *)start, end - start);
364 } else {
365 drm_clflush_virt_range(addr, length);
366 }
367
368}
369
Daniel Vetterd174bd62012-03-25 19:47:40 +0200370/* Only difference to the fast-path function is that this can handle bit17
371 * and uses non-atomic copy and kmap functions. */
372static int
373shmem_pread_slow(struct page *page, int shmem_page_offset, int page_length,
374 char __user *user_data,
375 bool page_do_bit17_swizzling, bool needs_clflush)
376{
377 char *vaddr;
378 int ret;
379
380 vaddr = kmap(page);
381 if (needs_clflush)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200382 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
383 page_length,
384 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200385
386 if (page_do_bit17_swizzling)
387 ret = __copy_to_user_swizzled(user_data,
388 vaddr, shmem_page_offset,
389 page_length);
390 else
391 ret = __copy_to_user(user_data,
392 vaddr + shmem_page_offset,
393 page_length);
394 kunmap(page);
395
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100396 return ret ? - EFAULT : 0;
Daniel Vetterd174bd62012-03-25 19:47:40 +0200397}
398
Eric Anholteb014592009-03-10 11:44:52 -0700399static int
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200400i915_gem_shmem_pread(struct drm_device *dev,
401 struct drm_i915_gem_object *obj,
402 struct drm_i915_gem_pread *args,
403 struct drm_file *file)
Eric Anholteb014592009-03-10 11:44:52 -0700404{
Daniel Vetter8461d222011-12-14 13:57:32 +0100405 char __user *user_data;
Eric Anholteb014592009-03-10 11:44:52 -0700406 ssize_t remain;
Daniel Vetter8461d222011-12-14 13:57:32 +0100407 loff_t offset;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100408 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8461d222011-12-14 13:57:32 +0100409 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vetter96d79b52012-03-25 19:47:36 +0200410 int prefaulted = 0;
Daniel Vetter84897312012-03-25 19:47:31 +0200411 int needs_clflush = 0;
Imre Deak67d5a502013-02-18 19:28:02 +0200412 struct sg_page_iter sg_iter;
Eric Anholteb014592009-03-10 11:44:52 -0700413
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200414 user_data = to_user_ptr(args->data_ptr);
Eric Anholteb014592009-03-10 11:44:52 -0700415 remain = args->size;
416
Daniel Vetter8461d222011-12-14 13:57:32 +0100417 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholteb014592009-03-10 11:44:52 -0700418
Daniel Vetter84897312012-03-25 19:47:31 +0200419 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU)) {
420 /* If we're not in the cpu read domain, set ourself into the gtt
421 * read domain and manually flush cachelines (if required). This
422 * optimizes for the case when the gpu will dirty the data
423 * anyway again before the next pread happens. */
424 if (obj->cache_level == I915_CACHE_NONE)
425 needs_clflush = 1;
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700426 if (i915_gem_obj_ggtt_bound(obj)) {
Chris Wilson6c085a72012-08-20 11:40:46 +0200427 ret = i915_gem_object_set_to_gtt_domain(obj, false);
428 if (ret)
429 return ret;
430 }
Daniel Vetter84897312012-03-25 19:47:31 +0200431 }
Eric Anholteb014592009-03-10 11:44:52 -0700432
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100433 ret = i915_gem_object_get_pages(obj);
434 if (ret)
435 return ret;
436
437 i915_gem_object_pin_pages(obj);
438
Eric Anholteb014592009-03-10 11:44:52 -0700439 offset = args->offset;
Daniel Vetter8461d222011-12-14 13:57:32 +0100440
Imre Deak67d5a502013-02-18 19:28:02 +0200441 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents,
442 offset >> PAGE_SHIFT) {
Imre Deak2db76d72013-03-26 15:14:18 +0200443 struct page *page = sg_page_iter_page(&sg_iter);
Chris Wilson9da3da62012-06-01 15:20:22 +0100444
445 if (remain <= 0)
446 break;
447
Eric Anholteb014592009-03-10 11:44:52 -0700448 /* Operation in this page
449 *
Eric Anholteb014592009-03-10 11:44:52 -0700450 * shmem_page_offset = offset within page in shmem file
Eric Anholteb014592009-03-10 11:44:52 -0700451 * page_length = bytes to copy for this page
452 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100453 shmem_page_offset = offset_in_page(offset);
Eric Anholteb014592009-03-10 11:44:52 -0700454 page_length = remain;
455 if ((shmem_page_offset + page_length) > PAGE_SIZE)
456 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholteb014592009-03-10 11:44:52 -0700457
Daniel Vetter8461d222011-12-14 13:57:32 +0100458 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
459 (page_to_phys(page) & (1 << 17)) != 0;
460
Daniel Vetterd174bd62012-03-25 19:47:40 +0200461 ret = shmem_pread_fast(page, shmem_page_offset, page_length,
462 user_data, page_do_bit17_swizzling,
463 needs_clflush);
464 if (ret == 0)
465 goto next_page;
Eric Anholteb014592009-03-10 11:44:52 -0700466
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200467 mutex_unlock(&dev->struct_mutex);
468
Daniel Vetter96d79b52012-03-25 19:47:36 +0200469 if (!prefaulted) {
Daniel Vetterf56f8212012-03-25 19:47:41 +0200470 ret = fault_in_multipages_writeable(user_data, remain);
Daniel Vetter96d79b52012-03-25 19:47:36 +0200471 /* Userspace is tricking us, but we've already clobbered
472 * its pages with the prefault and promised to write the
473 * data up to the first fault. Hence ignore any errors
474 * and just continue. */
475 (void)ret;
476 prefaulted = 1;
477 }
478
Daniel Vetterd174bd62012-03-25 19:47:40 +0200479 ret = shmem_pread_slow(page, shmem_page_offset, page_length,
480 user_data, page_do_bit17_swizzling,
481 needs_clflush);
Eric Anholteb014592009-03-10 11:44:52 -0700482
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200483 mutex_lock(&dev->struct_mutex);
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100484
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200485next_page:
Chris Wilsone5281cc2010-10-28 13:45:36 +0100486 mark_page_accessed(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100487
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100488 if (ret)
Daniel Vetter8461d222011-12-14 13:57:32 +0100489 goto out;
Daniel Vetter8461d222011-12-14 13:57:32 +0100490
Eric Anholteb014592009-03-10 11:44:52 -0700491 remain -= page_length;
Daniel Vetter8461d222011-12-14 13:57:32 +0100492 user_data += page_length;
Eric Anholteb014592009-03-10 11:44:52 -0700493 offset += page_length;
494 }
495
Chris Wilson4f27b752010-10-14 15:26:45 +0100496out:
Chris Wilsonf60d7f02012-09-04 21:02:56 +0100497 i915_gem_object_unpin_pages(obj);
498
Eric Anholteb014592009-03-10 11:44:52 -0700499 return ret;
500}
501
Eric Anholt673a3942008-07-30 12:06:12 -0700502/**
503 * Reads data from the object referenced by handle.
504 *
505 * On error, the contents of *data are undefined.
506 */
507int
508i915_gem_pread_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +0000509 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700510{
511 struct drm_i915_gem_pread *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000512 struct drm_i915_gem_object *obj;
Chris Wilson35b62a82010-09-26 20:23:38 +0100513 int ret = 0;
Eric Anholt673a3942008-07-30 12:06:12 -0700514
Chris Wilson51311d02010-11-17 09:10:42 +0000515 if (args->size == 0)
516 return 0;
517
518 if (!access_ok(VERIFY_WRITE,
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200519 to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +0000520 args->size))
521 return -EFAULT;
522
Chris Wilson4f27b752010-10-14 15:26:45 +0100523 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100524 if (ret)
Chris Wilson4f27b752010-10-14 15:26:45 +0100525 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700526
Chris Wilson05394f32010-11-08 19:18:58 +0000527 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000528 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100529 ret = -ENOENT;
530 goto unlock;
Chris Wilson4f27b752010-10-14 15:26:45 +0100531 }
Eric Anholt673a3942008-07-30 12:06:12 -0700532
Chris Wilson7dcd2492010-09-26 20:21:44 +0100533 /* Bounds check source. */
Chris Wilson05394f32010-11-08 19:18:58 +0000534 if (args->offset > obj->base.size ||
535 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100536 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100537 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100538 }
539
Daniel Vetter1286ff72012-05-10 15:25:09 +0200540 /* prime objects have no backing filp to GEM pread/pwrite
541 * pages from.
542 */
543 if (!obj->base.filp) {
544 ret = -EINVAL;
545 goto out;
546 }
547
Chris Wilsondb53a302011-02-03 11:57:46 +0000548 trace_i915_gem_object_pread(obj, args->offset, args->size);
549
Daniel Vetterdbf7bff2012-03-25 19:47:29 +0200550 ret = i915_gem_shmem_pread(dev, obj, args, file);
Eric Anholt673a3942008-07-30 12:06:12 -0700551
Chris Wilson35b62a82010-09-26 20:23:38 +0100552out:
Chris Wilson05394f32010-11-08 19:18:58 +0000553 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100554unlock:
Chris Wilson4f27b752010-10-14 15:26:45 +0100555 mutex_unlock(&dev->struct_mutex);
Eric Anholteb014592009-03-10 11:44:52 -0700556 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700557}
558
Keith Packard0839ccb2008-10-30 19:38:48 -0700559/* This is the fast write path which cannot handle
560 * page faults in the source data
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700561 */
Linus Torvalds9b7530cc2008-10-20 14:16:43 -0700562
Keith Packard0839ccb2008-10-30 19:38:48 -0700563static inline int
564fast_user_write(struct io_mapping *mapping,
565 loff_t page_base, int page_offset,
566 char __user *user_data,
567 int length)
568{
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700569 void __iomem *vaddr_atomic;
570 void *vaddr;
Keith Packard0839ccb2008-10-30 19:38:48 -0700571 unsigned long unwritten;
572
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700573 vaddr_atomic = io_mapping_map_atomic_wc(mapping, page_base);
Ben Widawsky4f0c7cf2012-04-16 14:07:47 -0700574 /* We can use the cpu mem copy function because this is X86. */
575 vaddr = (void __force*)vaddr_atomic + page_offset;
576 unwritten = __copy_from_user_inatomic_nocache(vaddr,
Keith Packard0839ccb2008-10-30 19:38:48 -0700577 user_data, length);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -0700578 io_mapping_unmap_atomic(vaddr_atomic);
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100579 return unwritten;
Keith Packard0839ccb2008-10-30 19:38:48 -0700580}
581
Eric Anholt3de09aa2009-03-09 09:42:23 -0700582/**
583 * This is the fast pwrite path, where we copy the data directly from the
584 * user into the GTT, uncached.
585 */
Eric Anholt673a3942008-07-30 12:06:12 -0700586static int
Chris Wilson05394f32010-11-08 19:18:58 +0000587i915_gem_gtt_pwrite_fast(struct drm_device *dev,
588 struct drm_i915_gem_object *obj,
Eric Anholt3de09aa2009-03-09 09:42:23 -0700589 struct drm_i915_gem_pwrite *args,
Chris Wilson05394f32010-11-08 19:18:58 +0000590 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700591{
Keith Packard0839ccb2008-10-30 19:38:48 -0700592 drm_i915_private_t *dev_priv = dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -0700593 ssize_t remain;
Keith Packard0839ccb2008-10-30 19:38:48 -0700594 loff_t offset, page_base;
Eric Anholt673a3942008-07-30 12:06:12 -0700595 char __user *user_data;
Daniel Vetter935aaa62012-03-25 19:47:35 +0200596 int page_offset, page_length, ret;
597
Chris Wilson86a1ee22012-08-11 15:41:04 +0100598 ret = i915_gem_object_pin(obj, 0, true, true);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200599 if (ret)
600 goto out;
601
602 ret = i915_gem_object_set_to_gtt_domain(obj, true);
603 if (ret)
604 goto out_unpin;
605
606 ret = i915_gem_object_put_fence(obj);
607 if (ret)
608 goto out_unpin;
Eric Anholt673a3942008-07-30 12:06:12 -0700609
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200610 user_data = to_user_ptr(args->data_ptr);
Eric Anholt673a3942008-07-30 12:06:12 -0700611 remain = args->size;
Eric Anholt673a3942008-07-30 12:06:12 -0700612
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700613 offset = i915_gem_obj_ggtt_offset(obj) + args->offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700614
615 while (remain > 0) {
616 /* Operation in this page
617 *
Keith Packard0839ccb2008-10-30 19:38:48 -0700618 * page_base = page offset within aperture
619 * page_offset = offset within page
620 * page_length = bytes to copy for this page
Eric Anholt673a3942008-07-30 12:06:12 -0700621 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100622 page_base = offset & PAGE_MASK;
623 page_offset = offset_in_page(offset);
Keith Packard0839ccb2008-10-30 19:38:48 -0700624 page_length = remain;
625 if ((page_offset + remain) > PAGE_SIZE)
626 page_length = PAGE_SIZE - page_offset;
Eric Anholt673a3942008-07-30 12:06:12 -0700627
Keith Packard0839ccb2008-10-30 19:38:48 -0700628 /* If we get a fault while copying data, then (presumably) our
Eric Anholt3de09aa2009-03-09 09:42:23 -0700629 * source page isn't available. Return the error and we'll
630 * retry in the slow path.
Keith Packard0839ccb2008-10-30 19:38:48 -0700631 */
Ben Widawsky5d4545a2013-01-17 12:45:15 -0800632 if (fast_user_write(dev_priv->gtt.mappable, page_base,
Daniel Vetter935aaa62012-03-25 19:47:35 +0200633 page_offset, user_data, page_length)) {
634 ret = -EFAULT;
635 goto out_unpin;
636 }
Eric Anholt673a3942008-07-30 12:06:12 -0700637
Keith Packard0839ccb2008-10-30 19:38:48 -0700638 remain -= page_length;
639 user_data += page_length;
640 offset += page_length;
Eric Anholt673a3942008-07-30 12:06:12 -0700641 }
Eric Anholt673a3942008-07-30 12:06:12 -0700642
Daniel Vetter935aaa62012-03-25 19:47:35 +0200643out_unpin:
644 i915_gem_object_unpin(obj);
645out:
Eric Anholt3de09aa2009-03-09 09:42:23 -0700646 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700647}
648
Daniel Vetterd174bd62012-03-25 19:47:40 +0200649/* Per-page copy function for the shmem pwrite fastpath.
650 * Flushes invalid cachelines before writing to the target if
651 * needs_clflush_before is set and flushes out any written cachelines after
652 * writing if needs_clflush is set. */
Eric Anholt673a3942008-07-30 12:06:12 -0700653static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200654shmem_pwrite_fast(struct page *page, int shmem_page_offset, int page_length,
655 char __user *user_data,
656 bool page_do_bit17_swizzling,
657 bool needs_clflush_before,
658 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700659{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200660 char *vaddr;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700661 int ret;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700662
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200663 if (unlikely(page_do_bit17_swizzling))
Daniel Vetterd174bd62012-03-25 19:47:40 +0200664 return -EINVAL;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700665
Daniel Vetterd174bd62012-03-25 19:47:40 +0200666 vaddr = kmap_atomic(page);
667 if (needs_clflush_before)
668 drm_clflush_virt_range(vaddr + shmem_page_offset,
669 page_length);
670 ret = __copy_from_user_inatomic_nocache(vaddr + shmem_page_offset,
671 user_data,
672 page_length);
673 if (needs_clflush_after)
674 drm_clflush_virt_range(vaddr + shmem_page_offset,
675 page_length);
676 kunmap_atomic(vaddr);
Eric Anholt3de09aa2009-03-09 09:42:23 -0700677
Chris Wilson755d2212012-09-04 21:02:55 +0100678 return ret ? -EFAULT : 0;
Eric Anholt3de09aa2009-03-09 09:42:23 -0700679}
680
Daniel Vetterd174bd62012-03-25 19:47:40 +0200681/* Only difference to the fast-path function is that this can handle bit17
682 * and uses non-atomic copy and kmap functions. */
Eric Anholt3043c602008-10-02 12:24:47 -0700683static int
Daniel Vetterd174bd62012-03-25 19:47:40 +0200684shmem_pwrite_slow(struct page *page, int shmem_page_offset, int page_length,
685 char __user *user_data,
686 bool page_do_bit17_swizzling,
687 bool needs_clflush_before,
688 bool needs_clflush_after)
Eric Anholt673a3942008-07-30 12:06:12 -0700689{
Daniel Vetterd174bd62012-03-25 19:47:40 +0200690 char *vaddr;
691 int ret;
Eric Anholt40123c12009-03-09 13:42:30 -0700692
Daniel Vetterd174bd62012-03-25 19:47:40 +0200693 vaddr = kmap(page);
Daniel Vettere7e58eb2012-03-25 19:47:43 +0200694 if (unlikely(needs_clflush_before || page_do_bit17_swizzling))
Daniel Vetter23c18c72012-03-25 19:47:42 +0200695 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
696 page_length,
697 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200698 if (page_do_bit17_swizzling)
699 ret = __copy_from_user_swizzled(vaddr, shmem_page_offset,
Chris Wilsone5281cc2010-10-28 13:45:36 +0100700 user_data,
701 page_length);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200702 else
703 ret = __copy_from_user(vaddr + shmem_page_offset,
704 user_data,
705 page_length);
706 if (needs_clflush_after)
Daniel Vetter23c18c72012-03-25 19:47:42 +0200707 shmem_clflush_swizzled_range(vaddr + shmem_page_offset,
708 page_length,
709 page_do_bit17_swizzling);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200710 kunmap(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100711
Chris Wilson755d2212012-09-04 21:02:55 +0100712 return ret ? -EFAULT : 0;
Eric Anholt40123c12009-03-09 13:42:30 -0700713}
714
Eric Anholt40123c12009-03-09 13:42:30 -0700715static int
Daniel Vettere244a442012-03-25 19:47:28 +0200716i915_gem_shmem_pwrite(struct drm_device *dev,
717 struct drm_i915_gem_object *obj,
718 struct drm_i915_gem_pwrite *args,
719 struct drm_file *file)
Eric Anholt40123c12009-03-09 13:42:30 -0700720{
Eric Anholt40123c12009-03-09 13:42:30 -0700721 ssize_t remain;
Daniel Vetter8c599672011-12-14 13:57:31 +0100722 loff_t offset;
723 char __user *user_data;
Ben Widawskyeb2c0c82012-02-15 14:42:43 +0100724 int shmem_page_offset, page_length, ret = 0;
Daniel Vetter8c599672011-12-14 13:57:31 +0100725 int obj_do_bit17_swizzling, page_do_bit17_swizzling;
Daniel Vettere244a442012-03-25 19:47:28 +0200726 int hit_slowpath = 0;
Daniel Vetter58642882012-03-25 19:47:37 +0200727 int needs_clflush_after = 0;
728 int needs_clflush_before = 0;
Imre Deak67d5a502013-02-18 19:28:02 +0200729 struct sg_page_iter sg_iter;
Eric Anholt40123c12009-03-09 13:42:30 -0700730
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200731 user_data = to_user_ptr(args->data_ptr);
Eric Anholt40123c12009-03-09 13:42:30 -0700732 remain = args->size;
733
Daniel Vetter8c599672011-12-14 13:57:31 +0100734 obj_do_bit17_swizzling = i915_gem_object_needs_bit17_swizzle(obj);
Eric Anholt40123c12009-03-09 13:42:30 -0700735
Daniel Vetter58642882012-03-25 19:47:37 +0200736 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
737 /* If we're not in the cpu write domain, set ourself into the gtt
738 * write domain and manually flush cachelines (if required). This
739 * optimizes for the case when the gpu will use the data
740 * right away and we therefore have to clflush anyway. */
741 if (obj->cache_level == I915_CACHE_NONE)
742 needs_clflush_after = 1;
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700743 if (i915_gem_obj_ggtt_bound(obj)) {
Chris Wilson6c085a72012-08-20 11:40:46 +0200744 ret = i915_gem_object_set_to_gtt_domain(obj, true);
745 if (ret)
746 return ret;
747 }
Daniel Vetter58642882012-03-25 19:47:37 +0200748 }
749 /* Same trick applies for invalidate partially written cachelines before
750 * writing. */
751 if (!(obj->base.read_domains & I915_GEM_DOMAIN_CPU)
752 && obj->cache_level == I915_CACHE_NONE)
753 needs_clflush_before = 1;
754
Chris Wilson755d2212012-09-04 21:02:55 +0100755 ret = i915_gem_object_get_pages(obj);
756 if (ret)
757 return ret;
758
759 i915_gem_object_pin_pages(obj);
760
Eric Anholt40123c12009-03-09 13:42:30 -0700761 offset = args->offset;
Chris Wilson05394f32010-11-08 19:18:58 +0000762 obj->dirty = 1;
Eric Anholt40123c12009-03-09 13:42:30 -0700763
Imre Deak67d5a502013-02-18 19:28:02 +0200764 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents,
765 offset >> PAGE_SHIFT) {
Imre Deak2db76d72013-03-26 15:14:18 +0200766 struct page *page = sg_page_iter_page(&sg_iter);
Daniel Vetter58642882012-03-25 19:47:37 +0200767 int partial_cacheline_write;
Chris Wilsone5281cc2010-10-28 13:45:36 +0100768
Chris Wilson9da3da62012-06-01 15:20:22 +0100769 if (remain <= 0)
770 break;
771
Eric Anholt40123c12009-03-09 13:42:30 -0700772 /* Operation in this page
773 *
Eric Anholt40123c12009-03-09 13:42:30 -0700774 * shmem_page_offset = offset within page in shmem file
Eric Anholt40123c12009-03-09 13:42:30 -0700775 * page_length = bytes to copy for this page
776 */
Chris Wilsonc8cbbb82011-05-12 22:17:11 +0100777 shmem_page_offset = offset_in_page(offset);
Eric Anholt40123c12009-03-09 13:42:30 -0700778
779 page_length = remain;
780 if ((shmem_page_offset + page_length) > PAGE_SIZE)
781 page_length = PAGE_SIZE - shmem_page_offset;
Eric Anholt40123c12009-03-09 13:42:30 -0700782
Daniel Vetter58642882012-03-25 19:47:37 +0200783 /* If we don't overwrite a cacheline completely we need to be
784 * careful to have up-to-date data by first clflushing. Don't
785 * overcomplicate things and flush the entire patch. */
786 partial_cacheline_write = needs_clflush_before &&
787 ((shmem_page_offset | page_length)
788 & (boot_cpu_data.x86_clflush_size - 1));
789
Daniel Vetter8c599672011-12-14 13:57:31 +0100790 page_do_bit17_swizzling = obj_do_bit17_swizzling &&
791 (page_to_phys(page) & (1 << 17)) != 0;
792
Daniel Vetterd174bd62012-03-25 19:47:40 +0200793 ret = shmem_pwrite_fast(page, shmem_page_offset, page_length,
794 user_data, page_do_bit17_swizzling,
795 partial_cacheline_write,
796 needs_clflush_after);
797 if (ret == 0)
798 goto next_page;
Eric Anholt40123c12009-03-09 13:42:30 -0700799
Daniel Vettere244a442012-03-25 19:47:28 +0200800 hit_slowpath = 1;
Daniel Vettere244a442012-03-25 19:47:28 +0200801 mutex_unlock(&dev->struct_mutex);
Daniel Vetterd174bd62012-03-25 19:47:40 +0200802 ret = shmem_pwrite_slow(page, shmem_page_offset, page_length,
803 user_data, page_do_bit17_swizzling,
804 partial_cacheline_write,
805 needs_clflush_after);
Eric Anholt40123c12009-03-09 13:42:30 -0700806
Daniel Vettere244a442012-03-25 19:47:28 +0200807 mutex_lock(&dev->struct_mutex);
Chris Wilson755d2212012-09-04 21:02:55 +0100808
Daniel Vettere244a442012-03-25 19:47:28 +0200809next_page:
Chris Wilsone5281cc2010-10-28 13:45:36 +0100810 set_page_dirty(page);
811 mark_page_accessed(page);
Chris Wilsone5281cc2010-10-28 13:45:36 +0100812
Chris Wilson755d2212012-09-04 21:02:55 +0100813 if (ret)
Daniel Vetter8c599672011-12-14 13:57:31 +0100814 goto out;
Daniel Vetter8c599672011-12-14 13:57:31 +0100815
Eric Anholt40123c12009-03-09 13:42:30 -0700816 remain -= page_length;
Daniel Vetter8c599672011-12-14 13:57:31 +0100817 user_data += page_length;
Eric Anholt40123c12009-03-09 13:42:30 -0700818 offset += page_length;
819 }
820
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100821out:
Chris Wilson755d2212012-09-04 21:02:55 +0100822 i915_gem_object_unpin_pages(obj);
823
Daniel Vettere244a442012-03-25 19:47:28 +0200824 if (hit_slowpath) {
Daniel Vetter8dcf0152012-11-15 16:53:58 +0100825 /*
826 * Fixup: Flush cpu caches in case we didn't flush the dirty
827 * cachelines in-line while writing and the object moved
828 * out of the cpu write domain while we've dropped the lock.
829 */
830 if (!needs_clflush_after &&
831 obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
Daniel Vettere244a442012-03-25 19:47:28 +0200832 i915_gem_clflush_object(obj);
Ben Widawskye76e9ae2012-11-04 09:21:27 -0800833 i915_gem_chipset_flush(dev);
Daniel Vettere244a442012-03-25 19:47:28 +0200834 }
Daniel Vetter8c599672011-12-14 13:57:31 +0100835 }
Eric Anholt40123c12009-03-09 13:42:30 -0700836
Daniel Vetter58642882012-03-25 19:47:37 +0200837 if (needs_clflush_after)
Ben Widawskye76e9ae2012-11-04 09:21:27 -0800838 i915_gem_chipset_flush(dev);
Daniel Vetter58642882012-03-25 19:47:37 +0200839
Eric Anholt40123c12009-03-09 13:42:30 -0700840 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -0700841}
842
843/**
844 * Writes data to the object referenced by handle.
845 *
846 * On error, the contents of the buffer that were to be modified are undefined.
847 */
848int
849i915_gem_pwrite_ioctl(struct drm_device *dev, void *data,
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100850 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -0700851{
852 struct drm_i915_gem_pwrite *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +0000853 struct drm_i915_gem_object *obj;
Chris Wilson51311d02010-11-17 09:10:42 +0000854 int ret;
855
856 if (args->size == 0)
857 return 0;
858
859 if (!access_ok(VERIFY_READ,
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200860 to_user_ptr(args->data_ptr),
Chris Wilson51311d02010-11-17 09:10:42 +0000861 args->size))
862 return -EFAULT;
863
Ville Syrjälä2bb46292013-02-22 16:12:51 +0200864 ret = fault_in_multipages_readable(to_user_ptr(args->data_ptr),
Daniel Vetterf56f8212012-03-25 19:47:41 +0200865 args->size);
Chris Wilson51311d02010-11-17 09:10:42 +0000866 if (ret)
867 return -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -0700868
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100869 ret = i915_mutex_lock_interruptible(dev);
870 if (ret)
871 return ret;
872
Chris Wilson05394f32010-11-08 19:18:58 +0000873 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +0000874 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100875 ret = -ENOENT;
876 goto unlock;
877 }
Eric Anholt673a3942008-07-30 12:06:12 -0700878
Chris Wilson7dcd2492010-09-26 20:21:44 +0100879 /* Bounds check destination. */
Chris Wilson05394f32010-11-08 19:18:58 +0000880 if (args->offset > obj->base.size ||
881 args->size > obj->base.size - args->offset) {
Chris Wilsonce9d4192010-09-26 20:50:05 +0100882 ret = -EINVAL;
Chris Wilson35b62a82010-09-26 20:23:38 +0100883 goto out;
Chris Wilsonce9d4192010-09-26 20:50:05 +0100884 }
885
Daniel Vetter1286ff72012-05-10 15:25:09 +0200886 /* prime objects have no backing filp to GEM pread/pwrite
887 * pages from.
888 */
889 if (!obj->base.filp) {
890 ret = -EINVAL;
891 goto out;
892 }
893
Chris Wilsondb53a302011-02-03 11:57:46 +0000894 trace_i915_gem_object_pwrite(obj, args->offset, args->size);
895
Daniel Vetter935aaa62012-03-25 19:47:35 +0200896 ret = -EFAULT;
Eric Anholt673a3942008-07-30 12:06:12 -0700897 /* We can only do the GTT pwrite on untiled buffers, as otherwise
898 * it would end up going through the fenced access, and we'll get
899 * different detiling behavior between reading and writing.
900 * pread/pwrite currently are reading and writing from the CPU
901 * perspective, requiring manual detiling by the client.
902 */
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100903 if (obj->phys_obj) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100904 ret = i915_gem_phys_pwrite(dev, obj, args, file);
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100905 goto out;
906 }
907
Chris Wilson86a1ee22012-08-11 15:41:04 +0100908 if (obj->cache_level == I915_CACHE_NONE &&
Daniel Vetterc07496f2012-04-13 15:51:51 +0200909 obj->tiling_mode == I915_TILING_NONE &&
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100910 obj->base.write_domain != I915_GEM_DOMAIN_CPU) {
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100911 ret = i915_gem_gtt_pwrite_fast(dev, obj, args, file);
Daniel Vetter935aaa62012-03-25 19:47:35 +0200912 /* Note that the gtt paths might fail with non-page-backed user
913 * pointers (e.g. gtt mappings when moving data between
914 * textures). Fallback to the shmem path in that case. */
Eric Anholt40123c12009-03-09 13:42:30 -0700915 }
Eric Anholt673a3942008-07-30 12:06:12 -0700916
Chris Wilson86a1ee22012-08-11 15:41:04 +0100917 if (ret == -EFAULT || ret == -ENOSPC)
Daniel Vetter935aaa62012-03-25 19:47:35 +0200918 ret = i915_gem_shmem_pwrite(dev, obj, args, file);
Daniel Vetter5c0480f2011-12-14 13:57:30 +0100919
Chris Wilson35b62a82010-09-26 20:23:38 +0100920out:
Chris Wilson05394f32010-11-08 19:18:58 +0000921 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +0100922unlock:
Chris Wilsonfbd5a262010-10-14 15:03:58 +0100923 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -0700924 return ret;
925}
926
Chris Wilsonb3612372012-08-24 09:35:08 +0100927int
Daniel Vetter33196de2012-11-14 17:14:05 +0100928i915_gem_check_wedge(struct i915_gpu_error *error,
Chris Wilsonb3612372012-08-24 09:35:08 +0100929 bool interruptible)
930{
Daniel Vetter1f83fee2012-11-15 17:17:22 +0100931 if (i915_reset_in_progress(error)) {
Chris Wilsonb3612372012-08-24 09:35:08 +0100932 /* Non-interruptible callers can't handle -EAGAIN, hence return
933 * -EIO unconditionally for these. */
934 if (!interruptible)
935 return -EIO;
936
Daniel Vetter1f83fee2012-11-15 17:17:22 +0100937 /* Recovery complete, but the reset failed ... */
938 if (i915_terminally_wedged(error))
Chris Wilsonb3612372012-08-24 09:35:08 +0100939 return -EIO;
940
941 return -EAGAIN;
942 }
943
944 return 0;
945}
946
947/*
948 * Compare seqno against outstanding lazy request. Emit a request if they are
949 * equal.
950 */
951static int
952i915_gem_check_olr(struct intel_ring_buffer *ring, u32 seqno)
953{
954 int ret;
955
956 BUG_ON(!mutex_is_locked(&ring->dev->struct_mutex));
957
958 ret = 0;
959 if (seqno == ring->outstanding_lazy_request)
Mika Kuoppala0025c072013-06-12 12:35:30 +0300960 ret = i915_add_request(ring, NULL);
Chris Wilsonb3612372012-08-24 09:35:08 +0100961
962 return ret;
963}
964
965/**
966 * __wait_seqno - wait until execution of seqno has finished
967 * @ring: the ring expected to report seqno
968 * @seqno: duh!
Daniel Vetterf69061b2012-12-06 09:01:42 +0100969 * @reset_counter: reset sequence associated with the given seqno
Chris Wilsonb3612372012-08-24 09:35:08 +0100970 * @interruptible: do an interruptible wait (normally yes)
971 * @timeout: in - how long to wait (NULL forever); out - how much time remaining
972 *
Daniel Vetterf69061b2012-12-06 09:01:42 +0100973 * Note: It is of utmost importance that the passed in seqno and reset_counter
974 * values have been read by the caller in an smp safe manner. Where read-side
975 * locks are involved, it is sufficient to read the reset_counter before
976 * unlocking the lock that protects the seqno. For lockless tricks, the
977 * reset_counter _must_ be read before, and an appropriate smp_rmb must be
978 * inserted.
979 *
Chris Wilsonb3612372012-08-24 09:35:08 +0100980 * Returns 0 if the seqno was found within the alloted time. Else returns the
981 * errno with remaining time filled in timeout argument.
982 */
983static int __wait_seqno(struct intel_ring_buffer *ring, u32 seqno,
Daniel Vetterf69061b2012-12-06 09:01:42 +0100984 unsigned reset_counter,
Chris Wilsonb3612372012-08-24 09:35:08 +0100985 bool interruptible, struct timespec *timeout)
986{
987 drm_i915_private_t *dev_priv = ring->dev->dev_private;
988 struct timespec before, now, wait_time={1,0};
989 unsigned long timeout_jiffies;
990 long end;
991 bool wait_forever = true;
992 int ret;
993
994 if (i915_seqno_passed(ring->get_seqno(ring, true), seqno))
995 return 0;
996
997 trace_i915_gem_request_wait_begin(ring, seqno);
998
999 if (timeout != NULL) {
1000 wait_time = *timeout;
1001 wait_forever = false;
1002 }
1003
Imre Deake054cc32013-05-21 20:03:19 +03001004 timeout_jiffies = timespec_to_jiffies_timeout(&wait_time);
Chris Wilsonb3612372012-08-24 09:35:08 +01001005
1006 if (WARN_ON(!ring->irq_get(ring)))
1007 return -ENODEV;
1008
1009 /* Record current time in case interrupted by signal, or wedged * */
1010 getrawmonotonic(&before);
1011
1012#define EXIT_COND \
1013 (i915_seqno_passed(ring->get_seqno(ring, false), seqno) || \
Daniel Vetterf69061b2012-12-06 09:01:42 +01001014 i915_reset_in_progress(&dev_priv->gpu_error) || \
1015 reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
Chris Wilsonb3612372012-08-24 09:35:08 +01001016 do {
1017 if (interruptible)
1018 end = wait_event_interruptible_timeout(ring->irq_queue,
1019 EXIT_COND,
1020 timeout_jiffies);
1021 else
1022 end = wait_event_timeout(ring->irq_queue, EXIT_COND,
1023 timeout_jiffies);
1024
Daniel Vetterf69061b2012-12-06 09:01:42 +01001025 /* We need to check whether any gpu reset happened in between
1026 * the caller grabbing the seqno and now ... */
1027 if (reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
1028 end = -EAGAIN;
1029
1030 /* ... but upgrade the -EGAIN to an -EIO if the gpu is truely
1031 * gone. */
Daniel Vetter33196de2012-11-14 17:14:05 +01001032 ret = i915_gem_check_wedge(&dev_priv->gpu_error, interruptible);
Chris Wilsonb3612372012-08-24 09:35:08 +01001033 if (ret)
1034 end = ret;
1035 } while (end == 0 && wait_forever);
1036
1037 getrawmonotonic(&now);
1038
1039 ring->irq_put(ring);
1040 trace_i915_gem_request_wait_end(ring, seqno);
1041#undef EXIT_COND
1042
1043 if (timeout) {
1044 struct timespec sleep_time = timespec_sub(now, before);
1045 *timeout = timespec_sub(*timeout, sleep_time);
Chris Wilson4f42f4e2013-04-26 16:22:46 +03001046 if (!timespec_valid(timeout)) /* i.e. negative time remains */
1047 set_normalized_timespec(timeout, 0, 0);
Chris Wilsonb3612372012-08-24 09:35:08 +01001048 }
1049
1050 switch (end) {
1051 case -EIO:
1052 case -EAGAIN: /* Wedged */
1053 case -ERESTARTSYS: /* Signal */
1054 return (int)end;
1055 case 0: /* Timeout */
Chris Wilsonb3612372012-08-24 09:35:08 +01001056 return -ETIME;
1057 default: /* Completed */
1058 WARN_ON(end < 0); /* We're not aware of other errors */
1059 return 0;
1060 }
1061}
1062
1063/**
1064 * Waits for a sequence number to be signaled, and cleans up the
1065 * request and object lists appropriately for that event.
1066 */
1067int
1068i915_wait_seqno(struct intel_ring_buffer *ring, uint32_t seqno)
1069{
1070 struct drm_device *dev = ring->dev;
1071 struct drm_i915_private *dev_priv = dev->dev_private;
1072 bool interruptible = dev_priv->mm.interruptible;
1073 int ret;
1074
1075 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
1076 BUG_ON(seqno == 0);
1077
Daniel Vetter33196de2012-11-14 17:14:05 +01001078 ret = i915_gem_check_wedge(&dev_priv->gpu_error, interruptible);
Chris Wilsonb3612372012-08-24 09:35:08 +01001079 if (ret)
1080 return ret;
1081
1082 ret = i915_gem_check_olr(ring, seqno);
1083 if (ret)
1084 return ret;
1085
Daniel Vetterf69061b2012-12-06 09:01:42 +01001086 return __wait_seqno(ring, seqno,
1087 atomic_read(&dev_priv->gpu_error.reset_counter),
1088 interruptible, NULL);
Chris Wilsonb3612372012-08-24 09:35:08 +01001089}
1090
Chris Wilsond26e3af2013-06-29 22:05:26 +01001091static int
1092i915_gem_object_wait_rendering__tail(struct drm_i915_gem_object *obj,
1093 struct intel_ring_buffer *ring)
1094{
1095 i915_gem_retire_requests_ring(ring);
1096
1097 /* Manually manage the write flush as we may have not yet
1098 * retired the buffer.
1099 *
1100 * Note that the last_write_seqno is always the earlier of
1101 * the two (read/write) seqno, so if we haved successfully waited,
1102 * we know we have passed the last write.
1103 */
1104 obj->last_write_seqno = 0;
1105 obj->base.write_domain &= ~I915_GEM_GPU_DOMAINS;
1106
1107 return 0;
1108}
1109
Chris Wilsonb3612372012-08-24 09:35:08 +01001110/**
1111 * Ensures that all rendering to the object has completed and the object is
1112 * safe to unbind from the GTT or access from the CPU.
1113 */
1114static __must_check int
1115i915_gem_object_wait_rendering(struct drm_i915_gem_object *obj,
1116 bool readonly)
1117{
1118 struct intel_ring_buffer *ring = obj->ring;
1119 u32 seqno;
1120 int ret;
1121
1122 seqno = readonly ? obj->last_write_seqno : obj->last_read_seqno;
1123 if (seqno == 0)
1124 return 0;
1125
1126 ret = i915_wait_seqno(ring, seqno);
1127 if (ret)
1128 return ret;
1129
Chris Wilsond26e3af2013-06-29 22:05:26 +01001130 return i915_gem_object_wait_rendering__tail(obj, ring);
Chris Wilsonb3612372012-08-24 09:35:08 +01001131}
1132
Chris Wilson3236f572012-08-24 09:35:09 +01001133/* A nonblocking variant of the above wait. This is a highly dangerous routine
1134 * as the object state may change during this call.
1135 */
1136static __must_check int
1137i915_gem_object_wait_rendering__nonblocking(struct drm_i915_gem_object *obj,
1138 bool readonly)
1139{
1140 struct drm_device *dev = obj->base.dev;
1141 struct drm_i915_private *dev_priv = dev->dev_private;
1142 struct intel_ring_buffer *ring = obj->ring;
Daniel Vetterf69061b2012-12-06 09:01:42 +01001143 unsigned reset_counter;
Chris Wilson3236f572012-08-24 09:35:09 +01001144 u32 seqno;
1145 int ret;
1146
1147 BUG_ON(!mutex_is_locked(&dev->struct_mutex));
1148 BUG_ON(!dev_priv->mm.interruptible);
1149
1150 seqno = readonly ? obj->last_write_seqno : obj->last_read_seqno;
1151 if (seqno == 0)
1152 return 0;
1153
Daniel Vetter33196de2012-11-14 17:14:05 +01001154 ret = i915_gem_check_wedge(&dev_priv->gpu_error, true);
Chris Wilson3236f572012-08-24 09:35:09 +01001155 if (ret)
1156 return ret;
1157
1158 ret = i915_gem_check_olr(ring, seqno);
1159 if (ret)
1160 return ret;
1161
Daniel Vetterf69061b2012-12-06 09:01:42 +01001162 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilson3236f572012-08-24 09:35:09 +01001163 mutex_unlock(&dev->struct_mutex);
Daniel Vetterf69061b2012-12-06 09:01:42 +01001164 ret = __wait_seqno(ring, seqno, reset_counter, true, NULL);
Chris Wilson3236f572012-08-24 09:35:09 +01001165 mutex_lock(&dev->struct_mutex);
Chris Wilsond26e3af2013-06-29 22:05:26 +01001166 if (ret)
1167 return ret;
Chris Wilson3236f572012-08-24 09:35:09 +01001168
Chris Wilsond26e3af2013-06-29 22:05:26 +01001169 return i915_gem_object_wait_rendering__tail(obj, ring);
Chris Wilson3236f572012-08-24 09:35:09 +01001170}
1171
Eric Anholt673a3942008-07-30 12:06:12 -07001172/**
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001173 * Called when user space prepares to use an object with the CPU, either
1174 * through the mmap ioctl's mapping or a GTT mapping.
Eric Anholt673a3942008-07-30 12:06:12 -07001175 */
1176int
1177i915_gem_set_domain_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001178 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001179{
1180 struct drm_i915_gem_set_domain *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001181 struct drm_i915_gem_object *obj;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001182 uint32_t read_domains = args->read_domains;
1183 uint32_t write_domain = args->write_domain;
Eric Anholt673a3942008-07-30 12:06:12 -07001184 int ret;
1185
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001186 /* Only handle setting domains to types used by the CPU. */
Chris Wilson21d509e2009-06-06 09:46:02 +01001187 if (write_domain & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001188 return -EINVAL;
1189
Chris Wilson21d509e2009-06-06 09:46:02 +01001190 if (read_domains & I915_GEM_GPU_DOMAINS)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001191 return -EINVAL;
1192
1193 /* Having something in the write domain implies it's in the read
1194 * domain, and only that read domain. Enforce that in the request.
1195 */
1196 if (write_domain != 0 && read_domains != write_domain)
1197 return -EINVAL;
1198
Chris Wilson76c1dec2010-09-25 11:22:51 +01001199 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001200 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001201 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07001202
Chris Wilson05394f32010-11-08 19:18:58 +00001203 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001204 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001205 ret = -ENOENT;
1206 goto unlock;
Chris Wilson76c1dec2010-09-25 11:22:51 +01001207 }
Jesse Barnes652c3932009-08-17 13:31:43 -07001208
Chris Wilson3236f572012-08-24 09:35:09 +01001209 /* Try to flush the object off the GPU without holding the lock.
1210 * We will repeat the flush holding the lock in the normal manner
1211 * to catch cases where we are gazumped.
1212 */
1213 ret = i915_gem_object_wait_rendering__nonblocking(obj, !write_domain);
1214 if (ret)
1215 goto unref;
1216
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001217 if (read_domains & I915_GEM_DOMAIN_GTT) {
1218 ret = i915_gem_object_set_to_gtt_domain(obj, write_domain != 0);
Eric Anholt02354392008-11-26 13:58:13 -08001219
1220 /* Silently promote "you're not bound, there was nothing to do"
1221 * to success, since the client was just asking us to
1222 * make sure everything was done.
1223 */
1224 if (ret == -EINVAL)
1225 ret = 0;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001226 } else {
Eric Anholte47c68e2008-11-14 13:35:19 -08001227 ret = i915_gem_object_set_to_cpu_domain(obj, write_domain != 0);
Eric Anholt2ef7eea2008-11-10 10:53:25 -08001228 }
1229
Chris Wilson3236f572012-08-24 09:35:09 +01001230unref:
Chris Wilson05394f32010-11-08 19:18:58 +00001231 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001232unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001233 mutex_unlock(&dev->struct_mutex);
1234 return ret;
1235}
1236
1237/**
1238 * Called when user space has done writes to this buffer
1239 */
1240int
1241i915_gem_sw_finish_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001242 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001243{
1244 struct drm_i915_gem_sw_finish *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00001245 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001246 int ret = 0;
1247
Chris Wilson76c1dec2010-09-25 11:22:51 +01001248 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001249 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001250 return ret;
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001251
Chris Wilson05394f32010-11-08 19:18:58 +00001252 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001253 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001254 ret = -ENOENT;
1255 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07001256 }
1257
Eric Anholt673a3942008-07-30 12:06:12 -07001258 /* Pinned buffers may be scanout, so flush the cache */
Chris Wilson05394f32010-11-08 19:18:58 +00001259 if (obj->pin_count)
Eric Anholte47c68e2008-11-14 13:35:19 -08001260 i915_gem_object_flush_cpu_write_domain(obj);
1261
Chris Wilson05394f32010-11-08 19:18:58 +00001262 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001263unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07001264 mutex_unlock(&dev->struct_mutex);
1265 return ret;
1266}
1267
1268/**
1269 * Maps the contents of an object, returning the address it is mapped
1270 * into.
1271 *
1272 * While the mapping holds a reference on the contents of the object, it doesn't
1273 * imply a ref on the object itself.
1274 */
1275int
1276i915_gem_mmap_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00001277 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07001278{
1279 struct drm_i915_gem_mmap *args = data;
1280 struct drm_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07001281 unsigned long addr;
1282
Chris Wilson05394f32010-11-08 19:18:58 +00001283 obj = drm_gem_object_lookup(dev, file, args->handle);
Eric Anholt673a3942008-07-30 12:06:12 -07001284 if (obj == NULL)
Chris Wilsonbf79cb92010-08-04 14:19:46 +01001285 return -ENOENT;
Eric Anholt673a3942008-07-30 12:06:12 -07001286
Daniel Vetter1286ff72012-05-10 15:25:09 +02001287 /* prime objects have no backing filp to GEM mmap
1288 * pages from.
1289 */
1290 if (!obj->filp) {
1291 drm_gem_object_unreference_unlocked(obj);
1292 return -EINVAL;
1293 }
1294
Linus Torvalds6be5ceb2012-04-20 17:13:58 -07001295 addr = vm_mmap(obj->filp, 0, args->size,
Eric Anholt673a3942008-07-30 12:06:12 -07001296 PROT_READ | PROT_WRITE, MAP_SHARED,
1297 args->offset);
Luca Barbieribc9025b2010-02-09 05:49:12 +00001298 drm_gem_object_unreference_unlocked(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07001299 if (IS_ERR((void *)addr))
1300 return addr;
1301
1302 args->addr_ptr = (uint64_t) addr;
1303
1304 return 0;
1305}
1306
Jesse Barnesde151cf2008-11-12 10:03:55 -08001307/**
1308 * i915_gem_fault - fault a page into the GTT
1309 * vma: VMA in question
1310 * vmf: fault info
1311 *
1312 * The fault handler is set up by drm_gem_mmap() when a object is GTT mapped
1313 * from userspace. The fault handler takes care of binding the object to
1314 * the GTT (if needed), allocating and programming a fence register (again,
1315 * only if needed based on whether the old reg is still valid or the object
1316 * is tiled) and inserting a new PTE into the faulting process.
1317 *
1318 * Note that the faulting process may involve evicting existing objects
1319 * from the GTT and/or fence registers to make room. So performance may
1320 * suffer if the GTT working set is large or there are few fence registers
1321 * left.
1322 */
1323int i915_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1324{
Chris Wilson05394f32010-11-08 19:18:58 +00001325 struct drm_i915_gem_object *obj = to_intel_bo(vma->vm_private_data);
1326 struct drm_device *dev = obj->base.dev;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001327 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001328 pgoff_t page_offset;
1329 unsigned long pfn;
1330 int ret = 0;
Jesse Barnes0f973f22009-01-26 17:10:45 -08001331 bool write = !!(vmf->flags & FAULT_FLAG_WRITE);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001332
1333 /* We don't use vmf->pgoff since that has the fake offset */
1334 page_offset = ((unsigned long)vmf->virtual_address - vma->vm_start) >>
1335 PAGE_SHIFT;
1336
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001337 ret = i915_mutex_lock_interruptible(dev);
1338 if (ret)
1339 goto out;
Chris Wilsona00b10c2010-09-24 21:15:47 +01001340
Chris Wilsondb53a302011-02-03 11:57:46 +00001341 trace_i915_gem_object_fault(obj, page_offset, true, write);
1342
Chris Wilsoneb119bd2012-12-16 12:43:36 +00001343 /* Access to snoopable pages through the GTT is incoherent. */
1344 if (obj->cache_level != I915_CACHE_NONE && !HAS_LLC(dev)) {
1345 ret = -EINVAL;
1346 goto unlock;
1347 }
1348
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001349 /* Now bind it into the GTT if needed */
Chris Wilsonc9839302012-11-20 10:45:17 +00001350 ret = i915_gem_object_pin(obj, 0, true, false);
Chris Wilsond9e86c02010-11-10 16:40:20 +00001351 if (ret)
1352 goto unlock;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001353
Chris Wilsonc9839302012-11-20 10:45:17 +00001354 ret = i915_gem_object_set_to_gtt_domain(obj, write);
1355 if (ret)
1356 goto unpin;
1357
1358 ret = i915_gem_object_get_fence(obj);
1359 if (ret)
1360 goto unpin;
Chris Wilson7d1c4802010-08-07 21:45:03 +01001361
Chris Wilson6299f992010-11-24 12:23:44 +00001362 obj->fault_mappable = true;
1363
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001364 pfn = dev_priv->gtt.mappable_base + i915_gem_obj_ggtt_offset(obj);
1365 pfn >>= PAGE_SHIFT;
1366 pfn += page_offset;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001367
1368 /* Finally, remap it using the new GTT offset */
1369 ret = vm_insert_pfn(vma, (unsigned long)vmf->virtual_address, pfn);
Chris Wilsonc9839302012-11-20 10:45:17 +00001370unpin:
1371 i915_gem_object_unpin(obj);
Chris Wilsonc7150892009-09-23 00:43:56 +01001372unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001373 mutex_unlock(&dev->struct_mutex);
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001374out:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001375 switch (ret) {
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001376 case -EIO:
Daniel Vettera9340cc2012-07-04 22:18:42 +02001377 /* If this -EIO is due to a gpu hang, give the reset code a
1378 * chance to clean up the mess. Otherwise return the proper
1379 * SIGBUS. */
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001380 if (i915_terminally_wedged(&dev_priv->gpu_error))
Daniel Vettera9340cc2012-07-04 22:18:42 +02001381 return VM_FAULT_SIGBUS;
Chris Wilson045e7692010-11-07 09:18:22 +00001382 case -EAGAIN:
Chris Wilsond9bc7e92011-02-07 13:09:31 +00001383 /* Give the error handler a chance to run and move the
1384 * objects off the GPU active list. Next time we service the
1385 * fault, we should be able to transition the page into the
1386 * GTT without touching the GPU (and so avoid further
1387 * EIO/EGAIN). If the GPU is wedged, then there is no issue
1388 * with coherency, just lost writes.
1389 */
Chris Wilson045e7692010-11-07 09:18:22 +00001390 set_need_resched();
Chris Wilsonc7150892009-09-23 00:43:56 +01001391 case 0:
1392 case -ERESTARTSYS:
Chris Wilsonbed636a2011-02-11 20:31:19 +00001393 case -EINTR:
Dmitry Rogozhkine79e0fe2012-10-03 17:15:26 +03001394 case -EBUSY:
1395 /*
1396 * EBUSY is ok: this just means that another thread
1397 * already did the job.
1398 */
Chris Wilsonc7150892009-09-23 00:43:56 +01001399 return VM_FAULT_NOPAGE;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001400 case -ENOMEM:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001401 return VM_FAULT_OOM;
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001402 case -ENOSPC:
1403 return VM_FAULT_SIGBUS;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001404 default:
Daniel Vettera7c2e1a2012-10-17 11:17:16 +02001405 WARN_ONCE(ret, "unhandled error in i915_gem_fault: %i\n", ret);
Chris Wilsonc7150892009-09-23 00:43:56 +01001406 return VM_FAULT_SIGBUS;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001407 }
1408}
1409
1410/**
Chris Wilson901782b2009-07-10 08:18:50 +01001411 * i915_gem_release_mmap - remove physical page mappings
1412 * @obj: obj in question
1413 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001414 * Preserve the reservation of the mmapping with the DRM core code, but
Chris Wilson901782b2009-07-10 08:18:50 +01001415 * relinquish ownership of the pages back to the system.
1416 *
1417 * It is vital that we remove the page mapping if we have mapped a tiled
1418 * object through the GTT and then lose the fence register due to
1419 * resource pressure. Similarly if the object has been moved out of the
1420 * aperture, than pages mapped into userspace must be revoked. Removing the
1421 * mapping will then trigger a page fault on the next user access, allowing
1422 * fixup by i915_gem_fault().
1423 */
Eric Anholtd05ca302009-07-10 13:02:26 -07001424void
Chris Wilson05394f32010-11-08 19:18:58 +00001425i915_gem_release_mmap(struct drm_i915_gem_object *obj)
Chris Wilson901782b2009-07-10 08:18:50 +01001426{
Chris Wilson6299f992010-11-24 12:23:44 +00001427 if (!obj->fault_mappable)
1428 return;
Chris Wilson901782b2009-07-10 08:18:50 +01001429
David Herrmann51335df2013-07-24 21:10:03 +02001430 drm_vma_node_unmap(&obj->base.vma_node, obj->base.dev->dev_mapping);
Chris Wilson6299f992010-11-24 12:23:44 +00001431 obj->fault_mappable = false;
Chris Wilson901782b2009-07-10 08:18:50 +01001432}
1433
Imre Deak0fa87792013-01-07 21:47:35 +02001434uint32_t
Chris Wilsone28f8712011-07-18 13:11:49 -07001435i915_gem_get_gtt_size(struct drm_device *dev, uint32_t size, int tiling_mode)
Chris Wilson92b88ae2010-11-09 11:47:32 +00001436{
Chris Wilsone28f8712011-07-18 13:11:49 -07001437 uint32_t gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001438
1439 if (INTEL_INFO(dev)->gen >= 4 ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001440 tiling_mode == I915_TILING_NONE)
1441 return size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001442
1443 /* Previous chips need a power-of-two fence region when tiling */
1444 if (INTEL_INFO(dev)->gen == 3)
Chris Wilsone28f8712011-07-18 13:11:49 -07001445 gtt_size = 1024*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001446 else
Chris Wilsone28f8712011-07-18 13:11:49 -07001447 gtt_size = 512*1024;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001448
Chris Wilsone28f8712011-07-18 13:11:49 -07001449 while (gtt_size < size)
1450 gtt_size <<= 1;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001451
Chris Wilsone28f8712011-07-18 13:11:49 -07001452 return gtt_size;
Chris Wilson92b88ae2010-11-09 11:47:32 +00001453}
1454
Jesse Barnesde151cf2008-11-12 10:03:55 -08001455/**
1456 * i915_gem_get_gtt_alignment - return required GTT alignment for an object
1457 * @obj: object to check
1458 *
1459 * Return the required GTT alignment for an object, taking into account
Daniel Vetter5e783302010-11-14 22:32:36 +01001460 * potential fence register mapping.
Jesse Barnesde151cf2008-11-12 10:03:55 -08001461 */
Imre Deakd865110c2013-01-07 21:47:33 +02001462uint32_t
1463i915_gem_get_gtt_alignment(struct drm_device *dev, uint32_t size,
1464 int tiling_mode, bool fenced)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001465{
Jesse Barnesde151cf2008-11-12 10:03:55 -08001466 /*
1467 * Minimum alignment is 4k (GTT page size), but might be greater
1468 * if a fence register is needed for the object.
1469 */
Imre Deakd865110c2013-01-07 21:47:33 +02001470 if (INTEL_INFO(dev)->gen >= 4 || (!fenced && IS_G33(dev)) ||
Chris Wilsone28f8712011-07-18 13:11:49 -07001471 tiling_mode == I915_TILING_NONE)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001472 return 4096;
1473
1474 /*
1475 * Previous chips need to be aligned to the size of the smallest
1476 * fence register that can contain the object.
1477 */
Chris Wilsone28f8712011-07-18 13:11:49 -07001478 return i915_gem_get_gtt_size(dev, size, tiling_mode);
Chris Wilsona00b10c2010-09-24 21:15:47 +01001479}
1480
Chris Wilsond8cb5082012-08-11 15:41:03 +01001481static int i915_gem_object_create_mmap_offset(struct drm_i915_gem_object *obj)
1482{
1483 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
1484 int ret;
1485
David Herrmann0de23972013-07-24 21:07:52 +02001486 if (drm_vma_node_has_offset(&obj->base.vma_node))
Chris Wilsond8cb5082012-08-11 15:41:03 +01001487 return 0;
1488
Daniel Vetterda494d72012-12-20 15:11:16 +01001489 dev_priv->mm.shrinker_no_lock_stealing = true;
1490
Chris Wilsond8cb5082012-08-11 15:41:03 +01001491 ret = drm_gem_create_mmap_offset(&obj->base);
1492 if (ret != -ENOSPC)
Daniel Vetterda494d72012-12-20 15:11:16 +01001493 goto out;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001494
1495 /* Badly fragmented mmap space? The only way we can recover
1496 * space is by destroying unwanted objects. We can't randomly release
1497 * mmap_offsets as userspace expects them to be persistent for the
1498 * lifetime of the objects. The closest we can is to release the
1499 * offsets on purgeable objects by truncating it and marking it purged,
1500 * which prevents userspace from ever using that object again.
1501 */
1502 i915_gem_purge(dev_priv, obj->base.size >> PAGE_SHIFT);
1503 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 i915_gem_shrink_all(dev_priv);
Daniel Vetterda494d72012-12-20 15:11:16 +01001508 ret = drm_gem_create_mmap_offset(&obj->base);
1509out:
1510 dev_priv->mm.shrinker_no_lock_stealing = false;
1511
1512 return ret;
Chris Wilsond8cb5082012-08-11 15:41:03 +01001513}
1514
1515static void i915_gem_object_free_mmap_offset(struct drm_i915_gem_object *obj)
1516{
Chris Wilsond8cb5082012-08-11 15:41:03 +01001517 drm_gem_free_mmap_offset(&obj->base);
1518}
1519
Jesse Barnesde151cf2008-11-12 10:03:55 -08001520int
Dave Airlieff72145b2011-02-07 12:16:14 +10001521i915_gem_mmap_gtt(struct drm_file *file,
1522 struct drm_device *dev,
1523 uint32_t handle,
1524 uint64_t *offset)
Jesse Barnesde151cf2008-11-12 10:03:55 -08001525{
Chris Wilsonda761a62010-10-27 17:37:08 +01001526 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001527 struct drm_i915_gem_object *obj;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001528 int ret;
1529
Chris Wilson76c1dec2010-09-25 11:22:51 +01001530 ret = i915_mutex_lock_interruptible(dev);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001531 if (ret)
Chris Wilson76c1dec2010-09-25 11:22:51 +01001532 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001533
Dave Airlieff72145b2011-02-07 12:16:14 +10001534 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00001535 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001536 ret = -ENOENT;
1537 goto unlock;
1538 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08001539
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001540 if (obj->base.size > dev_priv->gtt.mappable_end) {
Chris Wilsonda761a62010-10-27 17:37:08 +01001541 ret = -E2BIG;
Eric Anholtff56b0b2011-10-31 23:16:21 -07001542 goto out;
Chris Wilsonda761a62010-10-27 17:37:08 +01001543 }
1544
Chris Wilson05394f32010-11-08 19:18:58 +00001545 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonab182822009-09-22 18:46:17 +01001546 DRM_ERROR("Attempting to mmap a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001547 ret = -EINVAL;
1548 goto out;
Chris Wilsonab182822009-09-22 18:46:17 +01001549 }
1550
Chris Wilsond8cb5082012-08-11 15:41:03 +01001551 ret = i915_gem_object_create_mmap_offset(obj);
1552 if (ret)
1553 goto out;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001554
David Herrmann0de23972013-07-24 21:07:52 +02001555 *offset = drm_vma_node_offset_addr(&obj->base.vma_node);
Jesse Barnesde151cf2008-11-12 10:03:55 -08001556
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001557out:
Chris Wilson05394f32010-11-08 19:18:58 +00001558 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001559unlock:
Jesse Barnesde151cf2008-11-12 10:03:55 -08001560 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01001561 return ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08001562}
1563
Dave Airlieff72145b2011-02-07 12:16:14 +10001564/**
1565 * i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
1566 * @dev: DRM device
1567 * @data: GTT mapping ioctl data
1568 * @file: GEM object info
1569 *
1570 * Simply returns the fake offset to userspace so it can mmap it.
1571 * The mmap call will end up in drm_gem_mmap(), which will set things
1572 * up so we can get faults in the handler above.
1573 *
1574 * The fault handler will take care of binding the object into the GTT
1575 * (since it may have been evicted to make room for something), allocating
1576 * a fence register, and mapping the appropriate aperture address into
1577 * userspace.
1578 */
1579int
1580i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
1581 struct drm_file *file)
1582{
1583 struct drm_i915_gem_mmap_gtt *args = data;
1584
Dave Airlieff72145b2011-02-07 12:16:14 +10001585 return i915_gem_mmap_gtt(file, dev, args->handle, &args->offset);
1586}
1587
Daniel Vetter225067e2012-08-20 10:23:20 +02001588/* Immediately discard the backing storage */
1589static void
1590i915_gem_object_truncate(struct drm_i915_gem_object *obj)
Chris Wilsone5281cc2010-10-28 13:45:36 +01001591{
Chris Wilsone5281cc2010-10-28 13:45:36 +01001592 struct inode *inode;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001593
Chris Wilson4d6294bf2012-08-11 15:41:05 +01001594 i915_gem_object_free_mmap_offset(obj);
Daniel Vetter1286ff72012-05-10 15:25:09 +02001595
Chris Wilson4d6294bf2012-08-11 15:41:05 +01001596 if (obj->base.filp == NULL)
1597 return;
1598
Daniel Vetter225067e2012-08-20 10:23:20 +02001599 /* Our goal here is to return as much of the memory as
1600 * is possible back to the system as we are called from OOM.
1601 * To do this we must instruct the shmfs to drop all of its
1602 * backing pages, *now*.
Chris Wilsone5281cc2010-10-28 13:45:36 +01001603 */
Al Viro496ad9a2013-01-23 17:07:38 -05001604 inode = file_inode(obj->base.filp);
Daniel Vetter225067e2012-08-20 10:23:20 +02001605 shmem_truncate_range(inode, 0, (loff_t)-1);
Hugh Dickins5949eac2011-06-27 16:18:18 -07001606
Daniel Vetter225067e2012-08-20 10:23:20 +02001607 obj->madv = __I915_MADV_PURGED;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001608}
Chris Wilsone5281cc2010-10-28 13:45:36 +01001609
Daniel Vetter225067e2012-08-20 10:23:20 +02001610static inline int
1611i915_gem_object_is_purgeable(struct drm_i915_gem_object *obj)
1612{
1613 return obj->madv == I915_MADV_DONTNEED;
Chris Wilsone5281cc2010-10-28 13:45:36 +01001614}
1615
Chris Wilson5cdf5882010-09-27 15:51:07 +01001616static void
Chris Wilson05394f32010-11-08 19:18:58 +00001617i915_gem_object_put_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001618{
Imre Deak90797e62013-02-18 19:28:03 +02001619 struct sg_page_iter sg_iter;
1620 int ret;
Daniel Vetter1286ff72012-05-10 15:25:09 +02001621
Chris Wilson05394f32010-11-08 19:18:58 +00001622 BUG_ON(obj->madv == __I915_MADV_PURGED);
Eric Anholt856fa192009-03-19 14:10:50 -07001623
Chris Wilson6c085a72012-08-20 11:40:46 +02001624 ret = i915_gem_object_set_to_cpu_domain(obj, true);
1625 if (ret) {
1626 /* In the event of a disaster, abandon all caches and
1627 * hope for the best.
1628 */
1629 WARN_ON(ret != -EIO);
1630 i915_gem_clflush_object(obj);
1631 obj->base.read_domains = obj->base.write_domain = I915_GEM_DOMAIN_CPU;
1632 }
1633
Daniel Vetter6dacfd22011-09-12 21:30:02 +02001634 if (i915_gem_object_needs_bit17_swizzle(obj))
Eric Anholt280b7132009-03-12 16:56:27 -07001635 i915_gem_object_save_bit_17_swizzle(obj);
1636
Chris Wilson05394f32010-11-08 19:18:58 +00001637 if (obj->madv == I915_MADV_DONTNEED)
1638 obj->dirty = 0;
Chris Wilson3ef94da2009-09-14 16:50:29 +01001639
Imre Deak90797e62013-02-18 19:28:03 +02001640 for_each_sg_page(obj->pages->sgl, &sg_iter, obj->pages->nents, 0) {
Imre Deak2db76d72013-03-26 15:14:18 +02001641 struct page *page = sg_page_iter_page(&sg_iter);
Chris Wilson9da3da62012-06-01 15:20:22 +01001642
Chris Wilson05394f32010-11-08 19:18:58 +00001643 if (obj->dirty)
Chris Wilson9da3da62012-06-01 15:20:22 +01001644 set_page_dirty(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001645
Chris Wilson05394f32010-11-08 19:18:58 +00001646 if (obj->madv == I915_MADV_WILLNEED)
Chris Wilson9da3da62012-06-01 15:20:22 +01001647 mark_page_accessed(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001648
Chris Wilson9da3da62012-06-01 15:20:22 +01001649 page_cache_release(page);
Chris Wilson3ef94da2009-09-14 16:50:29 +01001650 }
Chris Wilson05394f32010-11-08 19:18:58 +00001651 obj->dirty = 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001652
Chris Wilson9da3da62012-06-01 15:20:22 +01001653 sg_free_table(obj->pages);
1654 kfree(obj->pages);
Chris Wilson37e680a2012-06-07 15:38:42 +01001655}
1656
Chris Wilsondd624af2013-01-15 12:39:35 +00001657int
Chris Wilson37e680a2012-06-07 15:38:42 +01001658i915_gem_object_put_pages(struct drm_i915_gem_object *obj)
1659{
1660 const struct drm_i915_gem_object_ops *ops = obj->ops;
1661
Chris Wilson2f745ad2012-09-04 21:02:58 +01001662 if (obj->pages == NULL)
Chris Wilson37e680a2012-06-07 15:38:42 +01001663 return 0;
1664
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001665 BUG_ON(i915_gem_obj_ggtt_bound(obj));
Chris Wilson37e680a2012-06-07 15:38:42 +01001666
Chris Wilsona5570172012-09-04 21:02:54 +01001667 if (obj->pages_pin_count)
1668 return -EBUSY;
1669
Chris Wilsona2165e32012-12-03 11:49:00 +00001670 /* ->put_pages might need to allocate memory for the bit17 swizzle
1671 * array, hence protect them from being reaped by removing them from gtt
1672 * lists early. */
Ben Widawsky35c20a62013-05-31 11:28:48 -07001673 list_del(&obj->global_list);
Chris Wilsona2165e32012-12-03 11:49:00 +00001674
Chris Wilson37e680a2012-06-07 15:38:42 +01001675 ops->put_pages(obj);
Chris Wilson05394f32010-11-08 19:18:58 +00001676 obj->pages = NULL;
Chris Wilson6c085a72012-08-20 11:40:46 +02001677
Chris Wilson6c085a72012-08-20 11:40:46 +02001678 if (i915_gem_object_is_purgeable(obj))
1679 i915_gem_object_truncate(obj);
1680
1681 return 0;
1682}
1683
1684static long
Daniel Vetter93927ca2013-01-10 18:03:00 +01001685__i915_gem_shrink(struct drm_i915_private *dev_priv, long target,
1686 bool purgeable_only)
Chris Wilson6c085a72012-08-20 11:40:46 +02001687{
1688 struct drm_i915_gem_object *obj, *next;
1689 long count = 0;
1690
1691 list_for_each_entry_safe(obj, next,
1692 &dev_priv->mm.unbound_list,
Ben Widawsky35c20a62013-05-31 11:28:48 -07001693 global_list) {
Daniel Vetter93927ca2013-01-10 18:03:00 +01001694 if ((i915_gem_object_is_purgeable(obj) || !purgeable_only) &&
Chris Wilson37e680a2012-06-07 15:38:42 +01001695 i915_gem_object_put_pages(obj) == 0) {
Chris Wilson6c085a72012-08-20 11:40:46 +02001696 count += obj->base.size >> PAGE_SHIFT;
1697 if (count >= target)
1698 return count;
1699 }
1700 }
1701
1702 list_for_each_entry_safe(obj, next,
1703 &dev_priv->mm.inactive_list,
1704 mm_list) {
Daniel Vetter93927ca2013-01-10 18:03:00 +01001705 if ((i915_gem_object_is_purgeable(obj) || !purgeable_only) &&
Chris Wilson6c085a72012-08-20 11:40:46 +02001706 i915_gem_object_unbind(obj) == 0 &&
Chris Wilson37e680a2012-06-07 15:38:42 +01001707 i915_gem_object_put_pages(obj) == 0) {
Chris Wilson6c085a72012-08-20 11:40:46 +02001708 count += obj->base.size >> PAGE_SHIFT;
1709 if (count >= target)
1710 return count;
1711 }
1712 }
1713
1714 return count;
1715}
1716
Daniel Vetter93927ca2013-01-10 18:03:00 +01001717static long
1718i915_gem_purge(struct drm_i915_private *dev_priv, long target)
1719{
1720 return __i915_gem_shrink(dev_priv, target, true);
1721}
1722
Chris Wilson6c085a72012-08-20 11:40:46 +02001723static void
1724i915_gem_shrink_all(struct drm_i915_private *dev_priv)
1725{
1726 struct drm_i915_gem_object *obj, *next;
1727
1728 i915_gem_evict_everything(dev_priv->dev);
1729
Ben Widawsky35c20a62013-05-31 11:28:48 -07001730 list_for_each_entry_safe(obj, next, &dev_priv->mm.unbound_list,
1731 global_list)
Chris Wilson37e680a2012-06-07 15:38:42 +01001732 i915_gem_object_put_pages(obj);
Daniel Vetter225067e2012-08-20 10:23:20 +02001733}
1734
Chris Wilson37e680a2012-06-07 15:38:42 +01001735static int
Chris Wilson6c085a72012-08-20 11:40:46 +02001736i915_gem_object_get_pages_gtt(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07001737{
Chris Wilson6c085a72012-08-20 11:40:46 +02001738 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Eric Anholt673a3942008-07-30 12:06:12 -07001739 int page_count, i;
1740 struct address_space *mapping;
Chris Wilson9da3da62012-06-01 15:20:22 +01001741 struct sg_table *st;
1742 struct scatterlist *sg;
Imre Deak90797e62013-02-18 19:28:03 +02001743 struct sg_page_iter sg_iter;
Eric Anholt673a3942008-07-30 12:06:12 -07001744 struct page *page;
Imre Deak90797e62013-02-18 19:28:03 +02001745 unsigned long last_pfn = 0; /* suppress gcc warning */
Chris Wilson6c085a72012-08-20 11:40:46 +02001746 gfp_t gfp;
Eric Anholt673a3942008-07-30 12:06:12 -07001747
Chris Wilson6c085a72012-08-20 11:40:46 +02001748 /* Assert that the object is not currently in any GPU domain. As it
1749 * wasn't in the GTT, there shouldn't be any way it could have been in
1750 * a GPU cache
1751 */
1752 BUG_ON(obj->base.read_domains & I915_GEM_GPU_DOMAINS);
1753 BUG_ON(obj->base.write_domain & I915_GEM_GPU_DOMAINS);
1754
Chris Wilson9da3da62012-06-01 15:20:22 +01001755 st = kmalloc(sizeof(*st), GFP_KERNEL);
1756 if (st == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07001757 return -ENOMEM;
1758
Chris Wilson9da3da62012-06-01 15:20:22 +01001759 page_count = obj->base.size / PAGE_SIZE;
1760 if (sg_alloc_table(st, page_count, GFP_KERNEL)) {
1761 sg_free_table(st);
1762 kfree(st);
1763 return -ENOMEM;
1764 }
1765
1766 /* Get the list of pages out of our struct file. They'll be pinned
1767 * at this point until we release them.
1768 *
1769 * Fail silently without starting the shrinker
1770 */
Al Viro496ad9a2013-01-23 17:07:38 -05001771 mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilson6c085a72012-08-20 11:40:46 +02001772 gfp = mapping_gfp_mask(mapping);
Linus Torvaldscaf49192012-12-10 10:51:16 -08001773 gfp |= __GFP_NORETRY | __GFP_NOWARN | __GFP_NO_KSWAPD;
Chris Wilson6c085a72012-08-20 11:40:46 +02001774 gfp &= ~(__GFP_IO | __GFP_WAIT);
Imre Deak90797e62013-02-18 19:28:03 +02001775 sg = st->sgl;
1776 st->nents = 0;
1777 for (i = 0; i < page_count; i++) {
Chris Wilson6c085a72012-08-20 11:40:46 +02001778 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
1779 if (IS_ERR(page)) {
1780 i915_gem_purge(dev_priv, page_count);
1781 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
1782 }
1783 if (IS_ERR(page)) {
1784 /* We've tried hard to allocate the memory by reaping
1785 * our own buffer, now let the real VM do its job and
1786 * go down in flames if truly OOM.
1787 */
Linus Torvaldscaf49192012-12-10 10:51:16 -08001788 gfp &= ~(__GFP_NORETRY | __GFP_NOWARN | __GFP_NO_KSWAPD);
Chris Wilson6c085a72012-08-20 11:40:46 +02001789 gfp |= __GFP_IO | __GFP_WAIT;
1790
1791 i915_gem_shrink_all(dev_priv);
1792 page = shmem_read_mapping_page_gfp(mapping, i, gfp);
1793 if (IS_ERR(page))
1794 goto err_pages;
1795
Linus Torvaldscaf49192012-12-10 10:51:16 -08001796 gfp |= __GFP_NORETRY | __GFP_NOWARN | __GFP_NO_KSWAPD;
Chris Wilson6c085a72012-08-20 11:40:46 +02001797 gfp &= ~(__GFP_IO | __GFP_WAIT);
1798 }
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04001799#ifdef CONFIG_SWIOTLB
1800 if (swiotlb_nr_tbl()) {
1801 st->nents++;
1802 sg_set_page(sg, page, PAGE_SIZE, 0);
1803 sg = sg_next(sg);
1804 continue;
1805 }
1806#endif
Imre Deak90797e62013-02-18 19:28:03 +02001807 if (!i || page_to_pfn(page) != last_pfn + 1) {
1808 if (i)
1809 sg = sg_next(sg);
1810 st->nents++;
1811 sg_set_page(sg, page, PAGE_SIZE, 0);
1812 } else {
1813 sg->length += PAGE_SIZE;
1814 }
1815 last_pfn = page_to_pfn(page);
Eric Anholt673a3942008-07-30 12:06:12 -07001816 }
Konrad Rzeszutek Wilk426729d2013-06-24 11:47:48 -04001817#ifdef CONFIG_SWIOTLB
1818 if (!swiotlb_nr_tbl())
1819#endif
1820 sg_mark_end(sg);
Chris Wilson74ce6b62012-10-19 15:51:06 +01001821 obj->pages = st;
1822
Eric Anholt673a3942008-07-30 12:06:12 -07001823 if (i915_gem_object_needs_bit17_swizzle(obj))
1824 i915_gem_object_do_bit_17_swizzle(obj);
1825
1826 return 0;
1827
1828err_pages:
Imre Deak90797e62013-02-18 19:28:03 +02001829 sg_mark_end(sg);
1830 for_each_sg_page(st->sgl, &sg_iter, st->nents, 0)
Imre Deak2db76d72013-03-26 15:14:18 +02001831 page_cache_release(sg_page_iter_page(&sg_iter));
Chris Wilson9da3da62012-06-01 15:20:22 +01001832 sg_free_table(st);
1833 kfree(st);
Eric Anholt673a3942008-07-30 12:06:12 -07001834 return PTR_ERR(page);
Eric Anholt673a3942008-07-30 12:06:12 -07001835}
1836
Chris Wilson37e680a2012-06-07 15:38:42 +01001837/* Ensure that the associated pages are gathered from the backing storage
1838 * and pinned into our object. i915_gem_object_get_pages() may be called
1839 * multiple times before they are released by a single call to
1840 * i915_gem_object_put_pages() - once the pages are no longer referenced
1841 * either as a result of memory pressure (reaping pages under the shrinker)
1842 * or as the object is itself released.
1843 */
1844int
1845i915_gem_object_get_pages(struct drm_i915_gem_object *obj)
1846{
1847 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
1848 const struct drm_i915_gem_object_ops *ops = obj->ops;
1849 int ret;
1850
Chris Wilson2f745ad2012-09-04 21:02:58 +01001851 if (obj->pages)
Chris Wilson37e680a2012-06-07 15:38:42 +01001852 return 0;
1853
Chris Wilson43e28f02013-01-08 10:53:09 +00001854 if (obj->madv != I915_MADV_WILLNEED) {
1855 DRM_ERROR("Attempting to obtain a purgeable object\n");
1856 return -EINVAL;
1857 }
1858
Chris Wilsona5570172012-09-04 21:02:54 +01001859 BUG_ON(obj->pages_pin_count);
1860
Chris Wilson37e680a2012-06-07 15:38:42 +01001861 ret = ops->get_pages(obj);
1862 if (ret)
1863 return ret;
1864
Ben Widawsky35c20a62013-05-31 11:28:48 -07001865 list_add_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Chris Wilson37e680a2012-06-07 15:38:42 +01001866 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07001867}
1868
Chris Wilson54cf91d2010-11-25 18:00:26 +00001869void
Chris Wilson05394f32010-11-08 19:18:58 +00001870i915_gem_object_move_to_active(struct drm_i915_gem_object *obj,
Chris Wilson9d7730912012-11-27 16:22:52 +00001871 struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07001872{
Chris Wilson05394f32010-11-08 19:18:58 +00001873 struct drm_device *dev = obj->base.dev;
Chris Wilson69dc4982010-10-19 10:36:51 +01001874 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9d7730912012-11-27 16:22:52 +00001875 u32 seqno = intel_ring_get_seqno(ring);
Daniel Vetter617dbe22010-02-11 22:16:02 +01001876
Zou Nan hai852835f2010-05-21 09:08:56 +08001877 BUG_ON(ring == NULL);
Chris Wilson02978ff2013-07-09 09:22:39 +01001878 if (obj->ring != ring && obj->last_write_seqno) {
1879 /* Keep the seqno relative to the current ring */
1880 obj->last_write_seqno = seqno;
1881 }
Chris Wilson05394f32010-11-08 19:18:58 +00001882 obj->ring = ring;
Eric Anholt673a3942008-07-30 12:06:12 -07001883
1884 /* Add a reference if we're newly entering the active list. */
Chris Wilson05394f32010-11-08 19:18:58 +00001885 if (!obj->active) {
1886 drm_gem_object_reference(&obj->base);
1887 obj->active = 1;
Eric Anholt673a3942008-07-30 12:06:12 -07001888 }
Daniel Vettere35a41d2010-02-11 22:13:59 +01001889
Eric Anholt673a3942008-07-30 12:06:12 -07001890 /* Move from whatever list we were on to the tail of execution. */
Chris Wilson05394f32010-11-08 19:18:58 +00001891 list_move_tail(&obj->mm_list, &dev_priv->mm.active_list);
1892 list_move_tail(&obj->ring_list, &ring->active_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001893
Chris Wilson0201f1e2012-07-20 12:41:01 +01001894 obj->last_read_seqno = seqno;
Chris Wilson7dd49062012-03-21 10:48:18 +00001895
Chris Wilsoncaea7472010-11-12 13:53:37 +00001896 if (obj->fenced_gpu_access) {
Chris Wilsoncaea7472010-11-12 13:53:37 +00001897 obj->last_fenced_seqno = seqno;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001898
Chris Wilson7dd49062012-03-21 10:48:18 +00001899 /* Bump MRU to take account of the delayed flush */
1900 if (obj->fence_reg != I915_FENCE_REG_NONE) {
1901 struct drm_i915_fence_reg *reg;
1902
1903 reg = &dev_priv->fence_regs[obj->fence_reg];
1904 list_move_tail(&reg->lru_list,
1905 &dev_priv->mm.fence_list);
1906 }
Chris Wilsoncaea7472010-11-12 13:53:37 +00001907 }
1908}
1909
1910static void
Chris Wilsoncaea7472010-11-12 13:53:37 +00001911i915_gem_object_move_to_inactive(struct drm_i915_gem_object *obj)
1912{
1913 struct drm_device *dev = obj->base.dev;
1914 struct drm_i915_private *dev_priv = dev->dev_private;
1915
Chris Wilson65ce3022012-07-20 12:41:02 +01001916 BUG_ON(obj->base.write_domain & ~I915_GEM_GPU_DOMAINS);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001917 BUG_ON(!obj->active);
Chris Wilson65ce3022012-07-20 12:41:02 +01001918
Chris Wilsoncaea7472010-11-12 13:53:37 +00001919 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
1920
Chris Wilson65ce3022012-07-20 12:41:02 +01001921 list_del_init(&obj->ring_list);
Chris Wilsoncaea7472010-11-12 13:53:37 +00001922 obj->ring = NULL;
1923
Chris Wilson65ce3022012-07-20 12:41:02 +01001924 obj->last_read_seqno = 0;
1925 obj->last_write_seqno = 0;
1926 obj->base.write_domain = 0;
1927
1928 obj->last_fenced_seqno = 0;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001929 obj->fenced_gpu_access = false;
Chris Wilsoncaea7472010-11-12 13:53:37 +00001930
1931 obj->active = 0;
1932 drm_gem_object_unreference(&obj->base);
1933
1934 WARN_ON(i915_verify_lists(dev));
Eric Anholtce44b0e2008-11-06 16:00:31 -08001935}
Eric Anholt673a3942008-07-30 12:06:12 -07001936
Chris Wilson9d7730912012-11-27 16:22:52 +00001937static int
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02001938i915_gem_init_seqno(struct drm_device *dev, u32 seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01001939{
Chris Wilson9d7730912012-11-27 16:22:52 +00001940 struct drm_i915_private *dev_priv = dev->dev_private;
1941 struct intel_ring_buffer *ring;
1942 int ret, i, j;
Daniel Vetter53d227f2012-01-25 16:32:49 +01001943
Chris Wilson107f27a52012-12-10 13:56:17 +02001944 /* Carefully retire all requests without writing to the rings */
Chris Wilson9d7730912012-11-27 16:22:52 +00001945 for_each_ring(ring, dev_priv, i) {
Chris Wilson107f27a52012-12-10 13:56:17 +02001946 ret = intel_ring_idle(ring);
1947 if (ret)
1948 return ret;
Chris Wilson9d7730912012-11-27 16:22:52 +00001949 }
Chris Wilson9d7730912012-11-27 16:22:52 +00001950 i915_gem_retire_requests(dev);
Chris Wilson107f27a52012-12-10 13:56:17 +02001951
1952 /* Finally reset hw state */
Chris Wilson9d7730912012-11-27 16:22:52 +00001953 for_each_ring(ring, dev_priv, i) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02001954 intel_ring_init_seqno(ring, seqno);
Mika Kuoppala498d2ac2012-12-04 15:12:04 +02001955
Chris Wilson9d7730912012-11-27 16:22:52 +00001956 for (j = 0; j < ARRAY_SIZE(ring->sync_seqno); j++)
1957 ring->sync_seqno[j] = 0;
1958 }
1959
1960 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01001961}
1962
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02001963int i915_gem_set_seqno(struct drm_device *dev, u32 seqno)
1964{
1965 struct drm_i915_private *dev_priv = dev->dev_private;
1966 int ret;
1967
1968 if (seqno == 0)
1969 return -EINVAL;
1970
1971 /* HWS page needs to be set less than what we
1972 * will inject to ring
1973 */
1974 ret = i915_gem_init_seqno(dev, seqno - 1);
1975 if (ret)
1976 return ret;
1977
1978 /* Carefully set the last_seqno value so that wrap
1979 * detection still works
1980 */
1981 dev_priv->next_seqno = seqno;
1982 dev_priv->last_seqno = seqno - 1;
1983 if (dev_priv->last_seqno == 0)
1984 dev_priv->last_seqno--;
1985
1986 return 0;
1987}
1988
Chris Wilson9d7730912012-11-27 16:22:52 +00001989int
1990i915_gem_get_seqno(struct drm_device *dev, u32 *seqno)
Daniel Vetter53d227f2012-01-25 16:32:49 +01001991{
Chris Wilson9d7730912012-11-27 16:22:52 +00001992 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter53d227f2012-01-25 16:32:49 +01001993
Chris Wilson9d7730912012-11-27 16:22:52 +00001994 /* reserve 0 for non-seqno */
1995 if (dev_priv->next_seqno == 0) {
Mika Kuoppalafca26bb2012-12-19 11:13:08 +02001996 int ret = i915_gem_init_seqno(dev, 0);
Chris Wilson9d7730912012-11-27 16:22:52 +00001997 if (ret)
1998 return ret;
1999
2000 dev_priv->next_seqno = 1;
2001 }
2002
Mika Kuoppalaf72b3432012-12-10 15:41:48 +02002003 *seqno = dev_priv->last_seqno = dev_priv->next_seqno++;
Chris Wilson9d7730912012-11-27 16:22:52 +00002004 return 0;
Daniel Vetter53d227f2012-01-25 16:32:49 +01002005}
2006
Mika Kuoppala0025c072013-06-12 12:35:30 +03002007int __i915_add_request(struct intel_ring_buffer *ring,
2008 struct drm_file *file,
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002009 struct drm_i915_gem_object *obj,
Mika Kuoppala0025c072013-06-12 12:35:30 +03002010 u32 *out_seqno)
Eric Anholt673a3942008-07-30 12:06:12 -07002011{
Chris Wilsondb53a302011-02-03 11:57:46 +00002012 drm_i915_private_t *dev_priv = ring->dev->dev_private;
Chris Wilsonacb868d2012-09-26 13:47:30 +01002013 struct drm_i915_gem_request *request;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002014 u32 request_ring_position, request_start;
Eric Anholt673a3942008-07-30 12:06:12 -07002015 int was_empty;
Chris Wilson3cce4692010-10-27 16:11:02 +01002016 int ret;
2017
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002018 request_start = intel_ring_get_tail(ring);
Daniel Vettercc889e02012-06-13 20:45:19 +02002019 /*
2020 * Emit any outstanding flushes - execbuf can fail to emit the flush
2021 * after having emitted the batchbuffer command. Hence we need to fix
2022 * things up similar to emitting the lazy request. The difference here
2023 * is that the flush _must_ happen before the next request, no matter
2024 * what.
2025 */
Chris Wilsona7b97612012-07-20 12:41:08 +01002026 ret = intel_ring_flush_all_caches(ring);
2027 if (ret)
2028 return ret;
Daniel Vettercc889e02012-06-13 20:45:19 +02002029
Chris Wilsonacb868d2012-09-26 13:47:30 +01002030 request = kmalloc(sizeof(*request), GFP_KERNEL);
2031 if (request == NULL)
2032 return -ENOMEM;
Daniel Vettercc889e02012-06-13 20:45:19 +02002033
Eric Anholt673a3942008-07-30 12:06:12 -07002034
Chris Wilsona71d8d92012-02-15 11:25:36 +00002035 /* Record the position of the start of the request so that
2036 * should we detect the updated seqno part-way through the
2037 * GPU processing the request, we never over-estimate the
2038 * position of the head.
2039 */
2040 request_ring_position = intel_ring_get_tail(ring);
2041
Chris Wilson9d7730912012-11-27 16:22:52 +00002042 ret = ring->add_request(ring);
Chris Wilson3bb73ab2012-07-20 12:40:59 +01002043 if (ret) {
2044 kfree(request);
2045 return ret;
2046 }
Eric Anholt673a3942008-07-30 12:06:12 -07002047
Chris Wilson9d7730912012-11-27 16:22:52 +00002048 request->seqno = intel_ring_get_seqno(ring);
Zou Nan hai852835f2010-05-21 09:08:56 +08002049 request->ring = ring;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002050 request->head = request_start;
Chris Wilsona71d8d92012-02-15 11:25:36 +00002051 request->tail = request_ring_position;
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002052 request->ctx = ring->last_context;
Mika Kuoppala7d736f42013-06-12 15:01:39 +03002053 request->batch_obj = obj;
2054
2055 /* Whilst this request exists, batch_obj will be on the
2056 * active_list, and so will hold the active reference. Only when this
2057 * request is retired will the the batch_obj be moved onto the
2058 * inactive_list and lose its active reference. Hence we do not need
2059 * to explicitly hold another reference here.
2060 */
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002061
2062 if (request->ctx)
2063 i915_gem_context_reference(request->ctx);
2064
Eric Anholt673a3942008-07-30 12:06:12 -07002065 request->emitted_jiffies = jiffies;
Zou Nan hai852835f2010-05-21 09:08:56 +08002066 was_empty = list_empty(&ring->request_list);
2067 list_add_tail(&request->list, &ring->request_list);
Chris Wilson3bb73ab2012-07-20 12:40:59 +01002068 request->file_priv = NULL;
Zou Nan hai852835f2010-05-21 09:08:56 +08002069
Chris Wilsondb53a302011-02-03 11:57:46 +00002070 if (file) {
2071 struct drm_i915_file_private *file_priv = file->driver_priv;
2072
Chris Wilson1c255952010-09-26 11:03:27 +01002073 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002074 request->file_priv = file_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00002075 list_add_tail(&request->client_list,
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002076 &file_priv->mm.request_list);
Chris Wilson1c255952010-09-26 11:03:27 +01002077 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00002078 }
Eric Anholt673a3942008-07-30 12:06:12 -07002079
Chris Wilson9d7730912012-11-27 16:22:52 +00002080 trace_i915_gem_request_add(ring, request->seqno);
Daniel Vetter5391d0c2012-01-25 14:03:57 +01002081 ring->outstanding_lazy_request = 0;
Chris Wilsondb53a302011-02-03 11:57:46 +00002082
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02002083 if (!dev_priv->ums.mm_suspended) {
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07002084 if (i915_enable_hangcheck) {
Daniel Vetter99584db2012-11-14 17:14:04 +01002085 mod_timer(&dev_priv->gpu_error.hangcheck_timer,
Chris Wilsoncecc21f2012-10-05 17:02:56 +01002086 round_jiffies_up(jiffies + DRM_I915_HANGCHECK_JIFFIES));
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07002087 }
Chris Wilsonf047e392012-07-21 12:31:41 +01002088 if (was_empty) {
Chris Wilsonb3b079d2010-09-13 23:44:34 +01002089 queue_delayed_work(dev_priv->wq,
Chris Wilsonbcb45082012-10-05 17:02:57 +01002090 &dev_priv->mm.retire_work,
2091 round_jiffies_up_relative(HZ));
Chris Wilsonf047e392012-07-21 12:31:41 +01002092 intel_mark_busy(dev_priv->dev);
2093 }
Ben Gamarif65d9422009-09-14 17:48:44 -04002094 }
Daniel Vettercc889e02012-06-13 20:45:19 +02002095
Chris Wilsonacb868d2012-09-26 13:47:30 +01002096 if (out_seqno)
Chris Wilson9d7730912012-11-27 16:22:52 +00002097 *out_seqno = request->seqno;
Chris Wilson3cce4692010-10-27 16:11:02 +01002098 return 0;
Eric Anholt673a3942008-07-30 12:06:12 -07002099}
2100
Chris Wilsonf787a5f2010-09-24 16:02:42 +01002101static inline void
2102i915_gem_request_remove_from_client(struct drm_i915_gem_request *request)
Eric Anholt673a3942008-07-30 12:06:12 -07002103{
Chris Wilson1c255952010-09-26 11:03:27 +01002104 struct drm_i915_file_private *file_priv = request->file_priv;
Eric Anholt673a3942008-07-30 12:06:12 -07002105
Chris Wilson1c255952010-09-26 11:03:27 +01002106 if (!file_priv)
2107 return;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01002108
Chris Wilson1c255952010-09-26 11:03:27 +01002109 spin_lock(&file_priv->mm.lock);
Herton Ronaldo Krzesinski09bfa512011-03-17 13:45:12 +00002110 if (request->file_priv) {
2111 list_del(&request->client_list);
2112 request->file_priv = NULL;
2113 }
Chris Wilson1c255952010-09-26 11:03:27 +01002114 spin_unlock(&file_priv->mm.lock);
Eric Anholt673a3942008-07-30 12:06:12 -07002115}
2116
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002117static bool i915_head_inside_object(u32 acthd, struct drm_i915_gem_object *obj)
2118{
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002119 if (acthd >= i915_gem_obj_ggtt_offset(obj) &&
2120 acthd < i915_gem_obj_ggtt_offset(obj) + obj->base.size)
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002121 return true;
2122
2123 return false;
2124}
2125
2126static bool i915_head_inside_request(const u32 acthd_unmasked,
2127 const u32 request_start,
2128 const u32 request_end)
2129{
2130 const u32 acthd = acthd_unmasked & HEAD_ADDR;
2131
2132 if (request_start < request_end) {
2133 if (acthd >= request_start && acthd < request_end)
2134 return true;
2135 } else if (request_start > request_end) {
2136 if (acthd >= request_start || acthd < request_end)
2137 return true;
2138 }
2139
2140 return false;
2141}
2142
2143static bool i915_request_guilty(struct drm_i915_gem_request *request,
2144 const u32 acthd, bool *inside)
2145{
2146 /* There is a possibility that unmasked head address
2147 * pointing inside the ring, matches the batch_obj address range.
2148 * However this is extremely unlikely.
2149 */
2150
2151 if (request->batch_obj) {
2152 if (i915_head_inside_object(acthd, request->batch_obj)) {
2153 *inside = true;
2154 return true;
2155 }
2156 }
2157
2158 if (i915_head_inside_request(acthd, request->head, request->tail)) {
2159 *inside = false;
2160 return true;
2161 }
2162
2163 return false;
2164}
2165
2166static void i915_set_reset_status(struct intel_ring_buffer *ring,
2167 struct drm_i915_gem_request *request,
2168 u32 acthd)
2169{
2170 struct i915_ctx_hang_stats *hs = NULL;
2171 bool inside, guilty;
2172
2173 /* Innocent until proven guilty */
2174 guilty = false;
2175
2176 if (ring->hangcheck.action != wait &&
2177 i915_request_guilty(request, acthd, &inside)) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002178 DRM_ERROR("%s hung %s bo (0x%lx ctx %d) at 0x%x\n",
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002179 ring->name,
2180 inside ? "inside" : "flushing",
2181 request->batch_obj ?
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002182 i915_gem_obj_ggtt_offset(request->batch_obj) : 0,
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002183 request->ctx ? request->ctx->id : 0,
2184 acthd);
2185
2186 guilty = true;
2187 }
2188
2189 /* If contexts are disabled or this is the default context, use
2190 * file_priv->reset_state
2191 */
2192 if (request->ctx && request->ctx->id != DEFAULT_CONTEXT_ID)
2193 hs = &request->ctx->hang_stats;
2194 else if (request->file_priv)
2195 hs = &request->file_priv->hang_stats;
2196
2197 if (hs) {
2198 if (guilty)
2199 hs->batch_active++;
2200 else
2201 hs->batch_pending++;
2202 }
2203}
2204
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002205static void i915_gem_free_request(struct drm_i915_gem_request *request)
2206{
2207 list_del(&request->list);
2208 i915_gem_request_remove_from_client(request);
2209
2210 if (request->ctx)
2211 i915_gem_context_unreference(request->ctx);
2212
2213 kfree(request);
2214}
2215
Chris Wilsondfaae392010-09-22 10:31:52 +01002216static void i915_gem_reset_ring_lists(struct drm_i915_private *dev_priv,
2217 struct intel_ring_buffer *ring)
Chris Wilson9375e442010-09-19 12:21:28 +01002218{
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002219 u32 completed_seqno;
2220 u32 acthd;
2221
2222 acthd = intel_ring_get_active_head(ring);
2223 completed_seqno = ring->get_seqno(ring, false);
2224
Chris Wilsondfaae392010-09-22 10:31:52 +01002225 while (!list_empty(&ring->request_list)) {
2226 struct drm_i915_gem_request *request;
Chris Wilson9375e442010-09-19 12:21:28 +01002227
Chris Wilsondfaae392010-09-22 10:31:52 +01002228 request = list_first_entry(&ring->request_list,
2229 struct drm_i915_gem_request,
2230 list);
2231
Mika Kuoppalaaa60c662013-06-12 15:13:20 +03002232 if (request->seqno > completed_seqno)
2233 i915_set_reset_status(ring, request, acthd);
2234
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002235 i915_gem_free_request(request);
Chris Wilsondfaae392010-09-22 10:31:52 +01002236 }
2237
2238 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00002239 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07002240
Chris Wilson05394f32010-11-08 19:18:58 +00002241 obj = list_first_entry(&ring->active_list,
2242 struct drm_i915_gem_object,
2243 ring_list);
Eric Anholt673a3942008-07-30 12:06:12 -07002244
Chris Wilson05394f32010-11-08 19:18:58 +00002245 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002246 }
Eric Anholt673a3942008-07-30 12:06:12 -07002247}
2248
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002249void i915_gem_restore_fences(struct drm_device *dev)
Chris Wilson312817a2010-11-22 11:50:11 +00002250{
2251 struct drm_i915_private *dev_priv = dev->dev_private;
2252 int i;
2253
Daniel Vetter4b9de732011-10-09 21:52:02 +02002254 for (i = 0; i < dev_priv->num_fence_regs; i++) {
Chris Wilson312817a2010-11-22 11:50:11 +00002255 struct drm_i915_fence_reg *reg = &dev_priv->fence_regs[i];
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002256 i915_gem_write_fence(dev, i, reg->obj);
Chris Wilson312817a2010-11-22 11:50:11 +00002257 }
2258}
2259
Chris Wilson069efc12010-09-30 16:53:18 +01002260void i915_gem_reset(struct drm_device *dev)
Eric Anholt673a3942008-07-30 12:06:12 -07002261{
Chris Wilsondfaae392010-09-22 10:31:52 +01002262 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00002263 struct drm_i915_gem_object *obj;
Chris Wilsonb4519512012-05-11 14:29:30 +01002264 struct intel_ring_buffer *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002265 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07002266
Chris Wilsonb4519512012-05-11 14:29:30 +01002267 for_each_ring(ring, dev_priv, i)
2268 i915_gem_reset_ring_lists(dev_priv, ring);
Chris Wilsondfaae392010-09-22 10:31:52 +01002269
Chris Wilsondfaae392010-09-22 10:31:52 +01002270 /* Move everything out of the GPU domains to ensure we do any
2271 * necessary invalidation upon reuse.
2272 */
Chris Wilson05394f32010-11-08 19:18:58 +00002273 list_for_each_entry(obj,
Chris Wilson77f01232010-09-19 12:31:36 +01002274 &dev_priv->mm.inactive_list,
Chris Wilson69dc4982010-10-19 10:36:51 +01002275 mm_list)
Chris Wilson77f01232010-09-19 12:31:36 +01002276 {
Chris Wilson05394f32010-11-08 19:18:58 +00002277 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilson77f01232010-09-19 12:31:36 +01002278 }
Chris Wilson069efc12010-09-30 16:53:18 +01002279
Chris Wilson19b2dbd2013-06-12 10:15:12 +01002280 i915_gem_restore_fences(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07002281}
2282
2283/**
2284 * This function clears the request list as sequence numbers are passed.
2285 */
Chris Wilsona71d8d92012-02-15 11:25:36 +00002286void
Chris Wilsondb53a302011-02-03 11:57:46 +00002287i915_gem_retire_requests_ring(struct intel_ring_buffer *ring)
Eric Anholt673a3942008-07-30 12:06:12 -07002288{
Eric Anholt673a3942008-07-30 12:06:12 -07002289 uint32_t seqno;
2290
Chris Wilsondb53a302011-02-03 11:57:46 +00002291 if (list_empty(&ring->request_list))
Karsten Wiese6c0594a2009-02-23 15:07:57 +01002292 return;
2293
Chris Wilsondb53a302011-02-03 11:57:46 +00002294 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002295
Chris Wilsonb2eadbc2012-08-09 10:58:30 +01002296 seqno = ring->get_seqno(ring, true);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002297
Zou Nan hai852835f2010-05-21 09:08:56 +08002298 while (!list_empty(&ring->request_list)) {
Eric Anholt673a3942008-07-30 12:06:12 -07002299 struct drm_i915_gem_request *request;
Eric Anholt673a3942008-07-30 12:06:12 -07002300
Zou Nan hai852835f2010-05-21 09:08:56 +08002301 request = list_first_entry(&ring->request_list,
Eric Anholt673a3942008-07-30 12:06:12 -07002302 struct drm_i915_gem_request,
2303 list);
Eric Anholt673a3942008-07-30 12:06:12 -07002304
Chris Wilsondfaae392010-09-22 10:31:52 +01002305 if (!i915_seqno_passed(seqno, request->seqno))
Eric Anholt673a3942008-07-30 12:06:12 -07002306 break;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002307
Chris Wilsondb53a302011-02-03 11:57:46 +00002308 trace_i915_gem_request_retire(ring, request->seqno);
Chris Wilsona71d8d92012-02-15 11:25:36 +00002309 /* We know the GPU must have read the request to have
2310 * sent us the seqno + interrupt, so use the position
2311 * of tail of the request to update the last known position
2312 * of the GPU head.
2313 */
2314 ring->last_retired_head = request->tail;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002315
Mika Kuoppala0e50e962013-05-02 16:48:08 +03002316 i915_gem_free_request(request);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002317 }
2318
2319 /* Move any buffers on the active list that are no longer referenced
2320 * by the ringbuffer to the flushing/inactive lists as appropriate.
2321 */
2322 while (!list_empty(&ring->active_list)) {
Chris Wilson05394f32010-11-08 19:18:58 +00002323 struct drm_i915_gem_object *obj;
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002324
Akshay Joshi0206e352011-08-16 15:34:10 -04002325 obj = list_first_entry(&ring->active_list,
Chris Wilson05394f32010-11-08 19:18:58 +00002326 struct drm_i915_gem_object,
2327 ring_list);
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002328
Chris Wilson0201f1e2012-07-20 12:41:01 +01002329 if (!i915_seqno_passed(seqno, obj->last_read_seqno))
Chris Wilsonb84d5f02010-09-18 01:38:04 +01002330 break;
2331
Chris Wilson65ce3022012-07-20 12:41:02 +01002332 i915_gem_object_move_to_inactive(obj);
Eric Anholt673a3942008-07-30 12:06:12 -07002333 }
Chris Wilson9d34e5d2009-09-24 05:26:06 +01002334
Chris Wilsondb53a302011-02-03 11:57:46 +00002335 if (unlikely(ring->trace_irq_seqno &&
2336 i915_seqno_passed(seqno, ring->trace_irq_seqno))) {
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002337 ring->irq_put(ring);
Chris Wilsondb53a302011-02-03 11:57:46 +00002338 ring->trace_irq_seqno = 0;
Chris Wilson9d34e5d2009-09-24 05:26:06 +01002339 }
Chris Wilson23bc5982010-09-29 16:10:57 +01002340
Chris Wilsondb53a302011-02-03 11:57:46 +00002341 WARN_ON(i915_verify_lists(ring->dev));
Eric Anholt673a3942008-07-30 12:06:12 -07002342}
2343
2344void
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002345i915_gem_retire_requests(struct drm_device *dev)
2346{
2347 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01002348 struct intel_ring_buffer *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002349 int i;
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002350
Chris Wilsonb4519512012-05-11 14:29:30 +01002351 for_each_ring(ring, dev_priv, i)
2352 i915_gem_retire_requests_ring(ring);
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002353}
2354
Daniel Vetter75ef9da2010-08-21 00:25:16 +02002355static void
Eric Anholt673a3942008-07-30 12:06:12 -07002356i915_gem_retire_work_handler(struct work_struct *work)
2357{
2358 drm_i915_private_t *dev_priv;
2359 struct drm_device *dev;
Chris Wilsonb4519512012-05-11 14:29:30 +01002360 struct intel_ring_buffer *ring;
Chris Wilson0a587052011-01-09 21:05:44 +00002361 bool idle;
2362 int i;
Eric Anholt673a3942008-07-30 12:06:12 -07002363
2364 dev_priv = container_of(work, drm_i915_private_t,
2365 mm.retire_work.work);
2366 dev = dev_priv->dev;
2367
Chris Wilson891b48c2010-09-29 12:26:37 +01002368 /* Come back later if the device is busy... */
2369 if (!mutex_trylock(&dev->struct_mutex)) {
Chris Wilsonbcb45082012-10-05 17:02:57 +01002370 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work,
2371 round_jiffies_up_relative(HZ));
Chris Wilson891b48c2010-09-29 12:26:37 +01002372 return;
2373 }
2374
Chris Wilsonb09a1fe2010-07-23 23:18:49 +01002375 i915_gem_retire_requests(dev);
Zou Nan haid1b851f2010-05-21 09:08:57 +08002376
Chris Wilson0a587052011-01-09 21:05:44 +00002377 /* Send a periodic flush down the ring so we don't hold onto GEM
2378 * objects indefinitely.
2379 */
2380 idle = true;
Chris Wilsonb4519512012-05-11 14:29:30 +01002381 for_each_ring(ring, dev_priv, i) {
Chris Wilson3bb73ab2012-07-20 12:40:59 +01002382 if (ring->gpu_caches_dirty)
Mika Kuoppala0025c072013-06-12 12:35:30 +03002383 i915_add_request(ring, NULL);
Chris Wilson0a587052011-01-09 21:05:44 +00002384
2385 idle &= list_empty(&ring->request_list);
2386 }
2387
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02002388 if (!dev_priv->ums.mm_suspended && !idle)
Chris Wilsonbcb45082012-10-05 17:02:57 +01002389 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work,
2390 round_jiffies_up_relative(HZ));
Chris Wilsonf047e392012-07-21 12:31:41 +01002391 if (idle)
2392 intel_mark_idle(dev);
Chris Wilson0a587052011-01-09 21:05:44 +00002393
Eric Anholt673a3942008-07-30 12:06:12 -07002394 mutex_unlock(&dev->struct_mutex);
2395}
2396
Ben Widawsky5816d642012-04-11 11:18:19 -07002397/**
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002398 * Ensures that an object will eventually get non-busy by flushing any required
2399 * write domains, emitting any outstanding lazy request and retiring and
2400 * completed requests.
2401 */
2402static int
2403i915_gem_object_flush_active(struct drm_i915_gem_object *obj)
2404{
2405 int ret;
2406
2407 if (obj->active) {
Chris Wilson0201f1e2012-07-20 12:41:01 +01002408 ret = i915_gem_check_olr(obj->ring, obj->last_read_seqno);
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002409 if (ret)
2410 return ret;
2411
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002412 i915_gem_retire_requests_ring(obj->ring);
2413 }
2414
2415 return 0;
2416}
2417
2418/**
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002419 * i915_gem_wait_ioctl - implements DRM_IOCTL_I915_GEM_WAIT
2420 * @DRM_IOCTL_ARGS: standard ioctl arguments
2421 *
2422 * Returns 0 if successful, else an error is returned with the remaining time in
2423 * the timeout parameter.
2424 * -ETIME: object is still busy after timeout
2425 * -ERESTARTSYS: signal interrupted the wait
2426 * -ENONENT: object doesn't exist
2427 * Also possible, but rare:
2428 * -EAGAIN: GPU wedged
2429 * -ENOMEM: damn
2430 * -ENODEV: Internal IRQ fail
2431 * -E?: The add request failed
2432 *
2433 * The wait ioctl with a timeout of 0 reimplements the busy ioctl. With any
2434 * non-zero timeout parameter the wait ioctl will wait for the given number of
2435 * nanoseconds on an object becoming unbusy. Since the wait itself does so
2436 * without holding struct_mutex the object may become re-busied before this
2437 * function completes. A similar but shorter * race condition exists in the busy
2438 * ioctl
2439 */
2440int
2441i915_gem_wait_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
2442{
Daniel Vetterf69061b2012-12-06 09:01:42 +01002443 drm_i915_private_t *dev_priv = dev->dev_private;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002444 struct drm_i915_gem_wait *args = data;
2445 struct drm_i915_gem_object *obj;
2446 struct intel_ring_buffer *ring = NULL;
Ben Widawskyeac1f142012-06-05 15:24:24 -07002447 struct timespec timeout_stack, *timeout = NULL;
Daniel Vetterf69061b2012-12-06 09:01:42 +01002448 unsigned reset_counter;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002449 u32 seqno = 0;
2450 int ret = 0;
2451
Ben Widawskyeac1f142012-06-05 15:24:24 -07002452 if (args->timeout_ns >= 0) {
2453 timeout_stack = ns_to_timespec(args->timeout_ns);
2454 timeout = &timeout_stack;
2455 }
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002456
2457 ret = i915_mutex_lock_interruptible(dev);
2458 if (ret)
2459 return ret;
2460
2461 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->bo_handle));
2462 if (&obj->base == NULL) {
2463 mutex_unlock(&dev->struct_mutex);
2464 return -ENOENT;
2465 }
2466
Daniel Vetter30dfebf2012-06-01 15:21:23 +02002467 /* Need to make sure the object gets inactive eventually. */
2468 ret = i915_gem_object_flush_active(obj);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002469 if (ret)
2470 goto out;
2471
2472 if (obj->active) {
Chris Wilson0201f1e2012-07-20 12:41:01 +01002473 seqno = obj->last_read_seqno;
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002474 ring = obj->ring;
2475 }
2476
2477 if (seqno == 0)
2478 goto out;
2479
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002480 /* Do this after OLR check to make sure we make forward progress polling
2481 * on this IOCTL with a 0 timeout (like busy ioctl)
2482 */
2483 if (!args->timeout_ns) {
2484 ret = -ETIME;
2485 goto out;
2486 }
2487
2488 drm_gem_object_unreference(&obj->base);
Daniel Vetterf69061b2012-12-06 09:01:42 +01002489 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002490 mutex_unlock(&dev->struct_mutex);
2491
Daniel Vetterf69061b2012-12-06 09:01:42 +01002492 ret = __wait_seqno(ring, seqno, reset_counter, true, timeout);
Chris Wilson4f42f4e2013-04-26 16:22:46 +03002493 if (timeout)
Ben Widawskyeac1f142012-06-05 15:24:24 -07002494 args->timeout_ns = timespec_to_ns(timeout);
Ben Widawsky23ba4fd2012-05-24 15:03:10 -07002495 return ret;
2496
2497out:
2498 drm_gem_object_unreference(&obj->base);
2499 mutex_unlock(&dev->struct_mutex);
2500 return ret;
2501}
2502
2503/**
Ben Widawsky5816d642012-04-11 11:18:19 -07002504 * i915_gem_object_sync - sync an object to a ring.
2505 *
2506 * @obj: object which may be in use on another ring.
2507 * @to: ring we wish to use the object on. May be NULL.
2508 *
2509 * This code is meant to abstract object synchronization with the GPU.
2510 * Calling with NULL implies synchronizing the object with the CPU
2511 * rather than a particular GPU ring.
2512 *
2513 * Returns 0 if successful, else propagates up the lower layer error.
2514 */
Ben Widawsky2911a352012-04-05 14:47:36 -07002515int
2516i915_gem_object_sync(struct drm_i915_gem_object *obj,
2517 struct intel_ring_buffer *to)
2518{
2519 struct intel_ring_buffer *from = obj->ring;
2520 u32 seqno;
2521 int ret, idx;
2522
2523 if (from == NULL || to == from)
2524 return 0;
2525
Ben Widawsky5816d642012-04-11 11:18:19 -07002526 if (to == NULL || !i915_semaphore_is_enabled(obj->base.dev))
Chris Wilson0201f1e2012-07-20 12:41:01 +01002527 return i915_gem_object_wait_rendering(obj, false);
Ben Widawsky2911a352012-04-05 14:47:36 -07002528
2529 idx = intel_ring_sync_index(from, to);
2530
Chris Wilson0201f1e2012-07-20 12:41:01 +01002531 seqno = obj->last_read_seqno;
Ben Widawsky2911a352012-04-05 14:47:36 -07002532 if (seqno <= from->sync_seqno[idx])
2533 return 0;
2534
Ben Widawskyb4aca012012-04-25 20:50:12 -07002535 ret = i915_gem_check_olr(obj->ring, seqno);
2536 if (ret)
2537 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07002538
Ben Widawsky1500f7e2012-04-11 11:18:21 -07002539 ret = to->sync_to(to, from, seqno);
Ben Widawskye3a5a222012-04-11 11:18:20 -07002540 if (!ret)
Mika Kuoppala7b01e262012-11-28 17:18:45 +02002541 /* We use last_read_seqno because sync_to()
2542 * might have just caused seqno wrap under
2543 * the radar.
2544 */
2545 from->sync_seqno[idx] = obj->last_read_seqno;
Ben Widawsky2911a352012-04-05 14:47:36 -07002546
Ben Widawskye3a5a222012-04-11 11:18:20 -07002547 return ret;
Ben Widawsky2911a352012-04-05 14:47:36 -07002548}
2549
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002550static void i915_gem_object_finish_gtt(struct drm_i915_gem_object *obj)
2551{
2552 u32 old_write_domain, old_read_domains;
2553
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002554 /* Force a pagefault for domain tracking on next user access */
2555 i915_gem_release_mmap(obj);
2556
Keith Packardb97c3d92011-06-24 21:02:59 -07002557 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
2558 return;
2559
Chris Wilson97c809fd2012-10-09 19:24:38 +01002560 /* Wait for any direct GTT access to complete */
2561 mb();
2562
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002563 old_read_domains = obj->base.read_domains;
2564 old_write_domain = obj->base.write_domain;
2565
2566 obj->base.read_domains &= ~I915_GEM_DOMAIN_GTT;
2567 obj->base.write_domain &= ~I915_GEM_DOMAIN_GTT;
2568
2569 trace_i915_gem_object_change_domain(obj,
2570 old_read_domains,
2571 old_write_domain);
2572}
2573
Eric Anholt673a3942008-07-30 12:06:12 -07002574/**
2575 * Unbinds an object from the GTT aperture.
2576 */
Jesse Barnes0f973f22009-01-26 17:10:45 -08002577int
Chris Wilson05394f32010-11-08 19:18:58 +00002578i915_gem_object_unbind(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07002579{
Daniel Vetter7bddb012012-02-09 17:15:47 +01002580 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Chris Wilson43e28f02013-01-08 10:53:09 +00002581 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07002582
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002583 if (!i915_gem_obj_ggtt_bound(obj))
Eric Anholt673a3942008-07-30 12:06:12 -07002584 return 0;
2585
Chris Wilson31d8d652012-05-24 19:11:20 +01002586 if (obj->pin_count)
2587 return -EBUSY;
Eric Anholt673a3942008-07-30 12:06:12 -07002588
Chris Wilsonc4670ad2012-08-20 10:23:27 +01002589 BUG_ON(obj->pages == NULL);
2590
Chris Wilsona8198ee2011-04-13 22:04:09 +01002591 ret = i915_gem_object_finish_gpu(obj);
Chris Wilson1488fc02012-04-24 15:47:31 +01002592 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07002593 return ret;
Chris Wilson8dc17752010-07-23 23:18:51 +01002594 /* Continue on if we fail due to EIO, the GPU is hung so we
2595 * should be safe and we need to cleanup or else we might
2596 * cause memory corruption through use-after-free.
2597 */
Chris Wilsona8198ee2011-04-13 22:04:09 +01002598
Chris Wilsonb5ffc9b2011-04-13 22:06:03 +01002599 i915_gem_object_finish_gtt(obj);
Chris Wilsona8198ee2011-04-13 22:04:09 +01002600
Daniel Vetter96b47b62009-12-15 17:50:00 +01002601 /* release the fence reg _after_ flushing */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002602 ret = i915_gem_object_put_fence(obj);
Chris Wilson1488fc02012-04-24 15:47:31 +01002603 if (ret)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002604 return ret;
Daniel Vetter96b47b62009-12-15 17:50:00 +01002605
Chris Wilsondb53a302011-02-03 11:57:46 +00002606 trace_i915_gem_object_unbind(obj);
2607
Daniel Vetter74898d72012-02-15 23:50:22 +01002608 if (obj->has_global_gtt_mapping)
2609 i915_gem_gtt_unbind_object(obj);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002610 if (obj->has_aliasing_ppgtt_mapping) {
2611 i915_ppgtt_unbind_object(dev_priv->mm.aliasing_ppgtt, obj);
2612 obj->has_aliasing_ppgtt_mapping = 0;
2613 }
Daniel Vetter74163902012-02-15 23:50:21 +01002614 i915_gem_gtt_finish_object(obj);
Ben Widawsky401c29f2013-05-31 11:28:47 -07002615 i915_gem_object_unpin_pages(obj);
Daniel Vetter7bddb012012-02-09 17:15:47 +01002616
Chris Wilson6c085a72012-08-20 11:40:46 +02002617 list_del(&obj->mm_list);
Ben Widawsky35c20a62013-05-31 11:28:48 -07002618 list_move_tail(&obj->global_list, &dev_priv->mm.unbound_list);
Daniel Vetter75e9e912010-11-04 17:11:09 +01002619 /* Avoid an unnecessary call to unbind on rebind. */
Chris Wilson05394f32010-11-08 19:18:58 +00002620 obj->map_and_fenceable = true;
Eric Anholt673a3942008-07-30 12:06:12 -07002621
Ben Widawskyc6cfb322013-07-05 14:41:06 -07002622 drm_mm_remove_node(&obj->gtt_space);
Eric Anholt673a3942008-07-30 12:06:12 -07002623
Chris Wilson88241782011-01-07 17:09:48 +00002624 return 0;
Chris Wilson54cf91d2010-11-25 18:00:26 +00002625}
2626
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07002627int i915_gpu_idle(struct drm_device *dev)
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002628{
2629 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01002630 struct intel_ring_buffer *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002631 int ret, i;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002632
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002633 /* Flush everything onto the inactive list. */
Chris Wilsonb4519512012-05-11 14:29:30 +01002634 for_each_ring(ring, dev_priv, i) {
Ben Widawskyb6c74882012-08-14 14:35:14 -07002635 ret = i915_switch_context(ring, NULL, DEFAULT_CONTEXT_ID);
2636 if (ret)
2637 return ret;
2638
Chris Wilson3e960502012-11-27 16:22:54 +00002639 ret = intel_ring_idle(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002640 if (ret)
2641 return ret;
2642 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08002643
Daniel Vetter8a1a49f2010-02-11 22:29:04 +01002644 return 0;
Daniel Vetter4df2faf2010-02-19 11:52:00 +01002645}
2646
Chris Wilson9ce079e2012-04-17 15:31:30 +01002647static void i965_write_fence_reg(struct drm_device *dev, int reg,
2648 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002649{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002650 drm_i915_private_t *dev_priv = dev->dev_private;
Imre Deak56c844e2013-01-07 21:47:34 +02002651 int fence_reg;
2652 int fence_pitch_shift;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002653
Imre Deak56c844e2013-01-07 21:47:34 +02002654 if (INTEL_INFO(dev)->gen >= 6) {
2655 fence_reg = FENCE_REG_SANDYBRIDGE_0;
2656 fence_pitch_shift = SANDYBRIDGE_FENCE_PITCH_SHIFT;
2657 } else {
2658 fence_reg = FENCE_REG_965_0;
2659 fence_pitch_shift = I965_FENCE_PITCH_SHIFT;
2660 }
2661
Chris Wilsond18b9612013-07-10 13:36:23 +01002662 fence_reg += reg * 8;
2663
2664 /* To w/a incoherency with non-atomic 64-bit register updates,
2665 * we split the 64-bit update into two 32-bit writes. In order
2666 * for a partial fence not to be evaluated between writes, we
2667 * precede the update with write to turn off the fence register,
2668 * and only enable the fence as the last step.
2669 *
2670 * For extra levels of paranoia, we make sure each step lands
2671 * before applying the next step.
2672 */
2673 I915_WRITE(fence_reg, 0);
2674 POSTING_READ(fence_reg);
2675
Chris Wilson9ce079e2012-04-17 15:31:30 +01002676 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002677 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilsond18b9612013-07-10 13:36:23 +01002678 uint64_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002679
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002680 val = (uint64_t)((i915_gem_obj_ggtt_offset(obj) + size - 4096) &
Chris Wilson9ce079e2012-04-17 15:31:30 +01002681 0xfffff000) << 32;
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002682 val |= i915_gem_obj_ggtt_offset(obj) & 0xfffff000;
Imre Deak56c844e2013-01-07 21:47:34 +02002683 val |= (uint64_t)((obj->stride / 128) - 1) << fence_pitch_shift;
Chris Wilson9ce079e2012-04-17 15:31:30 +01002684 if (obj->tiling_mode == I915_TILING_Y)
2685 val |= 1 << I965_FENCE_TILING_Y_SHIFT;
2686 val |= I965_FENCE_REG_VALID;
Daniel Vetterc6642782010-11-12 13:46:18 +00002687
Chris Wilsond18b9612013-07-10 13:36:23 +01002688 I915_WRITE(fence_reg + 4, val >> 32);
2689 POSTING_READ(fence_reg + 4);
2690
2691 I915_WRITE(fence_reg + 0, val);
2692 POSTING_READ(fence_reg);
2693 } else {
2694 I915_WRITE(fence_reg + 4, 0);
2695 POSTING_READ(fence_reg + 4);
2696 }
Jesse Barnesde151cf2008-11-12 10:03:55 -08002697}
2698
Chris Wilson9ce079e2012-04-17 15:31:30 +01002699static void i915_write_fence_reg(struct drm_device *dev, int reg,
2700 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002701{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002702 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson9ce079e2012-04-17 15:31:30 +01002703 u32 val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002704
Chris Wilson9ce079e2012-04-17 15:31:30 +01002705 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002706 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01002707 int pitch_val;
2708 int tile_width;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002709
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002710 WARN((i915_gem_obj_ggtt_offset(obj) & ~I915_FENCE_START_MASK) ||
Chris Wilson9ce079e2012-04-17 15:31:30 +01002711 (size & -size) != size ||
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002712 (i915_gem_obj_ggtt_offset(obj) & (size - 1)),
2713 "object 0x%08lx [fenceable? %d] not 1M or pot-size (0x%08x) aligned\n",
2714 i915_gem_obj_ggtt_offset(obj), obj->map_and_fenceable, size);
Chris Wilson9ce079e2012-04-17 15:31:30 +01002715
2716 if (obj->tiling_mode == I915_TILING_Y && HAS_128_BYTE_Y_TILING(dev))
2717 tile_width = 128;
2718 else
2719 tile_width = 512;
2720
2721 /* Note: pitch better be a power of two tile widths */
2722 pitch_val = obj->stride / tile_width;
2723 pitch_val = ffs(pitch_val) - 1;
2724
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002725 val = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01002726 if (obj->tiling_mode == I915_TILING_Y)
2727 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
2728 val |= I915_FENCE_SIZE_BITS(size);
2729 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2730 val |= I830_FENCE_REG_VALID;
2731 } else
2732 val = 0;
2733
2734 if (reg < 8)
2735 reg = FENCE_REG_830_0 + reg * 4;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002736 else
Chris Wilson9ce079e2012-04-17 15:31:30 +01002737 reg = FENCE_REG_945_8 + (reg - 8) * 4;
Jesse Barnes0f973f22009-01-26 17:10:45 -08002738
Chris Wilson9ce079e2012-04-17 15:31:30 +01002739 I915_WRITE(reg, val);
2740 POSTING_READ(reg);
Jesse Barnesde151cf2008-11-12 10:03:55 -08002741}
2742
Chris Wilson9ce079e2012-04-17 15:31:30 +01002743static void i830_write_fence_reg(struct drm_device *dev, int reg,
2744 struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002745{
Jesse Barnesde151cf2008-11-12 10:03:55 -08002746 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002747 uint32_t val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002748
Chris Wilson9ce079e2012-04-17 15:31:30 +01002749 if (obj) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002750 u32 size = i915_gem_obj_ggtt_size(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01002751 uint32_t pitch_val;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002752
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002753 WARN((i915_gem_obj_ggtt_offset(obj) & ~I830_FENCE_START_MASK) ||
Chris Wilson9ce079e2012-04-17 15:31:30 +01002754 (size & -size) != size ||
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002755 (i915_gem_obj_ggtt_offset(obj) & (size - 1)),
2756 "object 0x%08lx not 512K or pot-size 0x%08x aligned\n",
2757 i915_gem_obj_ggtt_offset(obj), size);
Eric Anholte76a16d2009-05-26 17:44:56 -07002758
Chris Wilson9ce079e2012-04-17 15:31:30 +01002759 pitch_val = obj->stride / 128;
2760 pitch_val = ffs(pitch_val) - 1;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002761
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002762 val = i915_gem_obj_ggtt_offset(obj);
Chris Wilson9ce079e2012-04-17 15:31:30 +01002763 if (obj->tiling_mode == I915_TILING_Y)
2764 val |= 1 << I830_FENCE_TILING_Y_SHIFT;
2765 val |= I830_FENCE_SIZE_BITS(size);
2766 val |= pitch_val << I830_FENCE_PITCH_SHIFT;
2767 val |= I830_FENCE_REG_VALID;
2768 } else
2769 val = 0;
Daniel Vetterc6642782010-11-12 13:46:18 +00002770
Chris Wilson9ce079e2012-04-17 15:31:30 +01002771 I915_WRITE(FENCE_REG_830_0 + reg * 4, val);
2772 POSTING_READ(FENCE_REG_830_0 + reg * 4);
2773}
2774
Chris Wilsond0a57782012-10-09 19:24:37 +01002775inline static bool i915_gem_object_needs_mb(struct drm_i915_gem_object *obj)
2776{
2777 return obj && obj->base.read_domains & I915_GEM_DOMAIN_GTT;
2778}
2779
Chris Wilson9ce079e2012-04-17 15:31:30 +01002780static void i915_gem_write_fence(struct drm_device *dev, int reg,
2781 struct drm_i915_gem_object *obj)
2782{
Chris Wilsond0a57782012-10-09 19:24:37 +01002783 struct drm_i915_private *dev_priv = dev->dev_private;
2784
2785 /* Ensure that all CPU reads are completed before installing a fence
2786 * and all writes before removing the fence.
2787 */
2788 if (i915_gem_object_needs_mb(dev_priv->fence_regs[reg].obj))
2789 mb();
2790
Chris Wilson9ce079e2012-04-17 15:31:30 +01002791 switch (INTEL_INFO(dev)->gen) {
2792 case 7:
Imre Deak56c844e2013-01-07 21:47:34 +02002793 case 6:
Chris Wilson9ce079e2012-04-17 15:31:30 +01002794 case 5:
2795 case 4: i965_write_fence_reg(dev, reg, obj); break;
2796 case 3: i915_write_fence_reg(dev, reg, obj); break;
2797 case 2: i830_write_fence_reg(dev, reg, obj); break;
Ben Widawsky7dbf9d62012-12-18 10:31:22 -08002798 default: BUG();
Chris Wilson9ce079e2012-04-17 15:31:30 +01002799 }
Chris Wilsond0a57782012-10-09 19:24:37 +01002800
2801 /* And similarly be paranoid that no direct access to this region
2802 * is reordered to before the fence is installed.
2803 */
2804 if (i915_gem_object_needs_mb(obj))
2805 mb();
Jesse Barnesde151cf2008-11-12 10:03:55 -08002806}
2807
Chris Wilson61050802012-04-17 15:31:31 +01002808static inline int fence_number(struct drm_i915_private *dev_priv,
2809 struct drm_i915_fence_reg *fence)
2810{
2811 return fence - dev_priv->fence_regs;
2812}
2813
2814static void i915_gem_object_update_fence(struct drm_i915_gem_object *obj,
2815 struct drm_i915_fence_reg *fence,
2816 bool enable)
2817{
Chris Wilson2dc8aae2013-05-22 17:08:06 +01002818 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilson46a0b632013-07-10 13:36:24 +01002819 int reg = fence_number(dev_priv, fence);
Chris Wilson61050802012-04-17 15:31:31 +01002820
Chris Wilson46a0b632013-07-10 13:36:24 +01002821 i915_gem_write_fence(obj->base.dev, reg, enable ? obj : NULL);
Chris Wilson61050802012-04-17 15:31:31 +01002822
2823 if (enable) {
Chris Wilson46a0b632013-07-10 13:36:24 +01002824 obj->fence_reg = reg;
Chris Wilson61050802012-04-17 15:31:31 +01002825 fence->obj = obj;
2826 list_move_tail(&fence->lru_list, &dev_priv->mm.fence_list);
2827 } else {
2828 obj->fence_reg = I915_FENCE_REG_NONE;
2829 fence->obj = NULL;
2830 list_del_init(&fence->lru_list);
2831 }
2832}
2833
Chris Wilsond9e86c02010-11-10 16:40:20 +00002834static int
Chris Wilsond0a57782012-10-09 19:24:37 +01002835i915_gem_object_wait_fence(struct drm_i915_gem_object *obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002836{
Chris Wilson1c293ea2012-04-17 15:31:27 +01002837 if (obj->last_fenced_seqno) {
Chris Wilson86d5bc32012-07-20 12:41:04 +01002838 int ret = i915_wait_seqno(obj->ring, obj->last_fenced_seqno);
Chris Wilson18991842012-04-17 15:31:29 +01002839 if (ret)
2840 return ret;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002841
2842 obj->last_fenced_seqno = 0;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002843 }
2844
Chris Wilson86d5bc32012-07-20 12:41:04 +01002845 obj->fenced_gpu_access = false;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002846 return 0;
2847}
2848
2849int
2850i915_gem_object_put_fence(struct drm_i915_gem_object *obj)
2851{
Chris Wilson61050802012-04-17 15:31:31 +01002852 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
Chris Wilsonf9c513e2013-03-26 11:29:27 +00002853 struct drm_i915_fence_reg *fence;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002854 int ret;
2855
Chris Wilsond0a57782012-10-09 19:24:37 +01002856 ret = i915_gem_object_wait_fence(obj);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002857 if (ret)
2858 return ret;
2859
Chris Wilson61050802012-04-17 15:31:31 +01002860 if (obj->fence_reg == I915_FENCE_REG_NONE)
2861 return 0;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002862
Chris Wilsonf9c513e2013-03-26 11:29:27 +00002863 fence = &dev_priv->fence_regs[obj->fence_reg];
2864
Chris Wilson61050802012-04-17 15:31:31 +01002865 i915_gem_object_fence_lost(obj);
Chris Wilsonf9c513e2013-03-26 11:29:27 +00002866 i915_gem_object_update_fence(obj, fence, false);
Chris Wilsond9e86c02010-11-10 16:40:20 +00002867
2868 return 0;
2869}
2870
2871static struct drm_i915_fence_reg *
Chris Wilsona360bb12012-04-17 15:31:25 +01002872i915_find_fence_reg(struct drm_device *dev)
Daniel Vetterae3db242010-02-19 11:51:58 +01002873{
Daniel Vetterae3db242010-02-19 11:51:58 +01002874 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson8fe301a2012-04-17 15:31:28 +01002875 struct drm_i915_fence_reg *reg, *avail;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002876 int i;
Daniel Vetterae3db242010-02-19 11:51:58 +01002877
2878 /* First try to find a free reg */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002879 avail = NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002880 for (i = dev_priv->fence_reg_start; i < dev_priv->num_fence_regs; i++) {
2881 reg = &dev_priv->fence_regs[i];
2882 if (!reg->obj)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002883 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002884
Chris Wilson1690e1e2011-12-14 13:57:08 +01002885 if (!reg->pin_count)
Chris Wilsond9e86c02010-11-10 16:40:20 +00002886 avail = reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002887 }
2888
Chris Wilsond9e86c02010-11-10 16:40:20 +00002889 if (avail == NULL)
2890 return NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002891
2892 /* None available, try to steal one or wait for a user to finish */
Chris Wilsond9e86c02010-11-10 16:40:20 +00002893 list_for_each_entry(reg, &dev_priv->mm.fence_list, lru_list) {
Chris Wilson1690e1e2011-12-14 13:57:08 +01002894 if (reg->pin_count)
Daniel Vetterae3db242010-02-19 11:51:58 +01002895 continue;
2896
Chris Wilson8fe301a2012-04-17 15:31:28 +01002897 return reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002898 }
2899
Chris Wilson8fe301a2012-04-17 15:31:28 +01002900 return NULL;
Daniel Vetterae3db242010-02-19 11:51:58 +01002901}
2902
Jesse Barnesde151cf2008-11-12 10:03:55 -08002903/**
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002904 * i915_gem_object_get_fence - set up fencing for an object
Jesse Barnesde151cf2008-11-12 10:03:55 -08002905 * @obj: object to map through a fence reg
2906 *
2907 * When mapping objects through the GTT, userspace wants to be able to write
2908 * to them without having to worry about swizzling if the object is tiled.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002909 * This function walks the fence regs looking for a free one for @obj,
2910 * stealing one if it can't find any.
2911 *
2912 * It then sets up the reg based on the object's properties: address, pitch
2913 * and tiling format.
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002914 *
2915 * For an untiled surface, this removes any existing fence.
Jesse Barnesde151cf2008-11-12 10:03:55 -08002916 */
Chris Wilson8c4b8c32009-06-17 22:08:52 +01002917int
Chris Wilson06d98132012-04-17 15:31:24 +01002918i915_gem_object_get_fence(struct drm_i915_gem_object *obj)
Jesse Barnesde151cf2008-11-12 10:03:55 -08002919{
Chris Wilson05394f32010-11-08 19:18:58 +00002920 struct drm_device *dev = obj->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002921 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson14415742012-04-17 15:31:33 +01002922 bool enable = obj->tiling_mode != I915_TILING_NONE;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002923 struct drm_i915_fence_reg *reg;
Daniel Vetterae3db242010-02-19 11:51:58 +01002924 int ret;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002925
Chris Wilson14415742012-04-17 15:31:33 +01002926 /* Have we updated the tiling parameters upon the object and so
2927 * will need to serialise the write to the associated fence register?
2928 */
Chris Wilson5d82e3e2012-04-21 16:23:23 +01002929 if (obj->fence_dirty) {
Chris Wilsond0a57782012-10-09 19:24:37 +01002930 ret = i915_gem_object_wait_fence(obj);
Chris Wilson14415742012-04-17 15:31:33 +01002931 if (ret)
2932 return ret;
2933 }
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002934
Chris Wilsond9e86c02010-11-10 16:40:20 +00002935 /* Just update our place in the LRU if our fence is getting reused. */
Chris Wilson05394f32010-11-08 19:18:58 +00002936 if (obj->fence_reg != I915_FENCE_REG_NONE) {
2937 reg = &dev_priv->fence_regs[obj->fence_reg];
Chris Wilson5d82e3e2012-04-21 16:23:23 +01002938 if (!obj->fence_dirty) {
Chris Wilson14415742012-04-17 15:31:33 +01002939 list_move_tail(&reg->lru_list,
2940 &dev_priv->mm.fence_list);
2941 return 0;
2942 }
2943 } else if (enable) {
2944 reg = i915_find_fence_reg(dev);
2945 if (reg == NULL)
2946 return -EDEADLK;
Chris Wilsond9e86c02010-11-10 16:40:20 +00002947
Chris Wilson14415742012-04-17 15:31:33 +01002948 if (reg->obj) {
2949 struct drm_i915_gem_object *old = reg->obj;
2950
Chris Wilsond0a57782012-10-09 19:24:37 +01002951 ret = i915_gem_object_wait_fence(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00002952 if (ret)
2953 return ret;
2954
Chris Wilson14415742012-04-17 15:31:33 +01002955 i915_gem_object_fence_lost(old);
Chris Wilson29c5a582011-03-17 15:23:22 +00002956 }
Chris Wilson14415742012-04-17 15:31:33 +01002957 } else
Eric Anholta09ba7f2009-08-29 12:49:51 -07002958 return 0;
Eric Anholta09ba7f2009-08-29 12:49:51 -07002959
Chris Wilson14415742012-04-17 15:31:33 +01002960 i915_gem_object_update_fence(obj, reg, enable);
Chris Wilson5d82e3e2012-04-21 16:23:23 +01002961 obj->fence_dirty = false;
Chris Wilson14415742012-04-17 15:31:33 +01002962
Chris Wilson9ce079e2012-04-17 15:31:30 +01002963 return 0;
Jesse Barnesde151cf2008-11-12 10:03:55 -08002964}
2965
Chris Wilson42d6ab42012-07-26 11:49:32 +01002966static bool i915_gem_valid_gtt_space(struct drm_device *dev,
2967 struct drm_mm_node *gtt_space,
2968 unsigned long cache_level)
2969{
2970 struct drm_mm_node *other;
2971
2972 /* On non-LLC machines we have to be careful when putting differing
2973 * types of snoopable memory together to avoid the prefetcher
Damien Lespiau4239ca72012-12-03 16:26:16 +00002974 * crossing memory domains and dying.
Chris Wilson42d6ab42012-07-26 11:49:32 +01002975 */
2976 if (HAS_LLC(dev))
2977 return true;
2978
Ben Widawskyc6cfb322013-07-05 14:41:06 -07002979 if (!drm_mm_node_allocated(gtt_space))
Chris Wilson42d6ab42012-07-26 11:49:32 +01002980 return true;
2981
2982 if (list_empty(&gtt_space->node_list))
2983 return true;
2984
2985 other = list_entry(gtt_space->node_list.prev, struct drm_mm_node, node_list);
2986 if (other->allocated && !other->hole_follows && other->color != cache_level)
2987 return false;
2988
2989 other = list_entry(gtt_space->node_list.next, struct drm_mm_node, node_list);
2990 if (other->allocated && !gtt_space->hole_follows && other->color != cache_level)
2991 return false;
2992
2993 return true;
2994}
2995
2996static void i915_gem_verify_gtt(struct drm_device *dev)
2997{
2998#if WATCH_GTT
2999 struct drm_i915_private *dev_priv = dev->dev_private;
3000 struct drm_i915_gem_object *obj;
3001 int err = 0;
3002
Ben Widawsky35c20a62013-05-31 11:28:48 -07003003 list_for_each_entry(obj, &dev_priv->mm.gtt_list, global_list) {
Chris Wilson42d6ab42012-07-26 11:49:32 +01003004 if (obj->gtt_space == NULL) {
3005 printk(KERN_ERR "object found on GTT list with no space reserved\n");
3006 err++;
3007 continue;
3008 }
3009
3010 if (obj->cache_level != obj->gtt_space->color) {
3011 printk(KERN_ERR "object reserved space [%08lx, %08lx] with wrong color, cache_level=%x, color=%lx\n",
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003012 i915_gem_obj_ggtt_offset(obj),
3013 i915_gem_obj_ggtt_offset(obj) + i915_gem_obj_ggtt_size(obj),
Chris Wilson42d6ab42012-07-26 11:49:32 +01003014 obj->cache_level,
3015 obj->gtt_space->color);
3016 err++;
3017 continue;
3018 }
3019
3020 if (!i915_gem_valid_gtt_space(dev,
3021 obj->gtt_space,
3022 obj->cache_level)) {
3023 printk(KERN_ERR "invalid GTT space found at [%08lx, %08lx] - color=%x\n",
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003024 i915_gem_obj_ggtt_offset(obj),
3025 i915_gem_obj_ggtt_offset(obj) + i915_gem_obj_ggtt_size(obj),
Chris Wilson42d6ab42012-07-26 11:49:32 +01003026 obj->cache_level);
3027 err++;
3028 continue;
3029 }
3030 }
3031
3032 WARN_ON(err);
3033#endif
3034}
3035
Jesse Barnesde151cf2008-11-12 10:03:55 -08003036/**
Eric Anholt673a3942008-07-30 12:06:12 -07003037 * Finds free space in the GTT aperture and binds the object there.
3038 */
3039static int
Chris Wilson05394f32010-11-08 19:18:58 +00003040i915_gem_object_bind_to_gtt(struct drm_i915_gem_object *obj,
Daniel Vetter920afa72010-09-16 17:54:23 +02003041 unsigned alignment,
Chris Wilson86a1ee22012-08-11 15:41:04 +01003042 bool map_and_fenceable,
3043 bool nonblocking)
Eric Anholt673a3942008-07-30 12:06:12 -07003044{
Chris Wilson05394f32010-11-08 19:18:58 +00003045 struct drm_device *dev = obj->base.dev;
Eric Anholt673a3942008-07-30 12:06:12 -07003046 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter5e783302010-11-14 22:32:36 +01003047 u32 size, fence_size, fence_alignment, unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01003048 bool mappable, fenceable;
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003049 size_t gtt_max = map_and_fenceable ?
3050 dev_priv->gtt.mappable_end : dev_priv->gtt.total;
Chris Wilson07f73f62009-09-14 16:50:30 +01003051 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003052
Chris Wilsone28f8712011-07-18 13:11:49 -07003053 fence_size = i915_gem_get_gtt_size(dev,
3054 obj->base.size,
3055 obj->tiling_mode);
3056 fence_alignment = i915_gem_get_gtt_alignment(dev,
3057 obj->base.size,
Imre Deakd865110c2013-01-07 21:47:33 +02003058 obj->tiling_mode, true);
Chris Wilsone28f8712011-07-18 13:11:49 -07003059 unfenced_alignment =
Imre Deakd865110c2013-01-07 21:47:33 +02003060 i915_gem_get_gtt_alignment(dev,
Chris Wilsone28f8712011-07-18 13:11:49 -07003061 obj->base.size,
Imre Deakd865110c2013-01-07 21:47:33 +02003062 obj->tiling_mode, false);
Chris Wilsona00b10c2010-09-24 21:15:47 +01003063
Eric Anholt673a3942008-07-30 12:06:12 -07003064 if (alignment == 0)
Daniel Vetter5e783302010-11-14 22:32:36 +01003065 alignment = map_and_fenceable ? fence_alignment :
3066 unfenced_alignment;
Daniel Vetter75e9e912010-11-04 17:11:09 +01003067 if (map_and_fenceable && alignment & (fence_alignment - 1)) {
Eric Anholt673a3942008-07-30 12:06:12 -07003068 DRM_ERROR("Invalid object alignment requested %u\n", alignment);
3069 return -EINVAL;
3070 }
3071
Chris Wilson05394f32010-11-08 19:18:58 +00003072 size = map_and_fenceable ? fence_size : obj->base.size;
Chris Wilsona00b10c2010-09-24 21:15:47 +01003073
Chris Wilson654fc602010-05-27 13:18:21 +01003074 /* If the object is bigger than the entire aperture, reject it early
3075 * before evicting everything in a vain attempt to find space.
3076 */
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003077 if (obj->base.size > gtt_max) {
Jani Nikula3765f302013-06-07 16:03:50 +03003078 DRM_ERROR("Attempting to bind an object larger than the aperture: object=%zd > %s aperture=%zu\n",
Chris Wilsona36689c2013-05-21 16:58:49 +01003079 obj->base.size,
3080 map_and_fenceable ? "mappable" : "total",
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003081 gtt_max);
Chris Wilson654fc602010-05-27 13:18:21 +01003082 return -E2BIG;
3083 }
3084
Chris Wilson37e680a2012-06-07 15:38:42 +01003085 ret = i915_gem_object_get_pages(obj);
Chris Wilson6c085a72012-08-20 11:40:46 +02003086 if (ret)
3087 return ret;
3088
Chris Wilsonfbdda6f2012-11-20 10:45:16 +00003089 i915_gem_object_pin_pages(obj);
3090
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003091search_free:
Ben Widawskyc6cfb322013-07-05 14:41:06 -07003092 ret = drm_mm_insert_node_in_range_generic(&dev_priv->mm.gtt_space,
3093 &obj->gtt_space,
Ben Widawsky0a9ae0d2013-05-25 12:26:35 -07003094 size, alignment,
3095 obj->cache_level, 0, gtt_max);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003096 if (ret) {
Daniel Vetter75e9e912010-11-04 17:11:09 +01003097 ret = i915_gem_evict_something(dev, size, alignment,
Chris Wilson42d6ab42012-07-26 11:49:32 +01003098 obj->cache_level,
Chris Wilson86a1ee22012-08-11 15:41:04 +01003099 map_and_fenceable,
3100 nonblocking);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003101 if (ret == 0)
3102 goto search_free;
Chris Wilson97311292009-09-21 00:22:34 +01003103
Chris Wilsonfbdda6f2012-11-20 10:45:16 +00003104 i915_gem_object_unpin_pages(obj);
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003105 return ret;
3106 }
Ben Widawskyc6cfb322013-07-05 14:41:06 -07003107 if (WARN_ON(!i915_gem_valid_gtt_space(dev, &obj->gtt_space,
3108 obj->cache_level))) {
Chris Wilsondc9dd7a2012-12-07 20:37:07 +00003109 i915_gem_object_unpin_pages(obj);
Ben Widawskyc6cfb322013-07-05 14:41:06 -07003110 drm_mm_remove_node(&obj->gtt_space);
Chris Wilson42d6ab42012-07-26 11:49:32 +01003111 return -EINVAL;
Eric Anholt673a3942008-07-30 12:06:12 -07003112 }
3113
Daniel Vetter74163902012-02-15 23:50:21 +01003114 ret = i915_gem_gtt_prepare_object(obj);
Daniel Vetter7c2e6fd2010-11-06 10:10:47 +01003115 if (ret) {
Chris Wilsonfbdda6f2012-11-20 10:45:16 +00003116 i915_gem_object_unpin_pages(obj);
Ben Widawskyc6cfb322013-07-05 14:41:06 -07003117 drm_mm_remove_node(&obj->gtt_space);
Chris Wilson6c085a72012-08-20 11:40:46 +02003118 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003119 }
Eric Anholt673a3942008-07-30 12:06:12 -07003120
Ben Widawsky35c20a62013-05-31 11:28:48 -07003121 list_move_tail(&obj->global_list, &dev_priv->mm.bound_list);
Chris Wilson05394f32010-11-08 19:18:58 +00003122 list_add_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
Chris Wilsonbf1a1092010-08-07 11:01:20 +01003123
Daniel Vetter75e9e912010-11-04 17:11:09 +01003124 fenceable =
Ben Widawskyc6cfb322013-07-05 14:41:06 -07003125 i915_gem_obj_ggtt_size(obj) == fence_size &&
3126 (i915_gem_obj_ggtt_offset(obj) & (fence_alignment - 1)) == 0;
Chris Wilsona00b10c2010-09-24 21:15:47 +01003127
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003128 mappable = i915_gem_obj_ggtt_offset(obj) + obj->base.size <=
3129 dev_priv->gtt.mappable_end;
Chris Wilsona00b10c2010-09-24 21:15:47 +01003130
Chris Wilson05394f32010-11-08 19:18:58 +00003131 obj->map_and_fenceable = mappable && fenceable;
Daniel Vetter75e9e912010-11-04 17:11:09 +01003132
Chris Wilsondb53a302011-02-03 11:57:46 +00003133 trace_i915_gem_object_bind(obj, map_and_fenceable);
Chris Wilson42d6ab42012-07-26 11:49:32 +01003134 i915_gem_verify_gtt(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07003135 return 0;
3136}
3137
3138void
Chris Wilson05394f32010-11-08 19:18:58 +00003139i915_gem_clflush_object(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003140{
Eric Anholt673a3942008-07-30 12:06:12 -07003141 /* If we don't have a page list set up, then we're not pinned
3142 * to GPU, and we can ignore the cache flush because it'll happen
3143 * again at bind time.
3144 */
Chris Wilson05394f32010-11-08 19:18:58 +00003145 if (obj->pages == NULL)
Eric Anholt673a3942008-07-30 12:06:12 -07003146 return;
3147
Imre Deak769ce462013-02-13 21:56:05 +02003148 /*
3149 * Stolen memory is always coherent with the GPU as it is explicitly
3150 * marked as wc by the system, or the system is cache-coherent.
3151 */
3152 if (obj->stolen)
3153 return;
3154
Chris Wilson9c23f7f2011-03-29 16:59:52 -07003155 /* If the GPU is snooping the contents of the CPU cache,
3156 * we do not need to manually clear the CPU cache lines. However,
3157 * the caches are only snooped when the render cache is
3158 * flushed/invalidated. As we always have to emit invalidations
3159 * and flushes when moving into and out of the RENDER domain, correct
3160 * snooping behaviour occurs naturally as the result of our domain
3161 * tracking.
3162 */
3163 if (obj->cache_level != I915_CACHE_NONE)
3164 return;
3165
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003166 trace_i915_gem_object_clflush(obj);
Eric Anholtcfa16a02009-05-26 18:46:16 -07003167
Chris Wilson9da3da62012-06-01 15:20:22 +01003168 drm_clflush_sg(obj->pages);
Eric Anholte47c68e2008-11-14 13:35:19 -08003169}
3170
3171/** Flushes the GTT write domain for the object if it's dirty. */
3172static void
Chris Wilson05394f32010-11-08 19:18:58 +00003173i915_gem_object_flush_gtt_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003174{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003175 uint32_t old_write_domain;
3176
Chris Wilson05394f32010-11-08 19:18:58 +00003177 if (obj->base.write_domain != I915_GEM_DOMAIN_GTT)
Eric Anholte47c68e2008-11-14 13:35:19 -08003178 return;
3179
Chris Wilson63256ec2011-01-04 18:42:07 +00003180 /* No actual flushing is required for the GTT write domain. Writes
Eric Anholte47c68e2008-11-14 13:35:19 -08003181 * to it immediately go to main memory as far as we know, so there's
3182 * no chipset flush. It also doesn't land in render cache.
Chris Wilson63256ec2011-01-04 18:42:07 +00003183 *
3184 * However, we do have to enforce the order so that all writes through
3185 * the GTT land before any writes to the device, such as updates to
3186 * the GATT itself.
Eric Anholte47c68e2008-11-14 13:35:19 -08003187 */
Chris Wilson63256ec2011-01-04 18:42:07 +00003188 wmb();
3189
Chris Wilson05394f32010-11-08 19:18:58 +00003190 old_write_domain = obj->base.write_domain;
3191 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003192
3193 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003194 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003195 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003196}
3197
3198/** Flushes the CPU write domain for the object if it's dirty. */
3199static void
Chris Wilson05394f32010-11-08 19:18:58 +00003200i915_gem_object_flush_cpu_write_domain(struct drm_i915_gem_object *obj)
Eric Anholte47c68e2008-11-14 13:35:19 -08003201{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003202 uint32_t old_write_domain;
Eric Anholte47c68e2008-11-14 13:35:19 -08003203
Chris Wilson05394f32010-11-08 19:18:58 +00003204 if (obj->base.write_domain != I915_GEM_DOMAIN_CPU)
Eric Anholte47c68e2008-11-14 13:35:19 -08003205 return;
3206
3207 i915_gem_clflush_object(obj);
Ben Widawskye76e9ae2012-11-04 09:21:27 -08003208 i915_gem_chipset_flush(obj->base.dev);
Chris Wilson05394f32010-11-08 19:18:58 +00003209 old_write_domain = obj->base.write_domain;
3210 obj->base.write_domain = 0;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003211
3212 trace_i915_gem_object_change_domain(obj,
Chris Wilson05394f32010-11-08 19:18:58 +00003213 obj->base.read_domains,
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003214 old_write_domain);
Eric Anholte47c68e2008-11-14 13:35:19 -08003215}
3216
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003217/**
3218 * Moves a single object to the GTT read, and possibly write domain.
3219 *
3220 * This function returns when the move is complete, including waiting on
3221 * flushes to occur.
3222 */
Jesse Barnes79e53942008-11-07 14:24:08 -08003223int
Chris Wilson20217462010-11-23 15:26:33 +00003224i915_gem_object_set_to_gtt_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003225{
Chris Wilson8325a092012-04-24 15:52:35 +01003226 drm_i915_private_t *dev_priv = obj->base.dev->dev_private;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003227 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003228 int ret;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003229
Eric Anholt02354392008-11-26 13:58:13 -08003230 /* Not valid to be called on unbound objects. */
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003231 if (!i915_gem_obj_ggtt_bound(obj))
Eric Anholt02354392008-11-26 13:58:13 -08003232 return -EINVAL;
3233
Chris Wilson8d7e3de2011-02-07 15:23:02 +00003234 if (obj->base.write_domain == I915_GEM_DOMAIN_GTT)
3235 return 0;
3236
Chris Wilson0201f1e2012-07-20 12:41:01 +01003237 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00003238 if (ret)
3239 return ret;
3240
Chris Wilson72133422010-09-13 23:56:38 +01003241 i915_gem_object_flush_cpu_write_domain(obj);
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003242
Chris Wilsond0a57782012-10-09 19:24:37 +01003243 /* Serialise direct access to this object with the barriers for
3244 * coherent writes from the GPU, by effectively invalidating the
3245 * GTT domain upon first access.
3246 */
3247 if ((obj->base.read_domains & I915_GEM_DOMAIN_GTT) == 0)
3248 mb();
3249
Chris Wilson05394f32010-11-08 19:18:58 +00003250 old_write_domain = obj->base.write_domain;
3251 old_read_domains = obj->base.read_domains;
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003252
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003253 /* It should now be out of any other write domains, and we can update
3254 * the domain values for our changes.
3255 */
Chris Wilson05394f32010-11-08 19:18:58 +00003256 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_GTT) != 0);
3257 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Eric Anholte47c68e2008-11-14 13:35:19 -08003258 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003259 obj->base.read_domains = I915_GEM_DOMAIN_GTT;
3260 obj->base.write_domain = I915_GEM_DOMAIN_GTT;
3261 obj->dirty = 1;
Eric Anholte47c68e2008-11-14 13:35:19 -08003262 }
3263
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003264 trace_i915_gem_object_change_domain(obj,
3265 old_read_domains,
3266 old_write_domain);
3267
Chris Wilson8325a092012-04-24 15:52:35 +01003268 /* And bump the LRU for this access */
3269 if (i915_gem_object_is_inactive(obj))
3270 list_move_tail(&obj->mm_list, &dev_priv->mm.inactive_list);
3271
Eric Anholte47c68e2008-11-14 13:35:19 -08003272 return 0;
3273}
3274
Chris Wilsone4ffd172011-04-04 09:44:39 +01003275int i915_gem_object_set_cache_level(struct drm_i915_gem_object *obj,
3276 enum i915_cache_level cache_level)
3277{
Daniel Vetter7bddb012012-02-09 17:15:47 +01003278 struct drm_device *dev = obj->base.dev;
3279 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsone4ffd172011-04-04 09:44:39 +01003280 int ret;
3281
3282 if (obj->cache_level == cache_level)
3283 return 0;
3284
3285 if (obj->pin_count) {
3286 DRM_DEBUG("can not change the cache level of pinned objects\n");
3287 return -EBUSY;
3288 }
3289
Ben Widawskyc6cfb322013-07-05 14:41:06 -07003290 if (!i915_gem_valid_gtt_space(dev, &obj->gtt_space, cache_level)) {
Chris Wilson42d6ab42012-07-26 11:49:32 +01003291 ret = i915_gem_object_unbind(obj);
3292 if (ret)
3293 return ret;
3294 }
3295
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003296 if (i915_gem_obj_ggtt_bound(obj)) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003297 ret = i915_gem_object_finish_gpu(obj);
3298 if (ret)
3299 return ret;
3300
3301 i915_gem_object_finish_gtt(obj);
3302
3303 /* Before SandyBridge, you could not use tiling or fence
3304 * registers with snooped memory, so relinquish any fences
3305 * currently pointing to our region in the aperture.
3306 */
Chris Wilson42d6ab42012-07-26 11:49:32 +01003307 if (INTEL_INFO(dev)->gen < 6) {
Chris Wilsone4ffd172011-04-04 09:44:39 +01003308 ret = i915_gem_object_put_fence(obj);
3309 if (ret)
3310 return ret;
3311 }
3312
Daniel Vetter74898d72012-02-15 23:50:22 +01003313 if (obj->has_global_gtt_mapping)
3314 i915_gem_gtt_bind_object(obj, cache_level);
Daniel Vetter7bddb012012-02-09 17:15:47 +01003315 if (obj->has_aliasing_ppgtt_mapping)
3316 i915_ppgtt_bind_object(dev_priv->mm.aliasing_ppgtt,
3317 obj, cache_level);
Chris Wilson42d6ab42012-07-26 11:49:32 +01003318
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003319 i915_gem_obj_ggtt_set_color(obj, cache_level);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003320 }
3321
3322 if (cache_level == I915_CACHE_NONE) {
3323 u32 old_read_domains, old_write_domain;
3324
3325 /* If we're coming from LLC cached, then we haven't
3326 * actually been tracking whether the data is in the
3327 * CPU cache or not, since we only allow one bit set
3328 * in obj->write_domain and have been skipping the clflushes.
3329 * Just set it to the CPU cache for now.
3330 */
3331 WARN_ON(obj->base.write_domain & ~I915_GEM_DOMAIN_CPU);
3332 WARN_ON(obj->base.read_domains & ~I915_GEM_DOMAIN_CPU);
3333
3334 old_read_domains = obj->base.read_domains;
3335 old_write_domain = obj->base.write_domain;
3336
3337 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3338 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3339
3340 trace_i915_gem_object_change_domain(obj,
3341 old_read_domains,
3342 old_write_domain);
3343 }
3344
3345 obj->cache_level = cache_level;
Chris Wilson42d6ab42012-07-26 11:49:32 +01003346 i915_gem_verify_gtt(dev);
Chris Wilsone4ffd172011-04-04 09:44:39 +01003347 return 0;
3348}
3349
Ben Widawsky199adf42012-09-21 17:01:20 -07003350int i915_gem_get_caching_ioctl(struct drm_device *dev, void *data,
3351 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003352{
Ben Widawsky199adf42012-09-21 17:01:20 -07003353 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003354 struct drm_i915_gem_object *obj;
3355 int ret;
3356
3357 ret = i915_mutex_lock_interruptible(dev);
3358 if (ret)
3359 return ret;
3360
3361 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3362 if (&obj->base == NULL) {
3363 ret = -ENOENT;
3364 goto unlock;
3365 }
3366
Ben Widawsky199adf42012-09-21 17:01:20 -07003367 args->caching = obj->cache_level != I915_CACHE_NONE;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003368
3369 drm_gem_object_unreference(&obj->base);
3370unlock:
3371 mutex_unlock(&dev->struct_mutex);
3372 return ret;
3373}
3374
Ben Widawsky199adf42012-09-21 17:01:20 -07003375int i915_gem_set_caching_ioctl(struct drm_device *dev, void *data,
3376 struct drm_file *file)
Chris Wilsone6994ae2012-07-10 10:27:08 +01003377{
Ben Widawsky199adf42012-09-21 17:01:20 -07003378 struct drm_i915_gem_caching *args = data;
Chris Wilsone6994ae2012-07-10 10:27:08 +01003379 struct drm_i915_gem_object *obj;
3380 enum i915_cache_level level;
3381 int ret;
3382
Ben Widawsky199adf42012-09-21 17:01:20 -07003383 switch (args->caching) {
3384 case I915_CACHING_NONE:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003385 level = I915_CACHE_NONE;
3386 break;
Ben Widawsky199adf42012-09-21 17:01:20 -07003387 case I915_CACHING_CACHED:
Chris Wilsone6994ae2012-07-10 10:27:08 +01003388 level = I915_CACHE_LLC;
3389 break;
3390 default:
3391 return -EINVAL;
3392 }
3393
Ben Widawsky3bc29132012-09-26 16:15:20 -07003394 ret = i915_mutex_lock_interruptible(dev);
3395 if (ret)
3396 return ret;
3397
Chris Wilsone6994ae2012-07-10 10:27:08 +01003398 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
3399 if (&obj->base == NULL) {
3400 ret = -ENOENT;
3401 goto unlock;
3402 }
3403
3404 ret = i915_gem_object_set_cache_level(obj, level);
3405
3406 drm_gem_object_unreference(&obj->base);
3407unlock:
3408 mutex_unlock(&dev->struct_mutex);
3409 return ret;
3410}
3411
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003412/*
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003413 * Prepare buffer for display plane (scanout, cursors, etc).
3414 * Can be called from an uninterruptible phase (modesetting) and allows
3415 * any flushes to be pipelined (for pageflips).
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003416 */
3417int
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003418i915_gem_object_pin_to_display_plane(struct drm_i915_gem_object *obj,
3419 u32 alignment,
Chris Wilson919926a2010-11-12 13:42:53 +00003420 struct intel_ring_buffer *pipelined)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003421{
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003422 u32 old_read_domains, old_write_domain;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003423 int ret;
3424
Chris Wilson0be73282010-12-06 14:36:27 +00003425 if (pipelined != obj->ring) {
Ben Widawsky2911a352012-04-05 14:47:36 -07003426 ret = i915_gem_object_sync(obj, pipelined);
3427 if (ret)
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003428 return ret;
3429 }
3430
Eric Anholta7ef0642011-03-29 16:59:54 -07003431 /* The display engine is not coherent with the LLC cache on gen6. As
3432 * a result, we make sure that the pinning that is about to occur is
3433 * done with uncached PTEs. This is lowest common denominator for all
3434 * chipsets.
3435 *
3436 * However for gen6+, we could do better by using the GFDT bit instead
3437 * of uncaching, which would allow us to flush all the LLC-cached data
3438 * with that bit in the PTE to main memory with just one PIPE_CONTROL.
3439 */
3440 ret = i915_gem_object_set_cache_level(obj, I915_CACHE_NONE);
3441 if (ret)
3442 return ret;
3443
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003444 /* As the user may map the buffer once pinned in the display plane
3445 * (e.g. libkms for the bootup splash), we have to ensure that we
3446 * always use map_and_fenceable for all scanout buffers.
3447 */
Chris Wilson86a1ee22012-08-11 15:41:04 +01003448 ret = i915_gem_object_pin(obj, alignment, true, false);
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003449 if (ret)
3450 return ret;
3451
Chris Wilsonb118c1e2010-05-27 13:18:14 +01003452 i915_gem_object_flush_cpu_write_domain(obj);
3453
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003454 old_write_domain = obj->base.write_domain;
Chris Wilson05394f32010-11-08 19:18:58 +00003455 old_read_domains = obj->base.read_domains;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003456
3457 /* It should now be out of any other write domains, and we can update
3458 * the domain values for our changes.
3459 */
Chris Wilsone5f1d962012-07-20 12:41:00 +01003460 obj->base.write_domain = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00003461 obj->base.read_domains |= I915_GEM_DOMAIN_GTT;
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003462
3463 trace_i915_gem_object_change_domain(obj,
3464 old_read_domains,
Chris Wilson2da3b9b2011-04-14 09:41:17 +01003465 old_write_domain);
Zhenyu Wangb9241ea2009-11-25 13:09:39 +08003466
3467 return 0;
3468}
3469
Chris Wilson85345512010-11-13 09:49:11 +00003470int
Chris Wilsona8198ee2011-04-13 22:04:09 +01003471i915_gem_object_finish_gpu(struct drm_i915_gem_object *obj)
Chris Wilson85345512010-11-13 09:49:11 +00003472{
Chris Wilson88241782011-01-07 17:09:48 +00003473 int ret;
3474
Chris Wilsona8198ee2011-04-13 22:04:09 +01003475 if ((obj->base.read_domains & I915_GEM_GPU_DOMAINS) == 0)
Chris Wilson85345512010-11-13 09:49:11 +00003476 return 0;
3477
Chris Wilson0201f1e2012-07-20 12:41:01 +01003478 ret = i915_gem_object_wait_rendering(obj, false);
Chris Wilsonc501ae72011-12-14 13:57:23 +01003479 if (ret)
3480 return ret;
3481
Chris Wilsona8198ee2011-04-13 22:04:09 +01003482 /* Ensure that we invalidate the GPU's caches and TLBs. */
3483 obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS;
Chris Wilsonc501ae72011-12-14 13:57:23 +01003484 return 0;
Chris Wilson85345512010-11-13 09:49:11 +00003485}
3486
Eric Anholte47c68e2008-11-14 13:35:19 -08003487/**
3488 * Moves a single object to the CPU read, and possibly write domain.
3489 *
3490 * This function returns when the move is complete, including waiting on
3491 * flushes to occur.
3492 */
Chris Wilsondabdfe02012-03-26 10:10:27 +02003493int
Chris Wilson919926a2010-11-12 13:42:53 +00003494i915_gem_object_set_to_cpu_domain(struct drm_i915_gem_object *obj, bool write)
Eric Anholte47c68e2008-11-14 13:35:19 -08003495{
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003496 uint32_t old_write_domain, old_read_domains;
Eric Anholte47c68e2008-11-14 13:35:19 -08003497 int ret;
3498
Chris Wilson8d7e3de2011-02-07 15:23:02 +00003499 if (obj->base.write_domain == I915_GEM_DOMAIN_CPU)
3500 return 0;
3501
Chris Wilson0201f1e2012-07-20 12:41:01 +01003502 ret = i915_gem_object_wait_rendering(obj, !write);
Chris Wilson88241782011-01-07 17:09:48 +00003503 if (ret)
3504 return ret;
3505
Eric Anholte47c68e2008-11-14 13:35:19 -08003506 i915_gem_object_flush_gtt_write_domain(obj);
3507
Chris Wilson05394f32010-11-08 19:18:58 +00003508 old_write_domain = obj->base.write_domain;
3509 old_read_domains = obj->base.read_domains;
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003510
Eric Anholte47c68e2008-11-14 13:35:19 -08003511 /* Flush the CPU cache if it's still invalid. */
Chris Wilson05394f32010-11-08 19:18:58 +00003512 if ((obj->base.read_domains & I915_GEM_DOMAIN_CPU) == 0) {
Eric Anholte47c68e2008-11-14 13:35:19 -08003513 i915_gem_clflush_object(obj);
Eric Anholte47c68e2008-11-14 13:35:19 -08003514
Chris Wilson05394f32010-11-08 19:18:58 +00003515 obj->base.read_domains |= I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003516 }
3517
3518 /* It should now be out of any other write domains, and we can update
3519 * the domain values for our changes.
3520 */
Chris Wilson05394f32010-11-08 19:18:58 +00003521 BUG_ON((obj->base.write_domain & ~I915_GEM_DOMAIN_CPU) != 0);
Eric Anholte47c68e2008-11-14 13:35:19 -08003522
3523 /* If we're writing through the CPU, then the GPU read domains will
3524 * need to be invalidated at next use.
3525 */
3526 if (write) {
Chris Wilson05394f32010-11-08 19:18:58 +00003527 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3528 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
Eric Anholte47c68e2008-11-14 13:35:19 -08003529 }
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003530
Chris Wilson1c5d22f2009-08-25 11:15:50 +01003531 trace_i915_gem_object_change_domain(obj,
3532 old_read_domains,
3533 old_write_domain);
3534
Eric Anholt2ef7eea2008-11-10 10:53:25 -08003535 return 0;
3536}
3537
Eric Anholt673a3942008-07-30 12:06:12 -07003538/* Throttle our rendering by waiting until the ring has completed our requests
3539 * emitted over 20 msec ago.
3540 *
Eric Anholtb9624422009-06-03 07:27:35 +00003541 * Note that if we were to use the current jiffies each time around the loop,
3542 * we wouldn't escape the function with any frames outstanding if the time to
3543 * render a frame was over 20ms.
3544 *
Eric Anholt673a3942008-07-30 12:06:12 -07003545 * This should get us reasonable parallelism between CPU and GPU but also
3546 * relatively low latency when blocking on a particular request to finish.
3547 */
3548static int
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003549i915_gem_ring_throttle(struct drm_device *dev, struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003550{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003551 struct drm_i915_private *dev_priv = dev->dev_private;
3552 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00003553 unsigned long recent_enough = jiffies - msecs_to_jiffies(20);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003554 struct drm_i915_gem_request *request;
3555 struct intel_ring_buffer *ring = NULL;
Daniel Vetterf69061b2012-12-06 09:01:42 +01003556 unsigned reset_counter;
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003557 u32 seqno = 0;
3558 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003559
Daniel Vetter308887a2012-11-14 17:14:06 +01003560 ret = i915_gem_wait_for_error(&dev_priv->gpu_error);
3561 if (ret)
3562 return ret;
3563
3564 ret = i915_gem_check_wedge(&dev_priv->gpu_error, false);
3565 if (ret)
3566 return ret;
Chris Wilsone110e8d2011-01-26 15:39:14 +00003567
Chris Wilson1c255952010-09-26 11:03:27 +01003568 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003569 list_for_each_entry(request, &file_priv->mm.request_list, client_list) {
Eric Anholtb9624422009-06-03 07:27:35 +00003570 if (time_after_eq(request->emitted_jiffies, recent_enough))
3571 break;
3572
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003573 ring = request->ring;
3574 seqno = request->seqno;
Eric Anholtb9624422009-06-03 07:27:35 +00003575 }
Daniel Vetterf69061b2012-12-06 09:01:42 +01003576 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilson1c255952010-09-26 11:03:27 +01003577 spin_unlock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003578
3579 if (seqno == 0)
3580 return 0;
3581
Daniel Vetterf69061b2012-12-06 09:01:42 +01003582 ret = __wait_seqno(ring, seqno, reset_counter, true, NULL);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01003583 if (ret == 0)
3584 queue_delayed_work(dev_priv->wq, &dev_priv->mm.retire_work, 0);
Eric Anholtb9624422009-06-03 07:27:35 +00003585
Eric Anholt673a3942008-07-30 12:06:12 -07003586 return ret;
3587}
3588
Eric Anholt673a3942008-07-30 12:06:12 -07003589int
Chris Wilson05394f32010-11-08 19:18:58 +00003590i915_gem_object_pin(struct drm_i915_gem_object *obj,
3591 uint32_t alignment,
Chris Wilson86a1ee22012-08-11 15:41:04 +01003592 bool map_and_fenceable,
3593 bool nonblocking)
Eric Anholt673a3942008-07-30 12:06:12 -07003594{
Eric Anholt673a3942008-07-30 12:06:12 -07003595 int ret;
3596
Chris Wilson7e81a422012-09-15 09:41:57 +01003597 if (WARN_ON(obj->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT))
3598 return -EBUSY;
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003599
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003600 if (i915_gem_obj_ggtt_bound(obj)) {
3601 if ((alignment && i915_gem_obj_ggtt_offset(obj) & (alignment - 1)) ||
Chris Wilson05394f32010-11-08 19:18:58 +00003602 (map_and_fenceable && !obj->map_and_fenceable)) {
3603 WARN(obj->pin_count,
Chris Wilsonae7d49d2010-08-04 12:37:41 +01003604 "bo is already pinned with incorrect alignment:"
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003605 " offset=%lx, req.alignment=%x, req.map_and_fenceable=%d,"
Daniel Vetter75e9e912010-11-04 17:11:09 +01003606 " obj->map_and_fenceable=%d\n",
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003607 i915_gem_obj_ggtt_offset(obj), alignment,
Daniel Vetter75e9e912010-11-04 17:11:09 +01003608 map_and_fenceable,
Chris Wilson05394f32010-11-08 19:18:58 +00003609 obj->map_and_fenceable);
Chris Wilsonac0c6b52010-05-27 13:18:18 +01003610 ret = i915_gem_object_unbind(obj);
3611 if (ret)
3612 return ret;
3613 }
3614 }
3615
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003616 if (!i915_gem_obj_ggtt_bound(obj)) {
Chris Wilson87422672012-11-21 13:04:03 +00003617 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
3618
Chris Wilsona00b10c2010-09-24 21:15:47 +01003619 ret = i915_gem_object_bind_to_gtt(obj, alignment,
Chris Wilson86a1ee22012-08-11 15:41:04 +01003620 map_and_fenceable,
3621 nonblocking);
Chris Wilson97311292009-09-21 00:22:34 +01003622 if (ret)
Eric Anholt673a3942008-07-30 12:06:12 -07003623 return ret;
Chris Wilson87422672012-11-21 13:04:03 +00003624
3625 if (!dev_priv->mm.aliasing_ppgtt)
3626 i915_gem_gtt_bind_object(obj, obj->cache_level);
Chris Wilson22c344e2009-02-11 14:26:45 +00003627 }
Jesse Barnes76446ca2009-12-17 22:05:42 -05003628
Daniel Vetter74898d72012-02-15 23:50:22 +01003629 if (!obj->has_global_gtt_mapping && map_and_fenceable)
3630 i915_gem_gtt_bind_object(obj, obj->cache_level);
3631
Chris Wilson1b502472012-04-24 15:47:30 +01003632 obj->pin_count++;
Chris Wilson6299f992010-11-24 12:23:44 +00003633 obj->pin_mappable |= map_and_fenceable;
Eric Anholt673a3942008-07-30 12:06:12 -07003634
3635 return 0;
3636}
3637
3638void
Chris Wilson05394f32010-11-08 19:18:58 +00003639i915_gem_object_unpin(struct drm_i915_gem_object *obj)
Eric Anholt673a3942008-07-30 12:06:12 -07003640{
Chris Wilson05394f32010-11-08 19:18:58 +00003641 BUG_ON(obj->pin_count == 0);
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003642 BUG_ON(!i915_gem_obj_ggtt_bound(obj));
Eric Anholt673a3942008-07-30 12:06:12 -07003643
Chris Wilson1b502472012-04-24 15:47:30 +01003644 if (--obj->pin_count == 0)
Chris Wilson6299f992010-11-24 12:23:44 +00003645 obj->pin_mappable = false;
Eric Anholt673a3942008-07-30 12:06:12 -07003646}
3647
3648int
3649i915_gem_pin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003650 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003651{
3652 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003653 struct drm_i915_gem_object *obj;
Eric Anholt673a3942008-07-30 12:06:12 -07003654 int ret;
3655
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003656 ret = i915_mutex_lock_interruptible(dev);
3657 if (ret)
3658 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003659
Chris Wilson05394f32010-11-08 19:18:58 +00003660 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003661 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003662 ret = -ENOENT;
3663 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003664 }
Eric Anholt673a3942008-07-30 12:06:12 -07003665
Chris Wilson05394f32010-11-08 19:18:58 +00003666 if (obj->madv != I915_MADV_WILLNEED) {
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003667 DRM_ERROR("Attempting to pin a purgeable buffer\n");
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003668 ret = -EINVAL;
3669 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003670 }
3671
Chris Wilson05394f32010-11-08 19:18:58 +00003672 if (obj->pin_filp != NULL && obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003673 DRM_ERROR("Already pinned in i915_gem_pin_ioctl(): %d\n",
3674 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003675 ret = -EINVAL;
3676 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003677 }
3678
Chris Wilson93be8782013-01-02 10:31:22 +00003679 if (obj->user_pin_count == 0) {
Chris Wilson86a1ee22012-08-11 15:41:04 +01003680 ret = i915_gem_object_pin(obj, args->alignment, true, false);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003681 if (ret)
3682 goto out;
Eric Anholt673a3942008-07-30 12:06:12 -07003683 }
3684
Chris Wilson93be8782013-01-02 10:31:22 +00003685 obj->user_pin_count++;
3686 obj->pin_filp = file;
3687
Eric Anholt673a3942008-07-30 12:06:12 -07003688 /* XXX - flush the CPU caches for pinned objects
3689 * as the X server doesn't manage domains yet
3690 */
Eric Anholte47c68e2008-11-14 13:35:19 -08003691 i915_gem_object_flush_cpu_write_domain(obj);
Ben Widawskyf343c5f2013-07-05 14:41:04 -07003692 args->offset = i915_gem_obj_ggtt_offset(obj);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003693out:
Chris Wilson05394f32010-11-08 19:18:58 +00003694 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003695unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003696 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003697 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003698}
3699
3700int
3701i915_gem_unpin_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003702 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003703{
3704 struct drm_i915_gem_pin *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003705 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003706 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003707
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003708 ret = i915_mutex_lock_interruptible(dev);
3709 if (ret)
3710 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003711
Chris Wilson05394f32010-11-08 19:18:58 +00003712 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003713 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003714 ret = -ENOENT;
3715 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003716 }
Chris Wilson76c1dec2010-09-25 11:22:51 +01003717
Chris Wilson05394f32010-11-08 19:18:58 +00003718 if (obj->pin_filp != file) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003719 DRM_ERROR("Not pinned by caller in i915_gem_pin_ioctl(): %d\n",
3720 args->handle);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003721 ret = -EINVAL;
3722 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08003723 }
Chris Wilson05394f32010-11-08 19:18:58 +00003724 obj->user_pin_count--;
3725 if (obj->user_pin_count == 0) {
3726 obj->pin_filp = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08003727 i915_gem_object_unpin(obj);
3728 }
Eric Anholt673a3942008-07-30 12:06:12 -07003729
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003730out:
Chris Wilson05394f32010-11-08 19:18:58 +00003731 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003732unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003733 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003734 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003735}
3736
3737int
3738i915_gem_busy_ioctl(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00003739 struct drm_file *file)
Eric Anholt673a3942008-07-30 12:06:12 -07003740{
3741 struct drm_i915_gem_busy *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003742 struct drm_i915_gem_object *obj;
Chris Wilson30dbf0c2010-09-25 10:19:17 +01003743 int ret;
3744
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003745 ret = i915_mutex_lock_interruptible(dev);
3746 if (ret)
3747 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003748
Chris Wilson05394f32010-11-08 19:18:58 +00003749 obj = to_intel_bo(drm_gem_object_lookup(dev, file, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003750 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003751 ret = -ENOENT;
3752 goto unlock;
Eric Anholt673a3942008-07-30 12:06:12 -07003753 }
Zou Nan haid1b851f2010-05-21 09:08:57 +08003754
Chris Wilson0be555b2010-08-04 15:36:30 +01003755 /* Count all active objects as busy, even if they are currently not used
3756 * by the gpu. Users of this interface expect objects to eventually
3757 * become non-busy without any further actions, therefore emit any
3758 * necessary flushes here.
Eric Anholtc4de0a52008-12-14 19:05:04 -08003759 */
Daniel Vetter30dfebf2012-06-01 15:21:23 +02003760 ret = i915_gem_object_flush_active(obj);
3761
Chris Wilson05394f32010-11-08 19:18:58 +00003762 args->busy = obj->active;
Chris Wilsone9808ed2012-07-04 12:25:08 +01003763 if (obj->ring) {
3764 BUILD_BUG_ON(I915_NUM_RINGS > 16);
3765 args->busy |= intel_ring_flag(obj->ring) << 16;
3766 }
Eric Anholt673a3942008-07-30 12:06:12 -07003767
Chris Wilson05394f32010-11-08 19:18:58 +00003768 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003769unlock:
Eric Anholt673a3942008-07-30 12:06:12 -07003770 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003771 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003772}
3773
3774int
3775i915_gem_throttle_ioctl(struct drm_device *dev, void *data,
3776 struct drm_file *file_priv)
3777{
Akshay Joshi0206e352011-08-16 15:34:10 -04003778 return i915_gem_ring_throttle(dev, file_priv);
Eric Anholt673a3942008-07-30 12:06:12 -07003779}
3780
Chris Wilson3ef94da2009-09-14 16:50:29 +01003781int
3782i915_gem_madvise_ioctl(struct drm_device *dev, void *data,
3783 struct drm_file *file_priv)
3784{
3785 struct drm_i915_gem_madvise *args = data;
Chris Wilson05394f32010-11-08 19:18:58 +00003786 struct drm_i915_gem_object *obj;
Chris Wilson76c1dec2010-09-25 11:22:51 +01003787 int ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003788
3789 switch (args->madv) {
3790 case I915_MADV_DONTNEED:
3791 case I915_MADV_WILLNEED:
3792 break;
3793 default:
3794 return -EINVAL;
3795 }
3796
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003797 ret = i915_mutex_lock_interruptible(dev);
3798 if (ret)
3799 return ret;
3800
Chris Wilson05394f32010-11-08 19:18:58 +00003801 obj = to_intel_bo(drm_gem_object_lookup(dev, file_priv, args->handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00003802 if (&obj->base == NULL) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003803 ret = -ENOENT;
3804 goto unlock;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003805 }
Chris Wilson3ef94da2009-09-14 16:50:29 +01003806
Chris Wilson05394f32010-11-08 19:18:58 +00003807 if (obj->pin_count) {
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003808 ret = -EINVAL;
3809 goto out;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003810 }
3811
Chris Wilson05394f32010-11-08 19:18:58 +00003812 if (obj->madv != __I915_MADV_PURGED)
3813 obj->madv = args->madv;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003814
Chris Wilson6c085a72012-08-20 11:40:46 +02003815 /* if the object is no longer attached, discard its backing storage */
3816 if (i915_gem_object_is_purgeable(obj) && obj->pages == NULL)
Chris Wilson2d7ef392009-09-20 23:13:10 +01003817 i915_gem_object_truncate(obj);
3818
Chris Wilson05394f32010-11-08 19:18:58 +00003819 args->retained = obj->madv != __I915_MADV_PURGED;
Chris Wilsonbb6baf72009-09-22 14:24:13 +01003820
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003821out:
Chris Wilson05394f32010-11-08 19:18:58 +00003822 drm_gem_object_unreference(&obj->base);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003823unlock:
Chris Wilson3ef94da2009-09-14 16:50:29 +01003824 mutex_unlock(&dev->struct_mutex);
Chris Wilson1d7cfea2010-10-17 09:45:41 +01003825 return ret;
Chris Wilson3ef94da2009-09-14 16:50:29 +01003826}
3827
Chris Wilson37e680a2012-06-07 15:38:42 +01003828void i915_gem_object_init(struct drm_i915_gem_object *obj,
3829 const struct drm_i915_gem_object_ops *ops)
Chris Wilson0327d6b2012-08-11 15:41:06 +01003830{
Chris Wilson0327d6b2012-08-11 15:41:06 +01003831 INIT_LIST_HEAD(&obj->mm_list);
Ben Widawsky35c20a62013-05-31 11:28:48 -07003832 INIT_LIST_HEAD(&obj->global_list);
Chris Wilson0327d6b2012-08-11 15:41:06 +01003833 INIT_LIST_HEAD(&obj->ring_list);
3834 INIT_LIST_HEAD(&obj->exec_list);
3835
Chris Wilson37e680a2012-06-07 15:38:42 +01003836 obj->ops = ops;
3837
Chris Wilson0327d6b2012-08-11 15:41:06 +01003838 obj->fence_reg = I915_FENCE_REG_NONE;
3839 obj->madv = I915_MADV_WILLNEED;
3840 /* Avoid an unnecessary call to unbind on the first bind. */
3841 obj->map_and_fenceable = true;
3842
3843 i915_gem_info_add_obj(obj->base.dev->dev_private, obj->base.size);
3844}
3845
Chris Wilson37e680a2012-06-07 15:38:42 +01003846static const struct drm_i915_gem_object_ops i915_gem_object_ops = {
3847 .get_pages = i915_gem_object_get_pages_gtt,
3848 .put_pages = i915_gem_object_put_pages_gtt,
3849};
3850
Chris Wilson05394f32010-11-08 19:18:58 +00003851struct drm_i915_gem_object *i915_gem_alloc_object(struct drm_device *dev,
3852 size_t size)
Daniel Vetterac52bc52010-04-09 19:05:06 +00003853{
Daniel Vetterc397b902010-04-09 19:05:07 +00003854 struct drm_i915_gem_object *obj;
Hugh Dickins5949eac2011-06-27 16:18:18 -07003855 struct address_space *mapping;
Daniel Vetter1a240d42012-11-29 22:18:51 +01003856 gfp_t mask;
Daniel Vetterc397b902010-04-09 19:05:07 +00003857
Chris Wilson42dcedd2012-11-15 11:32:30 +00003858 obj = i915_gem_object_alloc(dev);
Daniel Vetterc397b902010-04-09 19:05:07 +00003859 if (obj == NULL)
3860 return NULL;
3861
3862 if (drm_gem_object_init(dev, &obj->base, size) != 0) {
Chris Wilson42dcedd2012-11-15 11:32:30 +00003863 i915_gem_object_free(obj);
Daniel Vetterc397b902010-04-09 19:05:07 +00003864 return NULL;
3865 }
3866
Chris Wilsonbed1ea92012-05-24 20:48:12 +01003867 mask = GFP_HIGHUSER | __GFP_RECLAIMABLE;
3868 if (IS_CRESTLINE(dev) || IS_BROADWATER(dev)) {
3869 /* 965gm cannot relocate objects above 4GiB. */
3870 mask &= ~__GFP_HIGHMEM;
3871 mask |= __GFP_DMA32;
3872 }
3873
Al Viro496ad9a2013-01-23 17:07:38 -05003874 mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilsonbed1ea92012-05-24 20:48:12 +01003875 mapping_set_gfp_mask(mapping, mask);
Hugh Dickins5949eac2011-06-27 16:18:18 -07003876
Chris Wilson37e680a2012-06-07 15:38:42 +01003877 i915_gem_object_init(obj, &i915_gem_object_ops);
Chris Wilson73aa8082010-09-30 11:46:12 +01003878
Daniel Vetterc397b902010-04-09 19:05:07 +00003879 obj->base.write_domain = I915_GEM_DOMAIN_CPU;
3880 obj->base.read_domains = I915_GEM_DOMAIN_CPU;
3881
Eugeni Dodonov3d29b842012-01-17 14:43:53 -02003882 if (HAS_LLC(dev)) {
3883 /* On some devices, we can have the GPU use the LLC (the CPU
Eric Anholta1871112011-03-29 16:59:55 -07003884 * cache) for about a 10% performance improvement
3885 * compared to uncached. Graphics requests other than
3886 * display scanout are coherent with the CPU in
3887 * accessing this cache. This means in this mode we
3888 * don't need to clflush on the CPU side, and on the
3889 * GPU side we only need to flush internal caches to
3890 * get data visible to the CPU.
3891 *
3892 * However, we maintain the display planes as UC, and so
3893 * need to rebind when first used as such.
3894 */
3895 obj->cache_level = I915_CACHE_LLC;
3896 } else
3897 obj->cache_level = I915_CACHE_NONE;
3898
Chris Wilson05394f32010-11-08 19:18:58 +00003899 return obj;
Daniel Vetterac52bc52010-04-09 19:05:06 +00003900}
3901
Eric Anholt673a3942008-07-30 12:06:12 -07003902int i915_gem_init_object(struct drm_gem_object *obj)
3903{
Daniel Vetterc397b902010-04-09 19:05:07 +00003904 BUG();
Jesse Barnesde151cf2008-11-12 10:03:55 -08003905
Eric Anholt673a3942008-07-30 12:06:12 -07003906 return 0;
3907}
3908
Chris Wilson1488fc02012-04-24 15:47:31 +01003909void i915_gem_free_object(struct drm_gem_object *gem_obj)
Chris Wilsonbe726152010-07-23 23:18:50 +01003910{
Chris Wilson1488fc02012-04-24 15:47:31 +01003911 struct drm_i915_gem_object *obj = to_intel_bo(gem_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00003912 struct drm_device *dev = obj->base.dev;
Chris Wilsonbe726152010-07-23 23:18:50 +01003913 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonbe726152010-07-23 23:18:50 +01003914
Chris Wilson26e12f82011-03-20 11:20:19 +00003915 trace_i915_gem_object_destroy(obj);
3916
Chris Wilson1488fc02012-04-24 15:47:31 +01003917 if (obj->phys_obj)
3918 i915_gem_detach_phys_object(dev, obj);
3919
3920 obj->pin_count = 0;
3921 if (WARN_ON(i915_gem_object_unbind(obj) == -ERESTARTSYS)) {
3922 bool was_interruptible;
3923
3924 was_interruptible = dev_priv->mm.interruptible;
3925 dev_priv->mm.interruptible = false;
3926
3927 WARN_ON(i915_gem_object_unbind(obj));
3928
3929 dev_priv->mm.interruptible = was_interruptible;
3930 }
3931
Ben Widawsky1d64ae72013-05-31 14:46:20 -07003932 /* Stolen objects don't hold a ref, but do hold pin count. Fix that up
3933 * before progressing. */
3934 if (obj->stolen)
3935 i915_gem_object_unpin_pages(obj);
3936
Ben Widawsky401c29f2013-05-31 11:28:47 -07003937 if (WARN_ON(obj->pages_pin_count))
3938 obj->pages_pin_count = 0;
Chris Wilson37e680a2012-06-07 15:38:42 +01003939 i915_gem_object_put_pages(obj);
Chris Wilsond8cb5082012-08-11 15:41:03 +01003940 i915_gem_object_free_mmap_offset(obj);
Chris Wilson0104fdb2012-11-15 11:32:26 +00003941 i915_gem_object_release_stolen(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01003942
Chris Wilson9da3da62012-06-01 15:20:22 +01003943 BUG_ON(obj->pages);
3944
Chris Wilson2f745ad2012-09-04 21:02:58 +01003945 if (obj->base.import_attach)
3946 drm_prime_gem_destroy(&obj->base, NULL);
Chris Wilsonbe726152010-07-23 23:18:50 +01003947
Chris Wilson05394f32010-11-08 19:18:58 +00003948 drm_gem_object_release(&obj->base);
3949 i915_gem_info_remove_obj(dev_priv, obj->base.size);
Chris Wilsonbe726152010-07-23 23:18:50 +01003950
Chris Wilson05394f32010-11-08 19:18:58 +00003951 kfree(obj->bit_17);
Chris Wilson42dcedd2012-11-15 11:32:30 +00003952 i915_gem_object_free(obj);
Chris Wilsonbe726152010-07-23 23:18:50 +01003953}
3954
Jesse Barnes5669fca2009-02-17 15:13:31 -08003955int
Eric Anholt673a3942008-07-30 12:06:12 -07003956i915_gem_idle(struct drm_device *dev)
3957{
3958 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson29105cc2010-01-07 10:39:13 +00003959 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07003960
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02003961 if (dev_priv->ums.mm_suspended) {
Keith Packard6dbe2772008-10-14 21:41:13 -07003962 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003963 return 0;
Keith Packard6dbe2772008-10-14 21:41:13 -07003964 }
Eric Anholt673a3942008-07-30 12:06:12 -07003965
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07003966 ret = i915_gpu_idle(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07003967 if (ret) {
3968 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07003969 return ret;
Keith Packard6dbe2772008-10-14 21:41:13 -07003970 }
Ben Widawskyb2da9fe2012-04-26 16:02:58 -07003971 i915_gem_retire_requests(dev);
Eric Anholt673a3942008-07-30 12:06:12 -07003972
Chris Wilson29105cc2010-01-07 10:39:13 +00003973 /* Under UMS, be paranoid and evict. */
Chris Wilsona39d7ef2012-04-24 18:22:52 +01003974 if (!drm_core_check_feature(dev, DRIVER_MODESET))
Chris Wilson6c085a72012-08-20 11:40:46 +02003975 i915_gem_evict_everything(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00003976
Daniel Vetter99584db2012-11-14 17:14:04 +01003977 del_timer_sync(&dev_priv->gpu_error.hangcheck_timer);
Chris Wilson29105cc2010-01-07 10:39:13 +00003978
3979 i915_kernel_lost_context(dev);
Keith Packard6dbe2772008-10-14 21:41:13 -07003980 i915_gem_cleanup_ringbuffer(dev);
Chris Wilson29105cc2010-01-07 10:39:13 +00003981
Chris Wilson29105cc2010-01-07 10:39:13 +00003982 /* Cancel the retire work handler, which should be idle now. */
3983 cancel_delayed_work_sync(&dev_priv->mm.retire_work);
3984
Eric Anholt673a3942008-07-30 12:06:12 -07003985 return 0;
3986}
3987
Ben Widawskyb9524a12012-05-25 16:56:24 -07003988void i915_gem_l3_remap(struct drm_device *dev)
3989{
3990 drm_i915_private_t *dev_priv = dev->dev_private;
3991 u32 misccpctl;
3992 int i;
3993
Daniel Vettereb32e452013-02-14 19:46:07 +01003994 if (!HAS_L3_GPU_CACHE(dev))
Ben Widawskyb9524a12012-05-25 16:56:24 -07003995 return;
3996
Daniel Vettera4da4fa2012-11-02 19:55:07 +01003997 if (!dev_priv->l3_parity.remap_info)
Ben Widawskyb9524a12012-05-25 16:56:24 -07003998 return;
3999
4000 misccpctl = I915_READ(GEN7_MISCCPCTL);
4001 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
4002 POSTING_READ(GEN7_MISCCPCTL);
4003
4004 for (i = 0; i < GEN7_L3LOG_SIZE; i += 4) {
4005 u32 remap = I915_READ(GEN7_L3LOG_BASE + i);
Daniel Vettera4da4fa2012-11-02 19:55:07 +01004006 if (remap && remap != dev_priv->l3_parity.remap_info[i/4])
Ben Widawskyb9524a12012-05-25 16:56:24 -07004007 DRM_DEBUG("0x%x was already programmed to %x\n",
4008 GEN7_L3LOG_BASE + i, remap);
Daniel Vettera4da4fa2012-11-02 19:55:07 +01004009 if (remap && !dev_priv->l3_parity.remap_info[i/4])
Ben Widawskyb9524a12012-05-25 16:56:24 -07004010 DRM_DEBUG_DRIVER("Clearing remapped register\n");
Daniel Vettera4da4fa2012-11-02 19:55:07 +01004011 I915_WRITE(GEN7_L3LOG_BASE + i, dev_priv->l3_parity.remap_info[i/4]);
Ben Widawskyb9524a12012-05-25 16:56:24 -07004012 }
4013
4014 /* Make sure all the writes land before disabling dop clock gating */
4015 POSTING_READ(GEN7_L3LOG_BASE);
4016
4017 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
4018}
4019
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004020void i915_gem_init_swizzling(struct drm_device *dev)
4021{
4022 drm_i915_private_t *dev_priv = dev->dev_private;
4023
Daniel Vetter11782b02012-01-31 16:47:55 +01004024 if (INTEL_INFO(dev)->gen < 5 ||
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004025 dev_priv->mm.bit_6_swizzle_x == I915_BIT_6_SWIZZLE_NONE)
4026 return;
4027
4028 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
4029 DISP_TILE_SURFACE_SWIZZLING);
4030
Daniel Vetter11782b02012-01-31 16:47:55 +01004031 if (IS_GEN5(dev))
4032 return;
4033
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004034 I915_WRITE(TILECTL, I915_READ(TILECTL) | TILECTL_SWZCTL);
4035 if (IS_GEN6(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004036 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_SNB));
Ben Widawsky8782e262012-12-18 10:31:23 -08004037 else if (IS_GEN7(dev))
Daniel Vetter6b26c862012-04-24 14:04:12 +02004038 I915_WRITE(ARB_MODE, _MASKED_BIT_ENABLE(ARB_MODE_SWIZZLE_IVB));
Ben Widawsky8782e262012-12-18 10:31:23 -08004039 else
4040 BUG();
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004041}
Daniel Vettere21af882012-02-09 20:53:27 +01004042
Chris Wilson67b1b572012-07-05 23:49:40 +01004043static bool
4044intel_enable_blt(struct drm_device *dev)
4045{
4046 if (!HAS_BLT(dev))
4047 return false;
4048
4049 /* The blitter was dysfunctional on early prototypes */
4050 if (IS_GEN6(dev) && dev->pdev->revision < 8) {
4051 DRM_INFO("BLT not supported on this pre-production hardware;"
4052 " graphics performance will be degraded.\n");
4053 return false;
4054 }
4055
4056 return true;
4057}
4058
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004059static int i915_gem_init_rings(struct drm_device *dev)
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004060{
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004061 struct drm_i915_private *dev_priv = dev->dev_private;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004062 int ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004063
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004064 ret = intel_init_render_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004065 if (ret)
Chris Wilsonb6913e42010-11-12 10:46:37 +00004066 return ret;
Chris Wilson68f95ba2010-05-27 13:18:22 +01004067
4068 if (HAS_BSD(dev)) {
Xiang, Haihao5c1143b2010-09-16 10:43:11 +08004069 ret = intel_init_bsd_ring_buffer(dev);
Chris Wilson68f95ba2010-05-27 13:18:22 +01004070 if (ret)
4071 goto cleanup_render_ring;
Zou Nan haid1b851f2010-05-21 09:08:57 +08004072 }
Chris Wilson68f95ba2010-05-27 13:18:22 +01004073
Chris Wilson67b1b572012-07-05 23:49:40 +01004074 if (intel_enable_blt(dev)) {
Chris Wilson549f7362010-10-19 11:19:32 +01004075 ret = intel_init_blt_ring_buffer(dev);
4076 if (ret)
4077 goto cleanup_bsd_ring;
4078 }
4079
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004080 if (HAS_VEBOX(dev)) {
4081 ret = intel_init_vebox_ring_buffer(dev);
4082 if (ret)
4083 goto cleanup_blt_ring;
4084 }
4085
4086
Mika Kuoppala99433932013-01-22 14:12:17 +02004087 ret = i915_gem_set_seqno(dev, ((u32)~0 - 0x1000));
4088 if (ret)
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004089 goto cleanup_vebox_ring;
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004090
4091 return 0;
4092
Ben Widawsky9a8a2212013-05-28 19:22:23 -07004093cleanup_vebox_ring:
4094 intel_cleanup_ring_buffer(&dev_priv->ring[VECS]);
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004095cleanup_blt_ring:
4096 intel_cleanup_ring_buffer(&dev_priv->ring[BCS]);
4097cleanup_bsd_ring:
4098 intel_cleanup_ring_buffer(&dev_priv->ring[VCS]);
4099cleanup_render_ring:
4100 intel_cleanup_ring_buffer(&dev_priv->ring[RCS]);
4101
4102 return ret;
4103}
4104
4105int
4106i915_gem_init_hw(struct drm_device *dev)
4107{
4108 drm_i915_private_t *dev_priv = dev->dev_private;
4109 int ret;
4110
4111 if (INTEL_INFO(dev)->gen < 6 && !intel_enable_gtt())
4112 return -EIO;
4113
4114 if (IS_HASWELL(dev) && (I915_READ(0x120010) == 1))
4115 I915_WRITE(0x9008, I915_READ(0x9008) | 0xf0000);
4116
Ben Widawsky88a2b2a2013-04-05 13:12:43 -07004117 if (HAS_PCH_NOP(dev)) {
4118 u32 temp = I915_READ(GEN7_MSG_CTL);
4119 temp &= ~(WAIT_FOR_PCH_FLR_ACK | WAIT_FOR_PCH_RESET_ACK);
4120 I915_WRITE(GEN7_MSG_CTL, temp);
4121 }
4122
Ben Widawsky4fc7c972013-02-08 11:49:24 -08004123 i915_gem_l3_remap(dev);
4124
4125 i915_gem_init_swizzling(dev);
4126
4127 ret = i915_gem_init_rings(dev);
4128 if (ret)
Mika Kuoppala99433932013-01-22 14:12:17 +02004129 return ret;
4130
Ben Widawsky254f9652012-06-04 14:42:42 -07004131 /*
4132 * XXX: There was some w/a described somewhere suggesting loading
4133 * contexts before PPGTT.
4134 */
4135 i915_gem_context_init(dev);
Ben Widawskyb7c36d22013-04-08 18:43:56 -07004136 if (dev_priv->mm.aliasing_ppgtt) {
4137 ret = dev_priv->mm.aliasing_ppgtt->enable(dev);
4138 if (ret) {
4139 i915_gem_cleanup_aliasing_ppgtt(dev);
4140 DRM_INFO("PPGTT enable failed. This is not fatal, but unexpected\n");
4141 }
4142 }
Daniel Vettere21af882012-02-09 20:53:27 +01004143
Chris Wilson68f95ba2010-05-27 13:18:22 +01004144 return 0;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004145}
4146
Chris Wilson1070a422012-04-24 15:47:41 +01004147int i915_gem_init(struct drm_device *dev)
4148{
4149 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson1070a422012-04-24 15:47:41 +01004150 int ret;
4151
Chris Wilson1070a422012-04-24 15:47:41 +01004152 mutex_lock(&dev->struct_mutex);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004153
4154 if (IS_VALLEYVIEW(dev)) {
4155 /* VLVA0 (potential hack), BIOS isn't actually waking us */
4156 I915_WRITE(VLV_GTLC_WAKE_CTRL, 1);
4157 if (wait_for((I915_READ(VLV_GTLC_PW_STATUS) & 1) == 1, 10))
4158 DRM_DEBUG_DRIVER("allow wake ack timed out\n");
4159 }
4160
Ben Widawskyd7e50082012-12-18 10:31:25 -08004161 i915_gem_init_global_gtt(dev);
Jesse Barnesd62b4892013-03-08 10:45:53 -08004162
Chris Wilson1070a422012-04-24 15:47:41 +01004163 ret = i915_gem_init_hw(dev);
4164 mutex_unlock(&dev->struct_mutex);
4165 if (ret) {
4166 i915_gem_cleanup_aliasing_ppgtt(dev);
4167 return ret;
4168 }
4169
Daniel Vetter53ca26c2012-04-26 23:28:03 +02004170 /* Allow hardware batchbuffers unless told otherwise, but not for KMS. */
4171 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4172 dev_priv->dri1.allow_batchbuffer = 1;
Chris Wilson1070a422012-04-24 15:47:41 +01004173 return 0;
4174}
4175
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004176void
4177i915_gem_cleanup_ringbuffer(struct drm_device *dev)
4178{
4179 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01004180 struct intel_ring_buffer *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00004181 int i;
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004182
Chris Wilsonb4519512012-05-11 14:29:30 +01004183 for_each_ring(ring, dev_priv, i)
4184 intel_cleanup_ring_buffer(ring);
Zou Nan hai8187a2b2010-05-21 09:08:55 +08004185}
4186
4187int
Eric Anholt673a3942008-07-30 12:06:12 -07004188i915_gem_entervt_ioctl(struct drm_device *dev, void *data,
4189 struct drm_file *file_priv)
4190{
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004191 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01004192 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004193
Jesse Barnes79e53942008-11-07 14:24:08 -08004194 if (drm_core_check_feature(dev, DRIVER_MODESET))
4195 return 0;
4196
Daniel Vetter1f83fee2012-11-15 17:17:22 +01004197 if (i915_reset_in_progress(&dev_priv->gpu_error)) {
Eric Anholt673a3942008-07-30 12:06:12 -07004198 DRM_ERROR("Reenabling wedged hardware, good luck\n");
Daniel Vetter1f83fee2012-11-15 17:17:22 +01004199 atomic_set(&dev_priv->gpu_error.reset_counter, 0);
Eric Anholt673a3942008-07-30 12:06:12 -07004200 }
4201
Eric Anholt673a3942008-07-30 12:06:12 -07004202 mutex_lock(&dev->struct_mutex);
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004203 dev_priv->ums.mm_suspended = 0;
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004204
Daniel Vetterf691e2f2012-02-02 09:58:12 +01004205 ret = i915_gem_init_hw(dev);
Wu Fengguangd816f6a2009-04-18 10:43:32 +08004206 if (ret != 0) {
4207 mutex_unlock(&dev->struct_mutex);
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004208 return ret;
Wu Fengguangd816f6a2009-04-18 10:43:32 +08004209 }
Eric Anholt9bb2d6f2008-12-23 18:42:32 -08004210
Chris Wilson69dc4982010-10-19 10:36:51 +01004211 BUG_ON(!list_empty(&dev_priv->mm.active_list));
Eric Anholt673a3942008-07-30 12:06:12 -07004212 mutex_unlock(&dev->struct_mutex);
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004213
Chris Wilson5f353082010-06-07 14:03:03 +01004214 ret = drm_irq_install(dev);
4215 if (ret)
4216 goto cleanup_ringbuffer;
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004217
Eric Anholt673a3942008-07-30 12:06:12 -07004218 return 0;
Chris Wilson5f353082010-06-07 14:03:03 +01004219
4220cleanup_ringbuffer:
4221 mutex_lock(&dev->struct_mutex);
4222 i915_gem_cleanup_ringbuffer(dev);
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004223 dev_priv->ums.mm_suspended = 1;
Chris Wilson5f353082010-06-07 14:03:03 +01004224 mutex_unlock(&dev->struct_mutex);
4225
4226 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004227}
4228
4229int
4230i915_gem_leavevt_ioctl(struct drm_device *dev, void *data,
4231 struct drm_file *file_priv)
4232{
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004233 struct drm_i915_private *dev_priv = dev->dev_private;
4234 int ret;
4235
Jesse Barnes79e53942008-11-07 14:24:08 -08004236 if (drm_core_check_feature(dev, DRIVER_MODESET))
4237 return 0;
4238
Kristian Høgsbergdbb19d32008-08-20 11:04:27 -04004239 drm_irq_uninstall(dev);
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004240
4241 mutex_lock(&dev->struct_mutex);
4242 ret = i915_gem_idle(dev);
4243
4244 /* Hack! Don't let anybody do execbuf while we don't control the chip.
4245 * We need to replace this with a semaphore, or something.
4246 * And not confound ums.mm_suspended!
4247 */
4248 if (ret != 0)
4249 dev_priv->ums.mm_suspended = 1;
4250 mutex_unlock(&dev->struct_mutex);
4251
4252 return ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004253}
4254
4255void
4256i915_gem_lastclose(struct drm_device *dev)
4257{
4258 int ret;
Eric Anholt673a3942008-07-30 12:06:12 -07004259
Eric Anholte806b492009-01-22 09:56:58 -08004260 if (drm_core_check_feature(dev, DRIVER_MODESET))
4261 return;
4262
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004263 mutex_lock(&dev->struct_mutex);
Keith Packard6dbe2772008-10-14 21:41:13 -07004264 ret = i915_gem_idle(dev);
4265 if (ret)
4266 DRM_ERROR("failed to idle hardware: %d\n", ret);
Daniel Vetterdb1b76c2013-07-09 16:51:37 +02004267 mutex_unlock(&dev->struct_mutex);
Eric Anholt673a3942008-07-30 12:06:12 -07004268}
4269
Chris Wilson64193402010-10-24 12:38:05 +01004270static void
4271init_ring_lists(struct intel_ring_buffer *ring)
4272{
4273 INIT_LIST_HEAD(&ring->active_list);
4274 INIT_LIST_HEAD(&ring->request_list);
Chris Wilson64193402010-10-24 12:38:05 +01004275}
4276
Eric Anholt673a3942008-07-30 12:06:12 -07004277void
4278i915_gem_load(struct drm_device *dev)
4279{
4280 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson42dcedd2012-11-15 11:32:30 +00004281 int i;
4282
4283 dev_priv->slab =
4284 kmem_cache_create("i915_gem_object",
4285 sizeof(struct drm_i915_gem_object), 0,
4286 SLAB_HWCACHE_ALIGN,
4287 NULL);
Eric Anholt673a3942008-07-30 12:06:12 -07004288
Chris Wilson69dc4982010-10-19 10:36:51 +01004289 INIT_LIST_HEAD(&dev_priv->mm.active_list);
Eric Anholt673a3942008-07-30 12:06:12 -07004290 INIT_LIST_HEAD(&dev_priv->mm.inactive_list);
Chris Wilson6c085a72012-08-20 11:40:46 +02004291 INIT_LIST_HEAD(&dev_priv->mm.unbound_list);
4292 INIT_LIST_HEAD(&dev_priv->mm.bound_list);
Eric Anholta09ba7f2009-08-29 12:49:51 -07004293 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00004294 for (i = 0; i < I915_NUM_RINGS; i++)
4295 init_ring_lists(&dev_priv->ring[i]);
Daniel Vetter4b9de732011-10-09 21:52:02 +02004296 for (i = 0; i < I915_MAX_NUM_FENCES; i++)
Daniel Vetter007cc8a2010-04-28 11:02:31 +02004297 INIT_LIST_HEAD(&dev_priv->fence_regs[i].lru_list);
Eric Anholt673a3942008-07-30 12:06:12 -07004298 INIT_DELAYED_WORK(&dev_priv->mm.retire_work,
4299 i915_gem_retire_work_handler);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01004300 init_waitqueue_head(&dev_priv->gpu_error.reset_queue);
Chris Wilson31169712009-09-14 16:50:28 +01004301
Dave Airlie94400122010-07-20 13:15:31 +10004302 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
4303 if (IS_GEN3(dev)) {
Daniel Vetter50743292012-04-26 22:02:54 +02004304 I915_WRITE(MI_ARB_STATE,
4305 _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Dave Airlie94400122010-07-20 13:15:31 +10004306 }
4307
Chris Wilson72bfa192010-12-19 11:42:05 +00004308 dev_priv->relative_constants_mode = I915_EXEC_CONSTANTS_REL_GENERAL;
4309
Jesse Barnesde151cf2008-11-12 10:03:55 -08004310 /* Old X drivers will take 0-2 for front, back, depth buffers */
Eric Anholtb397c832010-01-26 09:43:10 -08004311 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4312 dev_priv->fence_reg_start = 3;
Jesse Barnesde151cf2008-11-12 10:03:55 -08004313
Ville Syrjälä42b5aea2013-04-09 13:02:47 +03004314 if (INTEL_INFO(dev)->gen >= 7 && !IS_VALLEYVIEW(dev))
4315 dev_priv->num_fence_regs = 32;
4316 else if (INTEL_INFO(dev)->gen >= 4 || IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
Jesse Barnesde151cf2008-11-12 10:03:55 -08004317 dev_priv->num_fence_regs = 16;
4318 else
4319 dev_priv->num_fence_regs = 8;
4320
Grégoire Henryb5aa8a02009-06-23 15:41:02 +02004321 /* Initialize fence registers to zero */
Chris Wilson19b2dbd2013-06-12 10:15:12 +01004322 INIT_LIST_HEAD(&dev_priv->mm.fence_list);
4323 i915_gem_restore_fences(dev);
Eric Anholt10ed13e2011-05-06 13:53:49 -07004324
Eric Anholt673a3942008-07-30 12:06:12 -07004325 i915_gem_detect_bit_6_swizzle(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05004326 init_waitqueue_head(&dev_priv->pending_flip_queue);
Chris Wilson17250b72010-10-28 12:51:39 +01004327
Chris Wilsonce453d82011-02-21 14:43:56 +00004328 dev_priv->mm.interruptible = true;
4329
Chris Wilson17250b72010-10-28 12:51:39 +01004330 dev_priv->mm.inactive_shrinker.shrink = i915_gem_inactive_shrink;
4331 dev_priv->mm.inactive_shrinker.seeks = DEFAULT_SEEKS;
4332 register_shrinker(&dev_priv->mm.inactive_shrinker);
Eric Anholt673a3942008-07-30 12:06:12 -07004333}
Dave Airlie71acb5e2008-12-30 20:31:46 +10004334
4335/*
4336 * Create a physically contiguous memory object for this object
4337 * e.g. for cursor + overlay regs
4338 */
Chris Wilson995b6762010-08-20 13:23:26 +01004339static int i915_gem_init_phys_object(struct drm_device *dev,
4340 int id, int size, int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004341{
4342 drm_i915_private_t *dev_priv = dev->dev_private;
4343 struct drm_i915_gem_phys_object *phys_obj;
4344 int ret;
4345
4346 if (dev_priv->mm.phys_objs[id - 1] || !size)
4347 return 0;
4348
Eric Anholt9a298b22009-03-24 12:23:04 -07004349 phys_obj = kzalloc(sizeof(struct drm_i915_gem_phys_object), GFP_KERNEL);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004350 if (!phys_obj)
4351 return -ENOMEM;
4352
4353 phys_obj->id = id;
4354
Chris Wilson6eeefaf2010-08-07 11:01:39 +01004355 phys_obj->handle = drm_pci_alloc(dev, size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004356 if (!phys_obj->handle) {
4357 ret = -ENOMEM;
4358 goto kfree_obj;
4359 }
4360#ifdef CONFIG_X86
4361 set_memory_wc((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
4362#endif
4363
4364 dev_priv->mm.phys_objs[id - 1] = phys_obj;
4365
4366 return 0;
4367kfree_obj:
Eric Anholt9a298b22009-03-24 12:23:04 -07004368 kfree(phys_obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004369 return ret;
4370}
4371
Chris Wilson995b6762010-08-20 13:23:26 +01004372static void i915_gem_free_phys_object(struct drm_device *dev, int id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004373{
4374 drm_i915_private_t *dev_priv = dev->dev_private;
4375 struct drm_i915_gem_phys_object *phys_obj;
4376
4377 if (!dev_priv->mm.phys_objs[id - 1])
4378 return;
4379
4380 phys_obj = dev_priv->mm.phys_objs[id - 1];
4381 if (phys_obj->cur_obj) {
4382 i915_gem_detach_phys_object(dev, phys_obj->cur_obj);
4383 }
4384
4385#ifdef CONFIG_X86
4386 set_memory_wb((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE);
4387#endif
4388 drm_pci_free(dev, phys_obj->handle);
4389 kfree(phys_obj);
4390 dev_priv->mm.phys_objs[id - 1] = NULL;
4391}
4392
4393void i915_gem_free_all_phys_object(struct drm_device *dev)
4394{
4395 int i;
4396
Dave Airlie260883c2009-01-22 17:58:49 +10004397 for (i = I915_GEM_PHYS_CURSOR_0; i <= I915_MAX_PHYS_OBJECT; i++)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004398 i915_gem_free_phys_object(dev, i);
4399}
4400
4401void i915_gem_detach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00004402 struct drm_i915_gem_object *obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004403{
Al Viro496ad9a2013-01-23 17:07:38 -05004404 struct address_space *mapping = file_inode(obj->base.filp)->i_mapping;
Chris Wilsone5281cc2010-10-28 13:45:36 +01004405 char *vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004406 int i;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004407 int page_count;
4408
Chris Wilson05394f32010-11-08 19:18:58 +00004409 if (!obj->phys_obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004410 return;
Chris Wilson05394f32010-11-08 19:18:58 +00004411 vaddr = obj->phys_obj->handle->vaddr;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004412
Chris Wilson05394f32010-11-08 19:18:58 +00004413 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004414 for (i = 0; i < page_count; i++) {
Hugh Dickins5949eac2011-06-27 16:18:18 -07004415 struct page *page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004416 if (!IS_ERR(page)) {
4417 char *dst = kmap_atomic(page);
4418 memcpy(dst, vaddr + i*PAGE_SIZE, PAGE_SIZE);
4419 kunmap_atomic(dst);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004420
Chris Wilsone5281cc2010-10-28 13:45:36 +01004421 drm_clflush_pages(&page, 1);
4422
4423 set_page_dirty(page);
4424 mark_page_accessed(page);
4425 page_cache_release(page);
4426 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10004427 }
Ben Widawskye76e9ae2012-11-04 09:21:27 -08004428 i915_gem_chipset_flush(dev);
Chris Wilsond78b47b2009-06-17 21:52:49 +01004429
Chris Wilson05394f32010-11-08 19:18:58 +00004430 obj->phys_obj->cur_obj = NULL;
4431 obj->phys_obj = NULL;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004432}
4433
4434int
4435i915_gem_attach_phys_object(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00004436 struct drm_i915_gem_object *obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01004437 int id,
4438 int align)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004439{
Al Viro496ad9a2013-01-23 17:07:38 -05004440 struct address_space *mapping = file_inode(obj->base.filp)->i_mapping;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004441 drm_i915_private_t *dev_priv = dev->dev_private;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004442 int ret = 0;
4443 int page_count;
4444 int i;
4445
4446 if (id > I915_MAX_PHYS_OBJECT)
4447 return -EINVAL;
4448
Chris Wilson05394f32010-11-08 19:18:58 +00004449 if (obj->phys_obj) {
4450 if (obj->phys_obj->id == id)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004451 return 0;
4452 i915_gem_detach_phys_object(dev, obj);
4453 }
4454
Dave Airlie71acb5e2008-12-30 20:31:46 +10004455 /* create a new object */
4456 if (!dev_priv->mm.phys_objs[id - 1]) {
4457 ret = i915_gem_init_phys_object(dev, id,
Chris Wilson05394f32010-11-08 19:18:58 +00004458 obj->base.size, align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004459 if (ret) {
Chris Wilson05394f32010-11-08 19:18:58 +00004460 DRM_ERROR("failed to init phys object %d size: %zu\n",
4461 id, obj->base.size);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004462 return ret;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004463 }
4464 }
4465
4466 /* bind to the object */
Chris Wilson05394f32010-11-08 19:18:58 +00004467 obj->phys_obj = dev_priv->mm.phys_objs[id - 1];
4468 obj->phys_obj->cur_obj = obj;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004469
Chris Wilson05394f32010-11-08 19:18:58 +00004470 page_count = obj->base.size / PAGE_SIZE;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004471
4472 for (i = 0; i < page_count; i++) {
Chris Wilsone5281cc2010-10-28 13:45:36 +01004473 struct page *page;
4474 char *dst, *src;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004475
Hugh Dickins5949eac2011-06-27 16:18:18 -07004476 page = shmem_read_mapping_page(mapping, i);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004477 if (IS_ERR(page))
4478 return PTR_ERR(page);
4479
Chris Wilsonff75b9b2010-10-30 22:52:31 +01004480 src = kmap_atomic(page);
Chris Wilson05394f32010-11-08 19:18:58 +00004481 dst = obj->phys_obj->handle->vaddr + (i * PAGE_SIZE);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004482 memcpy(dst, src, PAGE_SIZE);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -07004483 kunmap_atomic(src);
Chris Wilsone5281cc2010-10-28 13:45:36 +01004484
4485 mark_page_accessed(page);
4486 page_cache_release(page);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004487 }
4488
4489 return 0;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004490}
4491
4492static int
Chris Wilson05394f32010-11-08 19:18:58 +00004493i915_gem_phys_pwrite(struct drm_device *dev,
4494 struct drm_i915_gem_object *obj,
Dave Airlie71acb5e2008-12-30 20:31:46 +10004495 struct drm_i915_gem_pwrite *args,
4496 struct drm_file *file_priv)
4497{
Chris Wilson05394f32010-11-08 19:18:58 +00004498 void *vaddr = obj->phys_obj->handle->vaddr + args->offset;
Ville Syrjälä2bb46292013-02-22 16:12:51 +02004499 char __user *user_data = to_user_ptr(args->data_ptr);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004500
Chris Wilsonb47b30c2010-11-08 01:12:29 +00004501 if (__copy_from_user_inatomic_nocache(vaddr, user_data, args->size)) {
4502 unsigned long unwritten;
4503
4504 /* The physical object once assigned is fixed for the lifetime
4505 * of the obj, so we can safely drop the lock and continue
4506 * to access vaddr.
4507 */
4508 mutex_unlock(&dev->struct_mutex);
4509 unwritten = copy_from_user(vaddr, user_data, args->size);
4510 mutex_lock(&dev->struct_mutex);
4511 if (unwritten)
4512 return -EFAULT;
4513 }
Dave Airlie71acb5e2008-12-30 20:31:46 +10004514
Ben Widawskye76e9ae2012-11-04 09:21:27 -08004515 i915_gem_chipset_flush(dev);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004516 return 0;
4517}
Eric Anholtb9624422009-06-03 07:27:35 +00004518
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004519void i915_gem_release(struct drm_device *dev, struct drm_file *file)
Eric Anholtb9624422009-06-03 07:27:35 +00004520{
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004521 struct drm_i915_file_private *file_priv = file->driver_priv;
Eric Anholtb9624422009-06-03 07:27:35 +00004522
4523 /* Clean up our request list when the client is going away, so that
4524 * later retire_requests won't dereference our soon-to-be-gone
4525 * file_priv.
4526 */
Chris Wilson1c255952010-09-26 11:03:27 +01004527 spin_lock(&file_priv->mm.lock);
Chris Wilsonf787a5f2010-09-24 16:02:42 +01004528 while (!list_empty(&file_priv->mm.request_list)) {
4529 struct drm_i915_gem_request *request;
4530
4531 request = list_first_entry(&file_priv->mm.request_list,
4532 struct drm_i915_gem_request,
4533 client_list);
4534 list_del(&request->client_list);
4535 request->file_priv = NULL;
4536 }
Chris Wilson1c255952010-09-26 11:03:27 +01004537 spin_unlock(&file_priv->mm.lock);
Eric Anholtb9624422009-06-03 07:27:35 +00004538}
Chris Wilson31169712009-09-14 16:50:28 +01004539
Chris Wilson57745062012-11-21 13:04:04 +00004540static bool mutex_is_locked_by(struct mutex *mutex, struct task_struct *task)
4541{
4542 if (!mutex_is_locked(mutex))
4543 return false;
4544
4545#if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_MUTEXES)
4546 return mutex->owner == task;
4547#else
4548 /* Since UP may be pre-empted, we cannot assume that we own the lock */
4549 return false;
4550#endif
4551}
4552
Chris Wilson31169712009-09-14 16:50:28 +01004553static int
Ying Han1495f232011-05-24 17:12:27 -07004554i915_gem_inactive_shrink(struct shrinker *shrinker, struct shrink_control *sc)
Chris Wilson31169712009-09-14 16:50:28 +01004555{
Chris Wilson17250b72010-10-28 12:51:39 +01004556 struct drm_i915_private *dev_priv =
4557 container_of(shrinker,
4558 struct drm_i915_private,
4559 mm.inactive_shrinker);
4560 struct drm_device *dev = dev_priv->dev;
Chris Wilson6c085a72012-08-20 11:40:46 +02004561 struct drm_i915_gem_object *obj;
Ying Han1495f232011-05-24 17:12:27 -07004562 int nr_to_scan = sc->nr_to_scan;
Chris Wilson57745062012-11-21 13:04:04 +00004563 bool unlock = true;
Chris Wilson17250b72010-10-28 12:51:39 +01004564 int cnt;
4565
Chris Wilson57745062012-11-21 13:04:04 +00004566 if (!mutex_trylock(&dev->struct_mutex)) {
4567 if (!mutex_is_locked_by(&dev->struct_mutex, current))
4568 return 0;
4569
Daniel Vetter677feac2012-12-19 14:33:45 +01004570 if (dev_priv->mm.shrinker_no_lock_stealing)
4571 return 0;
4572
Chris Wilson57745062012-11-21 13:04:04 +00004573 unlock = false;
4574 }
Chris Wilson31169712009-09-14 16:50:28 +01004575
Chris Wilson6c085a72012-08-20 11:40:46 +02004576 if (nr_to_scan) {
4577 nr_to_scan -= i915_gem_purge(dev_priv, nr_to_scan);
4578 if (nr_to_scan > 0)
Daniel Vetter93927ca2013-01-10 18:03:00 +01004579 nr_to_scan -= __i915_gem_shrink(dev_priv, nr_to_scan,
4580 false);
4581 if (nr_to_scan > 0)
Chris Wilson6c085a72012-08-20 11:40:46 +02004582 i915_gem_shrink_all(dev_priv);
Chris Wilson31169712009-09-14 16:50:28 +01004583 }
4584
Chris Wilson17250b72010-10-28 12:51:39 +01004585 cnt = 0;
Ben Widawsky35c20a62013-05-31 11:28:48 -07004586 list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list)
Chris Wilsona5570172012-09-04 21:02:54 +01004587 if (obj->pages_pin_count == 0)
4588 cnt += obj->base.size >> PAGE_SHIFT;
Xiong Zhang06755602013-07-05 18:53:29 +08004589 list_for_each_entry(obj, &dev_priv->mm.inactive_list, mm_list)
Chris Wilsona5570172012-09-04 21:02:54 +01004590 if (obj->pin_count == 0 && obj->pages_pin_count == 0)
Chris Wilson6c085a72012-08-20 11:40:46 +02004591 cnt += obj->base.size >> PAGE_SHIFT;
Chris Wilson31169712009-09-14 16:50:28 +01004592
Chris Wilson57745062012-11-21 13:04:04 +00004593 if (unlock)
4594 mutex_unlock(&dev->struct_mutex);
Chris Wilson6c085a72012-08-20 11:40:46 +02004595 return cnt;
Chris Wilson31169712009-09-14 16:50:28 +01004596}